]> source.dussan.org Git - nextcloud-server.git/commitdiff
unit tests for plural translations added
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 2 Aug 2013 21:08:41 +0000 (23:08 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Fri, 2 Aug 2013 21:08:41 +0000 (23:08 +0200)
lib/l10n.php
lib/l10n/string.php
tests/data/l10n/cs.php [new file with mode: 0644]
tests/data/l10n/de.php [new file with mode: 0644]
tests/data/l10n/ru.php [new file with mode: 0644]
tests/lib/l10n.php [new file with mode: 0644]

index 0e47215369c4396dda0ab62fd9c75deeb1762ce3..a11ed785c5e13902f4ad44d31c02098300d83402 100644 (file)
@@ -25,7 +25,7 @@
 /**
  * This class is for i18n and l10n
  */
-class OC_L10N{
+class OC_L10N {
        /**
         * cached instances
         */
@@ -107,6 +107,17 @@ class OC_L10N{
                $this->lang = $lang;
        }
 
+       public function load($transFile) {
+               $this->app = true;
+               include $transFile;
+               if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) {
+                       $this->translations = $TRANSLATIONS;
+               }
+               if(isset($PLURAL_FORMS)) {
+                       $this->plural_form_string = $PLURAL_FORMS;
+               }
+       }
+
        protected function init() {
                if ($this->app === true) {
                        return;
@@ -258,8 +269,9 @@ class OC_L10N{
         *
         */
        public function n($text_singular, $text_plural, $count, $parameters = array()) {
+               $this->init();
                $identifier = "_${text_singular}__${text_plural}_";
-               if( array_key_exists($this->translations, $identifier)) {
+               if( array_key_exists($identifier, $this->translations)) {
                        return new OC_L10N_String( $this, $identifier, $parameters, $count );
                }
                else{
index c78b06428d3bc1e74c983be197b9b944a6a66a75..88c85b32e70f8551093e4d342d0f362e098000dd 100644 (file)
@@ -7,30 +7,48 @@
  */
 
 class OC_L10N_String{
+       /**
+        * @var OC_L10N
+        */
        protected $l10n;
+
+       /**
+        * @var string
+        */
+       protected $text;
+
+       /**
+        * @var array
+        */
+       protected $parameters;
+
+       /**
+        * @var integer
+        */
+       protected $count;
+
        public function __construct($l10n, $text, $parameters, $count = 1) {
                $this->l10n = $l10n;
                $this->text = $text;
                $this->parameters = $parameters;
                $this->count = $count;
-
        }
 
        public function __toString() {
                $translations = $this->l10n->getTranslations();
-               $localizations = $this->l10n->getLocalizations();
 
                $text = $this->text;
                if(array_key_exists($this->text, $translations)) {
                        if(is_array($translations[$this->text])) {
-                               $fn = $l10n->getPluralFormFunction();
-                               $id = $fn($count);
+                               $fn = $this->l10n->getPluralFormFunction();
+                               $id = $fn($this->count);
                                $text = $translations[$this->text][$id];
                        }
                        else{
                                $text = $translations[$this->text];
                        }
                }
+
                // Replace %n first (won't interfere with vsprintf)
                $text = str_replace('%n', $this->count, $text);
                return vsprintf($text, $this->parameters);
diff --git a/tests/data/l10n/cs.php b/tests/data/l10n/cs.php
new file mode 100644 (file)
index 0000000..1c5907b
--- /dev/null
@@ -0,0 +1,5 @@
+<?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.php b/tests/data/l10n/de.php
new file mode 100644 (file)
index 0000000..858ec8a
--- /dev/null
@@ -0,0 +1,5 @@
+<?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.php b/tests/data/l10n/ru.php
new file mode 100644 (file)
index 0000000..dd46293
--- /dev/null
@@ -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);";
diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php
new file mode 100644 (file)
index 0000000..846a2f2
--- /dev/null
@@ -0,0 +1,55 @@
+<?php
+/**
+ * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+class Test_L10n extends PHPUnit_Framework_TestCase {
+
+       public function testGermanPluralTranslations() {
+               $l = new OC_L10N('test');
+               $transFile = OC::$SERVERROOT.'/tests/data/l10n/de.php';
+
+               $l->load($transFile);
+               $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1, array(1)));
+               $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2, array(2)));
+       }
+
+       public function testRussianPluralTranslations() {
+               $l = new OC_L10N('test');
+               $transFile = OC::$SERVERROOT.'/tests/data/l10n/ru.php';
+
+               $l->load($transFile);
+               $this->assertEquals('1 файл', (string)$l->n('%n file', '%n files', 1));
+               $this->assertEquals('2 файла', (string)$l->n('%n file', '%n files', 2));
+               $this->assertEquals('6 файлов', (string)$l->n('%n file', '%n files', 6));
+               $this->assertEquals('21 файл', (string)$l->n('%n file', '%n files', 21));
+               $this->assertEquals('22 файла', (string)$l->n('%n file', '%n files', 22));
+               $this->assertEquals('26 файлов', (string)$l->n('%n file', '%n files', 26));
+
+               /*
+                 1 file        1 файл      1 папка
+               2-4 files       2-4 файла  2-4 папки
+               5-20 files      5-20 файлов       5-20 папок
+               21 files        21 файл     21 папка
+               22-24 files     22-24 файла        22-24 папки
+               25-30 files     25-30 файлов      25-30 папок
+               etc
+               100 files       100 файлов,       100 папок
+               1000 files      1000 файлов       1000 папок
+               */
+       }
+
+       public function testCzechPluralTranslations() {
+               $l = new OC_L10N('test');
+               $transFile = OC::$SERVERROOT.'/tests/data/l10n/cs.php';
+
+               $l->load($transFile);
+               $this->assertEquals('1 okno', (string)$l->n('%n window', '%n windows', 1));
+               $this->assertEquals('2 okna', (string)$l->n('%n window', '%n windows', 2));
+               $this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5));
+       }
+
+}