Moving control to install wizard when config file does not exists.
[fa-stable.git] / lang / installed_languages.inc
1 <?php
2
3 /* How to make new entries here
4
5 -- if adding languages at the beginning of the list, make sure it's index is set to 0 (it has ' 0 => ')
6 -- 'code' should match the name of the directory for the language under \lang
7 -- 'name' is the name that will be displayed in the language selection list (in Users and Display Setup)
8 -- 'rtl' only needs to be set for right-to-left languages like Arabic and Hebrew
9
10 */
11
12
13 $installed_languages = array (
14         0 => array ('code' => 'en_GB', 'name' => 'English', 'encoding' => 'iso-8859-1'),
15                 array ('code' => 'en_US', 'name' => 'English (US)', 'encoding' => 'iso-8859-1'),
16         );
17
18 $dflt_lang = 'en_GB';
19 ?>