Jan 8, 2009
Did you know? String::insert is nice for translation!
You probably replace your language strings like so: e(sprintf( __("Please %s or %s to write a comment", true), $html->link(__("login", true), array('controller' => 'users', 'action' => 'login')), $html->link(__("register", true), array('controller' => 'users', 'action' => 'register')) )); There are two problems with it: You may have to explain alot when someone translates the app. %s is... read more

