diff options
Diffstat (limited to 'include/functions.php')
-rw-r--r-- | include/functions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/functions.php b/include/functions.php index d7ecb10..7888a76 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1207,15 +1207,15 @@ function display_single_user($r,$start=0) switch($wins) { case 0: - echo "#tricks 0"; break; + echo _('#tricks 0'); break; case 1: - echo "#tricks 1"; break; + echo _('#tricks 1'); break; case 2: case 3: case 4: - echo "#tricks few"; break; + echo _('#tricks few'); break; default: - echo "#tricks many"; break; + echo _('#tricks many'); break; } echo "</span>\n"; echo " </div>\n"; |