diff -urN l10n-old/en_GB/Canada.php l10n/en_GB/Canada.php
|
old
|
new
|
|
| | 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| | 2 | |
| | 3 | // Phone prefix and format |
| | 4 | $locale['phone_prefix'] = '1'; |
| | 5 | $locale['phone_format'] = '3-3-4'; |
| | 6 | |
| | 7 | // Province names |
| | 8 | $locale['states'] = array |
| | 9 | ( |
| | 10 | 'AB' => 'Alberta', |
| | 11 | 'BC' => 'British Columbia', |
| | 12 | 'NB' => 'New Brunswick', |
| | 13 | 'NL' => 'Newfoundland and Labrador', |
| | 14 | 'NS' => 'Nova Scotia', |
| | 15 | 'NT' => 'Northwest Territories', // territory |
| | 16 | 'NU' => 'Nunavut', // territory |
| | 17 | 'MB' => 'Manitoba', |
| | 18 | 'ON' => 'Ontario', |
| | 19 | 'PE' => 'Prince Edward Island', |
| | 20 | 'QC' => 'Quebec', |
| | 21 | 'SK' => 'Saskatchewan', |
| | 22 | 'YT' => 'Yukon' // territory |
| | 23 | ); |
diff -urN l10n-old/en_GB/USA.php l10n/en_GB/USA.php
|
old
|
new
|
|
| | 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| | 2 | |
| | 3 | // Phone prefix and format |
| | 4 | $locale['phone_prefix'] = '1'; |
| | 5 | $locale['phone_format'] = '3-3-4'; |
| | 6 | |
| | 7 | // State names |
| | 8 | $locale['states'] = array |
| | 9 | ( |
| | 10 | 'AL' => 'Alabama', |
| | 11 | 'AK' => 'Alaska', |
| | 12 | 'AZ' => 'Arizona', |
| | 13 | 'AR' => 'Arkansas', |
| | 14 | 'CA' => 'California', |
| | 15 | 'CO' => 'Colorado', |
| | 16 | 'CT' => 'Connecticut', |
| | 17 | 'DE' => 'Delaware', |
| | 18 | 'DC' => 'District of Columbia', |
| | 19 | 'FL' => 'Florida', |
| | 20 | 'GA' => 'Georgia', |
| | 21 | 'GU' => 'Guam', |
| | 22 | 'HI' => 'Hawaii', |
| | 23 | 'ID' => 'Idaho', |
| | 24 | 'IL' => 'Illinois', |
| | 25 | 'IN' => 'Indiana', |
| | 26 | 'IA' => 'Iowa', |
| | 27 | 'KS' => 'Kansas', |
| | 28 | 'KY' => 'Kentucky', |
| | 29 | 'LA' => 'Louisiana', |
| | 30 | 'ME' => 'Maine', |
| | 31 | 'MD' => 'Maryland', |
| | 32 | 'MA' => 'Massachusetts', |
| | 33 | 'MI' => 'Michigan', |
| | 34 | 'MN' => 'Minnesota', |
| | 35 | 'MS' => 'Mississippi', |
| | 36 | 'MO' => 'Missouri', |
| | 37 | 'MT' => 'Montana', |
| | 38 | 'NE' => 'Nebraska', |
| | 39 | 'NV' => 'Nevada', |
| | 40 | 'NH' => 'New Hampshire', |
| | 41 | 'NJ' => 'New Jersey', |
| | 42 | 'NM' => 'New Mexico', |
| | 43 | 'NY' => 'New York', |
| | 44 | 'NC' => 'North Carolina', |
| | 45 | 'ND' => 'North Dakota', |
| | 46 | 'OH' => 'Ohio', |
| | 47 | 'OK' => 'Oklahoma', |
| | 48 | 'OR' => 'Oregon', |
| | 49 | 'PA' => 'Pennsylvania', |
| | 50 | 'RI' => 'Rhode Island', |
| | 51 | 'SC' => 'South Carolina', |
| | 52 | 'SD' => 'South Dakota', |
| | 53 | 'TN' => 'Tennessee', |
| | 54 | 'TX' => 'Texas', |
| | 55 | 'UT' => 'Utah', |
| | 56 | 'VT' => 'Vermont', |
| | 57 | 'VA' => 'Virginia', |
| | 58 | 'WA' => 'Washington', |
| | 59 | 'WV' => 'West Virginia', |
| | 60 | 'WI' => 'Wisconsin', |
| | 61 | 'WY' => 'Wyoming' |
| | 62 | ); |
| | 63 | |
| | 64 | // States with territories |
| | 65 | $locale['all_states'] = array_merge($locale['states'], array |
| | 66 | ( |
| | 67 | 'AS' => 'American Samoa', |
| | 68 | 'FM' => 'Federated States of Micronesia', |
| | 69 | 'MH' => 'Marshall Islands', |
| | 70 | 'MP' => 'Northern Mariana Islands', |
| | 71 | 'PW' => 'Palau', |
| | 72 | 'PR' => 'Puerto Rico', |
| | 73 | 'VI' => 'Virgin Islands' |
| | 74 | )); |
| | 75 | // Re-sort the list |
| | 76 | ksort($locale['all_states']); |
diff -urN l10n-old/en_US/Canada.php l10n/en_US/Canada.php
|
old
|
new
|
|
| | 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| | 2 | |
| | 3 | // Phone prefix and format |
| | 4 | $locale['phone_prefix'] = '1'; |
| | 5 | $locale['phone_format'] = '3-3-4'; |
| | 6 | |
| | 7 | // Province names |
| | 8 | $locale['states'] = array |
| | 9 | ( |
| | 10 | 'AB' => 'Alberta', |
| | 11 | 'BC' => 'British Columbia', |
| | 12 | 'NB' => 'New Brunswick', |
| | 13 | 'NL' => 'Newfoundland and Labrador', |
| | 14 | 'NS' => 'Nova Scotia', |
| | 15 | 'NT' => 'Northwest Territories', // territory |
| | 16 | 'NU' => 'Nunavut', // territory |
| | 17 | 'MB' => 'Manitoba', |
| | 18 | 'ON' => 'Ontario', |
| | 19 | 'PE' => 'Prince Edward Island', |
| | 20 | 'QC' => 'Quebec', |
| | 21 | 'SK' => 'Saskatchewan', |
| | 22 | 'YT' => 'Yukon' // territory |
| | 23 | ); |
diff -urN l10n-old/fr_FR/Canada.php l10n/fr_FR/Canada.php
|
old
|
new
|
|
| | 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| | 2 | |
| | 3 | // Phone prefix and format |
| | 4 | $locale['phone_prefix'] = '1'; |
| | 5 | $locale['phone_format'] = '3-3-4'; |
| | 6 | |
| | 7 | // Province names |
| | 8 | $locale['states'] = array |
| | 9 | ( |
| | 10 | 'AB' => 'Alberta', |
| | 11 | 'BC' => 'Colombie-Britannique', |
| | 12 | 'NB' => 'Nouveau-Brunswick', |
| | 13 | 'NL' => 'Terre-Neuve-et-Labrador', |
| | 14 | 'NS' => 'Nouvelle-Écosse', |
| | 15 | 'NT' => 'Territoires-du-Nord-Ouest', // territoire |
| | 16 | 'NU' => 'Nunavut', // territoire |
| | 17 | 'MB' => 'Manitoba', |
| | 18 | 'ON' => 'Ontario', |
| | 19 | 'PE' => 'Île-du-Prince-Édouard', |
| | 20 | 'QC' => 'Québec', |
| | 21 | 'SK' => 'Saskatchewan', |
| | 22 | 'YT' => 'Yukon' // territoire |
| | 23 | ); |
diff -urN l10n-old/fr_FR/USA.php l10n/fr_FR/USA.php
|
old
|
new
|
|
| | 1 | <?php defined('SYSPATH') or die('No direct script access.'); |
| | 2 | |
| | 3 | // Phone prefix and format |
| | 4 | $locale['phone_prefix'] = '1'; |
| | 5 | $locale['phone_format'] = '3-3-4'; |
| | 6 | |
| | 7 | // State names |
| | 8 | $locale['states'] = array |
| | 9 | ( |
| | 10 | 'AL' => 'Alabama', |
| | 11 | 'AK' => 'Alaska', |
| | 12 | 'AZ' => 'Arizona', |
| | 13 | 'AR' => 'Arkansas', |
| | 14 | 'CA' => 'Californie', |
| | 15 | 'CO' => 'Colorado', |
| | 16 | 'CT' => 'Connecticut', |
| | 17 | 'DE' => 'Delaware', |
| | 18 | 'DC' => 'District of Columbia', |
| | 19 | 'FL' => 'Floride', |
| | 20 | 'GA' => 'Géorgie', |
| | 21 | 'GU' => 'Guam', |
| | 22 | 'HI' => 'Hawaii', |
| | 23 | 'ID' => 'Idaho', |
| | 24 | 'IL' => 'Illinois', |
| | 25 | 'IN' => 'Indiana', |
| | 26 | 'IA' => 'Iowa', |
| | 27 | 'KS' => 'Kansas', |
| | 28 | 'KY' => 'Kentucky', |
| | 29 | 'LA' => 'Louisiane', |
| | 30 | 'ME' => 'Maine', |
| | 31 | 'MD' => 'Maryland', |
| | 32 | 'MA' => 'Massachusetts', |
| | 33 | 'MI' => 'Michigan', |
| | 34 | 'MN' => 'Minnesota', |
| | 35 | 'MS' => 'Mississippi', |
| | 36 | 'MO' => 'Missouri', |
| | 37 | 'MT' => 'Montana', |
| | 38 | 'NE' => 'Nebraska', |
| | 39 | 'NV' => 'Nevada', |
| | 40 | 'NH' => 'New Hampshire', |
| | 41 | 'NJ' => 'New Jersey', |
| | 42 | 'NM' => 'Nouveau-Mexique', |
| | 43 | 'NY' => 'New York', |
| | 44 | 'NC' => 'Caroline du Nord', |
| | 45 | 'ND' => 'Dakota du Nord', |
| | 46 | 'OH' => 'Ohio', |
| | 47 | 'OK' => 'Oklahoma', |
| | 48 | 'OR' => 'Oregon', |
| | 49 | 'PA' => 'Pennsylvanie', |
| | 50 | 'RI' => 'Rhode Island', |
| | 51 | 'SC' => 'Caroline du Sud', |
| | 52 | 'SD' => 'Dakota du Sud', |
| | 53 | 'TN' => 'Tennessee', |
| | 54 | 'TX' => 'Texas', |
| | 55 | 'UT' => 'Utah', |
| | 56 | 'VT' => 'Vermont', |
| | 57 | 'VA' => 'Virginie', |
| | 58 | 'WA' => 'Washington', |
| | 59 | 'WV' => 'Virginie-Occidentale', |
| | 60 | 'WI' => 'Wisconsin', |
| | 61 | 'WY' => 'Wyoming', |
| | 62 | ); |
| | 63 | |
| | 64 | // States with territories |
| | 65 | $locale['all_states'] = array_merge($locale['states'], array |
| | 66 | ( |
| | 67 | 'AS' => 'Samoa Américaines', |
| | 68 | 'FM' => 'Micronésie', |
| | 69 | 'MH' => 'Îles Marshall', |
| | 70 | 'MP' => 'Îles Mariannes du Nord', |
| | 71 | 'PW' => 'Palaos', |
| | 72 | 'PR' => 'Porto Rico', |
| | 73 | 'VI' => 'Îles Vierges', |
| | 74 | )); |
| | 75 | // Re-sort the list |
| | 76 | ksort($locale['all_states']); |