summaryrefslogtreecommitdiffstats
path: root/tests/data/l10n/ru.php
diff options
context:
space:
mode:
authorOwen Winkler <a_github@midnightcircus.com>2013-08-08 10:34:28 -0700
committerOwen Winkler <a_github@midnightcircus.com>2013-08-08 10:34:28 -0700
commita2ac5e016334429892ac84bafa2644d8d39e6eb2 (patch)
tree64eb3aa2afdbd4788c05005d16d21d44f409e66d /tests/data/l10n/ru.php
parente38025ba6790938155bbd956d024d639ceeed754 (diff)
parent19e3780ef24113bcb7950b5671e4c0149271c5c8 (diff)
downloadnextcloud-server-a2ac5e016334429892ac84bafa2644d8d39e6eb2.tar.gz
nextcloud-server-a2ac5e016334429892ac84bafa2644d8d39e6eb2.zip
Merge pull request #4271 from owncloud/plural_translations
Plural translations
Diffstat (limited to 'tests/data/l10n/ru.php')
-rw-r--r--tests/data/l10n/ru.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/data/l10n/ru.php b/tests/data/l10n/ru.php
new file mode 100644
index 00000000000..dd46293db6c
--- /dev/null
+++ b/tests/data/l10n/ru.php
@@ -0,0 +1,5 @@
+<?php
+$TRANSLATIONS = array(
+ "_%n file__%n files_" => array("%n файл", "%n файла", "%n файлов")
+);
+$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";