aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--langs.inc.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/langs.inc.php b/langs.inc.php
index 909fe5e29..23103f051 100644
--- a/langs.inc.php
+++ b/langs.inc.php
@@ -150,13 +150,17 @@ S;
* Solution? rethink the whole i18n thing in an integrated one.
*/
function _t($s = null, $opt = null, $post = ' ') {
+ return _d($s, $opt) . $post;
+}
+
+function _d($s = null, $opt = null) {
if (!is_null($opt))
$_t = $opt;
else {
global $_t;
}
- return ($s == '' ? '---' : (array_key_exists($s, $_t) ? $_t[$s] : $s)) . $post;
+ return ($s == '' ? '---' : (array_key_exists($s, $_t) ? $_t[$s] : $s));
}
/**