diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-03-21 15:33:16 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-03-21 15:33:16 -0700 |
commit | 23e8f4d6bcd1e7859600ce5791363e439739bce0 (patch) | |
tree | 5a81318c314fa0a4b40894fb10396ce92db24731 /FS | |
parent | 4fbac69c76d393adc7221c036a996a2ab1b860f1 (diff) |
add en_AU locale, make sure "Zip" is translate-able, RT#28081
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/L10N/en_au.pm | 4 | ||||
-rw-r--r-- | FS/FS/Locales.pm | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/L10N/en_au.pm b/FS/FS/L10N/en_au.pm new file mode 100644 index 000000000..610e193e6 --- /dev/null +++ b/FS/FS/L10N/en_au.pm @@ -0,0 +1,4 @@ +package FS::L10N::en_au; +use base qw(FS::L10N::en_us); + +1; diff --git a/FS/FS/Locales.pm b/FS/FS/Locales.pm index 6dd7c5a08..032c3b59a 100644 --- a/FS/FS/Locales.pm +++ b/FS/FS/Locales.pm @@ -29,6 +29,7 @@ Returns a list of the available locales. tie our %locales, 'Tie::IxHash', 'en_US', { name => 'English', country => 'United States', }, + 'en_AU', { name => 'English', country => 'Australia', }, 'en_CA', { name => 'English', country => 'Canada', }, 'fr_CA', { name => 'French', country => 'Canada', }, 'fr_FR', { name => 'French', country => 'France', }, |