diff options
author | ivan <ivan> | 2011-12-14 23:20:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-12-14 23:20:20 +0000 |
commit | 2f26453a616c49d11ae661d6c00502db7fd7bc53 (patch) | |
tree | 57f7bc1b158920f8c5dd3cf16b50f5b1347d46d3 /FS | |
parent | c16afe1ce2cfcd4a07a0265c890d35879542658a (diff) |
add fr_HT and ht_HT locales for french (haiti) and haitian creole, RT#15269
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/L10N/fr_ht.pm | 4 | ||||
-rw-r--r-- | FS/FS/L10N/ht_ht.pm | 4 | ||||
-rw-r--r-- | FS/FS/Locales.pm | 12 |
3 files changed, 15 insertions, 5 deletions
diff --git a/FS/FS/L10N/fr_ht.pm b/FS/FS/L10N/fr_ht.pm new file mode 100644 index 000000000..0363ac449 --- /dev/null +++ b/FS/FS/L10N/fr_ht.pm @@ -0,0 +1,4 @@ +package FS::L10N::fr_ht; +use base qw(FS::L10N::fr_fr); + +1; diff --git a/FS/FS/L10N/ht_ht.pm b/FS/FS/L10N/ht_ht.pm new file mode 100644 index 000000000..6091bed36 --- /dev/null +++ b/FS/FS/L10N/ht_ht.pm @@ -0,0 +1,4 @@ +package FS::L10N::ht_ht; +use base qw(FS::L10N::DBI); + +1; diff --git a/FS/FS/Locales.pm b/FS/FS/Locales.pm index 351f47875..692bb935f 100644 --- a/FS/FS/Locales.pm +++ b/FS/FS/Locales.pm @@ -28,11 +28,13 @@ Returns a list of the available locales. =cut tie our %locales, 'Tie::IxHash', - 'en_CA', { name => 'English', country => 'Canada', }, - 'en_US', { name => 'English', country => 'United States', }, - 'fr_CA', { name => 'French', country => 'Canada', }, - 'fr_FR', { name => 'French', country => 'France', }, - 'iw_IL', { name => 'Hebrew', country => 'Israel', rtl=>1, }, + 'en_CA', { name => 'English', country => 'Canada', }, + 'en_US', { name => 'English', country => 'United States', }, + 'fr_CA', { name => 'French', country => 'Canada', }, + 'fr_FR', { name => 'French', country => 'France', }, + 'fr_HT', { name => 'French', country => 'Haiti', }, + 'ht_HT', { name => 'Haitian Creole', country => 'Haiti', }, + 'iw_IL', { name => 'Hebrew', country => 'Israel', rtl=>1, }, ; sub locales { |