• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2title: Time Zones and City names
3---
4
5# Time Zones and City names
6
7## Time Zone Names
8
9Time zones (such as "Pacific Time" or "France Time") can be formatted in different ways:
10
11- "metazone" names, such as "Pacific Time" or "Pacific Standard Time", that can apply to segments of a country or groups of countries.
12- location (country or city) based names, such as "Paris Time" or "Japan Standard Time"
13    - These are constructed using patterns (see below), plus [Country/Region Names](https://cldr.unicode.org/translation/displaynames/countryregion-territory-names) and City Names.
14    - When a "metazone" name is absent, a location based name is used as a fallback.
15- raw offsets, like "GMT+10:00"
16    - These are constructed using patterns (see below).
17
18**Tips:**
19
20- When translating time zone names, include the Region information if the name can be ambiguous. For example, “Central time” would be ambiguous without the America\_Central region context.
21- When the English name can be ambiguous in your language, use the name that's most commonly used. For example, the English America\_Mountain "Mountain time" can be ambiguous and including "Rocky" may be most commonly understood in your language; thus the translation would be for "Rocky Mountain time".
22
23For each of the first two, there are three choices:
24
25- Winter (standard) time, such as "Atlantic Standard Time"
26- Summer (daylight) time, such as "Atlantic Daylight Time"
27- Generic time, such as "Atlantic Time". This is used for recurring times (such as in a Calendar program) that change between summer and winter.
28
29## Time Zone Patterns
30
31The following special patterns are used in formatting timezones.
32
33| Name | English Pattern | English_Example | Meaning |  |
34|---|---|---|---|---|
35| gmtFormat | GMT{0}<br /> *or*<br /> GMT{ HOURS_FROM_GMT } | GMT -2:00 | **GMT Pattern.** Modify this field if the format for GMT time uses different letters, such as  HUA+0200  for  GMT+02:00 , or if the letters GMT occur after the time. Make sure you include the  {0} ; that is where the actual time value will go! |  |
36| gmtZeroFormat | GMT | GMT | **GMT Zero Pattern.**  *This field must be consistent with the GMT Pattern.* |  |
37| hourFormat | +HH:mm;-HH:mm | GMT -02:00 | **GMT Hours Pattern.** This field controls the format for the time used with the GMT Pattern. It contains two patterns separated by a ";". The first controls positive time values (and zero), and the second controls the negative values. So to get  *GMT+02.00* for positive values, and  *GMT-02.00* for negative values, you'd use *+HH.mm;-HH.mm*. |  |
38| regionFormat | {0} Time<br /> *or*<br /> { COUNTRY } Time / { CITY } Time | Bolivia Time | **Location-Based Time Zone Pattern.** For generic references to time zones, the country is used if possible, composed with a pattern that in English appears as "{0}  **Time** ". Thus a time zone may appear as "Malaysia  **Time** " or " **Hora de**  Malasia". If the country has multiple time zones, then a city is used to distinguish which one, thus "Argentina (La Rioja)  **Time** ".<br /><br /> Some languages would normally have grammatical adjustments depending on what the name of the city is. For example, one might need "12:43 pm  **Tempo d'** Australia" but "12:43 pm  **Tempo de**   Paris". In that case, there are two approaches:<br /><br /> 1. Use "{0}", which will give results like "12:43 pm Australia" and "12:43 pm Paris", or<br /> 2. Use a "form-style" phrasing such as " **Tempo de:**  {0}", which will give results like "12:43 pm  **Tempo de:**  Australia" and "12:43 pm **Tempo de:**  Paris". |  |
39| regionFormat-standard | {0} Standard Time<br /> *or*<br /> { COUNTRY } Standard Time / { CITY } Standard Time | Bolivia Standard Time |  |   |
40| regionFormat-daylight | {0} Daylight Time<br /> *or*<br /> { COUNTRY } Daylight Time / { CITY } Daylight Time | Bolivia Daylight Time |  |   |
41| fallbackFormat | {1} ({0})<br /> *or*<br /> { METAZONE_NAME } ({ CITY }) | Central Time  ( Cancun ) | **Metazone Name with Location Pattern.** This field is usually not translated. This field to control the formatting of ambiguous metazone name name. When a set of metazone's generic names are shared by multiple different zones and GMT offset at the given time in a zone is different from other zones using the same metazone, this format pattern is used to distinguish the zone from others. In the pattern, {0} will be replaced by location name (either country or city) and {1} will be replaced with the metazone's name.      |  |
42
43## City Names
44
45Please choose the most neutral grammatical form of the city name. The city name will typically be used to indicate a timezone, either in a menu, or in formatting a time.
46
47In a few cases, what is included in the list of cities for translation is actually a country name, such as the following. In those cases, use the name of the country instead.
48
49- Costa Rica
50- Cape Verde
51- Faeroe (for the Faroe Islands)
52
53**Usage**
54
55A city may be used in a menu of timezone names, such as:
56
57- ...
58- United States Time (Los Angeles)
59- United States Time (New York)
60- United Kingdom Time (London)
61- ...
62
63Timezones may also have a simpler format, depending on the language, such as:
64
65- ...
66- United States (Los Angeles)
67- United States (New York)
68- United Kingdom (London)
69- ...
70
71The city name may also be used in formatted times, such as:
72
73- 12:51 AM France Time (Paris)
74
75**Unique Names**
76
77City names must be unique. See [Country/Region Names](https://cldr.unicode.org/translation/displaynames/countryregion-territory-names) for techniques.
78
79