1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?
/**
* @package DTC
* @version $Id: clear_lang_array.php,v 1.1 2006/05/13 11:29:16 seeb Exp $
* @author seeb <seeb@seeb.net.pl>
* @abstract Clear language array. This file is for developers to create translations. For me is very helpfull.
* Swedish added in second array for future transaltion. I hope before v. 0.21 be stable I translate all panels to swedish to.
* @example
* <code>
* $txt_some_array[$lang]
* </code>
*/
$txt_clear_array=array(
"fr" => "TRANS ",
"en" => "TRANS ",
"hu" => "TRANS ",
"it" => "TRANS ",
"nl" => "TRANS ",
"ru" => "TRANS ",
"de" => "TRANS ",
"zh" => "TRANS ",
"pl" => "TRANS ",
"es" => "TRANS ",
"pt" => "TRANS "
);
$txt_clear_array_extend=array(
"fr" => "TRANS ",
"en" => "TRANS ",
"hu" => "TRANS ",
"it" => "TRANS ",
"nl" => "TRANS ",
"ru" => "TRANS ",
"de" => "TRANS ",
"zh" => "TRANS ",
"pl" => "TRANS ",
"se" => "TRANS SVENSKA",
"es" => "TRANS ",
"pt" => "TRANS "
);
?>
|