diff options
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/l10n/cs.json | 6 | ||||
-rw-r--r-- | tests/data/l10n/cs.php | 5 | ||||
-rw-r--r-- | tests/data/l10n/de.json | 6 | ||||
-rw-r--r-- | tests/data/l10n/de.php | 5 | ||||
-rw-r--r-- | tests/data/l10n/ru.json | 6 | ||||
-rw-r--r-- | tests/data/l10n/ru.php | 5 |
6 files changed, 18 insertions, 15 deletions
diff --git a/tests/data/l10n/cs.json b/tests/data/l10n/cs.json new file mode 100644 index 00000000000..c86f41aa077 --- /dev/null +++ b/tests/data/l10n/cs.json @@ -0,0 +1,6 @@ +{ + "translations" : { + "_%n window_::_%n windows_" : ["%n okno", "%n okna", "%n oken"] + }, + "pluralForm" : "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" +} diff --git a/tests/data/l10n/cs.php b/tests/data/l10n/cs.php deleted file mode 100644 index de106ede026..00000000000 --- a/tests/data/l10n/cs.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php -$TRANSLATIONS = array( - "_%n window_::_%n windows_" => array("%n okno", "%n okna", "%n oken") -); -$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/tests/data/l10n/de.json b/tests/data/l10n/de.json new file mode 100644 index 00000000000..c2b6f34c081 --- /dev/null +++ b/tests/data/l10n/de.json @@ -0,0 +1,6 @@ +{ + "translations" : { + "_%n file_::_%n files_": ["%n Datei", "%n Dateien"] + }, + "pluralForm" : "nplurals=2; plural=(n != 1);" +} diff --git a/tests/data/l10n/de.php b/tests/data/l10n/de.php deleted file mode 100644 index 93c9ab4209e..00000000000 --- a/tests/data/l10n/de.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php -$TRANSLATIONS = array( - "_%n file_::_%n files_" => array("%n Datei", "%n Dateien") -); -$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 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);" +} diff --git a/tests/data/l10n/ru.php b/tests/data/l10n/ru.php deleted file mode 100644 index b778e8d79af..00000000000 --- a/tests/data/l10n/ru.php +++ /dev/null @@ -1,5 +0,0 @@ -<?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);"; |