From b5d5687517c50d4bd6d8050a06b2902cf6c56b00 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 15 Aug 2011 10:16:46 +0200 Subject: web/lib/translator.inc.php: Use vsprintf() in __() Remove hacky substitution code from __() and use vsprintf() instead which will deal with all sorts of format strings properly. Signed-off-by: Lukas Fleischer --- web/lib/translator.inc.php | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/web/lib/translator.inc.php b/web/lib/translator.inc.php index 44c87bda..54e8cbbf 100644 --- a/web/lib/translator.inc.php +++ b/web/lib/translator.inc.php @@ -5,12 +5,11 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR # usage: # use the __() function for returning translated strings of -# text. The string can contain escape codes %h for HTML -# and %s for regular text. +# text. The string can contain escape codes "%s". # # examples: # print __("%s has %s apples.", "Bill", "5"); -# print __("This is a %hmajor%h problem!", "", ""); +# print __("This is a %smajor%s problem!", "", ""); include_once('config.inc.php'); include_once('gettext.php'); @@ -26,23 +25,15 @@ function __() { $args = func_get_args(); # First argument is always string to be translated - $tag = $args[0]; + $tag = array_shift($args); # Translate using gettext_reader initialized before. $translated = $l10n->translate($tag); $translated = htmlspecialchars($translated, ENT_QUOTES); - $num_args = sizeof($args); - # Subsequent arguments are strings to be formatted - # - # TODO: make this more robust. - # '%%' should translate to a literal '%' - - if ( $num_args > 1 ) { - for ($i = 1; $i < $num_args; $i++) { - $translated = preg_replace("/\%[sh]/", $args[$i], $translated, 1); - } + if (count($args) > 0) { + $translated = vsprintf($translated, $args); } return $translated; -- cgit v1.2.3-24-g4f1b