Version | 46 |
---|---|
Editors | Peter Edberg and other CLDR committee members |
For the full header, summary, and status, see Part 1: Core.
This document describes parts of an XML format (vocabulary) for the exchange of structured locale data. This format is used in the Unicode Common Locale Data Repository.
This is a partial document, describing only those parts of the LDML that are relevant for date, time, and time zone formatting. For the other parts of the LDML see the main LDML document and the links above.
This document has been reviewed by Unicode members and other interested parties, and has been approved for publication by the Unicode Consortium. This is a stable document and may be used as reference material or cited as a normative reference by other specifications.
A Unicode Technical Standard (UTS) is an independent specification. Conformance to the Unicode Standard does not imply conformance to any UTS.
Please submit corrigenda and other comments with the CLDR bug reporting form [Bugs]. Related information that is useful in understanding this document is found in the References. For the latest version of the Unicode Standard see [Unicode]. For more information see About Unicode Technical Reports and the Specifications FAQ. Unicode Technical Reports are governed by the Unicode Terms of Use.
The LDML specification is divided into the following parts:
<!ELEMENT dates (alias | (calendars?, fields?, timeZoneNames?, special*)) >
The LDML top-level <dates>
element contains information regarding the format and parsing of dates and times, the formatting of date/time intervals, and the naming of various calendar elements.
<calendars>
element is described in Calendar Elements.<fields>
element is described in Calendar Fields.<timeZoneNames>
element is described in Time Zone Names.<!ELEMENT supplementalData ( …, calendarData?, calendarPreferenceData?, weekData?, timeData?, …, timezoneData?, …, metazoneInfo?, …, dayPeriodRuleSet*, metaZones?, primaryZones?, windowsZones?, …) >
The relevant top-level supplemental elements are listed above.
<calendarData>
, <calendarPreferenceData>
, <weekData>
, <timeData>
, and <dayPeriodRuleSet>
elements are described in Supplemental Calendar Data.<timezoneData>
element is deprecated and no longer used; the <metazoneInfo>
element is deprecated at this level, and is now only used as a sub-element of <metaZones>
.<metaZones>
, <primaryZones>
, and <windowsZones>
elements are described in Supplemental Time Zone Data.<!ELEMENT calendars (alias | (calendar*, special*)) >
<!ELEMENT calendar (alias | (months?, monthPatterns?, days?, quarters?, dayPeriods?, eras?, cyclicNameSets?, dateFormats?, timeFormats?, dateTimeFormats?, special*))>
<!ATTLIST calendar type NMTOKEN #REQUIRED >
The <calendars>
element contains multiple <calendar>
elements, each of which specifies the fields used for formatting and parsing dates and times according to the calendar specified by the type
attribute (e.g. "gregorian", "buddhist", "islamic"). The behaviors for different calendars in a locale may share certain aspects, such as the names for weekdays. They differ in other respects; for example, the Japanese calendar is similar to the Gregorian calendar but has many more eras (one for each Emperor), and years are numbered within each era. All calendar data inherits either from the Gregorian calendar or other calendars in the same locale (and if not present there then from the parent up to root), or else inherits directly from the parent locale for certain calendars, so only data that differs from what would be inherited needs to be supplied. See Multiple Inheritance.
Each calendar provides—directly or indirectly—two general types of data:
<timeFormats>
element) from the Gregorian calendar in the same locale. Most non-Gregorian calendars (other than Chinese and Dangi) inherit general date format data (in the <dateFormats>
and <dateTimeFormats>
elements) from the "generic" calendar format data in the same locale, which in turn inherits from Gregorian.Calendars that use cyclicNameSets and monthPatterns (such as Chinese and Dangi) have additional symbols and distinct formats, and typically inherit these items (along with month names) from their parent locales, instead of inheriting them from Gregorian or generic data in the same locale.
The primary difference between Gregorian and "generic" format data is that date formats in "generic" usually include era with year, in order to provide an indication of which calendar is being used (Gregorian calendar formats may also commonly include era with year when Gregorian is not the default calendar for the locale). Otherwise, the "generic" date formats should normally be consistent with those in the Gregorian calendar. The "generic" calendar formats are intended to provide a consistent set of default formats for non-Gregorian calendars in the locale, so that in most cases the only data items that need be provided for non-Gregorian calendars are the era names and month names (and the latter only for calendars other than Buddhist, Japanese, and Minguo, since those inherit month names from Gregorian).
<!ELEMENT months ( alias | (monthContext*, special*)) >
<!ELEMENT monthContext ( alias | (default*, monthWidth*, special*)) >
<!ATTLIST monthContext type ( format | stand-alone ) #REQUIRED >
<!ELEMENT monthWidth ( alias | (month*, special*)) >
<!ATTLIST monthWidth type ( abbreviated| narrow | wide) #REQUIRED >
<!ELEMENT month ( #PCDATA )* >
<!ATTLIST month type ( 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 ) #REQUIRED >
<!ATTLIST month yeartype ( standard | leap ) #IMPLIED >
<!ELEMENT days ( alias | (dayContext*, special*)) >
<!ELEMENT dayContext ( alias | (default*, dayWidth*, special*)) >
<!ATTLIST dayContext type ( format | stand-alone ) #REQUIRED >
<!ELEMENT dayWidth ( alias | (day*, special*)) >
<!ATTLIST dayWidth type NMTOKEN #REQUIRED >
<!ELEMENT day ( #PCDATA ) >
<!ATTLIST day type ( sun | mon | tue | wed | thu | fri | sat ) #REQUIRED >
<!ELEMENT quarters ( alias | (quarterContext*, special*)) >
<!ELEMENT quarterContext ( alias | (default*, quarterWidth*, special*)) >
<!ATTLIST quarterContext type ( format | stand-alone ) #REQUIRED >
<!ELEMENT quarterWidth ( alias | (quarter*, special*)) >
<!ATTLIST quarterWidth type NMTOKEN #REQUIRED >
<!ELEMENT quarter ( #PCDATA ) >
<!ATTLIST quarter type ( 1 | 2 | 3 | 4 ) #REQUIRED >
<!ELEMENT eras (alias | (eraNames?, eraAbbr?, eraNarrow?, special*)) >
<!ELEMENT eraNames ( alias | (era*, special*) ) >
<!ELEMENT eraAbbr ( alias | (era*, special*) ) >
<!ELEMENT eraNarrow ( alias | (era*, special*) ) >
The month and quarter names are identified numerically, starting at 1. The weekday names are identified with short strings, since there is no universally-accepted numeric designation.
Month, day, and quarter names may vary along two axes: the width and the context.
The context is either format (the default), the form used within a complete date format string (such as "Saturday, November 12"), or stand-alone, the form for date elements used independently, such as in calendar headers. The stand-alone form may be used in any other date format that shares the same form of the name. For month names, this is typically the nominative grammatical form, and might also be used in patterns such as "LLLL y" (month name + year). The format form is an additional form that can be used in contexts where it is different than the stand-alone form. For example, in many languages, patterns that combine month name with day-of-month (and possibly other elements) may require the month name to be in a grammatical form such as genitive or partitive.
<contextTransforms>
element as described in ContextTransform Elements, so both format and stand-alone forms should generally use middle-of-sentence capitalization.The width can be wide (the default), abbreviated, or narrow; for days only, the width can also be short, which is ideally between the abbreviated and narrow widths, but must be no longer than abbreviated and no shorter than narrow (if short day names are not explicitly specified, abbreviated day names are used instead). Note that for <monthPattern>
, described in the next section:
The format values must be distinct for the wide, abbreviated, and short widths. However, values for the narrow width in either format or stand-alone contexts, as well as values for other widths in stand-alone contexts, need not be distinct; they might only be distinguished by context. For example, "S" may be used both for Saturday and for Sunday. The narrow width is typically used in calendar headers; it must be the shortest possible width, no more than one character (or grapheme cluster, or exemplar set element) in stand-alone values (not including punctuation), and the shortest possible widths (in terms of grapheme clusters) in format values. The short width (if present) is often the shortest unambiguous form.
Era names should be distinct within each of the widths, including narrow; there is less disambiguating information for them, and they are more likely to be used in a format that requires parsing.
Due to aliases in root, the forms inherit "sideways". (See Multiple Inheritance.) For example, if the abbreviated format data for Gregorian does not exist in a language X (in the chain up to root), then it inherits from the wide format data in that same language X.
<monthContext type="format">
<monthWidth type="abbreviated">
<alias source="locale" path="../monthWidth[@type='wide']"/>
</monthWidth>
<monthWidth type="narrow">
<alias source="locale" path="../../monthContext[@type='stand-alone']/monthWidth[@type='narrow']"/>
</monthWidth>
<monthWidth type="wide">
<month type="1">1</month>
...
<month type="12">12</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="abbreviated">
<alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='abbreviated']"/>
</monthWidth>
<monthWidth type="narrow">
<month type="1">1</month>
...
<month type="12">12</month>
</monthWidth>
<monthWidth type="wide">
<alias source="locale" path="../../monthContext[@type='format']/monthWidth[@type='wide']"/>
</monthWidth>
</monthContext>
The yeartype
attribute for months is used to distinguish alternate month names that would be displayed for certain calendars during leap years. The practical example of this usage occurs in the Hebrew calendar, where the 7th month "Adar" occurs in non-leap years, with the 6th month being skipped, but in leap years there are two months named "Adar I" and "Adar II". There are currently only two defined year types, standard (the implied default) and leap.
For era
elements, an additional alt="variant"
form may be supplied. This is primarily intended for use in the "gregorian" calendar, with which two parallel sets of era designations are used in some locales: one set with a religious reference (e.g. English BC/AD), and one set without (e.g. English BCE/CE). The most commonly-used set for the locale should be provided as the default, and the other set may be provided as the alt="variant"
forms. See the example below.
Example:
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="wide">
<month type="1">January</month>
<month type="2">February</month>
...
<month type="11">November</month>
<month type="12">December</month>
</monthWidth>
<monthWidth type="abbreviated">
<month type="1">Jan</month>
<month type="2">Feb</month>
...
<month type="11">Nov</month>
<month type="12">Dec</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<default type="wide"/>
<monthWidth type="wide">
<month type="1">Januaria</month>
<month type="2">Februaria</month>
...
<month type="11">Novembria</month>
<month type="12">Decembria</month>
</monthWidth>
<monthWidth type="narrow">
<month type="1">J</month>
<month type="2">F</month>
...
<month type="11">N</month>
<month type="12">D</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="wide">
<day type="sun">Sunday</day>
<day type="mon">Monday</day>
...
<day type="fri">Friday</day>
<day type="sat">Saturday</day>
</dayWidth>
<dayWidth type="abbreviated">
<day type="sun">Sun</day>
<day type="mon">Mon</day>
...
<day type="fri">Fri</day>
<day type="sat">Sat</day>
</dayWidth>
<dayWidth type="narrow">
<day type="sun">Su</day>
<day type="mon">M</day>
...
<day type="fri">F</day>
<day type="sat">Sa</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun">S</day>
<day type="mon">M</day>
...
<day type="fri">F</day>
<day type="sat">S</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">Q1</quarter>
<quarter type="2">Q2</quarter>
<quarter type="3">Q3</quarter>
<quarter type="4">Q4</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1st quarter</quarter>
<quarter type="2">2nd quarter</quarter>
<quarter type="3">3rd quarter</quarter>
<quarter type="4">4th quarter</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<eras>
<eraAbbr>
<era type="0">BC</era>
<era type="0" alt="variant">BCE</era>
<era type="1">AD</era>
<era type="1" alt="variant">CE</era>
</eraAbbr>
<eraNames>
<era type="0">Before Christ</era>
<era type="0" alt="variant">Before Common Era</era>
<era type="1">Anno Domini</era>
<era type="1" alt="variant">Common Era</era>
</eraNames>
<eraNarrow>
<era type="0">B</era>
<era type="1">A</era>
</eraNarrow>
</eras>
<!ELEMENT monthPatterns ( alias | (monthPatternContext*, special*)) >
<!ELEMENT monthPatternContext ( alias | (monthPatternWidth*, special*)) >
<!ATTLIST monthPatternContext type ( format | stand-alone | numeric ) #REQUIRED >
<!ELEMENT monthPatternWidth ( alias | (monthPattern*, special*)) >
<!ATTLIST monthPatternWidth type ( abbreviated| narrow | wide | all ) #REQUIRED >
<!ELEMENT monthPattern ( #PCDATA ) >
<!ATTLIST monthPattern type ( leap | standardAfterLeap | combined ) #REQUIRED >
<!ELEMENT cyclicNameSets ( alias | (cyclicNameSet*, special*)) >
<!ELEMENT cyclicNameSet ( alias | (cyclicNameContext*, special*)) >
<!ATTLIST cyclicNameSet type ( years | months | days | dayParts | zodiacs | solarTerms ) #REQUIRED >
<!ELEMENT cyclicNameContext ( alias | (cyclicNameWidth*, special*)) >
<!ATTLIST cyclicNameContext type ( format | stand-alone ) #REQUIRED >
<!ELEMENT cyclicNameWidth ( alias | (cyclicName*, special*)) >
<!ATTLIST cyclicNameWidth type ( abbreviated | narrow | wide ) #REQUIRED >
<!ELEMENT cyclicName ( #PCDATA ) >
<!ATTLIST cyclicName type NMTOKEN #REQUIRED >
The Chinese lunar calendar can insert a leap month after nearly any month of its year; when this happens, the month takes the name of the preceding month plus a special marker. The Hindu lunar calendars can insert a leap month before any one or two months of the year; when this happens, not only does the leap month take the name of the following month plus a special marker, the following month also takes a special marker. Moreover, in the Hindu calendar sometimes a month is skipped, in which case the preceding month takes a special marker plus the names of both months. The <monthPatterns>
element structure supports these special kinds of month names. It parallels the <months>
element structure, with various contexts and widths, but with some differences:
monthPatternContext
type numeric
for this case. When the numeric context is used, there is no need for different widths, so the monthPatternWidth
type is all
for this case.<monthPattern>
element itself is a pattern showing how to create the modified month name from the standard month name(s). The three types of possible pattern are for leap
, standardAfterLeap
, and combined
.<monthPatterns>
element is not present for calendars that do not need it.The Chinese and Hindu lunar calendars also use a 60-name cycle for designating years. The Chinese lunar calendars can also use that cycle for months and days, and can use 12-name cycles for designating day subdivisions or zodiac names associated with years; a 24-name cycle of solar terms (12 pairs of minor and major terms) is used to mark intervals in the solar cycle. The <cyclicNameSets>
element structure supports these special kinds of name cycles; a cyclicNameSet
can be provided for types year
, month
, day
, dayParts
, or zodiacs
. For each cyclicNameSet
, there is a context and width structure similar to that for day names. For a given context and width, a set of cyclicName
elements provides the actual names.
Example:
<monthPatterns>
<monthPatternContext type="format">
<monthPatternWidth type="wide">
<monthPattern type="leap">闰{0}</monthPattern>
</monthPatternWidth>
</monthPatternContext>
<monthPatternContext type="stand-alone">
<monthPatternWidth type="narrow">
<monthPattern type="leap">闰{0}</monthPattern>
</monthPatternWidth>
</monthPatternContext>
<monthPatternContext type="numeric">
<monthPatternWidth type="all">
<monthPattern type="leap">闰{0}</monthPattern>
</monthPatternWidth>
</monthPatternContext>
</monthPatterns>
<cyclicNameSets>
<cyclicNameSet type="years">
<cyclicNameContext type="format">
<cyclicNameWidth type="abbreviated">
<cyclicName type="1">甲子</cyclicName>
<cyclicName type="2">乙丑</cyclicName>
...
<cyclicName type="59">壬戌</cyclicName>
<cyclicName type="60">癸亥</cyclicName>
</cyclicNameWidth>
</cyclicNameContext>
</cyclicNameSet>
<cyclicNameSet type="zodiacs">
<cyclicNameContext type="format">
<cyclicNameWidth type="abbreviated">
<cyclicName type="1">鼠</cyclicName>
<cyclicName type="2">牛</cyclicName>
...
<cyclicName type="11">狗</cyclicName>
<cyclicName type="12">猪</cyclicName>
</cyclicNameWidth>
</cyclicNameContext>
</cyclicNameSet>
<cyclicNameSet type="solarTerms">
<cyclicNameContext type="format">
<cyclicNameWidth type="abbreviated">
<cyclicName type="1">立春</cyclicName>
<cyclicName type="2">雨水</cyclicName>
...
<cyclicName type="23">小寒</cyclicName>
<cyclicName type="24">大寒</cyclicName>
</cyclicNameWidth>
</cyclicNameContext>
</cyclicNameSet>
</cyclicNameSets>
The former am
/pm
elements have been deprecated, and replaced by the more flexible dayPeriods
.
<!ELEMENT dayPeriods ( alias | (dayPeriodContext*) ) >
<!ELEMENT dayPeriodContext (alias | dayPeriodWidth*) >
<!ATTLIST dayPeriodContext type NMTOKEN #REQUIRED >
<!ELEMENT dayPeriodWidth (alias | dayPeriod*) >
<!ATTLIST dayPeriodWidth type NMTOKEN #REQUIRED >
<!ELEMENT dayPeriod ( #PCDATA ) >
<!ATTLIST dayPeriod type NMTOKEN #REQUIRED >
These behave like months, days, and so on in terms of having context and width. Each locale has an associated dayPeriodRuleSet in the supplemental data, rules that specify when the day periods start and end for that locale. Each type in the rules needs to have a translation in a dayPeriod (but if translation data is missing for a particular variable dayPeriod in the locale’s language and script, formatting should fall back to using the am/pm values). For more information, see Day Period Rules.
The dayPeriod names should be distinct within each of the context/width combinations, including narrow; as with era names, there is less disambiguating information for them, and they are more likely to be used in a format that requires parsing. In some unambiguous cases, it is acceptable for certain overlapping dayPeriods to be the same, such as the names for am
and morning
, or the names for pm
and afternoon
.
If dayPeriods are specified for noon
and midnight
, they can often be formatted without also specifying the numeric time, e.g. "May 6, noon" instead of "May 6, 12:00 noon" or "May 6, 12:00 PM". To prevent parse issues, this should only be done if the names for noon
and midnight
are not also used for any other day periods, such as for morning2
or night1
.
Example:
<dayPeriods>
<dayPeriodContext type="format">
<dayPeriodWidth type="wide">
<dayPeriod type="am">AM</dayPeriod>
<dayPeriod type="noon">noon</dayPeriod>
<dayPeriod type="pm">PM</dayPeriod>
</dayPeriodWidth>
</dayPeriodContext>
</dayPeriods>
<!ELEMENT dateFormats (alias | (default*, dateFormatLength*, special*)) >
<!ELEMENT dateFormatLength (alias | (default*, dateFormat*, special*)) >
<!ATTLIST dateFormatLength type ( full | long | medium | short ) #REQUIRED >
<!ELEMENT dateFormat (alias | (pattern*, datetimeSkeleton*, displayName*, special*)) >
<!ELEMENT pattern ( #PCDATA ) >
<!ATTLIST pattern numbers CDATA #IMPLIED >
<!ATTLIST pattern alt NMTOKENS #IMPLIED >
<!ATTLIST pattern draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
<!ELEMENT datetimeSkeleton ( #PCDATA ) >
<!ATTLIST datetimeSkeleton numbers CDATA #IMPLIED >
<!ATTLIST datetimeSkeleton alt NMTOKENS #IMPLIED >
<!ATTLIST datetimeSkeleton draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
Standard date formats have the following form:
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, MMMM d, y</pattern>
<datetimeSkeleton>yMMMMEEEEd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
...
<dateFormatLength type="medium">
<dateFormat>
<pattern>MMM d, y</pattern>
<datetimeSkeleton>yMMMd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
...
<dateFormats>
<dateFormats>
...
<dateFormatLength type="medium">
<dateFormat>
<pattern numbers="hebr">d בMMMM y</pattern>
<datetimeSkeleton numbers="hebr">yMMMMd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
...
<dateFormats>
<dateFormats>
...
<dateFormatLength type="long">
<dateFormat>
<pattern numbers="d=hanidays">rU年MMMMd</pattern>
<datetimeSkeleton numbers="d=hanidays">rMMMMd</datetimeSkeleton>
</dateFormat>
</dateFormatLength>
...
The patterns for date formats and time formats are defined in Date Format Patterns. These patterns are intended primarily for display of isolated date and time strings in user-interface elements, rather than for date and time strings in the middle of running text, so capitalization and grammatical form should be chosen appropriately.
Standard date and time patterns are each normally provided in four types: full (usually with weekday name), long (with wide month name), medium, and short (usually with numeric month).
The numbers
attribute can be used to explicitly specify a number system to be used for all of the numeric fields in the date format (as in numbers="hebr"
), or for a specific field in the date format (as in numbers="d=hanidays"
). This attribute overrides any default numbering system specified for the locale.
The datetimeSkeleton
element contains a skeleton (see availableFormats) derived from the pattern. In the future the intent is to be able to generate the standard patterns from these datetimeSkeleton
elements. However, in CLDR 40, the mechanisms associated with the availableFormats
elements are not quite powerful enough to generate patterns that exactly match all of the ones provided in the pattern
elements.
<!ELEMENT timeFormats (alias | (default*, timeFormatLength*, special*)) >
<!ELEMENT timeFormatLength (alias | (default*, timeFormat*, special*)) >
<!ATTLIST timeFormatLength type ( full | long | medium | short ) #REQUIRED >
<!ELEMENT timeFormat (alias | (pattern*, datetimeSkeleton*, displayName*, special*)) >
Standard time formats have the following form:
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<displayName>DIN 5008 (EN 28601)</displayName>
<pattern>h:mm:ss a z</pattern>
<datetimeSkeleton>ahmmssz</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>h:mm:ss a</pattern>
<datetimeSkeleton>ahmmss</datetimeSkeleton>
</timeFormat>
</timeFormatLength>
</timeFormats>
The preference of 12 hour versus 24 hour for the locale can be derived from the Time Data. If the preferred hour symbol is 'h' or 'K' then the format is 12 hour; otherwise it is 24 hour. Formats with 'h' or 'K' must also include a field with one of the day period pattern characters: 'a', 'b', or 'B'.
To account for customary usage in some countries, APIs should allow for formatting times that go beyond 23:59:59. For example, in some countries it would be customary to indicate that opening hours extending from Friday at 7pm to Saturday at 2am in a format like the following:
Friday: 19:00 – 26:00
Time formats use the specific non-location format (z or zzzz) for the time zone name. This is the format that should be used when formatting a specific time for presentation. When formatting a time referring to a recurring time (such as a meeting in a calendar), applications should substitute the generic non-location format (v or vvvv) for the time zone in the time format pattern. See Using Time Zone Names for a complete description of available time zone formats and their uses.
<!ELEMENT dateTimeFormats (alias | (default*, dateTimeFormatLength*, availableFormats*, appendItems*, intervalFormats*, special*)) >
Date/Time formats have the following form:
<dateTimeFormats>
<dateTimeFormatLength type="full">
<dateTimeFormat>
<pattern>{1}, {0}</pattern>
</dateTimeFormat>
<dateTimeFormat type="atTime">
<pattern>{1} 'at' {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="long">
<dateTimeFormat>
<pattern>{1}, {0}</pattern>
</dateTimeFormat>
<dateTimeFormat type="atTime">
<pattern>{1} 'at' {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="medium">
<dateTimeFormat>
<pattern>{1}, {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="short">
<dateTimeFormat>
<pattern>{1}, {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<availableFormats>
<dateFormatItem id="Hm">HH:mm</dateFormatItem>
<dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="MEd">E, M/d</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
<dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
<dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
<dateFormatItem id="MMMd">MMM d</dateFormatItem>
<dateFormatItem id="Md">M/d</dateFormatItem>
<dateFormatItem id="d">d</dateFormatItem>
<dateFormatItem id="hm">h:mm a</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">yyyy</dateFormatItem>
<dateFormatItem id="yM">M/yyyy</dateFormatItem>
<dateFormatItem id="yMEd">EEE, M/d/yyyy</dateFormatItem>
<dateFormatItem id="yMMM">MMM yyyy</dateFormatItem>
<dateFormatItem id="yMMMEd">EEE, MMM d, yyyy</dateFormatItem>
<dateFormatItem id="yMMMM">MMMM yyyy</dateFormatItem>
<dateFormatItem id="yQ">Q yyyy</dateFormatItem>
<dateFormatItem id="yQQQ">QQQ yyyy</dateFormatItem>
. . .
</availableFormats>
<appendItems>
<appendItem request="Day">{0} ({2}: {1})</appendItem>
<appendItem request="Day-Of-Week">{0} {1}</appendItem>
<appendItem request="Era">{0} {1}</appendItem>
<appendItem request="Hour">{0} ({2}: {1})</appendItem>
. . .
</appendItems>
</dateTimeFormats>
</calendar>
<calendar type="buddhist">
<eras>
<eraAbbr>
<era type="0">BE</era>
</eraAbbr>
</eras>
</calendar>
These formats allow for date and time formats to be composed in various ways.
<!ELEMENT dateTimeFormatLength (alias | (default*, dateTimeFormat*, special*))>
<!ATTLIST dateTimeFormatLength type ( full | long | medium | short ) #IMPLIED >
<!ELEMENT dateTimeFormat (alias | (pattern*, displayName*, special*))>
<!ATTLIST dateTimeFormat type NMTOKEN "standard" >
<!--@MATCH:literal/standard, atTime-->
The dateTimeFormat
element works like the dateFormats and timeFormats, except that the pattern is of the form "{1} {0}", where {0} is replaced by the time format, and {1} is replaced by the date format, with results such as "8/27/06 7:31 AM". Except for the substitution markers {0} and {1}, text in the dateTimeFormat is interpreted as part of a date/time pattern, and is subject to the same rules described in Date Format Patterns. This includes the need to enclose ASCII letters in single quotes if they are intended to represent literal text.
When combining a standard date pattern with a standard time pattern, start with the dateTimeFormatLength
whose type
matches the type of the date pattern, and then use one of the dateTimeFormat
s for that dateTimeFormatLength
(as described after the following table). For example:
Date-Time Combination | dateTimeFormat | Results |
---|---|---|
full date + short time | full, e.g. "{1} 'at' {0}" | Wednesday, September 18, 2013 at 4:30 PM |
medium date + long time | medium, e.g. "{1}, {0}" | Sep 18, 2013, 4:30:00 PM PDT |
For each dateTimeFormatLength
, there is a standard dateTimeFormat
. In addition to the placeholders {0} and {1}, this should not have characters other than space and punctuation; it should impose no grammatical context that might require specific grammatical forms for the date and/or time. For English, this might be “{1}, {0}”.
In addition, especially for the full and long dateTimeFormatLength
s, there may be a dateTimeFormat
with type="atTime"
. This is used to indicate an event at a specific time, and may impose specific grammatical requirements on the formats for date and/or time. For English, this might be “{1} 'at' {0}”.
The default guidelines for choosing which dateTimeFormat
to use for a given dateTimeFormatLength
are as follows:
<!ELEMENT availableFormats (alias | (dateFormatItem*, special*))>
<!ELEMENT dateFormatItem ( #PCDATA ) >
<!ATTLIST dateFormatItem id CDATA #REQUIRED >
The availableFormats
element and its subelements provide a more flexible formatting mechanism than the predefined list of patterns represented by dateFormatLength, timeFormatLength, and dateTimeFormatLength. Instead, there is an open-ended list of patterns (represented by dateFormatItem
elements as well as the predefined patterns mentioned above) that can be matched against a requested set of calendar fields and field lengths. Software can look through the list and find the pattern that best matches the original request, based on the desired calendar fields and lengths. For example, the full month and year may be needed for a calendar application; the request is MMMMyyyy, but the best match may be "y MMMM" or even "G yy MMMM", depending on the locale and calendar.
For some calendars, such as Japanese, a displayed year must have an associated era, so for these calendars dateFormatItem patterns with a year field should also include an era field. When matching availableFormats patterns: If a client requests a format string containing a year, and all the availableFormats patterns with a year also contain an era, then include the era as part of the result.
The id
attribute is a so-called "skeleton", containing only field information, and in a canonical order. Examples are "yMMMM" for year + full month, or "MMMd" for abbreviated month + day. In particular:
In order to support user overrides of default locale behavior, data should be supplied for both 12-hour-cycle time formats (using h or K) and 24-hour-cycle time formats (using H or k), even if one of those styles is not commonly used; the locale's actual preference for 12-hour or 24-hour time cycle is determined from the Time Data as described above in timeFormats. Thus skeletons using h or K should have patterns that only use h or K for hours, while skeletons using H or k should have patterns that only use H or k for hours.
The rules governing use of day period pattern characters in patterns and skeletons are as follows:
Locales should generally provide availableFormats data for a fairly complete set of time skeletons without B, typically the following:
H, h, Hm, hm, Hms, hms, Hmv, hmv, Hmsv, hmsv
Locales that use 12-hour-cycle time formats with B may provide availableFormats data for a smaller set of time skeletons with B, for example:
Bh, Bhm, Bhms
When matching a requested skeleton containing b or B to the skeletons actually available in the data, if there is no skeleton matching the specified day period field, then find a match in which the b or B matches an explicit or implicit 'a' in the skeleton, but replace the 'a' in the corresponding pattern with the requested day period b or B. The following table illustrates how requested skeletons map to patterns with different sets of availableFormats
data:
results for different availableFormats data sets | ||
---|---|---|
requested skeleton | set 1: ...id="H">H</date... ...id="h">h a</date... |
set 2: ...id="H">H</date... ...id="h">h a</date... ...id="Bh">B h</date... |
"h" (or "ah") | "h a" | "h a" |
"bh" | "h b" | "h b" |
"Bh" | "h B" | "B h" |
"H" (or "aH", "bH", "BH") | "H" | "H" |
The hour input skeleton symbols 'j', 'J', and 'C' can be used to select the best hour format (h, H, …) before processing, and the appropriate dayperiod format (a, b, B) after a successful match that contains an 'a' symbol.
The dateFormatItems inherit from their parent locale, so the inherited items need to be considered when processing.
It is not necessary to supply dateFormatItem
s with skeletons for every field length; fields in the skeleton and pattern are expected to be adjusted in parallel to handle a request.
Typically a “best match” from requested skeleton to the id
portion of a dateFormatItem
is found using a closest distance match, such as:
Skeleton symbols requesting a best choice for the locale are replaced.
For skeleton and id
fields with symbols representing the same type (year, month, day, etc):
A requested skeleton that includes both seconds and fractional seconds (e.g. “mmssSSS”) is allowed to match a dateFormatItem skeleton that includes seconds but not fractional seconds (e.g. “ms”). In this case the requested sequence of ‘S’ characters (or its length) should be retained separately and used when adjusting the pattern, as described below.
Otherwise, missing or extra fields between requested skeleton and id
cause a match to fail. (But see Missing Skeleton Fields below.)
Once a best match is found between requested skeleton and dateFormatItem
id
, the corresponding dateFormatItem
pattern is used, but with adjustments primarily to make the pattern field lengths match the skeleton field lengths. However, the pattern field lengths should not be matched in some cases:
When the best-match dateFormatItem
has an alphabetic field (such as MMM or MMMM) that corresponds to a numeric field in the pattern (such as M or MM), that numeric field in the pattern should not be adjusted to match the skeleton length, and vice versa; i.e. adjustments should never convert a numeric element in the pattern to an alphabetic element, or the opposite. See the second set of examples below.
When the pattern field corresponds to an availableFormats skeleton with a field length that matches the field length in the requested skeleton, the pattern field length should not be adjusted. This permits locale data to override a requested field length; see the third example below.
Pattern field lengths for hour, minute, and second should by default not be adjusted to match the requested field length (i.e. locale data takes priority). However APIs that map skeletons to patterns should provide the option to override this behavior for cases when a client really does want to force a specific pattern field length.
For an example of general behavior, consider the following dateFormatItem
:
<dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
If this is the best match for yMMMMd, the pattern is automatically expanded to produce a pattern "d MMMM y" in response to the request. Of course, if the desired behavior is that a request for yMMMMd should produce something other than "d MMMM y", a separate dateFormatItem
must be present, for example:
<dateFormatItem id="yMMMMd">d 'de' MMMM 'de' y</dateFormatItem>
For an example of not converting a pattern fields between numeric and alphabetic (point 1 above), consider the following dateFormatItem
:
<dateFormatItem id="yMMM">y年M月</dateFormatItem>
If this is the best match for a requested skeleton yMMMM, automatic expansion should not produce a corresponding pattern “y年MMMM月”; rather, since “y年M月” specifies a numeric month M, automatic expansion should not modify the pattern, and should produce “y年M月” as the match for requested skeleton yMMMM.
For an example of not converting a pattern field length if the corresponding skeleton field matches the requested field length (point 2 above), consider the following dateFormatItem
:
<dateFormatItem id="MMMEd">E, d בMMMM</dateFormatItem>
For Hebrew calendar date formats in the Hebrew locale, only the full month names should be used, even if abbreviated months are requested. Hence the dateFormatItem
maps a request for abbreviated months to a pattern with full months. The same dateFormatItem
can be expanded to expanded to match a request for “MMMMEd” to the same pattern.
Finally: If the requested skeleton included both seconds and fractional seconds and the dateFormatItem skeleton included seconds but not fractional seconds, then the seconds field of the corresponding pattern should be adjusted by appending the locale’s decimal separator, followed by the sequence of ‘S’ characters from the requested skeleton.
If a client-requested set of fields includes both date and time fields, and if the availableFormats
data does not include a dateFormatItem
whose skeleton matches the same set of fields, then the request should be handled as follows:
dateFormatItem
, and expand the pattern as above.dateFormatItem
s using the appropriate dateTimeFormat pattern, determined as follows from the requested date fields:<dateTimeFormatLength type="full">
<dateTimeFormatLength type="long">
<dateTimeFormatLength type="medium">
<dateTimeFormatLength type="short">
<!ELEMENT appendItems (alias | (appendItem*, special*))>
<!ELEMENT appendItem ( #PCDATA ) >
<!ATTLIST appendItem request CDATA >
In case the best match does not include all the requested calendar fields, the appendItems
element describes how to append needed fields to one of the existing formats. Each appendItem
element covers a single calendar field. In the pattern, {0} represents the format string, {1} the data content of the field, and {2} the display name of the field (see Calendar Fields).
<!ELEMENT intervalFormats (alias | (intervalFormatFallback*, intervalFormatItem*, special*)) >
<!ELEMENT intervalFormatFallback ( #PCDATA ) >
<!ELEMENT intervalFormatItem (alias | (greatestDifference*, special*)) >
<!ATTLIST intervalFormatItem id NMTOKEN #REQUIRED >
<!ELEMENT greatestDifference ( #PCDATA ) >
<!ATTLIST greatestDifference id NMTOKEN #REQUIRED >
Interval formats allow for software to format intervals like "Jan 10-12, 2008" as a shorter and more natural format than "Jan 10, 2008 - Jan 12, 2008". They are designed to take a "skeleton" pattern (like the one used in availableFormats) plus start and end datetime, and use that information to produce a localized format.
The data supplied in CLDR requires the software to determine the calendar field with the greatest difference before using the format pattern. For example, the greatest difference in "Jan 10-12, 2008" is the day field, while the greatest difference in "Jan 10 - Feb 12, 2008" is the month field. This is used to pick the exact pattern.
The pattern is then designed to be broken up into two pieces by determining the first repeating field. For example, "MMM d-d, y" would be broken up into "MMM d-" and "d, y". The two parts are formatted with the first and second datetime, as described in more detail below.
For the purposes of determining a repeating field, standalone fields and format fields are considered equivalent. For example, given the pattern "LLL d - MMM d, Y", the repeating field would be "M" since standalone month field "L" is considered equivalent to format field "M" when determining the repeating field. Therefore the pattern would be broken up into "LLL d - " and "MMM d, Y".
In case there is no matching pattern, the intervalFormatFallback defines the fallback pattern. The fallback pattern is of the form "{0} - {1}" or "{1} - {0}", where {0} is replaced by the start datetime, and {1} is replaced by the end datetime. The fallback pattern determines the default order of the interval pattern. "{0} - {1}" means the first part of the interval patterns in current local are formatted with the start datetime, while "{1} - {0}" means the first part of the interval patterns in current locale are formatted with the end datetime.
The id
attribute of intervalFormatItem is the "skeleton" pattern (like the one used in availableFormats) on which the format pattern is based. The id
attribute of greatestDifference
is the calendar field letter, for example 'M', which is the greatest difference between start and end datetime.
The greatest difference defines a specific interval pattern of start and end datetime on a "skeleton" and a greatestDifference. As stated above, the interval pattern is designed to be broken up into two pieces. Each piece is similar to the pattern defined in date format. Also, each interval pattern could override the default order defined in fallback pattern. If an interval pattern starts with "latestFirst:", the first part of this particular interval pattern is formatted with the end datetime. If an interval pattern starts with "earliestFirst:", the first part of this particular interval pattern is formatted with the start datetime. Otherwise, the order is the same as the order defined in intervalFormatFallback
.
For example, the English rules that produce "Jan 10–12, 2008", "Jan 10 – Feb 12, 2008", and "Jan 10, 2008 – Feb. 12, 2009" are as follows:
<intervalFormatItem id="yMMMd">
<greatestDifference id="M">MMM d – MMM d, yyyy</greatestDifference>
<greatestDifference id="d">MMM d–d, yyyy</greatestDifference>
<greatestDifference id="y">MMM d, yyyy – MMM d, yyyy</greatestDifference>
</intervalFormatItem>
To format a start and end datetime, given a particular "skeleton":
intervalFormatItem
element that matches the "skeleton", starting in the current locale and then following the locale fallback chain up to, but not including root (better results are obtained by following steps 2-6 below with locale- or language-specific data than by using matching intervalFormats from root).availableFormats
. That is, this allows for adjusting the string value field's width, including adjusting between "MMM" and "MMMM", and using different variants of the same field, such as 'v' and 'z'.intervalFormatItem
can be synthesized as follows:greatestDifference
values corresponding to the date fields in the skeleton, use the mechanisms described under availableFormats to generate the complete date-time pattern corresponding to the skeleton, and then combine two such patterns using the intervalFormatFallback
pattern (the result will be the same for each greatestDifference
of a day or longer). For example:
MMMdHm/d → "MMM d 'at' H:mm – MMM d 'at' H:mm" → "Jan 3 at 9:00 – Jan 6 at 11:00"greatestDifference
values corresponding to the time fields in the skeleton, separate the skeleton into a date fields part and a time fields part. Use the mechanisms described under availableFormats to generate a date pattern corresponding to the date fields part. Use the time fields part to look up an intervalFormatItem
. For each greatestDifference
in the intervalFormatItem
, generate a pattern by using the dateTimeFormat to combine the date pattern with the intervalFormatItem
’s greatestDifference
element value. For example:
MMMdHm/H → "MMM d 'at' H:mm – H:mm" → "Jan 3 at 9:00 – 11:00"availableFormats
, and return.greatestDifference
element that matches this particular greatest difference.<!ELEMENT fields ( alias | (field*, special*)) >
<!ELEMENT field ( alias | (displayName*, relative*, relativeTime*, relativePeriod*, special*)) >
<!ATTLIST field type ( era | era-short | era-narrow | year | year-short | year-narrow | quarter | quarter-short | quarter-narrow | month | month-short | month-narrow | week | week-short | week-narrow | weekOfMonth | weekOfMonth-short | weekOfMonth-narrow | day | day-short | day-narrow | dayOfYear | dayOfYear-short | dayOfYear-narrow | weekday | weekday-short | weekday-narrow | weekdayOfMonth | weekdayOfMonth-short | weekdayOfMonth-narrow | sun | sun-short | sun-narrow | mon | mon-short | mon-narrow | tue | tue-short | tue-narrow | wed | wed-short | wed-narrow | thu | thu-short | thu-narrow | fri | fri-short | fri-narrow | sat | sat-short | sat-narrow | dayperiod | dayperiod-short | dayperiod-narrow | hour | hour-short | hour-narrow | minute | minute-short | minute-narrow | second | second-short | second-narrow | zone | zone-short | zone-narrow ) #IMPLIED >
<!ELEMENT relative (#PCDATA) >
<!ATTLIST relative type NMTOKEN #IMPLIED >
<!ELEMENT relativeTime ( alias | (relativeTimePattern*, special*)) >
<!ATTLIST relativeTime type NMTOKEN #REQUIRED >
<!ELEMENT relativeTimePattern ( #PCDATA ) >
<!ATTLIST relativeTimePattern count ( zero | one | two | few | many | other ) #REQUIRED >
<!ELEMENT relativePeriod (#PCDATA) >
Translations may be supplied for names of calendar fields (elements of a calendar, such as Day, Month, Year, Hour, and so on), and for relative values for those fields (for example, the day with relative value -1 is "Yesterday"). There are four types of translations; some are only relevant or useful for certain types of fields:
<displayName>
General display name for the field type. This should be relevant for all elements, including those like era and zone that might not have useful forms for the other name types. These are typically presented in titlecase (eg “Day”) since they are intended as labels in a UI.<relative>
Display names for the current instance of the field, and one or two past and future instances. In English, data is provided for year, quarter, month, week, day, specific days of the week (sun, mon, tue, …), and—with offset 0 only—for hour, minute, and second.<relativeTime>
Display names for an instance of the field that is a counted number of units in the past or the future relative to the current instance; this needs plural forms. In English, data is provided for year, quarter, month, week, day, specific days of the week, hour, minute, and second.<relativePeriod>
Pattern for designating an instance of the specified field in relation to some other date reference. This is currently only used for weeks, and provides a pattern such as “the week of {0}” which can be used to generate designations such as “the week of April 11, 2016” or “the week of April 11–15”.Where there is not a convenient, customary word or phrase in a particular language for a particular type of relative value, it should be omitted.
Examples, first for English:
<fields>
…
<field type="day">
<displayName>Day</displayName>
<relative type="-1">yesterday</relative>
<relative type="0">today</relative>
<relative type="1">tomorrow</relative>
<relativeTime type="future">
<relativeTimePattern count="one">in {0} day</relativeTimePattern>
<relativeTimePattern count="other">in {0} days</relativeTimePattern>
</relativeTime>
<relativeTime type="past">
<relativeTimePattern count="one">{0} day ago</relativeTimePattern>
<relativeTimePattern count="other">{0} days ago</relativeTimePattern>
</relativeTime>
</field>
<field type="weekday">
<displayName>Day of the Week</displayName>
</field>
<field type="sun">
<relative type="-1">last Sunday</relative>
<relative type="0">this Sunday</relative>
<relative type="1">next Sunday</relative>
<relativeTime type="future">
<relativeTimePattern count="one">in {0} Sunday</relativeTimePattern>
<relativeTimePattern count="other">in {0} Sundays</relativeTimePattern>
</relativeTime>
<relativeTime type="past">
<relativeTimePattern count="one">{0} Sunday ago</relativeTimePattern>
<relativeTimePattern count="other">{0} Sundays ago</relativeTimePattern>
</relativeTime>
</field>
…
<field type="hour">
<displayName>Hour</displayName>
<relative type="0">now</relative>
<relativeTime type="future">
<relativeTimePattern count="one">in {0} hour</relativeTimePattern>
<relativeTimePattern count="other">in {0} hours</relativeTimePattern>
</relativeTime>
<relativeTime type="past">
<relativeTimePattern count="one">{0} hour ago</relativeTimePattern>
<relativeTimePattern count="other">{0} hours ago</relativeTimePattern>
</relativeTime>
</field>
…
</fields>
Second, for German; includes relative type="-2"/"2", present in the English example:
<fields>
…
<field type="day">
<displayName>Tag</displayName>
<relative type="-2">Vorgestern</relative>
<relative type="-1">Gestern</relative>
<relative type="0">Heute</relative>
<relative type="1">Morgen</relative>
<relative type="2">Übermorgen</relative>
<relativeTime type="future">
<relativeTimePattern count="one">In {0} Tag</relativeTimePattern>
<relativeTimePattern count="other">In {0} Tagen</relativeTimePattern>
</relativeTime>
<relativeTime type="past">
<relativeTimePattern count="one">Vor {0} Tag</relativeTimePattern>
<relativeTimePattern count="other">Vor {0} Tagen</relativeTimePattern>
</relativeTime>
</field>
…
</fields>
A special name for “now” is indicated using <relative type="0">
for the "second" field. For example, in English:
<field type="second">
<displayName>Second</displayName>
<relative type="0">now</relative>
…
</field>
Different widths can be supplied for certain fields, such as:
<field type="year-short">
<displayName>yr.</displayName>
<relative type="-1">last yr.</relative>
<relative type="0">this yr.</relative>
<relative type="1">next yr.</relative>
<relativeTime type="future">
<relativeTimePattern count="one">in {0} yr.</relativeTimePattern>
<relativeTimePattern count="other">in {0} yr.</relativeTimePattern>
</relativeTime>
<relativeTime type="past">
<relativeTimePattern count="one">{0} yr. ago</relativeTimePattern>
<relativeTimePattern count="other">{0} yr. ago</relativeTimePattern>
</relativeTime>
</field>
As in other cases, narrow may be ambiguous out of context.
<!ELEMENT calendarData ( calendar* )>
<!ELEMENT calendar ( calendarSystem?, inheritEras?, eras? )>
<!ATTLIST calendar type NMTOKENS #REQUIRED>
<!ATTLIST calendar territories NMTOKENS #IMPLIED > <!-- deprecated, replaced by calendarPreferenceData -->
<!ELEMENT calendarSystem EMPTY>
<!ATTLIST calendarSystem type (solar | lunar | lunisolar | other) #REQUIRED>
<!ELEMENT inheritEras EMPTY >
<!ATTLIST inheritEras calendar NMTOKEN #REQUIRED >
<!ELEMENT eras ( era* )>
<!ELEMENT era EMPTY>
<!ATTLIST era type NMTOKENS #REQUIRED>
<!ATTLIST era start CDATA #IMPLIED>
<!ATTLIST era end CDATA #IMPLIED>
<!ATTLIST era code NMTOKEN #IMPLIED >
<!ATTLIST era aliases NMTOKENS #IMPLIED >
The <calendarData>
element now provides only locale-independent data about calendar behaviors via its <calendar>
subelements, which for each calendar can specify the astronomical basis of the calendar (solar, lunar, etc.) and the date ranges for its eras.
Era start or end dates are specified in terms of the equivalent proleptic Gregorian date (in "y-M-d" format). Eras may be open-ended, with unspecified start or end dates. For example, here are the eras for the Gregorian calendar:
<era type="0" end="0-12-31" code="gregory-inverse" aliases="bc bce"/>
<era type="1" start="1-01-01" code="gregory" aliases="ad ce"/>
For a sequence of eras with specified start dates, the end of each era need not be explicitly specified (it is assumed to match the start of the subsequent era). For example, here are the first few eras for the Japanese calendar:
<era type="0" start="645-6-19" />
<era type="1" start="650-2-15" />
<era type="2" start="672-1-1" />
…
Some eras have additional code
and aliases
attributes that define invariant strings for identifying the eras. The code
is a single globally unique identifier, and aliases
are space-separated identifiers unique within the calendar. The code and aliases follow the following rules:
code
that is the same as the BCP-47 name of that calendar or an inheritEras
element pointing to another calendar with such an era. This era should be used for anchoring the "extended year" in the calendar (u
in the date format pattern).-inverse
.ethioaa
era is used in two calendar systems.If a <calendar>
contains an <inheritEras/>
element, all eras from the specified calendar should be inserted in order into the sequence of eras for the current calendar and follow the same start and end date rules. For example:
<calendar type="japanese">
<inheritEras calendar="gregorian" />
<eras>
<era type="0" start="645-6-19"/>
<era type="1" start="650-2-15"/>
<!-- ... -->
</eras>
</calendar>
This means that the two eras from calendar "gregorian" should be inserted into the era list for "japanese" for calculations and formatting.
Note: The territories
attribute in the calendar
element is deprecated. It was formerly used to indicate calendar preference by territory, but this is now given by the Calendar Preference Data below.
<!ELEMENT calendarPreferenceData ( calendarPreference* ) >
<!ELEMENT calendarPreference EMPTY >
<!ATTLIST calendarPreference territories NMTOKENS #REQUIRED >
<!ATTLIST calendarPreference ordering NMTOKENS #REQUIRED >
The calendarPreference
element provides a list of commonly used calendar types in a territory. The ordering
attribute indicates the list of calendar types in preferred order. The first calendar type in the list is the default calendar type for the territory. For example:
<calendarPreference territories="001" ordering="gregorian"/>
<calendarPreference territories="JP" ordering="gregorian japanese"/>
<calendarPreference territories="TH" ordering="buddhist gregorian"/>
The calendarPreference
elements above indicate:
The calendars in common use for a locale should typically be shown in UIs that provide a choice of calendars. (An 'Other...' button could give access to the other available calendars.)
<!ELEMENT weekData ( minDays*, firstDay*, weekendStart*, weekendEnd*, weekOfPreference* )>
<!ELEMENT minDays EMPTY>
<!ATTLIST minDays count (1 | 2 | 3 | 4 | 5 | 6 | 7) #REQUIRED>
<!ATTLIST minDays territories NMTOKENS #REQUIRED>
<!ELEMENT firstDay EMPTY >
<!ATTLIST firstDay day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED>
<!ATTLIST firstDay territories NMTOKENS #REQUIRED>
<!ELEMENT weekendStart EMPTY>
<!ATTLIST weekendStart day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED>
<!ATTLIST weekendStart territories NMTOKENS #REQUIRED>
<!ELEMENT weekendEnd EMPTY>
<!ATTLIST weekendEnd day (sun | mon | tue | wed | thu | fri | sat) #REQUIRED>
<!ATTLIST weekendEnd territories NMTOKENS #REQUIRED>
<!ELEMENT weekOfPreference EMPTY>
<!ATTLIST weekOfPreference locales NMTOKENS #REQUIRED>
<!ATTLIST weekOfPreference ordering NMTOKENS #REQUIRED>
These values provide territory-specific information needed for week-of-year and week-of-month calculations, as well as information on conventions for first day of the week, for weekends, and for week designations. For most elements, the default is provided by the element with territories="001"
; for weekOfPreference
elements the default is provided by the element with locales="und"
.
<weekData>
<minDays count="1" territories="001" />
<minDays count="4" territories="AD AN AT AX BE BG CH CZ DE DK EE ES FI FJ FO FR GB …" />
<firstDay day="mon" territories="001" />
<firstDay day="fri" territories="BD MV" />
<firstDay day="sat" territories="AE AF BH DJ DZ EG IQ IR JO …" />
…
<weekendStart day="sat" territories="001" />
<weekendStart day="sun" territories="IN" />
<weekendStart day="thu" territories="AF DZ IR OM SA YE" />
<weekendStart day="fri" territories="AE BH EG IL IQ JO KW …" />
…
<weekOfPreference ordering="weekOfYear" locales="und" />
<weekOfPreference ordering="weekOfYear weekOfMonth" locales="am az bs cs cy da el et hi ky lt mk sk ta th" />
<weekOfPreference ordering="weekOfYear weekOfMonth weekOfInterval" locales="is mn no sv vi" />
<weekOfPreference ordering="weekOfYear weekOfDate weekOfMonth" locales="fi zh-TW" />
…
In order for a week to count as the first week of a new year for week-of-year calculations, the week beginning with firstDay
must include at least the number of days in the new year specified by the minDays
value; otherwise the week will count as the last week of the previous year (and for week-of-month calculations, minDays
also specifies the minimum number of days in the new month for a week to count as part of that month).
Note: For week-of-year calculations, Gregorian years may have 52 or 53 weeks. Changes in the value of
minDays
orfirstDay
can affect the year to which a date is assigned as well as the number of weeks in a given year; implementations that parse dates using week-of-year formats should be prepared to handle such cases. For example when parsing a date in week 53 of a year for which current values ofminDays
andfirstDay
no longer result in a 53-week year, that date should be treated as in the first week of the following year.
The day indicated by firstDay
is the one that should be shown as the first day of the week in a calendar view. This is not necessarily the same as the first day after the weekend (or the first work day of the week), which should be determined from the weekend information. Currently, day-of-week numbering is based on firstDay
(that is, day 1 is the day specified by firstDay
), but in the future we may add a way to specify this separately. The firstDay
value determined from the region can be overridden by the locale keyword "fw", see Unicode First Day Identifier.
What is meant by the weekend varies from country to country. It is typically when most non-retail businesses are closed. The time should not be specified unless it is a well-recognized part of the day. The weekendStart
day defaults to "sat", and weekendEnd
day defaults to "sun". For more information, see Dates and Date Ranges.
Each weekOfPreference
element provides, for its specified locales, an ordered list of the preferred types of week designations for that set of locales. There are four types of week designations, each of which makes use of date patterns available in the locale, as follows:
Type | Examples | Date Pattern | Comments |
---|---|---|---|
weekOfYear | week 15 of 2016 | <dateFormatItem id='yw' count='one'>'week' w 'of' Y<… | The week of construction takes a count attribute, just in case the pattern changes depending on the numeric value of the w value. (In the future, we're likely to add an ordinal value, for constructions like “3rd week of March”.) In languages where the month name needs grammatical changes (aside from just the simple addition of a prefix or suffix), localizers will typically use a work-around construction. |
weekOfMonth | week 2 of April 2nd week of April | <dateFormatItem id='MMMMW'' count='one'>'week' W 'of' MMM<… | (same comment as above) |
weekOfDate | the week of April 11, 2016 | <field type="week"><relativePeriod>the week of {0}<… | The date pattern that replaces {0} is determined separately and may use the first day or workday of the week, the range of the full week or work week, etc. |
weekOfInterval | the week of April 11–15 | <field type="week"><relativePeriod>the week of {0}<… | (same comment as above) |
The calculation of the first day of the week depends on various fields in a locale_identifier, according to the following algorithm. The data in the firstDay
elements is treated as a map from region to day, with any missing value using the value for 001.
-u-fw-
day value, return that day.-u-rg-
region value, return that region's firstDay map value.-u-ca-
calendar value, where that calendar specifies the first day, then return that first day. (Most calendars do not specify the first day.)-u-sd-
subdivision value, return that region's firstDay map value.Example:
Locale Identifier | "Winning" subtags | Region |
---|---|---|
en-AU-u-ca-iso8601-fw-tue-rg-afzzzz-sd-cabc | -fw-tue | n/a, uses Tuesday |
en-AU-u-ca-iso8601-rg-afzzzz-sd-cabc | -rg-afzzzz | AF |
en-AU-u-ca-iso8601-sd-cabc | -ca-iso8601 | n/a, uses Monday |
en-AU-u-sd-cabc | -AU | AU |
en-u-sd-cabc | -sd-cabc | CA |
en | US (from likely subtags) | |
zxx | 001 | (fallback) |
<!ELEMENT timeData ( hours* ) >
<!ELEMENT hours EMPTY >
<!ATTLIST hours preferred NMTOKEN #REQUIRED >
<!ATTLIST hours allowed NMTOKENS #REQUIRED >
<!ATTLIST hours regions NMTOKENS #REQUIRED >
This element is for data that indicates, for various regions, the preferred time cycle in the region, as well as all time cycles that are considered acceptable in the region. The defaults are those specified for region 001.
There is a single preferred
value, and multiple allowed
values. The meanings of the values H, h, K, k, b and B are defined in Date Field Symbol Table. The allowed
values are in preference order, and are used with the 'C' hour skeleton pattern symbol.
For example, in the following, RU (Russia) is marked as using only 24 hour time, and in particular the 24 hour time that goes from 0..23 (H), rather than from 1..24 (k).
Also note that the regions
allows either region codes (001
, JP
) or
locale IDs (gu_IN
).
<timeData>
<hours preferred="H" allowed="H h" regions="001 …" />
<hours preferred="H" allowed="H K h" regions="JP" />
<hours preferred="H" allowed="H" regions="IL RU" />
<hours preferred="h" allowed="H h" regions="AE AG AL … US … ZW" />
<hours preferred="h" allowed="hB h hb H" regions="ta_IN"/>
<hours preferred="h" allowed="hB hb h H" regions="TW ET gu_IN mr_IN pa_IN"/>
…
The B and b date symbols provide for formats like “3:00 at night”. When the ‘C’ option is used, the values in allowed
are traversed from first to last, picking the first available format. For example, in the following a system that supports hB should choose that as the most preferred format for the C (not the preferred
value H).
<hours preferred="H" allowed="hB H" regions="CD" />
<hours preferred="H" allowed="hB hb h H" regions="KE MM TZ UG" />
Some systems may not want to use B and b, even if preferred for the locale, so for compatibility the preferred
value is limited to {H, h, K, k}, and is the option selected by the ‘j’ date symbol. Thus the preferred
value may not be the same as the first allowed
value.
The preferred value for the locale can be overridden by the locale keyword "hc", see Unicode Hour Cycle Identifier .
<!ELEMENT dayPeriodRuleSet ( dayPeriodRules* ) >
<!ATTLIST dayPeriodRuleSet type NMTOKEN #IMPLIED >
<!ELEMENT dayPeriodRules (dayPeriodRule*) >
<!ATTLIST dayPeriodRules locales NMTOKENS #REQUIRED >
<!ELEMENT dayPeriodRule EMPTY >
<!ATTLIST dayPeriodRule type NMTOKEN #REQUIRED >
<!ATTLIST dayPeriodRule at NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule from NMTOKEN #IMPLIED >
<!ATTLIST dayPeriodRule before NMTOKEN #IMPLIED >
Each locale can have a set of day period rules, which determine the periods during a day for use in time formats like "10:00 at night", or to select statements like "Your email arrived last night." If locales do not have dayPeriodRules, the computation of dayPeriods falls back to AM/PM.
There are two kinds of dayPeriodRuleSets, based on the type:
The format type is used in conjunction with times, such as to express "3:00 in the afternoon", or "12:00 noon". Many languages do not normally use terms that match AM/PM for such times, instead breaking up the day into more periods.
The stand-alone type is used for selecting a period of the day for a general time associated with an event. For example, it can be used to select a message like:
<msg ... >
{day_period, select,
MORNING1 {Your email arrived yesterday morning.}
AFTERNOON1 {Your email arrived yesterday afternoon.}
EVENING1 {Your email arrived yesterday evening.}
NIGHT1 {Your email arrived last night.}
other {Your email arrived yesterday.}
...
}
</msg>
The translated values for the selection (stand-alone) day periods are intended for use in designating a time of day, without an hour value.
These are relative times within a single day. If the event can occur on multiple days, then that needs to be handled at a higher level.
As with plurals, the exact set of periods used for any language may be different. It is the responsibility of any translation software to pick the relevant day periods for the locale for display to the translator (and end user).
Here are the requirements for a rule set.
There are 4 dayPeriods that are fixed; am/pm are always defined, and always have the same meaning and definition for every locale. Midnight and noon are optional, however if they are defined, they have the same meaning and definition as in all other locales where they are defined.
<dayPeriodRule type="midnight" at="00:00" />
<dayPeriodRule type="am" from="00:00" before="12:00" />
<dayPeriodRule type="noon" at="12:00" />
<dayPeriodRule type="pm" from="12:00" before="24:00" />
Note that midnight and am can overlap, as can noon and pm.
All locales must support am/pm, but not all support noon or midnight; they are only supported if they meet the above definitions. For example, German has no unique term that means exactly 12:00 noon; the closest is Mittag, but that can extend before or after 12 noon.
Midnight is also special, since it can refer to either 00:00 or 24:00 — either at the start or end of the day. That means that Tuesday 24:00 = Wednesday 00:00. “Midnight Tuesday" is thus ambiguous: it means 24:00 in “the party is Tuesday from 10pm to 12 midnight”, while it means 00:00 in “I was awake from 12 midnight to 3 in the morning”.
It is strongly recommended that implementations provide for the ability to specify whether midnight is supported or not (and for either 00:00 or 24:00 or both), since only the caller knows enough of the context to determine what to use. In the absence of such information, 24:00 may be the best choice.
<dayPeriod type = "morning1" from="00:00" to="13:00"/>
because "12:30 {morning}" would be ambiguous.<dayPeriod type = "night1" from="21:00" to="05:00"/>
<dayPeriod type = "night1" from="00:00" to="05:00"/>
<dayPeriod type = "night1" from="21:00" to="24:00"/>
When parsing, if the hour is present with a strict parse the dayperiod is checked for consistency with the hour. If there is no hour, the center of the first matching dayPeriodRule can be chosen (starting from 0:00). However, if there is other information available when parsing, a different point within the interval may be chosen.
The dayPeriodRule may span two days, such as where night1 is [21:00, 06:00). In that case, the midpoint is 01:30, so when parsing “Nov 12, at night”, the midpoint result would be Nov 12, 01:30. “Nov 12, am”, “Nov 12, pm”, “Nov 12, noon” can be parsed similarly, resulting in Nov 12, 06:00; Nov 12, 18:00; and Nov 12, 12:00; respectively.
“Nov 12, midnight” is special, because midnight may mean either 00:00 or 24:00. Extra information may be needed to disambiguate which is meant, such as whether the time is at the start or end of an interval. In the absence of such information, 24:00 may be the best choice. See the discussion of midnight above.
If rounding is done—including the rounding done by the time format—then it needs to be done before the dayperiod is computed, so that the correct format is shown.
For examples, see Day Periods Chart.
<!ELEMENT timeZoneNames (alias | (hourFormat*, gmtFormat*, gmtZeroFormat*, regionFormat*, fallbackFormat*, zone*, metazone*, special*)) >
<!ELEMENT hourFormat ( #PCDATA ) >
<!ELEMENT gmtFormat ( #PCDATA ) >
<!ELEMENT gmtZeroFormat ( #PCDATA ) >
<!ELEMENT regionFormat ( #PCDATA ) >
<!ATTLIST regionFormat type ( standard | daylight ) #IMPLIED >
<!ELEMENT fallbackFormat ( #PCDATA ) >
<!ELEMENT zone (alias | ( long*, short*, exemplarCity*, special*)) >
<!ATTLIST zone type CDATA #REQUIRED >
<!ELEMENT metazone (alias | ( long*, short*, special*)) >
<!ATTLIST metazone type CDATA #REQUIRED >
<!ELEMENT long (alias | (generic*, standard*, daylight*, special*)) >
<!ELEMENT short (alias | (generic*, standard*, daylight*, special*)) >
<!ELEMENT generic ( #PCDATA ) >
<!ELEMENT standard ( #PCDATA ) >
<!ELEMENT daylight ( #PCDATA ) >
<!ELEMENT exemplarCity ( #PCDATA ) >
The time zone IDs (TZID) are language-independent, and follow the TZ time zone database [Olson] and naming conventions. However, the display names for those IDs can vary by locale. The generic time is so-called wall-time; what clocks use when they are correctly switched from standard to daylight time at the mandated time of the year.
Unfortunately, the canonical TZIDs (those in zone.tab) are not stable: they may change in each release of the TZ Time Zone database. In CLDR, however, stability of identifiers is very important. So the canonical IDs in CLDR are kept stable as described in Canonical Form.
The TZ time zone database can have multiple IDs that refer to the same entity. It does contain information on equivalence relationships between these IDs, such as "Asia/Calcutta" and "Asia/Kolkata". It does not remove IDs (with a few known exceptions), but it may change the "canonical" ID which is in the file zone.tab.
For lookup purposes specifications such as CLDR need a stable canonical ID, one that does not change from release to release. The stable ID is maintained as the first alias item type element in the file bcp47/timezone.xml, such as:
<type name="inccu" alias="Asia/Calcutta Asia/Kolkata"/>
That file also contains the short ID used in keywords. In versions of CLDR previous to 1.8, the alias information (but not the short ID) was in Supplemental Data under the zoneItem, such as:
<zoneItem type="Asia/Calcutta" territory="IN" aliases="Asia/Kolkata"/>
This element was deprecated after the introduction of bcp47/timezone.xml, because the information became redundant (or was contained in the TZ time zone database).
The following is an example of time zone data. Although this is an example of possible data, in most cases only the exemplarCity needs translation. And that does not even need to be present, if a country only has a single time one. As always, the type field for each zone is the identification of that zone. It is not to be translated.
<zone type="America/Los_Angeles">
<long>
<generic>Pacific Time</generic>
<standard>Pacific Standard Time</standard>
<daylight>Pacific Daylight Time</daylight>
</long>
<short>
<generic>PT</generic>
<standard>PST</standard>
<daylight>PDT</daylight>
</short>
<exemplarCity>San Francisco</exemplarCity>
</zone>
<zone type="Europe/London">
<long>
<generic>British Time</generic>
<standard>British Standard Time</standard>
<daylight>British Daylight Time</daylight>
</long>
<exemplarCity>York</exemplarCity>
</zone>
In a few cases, some time zone IDs do not designate a city, as in:
<zone type="America/Puerto_Rico">
...
</zone>
<zone type="America/Guyana">
...
</zone>
<zone type="America/Cayman">
...
</zone>
<zone type="America/St_Vincent">
...
</zone>
They may designate countries or territories; their actual capital city may be a name that is too common, or too uncommon. CLDR time zone IDs follow the Olson naming conventions.
Note: CLDR does not allow "GMT", "UT", or "UTC" as translations (short or long) of time zones other than GMT itself.
Note: Transmitting "14:30" with no other context is incomplete unless it contains information about the time zone. Ideally one would transmit neutral-format date/time information, commonly in UTC (GMT), and localize as close to the user as possible. (For more about UTC, see [UTCInfo].)
The conversion from local time into UTC depends on the particular time zone rules, which will vary by location. The standard data used for converting local time (sometimes called wall time) to UTC and back is the TZ Data [Olson], used by Linux, UNIX, Java, ICU, and others. The data includes rules for matching the laws for time changes in different countries. For example, for the US it is:
"During the period commencing at 2 o'clock antemeridian on the second Sunday of March of each year and ending at 2 o'clock antemeridian on the first Sunday of November of each year, the standard time of each zone established by sections 261 to 264 of this title, as modified by of this title, shall be advanced one hour..." (United States Law - 15 U.S.C. §6(IX)(260-7), as amended by Energy Policy Act of 2005).
Each region that has a different time zone or daylight savings time rules, either now or at any time back to 1970, is given a unique internal ID, such as Europe/Paris
. (Some IDs are also distinguished on the basis of differences before 1970.) As with currency codes, these are internal codes. A localized string associated with these is provided for users (such as in the Windows Control Panels>Date/Time>Time Zone).
Unfortunately, laws change over time, and will continue to change in the future, both for the boundaries of time zone regions and the rules for daylight savings. Thus the TZ data is continually being augmented. Any two implementations using the same version of the TZ data will get the same results for the same IDs (assuming a correct implementation). However, if implementations use different versions of the data they may get different results. So if precise results are required then both the TZ ID and the TZ data version must be transmitted between the different implementations.
For more information, see [Data Formats].
The following subelements of <timeZoneNames>
are used to control the fallback process described in Using Time Zone Names.
Element Name | Data Examples | Results/Comment |
---|---|---|
hourFormat | "+HHmm;-HHmm" | "+1200" |
"-1200" | ||
gmtFormat | "GMT{0}" | "GMT-0800" |
"{0}ВпГ" | "-0800ВпГ" | |
gmtZeroFormat | "GMT" | Specifies how GMT/UTC with no explicit offset (implied 0 offset) should be represented. |
regionFormat | "{0} Time" | "Japan Time" |
"Hora de {0}" | "Hora de Japón" | |
regionFormat type="daylight" (or "standard") | "{0} Daylight Time" | "France Daylight Time" |
"horario de verano de {0}" | "horario de verano de Francia" | |
fallbackFormat | "{1} ({0})" | "Pacific Time (Canada)" |
When referring to the abbreviated (short) form of the time zone name, there are often situations where the location-based (city or country) time zone designation for a particular language may not be in common usage in a particular territory.
Note: User interfaces for time zone selection can use the "generic location format" for time zone names to obtain the most useful ordering of names in a menu or list; see Using Time Zone Names and the zone section of the Date Field Symbol Table.
A metazone is a grouping of one or more internal TZIDs that share a common display name in current customary usage, or that have shared a common display name during some particular time period. For example, the zones Europe/Paris, Europe/Andorra, Europe/Tirane, Europe/Vienna, Europe/Sarajevo, Europe/Brussels, Europe/Zurich, Europe/Prague, Europe/Berlin, and so on are often simply designated Central European Time (or translated equivalent).
A metazone's display fields become a secondary fallback if an appropriate data field cannot be found in the explicit time zone data. The usesMetazone field indicates that the target metazone is active for a particular time. This also provides a mechanism to effectively deal with situations where the time zone in use has changed for some reason. For example, consider the TZID "America/Indiana/Knox", which observed Central time (GMT-6:00) prior to October 27, 1991, and has currently observed Central time since April 2, 2006, but has observed Eastern time (GMT-5:00) between these two dates. This is denoted as follows
<timezone type="America/Indiana/Knox">
<usesMetazone to="1991-10-27 07:00" mzone="America_Central" />
<usesMetazone to="2006-04-02 07:00" from="1991-10-27 07:00" mzone="America_Eastern" />
<usesMetazone from="2006-04-02 07:00" mzone="America_Central" />
</timezone>
Note that the dates and times are specified in UTC, not local time.
The metazones can then have translations in different locale files, such as the following.
<metazone type="America_Central">
<long>
<generic>Central Time</generic>
<standard>Central Standard Time</standard>
<daylight>Central Daylight Time</daylight>
</long>
<short>
<generic>CT</generic>
<standard>CST</standard>
<daylight>CDT</daylight>
</short>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>Eastern Time</generic>
<standard>Eastern Standard Time</standard>
<daylight>Eastern Daylight Time</daylight>
</long>
<short>
<generic>ET</generic>
<standard>EST</standard>
<daylight>EDT</daylight>
</short>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>Heure de l’Est</generic>
<standard>Heure normale de l’Est</standard>
<daylight>Heure avancée de l’Est</daylight>
</long>
<short>
<generic>HE</generic>
<standard>HNE</standard>
<daylight>HAE</daylight>
</short>
</metazone>
When formatting a date and time value using this data, an application can properly be able to display "Eastern Time" for dates between 1991-10-27 and 2006-04-02, but display "Central Time" for current dates. (See also Dates and Date Ranges.)
Metazones are used with the 'z', 'zzzz', 'v', and 'vvvv' date time pattern characters, and not with the 'Z', 'ZZZZ', 'VVVV' and other pattern characters for time zone formatting. For more information, see Date Format Patterns.
Note that several of the CLDR metazone IDs are the same as TZID aliases provided by the TZ time zone database and also included in ICU data. For example:
The commonlyUsed
element is now deprecated. The CLDR committee has found it nearly impossible to obtain accurate and reliable data regarding which time zone abbreviations may be understood in a given territory, and therefore has changed to a simpler approach. Thus, if the short metazone form is available in a given locale, it is to be used for formatting regardless of the value of commonlyUsed. If a given short metazone form is known NOT to be understood in a given locale and the parent locale has this value such that it would normally be inherited, the inheritance of this value can be explicitly disabled by use of the 'no inheritance marker' as the value, which is 3 simultaneous empty set characters (U+2205).
<!ELEMENT metaZones (metazoneInfo?, mapTimezones?) >
<!ELEMENT metazoneInfo (timezone*) >
<!ELEMENT timezone (usesMetazone*) >
<!ATTLIST timezone type CDATA #REQUIRED >
<!ELEMENT usesMetazone EMPTY >
<!ATTLIST usesMetazone mzone NMTOKEN #REQUIRED >
<!ATTLIST usesMetazone from CDATA #IMPLIED >
<!ATTLIST usesMetazone to CDATA #IMPLIED >
<!ELEMENT mapTimezones ( mapZone* ) >
<!ATTLIST mapTimezones type NMTOKEN #IMPLIED >
<!ATTLIST mapTimezones typeVersion CDATA #IMPLIED >
<!ATTLIST mapTimezones otherVersion CDATA #IMPLIED >
<!ATTLIST mapTimezones references CDATA #IMPLIED >
<!ELEMENT mapZone EMPTY >
<!ATTLIST mapZone type CDATA #REQUIRED >
<!ATTLIST mapZone other CDATA #REQUIRED >
<!ATTLIST mapZone territory CDATA #IMPLIED >
<!ATTLIST mapZone references CDATA #IMPLIED >
The following subelement of <metaZones>
provides a mapping from a single Unicode time zone id to metazones. For more information about metazones, see Time Zone Names.
<metazoneInfo>
<timezone type="Europe/Andorra">
<usesMetazone mzone="Europe_Central" />
</timezone>
....
<timezone type="Asia/Yerevan">
<usesMetazone to="1991-09-22 20:00" mzone="Yerevan" />
<usesMetazone from="1991-09-22 20:00" mzone="Armenia" />
</timezone>
....
The following subelement of <metaZones>
specifies a mapping from a metazone to golden zones for each territory. For more information about golden zones, see Using Time Zone Names.
<mapTimezones type="metazones">
<mapZone other="Acre" territory="001" type="America/Rio_Branco" />
<mapZone other="Afghanistan" territory="001" type="Asia/Kabul" />
<mapZone other="Africa_Central" territory="001" type="Africa/Maputo" />
<mapZone other="Africa_Central" territory="BI" type="Africa/Bujumbura" />
<mapZone other="Africa_Central" territory="BW" type="Africa/Gaborone" />
....
<!ELEMENT windowsZones (mapTimezones?) >
The <mapTimezones>
element can be also used to provide mappings between Unicode time zone IDs and other time zone IDs. This example specifies a mapping from Windows TZIDs to Unicode time zone IDs.
<mapTimezones otherVersion="07dc0000" typeVersion="2011n">
....
<!-- (UTC-08:00) Baja California -->
<mapZone other="Pacific Standard Time (Mexico)" territory="001" type="America/Santa_Isabel"/>
<mapZone other="Pacific Standard Time (Mexico)" territory="MX" type="America/Santa_Isabel"/>
<!-- (UTC-08:00) Pacific Time (US & Canada) -->
<mapZone other="Pacific Standard Time" territory="001" type="America/Los_Angeles"/>
<mapZone other="Pacific Standard Time" territory="CA" type="America/Vancouver America/Dawson America/Whitehorse"/>
<mapZone other="Pacific Standard Time" territory="MX" type="America/Tijuana"/>
<mapZone other="Pacific Standard Time" territory="US" type="America/Los_Angeles"/>
<mapZone other="Pacific Standard Time" territory="ZZ" type="PST8PDT"/>
....
The attributes otherVersion and typeVersion in <mapTimezones>
specify the versions of two systems. In the example above, otherVersion="07dc0000" specifies the version of Windows time zone and typeVersion="2011n" specifies the version of Unicode time zone IDs. The attribute territory="001"
in <mapZone>
element indicates the long canonical Unicode time zone ID specified by the type
attribute is used as the default mapping for the Windows TZID. For each unique Windows TZID, there must be exactly one <mapZone>
element with territory="001"
. <mapZone>
elements other than territory="001"
specify territory specific mappings. When multiple Unicode time zone IDs are available for a single territory, the value of the type
attribute will be a list of Unicode time zone IDs delimited by space. In this case, the first entry represents the default mapping for the territory. The territory "ZZ" is used when a Unicode time zone ID is not associated with a specific territory.
Note: The long canonical Unicode time zone ID might be deprecated in the tz database [Olson]. For example, CLDR uses "Asia/Culcutta" as the long canonical time zone ID for Kolkata, India. The same ID was moved to 'backward' file and replaced with a new ID "Asia/Kolkata" in the tz database. Therefore, if you want to get an equivalent Windows TZID for a zone ID in the tz database, you have to resolve the long canonical Unicode time zone ID (e.g. "Asia/Culcutta") for the zone ID (e.g. "Asia/Kolkata"). For more details, see Time Zone Identifiers.
Note: Not all Unicode time zones have equivalent Windows TZID mappings. Also, not all Windows TZIDs have equivalent Unicode time zones. For example, there is no equivalent Windows zone for Unicode time zone "Australia/Lord_Howe", and there is no equivalent Unicode time zone for Windows zone "E. Europe Standard Time" (as of CLDR 25 release).
<!ELEMENT primaryZones ( primaryZone* ) >
<!ELEMENT primaryZone ( #PCDATA ) >
<!ATTLIST primaryZone iso3166 NMTOKEN #REQUIRED >
This element is for data that is used to format a time zone’s generic location name. Each <primaryZone>
element specifies the dominant zone for a region; this zone should use the region name for its generic location name even though there are other canonical zones available in the same region. For example, Asia/Shanghai is displayed as "China Time", instead of "Shanghai Time". Sample data:
<primaryZones>
<primaryZone iso3166="CL">America/Santiago</primaryZone>
<primaryZone iso3166="CN">Asia/Shanghai</primaryZone>
<primaryZone iso3166="DE">Europe/Berlin</primaryZone>
…
This information was previously specified by the LDML <singleCountries>
element under each locale’s <timeZoneNames>
element. However, that approach had inheritance issues, and the data is not really locale-specific anyway.
There are three main types of formats for zone identifiers: GMT, generic (wall time), and standard/daylight. Standard and daylight are equivalent to a particular offset from GMT, and can be represented by a GMT offset as a fallback. In general, this is not true for the generic format, which is used for picking timezones or for conveying a timezone for specifying a recurring time (such as a meeting in a calendar). For either purpose, a GMT offset would lose information.
The following terminology defines more precisely the formats that are used.
Generic non-location format: Reflects "wall time" (what is on a clock on the wall): used for recurring events, meetings, or anywhere people do not want to be overly specific. For example, "10 am Pacific Time" will be GMT-8 in the winter, and GMT-7 in the summer.
Generic partial location format: Reflects "wall time": used as a fallback format when the generic non-location format is not specific enough.
Generic location format: Reflects "wall time": a primary function of this format type is to represent a time zone in a list or menu for user selection of time zone. It is also a fallback format when there is no translation for the generic non-location format. Times can also be organized hierarchically by country for easier lookup.
Note: A generic location format is constructed by a part of time zone ID representing an exemplar city name or its country as the final fallback. However, there are Unicode time zones which are not associated with any locations, such as "Etc/GMT+5" and "PST8PDT". Although the date format pattern "VVVV" specifies the generic location format, but it displays localized GMT format for these. Some of these time zones observe daylight saving time, so the result (localized GMT format) may change depending on input date. For generating a list for user selection of time zone with format "VVVV", these non-location zones should be excluded.
Specific non-location format: Reflects a specific standard or daylight time, which may or may not be the wall time. For example, "10 am Pacific Standard Time" will be GMT-8 in the winter and in the summer.
Localized GMT format: A constant, specific offset from GMT (or UTC), which may be in a translated form. There are two styles for this. The first is used when there is an explicit non-zero offset from GMT; this style is specified by the <gmtFormat>
element and <hourFormat>
element. The long format always uses 2-digit hours field and minutes field, with optional 2-digit seconds field. The short format is intended for the shortest representation and uses hour fields without leading zero, with optional 2-digit minutes and seconds fields. The digits used for hours, minutes and seconds fields in this format are the locale's default decimal digits:
Otherwise (when the offset from GMT is zero, referring to GMT itself) the style specified by the <gmtZeroFormat>
element is used:
ISO 8601 time zone formats: The formats based on the [ISO 8601] local time difference from UTC ("+" sign is used when local time offset is 0), or the UTC indicator ("Z" - only when the local time offset is 0 and the specifier X* is used). The ISO 8601 basic format does not use a separator character between hours and minutes field, while the extended format uses colon (':') as the separator. The ISO 8601 basic format with hours and minutes fields is equivalent to RFC 822 zone format.
Note: This specification extends the original ISO 8601 formats and some format specifiers append seconds field when necessary.
Raw Offset - an offset from GMT that does not include any daylight savings behavior. For example, the raw offset for Pacific Time is -8, even though the observed offset may be -8 or -7.
Metazone - a collection of time zones that share the same behavior and same name during some period. They may differ in daylight behavior (whether they have it and when).
For example, the TZID America/Cambridge_Bay is in the following metazones during various periods:
<timezone type="America/Cambridge_Bay">
<usesMetazone to="1999-10-31 08:00" mzone="America_Mountain" />
<usesMetazone to="2000-10-29 07:00" from="1999-10-31 08:00" mzone="America_Central" />
<usesMetazone to="2000-11-05 05:00" from="2000-10-29 07:00" mzone="America_Eastern" />
<usesMetazone to="2001-04-01 09:00" from="2000-11-05 05:00" mzone="America_Central" />
<usesMetazone from="2001-04-01 09:00" mzone="America_Mountain" />
</timezone>
Zones may join or leave a metazone over time. The data relating between zones and metazones is in the supplemental information; the locale data is restricted to translations of metazones and zones.
Invariants:
- At any given point in time, each zone belongs to no more than one metazone.
- At a given point in time, a zone may not belong to any metazones.
- Except for daylight savings, at any given time, all zones in a metazone have the same offset at that time.
Golden Zone - the TZDB zone that exemplifies a metazone. For example, America/New_York is the golden zone for the metazone America_Eastern:
<mapZone other="America_Eastern" territory="001" type="America/New_York"/>
Invariants:
- The golden zones are those in mapZone supplemental data under the territory "001".
- Every metazone has exactly one golden zone.
- Each zone has at most one metazone for which it is golden.
- The golden zone is in that metazone during the entire life of the metazone. (The raw offset of the golden zone may change over time.)
- Each other zone must have the same raw offset as the golden zone, for the entire period that it is in the metazone. (It might not have the same offset when daylight savings is in effect.)
- A golden zone in mapTimezones must have reverse mapping in metazoneInfo.
- A single time zone can be a golden zone of multiple different metazones if any two of them are never active at a same time.
Preferred Zone - for a given TZID, the "best" zone out of a metazone for a given country or language.
Invariants:
- The preferred zone for a given country XX are those in mapZone supplemental data under the territory XX.
- Every metazone has at most one preferred zone for a given territory XX.
- Each zone has at most one metazone for which it is preferred for a territory XX.
- The preferred zone for a given metazone and territory XX is in a metazone M during any time when any other zone in XX is also in M
- A preferred zone in mapTimezones must have reverse mapping in metazoneInfo
For example, for America_Pacific the preferred zone for Canada is America/Vancouver, and the preferred zone for Mexico is America/Tijuana. The golden zone is America/Los_Angeles, which is also the preferred zone for any other country.
<mapZone other="America_Pacific" territory="001" type="America/Los_Angeles" />
<mapZone other="America_Pacific" territory="CA" type="America/Vancouver" />
<mapZone other="America_Pacific" territory="MX" type="America/Tijuana" />
fallbackFormat: a formatting string such as "{1} ({0})", where {1} is the metazone, and {0} is the country or city.
regionFormat: a formatting string such as "{0} Time", where {0} is the country or city.
The timezones are designed so that:
For any given locale, every time round trips with all patterns (but not necessarily every timezone). That is, given a time and a format pattern with a zone string, you can format, then parse, and get back the same time.
Note that the round-tripping is not just important for parsing; it provides for formatting dates and times in an unambiguous way for users. It is also important for testing.
There are exceptions to the above for transition times.
- With generic format, time zone ID or exemplar city name, during the transition when the local time maps to two possible GMT times.
- For example, Java works as follows, favoring standard time:
- Source: Sun Nov 04 01:30:00 PDT 2007
- => Formatted: "Sunday, November 4, 2007 1:30:00 AM"
- => Parsed: Sun Nov 04 01:30:00 PST 2007
- When the timezone changes offset, say from GMT+4 to GMT+5, there can also be a gap.
The V/VV/VVV/VVVV format will roundtrip not only the time, but the canonical timezone.
When the data for a given format is not available, a fallback format is used. The fallback order is given in the following by a list.
Specifics
Generics
The following process is used for the particular formats, with the fallback rules as above.
Some of the examples are drawn from real data, while others are for illustration. For illustration the region format is "Hora de {0}". The fallback format in the examples is "{1} ({0})", which is what is in root.
In all cases, first canonicalize the TZ ID according to the Unicode Locale Extension type mapping data (see Time Zone Identifiers for more details). Use that canonical TZID in each of the following steps.
For the localized GMT format, use the gmtFormat (such as "GMT{0}" or "HMG{0}") with the hourFormat (such as "+HH:mm;-HH:mm" or "+HH.mm;-HH.mm").
Note: The digits should be whatever are appropriate for the locale used to format the time zone, not necessarily from the western digits, 0..9. For example, they might be from ०..९.
For ISO 8601 time zone format return the results according to the ISO 8601 specification.
Note: The digits in this case are always from the western digits, 0..9.
For the non-location formats (generic or specific):
<timeZoneNames>
according to type (generic, standard, or daylight) in the resolved locale, return it.For the generic location format:
<primaryZones>
list, format the country name with the regionFormat, and return it.Note: If a language does require grammatical changes when composing strings, then the regionFormat should either use a neutral format such as "Heure: {0}", or put all exceptional cases in explicitly translated strings.
Type Fallback
When a specified type (generic, standard, daylight) does not exist:
Composition
In composing the metazone + city or country:
Note: As with the regionFormat, exceptional cases need to be explicitly translated.
In parsing, an implementation will be able to either determine the zone id, or a simple offset from GMT for anything formatting according to the above process.
The following is a sample process for how this might be done. It is only a sample; implementations may use different methods for parsing.
The sample describes the parsing of a zone as if it were an isolated string. In implementations, the zone may be mixed in with other data (like the time), so the parsing actually has to look for the longest match, and then allow the remaining text to be parsed for other content. That requires certain adaptions to the following process.
Note: This CLDR date parsing recommendation does not fully handle all RFC 788 date/time formats, nor is it intended to.
Parsing can be more lenient than the above, allowing for different spacing, punctuation, or other variation. A stricter parse would check for consistency between the xxx portions above and the rest, so "Pacific Standard Time (India)" would give an error.
Using this process, a correct parse will roundtrip the location format (VVVV) back to the canonical zoneid.
The GMT formats (Z and ZZZZ) will return back an offset, and thus lose the original canonical zone id.
The daylight and standard time formats, and the non-location formats (z, zzzz, v, and vvvv) may either roundtrip back to the original canonical zone id, to a zone in the same metazone that time, or to just an offset, depending on the available translation data. Thus:
A date pattern is a character string consisting of two types of elements:
The following are examples:
Pattern | Result (in a particular locale) |
---|---|
yyyy.MM.dd G 'at' HH:mm:ss zzz | 1996.07.10 AD at 15:08:56 PDT |
EEE, MMM d, ''yy | Wed, July 10, '96 |
h:mm a | 12:08 PM |
hh 'o''clock' a, zzzz | 12 o'clock PM, Pacific Daylight Time |
K:mm a, z | 0:00 PM, PST |
yyyyy.MMMM.dd GGG hh:mm aaa | 01996.July.10 AD 12:08 PM |
When parsing using a pattern, a lenient parse should be used; see Parsing Dates and Times.
<!ATTLIST pattern numbers CDATA #IMPLIED >
The numbers
attribute is used to indicate that numeric quantities in the pattern are to be rendered using a numbering system other than the default numbering system defined for the given locale. The attribute can be in one of two forms. If the alternate numbering system is intended to apply to ALL numeric quantities in the pattern, then simply use the numbering system ID as found in Numbering Systems. To apply the alternate numbering system only to a single field, the syntax <letter>=<numberingSystem>
can be used one or more times, separated by semicolons.
Examples:
<pattern numbers="hebr">dd/mm/yyyy</pattern>
<!-- Use Hebrew numerals to represent numbers in the Hebrew calendar, where "latn" numbering system is the default -->
<pattern numbers="y=hebr">dd/mm/yyyy</pattern>
<!-- Same as above, except that ONLY the year value would be rendered in Hebrew -->
<pattern numbers="d=thai;m=hans;y=deva">dd/mm/yyyy</pattern>
<!-- Illustrates use of multiple numbering systems for a single pattern. -->
Pattern fields and the Date Field Symbol Table
The Date Field Symbol Table below shows the pattern characters (Sym.) and associated fields used in date patterns. The length of the pattern field is related to the length and style used to format the data item. For numeric-only fields, the field length typically indicates the minimum number of digits that should be used to display the value (zero-padding as necessary). As an example using pattern character ‘H’ for hour (24-hour cycle) and values 5 and 11, a field “H” should produce formatted results “5” and “11” while a field “HH” should produce formatted results “05” and “11”. For alphanumeric fields (such as months) and alphabetic-only fields (such as era names), the relationship between field length and formatted result may be more complex. Typically this is as follows:
Pattern field length | Typical style, alphanumeric item | Typical style, alpha-only item |
---|---|---|
1 | Numeric, 1-2 digits (e.g. M) | Abbreviated (e.g. E, EE, EEE) |
2 | Numeric, 2 digits (e.g. MM) | |
3 | Abbreviated (e.g. MMM) | |
4 | Wide / Long / Full (e.g. MMMM, EEEE) | |
5 | Narrow (e.g. MMMMM, EEEEE) (The counter-intuitive use of 5 letters for this is forced by backwards compatibility) | |
>16 | Private Use (Reserved for use by implementations using CLDR; will never be otherwise used by CLDR.) |
Notes for the table below:
Field Type | Sym. | Field Patterns | Examples | Description | |
---|---|---|---|---|---|
era | G | G..GGG | AD [variant: CE] | Abbreviated | Era name. Era string for the current date. |
GGGG | Anno Domini [variant: Common Era] | Wide | |||
GGGGG | A | Narrow | |||
year | y | y | 2, 20, 201, 2017, 20173 | Calendar year (numeric). In most cases the length of the y field specifies the minimum number of digits to display, zero-padded as necessary; more digits will be displayed if needed to show the full year. However, “yy” requests just the two low-order digits of the year, zero-padded as necessary. For most use cases, “y” or “yy” should be adequate. | |
yy | 02, 20, 01, 17, 73 | ||||
yyy | 002, 020, 201, 2017, 20173 | ||||
yyyy | 0002, 0020, 0201, 2017, 20173 | ||||
yyyyy+ | ... | ||||
Y | Y | 2, 20, 201, 2017, 20173 | Year in “Week of Year” based calendars in which the year transition occurs on a week boundary; may differ from calendar year ‘y’ near a year transition. This numeric year designation is used in conjunction with pattern character ‘w’ in the ISO year-week calendar as defined by ISO 8601, but can be used in non-Gregorian based calendar systems where week date processing is desired. The field length is interpreted in the same was as for ‘y’; that is, “yy” specifies use of the two low-order year digits, while any other field length specifies a minimum number of digits to display. | ||
YY | 02, 20, 01, 17, 73 | ||||
YYY | 002, 020, 201, 2017, 20173 | ||||
YYYY | 0002, 0020, 0201, 2017, 20173 | ||||
YYYYY+ | ... | ||||
u | u+ | 4601 | Extended year (numeric). This is a single number designating the year of this calendar system, encompassing all supra-year fields. For example, for the Julian calendar system, year numbers are positive, with an era of BCE or CE. An extended year value for the Julian calendar system assigns positive values to CE years and negative values to BCE years, with 1 BCE being year 0. For ‘u’, all field lengths specify a minimum number of digits; there is no special interpretation for “uu”. | ||
U | U..UUU | 甲子 | Abbreviated | Cyclic year name. Calendars such as the Chinese lunar calendar (and related calendars) and the Hindu calendars use 60-year cycles of year names.
If the calendar does not provide cyclic year name data, or if the year value to be formatted is out of the range of years for which cyclic name data is provided, then numeric formatting is used (behaves like 'y'). Currently the data only provides abbreviated names, which will be used for all requested name widths. | |
UUUU | 甲子 [for now] | Wide | |||
UUUUU | 甲子 [for now] | Narrow | |||
r | r+ | 2017 | Related Gregorian year (numeric). For non-Gregorian calendars, this corresponds to the extended Gregorian year in which the calendar’s year begins. Related Gregorian years are often displayed, for example, when formatting dates in the Japanese calendar — e.g. “2012(平成24)年1月15日” — or in the Chinese calendar — e.g. “2012壬辰年腊月初四”. The related Gregorian year is usually displayed using the "latn" numbering system, regardless of what numbering systems may be used for other parts of the formatted date. If the calendar’s year is linked to the solar year (perhaps using leap months), then for that calendar the ‘r’ year will always be at a fixed offset from the ‘u’ year. For the Gregorian calendar, the ‘r’ year is the same as the ‘u’ year. For ‘r’, all field lengths specify a minimum number of digits; there is no special interpretation for “rr”. | ||
quarter | Q | Q | 2 | Numeric: 1 digit | Quarter number/name. |
02 | Numeric: 2 digits + zero pad | ||||
QQQ | Q2 | Abbreviated | |||
QQQQ | 2nd quarter | Wide | |||
QQQQQ | 2 | Narrow | |||
q | q | 2 | Numeric: 1 digit | Stand-Alone Quarter number/name. | |
02 | Numeric: 2 digits + zero pad | ||||
qqq | Q2 | Abbreviated | |||
qqqq | 2nd quarter | Wide | |||
qqqqq | 2 | Narrow | |||
month | M | M | 9, 12 | Numeric: minimum digits | Format style month number/name: The format style name is an additional form of the month name (besides the stand-alone style) that can be used in contexts where it is different than the stand-alone form. For example, depending on the language, patterns that combine month with day-of month (e.g. "d MMMM") may require the month to be in genitive form. See discussion of month element. If a separate form is not needed, the format and stand-alone forms can be the same. |
MM | 09, 12 | Numeric: 2 digits, zero pad if needed | |||
MMM | Sep | Abbreviated | |||
MMMM | September | Wide | |||
MMMMM | S | Narrow | |||
L | L | 9, 12 | Numeric: minimum digits | Stand-Alone month number/name: For use when the month is displayed by itself, and in any other date pattern (e.g. just month and year, e.g. "LLLL y") that shares the same form of the month name. For month names, this is typically the nominative form. See discussion of month element. | |
LL | 09, 12 | Numeric: 2 digits, zero pad if needed | |||
LLL | Sep | Abbreviated | |||
LLLL | September | Wide | |||
LLLLL | S | Narrow | |||
l | l | [nothing] | This pattern character is deprecated, and should be ignored in patterns. It was originally intended to be used in combination with M to indicate placement of the symbol for leap month in the Chinese calendar. Placement of that marker is now specified using locale-specific <monthPatterns> data, and formatting and parsing of that marker should be handled as part of supporting the regular M and L pattern characters. | ||
week | w | w | 8, 27 | Numeric: minimum digits | Week of Year (numeric). When used in a pattern with year, use ‘Y’ for the year field instead of ‘y’. |
ww | 08, 27 | Numeric: 2 digits, zero pad if needed | |||
W | W | 3 | Numeric: 1 digit | Week of Month (numeric) | |
day | d | d | 1 | Numeric: minimum digits | Day of month (numeric). |
dd | 01 | Numeric: 2 digits, zero pad if needed | |||
D | D...DDD | 345 | Day of year (numeric). The field length specifies the minimum number of digits, with zero-padding as necessary. | ||
F | F | 2 | Day of Week in Month (numeric). The example is for the 2nd Wed in July | ||
g | g+ | 2451334 | Modified Julian day (numeric). This is different from the conventional Julian day number in two regards. First, it demarcates days at local zone midnight, rather than noon GMT. Second, it is a local number; that is, it depends on the local time zone. It can be thought of as a single number that encompasses all the date-related fields. The field length specifies the minimum number of digits, with zero-padding as necessary. | ||
week day | E | E..EEE | Tue | Abbreviated | Day of week name, format style. |
EEEE | Tuesday | Wide | |||
EEEEE | T | Narrow | |||
EEEEEE | Tu | Short | |||
e | e | 2 | Numeric: 1 digit | Local day of week number/name, format style. Same as E except adds a numeric value that will depend on the local starting day of the week. For this example, Monday is the first day of the week. | |
ee | 02 | Numeric: 2 digits + zero pad | |||
eee | Tue | Abbreviated | |||
eeee | Tuesday | Wide | |||
eeeee | T | Narrow | |||
eeeeee | Tu | Short | |||
c | c..cc | 2 | Numeric: 1 digit | Stand-Alone local day of week number/name. | |
ccc | Tue | Abbreviated | |||
cccc | Tuesday | Wide | |||
ccccc | T | Narrow | |||
cccccc | Tu | Short | |||
period | a | a..aaa | am. [e.g. 12 am.] | Abbreviated | AM, PM May be upper or lowercase depending on the locale and other options. The wide form may be the same as the short form if the “real” long form (eg ante meridiem) is not customarily used. The narrow form must be unique, unlike some other fields. See also Parsing Dates and Times. |
aaaa | am. [e.g. 12 am.] | Wide | |||
aaaaa | a [e.g. 12a] | Narrow | |||
b | b..bbb | mid. [e.g. 12 mid.] | Abbreviated | am, pm, noon, midnight May be upper or lowercase depending on the locale and other options. If the locale doesn't have the notion of a unique "noon" = 12:00, then the PM form may be substituted. Similarly for "midnight" = 00:00 and the AM form. The narrow form must be unique, unlike some other fields. | |
bbbb | midnight [e.g. 12 midnight] | Wide | |||
bbbbb | md [e.g. 12 md] | Narrow | |||
B | B..BBB | at night [e.g. 3:00 at night] | Abbreviated | flexible day periods May be upper or lowercase depending on the locale and other options. Often there is only one width that is customarily used. | |
BBBB | at night [e.g. 3:00 at night] | Wide | |||
BBBBB | at night [e.g. 3:00 at night] | Narrow | |||
hour | h | h | 1, 12 | Numeric: minimum digits | Hour [1-12]. When used in skeleton data or in a skeleton passed in an API for flexible date pattern generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match a 24-hour-cycle format (H or k). |
hh | 01, 12 | Numeric: 2 digits, zero pad if needed | |||
H | H | 0, 23 | Numeric: minimum digits | Hour [0-23]. When used in skeleton data or in a skeleton passed in an API for flexible date pattern generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a 12-hour-cycle format (h or K). | |
HH | 00, 23 | Numeric: 2 digits, zero pad if needed | |||
K | K | 0, 11 | Numeric: minimum digits | Hour [0-11]. When used in a skeleton, only matches K or h, see above. | |
KK | 00, 11 | Numeric: 2 digits, zero pad if needed | |||
k | k | 1, 24 | Numeric: minimum digits | Hour [1-24]. When used in a skeleton, only matches k or H, see above. | |
kk | 01, 24 | Numeric: 2 digits, zero pad if needed | |||
j | j | 8 8 AM 13 1 PM | Numeric hour (minimum digits), abbreviated dayPeriod if used | Input skeleton symbol It must not occur in pattern or skeleton data. Instead, it is reserved for use in skeletons passed to APIs doing flexible date pattern generation. In such a context, it requests the preferred hour format for the locale (h, H, K, or k), as determined by the preferred attribute of the hours element in supplemental data. In the implementation of such an API, 'j' must be replaced by h, H, K, or k before beginning a match against availableFormats data. Note that use of 'j' in a skeleton passed to an API is the only way to have a skeleton request a locale's preferred time cycle type (12-hour or 24-hour). | |
jj | 08 08 AM 13 01 PM | Numeric hour (2 digits, zero pad if needed), abbreviated dayPeriod if used | |||
jjj | 8 8 A.M. 13 1 P.M. | Numeric hour (minimum digits), wide dayPeriod if used | |||
jjjj | 08 08 A.M. 13 01 P.M. | Numeric hour (2 digits, zero pad if needed), wide dayPeriod if used | |||
jjjjj | 8 8a 13 1p | Numeric hour (minimum digits), narrow dayPeriod if used | |||
jjjjjj | 08 08a 13 01p | Numeric hour (2 digits, zero pad if needed), narrow dayPeriod if used | |||
J | J | 8 8 | Numeric hour (minimum digits) | Input skeleton symbol It must not occur in pattern or skeleton data. Instead, it is reserved for use in skeletons passed to APIs doing flexible date pattern generation. In such a context, like 'j', it requests the preferred hour format for the locale (h, H, K, or k), as determined by the preferred attribute of the hours element in supplemental data. However, unlike 'j', it requests no dayPeriod marker such as “am/pm” (it is typically used where there is enough context that that is not necessary). For example, with "jmm", 18:00 could appear as “6:00 PM”, while with "Jmm", it would appear as “6:00” (no PM). | |
JJ | 08 08 | Numeric hour (2 digits, zero pad if needed) | |||
C | C | 8 8 (morning) | Numeric hour (minimum digits), abbreviated dayPeriod if used | Input skeleton symbol It must not occur in pattern or skeleton data. Instead, it is reserved for use in skeletons passed to APIs doing flexible date pattern generation. In such a context, like 'j', it requests the preferred hour format for the locale. However, unlike 'j', it can also select formats such as hb or hB, since it is based not on the preferred attribute of the hours element in supplemental data, but instead on the first element of the allowed attribute (which is an ordered preferrence list). For example, with "Cmm", 18:00 could appear as “6:00 in the afternoon”. | |
CC | 08 08 (morning) | Numeric hour (2 digits, zero pad if needed), abbreviated dayPeriod if used | |||
CCC | 8 8 in the morning | Numeric hour (minimum digits), wide dayPeriod if used | |||
CCCC | 08 08 in the morning | Numeric hour (2 digits, zero pad if needed), wide dayPeriod if used | |||
CCCCC | 8 8 (morn.) | Numeric hour (minimum digits), narrow dayPeriod if used | |||
CCCCCC | 08 08 (morn.) | Numeric hour (2 digits, zero pad if needed), narrow dayPeriod if used | |||
minute | m | m | 8, 59 | Numeric: minimum digits | Minute (numeric). Truncated, not rounded. |
mm | 08, 59 | Numeric: 2 digits, zero pad if needed | |||
second | s | s | 8, 12 | Numeric: minimum digits | Second (numeric). Truncated, not rounded. |
ss | 08, 12 | Numeric: 2 digits, zero pad if needed | |||
S | S+ | 3456 | Fractional Second (numeric). Truncates, like other numeric time fields, but in this case to the number of digits specified by the field length. (Example shows display using pattern SSSS for seconds value 12.34567) | ||
A | A+ | 69540000 | Milliseconds in day (numeric). This field behaves exactly like a composite of all time-related fields, not including the zone fields. As such, it also reflects discontinuities of those fields on DST transition days. On a day of DST onset, it will jump forward. On a day of DST cessation, it will jump backward. This reflects the fact that it must be combined with the offset field to obtain a unique local time value. The field length specifies the minimum number of digits, with zero-padding as necessary. | ||
sep. | (none def., see note) | Time separator. Note: In CLDR 26 the time separator pattern character was specified to be COLON. This was withdrawn in CLDR 28 due to backward compatibility issues, and no time separator pattern character is currently defined. Like the use of "," in number formats, this character in a date pattern is replaced with the corresponding number symbol which may depend on the numbering system. For more information, see Part 3: Numbers, Number Symbols. | |||
zone | z | z..zzz | PDT | The short specific non-location format. Where that is unavailable, falls back to the short localized GMT format ("O"). | |
zzzz | Pacific Daylight Time | The long specific non-location format. Where that is unavailable, falls back to the long localized GMT format ("OOOO"). | |||
Z | Z..ZZZ | -0800 | The ISO8601 basic format with hours, minutes and optional seconds fields. The format is equivalent to RFC 822 zone format (when optional seconds field is absent). This is equivalent to the "xxxx" specifier. | ||
ZZZZ | GMT-8:00 | The long localized GMT format. This is equivalent to the "OOOO" specifier. | |||
ZZZZZ | -08:00 -07:52:58 |
The ISO8601 extended format with hours, minutes and optional seconds fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0. This is equivalent to the "XXXXX" specifier. | |||
O | O | GMT-8 | The short localized GMT format. | ||
OOOO | GMT-08:00 | The long localized GMT format. | |||
v | v | PT | The short generic non-location format Where that is unavailable, falls back to the generic location format ("VVVV"), then the short localized GMT format as the final fallback. | ||
vvvv | Pacific Time | The long generic non-location format. Where that is unavailable, falls back to generic location format ("VVVV"). | |||
V | V | uslax | The short time zone ID. Where that is unavailable, the special short time zone ID unk (Unknown Zone) is used. Note: This specifier was originally used for a variant of the short specific non-location format, but it was deprecated in the later version of this specification. In CLDR 23, the definition of the specifier was changed to designate a short time zone ID. | ||
VV | America/Los_Angeles | The long time zone ID. | |||
VVV | Los Angeles | The exemplar city (location) for the time zone. Where that is unavailable, the localized exemplar city name for the special zone Etc/Unknown is used as the fallback (for example, "Unknown City"). | |||
VVVV | Los Angeles Time | The generic location format.
Where that is unavailable, falls back to the long localized GMT format ("OOOO"; Note: Fallback is only necessary with a GMT-style Time Zone ID, like Etc/GMT-830.) This is especially useful when presenting possible timezone choices for user selection, since the naming is more uniform than the "v" format. | |||
X | X | -08 +0530 Z |
The ISO8601 basic format with hours field and optional minutes field. The ISO8601 UTC indicator "Z" is used when local time offset is 0. (The same as x, plus "Z".) | ||
XX | -0800 Z |
The ISO8601 basic format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0. (The same as xx, plus "Z".) | |||
XXX | -08:00 Z |
The ISO8601 extended format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0. (The same as xxx, plus "Z".) | |||
XXXX | -0800 -075258 Z |
The ISO8601 basic format with hours, minutes and optional seconds fields.
The ISO8601 UTC indicator "Z" is used when local time offset is 0. (The same as xxxx, plus "Z".) Note: The seconds field is not supported by the ISO8601 specification. | |||
XXXXX | -08:00 -07:52:58 Z |
The ISO8601 extended format with hours, minutes and optional seconds fields.
The ISO8601 UTC indicator "Z" is used when local time offset is 0. (The same as xxxxx, plus "Z".) Note: The seconds field is not supported by the ISO8601 specification. | |||
x | x | -08 +0530 +00 |
The ISO8601 basic format with hours field and optional minutes field. (The same as X, minus "Z".) | ||
xx | -0800 +0000 |
The ISO8601 basic format with hours and minutes fields. (The same as XX, minus "Z".) | |||
xxx | -08:00 +00:00 |
The ISO8601 extended format with hours and minutes fields. (The same as XXX, minus "Z".) | |||
xxxx | -0800 -075258 +0000 |
The ISO8601 basic format with hours, minutes and optional seconds fields. (The same as XXXX, minus "Z".) Note: The seconds field is not supported by the ISO8601 specification. | |||
xxxxx | -08:00 -07:52:58 +00:00 |
The ISO8601 extended format with hours, minutes and optional seconds fields. (The same as XXXXX, minus "Z".) Note: The seconds field is not supported by the ISO8601 specification. |
These are characters that can be used when displaying a date pattern to an end user. This can occur, for example, when a spreadsheet allows users to specify date patterns. Whatever is in the string is substituted one-for-one with the characters "GyMdkHmsSEDFwWahKzYeugAZvcLQqVUOXxr", with the above meanings. Thus, for example, if 'J' is to be used instead of 'Y' to mean Year (for Week of Year), then the string would be: "GyMdkHmsSEDFwWahKzJeugAZvcLQqVUOXxr".
This element is deprecated. It is recommended instead that a more sophisticated UI be used for localization, such as using icons to represent the different formats (and lengths) in the Date Field Symbol Table.
Even for countries where the customary date format only has a 24 hour format, both the am and pm localized strings must be present and must be distinct from one another. Note that as long as the 24 hour format is used, these strings will normally never be used, but for testing and unusual circumstances they must be present.
There are only two values for era in the Gregorian calendar, with two common naming conventions (here in abbreviated form for English): "BC" and "AD", or "BCE" and "CE". These values can be translated into other languages, like "a.C." and "d.C." for Spanish, but there are no other eras in the Gregorian calendar. Other calendars have different numbers of eras. Care should be taken when translating the era names for a specific calendar.
Values calculated for the Week of Year field range from 1 to 53 for the Gregorian calendar (they may have different ranges for other calendars). Week 1 for a year is the first week that contains at least the specified minimum number of days from that year. Weeks between week 1 of one year and week 1 of the following year are numbered sequentially from 2 to 52 or 53 (if needed). For example, January 1, 1998 was a Thursday. If the first day of the week is MONDAY and the minimum days in a week is 4 (these are the values reflecting ISO 8601 and many national standards), then week 1 of 1998 starts on December 29, 1997, and ends on January 4, 1998. However, if the first day of the week is SUNDAY, then week 1 of 1998 starts on January 4, 1998, and ends on January 10, 1998. The first three days of 1998 are then part of week 53 of 1997.
Values are similarly calculated for the Week of Month.
firstDay
A number indicating which day of the week is considered the 'first' day, for calendar purposes. Because the ordering of days may vary between calendar, keywords are used for this value, such as sun, mon, …. These values will be replaced by the localized name when they are actually used.
minDays (Minimal Days in First Week)
Minimal days required in the first week of a month or year. For example, if the first week is defined as one that contains at least one day, this value will be 1. If it must contain a full seven days before it counts as the first week, then the value would be 7.
weekendStart, weekendEnd
Indicates the day and time that the weekend starts or ends. As with firstDay, keywords are used instead of numbers.
For general information on lenient parsing, see Lenient Parsing in the core specification. This section provides additional information specific to parsing of dates and times.
Lenient parsing of date and time strings is especially complicated, due to the large number of possible fields and formats. The fields fall into two categories: numeric fields (hour, day of month, year, numeric month, and so on) and symbolic fields (era, quarter, month, weekday, AM/PM, time zone). In addition, the user may type in a date or time in a form that is significantly different from the normal format for the locale, and the application must use the locale information to figure out what the user meant. Input may well consist of nothing but a string of numbers with separators, for example, "09/05/02 09:57:33".
The input can be separated into tokens: numbers, symbols, and literal strings. Some care must be taken due to ambiguity, for example, in the Japanese locale the symbol for March is "3 月", which looks like a number followed by a literal. To avoid these problems, symbols should be checked first, and spaces should be ignored (except to delimit the tokens of the input string).
The meaning of symbol fields should be easy to determine; the problem is determining the meaning of the numeric fields. Disambiguation will likely be most successful if it is based on heuristics. Here are some rules that can help:
<availableFormats>
) to try to match the previous or next symbol or literal (again, using a loose match).When speaking about dates and times, not all combinations of fields are semantically valid. For example, it does not make sense to talk about a particular minute without knowing the hour, or a day-of-month and year without knowing the month. This section defines semantic skeletons, a mechanism for expressing the subset of date and time skeletons that are sufficient for almost all use cases.
Libraries implementing UTS 35 may benefit from the use of semantic skeletons in their APIs. Software can optimize for the bounded set of datetime formats defined by semantic skeletons, delivering better performance to users.
This section describes only the structures and enumerations for expressing a semantic skeleton. The section Generating Patterns for Semantic Skeletons describes a mechanism to extract the actual pattern backing a semantic skeleton from CLDR data.
Note: This document does not currently define a string form, but we may need one for MessageFormat.
Important
Semantic skeletons (this section) are a technical preview and should not be considered stable.
A semantic skeleton is composed of two parts:
As a general rule, the field set determines what is being displayed, and the options determine how to display it.
This section defines four disjoint categories of field sets:
Certain combinations of categories form Composite Field Sets.
A date field set refers to a particular day in time. Higher-order fields, such as the month or year, could be omitted, but there must always be a reference to a particular day.
The fields that may be included in a date field set are:
The valid date field sets are in the following table:
Field Set | Example |
---|---|
{ Day } | The 1st |
{ Weekday } | Saturday |
{ Day, Weekday } | Saturday the 1st |
{ Month, Day } | January 1 |
{ Month, Day, Weekday } | Saturday, January 1 |
{ Year, Month, Day } | January 1, 2000 |
{ Year, Month, Day, Weekday } | Saturday, January 1, 2000 |
Note: Month and Year are not valid date field sets on their own because they do not refer to a specific day. Instead, they are considered calendar period field sets.
Note: This table may be extended in the future to include additional fields, such as week and quarter.
A calendar period field set refers to a span of time in a calendar system, above the order of a day.
The fields that are permissible in date field sets are also the ones permissible in calendar period field sets.
The valid calendar period field sets are in the following table:
Field Set | Example |
---|---|
{ Month } | January |
{ Year } | 2000 |
{ Year, Month } | January 2000 |
Note: This table may be extended in the future to include additional fields, such as week, quarter, or standalone era.
Note: A calendar period is distinct from a date because it cannot be paired with time to form a composite field set.
A time field set refers to a particular time of day. Low-order fields, such as the minute or second, could be omitted.
The fields that may be included in a time field set are:
The valid time field sets are in the following table:
Field Set | Example (en-US) | Example (en-GB) |
---|---|---|
{ Hour } | 4 pm | 16h |
{ Hour, Minute } | 4:03 pm | 16:03 |
{ Hour, Minute, Second } | 4:03:51 pm | 16:03:51 |
Note: Minute and Second are not valid time field sets on their own because they do not refer to a particular time of day. They must be interpreted in the context of an explicit hour.
Note: Durations, such as "3 minutes and 12 seconds" (or 3:12), are not handled through the skeleton mechanisms.
A time zone field set refers to a particular time zone. There is only one time zone field and one time zone field set, but the rendering can be configured with the Zone Style option.
Field Set | Example |
---|---|
{ Zone } | PST / PT / Los Angeles Time / GMT-8 |
Date, calendar period, and time field sets can be combined in certain ways shown in the following table:
Categories | Example Field Set | Example Output |
---|---|---|
Date + Time | { Month, Day, Hour } | January 1 at 4 pm |
Date + Time Zone | { Month, Day, Zone } | January 1, PT |
Date + Time + Time Zone | { Month, Day, Hour, Zone } | January 1 at 4 pm PT |
Time + Time Zone | { Hour, Zone } | 4 pm PT |
Note: "Date + Time Zone" is a valid combination because it refers to a specific span of time. "January 1, PST" refers to the span of time starting at 01-01T00:00-0800
and ending before 01-02T00:00-0800
(with an implied year).
Note: This table may be extended in the future to include additional combinations.
A semantic skeleton associates fields with zero or more options, listed in this section. Options apply to specific fields, and they should not be specified if their respective fields are not in the field set. Some options have a default value.
Required Fields: Year, Month, Day, Weekday, Hour, or Zone
Default Value: Medium
The length determines how wide the fields should be rendered. There are three choices:
Note: Unlike standard CLDR pattern and skeleton strings, there is only one length option for the whole semantic skeleton. This is based on the principle that developers ought to inform the library how much space is available and the context in which the date/time is being displayed, and translators ought to decide how to use that space. For example, it is possible for long month names and abbreviated weekday names to coexist, but that should be a translator decision, not a developer decision. However, this option may be extended in the future to allow hinting at lengths for individual fields.
Note: The locale or calendar may coerce the month length to be different than the skeleton length. For example, there is no numeric representation of months in the Hebrew calendar in English, so spelled-out month names will be used in "en-u-ca-hebrew" even if the length is Short.
Note: Additional lengths could be added in the future, such as "narrow" or "conversational".
Required Fields: Year, Month, Day, or Hour
Default Value: Inline
The alignment provides additional context that can be used for determining how to display certain fields, particularly numeric ones. There are two choices:
Note: The most common behavior with "column" alignment is for implementations to render a minimum of two digits on impacted fields. For example, an implementation might render "01/01/2000" instead of "1/1/2000" in US English.
Required Field: Year
Default Value: Auto
The year style defines the level of precision to use when displaying the year. There are three choices:
Going down the list, the three options can be seen as requiring additional context. "Auto" gives translators the most flexibility; "full" requires that the year be displayed with full precision; and "with era" additionally requires that the era field be displayed.
Implementations could choose to use heuristics such as the following:
Examples in Gregorian:
Year Style | 2020 CE | 1500 CE | 750 CE | 500 BCE |
---|---|---|---|---|
Auto | ‘20 | 1500 | 750 AD | 500 BC |
Full | 2020 | 1500 | 750 AD | 500 BC |
With era | 2020 AD | 1500 AD | 750 AD | 500 BC |
Note: This algorithm and the list of choices is likely to evolve as CLDR learns more about era display customs in different regions and calendar systems, and it may become normative.
Required Field: Hour
Default Value: Auto
The hour cycle, which corresponds directly to the -u-hc
Unicode Locale extension keyword, determines how hours should be numbered. It is always left up to the locale to determine how and whether day periods should be displayed.
The choices are:
Typically, locales will display a day period on H11 and H12, but the day period could be any of those allowed by CLDR, such as AM/PM (field "a"), noon/midnight (field "b"), or flexible day periods such as "in the afternoon" (field "B"). The choice could depend on locale, length, and calendar system.
Note: An option could be added in the future to give the developer more control over how day periods are displayed or to disable day periods when there is sufficient context.
Required Field: Second
Default Value: Auto
The fractional second digits option defines how many fractional digits should be displayed in the second field. The choices are:
Note: The finest level of precision is currently specified as nanoseconds, consistent with the requirements of many popular datetime libraries.
Required Field: Zone
Default Value: Auto
The time zone style defines how to display the time zone. There are choices are:
Examples:
Style | Example |
---|---|
Specific | Pacific Standard Time |
Generic | Pacific Time |
Location | Los Angeles Time |
Offset | GMT-8 |
A semantic skeleton can be mapped to a standard skeleton, which in turn can be mapped to a pattern according to the procedure described in Matching Skeletons.
The selected fields in the field set should be converted to standard skeleton symbols according to the following table. "Standalone" should be used when the field set contains only one field. Hour is broken down by hour cycle, and Zone is broken down by time zone style.
Semantic Field | Long | Medium | Short |
---|---|---|---|
Year | * | * | * |
Month | * | * | * |
Month (Standalone) | LLLL | LLL | L |
Day | * | * | * |
Weekday | EEEE | EEE | EEE |
Weekday (Standalone) | EEEE | EEE | EEEEE |
Hour - Auto | C | C | C |
Hour - H11, H12 | h | h | h |
Hour - H23, H24 | H | H | H |
Minute | m | m | m |
Second | s | s | s |
Zone - Generic | v | v | v |
Zone - Generic (Standalone) | vvvv | vvvv | v |
Zone - Specific | z | z | z |
Zone - Specific (Standalone) | zzzz | zzzz | z |
Zone - Location | VVVV | VVVV | VVVV |
Zone - Offset | O | O | O |
* Lengths for Year, Month, and Day are taken from the datetimeSkeleton in the Long, Medium, and Short variants. The era field, if present, should be included with the Year. For example, in en-US, CLDR 46, the datetimeSkeletons are:
Length | Calendar | datetimeSkeleton |
---|---|---|
Long | Gregorian | yMMMMd |
Medium | Gregorian | yMMMd |
Short | Gregorian | yyMd |
Long | Japanese | GyMMMMd |
Medium | Japanese | GyMMMd |
Short | Japanese | GGGGGyMd |
This means that the Year, Month, and Day semantic field mapping in en-US should be:
Semantic Field | Calendar | Long | Medium | Short |
---|---|---|---|---|
Year | Gregorian | y | y | yy |
Month | Gregorian | MMMM | MMM | M |
Day | Gregorian | d | d | d |
Year | Japanese | Gy | Gy | GGGGGy |
Month | Japanese | MMMM | MMM | M |
Day | Japanese | d | d | d |
The year style should change the skeleton for all lengths as follows:
This specification describes at a high level the space of legal configurations for a semantic skeleton. The exact shape of the API or syntax is left to the implementation.
Requirements for an implementation of semantic skeletons to be conformant with this specification:
For example, a conformant specification must reject the following inputs:
Field Set | Options | Rejection Reason |
---|---|---|
{ Year, Day } | Length: Long | Invalid field set |
{ Month, Day } | Length: Long\nYear Style: Full | Year Style requires Year field |
© 2024–2024 Unicode, Inc. This publication is protected by copyright, and permission must be obtained from Unicode, Inc. prior to any reproduction, modification, or other use not permitted by the Terms of Use. Specifically, you may make copies of this publication and may annotate and translate it solely for personal or internal business purposes and not for public distribution, provided that any such permitted copies and modifications fully reproduce all copyright and other legal notices contained in the original. You may not make copies of or modifications to this publication for public distribution, or incorporate it in whole or in part into any product or publication without the express written permission of Unicode.
Use of all Unicode Products, including this publication, is governed by the Unicode Terms of Use. The authors, contributors, and publishers have taken care in the preparation of this publication, but make no express or implied representation or warranty of any kind and assume no responsibility or liability for errors or omissions or for consequential or incidental damages that may arise therefrom. This publication is provided “AS-IS” without charge as a convenience to users.
Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the United States and other countries.