1<?xml version="1.0" encoding="utf-8"?>
2<!--
3     Copyright (C) 2013 The Android Open Source Project
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9          http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17<resources>
18
19    <!--
20        Timezone IDs for the time zones that we want to override the display strings.
21        ALWAYS ADD NEW ENTRIES AT THE END. Othewise the entries after the insertion point will
22        not match for languages that didn't get the translations.
23    -->
24    <string-array name="timezone_rename_ids" translatable="false">
25
26        <!-- Australia -->
27        <item>"Australia/Darwin"</item>
28        <item>"Australia/Adelaide"</item>
29        <item>"Australia/Brisbane"</item>
30        <item>"Australia/Sydney"</item>
31
32        <!-- Canada -->
33        <!-- Non DST version -->
34        <item>"America/Dawson_Creek"</item>
35        <!-- Non DST version -->
36        <item>"America/Regina"</item>
37        <!-- Non DST version -->
38        <item>"America/Atikokan"</item>
39        <!-- Non DST version -->
40        <item>"America/Blanc-Sablon"</item>
41
42        <!-- US -->
43        <!-- Non DST version -->
44        <item>"Pacific/Honolulu"</item>
45        <!-- DST version -->
46        <item>"America/Adak"</item>
47        <!-- Non DST version -->
48        <item>"America/Metlakatla"</item>
49        <!-- Non DST version -->
50        <item>"America/Phoenix"</item>
51
52        <!-- Mexico -->
53        <!-- DST version with post-2006 US rule -->
54        <item>"America/Tijuana"</item>
55        <!-- DST version with post-2006 US rule -->
56        <item>"America/Ojinaga"</item>
57        <!-- DST version with post-2006 US rule -->
58        <item>"America/Matamoros"</item>
59        <!-- Non DST version -->
60        <item>"America/Hermosillo"</item>
61
62        <!-- Other time zones with missing labels from the framework -->
63        <!-- Missing string in ICS -->
64        <item>"Africa/Juba"</item>
65        <!-- Missing string in ICS -->
66        <item>"America/Kralendijk"</item>
67        <!-- Missing string in ICS -->
68        <item>"America/Lower_Princes"</item>
69        <!-- Only had GMT as the display string -->
70        <item>"Europe/Minsk"</item>
71        <!-- Only had GMT as the display string -->
72        <item>"Europe/Kaliningrad"</item>
73
74        <!-- Brazil -->
75        <!-- Non DST version -->
76        <item>"America/Porto_Velho"</item>
77        <!-- Non DST version -->
78        <item>"America/Belem"</item>
79</string-array>
80
81    <!--
82        Replacement display strings for time zones. The order should match the entries in
83        timezone_rename_ids
84        ALWAYS ADD NEW ENTRIES AT THE END. Othewise the array will not be the same size until
85        all the translations are available. [CHAR LIMIT=32]
86    -->
87    <string-array name="timezone_rename_labels">
88
89        <!-- Australia -->
90        <item>"Australian Central - NT"</item>
91        <item>"Australian Central - SA"</item>
92        <item>"Australian Eastern - QLD"</item>
93        <item>"Australian Eastern - NSW"</item>
94
95        <!-- Canada -->
96        <item>"Mountain Standard - Dawson Creek"</item>
97        <item>"Central Standard - Saskatchewan"</item>
98        <item>"Eastern Standard - Atikokan"</item>
99        <item>"Atlantic Standard - Quebec"</item>
100
101        <!-- US -->
102        <item>"Hawaii-Aleutian - Hawaii"</item>
103        <item>"Hawaii-Aleutian - Alaska"</item>
104        <item>"Pacific Standard - Metlakatla"</item>
105        <item>"Mountain Standard - Arizona"</item>
106
107        <!-- Mexico -->
108        <item>"Pacific - Baja California"</item>
109        <item>"Mountain - Chihuahua"</item>
110        <item>"Central - Tamaulipas"</item>
111        <item>"Mountain - Sonora"</item>
112
113        <!-- Other countries with missing or undesirable labels from the framework -->
114        <item>"East Africa Time"</item>
115        <item>"Atlantic Standard Time"</item>
116        <item>"Atlantic Standard Time"</item>
117        <item>"Eastern European Time"</item>
118        <item>"Kaliningrad Time"</item>
119
120        <!-- Brazil -->
121        <!-- Non DST version of Amazon Standard Time -->
122        <item>"Amazon - Rondônia"</item>
123        <!-- Non DST version of Brasilia Standard Time -->
124        <item>"Brasilia - Pará"</item>
125        </string-array>
126
127    <!--
128        Country codes
129        The order should match the entries in backup_country_names
130        ALWAYS ADD NEW ENTRIES AT THE END. Othewise the entries after the insertion point will
131        not match for languages that didn't get the translations.
132    -->
133    <string-array name="backup_country_codes" translatable="false">
134        <item>"SX"</item>
135        <item>"BQ"</item>
136        <item>"CW"</item>
137        <item>"SS"</item>
138    </string-array>
139
140    <!--
141        Display strings for country names. Used only if framework doesn't have translated
142        country names. The order should match the entries in backup_country_codes
143        ALWAYS ADD NEW ENTRIES AT THE END. Othewise the array will not be the same size until
144        all the translations are available. [CHAR LIMIT=32]
145    -->
146    <string-array name="backup_country_names">
147        <item>"Sint Maarten"</item>
148        <item>"Caribbean Netherlands"</item>
149        <item>"Curaçao"</item>
150        <item>"South Sudan"</item>
151    </string-array>
152</resources>
153