khanat-code-old/code/web/app/app_achievements/include/ach_render_common.php

29 lines
613 B
PHP
Raw Normal View History

2012-05-14 18:24:58 +00:00
<?php
function nf($n) {
return number_format($n, 0, '.', ',');
}
function ach_translate_cc($cc = 'c_neutral') {
global $_USER;
$t = array();
$t['c_matis'] = 'Matis';
$t['c_tryker'] = 'Tryker';
$t['c_fyros'] = 'Fyros';
$t['c_zorai'] = 'Zorai';
$t['c_kami'] = 'Kami';
$t['c_karavan'] = 'Karavan';
$t['c_neutral'] = get_translation('ach_c_neutral',$_USER->getLang());
return $t[$cc];
2012-05-14 18:24:58 +00:00
}
function ach_render_forbidden($ig) {
if($ig) {
return "This app is NOT available INGAME!";
}
else {
return "This app is NOT available from the WEB!";
}
}
2012-05-14 18:24:58 +00:00
?>