]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/Languages.php
4 * Wrapper function for translation which match the API
5 * of gettext()/_() and ngettext().
7 * Not doing translation for now.
9 * @param string $text Text to translate.
10 * @param string $nText The plural message ID.
11 * @param int $nb The number of items for plural forms.
13 * @return String Text translated.
15 function t($text, $nText = '', $nb = 0) {
19 $actualForm = $nb > 1 ? $nText : $text;
20 return sprintf($actualForm, $nb);