]> WPIA git - gigi.git/commitdiff
it's no really "sprintf" in the template system.
authorFelix Dörre <felix@dogcraft.de>
Sun, 13 Jul 2014 10:42:14 +0000 (12:42 +0200)
committerFelix Dörre <felix@dogcraft.de>
Sun, 13 Jul 2014 10:42:14 +0000 (12:42 +0200)
doc/TemplateSyntax.txt

index ab4cc37d37060a2e0b229629bf70df791df0a1c8..2c6d8a0265d0e61eeca4820d6cb7b2012ac5fff2 100644 (file)
@@ -7,7 +7,7 @@ A template is constructed from a charstream. Everything that is not in "<?" to "
 - <?=_This is free Text.?> will translate "This is free Text." into the users language, (escaped) and output it.
    
 - <?=s,$var1,$var2,$var3,...,$varn,This %s is, %s free.?>
-  Translate the last string. Output $var1,...,$varn sprintf-ed into the translated string.
+  Translate the last string. Output $var1,...,$varn replaced into the %s positions in the translated string.
   
 - <? if($variable) { ?>
   Output/execute the text until "<? } ?>" only if $variable is boolean and true.