diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-04 21:01:36 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-04 23:42:49 +0200 |
commit | 1e2d5821235d47584e0dd7ebf48b3e3c3afc68d8 (patch) | |
tree | 0af97b1a94a4d720d117b7940e17088c26803bc7 /lib/l10n.php | |
parent | f188f6cc2fed10bdc78a34df95b898a770bcf506 (diff) | |
download | nextcloud-server-1e2d5821235d47584e0dd7ebf48b3e3c3afc68d8.tar.gz nextcloud-server-1e2d5821235d47584e0dd7ebf48b3e3c3afc68d8.zip |
fixing button to add additional site
Diffstat (limited to 'lib/l10n.php')
-rw-r--r-- | lib/l10n.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/l10n.php b/lib/l10n.php index cd1d53bce0b..0421e4eba88 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -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); } |