Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-01-14 23:30:28 +0400
committerBart Visscher <bartv@thisnet.nl>2013-01-16 21:09:16 +0400
commita8f963d9cf5b243cae497450af78c20cbc367b4b (patch)
treefd23acd48a702fe247e81c25e1f98a6f214a30ae /lib/l10n.php
parentcb0fd30458c29db7667582b7c182b4d530366634 (diff)
Spaces to tabs
Diffstat (limited to 'lib/l10n.php')
-rw-r--r--lib/l10n.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/l10n.php b/lib/l10n.php
index f70dfa5e34e..ca53b3cf65c 100644
--- a/lib/l10n.php
+++ b/lib/l10n.php
@@ -141,15 +141,15 @@ class OC_L10N{
}
}
- /**
- * @brief Translating
- * @param $text String The text we need a translation for
- * @param array $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.
- */
+ /**
+ * @brief Translating
+ * @param $text String The text we need a translation for
+ * @param array $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);
}