diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-01-18 14:10:05 +1100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-04-09 19:14:57 +0100 |
commit | 54d9fcb1dd7218d23b3e162b22c87b7e2bce80e6 (patch) | |
tree | 9e1b03d31a780259ac6862da5b76b1a9777a5016 /spec | |
parent | 26679b1b514e1a8f823cd86a81955a7867d537b6 (diff) |
In translation strings replace %d with {{}} formatting
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fixtures/locale/en/app.po | 4 | ||||
-rw-r--r-- | spec/fixtures/locale/en_GB/app.po | 4 | ||||
-rw-r--r-- | spec/fixtures/locale/es/app.po | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/spec/fixtures/locale/en/app.po b/spec/fixtures/locale/en/app.po index 6a21336bf..06fae9a81 100644 --- a/spec/fixtures/locale/en/app.po +++ b/spec/fixtures/locale/en/app.po @@ -129,8 +129,8 @@ msgstr[0] "" msgstr[1] "" #: app/views/general/frontpage.rhtml:43 -msgid "%d request" -msgid_plural "%d requests" +msgid "{{count}} request" +msgid_plural "{{count}} requests" msgstr[0] "" msgstr[1] "" diff --git a/spec/fixtures/locale/en_GB/app.po b/spec/fixtures/locale/en_GB/app.po index 6a21336bf..06fae9a81 100644 --- a/spec/fixtures/locale/en_GB/app.po +++ b/spec/fixtures/locale/en_GB/app.po @@ -129,8 +129,8 @@ msgstr[0] "" msgstr[1] "" #: app/views/general/frontpage.rhtml:43 -msgid "%d request" -msgid_plural "%d requests" +msgid "{{count}} request" +msgid_plural "{{count}} requests" msgstr[0] "" msgstr[1] "" diff --git a/spec/fixtures/locale/es/app.po b/spec/fixtures/locale/es/app.po index ab72de22f..626e39e94 100644 --- a/spec/fixtures/locale/es/app.po +++ b/spec/fixtures/locale/es/app.po @@ -146,10 +146,10 @@ msgstr[0] "{{count}} solicitud de información a {{public_body_name}}" msgstr[1] "{{count}} solicitudes de información a {{public_body_name}}" #: app/views/general/frontpage.rhtml:43 -msgid "%d request" -msgid_plural "%d requests" -msgstr[0] "%d solicitud" -msgstr[1] "%d solicitudes" +msgid "{{count}} request" +msgid_plural "{{count}} requests" +msgstr[0] "{{count}} solicitud" +msgstr[1] "{{count}} solicitudes" #: app/views/public_body/_body_listing_single.rhtml:21 msgid "{{count}} request made." |