diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-01-21 12:48:19 +1100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-04-09 19:23:13 +0100 |
commit | e39ca6eec6c06b9bf81b1ba622672284c4eb9d16 (patch) | |
tree | 9731c99e934621db205ee4a0a21580411a6aaecf /spec | |
parent | 3f894f807857b214a655c4b8fdef1956663cdcdc (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 6347d0256..185e0c5aa 100644 --- a/spec/fixtures/locale/en/app.po +++ b/spec/fixtures/locale/en/app.po @@ -2920,8 +2920,8 @@ msgstr[0] "" msgstr[1] "" #: app/views/user/show.rhtml:179 -msgid "This person's %d annotation" -msgid_plural "This person's %d annotations" +msgid "This person's {{count}} annotation" +msgid_plural "This person's {{count}} annotations" msgstr[0] "" msgstr[1] "" diff --git a/spec/fixtures/locale/en_GB/app.po b/spec/fixtures/locale/en_GB/app.po index 445aaea7c..050ce861b 100644 --- a/spec/fixtures/locale/en_GB/app.po +++ b/spec/fixtures/locale/en_GB/app.po @@ -2919,8 +2919,8 @@ msgstr[0] "" msgstr[1] "" #: app/views/user/show.rhtml:179 -msgid "This person's %d annotation" -msgid_plural "This person's %d annotations" +msgid "This person's {{count}} annotation" +msgid_plural "This person's {{count}} annotations" msgstr[0] "" msgstr[1] "" diff --git a/spec/fixtures/locale/es/app.po b/spec/fixtures/locale/es/app.po index 50de28a47..0731edff2 100644 --- a/spec/fixtures/locale/es/app.po +++ b/spec/fixtures/locale/es/app.po @@ -3152,10 +3152,10 @@ msgstr[0] "Tu {{count}} solicitud de información" msgstr[1] "Tus {{count}} solicitudes de información" #: app/views/user/show.rhtml:179 -msgid "This person's %d annotation" -msgid_plural "This person's %d annotations" -msgstr[0] "Tu %d comentario" -msgstr[1] "Tus %d comentarios" +msgid "This person's {{count}} annotation" +msgid_plural "This person's {{count}} annotations" +msgstr[0] "Tu {{count}} comentario" +msgstr[1] "Tus {{count}} comentarios" #: app/views/user/show.rhtml:172 msgid "This person's annotations" |