diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-24 13:53:01 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-29 10:09:12 +0100 |
commit | 2f19de11e4c77b0f9195c3868960d8105541359f (patch) | |
tree | ce8e3e45d519c392a7582e2fe452402e070301c0 /tests/data/l10n/ru.json | |
parent | d71cd680dd6133ad254fd296319aeab6deb77686 (diff) | |
download | nextcloud-server-2f19de11e4c77b0f9195c3868960d8105541359f.tar.gz nextcloud-server-2f19de11e4c77b0f9195c3868960d8105541359f.zip |
adding console command to generate javascript translation files based on existing php translation files
read server side translations from json files
Diffstat (limited to 'tests/data/l10n/ru.json')
-rw-r--r-- | tests/data/l10n/ru.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/data/l10n/ru.json b/tests/data/l10n/ru.json new file mode 100644 index 00000000000..177b14a6b20 --- /dev/null +++ b/tests/data/l10n/ru.json @@ -0,0 +1,6 @@ +{ + "translations" : { + "_%n file_::_%n files_" : ["%n файл", "%n файла", "%n файлов"] + }, + "pluralForm" : "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" +} |