File: clear_lang_array.php

package info (click to toggle)
dtc 0.35.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 18,824 kB
  • sloc: php: 50,739; sh: 8,596; makefile: 572; perl: 148; xml: 25
file content (41 lines) | stat: -rw-r--r-- 942 bytes parent folder | download | duplicates (2)
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 "
);
?>