]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing button to add additional site
authorThomas Mueller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 19:01:36 +0000 (21:01 +0200)
committerThomas Mueller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 21:42:49 +0000 (23:42 +0200)
lib/l10n.php

index cd1d53bce0b82aec48a45c343c4ed73e3d109cfa..0421e4eba88e54f46b4ae59970b69436e6b5e52e 100644 (file)
@@ -137,15 +137,15 @@ class OC_L10N{
                }
        }
 
-       /**
-        * @brief Translating
-        * @param $text The text we need a translation for
-        * @param $parameters default:array() Parameters for sprintf
-        * @returns Translation or the same text
-        *
-        * Returns the translation. If no translation is found, $text will be
-        * returned.
-        */
+    /**
+     * @brief Translating
+     * @param $text String The text we need a translation for
+     * @param array|\default $parameters default:array() Parameters for sprintf
+     * @return \OC_L10N_String Translation or the same text
+     *
+     * Returns the translation. If no translation is found, $text will be
+     * returned.
+     */
        public function t($text, $parameters = array()){
                return new OC_L10N_String($this, $text, $parameters);
        }