From 771c24ee98fac713a732b71aeaeea09bdf7783a6 Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Fri, 3 Aug 2012 10:29:32 +0000 Subject: allow mixed markers for untranslated strings --- langs.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'langs.inc.php') diff --git a/langs.inc.php b/langs.inc.php index 9055f44e9..d9e1d6ecc 100644 --- a/langs.inc.php +++ b/langs.inc.php @@ -174,7 +174,7 @@ function _d($s = null, $opt = null) { $ret = array_key_exists($s, $_t) ? $_t[$s] : $s; - return trim(str_replace('{ok}', '', $ret)); + return trim(str_replace(array('{ok}', '{OK}', '{Ok}', '{oK}'), '', $ret)); } /** -- cgit v1.2.1