summaryrefslogtreecommitdiffstats
path: root/lib/public/il10n.php
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-10-17 00:07:29 +0200
committerMorris Jobke <morris.jobke@gmail.com>2013-10-17 00:49:15 +0200
commit30f4d91d01cc9f0f32767a466a5024ad4f76ebf5 (patch)
treee11281493b7792b4a770453d85f7ed1c62132ce0 /lib/public/il10n.php
parent04783da829d76667079eda56d1f8b66d70813b3d (diff)
downloadnextcloud-server-30f4d91d01cc9f0f32767a466a5024ad4f76ebf5.tar.gz
nextcloud-server-30f4d91d01cc9f0f32767a466a5024ad4f76ebf5.zip
Public API documentation fixes
refs #4883 * http/response.php * config.php * response.php * files.php * idbconnection.php * app.php * user.php * template.php * share.php * db.php * icache.php & il10n.php
Diffstat (limited to 'lib/public/il10n.php')
-rw-r--r--lib/public/il10n.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/il10n.php b/lib/public/il10n.php
index 9cf9093d391..805c8988aa2 100644
--- a/lib/public/il10n.php
+++ b/lib/public/il10n.php
@@ -14,7 +14,7 @@ namespace OCP;
*/
interface IL10N {
/**
- * @brief Translating
+ * Translating
* @param $text String The text we need a translation for
* @param array $parameters default:array() Parameters for sprintf
* @return \OC_L10N_String|string Translation or the same text
@@ -25,7 +25,7 @@ interface IL10N {
public function t($text, $parameters = array());
/**
- * @brief Translating
+ * Translating
* @param $text_singular String the string to translate for exactly one object
* @param $text_plural String the string to translate for n objects
* @param $count Integer Number of objects
@@ -42,10 +42,10 @@ interface IL10N {
public function n($text_singular, $text_plural, $count, $parameters = array());
/**
- * @brief Localization
+ * Localization
* @param $type Type of localization
* @param $params parameters for this localization
- * @returns String or false
+ * @return String or false
*
* Returns the localized data.
*