source: trunk/language/infos.lang.php @ 394

Last change on this file since 394 was 393, checked in by gweltas, 20 years ago
  • Template migration
  • Admin Control Panel migration
  • Language migration
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// |                           infos.lang_info.php                           |
4// +-----------------------------------------------------------------------+
5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
6// | branch        : 1.4                                                   |
7// +-----------------------------------------------------------------------+
8// | file          : $RCSfile$
9// | last update   : $Date: 2004-03-20 00:52:37 +0000 (Sat, 20 Mar 2004) $
10// | last modifier : $Author: gweltas $
11// | revision      : $Revision: 393 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28$lang_info['language']['zh_CN'] = '&#31616;&#20307;&#20013;&#25991;'; // Simplified Chinese
29$lang_info['language']['zh_TW'] = '&#32321;&#39636;&#20013;&#25991;'; // Traditional Chinese
30$lang_info['language']['zh_TW.utf8'] = '&#32321;&#39636;&#20013;&#25991; (UTF-'; // Traditional Chinese (UTF-
31$lang_info['language']['bg_BG'] = '&#x0411;&#x044a;&#x043b;&#x0433;&#x0430;&#x0440;&#x0441;&#x043a;&#x0438;'; // Bulgarian
32$lang_info['language']['ca_ES'] = 'Catal&#xe0;'; // Catalan
33$lang_info['language']['cs_CZ'] = '&#x010c;esky'; // Czech
34$lang_info['language']['cs_CZ.cp1250'] = '&#x010c;esky CP'; // Czech
35$lang_info['language']['cs_CZ.iso'] = '&#x010c;esky ISO'; // Czech
36$lang_info['language']['da_DK'] = 'Dansk'; // Danish
37$lang_info['language']['de_DE'] = 'Deutsch'; // German
38$lang_info['language']['en_EN'] = 'English';
39$lang_info['language']['en_GB'] = 'English (UK)';
40$lang_info['language']['en_US'] = 'English (US)';
41$lang_info['language']['es_ES'] = 'Espa&#241;ol'; // Spanish
42$lang_info['language']['fr_FR'] = 'Fran&#231;ais'; // French
43$lang_info['language']['it_IT'] = 'Italiano'; // Italian
44$lang_info['language']['he_IL'] = '&#1506;&#1489;&#1512;&#1497;&#1514;'; // Hebrew
45$lang_info['language']['is_IS'] = '&#205;slenska'; // Icelandic
46$lang_info['language']['ja_JP'] = '&#x65e5;&#x672c;&#x8a9e; (EUC-JP)'; // Japanese (EUC-JP)
47$lang_info['language']['ko_KR'] = '&#xd55c;&#xad6d;&#xc5b4;'; // Korean
48$lang_info['language']['lt_LT'] = 'Lietuvi&#x0173;'; // Lithuanian
49$lang_info['language']['hu_HU'] = 'Magyar'; // Hungarian
50$lang_info['language']['nl_NL'] = 'Nederlands'; // Dutch
51$lang_info['language']['no_NO'] = 'Norsk bokm&#229;l'; // Norwegian (Bokmal)
52$lang_info['language']['pl_PL'] = 'Polski'; // Polish
53$lang_info['language']['pt_PT'] = 'Portugu&#234;s'; // Portuguese
54$lang_info['language']['pt_BR'] = 'Portugu&#234;s Brasileiro'; // Portuguese (Brazil)
55$lang_info['language']['ru_RU'] = '&#x0420;&#x0443;&#x0441;&#x0441;&#x043a;&#x0438;&#x0439; (Windows)'; // Russian (Windows)
56$lang_info['language']['ru_RU.koi8r'] = '&#x0420;&#x0443;&#x0441;&#x0441;&#x043a;&#x0438;&#x0439; (KOI8-R)'; // Russian (KOI8-R)
57$lang_info['language']['sl_SI'] = 'Sloven&#x0161;&#x010d;ina'; // Slovenian
58$lang_info['language']['fi_FI'] = 'Suomi'; // Finnish
59$lang_info['language']['sv_SE'] = 'Svenska'; // Swedish
60$lang_info['language']['tr_TR'] = 'T&#252;rk&#231;e'; // Turkish
61$lang_info['language']['uk_UA'] = '&#x0423;&#x043a;&#x0440;&#x0430;&#x0457;&#x043d;&#x0441;&#x044c;&#x043a;&#x0430;'; // Ukranian
62
63/**
64 ** Charsets
65 **
66 ** Add your own charsets, if your system uses others than "normal"
67 **
68 **/ 
69 
70  $lang_info['default']['charset'] =    'ISO-8859-1';
71 
72  $lang_info['charset']['bg_BG'] =      'windows-1251';
73  $lang_info['charset']['cs_CZ'] =      'ISO-8859-2';
74  $lang_info['charset']['he_IL'] =     'windows-1255';
75  $lang_info['charset']['hu_HU'] =    'ISO-8859-2';
76  $lang_info['charset']['ja_JP'] =     'EUC-JP';
77  $lang_info['charset']['ko_KR'] =      'EUC-KR';
78  $lang_info['charset']['lt_LT'] =     'windows-1257';
79  $lang_info['charset']['pl_PL'] =     'ISO-8859-2';
80  $lang_info['charset']['ru_RU'] =     'windows-1251';
81
82  $lang_info['charset']['sl_SI'] =     'ISO-8859-2';
83  $lang_info['charset']['tr_TR'] =     'ISO-8859-9';
84  $lang_info['charset']['uk_UA'] =      'KOI8-U';
85  $lang_info['charset']['zh_CN'] =     'GB2312';
86  $lang_info['charset']['zh_TW'] =     'BIG5'; 
87
88 
89/**
90 ** Direction
91 **/
92 
93  $lang_info['default']['direction'] =  'ltr';
94  $lang_info['direction']['he_IL'] =   'rtl' ;
95
96?>
Note: See TracBrowser for help on using the repository browser.