Globalization in React Calendar component
20 Mar 202324 minutes to read
Globalization is the combination of internalization and localization. You can adapt the component to various languages by parsing and formatting the date or number (Internationalization), and also add culture specific customization and translation to the text (localization).
By default, Calendar date format, week and month names are specific to American English culture. It utilizes the Essential JavaScript 2 Internationalization
package to parse and format the date object based on the culture by using the official UNICODE CLDR
JSON data and also it provides the loadCldr
method to load the culture specific CLDR JSON data.
To go with the different culture other than English
, follow the below steps.
-
Install the
CLDR-Data
package by using the below command (it installs the CLDR JSON data). To know more about CLDR-Data refer theCLDR-Data
link.npm install cldr-data --save
Once the package installed, you can find the culture specific JSON data under the location
\node_modules\cldr-data
. -
Now import the installed CLDR JSON data into the
app.ts
file. -
Now use the
loadCldr
method to load the culture specific CLDR JSON data from the installed location toapp.ts
file. -
Calendar displayed
Sunday
as the first day of week based on default culture (“en-US”). If you want to display the Calendar with loaded culture’s first day of week, you need to importweekdata.json
file from thecldr-data/suppemental
as given in the code example.
//import the loadCldr from ej2-base
import { loadCldr} from '@syncfusion/ej2-base';
import * as gregorian from 'cldr-data/main/de/ca-gregorian.json';
import * as numbers from 'cldr-data/main/de/numbers.json';
import * as timeZoneNames from 'cldr-data/main/de/timeZoneNames.json';
import * as numberingSystems from 'cldr-data/supplemental/numberingSystems.json';
import * as weekData from 'cldr-data/supplemental/weekData.json';// To load the culture based first day of week
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames, weekData);
if you are facing the error
/node_modules/cldr-data/main/de/*.json (1,1): unused expression, expected an assignment or function call
when you are adding the json files to render the culture sample, then add the below configuration in yourtslint.json
file
"linterOptions": {
"exclude": [
"*.json",
"**/*.json"
]
}
The
Localization
library allows you to localize default text content of the Calendar. The Calendar component has static text for today feature that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the
locale
value and translation object.
Locale keywords | Text |
---|---|
today | Name of the button to choose Today date. |
-
Before changing to a culture other than
English
, ensure that locale text for the concerned culture is loaded throughload
method ofL10n
class.//Load the L10n, loadCldr from ej2-base import { L10n } from "@syncfusion/ej2-base"; //load the locale object to set the localized placeholder value L10n.load({ 'de': { 'calendar': { today:'heute' } } });
-
Set the culture by using the
locale
property.
The following example demonstrates the Calendar in German
culture.
[Class-component]
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "de"
},
"dates": {
"calendars": {
"gregorian": {
"months": {
"format": {
"abbreviated": {
"1": "Jan.",
"2": "Feb.",
"3": "März",
"4": "Apr.",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "Aug.",
"9": "Sep.",
"10": "Okt.",
"11": "Nov.",
"12": "Dez."
},
"narrow": {
"1": "J",
"2": "F",
"3": "M",
"4": "A",
"5": "M",
"6": "J",
"7": "J",
"8": "A",
"9": "S",
"10": "O",
"11": "N",
"12": "D"
},
"wide": {
"1": "Januar",
"2": "Februar",
"3": "März",
"4": "April",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "August",
"9": "September",
"10": "Oktober",
"11": "November",
"12": "Dezember"
}
},
"stand-alone": {
"abbreviated": {
"1": "Jan",
"2": "Feb",
"3": "Mär",
"4": "Apr",
"5": "Mai",
"6": "Jun",
"7": "Jul",
"8": "Aug",
"9": "Sep",
"10": "Okt",
"11": "Nov",
"12": "Dez"
},
"narrow": {
"1": "J",
"2": "F",
"3": "M",
"4": "A",
"5": "M",
"6": "J",
"7": "J",
"8": "A",
"9": "S",
"10": "O",
"11": "N",
"12": "D"
},
"wide": {
"1": "Januar",
"2": "Februar",
"3": "März",
"4": "April",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "August",
"9": "September",
"10": "Oktober",
"11": "November",
"12": "Dezember"
}
}
},
"days": {
"format": {
"abbreviated": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"narrow": {
"sun": "S",
"mon": "M",
"tue": "D",
"wed": "M",
"thu": "D",
"fri": "F",
"sat": "S"
},
"short": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"wide": {
"sun": "Sonntag",
"mon": "Montag",
"tue": "Dienstag",
"wed": "Mittwoch",
"thu": "Donnerstag",
"fri": "Freitag",
"sat": "Samstag"
}
},
"stand-alone": {
"abbreviated": {
"sun": "So",
"mon": "Mo",
"tue": "Di",
"wed": "Mi",
"thu": "Do",
"fri": "Fr",
"sat": "Sa"
},
"narrow": {
"sun": "S",
"mon": "M",
"tue": "D",
"wed": "M",
"thu": "D",
"fri": "F",
"sat": "S"
},
"short": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"wide": {
"sun": "Sonntag",
"mon": "Montag",
"tue": "Dienstag",
"wed": "Mittwoch",
"thu": "Donnerstag",
"fri": "Freitag",
"sat": "Samstag"
}
}
},
"quarters": {
"format": {
"abbreviated": {
"1": "Q1",
"2": "Q2",
"3": "Q3",
"4": "Q4"
},
"narrow": {
"1": "1",
"2": "2",
"3": "3",
"4": "4"
},
"wide": {
"1": "1. Quartal",
"2": "2. Quartal",
"3": "3. Quartal",
"4": "4. Quartal"
}
},
"stand-alone": {
"abbreviated": {
"1": "Q1",
"2": "Q2",
"3": "Q3",
"4": "Q4"
},
"narrow": {
"1": "1",
"2": "2",
"3": "3",
"4": "4"
},
"wide": {
"1": "1. Quartal",
"2": "2. Quartal",
"3": "3. Quartal",
"4": "4. Quartal"
}
}
},
"dayPeriods": {
"format": {
"abbreviated": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
},
"narrow": {
"midnight": "Mitternacht",
"am": "vm.",
"pm": "nm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
},
"wide": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
}
},
"stand-alone": {
"abbreviated": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
},
"narrow": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
},
"wide": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
}
}
},
"eras": {
"eraNames": {
"0": "v. Chr.",
"0-alt-variant": "vor unserer Zeitrechnung",
"1": "n. Chr.",
"1-alt-variant": "unserer Zeitrechnung"
},
"eraAbbr": {
"0": "v. Chr.",
"0-alt-variant": "v. u. Z.",
"1": "n. Chr.",
"1-alt-variant": "u. Z."
},
"eraNarrow": {
"0": "v. Chr.",
"0-alt-variant": "v. u. Z.",
"1": "n. Chr.",
"1-alt-variant": "u. Z."
}
},
"dateFormats": {
"full": "EEEE, d. MMMM y",
"long": "d. MMMM y",
"medium": "dd.MM.y",
"short": "dd.MM.yy"
},
"timeFormats": {
"full": "HH:mm:ss zzzz",
"long": "HH:mm:ss z",
"medium": "HH:mm:ss",
"short": "HH:mm"
},
"dateTimeFormats": {
"full": "{1} 'um' {0}",
"long": "{1} 'um' {0}",
"medium": "{1}, {0}",
"short": "{1}, {0}",
"availableFormats": {
"d": "d",
"E": "ccc",
"Ed": "E, d.",
"Ehm": "E h:mm a",
"EHm": "E, HH:mm",
"Ehms": "E, h:mm:ss a",
"EHms": "E, HH:mm:ss",
"Gy": "y G",
"GyMMM": "MMM y G",
"GyMMMd": "d. MMM y G",
"GyMMMEd": "E, d. MMM y G",
"h": "h 'Uhr' a",
"H": "HH 'Uhr'",
"hm": "h:mm a",
"Hm": "HH:mm",
"hms": "h:mm:ss a",
"Hms": "HH:mm:ss",
"hmsv": "h:mm:ss a v",
"Hmsv": "HH:mm:ss v",
"hmv": "h:mm a v",
"Hmv": "HH:mm v",
"M": "L",
"Md": "d.M.",
"MEd": "E, d.M.",
"MMd": "d.MM.",
"MMdd": "dd.MM.",
"MMM": "LLL",
"MMMd": "d. MMM",
"MMMEd": "E, d. MMM",
"MMMMd": "d. MMMM",
"MMMMEd": "E, d. MMMM",
"MMMMW": "'Woche' W 'im' MMM",
"MMMMW": "'Woche' W 'im' MMM",
"ms": "mm:ss",
"y": "y",
"yM": "M.y",
"yMd": "d.M.y",
"yMEd": "E, d.M.y",
"yMM": "MM.y",
"yMMdd": "dd.MM.y",
"yMMM": "MMM y",
"yMMMd": "d. MMM y",
"yMMMEd": "E, d. MMM y",
"yMMMM": "MMMM y",
"yQQQ": "QQQ y",
"yQQQQ": "QQQQ y",
"yw": "'Woche' w 'des' 'Jahres' y",
"yw": "'Woche' w 'des' 'Jahres' y"
},
"appendItems": {
"Day": "{0} ({2}: {1})",
"Day-Of-Week": "{0} {1}",
"Era": "{1} {0}",
"Hour": "{0} ({2}: {1})",
"Minute": "{0} ({2}: {1})",
"Month": "{0} ({2}: {1})",
"Quarter": "{0} ({2}: {1})",
"Second": "{0} ({2}: {1})",
"Timezone": "{0} {1}",
"Week": "{0} ({2}: {1})",
"Year": "{1} {0}"
},
"intervalFormats": {
"intervalFormatFallback": "{0} – {1}",
"d": {
"d": "d.–d."
},
"h": {
"a": "h 'Uhr' a – h 'Uhr' a",
"h": "h – h 'Uhr' a"
},
"H": {
"H": "HH–HH 'Uhr'"
},
"hm": {
"a": "h:mm a – h:mm a",
"h": "h:mm–h:mm a",
"m": "h:mm–h:mm a"
},
"Hm": {
"H": "HH:mm–HH:mm 'Uhr'",
"m": "HH:mm–HH:mm 'Uhr'"
},
"hmv": {
"a": "h:mm a – h:mm a v",
"h": "h:mm–h:mm a v",
"m": "h:mm–h:mm a v"
},
"Hmv": {
"H": "HH:mm–HH:mm 'Uhr' v",
"m": "HH:mm–HH:mm 'Uhr' v"
},
"hv": {
"a": "h a – h a v",
"h": "h–h a v"
},
"Hv": {
"H": "HH–HH 'Uhr' v"
},
"M": {
"M": "M.–M."
},
"Md": {
"d": "dd.MM. – dd.MM.",
"M": "dd.MM. – dd.MM."
},
"MEd": {
"d": "E, dd.MM. – E, dd.MM.",
"M": "E, dd.MM. – E, dd.MM."
},
"MMM": {
"M": "MMM–MMM"
},
"MMMd": {
"d": "d.–d. MMM",
"M": "d. MMM – d. MMM"
},
"MMMEd": {
"d": "E, d. – E, d. MMM",
"M": "E, d. MMM – E, d. MMM"
},
"MMMM": {
"M": "LLLL–LLLL"
},
"y": {
"y": "y–y"
},
"yM": {
"M": "MM.y – MM.y",
"y": "MM.y – MM.y"
},
"yMd": {
"d": "dd.MM.y – dd.MM.y",
"M": "dd.MM.y – dd.MM.y",
"y": "dd.MM.y – dd.MM.y"
},
"yMEd": {
"d": "E, dd.MM.y – E, dd.MM.y",
"M": "E, dd.MM.y – E, dd.MM.y",
"y": "E, dd.MM.y – E, dd.MM.y"
},
"yMMM": {
"M": "MMM–MMM y",
"y": "MMM y – MMM y"
},
"yMMMd": {
"d": "d.–d. MMM y",
"M": "d. MMM – d. MMM y",
"y": "d. MMM y – d. MMM y"
},
"yMMMEd": {
"d": "E, d. – E, d. MMM y",
"M": "E, d. MMM – E, d. MMM y",
"y": "E, d. MMM y – E, d. MMM y"
},
"yMMMM": {
"M": "MMMM–MMMM y",
"y": "MMMM y – MMMM y"
}
}
}
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"de";
}
"dates";
{
"calendars";
{
"gregorian";
{
"months";
{
"format";
{
"abbreviated";
{
"1";
"Jan.",
"2";
"Feb.",
"3";
"März",
"4";
"Apr.",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"Aug.",
"9";
"Sep.",
"10";
"Okt.",
"11";
"Nov.",
"12";
"Dez.";
}
"narrow";
{
"1";
"J",
"2";
"F",
"3";
"M",
"4";
"A",
"5";
"M",
"6";
"J",
"7";
"J",
"8";
"A",
"9";
"S",
"10";
"O",
"11";
"N",
"12";
"D";
}
"wide";
{
"1";
"Januar",
"2";
"Februar",
"3";
"März",
"4";
"April",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"August",
"9";
"September",
"10";
"Oktober",
"11";
"November",
"12";
"Dezember";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"Jan",
"2";
"Feb",
"3";
"Mär",
"4";
"Apr",
"5";
"Mai",
"6";
"Jun",
"7";
"Jul",
"8";
"Aug",
"9";
"Sep",
"10";
"Okt",
"11";
"Nov",
"12";
"Dez";
}
"narrow";
{
"1";
"J",
"2";
"F",
"3";
"M",
"4";
"A",
"5";
"M",
"6";
"J",
"7";
"J",
"8";
"A",
"9";
"S",
"10";
"O",
"11";
"N",
"12";
"D";
}
"wide";
{
"1";
"Januar",
"2";
"Februar",
"3";
"März",
"4";
"April",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"August",
"9";
"September",
"10";
"Oktober",
"11";
"November",
"12";
"Dezember";
}
}
}
"days";
{
"format";
{
"abbreviated";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"narrow";
{
"sun";
"S",
"mon";
"M",
"tue";
"D",
"wed";
"M",
"thu";
"D",
"fri";
"F",
"sat";
"S";
}
"short";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"wide";
{
"sun";
"Sonntag",
"mon";
"Montag",
"tue";
"Dienstag",
"wed";
"Mittwoch",
"thu";
"Donnerstag",
"fri";
"Freitag",
"sat";
"Samstag";
}
}
"stand-alone";
{
"abbreviated";
{
"sun";
"So",
"mon";
"Mo",
"tue";
"Di",
"wed";
"Mi",
"thu";
"Do",
"fri";
"Fr",
"sat";
"Sa";
}
"narrow";
{
"sun";
"S",
"mon";
"M",
"tue";
"D",
"wed";
"M",
"thu";
"D",
"fri";
"F",
"sat";
"S";
}
"short";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"wide";
{
"sun";
"Sonntag",
"mon";
"Montag",
"tue";
"Dienstag",
"wed";
"Mittwoch",
"thu";
"Donnerstag",
"fri";
"Freitag",
"sat";
"Samstag";
}
}
}
"quarters";
{
"format";
{
"abbreviated";
{
"1";
"Q1",
"2";
"Q2",
"3";
"Q3",
"4";
"Q4";
}
"narrow";
{
"1";
"1",
"2";
"2",
"3";
"3",
"4";
"4";
}
"wide";
{
"1";
"1. Quartal",
"2";
"2. Quartal",
"3";
"3. Quartal",
"4";
"4. Quartal";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"Q1",
"2";
"Q2",
"3";
"Q3",
"4";
"Q4";
}
"narrow";
{
"1";
"1",
"2";
"2",
"3";
"3",
"4";
"4";
}
"wide";
{
"1";
"1. Quartal",
"2";
"2. Quartal",
"3";
"3. Quartal",
"4";
"4. Quartal";
}
}
}
"dayPeriods";
{
"format";
{
"abbreviated";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
"narrow";
{
"midnight";
"Mitternacht",
"am";
"vm.",
"pm";
"nm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
"wide";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
}
"stand-alone";
{
"abbreviated";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
"narrow";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
"wide";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
}
}
"eras";
{
"eraNames";
{
"0";
"v. Chr.",
"0-alt-variant";
"vor unserer Zeitrechnung",
"1";
"n. Chr.",
"1-alt-variant";
"unserer Zeitrechnung";
}
"eraAbbr";
{
"0";
"v. Chr.",
"0-alt-variant";
"v. u. Z.",
"1";
"n. Chr.",
"1-alt-variant";
"u. Z.";
}
"eraNarrow";
{
"0";
"v. Chr.",
"0-alt-variant";
"v. u. Z.",
"1";
"n. Chr.",
"1-alt-variant";
"u. Z.";
}
}
"dateFormats";
{
"full";
"EEEE, d. MMMM y",
"long";
"d. MMMM y",
"medium";
"dd.MM.y",
"short";
"dd.MM.yy";
}
"timeFormats";
{
"full";
"HH:mm:ss zzzz",
"long";
"HH:mm:ss z",
"medium";
"HH:mm:ss",
"short";
"HH:mm";
}
"dateTimeFormats";
{
"full";
"{1} 'um' {0}",
"long";
"{1} 'um' {0}",
"medium";
"{1}, {0}",
"short";
"{1}, {0}",
"availableFormats";
{
"d";
"d",
"E";
"ccc",
"Ed";
"E, d.",
"Ehm";
"E h:mm a",
"EHm";
"E, HH:mm",
"Ehms";
"E, h:mm:ss a",
"EHms";
"E, HH:mm:ss",
"Gy";
"y G",
"GyMMM";
"MMM y G",
"GyMMMd";
"d. MMM y G",
"GyMMMEd";
"E, d. MMM y G",
"h";
"h 'Uhr' a",
"H";
"HH 'Uhr'",
"hm";
"h:mm a",
"Hm";
"HH:mm",
"hms";
"h:mm:ss a",
"Hms";
"HH:mm:ss",
"hmsv";
"h:mm:ss a v",
"Hmsv";
"HH:mm:ss v",
"hmv";
"h:mm a v",
"Hmv";
"HH:mm v",
"M";
"L",
"Md";
"d.M.",
"MEd";
"E, d.M.",
"MMd";
"d.MM.",
"MMdd";
"dd.MM.",
"MMM";
"LLL",
"MMMd";
"d. MMM",
"MMMEd";
"E, d. MMM",
"MMMMd";
"d. MMMM",
"MMMMEd";
"E, d. MMMM",
"MMMMW";
"'Woche' W 'im' MMM",
"MMMMW";
"'Woche' W 'im' MMM",
"ms";
"mm:ss",
"y";
"y",
"yM";
"M.y",
"yMd";
"d.M.y",
"yMEd";
"E, d.M.y",
"yMM";
"MM.y",
"yMMdd";
"dd.MM.y",
"yMMM";
"MMM y",
"yMMMd";
"d. MMM y",
"yMMMEd";
"E, d. MMM y",
"yMMMM";
"MMMM y",
"yQQQ";
"QQQ y",
"yQQQQ";
"QQQQ y",
"yw";
"'Woche' w 'des' 'Jahres' y",
"yw";
"'Woche' w 'des' 'Jahres' y";
}
"appendItems";
{
"Day";
"{0} ({2}: {1})",
"Day-Of-Week";
"{0} {1}",
"Era";
"{1} {0}",
"Hour";
"{0} ({2}: {1})",
"Minute";
"{0} ({2}: {1})",
"Month";
"{0} ({2}: {1})",
"Quarter";
"{0} ({2}: {1})",
"Second";
"{0} ({2}: {1})",
"Timezone";
"{0} {1}",
"Week";
"{0} ({2}: {1})",
"Year";
"{1} {0}";
}
"intervalFormats";
{
"intervalFormatFallback";
"{0} – {1}",
"d";
{
"d";
"d.–d.";
}
"h";
{
"a";
"h 'Uhr' a – h 'Uhr' a",
"h";
"h – h 'Uhr' a";
}
"H";
{
"H";
"HH–HH 'Uhr'";
}
"hm";
{
"a";
"h:mm a – h:mm a",
"h";
"h:mm–h:mm a",
"m";
"h:mm–h:mm a";
}
"Hm";
{
"H";
"HH:mm–HH:mm 'Uhr'",
"m";
"HH:mm–HH:mm 'Uhr'";
}
"hmv";
{
"a";
"h:mm a – h:mm a v",
"h";
"h:mm–h:mm a v",
"m";
"h:mm–h:mm a v";
}
"Hmv";
{
"H";
"HH:mm–HH:mm 'Uhr' v",
"m";
"HH:mm–HH:mm 'Uhr' v";
}
"hv";
{
"a";
"h a – h a v",
"h";
"h–h a v";
}
"Hv";
{
"H";
"HH–HH 'Uhr' v";
}
"M";
{
"M";
"M.–M.";
}
"Md";
{
"d";
"dd.MM. – dd.MM.",
"M";
"dd.MM. – dd.MM.";
}
"MEd";
{
"d";
"E, dd.MM. – E, dd.MM.",
"M";
"E, dd.MM. – E, dd.MM.";
}
"MMM";
{
"M";
"MMM–MMM";
}
"MMMd";
{
"d";
"d.–d. MMM",
"M";
"d. MMM – d. MMM";
}
"MMMEd";
{
"d";
"E, d. – E, d. MMM",
"M";
"E, d. MMM – E, d. MMM";
}
"MMMM";
{
"M";
"LLLL–LLLL";
}
"y";
{
"y";
"y–y";
}
"yM";
{
"M";
"MM.y – MM.y",
"y";
"MM.y – MM.y";
}
"yMd";
{
"d";
"dd.MM.y – dd.MM.y",
"M";
"dd.MM.y – dd.MM.y",
"y";
"dd.MM.y – dd.MM.y";
}
"yMEd";
{
"d";
"E, dd.MM.y – E, dd.MM.y",
"M";
"E, dd.MM.y – E, dd.MM.y",
"y";
"E, dd.MM.y – E, dd.MM.y";
}
"yMMM";
{
"M";
"MMM–MMM y",
"y";
"MMM y – MMM y";
}
"yMMMd";
{
"d";
"d.–d. MMM y",
"M";
"d. MMM – d. MMM y",
"y";
"d. MMM y – d. MMM y";
}
"yMMMEd";
{
"d";
"E, d. – E, d. MMM y",
"M";
"E, d. MMM – E, d. MMM y",
"y";
"E, d. MMM y – E, d. MMM y";
}
"yMMMM";
{
"M";
"MMMM–MMMM y",
"y";
"MMMM y – MMMM y";
}
}
}
}
}
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 13259 $",
"_cldrVersion": "31"
},
"language": "de"
},
"numbers": {
"currencies": {
"ADP": {
"displayName": "Andorranische Pesete",
"displayName-count-one": "Andorranische Pesete",
"displayName-count-other": "Andorranische Peseten",
"symbol": "ADP"
},
"AED": {
"displayName": "VAE-Dirham",
"displayName-count-one": "VAE-Dirham",
"displayName-count-other": "VAE-Dirham",
"symbol": "AED"
},
"AFA": {
"displayName": "Afghanische Afghani (1927–2002)",
"displayName-count-one": "Afghanische Afghani (1927–2002)",
"displayName-count-other": "Afghanische Afghani (1927–2002)",
"symbol": "AFA"
},
"AFN": {
"displayName": "Afghanischer Afghani",
"displayName-count-one": "Afghanischer Afghani",
"displayName-count-other": "Afghanische Afghani",
"symbol": "AFN"
},
"ALK": {
"displayName": "Albanischer Lek (1946–1965)",
"displayName-count-one": "Albanischer Lek (1946–1965)",
"displayName-count-other": "Albanische Lek (1946–1965)"
},
"ALL": {
"displayName": "Albanischer Lek",
"displayName-count-one": "Albanischer Lek",
"displayName-count-other": "Albanische Lek",
"symbol": "ALL"
},
"AMD": {
"displayName": "Armenischer Dram",
"displayName-count-one": "Armenischer Dram",
"displayName-count-other": "Armenische Dram",
"symbol": "AMD"
},
"ANG": {
"displayName": "Niederländische-Antillen-Gulden",
"displayName-count-one": "Niederländische-Antillen-Gulden",
"displayName-count-other": "Niederländische-Antillen-Gulden",
"symbol": "ANG"
},
"AOA": {
"displayName": "Angolanischer Kwanza",
"displayName-count-one": "Angolanischer Kwanza",
"displayName-count-other": "Angolanische Kwanza",
"symbol": "AOA",
"symbol-alt-narrow": "Kz"
},
"AOK": {
"displayName": "Angolanischer Kwanza (1977–1990)",
"displayName-count-one": "Angolanischer Kwanza (1977–1990)",
"displayName-count-other": "Angolanische Kwanza (1977–1990)",
"symbol": "AOK"
},
"AON": {
"displayName": "Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-other": "Angolanische Neue Kwanza (1990–2000)",
"symbol": "AON"
},
"AOR": {
"displayName": "Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)",
"symbol": "AOR"
},
"ARA": {
"displayName": "Argentinischer Austral",
"displayName-count-one": "Argentinischer Austral",
"displayName-count-other": "Argentinische Austral",
"symbol": "ARA"
},
"ARL": {
"displayName": "Argentinischer Peso Ley (1970–1983)",
"displayName-count-one": "Argentinischer Peso Ley (1970–1983)",
"displayName-count-other": "Argentinische Pesos Ley (1970–1983)",
"symbol": "ARL"
},
"ARM": {
"displayName": "Argentinischer Peso (1881–1970)",
"displayName-count-one": "Argentinischer Peso (1881–1970)",
"displayName-count-other": "Argentinische Pesos (1881–1970)",
"symbol": "ARM"
},
"ARP": {
"displayName": "Argentinischer Peso (1983–1985)",
"displayName-count-one": "Argentinischer Peso (1983–1985)",
"displayName-count-other": "Argentinische Peso (1983–1985)",
"symbol": "ARP"
},
"ARS": {
"displayName": "Argentinischer Peso",
"displayName-count-one": "Argentinischer Peso",
"displayName-count-other": "Argentinische Pesos",
"symbol": "ARS",
"symbol-alt-narrow": "$"
},
"ATS": {
"displayName": "Österreichischer Schilling",
"displayName-count-one": "Österreichischer Schilling",
"displayName-count-other": "Österreichische Schilling",
"symbol": "öS"
},
"AUD": {
"displayName": "Australischer Dollar",
"displayName-count-one": "Australischer Dollar",
"displayName-count-other": "Australische Dollar",
"symbol": "AU$",
"symbol-alt-narrow": "$"
},
"AWG": {
"displayName": "Aruba-Florin",
"displayName-count-one": "Aruba-Florin",
"displayName-count-other": "Aruba-Florin",
"symbol": "AWG"
},
"AZM": {
"displayName": "Aserbaidschan-Manat (1993–2006)",
"displayName-count-one": "Aserbaidschan-Manat (1993–2006)",
"displayName-count-other": "Aserbaidschan-Manat (1993–2006)",
"symbol": "AZM"
},
"AZN": {
"displayName": "Aserbaidschan-Manat",
"displayName-count-one": "Aserbaidschan-Manat",
"displayName-count-other": "Aserbaidschan-Manat",
"symbol": "AZN"
},
"BAD": {
"displayName": "Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)",
"symbol": "BAD"
},
"BAM": {
"displayName": "Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark",
"symbol": "BAM",
"symbol-alt-narrow": "KM"
},
"BAN": {
"displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)",
"symbol": "BAN"
},
"BBD": {
"displayName": "Barbados-Dollar",
"displayName-count-one": "Barbados-Dollar",
"displayName-count-other": "Barbados-Dollar",
"symbol": "BBD",
"symbol-alt-narrow": "$"
},
"BDT": {
"displayName": "Bangladesch-Taka",
"displayName-count-one": "Bangladesch-Taka",
"displayName-count-other": "Bangladesch-Taka",
"symbol": "BDT",
"symbol-alt-narrow": "৳"
},
"BEC": {
"displayName": "Belgischer Franc (konvertibel)",
"displayName-count-one": "Belgischer Franc (konvertibel)",
"displayName-count-other": "Belgische Franc (konvertibel)",
"symbol": "BEC"
},
"BEF": {
"displayName": "Belgischer Franc",
"displayName-count-one": "Belgischer Franc",
"displayName-count-other": "Belgische Franc",
"symbol": "BEF"
},
"BEL": {
"displayName": "Belgischer Finanz-Franc",
"displayName-count-one": "Belgischer Finanz-Franc",
"displayName-count-other": "Belgische Finanz-Franc",
"symbol": "BEL"
},
"BGL": {
"displayName": "Bulgarische Lew (1962–1999)",
"displayName-count-one": "Bulgarische Lew (1962–1999)",
"displayName-count-other": "Bulgarische Lew (1962–1999)",
"symbol": "BGL"
},
"BGM": {
"displayName": "Bulgarischer Lew (1952–1962)",
"displayName-count-one": "Bulgarischer Lew (1952–1962)",
"displayName-count-other": "Bulgarische Lew (1952–1962)",
"symbol": "BGK"
},
"BGN": {
"displayName": "Bulgarischer Lew",
"displayName-count-one": "Bulgarischer Lew",
"displayName-count-other": "Bulgarische Lew",
"symbol": "BGN"
},
"BGO": {
"displayName": "Bulgarischer Lew (1879–1952)",
"displayName-count-one": "Bulgarischer Lew (1879–1952)",
"displayName-count-other": "Bulgarische Lew (1879–1952)",
"symbol": "BGJ"
},
"BHD": {
"displayName": "Bahrain-Dinar",
"displayName-count-one": "Bahrain-Dinar",
"displayName-count-other": "Bahrain-Dinar",
"symbol": "BHD"
},
"BIF": {
"displayName": "Burundi-Franc",
"displayName-count-one": "Burundi-Franc",
"displayName-count-other": "Burundi-Francs",
"symbol": "BIF"
},
"BMD": {
"displayName": "Bermuda-Dollar",
"displayName-count-one": "Bermuda-Dollar",
"displayName-count-other": "Bermuda-Dollar",
"symbol": "BMD",
"symbol-alt-narrow": "$"
},
"BND": {
"displayName": "Brunei-Dollar",
"displayName-count-one": "Brunei-Dollar",
"displayName-count-other": "Brunei-Dollar",
"symbol": "BND",
"symbol-alt-narrow": "$"
},
"BOB": {
"displayName": "Bolivanischer Boliviano",
"displayName-count-one": "Bolivanischer Boliviano",
"displayName-count-other": "Bolivianische Bolivianos",
"symbol": "BOB",
"symbol-alt-narrow": "Bs"
},
"BOL": {
"displayName": "Bolivianischer Boliviano (1863–1963)",
"displayName-count-one": "Bolivianischer Boliviano (1863–1963)",
"displayName-count-other": "Bolivianische Bolivianos (1863–1963)",
"symbol": "BOL"
},
"BOP": {
"displayName": "Bolivianischer Peso",
"displayName-count-one": "Bolivianischer Peso",
"displayName-count-other": "Bolivianische Peso",
"symbol": "BOP"
},
"BOV": {
"displayName": "Boliviansiche Mvdol",
"displayName-count-one": "Boliviansiche Mvdol",
"displayName-count-other": "Bolivianische Mvdol",
"symbol": "BOV"
},
"BRB": {
"displayName": "Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)",
"symbol": "BRB"
},
"BRC": {
"displayName": "Brasilianischer Cruzado (1986–1989)",
"displayName-count-one": "Brasilianischer Cruzado (1986–1989)",
"displayName-count-other": "Brasilianische Cruzado (1986–1989)",
"symbol": "BRC"
},
"BRE": {
"displayName": "Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-other": "Brasilianische Cruzeiro (1990–1993)",
"symbol": "BRE"
},
"BRL": {
"displayName": "Brasilianischer Real",
"displayName-count-one": "Brasilianischer Real",
"displayName-count-other": "Brasilianische Real",
"symbol": "R$",
"symbol-alt-narrow": "R$"
},
"BRN": {
"displayName": "Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)",
"symbol": "BRN"
},
"BRR": {
"displayName": "Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-other": "Brasilianische Cruzeiro (1993–1994)",
"symbol": "BRR"
},
"BRZ": {
"displayName": "Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)",
"symbol": "BRZ"
},
"BSD": {
"displayName": "Bahamas-Dollar",
"displayName-count-one": "Bahamas-Dollar",
"displayName-count-other": "Bahamas-Dollar",
"symbol": "BSD",
"symbol-alt-narrow": "$"
},
"BTN": {
"displayName": "Bhutan-Ngultrum",
"displayName-count-one": "Bhutan-Ngultrum",
"displayName-count-other": "Bhutan-Ngultrum",
"symbol": "BTN"
},
"BUK": {
"displayName": "Birmanischer Kyat",
"displayName-count-one": "Birmanischer Kyat",
"displayName-count-other": "Birmanische Kyat",
"symbol": "BUK"
},
"BWP": {
"displayName": "Botswanischer Pula",
"displayName-count-one": "Botswanischer Pula",
"displayName-count-other": "Botswanische Pula",
"symbol": "BWP",
"symbol-alt-narrow": "P"
},
"BYB": {
"displayName": "Belarus-Rubel (1994–1999)",
"displayName-count-one": "Belarus-Rubel (1994–1999)",
"displayName-count-other": "Belarus-Rubel (1994–1999)",
"symbol": "BYB"
},
"BYN": {
"displayName": "Weißrussischer Rubel",
"displayName-count-one": "Weißrussischer Rubel",
"displayName-count-other": "Weißrussische Rubel",
"symbol": "BYN",
"symbol-alt-narrow": "р."
},
"BYR": {
"displayName": "Weißrussischer Rubel (2000–2016)",
"displayName-count-one": "Weißrussischer Rubel (2000–2016)",
"displayName-count-other": "Weißrussische Rubel (2000–2016)",
"symbol": "BYR"
},
"BZD": {
"displayName": "Belize-Dollar",
"displayName-count-one": "Belize-Dollar",
"displayName-count-other": "Belize-Dollar",
"symbol": "BZD",
"symbol-alt-narrow": "$"
},
"CAD": {
"displayName": "Kanadischer Dollar",
"displayName-count-one": "Kanadischer Dollar",
"displayName-count-other": "Kanadische Dollar",
"symbol": "CA$",
"symbol-alt-narrow": "$"
},
"CDF": {
"displayName": "Kongo-Franc",
"displayName-count-one": "Kongo-Franc",
"displayName-count-other": "Kongo-Francs",
"symbol": "CDF"
},
"CHE": {
"displayName": "WIR-Euro",
"displayName-count-one": "WIR-Euro",
"displayName-count-other": "WIR-Euro",
"symbol": "CHE"
},
"CHF": {
"displayName": "Schweizer Franken",
"displayName-count-one": "Schweizer Franken",
"displayName-count-other": "Schweizer Franken",
"symbol": "CHF"
},
"CHW": {
"displayName": "WIR Franken",
"displayName-count-one": "WIR Franken",
"displayName-count-other": "WIR Franken",
"symbol": "CHW"
},
"CLE": {
"displayName": "Chilenischer Escudo",
"displayName-count-one": "Chilenischer Escudo",
"displayName-count-other": "Chilenische Escudo",
"symbol": "CLE"
},
"CLF": {
"displayName": "Chilenische Unidades de Fomento",
"displayName-count-one": "Chilenische Unidades de Fomento",
"displayName-count-other": "Chilenische Unidades de Fomento",
"symbol": "CLF"
},
"CLP": {
"displayName": "Chilenischer Peso",
"displayName-count-one": "Chilenischer Peso",
"displayName-count-other": "Chilenische Pesos",
"symbol": "CLP",
"symbol-alt-narrow": "$"
},
"CNX": {
"displayName": "Dollar der Chinesischen Volksbank",
"displayName-count-one": "Dollar der Chinesischen Volksbank",
"displayName-count-other": "Dollar der Chinesischen Volksbank",
"symbol": "CNX"
},
"CNY": {
"displayName": "Renminbi Yuan",
"displayName-count-one": "Chinesischer Yuan",
"displayName-count-other": "Renminbi Yuan",
"symbol": "CN¥",
"symbol-alt-narrow": "¥"
},
"COP": {
"displayName": "Kolumbianischer Peso",
"displayName-count-one": "Kolumbianischer Peso",
"displayName-count-other": "Kolumbianische Pesos",
"symbol": "COP",
"symbol-alt-narrow": "$"
},
"COU": {
"displayName": "Kolumbianische Unidades de valor real",
"displayName-count-one": "Kolumbianische Unidad de valor real",
"displayName-count-other": "Kolumbianische Unidades de valor real",
"symbol": "COU"
},
"CRC": {
"displayName": "Costa-Rica-Colón",
"displayName-count-one": "Costa-Rica-Colón",
"displayName-count-other": "Costa-Rica-Colón",
"symbol": "CRC",
"symbol-alt-narrow": "₡"
},
"CSD": {
"displayName": "Serbischer Dinar (2002–2006)",
"displayName-count-one": "Serbischer Dinar (2002–2006)",
"displayName-count-other": "Serbische Dinar (2002–2006)",
"symbol": "CSD"
},
"CSK": {
"displayName": "Tschechoslowakische Krone",
"displayName-count-one": "Tschechoslowakische Kronen",
"displayName-count-other": "Tschechoslowakische Kronen",
"symbol": "CSK"
},
"CUC": {
"displayName": "Kubanischer Peso (konvertibel)",
"displayName-count-one": "Kubanischer Peso (konvertibel)",
"displayName-count-other": "Kubanische Pesos (konvertibel)",
"symbol": "CUC",
"symbol-alt-narrow": "Cub$"
},
"CUP": {
"displayName": "Kubanischer Peso",
"displayName-count-one": "Kubanischer Peso",
"displayName-count-other": "Kubanische Pesos",
"symbol": "CUP",
"symbol-alt-narrow": "$"
},
"CVE": {
"displayName": "Cabo-Verde-Escudo",
"displayName-count-one": "Cabo-Verde-Escudo",
"displayName-count-other": "Cabo-Verde-Escudos",
"symbol": "CVE"
},
"CYP": {
"displayName": "Zypern-Pfund",
"displayName-count-one": "Zypern Pfund",
"displayName-count-other": "Zypern Pfund",
"symbol": "CYP"
},
"CZK": {
"displayName": "Tschechische Krone",
"displayName-count-one": "Tschechische Krone",
"displayName-count-other": "Tschechische Kronen",
"symbol": "CZK",
"symbol-alt-narrow": "Kč"
},
"DDM": {
"displayName": "Mark der DDR",
"displayName-count-one": "Mark der DDR",
"displayName-count-other": "Mark der DDR",
"symbol": "DDM"
},
"DEM": {
"displayName": "Deutsche Mark",
"displayName-count-one": "Deutsche Mark",
"displayName-count-other": "Deutsche Mark",
"symbol": "DM"
},
"DJF": {
"displayName": "Dschibuti-Franc",
"displayName-count-one": "Dschibuti-Franc",
"displayName-count-other": "Dschibuti-Franc",
"symbol": "DJF"
},
"DKK": {
"displayName": "Dänische Krone",
"displayName-count-one": "Dänische Krone",
"displayName-count-other": "Dänische Kronen",
"symbol": "DKK",
"symbol-alt-narrow": "kr"
},
"DOP": {
"displayName": "Dominikanischer Peso",
"displayName-count-one": "Dominikanischer Peso",
"displayName-count-other": "Dominikanische Pesos",
"symbol": "DOP",
"symbol-alt-narrow": "$"
},
"DZD": {
"displayName": "Algerischer Dinar",
"displayName-count-one": "Algerischer Dinar",
"displayName-count-other": "Algerische Dinar",
"symbol": "DZD"
},
"ECS": {
"displayName": "Ecuadorianischer Sucre",
"displayName-count-one": "Ecuadorianischer Sucre",
"displayName-count-other": "Ecuadorianische Sucre",
"symbol": "ECS"
},
"ECV": {
"displayName": "Verrechnungseinheit für Ecuador",
"displayName-count-one": "Verrechnungseinheiten für Ecuador",
"displayName-count-other": "Verrechnungseinheiten für Ecuador",
"symbol": "ECV"
},
"EEK": {
"displayName": "Estnische Krone",
"displayName-count-one": "Estnische Krone",
"displayName-count-other": "Estnische Kronen",
"symbol": "EEK"
},
"EGP": {
"displayName": "Ägyptisches Pfund",
"displayName-count-one": "Ägyptisches Pfund",
"displayName-count-other": "Ägyptische Pfund",
"symbol": "EGP",
"symbol-alt-narrow": "E£"
},
"ERN": {
"displayName": "Eritreischer Nakfa",
"displayName-count-one": "Eritreischer Nakfa",
"displayName-count-other": "Eritreische Nakfa",
"symbol": "ERN"
},
"ESA": {
"displayName": "Spanische Peseta (A–Konten)",
"displayName-count-one": "Spanische Peseta (A–Konten)",
"displayName-count-other": "Spanische Peseten (A–Konten)",
"symbol": "ESA"
},
"ESB": {
"displayName": "Spanische Peseta (konvertibel)",
"displayName-count-one": "Spanische Peseta (konvertibel)",
"displayName-count-other": "Spanische Peseten (konvertibel)",
"symbol": "ESB"
},
"ESP": {
"displayName": "Spanische Peseta",
"displayName-count-one": "Spanische Peseta",
"displayName-count-other": "Spanische Peseten",
"symbol": "ESP",
"symbol-alt-narrow": "₧"
},
"ETB": {
"displayName": "Äthiopischer Birr",
"displayName-count-one": "Äthiopischer Birr",
"displayName-count-other": "Äthiopische Birr",
"symbol": "ETB"
},
"EUR": {
"displayName": "Euro",
"displayName-count-one": "Euro",
"displayName-count-other": "Euro",
"symbol": "€",
"symbol-alt-narrow": "€"
},
"FIM": {
"displayName": "Finnische Mark",
"displayName-count-one": "Finnische Mark",
"displayName-count-other": "Finnische Mark",
"symbol": "FIM"
},
"FJD": {
"displayName": "Fidschi-Dollar",
"displayName-count-one": "Fidschi-Dollar",
"displayName-count-other": "Fidschi-Dollar",
"symbol": "FJD",
"symbol-alt-narrow": "$"
},
"FKP": {
"displayName": "Falkland-Pfund",
"displayName-count-one": "Falkland-Pfund",
"displayName-count-other": "Falkland-Pfund",
"symbol": "FKP",
"symbol-alt-narrow": "Fl£"
},
"FRF": {
"displayName": "Französischer Franc",
"displayName-count-one": "Französischer Franc",
"displayName-count-other": "Französische Franc",
"symbol": "FRF"
},
"GBP": {
"displayName": "Britisches Pfund",
"displayName-count-one": "Britisches Pfund",
"displayName-count-other": "Britische Pfund",
"symbol": "£",
"symbol-alt-narrow": "£"
},
"GEK": {
"displayName": "Georgischer Kupon Larit",
"displayName-count-one": "Georgischer Kupon Larit",
"displayName-count-other": "Georgische Kupon Larit",
"symbol": "GEK"
},
"GEL": {
"displayName": "Georgischer Lari",
"displayName-count-one": "Georgischer Lari",
"displayName-count-other": "Georgische Lari",
"symbol": "GEL",
"symbol-alt-narrow": "₾",
"symbol-alt-variant": "₾"
},
"GHC": {
"displayName": "Ghanaischer Cedi (1979–2007)",
"displayName-count-one": "Ghanaischer Cedi (1979–2007)",
"displayName-count-other": "Ghanaische Cedi (1979–2007)",
"symbol": "GHC"
},
"GHS": {
"displayName": "Ghanaischer Cedi",
"displayName-count-one": "Ghanaischer Cedi",
"displayName-count-other": "Ghanaische Cedi",
"symbol": "GHS"
},
"GIP": {
"displayName": "Gibraltar-Pfund",
"displayName-count-one": "Gibraltar-Pfund",
"displayName-count-other": "Gibraltar Pfund",
"symbol": "GIP",
"symbol-alt-narrow": "£"
},
"GMD": {
"displayName": "Gambia-Dalasi",
"displayName-count-one": "Gambia-Dalasi",
"displayName-count-other": "Gambia-Dalasi",
"symbol": "GMD"
},
"GNF": {
"displayName": "Guinea-Franc",
"displayName-count-one": "Guinea-Franc",
"displayName-count-other": "Guinea-Franc",
"symbol": "GNF",
"symbol-alt-narrow": "F.G."
},
"GNS": {
"displayName": "Guineischer Syli",
"displayName-count-one": "Guineischer Syli",
"displayName-count-other": "Guineische Syli",
"symbol": "GNS"
},
"GQE": {
"displayName": "Äquatorialguinea-Ekwele",
"displayName-count-one": "Äquatorialguinea-Ekwele",
"displayName-count-other": "Äquatorialguinea-Ekwele",
"symbol": "GQE"
},
"GRD": {
"displayName": "Griechische Drachme",
"displayName-count-one": "Griechische Drachme",
"displayName-count-other": "Griechische Drachmen",
"symbol": "GRD"
},
"GTQ": {
"displayName": "Guatemaltekischer Quetzal",
"displayName-count-one": "Guatemaltekischer Quetzal",
"displayName-count-other": "Guatemaltekische Quetzales",
"symbol": "GTQ",
"symbol-alt-narrow": "Q"
},
"GWE": {
"displayName": "Portugiesisch Guinea Escudo",
"displayName-count-one": "Portugiesisch Guinea Escudo",
"displayName-count-other": "Portugiesisch Guinea Escudo",
"symbol": "GWE"
},
"GWP": {
"displayName": "Guinea-Bissau Peso",
"displayName-count-one": "Guinea-Bissau Peso",
"displayName-count-other": "Guinea-Bissau Pesos",
"symbol": "GWP"
},
"GYD": {
"displayName": "Guyana-Dollar",
"displayName-count-one": "Guyana-Dollar",
"displayName-count-other": "Guyana-Dollar",
"symbol": "GYD",
"symbol-alt-narrow": "$"
},
"HKD": {
"displayName": "Hongkong-Dollar",
"displayName-count-one": "Hongkong-Dollar",
"displayName-count-other": "Hongkong-Dollar",
"symbol": "HK$",
"symbol-alt-narrow": "$"
},
"HNL": {
"displayName": "Honduras-Lempira",
"displayName-count-one": "Honduras-Lempira",
"displayName-count-other": "Honduras-Lempira",
"symbol": "HNL",
"symbol-alt-narrow": "L"
},
"HRD": {
"displayName": "Kroatischer Dinar",
"displayName-count-one": "Kroatischer Dinar",
"displayName-count-other": "Kroatische Dinar",
"symbol": "HRD"
},
"HRK": {
"displayName": "Kroatischer Kuna",
"displayName-count-one": "Kroatischer Kuna",
"displayName-count-other": "Kroatische Kuna",
"symbol": "HRK",
"symbol-alt-narrow": "kn"
},
"HTG": {
"displayName": "Haitianische Gourde",
"displayName-count-one": "Haitianische Gourde",
"displayName-count-other": "Haitianische Gourdes",
"symbol": "HTG"
},
"HUF": {
"displayName": "Ungarischer Forint",
"displayName-count-one": "Ungarischer Forint",
"displayName-count-other": "Ungarische Forint",
"symbol": "HUF",
"symbol-alt-narrow": "Ft"
},
"IDR": {
"displayName": "Indonesische Rupiah",
"displayName-count-one": "Indonesische Rupiah",
"displayName-count-other": "Indonesische Rupiah",
"symbol": "IDR",
"symbol-alt-narrow": "Rp"
},
"IEP": {
"displayName": "Irisches Pfund",
"displayName-count-one": "Irisches Pfund",
"displayName-count-other": "Irische Pfund",
"symbol": "IEP"
},
"ILP": {
"displayName": "Israelisches Pfund",
"displayName-count-one": "Israelisches Pfund",
"displayName-count-other": "Israelische Pfund",
"symbol": "ILP"
},
"ILR": {
"displayName": "Israelischer Schekel (1980–1985)",
"displayName-count-one": "Israelischer Schekel (1980–1985)",
"displayName-count-other": "Israelische Schekel (1980–1985)"
},
"ILS": {
"displayName": "Israelischer Neuer Schekel",
"displayName-count-one": "Israelischer Neuer Schekel",
"displayName-count-other": "Israelische Neue Schekel",
"symbol": "₪",
"symbol-alt-narrow": "₪"
},
"INR": {
"displayName": "Indische Rupie",
"displayName-count-one": "Indische Rupie",
"displayName-count-other": "Indische Rupien",
"symbol": "₹",
"symbol-alt-narrow": "₹"
},
"IQD": {
"displayName": "Irakischer Dinar",
"displayName-count-one": "Irakischer Dinar",
"displayName-count-other": "Irakische Dinar",
"symbol": "IQD"
},
"IRR": {
"displayName": "Iranischer Rial",
"displayName-count-one": "Iranischer Rial",
"displayName-count-other": "Iranische Rial",
"symbol": "IRR"
},
"ISJ": {
"displayName": "Isländische Krone (1918–1981)",
"displayName-count-one": "Isländische Krone (1918–1981)",
"displayName-count-other": "Isländische Kronen (1918–1981)"
},
"ISK": {
"displayName": "Isländische Krone",
"displayName-count-one": "Isländische Krone",
"displayName-count-other": "Isländische Kronen",
"symbol": "ISK",
"symbol-alt-narrow": "kr"
},
"ITL": {
"displayName": "Italienische Lira",
"displayName-count-one": "Italienische Lira",
"displayName-count-other": "Italienische Lire",
"symbol": "ITL"
},
"JMD": {
"displayName": "Jamaika-Dollar",
"displayName-count-one": "Jamaika-Dollar",
"displayName-count-other": "Jamaika-Dollar",
"symbol": "JMD",
"symbol-alt-narrow": "$"
},
"JOD": {
"displayName": "Jordanischer Dinar",
"displayName-count-one": "Jordanischer Dinar",
"displayName-count-other": "Jordanische Dinar",
"symbol": "JOD"
},
"JPY": {
"displayName": "Japanischer Yen",
"displayName-count-one": "Japanischer Yen",
"displayName-count-other": "Japanische Yen",
"symbol": "¥",
"symbol-alt-narrow": "¥"
},
"KES": {
"displayName": "Kenia-Schilling",
"displayName-count-one": "Kenia-Schilling",
"displayName-count-other": "Kenia-Schilling",
"symbol": "KES"
},
"KGS": {
"displayName": "Kirgisischer Som",
"displayName-count-one": "Kirgisischer Som",
"displayName-count-other": "Kirgisische Som",
"symbol": "KGS"
},
"KHR": {
"displayName": "Kambodschanischer Riel",
"displayName-count-one": "Kambodschanischer Riel",
"displayName-count-other": "Kambodschanische Riel",
"symbol": "KHR",
"symbol-alt-narrow": "៛"
},
"KMF": {
"displayName": "Komoren-Franc",
"displayName-count-one": "Komoren-Franc",
"displayName-count-other": "Komoren-Francs",
"symbol": "KMF",
"symbol-alt-narrow": "FC"
},
"KPW": {
"displayName": "Nordkoreanischer Won",
"displayName-count-one": "Nordkoreanischer Won",
"displayName-count-other": "Nordkoreanische Won",
"symbol": "KPW",
"symbol-alt-narrow": "₩"
},
"KRH": {
"displayName": "Südkoreanischer Hwan (1953–1962)",
"displayName-count-one": "Südkoreanischer Hwan (1953–1962)",
"displayName-count-other": "Südkoreanischer Hwan (1953–1962)",
"symbol": "KRH"
},
"KRO": {
"displayName": "Südkoreanischer Won (1945–1953)",
"displayName-count-one": "Südkoreanischer Won (1945–1953)",
"displayName-count-other": "Südkoreanischer Won (1945–1953)",
"symbol": "KRO"
},
"KRW": {
"displayName": "Südkoreanischer Won",
"displayName-count-one": "Südkoreanischer Won",
"displayName-count-other": "Südkoreanische Won",
"symbol": "₩",
"symbol-alt-narrow": "₩"
},
"KWD": {
"displayName": "Kuwait-Dinar",
"displayName-count-one": "Kuwait-Dinar",
"displayName-count-other": "Kuwait-Dinar",
"symbol": "KWD"
},
"KYD": {
"displayName": "Kaiman-Dollar",
"displayName-count-one": "Kaiman-Dollar",
"displayName-count-other": "Kaiman-Dollar",
"symbol": "KYD",
"symbol-alt-narrow": "$"
},
"KZT": {
"displayName": "Kasachischer Tenge",
"displayName-count-one": "Kasachischer Tenge",
"displayName-count-other": "Kasachische Tenge",
"symbol": "KZT",
"symbol-alt-narrow": "₸"
},
"LAK": {
"displayName": "Laotischer Kip",
"displayName-count-one": "Laotischer Kip",
"displayName-count-other": "Laotische Kip",
"symbol": "LAK",
"symbol-alt-narrow": "₭"
},
"LBP": {
"displayName": "Libanesisches Pfund",
"displayName-count-one": "Libanesisches Pfund",
"displayName-count-other": "Libanesische Pfund",
"symbol": "LBP",
"symbol-alt-narrow": "L£"
},
"LKR": {
"displayName": "Sri-Lanka-Rupie",
"displayName-count-one": "Sri-Lanka-Rupie",
"displayName-count-other": "Sri-Lanka-Rupien",
"symbol": "LKR",
"symbol-alt-narrow": "Rs"
},
"LRD": {
"displayName": "Liberianischer Dollar",
"displayName-count-one": "Liberianischer Dollar",
"displayName-count-other": "Liberianische Dollar",
"symbol": "LRD",
"symbol-alt-narrow": "$"
},
"LSL": {
"displayName": "Loti",
"displayName-count-one": "Loti",
"displayName-count-other": "Loti",
"symbol": "LSL"
},
"LTL": {
"displayName": "Litauischer Litas",
"displayName-count-one": "Litauischer Litas",
"displayName-count-other": "Litauische Litas",
"symbol": "LTL",
"symbol-alt-narrow": "Lt"
},
"LTT": {
"displayName": "Litauischer Talonas",
"displayName-count-one": "Litauische Talonas",
"displayName-count-other": "Litauische Talonas",
"symbol": "LTT"
},
"LUC": {
"displayName": "Luxemburgischer Franc (konvertibel)",
"displayName-count-one": "Luxemburgische Franc (konvertibel)",
"displayName-count-other": "Luxemburgische Franc (konvertibel)",
"symbol": "LUC"
},
"LUF": {
"displayName": "Luxemburgischer Franc",
"displayName-count-one": "Luxemburgische Franc",
"displayName-count-other": "Luxemburgische Franc",
"symbol": "LUF"
},
"LUL": {
"displayName": "Luxemburgischer Finanz-Franc",
"displayName-count-one": "Luxemburgische Finanz-Franc",
"displayName-count-other": "Luxemburgische Finanz-Franc",
"symbol": "LUL"
},
"LVL": {
"displayName": "Lettischer Lats",
"displayName-count-one": "Lettischer Lats",
"displayName-count-other": "Lettische Lats",
"symbol": "LVL",
"symbol-alt-narrow": "Ls"
},
"LVR": {
"displayName": "Lettischer Rubel",
"displayName-count-one": "Lettische Rubel",
"displayName-count-other": "Lettische Rubel",
"symbol": "LVR"
},
"LYD": {
"displayName": "Libyscher Dinar",
"displayName-count-one": "Libyscher Dinar",
"displayName-count-other": "Libysche Dinar",
"symbol": "LYD"
},
"MAD": {
"displayName": "Marokkanischer Dirham",
"displayName-count-one": "Marokkanischer Dirham",
"displayName-count-other": "Marokkanische Dirham",
"symbol": "MAD"
},
"MAF": {
"displayName": "Marokkanischer Franc",
"displayName-count-one": "Marokkanische Franc",
"displayName-count-other": "Marokkanische Franc",
"symbol": "MAF"
},
"MCF": {
"displayName": "Monegassischer Franc",
"displayName-count-one": "Monegassischer Franc",
"displayName-count-other": "Monegassische Franc",
"symbol": "MCF"
},
"MDC": {
"displayName": "Moldau-Cupon",
"displayName-count-one": "Moldau-Cupon",
"displayName-count-other": "Moldau-Cupon",
"symbol": "MDC"
},
"MDL": {
"displayName": "Moldau-Leu",
"displayName-count-one": "Moldau-Leu",
"displayName-count-other": "Moldau-Leu",
"symbol": "MDL"
},
"MGA": {
"displayName": "Madagaskar-Ariary",
"displayName-count-one": "Madagaskar-Ariary",
"displayName-count-other": "Madagaskar-Ariary",
"symbol": "MGA",
"symbol-alt-narrow": "Ar"
},
"MGF": {
"displayName": "Madagaskar-Franc",
"displayName-count-one": "Madagaskar-Franc",
"displayName-count-other": "Madagaskar-Franc",
"symbol": "MGF"
},
"MKD": {
"displayName": "Mazedonischer Denar",
"displayName-count-one": "Mazedonischer Denar",
"displayName-count-other": "Mazedonische Denari",
"symbol": "MKD"
},
"MKN": {
"displayName": "Mazedonischer Denar (1992–1993)",
"displayName-count-one": "Mazedonischer Denar (1992–1993)",
"displayName-count-other": "Mazedonische Denar (1992–1993)",
"symbol": "MKN"
},
"MLF": {
"displayName": "Malischer Franc",
"displayName-count-one": "Malische Franc",
"displayName-count-other": "Malische Franc",
"symbol": "MLF"
},
"MMK": {
"displayName": "Myanmarischer Kyat",
"displayName-count-one": "Myanmarischer Kyat",
"displayName-count-other": "Myanmarische Kyat",
"symbol": "MMK",
"symbol-alt-narrow": "K"
},
"MNT": {
"displayName": "Mongolischer Tögrög",
"displayName-count-one": "Mongolischer Tögrög",
"displayName-count-other": "Mongolische Tögrög",
"symbol": "MNT",
"symbol-alt-narrow": "₮"
},
"MOP": {
"displayName": "Macao-Pataca",
"displayName-count-one": "Macao-Pataca",
"displayName-count-other": "Macao-Pataca",
"symbol": "MOP"
},
"MRO": {
"displayName": "Mauretanischer Ouguiya",
"displayName-count-one": "Mauretanischer Ouguiya",
"displayName-count-other": "Mauretanische Ouguiya",
"symbol": "MRO"
},
"MTL": {
"displayName": "Maltesische Lira",
"displayName-count-one": "Maltesische Lira",
"displayName-count-other": "Maltesische Lira",
"symbol": "MTL"
},
"MTP": {
"displayName": "Maltesisches Pfund",
"displayName-count-one": "Maltesische Pfund",
"displayName-count-other": "Maltesische Pfund",
"symbol": "MTP"
},
"MUR": {
"displayName": "Mauritius-Rupie",
"displayName-count-one": "Mauritius-Rupie",
"displayName-count-other": "Mauritius-Rupien",
"symbol": "MUR",
"symbol-alt-narrow": "Rs"
},
"MVP": {
"displayName": "Malediven-Rupie (alt)",
"displayName-count-one": "Malediven-Rupie (alt)",
"displayName-count-other": "Malediven-Rupien (alt)"
},
"MVR": {
"displayName": "Malediven-Rufiyaa",
"displayName-count-one": "Malediven-Rufiyaa",
"displayName-count-other": "Malediven-Rupien",
"symbol": "MVR"
},
"MWK": {
"displayName": "Malawi-Kwacha",
"displayName-count-one": "Malawi-Kwacha",
"displayName-count-other": "Malawi-Kwacha",
"symbol": "MWK"
},
"MXN": {
"displayName": "Mexikanischer Peso",
"displayName-count-one": "Mexikanischer Peso",
"displayName-count-other": "Mexikanische Pesos",
"symbol": "MX$",
"symbol-alt-narrow": "$"
},
"MXP": {
"displayName": "Mexikanischer Silber-Peso (1861–1992)",
"displayName-count-one": "Mexikanische Silber-Peso (1861–1992)",
"displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)",
"symbol": "MXP"
},
"MXV": {
"displayName": "Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-other": "Mexikanische Unidad de Inversion (UDI)",
"symbol": "MXV"
},
"MYR": {
"displayName": "Malaysischer Ringgit",
"displayName-count-one": "Malaysischer Ringgit",
"displayName-count-other": "Malaysische Ringgit",
"symbol": "MYR",
"symbol-alt-narrow": "RM"
},
"MZE": {
"displayName": "Mosambikanischer Escudo",
"displayName-count-one": "Mozambikanische Escudo",
"displayName-count-other": "Mozambikanische Escudo",
"symbol": "MZE"
},
"MZM": {
"displayName": "Mosambikanischer Metical (1980–2006)",
"displayName-count-one": "Mosambikanischer Metical (1980–2006)",
"displayName-count-other": "Mosambikanische Meticais (1980–2006)",
"symbol": "MZM"
},
"MZN": {
"displayName": "Mosambikanischer Metical",
"displayName-count-one": "Mosambikanischer Metical",
"displayName-count-other": "Mosambikanische Meticais",
"symbol": "MZN"
},
"NAD": {
"displayName": "Namibia-Dollar",
"displayName-count-one": "Namibia-Dollar",
"displayName-count-other": "Namibia-Dollar",
"symbol": "NAD",
"symbol-alt-narrow": "$"
},
"NGN": {
"displayName": "Nigerianischer Naira",
"displayName-count-one": "Nigerianischer Naira",
"displayName-count-other": "Nigerianische Naira",
"symbol": "NGN",
"symbol-alt-narrow": "₦"
},
"NIC": {
"displayName": "Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-other": "Nicaraguanische Córdoba (1988–1991)",
"symbol": "NIC"
},
"NIO": {
"displayName": "Nicaragua-Córdoba",
"displayName-count-one": "Nicaragua-Córdoba",
"displayName-count-other": "Nicaragua-Córdobas",
"symbol": "NIO",
"symbol-alt-narrow": "C$"
},
"NLG": {
"displayName": "Niederländischer Gulden",
"displayName-count-one": "Niederländischer Gulden",
"displayName-count-other": "Niederländische Gulden",
"symbol": "NLG"
},
"NOK": {
"displayName": "Norwegische Krone",
"displayName-count-one": "Norwegische Krone",
"displayName-count-other": "Norwegische Kronen",
"symbol": "NOK",
"symbol-alt-narrow": "kr"
},
"NPR": {
"displayName": "Nepalesische Rupie",
"displayName-count-one": "Nepalesische Rupie",
"displayName-count-other": "Nepalesische Rupien",
"symbol": "NPR",
"symbol-alt-narrow": "Rs"
},
"NZD": {
"displayName": "Neuseeland-Dollar",
"displayName-count-one": "Neuseeland-Dollar",
"displayName-count-other": "Neuseeland-Dollar",
"symbol": "NZ$",
"symbol-alt-narrow": "$"
},
"OMR": {
"displayName": "Omanischer Rial",
"displayName-count-one": "Omanischer Rial",
"displayName-count-other": "Omanische Rials",
"symbol": "OMR"
},
"PAB": {
"displayName": "Panamaischer Balboa",
"displayName-count-one": "Panamaischer Balboa",
"displayName-count-other": "Panamaische Balboas",
"symbol": "PAB"
},
"PEI": {
"displayName": "Peruanischer Inti",
"displayName-count-one": "Peruanische Inti",
"displayName-count-other": "Peruanische Inti",
"symbol": "PEI"
},
"PEN": {
"displayName": "Peruanischer Sol",
"displayName-count-one": "Peruanischer Sol",
"displayName-count-other": "Peruanische Sol",
"symbol": "PEN"
},
"PES": {
"displayName": "Peruanischer Sol (1863–1965)",
"displayName-count-one": "Peruanischer Sol (1863–1965)",
"displayName-count-other": "Peruanische Sol (1863–1965)",
"symbol": "PES"
},
"PGK": {
"displayName": "Papua-Neuguineischer Kina",
"displayName-count-one": "Papua-Neuguineischer Kina",
"displayName-count-other": "Papua-Neuguineische Kina",
"symbol": "PGK"
},
"PHP": {
"displayName": "Philippinischer Peso",
"displayName-count-one": "Philippinischer Peso",
"displayName-count-other": "Philippinische Pesos",
"symbol": "PHP",
"symbol-alt-narrow": "₱"
},
"PKR": {
"displayName": "Pakistanische Rupie",
"displayName-count-one": "Pakistanische Rupie",
"displayName-count-other": "Pakistanische Rupien",
"symbol": "PKR",
"symbol-alt-narrow": "Rs"
},
"PLN": {
"displayName": "Polnischer Złoty",
"displayName-count-one": "Polnischer Złoty",
"displayName-count-other": "Polnische Złoty",
"symbol": "PLN",
"symbol-alt-narrow": "zł"
},
"PLZ": {
"displayName": "Polnischer Zloty (1950–1995)",
"displayName-count-one": "Polnischer Zloty (1950–1995)",
"displayName-count-other": "Polnische Zloty (1950–1995)",
"symbol": "PLZ"
},
"PTE": {
"displayName": "Portugiesischer Escudo",
"displayName-count-one": "Portugiesische Escudo",
"displayName-count-other": "Portugiesische Escudo",
"symbol": "PTE"
},
"PYG": {
"displayName": "Paraguayischer Guaraní",
"displayName-count-one": "Paraguayischer Guaraní",
"displayName-count-other": "Paraguayische Guaraníes",
"symbol": "PYG",
"symbol-alt-narrow": "₲"
},
"QAR": {
"displayName": "Katar-Riyal",
"displayName-count-one": "Katar-Riyal",
"displayName-count-other": "Katar-Riyal",
"symbol": "QAR"
},
"RHD": {
"displayName": "Rhodesischer Dollar",
"displayName-count-one": "Rhodesische Dollar",
"displayName-count-other": "Rhodesische Dollar",
"symbol": "RHD"
},
"ROL": {
"displayName": "Rumänischer Leu (1952–2006)",
"displayName-count-one": "Rumänischer Leu (1952–2006)",
"displayName-count-other": "Rumänische Leu (1952–2006)",
"symbol": "ROL"
},
"RON": {
"displayName": "Rumänischer Leu",
"displayName-count-one": "Rumänischer Leu",
"displayName-count-other": "Rumänische Leu",
"symbol": "RON",
"symbol-alt-narrow": "L"
},
"RSD": {
"displayName": "Serbischer Dinar",
"displayName-count-one": "Serbischer Dinar",
"displayName-count-other": "Serbische Dinaren",
"symbol": "RSD"
},
"RUB": {
"displayName": "Russischer Rubel",
"displayName-count-one": "Russischer Rubel",
"displayName-count-other": "Russische Rubel",
"symbol": "RUB",
"symbol-alt-narrow": "₽"
},
"RUR": {
"displayName": "Russischer Rubel (1991–1998)",
"displayName-count-one": "Russischer Rubel (1991–1998)",
"displayName-count-other": "Russische Rubel (1991–1998)",
"symbol": "RUR",
"symbol-alt-narrow": "р."
},
"RWF": {
"displayName": "Ruanda-Franc",
"displayName-count-one": "Ruanda-Franc",
"displayName-count-other": "Ruanda-Francs",
"symbol": "RWF",
"symbol-alt-narrow": "F.Rw"
},
"SAR": {
"displayName": "Saudi-Rial",
"displayName-count-one": "Saudi-Rial",
"displayName-count-other": "Saudi-Rial",
"symbol": "SAR"
},
"SBD": {
"displayName": "Salomonen-Dollar",
"displayName-count-one": "Salomonen-Dollar",
"displayName-count-other": "Salomonen-Dollar",
"symbol": "SBD",
"symbol-alt-narrow": "$"
},
"SCR": {
"displayName": "Seychellen-Rupie",
"displayName-count-one": "Seychellen-Rupie",
"displayName-count-other": "Seychellen-Rupien",
"symbol": "SCR"
},
"SDD": {
"displayName": "Sudanesischer Dinar (1992–2007)",
"displayName-count-one": "Sudanesischer Dinar (1992–2007)",
"displayName-count-other": "Sudanesische Dinar (1992–2007)",
"symbol": "SDD"
},
"SDG": {
"displayName": "Sudanesisches Pfund",
"displayName-count-one": "Sudanesisches Pfund",
"displayName-count-other": "Sudanesische Pfund",
"symbol": "SDG"
},
"SDP": {
"displayName": "Sudanesisches Pfund (1957–1998)",
"displayName-count-one": "Sudanesisches Pfund (1957–1998)",
"displayName-count-other": "Sudanesische Pfund (1957–1998)",
"symbol": "SDP"
},
"SEK": {
"displayName": "Schwedische Krone",
"displayName-count-one": "Schwedische Krone",
"displayName-count-other": "Schwedische Kronen",
"symbol": "SEK",
"symbol-alt-narrow": "kr"
},
"SGD": {
"displayName": "Singapur-Dollar",
"displayName-count-one": "Singapur-Dollar",
"displayName-count-other": "Singapur-Dollar",
"symbol": "SGD",
"symbol-alt-narrow": "$"
},
"SHP": {
"displayName": "St. Helena-Pfund",
"displayName-count-one": "St. Helena-Pfund",
"displayName-count-other": "St. Helena-Pfund",
"symbol": "SHP",
"symbol-alt-narrow": "£"
},
"SIT": {
"displayName": "Slowenischer Tolar",
"displayName-count-one": "Slowenischer Tolar",
"displayName-count-other": "Slowenische Tolar",
"symbol": "SIT"
},
"SKK": {
"displayName": "Slowakische Krone",
"displayName-count-one": "Slowakische Kronen",
"displayName-count-other": "Slowakische Kronen",
"symbol": "SKK"
},
"SLL": {
"displayName": "Sierra-leonischer Leone",
"displayName-count-one": "Sierra-leonischer Leone",
"displayName-count-other": "Sierra-leonische Leones",
"symbol": "SLL"
},
"SOS": {
"displayName": "Somalia-Schilling",
"displayName-count-one": "Somalia-Schilling",
"displayName-count-other": "Somalia-Schilling",
"symbol": "SOS"
},
"SRD": {
"displayName": "Suriname-Dollar",
"displayName-count-one": "Suriname-Dollar",
"displayName-count-other": "Suriname-Dollar",
"symbol": "SRD",
"symbol-alt-narrow": "$"
},
"SRG": {
"displayName": "Suriname Gulden",
"displayName-count-one": "Suriname-Gulden",
"displayName-count-other": "Suriname-Gulden",
"symbol": "SRG"
},
"SSP": {
"displayName": "Südsudanesisches Pfund",
"displayName-count-one": "Südsudanesisches Pfund",
"displayName-count-other": "Südsudanesische Pfund",
"symbol": "SSP",
"symbol-alt-narrow": "£"
},
"STD": {
"displayName": "São-toméischer Dobra",
"displayName-count-one": "São-toméischer Dobra",
"displayName-count-other": "São-toméische Dobra",
"symbol": "STD",
"symbol-alt-narrow": "Db"
},
"SUR": {
"displayName": "Sowjetischer Rubel",
"displayName-count-one": "Sowjetische Rubel",
"displayName-count-other": "Sowjetische Rubel",
"symbol": "SUR"
},
"SVC": {
"displayName": "El Salvador Colon",
"displayName-count-one": "El Salvador-Colon",
"displayName-count-other": "El Salvador-Colon",
"symbol": "SVC"
},
"SYP": {
"displayName": "Syrisches Pfund",
"displayName-count-one": "Syrisches Pfund",
"displayName-count-other": "Syrische Pfund",
"symbol": "SYP",
"symbol-alt-narrow": "SYP"
},
"SZL": {
"displayName": "Swasiländischer Lilangeni",
"displayName-count-one": "Swasiländischer Lilangeni",
"displayName-count-other": "Swasiländische Emalangeni",
"symbol": "SZL"
},
"THB": {
"displayName": "Thailändischer Baht",
"displayName-count-one": "Thailändischer Baht",
"displayName-count-other": "Thailändische Baht",
"symbol": "฿",
"symbol-alt-narrow": "฿"
},
"TJR": {
"displayName": "Tadschikistan Rubel",
"displayName-count-one": "Tadschikistan-Rubel",
"displayName-count-other": "Tadschikistan-Rubel",
"symbol": "TJR"
},
"TJS": {
"displayName": "Tadschikistan-Somoni",
"displayName-count-one": "Tadschikistan-Somoni",
"displayName-count-other": "Tadschikistan-Somoni",
"symbol": "TJS"
},
"TMM": {
"displayName": "Turkmenistan-Manat (1993–2009)",
"displayName-count-one": "Turkmenistan-Manat (1993–2009)",
"displayName-count-other": "Turkmenistan-Manat (1993–2009)",
"symbol": "TMM"
},
"TMT": {
"displayName": "Turkmenistan-Manat",
"displayName-count-one": "Turkmenistan-Manat",
"displayName-count-other": "Turkmenistan-Manat",
"symbol": "TMT"
},
"TND": {
"displayName": "Tunesischer Dinar",
"displayName-count-one": "Tunesischer Dinar",
"displayName-count-other": "Tunesische Dinar",
"symbol": "TND"
},
"TOP": {
"displayName": "Tongaischer Paʻanga",
"displayName-count-one": "Tongaischer Paʻanga",
"displayName-count-other": "Tongaische Paʻanga",
"symbol": "TOP",
"symbol-alt-narrow": "T$"
},
"TPE": {
"displayName": "Timor-Escudo",
"displayName-count-one": "Timor-Escudo",
"displayName-count-other": "Timor-Escudo",
"symbol": "TPE"
},
"TRL": {
"displayName": "Türkische Lira (1922–2005)",
"displayName-count-one": "Türkische Lira (1922–2005)",
"displayName-count-other": "Türkische Lira (1922–2005)",
"symbol": "TRL"
},
"TRY": {
"displayName": "Türkische Lira",
"displayName-count-one": "Türkische Lira",
"displayName-count-other": "Türkische Lira",
"symbol": "TRY",
"symbol-alt-narrow": "₺",
"symbol-alt-variant": "TL"
},
"TTD": {
"displayName": "Trinidad und Tobago-Dollar",
"displayName-count-one": "Trinidad und Tobago-Dollar",
"displayName-count-other": "Trinidad und Tobago-Dollar",
"symbol": "TTD",
"symbol-alt-narrow": "$"
},
"TWD": {
"displayName": "Neuer Taiwan-Dollar",
"displayName-count-one": "Neuer Taiwan-Dollar",
"displayName-count-other": "Neue Taiwan-Dollar",
"symbol": "NT$",
"symbol-alt-narrow": "NT$"
},
"TZS": {
"displayName": "Tansania-Schilling",
"displayName-count-one": "Tansania-Schilling",
"displayName-count-other": "Tansania-Schilling",
"symbol": "TZS"
},
"UAH": {
"displayName": "Ukrainische Hrywnja",
"displayName-count-one": "Ukrainische Hrywnja",
"displayName-count-other": "Ukrainische Hrywen",
"symbol": "UAH",
"symbol-alt-narrow": "₴"
},
"UAK": {
"displayName": "Ukrainischer Karbovanetz",
"displayName-count-one": "Ukrainische Karbovanetz",
"displayName-count-other": "Ukrainische Karbovanetz",
"symbol": "UAK"
},
"UGS": {
"displayName": "Uganda-Schilling (1966–1987)",
"displayName-count-one": "Uganda-Schilling (1966–1987)",
"displayName-count-other": "Uganda-Schilling (1966–1987)",
"symbol": "UGS"
},
"UGX": {
"displayName": "Uganda-Schilling",
"displayName-count-one": "Uganda-Schilling",
"displayName-count-other": "Uganda-Schilling",
"symbol": "UGX"
},
"USD": {
"displayName": "US-Dollar",
"displayName-count-one": "US-Dollar",
"displayName-count-other": "US-Dollar",
"symbol": "$",
"symbol-alt-narrow": "$"
},
"USN": {
"displayName": "US Dollar (Nächster Tag)",
"displayName-count-one": "US-Dollar (Nächster Tag)",
"displayName-count-other": "US-Dollar (Nächster Tag)",
"symbol": "USN"
},
"USS": {
"displayName": "US Dollar (Gleicher Tag)",
"displayName-count-one": "US-Dollar (Gleicher Tag)",
"displayName-count-other": "US-Dollar (Gleicher Tag)",
"symbol": "USS"
},
"UYI": {
"displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
"symbol": "UYI"
},
"UYP": {
"displayName": "Uruguayischer Peso (1975–1993)",
"displayName-count-one": "Uruguayischer Peso (1975–1993)",
"displayName-count-other": "Uruguayische Pesos (1975–1993)",
"symbol": "UYP"
},
"UYU": {
"displayName": "Uruguayischer Peso",
"displayName-count-one": "Uruguayischer Peso",
"displayName-count-other": "Uruguayische Pesos",
"symbol": "UYU",
"symbol-alt-narrow": "$"
},
"UZS": {
"displayName": "Usbekistan-Sum",
"displayName-count-one": "Usbekistan-Sum",
"displayName-count-other": "Usbekistan-Sum",
"symbol": "UZS"
},
"VEB": {
"displayName": "Venezolanischer Bolívar (1871–2008)",
"displayName-count-one": "Venezolanischer Bolívar (1871–2008)",
"displayName-count-other": "Venezolanische Bolívares (1871–2008)",
"symbol": "VEB"
},
"VEF": {
"displayName": "Venezolanischer Bolívar",
"displayName-count-one": "Venezolanischer Bolívar",
"displayName-count-other": "Venezolanische Bolívares",
"symbol": "VEF",
"symbol-alt-narrow": "Bs"
},
"VND": {
"displayName": "Vietnamesischer Dong",
"displayName-count-one": "Vietnamesischer Dong",
"displayName-count-other": "Vietnamesische Dong",
"symbol": "₫",
"symbol-alt-narrow": "₫"
},
"VNN": {
"displayName": "Vietnamesischer Dong(1978–1985)",
"displayName-count-one": "Vietnamesischer Dong(1978–1985)",
"displayName-count-other": "Vietnamesische Dong(1978–1985)",
"symbol": "VNN"
},
"VUV": {
"displayName": "Vanuatu-Vatu",
"displayName-count-one": "Vanuatu-Vatu",
"displayName-count-other": "Vanuatu-Vatu",
"symbol": "VUV"
},
"WST": {
"displayName": "Samoanischer Tala",
"displayName-count-one": "Samoanischer Tala",
"displayName-count-other": "Samoanische Tala",
"symbol": "WST"
},
"XAF": {
"displayName": "CFA-Franc (BEAC)",
"displayName-count-one": "CFA-Franc (BEAC)",
"displayName-count-other": "CFA-Franc (BEAC)",
"symbol": "FCFA"
},
"XAG": {
"displayName": "Unze Silber",
"displayName-count-one": "Unze Silber",
"displayName-count-other": "Unzen Silber",
"symbol": "XAG"
},
"XAU": {
"displayName": "Unze Gold",
"displayName-count-one": "Unze Gold",
"displayName-count-other": "Unzen Gold",
"symbol": "XAU"
},
"XBA": {
"displayName": "Europäische Rechnungseinheit",
"displayName-count-one": "Europäische Rechnungseinheiten",
"displayName-count-other": "Europäische Rechnungseinheiten",
"symbol": "XBA"
},
"XBB": {
"displayName": "Europäische Währungseinheit (XBB)",
"displayName-count-one": "Europäische Währungseinheiten (XBB)",
"displayName-count-other": "Europäische Währungseinheiten (XBB)",
"symbol": "XBB"
},
"XBC": {
"displayName": "Europäische Rechnungseinheit (XBC)",
"displayName-count-one": "Europäische Rechnungseinheiten (XBC)",
"displayName-count-other": "Europäische Rechnungseinheiten (XBC)",
"symbol": "XBC"
},
"XBD": {
"displayName": "Europäische Rechnungseinheit (XBD)",
"displayName-count-one": "Europäische Rechnungseinheiten (XBD)",
"displayName-count-other": "Europäische Rechnungseinheiten (XBD)",
"symbol": "XBD"
},
"XCD": {
"displayName": "Ostkaribischer Dollar",
"displayName-count-one": "Ostkaribischer Dollar",
"displayName-count-other": "Ostkaribische Dollar",
"symbol": "EC$",
"symbol-alt-narrow": "$"
},
"XDR": {
"displayName": "Sonderziehungsrechte",
"displayName-count-one": "Sonderziehungsrechte",
"displayName-count-other": "Sonderziehungsrechte",
"symbol": "XDR"
},
"XEU": {
"displayName": "Europäische Währungseinheit (XEU)",
"displayName-count-one": "Europäische Währungseinheiten (XEU)",
"displayName-count-other": "Europäische Währungseinheiten (XEU)",
"symbol": "XEU"
},
"XFO": {
"displayName": "Französischer Gold-Franc",
"displayName-count-one": "Französische Gold-Franc",
"displayName-count-other": "Französische Gold-Franc",
"symbol": "XFO"
},
"XFU": {
"displayName": "Französischer UIC-Franc",
"displayName-count-one": "Französische UIC-Franc",
"displayName-count-other": "Französische UIC-Franc",
"symbol": "XFU"
},
"XOF": {
"displayName": "CFA-Franc (BCEAO)",
"displayName-count-one": "CFA-Franc (BCEAO)",
"displayName-count-other": "CFA-Francs (BCEAO)",
"symbol": "CFA"
},
"XPD": {
"displayName": "Unze Palladium",
"displayName-count-one": "Unze Palladium",
"displayName-count-other": "Unzen Palladium",
"symbol": "XPD"
},
"XPF": {
"displayName": "CFP-Franc",
"displayName-count-one": "CFP-Franc",
"displayName-count-other": "CFP-Franc",
"symbol": "CFPF"
},
"XPT": {
"displayName": "Unze Platin",
"displayName-count-one": "Unze Platin",
"displayName-count-other": "Unzen Platin",
"symbol": "XPT"
},
"XRE": {
"displayName": "RINET Funds",
"displayName-count-one": "RINET Funds",
"displayName-count-other": "RINET Funds",
"symbol": "XRE"
},
"XSU": {
"displayName": "SUCRE",
"displayName-count-one": "SUCRE",
"displayName-count-other": "SUCRE",
"symbol": "XSU"
},
"XTS": {
"displayName": "Testwährung",
"displayName-count-one": "Testwährung",
"displayName-count-other": "Testwährung",
"symbol": "XTS"
},
"XUA": {
"displayName": "Rechnungseinheit der AfEB",
"displayName-count-one": "Rechnungseinheit der AfEB",
"displayName-count-other": "Rechnungseinheiten der AfEB",
"symbol": "XUA"
},
"XXX": {
"displayName": "Unbekannte Währung",
"displayName-count-one": "(unbekannte Währung)",
"displayName-count-other": "(unbekannte Währung)",
"symbol": "XXX"
},
"YDD": {
"displayName": "Jemen-Dinar",
"displayName-count-one": "Jemen-Dinar",
"displayName-count-other": "Jemen-Dinar",
"symbol": "YDD"
},
"YER": {
"displayName": "Jemen-Rial",
"displayName-count-one": "Jemen-Rial",
"displayName-count-other": "Jemen-Rial",
"symbol": "YER"
},
"YUD": {
"displayName": "Jugoslawischer Dinar (1966–1990)",
"displayName-count-one": "Jugoslawischer Dinar (1966–1990)",
"displayName-count-other": "Jugoslawische Dinar (1966–1990)",
"symbol": "YUD"
},
"YUM": {
"displayName": "Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)",
"symbol": "YUM"
},
"YUN": {
"displayName": "Jugoslawischer Dinar (konvertibel)",
"displayName-count-one": "Jugoslawische Dinar (konvertibel)",
"displayName-count-other": "Jugoslawische Dinar (konvertibel)",
"symbol": "YUN"
},
"YUR": {
"displayName": "Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)",
"symbol": "YUR"
},
"ZAL": {
"displayName": "Südafrikanischer Rand (Finanz)",
"displayName-count-one": "Südafrikanischer Rand (Finanz)",
"displayName-count-other": "Südafrikanischer Rand (Finanz)",
"symbol": "ZAL"
},
"ZAR": {
"displayName": "Südafrikanischer Rand",
"displayName-count-one": "Südafrikanischer Rand",
"displayName-count-other": "Südafrikanische Rand",
"symbol": "ZAR",
"symbol-alt-narrow": "R"
},
"ZMK": {
"displayName": "Kwacha (1968–2012)",
"displayName-count-one": "Kwacha (1968–2012)",
"displayName-count-other": "Kwacha (1968–2012)",
"symbol": "ZMK"
},
"ZMW": {
"displayName": "Kwacha",
"displayName-count-one": "Kwacha",
"displayName-count-other": "Kwacha",
"symbol": "ZMW",
"symbol-alt-narrow": "K"
},
"ZRN": {
"displayName": "Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-other": "Zaire-Neue Zaïre (1993–1998)",
"symbol": "ZRN"
},
"ZRZ": {
"displayName": "Zaire-Zaïre (1971–1993)",
"displayName-count-one": "Zaire-Zaïre (1971–1993)",
"displayName-count-other": "Zaire-Zaïre (1971–1993)",
"symbol": "ZRZ"
},
"ZWD": {
"displayName": "Simbabwe-Dollar (1980–2008)",
"displayName-count-one": "Simbabwe-Dollar (1980–2008)",
"displayName-count-other": "Simbabwe-Dollar (1980–2008)",
"symbol": "ZWD"
},
"ZWL": {
"displayName": "Simbabwe-Dollar (2009)",
"displayName-count-one": "Simbabwe-Dollar (2009)",
"displayName-count-other": "Simbabwe-Dollar (2009)",
"symbol": "ZWL"
},
"ZWR": {
"displayName": "Simbabwe-Dollar (2008)",
"displayName-count-one": "Simbabwe-Dollar (2008)",
"displayName-count-other": "Simbabwe-Dollar (2008)",
"symbol": "ZWR"
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 13259 $",
"_cldrVersion";
"31";
}
"language";
"de";
}
"numbers";
{
"currencies";
{
"ADP";
{
"displayName";
"Andorranische Pesete",
"displayName-count-one";
"Andorranische Pesete",
"displayName-count-other";
"Andorranische Peseten",
"symbol";
"ADP";
}
"AED";
{
"displayName";
"VAE-Dirham",
"displayName-count-one";
"VAE-Dirham",
"displayName-count-other";
"VAE-Dirham",
"symbol";
"AED";
}
"AFA";
{
"displayName";
"Afghanische Afghani (1927–2002)",
"displayName-count-one";
"Afghanische Afghani (1927–2002)",
"displayName-count-other";
"Afghanische Afghani (1927–2002)",
"symbol";
"AFA";
}
"AFN";
{
"displayName";
"Afghanischer Afghani",
"displayName-count-one";
"Afghanischer Afghani",
"displayName-count-other";
"Afghanische Afghani",
"symbol";
"AFN";
}
"ALK";
{
"displayName";
"Albanischer Lek (1946–1965)",
"displayName-count-one";
"Albanischer Lek (1946–1965)",
"displayName-count-other";
"Albanische Lek (1946–1965)";
}
"ALL";
{
"displayName";
"Albanischer Lek",
"displayName-count-one";
"Albanischer Lek",
"displayName-count-other";
"Albanische Lek",
"symbol";
"ALL";
}
"AMD";
{
"displayName";
"Armenischer Dram",
"displayName-count-one";
"Armenischer Dram",
"displayName-count-other";
"Armenische Dram",
"symbol";
"AMD";
}
"ANG";
{
"displayName";
"Niederländische-Antillen-Gulden",
"displayName-count-one";
"Niederländische-Antillen-Gulden",
"displayName-count-other";
"Niederländische-Antillen-Gulden",
"symbol";
"ANG";
}
"AOA";
{
"displayName";
"Angolanischer Kwanza",
"displayName-count-one";
"Angolanischer Kwanza",
"displayName-count-other";
"Angolanische Kwanza",
"symbol";
"AOA",
"symbol-alt-narrow";
"Kz";
}
"AOK";
{
"displayName";
"Angolanischer Kwanza (1977–1990)",
"displayName-count-one";
"Angolanischer Kwanza (1977–1990)",
"displayName-count-other";
"Angolanische Kwanza (1977–1990)",
"symbol";
"AOK";
}
"AON";
{
"displayName";
"Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-one";
"Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-other";
"Angolanische Neue Kwanza (1990–2000)",
"symbol";
"AON";
}
"AOR";
{
"displayName";
"Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-one";
"Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-other";
"Angolanische Kwanza Reajustado (1995–1999)",
"symbol";
"AOR";
}
"ARA";
{
"displayName";
"Argentinischer Austral",
"displayName-count-one";
"Argentinischer Austral",
"displayName-count-other";
"Argentinische Austral",
"symbol";
"ARA";
}
"ARL";
{
"displayName";
"Argentinischer Peso Ley (1970–1983)",
"displayName-count-one";
"Argentinischer Peso Ley (1970–1983)",
"displayName-count-other";
"Argentinische Pesos Ley (1970–1983)",
"symbol";
"ARL";
}
"ARM";
{
"displayName";
"Argentinischer Peso (1881–1970)",
"displayName-count-one";
"Argentinischer Peso (1881–1970)",
"displayName-count-other";
"Argentinische Pesos (1881–1970)",
"symbol";
"ARM";
}
"ARP";
{
"displayName";
"Argentinischer Peso (1983–1985)",
"displayName-count-one";
"Argentinischer Peso (1983–1985)",
"displayName-count-other";
"Argentinische Peso (1983–1985)",
"symbol";
"ARP";
}
"ARS";
{
"displayName";
"Argentinischer Peso",
"displayName-count-one";
"Argentinischer Peso",
"displayName-count-other";
"Argentinische Pesos",
"symbol";
"ARS",
"symbol-alt-narrow";
"$";
}
"ATS";
{
"displayName";
"Österreichischer Schilling",
"displayName-count-one";
"Österreichischer Schilling",
"displayName-count-other";
"Österreichische Schilling",
"symbol";
"öS";
}
"AUD";
{
"displayName";
"Australischer Dollar",
"displayName-count-one";
"Australischer Dollar",
"displayName-count-other";
"Australische Dollar",
"symbol";
"AU$",
"symbol-alt-narrow";
"$";
}
"AWG";
{
"displayName";
"Aruba-Florin",
"displayName-count-one";
"Aruba-Florin",
"displayName-count-other";
"Aruba-Florin",
"symbol";
"AWG";
}
"AZM";
{
"displayName";
"Aserbaidschan-Manat (1993–2006)",
"displayName-count-one";
"Aserbaidschan-Manat (1993–2006)",
"displayName-count-other";
"Aserbaidschan-Manat (1993–2006)",
"symbol";
"AZM";
}
"AZN";
{
"displayName";
"Aserbaidschan-Manat",
"displayName-count-one";
"Aserbaidschan-Manat",
"displayName-count-other";
"Aserbaidschan-Manat",
"symbol";
"AZN";
}
"BAD";
{
"displayName";
"Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-one";
"Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-other";
"Bosnien und Herzegowina Dinar (1992–1994)",
"symbol";
"BAD";
}
"BAM";
{
"displayName";
"Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-one";
"Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-other";
"Bosnien und Herzegowina Konvertierbare Mark",
"symbol";
"BAM",
"symbol-alt-narrow";
"KM";
}
"BAN";
{
"displayName";
"Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-one";
"Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-other";
"Bosnien und Herzegowina Neue Dinar (1994–1997)",
"symbol";
"BAN";
}
"BBD";
{
"displayName";
"Barbados-Dollar",
"displayName-count-one";
"Barbados-Dollar",
"displayName-count-other";
"Barbados-Dollar",
"symbol";
"BBD",
"symbol-alt-narrow";
"$";
}
"BDT";
{
"displayName";
"Bangladesch-Taka",
"displayName-count-one";
"Bangladesch-Taka",
"displayName-count-other";
"Bangladesch-Taka",
"symbol";
"BDT",
"symbol-alt-narrow";
"৳";
}
"BEC";
{
"displayName";
"Belgischer Franc (konvertibel)",
"displayName-count-one";
"Belgischer Franc (konvertibel)",
"displayName-count-other";
"Belgische Franc (konvertibel)",
"symbol";
"BEC";
}
"BEF";
{
"displayName";
"Belgischer Franc",
"displayName-count-one";
"Belgischer Franc",
"displayName-count-other";
"Belgische Franc",
"symbol";
"BEF";
}
"BEL";
{
"displayName";
"Belgischer Finanz-Franc",
"displayName-count-one";
"Belgischer Finanz-Franc",
"displayName-count-other";
"Belgische Finanz-Franc",
"symbol";
"BEL";
}
"BGL";
{
"displayName";
"Bulgarische Lew (1962–1999)",
"displayName-count-one";
"Bulgarische Lew (1962–1999)",
"displayName-count-other";
"Bulgarische Lew (1962–1999)",
"symbol";
"BGL";
}
"BGM";
{
"displayName";
"Bulgarischer Lew (1952–1962)",
"displayName-count-one";
"Bulgarischer Lew (1952–1962)",
"displayName-count-other";
"Bulgarische Lew (1952–1962)",
"symbol";
"BGK";
}
"BGN";
{
"displayName";
"Bulgarischer Lew",
"displayName-count-one";
"Bulgarischer Lew",
"displayName-count-other";
"Bulgarische Lew",
"symbol";
"BGN";
}
"BGO";
{
"displayName";
"Bulgarischer Lew (1879–1952)",
"displayName-count-one";
"Bulgarischer Lew (1879–1952)",
"displayName-count-other";
"Bulgarische Lew (1879–1952)",
"symbol";
"BGJ";
}
"BHD";
{
"displayName";
"Bahrain-Dinar",
"displayName-count-one";
"Bahrain-Dinar",
"displayName-count-other";
"Bahrain-Dinar",
"symbol";
"BHD";
}
"BIF";
{
"displayName";
"Burundi-Franc",
"displayName-count-one";
"Burundi-Franc",
"displayName-count-other";
"Burundi-Francs",
"symbol";
"BIF";
}
"BMD";
{
"displayName";
"Bermuda-Dollar",
"displayName-count-one";
"Bermuda-Dollar",
"displayName-count-other";
"Bermuda-Dollar",
"symbol";
"BMD",
"symbol-alt-narrow";
"$";
}
"BND";
{
"displayName";
"Brunei-Dollar",
"displayName-count-one";
"Brunei-Dollar",
"displayName-count-other";
"Brunei-Dollar",
"symbol";
"BND",
"symbol-alt-narrow";
"$";
}
"BOB";
{
"displayName";
"Bolivanischer Boliviano",
"displayName-count-one";
"Bolivanischer Boliviano",
"displayName-count-other";
"Bolivianische Bolivianos",
"symbol";
"BOB",
"symbol-alt-narrow";
"Bs";
}
"BOL";
{
"displayName";
"Bolivianischer Boliviano (1863–1963)",
"displayName-count-one";
"Bolivianischer Boliviano (1863–1963)",
"displayName-count-other";
"Bolivianische Bolivianos (1863–1963)",
"symbol";
"BOL";
}
"BOP";
{
"displayName";
"Bolivianischer Peso",
"displayName-count-one";
"Bolivianischer Peso",
"displayName-count-other";
"Bolivianische Peso",
"symbol";
"BOP";
}
"BOV";
{
"displayName";
"Boliviansiche Mvdol",
"displayName-count-one";
"Boliviansiche Mvdol",
"displayName-count-other";
"Bolivianische Mvdol",
"symbol";
"BOV";
}
"BRB";
{
"displayName";
"Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-one";
"Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-other";
"Brasilianische Cruzeiro Novo (1967–1986)",
"symbol";
"BRB";
}
"BRC";
{
"displayName";
"Brasilianischer Cruzado (1986–1989)",
"displayName-count-one";
"Brasilianischer Cruzado (1986–1989)",
"displayName-count-other";
"Brasilianische Cruzado (1986–1989)",
"symbol";
"BRC";
}
"BRE";
{
"displayName";
"Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-other";
"Brasilianische Cruzeiro (1990–1993)",
"symbol";
"BRE";
}
"BRL";
{
"displayName";
"Brasilianischer Real",
"displayName-count-one";
"Brasilianischer Real",
"displayName-count-other";
"Brasilianische Real",
"symbol";
"R$",
"symbol-alt-narrow";
"R$";
}
"BRN";
{
"displayName";
"Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-one";
"Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-other";
"Brasilianische Cruzado Novo (1989–1990)",
"symbol";
"BRN";
}
"BRR";
{
"displayName";
"Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-other";
"Brasilianische Cruzeiro (1993–1994)",
"symbol";
"BRR";
}
"BRZ";
{
"displayName";
"Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-other";
"Brasilianischer Cruzeiro (1942–1967)",
"symbol";
"BRZ";
}
"BSD";
{
"displayName";
"Bahamas-Dollar",
"displayName-count-one";
"Bahamas-Dollar",
"displayName-count-other";
"Bahamas-Dollar",
"symbol";
"BSD",
"symbol-alt-narrow";
"$";
}
"BTN";
{
"displayName";
"Bhutan-Ngultrum",
"displayName-count-one";
"Bhutan-Ngultrum",
"displayName-count-other";
"Bhutan-Ngultrum",
"symbol";
"BTN";
}
"BUK";
{
"displayName";
"Birmanischer Kyat",
"displayName-count-one";
"Birmanischer Kyat",
"displayName-count-other";
"Birmanische Kyat",
"symbol";
"BUK";
}
"BWP";
{
"displayName";
"Botswanischer Pula",
"displayName-count-one";
"Botswanischer Pula",
"displayName-count-other";
"Botswanische Pula",
"symbol";
"BWP",
"symbol-alt-narrow";
"P";
}
"BYB";
{
"displayName";
"Belarus-Rubel (1994–1999)",
"displayName-count-one";
"Belarus-Rubel (1994–1999)",
"displayName-count-other";
"Belarus-Rubel (1994–1999)",
"symbol";
"BYB";
}
"BYN";
{
"displayName";
"Weißrussischer Rubel",
"displayName-count-one";
"Weißrussischer Rubel",
"displayName-count-other";
"Weißrussische Rubel",
"symbol";
"BYN",
"symbol-alt-narrow";
"р.";
}
"BYR";
{
"displayName";
"Weißrussischer Rubel (2000–2016)",
"displayName-count-one";
"Weißrussischer Rubel (2000–2016)",
"displayName-count-other";
"Weißrussische Rubel (2000–2016)",
"symbol";
"BYR";
}
"BZD";
{
"displayName";
"Belize-Dollar",
"displayName-count-one";
"Belize-Dollar",
"displayName-count-other";
"Belize-Dollar",
"symbol";
"BZD",
"symbol-alt-narrow";
"$";
}
"CAD";
{
"displayName";
"Kanadischer Dollar",
"displayName-count-one";
"Kanadischer Dollar",
"displayName-count-other";
"Kanadische Dollar",
"symbol";
"CA$",
"symbol-alt-narrow";
"$";
}
"CDF";
{
"displayName";
"Kongo-Franc",
"displayName-count-one";
"Kongo-Franc",
"displayName-count-other";
"Kongo-Francs",
"symbol";
"CDF";
}
"CHE";
{
"displayName";
"WIR-Euro",
"displayName-count-one";
"WIR-Euro",
"displayName-count-other";
"WIR-Euro",
"symbol";
"CHE";
}
"CHF";
{
"displayName";
"Schweizer Franken",
"displayName-count-one";
"Schweizer Franken",
"displayName-count-other";
"Schweizer Franken",
"symbol";
"CHF";
}
"CHW";
{
"displayName";
"WIR Franken",
"displayName-count-one";
"WIR Franken",
"displayName-count-other";
"WIR Franken",
"symbol";
"CHW";
}
"CLE";
{
"displayName";
"Chilenischer Escudo",
"displayName-count-one";
"Chilenischer Escudo",
"displayName-count-other";
"Chilenische Escudo",
"symbol";
"CLE";
}
"CLF";
{
"displayName";
"Chilenische Unidades de Fomento",
"displayName-count-one";
"Chilenische Unidades de Fomento",
"displayName-count-other";
"Chilenische Unidades de Fomento",
"symbol";
"CLF";
}
"CLP";
{
"displayName";
"Chilenischer Peso",
"displayName-count-one";
"Chilenischer Peso",
"displayName-count-other";
"Chilenische Pesos",
"symbol";
"CLP",
"symbol-alt-narrow";
"$";
}
"CNX";
{
"displayName";
"Dollar der Chinesischen Volksbank",
"displayName-count-one";
"Dollar der Chinesischen Volksbank",
"displayName-count-other";
"Dollar der Chinesischen Volksbank",
"symbol";
"CNX";
}
"CNY";
{
"displayName";
"Renminbi Yuan",
"displayName-count-one";
"Chinesischer Yuan",
"displayName-count-other";
"Renminbi Yuan",
"symbol";
"CN¥",
"symbol-alt-narrow";
"¥";
}
"COP";
{
"displayName";
"Kolumbianischer Peso",
"displayName-count-one";
"Kolumbianischer Peso",
"displayName-count-other";
"Kolumbianische Pesos",
"symbol";
"COP",
"symbol-alt-narrow";
"$";
}
"COU";
{
"displayName";
"Kolumbianische Unidades de valor real",
"displayName-count-one";
"Kolumbianische Unidad de valor real",
"displayName-count-other";
"Kolumbianische Unidades de valor real",
"symbol";
"COU";
}
"CRC";
{
"displayName";
"Costa-Rica-Colón",
"displayName-count-one";
"Costa-Rica-Colón",
"displayName-count-other";
"Costa-Rica-Colón",
"symbol";
"CRC",
"symbol-alt-narrow";
"₡";
}
"CSD";
{
"displayName";
"Serbischer Dinar (2002–2006)",
"displayName-count-one";
"Serbischer Dinar (2002–2006)",
"displayName-count-other";
"Serbische Dinar (2002–2006)",
"symbol";
"CSD";
}
"CSK";
{
"displayName";
"Tschechoslowakische Krone",
"displayName-count-one";
"Tschechoslowakische Kronen",
"displayName-count-other";
"Tschechoslowakische Kronen",
"symbol";
"CSK";
}
"CUC";
{
"displayName";
"Kubanischer Peso (konvertibel)",
"displayName-count-one";
"Kubanischer Peso (konvertibel)",
"displayName-count-other";
"Kubanische Pesos (konvertibel)",
"symbol";
"CUC",
"symbol-alt-narrow";
"Cub$";
}
"CUP";
{
"displayName";
"Kubanischer Peso",
"displayName-count-one";
"Kubanischer Peso",
"displayName-count-other";
"Kubanische Pesos",
"symbol";
"CUP",
"symbol-alt-narrow";
"$";
}
"CVE";
{
"displayName";
"Cabo-Verde-Escudo",
"displayName-count-one";
"Cabo-Verde-Escudo",
"displayName-count-other";
"Cabo-Verde-Escudos",
"symbol";
"CVE";
}
"CYP";
{
"displayName";
"Zypern-Pfund",
"displayName-count-one";
"Zypern Pfund",
"displayName-count-other";
"Zypern Pfund",
"symbol";
"CYP";
}
"CZK";
{
"displayName";
"Tschechische Krone",
"displayName-count-one";
"Tschechische Krone",
"displayName-count-other";
"Tschechische Kronen",
"symbol";
"CZK",
"symbol-alt-narrow";
"Kč";
}
"DDM";
{
"displayName";
"Mark der DDR",
"displayName-count-one";
"Mark der DDR",
"displayName-count-other";
"Mark der DDR",
"symbol";
"DDM";
}
"DEM";
{
"displayName";
"Deutsche Mark",
"displayName-count-one";
"Deutsche Mark",
"displayName-count-other";
"Deutsche Mark",
"symbol";
"DM";
}
"DJF";
{
"displayName";
"Dschibuti-Franc",
"displayName-count-one";
"Dschibuti-Franc",
"displayName-count-other";
"Dschibuti-Franc",
"symbol";
"DJF";
}
"DKK";
{
"displayName";
"Dänische Krone",
"displayName-count-one";
"Dänische Krone",
"displayName-count-other";
"Dänische Kronen",
"symbol";
"DKK",
"symbol-alt-narrow";
"kr";
}
"DOP";
{
"displayName";
"Dominikanischer Peso",
"displayName-count-one";
"Dominikanischer Peso",
"displayName-count-other";
"Dominikanische Pesos",
"symbol";
"DOP",
"symbol-alt-narrow";
"$";
}
"DZD";
{
"displayName";
"Algerischer Dinar",
"displayName-count-one";
"Algerischer Dinar",
"displayName-count-other";
"Algerische Dinar",
"symbol";
"DZD";
}
"ECS";
{
"displayName";
"Ecuadorianischer Sucre",
"displayName-count-one";
"Ecuadorianischer Sucre",
"displayName-count-other";
"Ecuadorianische Sucre",
"symbol";
"ECS";
}
"ECV";
{
"displayName";
"Verrechnungseinheit für Ecuador",
"displayName-count-one";
"Verrechnungseinheiten für Ecuador",
"displayName-count-other";
"Verrechnungseinheiten für Ecuador",
"symbol";
"ECV";
}
"EEK";
{
"displayName";
"Estnische Krone",
"displayName-count-one";
"Estnische Krone",
"displayName-count-other";
"Estnische Kronen",
"symbol";
"EEK";
}
"EGP";
{
"displayName";
"Ägyptisches Pfund",
"displayName-count-one";
"Ägyptisches Pfund",
"displayName-count-other";
"Ägyptische Pfund",
"symbol";
"EGP",
"symbol-alt-narrow";
"E£";
}
"ERN";
{
"displayName";
"Eritreischer Nakfa",
"displayName-count-one";
"Eritreischer Nakfa",
"displayName-count-other";
"Eritreische Nakfa",
"symbol";
"ERN";
}
"ESA";
{
"displayName";
"Spanische Peseta (A–Konten)",
"displayName-count-one";
"Spanische Peseta (A–Konten)",
"displayName-count-other";
"Spanische Peseten (A–Konten)",
"symbol";
"ESA";
}
"ESB";
{
"displayName";
"Spanische Peseta (konvertibel)",
"displayName-count-one";
"Spanische Peseta (konvertibel)",
"displayName-count-other";
"Spanische Peseten (konvertibel)",
"symbol";
"ESB";
}
"ESP";
{
"displayName";
"Spanische Peseta",
"displayName-count-one";
"Spanische Peseta",
"displayName-count-other";
"Spanische Peseten",
"symbol";
"ESP",
"symbol-alt-narrow";
"₧";
}
"ETB";
{
"displayName";
"Äthiopischer Birr",
"displayName-count-one";
"Äthiopischer Birr",
"displayName-count-other";
"Äthiopische Birr",
"symbol";
"ETB";
}
"EUR";
{
"displayName";
"Euro",
"displayName-count-one";
"Euro",
"displayName-count-other";
"Euro",
"symbol";
"€",
"symbol-alt-narrow";
"€";
}
"FIM";
{
"displayName";
"Finnische Mark",
"displayName-count-one";
"Finnische Mark",
"displayName-count-other";
"Finnische Mark",
"symbol";
"FIM";
}
"FJD";
{
"displayName";
"Fidschi-Dollar",
"displayName-count-one";
"Fidschi-Dollar",
"displayName-count-other";
"Fidschi-Dollar",
"symbol";
"FJD",
"symbol-alt-narrow";
"$";
}
"FKP";
{
"displayName";
"Falkland-Pfund",
"displayName-count-one";
"Falkland-Pfund",
"displayName-count-other";
"Falkland-Pfund",
"symbol";
"FKP",
"symbol-alt-narrow";
"Fl£";
}
"FRF";
{
"displayName";
"Französischer Franc",
"displayName-count-one";
"Französischer Franc",
"displayName-count-other";
"Französische Franc",
"symbol";
"FRF";
}
"GBP";
{
"displayName";
"Britisches Pfund",
"displayName-count-one";
"Britisches Pfund",
"displayName-count-other";
"Britische Pfund",
"symbol";
"£",
"symbol-alt-narrow";
"£";
}
"GEK";
{
"displayName";
"Georgischer Kupon Larit",
"displayName-count-one";
"Georgischer Kupon Larit",
"displayName-count-other";
"Georgische Kupon Larit",
"symbol";
"GEK";
}
"GEL";
{
"displayName";
"Georgischer Lari",
"displayName-count-one";
"Georgischer Lari",
"displayName-count-other";
"Georgische Lari",
"symbol";
"GEL",
"symbol-alt-narrow";
"₾",
"symbol-alt-variant";
"₾";
}
"GHC";
{
"displayName";
"Ghanaischer Cedi (1979–2007)",
"displayName-count-one";
"Ghanaischer Cedi (1979–2007)",
"displayName-count-other";
"Ghanaische Cedi (1979–2007)",
"symbol";
"GHC";
}
"GHS";
{
"displayName";
"Ghanaischer Cedi",
"displayName-count-one";
"Ghanaischer Cedi",
"displayName-count-other";
"Ghanaische Cedi",
"symbol";
"GHS";
}
"GIP";
{
"displayName";
"Gibraltar-Pfund",
"displayName-count-one";
"Gibraltar-Pfund",
"displayName-count-other";
"Gibraltar Pfund",
"symbol";
"GIP",
"symbol-alt-narrow";
"£";
}
"GMD";
{
"displayName";
"Gambia-Dalasi",
"displayName-count-one";
"Gambia-Dalasi",
"displayName-count-other";
"Gambia-Dalasi",
"symbol";
"GMD";
}
"GNF";
{
"displayName";
"Guinea-Franc",
"displayName-count-one";
"Guinea-Franc",
"displayName-count-other";
"Guinea-Franc",
"symbol";
"GNF",
"symbol-alt-narrow";
"F.G.";
}
"GNS";
{
"displayName";
"Guineischer Syli",
"displayName-count-one";
"Guineischer Syli",
"displayName-count-other";
"Guineische Syli",
"symbol";
"GNS";
}
"GQE";
{
"displayName";
"Äquatorialguinea-Ekwele",
"displayName-count-one";
"Äquatorialguinea-Ekwele",
"displayName-count-other";
"Äquatorialguinea-Ekwele",
"symbol";
"GQE";
}
"GRD";
{
"displayName";
"Griechische Drachme",
"displayName-count-one";
"Griechische Drachme",
"displayName-count-other";
"Griechische Drachmen",
"symbol";
"GRD";
}
"GTQ";
{
"displayName";
"Guatemaltekischer Quetzal",
"displayName-count-one";
"Guatemaltekischer Quetzal",
"displayName-count-other";
"Guatemaltekische Quetzales",
"symbol";
"GTQ",
"symbol-alt-narrow";
"Q";
}
"GWE";
{
"displayName";
"Portugiesisch Guinea Escudo",
"displayName-count-one";
"Portugiesisch Guinea Escudo",
"displayName-count-other";
"Portugiesisch Guinea Escudo",
"symbol";
"GWE";
}
"GWP";
{
"displayName";
"Guinea-Bissau Peso",
"displayName-count-one";
"Guinea-Bissau Peso",
"displayName-count-other";
"Guinea-Bissau Pesos",
"symbol";
"GWP";
}
"GYD";
{
"displayName";
"Guyana-Dollar",
"displayName-count-one";
"Guyana-Dollar",
"displayName-count-other";
"Guyana-Dollar",
"symbol";
"GYD",
"symbol-alt-narrow";
"$";
}
"HKD";
{
"displayName";
"Hongkong-Dollar",
"displayName-count-one";
"Hongkong-Dollar",
"displayName-count-other";
"Hongkong-Dollar",
"symbol";
"HK$",
"symbol-alt-narrow";
"$";
}
"HNL";
{
"displayName";
"Honduras-Lempira",
"displayName-count-one";
"Honduras-Lempira",
"displayName-count-other";
"Honduras-Lempira",
"symbol";
"HNL",
"symbol-alt-narrow";
"L";
}
"HRD";
{
"displayName";
"Kroatischer Dinar",
"displayName-count-one";
"Kroatischer Dinar",
"displayName-count-other";
"Kroatische Dinar",
"symbol";
"HRD";
}
"HRK";
{
"displayName";
"Kroatischer Kuna",
"displayName-count-one";
"Kroatischer Kuna",
"displayName-count-other";
"Kroatische Kuna",
"symbol";
"HRK",
"symbol-alt-narrow";
"kn";
}
"HTG";
{
"displayName";
"Haitianische Gourde",
"displayName-count-one";
"Haitianische Gourde",
"displayName-count-other";
"Haitianische Gourdes",
"symbol";
"HTG";
}
"HUF";
{
"displayName";
"Ungarischer Forint",
"displayName-count-one";
"Ungarischer Forint",
"displayName-count-other";
"Ungarische Forint",
"symbol";
"HUF",
"symbol-alt-narrow";
"Ft";
}
"IDR";
{
"displayName";
"Indonesische Rupiah",
"displayName-count-one";
"Indonesische Rupiah",
"displayName-count-other";
"Indonesische Rupiah",
"symbol";
"IDR",
"symbol-alt-narrow";
"Rp";
}
"IEP";
{
"displayName";
"Irisches Pfund",
"displayName-count-one";
"Irisches Pfund",
"displayName-count-other";
"Irische Pfund",
"symbol";
"IEP";
}
"ILP";
{
"displayName";
"Israelisches Pfund",
"displayName-count-one";
"Israelisches Pfund",
"displayName-count-other";
"Israelische Pfund",
"symbol";
"ILP";
}
"ILR";
{
"displayName";
"Israelischer Schekel (1980–1985)",
"displayName-count-one";
"Israelischer Schekel (1980–1985)",
"displayName-count-other";
"Israelische Schekel (1980–1985)";
}
"ILS";
{
"displayName";
"Israelischer Neuer Schekel",
"displayName-count-one";
"Israelischer Neuer Schekel",
"displayName-count-other";
"Israelische Neue Schekel",
"symbol";
"₪",
"symbol-alt-narrow";
"₪";
}
"INR";
{
"displayName";
"Indische Rupie",
"displayName-count-one";
"Indische Rupie",
"displayName-count-other";
"Indische Rupien",
"symbol";
"₹",
"symbol-alt-narrow";
"₹";
}
"IQD";
{
"displayName";
"Irakischer Dinar",
"displayName-count-one";
"Irakischer Dinar",
"displayName-count-other";
"Irakische Dinar",
"symbol";
"IQD";
}
"IRR";
{
"displayName";
"Iranischer Rial",
"displayName-count-one";
"Iranischer Rial",
"displayName-count-other";
"Iranische Rial",
"symbol";
"IRR";
}
"ISJ";
{
"displayName";
"Isländische Krone (1918–1981)",
"displayName-count-one";
"Isländische Krone (1918–1981)",
"displayName-count-other";
"Isländische Kronen (1918–1981)";
}
"ISK";
{
"displayName";
"Isländische Krone",
"displayName-count-one";
"Isländische Krone",
"displayName-count-other";
"Isländische Kronen",
"symbol";
"ISK",
"symbol-alt-narrow";
"kr";
}
"ITL";
{
"displayName";
"Italienische Lira",
"displayName-count-one";
"Italienische Lira",
"displayName-count-other";
"Italienische Lire",
"symbol";
"ITL";
}
"JMD";
{
"displayName";
"Jamaika-Dollar",
"displayName-count-one";
"Jamaika-Dollar",
"displayName-count-other";
"Jamaika-Dollar",
"symbol";
"JMD",
"symbol-alt-narrow";
"$";
}
"JOD";
{
"displayName";
"Jordanischer Dinar",
"displayName-count-one";
"Jordanischer Dinar",
"displayName-count-other";
"Jordanische Dinar",
"symbol";
"JOD";
}
"JPY";
{
"displayName";
"Japanischer Yen",
"displayName-count-one";
"Japanischer Yen",
"displayName-count-other";
"Japanische Yen",
"symbol";
"¥",
"symbol-alt-narrow";
"¥";
}
"KES";
{
"displayName";
"Kenia-Schilling",
"displayName-count-one";
"Kenia-Schilling",
"displayName-count-other";
"Kenia-Schilling",
"symbol";
"KES";
}
"KGS";
{
"displayName";
"Kirgisischer Som",
"displayName-count-one";
"Kirgisischer Som",
"displayName-count-other";
"Kirgisische Som",
"symbol";
"KGS";
}
"KHR";
{
"displayName";
"Kambodschanischer Riel",
"displayName-count-one";
"Kambodschanischer Riel",
"displayName-count-other";
"Kambodschanische Riel",
"symbol";
"KHR",
"symbol-alt-narrow";
"៛";
}
"KMF";
{
"displayName";
"Komoren-Franc",
"displayName-count-one";
"Komoren-Franc",
"displayName-count-other";
"Komoren-Francs",
"symbol";
"KMF",
"symbol-alt-narrow";
"FC";
}
"KPW";
{
"displayName";
"Nordkoreanischer Won",
"displayName-count-one";
"Nordkoreanischer Won",
"displayName-count-other";
"Nordkoreanische Won",
"symbol";
"KPW",
"symbol-alt-narrow";
"₩";
}
"KRH";
{
"displayName";
"Südkoreanischer Hwan (1953–1962)",
"displayName-count-one";
"Südkoreanischer Hwan (1953–1962)",
"displayName-count-other";
"Südkoreanischer Hwan (1953–1962)",
"symbol";
"KRH";
}
"KRO";
{
"displayName";
"Südkoreanischer Won (1945–1953)",
"displayName-count-one";
"Südkoreanischer Won (1945–1953)",
"displayName-count-other";
"Südkoreanischer Won (1945–1953)",
"symbol";
"KRO";
}
"KRW";
{
"displayName";
"Südkoreanischer Won",
"displayName-count-one";
"Südkoreanischer Won",
"displayName-count-other";
"Südkoreanische Won",
"symbol";
"₩",
"symbol-alt-narrow";
"₩";
}
"KWD";
{
"displayName";
"Kuwait-Dinar",
"displayName-count-one";
"Kuwait-Dinar",
"displayName-count-other";
"Kuwait-Dinar",
"symbol";
"KWD";
}
"KYD";
{
"displayName";
"Kaiman-Dollar",
"displayName-count-one";
"Kaiman-Dollar",
"displayName-count-other";
"Kaiman-Dollar",
"symbol";
"KYD",
"symbol-alt-narrow";
"$";
}
"KZT";
{
"displayName";
"Kasachischer Tenge",
"displayName-count-one";
"Kasachischer Tenge",
"displayName-count-other";
"Kasachische Tenge",
"symbol";
"KZT",
"symbol-alt-narrow";
"₸";
}
"LAK";
{
"displayName";
"Laotischer Kip",
"displayName-count-one";
"Laotischer Kip",
"displayName-count-other";
"Laotische Kip",
"symbol";
"LAK",
"symbol-alt-narrow";
"₭";
}
"LBP";
{
"displayName";
"Libanesisches Pfund",
"displayName-count-one";
"Libanesisches Pfund",
"displayName-count-other";
"Libanesische Pfund",
"symbol";
"LBP",
"symbol-alt-narrow";
"L£";
}
"LKR";
{
"displayName";
"Sri-Lanka-Rupie",
"displayName-count-one";
"Sri-Lanka-Rupie",
"displayName-count-other";
"Sri-Lanka-Rupien",
"symbol";
"LKR",
"symbol-alt-narrow";
"Rs";
}
"LRD";
{
"displayName";
"Liberianischer Dollar",
"displayName-count-one";
"Liberianischer Dollar",
"displayName-count-other";
"Liberianische Dollar",
"symbol";
"LRD",
"symbol-alt-narrow";
"$";
}
"LSL";
{
"displayName";
"Loti",
"displayName-count-one";
"Loti",
"displayName-count-other";
"Loti",
"symbol";
"LSL";
}
"LTL";
{
"displayName";
"Litauischer Litas",
"displayName-count-one";
"Litauischer Litas",
"displayName-count-other";
"Litauische Litas",
"symbol";
"LTL",
"symbol-alt-narrow";
"Lt";
}
"LTT";
{
"displayName";
"Litauischer Talonas",
"displayName-count-one";
"Litauische Talonas",
"displayName-count-other";
"Litauische Talonas",
"symbol";
"LTT";
}
"LUC";
{
"displayName";
"Luxemburgischer Franc (konvertibel)",
"displayName-count-one";
"Luxemburgische Franc (konvertibel)",
"displayName-count-other";
"Luxemburgische Franc (konvertibel)",
"symbol";
"LUC";
}
"LUF";
{
"displayName";
"Luxemburgischer Franc",
"displayName-count-one";
"Luxemburgische Franc",
"displayName-count-other";
"Luxemburgische Franc",
"symbol";
"LUF";
}
"LUL";
{
"displayName";
"Luxemburgischer Finanz-Franc",
"displayName-count-one";
"Luxemburgische Finanz-Franc",
"displayName-count-other";
"Luxemburgische Finanz-Franc",
"symbol";
"LUL";
}
"LVL";
{
"displayName";
"Lettischer Lats",
"displayName-count-one";
"Lettischer Lats",
"displayName-count-other";
"Lettische Lats",
"symbol";
"LVL",
"symbol-alt-narrow";
"Ls";
}
"LVR";
{
"displayName";
"Lettischer Rubel",
"displayName-count-one";
"Lettische Rubel",
"displayName-count-other";
"Lettische Rubel",
"symbol";
"LVR";
}
"LYD";
{
"displayName";
"Libyscher Dinar",
"displayName-count-one";
"Libyscher Dinar",
"displayName-count-other";
"Libysche Dinar",
"symbol";
"LYD";
}
"MAD";
{
"displayName";
"Marokkanischer Dirham",
"displayName-count-one";
"Marokkanischer Dirham",
"displayName-count-other";
"Marokkanische Dirham",
"symbol";
"MAD";
}
"MAF";
{
"displayName";
"Marokkanischer Franc",
"displayName-count-one";
"Marokkanische Franc",
"displayName-count-other";
"Marokkanische Franc",
"symbol";
"MAF";
}
"MCF";
{
"displayName";
"Monegassischer Franc",
"displayName-count-one";
"Monegassischer Franc",
"displayName-count-other";
"Monegassische Franc",
"symbol";
"MCF";
}
"MDC";
{
"displayName";
"Moldau-Cupon",
"displayName-count-one";
"Moldau-Cupon",
"displayName-count-other";
"Moldau-Cupon",
"symbol";
"MDC";
}
"MDL";
{
"displayName";
"Moldau-Leu",
"displayName-count-one";
"Moldau-Leu",
"displayName-count-other";
"Moldau-Leu",
"symbol";
"MDL";
}
"MGA";
{
"displayName";
"Madagaskar-Ariary",
"displayName-count-one";
"Madagaskar-Ariary",
"displayName-count-other";
"Madagaskar-Ariary",
"symbol";
"MGA",
"symbol-alt-narrow";
"Ar";
}
"MGF";
{
"displayName";
"Madagaskar-Franc",
"displayName-count-one";
"Madagaskar-Franc",
"displayName-count-other";
"Madagaskar-Franc",
"symbol";
"MGF";
}
"MKD";
{
"displayName";
"Mazedonischer Denar",
"displayName-count-one";
"Mazedonischer Denar",
"displayName-count-other";
"Mazedonische Denari",
"symbol";
"MKD";
}
"MKN";
{
"displayName";
"Mazedonischer Denar (1992–1993)",
"displayName-count-one";
"Mazedonischer Denar (1992–1993)",
"displayName-count-other";
"Mazedonische Denar (1992–1993)",
"symbol";
"MKN";
}
"MLF";
{
"displayName";
"Malischer Franc",
"displayName-count-one";
"Malische Franc",
"displayName-count-other";
"Malische Franc",
"symbol";
"MLF";
}
"MMK";
{
"displayName";
"Myanmarischer Kyat",
"displayName-count-one";
"Myanmarischer Kyat",
"displayName-count-other";
"Myanmarische Kyat",
"symbol";
"MMK",
"symbol-alt-narrow";
"K";
}
"MNT";
{
"displayName";
"Mongolischer Tögrög",
"displayName-count-one";
"Mongolischer Tögrög",
"displayName-count-other";
"Mongolische Tögrög",
"symbol";
"MNT",
"symbol-alt-narrow";
"₮";
}
"MOP";
{
"displayName";
"Macao-Pataca",
"displayName-count-one";
"Macao-Pataca",
"displayName-count-other";
"Macao-Pataca",
"symbol";
"MOP";
}
"MRO";
{
"displayName";
"Mauretanischer Ouguiya",
"displayName-count-one";
"Mauretanischer Ouguiya",
"displayName-count-other";
"Mauretanische Ouguiya",
"symbol";
"MRO";
}
"MTL";
{
"displayName";
"Maltesische Lira",
"displayName-count-one";
"Maltesische Lira",
"displayName-count-other";
"Maltesische Lira",
"symbol";
"MTL";
}
"MTP";
{
"displayName";
"Maltesisches Pfund",
"displayName-count-one";
"Maltesische Pfund",
"displayName-count-other";
"Maltesische Pfund",
"symbol";
"MTP";
}
"MUR";
{
"displayName";
"Mauritius-Rupie",
"displayName-count-one";
"Mauritius-Rupie",
"displayName-count-other";
"Mauritius-Rupien",
"symbol";
"MUR",
"symbol-alt-narrow";
"Rs";
}
"MVP";
{
"displayName";
"Malediven-Rupie (alt)",
"displayName-count-one";
"Malediven-Rupie (alt)",
"displayName-count-other";
"Malediven-Rupien (alt)";
}
"MVR";
{
"displayName";
"Malediven-Rufiyaa",
"displayName-count-one";
"Malediven-Rufiyaa",
"displayName-count-other";
"Malediven-Rupien",
"symbol";
"MVR";
}
"MWK";
{
"displayName";
"Malawi-Kwacha",
"displayName-count-one";
"Malawi-Kwacha",
"displayName-count-other";
"Malawi-Kwacha",
"symbol";
"MWK";
}
"MXN";
{
"displayName";
"Mexikanischer Peso",
"displayName-count-one";
"Mexikanischer Peso",
"displayName-count-other";
"Mexikanische Pesos",
"symbol";
"MX$",
"symbol-alt-narrow";
"$";
}
"MXP";
{
"displayName";
"Mexikanischer Silber-Peso (1861–1992)",
"displayName-count-one";
"Mexikanische Silber-Peso (1861–1992)",
"displayName-count-other";
"Mexikanische Silber-Pesos (1861–1992)",
"symbol";
"MXP";
}
"MXV";
{
"displayName";
"Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-one";
"Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-other";
"Mexikanische Unidad de Inversion (UDI)",
"symbol";
"MXV";
}
"MYR";
{
"displayName";
"Malaysischer Ringgit",
"displayName-count-one";
"Malaysischer Ringgit",
"displayName-count-other";
"Malaysische Ringgit",
"symbol";
"MYR",
"symbol-alt-narrow";
"RM";
}
"MZE";
{
"displayName";
"Mosambikanischer Escudo",
"displayName-count-one";
"Mozambikanische Escudo",
"displayName-count-other";
"Mozambikanische Escudo",
"symbol";
"MZE";
}
"MZM";
{
"displayName";
"Mosambikanischer Metical (1980–2006)",
"displayName-count-one";
"Mosambikanischer Metical (1980–2006)",
"displayName-count-other";
"Mosambikanische Meticais (1980–2006)",
"symbol";
"MZM";
}
"MZN";
{
"displayName";
"Mosambikanischer Metical",
"displayName-count-one";
"Mosambikanischer Metical",
"displayName-count-other";
"Mosambikanische Meticais",
"symbol";
"MZN";
}
"NAD";
{
"displayName";
"Namibia-Dollar",
"displayName-count-one";
"Namibia-Dollar",
"displayName-count-other";
"Namibia-Dollar",
"symbol";
"NAD",
"symbol-alt-narrow";
"$";
}
"NGN";
{
"displayName";
"Nigerianischer Naira",
"displayName-count-one";
"Nigerianischer Naira",
"displayName-count-other";
"Nigerianische Naira",
"symbol";
"NGN",
"symbol-alt-narrow";
"₦";
}
"NIC";
{
"displayName";
"Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-one";
"Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-other";
"Nicaraguanische Córdoba (1988–1991)",
"symbol";
"NIC";
}
"NIO";
{
"displayName";
"Nicaragua-Córdoba",
"displayName-count-one";
"Nicaragua-Córdoba",
"displayName-count-other";
"Nicaragua-Córdobas",
"symbol";
"NIO",
"symbol-alt-narrow";
"C$";
}
"NLG";
{
"displayName";
"Niederländischer Gulden",
"displayName-count-one";
"Niederländischer Gulden",
"displayName-count-other";
"Niederländische Gulden",
"symbol";
"NLG";
}
"NOK";
{
"displayName";
"Norwegische Krone",
"displayName-count-one";
"Norwegische Krone",
"displayName-count-other";
"Norwegische Kronen",
"symbol";
"NOK",
"symbol-alt-narrow";
"kr";
}
"NPR";
{
"displayName";
"Nepalesische Rupie",
"displayName-count-one";
"Nepalesische Rupie",
"displayName-count-other";
"Nepalesische Rupien",
"symbol";
"NPR",
"symbol-alt-narrow";
"Rs";
}
"NZD";
{
"displayName";
"Neuseeland-Dollar",
"displayName-count-one";
"Neuseeland-Dollar",
"displayName-count-other";
"Neuseeland-Dollar",
"symbol";
"NZ$",
"symbol-alt-narrow";
"$";
}
"OMR";
{
"displayName";
"Omanischer Rial",
"displayName-count-one";
"Omanischer Rial",
"displayName-count-other";
"Omanische Rials",
"symbol";
"OMR";
}
"PAB";
{
"displayName";
"Panamaischer Balboa",
"displayName-count-one";
"Panamaischer Balboa",
"displayName-count-other";
"Panamaische Balboas",
"symbol";
"PAB";
}
"PEI";
{
"displayName";
"Peruanischer Inti",
"displayName-count-one";
"Peruanische Inti",
"displayName-count-other";
"Peruanische Inti",
"symbol";
"PEI";
}
"PEN";
{
"displayName";
"Peruanischer Sol",
"displayName-count-one";
"Peruanischer Sol",
"displayName-count-other";
"Peruanische Sol",
"symbol";
"PEN";
}
"PES";
{
"displayName";
"Peruanischer Sol (1863–1965)",
"displayName-count-one";
"Peruanischer Sol (1863–1965)",
"displayName-count-other";
"Peruanische Sol (1863–1965)",
"symbol";
"PES";
}
"PGK";
{
"displayName";
"Papua-Neuguineischer Kina",
"displayName-count-one";
"Papua-Neuguineischer Kina",
"displayName-count-other";
"Papua-Neuguineische Kina",
"symbol";
"PGK";
}
"PHP";
{
"displayName";
"Philippinischer Peso",
"displayName-count-one";
"Philippinischer Peso",
"displayName-count-other";
"Philippinische Pesos",
"symbol";
"PHP",
"symbol-alt-narrow";
"₱";
}
"PKR";
{
"displayName";
"Pakistanische Rupie",
"displayName-count-one";
"Pakistanische Rupie",
"displayName-count-other";
"Pakistanische Rupien",
"symbol";
"PKR",
"symbol-alt-narrow";
"Rs";
}
"PLN";
{
"displayName";
"Polnischer Złoty",
"displayName-count-one";
"Polnischer Złoty",
"displayName-count-other";
"Polnische Złoty",
"symbol";
"PLN",
"symbol-alt-narrow";
"zł";
}
"PLZ";
{
"displayName";
"Polnischer Zloty (1950–1995)",
"displayName-count-one";
"Polnischer Zloty (1950–1995)",
"displayName-count-other";
"Polnische Zloty (1950–1995)",
"symbol";
"PLZ";
}
"PTE";
{
"displayName";
"Portugiesischer Escudo",
"displayName-count-one";
"Portugiesische Escudo",
"displayName-count-other";
"Portugiesische Escudo",
"symbol";
"PTE";
}
"PYG";
{
"displayName";
"Paraguayischer Guaraní",
"displayName-count-one";
"Paraguayischer Guaraní",
"displayName-count-other";
"Paraguayische Guaraníes",
"symbol";
"PYG",
"symbol-alt-narrow";
"₲";
}
"QAR";
{
"displayName";
"Katar-Riyal",
"displayName-count-one";
"Katar-Riyal",
"displayName-count-other";
"Katar-Riyal",
"symbol";
"QAR";
}
"RHD";
{
"displayName";
"Rhodesischer Dollar",
"displayName-count-one";
"Rhodesische Dollar",
"displayName-count-other";
"Rhodesische Dollar",
"symbol";
"RHD";
}
"ROL";
{
"displayName";
"Rumänischer Leu (1952–2006)",
"displayName-count-one";
"Rumänischer Leu (1952–2006)",
"displayName-count-other";
"Rumänische Leu (1952–2006)",
"symbol";
"ROL";
}
"RON";
{
"displayName";
"Rumänischer Leu",
"displayName-count-one";
"Rumänischer Leu",
"displayName-count-other";
"Rumänische Leu",
"symbol";
"RON",
"symbol-alt-narrow";
"L";
}
"RSD";
{
"displayName";
"Serbischer Dinar",
"displayName-count-one";
"Serbischer Dinar",
"displayName-count-other";
"Serbische Dinaren",
"symbol";
"RSD";
}
"RUB";
{
"displayName";
"Russischer Rubel",
"displayName-count-one";
"Russischer Rubel",
"displayName-count-other";
"Russische Rubel",
"symbol";
"RUB",
"symbol-alt-narrow";
"₽";
}
"RUR";
{
"displayName";
"Russischer Rubel (1991–1998)",
"displayName-count-one";
"Russischer Rubel (1991–1998)",
"displayName-count-other";
"Russische Rubel (1991–1998)",
"symbol";
"RUR",
"symbol-alt-narrow";
"р.";
}
"RWF";
{
"displayName";
"Ruanda-Franc",
"displayName-count-one";
"Ruanda-Franc",
"displayName-count-other";
"Ruanda-Francs",
"symbol";
"RWF",
"symbol-alt-narrow";
"F.Rw";
}
"SAR";
{
"displayName";
"Saudi-Rial",
"displayName-count-one";
"Saudi-Rial",
"displayName-count-other";
"Saudi-Rial",
"symbol";
"SAR";
}
"SBD";
{
"displayName";
"Salomonen-Dollar",
"displayName-count-one";
"Salomonen-Dollar",
"displayName-count-other";
"Salomonen-Dollar",
"symbol";
"SBD",
"symbol-alt-narrow";
"$";
}
"SCR";
{
"displayName";
"Seychellen-Rupie",
"displayName-count-one";
"Seychellen-Rupie",
"displayName-count-other";
"Seychellen-Rupien",
"symbol";
"SCR";
}
"SDD";
{
"displayName";
"Sudanesischer Dinar (1992–2007)",
"displayName-count-one";
"Sudanesischer Dinar (1992–2007)",
"displayName-count-other";
"Sudanesische Dinar (1992–2007)",
"symbol";
"SDD";
}
"SDG";
{
"displayName";
"Sudanesisches Pfund",
"displayName-count-one";
"Sudanesisches Pfund",
"displayName-count-other";
"Sudanesische Pfund",
"symbol";
"SDG";
}
"SDP";
{
"displayName";
"Sudanesisches Pfund (1957–1998)",
"displayName-count-one";
"Sudanesisches Pfund (1957–1998)",
"displayName-count-other";
"Sudanesische Pfund (1957–1998)",
"symbol";
"SDP";
}
"SEK";
{
"displayName";
"Schwedische Krone",
"displayName-count-one";
"Schwedische Krone",
"displayName-count-other";
"Schwedische Kronen",
"symbol";
"SEK",
"symbol-alt-narrow";
"kr";
}
"SGD";
{
"displayName";
"Singapur-Dollar",
"displayName-count-one";
"Singapur-Dollar",
"displayName-count-other";
"Singapur-Dollar",
"symbol";
"SGD",
"symbol-alt-narrow";
"$";
}
"SHP";
{
"displayName";
"St. Helena-Pfund",
"displayName-count-one";
"St. Helena-Pfund",
"displayName-count-other";
"St. Helena-Pfund",
"symbol";
"SHP",
"symbol-alt-narrow";
"£";
}
"SIT";
{
"displayName";
"Slowenischer Tolar",
"displayName-count-one";
"Slowenischer Tolar",
"displayName-count-other";
"Slowenische Tolar",
"symbol";
"SIT";
}
"SKK";
{
"displayName";
"Slowakische Krone",
"displayName-count-one";
"Slowakische Kronen",
"displayName-count-other";
"Slowakische Kronen",
"symbol";
"SKK";
}
"SLL";
{
"displayName";
"Sierra-leonischer Leone",
"displayName-count-one";
"Sierra-leonischer Leone",
"displayName-count-other";
"Sierra-leonische Leones",
"symbol";
"SLL";
}
"SOS";
{
"displayName";
"Somalia-Schilling",
"displayName-count-one";
"Somalia-Schilling",
"displayName-count-other";
"Somalia-Schilling",
"symbol";
"SOS";
}
"SRD";
{
"displayName";
"Suriname-Dollar",
"displayName-count-one";
"Suriname-Dollar",
"displayName-count-other";
"Suriname-Dollar",
"symbol";
"SRD",
"symbol-alt-narrow";
"$";
}
"SRG";
{
"displayName";
"Suriname Gulden",
"displayName-count-one";
"Suriname-Gulden",
"displayName-count-other";
"Suriname-Gulden",
"symbol";
"SRG";
}
"SSP";
{
"displayName";
"Südsudanesisches Pfund",
"displayName-count-one";
"Südsudanesisches Pfund",
"displayName-count-other";
"Südsudanesische Pfund",
"symbol";
"SSP",
"symbol-alt-narrow";
"£";
}
"STD";
{
"displayName";
"São-toméischer Dobra",
"displayName-count-one";
"São-toméischer Dobra",
"displayName-count-other";
"São-toméische Dobra",
"symbol";
"STD",
"symbol-alt-narrow";
"Db";
}
"SUR";
{
"displayName";
"Sowjetischer Rubel",
"displayName-count-one";
"Sowjetische Rubel",
"displayName-count-other";
"Sowjetische Rubel",
"symbol";
"SUR";
}
"SVC";
{
"displayName";
"El Salvador Colon",
"displayName-count-one";
"El Salvador-Colon",
"displayName-count-other";
"El Salvador-Colon",
"symbol";
"SVC";
}
"SYP";
{
"displayName";
"Syrisches Pfund",
"displayName-count-one";
"Syrisches Pfund",
"displayName-count-other";
"Syrische Pfund",
"symbol";
"SYP",
"symbol-alt-narrow";
"SYP";
}
"SZL";
{
"displayName";
"Swasiländischer Lilangeni",
"displayName-count-one";
"Swasiländischer Lilangeni",
"displayName-count-other";
"Swasiländische Emalangeni",
"symbol";
"SZL";
}
"THB";
{
"displayName";
"Thailändischer Baht",
"displayName-count-one";
"Thailändischer Baht",
"displayName-count-other";
"Thailändische Baht",
"symbol";
"฿",
"symbol-alt-narrow";
"฿";
}
"TJR";
{
"displayName";
"Tadschikistan Rubel",
"displayName-count-one";
"Tadschikistan-Rubel",
"displayName-count-other";
"Tadschikistan-Rubel",
"symbol";
"TJR";
}
"TJS";
{
"displayName";
"Tadschikistan-Somoni",
"displayName-count-one";
"Tadschikistan-Somoni",
"displayName-count-other";
"Tadschikistan-Somoni",
"symbol";
"TJS";
}
"TMM";
{
"displayName";
"Turkmenistan-Manat (1993–2009)",
"displayName-count-one";
"Turkmenistan-Manat (1993–2009)",
"displayName-count-other";
"Turkmenistan-Manat (1993–2009)",
"symbol";
"TMM";
}
"TMT";
{
"displayName";
"Turkmenistan-Manat",
"displayName-count-one";
"Turkmenistan-Manat",
"displayName-count-other";
"Turkmenistan-Manat",
"symbol";
"TMT";
}
"TND";
{
"displayName";
"Tunesischer Dinar",
"displayName-count-one";
"Tunesischer Dinar",
"displayName-count-other";
"Tunesische Dinar",
"symbol";
"TND";
}
"TOP";
{
"displayName";
"Tongaischer Paʻanga",
"displayName-count-one";
"Tongaischer Paʻanga",
"displayName-count-other";
"Tongaische Paʻanga",
"symbol";
"TOP",
"symbol-alt-narrow";
"T$";
}
"TPE";
{
"displayName";
"Timor-Escudo",
"displayName-count-one";
"Timor-Escudo",
"displayName-count-other";
"Timor-Escudo",
"symbol";
"TPE";
}
"TRL";
{
"displayName";
"Türkische Lira (1922–2005)",
"displayName-count-one";
"Türkische Lira (1922–2005)",
"displayName-count-other";
"Türkische Lira (1922–2005)",
"symbol";
"TRL";
}
"TRY";
{
"displayName";
"Türkische Lira",
"displayName-count-one";
"Türkische Lira",
"displayName-count-other";
"Türkische Lira",
"symbol";
"TRY",
"symbol-alt-narrow";
"₺",
"symbol-alt-variant";
"TL";
}
"TTD";
{
"displayName";
"Trinidad und Tobago-Dollar",
"displayName-count-one";
"Trinidad und Tobago-Dollar",
"displayName-count-other";
"Trinidad und Tobago-Dollar",
"symbol";
"TTD",
"symbol-alt-narrow";
"$";
}
"TWD";
{
"displayName";
"Neuer Taiwan-Dollar",
"displayName-count-one";
"Neuer Taiwan-Dollar",
"displayName-count-other";
"Neue Taiwan-Dollar",
"symbol";
"NT$",
"symbol-alt-narrow";
"NT$";
}
"TZS";
{
"displayName";
"Tansania-Schilling",
"displayName-count-one";
"Tansania-Schilling",
"displayName-count-other";
"Tansania-Schilling",
"symbol";
"TZS";
}
"UAH";
{
"displayName";
"Ukrainische Hrywnja",
"displayName-count-one";
"Ukrainische Hrywnja",
"displayName-count-other";
"Ukrainische Hrywen",
"symbol";
"UAH",
"symbol-alt-narrow";
"₴";
}
"UAK";
{
"displayName";
"Ukrainischer Karbovanetz",
"displayName-count-one";
"Ukrainische Karbovanetz",
"displayName-count-other";
"Ukrainische Karbovanetz",
"symbol";
"UAK";
}
"UGS";
{
"displayName";
"Uganda-Schilling (1966–1987)",
"displayName-count-one";
"Uganda-Schilling (1966–1987)",
"displayName-count-other";
"Uganda-Schilling (1966–1987)",
"symbol";
"UGS";
}
"UGX";
{
"displayName";
"Uganda-Schilling",
"displayName-count-one";
"Uganda-Schilling",
"displayName-count-other";
"Uganda-Schilling",
"symbol";
"UGX";
}
"USD";
{
"displayName";
"US-Dollar",
"displayName-count-one";
"US-Dollar",
"displayName-count-other";
"US-Dollar",
"symbol";
"$",
"symbol-alt-narrow";
"$";
}
"USN";
{
"displayName";
"US Dollar (Nächster Tag)",
"displayName-count-one";
"US-Dollar (Nächster Tag)",
"displayName-count-other";
"US-Dollar (Nächster Tag)",
"symbol";
"USN";
}
"USS";
{
"displayName";
"US Dollar (Gleicher Tag)",
"displayName-count-one";
"US-Dollar (Gleicher Tag)",
"displayName-count-other";
"US-Dollar (Gleicher Tag)",
"symbol";
"USS";
}
"UYI";
{
"displayName";
"Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-one";
"Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-other";
"Uruguayische Pesos (Indexierte Rechnungseinheiten)",
"symbol";
"UYI";
}
"UYP";
{
"displayName";
"Uruguayischer Peso (1975–1993)",
"displayName-count-one";
"Uruguayischer Peso (1975–1993)",
"displayName-count-other";
"Uruguayische Pesos (1975–1993)",
"symbol";
"UYP";
}
"UYU";
{
"displayName";
"Uruguayischer Peso",
"displayName-count-one";
"Uruguayischer Peso",
"displayName-count-other";
"Uruguayische Pesos",
"symbol";
"UYU",
"symbol-alt-narrow";
"$";
}
"UZS";
{
"displayName";
"Usbekistan-Sum",
"displayName-count-one";
"Usbekistan-Sum",
"displayName-count-other";
"Usbekistan-Sum",
"symbol";
"UZS";
}
"VEB";
{
"displayName";
"Venezolanischer Bolívar (1871–2008)",
"displayName-count-one";
"Venezolanischer Bolívar (1871–2008)",
"displayName-count-other";
"Venezolanische Bolívares (1871–2008)",
"symbol";
"VEB";
}
"VEF";
{
"displayName";
"Venezolanischer Bolívar",
"displayName-count-one";
"Venezolanischer Bolívar",
"displayName-count-other";
"Venezolanische Bolívares",
"symbol";
"VEF",
"symbol-alt-narrow";
"Bs";
}
"VND";
{
"displayName";
"Vietnamesischer Dong",
"displayName-count-one";
"Vietnamesischer Dong",
"displayName-count-other";
"Vietnamesische Dong",
"symbol";
"₫",
"symbol-alt-narrow";
"₫";
}
"VNN";
{
"displayName";
"Vietnamesischer Dong(1978–1985)",
"displayName-count-one";
"Vietnamesischer Dong(1978–1985)",
"displayName-count-other";
"Vietnamesische Dong(1978–1985)",
"symbol";
"VNN";
}
"VUV";
{
"displayName";
"Vanuatu-Vatu",
"displayName-count-one";
"Vanuatu-Vatu",
"displayName-count-other";
"Vanuatu-Vatu",
"symbol";
"VUV";
}
"WST";
{
"displayName";
"Samoanischer Tala",
"displayName-count-one";
"Samoanischer Tala",
"displayName-count-other";
"Samoanische Tala",
"symbol";
"WST";
}
"XAF";
{
"displayName";
"CFA-Franc (BEAC)",
"displayName-count-one";
"CFA-Franc (BEAC)",
"displayName-count-other";
"CFA-Franc (BEAC)",
"symbol";
"FCFA";
}
"XAG";
{
"displayName";
"Unze Silber",
"displayName-count-one";
"Unze Silber",
"displayName-count-other";
"Unzen Silber",
"symbol";
"XAG";
}
"XAU";
{
"displayName";
"Unze Gold",
"displayName-count-one";
"Unze Gold",
"displayName-count-other";
"Unzen Gold",
"symbol";
"XAU";
}
"XBA";
{
"displayName";
"Europäische Rechnungseinheit",
"displayName-count-one";
"Europäische Rechnungseinheiten",
"displayName-count-other";
"Europäische Rechnungseinheiten",
"symbol";
"XBA";
}
"XBB";
{
"displayName";
"Europäische Währungseinheit (XBB)",
"displayName-count-one";
"Europäische Währungseinheiten (XBB)",
"displayName-count-other";
"Europäische Währungseinheiten (XBB)",
"symbol";
"XBB";
}
"XBC";
{
"displayName";
"Europäische Rechnungseinheit (XBC)",
"displayName-count-one";
"Europäische Rechnungseinheiten (XBC)",
"displayName-count-other";
"Europäische Rechnungseinheiten (XBC)",
"symbol";
"XBC";
}
"XBD";
{
"displayName";
"Europäische Rechnungseinheit (XBD)",
"displayName-count-one";
"Europäische Rechnungseinheiten (XBD)",
"displayName-count-other";
"Europäische Rechnungseinheiten (XBD)",
"symbol";
"XBD";
}
"XCD";
{
"displayName";
"Ostkaribischer Dollar",
"displayName-count-one";
"Ostkaribischer Dollar",
"displayName-count-other";
"Ostkaribische Dollar",
"symbol";
"EC$",
"symbol-alt-narrow";
"$";
}
"XDR";
{
"displayName";
"Sonderziehungsrechte",
"displayName-count-one";
"Sonderziehungsrechte",
"displayName-count-other";
"Sonderziehungsrechte",
"symbol";
"XDR";
}
"XEU";
{
"displayName";
"Europäische Währungseinheit (XEU)",
"displayName-count-one";
"Europäische Währungseinheiten (XEU)",
"displayName-count-other";
"Europäische Währungseinheiten (XEU)",
"symbol";
"XEU";
}
"XFO";
{
"displayName";
"Französischer Gold-Franc",
"displayName-count-one";
"Französische Gold-Franc",
"displayName-count-other";
"Französische Gold-Franc",
"symbol";
"XFO";
}
"XFU";
{
"displayName";
"Französischer UIC-Franc",
"displayName-count-one";
"Französische UIC-Franc",
"displayName-count-other";
"Französische UIC-Franc",
"symbol";
"XFU";
}
"XOF";
{
"displayName";
"CFA-Franc (BCEAO)",
"displayName-count-one";
"CFA-Franc (BCEAO)",
"displayName-count-other";
"CFA-Francs (BCEAO)",
"symbol";
"CFA";
}
"XPD";
{
"displayName";
"Unze Palladium",
"displayName-count-one";
"Unze Palladium",
"displayName-count-other";
"Unzen Palladium",
"symbol";
"XPD";
}
"XPF";
{
"displayName";
"CFP-Franc",
"displayName-count-one";
"CFP-Franc",
"displayName-count-other";
"CFP-Franc",
"symbol";
"CFPF";
}
"XPT";
{
"displayName";
"Unze Platin",
"displayName-count-one";
"Unze Platin",
"displayName-count-other";
"Unzen Platin",
"symbol";
"XPT";
}
"XRE";
{
"displayName";
"RINET Funds",
"displayName-count-one";
"RINET Funds",
"displayName-count-other";
"RINET Funds",
"symbol";
"XRE";
}
"XSU";
{
"displayName";
"SUCRE",
"displayName-count-one";
"SUCRE",
"displayName-count-other";
"SUCRE",
"symbol";
"XSU";
}
"XTS";
{
"displayName";
"Testwährung",
"displayName-count-one";
"Testwährung",
"displayName-count-other";
"Testwährung",
"symbol";
"XTS";
}
"XUA";
{
"displayName";
"Rechnungseinheit der AfEB",
"displayName-count-one";
"Rechnungseinheit der AfEB",
"displayName-count-other";
"Rechnungseinheiten der AfEB",
"symbol";
"XUA";
}
"XXX";
{
"displayName";
"Unbekannte Währung",
"displayName-count-one";
"(unbekannte Währung)",
"displayName-count-other";
"(unbekannte Währung)",
"symbol";
"XXX";
}
"YDD";
{
"displayName";
"Jemen-Dinar",
"displayName-count-one";
"Jemen-Dinar",
"displayName-count-other";
"Jemen-Dinar",
"symbol";
"YDD";
}
"YER";
{
"displayName";
"Jemen-Rial",
"displayName-count-one";
"Jemen-Rial",
"displayName-count-other";
"Jemen-Rial",
"symbol";
"YER";
}
"YUD";
{
"displayName";
"Jugoslawischer Dinar (1966–1990)",
"displayName-count-one";
"Jugoslawischer Dinar (1966–1990)",
"displayName-count-other";
"Jugoslawische Dinar (1966–1990)",
"symbol";
"YUD";
}
"YUM";
{
"displayName";
"Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-one";
"Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-other";
"Jugoslawische Neue Dinar (1994–2002)",
"symbol";
"YUM";
}
"YUN";
{
"displayName";
"Jugoslawischer Dinar (konvertibel)",
"displayName-count-one";
"Jugoslawische Dinar (konvertibel)",
"displayName-count-other";
"Jugoslawische Dinar (konvertibel)",
"symbol";
"YUN";
}
"YUR";
{
"displayName";
"Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-one";
"Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-other";
"Jugoslawische reformierte Dinar (1992–1993)",
"symbol";
"YUR";
}
"ZAL";
{
"displayName";
"Südafrikanischer Rand (Finanz)",
"displayName-count-one";
"Südafrikanischer Rand (Finanz)",
"displayName-count-other";
"Südafrikanischer Rand (Finanz)",
"symbol";
"ZAL";
}
"ZAR";
{
"displayName";
"Südafrikanischer Rand",
"displayName-count-one";
"Südafrikanischer Rand",
"displayName-count-other";
"Südafrikanische Rand",
"symbol";
"ZAR",
"symbol-alt-narrow";
"R";
}
"ZMK";
{
"displayName";
"Kwacha (1968–2012)",
"displayName-count-one";
"Kwacha (1968–2012)",
"displayName-count-other";
"Kwacha (1968–2012)",
"symbol";
"ZMK";
}
"ZMW";
{
"displayName";
"Kwacha",
"displayName-count-one";
"Kwacha",
"displayName-count-other";
"Kwacha",
"symbol";
"ZMW",
"symbol-alt-narrow";
"K";
}
"ZRN";
{
"displayName";
"Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-one";
"Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-other";
"Zaire-Neue Zaïre (1993–1998)",
"symbol";
"ZRN";
}
"ZRZ";
{
"displayName";
"Zaire-Zaïre (1971–1993)",
"displayName-count-one";
"Zaire-Zaïre (1971–1993)",
"displayName-count-other";
"Zaire-Zaïre (1971–1993)",
"symbol";
"ZRZ";
}
"ZWD";
{
"displayName";
"Simbabwe-Dollar (1980–2008)",
"displayName-count-one";
"Simbabwe-Dollar (1980–2008)",
"displayName-count-other";
"Simbabwe-Dollar (1980–2008)",
"symbol";
"ZWD";
}
"ZWL";
{
"displayName";
"Simbabwe-Dollar (2009)",
"displayName-count-one";
"Simbabwe-Dollar (2009)",
"displayName-count-other";
"Simbabwe-Dollar (2009)",
"symbol";
"ZWL";
}
"ZWR";
{
"displayName";
"Simbabwe-Dollar (2008)",
"displayName-count-one";
"Simbabwe-Dollar (2008)",
"displayName-count-other";
"Simbabwe-Dollar (2008)",
"symbol";
"ZWR";
}
}
}
}
}
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent } from '@syncfusion/ej2-react-calendars';
import { loadCldr, L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'de': {
'calendar': { today: 'heute' }
}
});
class App extends React.Component {
render() {
return <CalendarComponent id="calendar" locale='de'/>;
}
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent} from '@syncfusion/ej2-react-calendars';
import { loadCldr,L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'de': {
'calendar': { today: 'heute' }
}
});
class App extends React.Component<{}, {}> {
render() {
return <CalendarComponent id="calendar" locale='de' />
}
};
ReactDOM.render(<App />, document.getElementById('element'));
{
"supplemental": {
"version": {
"_number": "$Revision: 12732 $",
"_unicodeVersion": "9.0.0",
"_cldrVersion": "31"
},
"numberingSystems": {
"adlm": {
"_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type": "numeric"
},
"ahom": {
"_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type": "numeric"
},
"arab": {
"_digits": "٠١٢٣٤٥٦٧٨٩",
"_type": "numeric"
},
"arabext": {
"_digits": "۰۱۲۳۴۵۶۷۸۹",
"_type": "numeric"
},
"armn": {
"_rules": "armenian-upper",
"_type": "algorithmic"
},
"armnlow": {
"_rules": "armenian-lower",
"_type": "algorithmic"
},
"bali": {
"_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type": "numeric"
},
"beng": {
"_digits": "০১২৩৪৫৬৭৮৯",
"_type": "numeric"
},
"bhks": {
"_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type": "numeric"
},
"brah": {
"_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type": "numeric"
},
"cakm": {
"_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type": "numeric"
},
"cham": {
"_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type": "numeric"
},
"cyrl": {
"_rules": "cyrillic-lower",
"_type": "algorithmic"
},
"deva": {
"_digits": "०१२३४५६७८९",
"_type": "numeric"
},
"ethi": {
"_rules": "ethiopic",
"_type": "algorithmic"
},
"fullwide": {
"_digits": "0123456789",
"_type": "numeric"
},
"geor": {
"_rules": "georgian",
"_type": "algorithmic"
},
"grek": {
"_rules": "greek-upper",
"_type": "algorithmic"
},
"greklow": {
"_rules": "greek-lower",
"_type": "algorithmic"
},
"gujr": {
"_digits": "૦૧૨૩૪૫૬૭૮૯",
"_type": "numeric"
},
"guru": {
"_digits": "੦੧੨੩੪੫੬੭੮੯",
"_type": "numeric"
},
"hanidays": {
"_rules": "zh/SpelloutRules/spellout-numbering-days",
"_type": "algorithmic"
},
"hanidec": {
"_digits": "〇一二三四五六七八九",
"_type": "numeric"
},
"hans": {
"_rules": "zh/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hansfin": {
"_rules": "zh/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hant": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hantfin": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hebr": {
"_rules": "hebrew",
"_type": "algorithmic"
},
"hmng": {
"_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type": "numeric"
},
"java": {
"_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type": "numeric"
},
"jpan": {
"_rules": "ja/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"jpanfin": {
"_rules": "ja/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"kali": {
"_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type": "numeric"
},
"khmr": {
"_digits": "០១២៣៤៥៦៧៨៩",
"_type": "numeric"
},
"knda": {
"_digits": "೦೧೨೩೪೫೬೭೮೯",
"_type": "numeric"
},
"lana": {
"_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type": "numeric"
},
"lanatham": {
"_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type": "numeric"
},
"laoo": {
"_digits": "໐໑໒໓໔໕໖໗໘໙",
"_type": "numeric"
},
"latn": {
"_digits": "0123456789",
"_type": "numeric"
},
"lepc": {
"_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type": "numeric"
},
"limb": {
"_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type": "numeric"
},
"mathbold": {
"_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type": "numeric"
},
"mathdbl": {
"_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type": "numeric"
},
"mathmono": {
"_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type": "numeric"
},
"mathsanb": {
"_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type": "numeric"
},
"mathsans": {
"_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type": "numeric"
},
"mlym": {
"_digits": "൦൧൨൩൪൫൬൭൮൯",
"_type": "numeric"
},
"modi": {
"_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type": "numeric"
},
"mong": {
"_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type": "numeric"
},
"mroo": {
"_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type": "numeric"
},
"mtei": {
"_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type": "numeric"
},
"mymr": {
"_digits": "၀၁၂၃၄၅၆၇၈၉",
"_type": "numeric"
},
"mymrshan": {
"_digits": "႐႑႒႓႔႕႖႗႘႙",
"_type": "numeric"
},
"mymrtlng": {
"_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type": "numeric"
},
"newa": {
"_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type": "numeric"
},
"nkoo": {
"_digits": "߀߁߂߃߄߅߆߇߈߉",
"_type": "numeric"
},
"olck": {
"_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type": "numeric"
},
"orya": {
"_digits": "୦୧୨୩୪୫୬୭୮୯",
"_type": "numeric"
},
"osma": {
"_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type": "numeric"
},
"roman": {
"_rules": "roman-upper",
"_type": "algorithmic"
},
"romanlow": {
"_rules": "roman-lower",
"_type": "algorithmic"
},
"saur": {
"_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type": "numeric"
},
"shrd": {
"_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type": "numeric"
},
"sind": {
"_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type": "numeric"
},
"sinh": {
"_digits": "෦෧෨෩෪෫෬෭෮෯",
"_type": "numeric"
},
"sora": {
"_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type": "numeric"
},
"sund": {
"_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type": "numeric"
},
"takr": {
"_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type": "numeric"
},
"talu": {
"_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type": "numeric"
},
"taml": {
"_rules": "tamil",
"_type": "algorithmic"
},
"tamldec": {
"_digits": "௦௧௨௩௪௫௬௭௮௯",
"_type": "numeric"
},
"telu": {
"_digits": "౦౧౨౩౪౫౬౭౮౯",
"_type": "numeric"
},
"thai": {
"_digits": "๐๑๒๓๔๕๖๗๘๙",
"_type": "numeric"
},
"tibt": {
"_digits": "༠༡༢༣༤༥༦༧༨༩",
"_type": "numeric"
},
"tirh": {
"_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type": "numeric"
},
"vaii": {
"_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type": "numeric"
},
"wara": {
"_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type": "numeric"
}
}
}
}
{
"supplemental";
{
"version";
{
"_number";
"$Revision: 12732 $",
"_unicodeVersion";
"9.0.0",
"_cldrVersion";
"31";
}
"numberingSystems";
{
"adlm";
{
"_digits";
"𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type";
"numeric";
}
"ahom";
{
"_digits";
"𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type";
"numeric";
}
"arab";
{
"_digits";
"٠١٢٣٤٥٦٧٨٩",
"_type";
"numeric";
}
"arabext";
{
"_digits";
"۰۱۲۳۴۵۶۷۸۹",
"_type";
"numeric";
}
"armn";
{
"_rules";
"armenian-upper",
"_type";
"algorithmic";
}
"armnlow";
{
"_rules";
"armenian-lower",
"_type";
"algorithmic";
}
"bali";
{
"_digits";
"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type";
"numeric";
}
"beng";
{
"_digits";
"০১২৩৪৫৬৭৮৯",
"_type";
"numeric";
}
"bhks";
{
"_digits";
"𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type";
"numeric";
}
"brah";
{
"_digits";
"𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type";
"numeric";
}
"cakm";
{
"_digits";
"𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type";
"numeric";
}
"cham";
{
"_digits";
"꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type";
"numeric";
}
"cyrl";
{
"_rules";
"cyrillic-lower",
"_type";
"algorithmic";
}
"deva";
{
"_digits";
"०१२३४५६७८९",
"_type";
"numeric";
}
"ethi";
{
"_rules";
"ethiopic",
"_type";
"algorithmic";
}
"fullwide";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"geor";
{
"_rules";
"georgian",
"_type";
"algorithmic";
}
"grek";
{
"_rules";
"greek-upper",
"_type";
"algorithmic";
}
"greklow";
{
"_rules";
"greek-lower",
"_type";
"algorithmic";
}
"gujr";
{
"_digits";
"૦૧૨૩૪૫૬૭૮૯",
"_type";
"numeric";
}
"guru";
{
"_digits";
"੦੧੨੩੪੫੬੭੮੯",
"_type";
"numeric";
}
"hanidays";
{
"_rules";
"zh/SpelloutRules/spellout-numbering-days",
"_type";
"algorithmic";
}
"hanidec";
{
"_digits";
"〇一二三四五六七八九",
"_type";
"numeric";
}
"hans";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hansfin";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hant";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hantfin";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hebr";
{
"_rules";
"hebrew",
"_type";
"algorithmic";
}
"hmng";
{
"_digits";
"𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type";
"numeric";
}
"java";
{
"_digits";
"꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type";
"numeric";
}
"jpan";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"jpanfin";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"kali";
{
"_digits";
"꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type";
"numeric";
}
"khmr";
{
"_digits";
"០១២៣៤៥៦៧៨៩",
"_type";
"numeric";
}
"knda";
{
"_digits";
"೦೧೨೩೪೫೬೭೮೯",
"_type";
"numeric";
}
"lana";
{
"_digits";
"᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type";
"numeric";
}
"lanatham";
{
"_digits";
"᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type";
"numeric";
}
"laoo";
{
"_digits";
"໐໑໒໓໔໕໖໗໘໙",
"_type";
"numeric";
}
"latn";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"lepc";
{
"_digits";
"᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type";
"numeric";
}
"limb";
{
"_digits";
"᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type";
"numeric";
}
"mathbold";
{
"_digits";
"𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type";
"numeric";
}
"mathdbl";
{
"_digits";
"𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type";
"numeric";
}
"mathmono";
{
"_digits";
"𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type";
"numeric";
}
"mathsanb";
{
"_digits";
"𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type";
"numeric";
}
"mathsans";
{
"_digits";
"𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type";
"numeric";
}
"mlym";
{
"_digits";
"൦൧൨൩൪൫൬൭൮൯",
"_type";
"numeric";
}
"modi";
{
"_digits";
"𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type";
"numeric";
}
"mong";
{
"_digits";
"᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type";
"numeric";
}
"mroo";
{
"_digits";
"𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type";
"numeric";
}
"mtei";
{
"_digits";
"꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type";
"numeric";
}
"mymr";
{
"_digits";
"၀၁၂၃၄၅၆၇၈၉",
"_type";
"numeric";
}
"mymrshan";
{
"_digits";
"႐႑႒႓႔႕႖႗႘႙",
"_type";
"numeric";
}
"mymrtlng";
{
"_digits";
"꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type";
"numeric";
}
"newa";
{
"_digits";
"𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type";
"numeric";
}
"nkoo";
{
"_digits";
"߀߁߂߃߄߅߆߇߈߉",
"_type";
"numeric";
}
"olck";
{
"_digits";
"᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type";
"numeric";
}
"orya";
{
"_digits";
"୦୧୨୩୪୫୬୭୮୯",
"_type";
"numeric";
}
"osma";
{
"_digits";
"𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type";
"numeric";
}
"roman";
{
"_rules";
"roman-upper",
"_type";
"algorithmic";
}
"romanlow";
{
"_rules";
"roman-lower",
"_type";
"algorithmic";
}
"saur";
{
"_digits";
"꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type";
"numeric";
}
"shrd";
{
"_digits";
"𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type";
"numeric";
}
"sind";
{
"_digits";
"𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type";
"numeric";
}
"sinh";
{
"_digits";
"෦෧෨෩෪෫෬෭෮෯",
"_type";
"numeric";
}
"sora";
{
"_digits";
"𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type";
"numeric";
}
"sund";
{
"_digits";
"᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type";
"numeric";
}
"takr";
{
"_digits";
"𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type";
"numeric";
}
"talu";
{
"_digits";
"᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type";
"numeric";
}
"taml";
{
"_rules";
"tamil",
"_type";
"algorithmic";
}
"tamldec";
{
"_digits";
"௦௧௨௩௪௫௬௭௮௯",
"_type";
"numeric";
}
"telu";
{
"_digits";
"౦౧౨౩౪౫౬౭౮౯",
"_type";
"numeric";
}
"thai";
{
"_digits";
"๐๑๒๓๔๕๖๗๘๙",
"_type";
"numeric";
}
"tibt";
{
"_digits";
"༠༡༢༣༤༥༦༧༨༩",
"_type";
"numeric";
}
"tirh";
{
"_digits";
"𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type";
"numeric";
}
"vaii";
{
"_digits";
"꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type";
"numeric";
}
"wara";
{
"_digits";
"𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type";
"numeric";
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 13259 $",
"_cldrVersion": "31"
},
"language": "de"
},
"numbers": {
"defaultNumberingSystem": "latn",
"otherNumberingSystems": {
"native": "latn"
},
"minimumGroupingDigits": "1",
"symbols-numberSystem-latn": {
"decimal": ",",
"group": ".",
"list": ";",
"percentSign": "%",
"plusSign": "+",
"minusSign": "-",
"exponential": "E",
"superscriptingExponent": "·",
"perMille": "‰",
"infinity": "∞",
"nan": "NaN",
"timeSeparator": ":"
},
"decimalFormats-numberSystem-latn": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-one": "0 Tausend",
"1000-count-other": "0 Tausend",
"10000-count-one": "00 Tausend",
"10000-count-other": "00 Tausend",
"100000-count-one": "000 Tausend",
"100000-count-other": "000 Tausend",
"1000000-count-one": "0 Million",
"1000000-count-other": "0 Millionen",
"10000000-count-one": "00 Millionen",
"10000000-count-other": "00 Millionen",
"100000000-count-one": "000 Millionen",
"100000000-count-other": "000 Millionen",
"1000000000-count-one": "0 Milliarde",
"1000000000-count-other": "0 Milliarden",
"10000000000-count-one": "00 Milliarden",
"10000000000-count-other": "00 Milliarden",
"100000000000-count-one": "000 Milliarden",
"100000000000-count-other": "000 Milliarden",
"1000000000000-count-one": "0 Billion",
"1000000000000-count-other": "0 Billionen",
"10000000000000-count-one": "00 Billionen",
"10000000000000-count-other": "00 Billionen",
"100000000000000-count-one": "000 Billionen",
"100000000000000-count-other": "000 Billionen"
}
},
"short": {
"decimalFormat": {
"1000-count-one": "0",
"1000-count-other": "0",
"10000-count-one": "0",
"10000-count-other": "0",
"100000-count-one": "0",
"100000-count-other": "0",
"1000000-count-one": "0 Mio'.'",
"1000000-count-other": "0 Mio'.'",
"10000000-count-one": "00 Mio'.'",
"10000000-count-other": "00 Mio'.'",
"100000000-count-one": "000 Mio'.'",
"100000000-count-other": "000 Mio'.'",
"1000000000-count-one": "0 Mrd'.'",
"1000000000-count-other": "0 Mrd'.'",
"10000000000-count-one": "00 Mrd'.'",
"10000000000-count-other": "00 Mrd'.'",
"100000000000-count-one": "000 Mrd'.'",
"100000000000-count-other": "000 Mrd'.'",
"1000000000000-count-one": "0 Bio'.'",
"1000000000000-count-other": "0 Bio'.'",
"10000000000000-count-one": "00 Bio'.'",
"10000000000000-count-other": "00 Bio'.'",
"100000000000000-count-one": "000 Bio'.'",
"100000000000000-count-other": "000 Bio'.'"
}
}
},
"scientificFormats-numberSystem-latn": {
"standard": "#E0"
},
"percentFormats-numberSystem-latn": {
"standard": "#,##0 %"
},
"currencyFormats-numberSystem-latn": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "#,##0.00 ¤",
"accounting": "#,##0.00 ¤",
"short": {
"standard": {
"1000-count-one": "0 Tsd'.' ¤",
"1000-count-other": "0 Tsd'.' ¤",
"10000-count-one": "00 Tsd'.' ¤",
"10000-count-other": "00 Tsd'.' ¤",
"100000-count-one": "000 Tsd'.' ¤",
"100000-count-other": "000 Tsd'.' ¤",
"1000000-count-one": "0 Mio'.' ¤",
"1000000-count-other": "0 Mio'.' ¤",
"10000000-count-one": "00 Mio'.' ¤",
"10000000-count-other": "00 Mio'.' ¤",
"100000000-count-one": "000 Mio'.' ¤",
"100000000-count-other": "000 Mio'.' ¤",
"1000000000-count-one": "0 Mrd'.' ¤",
"1000000000-count-other": "0 Mrd'.' ¤",
"10000000000-count-one": "00 Mrd'.' ¤",
"10000000000-count-other": "00 Mrd'.' ¤",
"100000000000-count-one": "000 Mrd'.' ¤",
"100000000000-count-other": "000 Mrd'.' ¤",
"1000000000000-count-one": "0 Bio'.' ¤",
"1000000000000-count-other": "0 Bio'.' ¤",
"10000000000000-count-one": "00 Bio'.' ¤",
"10000000000000-count-other": "00 Bio'.' ¤",
"100000000000000-count-one": "000 Bio'.' ¤",
"100000000000000-count-other": "000 Bio'.' ¤"
}
},
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"miscPatterns-numberSystem-latn": {
"atLeast": "{0}+",
"range": "{0}–{1}"
},
"minimalPairs": {
"pluralMinimalPairs": "{0} Tag",
"pluralMinimalPairs": "{0} Tage",
"other": "{0}. Abzweigung nach rechts nehmen"
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 13259 $",
"_cldrVersion";
"31";
}
"language";
"de";
}
"numbers";
{
"defaultNumberingSystem";
"latn",
"otherNumberingSystems";
{
"native";
"latn";
}
"minimumGroupingDigits";
"1",
"symbols-numberSystem-latn";
{
"decimal";
",",
"group";
".",
"list";
";",
"percentSign";
"%",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"E",
"superscriptingExponent";
"·",
"perMille";
"‰",
"infinity";
"∞",
"nan";
"NaN",
"timeSeparator";
":";
}
"decimalFormats-numberSystem-latn";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-one";
"0 Tausend",
"1000-count-other";
"0 Tausend",
"10000-count-one";
"00 Tausend",
"10000-count-other";
"00 Tausend",
"100000-count-one";
"000 Tausend",
"100000-count-other";
"000 Tausend",
"1000000-count-one";
"0 Million",
"1000000-count-other";
"0 Millionen",
"10000000-count-one";
"00 Millionen",
"10000000-count-other";
"00 Millionen",
"100000000-count-one";
"000 Millionen",
"100000000-count-other";
"000 Millionen",
"1000000000-count-one";
"0 Milliarde",
"1000000000-count-other";
"0 Milliarden",
"10000000000-count-one";
"00 Milliarden",
"10000000000-count-other";
"00 Milliarden",
"100000000000-count-one";
"000 Milliarden",
"100000000000-count-other";
"000 Milliarden",
"1000000000000-count-one";
"0 Billion",
"1000000000000-count-other";
"0 Billionen",
"10000000000000-count-one";
"00 Billionen",
"10000000000000-count-other";
"00 Billionen",
"100000000000000-count-one";
"000 Billionen",
"100000000000000-count-other";
"000 Billionen";
}
}
"short";
{
"decimalFormat";
{
"1000-count-one";
"0",
"1000-count-other";
"0",
"10000-count-one";
"0",
"10000-count-other";
"0",
"100000-count-one";
"0",
"100000-count-other";
"0",
"1000000-count-one";
"0 Mio'.'",
"1000000-count-other";
"0 Mio'.'",
"10000000-count-one";
"00 Mio'.'",
"10000000-count-other";
"00 Mio'.'",
"100000000-count-one";
"000 Mio'.'",
"100000000-count-other";
"000 Mio'.'",
"1000000000-count-one";
"0 Mrd'.'",
"1000000000-count-other";
"0 Mrd'.'",
"10000000000-count-one";
"00 Mrd'.'",
"10000000000-count-other";
"00 Mrd'.'",
"100000000000-count-one";
"000 Mrd'.'",
"100000000000-count-other";
"000 Mrd'.'",
"1000000000000-count-one";
"0 Bio'.'",
"1000000000000-count-other";
"0 Bio'.'",
"10000000000000-count-one";
"00 Bio'.'",
"10000000000000-count-other";
"00 Bio'.'",
"100000000000000-count-one";
"000 Bio'.'",
"100000000000000-count-other";
"000 Bio'.'";
}
}
}
"scientificFormats-numberSystem-latn";
{
"standard";
"#E0";
}
"percentFormats-numberSystem-latn";
{
"standard";
"#,##0 %";
}
"currencyFormats-numberSystem-latn";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"#,##0.00 ¤",
"accounting";
"#,##0.00 ¤",
"short";
{
"standard";
{
"1000-count-one";
"0 Tsd'.' ¤",
"1000-count-other";
"0 Tsd'.' ¤",
"10000-count-one";
"00 Tsd'.' ¤",
"10000-count-other";
"00 Tsd'.' ¤",
"100000-count-one";
"000 Tsd'.' ¤",
"100000-count-other";
"000 Tsd'.' ¤",
"1000000-count-one";
"0 Mio'.' ¤",
"1000000-count-other";
"0 Mio'.' ¤",
"10000000-count-one";
"00 Mio'.' ¤",
"10000000-count-other";
"00 Mio'.' ¤",
"100000000-count-one";
"000 Mio'.' ¤",
"100000000-count-other";
"000 Mio'.' ¤",
"1000000000-count-one";
"0 Mrd'.' ¤",
"1000000000-count-other";
"0 Mrd'.' ¤",
"10000000000-count-one";
"00 Mrd'.' ¤",
"10000000000-count-other";
"00 Mrd'.' ¤",
"100000000000-count-one";
"000 Mrd'.' ¤",
"100000000000-count-other";
"000 Mrd'.' ¤",
"1000000000000-count-one";
"0 Bio'.' ¤",
"1000000000000-count-other";
"0 Bio'.' ¤",
"10000000000000-count-one";
"00 Bio'.' ¤",
"10000000000000-count-other";
"00 Bio'.' ¤",
"100000000000000-count-one";
"000 Bio'.' ¤",
"100000000000000-count-other";
"000 Bio'.' ¤";
}
}
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"miscPatterns-numberSystem-latn";
{
"atLeast";
"{0}+",
"range";
"{0}–{1}";
}
"minimalPairs";
{
"pluralMinimalPairs";
"{0} Tag",
"pluralMinimalPairs";
"{0} Tage",
"other";
"{0}. Abzweigung nach rechts nehmen";
}
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "de"
},
"dates": {
"timeZoneNames": {
"hourFormat": "+HH:mm;-HH:mm",
"gmtFormat": "GMT{0}",
"gmtZeroFormat": "GMT",
"regionFormat": "{0} Zeit",
"regionFormat-type-daylight": "{0} Sommerzeit",
"regionFormat-type-standard": "{0} Normalzeit",
"fallbackFormat": "{1} ({0})",
"zone": {
"America": {
"Adak": {
"exemplarCity": "Adak"
},
"Anchorage": {
"exemplarCity": "Anchorage"
},
"Anguilla": {
"exemplarCity": "Anguilla"
},
"Antigua": {
"exemplarCity": "Antigua"
},
"Araguaina": {
"exemplarCity": "Araguaina"
},
"Argentina": {
"Rio_Gallegos": {
"exemplarCity": "Rio Gallegos"
},
"San_Juan": {
"exemplarCity": "San Juan"
},
"Ushuaia": {
"exemplarCity": "Ushuaia"
},
"La_Rioja": {
"exemplarCity": "La Rioja"
},
"San_Luis": {
"exemplarCity": "San Luis"
},
"Salta": {
"exemplarCity": "Salta"
},
"Tucuman": {
"exemplarCity": "Tucuman"
}
},
"Aruba": {
"exemplarCity": "Aruba"
},
"Asuncion": {
"exemplarCity": "Asunción"
},
"Bahia": {
"exemplarCity": "Bahia"
},
"Bahia_Banderas": {
"exemplarCity": "Bahia Banderas"
},
"Barbados": {
"exemplarCity": "Barbados"
},
"Belem": {
"exemplarCity": "Belem"
},
"Belize": {
"exemplarCity": "Belize"
},
"Blanc-Sablon": {
"exemplarCity": "Blanc-Sablon"
},
"Boa_Vista": {
"exemplarCity": "Boa Vista"
},
"Bogota": {
"exemplarCity": "Bogotá"
},
"Boise": {
"exemplarCity": "Boise"
},
"Buenos_Aires": {
"exemplarCity": "Buenos Aires"
},
"Cambridge_Bay": {
"exemplarCity": "Cambridge Bay"
},
"Campo_Grande": {
"exemplarCity": "Campo Grande"
},
"Cancun": {
"exemplarCity": "Cancún"
},
"Caracas": {
"exemplarCity": "Caracas"
},
"Catamarca": {
"exemplarCity": "Catamarca"
},
"Cayenne": {
"exemplarCity": "Cayenne"
},
"Cayman": {
"exemplarCity": "Kaimaninseln"
},
"Chicago": {
"exemplarCity": "Chicago"
},
"Chihuahua": {
"exemplarCity": "Chihuahua"
},
"Coral_Harbour": {
"exemplarCity": "Atikokan"
},
"Cordoba": {
"exemplarCity": "Córdoba"
},
"Costa_Rica": {
"exemplarCity": "Costa Rica"
},
"Creston": {
"exemplarCity": "Creston"
},
"Cuiaba": {
"exemplarCity": "Cuiaba"
},
"Curacao": {
"exemplarCity": "Curaçao"
},
"Danmarkshavn": {
"exemplarCity": "Danmarkshavn"
},
"Dawson": {
"exemplarCity": "Dawson"
},
"Dawson_Creek": {
"exemplarCity": "Dawson Creek"
},
"Denver": {
"exemplarCity": "Denver"
},
"Detroit": {
"exemplarCity": "Detroit"
},
"Dominica": {
"exemplarCity": "Dominica"
},
"Edmonton": {
"exemplarCity": "Edmonton"
},
"Eirunepe": {
"exemplarCity": "Eirunepe"
},
"El_Salvador": {
"exemplarCity": "El Salvador"
},
"Fort_Nelson": {
"exemplarCity": "Fort Nelson"
},
"Fortaleza": {
"exemplarCity": "Fortaleza"
},
"Glace_Bay": {
"exemplarCity": "Glace Bay"
},
"Godthab": {
"exemplarCity": "Nuuk"
},
"Goose_Bay": {
"exemplarCity": "Goose Bay"
},
"Grand_Turk": {
"exemplarCity": "Grand Turk"
},
"Grenada": {
"exemplarCity": "Grenada"
},
"Guadeloupe": {
"exemplarCity": "Guadeloupe"
},
"Guatemala": {
"exemplarCity": "Guatemala"
},
"Guayaquil": {
"exemplarCity": "Guayaquil"
},
"Guyana": {
"exemplarCity": "Guyana"
},
"Halifax": {
"exemplarCity": "Halifax"
},
"Havana": {
"exemplarCity": "Havanna"
},
"Hermosillo": {
"exemplarCity": "Hermosillo"
},
"Indiana": {
"Vincennes": {
"exemplarCity": "Vincennes, Indiana"
},
"Petersburg": {
"exemplarCity": "Petersburg, Indiana"
},
"Tell_City": {
"exemplarCity": "Tell City, Indiana"
},
"Knox": {
"exemplarCity": "Knox, Indiana"
},
"Winamac": {
"exemplarCity": "Winamac, Indiana"
},
"Marengo": {
"exemplarCity": "Marengo, Indiana"
},
"Vevay": {
"exemplarCity": "Vevay, Indiana"
}
},
"Indianapolis": {
"exemplarCity": "Indianapolis"
},
"Inuvik": {
"exemplarCity": "Inuvik"
},
"Iqaluit": {
"exemplarCity": "Iqaluit"
},
"Jamaica": {
"exemplarCity": "Jamaika"
},
"Jujuy": {
"exemplarCity": "Jujuy"
},
"Juneau": {
"exemplarCity": "Juneau"
},
"Kentucky": {
"Monticello": {
"exemplarCity": "Monticello, Kentucky"
}
},
"Kralendijk": {
"exemplarCity": "Kralendijk"
},
"La_Paz": {
"exemplarCity": "La Paz"
},
"Lima": {
"exemplarCity": "Lima"
},
"Los_Angeles": {
"exemplarCity": "Los Angeles"
},
"Louisville": {
"exemplarCity": "Louisville"
},
"Lower_Princes": {
"exemplarCity": "Lower Prince’s Quarter"
},
"Maceio": {
"exemplarCity": "Maceio"
},
"Managua": {
"exemplarCity": "Managua"
},
"Manaus": {
"exemplarCity": "Manaus"
},
"Marigot": {
"exemplarCity": "Marigot"
},
"Martinique": {
"exemplarCity": "Martinique"
},
"Matamoros": {
"exemplarCity": "Matamoros"
},
"Mazatlan": {
"exemplarCity": "Mazatlan"
},
"Mendoza": {
"exemplarCity": "Mendoza"
},
"Menominee": {
"exemplarCity": "Menominee"
},
"Merida": {
"exemplarCity": "Merida"
},
"Metlakatla": {
"exemplarCity": "Metlakatla"
},
"Mexico_City": {
"exemplarCity": "Mexiko-Stadt"
},
"Miquelon": {
"exemplarCity": "Miquelon"
},
"Moncton": {
"exemplarCity": "Moncton"
},
"Monterrey": {
"exemplarCity": "Monterrey"
},
"Montevideo": {
"exemplarCity": "Montevideo"
},
"Montserrat": {
"exemplarCity": "Montserrat"
},
"Nassau": {
"exemplarCity": "Nassau"
},
"New_York": {
"exemplarCity": "New York"
},
"Nipigon": {
"exemplarCity": "Nipigon"
},
"Nome": {
"exemplarCity": "Nome"
},
"Noronha": {
"exemplarCity": "Noronha"
},
"North_Dakota": {
"Beulah": {
"exemplarCity": "Beulah, North Dakota"
},
"New_Salem": {
"exemplarCity": "New Salem, North Dakota"
},
"Center": {
"exemplarCity": "Center, North Dakota"
}
},
"Ojinaga": {
"exemplarCity": "Ojinaga"
},
"Panama": {
"exemplarCity": "Panama"
},
"Pangnirtung": {
"exemplarCity": "Pangnirtung"
},
"Paramaribo": {
"exemplarCity": "Paramaribo"
},
"Phoenix": {
"exemplarCity": "Phoenix"
},
"Port-au-Prince": {
"exemplarCity": "Port-au-Prince"
},
"Port_of_Spain": {
"exemplarCity": "Port of Spain"
},
"Porto_Velho": {
"exemplarCity": "Porto Velho"
},
"Puerto_Rico": {
"exemplarCity": "Puerto Rico"
},
"Rainy_River": {
"exemplarCity": "Rainy River"
},
"Rankin_Inlet": {
"exemplarCity": "Rankin Inlet"
},
"Recife": {
"exemplarCity": "Recife"
},
"Regina": {
"exemplarCity": "Regina"
},
"Resolute": {
"exemplarCity": "Resolute"
},
"Rio_Branco": {
"exemplarCity": "Rio Branco"
},
"Santa_Isabel": {
"exemplarCity": "Santa Isabel"
},
"Santarem": {
"exemplarCity": "Santarem"
},
"Santiago": {
"exemplarCity": "Santiago"
},
"Santo_Domingo": {
"exemplarCity": "Santo Domingo"
},
"Sao_Paulo": {
"exemplarCity": "São Paulo"
},
"Scoresbysund": {
"exemplarCity": "Ittoqqortoormiit"
},
"Sitka": {
"exemplarCity": "Sitka"
},
"St_Barthelemy": {
"exemplarCity": "Saint-Barthélemy"
},
"St_Johns": {
"exemplarCity": "St. John’s"
},
"St_Kitts": {
"exemplarCity": "St. Kitts"
},
"St_Lucia": {
"exemplarCity": "St. Lucia"
},
"St_Thomas": {
"exemplarCity": "St. Thomas"
},
"St_Vincent": {
"exemplarCity": "St. Vincent"
},
"Swift_Current": {
"exemplarCity": "Swift Current"
},
"Tegucigalpa": {
"exemplarCity": "Tegucigalpa"
},
"Thule": {
"exemplarCity": "Thule"
},
"Thunder_Bay": {
"exemplarCity": "Thunder Bay"
},
"Tijuana": {
"exemplarCity": "Tijuana"
},
"Toronto": {
"exemplarCity": "Toronto"
},
"Tortola": {
"exemplarCity": "Tortola"
},
"Vancouver": {
"exemplarCity": "Vancouver"
},
"Whitehorse": {
"exemplarCity": "Whitehorse"
},
"Winnipeg": {
"exemplarCity": "Winnipeg"
},
"Yakutat": {
"exemplarCity": "Yakutat"
},
"Yellowknife": {
"exemplarCity": "Yellowknife"
}
},
"Atlantic": {
"Azores": {
"exemplarCity": "Azoren"
},
"Bermuda": {
"exemplarCity": "Bermudas"
},
"Canary": {
"exemplarCity": "Kanaren"
},
"Cape_Verde": {
"exemplarCity": "Cabo Verde"
},
"Faeroe": {
"exemplarCity": "Färöer"
},
"Madeira": {
"exemplarCity": "Madeira"
},
"Reykjavik": {
"exemplarCity": "Reykjavík"
},
"South_Georgia": {
"exemplarCity": "Südgeorgien"
},
"St_Helena": {
"exemplarCity": "St. Helena"
},
"Stanley": {
"exemplarCity": "Stanley"
}
},
"Europe": {
"Amsterdam": {
"exemplarCity": "Amsterdam"
},
"Andorra": {
"exemplarCity": "Andorra"
},
"Astrakhan": {
"exemplarCity": "Astrachan"
},
"Athens": {
"exemplarCity": "Athen"
},
"Belgrade": {
"exemplarCity": "Belgrad"
},
"Berlin": {
"exemplarCity": "Berlin"
},
"Bratislava": {
"exemplarCity": "Bratislava"
},
"Brussels": {
"exemplarCity": "Brüssel"
},
"Bucharest": {
"exemplarCity": "Bukarest"
},
"Budapest": {
"exemplarCity": "Budapest"
},
"Busingen": {
"exemplarCity": "Büsingen"
},
"Chisinau": {
"exemplarCity": "Kischinau"
},
"Copenhagen": {
"exemplarCity": "Kopenhagen"
},
"Dublin": {
"long": {
"daylight": "Irische Sommerzeit"
},
"exemplarCity": "Dublin"
},
"Gibraltar": {
"exemplarCity": "Gibraltar"
},
"Guernsey": {
"exemplarCity": "Guernsey"
},
"Helsinki": {
"exemplarCity": "Helsinki"
},
"Isle_of_Man": {
"exemplarCity": "Isle of Man"
},
"Istanbul": {
"exemplarCity": "Istanbul"
},
"Jersey": {
"exemplarCity": "Jersey"
},
"Kaliningrad": {
"exemplarCity": "Kaliningrad"
},
"Kiev": {
"exemplarCity": "Kiew"
},
"Kirov": {
"exemplarCity": "Kirow"
},
"Lisbon": {
"exemplarCity": "Lissabon"
},
"Ljubljana": {
"exemplarCity": "Ljubljana"
},
"London": {
"long": {
"daylight": "Britische Sommerzeit"
},
"exemplarCity": "London"
},
"Luxembourg": {
"exemplarCity": "Luxemburg"
},
"Madrid": {
"exemplarCity": "Madrid"
},
"Malta": {
"exemplarCity": "Malta"
},
"Mariehamn": {
"exemplarCity": "Mariehamn"
},
"Minsk": {
"exemplarCity": "Minsk"
},
"Monaco": {
"exemplarCity": "Monaco"
},
"Moscow": {
"exemplarCity": "Moskau"
},
"Oslo": {
"exemplarCity": "Oslo"
},
"Paris": {
"exemplarCity": "Paris"
},
"Podgorica": {
"exemplarCity": "Podgorica"
},
"Prague": {
"exemplarCity": "Prag"
},
"Riga": {
"exemplarCity": "Riga"
},
"Rome": {
"exemplarCity": "Rom"
},
"Samara": {
"exemplarCity": "Samara"
},
"San_Marino": {
"exemplarCity": "San Marino"
},
"Sarajevo": {
"exemplarCity": "Sarajevo"
},
"Simferopol": {
"exemplarCity": "Simferopol"
},
"Skopje": {
"exemplarCity": "Skopje"
},
"Sofia": {
"exemplarCity": "Sofia"
},
"Stockholm": {
"exemplarCity": "Stockholm"
},
"Tallinn": {
"exemplarCity": "Tallinn"
},
"Tirane": {
"exemplarCity": "Tirana"
},
"Ulyanovsk": {
"exemplarCity": "Uljanowsk"
},
"Uzhgorod": {
"exemplarCity": "Uschgorod"
},
"Vaduz": {
"exemplarCity": "Vaduz"
},
"Vatican": {
"exemplarCity": "Vatikan"
},
"Vienna": {
"exemplarCity": "Wien"
},
"Vilnius": {
"exemplarCity": "Vilnius"
},
"Volgograd": {
"exemplarCity": "Wolgograd"
},
"Warsaw": {
"exemplarCity": "Warschau"
},
"Zagreb": {
"exemplarCity": "Zagreb"
},
"Zaporozhye": {
"exemplarCity": "Saporischja"
},
"Zurich": {
"exemplarCity": "Zürich"
}
},
"Africa": {
"Abidjan": {
"exemplarCity": "Abidjan"
},
"Accra": {
"exemplarCity": "Accra"
},
"Addis_Ababa": {
"exemplarCity": "Addis Abeba"
},
"Algiers": {
"exemplarCity": "Algier"
},
"Asmera": {
"exemplarCity": "Asmara"
},
"Bamako": {
"exemplarCity": "Bamako"
},
"Bangui": {
"exemplarCity": "Bangui"
},
"Banjul": {
"exemplarCity": "Banjul"
},
"Bissau": {
"exemplarCity": "Bissau"
},
"Blantyre": {
"exemplarCity": "Blantyre"
},
"Brazzaville": {
"exemplarCity": "Brazzaville"
},
"Bujumbura": {
"exemplarCity": "Bujumbura"
},
"Cairo": {
"exemplarCity": "Kairo"
},
"Casablanca": {
"exemplarCity": "Casablanca"
},
"Ceuta": {
"exemplarCity": "Ceuta"
},
"Conakry": {
"exemplarCity": "Conakry"
},
"Dakar": {
"exemplarCity": "Dakar"
},
"Dar_es_Salaam": {
"exemplarCity": "Daressalam"
},
"Djibouti": {
"exemplarCity": "Dschibuti"
},
"Douala": {
"exemplarCity": "Douala"
},
"El_Aaiun": {
"exemplarCity": "El Aaiún"
},
"Freetown": {
"exemplarCity": "Freetown"
},
"Gaborone": {
"exemplarCity": "Gaborone"
},
"Harare": {
"exemplarCity": "Harare"
},
"Johannesburg": {
"exemplarCity": "Johannesburg"
},
"Juba": {
"exemplarCity": "Juba"
},
"Kampala": {
"exemplarCity": "Kampala"
},
"Khartoum": {
"exemplarCity": "Khartum"
},
"Kigali": {
"exemplarCity": "Kigali"
},
"Kinshasa": {
"exemplarCity": "Kinshasa"
},
"Lagos": {
"exemplarCity": "Lagos"
},
"Libreville": {
"exemplarCity": "Libreville"
},
"Lome": {
"exemplarCity": "Lomé"
},
"Luanda": {
"exemplarCity": "Luanda"
},
"Lubumbashi": {
"exemplarCity": "Lubumbashi"
},
"Lusaka": {
"exemplarCity": "Lusaka"
},
"Malabo": {
"exemplarCity": "Malabo"
},
"Maputo": {
"exemplarCity": "Maputo"
},
"Maseru": {
"exemplarCity": "Maseru"
},
"Mbabane": {
"exemplarCity": "Mbabane"
},
"Mogadishu": {
"exemplarCity": "Mogadischu"
},
"Monrovia": {
"exemplarCity": "Monrovia"
},
"Nairobi": {
"exemplarCity": "Nairobi"
},
"Ndjamena": {
"exemplarCity": "N’Djamena"
},
"Niamey": {
"exemplarCity": "Niamey"
},
"Nouakchott": {
"exemplarCity": "Nouakchott"
},
"Ouagadougou": {
"exemplarCity": "Ouagadougou"
},
"Porto-Novo": {
"exemplarCity": "Porto Novo"
},
"Sao_Tome": {
"exemplarCity": "São Tomé"
},
"Tripoli": {
"exemplarCity": "Tripolis"
},
"Tunis": {
"exemplarCity": "Tunis"
},
"Windhoek": {
"exemplarCity": "Windhoek"
}
},
"Asia": {
"Aden": {
"exemplarCity": "Aden"
},
"Almaty": {
"exemplarCity": "Almaty"
},
"Amman": {
"exemplarCity": "Amman"
},
"Anadyr": {
"exemplarCity": "Anadyr"
},
"Aqtau": {
"exemplarCity": "Aqtau"
},
"Aqtobe": {
"exemplarCity": "Aktobe"
},
"Ashgabat": {
"exemplarCity": "Aşgabat"
},
"Baghdad": {
"exemplarCity": "Bagdad"
},
"Bahrain": {
"exemplarCity": "Bahrain"
},
"Baku": {
"exemplarCity": "Baku"
},
"Bangkok": {
"exemplarCity": "Bangkok"
},
"Barnaul": {
"exemplarCity": "Barnaul"
},
"Beirut": {
"exemplarCity": "Beirut"
},
"Bishkek": {
"exemplarCity": "Bischkek"
},
"Brunei": {
"exemplarCity": "Brunei"
},
"Calcutta": {
"exemplarCity": "Kalkutta"
},
"Chita": {
"exemplarCity": "Tschita"
},
"Choibalsan": {
"exemplarCity": "Tschoibalsan"
},
"Colombo": {
"exemplarCity": "Colombo"
},
"Damascus": {
"exemplarCity": "Damaskus"
},
"Dhaka": {
"exemplarCity": "Dhaka"
},
"Dili": {
"exemplarCity": "Dili"
},
"Dubai": {
"exemplarCity": "Dubai"
},
"Dushanbe": {
"exemplarCity": "Duschanbe"
},
"Gaza": {
"exemplarCity": "Gaza"
},
"Hebron": {
"exemplarCity": "Hebron"
},
"Hong_Kong": {
"exemplarCity": "Hongkong"
},
"Hovd": {
"exemplarCity": "Chowd"
},
"Irkutsk": {
"exemplarCity": "Irkutsk"
},
"Jakarta": {
"exemplarCity": "Jakarta"
},
"Jayapura": {
"exemplarCity": "Jayapura"
},
"Jerusalem": {
"exemplarCity": "Jerusalem"
},
"Kabul": {
"exemplarCity": "Kabul"
},
"Kamchatka": {
"exemplarCity": "Kamtschatka"
},
"Karachi": {
"exemplarCity": "Karatschi"
},
"Katmandu": {
"exemplarCity": "Kathmandu"
},
"Khandyga": {
"exemplarCity": "Chandyga"
},
"Krasnoyarsk": {
"exemplarCity": "Krasnojarsk"
},
"Kuala_Lumpur": {
"exemplarCity": "Kuala Lumpur"
},
"Kuching": {
"exemplarCity": "Kuching"
},
"Kuwait": {
"exemplarCity": "Kuwait"
},
"Macau": {
"exemplarCity": "Macao"
},
"Magadan": {
"exemplarCity": "Magadan"
},
"Makassar": {
"exemplarCity": "Makassar"
},
"Manila": {
"exemplarCity": "Manila"
},
"Muscat": {
"exemplarCity": "Maskat"
},
"Nicosia": {
"exemplarCity": "Nikosia"
},
"Novokuznetsk": {
"exemplarCity": "Nowokuznetsk"
},
"Novosibirsk": {
"exemplarCity": "Nowosibirsk"
},
"Omsk": {
"exemplarCity": "Omsk"
},
"Oral": {
"exemplarCity": "Oral"
},
"Phnom_Penh": {
"exemplarCity": "Phnom Penh"
},
"Pontianak": {
"exemplarCity": "Pontianak"
},
"Pyongyang": {
"exemplarCity": "Pjöngjang"
},
"Qatar": {
"exemplarCity": "Katar"
},
"Qyzylorda": {
"exemplarCity": "Qysylorda"
},
"Rangoon": {
"exemplarCity": "Rangun"
},
"Riyadh": {
"exemplarCity": "Riad"
},
"Saigon": {
"exemplarCity": "Ho-Chi-Minh-Stadt"
},
"Sakhalin": {
"exemplarCity": "Sachalin"
},
"Samarkand": {
"exemplarCity": "Samarkand"
},
"Seoul": {
"exemplarCity": "Seoul"
},
"Shanghai": {
"exemplarCity": "Shanghai"
},
"Singapore": {
"exemplarCity": "Singapur"
},
"Srednekolymsk": {
"exemplarCity": "Srednekolymsk"
},
"Taipei": {
"exemplarCity": "Taipeh"
},
"Tashkent": {
"exemplarCity": "Taschkent"
},
"Tbilisi": {
"exemplarCity": "Tiflis"
},
"Tehran": {
"exemplarCity": "Teheran"
},
"Thimphu": {
"exemplarCity": "Thimphu"
},
"Tokyo": {
"exemplarCity": "Tokio"
},
"Tomsk": {
"exemplarCity": "Tomsk"
},
"Ulaanbaatar": {
"exemplarCity": "Ulaanbaatar"
},
"Urumqi": {
"exemplarCity": "Ürümqi"
},
"Ust-Nera": {
"exemplarCity": "Ust-Nera"
},
"Vientiane": {
"exemplarCity": "Vientiane"
},
"Vladivostok": {
"exemplarCity": "Wladiwostok"
},
"Yakutsk": {
"exemplarCity": "Jakutsk"
},
"Yekaterinburg": {
"exemplarCity": "Jekaterinburg"
},
"Yerevan": {
"exemplarCity": "Eriwan"
}
},
"Indian": {
"Antananarivo": {
"exemplarCity": "Antananarivo"
},
"Chagos": {
"exemplarCity": "Chagos"
},
"Christmas": {
"exemplarCity": "Weihnachtsinsel"
},
"Cocos": {
"exemplarCity": "Cocos"
},
"Comoro": {
"exemplarCity": "Komoren"
},
"Kerguelen": {
"exemplarCity": "Kerguelen"
},
"Mahe": {
"exemplarCity": "Mahe"
},
"Maldives": {
"exemplarCity": "Malediven"
},
"Mauritius": {
"exemplarCity": "Mauritius"
},
"Mayotte": {
"exemplarCity": "Mayotte"
},
"Reunion": {
"exemplarCity": "Réunion"
}
},
"Australia": {
"Adelaide": {
"exemplarCity": "Adelaide"
},
"Brisbane": {
"exemplarCity": "Brisbane"
},
"Broken_Hill": {
"exemplarCity": "Broken Hill"
},
"Currie": {
"exemplarCity": "Currie"
},
"Darwin": {
"exemplarCity": "Darwin"
},
"Eucla": {
"exemplarCity": "Eucla"
},
"Hobart": {
"exemplarCity": "Hobart"
},
"Lindeman": {
"exemplarCity": "Lindeman"
},
"Lord_Howe": {
"exemplarCity": "Lord Howe"
},
"Melbourne": {
"exemplarCity": "Melbourne"
},
"Perth": {
"exemplarCity": "Perth"
},
"Sydney": {
"exemplarCity": "Sydney"
}
},
"Pacific": {
"Apia": {
"exemplarCity": "Apia"
},
"Auckland": {
"exemplarCity": "Auckland"
},
"Bougainville": {
"exemplarCity": "Bougainville"
},
"Chatham": {
"exemplarCity": "Chatham"
},
"Easter": {
"exemplarCity": "Osterinsel"
},
"Efate": {
"exemplarCity": "Efate"
},
"Enderbury": {
"exemplarCity": "Enderbury"
},
"Fakaofo": {
"exemplarCity": "Fakaofo"
},
"Fiji": {
"exemplarCity": "Fidschi"
},
"Funafuti": {
"exemplarCity": "Funafuti"
},
"Galapagos": {
"exemplarCity": "Galapagos"
},
"Gambier": {
"exemplarCity": "Gambier"
},
"Guadalcanal": {
"exemplarCity": "Guadalcanal"
},
"Guam": {
"exemplarCity": "Guam"
},
"Honolulu": {
"exemplarCity": "Honolulu"
},
"Johnston": {
"exemplarCity": "Johnston"
},
"Kiritimati": {
"exemplarCity": "Kiritimati"
},
"Kosrae": {
"exemplarCity": "Kosrae"
},
"Kwajalein": {
"exemplarCity": "Kwajalein"
},
"Majuro": {
"exemplarCity": "Majuro"
},
"Marquesas": {
"exemplarCity": "Marquesas"
},
"Midway": {
"exemplarCity": "Midway"
},
"Nauru": {
"exemplarCity": "Nauru"
},
"Niue": {
"exemplarCity": "Niue"
},
"Norfolk": {
"exemplarCity": "Norfolk"
},
"Noumea": {
"exemplarCity": "Noumea"
},
"Pago_Pago": {
"exemplarCity": "Pago Pago"
},
"Palau": {
"exemplarCity": "Palau"
},
"Pitcairn": {
"exemplarCity": "Pitcairn"
},
"Ponape": {
"exemplarCity": "Pohnpei"
},
"Port_Moresby": {
"exemplarCity": "Port Moresby"
},
"Rarotonga": {
"exemplarCity": "Rarotonga"
},
"Saipan": {
"exemplarCity": "Saipan"
},
"Tahiti": {
"exemplarCity": "Tahiti"
},
"Tarawa": {
"exemplarCity": "Tarawa"
},
"Tongatapu": {
"exemplarCity": "Tongatapu"
},
"Truk": {
"exemplarCity": "Chuuk"
},
"Wake": {
"exemplarCity": "Wake"
},
"Wallis": {
"exemplarCity": "Wallis"
}
},
"Arctic": {
"Longyearbyen": {
"exemplarCity": "Longyearbyen"
}
},
"Antarctica": {
"Casey": {
"exemplarCity": "Casey"
},
"Davis": {
"exemplarCity": "Davis"
},
"DumontDUrville": {
"exemplarCity": "Dumont d’Urville"
},
"Macquarie": {
"exemplarCity": "Macquarie"
},
"Mawson": {
"exemplarCity": "Mawson"
},
"McMurdo": {
"exemplarCity": "McMurdo"
},
"Palmer": {
"exemplarCity": "Palmer"
},
"Rothera": {
"exemplarCity": "Rothera"
},
"Syowa": {
"exemplarCity": "Syowa"
},
"Troll": {
"exemplarCity": "Troll"
},
"Vostok": {
"exemplarCity": "Wostok"
}
},
"Etc": {
"GMT": {
"exemplarCity": "GMT"
},
"GMT1": {
"exemplarCity": "GMT+1"
},
"GMT10": {
"exemplarCity": "GMT+10"
},
"GMT11": {
"exemplarCity": "GMT+11"
},
"GMT12": {
"exemplarCity": "GMT+12"
},
"GMT2": {
"exemplarCity": "GMT+2"
},
"GMT3": {
"exemplarCity": "GMT+3"
},
"GMT4": {
"exemplarCity": "GMT+4"
},
"GMT5": {
"exemplarCity": "GMT+5"
},
"GMT6": {
"exemplarCity": "GMT+6"
},
"GMT7": {
"exemplarCity": "GMT+7"
},
"GMT8": {
"exemplarCity": "GMT+8"
},
"GMT9": {
"exemplarCity": "GMT+9"
},
"GMT-1": {
"exemplarCity": "GMT-1"
},
"GMT-10": {
"exemplarCity": "GMT-10"
},
"GMT-11": {
"exemplarCity": "GMT-11"
},
"GMT-12": {
"exemplarCity": "GMT-12"
},
"GMT-13": {
"exemplarCity": "GMT-13"
},
"GMT-14": {
"exemplarCity": "GMT-14"
},
"GMT-2": {
"exemplarCity": "GMT-2"
},
"GMT-3": {
"exemplarCity": "GMT-3"
},
"GMT-4": {
"exemplarCity": "GMT-4"
},
"GMT-5": {
"exemplarCity": "GMT-5"
},
"GMT-6": {
"exemplarCity": "GMT-6"
},
"GMT-7": {
"exemplarCity": "GMT-7"
},
"GMT-8": {
"exemplarCity": "GMT-8"
},
"GMT-9": {
"exemplarCity": "GMT-9"
},
"Unknown": {
"exemplarCity": "Unbekannt"
}
}
},
"metazone": {
"Acre": {
"long": {
"generic": "Acre-Zeit",
"standard": "Acre-Normalzeit",
"daylight": "Acre-Sommerzeit"
}
},
"Afghanistan": {
"long": {
"standard": "Afghanistan-Zeit"
}
},
"Africa_Central": {
"long": {
"standard": "Zentralafrikanische Zeit"
}
},
"Africa_Eastern": {
"long": {
"standard": "Ostafrikanische Zeit"
}
},
"Africa_Southern": {
"long": {
"standard": "Südafrikanische Zeit"
}
},
"Africa_Western": {
"long": {
"generic": "Westafrikanische Zeit",
"standard": "Westafrikanische Normalzeit",
"daylight": "Westafrikanische Sommerzeit"
}
},
"Alaska": {
"long": {
"generic": "Alaska-Zeit",
"standard": "Alaska-Normalzeit",
"daylight": "Alaska-Sommerzeit"
}
},
"Almaty": {
"long": {
"generic": "Almaty-Zeit",
"standard": "Almaty-Normalzeit",
"daylight": "Almaty-Sommerzeit"
}
},
"Amazon": {
"long": {
"generic": "Amazonas-Zeit",
"standard": "Amazonas-Normalzeit",
"daylight": "Amazonas-Sommerzeit"
}
},
"America_Central": {
"long": {
"generic": "Nordamerikanische Inlandzeit",
"standard": "Nordamerikanische Inland-Normalzeit",
"daylight": "Nordamerikanische Inland-Sommerzeit"
}
},
"America_Eastern": {
"long": {
"generic": "Nordamerikanische Ostküstenzeit",
"standard": "Nordamerikanische Ostküsten-Normalzeit",
"daylight": "Nordamerikanische Ostküsten-Sommerzeit"
}
},
"America_Mountain": {
"long": {
"generic": "Rocky-Mountain-Zeit",
"standard": "Rocky Mountain-Normalzeit",
"daylight": "Rocky-Mountain-Sommerzeit"
}
},
"America_Pacific": {
"long": {
"generic": "Nordamerikanische Westküstenzeit",
"standard": "Nordamerikanische Westküsten-Normalzeit",
"daylight": "Nordamerikanische Westküsten-Sommerzeit"
}
},
"Anadyr": {
"long": {
"generic": "Anadyr Zeit",
"standard": "Anadyr Normalzeit",
"daylight": "Anadyr Sommerzeit"
}
},
"Apia": {
"long": {
"generic": "Apia-Zeit",
"standard": "Apia-Normalzeit",
"daylight": "Apia-Sommerzeit"
}
},
"Aqtau": {
"long": {
"generic": "Aqtau-Zeit",
"standard": "Aqtau-Normalzeit",
"daylight": "Aqtau-Sommerzeit"
}
},
"Aqtobe": {
"long": {
"generic": "Aqtöbe-Zeit",
"standard": "Aqtöbe-Normalzeit",
"daylight": "Aqtöbe-Sommerzeit"
}
},
"Arabian": {
"long": {
"generic": "Arabische Zeit",
"standard": "Arabische Normalzeit",
"daylight": "Arabische Sommerzeit"
}
},
"Argentina": {
"long": {
"generic": "Argentinische Zeit",
"standard": "Argentinische Normalzeit",
"daylight": "Argentinische Sommerzeit"
}
},
"Argentina_Western": {
"long": {
"generic": "Westargentinische Zeit",
"standard": "Westargentinische Normalzeit",
"daylight": "Westargentinische Sommerzeit"
}
},
"Armenia": {
"long": {
"generic": "Armenische Zeit",
"standard": "Armenische Normalzeit",
"daylight": "Armenische Sommerzeit"
}
},
"Atlantic": {
"long": {
"generic": "Atlantik-Zeit",
"standard": "Atlantik-Normalzeit",
"daylight": "Atlantik-Sommerzeit"
}
},
"Australia_Central": {
"long": {
"generic": "Zentralaustralische Zeit",
"standard": "Zentralaustralische Normalzeit",
"daylight": "Zentralaustralische Sommerzeit"
}
},
"Australia_CentralWestern": {
"long": {
"generic": "Zentral-/Westaustralische Zeit",
"standard": "Zentral-/Westaustralische Normalzeit",
"daylight": "Zentral-/Westaustralische Sommerzeit"
}
},
"Australia_Eastern": {
"long": {
"generic": "Ostaustralische Zeit",
"standard": "Ostaustralische Normalzeit",
"daylight": "Ostaustralische Sommerzeit"
}
},
"Australia_Western": {
"long": {
"generic": "Westaustralische Zeit",
"standard": "Westaustralische Normalzeit",
"daylight": "Westaustralische Sommerzeit"
}
},
"Azerbaijan": {
"long": {
"generic": "Aserbaidschanische Zeit",
"standard": "Aserbeidschanische Normalzeit",
"daylight": "Aserbaidschanische Sommerzeit"
}
},
"Azores": {
"long": {
"generic": "Azoren-Zeit",
"standard": "Azoren-Normalzeit",
"daylight": "Azoren-Sommerzeit"
}
},
"Bangladesh": {
"long": {
"generic": "Bangladesch-Zeit",
"standard": "Bangladesch-Normalzeit",
"daylight": "Bangladesch-Sommerzeit"
}
},
"Bhutan": {
"long": {
"standard": "Bhutan-Zeit"
}
},
"Bolivia": {
"long": {
"standard": "Bolivianische Zeit"
}
},
"Brasilia": {
"long": {
"generic": "Brasília-Zeit",
"standard": "Brasília-Normalzeit",
"daylight": "Brasília-Sommerzeit"
}
},
"Brunei": {
"long": {
"standard": "Brunei-Zeit"
}
},
"Cape_Verde": {
"long": {
"generic": "Cabo-Verde-Zeit",
"standard": "Cabo-Verde-Normalzeit",
"daylight": "Cabo-Verde-Sommerzeit"
}
},
"Casey": {
"long": {
"standard": "Casey-Zeit"
}
},
"Chamorro": {
"long": {
"standard": "Chamorro-Zeit"
}
},
"Chatham": {
"long": {
"generic": "Chatham-Zeit",
"standard": "Chatham-Normalzeit",
"daylight": "Chatham-Sommerzeit"
}
},
"Chile": {
"long": {
"generic": "Chilenische Zeit",
"standard": "Chilenische Normalzeit",
"daylight": "Chilenische Sommerzeit"
}
},
"China": {
"long": {
"generic": "Chinesische Zeit",
"standard": "Chinesische Normalzeit",
"daylight": "Chinesische Sommerzeit"
}
},
"Choibalsan": {
"long": {
"generic": "Tschoibalsan-Zeit",
"standard": "Tschoibalsan-Normalzeit",
"daylight": "Tschoibalsan-Sommerzeit"
}
},
"Christmas": {
"long": {
"standard": "Weihnachtsinsel-Zeit"
}
},
"Cocos": {
"long": {
"standard": "Kokosinseln-Zeit"
}
},
"Colombia": {
"long": {
"generic": "Kolumbianische Zeit",
"standard": "Kolumbianische Normalzeit",
"daylight": "Kolumbianische Sommerzeit"
}
},
"Cook": {
"long": {
"generic": "Cookinseln-Zeit",
"standard": "Cookinseln-Normalzeit",
"daylight": "Cookinseln-Sommerzeit"
}
},
"Cuba": {
"long": {
"generic": "Kubanische Zeit",
"standard": "Kubanische Normalzeit",
"daylight": "Kubanische Sommerzeit"
}
},
"Davis": {
"long": {
"standard": "Davis-Zeit"
}
},
"DumontDUrville": {
"long": {
"standard": "Dumont-d’Urville-Zeit"
}
},
"East_Timor": {
"long": {
"standard": "Osttimor-Zeit"
}
},
"Easter": {
"long": {
"generic": "Osterinsel-Zeit",
"standard": "Osterinsel-Normalzeit",
"daylight": "Osterinsel-Sommerzeit"
}
},
"Ecuador": {
"long": {
"standard": "Ecuadorianische Zeit"
}
},
"Europe_Central": {
"long": {
"generic": "Mitteleuropäische Zeit",
"standard": "Mitteleuropäische Normalzeit",
"daylight": "Mitteleuropäische Sommerzeit"
},
"short": {
"generic": "MEZ",
"standard": "MEZ",
"daylight": "MESZ"
}
},
"Europe_Eastern": {
"long": {
"generic": "Osteuropäische Zeit",
"standard": "Osteuropäische Normalzeit",
"daylight": "Osteuropäische Sommerzeit"
},
"short": {
"generic": "OEZ",
"standard": "OEZ",
"daylight": "OESZ"
}
},
"Europe_Further_Eastern": {
"long": {
"standard": "Kaliningrader Zeit"
}
},
"Europe_Western": {
"long": {
"generic": "Westeuropäische Zeit",
"standard": "Westeuropäische Normalzeit",
"daylight": "Westeuropäische Sommerzeit"
},
"short": {
"generic": "WEZ",
"standard": "WEZ",
"daylight": "WESZ"
}
},
"Falkland": {
"long": {
"generic": "Falklandinseln-Zeit",
"standard": "Falklandinseln-Normalzeit",
"daylight": "Falklandinseln-Sommerzeit"
}
},
"Fiji": {
"long": {
"generic": "Fidschi-Zeit",
"standard": "Fidschi-Normalzeit",
"daylight": "Fidschi-Sommerzeit"
}
},
"French_Guiana": {
"long": {
"standard": "Französisch-Guayana-Zeit"
}
},
"French_Southern": {
"long": {
"standard": "Französische Süd- und Antarktisgebiete-Zeit"
}
},
"Galapagos": {
"long": {
"standard": "Galapagos-Zeit"
}
},
"Gambier": {
"long": {
"standard": "Gambier-Zeit"
}
},
"Georgia": {
"long": {
"generic": "Georgische Zeit",
"standard": "Georgische Normalzeit",
"daylight": "Georgische Sommerzeit"
}
},
"Gilbert_Islands": {
"long": {
"standard": "Gilbert-Inseln-Zeit"
}
},
"GMT": {
"long": {
"standard": "Mittlere Greenwich-Zeit"
}
},
"Greenland_Eastern": {
"long": {
"generic": "Ostgrönland-Zeit",
"standard": "Ostgrönland-Normalzeit",
"daylight": "Ostgrönland-Sommerzeit"
}
},
"Greenland_Western": {
"long": {
"generic": "Westgrönland-Zeit",
"standard": "Westgrönland-Normalzeit",
"daylight": "Westgrönland-Sommerzeit"
}
},
"Guam": {
"long": {
"standard": "Guam-Zeit"
}
},
"Gulf": {
"long": {
"standard": "Golf-Zeit"
}
},
"Guyana": {
"long": {
"standard": "Guyana-Zeit"
}
},
"Hawaii_Aleutian": {
"long": {
"generic": "Hawaii-Aleuten-Zeit",
"standard": "Hawaii-Aleuten-Normalzeit",
"daylight": "Hawaii-Aleuten-Sommerzeit"
}
},
"Hong_Kong": {
"long": {
"generic": "Hongkong-Zeit",
"standard": "Hongkong-Normalzeit",
"daylight": "Hongkong-Sommerzeit"
}
},
"Hovd": {
"long": {
"generic": "Chowd-Zeit",
"standard": "Chowd-Normalzeit",
"daylight": "Chowd-Sommerzeit"
}
},
"India": {
"long": {
"standard": "Indische Zeit"
}
},
"Indian_Ocean": {
"long": {
"standard": "Indischer Ozean-Zeit"
}
},
"Indochina": {
"long": {
"standard": "Indochina-Zeit"
}
},
"Indonesia_Central": {
"long": {
"standard": "Zentralindonesische Zeit"
}
},
"Indonesia_Eastern": {
"long": {
"standard": "Ostindonesische Zeit"
}
},
"Indonesia_Western": {
"long": {
"standard": "Westindonesische Zeit"
}
},
"Iran": {
"long": {
"generic": "Iranische Zeit",
"standard": "Iranische Normalzeit",
"daylight": "Iranische Sommerzeit"
}
},
"Irkutsk": {
"long": {
"generic": "Irkutsk-Zeit",
"standard": "Irkutsk-Normalzeit",
"daylight": "Irkutsk-Sommerzeit"
}
},
"Israel": {
"long": {
"generic": "Israelische Zeit",
"standard": "Israelische Normalzeit",
"daylight": "Israelische Sommerzeit"
}
},
"Japan": {
"long": {
"generic": "Japanische Zeit",
"standard": "Japanische Normalzeit",
"daylight": "Japanische Sommerzeit"
}
},
"Kamchatka": {
"long": {
"generic": "Kamtschatka-Zeit",
"standard": "Kamtschatka-Normalzeit",
"daylight": "Kamtschatka-Sommerzeit"
}
},
"Kazakhstan_Eastern": {
"long": {
"standard": "Ostkasachische Zeit"
}
},
"Kazakhstan_Western": {
"long": {
"standard": "Westkasachische Zeit"
}
},
"Korea": {
"long": {
"generic": "Koreanische Zeit",
"standard": "Koreanische Normalzeit",
"daylight": "Koreanische Sommerzeit"
}
},
"Kosrae": {
"long": {
"standard": "Kosrae-Zeit"
}
},
"Krasnoyarsk": {
"long": {
"generic": "Krasnojarsk-Zeit",
"standard": "Krasnojarsk-Normalzeit",
"daylight": "Krasnojarsk-Sommerzeit"
}
},
"Kyrgystan": {
"long": {
"standard": "Kirgisistan-Zeit"
}
},
"Lanka": {
"long": {
"standard": "Sri-Lanka-Zeit"
}
},
"Line_Islands": {
"long": {
"standard": "Linieninseln-Zeit"
}
},
"Lord_Howe": {
"long": {
"generic": "Lord-Howe-Zeit",
"standard": "Lord-Howe-Normalzeit",
"daylight": "Lord-Howe-Sommerzeit"
}
},
"Macau": {
"long": {
"generic": "Macau-Zeit",
"standard": "Macau-Normalzeit",
"daylight": "Macau-Sommerzeit"
}
},
"Macquarie": {
"long": {
"standard": "Macquarieinsel-Zeit"
}
},
"Magadan": {
"long": {
"generic": "Magadan-Zeit",
"standard": "Magadan-Normalzeit",
"daylight": "Magadan-Sommerzeit"
}
},
"Malaysia": {
"long": {
"standard": "Malaysische Zeit"
}
},
"Maldives": {
"long": {
"standard": "Malediven-Zeit"
}
},
"Marquesas": {
"long": {
"standard": "Marquesas-Zeit"
}
},
"Marshall_Islands": {
"long": {
"standard": "Marshallinseln-Zeit"
}
},
"Mauritius": {
"long": {
"generic": "Mauritius-Zeit",
"standard": "Mauritius-Normalzeit",
"daylight": "Mauritius-Sommerzeit"
}
},
"Mawson": {
"long": {
"standard": "Mawson-Zeit"
}
},
"Mexico_Northwest": {
"long": {
"generic": "Mexiko Nordwestliche Zone-Zeit",
"standard": "Mexiko Nordwestliche Zone-Normalzeit",
"daylight": "Mexiko Nordwestliche Zone-Sommerzeit"
}
},
"Mexico_Pacific": {
"long": {
"generic": "Mexiko Pazifikzone-Zeit",
"standard": "Mexiko Pazifikzone-Normalzeit",
"daylight": "Mexiko Pazifikzone-Sommerzeit"
}
},
"Mongolia": {
"long": {
"generic": "Ulaanbaatar-Zeit",
"standard": "Ulaanbaatar-Normalzeit",
"daylight": "Ulaanbaatar-Sommerzeit"
}
},
"Moscow": {
"long": {
"generic": "Moskauer Zeit",
"standard": "Moskauer Normalzeit",
"daylight": "Moskauer Sommerzeit"
}
},
"Myanmar": {
"long": {
"standard": "Myanmar-Zeit"
}
},
"Nauru": {
"long": {
"standard": "Nauru-Zeit"
}
},
"Nepal": {
"long": {
"standard": "Nepalesische Zeit"
}
},
"New_Caledonia": {
"long": {
"generic": "Neukaledonische Zeit",
"standard": "Neukaledonische Normalzeit",
"daylight": "Neukaledonische Sommerzeit"
}
},
"New_Zealand": {
"long": {
"generic": "Neuseeland-Zeit",
"standard": "Neuseeland-Normalzeit",
"daylight": "Neuseeland-Sommerzeit"
}
},
"Newfoundland": {
"long": {
"generic": "Neufundland-Zeit",
"standard": "Neufundland-Normalzeit",
"daylight": "Neufundland-Sommerzeit"
}
},
"Niue": {
"long": {
"standard": "Niue-Zeit"
}
},
"Norfolk": {
"long": {
"standard": "Norfolkinsel-Zeit"
}
},
"Noronha": {
"long": {
"generic": "Fernando de Noronha-Zeit",
"standard": "Fernando de Noronha-Normalzeit",
"daylight": "Fernando de Noronha-Sommerzeit"
}
},
"North_Mariana": {
"long": {
"standard": "Nördliche-Marianen-Zeit"
}
},
"Novosibirsk": {
"long": {
"generic": "Nowosibirsk-Zeit",
"standard": "Nowosibirsk-Normalzeit",
"daylight": "Nowosibirsk-Sommerzeit"
}
},
"Omsk": {
"long": {
"generic": "Omsk-Zeit",
"standard": "Omsk-Normalzeit",
"daylight": "Omsk-Sommerzeit"
}
},
"Pakistan": {
"long": {
"generic": "Pakistanische Zeit",
"standard": "Pakistanische Normalzeit",
"daylight": "Pakistanische Sommerzeit"
}
},
"Palau": {
"long": {
"standard": "Palau-Zeit"
}
},
"Papua_New_Guinea": {
"long": {
"standard": "Papua-Neuguinea-Zeit"
}
},
"Paraguay": {
"long": {
"generic": "Paraguayanische Zeit",
"standard": "Paraguayanische Normalzeit",
"daylight": "Paraguayanische Sommerzeit"
}
},
"Peru": {
"long": {
"generic": "Peruanische Zeit",
"standard": "Peruanische Normalzeit",
"daylight": "Peruanische Sommerzeit"
}
},
"Philippines": {
"long": {
"generic": "Philippinische Zeit",
"standard": "Philippinische Normalzeit",
"daylight": "Philippinische Sommerzeit"
}
},
"Phoenix_Islands": {
"long": {
"standard": "Phoenixinseln-Zeit"
}
},
"Pierre_Miquelon": {
"long": {
"generic": "Saint-Pierre-und-Miquelon-Zeit",
"standard": "Saint-Pierre-und-Miquelon-Normalzeit",
"daylight": "Saint-Pierre-und-Miquelon-Sommerzeit"
}
},
"Pitcairn": {
"long": {
"standard": "Pitcairninseln-Zeit"
}
},
"Ponape": {
"long": {
"standard": "Ponape-Zeit"
}
},
"Pyongyang": {
"long": {
"standard": "Pjöngjang-Zeit"
}
},
"Qyzylorda": {
"long": {
"generic": "Quysylorda-Zeit",
"standard": "Quysylorda-Normalzeit",
"daylight": "Qysylorda-Sommerzeit"
}
},
"Reunion": {
"long": {
"standard": "Réunion-Zeit"
}
},
"Rothera": {
"long": {
"standard": "Rothera-Zeit"
}
},
"Sakhalin": {
"long": {
"generic": "Sachalin-Zeit",
"standard": "Sachalin-Normalzeit",
"daylight": "Sachalin-Sommerzeit"
}
},
"Samara": {
"long": {
"generic": "Samara-Zeit",
"standard": "Samara-Normalzeit",
"daylight": "Samara-Sommerzeit"
}
},
"Samoa": {
"long": {
"generic": "Samoa-Zeit",
"standard": "Samoa-Normalzeit",
"daylight": "Samoa-Sommerzeit"
}
},
"Seychelles": {
"long": {
"standard": "Seychellen-Zeit"
}
},
"Singapore": {
"long": {
"standard": "Singapur-Zeit"
}
},
"Solomon": {
"long": {
"standard": "Salomoninseln-Zeit"
}
},
"South_Georgia": {
"long": {
"standard": "Südgeorgische Zeit"
}
},
"Suriname": {
"long": {
"standard": "Suriname-Zeit"
}
},
"Syowa": {
"long": {
"standard": "Syowa-Zeit"
}
},
"Tahiti": {
"long": {
"standard": "Tahiti-Zeit"
}
},
"Taipei": {
"long": {
"generic": "Taipeh-Zeit",
"standard": "Taipeh-Normalzeit",
"daylight": "Taipeh-Sommerzeit"
}
},
"Tajikistan": {
"long": {
"standard": "Tadschikistan-Zeit"
}
},
"Tokelau": {
"long": {
"standard": "Tokelau-Zeit"
}
},
"Tonga": {
"long": {
"generic": "Tonganische Zeit",
"standard": "Tonganische Normalzeit",
"daylight": "Tonganische Sommerzeit"
}
},
"Truk": {
"long": {
"standard": "Chuuk-Zeit"
}
},
"Turkmenistan": {
"long": {
"generic": "Turkmenistan-Zeit",
"standard": "Turkmenistan-Normalzeit",
"daylight": "Turkmenistan-Sommerzeit"
}
},
"Tuvalu": {
"long": {
"standard": "Tuvalu-Zeit"
}
},
"Uruguay": {
"long": {
"generic": "Uruguayanische Zeit",
"standard": "Uruguyanische Normalzeit",
"daylight": "Uruguayanische Sommerzeit"
}
},
"Uzbekistan": {
"long": {
"generic": "Usbekistan-Zeit",
"standard": "Usbekistan-Normalzeit",
"daylight": "Usbekistan-Sommerzeit"
}
},
"Vanuatu": {
"long": {
"generic": "Vanuatu-Zeit",
"standard": "Vanuatu-Normalzeit",
"daylight": "Vanuatu-Sommerzeit"
}
},
"Venezuela": {
"long": {
"standard": "Venezuela-Zeit"
}
},
"Vladivostok": {
"long": {
"generic": "Wladiwostok-Zeit",
"standard": "Wladiwostok-Normalzeit",
"daylight": "Wladiwostok-Sommerzeit"
}
},
"Volgograd": {
"long": {
"generic": "Wolgograd-Zeit",
"standard": "Wolgograd-Normalzeit",
"daylight": "Wolgograd-Sommerzeit"
}
},
"Vostok": {
"long": {
"standard": "Wostok-Zeit"
}
},
"Wake": {
"long": {
"standard": "Wake-Insel-Zeit"
}
},
"Wallis": {
"long": {
"standard": "Wallis-und-Futuna-Zeit"
}
},
"Yakutsk": {
"long": {
"generic": "Jakutsk-Zeit",
"standard": "Jakutsk-Normalzeit",
"daylight": "Jakutsk-Sommerzeit"
}
},
"Yekaterinburg": {
"long": {
"generic": "Jekaterinburg-Zeit",
"standard": "Jekaterinburg-Normalzeit",
"daylight": "Jekaterinburg-Sommerzeit"
}
}
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"de";
}
"dates";
{
"timeZoneNames";
{
"hourFormat";
"+HH:mm;-HH:mm",
"gmtFormat";
"GMT{0}",
"gmtZeroFormat";
"GMT",
"regionFormat";
"{0} Zeit",
"regionFormat-type-daylight";
"{0} Sommerzeit",
"regionFormat-type-standard";
"{0} Normalzeit",
"fallbackFormat";
"{1} ({0})",
"zone";
{
"America";
{
"Adak";
{
"exemplarCity";
"Adak";
}
"Anchorage";
{
"exemplarCity";
"Anchorage";
}
"Anguilla";
{
"exemplarCity";
"Anguilla";
}
"Antigua";
{
"exemplarCity";
"Antigua";
}
"Araguaina";
{
"exemplarCity";
"Araguaina";
}
"Argentina";
{
"Rio_Gallegos";
{
"exemplarCity";
"Rio Gallegos";
}
"San_Juan";
{
"exemplarCity";
"San Juan";
}
"Ushuaia";
{
"exemplarCity";
"Ushuaia";
}
"La_Rioja";
{
"exemplarCity";
"La Rioja";
}
"San_Luis";
{
"exemplarCity";
"San Luis";
}
"Salta";
{
"exemplarCity";
"Salta";
}
"Tucuman";
{
"exemplarCity";
"Tucuman";
}
}
"Aruba";
{
"exemplarCity";
"Aruba";
}
"Asuncion";
{
"exemplarCity";
"Asunción";
}
"Bahia";
{
"exemplarCity";
"Bahia";
}
"Bahia_Banderas";
{
"exemplarCity";
"Bahia Banderas";
}
"Barbados";
{
"exemplarCity";
"Barbados";
}
"Belem";
{
"exemplarCity";
"Belem";
}
"Belize";
{
"exemplarCity";
"Belize";
}
"Blanc-Sablon";
{
"exemplarCity";
"Blanc-Sablon";
}
"Boa_Vista";
{
"exemplarCity";
"Boa Vista";
}
"Bogota";
{
"exemplarCity";
"Bogotá";
}
"Boise";
{
"exemplarCity";
"Boise";
}
"Buenos_Aires";
{
"exemplarCity";
"Buenos Aires";
}
"Cambridge_Bay";
{
"exemplarCity";
"Cambridge Bay";
}
"Campo_Grande";
{
"exemplarCity";
"Campo Grande";
}
"Cancun";
{
"exemplarCity";
"Cancún";
}
"Caracas";
{
"exemplarCity";
"Caracas";
}
"Catamarca";
{
"exemplarCity";
"Catamarca";
}
"Cayenne";
{
"exemplarCity";
"Cayenne";
}
"Cayman";
{
"exemplarCity";
"Kaimaninseln";
}
"Chicago";
{
"exemplarCity";
"Chicago";
}
"Chihuahua";
{
"exemplarCity";
"Chihuahua";
}
"Coral_Harbour";
{
"exemplarCity";
"Atikokan";
}
"Cordoba";
{
"exemplarCity";
"Córdoba";
}
"Costa_Rica";
{
"exemplarCity";
"Costa Rica";
}
"Creston";
{
"exemplarCity";
"Creston";
}
"Cuiaba";
{
"exemplarCity";
"Cuiaba";
}
"Curacao";
{
"exemplarCity";
"Curaçao";
}
"Danmarkshavn";
{
"exemplarCity";
"Danmarkshavn";
}
"Dawson";
{
"exemplarCity";
"Dawson";
}
"Dawson_Creek";
{
"exemplarCity";
"Dawson Creek";
}
"Denver";
{
"exemplarCity";
"Denver";
}
"Detroit";
{
"exemplarCity";
"Detroit";
}
"Dominica";
{
"exemplarCity";
"Dominica";
}
"Edmonton";
{
"exemplarCity";
"Edmonton";
}
"Eirunepe";
{
"exemplarCity";
"Eirunepe";
}
"El_Salvador";
{
"exemplarCity";
"El Salvador";
}
"Fort_Nelson";
{
"exemplarCity";
"Fort Nelson";
}
"Fortaleza";
{
"exemplarCity";
"Fortaleza";
}
"Glace_Bay";
{
"exemplarCity";
"Glace Bay";
}
"Godthab";
{
"exemplarCity";
"Nuuk";
}
"Goose_Bay";
{
"exemplarCity";
"Goose Bay";
}
"Grand_Turk";
{
"exemplarCity";
"Grand Turk";
}
"Grenada";
{
"exemplarCity";
"Grenada";
}
"Guadeloupe";
{
"exemplarCity";
"Guadeloupe";
}
"Guatemala";
{
"exemplarCity";
"Guatemala";
}
"Guayaquil";
{
"exemplarCity";
"Guayaquil";
}
"Guyana";
{
"exemplarCity";
"Guyana";
}
"Halifax";
{
"exemplarCity";
"Halifax";
}
"Havana";
{
"exemplarCity";
"Havanna";
}
"Hermosillo";
{
"exemplarCity";
"Hermosillo";
}
"Indiana";
{
"Vincennes";
{
"exemplarCity";
"Vincennes, Indiana";
}
"Petersburg";
{
"exemplarCity";
"Petersburg, Indiana";
}
"Tell_City";
{
"exemplarCity";
"Tell City, Indiana";
}
"Knox";
{
"exemplarCity";
"Knox, Indiana";
}
"Winamac";
{
"exemplarCity";
"Winamac, Indiana";
}
"Marengo";
{
"exemplarCity";
"Marengo, Indiana";
}
"Vevay";
{
"exemplarCity";
"Vevay, Indiana";
}
}
"Indianapolis";
{
"exemplarCity";
"Indianapolis";
}
"Inuvik";
{
"exemplarCity";
"Inuvik";
}
"Iqaluit";
{
"exemplarCity";
"Iqaluit";
}
"Jamaica";
{
"exemplarCity";
"Jamaika";
}
"Jujuy";
{
"exemplarCity";
"Jujuy";
}
"Juneau";
{
"exemplarCity";
"Juneau";
}
"Kentucky";
{
"Monticello";
{
"exemplarCity";
"Monticello, Kentucky";
}
}
"Kralendijk";
{
"exemplarCity";
"Kralendijk";
}
"La_Paz";
{
"exemplarCity";
"La Paz";
}
"Lima";
{
"exemplarCity";
"Lima";
}
"Los_Angeles";
{
"exemplarCity";
"Los Angeles";
}
"Louisville";
{
"exemplarCity";
"Louisville";
}
"Lower_Princes";
{
"exemplarCity";
"Lower Prince’s Quarter";
}
"Maceio";
{
"exemplarCity";
"Maceio";
}
"Managua";
{
"exemplarCity";
"Managua";
}
"Manaus";
{
"exemplarCity";
"Manaus";
}
"Marigot";
{
"exemplarCity";
"Marigot";
}
"Martinique";
{
"exemplarCity";
"Martinique";
}
"Matamoros";
{
"exemplarCity";
"Matamoros";
}
"Mazatlan";
{
"exemplarCity";
"Mazatlan";
}
"Mendoza";
{
"exemplarCity";
"Mendoza";
}
"Menominee";
{
"exemplarCity";
"Menominee";
}
"Merida";
{
"exemplarCity";
"Merida";
}
"Metlakatla";
{
"exemplarCity";
"Metlakatla";
}
"Mexico_City";
{
"exemplarCity";
"Mexiko-Stadt";
}
"Miquelon";
{
"exemplarCity";
"Miquelon";
}
"Moncton";
{
"exemplarCity";
"Moncton";
}
"Monterrey";
{
"exemplarCity";
"Monterrey";
}
"Montevideo";
{
"exemplarCity";
"Montevideo";
}
"Montserrat";
{
"exemplarCity";
"Montserrat";
}
"Nassau";
{
"exemplarCity";
"Nassau";
}
"New_York";
{
"exemplarCity";
"New York";
}
"Nipigon";
{
"exemplarCity";
"Nipigon";
}
"Nome";
{
"exemplarCity";
"Nome";
}
"Noronha";
{
"exemplarCity";
"Noronha";
}
"North_Dakota";
{
"Beulah";
{
"exemplarCity";
"Beulah, North Dakota";
}
"New_Salem";
{
"exemplarCity";
"New Salem, North Dakota";
}
"Center";
{
"exemplarCity";
"Center, North Dakota";
}
}
"Ojinaga";
{
"exemplarCity";
"Ojinaga";
}
"Panama";
{
"exemplarCity";
"Panama";
}
"Pangnirtung";
{
"exemplarCity";
"Pangnirtung";
}
"Paramaribo";
{
"exemplarCity";
"Paramaribo";
}
"Phoenix";
{
"exemplarCity";
"Phoenix";
}
"Port-au-Prince";
{
"exemplarCity";
"Port-au-Prince";
}
"Port_of_Spain";
{
"exemplarCity";
"Port of Spain";
}
"Porto_Velho";
{
"exemplarCity";
"Porto Velho";
}
"Puerto_Rico";
{
"exemplarCity";
"Puerto Rico";
}
"Rainy_River";
{
"exemplarCity";
"Rainy River";
}
"Rankin_Inlet";
{
"exemplarCity";
"Rankin Inlet";
}
"Recife";
{
"exemplarCity";
"Recife";
}
"Regina";
{
"exemplarCity";
"Regina";
}
"Resolute";
{
"exemplarCity";
"Resolute";
}
"Rio_Branco";
{
"exemplarCity";
"Rio Branco";
}
"Santa_Isabel";
{
"exemplarCity";
"Santa Isabel";
}
"Santarem";
{
"exemplarCity";
"Santarem";
}
"Santiago";
{
"exemplarCity";
"Santiago";
}
"Santo_Domingo";
{
"exemplarCity";
"Santo Domingo";
}
"Sao_Paulo";
{
"exemplarCity";
"São Paulo";
}
"Scoresbysund";
{
"exemplarCity";
"Ittoqqortoormiit";
}
"Sitka";
{
"exemplarCity";
"Sitka";
}
"St_Barthelemy";
{
"exemplarCity";
"Saint-Barthélemy";
}
"St_Johns";
{
"exemplarCity";
"St. John’s";
}
"St_Kitts";
{
"exemplarCity";
"St. Kitts";
}
"St_Lucia";
{
"exemplarCity";
"St. Lucia";
}
"St_Thomas";
{
"exemplarCity";
"St. Thomas";
}
"St_Vincent";
{
"exemplarCity";
"St. Vincent";
}
"Swift_Current";
{
"exemplarCity";
"Swift Current";
}
"Tegucigalpa";
{
"exemplarCity";
"Tegucigalpa";
}
"Thule";
{
"exemplarCity";
"Thule";
}
"Thunder_Bay";
{
"exemplarCity";
"Thunder Bay";
}
"Tijuana";
{
"exemplarCity";
"Tijuana";
}
"Toronto";
{
"exemplarCity";
"Toronto";
}
"Tortola";
{
"exemplarCity";
"Tortola";
}
"Vancouver";
{
"exemplarCity";
"Vancouver";
}
"Whitehorse";
{
"exemplarCity";
"Whitehorse";
}
"Winnipeg";
{
"exemplarCity";
"Winnipeg";
}
"Yakutat";
{
"exemplarCity";
"Yakutat";
}
"Yellowknife";
{
"exemplarCity";
"Yellowknife";
}
}
"Atlantic";
{
"Azores";
{
"exemplarCity";
"Azoren";
}
"Bermuda";
{
"exemplarCity";
"Bermudas";
}
"Canary";
{
"exemplarCity";
"Kanaren";
}
"Cape_Verde";
{
"exemplarCity";
"Cabo Verde";
}
"Faeroe";
{
"exemplarCity";
"Färöer";
}
"Madeira";
{
"exemplarCity";
"Madeira";
}
"Reykjavik";
{
"exemplarCity";
"Reykjavík";
}
"South_Georgia";
{
"exemplarCity";
"Südgeorgien";
}
"St_Helena";
{
"exemplarCity";
"St. Helena";
}
"Stanley";
{
"exemplarCity";
"Stanley";
}
}
"Europe";
{
"Amsterdam";
{
"exemplarCity";
"Amsterdam";
}
"Andorra";
{
"exemplarCity";
"Andorra";
}
"Astrakhan";
{
"exemplarCity";
"Astrachan";
}
"Athens";
{
"exemplarCity";
"Athen";
}
"Belgrade";
{
"exemplarCity";
"Belgrad";
}
"Berlin";
{
"exemplarCity";
"Berlin";
}
"Bratislava";
{
"exemplarCity";
"Bratislava";
}
"Brussels";
{
"exemplarCity";
"Brüssel";
}
"Bucharest";
{
"exemplarCity";
"Bukarest";
}
"Budapest";
{
"exemplarCity";
"Budapest";
}
"Busingen";
{
"exemplarCity";
"Büsingen";
}
"Chisinau";
{
"exemplarCity";
"Kischinau";
}
"Copenhagen";
{
"exemplarCity";
"Kopenhagen";
}
"Dublin";
{
"long";
{
"daylight";
"Irische Sommerzeit";
}
"exemplarCity";
"Dublin";
}
"Gibraltar";
{
"exemplarCity";
"Gibraltar";
}
"Guernsey";
{
"exemplarCity";
"Guernsey";
}
"Helsinki";
{
"exemplarCity";
"Helsinki";
}
"Isle_of_Man";
{
"exemplarCity";
"Isle of Man";
}
"Istanbul";
{
"exemplarCity";
"Istanbul";
}
"Jersey";
{
"exemplarCity";
"Jersey";
}
"Kaliningrad";
{
"exemplarCity";
"Kaliningrad";
}
"Kiev";
{
"exemplarCity";
"Kiew";
}
"Kirov";
{
"exemplarCity";
"Kirow";
}
"Lisbon";
{
"exemplarCity";
"Lissabon";
}
"Ljubljana";
{
"exemplarCity";
"Ljubljana";
}
"London";
{
"long";
{
"daylight";
"Britische Sommerzeit";
}
"exemplarCity";
"London";
}
"Luxembourg";
{
"exemplarCity";
"Luxemburg";
}
"Madrid";
{
"exemplarCity";
"Madrid";
}
"Malta";
{
"exemplarCity";
"Malta";
}
"Mariehamn";
{
"exemplarCity";
"Mariehamn";
}
"Minsk";
{
"exemplarCity";
"Minsk";
}
"Monaco";
{
"exemplarCity";
"Monaco";
}
"Moscow";
{
"exemplarCity";
"Moskau";
}
"Oslo";
{
"exemplarCity";
"Oslo";
}
"Paris";
{
"exemplarCity";
"Paris";
}
"Podgorica";
{
"exemplarCity";
"Podgorica";
}
"Prague";
{
"exemplarCity";
"Prag";
}
"Riga";
{
"exemplarCity";
"Riga";
}
"Rome";
{
"exemplarCity";
"Rom";
}
"Samara";
{
"exemplarCity";
"Samara";
}
"San_Marino";
{
"exemplarCity";
"San Marino";
}
"Sarajevo";
{
"exemplarCity";
"Sarajevo";
}
"Simferopol";
{
"exemplarCity";
"Simferopol";
}
"Skopje";
{
"exemplarCity";
"Skopje";
}
"Sofia";
{
"exemplarCity";
"Sofia";
}
"Stockholm";
{
"exemplarCity";
"Stockholm";
}
"Tallinn";
{
"exemplarCity";
"Tallinn";
}
"Tirane";
{
"exemplarCity";
"Tirana";
}
"Ulyanovsk";
{
"exemplarCity";
"Uljanowsk";
}
"Uzhgorod";
{
"exemplarCity";
"Uschgorod";
}
"Vaduz";
{
"exemplarCity";
"Vaduz";
}
"Vatican";
{
"exemplarCity";
"Vatikan";
}
"Vienna";
{
"exemplarCity";
"Wien";
}
"Vilnius";
{
"exemplarCity";
"Vilnius";
}
"Volgograd";
{
"exemplarCity";
"Wolgograd";
}
"Warsaw";
{
"exemplarCity";
"Warschau";
}
"Zagreb";
{
"exemplarCity";
"Zagreb";
}
"Zaporozhye";
{
"exemplarCity";
"Saporischja";
}
"Zurich";
{
"exemplarCity";
"Zürich";
}
}
"Africa";
{
"Abidjan";
{
"exemplarCity";
"Abidjan";
}
"Accra";
{
"exemplarCity";
"Accra";
}
"Addis_Ababa";
{
"exemplarCity";
"Addis Abeba";
}
"Algiers";
{
"exemplarCity";
"Algier";
}
"Asmera";
{
"exemplarCity";
"Asmara";
}
"Bamako";
{
"exemplarCity";
"Bamako";
}
"Bangui";
{
"exemplarCity";
"Bangui";
}
"Banjul";
{
"exemplarCity";
"Banjul";
}
"Bissau";
{
"exemplarCity";
"Bissau";
}
"Blantyre";
{
"exemplarCity";
"Blantyre";
}
"Brazzaville";
{
"exemplarCity";
"Brazzaville";
}
"Bujumbura";
{
"exemplarCity";
"Bujumbura";
}
"Cairo";
{
"exemplarCity";
"Kairo";
}
"Casablanca";
{
"exemplarCity";
"Casablanca";
}
"Ceuta";
{
"exemplarCity";
"Ceuta";
}
"Conakry";
{
"exemplarCity";
"Conakry";
}
"Dakar";
{
"exemplarCity";
"Dakar";
}
"Dar_es_Salaam";
{
"exemplarCity";
"Daressalam";
}
"Djibouti";
{
"exemplarCity";
"Dschibuti";
}
"Douala";
{
"exemplarCity";
"Douala";
}
"El_Aaiun";
{
"exemplarCity";
"El Aaiún";
}
"Freetown";
{
"exemplarCity";
"Freetown";
}
"Gaborone";
{
"exemplarCity";
"Gaborone";
}
"Harare";
{
"exemplarCity";
"Harare";
}
"Johannesburg";
{
"exemplarCity";
"Johannesburg";
}
"Juba";
{
"exemplarCity";
"Juba";
}
"Kampala";
{
"exemplarCity";
"Kampala";
}
"Khartoum";
{
"exemplarCity";
"Khartum";
}
"Kigali";
{
"exemplarCity";
"Kigali";
}
"Kinshasa";
{
"exemplarCity";
"Kinshasa";
}
"Lagos";
{
"exemplarCity";
"Lagos";
}
"Libreville";
{
"exemplarCity";
"Libreville";
}
"Lome";
{
"exemplarCity";
"Lomé";
}
"Luanda";
{
"exemplarCity";
"Luanda";
}
"Lubumbashi";
{
"exemplarCity";
"Lubumbashi";
}
"Lusaka";
{
"exemplarCity";
"Lusaka";
}
"Malabo";
{
"exemplarCity";
"Malabo";
}
"Maputo";
{
"exemplarCity";
"Maputo";
}
"Maseru";
{
"exemplarCity";
"Maseru";
}
"Mbabane";
{
"exemplarCity";
"Mbabane";
}
"Mogadishu";
{
"exemplarCity";
"Mogadischu";
}
"Monrovia";
{
"exemplarCity";
"Monrovia";
}
"Nairobi";
{
"exemplarCity";
"Nairobi";
}
"Ndjamena";
{
"exemplarCity";
"N’Djamena";
}
"Niamey";
{
"exemplarCity";
"Niamey";
}
"Nouakchott";
{
"exemplarCity";
"Nouakchott";
}
"Ouagadougou";
{
"exemplarCity";
"Ouagadougou";
}
"Porto-Novo";
{
"exemplarCity";
"Porto Novo";
}
"Sao_Tome";
{
"exemplarCity";
"São Tomé";
}
"Tripoli";
{
"exemplarCity";
"Tripolis";
}
"Tunis";
{
"exemplarCity";
"Tunis";
}
"Windhoek";
{
"exemplarCity";
"Windhoek";
}
}
"Asia";
{
"Aden";
{
"exemplarCity";
"Aden";
}
"Almaty";
{
"exemplarCity";
"Almaty";
}
"Amman";
{
"exemplarCity";
"Amman";
}
"Anadyr";
{
"exemplarCity";
"Anadyr";
}
"Aqtau";
{
"exemplarCity";
"Aqtau";
}
"Aqtobe";
{
"exemplarCity";
"Aktobe";
}
"Ashgabat";
{
"exemplarCity";
"Aşgabat";
}
"Baghdad";
{
"exemplarCity";
"Bagdad";
}
"Bahrain";
{
"exemplarCity";
"Bahrain";
}
"Baku";
{
"exemplarCity";
"Baku";
}
"Bangkok";
{
"exemplarCity";
"Bangkok";
}
"Barnaul";
{
"exemplarCity";
"Barnaul";
}
"Beirut";
{
"exemplarCity";
"Beirut";
}
"Bishkek";
{
"exemplarCity";
"Bischkek";
}
"Brunei";
{
"exemplarCity";
"Brunei";
}
"Calcutta";
{
"exemplarCity";
"Kalkutta";
}
"Chita";
{
"exemplarCity";
"Tschita";
}
"Choibalsan";
{
"exemplarCity";
"Tschoibalsan";
}
"Colombo";
{
"exemplarCity";
"Colombo";
}
"Damascus";
{
"exemplarCity";
"Damaskus";
}
"Dhaka";
{
"exemplarCity";
"Dhaka";
}
"Dili";
{
"exemplarCity";
"Dili";
}
"Dubai";
{
"exemplarCity";
"Dubai";
}
"Dushanbe";
{
"exemplarCity";
"Duschanbe";
}
"Gaza";
{
"exemplarCity";
"Gaza";
}
"Hebron";
{
"exemplarCity";
"Hebron";
}
"Hong_Kong";
{
"exemplarCity";
"Hongkong";
}
"Hovd";
{
"exemplarCity";
"Chowd";
}
"Irkutsk";
{
"exemplarCity";
"Irkutsk";
}
"Jakarta";
{
"exemplarCity";
"Jakarta";
}
"Jayapura";
{
"exemplarCity";
"Jayapura";
}
"Jerusalem";
{
"exemplarCity";
"Jerusalem";
}
"Kabul";
{
"exemplarCity";
"Kabul";
}
"Kamchatka";
{
"exemplarCity";
"Kamtschatka";
}
"Karachi";
{
"exemplarCity";
"Karatschi";
}
"Katmandu";
{
"exemplarCity";
"Kathmandu";
}
"Khandyga";
{
"exemplarCity";
"Chandyga";
}
"Krasnoyarsk";
{
"exemplarCity";
"Krasnojarsk";
}
"Kuala_Lumpur";
{
"exemplarCity";
"Kuala Lumpur";
}
"Kuching";
{
"exemplarCity";
"Kuching";
}
"Kuwait";
{
"exemplarCity";
"Kuwait";
}
"Macau";
{
"exemplarCity";
"Macao";
}
"Magadan";
{
"exemplarCity";
"Magadan";
}
"Makassar";
{
"exemplarCity";
"Makassar";
}
"Manila";
{
"exemplarCity";
"Manila";
}
"Muscat";
{
"exemplarCity";
"Maskat";
}
"Nicosia";
{
"exemplarCity";
"Nikosia";
}
"Novokuznetsk";
{
"exemplarCity";
"Nowokuznetsk";
}
"Novosibirsk";
{
"exemplarCity";
"Nowosibirsk";
}
"Omsk";
{
"exemplarCity";
"Omsk";
}
"Oral";
{
"exemplarCity";
"Oral";
}
"Phnom_Penh";
{
"exemplarCity";
"Phnom Penh";
}
"Pontianak";
{
"exemplarCity";
"Pontianak";
}
"Pyongyang";
{
"exemplarCity";
"Pjöngjang";
}
"Qatar";
{
"exemplarCity";
"Katar";
}
"Qyzylorda";
{
"exemplarCity";
"Qysylorda";
}
"Rangoon";
{
"exemplarCity";
"Rangun";
}
"Riyadh";
{
"exemplarCity";
"Riad";
}
"Saigon";
{
"exemplarCity";
"Ho-Chi-Minh-Stadt";
}
"Sakhalin";
{
"exemplarCity";
"Sachalin";
}
"Samarkand";
{
"exemplarCity";
"Samarkand";
}
"Seoul";
{
"exemplarCity";
"Seoul";
}
"Shanghai";
{
"exemplarCity";
"Shanghai";
}
"Singapore";
{
"exemplarCity";
"Singapur";
}
"Srednekolymsk";
{
"exemplarCity";
"Srednekolymsk";
}
"Taipei";
{
"exemplarCity";
"Taipeh";
}
"Tashkent";
{
"exemplarCity";
"Taschkent";
}
"Tbilisi";
{
"exemplarCity";
"Tiflis";
}
"Tehran";
{
"exemplarCity";
"Teheran";
}
"Thimphu";
{
"exemplarCity";
"Thimphu";
}
"Tokyo";
{
"exemplarCity";
"Tokio";
}
"Tomsk";
{
"exemplarCity";
"Tomsk";
}
"Ulaanbaatar";
{
"exemplarCity";
"Ulaanbaatar";
}
"Urumqi";
{
"exemplarCity";
"Ürümqi";
}
"Ust-Nera";
{
"exemplarCity";
"Ust-Nera";
}
"Vientiane";
{
"exemplarCity";
"Vientiane";
}
"Vladivostok";
{
"exemplarCity";
"Wladiwostok";
}
"Yakutsk";
{
"exemplarCity";
"Jakutsk";
}
"Yekaterinburg";
{
"exemplarCity";
"Jekaterinburg";
}
"Yerevan";
{
"exemplarCity";
"Eriwan";
}
}
"Indian";
{
"Antananarivo";
{
"exemplarCity";
"Antananarivo";
}
"Chagos";
{
"exemplarCity";
"Chagos";
}
"Christmas";
{
"exemplarCity";
"Weihnachtsinsel";
}
"Cocos";
{
"exemplarCity";
"Cocos";
}
"Comoro";
{
"exemplarCity";
"Komoren";
}
"Kerguelen";
{
"exemplarCity";
"Kerguelen";
}
"Mahe";
{
"exemplarCity";
"Mahe";
}
"Maldives";
{
"exemplarCity";
"Malediven";
}
"Mauritius";
{
"exemplarCity";
"Mauritius";
}
"Mayotte";
{
"exemplarCity";
"Mayotte";
}
"Reunion";
{
"exemplarCity";
"Réunion";
}
}
"Australia";
{
"Adelaide";
{
"exemplarCity";
"Adelaide";
}
"Brisbane";
{
"exemplarCity";
"Brisbane";
}
"Broken_Hill";
{
"exemplarCity";
"Broken Hill";
}
"Currie";
{
"exemplarCity";
"Currie";
}
"Darwin";
{
"exemplarCity";
"Darwin";
}
"Eucla";
{
"exemplarCity";
"Eucla";
}
"Hobart";
{
"exemplarCity";
"Hobart";
}
"Lindeman";
{
"exemplarCity";
"Lindeman";
}
"Lord_Howe";
{
"exemplarCity";
"Lord Howe";
}
"Melbourne";
{
"exemplarCity";
"Melbourne";
}
"Perth";
{
"exemplarCity";
"Perth";
}
"Sydney";
{
"exemplarCity";
"Sydney";
}
}
"Pacific";
{
"Apia";
{
"exemplarCity";
"Apia";
}
"Auckland";
{
"exemplarCity";
"Auckland";
}
"Bougainville";
{
"exemplarCity";
"Bougainville";
}
"Chatham";
{
"exemplarCity";
"Chatham";
}
"Easter";
{
"exemplarCity";
"Osterinsel";
}
"Efate";
{
"exemplarCity";
"Efate";
}
"Enderbury";
{
"exemplarCity";
"Enderbury";
}
"Fakaofo";
{
"exemplarCity";
"Fakaofo";
}
"Fiji";
{
"exemplarCity";
"Fidschi";
}
"Funafuti";
{
"exemplarCity";
"Funafuti";
}
"Galapagos";
{
"exemplarCity";
"Galapagos";
}
"Gambier";
{
"exemplarCity";
"Gambier";
}
"Guadalcanal";
{
"exemplarCity";
"Guadalcanal";
}
"Guam";
{
"exemplarCity";
"Guam";
}
"Honolulu";
{
"exemplarCity";
"Honolulu";
}
"Johnston";
{
"exemplarCity";
"Johnston";
}
"Kiritimati";
{
"exemplarCity";
"Kiritimati";
}
"Kosrae";
{
"exemplarCity";
"Kosrae";
}
"Kwajalein";
{
"exemplarCity";
"Kwajalein";
}
"Majuro";
{
"exemplarCity";
"Majuro";
}
"Marquesas";
{
"exemplarCity";
"Marquesas";
}
"Midway";
{
"exemplarCity";
"Midway";
}
"Nauru";
{
"exemplarCity";
"Nauru";
}
"Niue";
{
"exemplarCity";
"Niue";
}
"Norfolk";
{
"exemplarCity";
"Norfolk";
}
"Noumea";
{
"exemplarCity";
"Noumea";
}
"Pago_Pago";
{
"exemplarCity";
"Pago Pago";
}
"Palau";
{
"exemplarCity";
"Palau";
}
"Pitcairn";
{
"exemplarCity";
"Pitcairn";
}
"Ponape";
{
"exemplarCity";
"Pohnpei";
}
"Port_Moresby";
{
"exemplarCity";
"Port Moresby";
}
"Rarotonga";
{
"exemplarCity";
"Rarotonga";
}
"Saipan";
{
"exemplarCity";
"Saipan";
}
"Tahiti";
{
"exemplarCity";
"Tahiti";
}
"Tarawa";
{
"exemplarCity";
"Tarawa";
}
"Tongatapu";
{
"exemplarCity";
"Tongatapu";
}
"Truk";
{
"exemplarCity";
"Chuuk";
}
"Wake";
{
"exemplarCity";
"Wake";
}
"Wallis";
{
"exemplarCity";
"Wallis";
}
}
"Arctic";
{
"Longyearbyen";
{
"exemplarCity";
"Longyearbyen";
}
}
"Antarctica";
{
"Casey";
{
"exemplarCity";
"Casey";
}
"Davis";
{
"exemplarCity";
"Davis";
}
"DumontDUrville";
{
"exemplarCity";
"Dumont d’Urville";
}
"Macquarie";
{
"exemplarCity";
"Macquarie";
}
"Mawson";
{
"exemplarCity";
"Mawson";
}
"McMurdo";
{
"exemplarCity";
"McMurdo";
}
"Palmer";
{
"exemplarCity";
"Palmer";
}
"Rothera";
{
"exemplarCity";
"Rothera";
}
"Syowa";
{
"exemplarCity";
"Syowa";
}
"Troll";
{
"exemplarCity";
"Troll";
}
"Vostok";
{
"exemplarCity";
"Wostok";
}
}
"Etc";
{
"GMT";
{
"exemplarCity";
"GMT";
}
"GMT1";
{
"exemplarCity";
"GMT+1";
}
"GMT10";
{
"exemplarCity";
"GMT+10";
}
"GMT11";
{
"exemplarCity";
"GMT+11";
}
"GMT12";
{
"exemplarCity";
"GMT+12";
}
"GMT2";
{
"exemplarCity";
"GMT+2";
}
"GMT3";
{
"exemplarCity";
"GMT+3";
}
"GMT4";
{
"exemplarCity";
"GMT+4";
}
"GMT5";
{
"exemplarCity";
"GMT+5";
}
"GMT6";
{
"exemplarCity";
"GMT+6";
}
"GMT7";
{
"exemplarCity";
"GMT+7";
}
"GMT8";
{
"exemplarCity";
"GMT+8";
}
"GMT9";
{
"exemplarCity";
"GMT+9";
}
"GMT-1";
{
"exemplarCity";
"GMT-1";
}
"GMT-10";
{
"exemplarCity";
"GMT-10";
}
"GMT-11";
{
"exemplarCity";
"GMT-11";
}
"GMT-12";
{
"exemplarCity";
"GMT-12";
}
"GMT-13";
{
"exemplarCity";
"GMT-13";
}
"GMT-14";
{
"exemplarCity";
"GMT-14";
}
"GMT-2";
{
"exemplarCity";
"GMT-2";
}
"GMT-3";
{
"exemplarCity";
"GMT-3";
}
"GMT-4";
{
"exemplarCity";
"GMT-4";
}
"GMT-5";
{
"exemplarCity";
"GMT-5";
}
"GMT-6";
{
"exemplarCity";
"GMT-6";
}
"GMT-7";
{
"exemplarCity";
"GMT-7";
}
"GMT-8";
{
"exemplarCity";
"GMT-8";
}
"GMT-9";
{
"exemplarCity";
"GMT-9";
}
"Unknown";
{
"exemplarCity";
"Unbekannt";
}
}
}
"metazone";
{
"Acre";
{
"long";
{
"generic";
"Acre-Zeit",
"standard";
"Acre-Normalzeit",
"daylight";
"Acre-Sommerzeit";
}
}
"Afghanistan";
{
"long";
{
"standard";
"Afghanistan-Zeit";
}
}
"Africa_Central";
{
"long";
{
"standard";
"Zentralafrikanische Zeit";
}
}
"Africa_Eastern";
{
"long";
{
"standard";
"Ostafrikanische Zeit";
}
}
"Africa_Southern";
{
"long";
{
"standard";
"Südafrikanische Zeit";
}
}
"Africa_Western";
{
"long";
{
"generic";
"Westafrikanische Zeit",
"standard";
"Westafrikanische Normalzeit",
"daylight";
"Westafrikanische Sommerzeit";
}
}
"Alaska";
{
"long";
{
"generic";
"Alaska-Zeit",
"standard";
"Alaska-Normalzeit",
"daylight";
"Alaska-Sommerzeit";
}
}
"Almaty";
{
"long";
{
"generic";
"Almaty-Zeit",
"standard";
"Almaty-Normalzeit",
"daylight";
"Almaty-Sommerzeit";
}
}
"Amazon";
{
"long";
{
"generic";
"Amazonas-Zeit",
"standard";
"Amazonas-Normalzeit",
"daylight";
"Amazonas-Sommerzeit";
}
}
"America_Central";
{
"long";
{
"generic";
"Nordamerikanische Inlandzeit",
"standard";
"Nordamerikanische Inland-Normalzeit",
"daylight";
"Nordamerikanische Inland-Sommerzeit";
}
}
"America_Eastern";
{
"long";
{
"generic";
"Nordamerikanische Ostküstenzeit",
"standard";
"Nordamerikanische Ostküsten-Normalzeit",
"daylight";
"Nordamerikanische Ostküsten-Sommerzeit";
}
}
"America_Mountain";
{
"long";
{
"generic";
"Rocky-Mountain-Zeit",
"standard";
"Rocky Mountain-Normalzeit",
"daylight";
"Rocky-Mountain-Sommerzeit";
}
}
"America_Pacific";
{
"long";
{
"generic";
"Nordamerikanische Westküstenzeit",
"standard";
"Nordamerikanische Westküsten-Normalzeit",
"daylight";
"Nordamerikanische Westküsten-Sommerzeit";
}
}
"Anadyr";
{
"long";
{
"generic";
"Anadyr Zeit",
"standard";
"Anadyr Normalzeit",
"daylight";
"Anadyr Sommerzeit";
}
}
"Apia";
{
"long";
{
"generic";
"Apia-Zeit",
"standard";
"Apia-Normalzeit",
"daylight";
"Apia-Sommerzeit";
}
}
"Aqtau";
{
"long";
{
"generic";
"Aqtau-Zeit",
"standard";
"Aqtau-Normalzeit",
"daylight";
"Aqtau-Sommerzeit";
}
}
"Aqtobe";
{
"long";
{
"generic";
"Aqtöbe-Zeit",
"standard";
"Aqtöbe-Normalzeit",
"daylight";
"Aqtöbe-Sommerzeit";
}
}
"Arabian";
{
"long";
{
"generic";
"Arabische Zeit",
"standard";
"Arabische Normalzeit",
"daylight";
"Arabische Sommerzeit";
}
}
"Argentina";
{
"long";
{
"generic";
"Argentinische Zeit",
"standard";
"Argentinische Normalzeit",
"daylight";
"Argentinische Sommerzeit";
}
}
"Argentina_Western";
{
"long";
{
"generic";
"Westargentinische Zeit",
"standard";
"Westargentinische Normalzeit",
"daylight";
"Westargentinische Sommerzeit";
}
}
"Armenia";
{
"long";
{
"generic";
"Armenische Zeit",
"standard";
"Armenische Normalzeit",
"daylight";
"Armenische Sommerzeit";
}
}
"Atlantic";
{
"long";
{
"generic";
"Atlantik-Zeit",
"standard";
"Atlantik-Normalzeit",
"daylight";
"Atlantik-Sommerzeit";
}
}
"Australia_Central";
{
"long";
{
"generic";
"Zentralaustralische Zeit",
"standard";
"Zentralaustralische Normalzeit",
"daylight";
"Zentralaustralische Sommerzeit";
}
}
"Australia_CentralWestern";
{
"long";
{
"generic";
"Zentral-/Westaustralische Zeit",
"standard";
"Zentral-/Westaustralische Normalzeit",
"daylight";
"Zentral-/Westaustralische Sommerzeit";
}
}
"Australia_Eastern";
{
"long";
{
"generic";
"Ostaustralische Zeit",
"standard";
"Ostaustralische Normalzeit",
"daylight";
"Ostaustralische Sommerzeit";
}
}
"Australia_Western";
{
"long";
{
"generic";
"Westaustralische Zeit",
"standard";
"Westaustralische Normalzeit",
"daylight";
"Westaustralische Sommerzeit";
}
}
"Azerbaijan";
{
"long";
{
"generic";
"Aserbaidschanische Zeit",
"standard";
"Aserbeidschanische Normalzeit",
"daylight";
"Aserbaidschanische Sommerzeit";
}
}
"Azores";
{
"long";
{
"generic";
"Azoren-Zeit",
"standard";
"Azoren-Normalzeit",
"daylight";
"Azoren-Sommerzeit";
}
}
"Bangladesh";
{
"long";
{
"generic";
"Bangladesch-Zeit",
"standard";
"Bangladesch-Normalzeit",
"daylight";
"Bangladesch-Sommerzeit";
}
}
"Bhutan";
{
"long";
{
"standard";
"Bhutan-Zeit";
}
}
"Bolivia";
{
"long";
{
"standard";
"Bolivianische Zeit";
}
}
"Brasilia";
{
"long";
{
"generic";
"Brasília-Zeit",
"standard";
"Brasília-Normalzeit",
"daylight";
"Brasília-Sommerzeit";
}
}
"Brunei";
{
"long";
{
"standard";
"Brunei-Zeit";
}
}
"Cape_Verde";
{
"long";
{
"generic";
"Cabo-Verde-Zeit",
"standard";
"Cabo-Verde-Normalzeit",
"daylight";
"Cabo-Verde-Sommerzeit";
}
}
"Casey";
{
"long";
{
"standard";
"Casey-Zeit";
}
}
"Chamorro";
{
"long";
{
"standard";
"Chamorro-Zeit";
}
}
"Chatham";
{
"long";
{
"generic";
"Chatham-Zeit",
"standard";
"Chatham-Normalzeit",
"daylight";
"Chatham-Sommerzeit";
}
}
"Chile";
{
"long";
{
"generic";
"Chilenische Zeit",
"standard";
"Chilenische Normalzeit",
"daylight";
"Chilenische Sommerzeit";
}
}
"China";
{
"long";
{
"generic";
"Chinesische Zeit",
"standard";
"Chinesische Normalzeit",
"daylight";
"Chinesische Sommerzeit";
}
}
"Choibalsan";
{
"long";
{
"generic";
"Tschoibalsan-Zeit",
"standard";
"Tschoibalsan-Normalzeit",
"daylight";
"Tschoibalsan-Sommerzeit";
}
}
"Christmas";
{
"long";
{
"standard";
"Weihnachtsinsel-Zeit";
}
}
"Cocos";
{
"long";
{
"standard";
"Kokosinseln-Zeit";
}
}
"Colombia";
{
"long";
{
"generic";
"Kolumbianische Zeit",
"standard";
"Kolumbianische Normalzeit",
"daylight";
"Kolumbianische Sommerzeit";
}
}
"Cook";
{
"long";
{
"generic";
"Cookinseln-Zeit",
"standard";
"Cookinseln-Normalzeit",
"daylight";
"Cookinseln-Sommerzeit";
}
}
"Cuba";
{
"long";
{
"generic";
"Kubanische Zeit",
"standard";
"Kubanische Normalzeit",
"daylight";
"Kubanische Sommerzeit";
}
}
"Davis";
{
"long";
{
"standard";
"Davis-Zeit";
}
}
"DumontDUrville";
{
"long";
{
"standard";
"Dumont-d’Urville-Zeit";
}
}
"East_Timor";
{
"long";
{
"standard";
"Osttimor-Zeit";
}
}
"Easter";
{
"long";
{
"generic";
"Osterinsel-Zeit",
"standard";
"Osterinsel-Normalzeit",
"daylight";
"Osterinsel-Sommerzeit";
}
}
"Ecuador";
{
"long";
{
"standard";
"Ecuadorianische Zeit";
}
}
"Europe_Central";
{
"long";
{
"generic";
"Mitteleuropäische Zeit",
"standard";
"Mitteleuropäische Normalzeit",
"daylight";
"Mitteleuropäische Sommerzeit";
}
"short";
{
"generic";
"MEZ",
"standard";
"MEZ",
"daylight";
"MESZ";
}
}
"Europe_Eastern";
{
"long";
{
"generic";
"Osteuropäische Zeit",
"standard";
"Osteuropäische Normalzeit",
"daylight";
"Osteuropäische Sommerzeit";
}
"short";
{
"generic";
"OEZ",
"standard";
"OEZ",
"daylight";
"OESZ";
}
}
"Europe_Further_Eastern";
{
"long";
{
"standard";
"Kaliningrader Zeit";
}
}
"Europe_Western";
{
"long";
{
"generic";
"Westeuropäische Zeit",
"standard";
"Westeuropäische Normalzeit",
"daylight";
"Westeuropäische Sommerzeit";
}
"short";
{
"generic";
"WEZ",
"standard";
"WEZ",
"daylight";
"WESZ";
}
}
"Falkland";
{
"long";
{
"generic";
"Falklandinseln-Zeit",
"standard";
"Falklandinseln-Normalzeit",
"daylight";
"Falklandinseln-Sommerzeit";
}
}
"Fiji";
{
"long";
{
"generic";
"Fidschi-Zeit",
"standard";
"Fidschi-Normalzeit",
"daylight";
"Fidschi-Sommerzeit";
}
}
"French_Guiana";
{
"long";
{
"standard";
"Französisch-Guayana-Zeit";
}
}
"French_Southern";
{
"long";
{
"standard";
"Französische Süd- und Antarktisgebiete-Zeit";
}
}
"Galapagos";
{
"long";
{
"standard";
"Galapagos-Zeit";
}
}
"Gambier";
{
"long";
{
"standard";
"Gambier-Zeit";
}
}
"Georgia";
{
"long";
{
"generic";
"Georgische Zeit",
"standard";
"Georgische Normalzeit",
"daylight";
"Georgische Sommerzeit";
}
}
"Gilbert_Islands";
{
"long";
{
"standard";
"Gilbert-Inseln-Zeit";
}
}
"GMT";
{
"long";
{
"standard";
"Mittlere Greenwich-Zeit";
}
}
"Greenland_Eastern";
{
"long";
{
"generic";
"Ostgrönland-Zeit",
"standard";
"Ostgrönland-Normalzeit",
"daylight";
"Ostgrönland-Sommerzeit";
}
}
"Greenland_Western";
{
"long";
{
"generic";
"Westgrönland-Zeit",
"standard";
"Westgrönland-Normalzeit",
"daylight";
"Westgrönland-Sommerzeit";
}
}
"Guam";
{
"long";
{
"standard";
"Guam-Zeit";
}
}
"Gulf";
{
"long";
{
"standard";
"Golf-Zeit";
}
}
"Guyana";
{
"long";
{
"standard";
"Guyana-Zeit";
}
}
"Hawaii_Aleutian";
{
"long";
{
"generic";
"Hawaii-Aleuten-Zeit",
"standard";
"Hawaii-Aleuten-Normalzeit",
"daylight";
"Hawaii-Aleuten-Sommerzeit";
}
}
"Hong_Kong";
{
"long";
{
"generic";
"Hongkong-Zeit",
"standard";
"Hongkong-Normalzeit",
"daylight";
"Hongkong-Sommerzeit";
}
}
"Hovd";
{
"long";
{
"generic";
"Chowd-Zeit",
"standard";
"Chowd-Normalzeit",
"daylight";
"Chowd-Sommerzeit";
}
}
"India";
{
"long";
{
"standard";
"Indische Zeit";
}
}
"Indian_Ocean";
{
"long";
{
"standard";
"Indischer Ozean-Zeit";
}
}
"Indochina";
{
"long";
{
"standard";
"Indochina-Zeit";
}
}
"Indonesia_Central";
{
"long";
{
"standard";
"Zentralindonesische Zeit";
}
}
"Indonesia_Eastern";
{
"long";
{
"standard";
"Ostindonesische Zeit";
}
}
"Indonesia_Western";
{
"long";
{
"standard";
"Westindonesische Zeit";
}
}
"Iran";
{
"long";
{
"generic";
"Iranische Zeit",
"standard";
"Iranische Normalzeit",
"daylight";
"Iranische Sommerzeit";
}
}
"Irkutsk";
{
"long";
{
"generic";
"Irkutsk-Zeit",
"standard";
"Irkutsk-Normalzeit",
"daylight";
"Irkutsk-Sommerzeit";
}
}
"Israel";
{
"long";
{
"generic";
"Israelische Zeit",
"standard";
"Israelische Normalzeit",
"daylight";
"Israelische Sommerzeit";
}
}
"Japan";
{
"long";
{
"generic";
"Japanische Zeit",
"standard";
"Japanische Normalzeit",
"daylight";
"Japanische Sommerzeit";
}
}
"Kamchatka";
{
"long";
{
"generic";
"Kamtschatka-Zeit",
"standard";
"Kamtschatka-Normalzeit",
"daylight";
"Kamtschatka-Sommerzeit";
}
}
"Kazakhstan_Eastern";
{
"long";
{
"standard";
"Ostkasachische Zeit";
}
}
"Kazakhstan_Western";
{
"long";
{
"standard";
"Westkasachische Zeit";
}
}
"Korea";
{
"long";
{
"generic";
"Koreanische Zeit",
"standard";
"Koreanische Normalzeit",
"daylight";
"Koreanische Sommerzeit";
}
}
"Kosrae";
{
"long";
{
"standard";
"Kosrae-Zeit";
}
}
"Krasnoyarsk";
{
"long";
{
"generic";
"Krasnojarsk-Zeit",
"standard";
"Krasnojarsk-Normalzeit",
"daylight";
"Krasnojarsk-Sommerzeit";
}
}
"Kyrgystan";
{
"long";
{
"standard";
"Kirgisistan-Zeit";
}
}
"Lanka";
{
"long";
{
"standard";
"Sri-Lanka-Zeit";
}
}
"Line_Islands";
{
"long";
{
"standard";
"Linieninseln-Zeit";
}
}
"Lord_Howe";
{
"long";
{
"generic";
"Lord-Howe-Zeit",
"standard";
"Lord-Howe-Normalzeit",
"daylight";
"Lord-Howe-Sommerzeit";
}
}
"Macau";
{
"long";
{
"generic";
"Macau-Zeit",
"standard";
"Macau-Normalzeit",
"daylight";
"Macau-Sommerzeit";
}
}
"Macquarie";
{
"long";
{
"standard";
"Macquarieinsel-Zeit";
}
}
"Magadan";
{
"long";
{
"generic";
"Magadan-Zeit",
"standard";
"Magadan-Normalzeit",
"daylight";
"Magadan-Sommerzeit";
}
}
"Malaysia";
{
"long";
{
"standard";
"Malaysische Zeit";
}
}
"Maldives";
{
"long";
{
"standard";
"Malediven-Zeit";
}
}
"Marquesas";
{
"long";
{
"standard";
"Marquesas-Zeit";
}
}
"Marshall_Islands";
{
"long";
{
"standard";
"Marshallinseln-Zeit";
}
}
"Mauritius";
{
"long";
{
"generic";
"Mauritius-Zeit",
"standard";
"Mauritius-Normalzeit",
"daylight";
"Mauritius-Sommerzeit";
}
}
"Mawson";
{
"long";
{
"standard";
"Mawson-Zeit";
}
}
"Mexico_Northwest";
{
"long";
{
"generic";
"Mexiko Nordwestliche Zone-Zeit",
"standard";
"Mexiko Nordwestliche Zone-Normalzeit",
"daylight";
"Mexiko Nordwestliche Zone-Sommerzeit";
}
}
"Mexico_Pacific";
{
"long";
{
"generic";
"Mexiko Pazifikzone-Zeit",
"standard";
"Mexiko Pazifikzone-Normalzeit",
"daylight";
"Mexiko Pazifikzone-Sommerzeit";
}
}
"Mongolia";
{
"long";
{
"generic";
"Ulaanbaatar-Zeit",
"standard";
"Ulaanbaatar-Normalzeit",
"daylight";
"Ulaanbaatar-Sommerzeit";
}
}
"Moscow";
{
"long";
{
"generic";
"Moskauer Zeit",
"standard";
"Moskauer Normalzeit",
"daylight";
"Moskauer Sommerzeit";
}
}
"Myanmar";
{
"long";
{
"standard";
"Myanmar-Zeit";
}
}
"Nauru";
{
"long";
{
"standard";
"Nauru-Zeit";
}
}
"Nepal";
{
"long";
{
"standard";
"Nepalesische Zeit";
}
}
"New_Caledonia";
{
"long";
{
"generic";
"Neukaledonische Zeit",
"standard";
"Neukaledonische Normalzeit",
"daylight";
"Neukaledonische Sommerzeit";
}
}
"New_Zealand";
{
"long";
{
"generic";
"Neuseeland-Zeit",
"standard";
"Neuseeland-Normalzeit",
"daylight";
"Neuseeland-Sommerzeit";
}
}
"Newfoundland";
{
"long";
{
"generic";
"Neufundland-Zeit",
"standard";
"Neufundland-Normalzeit",
"daylight";
"Neufundland-Sommerzeit";
}
}
"Niue";
{
"long";
{
"standard";
"Niue-Zeit";
}
}
"Norfolk";
{
"long";
{
"standard";
"Norfolkinsel-Zeit";
}
}
"Noronha";
{
"long";
{
"generic";
"Fernando de Noronha-Zeit",
"standard";
"Fernando de Noronha-Normalzeit",
"daylight";
"Fernando de Noronha-Sommerzeit";
}
}
"North_Mariana";
{
"long";
{
"standard";
"Nördliche-Marianen-Zeit";
}
}
"Novosibirsk";
{
"long";
{
"generic";
"Nowosibirsk-Zeit",
"standard";
"Nowosibirsk-Normalzeit",
"daylight";
"Nowosibirsk-Sommerzeit";
}
}
"Omsk";
{
"long";
{
"generic";
"Omsk-Zeit",
"standard";
"Omsk-Normalzeit",
"daylight";
"Omsk-Sommerzeit";
}
}
"Pakistan";
{
"long";
{
"generic";
"Pakistanische Zeit",
"standard";
"Pakistanische Normalzeit",
"daylight";
"Pakistanische Sommerzeit";
}
}
"Palau";
{
"long";
{
"standard";
"Palau-Zeit";
}
}
"Papua_New_Guinea";
{
"long";
{
"standard";
"Papua-Neuguinea-Zeit";
}
}
"Paraguay";
{
"long";
{
"generic";
"Paraguayanische Zeit",
"standard";
"Paraguayanische Normalzeit",
"daylight";
"Paraguayanische Sommerzeit";
}
}
"Peru";
{
"long";
{
"generic";
"Peruanische Zeit",
"standard";
"Peruanische Normalzeit",
"daylight";
"Peruanische Sommerzeit";
}
}
"Philippines";
{
"long";
{
"generic";
"Philippinische Zeit",
"standard";
"Philippinische Normalzeit",
"daylight";
"Philippinische Sommerzeit";
}
}
"Phoenix_Islands";
{
"long";
{
"standard";
"Phoenixinseln-Zeit";
}
}
"Pierre_Miquelon";
{
"long";
{
"generic";
"Saint-Pierre-und-Miquelon-Zeit",
"standard";
"Saint-Pierre-und-Miquelon-Normalzeit",
"daylight";
"Saint-Pierre-und-Miquelon-Sommerzeit";
}
}
"Pitcairn";
{
"long";
{
"standard";
"Pitcairninseln-Zeit";
}
}
"Ponape";
{
"long";
{
"standard";
"Ponape-Zeit";
}
}
"Pyongyang";
{
"long";
{
"standard";
"Pjöngjang-Zeit";
}
}
"Qyzylorda";
{
"long";
{
"generic";
"Quysylorda-Zeit",
"standard";
"Quysylorda-Normalzeit",
"daylight";
"Qysylorda-Sommerzeit";
}
}
"Reunion";
{
"long";
{
"standard";
"Réunion-Zeit";
}
}
"Rothera";
{
"long";
{
"standard";
"Rothera-Zeit";
}
}
"Sakhalin";
{
"long";
{
"generic";
"Sachalin-Zeit",
"standard";
"Sachalin-Normalzeit",
"daylight";
"Sachalin-Sommerzeit";
}
}
"Samara";
{
"long";
{
"generic";
"Samara-Zeit",
"standard";
"Samara-Normalzeit",
"daylight";
"Samara-Sommerzeit";
}
}
"Samoa";
{
"long";
{
"generic";
"Samoa-Zeit",
"standard";
"Samoa-Normalzeit",
"daylight";
"Samoa-Sommerzeit";
}
}
"Seychelles";
{
"long";
{
"standard";
"Seychellen-Zeit";
}
}
"Singapore";
{
"long";
{
"standard";
"Singapur-Zeit";
}
}
"Solomon";
{
"long";
{
"standard";
"Salomoninseln-Zeit";
}
}
"South_Georgia";
{
"long";
{
"standard";
"Südgeorgische Zeit";
}
}
"Suriname";
{
"long";
{
"standard";
"Suriname-Zeit";
}
}
"Syowa";
{
"long";
{
"standard";
"Syowa-Zeit";
}
}
"Tahiti";
{
"long";
{
"standard";
"Tahiti-Zeit";
}
}
"Taipei";
{
"long";
{
"generic";
"Taipeh-Zeit",
"standard";
"Taipeh-Normalzeit",
"daylight";
"Taipeh-Sommerzeit";
}
}
"Tajikistan";
{
"long";
{
"standard";
"Tadschikistan-Zeit";
}
}
"Tokelau";
{
"long";
{
"standard";
"Tokelau-Zeit";
}
}
"Tonga";
{
"long";
{
"generic";
"Tonganische Zeit",
"standard";
"Tonganische Normalzeit",
"daylight";
"Tonganische Sommerzeit";
}
}
"Truk";
{
"long";
{
"standard";
"Chuuk-Zeit";
}
}
"Turkmenistan";
{
"long";
{
"generic";
"Turkmenistan-Zeit",
"standard";
"Turkmenistan-Normalzeit",
"daylight";
"Turkmenistan-Sommerzeit";
}
}
"Tuvalu";
{
"long";
{
"standard";
"Tuvalu-Zeit";
}
}
"Uruguay";
{
"long";
{
"generic";
"Uruguayanische Zeit",
"standard";
"Uruguyanische Normalzeit",
"daylight";
"Uruguayanische Sommerzeit";
}
}
"Uzbekistan";
{
"long";
{
"generic";
"Usbekistan-Zeit",
"standard";
"Usbekistan-Normalzeit",
"daylight";
"Usbekistan-Sommerzeit";
}
}
"Vanuatu";
{
"long";
{
"generic";
"Vanuatu-Zeit",
"standard";
"Vanuatu-Normalzeit",
"daylight";
"Vanuatu-Sommerzeit";
}
}
"Venezuela";
{
"long";
{
"standard";
"Venezuela-Zeit";
}
}
"Vladivostok";
{
"long";
{
"generic";
"Wladiwostok-Zeit",
"standard";
"Wladiwostok-Normalzeit",
"daylight";
"Wladiwostok-Sommerzeit";
}
}
"Volgograd";
{
"long";
{
"generic";
"Wolgograd-Zeit",
"standard";
"Wolgograd-Normalzeit",
"daylight";
"Wolgograd-Sommerzeit";
}
}
"Vostok";
{
"long";
{
"standard";
"Wostok-Zeit";
}
}
"Wake";
{
"long";
{
"standard";
"Wake-Insel-Zeit";
}
}
"Wallis";
{
"long";
{
"standard";
"Wallis-und-Futuna-Zeit";
}
}
"Yakutsk";
{
"long";
{
"generic";
"Jakutsk-Zeit",
"standard";
"Jakutsk-Normalzeit",
"daylight";
"Jakutsk-Sommerzeit";
}
}
"Yekaterinburg";
{
"long";
{
"generic";
"Jekaterinburg-Zeit",
"standard";
"Jekaterinburg-Normalzeit",
"daylight";
"Jekaterinburg-Sommerzeit";
}
}
}
}
}
}
}
}
[Functional-component]
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "de"
},
"dates": {
"calendars": {
"gregorian": {
"months": {
"format": {
"abbreviated": {
"1": "Jan.",
"2": "Feb.",
"3": "März",
"4": "Apr.",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "Aug.",
"9": "Sep.",
"10": "Okt.",
"11": "Nov.",
"12": "Dez."
},
"narrow": {
"1": "J",
"2": "F",
"3": "M",
"4": "A",
"5": "M",
"6": "J",
"7": "J",
"8": "A",
"9": "S",
"10": "O",
"11": "N",
"12": "D"
},
"wide": {
"1": "Januar",
"2": "Februar",
"3": "März",
"4": "April",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "August",
"9": "September",
"10": "Oktober",
"11": "November",
"12": "Dezember"
}
},
"stand-alone": {
"abbreviated": {
"1": "Jan",
"2": "Feb",
"3": "Mär",
"4": "Apr",
"5": "Mai",
"6": "Jun",
"7": "Jul",
"8": "Aug",
"9": "Sep",
"10": "Okt",
"11": "Nov",
"12": "Dez"
},
"narrow": {
"1": "J",
"2": "F",
"3": "M",
"4": "A",
"5": "M",
"6": "J",
"7": "J",
"8": "A",
"9": "S",
"10": "O",
"11": "N",
"12": "D"
},
"wide": {
"1": "Januar",
"2": "Februar",
"3": "März",
"4": "April",
"5": "Mai",
"6": "Juni",
"7": "Juli",
"8": "August",
"9": "September",
"10": "Oktober",
"11": "November",
"12": "Dezember"
}
}
},
"days": {
"format": {
"abbreviated": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"narrow": {
"sun": "S",
"mon": "M",
"tue": "D",
"wed": "M",
"thu": "D",
"fri": "F",
"sat": "S"
},
"short": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"wide": {
"sun": "Sonntag",
"mon": "Montag",
"tue": "Dienstag",
"wed": "Mittwoch",
"thu": "Donnerstag",
"fri": "Freitag",
"sat": "Samstag"
}
},
"stand-alone": {
"abbreviated": {
"sun": "So",
"mon": "Mo",
"tue": "Di",
"wed": "Mi",
"thu": "Do",
"fri": "Fr",
"sat": "Sa"
},
"narrow": {
"sun": "S",
"mon": "M",
"tue": "D",
"wed": "M",
"thu": "D",
"fri": "F",
"sat": "S"
},
"short": {
"sun": "So.",
"mon": "Mo.",
"tue": "Di.",
"wed": "Mi.",
"thu": "Do.",
"fri": "Fr.",
"sat": "Sa."
},
"wide": {
"sun": "Sonntag",
"mon": "Montag",
"tue": "Dienstag",
"wed": "Mittwoch",
"thu": "Donnerstag",
"fri": "Freitag",
"sat": "Samstag"
}
}
},
"quarters": {
"format": {
"abbreviated": {
"1": "Q1",
"2": "Q2",
"3": "Q3",
"4": "Q4"
},
"narrow": {
"1": "1",
"2": "2",
"3": "3",
"4": "4"
},
"wide": {
"1": "1. Quartal",
"2": "2. Quartal",
"3": "3. Quartal",
"4": "4. Quartal"
}
},
"stand-alone": {
"abbreviated": {
"1": "Q1",
"2": "Q2",
"3": "Q3",
"4": "Q4"
},
"narrow": {
"1": "1",
"2": "2",
"3": "3",
"4": "4"
},
"wide": {
"1": "1. Quartal",
"2": "2. Quartal",
"3": "3. Quartal",
"4": "4. Quartal"
}
}
},
"dayPeriods": {
"format": {
"abbreviated": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
},
"narrow": {
"midnight": "Mitternacht",
"am": "vm.",
"pm": "nm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
},
"wide": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "morgens",
"morning2": "vormittags",
"afternoon1": "mittags",
"afternoon2": "nachmittags",
"evening1": "abends",
"night1": "nachts"
}
},
"stand-alone": {
"abbreviated": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
},
"narrow": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
},
"wide": {
"midnight": "Mitternacht",
"am": "vorm.",
"pm": "nachm.",
"morning1": "Morgen",
"morning2": "Vormittag",
"afternoon1": "Mittag",
"afternoon2": "Nachmittag",
"evening1": "Abend",
"night1": "Nacht"
}
}
},
"eras": {
"eraNames": {
"0": "v. Chr.",
"0-alt-variant": "vor unserer Zeitrechnung",
"1": "n. Chr.",
"1-alt-variant": "unserer Zeitrechnung"
},
"eraAbbr": {
"0": "v. Chr.",
"0-alt-variant": "v. u. Z.",
"1": "n. Chr.",
"1-alt-variant": "u. Z."
},
"eraNarrow": {
"0": "v. Chr.",
"0-alt-variant": "v. u. Z.",
"1": "n. Chr.",
"1-alt-variant": "u. Z."
}
},
"dateFormats": {
"full": "EEEE, d. MMMM y",
"long": "d. MMMM y",
"medium": "dd.MM.y",
"short": "dd.MM.yy"
},
"timeFormats": {
"full": "HH:mm:ss zzzz",
"long": "HH:mm:ss z",
"medium": "HH:mm:ss",
"short": "HH:mm"
},
"dateTimeFormats": {
"full": "{1} 'um' {0}",
"long": "{1} 'um' {0}",
"medium": "{1}, {0}",
"short": "{1}, {0}",
"availableFormats": {
"d": "d",
"E": "ccc",
"Ed": "E, d.",
"Ehm": "E h:mm a",
"EHm": "E, HH:mm",
"Ehms": "E, h:mm:ss a",
"EHms": "E, HH:mm:ss",
"Gy": "y G",
"GyMMM": "MMM y G",
"GyMMMd": "d. MMM y G",
"GyMMMEd": "E, d. MMM y G",
"h": "h 'Uhr' a",
"H": "HH 'Uhr'",
"hm": "h:mm a",
"Hm": "HH:mm",
"hms": "h:mm:ss a",
"Hms": "HH:mm:ss",
"hmsv": "h:mm:ss a v",
"Hmsv": "HH:mm:ss v",
"hmv": "h:mm a v",
"Hmv": "HH:mm v",
"M": "L",
"Md": "d.M.",
"MEd": "E, d.M.",
"MMd": "d.MM.",
"MMdd": "dd.MM.",
"MMM": "LLL",
"MMMd": "d. MMM",
"MMMEd": "E, d. MMM",
"MMMMd": "d. MMMM",
"MMMMEd": "E, d. MMMM",
"MMMMW": "'Woche' W 'im' MMM",
"MMMMW": "'Woche' W 'im' MMM",
"ms": "mm:ss",
"y": "y",
"yM": "M.y",
"yMd": "d.M.y",
"yMEd": "E, d.M.y",
"yMM": "MM.y",
"yMMdd": "dd.MM.y",
"yMMM": "MMM y",
"yMMMd": "d. MMM y",
"yMMMEd": "E, d. MMM y",
"yMMMM": "MMMM y",
"yQQQ": "QQQ y",
"yQQQQ": "QQQQ y",
"yw": "'Woche' w 'des' 'Jahres' y",
"yw": "'Woche' w 'des' 'Jahres' y"
},
"appendItems": {
"Day": "{0} ({2}: {1})",
"Day-Of-Week": "{0} {1}",
"Era": "{1} {0}",
"Hour": "{0} ({2}: {1})",
"Minute": "{0} ({2}: {1})",
"Month": "{0} ({2}: {1})",
"Quarter": "{0} ({2}: {1})",
"Second": "{0} ({2}: {1})",
"Timezone": "{0} {1}",
"Week": "{0} ({2}: {1})",
"Year": "{1} {0}"
},
"intervalFormats": {
"intervalFormatFallback": "{0} – {1}",
"d": {
"d": "d.–d."
},
"h": {
"a": "h 'Uhr' a – h 'Uhr' a",
"h": "h – h 'Uhr' a"
},
"H": {
"H": "HH–HH 'Uhr'"
},
"hm": {
"a": "h:mm a – h:mm a",
"h": "h:mm–h:mm a",
"m": "h:mm–h:mm a"
},
"Hm": {
"H": "HH:mm–HH:mm 'Uhr'",
"m": "HH:mm–HH:mm 'Uhr'"
},
"hmv": {
"a": "h:mm a – h:mm a v",
"h": "h:mm–h:mm a v",
"m": "h:mm–h:mm a v"
},
"Hmv": {
"H": "HH:mm–HH:mm 'Uhr' v",
"m": "HH:mm–HH:mm 'Uhr' v"
},
"hv": {
"a": "h a – h a v",
"h": "h–h a v"
},
"Hv": {
"H": "HH–HH 'Uhr' v"
},
"M": {
"M": "M.–M."
},
"Md": {
"d": "dd.MM. – dd.MM.",
"M": "dd.MM. – dd.MM."
},
"MEd": {
"d": "E, dd.MM. – E, dd.MM.",
"M": "E, dd.MM. – E, dd.MM."
},
"MMM": {
"M": "MMM–MMM"
},
"MMMd": {
"d": "d.–d. MMM",
"M": "d. MMM – d. MMM"
},
"MMMEd": {
"d": "E, d. – E, d. MMM",
"M": "E, d. MMM – E, d. MMM"
},
"MMMM": {
"M": "LLLL–LLLL"
},
"y": {
"y": "y–y"
},
"yM": {
"M": "MM.y – MM.y",
"y": "MM.y – MM.y"
},
"yMd": {
"d": "dd.MM.y – dd.MM.y",
"M": "dd.MM.y – dd.MM.y",
"y": "dd.MM.y – dd.MM.y"
},
"yMEd": {
"d": "E, dd.MM.y – E, dd.MM.y",
"M": "E, dd.MM.y – E, dd.MM.y",
"y": "E, dd.MM.y – E, dd.MM.y"
},
"yMMM": {
"M": "MMM–MMM y",
"y": "MMM y – MMM y"
},
"yMMMd": {
"d": "d.–d. MMM y",
"M": "d. MMM – d. MMM y",
"y": "d. MMM y – d. MMM y"
},
"yMMMEd": {
"d": "E, d. – E, d. MMM y",
"M": "E, d. MMM – E, d. MMM y",
"y": "E, d. MMM y – E, d. MMM y"
},
"yMMMM": {
"M": "MMMM–MMMM y",
"y": "MMMM y – MMMM y"
}
}
}
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"de";
}
"dates";
{
"calendars";
{
"gregorian";
{
"months";
{
"format";
{
"abbreviated";
{
"1";
"Jan.",
"2";
"Feb.",
"3";
"März",
"4";
"Apr.",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"Aug.",
"9";
"Sep.",
"10";
"Okt.",
"11";
"Nov.",
"12";
"Dez.";
}
"narrow";
{
"1";
"J",
"2";
"F",
"3";
"M",
"4";
"A",
"5";
"M",
"6";
"J",
"7";
"J",
"8";
"A",
"9";
"S",
"10";
"O",
"11";
"N",
"12";
"D";
}
"wide";
{
"1";
"Januar",
"2";
"Februar",
"3";
"März",
"4";
"April",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"August",
"9";
"September",
"10";
"Oktober",
"11";
"November",
"12";
"Dezember";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"Jan",
"2";
"Feb",
"3";
"Mär",
"4";
"Apr",
"5";
"Mai",
"6";
"Jun",
"7";
"Jul",
"8";
"Aug",
"9";
"Sep",
"10";
"Okt",
"11";
"Nov",
"12";
"Dez";
}
"narrow";
{
"1";
"J",
"2";
"F",
"3";
"M",
"4";
"A",
"5";
"M",
"6";
"J",
"7";
"J",
"8";
"A",
"9";
"S",
"10";
"O",
"11";
"N",
"12";
"D";
}
"wide";
{
"1";
"Januar",
"2";
"Februar",
"3";
"März",
"4";
"April",
"5";
"Mai",
"6";
"Juni",
"7";
"Juli",
"8";
"August",
"9";
"September",
"10";
"Oktober",
"11";
"November",
"12";
"Dezember";
}
}
}
"days";
{
"format";
{
"abbreviated";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"narrow";
{
"sun";
"S",
"mon";
"M",
"tue";
"D",
"wed";
"M",
"thu";
"D",
"fri";
"F",
"sat";
"S";
}
"short";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"wide";
{
"sun";
"Sonntag",
"mon";
"Montag",
"tue";
"Dienstag",
"wed";
"Mittwoch",
"thu";
"Donnerstag",
"fri";
"Freitag",
"sat";
"Samstag";
}
}
"stand-alone";
{
"abbreviated";
{
"sun";
"So",
"mon";
"Mo",
"tue";
"Di",
"wed";
"Mi",
"thu";
"Do",
"fri";
"Fr",
"sat";
"Sa";
}
"narrow";
{
"sun";
"S",
"mon";
"M",
"tue";
"D",
"wed";
"M",
"thu";
"D",
"fri";
"F",
"sat";
"S";
}
"short";
{
"sun";
"So.",
"mon";
"Mo.",
"tue";
"Di.",
"wed";
"Mi.",
"thu";
"Do.",
"fri";
"Fr.",
"sat";
"Sa.";
}
"wide";
{
"sun";
"Sonntag",
"mon";
"Montag",
"tue";
"Dienstag",
"wed";
"Mittwoch",
"thu";
"Donnerstag",
"fri";
"Freitag",
"sat";
"Samstag";
}
}
}
"quarters";
{
"format";
{
"abbreviated";
{
"1";
"Q1",
"2";
"Q2",
"3";
"Q3",
"4";
"Q4";
}
"narrow";
{
"1";
"1",
"2";
"2",
"3";
"3",
"4";
"4";
}
"wide";
{
"1";
"1. Quartal",
"2";
"2. Quartal",
"3";
"3. Quartal",
"4";
"4. Quartal";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"Q1",
"2";
"Q2",
"3";
"Q3",
"4";
"Q4";
}
"narrow";
{
"1";
"1",
"2";
"2",
"3";
"3",
"4";
"4";
}
"wide";
{
"1";
"1. Quartal",
"2";
"2. Quartal",
"3";
"3. Quartal",
"4";
"4. Quartal";
}
}
}
"dayPeriods";
{
"format";
{
"abbreviated";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
"narrow";
{
"midnight";
"Mitternacht",
"am";
"vm.",
"pm";
"nm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
"wide";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"morgens",
"morning2";
"vormittags",
"afternoon1";
"mittags",
"afternoon2";
"nachmittags",
"evening1";
"abends",
"night1";
"nachts";
}
}
"stand-alone";
{
"abbreviated";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
"narrow";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
"wide";
{
"midnight";
"Mitternacht",
"am";
"vorm.",
"pm";
"nachm.",
"morning1";
"Morgen",
"morning2";
"Vormittag",
"afternoon1";
"Mittag",
"afternoon2";
"Nachmittag",
"evening1";
"Abend",
"night1";
"Nacht";
}
}
}
"eras";
{
"eraNames";
{
"0";
"v. Chr.",
"0-alt-variant";
"vor unserer Zeitrechnung",
"1";
"n. Chr.",
"1-alt-variant";
"unserer Zeitrechnung";
}
"eraAbbr";
{
"0";
"v. Chr.",
"0-alt-variant";
"v. u. Z.",
"1";
"n. Chr.",
"1-alt-variant";
"u. Z.";
}
"eraNarrow";
{
"0";
"v. Chr.",
"0-alt-variant";
"v. u. Z.",
"1";
"n. Chr.",
"1-alt-variant";
"u. Z.";
}
}
"dateFormats";
{
"full";
"EEEE, d. MMMM y",
"long";
"d. MMMM y",
"medium";
"dd.MM.y",
"short";
"dd.MM.yy";
}
"timeFormats";
{
"full";
"HH:mm:ss zzzz",
"long";
"HH:mm:ss z",
"medium";
"HH:mm:ss",
"short";
"HH:mm";
}
"dateTimeFormats";
{
"full";
"{1} 'um' {0}",
"long";
"{1} 'um' {0}",
"medium";
"{1}, {0}",
"short";
"{1}, {0}",
"availableFormats";
{
"d";
"d",
"E";
"ccc",
"Ed";
"E, d.",
"Ehm";
"E h:mm a",
"EHm";
"E, HH:mm",
"Ehms";
"E, h:mm:ss a",
"EHms";
"E, HH:mm:ss",
"Gy";
"y G",
"GyMMM";
"MMM y G",
"GyMMMd";
"d. MMM y G",
"GyMMMEd";
"E, d. MMM y G",
"h";
"h 'Uhr' a",
"H";
"HH 'Uhr'",
"hm";
"h:mm a",
"Hm";
"HH:mm",
"hms";
"h:mm:ss a",
"Hms";
"HH:mm:ss",
"hmsv";
"h:mm:ss a v",
"Hmsv";
"HH:mm:ss v",
"hmv";
"h:mm a v",
"Hmv";
"HH:mm v",
"M";
"L",
"Md";
"d.M.",
"MEd";
"E, d.M.",
"MMd";
"d.MM.",
"MMdd";
"dd.MM.",
"MMM";
"LLL",
"MMMd";
"d. MMM",
"MMMEd";
"E, d. MMM",
"MMMMd";
"d. MMMM",
"MMMMEd";
"E, d. MMMM",
"MMMMW";
"'Woche' W 'im' MMM",
"MMMMW";
"'Woche' W 'im' MMM",
"ms";
"mm:ss",
"y";
"y",
"yM";
"M.y",
"yMd";
"d.M.y",
"yMEd";
"E, d.M.y",
"yMM";
"MM.y",
"yMMdd";
"dd.MM.y",
"yMMM";
"MMM y",
"yMMMd";
"d. MMM y",
"yMMMEd";
"E, d. MMM y",
"yMMMM";
"MMMM y",
"yQQQ";
"QQQ y",
"yQQQQ";
"QQQQ y",
"yw";
"'Woche' w 'des' 'Jahres' y",
"yw";
"'Woche' w 'des' 'Jahres' y";
}
"appendItems";
{
"Day";
"{0} ({2}: {1})",
"Day-Of-Week";
"{0} {1}",
"Era";
"{1} {0}",
"Hour";
"{0} ({2}: {1})",
"Minute";
"{0} ({2}: {1})",
"Month";
"{0} ({2}: {1})",
"Quarter";
"{0} ({2}: {1})",
"Second";
"{0} ({2}: {1})",
"Timezone";
"{0} {1}",
"Week";
"{0} ({2}: {1})",
"Year";
"{1} {0}";
}
"intervalFormats";
{
"intervalFormatFallback";
"{0} – {1}",
"d";
{
"d";
"d.–d.";
}
"h";
{
"a";
"h 'Uhr' a – h 'Uhr' a",
"h";
"h – h 'Uhr' a";
}
"H";
{
"H";
"HH–HH 'Uhr'";
}
"hm";
{
"a";
"h:mm a – h:mm a",
"h";
"h:mm–h:mm a",
"m";
"h:mm–h:mm a";
}
"Hm";
{
"H";
"HH:mm–HH:mm 'Uhr'",
"m";
"HH:mm–HH:mm 'Uhr'";
}
"hmv";
{
"a";
"h:mm a – h:mm a v",
"h";
"h:mm–h:mm a v",
"m";
"h:mm–h:mm a v";
}
"Hmv";
{
"H";
"HH:mm–HH:mm 'Uhr' v",
"m";
"HH:mm–HH:mm 'Uhr' v";
}
"hv";
{
"a";
"h a – h a v",
"h";
"h–h a v";
}
"Hv";
{
"H";
"HH–HH 'Uhr' v";
}
"M";
{
"M";
"M.–M.";
}
"Md";
{
"d";
"dd.MM. – dd.MM.",
"M";
"dd.MM. – dd.MM.";
}
"MEd";
{
"d";
"E, dd.MM. – E, dd.MM.",
"M";
"E, dd.MM. – E, dd.MM.";
}
"MMM";
{
"M";
"MMM–MMM";
}
"MMMd";
{
"d";
"d.–d. MMM",
"M";
"d. MMM – d. MMM";
}
"MMMEd";
{
"d";
"E, d. – E, d. MMM",
"M";
"E, d. MMM – E, d. MMM";
}
"MMMM";
{
"M";
"LLLL–LLLL";
}
"y";
{
"y";
"y–y";
}
"yM";
{
"M";
"MM.y – MM.y",
"y";
"MM.y – MM.y";
}
"yMd";
{
"d";
"dd.MM.y – dd.MM.y",
"M";
"dd.MM.y – dd.MM.y",
"y";
"dd.MM.y – dd.MM.y";
}
"yMEd";
{
"d";
"E, dd.MM.y – E, dd.MM.y",
"M";
"E, dd.MM.y – E, dd.MM.y",
"y";
"E, dd.MM.y – E, dd.MM.y";
}
"yMMM";
{
"M";
"MMM–MMM y",
"y";
"MMM y – MMM y";
}
"yMMMd";
{
"d";
"d.–d. MMM y",
"M";
"d. MMM – d. MMM y",
"y";
"d. MMM y – d. MMM y";
}
"yMMMEd";
{
"d";
"E, d. – E, d. MMM y",
"M";
"E, d. MMM – E, d. MMM y",
"y";
"E, d. MMM y – E, d. MMM y";
}
"yMMMM";
{
"M";
"MMMM–MMMM y",
"y";
"MMMM y – MMMM y";
}
}
}
}
}
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 13259 $",
"_cldrVersion": "31"
},
"language": "de"
},
"numbers": {
"currencies": {
"ADP": {
"displayName": "Andorranische Pesete",
"displayName-count-one": "Andorranische Pesete",
"displayName-count-other": "Andorranische Peseten",
"symbol": "ADP"
},
"AED": {
"displayName": "VAE-Dirham",
"displayName-count-one": "VAE-Dirham",
"displayName-count-other": "VAE-Dirham",
"symbol": "AED"
},
"AFA": {
"displayName": "Afghanische Afghani (1927–2002)",
"displayName-count-one": "Afghanische Afghani (1927–2002)",
"displayName-count-other": "Afghanische Afghani (1927–2002)",
"symbol": "AFA"
},
"AFN": {
"displayName": "Afghanischer Afghani",
"displayName-count-one": "Afghanischer Afghani",
"displayName-count-other": "Afghanische Afghani",
"symbol": "AFN"
},
"ALK": {
"displayName": "Albanischer Lek (1946–1965)",
"displayName-count-one": "Albanischer Lek (1946–1965)",
"displayName-count-other": "Albanische Lek (1946–1965)"
},
"ALL": {
"displayName": "Albanischer Lek",
"displayName-count-one": "Albanischer Lek",
"displayName-count-other": "Albanische Lek",
"symbol": "ALL"
},
"AMD": {
"displayName": "Armenischer Dram",
"displayName-count-one": "Armenischer Dram",
"displayName-count-other": "Armenische Dram",
"symbol": "AMD"
},
"ANG": {
"displayName": "Niederländische-Antillen-Gulden",
"displayName-count-one": "Niederländische-Antillen-Gulden",
"displayName-count-other": "Niederländische-Antillen-Gulden",
"symbol": "ANG"
},
"AOA": {
"displayName": "Angolanischer Kwanza",
"displayName-count-one": "Angolanischer Kwanza",
"displayName-count-other": "Angolanische Kwanza",
"symbol": "AOA",
"symbol-alt-narrow": "Kz"
},
"AOK": {
"displayName": "Angolanischer Kwanza (1977–1990)",
"displayName-count-one": "Angolanischer Kwanza (1977–1990)",
"displayName-count-other": "Angolanische Kwanza (1977–1990)",
"symbol": "AOK"
},
"AON": {
"displayName": "Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-other": "Angolanische Neue Kwanza (1990–2000)",
"symbol": "AON"
},
"AOR": {
"displayName": "Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)",
"symbol": "AOR"
},
"ARA": {
"displayName": "Argentinischer Austral",
"displayName-count-one": "Argentinischer Austral",
"displayName-count-other": "Argentinische Austral",
"symbol": "ARA"
},
"ARL": {
"displayName": "Argentinischer Peso Ley (1970–1983)",
"displayName-count-one": "Argentinischer Peso Ley (1970–1983)",
"displayName-count-other": "Argentinische Pesos Ley (1970–1983)",
"symbol": "ARL"
},
"ARM": {
"displayName": "Argentinischer Peso (1881–1970)",
"displayName-count-one": "Argentinischer Peso (1881–1970)",
"displayName-count-other": "Argentinische Pesos (1881–1970)",
"symbol": "ARM"
},
"ARP": {
"displayName": "Argentinischer Peso (1983–1985)",
"displayName-count-one": "Argentinischer Peso (1983–1985)",
"displayName-count-other": "Argentinische Peso (1983–1985)",
"symbol": "ARP"
},
"ARS": {
"displayName": "Argentinischer Peso",
"displayName-count-one": "Argentinischer Peso",
"displayName-count-other": "Argentinische Pesos",
"symbol": "ARS",
"symbol-alt-narrow": "$"
},
"ATS": {
"displayName": "Österreichischer Schilling",
"displayName-count-one": "Österreichischer Schilling",
"displayName-count-other": "Österreichische Schilling",
"symbol": "öS"
},
"AUD": {
"displayName": "Australischer Dollar",
"displayName-count-one": "Australischer Dollar",
"displayName-count-other": "Australische Dollar",
"symbol": "AU$",
"symbol-alt-narrow": "$"
},
"AWG": {
"displayName": "Aruba-Florin",
"displayName-count-one": "Aruba-Florin",
"displayName-count-other": "Aruba-Florin",
"symbol": "AWG"
},
"AZM": {
"displayName": "Aserbaidschan-Manat (1993–2006)",
"displayName-count-one": "Aserbaidschan-Manat (1993–2006)",
"displayName-count-other": "Aserbaidschan-Manat (1993–2006)",
"symbol": "AZM"
},
"AZN": {
"displayName": "Aserbaidschan-Manat",
"displayName-count-one": "Aserbaidschan-Manat",
"displayName-count-other": "Aserbaidschan-Manat",
"symbol": "AZN"
},
"BAD": {
"displayName": "Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)",
"symbol": "BAD"
},
"BAM": {
"displayName": "Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark",
"symbol": "BAM",
"symbol-alt-narrow": "KM"
},
"BAN": {
"displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)",
"symbol": "BAN"
},
"BBD": {
"displayName": "Barbados-Dollar",
"displayName-count-one": "Barbados-Dollar",
"displayName-count-other": "Barbados-Dollar",
"symbol": "BBD",
"symbol-alt-narrow": "$"
},
"BDT": {
"displayName": "Bangladesch-Taka",
"displayName-count-one": "Bangladesch-Taka",
"displayName-count-other": "Bangladesch-Taka",
"symbol": "BDT",
"symbol-alt-narrow": "৳"
},
"BEC": {
"displayName": "Belgischer Franc (konvertibel)",
"displayName-count-one": "Belgischer Franc (konvertibel)",
"displayName-count-other": "Belgische Franc (konvertibel)",
"symbol": "BEC"
},
"BEF": {
"displayName": "Belgischer Franc",
"displayName-count-one": "Belgischer Franc",
"displayName-count-other": "Belgische Franc",
"symbol": "BEF"
},
"BEL": {
"displayName": "Belgischer Finanz-Franc",
"displayName-count-one": "Belgischer Finanz-Franc",
"displayName-count-other": "Belgische Finanz-Franc",
"symbol": "BEL"
},
"BGL": {
"displayName": "Bulgarische Lew (1962–1999)",
"displayName-count-one": "Bulgarische Lew (1962–1999)",
"displayName-count-other": "Bulgarische Lew (1962–1999)",
"symbol": "BGL"
},
"BGM": {
"displayName": "Bulgarischer Lew (1952–1962)",
"displayName-count-one": "Bulgarischer Lew (1952–1962)",
"displayName-count-other": "Bulgarische Lew (1952–1962)",
"symbol": "BGK"
},
"BGN": {
"displayName": "Bulgarischer Lew",
"displayName-count-one": "Bulgarischer Lew",
"displayName-count-other": "Bulgarische Lew",
"symbol": "BGN"
},
"BGO": {
"displayName": "Bulgarischer Lew (1879–1952)",
"displayName-count-one": "Bulgarischer Lew (1879–1952)",
"displayName-count-other": "Bulgarische Lew (1879–1952)",
"symbol": "BGJ"
},
"BHD": {
"displayName": "Bahrain-Dinar",
"displayName-count-one": "Bahrain-Dinar",
"displayName-count-other": "Bahrain-Dinar",
"symbol": "BHD"
},
"BIF": {
"displayName": "Burundi-Franc",
"displayName-count-one": "Burundi-Franc",
"displayName-count-other": "Burundi-Francs",
"symbol": "BIF"
},
"BMD": {
"displayName": "Bermuda-Dollar",
"displayName-count-one": "Bermuda-Dollar",
"displayName-count-other": "Bermuda-Dollar",
"symbol": "BMD",
"symbol-alt-narrow": "$"
},
"BND": {
"displayName": "Brunei-Dollar",
"displayName-count-one": "Brunei-Dollar",
"displayName-count-other": "Brunei-Dollar",
"symbol": "BND",
"symbol-alt-narrow": "$"
},
"BOB": {
"displayName": "Bolivanischer Boliviano",
"displayName-count-one": "Bolivanischer Boliviano",
"displayName-count-other": "Bolivianische Bolivianos",
"symbol": "BOB",
"symbol-alt-narrow": "Bs"
},
"BOL": {
"displayName": "Bolivianischer Boliviano (1863–1963)",
"displayName-count-one": "Bolivianischer Boliviano (1863–1963)",
"displayName-count-other": "Bolivianische Bolivianos (1863–1963)",
"symbol": "BOL"
},
"BOP": {
"displayName": "Bolivianischer Peso",
"displayName-count-one": "Bolivianischer Peso",
"displayName-count-other": "Bolivianische Peso",
"symbol": "BOP"
},
"BOV": {
"displayName": "Boliviansiche Mvdol",
"displayName-count-one": "Boliviansiche Mvdol",
"displayName-count-other": "Bolivianische Mvdol",
"symbol": "BOV"
},
"BRB": {
"displayName": "Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)",
"symbol": "BRB"
},
"BRC": {
"displayName": "Brasilianischer Cruzado (1986–1989)",
"displayName-count-one": "Brasilianischer Cruzado (1986–1989)",
"displayName-count-other": "Brasilianische Cruzado (1986–1989)",
"symbol": "BRC"
},
"BRE": {
"displayName": "Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-other": "Brasilianische Cruzeiro (1990–1993)",
"symbol": "BRE"
},
"BRL": {
"displayName": "Brasilianischer Real",
"displayName-count-one": "Brasilianischer Real",
"displayName-count-other": "Brasilianische Real",
"symbol": "R$",
"symbol-alt-narrow": "R$"
},
"BRN": {
"displayName": "Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)",
"symbol": "BRN"
},
"BRR": {
"displayName": "Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-other": "Brasilianische Cruzeiro (1993–1994)",
"symbol": "BRR"
},
"BRZ": {
"displayName": "Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)",
"symbol": "BRZ"
},
"BSD": {
"displayName": "Bahamas-Dollar",
"displayName-count-one": "Bahamas-Dollar",
"displayName-count-other": "Bahamas-Dollar",
"symbol": "BSD",
"symbol-alt-narrow": "$"
},
"BTN": {
"displayName": "Bhutan-Ngultrum",
"displayName-count-one": "Bhutan-Ngultrum",
"displayName-count-other": "Bhutan-Ngultrum",
"symbol": "BTN"
},
"BUK": {
"displayName": "Birmanischer Kyat",
"displayName-count-one": "Birmanischer Kyat",
"displayName-count-other": "Birmanische Kyat",
"symbol": "BUK"
},
"BWP": {
"displayName": "Botswanischer Pula",
"displayName-count-one": "Botswanischer Pula",
"displayName-count-other": "Botswanische Pula",
"symbol": "BWP",
"symbol-alt-narrow": "P"
},
"BYB": {
"displayName": "Belarus-Rubel (1994–1999)",
"displayName-count-one": "Belarus-Rubel (1994–1999)",
"displayName-count-other": "Belarus-Rubel (1994–1999)",
"symbol": "BYB"
},
"BYN": {
"displayName": "Weißrussischer Rubel",
"displayName-count-one": "Weißrussischer Rubel",
"displayName-count-other": "Weißrussische Rubel",
"symbol": "BYN",
"symbol-alt-narrow": "р."
},
"BYR": {
"displayName": "Weißrussischer Rubel (2000–2016)",
"displayName-count-one": "Weißrussischer Rubel (2000–2016)",
"displayName-count-other": "Weißrussische Rubel (2000–2016)",
"symbol": "BYR"
},
"BZD": {
"displayName": "Belize-Dollar",
"displayName-count-one": "Belize-Dollar",
"displayName-count-other": "Belize-Dollar",
"symbol": "BZD",
"symbol-alt-narrow": "$"
},
"CAD": {
"displayName": "Kanadischer Dollar",
"displayName-count-one": "Kanadischer Dollar",
"displayName-count-other": "Kanadische Dollar",
"symbol": "CA$",
"symbol-alt-narrow": "$"
},
"CDF": {
"displayName": "Kongo-Franc",
"displayName-count-one": "Kongo-Franc",
"displayName-count-other": "Kongo-Francs",
"symbol": "CDF"
},
"CHE": {
"displayName": "WIR-Euro",
"displayName-count-one": "WIR-Euro",
"displayName-count-other": "WIR-Euro",
"symbol": "CHE"
},
"CHF": {
"displayName": "Schweizer Franken",
"displayName-count-one": "Schweizer Franken",
"displayName-count-other": "Schweizer Franken",
"symbol": "CHF"
},
"CHW": {
"displayName": "WIR Franken",
"displayName-count-one": "WIR Franken",
"displayName-count-other": "WIR Franken",
"symbol": "CHW"
},
"CLE": {
"displayName": "Chilenischer Escudo",
"displayName-count-one": "Chilenischer Escudo",
"displayName-count-other": "Chilenische Escudo",
"symbol": "CLE"
},
"CLF": {
"displayName": "Chilenische Unidades de Fomento",
"displayName-count-one": "Chilenische Unidades de Fomento",
"displayName-count-other": "Chilenische Unidades de Fomento",
"symbol": "CLF"
},
"CLP": {
"displayName": "Chilenischer Peso",
"displayName-count-one": "Chilenischer Peso",
"displayName-count-other": "Chilenische Pesos",
"symbol": "CLP",
"symbol-alt-narrow": "$"
},
"CNX": {
"displayName": "Dollar der Chinesischen Volksbank",
"displayName-count-one": "Dollar der Chinesischen Volksbank",
"displayName-count-other": "Dollar der Chinesischen Volksbank",
"symbol": "CNX"
},
"CNY": {
"displayName": "Renminbi Yuan",
"displayName-count-one": "Chinesischer Yuan",
"displayName-count-other": "Renminbi Yuan",
"symbol": "CN¥",
"symbol-alt-narrow": "¥"
},
"COP": {
"displayName": "Kolumbianischer Peso",
"displayName-count-one": "Kolumbianischer Peso",
"displayName-count-other": "Kolumbianische Pesos",
"symbol": "COP",
"symbol-alt-narrow": "$"
},
"COU": {
"displayName": "Kolumbianische Unidades de valor real",
"displayName-count-one": "Kolumbianische Unidad de valor real",
"displayName-count-other": "Kolumbianische Unidades de valor real",
"symbol": "COU"
},
"CRC": {
"displayName": "Costa-Rica-Colón",
"displayName-count-one": "Costa-Rica-Colón",
"displayName-count-other": "Costa-Rica-Colón",
"symbol": "CRC",
"symbol-alt-narrow": "₡"
},
"CSD": {
"displayName": "Serbischer Dinar (2002–2006)",
"displayName-count-one": "Serbischer Dinar (2002–2006)",
"displayName-count-other": "Serbische Dinar (2002–2006)",
"symbol": "CSD"
},
"CSK": {
"displayName": "Tschechoslowakische Krone",
"displayName-count-one": "Tschechoslowakische Kronen",
"displayName-count-other": "Tschechoslowakische Kronen",
"symbol": "CSK"
},
"CUC": {
"displayName": "Kubanischer Peso (konvertibel)",
"displayName-count-one": "Kubanischer Peso (konvertibel)",
"displayName-count-other": "Kubanische Pesos (konvertibel)",
"symbol": "CUC",
"symbol-alt-narrow": "Cub$"
},
"CUP": {
"displayName": "Kubanischer Peso",
"displayName-count-one": "Kubanischer Peso",
"displayName-count-other": "Kubanische Pesos",
"symbol": "CUP",
"symbol-alt-narrow": "$"
},
"CVE": {
"displayName": "Cabo-Verde-Escudo",
"displayName-count-one": "Cabo-Verde-Escudo",
"displayName-count-other": "Cabo-Verde-Escudos",
"symbol": "CVE"
},
"CYP": {
"displayName": "Zypern-Pfund",
"displayName-count-one": "Zypern Pfund",
"displayName-count-other": "Zypern Pfund",
"symbol": "CYP"
},
"CZK": {
"displayName": "Tschechische Krone",
"displayName-count-one": "Tschechische Krone",
"displayName-count-other": "Tschechische Kronen",
"symbol": "CZK",
"symbol-alt-narrow": "Kč"
},
"DDM": {
"displayName": "Mark der DDR",
"displayName-count-one": "Mark der DDR",
"displayName-count-other": "Mark der DDR",
"symbol": "DDM"
},
"DEM": {
"displayName": "Deutsche Mark",
"displayName-count-one": "Deutsche Mark",
"displayName-count-other": "Deutsche Mark",
"symbol": "DM"
},
"DJF": {
"displayName": "Dschibuti-Franc",
"displayName-count-one": "Dschibuti-Franc",
"displayName-count-other": "Dschibuti-Franc",
"symbol": "DJF"
},
"DKK": {
"displayName": "Dänische Krone",
"displayName-count-one": "Dänische Krone",
"displayName-count-other": "Dänische Kronen",
"symbol": "DKK",
"symbol-alt-narrow": "kr"
},
"DOP": {
"displayName": "Dominikanischer Peso",
"displayName-count-one": "Dominikanischer Peso",
"displayName-count-other": "Dominikanische Pesos",
"symbol": "DOP",
"symbol-alt-narrow": "$"
},
"DZD": {
"displayName": "Algerischer Dinar",
"displayName-count-one": "Algerischer Dinar",
"displayName-count-other": "Algerische Dinar",
"symbol": "DZD"
},
"ECS": {
"displayName": "Ecuadorianischer Sucre",
"displayName-count-one": "Ecuadorianischer Sucre",
"displayName-count-other": "Ecuadorianische Sucre",
"symbol": "ECS"
},
"ECV": {
"displayName": "Verrechnungseinheit für Ecuador",
"displayName-count-one": "Verrechnungseinheiten für Ecuador",
"displayName-count-other": "Verrechnungseinheiten für Ecuador",
"symbol": "ECV"
},
"EEK": {
"displayName": "Estnische Krone",
"displayName-count-one": "Estnische Krone",
"displayName-count-other": "Estnische Kronen",
"symbol": "EEK"
},
"EGP": {
"displayName": "Ägyptisches Pfund",
"displayName-count-one": "Ägyptisches Pfund",
"displayName-count-other": "Ägyptische Pfund",
"symbol": "EGP",
"symbol-alt-narrow": "E£"
},
"ERN": {
"displayName": "Eritreischer Nakfa",
"displayName-count-one": "Eritreischer Nakfa",
"displayName-count-other": "Eritreische Nakfa",
"symbol": "ERN"
},
"ESA": {
"displayName": "Spanische Peseta (A–Konten)",
"displayName-count-one": "Spanische Peseta (A–Konten)",
"displayName-count-other": "Spanische Peseten (A–Konten)",
"symbol": "ESA"
},
"ESB": {
"displayName": "Spanische Peseta (konvertibel)",
"displayName-count-one": "Spanische Peseta (konvertibel)",
"displayName-count-other": "Spanische Peseten (konvertibel)",
"symbol": "ESB"
},
"ESP": {
"displayName": "Spanische Peseta",
"displayName-count-one": "Spanische Peseta",
"displayName-count-other": "Spanische Peseten",
"symbol": "ESP",
"symbol-alt-narrow": "₧"
},
"ETB": {
"displayName": "Äthiopischer Birr",
"displayName-count-one": "Äthiopischer Birr",
"displayName-count-other": "Äthiopische Birr",
"symbol": "ETB"
},
"EUR": {
"displayName": "Euro",
"displayName-count-one": "Euro",
"displayName-count-other": "Euro",
"symbol": "€",
"symbol-alt-narrow": "€"
},
"FIM": {
"displayName": "Finnische Mark",
"displayName-count-one": "Finnische Mark",
"displayName-count-other": "Finnische Mark",
"symbol": "FIM"
},
"FJD": {
"displayName": "Fidschi-Dollar",
"displayName-count-one": "Fidschi-Dollar",
"displayName-count-other": "Fidschi-Dollar",
"symbol": "FJD",
"symbol-alt-narrow": "$"
},
"FKP": {
"displayName": "Falkland-Pfund",
"displayName-count-one": "Falkland-Pfund",
"displayName-count-other": "Falkland-Pfund",
"symbol": "FKP",
"symbol-alt-narrow": "Fl£"
},
"FRF": {
"displayName": "Französischer Franc",
"displayName-count-one": "Französischer Franc",
"displayName-count-other": "Französische Franc",
"symbol": "FRF"
},
"GBP": {
"displayName": "Britisches Pfund",
"displayName-count-one": "Britisches Pfund",
"displayName-count-other": "Britische Pfund",
"symbol": "£",
"symbol-alt-narrow": "£"
},
"GEK": {
"displayName": "Georgischer Kupon Larit",
"displayName-count-one": "Georgischer Kupon Larit",
"displayName-count-other": "Georgische Kupon Larit",
"symbol": "GEK"
},
"GEL": {
"displayName": "Georgischer Lari",
"displayName-count-one": "Georgischer Lari",
"displayName-count-other": "Georgische Lari",
"symbol": "GEL",
"symbol-alt-narrow": "₾",
"symbol-alt-variant": "₾"
},
"GHC": {
"displayName": "Ghanaischer Cedi (1979–2007)",
"displayName-count-one": "Ghanaischer Cedi (1979–2007)",
"displayName-count-other": "Ghanaische Cedi (1979–2007)",
"symbol": "GHC"
},
"GHS": {
"displayName": "Ghanaischer Cedi",
"displayName-count-one": "Ghanaischer Cedi",
"displayName-count-other": "Ghanaische Cedi",
"symbol": "GHS"
},
"GIP": {
"displayName": "Gibraltar-Pfund",
"displayName-count-one": "Gibraltar-Pfund",
"displayName-count-other": "Gibraltar Pfund",
"symbol": "GIP",
"symbol-alt-narrow": "£"
},
"GMD": {
"displayName": "Gambia-Dalasi",
"displayName-count-one": "Gambia-Dalasi",
"displayName-count-other": "Gambia-Dalasi",
"symbol": "GMD"
},
"GNF": {
"displayName": "Guinea-Franc",
"displayName-count-one": "Guinea-Franc",
"displayName-count-other": "Guinea-Franc",
"symbol": "GNF",
"symbol-alt-narrow": "F.G."
},
"GNS": {
"displayName": "Guineischer Syli",
"displayName-count-one": "Guineischer Syli",
"displayName-count-other": "Guineische Syli",
"symbol": "GNS"
},
"GQE": {
"displayName": "Äquatorialguinea-Ekwele",
"displayName-count-one": "Äquatorialguinea-Ekwele",
"displayName-count-other": "Äquatorialguinea-Ekwele",
"symbol": "GQE"
},
"GRD": {
"displayName": "Griechische Drachme",
"displayName-count-one": "Griechische Drachme",
"displayName-count-other": "Griechische Drachmen",
"symbol": "GRD"
},
"GTQ": {
"displayName": "Guatemaltekischer Quetzal",
"displayName-count-one": "Guatemaltekischer Quetzal",
"displayName-count-other": "Guatemaltekische Quetzales",
"symbol": "GTQ",
"symbol-alt-narrow": "Q"
},
"GWE": {
"displayName": "Portugiesisch Guinea Escudo",
"displayName-count-one": "Portugiesisch Guinea Escudo",
"displayName-count-other": "Portugiesisch Guinea Escudo",
"symbol": "GWE"
},
"GWP": {
"displayName": "Guinea-Bissau Peso",
"displayName-count-one": "Guinea-Bissau Peso",
"displayName-count-other": "Guinea-Bissau Pesos",
"symbol": "GWP"
},
"GYD": {
"displayName": "Guyana-Dollar",
"displayName-count-one": "Guyana-Dollar",
"displayName-count-other": "Guyana-Dollar",
"symbol": "GYD",
"symbol-alt-narrow": "$"
},
"HKD": {
"displayName": "Hongkong-Dollar",
"displayName-count-one": "Hongkong-Dollar",
"displayName-count-other": "Hongkong-Dollar",
"symbol": "HK$",
"symbol-alt-narrow": "$"
},
"HNL": {
"displayName": "Honduras-Lempira",
"displayName-count-one": "Honduras-Lempira",
"displayName-count-other": "Honduras-Lempira",
"symbol": "HNL",
"symbol-alt-narrow": "L"
},
"HRD": {
"displayName": "Kroatischer Dinar",
"displayName-count-one": "Kroatischer Dinar",
"displayName-count-other": "Kroatische Dinar",
"symbol": "HRD"
},
"HRK": {
"displayName": "Kroatischer Kuna",
"displayName-count-one": "Kroatischer Kuna",
"displayName-count-other": "Kroatische Kuna",
"symbol": "HRK",
"symbol-alt-narrow": "kn"
},
"HTG": {
"displayName": "Haitianische Gourde",
"displayName-count-one": "Haitianische Gourde",
"displayName-count-other": "Haitianische Gourdes",
"symbol": "HTG"
},
"HUF": {
"displayName": "Ungarischer Forint",
"displayName-count-one": "Ungarischer Forint",
"displayName-count-other": "Ungarische Forint",
"symbol": "HUF",
"symbol-alt-narrow": "Ft"
},
"IDR": {
"displayName": "Indonesische Rupiah",
"displayName-count-one": "Indonesische Rupiah",
"displayName-count-other": "Indonesische Rupiah",
"symbol": "IDR",
"symbol-alt-narrow": "Rp"
},
"IEP": {
"displayName": "Irisches Pfund",
"displayName-count-one": "Irisches Pfund",
"displayName-count-other": "Irische Pfund",
"symbol": "IEP"
},
"ILP": {
"displayName": "Israelisches Pfund",
"displayName-count-one": "Israelisches Pfund",
"displayName-count-other": "Israelische Pfund",
"symbol": "ILP"
},
"ILR": {
"displayName": "Israelischer Schekel (1980–1985)",
"displayName-count-one": "Israelischer Schekel (1980–1985)",
"displayName-count-other": "Israelische Schekel (1980–1985)"
},
"ILS": {
"displayName": "Israelischer Neuer Schekel",
"displayName-count-one": "Israelischer Neuer Schekel",
"displayName-count-other": "Israelische Neue Schekel",
"symbol": "₪",
"symbol-alt-narrow": "₪"
},
"INR": {
"displayName": "Indische Rupie",
"displayName-count-one": "Indische Rupie",
"displayName-count-other": "Indische Rupien",
"symbol": "₹",
"symbol-alt-narrow": "₹"
},
"IQD": {
"displayName": "Irakischer Dinar",
"displayName-count-one": "Irakischer Dinar",
"displayName-count-other": "Irakische Dinar",
"symbol": "IQD"
},
"IRR": {
"displayName": "Iranischer Rial",
"displayName-count-one": "Iranischer Rial",
"displayName-count-other": "Iranische Rial",
"symbol": "IRR"
},
"ISJ": {
"displayName": "Isländische Krone (1918–1981)",
"displayName-count-one": "Isländische Krone (1918–1981)",
"displayName-count-other": "Isländische Kronen (1918–1981)"
},
"ISK": {
"displayName": "Isländische Krone",
"displayName-count-one": "Isländische Krone",
"displayName-count-other": "Isländische Kronen",
"symbol": "ISK",
"symbol-alt-narrow": "kr"
},
"ITL": {
"displayName": "Italienische Lira",
"displayName-count-one": "Italienische Lira",
"displayName-count-other": "Italienische Lire",
"symbol": "ITL"
},
"JMD": {
"displayName": "Jamaika-Dollar",
"displayName-count-one": "Jamaika-Dollar",
"displayName-count-other": "Jamaika-Dollar",
"symbol": "JMD",
"symbol-alt-narrow": "$"
},
"JOD": {
"displayName": "Jordanischer Dinar",
"displayName-count-one": "Jordanischer Dinar",
"displayName-count-other": "Jordanische Dinar",
"symbol": "JOD"
},
"JPY": {
"displayName": "Japanischer Yen",
"displayName-count-one": "Japanischer Yen",
"displayName-count-other": "Japanische Yen",
"symbol": "¥",
"symbol-alt-narrow": "¥"
},
"KES": {
"displayName": "Kenia-Schilling",
"displayName-count-one": "Kenia-Schilling",
"displayName-count-other": "Kenia-Schilling",
"symbol": "KES"
},
"KGS": {
"displayName": "Kirgisischer Som",
"displayName-count-one": "Kirgisischer Som",
"displayName-count-other": "Kirgisische Som",
"symbol": "KGS"
},
"KHR": {
"displayName": "Kambodschanischer Riel",
"displayName-count-one": "Kambodschanischer Riel",
"displayName-count-other": "Kambodschanische Riel",
"symbol": "KHR",
"symbol-alt-narrow": "៛"
},
"KMF": {
"displayName": "Komoren-Franc",
"displayName-count-one": "Komoren-Franc",
"displayName-count-other": "Komoren-Francs",
"symbol": "KMF",
"symbol-alt-narrow": "FC"
},
"KPW": {
"displayName": "Nordkoreanischer Won",
"displayName-count-one": "Nordkoreanischer Won",
"displayName-count-other": "Nordkoreanische Won",
"symbol": "KPW",
"symbol-alt-narrow": "₩"
},
"KRH": {
"displayName": "Südkoreanischer Hwan (1953–1962)",
"displayName-count-one": "Südkoreanischer Hwan (1953–1962)",
"displayName-count-other": "Südkoreanischer Hwan (1953–1962)",
"symbol": "KRH"
},
"KRO": {
"displayName": "Südkoreanischer Won (1945–1953)",
"displayName-count-one": "Südkoreanischer Won (1945–1953)",
"displayName-count-other": "Südkoreanischer Won (1945–1953)",
"symbol": "KRO"
},
"KRW": {
"displayName": "Südkoreanischer Won",
"displayName-count-one": "Südkoreanischer Won",
"displayName-count-other": "Südkoreanische Won",
"symbol": "₩",
"symbol-alt-narrow": "₩"
},
"KWD": {
"displayName": "Kuwait-Dinar",
"displayName-count-one": "Kuwait-Dinar",
"displayName-count-other": "Kuwait-Dinar",
"symbol": "KWD"
},
"KYD": {
"displayName": "Kaiman-Dollar",
"displayName-count-one": "Kaiman-Dollar",
"displayName-count-other": "Kaiman-Dollar",
"symbol": "KYD",
"symbol-alt-narrow": "$"
},
"KZT": {
"displayName": "Kasachischer Tenge",
"displayName-count-one": "Kasachischer Tenge",
"displayName-count-other": "Kasachische Tenge",
"symbol": "KZT",
"symbol-alt-narrow": "₸"
},
"LAK": {
"displayName": "Laotischer Kip",
"displayName-count-one": "Laotischer Kip",
"displayName-count-other": "Laotische Kip",
"symbol": "LAK",
"symbol-alt-narrow": "₭"
},
"LBP": {
"displayName": "Libanesisches Pfund",
"displayName-count-one": "Libanesisches Pfund",
"displayName-count-other": "Libanesische Pfund",
"symbol": "LBP",
"symbol-alt-narrow": "L£"
},
"LKR": {
"displayName": "Sri-Lanka-Rupie",
"displayName-count-one": "Sri-Lanka-Rupie",
"displayName-count-other": "Sri-Lanka-Rupien",
"symbol": "LKR",
"symbol-alt-narrow": "Rs"
},
"LRD": {
"displayName": "Liberianischer Dollar",
"displayName-count-one": "Liberianischer Dollar",
"displayName-count-other": "Liberianische Dollar",
"symbol": "LRD",
"symbol-alt-narrow": "$"
},
"LSL": {
"displayName": "Loti",
"displayName-count-one": "Loti",
"displayName-count-other": "Loti",
"symbol": "LSL"
},
"LTL": {
"displayName": "Litauischer Litas",
"displayName-count-one": "Litauischer Litas",
"displayName-count-other": "Litauische Litas",
"symbol": "LTL",
"symbol-alt-narrow": "Lt"
},
"LTT": {
"displayName": "Litauischer Talonas",
"displayName-count-one": "Litauische Talonas",
"displayName-count-other": "Litauische Talonas",
"symbol": "LTT"
},
"LUC": {
"displayName": "Luxemburgischer Franc (konvertibel)",
"displayName-count-one": "Luxemburgische Franc (konvertibel)",
"displayName-count-other": "Luxemburgische Franc (konvertibel)",
"symbol": "LUC"
},
"LUF": {
"displayName": "Luxemburgischer Franc",
"displayName-count-one": "Luxemburgische Franc",
"displayName-count-other": "Luxemburgische Franc",
"symbol": "LUF"
},
"LUL": {
"displayName": "Luxemburgischer Finanz-Franc",
"displayName-count-one": "Luxemburgische Finanz-Franc",
"displayName-count-other": "Luxemburgische Finanz-Franc",
"symbol": "LUL"
},
"LVL": {
"displayName": "Lettischer Lats",
"displayName-count-one": "Lettischer Lats",
"displayName-count-other": "Lettische Lats",
"symbol": "LVL",
"symbol-alt-narrow": "Ls"
},
"LVR": {
"displayName": "Lettischer Rubel",
"displayName-count-one": "Lettische Rubel",
"displayName-count-other": "Lettische Rubel",
"symbol": "LVR"
},
"LYD": {
"displayName": "Libyscher Dinar",
"displayName-count-one": "Libyscher Dinar",
"displayName-count-other": "Libysche Dinar",
"symbol": "LYD"
},
"MAD": {
"displayName": "Marokkanischer Dirham",
"displayName-count-one": "Marokkanischer Dirham",
"displayName-count-other": "Marokkanische Dirham",
"symbol": "MAD"
},
"MAF": {
"displayName": "Marokkanischer Franc",
"displayName-count-one": "Marokkanische Franc",
"displayName-count-other": "Marokkanische Franc",
"symbol": "MAF"
},
"MCF": {
"displayName": "Monegassischer Franc",
"displayName-count-one": "Monegassischer Franc",
"displayName-count-other": "Monegassische Franc",
"symbol": "MCF"
},
"MDC": {
"displayName": "Moldau-Cupon",
"displayName-count-one": "Moldau-Cupon",
"displayName-count-other": "Moldau-Cupon",
"symbol": "MDC"
},
"MDL": {
"displayName": "Moldau-Leu",
"displayName-count-one": "Moldau-Leu",
"displayName-count-other": "Moldau-Leu",
"symbol": "MDL"
},
"MGA": {
"displayName": "Madagaskar-Ariary",
"displayName-count-one": "Madagaskar-Ariary",
"displayName-count-other": "Madagaskar-Ariary",
"symbol": "MGA",
"symbol-alt-narrow": "Ar"
},
"MGF": {
"displayName": "Madagaskar-Franc",
"displayName-count-one": "Madagaskar-Franc",
"displayName-count-other": "Madagaskar-Franc",
"symbol": "MGF"
},
"MKD": {
"displayName": "Mazedonischer Denar",
"displayName-count-one": "Mazedonischer Denar",
"displayName-count-other": "Mazedonische Denari",
"symbol": "MKD"
},
"MKN": {
"displayName": "Mazedonischer Denar (1992–1993)",
"displayName-count-one": "Mazedonischer Denar (1992–1993)",
"displayName-count-other": "Mazedonische Denar (1992–1993)",
"symbol": "MKN"
},
"MLF": {
"displayName": "Malischer Franc",
"displayName-count-one": "Malische Franc",
"displayName-count-other": "Malische Franc",
"symbol": "MLF"
},
"MMK": {
"displayName": "Myanmarischer Kyat",
"displayName-count-one": "Myanmarischer Kyat",
"displayName-count-other": "Myanmarische Kyat",
"symbol": "MMK",
"symbol-alt-narrow": "K"
},
"MNT": {
"displayName": "Mongolischer Tögrög",
"displayName-count-one": "Mongolischer Tögrög",
"displayName-count-other": "Mongolische Tögrög",
"symbol": "MNT",
"symbol-alt-narrow": "₮"
},
"MOP": {
"displayName": "Macao-Pataca",
"displayName-count-one": "Macao-Pataca",
"displayName-count-other": "Macao-Pataca",
"symbol": "MOP"
},
"MRO": {
"displayName": "Mauretanischer Ouguiya",
"displayName-count-one": "Mauretanischer Ouguiya",
"displayName-count-other": "Mauretanische Ouguiya",
"symbol": "MRO"
},
"MTL": {
"displayName": "Maltesische Lira",
"displayName-count-one": "Maltesische Lira",
"displayName-count-other": "Maltesische Lira",
"symbol": "MTL"
},
"MTP": {
"displayName": "Maltesisches Pfund",
"displayName-count-one": "Maltesische Pfund",
"displayName-count-other": "Maltesische Pfund",
"symbol": "MTP"
},
"MUR": {
"displayName": "Mauritius-Rupie",
"displayName-count-one": "Mauritius-Rupie",
"displayName-count-other": "Mauritius-Rupien",
"symbol": "MUR",
"symbol-alt-narrow": "Rs"
},
"MVP": {
"displayName": "Malediven-Rupie (alt)",
"displayName-count-one": "Malediven-Rupie (alt)",
"displayName-count-other": "Malediven-Rupien (alt)"
},
"MVR": {
"displayName": "Malediven-Rufiyaa",
"displayName-count-one": "Malediven-Rufiyaa",
"displayName-count-other": "Malediven-Rupien",
"symbol": "MVR"
},
"MWK": {
"displayName": "Malawi-Kwacha",
"displayName-count-one": "Malawi-Kwacha",
"displayName-count-other": "Malawi-Kwacha",
"symbol": "MWK"
},
"MXN": {
"displayName": "Mexikanischer Peso",
"displayName-count-one": "Mexikanischer Peso",
"displayName-count-other": "Mexikanische Pesos",
"symbol": "MX$",
"symbol-alt-narrow": "$"
},
"MXP": {
"displayName": "Mexikanischer Silber-Peso (1861–1992)",
"displayName-count-one": "Mexikanische Silber-Peso (1861–1992)",
"displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)",
"symbol": "MXP"
},
"MXV": {
"displayName": "Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-other": "Mexikanische Unidad de Inversion (UDI)",
"symbol": "MXV"
},
"MYR": {
"displayName": "Malaysischer Ringgit",
"displayName-count-one": "Malaysischer Ringgit",
"displayName-count-other": "Malaysische Ringgit",
"symbol": "MYR",
"symbol-alt-narrow": "RM"
},
"MZE": {
"displayName": "Mosambikanischer Escudo",
"displayName-count-one": "Mozambikanische Escudo",
"displayName-count-other": "Mozambikanische Escudo",
"symbol": "MZE"
},
"MZM": {
"displayName": "Mosambikanischer Metical (1980–2006)",
"displayName-count-one": "Mosambikanischer Metical (1980–2006)",
"displayName-count-other": "Mosambikanische Meticais (1980–2006)",
"symbol": "MZM"
},
"MZN": {
"displayName": "Mosambikanischer Metical",
"displayName-count-one": "Mosambikanischer Metical",
"displayName-count-other": "Mosambikanische Meticais",
"symbol": "MZN"
},
"NAD": {
"displayName": "Namibia-Dollar",
"displayName-count-one": "Namibia-Dollar",
"displayName-count-other": "Namibia-Dollar",
"symbol": "NAD",
"symbol-alt-narrow": "$"
},
"NGN": {
"displayName": "Nigerianischer Naira",
"displayName-count-one": "Nigerianischer Naira",
"displayName-count-other": "Nigerianische Naira",
"symbol": "NGN",
"symbol-alt-narrow": "₦"
},
"NIC": {
"displayName": "Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-other": "Nicaraguanische Córdoba (1988–1991)",
"symbol": "NIC"
},
"NIO": {
"displayName": "Nicaragua-Córdoba",
"displayName-count-one": "Nicaragua-Córdoba",
"displayName-count-other": "Nicaragua-Córdobas",
"symbol": "NIO",
"symbol-alt-narrow": "C$"
},
"NLG": {
"displayName": "Niederländischer Gulden",
"displayName-count-one": "Niederländischer Gulden",
"displayName-count-other": "Niederländische Gulden",
"symbol": "NLG"
},
"NOK": {
"displayName": "Norwegische Krone",
"displayName-count-one": "Norwegische Krone",
"displayName-count-other": "Norwegische Kronen",
"symbol": "NOK",
"symbol-alt-narrow": "kr"
},
"NPR": {
"displayName": "Nepalesische Rupie",
"displayName-count-one": "Nepalesische Rupie",
"displayName-count-other": "Nepalesische Rupien",
"symbol": "NPR",
"symbol-alt-narrow": "Rs"
},
"NZD": {
"displayName": "Neuseeland-Dollar",
"displayName-count-one": "Neuseeland-Dollar",
"displayName-count-other": "Neuseeland-Dollar",
"symbol": "NZ$",
"symbol-alt-narrow": "$"
},
"OMR": {
"displayName": "Omanischer Rial",
"displayName-count-one": "Omanischer Rial",
"displayName-count-other": "Omanische Rials",
"symbol": "OMR"
},
"PAB": {
"displayName": "Panamaischer Balboa",
"displayName-count-one": "Panamaischer Balboa",
"displayName-count-other": "Panamaische Balboas",
"symbol": "PAB"
},
"PEI": {
"displayName": "Peruanischer Inti",
"displayName-count-one": "Peruanische Inti",
"displayName-count-other": "Peruanische Inti",
"symbol": "PEI"
},
"PEN": {
"displayName": "Peruanischer Sol",
"displayName-count-one": "Peruanischer Sol",
"displayName-count-other": "Peruanische Sol",
"symbol": "PEN"
},
"PES": {
"displayName": "Peruanischer Sol (1863–1965)",
"displayName-count-one": "Peruanischer Sol (1863–1965)",
"displayName-count-other": "Peruanische Sol (1863–1965)",
"symbol": "PES"
},
"PGK": {
"displayName": "Papua-Neuguineischer Kina",
"displayName-count-one": "Papua-Neuguineischer Kina",
"displayName-count-other": "Papua-Neuguineische Kina",
"symbol": "PGK"
},
"PHP": {
"displayName": "Philippinischer Peso",
"displayName-count-one": "Philippinischer Peso",
"displayName-count-other": "Philippinische Pesos",
"symbol": "PHP",
"symbol-alt-narrow": "₱"
},
"PKR": {
"displayName": "Pakistanische Rupie",
"displayName-count-one": "Pakistanische Rupie",
"displayName-count-other": "Pakistanische Rupien",
"symbol": "PKR",
"symbol-alt-narrow": "Rs"
},
"PLN": {
"displayName": "Polnischer Złoty",
"displayName-count-one": "Polnischer Złoty",
"displayName-count-other": "Polnische Złoty",
"symbol": "PLN",
"symbol-alt-narrow": "zł"
},
"PLZ": {
"displayName": "Polnischer Zloty (1950–1995)",
"displayName-count-one": "Polnischer Zloty (1950–1995)",
"displayName-count-other": "Polnische Zloty (1950–1995)",
"symbol": "PLZ"
},
"PTE": {
"displayName": "Portugiesischer Escudo",
"displayName-count-one": "Portugiesische Escudo",
"displayName-count-other": "Portugiesische Escudo",
"symbol": "PTE"
},
"PYG": {
"displayName": "Paraguayischer Guaraní",
"displayName-count-one": "Paraguayischer Guaraní",
"displayName-count-other": "Paraguayische Guaraníes",
"symbol": "PYG",
"symbol-alt-narrow": "₲"
},
"QAR": {
"displayName": "Katar-Riyal",
"displayName-count-one": "Katar-Riyal",
"displayName-count-other": "Katar-Riyal",
"symbol": "QAR"
},
"RHD": {
"displayName": "Rhodesischer Dollar",
"displayName-count-one": "Rhodesische Dollar",
"displayName-count-other": "Rhodesische Dollar",
"symbol": "RHD"
},
"ROL": {
"displayName": "Rumänischer Leu (1952–2006)",
"displayName-count-one": "Rumänischer Leu (1952–2006)",
"displayName-count-other": "Rumänische Leu (1952–2006)",
"symbol": "ROL"
},
"RON": {
"displayName": "Rumänischer Leu",
"displayName-count-one": "Rumänischer Leu",
"displayName-count-other": "Rumänische Leu",
"symbol": "RON",
"symbol-alt-narrow": "L"
},
"RSD": {
"displayName": "Serbischer Dinar",
"displayName-count-one": "Serbischer Dinar",
"displayName-count-other": "Serbische Dinaren",
"symbol": "RSD"
},
"RUB": {
"displayName": "Russischer Rubel",
"displayName-count-one": "Russischer Rubel",
"displayName-count-other": "Russische Rubel",
"symbol": "RUB",
"symbol-alt-narrow": "₽"
},
"RUR": {
"displayName": "Russischer Rubel (1991–1998)",
"displayName-count-one": "Russischer Rubel (1991–1998)",
"displayName-count-other": "Russische Rubel (1991–1998)",
"symbol": "RUR",
"symbol-alt-narrow": "р."
},
"RWF": {
"displayName": "Ruanda-Franc",
"displayName-count-one": "Ruanda-Franc",
"displayName-count-other": "Ruanda-Francs",
"symbol": "RWF",
"symbol-alt-narrow": "F.Rw"
},
"SAR": {
"displayName": "Saudi-Rial",
"displayName-count-one": "Saudi-Rial",
"displayName-count-other": "Saudi-Rial",
"symbol": "SAR"
},
"SBD": {
"displayName": "Salomonen-Dollar",
"displayName-count-one": "Salomonen-Dollar",
"displayName-count-other": "Salomonen-Dollar",
"symbol": "SBD",
"symbol-alt-narrow": "$"
},
"SCR": {
"displayName": "Seychellen-Rupie",
"displayName-count-one": "Seychellen-Rupie",
"displayName-count-other": "Seychellen-Rupien",
"symbol": "SCR"
},
"SDD": {
"displayName": "Sudanesischer Dinar (1992–2007)",
"displayName-count-one": "Sudanesischer Dinar (1992–2007)",
"displayName-count-other": "Sudanesische Dinar (1992–2007)",
"symbol": "SDD"
},
"SDG": {
"displayName": "Sudanesisches Pfund",
"displayName-count-one": "Sudanesisches Pfund",
"displayName-count-other": "Sudanesische Pfund",
"symbol": "SDG"
},
"SDP": {
"displayName": "Sudanesisches Pfund (1957–1998)",
"displayName-count-one": "Sudanesisches Pfund (1957–1998)",
"displayName-count-other": "Sudanesische Pfund (1957–1998)",
"symbol": "SDP"
},
"SEK": {
"displayName": "Schwedische Krone",
"displayName-count-one": "Schwedische Krone",
"displayName-count-other": "Schwedische Kronen",
"symbol": "SEK",
"symbol-alt-narrow": "kr"
},
"SGD": {
"displayName": "Singapur-Dollar",
"displayName-count-one": "Singapur-Dollar",
"displayName-count-other": "Singapur-Dollar",
"symbol": "SGD",
"symbol-alt-narrow": "$"
},
"SHP": {
"displayName": "St. Helena-Pfund",
"displayName-count-one": "St. Helena-Pfund",
"displayName-count-other": "St. Helena-Pfund",
"symbol": "SHP",
"symbol-alt-narrow": "£"
},
"SIT": {
"displayName": "Slowenischer Tolar",
"displayName-count-one": "Slowenischer Tolar",
"displayName-count-other": "Slowenische Tolar",
"symbol": "SIT"
},
"SKK": {
"displayName": "Slowakische Krone",
"displayName-count-one": "Slowakische Kronen",
"displayName-count-other": "Slowakische Kronen",
"symbol": "SKK"
},
"SLL": {
"displayName": "Sierra-leonischer Leone",
"displayName-count-one": "Sierra-leonischer Leone",
"displayName-count-other": "Sierra-leonische Leones",
"symbol": "SLL"
},
"SOS": {
"displayName": "Somalia-Schilling",
"displayName-count-one": "Somalia-Schilling",
"displayName-count-other": "Somalia-Schilling",
"symbol": "SOS"
},
"SRD": {
"displayName": "Suriname-Dollar",
"displayName-count-one": "Suriname-Dollar",
"displayName-count-other": "Suriname-Dollar",
"symbol": "SRD",
"symbol-alt-narrow": "$"
},
"SRG": {
"displayName": "Suriname Gulden",
"displayName-count-one": "Suriname-Gulden",
"displayName-count-other": "Suriname-Gulden",
"symbol": "SRG"
},
"SSP": {
"displayName": "Südsudanesisches Pfund",
"displayName-count-one": "Südsudanesisches Pfund",
"displayName-count-other": "Südsudanesische Pfund",
"symbol": "SSP",
"symbol-alt-narrow": "£"
},
"STD": {
"displayName": "São-toméischer Dobra",
"displayName-count-one": "São-toméischer Dobra",
"displayName-count-other": "São-toméische Dobra",
"symbol": "STD",
"symbol-alt-narrow": "Db"
},
"SUR": {
"displayName": "Sowjetischer Rubel",
"displayName-count-one": "Sowjetische Rubel",
"displayName-count-other": "Sowjetische Rubel",
"symbol": "SUR"
},
"SVC": {
"displayName": "El Salvador Colon",
"displayName-count-one": "El Salvador-Colon",
"displayName-count-other": "El Salvador-Colon",
"symbol": "SVC"
},
"SYP": {
"displayName": "Syrisches Pfund",
"displayName-count-one": "Syrisches Pfund",
"displayName-count-other": "Syrische Pfund",
"symbol": "SYP",
"symbol-alt-narrow": "SYP"
},
"SZL": {
"displayName": "Swasiländischer Lilangeni",
"displayName-count-one": "Swasiländischer Lilangeni",
"displayName-count-other": "Swasiländische Emalangeni",
"symbol": "SZL"
},
"THB": {
"displayName": "Thailändischer Baht",
"displayName-count-one": "Thailändischer Baht",
"displayName-count-other": "Thailändische Baht",
"symbol": "฿",
"symbol-alt-narrow": "฿"
},
"TJR": {
"displayName": "Tadschikistan Rubel",
"displayName-count-one": "Tadschikistan-Rubel",
"displayName-count-other": "Tadschikistan-Rubel",
"symbol": "TJR"
},
"TJS": {
"displayName": "Tadschikistan-Somoni",
"displayName-count-one": "Tadschikistan-Somoni",
"displayName-count-other": "Tadschikistan-Somoni",
"symbol": "TJS"
},
"TMM": {
"displayName": "Turkmenistan-Manat (1993–2009)",
"displayName-count-one": "Turkmenistan-Manat (1993–2009)",
"displayName-count-other": "Turkmenistan-Manat (1993–2009)",
"symbol": "TMM"
},
"TMT": {
"displayName": "Turkmenistan-Manat",
"displayName-count-one": "Turkmenistan-Manat",
"displayName-count-other": "Turkmenistan-Manat",
"symbol": "TMT"
},
"TND": {
"displayName": "Tunesischer Dinar",
"displayName-count-one": "Tunesischer Dinar",
"displayName-count-other": "Tunesische Dinar",
"symbol": "TND"
},
"TOP": {
"displayName": "Tongaischer Paʻanga",
"displayName-count-one": "Tongaischer Paʻanga",
"displayName-count-other": "Tongaische Paʻanga",
"symbol": "TOP",
"symbol-alt-narrow": "T$"
},
"TPE": {
"displayName": "Timor-Escudo",
"displayName-count-one": "Timor-Escudo",
"displayName-count-other": "Timor-Escudo",
"symbol": "TPE"
},
"TRL": {
"displayName": "Türkische Lira (1922–2005)",
"displayName-count-one": "Türkische Lira (1922–2005)",
"displayName-count-other": "Türkische Lira (1922–2005)",
"symbol": "TRL"
},
"TRY": {
"displayName": "Türkische Lira",
"displayName-count-one": "Türkische Lira",
"displayName-count-other": "Türkische Lira",
"symbol": "TRY",
"symbol-alt-narrow": "₺",
"symbol-alt-variant": "TL"
},
"TTD": {
"displayName": "Trinidad und Tobago-Dollar",
"displayName-count-one": "Trinidad und Tobago-Dollar",
"displayName-count-other": "Trinidad und Tobago-Dollar",
"symbol": "TTD",
"symbol-alt-narrow": "$"
},
"TWD": {
"displayName": "Neuer Taiwan-Dollar",
"displayName-count-one": "Neuer Taiwan-Dollar",
"displayName-count-other": "Neue Taiwan-Dollar",
"symbol": "NT$",
"symbol-alt-narrow": "NT$"
},
"TZS": {
"displayName": "Tansania-Schilling",
"displayName-count-one": "Tansania-Schilling",
"displayName-count-other": "Tansania-Schilling",
"symbol": "TZS"
},
"UAH": {
"displayName": "Ukrainische Hrywnja",
"displayName-count-one": "Ukrainische Hrywnja",
"displayName-count-other": "Ukrainische Hrywen",
"symbol": "UAH",
"symbol-alt-narrow": "₴"
},
"UAK": {
"displayName": "Ukrainischer Karbovanetz",
"displayName-count-one": "Ukrainische Karbovanetz",
"displayName-count-other": "Ukrainische Karbovanetz",
"symbol": "UAK"
},
"UGS": {
"displayName": "Uganda-Schilling (1966–1987)",
"displayName-count-one": "Uganda-Schilling (1966–1987)",
"displayName-count-other": "Uganda-Schilling (1966–1987)",
"symbol": "UGS"
},
"UGX": {
"displayName": "Uganda-Schilling",
"displayName-count-one": "Uganda-Schilling",
"displayName-count-other": "Uganda-Schilling",
"symbol": "UGX"
},
"USD": {
"displayName": "US-Dollar",
"displayName-count-one": "US-Dollar",
"displayName-count-other": "US-Dollar",
"symbol": "$",
"symbol-alt-narrow": "$"
},
"USN": {
"displayName": "US Dollar (Nächster Tag)",
"displayName-count-one": "US-Dollar (Nächster Tag)",
"displayName-count-other": "US-Dollar (Nächster Tag)",
"symbol": "USN"
},
"USS": {
"displayName": "US Dollar (Gleicher Tag)",
"displayName-count-one": "US-Dollar (Gleicher Tag)",
"displayName-count-other": "US-Dollar (Gleicher Tag)",
"symbol": "USS"
},
"UYI": {
"displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)",
"symbol": "UYI"
},
"UYP": {
"displayName": "Uruguayischer Peso (1975–1993)",
"displayName-count-one": "Uruguayischer Peso (1975–1993)",
"displayName-count-other": "Uruguayische Pesos (1975–1993)",
"symbol": "UYP"
},
"UYU": {
"displayName": "Uruguayischer Peso",
"displayName-count-one": "Uruguayischer Peso",
"displayName-count-other": "Uruguayische Pesos",
"symbol": "UYU",
"symbol-alt-narrow": "$"
},
"UZS": {
"displayName": "Usbekistan-Sum",
"displayName-count-one": "Usbekistan-Sum",
"displayName-count-other": "Usbekistan-Sum",
"symbol": "UZS"
},
"VEB": {
"displayName": "Venezolanischer Bolívar (1871–2008)",
"displayName-count-one": "Venezolanischer Bolívar (1871–2008)",
"displayName-count-other": "Venezolanische Bolívares (1871–2008)",
"symbol": "VEB"
},
"VEF": {
"displayName": "Venezolanischer Bolívar",
"displayName-count-one": "Venezolanischer Bolívar",
"displayName-count-other": "Venezolanische Bolívares",
"symbol": "VEF",
"symbol-alt-narrow": "Bs"
},
"VND": {
"displayName": "Vietnamesischer Dong",
"displayName-count-one": "Vietnamesischer Dong",
"displayName-count-other": "Vietnamesische Dong",
"symbol": "₫",
"symbol-alt-narrow": "₫"
},
"VNN": {
"displayName": "Vietnamesischer Dong(1978–1985)",
"displayName-count-one": "Vietnamesischer Dong(1978–1985)",
"displayName-count-other": "Vietnamesische Dong(1978–1985)",
"symbol": "VNN"
},
"VUV": {
"displayName": "Vanuatu-Vatu",
"displayName-count-one": "Vanuatu-Vatu",
"displayName-count-other": "Vanuatu-Vatu",
"symbol": "VUV"
},
"WST": {
"displayName": "Samoanischer Tala",
"displayName-count-one": "Samoanischer Tala",
"displayName-count-other": "Samoanische Tala",
"symbol": "WST"
},
"XAF": {
"displayName": "CFA-Franc (BEAC)",
"displayName-count-one": "CFA-Franc (BEAC)",
"displayName-count-other": "CFA-Franc (BEAC)",
"symbol": "FCFA"
},
"XAG": {
"displayName": "Unze Silber",
"displayName-count-one": "Unze Silber",
"displayName-count-other": "Unzen Silber",
"symbol": "XAG"
},
"XAU": {
"displayName": "Unze Gold",
"displayName-count-one": "Unze Gold",
"displayName-count-other": "Unzen Gold",
"symbol": "XAU"
},
"XBA": {
"displayName": "Europäische Rechnungseinheit",
"displayName-count-one": "Europäische Rechnungseinheiten",
"displayName-count-other": "Europäische Rechnungseinheiten",
"symbol": "XBA"
},
"XBB": {
"displayName": "Europäische Währungseinheit (XBB)",
"displayName-count-one": "Europäische Währungseinheiten (XBB)",
"displayName-count-other": "Europäische Währungseinheiten (XBB)",
"symbol": "XBB"
},
"XBC": {
"displayName": "Europäische Rechnungseinheit (XBC)",
"displayName-count-one": "Europäische Rechnungseinheiten (XBC)",
"displayName-count-other": "Europäische Rechnungseinheiten (XBC)",
"symbol": "XBC"
},
"XBD": {
"displayName": "Europäische Rechnungseinheit (XBD)",
"displayName-count-one": "Europäische Rechnungseinheiten (XBD)",
"displayName-count-other": "Europäische Rechnungseinheiten (XBD)",
"symbol": "XBD"
},
"XCD": {
"displayName": "Ostkaribischer Dollar",
"displayName-count-one": "Ostkaribischer Dollar",
"displayName-count-other": "Ostkaribische Dollar",
"symbol": "EC$",
"symbol-alt-narrow": "$"
},
"XDR": {
"displayName": "Sonderziehungsrechte",
"displayName-count-one": "Sonderziehungsrechte",
"displayName-count-other": "Sonderziehungsrechte",
"symbol": "XDR"
},
"XEU": {
"displayName": "Europäische Währungseinheit (XEU)",
"displayName-count-one": "Europäische Währungseinheiten (XEU)",
"displayName-count-other": "Europäische Währungseinheiten (XEU)",
"symbol": "XEU"
},
"XFO": {
"displayName": "Französischer Gold-Franc",
"displayName-count-one": "Französische Gold-Franc",
"displayName-count-other": "Französische Gold-Franc",
"symbol": "XFO"
},
"XFU": {
"displayName": "Französischer UIC-Franc",
"displayName-count-one": "Französische UIC-Franc",
"displayName-count-other": "Französische UIC-Franc",
"symbol": "XFU"
},
"XOF": {
"displayName": "CFA-Franc (BCEAO)",
"displayName-count-one": "CFA-Franc (BCEAO)",
"displayName-count-other": "CFA-Francs (BCEAO)",
"symbol": "CFA"
},
"XPD": {
"displayName": "Unze Palladium",
"displayName-count-one": "Unze Palladium",
"displayName-count-other": "Unzen Palladium",
"symbol": "XPD"
},
"XPF": {
"displayName": "CFP-Franc",
"displayName-count-one": "CFP-Franc",
"displayName-count-other": "CFP-Franc",
"symbol": "CFPF"
},
"XPT": {
"displayName": "Unze Platin",
"displayName-count-one": "Unze Platin",
"displayName-count-other": "Unzen Platin",
"symbol": "XPT"
},
"XRE": {
"displayName": "RINET Funds",
"displayName-count-one": "RINET Funds",
"displayName-count-other": "RINET Funds",
"symbol": "XRE"
},
"XSU": {
"displayName": "SUCRE",
"displayName-count-one": "SUCRE",
"displayName-count-other": "SUCRE",
"symbol": "XSU"
},
"XTS": {
"displayName": "Testwährung",
"displayName-count-one": "Testwährung",
"displayName-count-other": "Testwährung",
"symbol": "XTS"
},
"XUA": {
"displayName": "Rechnungseinheit der AfEB",
"displayName-count-one": "Rechnungseinheit der AfEB",
"displayName-count-other": "Rechnungseinheiten der AfEB",
"symbol": "XUA"
},
"XXX": {
"displayName": "Unbekannte Währung",
"displayName-count-one": "(unbekannte Währung)",
"displayName-count-other": "(unbekannte Währung)",
"symbol": "XXX"
},
"YDD": {
"displayName": "Jemen-Dinar",
"displayName-count-one": "Jemen-Dinar",
"displayName-count-other": "Jemen-Dinar",
"symbol": "YDD"
},
"YER": {
"displayName": "Jemen-Rial",
"displayName-count-one": "Jemen-Rial",
"displayName-count-other": "Jemen-Rial",
"symbol": "YER"
},
"YUD": {
"displayName": "Jugoslawischer Dinar (1966–1990)",
"displayName-count-one": "Jugoslawischer Dinar (1966–1990)",
"displayName-count-other": "Jugoslawische Dinar (1966–1990)",
"symbol": "YUD"
},
"YUM": {
"displayName": "Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)",
"symbol": "YUM"
},
"YUN": {
"displayName": "Jugoslawischer Dinar (konvertibel)",
"displayName-count-one": "Jugoslawische Dinar (konvertibel)",
"displayName-count-other": "Jugoslawische Dinar (konvertibel)",
"symbol": "YUN"
},
"YUR": {
"displayName": "Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)",
"symbol": "YUR"
},
"ZAL": {
"displayName": "Südafrikanischer Rand (Finanz)",
"displayName-count-one": "Südafrikanischer Rand (Finanz)",
"displayName-count-other": "Südafrikanischer Rand (Finanz)",
"symbol": "ZAL"
},
"ZAR": {
"displayName": "Südafrikanischer Rand",
"displayName-count-one": "Südafrikanischer Rand",
"displayName-count-other": "Südafrikanische Rand",
"symbol": "ZAR",
"symbol-alt-narrow": "R"
},
"ZMK": {
"displayName": "Kwacha (1968–2012)",
"displayName-count-one": "Kwacha (1968–2012)",
"displayName-count-other": "Kwacha (1968–2012)",
"symbol": "ZMK"
},
"ZMW": {
"displayName": "Kwacha",
"displayName-count-one": "Kwacha",
"displayName-count-other": "Kwacha",
"symbol": "ZMW",
"symbol-alt-narrow": "K"
},
"ZRN": {
"displayName": "Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-other": "Zaire-Neue Zaïre (1993–1998)",
"symbol": "ZRN"
},
"ZRZ": {
"displayName": "Zaire-Zaïre (1971–1993)",
"displayName-count-one": "Zaire-Zaïre (1971–1993)",
"displayName-count-other": "Zaire-Zaïre (1971–1993)",
"symbol": "ZRZ"
},
"ZWD": {
"displayName": "Simbabwe-Dollar (1980–2008)",
"displayName-count-one": "Simbabwe-Dollar (1980–2008)",
"displayName-count-other": "Simbabwe-Dollar (1980–2008)",
"symbol": "ZWD"
},
"ZWL": {
"displayName": "Simbabwe-Dollar (2009)",
"displayName-count-one": "Simbabwe-Dollar (2009)",
"displayName-count-other": "Simbabwe-Dollar (2009)",
"symbol": "ZWL"
},
"ZWR": {
"displayName": "Simbabwe-Dollar (2008)",
"displayName-count-one": "Simbabwe-Dollar (2008)",
"displayName-count-other": "Simbabwe-Dollar (2008)",
"symbol": "ZWR"
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 13259 $",
"_cldrVersion";
"31";
}
"language";
"de";
}
"numbers";
{
"currencies";
{
"ADP";
{
"displayName";
"Andorranische Pesete",
"displayName-count-one";
"Andorranische Pesete",
"displayName-count-other";
"Andorranische Peseten",
"symbol";
"ADP";
}
"AED";
{
"displayName";
"VAE-Dirham",
"displayName-count-one";
"VAE-Dirham",
"displayName-count-other";
"VAE-Dirham",
"symbol";
"AED";
}
"AFA";
{
"displayName";
"Afghanische Afghani (1927–2002)",
"displayName-count-one";
"Afghanische Afghani (1927–2002)",
"displayName-count-other";
"Afghanische Afghani (1927–2002)",
"symbol";
"AFA";
}
"AFN";
{
"displayName";
"Afghanischer Afghani",
"displayName-count-one";
"Afghanischer Afghani",
"displayName-count-other";
"Afghanische Afghani",
"symbol";
"AFN";
}
"ALK";
{
"displayName";
"Albanischer Lek (1946–1965)",
"displayName-count-one";
"Albanischer Lek (1946–1965)",
"displayName-count-other";
"Albanische Lek (1946–1965)";
}
"ALL";
{
"displayName";
"Albanischer Lek",
"displayName-count-one";
"Albanischer Lek",
"displayName-count-other";
"Albanische Lek",
"symbol";
"ALL";
}
"AMD";
{
"displayName";
"Armenischer Dram",
"displayName-count-one";
"Armenischer Dram",
"displayName-count-other";
"Armenische Dram",
"symbol";
"AMD";
}
"ANG";
{
"displayName";
"Niederländische-Antillen-Gulden",
"displayName-count-one";
"Niederländische-Antillen-Gulden",
"displayName-count-other";
"Niederländische-Antillen-Gulden",
"symbol";
"ANG";
}
"AOA";
{
"displayName";
"Angolanischer Kwanza",
"displayName-count-one";
"Angolanischer Kwanza",
"displayName-count-other";
"Angolanische Kwanza",
"symbol";
"AOA",
"symbol-alt-narrow";
"Kz";
}
"AOK";
{
"displayName";
"Angolanischer Kwanza (1977–1990)",
"displayName-count-one";
"Angolanischer Kwanza (1977–1990)",
"displayName-count-other";
"Angolanische Kwanza (1977–1990)",
"symbol";
"AOK";
}
"AON";
{
"displayName";
"Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-one";
"Angolanischer Neuer Kwanza (1990–2000)",
"displayName-count-other";
"Angolanische Neue Kwanza (1990–2000)",
"symbol";
"AON";
}
"AOR";
{
"displayName";
"Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-one";
"Angolanischer Kwanza Reajustado (1995–1999)",
"displayName-count-other";
"Angolanische Kwanza Reajustado (1995–1999)",
"symbol";
"AOR";
}
"ARA";
{
"displayName";
"Argentinischer Austral",
"displayName-count-one";
"Argentinischer Austral",
"displayName-count-other";
"Argentinische Austral",
"symbol";
"ARA";
}
"ARL";
{
"displayName";
"Argentinischer Peso Ley (1970–1983)",
"displayName-count-one";
"Argentinischer Peso Ley (1970–1983)",
"displayName-count-other";
"Argentinische Pesos Ley (1970–1983)",
"symbol";
"ARL";
}
"ARM";
{
"displayName";
"Argentinischer Peso (1881–1970)",
"displayName-count-one";
"Argentinischer Peso (1881–1970)",
"displayName-count-other";
"Argentinische Pesos (1881–1970)",
"symbol";
"ARM";
}
"ARP";
{
"displayName";
"Argentinischer Peso (1983–1985)",
"displayName-count-one";
"Argentinischer Peso (1983–1985)",
"displayName-count-other";
"Argentinische Peso (1983–1985)",
"symbol";
"ARP";
}
"ARS";
{
"displayName";
"Argentinischer Peso",
"displayName-count-one";
"Argentinischer Peso",
"displayName-count-other";
"Argentinische Pesos",
"symbol";
"ARS",
"symbol-alt-narrow";
"$";
}
"ATS";
{
"displayName";
"Österreichischer Schilling",
"displayName-count-one";
"Österreichischer Schilling",
"displayName-count-other";
"Österreichische Schilling",
"symbol";
"öS";
}
"AUD";
{
"displayName";
"Australischer Dollar",
"displayName-count-one";
"Australischer Dollar",
"displayName-count-other";
"Australische Dollar",
"symbol";
"AU$",
"symbol-alt-narrow";
"$";
}
"AWG";
{
"displayName";
"Aruba-Florin",
"displayName-count-one";
"Aruba-Florin",
"displayName-count-other";
"Aruba-Florin",
"symbol";
"AWG";
}
"AZM";
{
"displayName";
"Aserbaidschan-Manat (1993–2006)",
"displayName-count-one";
"Aserbaidschan-Manat (1993–2006)",
"displayName-count-other";
"Aserbaidschan-Manat (1993–2006)",
"symbol";
"AZM";
}
"AZN";
{
"displayName";
"Aserbaidschan-Manat",
"displayName-count-one";
"Aserbaidschan-Manat",
"displayName-count-other";
"Aserbaidschan-Manat",
"symbol";
"AZN";
}
"BAD";
{
"displayName";
"Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-one";
"Bosnien und Herzegowina Dinar (1992–1994)",
"displayName-count-other";
"Bosnien und Herzegowina Dinar (1992–1994)",
"symbol";
"BAD";
}
"BAM";
{
"displayName";
"Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-one";
"Bosnien und Herzegowina Konvertierbare Mark",
"displayName-count-other";
"Bosnien und Herzegowina Konvertierbare Mark",
"symbol";
"BAM",
"symbol-alt-narrow";
"KM";
}
"BAN";
{
"displayName";
"Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-one";
"Bosnien und Herzegowina Neuer Dinar (1994–1997)",
"displayName-count-other";
"Bosnien und Herzegowina Neue Dinar (1994–1997)",
"symbol";
"BAN";
}
"BBD";
{
"displayName";
"Barbados-Dollar",
"displayName-count-one";
"Barbados-Dollar",
"displayName-count-other";
"Barbados-Dollar",
"symbol";
"BBD",
"symbol-alt-narrow";
"$";
}
"BDT";
{
"displayName";
"Bangladesch-Taka",
"displayName-count-one";
"Bangladesch-Taka",
"displayName-count-other";
"Bangladesch-Taka",
"symbol";
"BDT",
"symbol-alt-narrow";
"৳";
}
"BEC";
{
"displayName";
"Belgischer Franc (konvertibel)",
"displayName-count-one";
"Belgischer Franc (konvertibel)",
"displayName-count-other";
"Belgische Franc (konvertibel)",
"symbol";
"BEC";
}
"BEF";
{
"displayName";
"Belgischer Franc",
"displayName-count-one";
"Belgischer Franc",
"displayName-count-other";
"Belgische Franc",
"symbol";
"BEF";
}
"BEL";
{
"displayName";
"Belgischer Finanz-Franc",
"displayName-count-one";
"Belgischer Finanz-Franc",
"displayName-count-other";
"Belgische Finanz-Franc",
"symbol";
"BEL";
}
"BGL";
{
"displayName";
"Bulgarische Lew (1962–1999)",
"displayName-count-one";
"Bulgarische Lew (1962–1999)",
"displayName-count-other";
"Bulgarische Lew (1962–1999)",
"symbol";
"BGL";
}
"BGM";
{
"displayName";
"Bulgarischer Lew (1952–1962)",
"displayName-count-one";
"Bulgarischer Lew (1952–1962)",
"displayName-count-other";
"Bulgarische Lew (1952–1962)",
"symbol";
"BGK";
}
"BGN";
{
"displayName";
"Bulgarischer Lew",
"displayName-count-one";
"Bulgarischer Lew",
"displayName-count-other";
"Bulgarische Lew",
"symbol";
"BGN";
}
"BGO";
{
"displayName";
"Bulgarischer Lew (1879–1952)",
"displayName-count-one";
"Bulgarischer Lew (1879–1952)",
"displayName-count-other";
"Bulgarische Lew (1879–1952)",
"symbol";
"BGJ";
}
"BHD";
{
"displayName";
"Bahrain-Dinar",
"displayName-count-one";
"Bahrain-Dinar",
"displayName-count-other";
"Bahrain-Dinar",
"symbol";
"BHD";
}
"BIF";
{
"displayName";
"Burundi-Franc",
"displayName-count-one";
"Burundi-Franc",
"displayName-count-other";
"Burundi-Francs",
"symbol";
"BIF";
}
"BMD";
{
"displayName";
"Bermuda-Dollar",
"displayName-count-one";
"Bermuda-Dollar",
"displayName-count-other";
"Bermuda-Dollar",
"symbol";
"BMD",
"symbol-alt-narrow";
"$";
}
"BND";
{
"displayName";
"Brunei-Dollar",
"displayName-count-one";
"Brunei-Dollar",
"displayName-count-other";
"Brunei-Dollar",
"symbol";
"BND",
"symbol-alt-narrow";
"$";
}
"BOB";
{
"displayName";
"Bolivanischer Boliviano",
"displayName-count-one";
"Bolivanischer Boliviano",
"displayName-count-other";
"Bolivianische Bolivianos",
"symbol";
"BOB",
"symbol-alt-narrow";
"Bs";
}
"BOL";
{
"displayName";
"Bolivianischer Boliviano (1863–1963)",
"displayName-count-one";
"Bolivianischer Boliviano (1863–1963)",
"displayName-count-other";
"Bolivianische Bolivianos (1863–1963)",
"symbol";
"BOL";
}
"BOP";
{
"displayName";
"Bolivianischer Peso",
"displayName-count-one";
"Bolivianischer Peso",
"displayName-count-other";
"Bolivianische Peso",
"symbol";
"BOP";
}
"BOV";
{
"displayName";
"Boliviansiche Mvdol",
"displayName-count-one";
"Boliviansiche Mvdol",
"displayName-count-other";
"Bolivianische Mvdol",
"symbol";
"BOV";
}
"BRB";
{
"displayName";
"Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-one";
"Brasilianischer Cruzeiro Novo (1967–1986)",
"displayName-count-other";
"Brasilianische Cruzeiro Novo (1967–1986)",
"symbol";
"BRB";
}
"BRC";
{
"displayName";
"Brasilianischer Cruzado (1986–1989)",
"displayName-count-one";
"Brasilianischer Cruzado (1986–1989)",
"displayName-count-other";
"Brasilianische Cruzado (1986–1989)",
"symbol";
"BRC";
}
"BRE";
{
"displayName";
"Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1990–1993)",
"displayName-count-other";
"Brasilianische Cruzeiro (1990–1993)",
"symbol";
"BRE";
}
"BRL";
{
"displayName";
"Brasilianischer Real",
"displayName-count-one";
"Brasilianischer Real",
"displayName-count-other";
"Brasilianische Real",
"symbol";
"R$",
"symbol-alt-narrow";
"R$";
}
"BRN";
{
"displayName";
"Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-one";
"Brasilianischer Cruzado Novo (1989–1990)",
"displayName-count-other";
"Brasilianische Cruzado Novo (1989–1990)",
"symbol";
"BRN";
}
"BRR";
{
"displayName";
"Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1993–1994)",
"displayName-count-other";
"Brasilianische Cruzeiro (1993–1994)",
"symbol";
"BRR";
}
"BRZ";
{
"displayName";
"Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-one";
"Brasilianischer Cruzeiro (1942–1967)",
"displayName-count-other";
"Brasilianischer Cruzeiro (1942–1967)",
"symbol";
"BRZ";
}
"BSD";
{
"displayName";
"Bahamas-Dollar",
"displayName-count-one";
"Bahamas-Dollar",
"displayName-count-other";
"Bahamas-Dollar",
"symbol";
"BSD",
"symbol-alt-narrow";
"$";
}
"BTN";
{
"displayName";
"Bhutan-Ngultrum",
"displayName-count-one";
"Bhutan-Ngultrum",
"displayName-count-other";
"Bhutan-Ngultrum",
"symbol";
"BTN";
}
"BUK";
{
"displayName";
"Birmanischer Kyat",
"displayName-count-one";
"Birmanischer Kyat",
"displayName-count-other";
"Birmanische Kyat",
"symbol";
"BUK";
}
"BWP";
{
"displayName";
"Botswanischer Pula",
"displayName-count-one";
"Botswanischer Pula",
"displayName-count-other";
"Botswanische Pula",
"symbol";
"BWP",
"symbol-alt-narrow";
"P";
}
"BYB";
{
"displayName";
"Belarus-Rubel (1994–1999)",
"displayName-count-one";
"Belarus-Rubel (1994–1999)",
"displayName-count-other";
"Belarus-Rubel (1994–1999)",
"symbol";
"BYB";
}
"BYN";
{
"displayName";
"Weißrussischer Rubel",
"displayName-count-one";
"Weißrussischer Rubel",
"displayName-count-other";
"Weißrussische Rubel",
"symbol";
"BYN",
"symbol-alt-narrow";
"р.";
}
"BYR";
{
"displayName";
"Weißrussischer Rubel (2000–2016)",
"displayName-count-one";
"Weißrussischer Rubel (2000–2016)",
"displayName-count-other";
"Weißrussische Rubel (2000–2016)",
"symbol";
"BYR";
}
"BZD";
{
"displayName";
"Belize-Dollar",
"displayName-count-one";
"Belize-Dollar",
"displayName-count-other";
"Belize-Dollar",
"symbol";
"BZD",
"symbol-alt-narrow";
"$";
}
"CAD";
{
"displayName";
"Kanadischer Dollar",
"displayName-count-one";
"Kanadischer Dollar",
"displayName-count-other";
"Kanadische Dollar",
"symbol";
"CA$",
"symbol-alt-narrow";
"$";
}
"CDF";
{
"displayName";
"Kongo-Franc",
"displayName-count-one";
"Kongo-Franc",
"displayName-count-other";
"Kongo-Francs",
"symbol";
"CDF";
}
"CHE";
{
"displayName";
"WIR-Euro",
"displayName-count-one";
"WIR-Euro",
"displayName-count-other";
"WIR-Euro",
"symbol";
"CHE";
}
"CHF";
{
"displayName";
"Schweizer Franken",
"displayName-count-one";
"Schweizer Franken",
"displayName-count-other";
"Schweizer Franken",
"symbol";
"CHF";
}
"CHW";
{
"displayName";
"WIR Franken",
"displayName-count-one";
"WIR Franken",
"displayName-count-other";
"WIR Franken",
"symbol";
"CHW";
}
"CLE";
{
"displayName";
"Chilenischer Escudo",
"displayName-count-one";
"Chilenischer Escudo",
"displayName-count-other";
"Chilenische Escudo",
"symbol";
"CLE";
}
"CLF";
{
"displayName";
"Chilenische Unidades de Fomento",
"displayName-count-one";
"Chilenische Unidades de Fomento",
"displayName-count-other";
"Chilenische Unidades de Fomento",
"symbol";
"CLF";
}
"CLP";
{
"displayName";
"Chilenischer Peso",
"displayName-count-one";
"Chilenischer Peso",
"displayName-count-other";
"Chilenische Pesos",
"symbol";
"CLP",
"symbol-alt-narrow";
"$";
}
"CNX";
{
"displayName";
"Dollar der Chinesischen Volksbank",
"displayName-count-one";
"Dollar der Chinesischen Volksbank",
"displayName-count-other";
"Dollar der Chinesischen Volksbank",
"symbol";
"CNX";
}
"CNY";
{
"displayName";
"Renminbi Yuan",
"displayName-count-one";
"Chinesischer Yuan",
"displayName-count-other";
"Renminbi Yuan",
"symbol";
"CN¥",
"symbol-alt-narrow";
"¥";
}
"COP";
{
"displayName";
"Kolumbianischer Peso",
"displayName-count-one";
"Kolumbianischer Peso",
"displayName-count-other";
"Kolumbianische Pesos",
"symbol";
"COP",
"symbol-alt-narrow";
"$";
}
"COU";
{
"displayName";
"Kolumbianische Unidades de valor real",
"displayName-count-one";
"Kolumbianische Unidad de valor real",
"displayName-count-other";
"Kolumbianische Unidades de valor real",
"symbol";
"COU";
}
"CRC";
{
"displayName";
"Costa-Rica-Colón",
"displayName-count-one";
"Costa-Rica-Colón",
"displayName-count-other";
"Costa-Rica-Colón",
"symbol";
"CRC",
"symbol-alt-narrow";
"₡";
}
"CSD";
{
"displayName";
"Serbischer Dinar (2002–2006)",
"displayName-count-one";
"Serbischer Dinar (2002–2006)",
"displayName-count-other";
"Serbische Dinar (2002–2006)",
"symbol";
"CSD";
}
"CSK";
{
"displayName";
"Tschechoslowakische Krone",
"displayName-count-one";
"Tschechoslowakische Kronen",
"displayName-count-other";
"Tschechoslowakische Kronen",
"symbol";
"CSK";
}
"CUC";
{
"displayName";
"Kubanischer Peso (konvertibel)",
"displayName-count-one";
"Kubanischer Peso (konvertibel)",
"displayName-count-other";
"Kubanische Pesos (konvertibel)",
"symbol";
"CUC",
"symbol-alt-narrow";
"Cub$";
}
"CUP";
{
"displayName";
"Kubanischer Peso",
"displayName-count-one";
"Kubanischer Peso",
"displayName-count-other";
"Kubanische Pesos",
"symbol";
"CUP",
"symbol-alt-narrow";
"$";
}
"CVE";
{
"displayName";
"Cabo-Verde-Escudo",
"displayName-count-one";
"Cabo-Verde-Escudo",
"displayName-count-other";
"Cabo-Verde-Escudos",
"symbol";
"CVE";
}
"CYP";
{
"displayName";
"Zypern-Pfund",
"displayName-count-one";
"Zypern Pfund",
"displayName-count-other";
"Zypern Pfund",
"symbol";
"CYP";
}
"CZK";
{
"displayName";
"Tschechische Krone",
"displayName-count-one";
"Tschechische Krone",
"displayName-count-other";
"Tschechische Kronen",
"symbol";
"CZK",
"symbol-alt-narrow";
"Kč";
}
"DDM";
{
"displayName";
"Mark der DDR",
"displayName-count-one";
"Mark der DDR",
"displayName-count-other";
"Mark der DDR",
"symbol";
"DDM";
}
"DEM";
{
"displayName";
"Deutsche Mark",
"displayName-count-one";
"Deutsche Mark",
"displayName-count-other";
"Deutsche Mark",
"symbol";
"DM";
}
"DJF";
{
"displayName";
"Dschibuti-Franc",
"displayName-count-one";
"Dschibuti-Franc",
"displayName-count-other";
"Dschibuti-Franc",
"symbol";
"DJF";
}
"DKK";
{
"displayName";
"Dänische Krone",
"displayName-count-one";
"Dänische Krone",
"displayName-count-other";
"Dänische Kronen",
"symbol";
"DKK",
"symbol-alt-narrow";
"kr";
}
"DOP";
{
"displayName";
"Dominikanischer Peso",
"displayName-count-one";
"Dominikanischer Peso",
"displayName-count-other";
"Dominikanische Pesos",
"symbol";
"DOP",
"symbol-alt-narrow";
"$";
}
"DZD";
{
"displayName";
"Algerischer Dinar",
"displayName-count-one";
"Algerischer Dinar",
"displayName-count-other";
"Algerische Dinar",
"symbol";
"DZD";
}
"ECS";
{
"displayName";
"Ecuadorianischer Sucre",
"displayName-count-one";
"Ecuadorianischer Sucre",
"displayName-count-other";
"Ecuadorianische Sucre",
"symbol";
"ECS";
}
"ECV";
{
"displayName";
"Verrechnungseinheit für Ecuador",
"displayName-count-one";
"Verrechnungseinheiten für Ecuador",
"displayName-count-other";
"Verrechnungseinheiten für Ecuador",
"symbol";
"ECV";
}
"EEK";
{
"displayName";
"Estnische Krone",
"displayName-count-one";
"Estnische Krone",
"displayName-count-other";
"Estnische Kronen",
"symbol";
"EEK";
}
"EGP";
{
"displayName";
"Ägyptisches Pfund",
"displayName-count-one";
"Ägyptisches Pfund",
"displayName-count-other";
"Ägyptische Pfund",
"symbol";
"EGP",
"symbol-alt-narrow";
"E£";
}
"ERN";
{
"displayName";
"Eritreischer Nakfa",
"displayName-count-one";
"Eritreischer Nakfa",
"displayName-count-other";
"Eritreische Nakfa",
"symbol";
"ERN";
}
"ESA";
{
"displayName";
"Spanische Peseta (A–Konten)",
"displayName-count-one";
"Spanische Peseta (A–Konten)",
"displayName-count-other";
"Spanische Peseten (A–Konten)",
"symbol";
"ESA";
}
"ESB";
{
"displayName";
"Spanische Peseta (konvertibel)",
"displayName-count-one";
"Spanische Peseta (konvertibel)",
"displayName-count-other";
"Spanische Peseten (konvertibel)",
"symbol";
"ESB";
}
"ESP";
{
"displayName";
"Spanische Peseta",
"displayName-count-one";
"Spanische Peseta",
"displayName-count-other";
"Spanische Peseten",
"symbol";
"ESP",
"symbol-alt-narrow";
"₧";
}
"ETB";
{
"displayName";
"Äthiopischer Birr",
"displayName-count-one";
"Äthiopischer Birr",
"displayName-count-other";
"Äthiopische Birr",
"symbol";
"ETB";
}
"EUR";
{
"displayName";
"Euro",
"displayName-count-one";
"Euro",
"displayName-count-other";
"Euro",
"symbol";
"€",
"symbol-alt-narrow";
"€";
}
"FIM";
{
"displayName";
"Finnische Mark",
"displayName-count-one";
"Finnische Mark",
"displayName-count-other";
"Finnische Mark",
"symbol";
"FIM";
}
"FJD";
{
"displayName";
"Fidschi-Dollar",
"displayName-count-one";
"Fidschi-Dollar",
"displayName-count-other";
"Fidschi-Dollar",
"symbol";
"FJD",
"symbol-alt-narrow";
"$";
}
"FKP";
{
"displayName";
"Falkland-Pfund",
"displayName-count-one";
"Falkland-Pfund",
"displayName-count-other";
"Falkland-Pfund",
"symbol";
"FKP",
"symbol-alt-narrow";
"Fl£";
}
"FRF";
{
"displayName";
"Französischer Franc",
"displayName-count-one";
"Französischer Franc",
"displayName-count-other";
"Französische Franc",
"symbol";
"FRF";
}
"GBP";
{
"displayName";
"Britisches Pfund",
"displayName-count-one";
"Britisches Pfund",
"displayName-count-other";
"Britische Pfund",
"symbol";
"£",
"symbol-alt-narrow";
"£";
}
"GEK";
{
"displayName";
"Georgischer Kupon Larit",
"displayName-count-one";
"Georgischer Kupon Larit",
"displayName-count-other";
"Georgische Kupon Larit",
"symbol";
"GEK";
}
"GEL";
{
"displayName";
"Georgischer Lari",
"displayName-count-one";
"Georgischer Lari",
"displayName-count-other";
"Georgische Lari",
"symbol";
"GEL",
"symbol-alt-narrow";
"₾",
"symbol-alt-variant";
"₾";
}
"GHC";
{
"displayName";
"Ghanaischer Cedi (1979–2007)",
"displayName-count-one";
"Ghanaischer Cedi (1979–2007)",
"displayName-count-other";
"Ghanaische Cedi (1979–2007)",
"symbol";
"GHC";
}
"GHS";
{
"displayName";
"Ghanaischer Cedi",
"displayName-count-one";
"Ghanaischer Cedi",
"displayName-count-other";
"Ghanaische Cedi",
"symbol";
"GHS";
}
"GIP";
{
"displayName";
"Gibraltar-Pfund",
"displayName-count-one";
"Gibraltar-Pfund",
"displayName-count-other";
"Gibraltar Pfund",
"symbol";
"GIP",
"symbol-alt-narrow";
"£";
}
"GMD";
{
"displayName";
"Gambia-Dalasi",
"displayName-count-one";
"Gambia-Dalasi",
"displayName-count-other";
"Gambia-Dalasi",
"symbol";
"GMD";
}
"GNF";
{
"displayName";
"Guinea-Franc",
"displayName-count-one";
"Guinea-Franc",
"displayName-count-other";
"Guinea-Franc",
"symbol";
"GNF",
"symbol-alt-narrow";
"F.G.";
}
"GNS";
{
"displayName";
"Guineischer Syli",
"displayName-count-one";
"Guineischer Syli",
"displayName-count-other";
"Guineische Syli",
"symbol";
"GNS";
}
"GQE";
{
"displayName";
"Äquatorialguinea-Ekwele",
"displayName-count-one";
"Äquatorialguinea-Ekwele",
"displayName-count-other";
"Äquatorialguinea-Ekwele",
"symbol";
"GQE";
}
"GRD";
{
"displayName";
"Griechische Drachme",
"displayName-count-one";
"Griechische Drachme",
"displayName-count-other";
"Griechische Drachmen",
"symbol";
"GRD";
}
"GTQ";
{
"displayName";
"Guatemaltekischer Quetzal",
"displayName-count-one";
"Guatemaltekischer Quetzal",
"displayName-count-other";
"Guatemaltekische Quetzales",
"symbol";
"GTQ",
"symbol-alt-narrow";
"Q";
}
"GWE";
{
"displayName";
"Portugiesisch Guinea Escudo",
"displayName-count-one";
"Portugiesisch Guinea Escudo",
"displayName-count-other";
"Portugiesisch Guinea Escudo",
"symbol";
"GWE";
}
"GWP";
{
"displayName";
"Guinea-Bissau Peso",
"displayName-count-one";
"Guinea-Bissau Peso",
"displayName-count-other";
"Guinea-Bissau Pesos",
"symbol";
"GWP";
}
"GYD";
{
"displayName";
"Guyana-Dollar",
"displayName-count-one";
"Guyana-Dollar",
"displayName-count-other";
"Guyana-Dollar",
"symbol";
"GYD",
"symbol-alt-narrow";
"$";
}
"HKD";
{
"displayName";
"Hongkong-Dollar",
"displayName-count-one";
"Hongkong-Dollar",
"displayName-count-other";
"Hongkong-Dollar",
"symbol";
"HK$",
"symbol-alt-narrow";
"$";
}
"HNL";
{
"displayName";
"Honduras-Lempira",
"displayName-count-one";
"Honduras-Lempira",
"displayName-count-other";
"Honduras-Lempira",
"symbol";
"HNL",
"symbol-alt-narrow";
"L";
}
"HRD";
{
"displayName";
"Kroatischer Dinar",
"displayName-count-one";
"Kroatischer Dinar",
"displayName-count-other";
"Kroatische Dinar",
"symbol";
"HRD";
}
"HRK";
{
"displayName";
"Kroatischer Kuna",
"displayName-count-one";
"Kroatischer Kuna",
"displayName-count-other";
"Kroatische Kuna",
"symbol";
"HRK",
"symbol-alt-narrow";
"kn";
}
"HTG";
{
"displayName";
"Haitianische Gourde",
"displayName-count-one";
"Haitianische Gourde",
"displayName-count-other";
"Haitianische Gourdes",
"symbol";
"HTG";
}
"HUF";
{
"displayName";
"Ungarischer Forint",
"displayName-count-one";
"Ungarischer Forint",
"displayName-count-other";
"Ungarische Forint",
"symbol";
"HUF",
"symbol-alt-narrow";
"Ft";
}
"IDR";
{
"displayName";
"Indonesische Rupiah",
"displayName-count-one";
"Indonesische Rupiah",
"displayName-count-other";
"Indonesische Rupiah",
"symbol";
"IDR",
"symbol-alt-narrow";
"Rp";
}
"IEP";
{
"displayName";
"Irisches Pfund",
"displayName-count-one";
"Irisches Pfund",
"displayName-count-other";
"Irische Pfund",
"symbol";
"IEP";
}
"ILP";
{
"displayName";
"Israelisches Pfund",
"displayName-count-one";
"Israelisches Pfund",
"displayName-count-other";
"Israelische Pfund",
"symbol";
"ILP";
}
"ILR";
{
"displayName";
"Israelischer Schekel (1980–1985)",
"displayName-count-one";
"Israelischer Schekel (1980–1985)",
"displayName-count-other";
"Israelische Schekel (1980–1985)";
}
"ILS";
{
"displayName";
"Israelischer Neuer Schekel",
"displayName-count-one";
"Israelischer Neuer Schekel",
"displayName-count-other";
"Israelische Neue Schekel",
"symbol";
"₪",
"symbol-alt-narrow";
"₪";
}
"INR";
{
"displayName";
"Indische Rupie",
"displayName-count-one";
"Indische Rupie",
"displayName-count-other";
"Indische Rupien",
"symbol";
"₹",
"symbol-alt-narrow";
"₹";
}
"IQD";
{
"displayName";
"Irakischer Dinar",
"displayName-count-one";
"Irakischer Dinar",
"displayName-count-other";
"Irakische Dinar",
"symbol";
"IQD";
}
"IRR";
{
"displayName";
"Iranischer Rial",
"displayName-count-one";
"Iranischer Rial",
"displayName-count-other";
"Iranische Rial",
"symbol";
"IRR";
}
"ISJ";
{
"displayName";
"Isländische Krone (1918–1981)",
"displayName-count-one";
"Isländische Krone (1918–1981)",
"displayName-count-other";
"Isländische Kronen (1918–1981)";
}
"ISK";
{
"displayName";
"Isländische Krone",
"displayName-count-one";
"Isländische Krone",
"displayName-count-other";
"Isländische Kronen",
"symbol";
"ISK",
"symbol-alt-narrow";
"kr";
}
"ITL";
{
"displayName";
"Italienische Lira",
"displayName-count-one";
"Italienische Lira",
"displayName-count-other";
"Italienische Lire",
"symbol";
"ITL";
}
"JMD";
{
"displayName";
"Jamaika-Dollar",
"displayName-count-one";
"Jamaika-Dollar",
"displayName-count-other";
"Jamaika-Dollar",
"symbol";
"JMD",
"symbol-alt-narrow";
"$";
}
"JOD";
{
"displayName";
"Jordanischer Dinar",
"displayName-count-one";
"Jordanischer Dinar",
"displayName-count-other";
"Jordanische Dinar",
"symbol";
"JOD";
}
"JPY";
{
"displayName";
"Japanischer Yen",
"displayName-count-one";
"Japanischer Yen",
"displayName-count-other";
"Japanische Yen",
"symbol";
"¥",
"symbol-alt-narrow";
"¥";
}
"KES";
{
"displayName";
"Kenia-Schilling",
"displayName-count-one";
"Kenia-Schilling",
"displayName-count-other";
"Kenia-Schilling",
"symbol";
"KES";
}
"KGS";
{
"displayName";
"Kirgisischer Som",
"displayName-count-one";
"Kirgisischer Som",
"displayName-count-other";
"Kirgisische Som",
"symbol";
"KGS";
}
"KHR";
{
"displayName";
"Kambodschanischer Riel",
"displayName-count-one";
"Kambodschanischer Riel",
"displayName-count-other";
"Kambodschanische Riel",
"symbol";
"KHR",
"symbol-alt-narrow";
"៛";
}
"KMF";
{
"displayName";
"Komoren-Franc",
"displayName-count-one";
"Komoren-Franc",
"displayName-count-other";
"Komoren-Francs",
"symbol";
"KMF",
"symbol-alt-narrow";
"FC";
}
"KPW";
{
"displayName";
"Nordkoreanischer Won",
"displayName-count-one";
"Nordkoreanischer Won",
"displayName-count-other";
"Nordkoreanische Won",
"symbol";
"KPW",
"symbol-alt-narrow";
"₩";
}
"KRH";
{
"displayName";
"Südkoreanischer Hwan (1953–1962)",
"displayName-count-one";
"Südkoreanischer Hwan (1953–1962)",
"displayName-count-other";
"Südkoreanischer Hwan (1953–1962)",
"symbol";
"KRH";
}
"KRO";
{
"displayName";
"Südkoreanischer Won (1945–1953)",
"displayName-count-one";
"Südkoreanischer Won (1945–1953)",
"displayName-count-other";
"Südkoreanischer Won (1945–1953)",
"symbol";
"KRO";
}
"KRW";
{
"displayName";
"Südkoreanischer Won",
"displayName-count-one";
"Südkoreanischer Won",
"displayName-count-other";
"Südkoreanische Won",
"symbol";
"₩",
"symbol-alt-narrow";
"₩";
}
"KWD";
{
"displayName";
"Kuwait-Dinar",
"displayName-count-one";
"Kuwait-Dinar",
"displayName-count-other";
"Kuwait-Dinar",
"symbol";
"KWD";
}
"KYD";
{
"displayName";
"Kaiman-Dollar",
"displayName-count-one";
"Kaiman-Dollar",
"displayName-count-other";
"Kaiman-Dollar",
"symbol";
"KYD",
"symbol-alt-narrow";
"$";
}
"KZT";
{
"displayName";
"Kasachischer Tenge",
"displayName-count-one";
"Kasachischer Tenge",
"displayName-count-other";
"Kasachische Tenge",
"symbol";
"KZT",
"symbol-alt-narrow";
"₸";
}
"LAK";
{
"displayName";
"Laotischer Kip",
"displayName-count-one";
"Laotischer Kip",
"displayName-count-other";
"Laotische Kip",
"symbol";
"LAK",
"symbol-alt-narrow";
"₭";
}
"LBP";
{
"displayName";
"Libanesisches Pfund",
"displayName-count-one";
"Libanesisches Pfund",
"displayName-count-other";
"Libanesische Pfund",
"symbol";
"LBP",
"symbol-alt-narrow";
"L£";
}
"LKR";
{
"displayName";
"Sri-Lanka-Rupie",
"displayName-count-one";
"Sri-Lanka-Rupie",
"displayName-count-other";
"Sri-Lanka-Rupien",
"symbol";
"LKR",
"symbol-alt-narrow";
"Rs";
}
"LRD";
{
"displayName";
"Liberianischer Dollar",
"displayName-count-one";
"Liberianischer Dollar",
"displayName-count-other";
"Liberianische Dollar",
"symbol";
"LRD",
"symbol-alt-narrow";
"$";
}
"LSL";
{
"displayName";
"Loti",
"displayName-count-one";
"Loti",
"displayName-count-other";
"Loti",
"symbol";
"LSL";
}
"LTL";
{
"displayName";
"Litauischer Litas",
"displayName-count-one";
"Litauischer Litas",
"displayName-count-other";
"Litauische Litas",
"symbol";
"LTL",
"symbol-alt-narrow";
"Lt";
}
"LTT";
{
"displayName";
"Litauischer Talonas",
"displayName-count-one";
"Litauische Talonas",
"displayName-count-other";
"Litauische Talonas",
"symbol";
"LTT";
}
"LUC";
{
"displayName";
"Luxemburgischer Franc (konvertibel)",
"displayName-count-one";
"Luxemburgische Franc (konvertibel)",
"displayName-count-other";
"Luxemburgische Franc (konvertibel)",
"symbol";
"LUC";
}
"LUF";
{
"displayName";
"Luxemburgischer Franc",
"displayName-count-one";
"Luxemburgische Franc",
"displayName-count-other";
"Luxemburgische Franc",
"symbol";
"LUF";
}
"LUL";
{
"displayName";
"Luxemburgischer Finanz-Franc",
"displayName-count-one";
"Luxemburgische Finanz-Franc",
"displayName-count-other";
"Luxemburgische Finanz-Franc",
"symbol";
"LUL";
}
"LVL";
{
"displayName";
"Lettischer Lats",
"displayName-count-one";
"Lettischer Lats",
"displayName-count-other";
"Lettische Lats",
"symbol";
"LVL",
"symbol-alt-narrow";
"Ls";
}
"LVR";
{
"displayName";
"Lettischer Rubel",
"displayName-count-one";
"Lettische Rubel",
"displayName-count-other";
"Lettische Rubel",
"symbol";
"LVR";
}
"LYD";
{
"displayName";
"Libyscher Dinar",
"displayName-count-one";
"Libyscher Dinar",
"displayName-count-other";
"Libysche Dinar",
"symbol";
"LYD";
}
"MAD";
{
"displayName";
"Marokkanischer Dirham",
"displayName-count-one";
"Marokkanischer Dirham",
"displayName-count-other";
"Marokkanische Dirham",
"symbol";
"MAD";
}
"MAF";
{
"displayName";
"Marokkanischer Franc",
"displayName-count-one";
"Marokkanische Franc",
"displayName-count-other";
"Marokkanische Franc",
"symbol";
"MAF";
}
"MCF";
{
"displayName";
"Monegassischer Franc",
"displayName-count-one";
"Monegassischer Franc",
"displayName-count-other";
"Monegassische Franc",
"symbol";
"MCF";
}
"MDC";
{
"displayName";
"Moldau-Cupon",
"displayName-count-one";
"Moldau-Cupon",
"displayName-count-other";
"Moldau-Cupon",
"symbol";
"MDC";
}
"MDL";
{
"displayName";
"Moldau-Leu",
"displayName-count-one";
"Moldau-Leu",
"displayName-count-other";
"Moldau-Leu",
"symbol";
"MDL";
}
"MGA";
{
"displayName";
"Madagaskar-Ariary",
"displayName-count-one";
"Madagaskar-Ariary",
"displayName-count-other";
"Madagaskar-Ariary",
"symbol";
"MGA",
"symbol-alt-narrow";
"Ar";
}
"MGF";
{
"displayName";
"Madagaskar-Franc",
"displayName-count-one";
"Madagaskar-Franc",
"displayName-count-other";
"Madagaskar-Franc",
"symbol";
"MGF";
}
"MKD";
{
"displayName";
"Mazedonischer Denar",
"displayName-count-one";
"Mazedonischer Denar",
"displayName-count-other";
"Mazedonische Denari",
"symbol";
"MKD";
}
"MKN";
{
"displayName";
"Mazedonischer Denar (1992–1993)",
"displayName-count-one";
"Mazedonischer Denar (1992–1993)",
"displayName-count-other";
"Mazedonische Denar (1992–1993)",
"symbol";
"MKN";
}
"MLF";
{
"displayName";
"Malischer Franc",
"displayName-count-one";
"Malische Franc",
"displayName-count-other";
"Malische Franc",
"symbol";
"MLF";
}
"MMK";
{
"displayName";
"Myanmarischer Kyat",
"displayName-count-one";
"Myanmarischer Kyat",
"displayName-count-other";
"Myanmarische Kyat",
"symbol";
"MMK",
"symbol-alt-narrow";
"K";
}
"MNT";
{
"displayName";
"Mongolischer Tögrög",
"displayName-count-one";
"Mongolischer Tögrög",
"displayName-count-other";
"Mongolische Tögrög",
"symbol";
"MNT",
"symbol-alt-narrow";
"₮";
}
"MOP";
{
"displayName";
"Macao-Pataca",
"displayName-count-one";
"Macao-Pataca",
"displayName-count-other";
"Macao-Pataca",
"symbol";
"MOP";
}
"MRO";
{
"displayName";
"Mauretanischer Ouguiya",
"displayName-count-one";
"Mauretanischer Ouguiya",
"displayName-count-other";
"Mauretanische Ouguiya",
"symbol";
"MRO";
}
"MTL";
{
"displayName";
"Maltesische Lira",
"displayName-count-one";
"Maltesische Lira",
"displayName-count-other";
"Maltesische Lira",
"symbol";
"MTL";
}
"MTP";
{
"displayName";
"Maltesisches Pfund",
"displayName-count-one";
"Maltesische Pfund",
"displayName-count-other";
"Maltesische Pfund",
"symbol";
"MTP";
}
"MUR";
{
"displayName";
"Mauritius-Rupie",
"displayName-count-one";
"Mauritius-Rupie",
"displayName-count-other";
"Mauritius-Rupien",
"symbol";
"MUR",
"symbol-alt-narrow";
"Rs";
}
"MVP";
{
"displayName";
"Malediven-Rupie (alt)",
"displayName-count-one";
"Malediven-Rupie (alt)",
"displayName-count-other";
"Malediven-Rupien (alt)";
}
"MVR";
{
"displayName";
"Malediven-Rufiyaa",
"displayName-count-one";
"Malediven-Rufiyaa",
"displayName-count-other";
"Malediven-Rupien",
"symbol";
"MVR";
}
"MWK";
{
"displayName";
"Malawi-Kwacha",
"displayName-count-one";
"Malawi-Kwacha",
"displayName-count-other";
"Malawi-Kwacha",
"symbol";
"MWK";
}
"MXN";
{
"displayName";
"Mexikanischer Peso",
"displayName-count-one";
"Mexikanischer Peso",
"displayName-count-other";
"Mexikanische Pesos",
"symbol";
"MX$",
"symbol-alt-narrow";
"$";
}
"MXP";
{
"displayName";
"Mexikanischer Silber-Peso (1861–1992)",
"displayName-count-one";
"Mexikanische Silber-Peso (1861–1992)",
"displayName-count-other";
"Mexikanische Silber-Pesos (1861–1992)",
"symbol";
"MXP";
}
"MXV";
{
"displayName";
"Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-one";
"Mexicanischer Unidad de Inversion (UDI)",
"displayName-count-other";
"Mexikanische Unidad de Inversion (UDI)",
"symbol";
"MXV";
}
"MYR";
{
"displayName";
"Malaysischer Ringgit",
"displayName-count-one";
"Malaysischer Ringgit",
"displayName-count-other";
"Malaysische Ringgit",
"symbol";
"MYR",
"symbol-alt-narrow";
"RM";
}
"MZE";
{
"displayName";
"Mosambikanischer Escudo",
"displayName-count-one";
"Mozambikanische Escudo",
"displayName-count-other";
"Mozambikanische Escudo",
"symbol";
"MZE";
}
"MZM";
{
"displayName";
"Mosambikanischer Metical (1980–2006)",
"displayName-count-one";
"Mosambikanischer Metical (1980–2006)",
"displayName-count-other";
"Mosambikanische Meticais (1980–2006)",
"symbol";
"MZM";
}
"MZN";
{
"displayName";
"Mosambikanischer Metical",
"displayName-count-one";
"Mosambikanischer Metical",
"displayName-count-other";
"Mosambikanische Meticais",
"symbol";
"MZN";
}
"NAD";
{
"displayName";
"Namibia-Dollar",
"displayName-count-one";
"Namibia-Dollar",
"displayName-count-other";
"Namibia-Dollar",
"symbol";
"NAD",
"symbol-alt-narrow";
"$";
}
"NGN";
{
"displayName";
"Nigerianischer Naira",
"displayName-count-one";
"Nigerianischer Naira",
"displayName-count-other";
"Nigerianische Naira",
"symbol";
"NGN",
"symbol-alt-narrow";
"₦";
}
"NIC";
{
"displayName";
"Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-one";
"Nicaraguanischer Córdoba (1988–1991)",
"displayName-count-other";
"Nicaraguanische Córdoba (1988–1991)",
"symbol";
"NIC";
}
"NIO";
{
"displayName";
"Nicaragua-Córdoba",
"displayName-count-one";
"Nicaragua-Córdoba",
"displayName-count-other";
"Nicaragua-Córdobas",
"symbol";
"NIO",
"symbol-alt-narrow";
"C$";
}
"NLG";
{
"displayName";
"Niederländischer Gulden",
"displayName-count-one";
"Niederländischer Gulden",
"displayName-count-other";
"Niederländische Gulden",
"symbol";
"NLG";
}
"NOK";
{
"displayName";
"Norwegische Krone",
"displayName-count-one";
"Norwegische Krone",
"displayName-count-other";
"Norwegische Kronen",
"symbol";
"NOK",
"symbol-alt-narrow";
"kr";
}
"NPR";
{
"displayName";
"Nepalesische Rupie",
"displayName-count-one";
"Nepalesische Rupie",
"displayName-count-other";
"Nepalesische Rupien",
"symbol";
"NPR",
"symbol-alt-narrow";
"Rs";
}
"NZD";
{
"displayName";
"Neuseeland-Dollar",
"displayName-count-one";
"Neuseeland-Dollar",
"displayName-count-other";
"Neuseeland-Dollar",
"symbol";
"NZ$",
"symbol-alt-narrow";
"$";
}
"OMR";
{
"displayName";
"Omanischer Rial",
"displayName-count-one";
"Omanischer Rial",
"displayName-count-other";
"Omanische Rials",
"symbol";
"OMR";
}
"PAB";
{
"displayName";
"Panamaischer Balboa",
"displayName-count-one";
"Panamaischer Balboa",
"displayName-count-other";
"Panamaische Balboas",
"symbol";
"PAB";
}
"PEI";
{
"displayName";
"Peruanischer Inti",
"displayName-count-one";
"Peruanische Inti",
"displayName-count-other";
"Peruanische Inti",
"symbol";
"PEI";
}
"PEN";
{
"displayName";
"Peruanischer Sol",
"displayName-count-one";
"Peruanischer Sol",
"displayName-count-other";
"Peruanische Sol",
"symbol";
"PEN";
}
"PES";
{
"displayName";
"Peruanischer Sol (1863–1965)",
"displayName-count-one";
"Peruanischer Sol (1863–1965)",
"displayName-count-other";
"Peruanische Sol (1863–1965)",
"symbol";
"PES";
}
"PGK";
{
"displayName";
"Papua-Neuguineischer Kina",
"displayName-count-one";
"Papua-Neuguineischer Kina",
"displayName-count-other";
"Papua-Neuguineische Kina",
"symbol";
"PGK";
}
"PHP";
{
"displayName";
"Philippinischer Peso",
"displayName-count-one";
"Philippinischer Peso",
"displayName-count-other";
"Philippinische Pesos",
"symbol";
"PHP",
"symbol-alt-narrow";
"₱";
}
"PKR";
{
"displayName";
"Pakistanische Rupie",
"displayName-count-one";
"Pakistanische Rupie",
"displayName-count-other";
"Pakistanische Rupien",
"symbol";
"PKR",
"symbol-alt-narrow";
"Rs";
}
"PLN";
{
"displayName";
"Polnischer Złoty",
"displayName-count-one";
"Polnischer Złoty",
"displayName-count-other";
"Polnische Złoty",
"symbol";
"PLN",
"symbol-alt-narrow";
"zł";
}
"PLZ";
{
"displayName";
"Polnischer Zloty (1950–1995)",
"displayName-count-one";
"Polnischer Zloty (1950–1995)",
"displayName-count-other";
"Polnische Zloty (1950–1995)",
"symbol";
"PLZ";
}
"PTE";
{
"displayName";
"Portugiesischer Escudo",
"displayName-count-one";
"Portugiesische Escudo",
"displayName-count-other";
"Portugiesische Escudo",
"symbol";
"PTE";
}
"PYG";
{
"displayName";
"Paraguayischer Guaraní",
"displayName-count-one";
"Paraguayischer Guaraní",
"displayName-count-other";
"Paraguayische Guaraníes",
"symbol";
"PYG",
"symbol-alt-narrow";
"₲";
}
"QAR";
{
"displayName";
"Katar-Riyal",
"displayName-count-one";
"Katar-Riyal",
"displayName-count-other";
"Katar-Riyal",
"symbol";
"QAR";
}
"RHD";
{
"displayName";
"Rhodesischer Dollar",
"displayName-count-one";
"Rhodesische Dollar",
"displayName-count-other";
"Rhodesische Dollar",
"symbol";
"RHD";
}
"ROL";
{
"displayName";
"Rumänischer Leu (1952–2006)",
"displayName-count-one";
"Rumänischer Leu (1952–2006)",
"displayName-count-other";
"Rumänische Leu (1952–2006)",
"symbol";
"ROL";
}
"RON";
{
"displayName";
"Rumänischer Leu",
"displayName-count-one";
"Rumänischer Leu",
"displayName-count-other";
"Rumänische Leu",
"symbol";
"RON",
"symbol-alt-narrow";
"L";
}
"RSD";
{
"displayName";
"Serbischer Dinar",
"displayName-count-one";
"Serbischer Dinar",
"displayName-count-other";
"Serbische Dinaren",
"symbol";
"RSD";
}
"RUB";
{
"displayName";
"Russischer Rubel",
"displayName-count-one";
"Russischer Rubel",
"displayName-count-other";
"Russische Rubel",
"symbol";
"RUB",
"symbol-alt-narrow";
"₽";
}
"RUR";
{
"displayName";
"Russischer Rubel (1991–1998)",
"displayName-count-one";
"Russischer Rubel (1991–1998)",
"displayName-count-other";
"Russische Rubel (1991–1998)",
"symbol";
"RUR",
"symbol-alt-narrow";
"р.";
}
"RWF";
{
"displayName";
"Ruanda-Franc",
"displayName-count-one";
"Ruanda-Franc",
"displayName-count-other";
"Ruanda-Francs",
"symbol";
"RWF",
"symbol-alt-narrow";
"F.Rw";
}
"SAR";
{
"displayName";
"Saudi-Rial",
"displayName-count-one";
"Saudi-Rial",
"displayName-count-other";
"Saudi-Rial",
"symbol";
"SAR";
}
"SBD";
{
"displayName";
"Salomonen-Dollar",
"displayName-count-one";
"Salomonen-Dollar",
"displayName-count-other";
"Salomonen-Dollar",
"symbol";
"SBD",
"symbol-alt-narrow";
"$";
}
"SCR";
{
"displayName";
"Seychellen-Rupie",
"displayName-count-one";
"Seychellen-Rupie",
"displayName-count-other";
"Seychellen-Rupien",
"symbol";
"SCR";
}
"SDD";
{
"displayName";
"Sudanesischer Dinar (1992–2007)",
"displayName-count-one";
"Sudanesischer Dinar (1992–2007)",
"displayName-count-other";
"Sudanesische Dinar (1992–2007)",
"symbol";
"SDD";
}
"SDG";
{
"displayName";
"Sudanesisches Pfund",
"displayName-count-one";
"Sudanesisches Pfund",
"displayName-count-other";
"Sudanesische Pfund",
"symbol";
"SDG";
}
"SDP";
{
"displayName";
"Sudanesisches Pfund (1957–1998)",
"displayName-count-one";
"Sudanesisches Pfund (1957–1998)",
"displayName-count-other";
"Sudanesische Pfund (1957–1998)",
"symbol";
"SDP";
}
"SEK";
{
"displayName";
"Schwedische Krone",
"displayName-count-one";
"Schwedische Krone",
"displayName-count-other";
"Schwedische Kronen",
"symbol";
"SEK",
"symbol-alt-narrow";
"kr";
}
"SGD";
{
"displayName";
"Singapur-Dollar",
"displayName-count-one";
"Singapur-Dollar",
"displayName-count-other";
"Singapur-Dollar",
"symbol";
"SGD",
"symbol-alt-narrow";
"$";
}
"SHP";
{
"displayName";
"St. Helena-Pfund",
"displayName-count-one";
"St. Helena-Pfund",
"displayName-count-other";
"St. Helena-Pfund",
"symbol";
"SHP",
"symbol-alt-narrow";
"£";
}
"SIT";
{
"displayName";
"Slowenischer Tolar",
"displayName-count-one";
"Slowenischer Tolar",
"displayName-count-other";
"Slowenische Tolar",
"symbol";
"SIT";
}
"SKK";
{
"displayName";
"Slowakische Krone",
"displayName-count-one";
"Slowakische Kronen",
"displayName-count-other";
"Slowakische Kronen",
"symbol";
"SKK";
}
"SLL";
{
"displayName";
"Sierra-leonischer Leone",
"displayName-count-one";
"Sierra-leonischer Leone",
"displayName-count-other";
"Sierra-leonische Leones",
"symbol";
"SLL";
}
"SOS";
{
"displayName";
"Somalia-Schilling",
"displayName-count-one";
"Somalia-Schilling",
"displayName-count-other";
"Somalia-Schilling",
"symbol";
"SOS";
}
"SRD";
{
"displayName";
"Suriname-Dollar",
"displayName-count-one";
"Suriname-Dollar",
"displayName-count-other";
"Suriname-Dollar",
"symbol";
"SRD",
"symbol-alt-narrow";
"$";
}
"SRG";
{
"displayName";
"Suriname Gulden",
"displayName-count-one";
"Suriname-Gulden",
"displayName-count-other";
"Suriname-Gulden",
"symbol";
"SRG";
}
"SSP";
{
"displayName";
"Südsudanesisches Pfund",
"displayName-count-one";
"Südsudanesisches Pfund",
"displayName-count-other";
"Südsudanesische Pfund",
"symbol";
"SSP",
"symbol-alt-narrow";
"£";
}
"STD";
{
"displayName";
"São-toméischer Dobra",
"displayName-count-one";
"São-toméischer Dobra",
"displayName-count-other";
"São-toméische Dobra",
"symbol";
"STD",
"symbol-alt-narrow";
"Db";
}
"SUR";
{
"displayName";
"Sowjetischer Rubel",
"displayName-count-one";
"Sowjetische Rubel",
"displayName-count-other";
"Sowjetische Rubel",
"symbol";
"SUR";
}
"SVC";
{
"displayName";
"El Salvador Colon",
"displayName-count-one";
"El Salvador-Colon",
"displayName-count-other";
"El Salvador-Colon",
"symbol";
"SVC";
}
"SYP";
{
"displayName";
"Syrisches Pfund",
"displayName-count-one";
"Syrisches Pfund",
"displayName-count-other";
"Syrische Pfund",
"symbol";
"SYP",
"symbol-alt-narrow";
"SYP";
}
"SZL";
{
"displayName";
"Swasiländischer Lilangeni",
"displayName-count-one";
"Swasiländischer Lilangeni",
"displayName-count-other";
"Swasiländische Emalangeni",
"symbol";
"SZL";
}
"THB";
{
"displayName";
"Thailändischer Baht",
"displayName-count-one";
"Thailändischer Baht",
"displayName-count-other";
"Thailändische Baht",
"symbol";
"฿",
"symbol-alt-narrow";
"฿";
}
"TJR";
{
"displayName";
"Tadschikistan Rubel",
"displayName-count-one";
"Tadschikistan-Rubel",
"displayName-count-other";
"Tadschikistan-Rubel",
"symbol";
"TJR";
}
"TJS";
{
"displayName";
"Tadschikistan-Somoni",
"displayName-count-one";
"Tadschikistan-Somoni",
"displayName-count-other";
"Tadschikistan-Somoni",
"symbol";
"TJS";
}
"TMM";
{
"displayName";
"Turkmenistan-Manat (1993–2009)",
"displayName-count-one";
"Turkmenistan-Manat (1993–2009)",
"displayName-count-other";
"Turkmenistan-Manat (1993–2009)",
"symbol";
"TMM";
}
"TMT";
{
"displayName";
"Turkmenistan-Manat",
"displayName-count-one";
"Turkmenistan-Manat",
"displayName-count-other";
"Turkmenistan-Manat",
"symbol";
"TMT";
}
"TND";
{
"displayName";
"Tunesischer Dinar",
"displayName-count-one";
"Tunesischer Dinar",
"displayName-count-other";
"Tunesische Dinar",
"symbol";
"TND";
}
"TOP";
{
"displayName";
"Tongaischer Paʻanga",
"displayName-count-one";
"Tongaischer Paʻanga",
"displayName-count-other";
"Tongaische Paʻanga",
"symbol";
"TOP",
"symbol-alt-narrow";
"T$";
}
"TPE";
{
"displayName";
"Timor-Escudo",
"displayName-count-one";
"Timor-Escudo",
"displayName-count-other";
"Timor-Escudo",
"symbol";
"TPE";
}
"TRL";
{
"displayName";
"Türkische Lira (1922–2005)",
"displayName-count-one";
"Türkische Lira (1922–2005)",
"displayName-count-other";
"Türkische Lira (1922–2005)",
"symbol";
"TRL";
}
"TRY";
{
"displayName";
"Türkische Lira",
"displayName-count-one";
"Türkische Lira",
"displayName-count-other";
"Türkische Lira",
"symbol";
"TRY",
"symbol-alt-narrow";
"₺",
"symbol-alt-variant";
"TL";
}
"TTD";
{
"displayName";
"Trinidad und Tobago-Dollar",
"displayName-count-one";
"Trinidad und Tobago-Dollar",
"displayName-count-other";
"Trinidad und Tobago-Dollar",
"symbol";
"TTD",
"symbol-alt-narrow";
"$";
}
"TWD";
{
"displayName";
"Neuer Taiwan-Dollar",
"displayName-count-one";
"Neuer Taiwan-Dollar",
"displayName-count-other";
"Neue Taiwan-Dollar",
"symbol";
"NT$",
"symbol-alt-narrow";
"NT$";
}
"TZS";
{
"displayName";
"Tansania-Schilling",
"displayName-count-one";
"Tansania-Schilling",
"displayName-count-other";
"Tansania-Schilling",
"symbol";
"TZS";
}
"UAH";
{
"displayName";
"Ukrainische Hrywnja",
"displayName-count-one";
"Ukrainische Hrywnja",
"displayName-count-other";
"Ukrainische Hrywen",
"symbol";
"UAH",
"symbol-alt-narrow";
"₴";
}
"UAK";
{
"displayName";
"Ukrainischer Karbovanetz",
"displayName-count-one";
"Ukrainische Karbovanetz",
"displayName-count-other";
"Ukrainische Karbovanetz",
"symbol";
"UAK";
}
"UGS";
{
"displayName";
"Uganda-Schilling (1966–1987)",
"displayName-count-one";
"Uganda-Schilling (1966–1987)",
"displayName-count-other";
"Uganda-Schilling (1966–1987)",
"symbol";
"UGS";
}
"UGX";
{
"displayName";
"Uganda-Schilling",
"displayName-count-one";
"Uganda-Schilling",
"displayName-count-other";
"Uganda-Schilling",
"symbol";
"UGX";
}
"USD";
{
"displayName";
"US-Dollar",
"displayName-count-one";
"US-Dollar",
"displayName-count-other";
"US-Dollar",
"symbol";
"$",
"symbol-alt-narrow";
"$";
}
"USN";
{
"displayName";
"US Dollar (Nächster Tag)",
"displayName-count-one";
"US-Dollar (Nächster Tag)",
"displayName-count-other";
"US-Dollar (Nächster Tag)",
"symbol";
"USN";
}
"USS";
{
"displayName";
"US Dollar (Gleicher Tag)",
"displayName-count-one";
"US-Dollar (Gleicher Tag)",
"displayName-count-other";
"US-Dollar (Gleicher Tag)",
"symbol";
"USS";
}
"UYI";
{
"displayName";
"Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-one";
"Uruguayischer Peso (Indexierte Rechnungseinheiten)",
"displayName-count-other";
"Uruguayische Pesos (Indexierte Rechnungseinheiten)",
"symbol";
"UYI";
}
"UYP";
{
"displayName";
"Uruguayischer Peso (1975–1993)",
"displayName-count-one";
"Uruguayischer Peso (1975–1993)",
"displayName-count-other";
"Uruguayische Pesos (1975–1993)",
"symbol";
"UYP";
}
"UYU";
{
"displayName";
"Uruguayischer Peso",
"displayName-count-one";
"Uruguayischer Peso",
"displayName-count-other";
"Uruguayische Pesos",
"symbol";
"UYU",
"symbol-alt-narrow";
"$";
}
"UZS";
{
"displayName";
"Usbekistan-Sum",
"displayName-count-one";
"Usbekistan-Sum",
"displayName-count-other";
"Usbekistan-Sum",
"symbol";
"UZS";
}
"VEB";
{
"displayName";
"Venezolanischer Bolívar (1871–2008)",
"displayName-count-one";
"Venezolanischer Bolívar (1871–2008)",
"displayName-count-other";
"Venezolanische Bolívares (1871–2008)",
"symbol";
"VEB";
}
"VEF";
{
"displayName";
"Venezolanischer Bolívar",
"displayName-count-one";
"Venezolanischer Bolívar",
"displayName-count-other";
"Venezolanische Bolívares",
"symbol";
"VEF",
"symbol-alt-narrow";
"Bs";
}
"VND";
{
"displayName";
"Vietnamesischer Dong",
"displayName-count-one";
"Vietnamesischer Dong",
"displayName-count-other";
"Vietnamesische Dong",
"symbol";
"₫",
"symbol-alt-narrow";
"₫";
}
"VNN";
{
"displayName";
"Vietnamesischer Dong(1978–1985)",
"displayName-count-one";
"Vietnamesischer Dong(1978–1985)",
"displayName-count-other";
"Vietnamesische Dong(1978–1985)",
"symbol";
"VNN";
}
"VUV";
{
"displayName";
"Vanuatu-Vatu",
"displayName-count-one";
"Vanuatu-Vatu",
"displayName-count-other";
"Vanuatu-Vatu",
"symbol";
"VUV";
}
"WST";
{
"displayName";
"Samoanischer Tala",
"displayName-count-one";
"Samoanischer Tala",
"displayName-count-other";
"Samoanische Tala",
"symbol";
"WST";
}
"XAF";
{
"displayName";
"CFA-Franc (BEAC)",
"displayName-count-one";
"CFA-Franc (BEAC)",
"displayName-count-other";
"CFA-Franc (BEAC)",
"symbol";
"FCFA";
}
"XAG";
{
"displayName";
"Unze Silber",
"displayName-count-one";
"Unze Silber",
"displayName-count-other";
"Unzen Silber",
"symbol";
"XAG";
}
"XAU";
{
"displayName";
"Unze Gold",
"displayName-count-one";
"Unze Gold",
"displayName-count-other";
"Unzen Gold",
"symbol";
"XAU";
}
"XBA";
{
"displayName";
"Europäische Rechnungseinheit",
"displayName-count-one";
"Europäische Rechnungseinheiten",
"displayName-count-other";
"Europäische Rechnungseinheiten",
"symbol";
"XBA";
}
"XBB";
{
"displayName";
"Europäische Währungseinheit (XBB)",
"displayName-count-one";
"Europäische Währungseinheiten (XBB)",
"displayName-count-other";
"Europäische Währungseinheiten (XBB)",
"symbol";
"XBB";
}
"XBC";
{
"displayName";
"Europäische Rechnungseinheit (XBC)",
"displayName-count-one";
"Europäische Rechnungseinheiten (XBC)",
"displayName-count-other";
"Europäische Rechnungseinheiten (XBC)",
"symbol";
"XBC";
}
"XBD";
{
"displayName";
"Europäische Rechnungseinheit (XBD)",
"displayName-count-one";
"Europäische Rechnungseinheiten (XBD)",
"displayName-count-other";
"Europäische Rechnungseinheiten (XBD)",
"symbol";
"XBD";
}
"XCD";
{
"displayName";
"Ostkaribischer Dollar",
"displayName-count-one";
"Ostkaribischer Dollar",
"displayName-count-other";
"Ostkaribische Dollar",
"symbol";
"EC$",
"symbol-alt-narrow";
"$";
}
"XDR";
{
"displayName";
"Sonderziehungsrechte",
"displayName-count-one";
"Sonderziehungsrechte",
"displayName-count-other";
"Sonderziehungsrechte",
"symbol";
"XDR";
}
"XEU";
{
"displayName";
"Europäische Währungseinheit (XEU)",
"displayName-count-one";
"Europäische Währungseinheiten (XEU)",
"displayName-count-other";
"Europäische Währungseinheiten (XEU)",
"symbol";
"XEU";
}
"XFO";
{
"displayName";
"Französischer Gold-Franc",
"displayName-count-one";
"Französische Gold-Franc",
"displayName-count-other";
"Französische Gold-Franc",
"symbol";
"XFO";
}
"XFU";
{
"displayName";
"Französischer UIC-Franc",
"displayName-count-one";
"Französische UIC-Franc",
"displayName-count-other";
"Französische UIC-Franc",
"symbol";
"XFU";
}
"XOF";
{
"displayName";
"CFA-Franc (BCEAO)",
"displayName-count-one";
"CFA-Franc (BCEAO)",
"displayName-count-other";
"CFA-Francs (BCEAO)",
"symbol";
"CFA";
}
"XPD";
{
"displayName";
"Unze Palladium",
"displayName-count-one";
"Unze Palladium",
"displayName-count-other";
"Unzen Palladium",
"symbol";
"XPD";
}
"XPF";
{
"displayName";
"CFP-Franc",
"displayName-count-one";
"CFP-Franc",
"displayName-count-other";
"CFP-Franc",
"symbol";
"CFPF";
}
"XPT";
{
"displayName";
"Unze Platin",
"displayName-count-one";
"Unze Platin",
"displayName-count-other";
"Unzen Platin",
"symbol";
"XPT";
}
"XRE";
{
"displayName";
"RINET Funds",
"displayName-count-one";
"RINET Funds",
"displayName-count-other";
"RINET Funds",
"symbol";
"XRE";
}
"XSU";
{
"displayName";
"SUCRE",
"displayName-count-one";
"SUCRE",
"displayName-count-other";
"SUCRE",
"symbol";
"XSU";
}
"XTS";
{
"displayName";
"Testwährung",
"displayName-count-one";
"Testwährung",
"displayName-count-other";
"Testwährung",
"symbol";
"XTS";
}
"XUA";
{
"displayName";
"Rechnungseinheit der AfEB",
"displayName-count-one";
"Rechnungseinheit der AfEB",
"displayName-count-other";
"Rechnungseinheiten der AfEB",
"symbol";
"XUA";
}
"XXX";
{
"displayName";
"Unbekannte Währung",
"displayName-count-one";
"(unbekannte Währung)",
"displayName-count-other";
"(unbekannte Währung)",
"symbol";
"XXX";
}
"YDD";
{
"displayName";
"Jemen-Dinar",
"displayName-count-one";
"Jemen-Dinar",
"displayName-count-other";
"Jemen-Dinar",
"symbol";
"YDD";
}
"YER";
{
"displayName";
"Jemen-Rial",
"displayName-count-one";
"Jemen-Rial",
"displayName-count-other";
"Jemen-Rial",
"symbol";
"YER";
}
"YUD";
{
"displayName";
"Jugoslawischer Dinar (1966–1990)",
"displayName-count-one";
"Jugoslawischer Dinar (1966–1990)",
"displayName-count-other";
"Jugoslawische Dinar (1966–1990)",
"symbol";
"YUD";
}
"YUM";
{
"displayName";
"Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-one";
"Jugoslawischer Neuer Dinar (1994–2002)",
"displayName-count-other";
"Jugoslawische Neue Dinar (1994–2002)",
"symbol";
"YUM";
}
"YUN";
{
"displayName";
"Jugoslawischer Dinar (konvertibel)",
"displayName-count-one";
"Jugoslawische Dinar (konvertibel)",
"displayName-count-other";
"Jugoslawische Dinar (konvertibel)",
"symbol";
"YUN";
}
"YUR";
{
"displayName";
"Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-one";
"Jugoslawischer reformierter Dinar (1992–1993)",
"displayName-count-other";
"Jugoslawische reformierte Dinar (1992–1993)",
"symbol";
"YUR";
}
"ZAL";
{
"displayName";
"Südafrikanischer Rand (Finanz)",
"displayName-count-one";
"Südafrikanischer Rand (Finanz)",
"displayName-count-other";
"Südafrikanischer Rand (Finanz)",
"symbol";
"ZAL";
}
"ZAR";
{
"displayName";
"Südafrikanischer Rand",
"displayName-count-one";
"Südafrikanischer Rand",
"displayName-count-other";
"Südafrikanische Rand",
"symbol";
"ZAR",
"symbol-alt-narrow";
"R";
}
"ZMK";
{
"displayName";
"Kwacha (1968–2012)",
"displayName-count-one";
"Kwacha (1968–2012)",
"displayName-count-other";
"Kwacha (1968–2012)",
"symbol";
"ZMK";
}
"ZMW";
{
"displayName";
"Kwacha",
"displayName-count-one";
"Kwacha",
"displayName-count-other";
"Kwacha",
"symbol";
"ZMW",
"symbol-alt-narrow";
"K";
}
"ZRN";
{
"displayName";
"Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-one";
"Zaire-Neuer Zaïre (1993–1998)",
"displayName-count-other";
"Zaire-Neue Zaïre (1993–1998)",
"symbol";
"ZRN";
}
"ZRZ";
{
"displayName";
"Zaire-Zaïre (1971–1993)",
"displayName-count-one";
"Zaire-Zaïre (1971–1993)",
"displayName-count-other";
"Zaire-Zaïre (1971–1993)",
"symbol";
"ZRZ";
}
"ZWD";
{
"displayName";
"Simbabwe-Dollar (1980–2008)",
"displayName-count-one";
"Simbabwe-Dollar (1980–2008)",
"displayName-count-other";
"Simbabwe-Dollar (1980–2008)",
"symbol";
"ZWD";
}
"ZWL";
{
"displayName";
"Simbabwe-Dollar (2009)",
"displayName-count-one";
"Simbabwe-Dollar (2009)",
"displayName-count-other";
"Simbabwe-Dollar (2009)",
"symbol";
"ZWL";
}
"ZWR";
{
"displayName";
"Simbabwe-Dollar (2008)",
"displayName-count-one";
"Simbabwe-Dollar (2008)",
"displayName-count-other";
"Simbabwe-Dollar (2008)",
"symbol";
"ZWR";
}
}
}
}
}
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent } from '@syncfusion/ej2-react-calendars';
import { loadCldr, L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'de': {
'calendar': { today: 'heute' }
}
});
function App() {
return <CalendarComponent id="calendar" locale='de'/>;
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent} from '@syncfusion/ej2-react-calendars';
import { loadCldr,L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'de': {
'calendar': { today: 'heute' }
}
});
function App() {
return <CalendarComponent id="calendar" locale='de' />
};
ReactDOM.render(<App />, document.getElementById('element'));
{
"supplemental": {
"version": {
"_number": "$Revision: 12732 $",
"_unicodeVersion": "9.0.0",
"_cldrVersion": "31"
},
"numberingSystems": {
"adlm": {
"_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type": "numeric"
},
"ahom": {
"_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type": "numeric"
},
"arab": {
"_digits": "٠١٢٣٤٥٦٧٨٩",
"_type": "numeric"
},
"arabext": {
"_digits": "۰۱۲۳۴۵۶۷۸۹",
"_type": "numeric"
},
"armn": {
"_rules": "armenian-upper",
"_type": "algorithmic"
},
"armnlow": {
"_rules": "armenian-lower",
"_type": "algorithmic"
},
"bali": {
"_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type": "numeric"
},
"beng": {
"_digits": "০১২৩৪৫৬৭৮৯",
"_type": "numeric"
},
"bhks": {
"_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type": "numeric"
},
"brah": {
"_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type": "numeric"
},
"cakm": {
"_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type": "numeric"
},
"cham": {
"_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type": "numeric"
},
"cyrl": {
"_rules": "cyrillic-lower",
"_type": "algorithmic"
},
"deva": {
"_digits": "०१२३४५६७८९",
"_type": "numeric"
},
"ethi": {
"_rules": "ethiopic",
"_type": "algorithmic"
},
"fullwide": {
"_digits": "0123456789",
"_type": "numeric"
},
"geor": {
"_rules": "georgian",
"_type": "algorithmic"
},
"grek": {
"_rules": "greek-upper",
"_type": "algorithmic"
},
"greklow": {
"_rules": "greek-lower",
"_type": "algorithmic"
},
"gujr": {
"_digits": "૦૧૨૩૪૫૬૭૮૯",
"_type": "numeric"
},
"guru": {
"_digits": "੦੧੨੩੪੫੬੭੮੯",
"_type": "numeric"
},
"hanidays": {
"_rules": "zh/SpelloutRules/spellout-numbering-days",
"_type": "algorithmic"
},
"hanidec": {
"_digits": "〇一二三四五六七八九",
"_type": "numeric"
},
"hans": {
"_rules": "zh/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hansfin": {
"_rules": "zh/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hant": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hantfin": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hebr": {
"_rules": "hebrew",
"_type": "algorithmic"
},
"hmng": {
"_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type": "numeric"
},
"java": {
"_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type": "numeric"
},
"jpan": {
"_rules": "ja/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"jpanfin": {
"_rules": "ja/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"kali": {
"_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type": "numeric"
},
"khmr": {
"_digits": "០១២៣៤៥៦៧៨៩",
"_type": "numeric"
},
"knda": {
"_digits": "೦೧೨೩೪೫೬೭೮೯",
"_type": "numeric"
},
"lana": {
"_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type": "numeric"
},
"lanatham": {
"_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type": "numeric"
},
"laoo": {
"_digits": "໐໑໒໓໔໕໖໗໘໙",
"_type": "numeric"
},
"latn": {
"_digits": "0123456789",
"_type": "numeric"
},
"lepc": {
"_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type": "numeric"
},
"limb": {
"_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type": "numeric"
},
"mathbold": {
"_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type": "numeric"
},
"mathdbl": {
"_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type": "numeric"
},
"mathmono": {
"_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type": "numeric"
},
"mathsanb": {
"_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type": "numeric"
},
"mathsans": {
"_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type": "numeric"
},
"mlym": {
"_digits": "൦൧൨൩൪൫൬൭൮൯",
"_type": "numeric"
},
"modi": {
"_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type": "numeric"
},
"mong": {
"_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type": "numeric"
},
"mroo": {
"_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type": "numeric"
},
"mtei": {
"_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type": "numeric"
},
"mymr": {
"_digits": "၀၁၂၃၄၅၆၇၈၉",
"_type": "numeric"
},
"mymrshan": {
"_digits": "႐႑႒႓႔႕႖႗႘႙",
"_type": "numeric"
},
"mymrtlng": {
"_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type": "numeric"
},
"newa": {
"_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type": "numeric"
},
"nkoo": {
"_digits": "߀߁߂߃߄߅߆߇߈߉",
"_type": "numeric"
},
"olck": {
"_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type": "numeric"
},
"orya": {
"_digits": "୦୧୨୩୪୫୬୭୮୯",
"_type": "numeric"
},
"osma": {
"_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type": "numeric"
},
"roman": {
"_rules": "roman-upper",
"_type": "algorithmic"
},
"romanlow": {
"_rules": "roman-lower",
"_type": "algorithmic"
},
"saur": {
"_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type": "numeric"
},
"shrd": {
"_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type": "numeric"
},
"sind": {
"_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type": "numeric"
},
"sinh": {
"_digits": "෦෧෨෩෪෫෬෭෮෯",
"_type": "numeric"
},
"sora": {
"_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type": "numeric"
},
"sund": {
"_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type": "numeric"
},
"takr": {
"_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type": "numeric"
},
"talu": {
"_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type": "numeric"
},
"taml": {
"_rules": "tamil",
"_type": "algorithmic"
},
"tamldec": {
"_digits": "௦௧௨௩௪௫௬௭௮௯",
"_type": "numeric"
},
"telu": {
"_digits": "౦౧౨౩౪౫౬౭౮౯",
"_type": "numeric"
},
"thai": {
"_digits": "๐๑๒๓๔๕๖๗๘๙",
"_type": "numeric"
},
"tibt": {
"_digits": "༠༡༢༣༤༥༦༧༨༩",
"_type": "numeric"
},
"tirh": {
"_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type": "numeric"
},
"vaii": {
"_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type": "numeric"
},
"wara": {
"_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type": "numeric"
}
}
}
}
{
"supplemental";
{
"version";
{
"_number";
"$Revision: 12732 $",
"_unicodeVersion";
"9.0.0",
"_cldrVersion";
"31";
}
"numberingSystems";
{
"adlm";
{
"_digits";
"𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type";
"numeric";
}
"ahom";
{
"_digits";
"𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type";
"numeric";
}
"arab";
{
"_digits";
"٠١٢٣٤٥٦٧٨٩",
"_type";
"numeric";
}
"arabext";
{
"_digits";
"۰۱۲۳۴۵۶۷۸۹",
"_type";
"numeric";
}
"armn";
{
"_rules";
"armenian-upper",
"_type";
"algorithmic";
}
"armnlow";
{
"_rules";
"armenian-lower",
"_type";
"algorithmic";
}
"bali";
{
"_digits";
"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type";
"numeric";
}
"beng";
{
"_digits";
"০১২৩৪৫৬৭৮৯",
"_type";
"numeric";
}
"bhks";
{
"_digits";
"𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type";
"numeric";
}
"brah";
{
"_digits";
"𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type";
"numeric";
}
"cakm";
{
"_digits";
"𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type";
"numeric";
}
"cham";
{
"_digits";
"꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type";
"numeric";
}
"cyrl";
{
"_rules";
"cyrillic-lower",
"_type";
"algorithmic";
}
"deva";
{
"_digits";
"०१२३४५६७८९",
"_type";
"numeric";
}
"ethi";
{
"_rules";
"ethiopic",
"_type";
"algorithmic";
}
"fullwide";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"geor";
{
"_rules";
"georgian",
"_type";
"algorithmic";
}
"grek";
{
"_rules";
"greek-upper",
"_type";
"algorithmic";
}
"greklow";
{
"_rules";
"greek-lower",
"_type";
"algorithmic";
}
"gujr";
{
"_digits";
"૦૧૨૩૪૫૬૭૮૯",
"_type";
"numeric";
}
"guru";
{
"_digits";
"੦੧੨੩੪੫੬੭੮੯",
"_type";
"numeric";
}
"hanidays";
{
"_rules";
"zh/SpelloutRules/spellout-numbering-days",
"_type";
"algorithmic";
}
"hanidec";
{
"_digits";
"〇一二三四五六七八九",
"_type";
"numeric";
}
"hans";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hansfin";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hant";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hantfin";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hebr";
{
"_rules";
"hebrew",
"_type";
"algorithmic";
}
"hmng";
{
"_digits";
"𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type";
"numeric";
}
"java";
{
"_digits";
"꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type";
"numeric";
}
"jpan";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"jpanfin";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"kali";
{
"_digits";
"꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type";
"numeric";
}
"khmr";
{
"_digits";
"០១២៣៤៥៦៧៨៩",
"_type";
"numeric";
}
"knda";
{
"_digits";
"೦೧೨೩೪೫೬೭೮೯",
"_type";
"numeric";
}
"lana";
{
"_digits";
"᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type";
"numeric";
}
"lanatham";
{
"_digits";
"᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type";
"numeric";
}
"laoo";
{
"_digits";
"໐໑໒໓໔໕໖໗໘໙",
"_type";
"numeric";
}
"latn";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"lepc";
{
"_digits";
"᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type";
"numeric";
}
"limb";
{
"_digits";
"᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type";
"numeric";
}
"mathbold";
{
"_digits";
"𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type";
"numeric";
}
"mathdbl";
{
"_digits";
"𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type";
"numeric";
}
"mathmono";
{
"_digits";
"𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type";
"numeric";
}
"mathsanb";
{
"_digits";
"𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type";
"numeric";
}
"mathsans";
{
"_digits";
"𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type";
"numeric";
}
"mlym";
{
"_digits";
"൦൧൨൩൪൫൬൭൮൯",
"_type";
"numeric";
}
"modi";
{
"_digits";
"𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type";
"numeric";
}
"mong";
{
"_digits";
"᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type";
"numeric";
}
"mroo";
{
"_digits";
"𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type";
"numeric";
}
"mtei";
{
"_digits";
"꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type";
"numeric";
}
"mymr";
{
"_digits";
"၀၁၂၃၄၅၆၇၈၉",
"_type";
"numeric";
}
"mymrshan";
{
"_digits";
"႐႑႒႓႔႕႖႗႘႙",
"_type";
"numeric";
}
"mymrtlng";
{
"_digits";
"꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type";
"numeric";
}
"newa";
{
"_digits";
"𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type";
"numeric";
}
"nkoo";
{
"_digits";
"߀߁߂߃߄߅߆߇߈߉",
"_type";
"numeric";
}
"olck";
{
"_digits";
"᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type";
"numeric";
}
"orya";
{
"_digits";
"୦୧୨୩୪୫୬୭୮୯",
"_type";
"numeric";
}
"osma";
{
"_digits";
"𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type";
"numeric";
}
"roman";
{
"_rules";
"roman-upper",
"_type";
"algorithmic";
}
"romanlow";
{
"_rules";
"roman-lower",
"_type";
"algorithmic";
}
"saur";
{
"_digits";
"꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type";
"numeric";
}
"shrd";
{
"_digits";
"𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type";
"numeric";
}
"sind";
{
"_digits";
"𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type";
"numeric";
}
"sinh";
{
"_digits";
"෦෧෨෩෪෫෬෭෮෯",
"_type";
"numeric";
}
"sora";
{
"_digits";
"𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type";
"numeric";
}
"sund";
{
"_digits";
"᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type";
"numeric";
}
"takr";
{
"_digits";
"𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type";
"numeric";
}
"talu";
{
"_digits";
"᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type";
"numeric";
}
"taml";
{
"_rules";
"tamil",
"_type";
"algorithmic";
}
"tamldec";
{
"_digits";
"௦௧௨௩௪௫௬௭௮௯",
"_type";
"numeric";
}
"telu";
{
"_digits";
"౦౧౨౩౪౫౬౭౮౯",
"_type";
"numeric";
}
"thai";
{
"_digits";
"๐๑๒๓๔๕๖๗๘๙",
"_type";
"numeric";
}
"tibt";
{
"_digits";
"༠༡༢༣༤༥༦༧༨༩",
"_type";
"numeric";
}
"tirh";
{
"_digits";
"𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type";
"numeric";
}
"vaii";
{
"_digits";
"꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type";
"numeric";
}
"wara";
{
"_digits";
"𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type";
"numeric";
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 13259 $",
"_cldrVersion": "31"
},
"language": "de"
},
"numbers": {
"defaultNumberingSystem": "latn",
"otherNumberingSystems": {
"native": "latn"
},
"minimumGroupingDigits": "1",
"symbols-numberSystem-latn": {
"decimal": ",",
"group": ".",
"list": ";",
"percentSign": "%",
"plusSign": "+",
"minusSign": "-",
"exponential": "E",
"superscriptingExponent": "·",
"perMille": "‰",
"infinity": "∞",
"nan": "NaN",
"timeSeparator": ":"
},
"decimalFormats-numberSystem-latn": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-one": "0 Tausend",
"1000-count-other": "0 Tausend",
"10000-count-one": "00 Tausend",
"10000-count-other": "00 Tausend",
"100000-count-one": "000 Tausend",
"100000-count-other": "000 Tausend",
"1000000-count-one": "0 Million",
"1000000-count-other": "0 Millionen",
"10000000-count-one": "00 Millionen",
"10000000-count-other": "00 Millionen",
"100000000-count-one": "000 Millionen",
"100000000-count-other": "000 Millionen",
"1000000000-count-one": "0 Milliarde",
"1000000000-count-other": "0 Milliarden",
"10000000000-count-one": "00 Milliarden",
"10000000000-count-other": "00 Milliarden",
"100000000000-count-one": "000 Milliarden",
"100000000000-count-other": "000 Milliarden",
"1000000000000-count-one": "0 Billion",
"1000000000000-count-other": "0 Billionen",
"10000000000000-count-one": "00 Billionen",
"10000000000000-count-other": "00 Billionen",
"100000000000000-count-one": "000 Billionen",
"100000000000000-count-other": "000 Billionen"
}
},
"short": {
"decimalFormat": {
"1000-count-one": "0",
"1000-count-other": "0",
"10000-count-one": "0",
"10000-count-other": "0",
"100000-count-one": "0",
"100000-count-other": "0",
"1000000-count-one": "0 Mio'.'",
"1000000-count-other": "0 Mio'.'",
"10000000-count-one": "00 Mio'.'",
"10000000-count-other": "00 Mio'.'",
"100000000-count-one": "000 Mio'.'",
"100000000-count-other": "000 Mio'.'",
"1000000000-count-one": "0 Mrd'.'",
"1000000000-count-other": "0 Mrd'.'",
"10000000000-count-one": "00 Mrd'.'",
"10000000000-count-other": "00 Mrd'.'",
"100000000000-count-one": "000 Mrd'.'",
"100000000000-count-other": "000 Mrd'.'",
"1000000000000-count-one": "0 Bio'.'",
"1000000000000-count-other": "0 Bio'.'",
"10000000000000-count-one": "00 Bio'.'",
"10000000000000-count-other": "00 Bio'.'",
"100000000000000-count-one": "000 Bio'.'",
"100000000000000-count-other": "000 Bio'.'"
}
}
},
"scientificFormats-numberSystem-latn": {
"standard": "#E0"
},
"percentFormats-numberSystem-latn": {
"standard": "#,##0 %"
},
"currencyFormats-numberSystem-latn": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "#,##0.00 ¤",
"accounting": "#,##0.00 ¤",
"short": {
"standard": {
"1000-count-one": "0 Tsd'.' ¤",
"1000-count-other": "0 Tsd'.' ¤",
"10000-count-one": "00 Tsd'.' ¤",
"10000-count-other": "00 Tsd'.' ¤",
"100000-count-one": "000 Tsd'.' ¤",
"100000-count-other": "000 Tsd'.' ¤",
"1000000-count-one": "0 Mio'.' ¤",
"1000000-count-other": "0 Mio'.' ¤",
"10000000-count-one": "00 Mio'.' ¤",
"10000000-count-other": "00 Mio'.' ¤",
"100000000-count-one": "000 Mio'.' ¤",
"100000000-count-other": "000 Mio'.' ¤",
"1000000000-count-one": "0 Mrd'.' ¤",
"1000000000-count-other": "0 Mrd'.' ¤",
"10000000000-count-one": "00 Mrd'.' ¤",
"10000000000-count-other": "00 Mrd'.' ¤",
"100000000000-count-one": "000 Mrd'.' ¤",
"100000000000-count-other": "000 Mrd'.' ¤",
"1000000000000-count-one": "0 Bio'.' ¤",
"1000000000000-count-other": "0 Bio'.' ¤",
"10000000000000-count-one": "00 Bio'.' ¤",
"10000000000000-count-other": "00 Bio'.' ¤",
"100000000000000-count-one": "000 Bio'.' ¤",
"100000000000000-count-other": "000 Bio'.' ¤"
}
},
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"miscPatterns-numberSystem-latn": {
"atLeast": "{0}+",
"range": "{0}–{1}"
},
"minimalPairs": {
"pluralMinimalPairs": "{0} Tag",
"pluralMinimalPairs": "{0} Tage",
"other": "{0}. Abzweigung nach rechts nehmen"
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 13259 $",
"_cldrVersion";
"31";
}
"language";
"de";
}
"numbers";
{
"defaultNumberingSystem";
"latn",
"otherNumberingSystems";
{
"native";
"latn";
}
"minimumGroupingDigits";
"1",
"symbols-numberSystem-latn";
{
"decimal";
",",
"group";
".",
"list";
";",
"percentSign";
"%",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"E",
"superscriptingExponent";
"·",
"perMille";
"‰",
"infinity";
"∞",
"nan";
"NaN",
"timeSeparator";
":";
}
"decimalFormats-numberSystem-latn";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-one";
"0 Tausend",
"1000-count-other";
"0 Tausend",
"10000-count-one";
"00 Tausend",
"10000-count-other";
"00 Tausend",
"100000-count-one";
"000 Tausend",
"100000-count-other";
"000 Tausend",
"1000000-count-one";
"0 Million",
"1000000-count-other";
"0 Millionen",
"10000000-count-one";
"00 Millionen",
"10000000-count-other";
"00 Millionen",
"100000000-count-one";
"000 Millionen",
"100000000-count-other";
"000 Millionen",
"1000000000-count-one";
"0 Milliarde",
"1000000000-count-other";
"0 Milliarden",
"10000000000-count-one";
"00 Milliarden",
"10000000000-count-other";
"00 Milliarden",
"100000000000-count-one";
"000 Milliarden",
"100000000000-count-other";
"000 Milliarden",
"1000000000000-count-one";
"0 Billion",
"1000000000000-count-other";
"0 Billionen",
"10000000000000-count-one";
"00 Billionen",
"10000000000000-count-other";
"00 Billionen",
"100000000000000-count-one";
"000 Billionen",
"100000000000000-count-other";
"000 Billionen";
}
}
"short";
{
"decimalFormat";
{
"1000-count-one";
"0",
"1000-count-other";
"0",
"10000-count-one";
"0",
"10000-count-other";
"0",
"100000-count-one";
"0",
"100000-count-other";
"0",
"1000000-count-one";
"0 Mio'.'",
"1000000-count-other";
"0 Mio'.'",
"10000000-count-one";
"00 Mio'.'",
"10000000-count-other";
"00 Mio'.'",
"100000000-count-one";
"000 Mio'.'",
"100000000-count-other";
"000 Mio'.'",
"1000000000-count-one";
"0 Mrd'.'",
"1000000000-count-other";
"0 Mrd'.'",
"10000000000-count-one";
"00 Mrd'.'",
"10000000000-count-other";
"00 Mrd'.'",
"100000000000-count-one";
"000 Mrd'.'",
"100000000000-count-other";
"000 Mrd'.'",
"1000000000000-count-one";
"0 Bio'.'",
"1000000000000-count-other";
"0 Bio'.'",
"10000000000000-count-one";
"00 Bio'.'",
"10000000000000-count-other";
"00 Bio'.'",
"100000000000000-count-one";
"000 Bio'.'",
"100000000000000-count-other";
"000 Bio'.'";
}
}
}
"scientificFormats-numberSystem-latn";
{
"standard";
"#E0";
}
"percentFormats-numberSystem-latn";
{
"standard";
"#,##0 %";
}
"currencyFormats-numberSystem-latn";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"#,##0.00 ¤",
"accounting";
"#,##0.00 ¤",
"short";
{
"standard";
{
"1000-count-one";
"0 Tsd'.' ¤",
"1000-count-other";
"0 Tsd'.' ¤",
"10000-count-one";
"00 Tsd'.' ¤",
"10000-count-other";
"00 Tsd'.' ¤",
"100000-count-one";
"000 Tsd'.' ¤",
"100000-count-other";
"000 Tsd'.' ¤",
"1000000-count-one";
"0 Mio'.' ¤",
"1000000-count-other";
"0 Mio'.' ¤",
"10000000-count-one";
"00 Mio'.' ¤",
"10000000-count-other";
"00 Mio'.' ¤",
"100000000-count-one";
"000 Mio'.' ¤",
"100000000-count-other";
"000 Mio'.' ¤",
"1000000000-count-one";
"0 Mrd'.' ¤",
"1000000000-count-other";
"0 Mrd'.' ¤",
"10000000000-count-one";
"00 Mrd'.' ¤",
"10000000000-count-other";
"00 Mrd'.' ¤",
"100000000000-count-one";
"000 Mrd'.' ¤",
"100000000000-count-other";
"000 Mrd'.' ¤",
"1000000000000-count-one";
"0 Bio'.' ¤",
"1000000000000-count-other";
"0 Bio'.' ¤",
"10000000000000-count-one";
"00 Bio'.' ¤",
"10000000000000-count-other";
"00 Bio'.' ¤",
"100000000000000-count-one";
"000 Bio'.' ¤",
"100000000000000-count-other";
"000 Bio'.' ¤";
}
}
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"miscPatterns-numberSystem-latn";
{
"atLeast";
"{0}+",
"range";
"{0}–{1}";
}
"minimalPairs";
{
"pluralMinimalPairs";
"{0} Tag",
"pluralMinimalPairs";
"{0} Tage",
"other";
"{0}. Abzweigung nach rechts nehmen";
}
}
}
}
}
{
"main": {
"de": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "de"
},
"dates": {
"timeZoneNames": {
"hourFormat": "+HH:mm;-HH:mm",
"gmtFormat": "GMT{0}",
"gmtZeroFormat": "GMT",
"regionFormat": "{0} Zeit",
"regionFormat-type-daylight": "{0} Sommerzeit",
"regionFormat-type-standard": "{0} Normalzeit",
"fallbackFormat": "{1} ({0})",
"zone": {
"America": {
"Adak": {
"exemplarCity": "Adak"
},
"Anchorage": {
"exemplarCity": "Anchorage"
},
"Anguilla": {
"exemplarCity": "Anguilla"
},
"Antigua": {
"exemplarCity": "Antigua"
},
"Araguaina": {
"exemplarCity": "Araguaina"
},
"Argentina": {
"Rio_Gallegos": {
"exemplarCity": "Rio Gallegos"
},
"San_Juan": {
"exemplarCity": "San Juan"
},
"Ushuaia": {
"exemplarCity": "Ushuaia"
},
"La_Rioja": {
"exemplarCity": "La Rioja"
},
"San_Luis": {
"exemplarCity": "San Luis"
},
"Salta": {
"exemplarCity": "Salta"
},
"Tucuman": {
"exemplarCity": "Tucuman"
}
},
"Aruba": {
"exemplarCity": "Aruba"
},
"Asuncion": {
"exemplarCity": "Asunción"
},
"Bahia": {
"exemplarCity": "Bahia"
},
"Bahia_Banderas": {
"exemplarCity": "Bahia Banderas"
},
"Barbados": {
"exemplarCity": "Barbados"
},
"Belem": {
"exemplarCity": "Belem"
},
"Belize": {
"exemplarCity": "Belize"
},
"Blanc-Sablon": {
"exemplarCity": "Blanc-Sablon"
},
"Boa_Vista": {
"exemplarCity": "Boa Vista"
},
"Bogota": {
"exemplarCity": "Bogotá"
},
"Boise": {
"exemplarCity": "Boise"
},
"Buenos_Aires": {
"exemplarCity": "Buenos Aires"
},
"Cambridge_Bay": {
"exemplarCity": "Cambridge Bay"
},
"Campo_Grande": {
"exemplarCity": "Campo Grande"
},
"Cancun": {
"exemplarCity": "Cancún"
},
"Caracas": {
"exemplarCity": "Caracas"
},
"Catamarca": {
"exemplarCity": "Catamarca"
},
"Cayenne": {
"exemplarCity": "Cayenne"
},
"Cayman": {
"exemplarCity": "Kaimaninseln"
},
"Chicago": {
"exemplarCity": "Chicago"
},
"Chihuahua": {
"exemplarCity": "Chihuahua"
},
"Coral_Harbour": {
"exemplarCity": "Atikokan"
},
"Cordoba": {
"exemplarCity": "Córdoba"
},
"Costa_Rica": {
"exemplarCity": "Costa Rica"
},
"Creston": {
"exemplarCity": "Creston"
},
"Cuiaba": {
"exemplarCity": "Cuiaba"
},
"Curacao": {
"exemplarCity": "Curaçao"
},
"Danmarkshavn": {
"exemplarCity": "Danmarkshavn"
},
"Dawson": {
"exemplarCity": "Dawson"
},
"Dawson_Creek": {
"exemplarCity": "Dawson Creek"
},
"Denver": {
"exemplarCity": "Denver"
},
"Detroit": {
"exemplarCity": "Detroit"
},
"Dominica": {
"exemplarCity": "Dominica"
},
"Edmonton": {
"exemplarCity": "Edmonton"
},
"Eirunepe": {
"exemplarCity": "Eirunepe"
},
"El_Salvador": {
"exemplarCity": "El Salvador"
},
"Fort_Nelson": {
"exemplarCity": "Fort Nelson"
},
"Fortaleza": {
"exemplarCity": "Fortaleza"
},
"Glace_Bay": {
"exemplarCity": "Glace Bay"
},
"Godthab": {
"exemplarCity": "Nuuk"
},
"Goose_Bay": {
"exemplarCity": "Goose Bay"
},
"Grand_Turk": {
"exemplarCity": "Grand Turk"
},
"Grenada": {
"exemplarCity": "Grenada"
},
"Guadeloupe": {
"exemplarCity": "Guadeloupe"
},
"Guatemala": {
"exemplarCity": "Guatemala"
},
"Guayaquil": {
"exemplarCity": "Guayaquil"
},
"Guyana": {
"exemplarCity": "Guyana"
},
"Halifax": {
"exemplarCity": "Halifax"
},
"Havana": {
"exemplarCity": "Havanna"
},
"Hermosillo": {
"exemplarCity": "Hermosillo"
},
"Indiana": {
"Vincennes": {
"exemplarCity": "Vincennes, Indiana"
},
"Petersburg": {
"exemplarCity": "Petersburg, Indiana"
},
"Tell_City": {
"exemplarCity": "Tell City, Indiana"
},
"Knox": {
"exemplarCity": "Knox, Indiana"
},
"Winamac": {
"exemplarCity": "Winamac, Indiana"
},
"Marengo": {
"exemplarCity": "Marengo, Indiana"
},
"Vevay": {
"exemplarCity": "Vevay, Indiana"
}
},
"Indianapolis": {
"exemplarCity": "Indianapolis"
},
"Inuvik": {
"exemplarCity": "Inuvik"
},
"Iqaluit": {
"exemplarCity": "Iqaluit"
},
"Jamaica": {
"exemplarCity": "Jamaika"
},
"Jujuy": {
"exemplarCity": "Jujuy"
},
"Juneau": {
"exemplarCity": "Juneau"
},
"Kentucky": {
"Monticello": {
"exemplarCity": "Monticello, Kentucky"
}
},
"Kralendijk": {
"exemplarCity": "Kralendijk"
},
"La_Paz": {
"exemplarCity": "La Paz"
},
"Lima": {
"exemplarCity": "Lima"
},
"Los_Angeles": {
"exemplarCity": "Los Angeles"
},
"Louisville": {
"exemplarCity": "Louisville"
},
"Lower_Princes": {
"exemplarCity": "Lower Prince’s Quarter"
},
"Maceio": {
"exemplarCity": "Maceio"
},
"Managua": {
"exemplarCity": "Managua"
},
"Manaus": {
"exemplarCity": "Manaus"
},
"Marigot": {
"exemplarCity": "Marigot"
},
"Martinique": {
"exemplarCity": "Martinique"
},
"Matamoros": {
"exemplarCity": "Matamoros"
},
"Mazatlan": {
"exemplarCity": "Mazatlan"
},
"Mendoza": {
"exemplarCity": "Mendoza"
},
"Menominee": {
"exemplarCity": "Menominee"
},
"Merida": {
"exemplarCity": "Merida"
},
"Metlakatla": {
"exemplarCity": "Metlakatla"
},
"Mexico_City": {
"exemplarCity": "Mexiko-Stadt"
},
"Miquelon": {
"exemplarCity": "Miquelon"
},
"Moncton": {
"exemplarCity": "Moncton"
},
"Monterrey": {
"exemplarCity": "Monterrey"
},
"Montevideo": {
"exemplarCity": "Montevideo"
},
"Montserrat": {
"exemplarCity": "Montserrat"
},
"Nassau": {
"exemplarCity": "Nassau"
},
"New_York": {
"exemplarCity": "New York"
},
"Nipigon": {
"exemplarCity": "Nipigon"
},
"Nome": {
"exemplarCity": "Nome"
},
"Noronha": {
"exemplarCity": "Noronha"
},
"North_Dakota": {
"Beulah": {
"exemplarCity": "Beulah, North Dakota"
},
"New_Salem": {
"exemplarCity": "New Salem, North Dakota"
},
"Center": {
"exemplarCity": "Center, North Dakota"
}
},
"Ojinaga": {
"exemplarCity": "Ojinaga"
},
"Panama": {
"exemplarCity": "Panama"
},
"Pangnirtung": {
"exemplarCity": "Pangnirtung"
},
"Paramaribo": {
"exemplarCity": "Paramaribo"
},
"Phoenix": {
"exemplarCity": "Phoenix"
},
"Port-au-Prince": {
"exemplarCity": "Port-au-Prince"
},
"Port_of_Spain": {
"exemplarCity": "Port of Spain"
},
"Porto_Velho": {
"exemplarCity": "Porto Velho"
},
"Puerto_Rico": {
"exemplarCity": "Puerto Rico"
},
"Rainy_River": {
"exemplarCity": "Rainy River"
},
"Rankin_Inlet": {
"exemplarCity": "Rankin Inlet"
},
"Recife": {
"exemplarCity": "Recife"
},
"Regina": {
"exemplarCity": "Regina"
},
"Resolute": {
"exemplarCity": "Resolute"
},
"Rio_Branco": {
"exemplarCity": "Rio Branco"
},
"Santa_Isabel": {
"exemplarCity": "Santa Isabel"
},
"Santarem": {
"exemplarCity": "Santarem"
},
"Santiago": {
"exemplarCity": "Santiago"
},
"Santo_Domingo": {
"exemplarCity": "Santo Domingo"
},
"Sao_Paulo": {
"exemplarCity": "São Paulo"
},
"Scoresbysund": {
"exemplarCity": "Ittoqqortoormiit"
},
"Sitka": {
"exemplarCity": "Sitka"
},
"St_Barthelemy": {
"exemplarCity": "Saint-Barthélemy"
},
"St_Johns": {
"exemplarCity": "St. John’s"
},
"St_Kitts": {
"exemplarCity": "St. Kitts"
},
"St_Lucia": {
"exemplarCity": "St. Lucia"
},
"St_Thomas": {
"exemplarCity": "St. Thomas"
},
"St_Vincent": {
"exemplarCity": "St. Vincent"
},
"Swift_Current": {
"exemplarCity": "Swift Current"
},
"Tegucigalpa": {
"exemplarCity": "Tegucigalpa"
},
"Thule": {
"exemplarCity": "Thule"
},
"Thunder_Bay": {
"exemplarCity": "Thunder Bay"
},
"Tijuana": {
"exemplarCity": "Tijuana"
},
"Toronto": {
"exemplarCity": "Toronto"
},
"Tortola": {
"exemplarCity": "Tortola"
},
"Vancouver": {
"exemplarCity": "Vancouver"
},
"Whitehorse": {
"exemplarCity": "Whitehorse"
},
"Winnipeg": {
"exemplarCity": "Winnipeg"
},
"Yakutat": {
"exemplarCity": "Yakutat"
},
"Yellowknife": {
"exemplarCity": "Yellowknife"
}
},
"Atlantic": {
"Azores": {
"exemplarCity": "Azoren"
},
"Bermuda": {
"exemplarCity": "Bermudas"
},
"Canary": {
"exemplarCity": "Kanaren"
},
"Cape_Verde": {
"exemplarCity": "Cabo Verde"
},
"Faeroe": {
"exemplarCity": "Färöer"
},
"Madeira": {
"exemplarCity": "Madeira"
},
"Reykjavik": {
"exemplarCity": "Reykjavík"
},
"South_Georgia": {
"exemplarCity": "Südgeorgien"
},
"St_Helena": {
"exemplarCity": "St. Helena"
},
"Stanley": {
"exemplarCity": "Stanley"
}
},
"Europe": {
"Amsterdam": {
"exemplarCity": "Amsterdam"
},
"Andorra": {
"exemplarCity": "Andorra"
},
"Astrakhan": {
"exemplarCity": "Astrachan"
},
"Athens": {
"exemplarCity": "Athen"
},
"Belgrade": {
"exemplarCity": "Belgrad"
},
"Berlin": {
"exemplarCity": "Berlin"
},
"Bratislava": {
"exemplarCity": "Bratislava"
},
"Brussels": {
"exemplarCity": "Brüssel"
},
"Bucharest": {
"exemplarCity": "Bukarest"
},
"Budapest": {
"exemplarCity": "Budapest"
},
"Busingen": {
"exemplarCity": "Büsingen"
},
"Chisinau": {
"exemplarCity": "Kischinau"
},
"Copenhagen": {
"exemplarCity": "Kopenhagen"
},
"Dublin": {
"long": {
"daylight": "Irische Sommerzeit"
},
"exemplarCity": "Dublin"
},
"Gibraltar": {
"exemplarCity": "Gibraltar"
},
"Guernsey": {
"exemplarCity": "Guernsey"
},
"Helsinki": {
"exemplarCity": "Helsinki"
},
"Isle_of_Man": {
"exemplarCity": "Isle of Man"
},
"Istanbul": {
"exemplarCity": "Istanbul"
},
"Jersey": {
"exemplarCity": "Jersey"
},
"Kaliningrad": {
"exemplarCity": "Kaliningrad"
},
"Kiev": {
"exemplarCity": "Kiew"
},
"Kirov": {
"exemplarCity": "Kirow"
},
"Lisbon": {
"exemplarCity": "Lissabon"
},
"Ljubljana": {
"exemplarCity": "Ljubljana"
},
"London": {
"long": {
"daylight": "Britische Sommerzeit"
},
"exemplarCity": "London"
},
"Luxembourg": {
"exemplarCity": "Luxemburg"
},
"Madrid": {
"exemplarCity": "Madrid"
},
"Malta": {
"exemplarCity": "Malta"
},
"Mariehamn": {
"exemplarCity": "Mariehamn"
},
"Minsk": {
"exemplarCity": "Minsk"
},
"Monaco": {
"exemplarCity": "Monaco"
},
"Moscow": {
"exemplarCity": "Moskau"
},
"Oslo": {
"exemplarCity": "Oslo"
},
"Paris": {
"exemplarCity": "Paris"
},
"Podgorica": {
"exemplarCity": "Podgorica"
},
"Prague": {
"exemplarCity": "Prag"
},
"Riga": {
"exemplarCity": "Riga"
},
"Rome": {
"exemplarCity": "Rom"
},
"Samara": {
"exemplarCity": "Samara"
},
"San_Marino": {
"exemplarCity": "San Marino"
},
"Sarajevo": {
"exemplarCity": "Sarajevo"
},
"Simferopol": {
"exemplarCity": "Simferopol"
},
"Skopje": {
"exemplarCity": "Skopje"
},
"Sofia": {
"exemplarCity": "Sofia"
},
"Stockholm": {
"exemplarCity": "Stockholm"
},
"Tallinn": {
"exemplarCity": "Tallinn"
},
"Tirane": {
"exemplarCity": "Tirana"
},
"Ulyanovsk": {
"exemplarCity": "Uljanowsk"
},
"Uzhgorod": {
"exemplarCity": "Uschgorod"
},
"Vaduz": {
"exemplarCity": "Vaduz"
},
"Vatican": {
"exemplarCity": "Vatikan"
},
"Vienna": {
"exemplarCity": "Wien"
},
"Vilnius": {
"exemplarCity": "Vilnius"
},
"Volgograd": {
"exemplarCity": "Wolgograd"
},
"Warsaw": {
"exemplarCity": "Warschau"
},
"Zagreb": {
"exemplarCity": "Zagreb"
},
"Zaporozhye": {
"exemplarCity": "Saporischja"
},
"Zurich": {
"exemplarCity": "Zürich"
}
},
"Africa": {
"Abidjan": {
"exemplarCity": "Abidjan"
},
"Accra": {
"exemplarCity": "Accra"
},
"Addis_Ababa": {
"exemplarCity": "Addis Abeba"
},
"Algiers": {
"exemplarCity": "Algier"
},
"Asmera": {
"exemplarCity": "Asmara"
},
"Bamako": {
"exemplarCity": "Bamako"
},
"Bangui": {
"exemplarCity": "Bangui"
},
"Banjul": {
"exemplarCity": "Banjul"
},
"Bissau": {
"exemplarCity": "Bissau"
},
"Blantyre": {
"exemplarCity": "Blantyre"
},
"Brazzaville": {
"exemplarCity": "Brazzaville"
},
"Bujumbura": {
"exemplarCity": "Bujumbura"
},
"Cairo": {
"exemplarCity": "Kairo"
},
"Casablanca": {
"exemplarCity": "Casablanca"
},
"Ceuta": {
"exemplarCity": "Ceuta"
},
"Conakry": {
"exemplarCity": "Conakry"
},
"Dakar": {
"exemplarCity": "Dakar"
},
"Dar_es_Salaam": {
"exemplarCity": "Daressalam"
},
"Djibouti": {
"exemplarCity": "Dschibuti"
},
"Douala": {
"exemplarCity": "Douala"
},
"El_Aaiun": {
"exemplarCity": "El Aaiún"
},
"Freetown": {
"exemplarCity": "Freetown"
},
"Gaborone": {
"exemplarCity": "Gaborone"
},
"Harare": {
"exemplarCity": "Harare"
},
"Johannesburg": {
"exemplarCity": "Johannesburg"
},
"Juba": {
"exemplarCity": "Juba"
},
"Kampala": {
"exemplarCity": "Kampala"
},
"Khartoum": {
"exemplarCity": "Khartum"
},
"Kigali": {
"exemplarCity": "Kigali"
},
"Kinshasa": {
"exemplarCity": "Kinshasa"
},
"Lagos": {
"exemplarCity": "Lagos"
},
"Libreville": {
"exemplarCity": "Libreville"
},
"Lome": {
"exemplarCity": "Lomé"
},
"Luanda": {
"exemplarCity": "Luanda"
},
"Lubumbashi": {
"exemplarCity": "Lubumbashi"
},
"Lusaka": {
"exemplarCity": "Lusaka"
},
"Malabo": {
"exemplarCity": "Malabo"
},
"Maputo": {
"exemplarCity": "Maputo"
},
"Maseru": {
"exemplarCity": "Maseru"
},
"Mbabane": {
"exemplarCity": "Mbabane"
},
"Mogadishu": {
"exemplarCity": "Mogadischu"
},
"Monrovia": {
"exemplarCity": "Monrovia"
},
"Nairobi": {
"exemplarCity": "Nairobi"
},
"Ndjamena": {
"exemplarCity": "N’Djamena"
},
"Niamey": {
"exemplarCity": "Niamey"
},
"Nouakchott": {
"exemplarCity": "Nouakchott"
},
"Ouagadougou": {
"exemplarCity": "Ouagadougou"
},
"Porto-Novo": {
"exemplarCity": "Porto Novo"
},
"Sao_Tome": {
"exemplarCity": "São Tomé"
},
"Tripoli": {
"exemplarCity": "Tripolis"
},
"Tunis": {
"exemplarCity": "Tunis"
},
"Windhoek": {
"exemplarCity": "Windhoek"
}
},
"Asia": {
"Aden": {
"exemplarCity": "Aden"
},
"Almaty": {
"exemplarCity": "Almaty"
},
"Amman": {
"exemplarCity": "Amman"
},
"Anadyr": {
"exemplarCity": "Anadyr"
},
"Aqtau": {
"exemplarCity": "Aqtau"
},
"Aqtobe": {
"exemplarCity": "Aktobe"
},
"Ashgabat": {
"exemplarCity": "Aşgabat"
},
"Baghdad": {
"exemplarCity": "Bagdad"
},
"Bahrain": {
"exemplarCity": "Bahrain"
},
"Baku": {
"exemplarCity": "Baku"
},
"Bangkok": {
"exemplarCity": "Bangkok"
},
"Barnaul": {
"exemplarCity": "Barnaul"
},
"Beirut": {
"exemplarCity": "Beirut"
},
"Bishkek": {
"exemplarCity": "Bischkek"
},
"Brunei": {
"exemplarCity": "Brunei"
},
"Calcutta": {
"exemplarCity": "Kalkutta"
},
"Chita": {
"exemplarCity": "Tschita"
},
"Choibalsan": {
"exemplarCity": "Tschoibalsan"
},
"Colombo": {
"exemplarCity": "Colombo"
},
"Damascus": {
"exemplarCity": "Damaskus"
},
"Dhaka": {
"exemplarCity": "Dhaka"
},
"Dili": {
"exemplarCity": "Dili"
},
"Dubai": {
"exemplarCity": "Dubai"
},
"Dushanbe": {
"exemplarCity": "Duschanbe"
},
"Gaza": {
"exemplarCity": "Gaza"
},
"Hebron": {
"exemplarCity": "Hebron"
},
"Hong_Kong": {
"exemplarCity": "Hongkong"
},
"Hovd": {
"exemplarCity": "Chowd"
},
"Irkutsk": {
"exemplarCity": "Irkutsk"
},
"Jakarta": {
"exemplarCity": "Jakarta"
},
"Jayapura": {
"exemplarCity": "Jayapura"
},
"Jerusalem": {
"exemplarCity": "Jerusalem"
},
"Kabul": {
"exemplarCity": "Kabul"
},
"Kamchatka": {
"exemplarCity": "Kamtschatka"
},
"Karachi": {
"exemplarCity": "Karatschi"
},
"Katmandu": {
"exemplarCity": "Kathmandu"
},
"Khandyga": {
"exemplarCity": "Chandyga"
},
"Krasnoyarsk": {
"exemplarCity": "Krasnojarsk"
},
"Kuala_Lumpur": {
"exemplarCity": "Kuala Lumpur"
},
"Kuching": {
"exemplarCity": "Kuching"
},
"Kuwait": {
"exemplarCity": "Kuwait"
},
"Macau": {
"exemplarCity": "Macao"
},
"Magadan": {
"exemplarCity": "Magadan"
},
"Makassar": {
"exemplarCity": "Makassar"
},
"Manila": {
"exemplarCity": "Manila"
},
"Muscat": {
"exemplarCity": "Maskat"
},
"Nicosia": {
"exemplarCity": "Nikosia"
},
"Novokuznetsk": {
"exemplarCity": "Nowokuznetsk"
},
"Novosibirsk": {
"exemplarCity": "Nowosibirsk"
},
"Omsk": {
"exemplarCity": "Omsk"
},
"Oral": {
"exemplarCity": "Oral"
},
"Phnom_Penh": {
"exemplarCity": "Phnom Penh"
},
"Pontianak": {
"exemplarCity": "Pontianak"
},
"Pyongyang": {
"exemplarCity": "Pjöngjang"
},
"Qatar": {
"exemplarCity": "Katar"
},
"Qyzylorda": {
"exemplarCity": "Qysylorda"
},
"Rangoon": {
"exemplarCity": "Rangun"
},
"Riyadh": {
"exemplarCity": "Riad"
},
"Saigon": {
"exemplarCity": "Ho-Chi-Minh-Stadt"
},
"Sakhalin": {
"exemplarCity": "Sachalin"
},
"Samarkand": {
"exemplarCity": "Samarkand"
},
"Seoul": {
"exemplarCity": "Seoul"
},
"Shanghai": {
"exemplarCity": "Shanghai"
},
"Singapore": {
"exemplarCity": "Singapur"
},
"Srednekolymsk": {
"exemplarCity": "Srednekolymsk"
},
"Taipei": {
"exemplarCity": "Taipeh"
},
"Tashkent": {
"exemplarCity": "Taschkent"
},
"Tbilisi": {
"exemplarCity": "Tiflis"
},
"Tehran": {
"exemplarCity": "Teheran"
},
"Thimphu": {
"exemplarCity": "Thimphu"
},
"Tokyo": {
"exemplarCity": "Tokio"
},
"Tomsk": {
"exemplarCity": "Tomsk"
},
"Ulaanbaatar": {
"exemplarCity": "Ulaanbaatar"
},
"Urumqi": {
"exemplarCity": "Ürümqi"
},
"Ust-Nera": {
"exemplarCity": "Ust-Nera"
},
"Vientiane": {
"exemplarCity": "Vientiane"
},
"Vladivostok": {
"exemplarCity": "Wladiwostok"
},
"Yakutsk": {
"exemplarCity": "Jakutsk"
},
"Yekaterinburg": {
"exemplarCity": "Jekaterinburg"
},
"Yerevan": {
"exemplarCity": "Eriwan"
}
},
"Indian": {
"Antananarivo": {
"exemplarCity": "Antananarivo"
},
"Chagos": {
"exemplarCity": "Chagos"
},
"Christmas": {
"exemplarCity": "Weihnachtsinsel"
},
"Cocos": {
"exemplarCity": "Cocos"
},
"Comoro": {
"exemplarCity": "Komoren"
},
"Kerguelen": {
"exemplarCity": "Kerguelen"
},
"Mahe": {
"exemplarCity": "Mahe"
},
"Maldives": {
"exemplarCity": "Malediven"
},
"Mauritius": {
"exemplarCity": "Mauritius"
},
"Mayotte": {
"exemplarCity": "Mayotte"
},
"Reunion": {
"exemplarCity": "Réunion"
}
},
"Australia": {
"Adelaide": {
"exemplarCity": "Adelaide"
},
"Brisbane": {
"exemplarCity": "Brisbane"
},
"Broken_Hill": {
"exemplarCity": "Broken Hill"
},
"Currie": {
"exemplarCity": "Currie"
},
"Darwin": {
"exemplarCity": "Darwin"
},
"Eucla": {
"exemplarCity": "Eucla"
},
"Hobart": {
"exemplarCity": "Hobart"
},
"Lindeman": {
"exemplarCity": "Lindeman"
},
"Lord_Howe": {
"exemplarCity": "Lord Howe"
},
"Melbourne": {
"exemplarCity": "Melbourne"
},
"Perth": {
"exemplarCity": "Perth"
},
"Sydney": {
"exemplarCity": "Sydney"
}
},
"Pacific": {
"Apia": {
"exemplarCity": "Apia"
},
"Auckland": {
"exemplarCity": "Auckland"
},
"Bougainville": {
"exemplarCity": "Bougainville"
},
"Chatham": {
"exemplarCity": "Chatham"
},
"Easter": {
"exemplarCity": "Osterinsel"
},
"Efate": {
"exemplarCity": "Efate"
},
"Enderbury": {
"exemplarCity": "Enderbury"
},
"Fakaofo": {
"exemplarCity": "Fakaofo"
},
"Fiji": {
"exemplarCity": "Fidschi"
},
"Funafuti": {
"exemplarCity": "Funafuti"
},
"Galapagos": {
"exemplarCity": "Galapagos"
},
"Gambier": {
"exemplarCity": "Gambier"
},
"Guadalcanal": {
"exemplarCity": "Guadalcanal"
},
"Guam": {
"exemplarCity": "Guam"
},
"Honolulu": {
"exemplarCity": "Honolulu"
},
"Johnston": {
"exemplarCity": "Johnston"
},
"Kiritimati": {
"exemplarCity": "Kiritimati"
},
"Kosrae": {
"exemplarCity": "Kosrae"
},
"Kwajalein": {
"exemplarCity": "Kwajalein"
},
"Majuro": {
"exemplarCity": "Majuro"
},
"Marquesas": {
"exemplarCity": "Marquesas"
},
"Midway": {
"exemplarCity": "Midway"
},
"Nauru": {
"exemplarCity": "Nauru"
},
"Niue": {
"exemplarCity": "Niue"
},
"Norfolk": {
"exemplarCity": "Norfolk"
},
"Noumea": {
"exemplarCity": "Noumea"
},
"Pago_Pago": {
"exemplarCity": "Pago Pago"
},
"Palau": {
"exemplarCity": "Palau"
},
"Pitcairn": {
"exemplarCity": "Pitcairn"
},
"Ponape": {
"exemplarCity": "Pohnpei"
},
"Port_Moresby": {
"exemplarCity": "Port Moresby"
},
"Rarotonga": {
"exemplarCity": "Rarotonga"
},
"Saipan": {
"exemplarCity": "Saipan"
},
"Tahiti": {
"exemplarCity": "Tahiti"
},
"Tarawa": {
"exemplarCity": "Tarawa"
},
"Tongatapu": {
"exemplarCity": "Tongatapu"
},
"Truk": {
"exemplarCity": "Chuuk"
},
"Wake": {
"exemplarCity": "Wake"
},
"Wallis": {
"exemplarCity": "Wallis"
}
},
"Arctic": {
"Longyearbyen": {
"exemplarCity": "Longyearbyen"
}
},
"Antarctica": {
"Casey": {
"exemplarCity": "Casey"
},
"Davis": {
"exemplarCity": "Davis"
},
"DumontDUrville": {
"exemplarCity": "Dumont d’Urville"
},
"Macquarie": {
"exemplarCity": "Macquarie"
},
"Mawson": {
"exemplarCity": "Mawson"
},
"McMurdo": {
"exemplarCity": "McMurdo"
},
"Palmer": {
"exemplarCity": "Palmer"
},
"Rothera": {
"exemplarCity": "Rothera"
},
"Syowa": {
"exemplarCity": "Syowa"
},
"Troll": {
"exemplarCity": "Troll"
},
"Vostok": {
"exemplarCity": "Wostok"
}
},
"Etc": {
"GMT": {
"exemplarCity": "GMT"
},
"GMT1": {
"exemplarCity": "GMT+1"
},
"GMT10": {
"exemplarCity": "GMT+10"
},
"GMT11": {
"exemplarCity": "GMT+11"
},
"GMT12": {
"exemplarCity": "GMT+12"
},
"GMT2": {
"exemplarCity": "GMT+2"
},
"GMT3": {
"exemplarCity": "GMT+3"
},
"GMT4": {
"exemplarCity": "GMT+4"
},
"GMT5": {
"exemplarCity": "GMT+5"
},
"GMT6": {
"exemplarCity": "GMT+6"
},
"GMT7": {
"exemplarCity": "GMT+7"
},
"GMT8": {
"exemplarCity": "GMT+8"
},
"GMT9": {
"exemplarCity": "GMT+9"
},
"GMT-1": {
"exemplarCity": "GMT-1"
},
"GMT-10": {
"exemplarCity": "GMT-10"
},
"GMT-11": {
"exemplarCity": "GMT-11"
},
"GMT-12": {
"exemplarCity": "GMT-12"
},
"GMT-13": {
"exemplarCity": "GMT-13"
},
"GMT-14": {
"exemplarCity": "GMT-14"
},
"GMT-2": {
"exemplarCity": "GMT-2"
},
"GMT-3": {
"exemplarCity": "GMT-3"
},
"GMT-4": {
"exemplarCity": "GMT-4"
},
"GMT-5": {
"exemplarCity": "GMT-5"
},
"GMT-6": {
"exemplarCity": "GMT-6"
},
"GMT-7": {
"exemplarCity": "GMT-7"
},
"GMT-8": {
"exemplarCity": "GMT-8"
},
"GMT-9": {
"exemplarCity": "GMT-9"
},
"Unknown": {
"exemplarCity": "Unbekannt"
}
}
},
"metazone": {
"Acre": {
"long": {
"generic": "Acre-Zeit",
"standard": "Acre-Normalzeit",
"daylight": "Acre-Sommerzeit"
}
},
"Afghanistan": {
"long": {
"standard": "Afghanistan-Zeit"
}
},
"Africa_Central": {
"long": {
"standard": "Zentralafrikanische Zeit"
}
},
"Africa_Eastern": {
"long": {
"standard": "Ostafrikanische Zeit"
}
},
"Africa_Southern": {
"long": {
"standard": "Südafrikanische Zeit"
}
},
"Africa_Western": {
"long": {
"generic": "Westafrikanische Zeit",
"standard": "Westafrikanische Normalzeit",
"daylight": "Westafrikanische Sommerzeit"
}
},
"Alaska": {
"long": {
"generic": "Alaska-Zeit",
"standard": "Alaska-Normalzeit",
"daylight": "Alaska-Sommerzeit"
}
},
"Almaty": {
"long": {
"generic": "Almaty-Zeit",
"standard": "Almaty-Normalzeit",
"daylight": "Almaty-Sommerzeit"
}
},
"Amazon": {
"long": {
"generic": "Amazonas-Zeit",
"standard": "Amazonas-Normalzeit",
"daylight": "Amazonas-Sommerzeit"
}
},
"America_Central": {
"long": {
"generic": "Nordamerikanische Inlandzeit",
"standard": "Nordamerikanische Inland-Normalzeit",
"daylight": "Nordamerikanische Inland-Sommerzeit"
}
},
"America_Eastern": {
"long": {
"generic": "Nordamerikanische Ostküstenzeit",
"standard": "Nordamerikanische Ostküsten-Normalzeit",
"daylight": "Nordamerikanische Ostküsten-Sommerzeit"
}
},
"America_Mountain": {
"long": {
"generic": "Rocky-Mountain-Zeit",
"standard": "Rocky Mountain-Normalzeit",
"daylight": "Rocky-Mountain-Sommerzeit"
}
},
"America_Pacific": {
"long": {
"generic": "Nordamerikanische Westküstenzeit",
"standard": "Nordamerikanische Westküsten-Normalzeit",
"daylight": "Nordamerikanische Westküsten-Sommerzeit"
}
},
"Anadyr": {
"long": {
"generic": "Anadyr Zeit",
"standard": "Anadyr Normalzeit",
"daylight": "Anadyr Sommerzeit"
}
},
"Apia": {
"long": {
"generic": "Apia-Zeit",
"standard": "Apia-Normalzeit",
"daylight": "Apia-Sommerzeit"
}
},
"Aqtau": {
"long": {
"generic": "Aqtau-Zeit",
"standard": "Aqtau-Normalzeit",
"daylight": "Aqtau-Sommerzeit"
}
},
"Aqtobe": {
"long": {
"generic": "Aqtöbe-Zeit",
"standard": "Aqtöbe-Normalzeit",
"daylight": "Aqtöbe-Sommerzeit"
}
},
"Arabian": {
"long": {
"generic": "Arabische Zeit",
"standard": "Arabische Normalzeit",
"daylight": "Arabische Sommerzeit"
}
},
"Argentina": {
"long": {
"generic": "Argentinische Zeit",
"standard": "Argentinische Normalzeit",
"daylight": "Argentinische Sommerzeit"
}
},
"Argentina_Western": {
"long": {
"generic": "Westargentinische Zeit",
"standard": "Westargentinische Normalzeit",
"daylight": "Westargentinische Sommerzeit"
}
},
"Armenia": {
"long": {
"generic": "Armenische Zeit",
"standard": "Armenische Normalzeit",
"daylight": "Armenische Sommerzeit"
}
},
"Atlantic": {
"long": {
"generic": "Atlantik-Zeit",
"standard": "Atlantik-Normalzeit",
"daylight": "Atlantik-Sommerzeit"
}
},
"Australia_Central": {
"long": {
"generic": "Zentralaustralische Zeit",
"standard": "Zentralaustralische Normalzeit",
"daylight": "Zentralaustralische Sommerzeit"
}
},
"Australia_CentralWestern": {
"long": {
"generic": "Zentral-/Westaustralische Zeit",
"standard": "Zentral-/Westaustralische Normalzeit",
"daylight": "Zentral-/Westaustralische Sommerzeit"
}
},
"Australia_Eastern": {
"long": {
"generic": "Ostaustralische Zeit",
"standard": "Ostaustralische Normalzeit",
"daylight": "Ostaustralische Sommerzeit"
}
},
"Australia_Western": {
"long": {
"generic": "Westaustralische Zeit",
"standard": "Westaustralische Normalzeit",
"daylight": "Westaustralische Sommerzeit"
}
},
"Azerbaijan": {
"long": {
"generic": "Aserbaidschanische Zeit",
"standard": "Aserbeidschanische Normalzeit",
"daylight": "Aserbaidschanische Sommerzeit"
}
},
"Azores": {
"long": {
"generic": "Azoren-Zeit",
"standard": "Azoren-Normalzeit",
"daylight": "Azoren-Sommerzeit"
}
},
"Bangladesh": {
"long": {
"generic": "Bangladesch-Zeit",
"standard": "Bangladesch-Normalzeit",
"daylight": "Bangladesch-Sommerzeit"
}
},
"Bhutan": {
"long": {
"standard": "Bhutan-Zeit"
}
},
"Bolivia": {
"long": {
"standard": "Bolivianische Zeit"
}
},
"Brasilia": {
"long": {
"generic": "Brasília-Zeit",
"standard": "Brasília-Normalzeit",
"daylight": "Brasília-Sommerzeit"
}
},
"Brunei": {
"long": {
"standard": "Brunei-Zeit"
}
},
"Cape_Verde": {
"long": {
"generic": "Cabo-Verde-Zeit",
"standard": "Cabo-Verde-Normalzeit",
"daylight": "Cabo-Verde-Sommerzeit"
}
},
"Casey": {
"long": {
"standard": "Casey-Zeit"
}
},
"Chamorro": {
"long": {
"standard": "Chamorro-Zeit"
}
},
"Chatham": {
"long": {
"generic": "Chatham-Zeit",
"standard": "Chatham-Normalzeit",
"daylight": "Chatham-Sommerzeit"
}
},
"Chile": {
"long": {
"generic": "Chilenische Zeit",
"standard": "Chilenische Normalzeit",
"daylight": "Chilenische Sommerzeit"
}
},
"China": {
"long": {
"generic": "Chinesische Zeit",
"standard": "Chinesische Normalzeit",
"daylight": "Chinesische Sommerzeit"
}
},
"Choibalsan": {
"long": {
"generic": "Tschoibalsan-Zeit",
"standard": "Tschoibalsan-Normalzeit",
"daylight": "Tschoibalsan-Sommerzeit"
}
},
"Christmas": {
"long": {
"standard": "Weihnachtsinsel-Zeit"
}
},
"Cocos": {
"long": {
"standard": "Kokosinseln-Zeit"
}
},
"Colombia": {
"long": {
"generic": "Kolumbianische Zeit",
"standard": "Kolumbianische Normalzeit",
"daylight": "Kolumbianische Sommerzeit"
}
},
"Cook": {
"long": {
"generic": "Cookinseln-Zeit",
"standard": "Cookinseln-Normalzeit",
"daylight": "Cookinseln-Sommerzeit"
}
},
"Cuba": {
"long": {
"generic": "Kubanische Zeit",
"standard": "Kubanische Normalzeit",
"daylight": "Kubanische Sommerzeit"
}
},
"Davis": {
"long": {
"standard": "Davis-Zeit"
}
},
"DumontDUrville": {
"long": {
"standard": "Dumont-d’Urville-Zeit"
}
},
"East_Timor": {
"long": {
"standard": "Osttimor-Zeit"
}
},
"Easter": {
"long": {
"generic": "Osterinsel-Zeit",
"standard": "Osterinsel-Normalzeit",
"daylight": "Osterinsel-Sommerzeit"
}
},
"Ecuador": {
"long": {
"standard": "Ecuadorianische Zeit"
}
},
"Europe_Central": {
"long": {
"generic": "Mitteleuropäische Zeit",
"standard": "Mitteleuropäische Normalzeit",
"daylight": "Mitteleuropäische Sommerzeit"
},
"short": {
"generic": "MEZ",
"standard": "MEZ",
"daylight": "MESZ"
}
},
"Europe_Eastern": {
"long": {
"generic": "Osteuropäische Zeit",
"standard": "Osteuropäische Normalzeit",
"daylight": "Osteuropäische Sommerzeit"
},
"short": {
"generic": "OEZ",
"standard": "OEZ",
"daylight": "OESZ"
}
},
"Europe_Further_Eastern": {
"long": {
"standard": "Kaliningrader Zeit"
}
},
"Europe_Western": {
"long": {
"generic": "Westeuropäische Zeit",
"standard": "Westeuropäische Normalzeit",
"daylight": "Westeuropäische Sommerzeit"
},
"short": {
"generic": "WEZ",
"standard": "WEZ",
"daylight": "WESZ"
}
},
"Falkland": {
"long": {
"generic": "Falklandinseln-Zeit",
"standard": "Falklandinseln-Normalzeit",
"daylight": "Falklandinseln-Sommerzeit"
}
},
"Fiji": {
"long": {
"generic": "Fidschi-Zeit",
"standard": "Fidschi-Normalzeit",
"daylight": "Fidschi-Sommerzeit"
}
},
"French_Guiana": {
"long": {
"standard": "Französisch-Guayana-Zeit"
}
},
"French_Southern": {
"long": {
"standard": "Französische Süd- und Antarktisgebiete-Zeit"
}
},
"Galapagos": {
"long": {
"standard": "Galapagos-Zeit"
}
},
"Gambier": {
"long": {
"standard": "Gambier-Zeit"
}
},
"Georgia": {
"long": {
"generic": "Georgische Zeit",
"standard": "Georgische Normalzeit",
"daylight": "Georgische Sommerzeit"
}
},
"Gilbert_Islands": {
"long": {
"standard": "Gilbert-Inseln-Zeit"
}
},
"GMT": {
"long": {
"standard": "Mittlere Greenwich-Zeit"
}
},
"Greenland_Eastern": {
"long": {
"generic": "Ostgrönland-Zeit",
"standard": "Ostgrönland-Normalzeit",
"daylight": "Ostgrönland-Sommerzeit"
}
},
"Greenland_Western": {
"long": {
"generic": "Westgrönland-Zeit",
"standard": "Westgrönland-Normalzeit",
"daylight": "Westgrönland-Sommerzeit"
}
},
"Guam": {
"long": {
"standard": "Guam-Zeit"
}
},
"Gulf": {
"long": {
"standard": "Golf-Zeit"
}
},
"Guyana": {
"long": {
"standard": "Guyana-Zeit"
}
},
"Hawaii_Aleutian": {
"long": {
"generic": "Hawaii-Aleuten-Zeit",
"standard": "Hawaii-Aleuten-Normalzeit",
"daylight": "Hawaii-Aleuten-Sommerzeit"
}
},
"Hong_Kong": {
"long": {
"generic": "Hongkong-Zeit",
"standard": "Hongkong-Normalzeit",
"daylight": "Hongkong-Sommerzeit"
}
},
"Hovd": {
"long": {
"generic": "Chowd-Zeit",
"standard": "Chowd-Normalzeit",
"daylight": "Chowd-Sommerzeit"
}
},
"India": {
"long": {
"standard": "Indische Zeit"
}
},
"Indian_Ocean": {
"long": {
"standard": "Indischer Ozean-Zeit"
}
},
"Indochina": {
"long": {
"standard": "Indochina-Zeit"
}
},
"Indonesia_Central": {
"long": {
"standard": "Zentralindonesische Zeit"
}
},
"Indonesia_Eastern": {
"long": {
"standard": "Ostindonesische Zeit"
}
},
"Indonesia_Western": {
"long": {
"standard": "Westindonesische Zeit"
}
},
"Iran": {
"long": {
"generic": "Iranische Zeit",
"standard": "Iranische Normalzeit",
"daylight": "Iranische Sommerzeit"
}
},
"Irkutsk": {
"long": {
"generic": "Irkutsk-Zeit",
"standard": "Irkutsk-Normalzeit",
"daylight": "Irkutsk-Sommerzeit"
}
},
"Israel": {
"long": {
"generic": "Israelische Zeit",
"standard": "Israelische Normalzeit",
"daylight": "Israelische Sommerzeit"
}
},
"Japan": {
"long": {
"generic": "Japanische Zeit",
"standard": "Japanische Normalzeit",
"daylight": "Japanische Sommerzeit"
}
},
"Kamchatka": {
"long": {
"generic": "Kamtschatka-Zeit",
"standard": "Kamtschatka-Normalzeit",
"daylight": "Kamtschatka-Sommerzeit"
}
},
"Kazakhstan_Eastern": {
"long": {
"standard": "Ostkasachische Zeit"
}
},
"Kazakhstan_Western": {
"long": {
"standard": "Westkasachische Zeit"
}
},
"Korea": {
"long": {
"generic": "Koreanische Zeit",
"standard": "Koreanische Normalzeit",
"daylight": "Koreanische Sommerzeit"
}
},
"Kosrae": {
"long": {
"standard": "Kosrae-Zeit"
}
},
"Krasnoyarsk": {
"long": {
"generic": "Krasnojarsk-Zeit",
"standard": "Krasnojarsk-Normalzeit",
"daylight": "Krasnojarsk-Sommerzeit"
}
},
"Kyrgystan": {
"long": {
"standard": "Kirgisistan-Zeit"
}
},
"Lanka": {
"long": {
"standard": "Sri-Lanka-Zeit"
}
},
"Line_Islands": {
"long": {
"standard": "Linieninseln-Zeit"
}
},
"Lord_Howe": {
"long": {
"generic": "Lord-Howe-Zeit",
"standard": "Lord-Howe-Normalzeit",
"daylight": "Lord-Howe-Sommerzeit"
}
},
"Macau": {
"long": {
"generic": "Macau-Zeit",
"standard": "Macau-Normalzeit",
"daylight": "Macau-Sommerzeit"
}
},
"Macquarie": {
"long": {
"standard": "Macquarieinsel-Zeit"
}
},
"Magadan": {
"long": {
"generic": "Magadan-Zeit",
"standard": "Magadan-Normalzeit",
"daylight": "Magadan-Sommerzeit"
}
},
"Malaysia": {
"long": {
"standard": "Malaysische Zeit"
}
},
"Maldives": {
"long": {
"standard": "Malediven-Zeit"
}
},
"Marquesas": {
"long": {
"standard": "Marquesas-Zeit"
}
},
"Marshall_Islands": {
"long": {
"standard": "Marshallinseln-Zeit"
}
},
"Mauritius": {
"long": {
"generic": "Mauritius-Zeit",
"standard": "Mauritius-Normalzeit",
"daylight": "Mauritius-Sommerzeit"
}
},
"Mawson": {
"long": {
"standard": "Mawson-Zeit"
}
},
"Mexico_Northwest": {
"long": {
"generic": "Mexiko Nordwestliche Zone-Zeit",
"standard": "Mexiko Nordwestliche Zone-Normalzeit",
"daylight": "Mexiko Nordwestliche Zone-Sommerzeit"
}
},
"Mexico_Pacific": {
"long": {
"generic": "Mexiko Pazifikzone-Zeit",
"standard": "Mexiko Pazifikzone-Normalzeit",
"daylight": "Mexiko Pazifikzone-Sommerzeit"
}
},
"Mongolia": {
"long": {
"generic": "Ulaanbaatar-Zeit",
"standard": "Ulaanbaatar-Normalzeit",
"daylight": "Ulaanbaatar-Sommerzeit"
}
},
"Moscow": {
"long": {
"generic": "Moskauer Zeit",
"standard": "Moskauer Normalzeit",
"daylight": "Moskauer Sommerzeit"
}
},
"Myanmar": {
"long": {
"standard": "Myanmar-Zeit"
}
},
"Nauru": {
"long": {
"standard": "Nauru-Zeit"
}
},
"Nepal": {
"long": {
"standard": "Nepalesische Zeit"
}
},
"New_Caledonia": {
"long": {
"generic": "Neukaledonische Zeit",
"standard": "Neukaledonische Normalzeit",
"daylight": "Neukaledonische Sommerzeit"
}
},
"New_Zealand": {
"long": {
"generic": "Neuseeland-Zeit",
"standard": "Neuseeland-Normalzeit",
"daylight": "Neuseeland-Sommerzeit"
}
},
"Newfoundland": {
"long": {
"generic": "Neufundland-Zeit",
"standard": "Neufundland-Normalzeit",
"daylight": "Neufundland-Sommerzeit"
}
},
"Niue": {
"long": {
"standard": "Niue-Zeit"
}
},
"Norfolk": {
"long": {
"standard": "Norfolkinsel-Zeit"
}
},
"Noronha": {
"long": {
"generic": "Fernando de Noronha-Zeit",
"standard": "Fernando de Noronha-Normalzeit",
"daylight": "Fernando de Noronha-Sommerzeit"
}
},
"North_Mariana": {
"long": {
"standard": "Nördliche-Marianen-Zeit"
}
},
"Novosibirsk": {
"long": {
"generic": "Nowosibirsk-Zeit",
"standard": "Nowosibirsk-Normalzeit",
"daylight": "Nowosibirsk-Sommerzeit"
}
},
"Omsk": {
"long": {
"generic": "Omsk-Zeit",
"standard": "Omsk-Normalzeit",
"daylight": "Omsk-Sommerzeit"
}
},
"Pakistan": {
"long": {
"generic": "Pakistanische Zeit",
"standard": "Pakistanische Normalzeit",
"daylight": "Pakistanische Sommerzeit"
}
},
"Palau": {
"long": {
"standard": "Palau-Zeit"
}
},
"Papua_New_Guinea": {
"long": {
"standard": "Papua-Neuguinea-Zeit"
}
},
"Paraguay": {
"long": {
"generic": "Paraguayanische Zeit",
"standard": "Paraguayanische Normalzeit",
"daylight": "Paraguayanische Sommerzeit"
}
},
"Peru": {
"long": {
"generic": "Peruanische Zeit",
"standard": "Peruanische Normalzeit",
"daylight": "Peruanische Sommerzeit"
}
},
"Philippines": {
"long": {
"generic": "Philippinische Zeit",
"standard": "Philippinische Normalzeit",
"daylight": "Philippinische Sommerzeit"
}
},
"Phoenix_Islands": {
"long": {
"standard": "Phoenixinseln-Zeit"
}
},
"Pierre_Miquelon": {
"long": {
"generic": "Saint-Pierre-und-Miquelon-Zeit",
"standard": "Saint-Pierre-und-Miquelon-Normalzeit",
"daylight": "Saint-Pierre-und-Miquelon-Sommerzeit"
}
},
"Pitcairn": {
"long": {
"standard": "Pitcairninseln-Zeit"
}
},
"Ponape": {
"long": {
"standard": "Ponape-Zeit"
}
},
"Pyongyang": {
"long": {
"standard": "Pjöngjang-Zeit"
}
},
"Qyzylorda": {
"long": {
"generic": "Quysylorda-Zeit",
"standard": "Quysylorda-Normalzeit",
"daylight": "Qysylorda-Sommerzeit"
}
},
"Reunion": {
"long": {
"standard": "Réunion-Zeit"
}
},
"Rothera": {
"long": {
"standard": "Rothera-Zeit"
}
},
"Sakhalin": {
"long": {
"generic": "Sachalin-Zeit",
"standard": "Sachalin-Normalzeit",
"daylight": "Sachalin-Sommerzeit"
}
},
"Samara": {
"long": {
"generic": "Samara-Zeit",
"standard": "Samara-Normalzeit",
"daylight": "Samara-Sommerzeit"
}
},
"Samoa": {
"long": {
"generic": "Samoa-Zeit",
"standard": "Samoa-Normalzeit",
"daylight": "Samoa-Sommerzeit"
}
},
"Seychelles": {
"long": {
"standard": "Seychellen-Zeit"
}
},
"Singapore": {
"long": {
"standard": "Singapur-Zeit"
}
},
"Solomon": {
"long": {
"standard": "Salomoninseln-Zeit"
}
},
"South_Georgia": {
"long": {
"standard": "Südgeorgische Zeit"
}
},
"Suriname": {
"long": {
"standard": "Suriname-Zeit"
}
},
"Syowa": {
"long": {
"standard": "Syowa-Zeit"
}
},
"Tahiti": {
"long": {
"standard": "Tahiti-Zeit"
}
},
"Taipei": {
"long": {
"generic": "Taipeh-Zeit",
"standard": "Taipeh-Normalzeit",
"daylight": "Taipeh-Sommerzeit"
}
},
"Tajikistan": {
"long": {
"standard": "Tadschikistan-Zeit"
}
},
"Tokelau": {
"long": {
"standard": "Tokelau-Zeit"
}
},
"Tonga": {
"long": {
"generic": "Tonganische Zeit",
"standard": "Tonganische Normalzeit",
"daylight": "Tonganische Sommerzeit"
}
},
"Truk": {
"long": {
"standard": "Chuuk-Zeit"
}
},
"Turkmenistan": {
"long": {
"generic": "Turkmenistan-Zeit",
"standard": "Turkmenistan-Normalzeit",
"daylight": "Turkmenistan-Sommerzeit"
}
},
"Tuvalu": {
"long": {
"standard": "Tuvalu-Zeit"
}
},
"Uruguay": {
"long": {
"generic": "Uruguayanische Zeit",
"standard": "Uruguyanische Normalzeit",
"daylight": "Uruguayanische Sommerzeit"
}
},
"Uzbekistan": {
"long": {
"generic": "Usbekistan-Zeit",
"standard": "Usbekistan-Normalzeit",
"daylight": "Usbekistan-Sommerzeit"
}
},
"Vanuatu": {
"long": {
"generic": "Vanuatu-Zeit",
"standard": "Vanuatu-Normalzeit",
"daylight": "Vanuatu-Sommerzeit"
}
},
"Venezuela": {
"long": {
"standard": "Venezuela-Zeit"
}
},
"Vladivostok": {
"long": {
"generic": "Wladiwostok-Zeit",
"standard": "Wladiwostok-Normalzeit",
"daylight": "Wladiwostok-Sommerzeit"
}
},
"Volgograd": {
"long": {
"generic": "Wolgograd-Zeit",
"standard": "Wolgograd-Normalzeit",
"daylight": "Wolgograd-Sommerzeit"
}
},
"Vostok": {
"long": {
"standard": "Wostok-Zeit"
}
},
"Wake": {
"long": {
"standard": "Wake-Insel-Zeit"
}
},
"Wallis": {
"long": {
"standard": "Wallis-und-Futuna-Zeit"
}
},
"Yakutsk": {
"long": {
"generic": "Jakutsk-Zeit",
"standard": "Jakutsk-Normalzeit",
"daylight": "Jakutsk-Sommerzeit"
}
},
"Yekaterinburg": {
"long": {
"generic": "Jekaterinburg-Zeit",
"standard": "Jekaterinburg-Normalzeit",
"daylight": "Jekaterinburg-Sommerzeit"
}
}
}
}
}
}
}
}
{
"main";
{
"de";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"de";
}
"dates";
{
"timeZoneNames";
{
"hourFormat";
"+HH:mm;-HH:mm",
"gmtFormat";
"GMT{0}",
"gmtZeroFormat";
"GMT",
"regionFormat";
"{0} Zeit",
"regionFormat-type-daylight";
"{0} Sommerzeit",
"regionFormat-type-standard";
"{0} Normalzeit",
"fallbackFormat";
"{1} ({0})",
"zone";
{
"America";
{
"Adak";
{
"exemplarCity";
"Adak";
}
"Anchorage";
{
"exemplarCity";
"Anchorage";
}
"Anguilla";
{
"exemplarCity";
"Anguilla";
}
"Antigua";
{
"exemplarCity";
"Antigua";
}
"Araguaina";
{
"exemplarCity";
"Araguaina";
}
"Argentina";
{
"Rio_Gallegos";
{
"exemplarCity";
"Rio Gallegos";
}
"San_Juan";
{
"exemplarCity";
"San Juan";
}
"Ushuaia";
{
"exemplarCity";
"Ushuaia";
}
"La_Rioja";
{
"exemplarCity";
"La Rioja";
}
"San_Luis";
{
"exemplarCity";
"San Luis";
}
"Salta";
{
"exemplarCity";
"Salta";
}
"Tucuman";
{
"exemplarCity";
"Tucuman";
}
}
"Aruba";
{
"exemplarCity";
"Aruba";
}
"Asuncion";
{
"exemplarCity";
"Asunción";
}
"Bahia";
{
"exemplarCity";
"Bahia";
}
"Bahia_Banderas";
{
"exemplarCity";
"Bahia Banderas";
}
"Barbados";
{
"exemplarCity";
"Barbados";
}
"Belem";
{
"exemplarCity";
"Belem";
}
"Belize";
{
"exemplarCity";
"Belize";
}
"Blanc-Sablon";
{
"exemplarCity";
"Blanc-Sablon";
}
"Boa_Vista";
{
"exemplarCity";
"Boa Vista";
}
"Bogota";
{
"exemplarCity";
"Bogotá";
}
"Boise";
{
"exemplarCity";
"Boise";
}
"Buenos_Aires";
{
"exemplarCity";
"Buenos Aires";
}
"Cambridge_Bay";
{
"exemplarCity";
"Cambridge Bay";
}
"Campo_Grande";
{
"exemplarCity";
"Campo Grande";
}
"Cancun";
{
"exemplarCity";
"Cancún";
}
"Caracas";
{
"exemplarCity";
"Caracas";
}
"Catamarca";
{
"exemplarCity";
"Catamarca";
}
"Cayenne";
{
"exemplarCity";
"Cayenne";
}
"Cayman";
{
"exemplarCity";
"Kaimaninseln";
}
"Chicago";
{
"exemplarCity";
"Chicago";
}
"Chihuahua";
{
"exemplarCity";
"Chihuahua";
}
"Coral_Harbour";
{
"exemplarCity";
"Atikokan";
}
"Cordoba";
{
"exemplarCity";
"Córdoba";
}
"Costa_Rica";
{
"exemplarCity";
"Costa Rica";
}
"Creston";
{
"exemplarCity";
"Creston";
}
"Cuiaba";
{
"exemplarCity";
"Cuiaba";
}
"Curacao";
{
"exemplarCity";
"Curaçao";
}
"Danmarkshavn";
{
"exemplarCity";
"Danmarkshavn";
}
"Dawson";
{
"exemplarCity";
"Dawson";
}
"Dawson_Creek";
{
"exemplarCity";
"Dawson Creek";
}
"Denver";
{
"exemplarCity";
"Denver";
}
"Detroit";
{
"exemplarCity";
"Detroit";
}
"Dominica";
{
"exemplarCity";
"Dominica";
}
"Edmonton";
{
"exemplarCity";
"Edmonton";
}
"Eirunepe";
{
"exemplarCity";
"Eirunepe";
}
"El_Salvador";
{
"exemplarCity";
"El Salvador";
}
"Fort_Nelson";
{
"exemplarCity";
"Fort Nelson";
}
"Fortaleza";
{
"exemplarCity";
"Fortaleza";
}
"Glace_Bay";
{
"exemplarCity";
"Glace Bay";
}
"Godthab";
{
"exemplarCity";
"Nuuk";
}
"Goose_Bay";
{
"exemplarCity";
"Goose Bay";
}
"Grand_Turk";
{
"exemplarCity";
"Grand Turk";
}
"Grenada";
{
"exemplarCity";
"Grenada";
}
"Guadeloupe";
{
"exemplarCity";
"Guadeloupe";
}
"Guatemala";
{
"exemplarCity";
"Guatemala";
}
"Guayaquil";
{
"exemplarCity";
"Guayaquil";
}
"Guyana";
{
"exemplarCity";
"Guyana";
}
"Halifax";
{
"exemplarCity";
"Halifax";
}
"Havana";
{
"exemplarCity";
"Havanna";
}
"Hermosillo";
{
"exemplarCity";
"Hermosillo";
}
"Indiana";
{
"Vincennes";
{
"exemplarCity";
"Vincennes, Indiana";
}
"Petersburg";
{
"exemplarCity";
"Petersburg, Indiana";
}
"Tell_City";
{
"exemplarCity";
"Tell City, Indiana";
}
"Knox";
{
"exemplarCity";
"Knox, Indiana";
}
"Winamac";
{
"exemplarCity";
"Winamac, Indiana";
}
"Marengo";
{
"exemplarCity";
"Marengo, Indiana";
}
"Vevay";
{
"exemplarCity";
"Vevay, Indiana";
}
}
"Indianapolis";
{
"exemplarCity";
"Indianapolis";
}
"Inuvik";
{
"exemplarCity";
"Inuvik";
}
"Iqaluit";
{
"exemplarCity";
"Iqaluit";
}
"Jamaica";
{
"exemplarCity";
"Jamaika";
}
"Jujuy";
{
"exemplarCity";
"Jujuy";
}
"Juneau";
{
"exemplarCity";
"Juneau";
}
"Kentucky";
{
"Monticello";
{
"exemplarCity";
"Monticello, Kentucky";
}
}
"Kralendijk";
{
"exemplarCity";
"Kralendijk";
}
"La_Paz";
{
"exemplarCity";
"La Paz";
}
"Lima";
{
"exemplarCity";
"Lima";
}
"Los_Angeles";
{
"exemplarCity";
"Los Angeles";
}
"Louisville";
{
"exemplarCity";
"Louisville";
}
"Lower_Princes";
{
"exemplarCity";
"Lower Prince’s Quarter";
}
"Maceio";
{
"exemplarCity";
"Maceio";
}
"Managua";
{
"exemplarCity";
"Managua";
}
"Manaus";
{
"exemplarCity";
"Manaus";
}
"Marigot";
{
"exemplarCity";
"Marigot";
}
"Martinique";
{
"exemplarCity";
"Martinique";
}
"Matamoros";
{
"exemplarCity";
"Matamoros";
}
"Mazatlan";
{
"exemplarCity";
"Mazatlan";
}
"Mendoza";
{
"exemplarCity";
"Mendoza";
}
"Menominee";
{
"exemplarCity";
"Menominee";
}
"Merida";
{
"exemplarCity";
"Merida";
}
"Metlakatla";
{
"exemplarCity";
"Metlakatla";
}
"Mexico_City";
{
"exemplarCity";
"Mexiko-Stadt";
}
"Miquelon";
{
"exemplarCity";
"Miquelon";
}
"Moncton";
{
"exemplarCity";
"Moncton";
}
"Monterrey";
{
"exemplarCity";
"Monterrey";
}
"Montevideo";
{
"exemplarCity";
"Montevideo";
}
"Montserrat";
{
"exemplarCity";
"Montserrat";
}
"Nassau";
{
"exemplarCity";
"Nassau";
}
"New_York";
{
"exemplarCity";
"New York";
}
"Nipigon";
{
"exemplarCity";
"Nipigon";
}
"Nome";
{
"exemplarCity";
"Nome";
}
"Noronha";
{
"exemplarCity";
"Noronha";
}
"North_Dakota";
{
"Beulah";
{
"exemplarCity";
"Beulah, North Dakota";
}
"New_Salem";
{
"exemplarCity";
"New Salem, North Dakota";
}
"Center";
{
"exemplarCity";
"Center, North Dakota";
}
}
"Ojinaga";
{
"exemplarCity";
"Ojinaga";
}
"Panama";
{
"exemplarCity";
"Panama";
}
"Pangnirtung";
{
"exemplarCity";
"Pangnirtung";
}
"Paramaribo";
{
"exemplarCity";
"Paramaribo";
}
"Phoenix";
{
"exemplarCity";
"Phoenix";
}
"Port-au-Prince";
{
"exemplarCity";
"Port-au-Prince";
}
"Port_of_Spain";
{
"exemplarCity";
"Port of Spain";
}
"Porto_Velho";
{
"exemplarCity";
"Porto Velho";
}
"Puerto_Rico";
{
"exemplarCity";
"Puerto Rico";
}
"Rainy_River";
{
"exemplarCity";
"Rainy River";
}
"Rankin_Inlet";
{
"exemplarCity";
"Rankin Inlet";
}
"Recife";
{
"exemplarCity";
"Recife";
}
"Regina";
{
"exemplarCity";
"Regina";
}
"Resolute";
{
"exemplarCity";
"Resolute";
}
"Rio_Branco";
{
"exemplarCity";
"Rio Branco";
}
"Santa_Isabel";
{
"exemplarCity";
"Santa Isabel";
}
"Santarem";
{
"exemplarCity";
"Santarem";
}
"Santiago";
{
"exemplarCity";
"Santiago";
}
"Santo_Domingo";
{
"exemplarCity";
"Santo Domingo";
}
"Sao_Paulo";
{
"exemplarCity";
"São Paulo";
}
"Scoresbysund";
{
"exemplarCity";
"Ittoqqortoormiit";
}
"Sitka";
{
"exemplarCity";
"Sitka";
}
"St_Barthelemy";
{
"exemplarCity";
"Saint-Barthélemy";
}
"St_Johns";
{
"exemplarCity";
"St. John’s";
}
"St_Kitts";
{
"exemplarCity";
"St. Kitts";
}
"St_Lucia";
{
"exemplarCity";
"St. Lucia";
}
"St_Thomas";
{
"exemplarCity";
"St. Thomas";
}
"St_Vincent";
{
"exemplarCity";
"St. Vincent";
}
"Swift_Current";
{
"exemplarCity";
"Swift Current";
}
"Tegucigalpa";
{
"exemplarCity";
"Tegucigalpa";
}
"Thule";
{
"exemplarCity";
"Thule";
}
"Thunder_Bay";
{
"exemplarCity";
"Thunder Bay";
}
"Tijuana";
{
"exemplarCity";
"Tijuana";
}
"Toronto";
{
"exemplarCity";
"Toronto";
}
"Tortola";
{
"exemplarCity";
"Tortola";
}
"Vancouver";
{
"exemplarCity";
"Vancouver";
}
"Whitehorse";
{
"exemplarCity";
"Whitehorse";
}
"Winnipeg";
{
"exemplarCity";
"Winnipeg";
}
"Yakutat";
{
"exemplarCity";
"Yakutat";
}
"Yellowknife";
{
"exemplarCity";
"Yellowknife";
}
}
"Atlantic";
{
"Azores";
{
"exemplarCity";
"Azoren";
}
"Bermuda";
{
"exemplarCity";
"Bermudas";
}
"Canary";
{
"exemplarCity";
"Kanaren";
}
"Cape_Verde";
{
"exemplarCity";
"Cabo Verde";
}
"Faeroe";
{
"exemplarCity";
"Färöer";
}
"Madeira";
{
"exemplarCity";
"Madeira";
}
"Reykjavik";
{
"exemplarCity";
"Reykjavík";
}
"South_Georgia";
{
"exemplarCity";
"Südgeorgien";
}
"St_Helena";
{
"exemplarCity";
"St. Helena";
}
"Stanley";
{
"exemplarCity";
"Stanley";
}
}
"Europe";
{
"Amsterdam";
{
"exemplarCity";
"Amsterdam";
}
"Andorra";
{
"exemplarCity";
"Andorra";
}
"Astrakhan";
{
"exemplarCity";
"Astrachan";
}
"Athens";
{
"exemplarCity";
"Athen";
}
"Belgrade";
{
"exemplarCity";
"Belgrad";
}
"Berlin";
{
"exemplarCity";
"Berlin";
}
"Bratislava";
{
"exemplarCity";
"Bratislava";
}
"Brussels";
{
"exemplarCity";
"Brüssel";
}
"Bucharest";
{
"exemplarCity";
"Bukarest";
}
"Budapest";
{
"exemplarCity";
"Budapest";
}
"Busingen";
{
"exemplarCity";
"Büsingen";
}
"Chisinau";
{
"exemplarCity";
"Kischinau";
}
"Copenhagen";
{
"exemplarCity";
"Kopenhagen";
}
"Dublin";
{
"long";
{
"daylight";
"Irische Sommerzeit";
}
"exemplarCity";
"Dublin";
}
"Gibraltar";
{
"exemplarCity";
"Gibraltar";
}
"Guernsey";
{
"exemplarCity";
"Guernsey";
}
"Helsinki";
{
"exemplarCity";
"Helsinki";
}
"Isle_of_Man";
{
"exemplarCity";
"Isle of Man";
}
"Istanbul";
{
"exemplarCity";
"Istanbul";
}
"Jersey";
{
"exemplarCity";
"Jersey";
}
"Kaliningrad";
{
"exemplarCity";
"Kaliningrad";
}
"Kiev";
{
"exemplarCity";
"Kiew";
}
"Kirov";
{
"exemplarCity";
"Kirow";
}
"Lisbon";
{
"exemplarCity";
"Lissabon";
}
"Ljubljana";
{
"exemplarCity";
"Ljubljana";
}
"London";
{
"long";
{
"daylight";
"Britische Sommerzeit";
}
"exemplarCity";
"London";
}
"Luxembourg";
{
"exemplarCity";
"Luxemburg";
}
"Madrid";
{
"exemplarCity";
"Madrid";
}
"Malta";
{
"exemplarCity";
"Malta";
}
"Mariehamn";
{
"exemplarCity";
"Mariehamn";
}
"Minsk";
{
"exemplarCity";
"Minsk";
}
"Monaco";
{
"exemplarCity";
"Monaco";
}
"Moscow";
{
"exemplarCity";
"Moskau";
}
"Oslo";
{
"exemplarCity";
"Oslo";
}
"Paris";
{
"exemplarCity";
"Paris";
}
"Podgorica";
{
"exemplarCity";
"Podgorica";
}
"Prague";
{
"exemplarCity";
"Prag";
}
"Riga";
{
"exemplarCity";
"Riga";
}
"Rome";
{
"exemplarCity";
"Rom";
}
"Samara";
{
"exemplarCity";
"Samara";
}
"San_Marino";
{
"exemplarCity";
"San Marino";
}
"Sarajevo";
{
"exemplarCity";
"Sarajevo";
}
"Simferopol";
{
"exemplarCity";
"Simferopol";
}
"Skopje";
{
"exemplarCity";
"Skopje";
}
"Sofia";
{
"exemplarCity";
"Sofia";
}
"Stockholm";
{
"exemplarCity";
"Stockholm";
}
"Tallinn";
{
"exemplarCity";
"Tallinn";
}
"Tirane";
{
"exemplarCity";
"Tirana";
}
"Ulyanovsk";
{
"exemplarCity";
"Uljanowsk";
}
"Uzhgorod";
{
"exemplarCity";
"Uschgorod";
}
"Vaduz";
{
"exemplarCity";
"Vaduz";
}
"Vatican";
{
"exemplarCity";
"Vatikan";
}
"Vienna";
{
"exemplarCity";
"Wien";
}
"Vilnius";
{
"exemplarCity";
"Vilnius";
}
"Volgograd";
{
"exemplarCity";
"Wolgograd";
}
"Warsaw";
{
"exemplarCity";
"Warschau";
}
"Zagreb";
{
"exemplarCity";
"Zagreb";
}
"Zaporozhye";
{
"exemplarCity";
"Saporischja";
}
"Zurich";
{
"exemplarCity";
"Zürich";
}
}
"Africa";
{
"Abidjan";
{
"exemplarCity";
"Abidjan";
}
"Accra";
{
"exemplarCity";
"Accra";
}
"Addis_Ababa";
{
"exemplarCity";
"Addis Abeba";
}
"Algiers";
{
"exemplarCity";
"Algier";
}
"Asmera";
{
"exemplarCity";
"Asmara";
}
"Bamako";
{
"exemplarCity";
"Bamako";
}
"Bangui";
{
"exemplarCity";
"Bangui";
}
"Banjul";
{
"exemplarCity";
"Banjul";
}
"Bissau";
{
"exemplarCity";
"Bissau";
}
"Blantyre";
{
"exemplarCity";
"Blantyre";
}
"Brazzaville";
{
"exemplarCity";
"Brazzaville";
}
"Bujumbura";
{
"exemplarCity";
"Bujumbura";
}
"Cairo";
{
"exemplarCity";
"Kairo";
}
"Casablanca";
{
"exemplarCity";
"Casablanca";
}
"Ceuta";
{
"exemplarCity";
"Ceuta";
}
"Conakry";
{
"exemplarCity";
"Conakry";
}
"Dakar";
{
"exemplarCity";
"Dakar";
}
"Dar_es_Salaam";
{
"exemplarCity";
"Daressalam";
}
"Djibouti";
{
"exemplarCity";
"Dschibuti";
}
"Douala";
{
"exemplarCity";
"Douala";
}
"El_Aaiun";
{
"exemplarCity";
"El Aaiún";
}
"Freetown";
{
"exemplarCity";
"Freetown";
}
"Gaborone";
{
"exemplarCity";
"Gaborone";
}
"Harare";
{
"exemplarCity";
"Harare";
}
"Johannesburg";
{
"exemplarCity";
"Johannesburg";
}
"Juba";
{
"exemplarCity";
"Juba";
}
"Kampala";
{
"exemplarCity";
"Kampala";
}
"Khartoum";
{
"exemplarCity";
"Khartum";
}
"Kigali";
{
"exemplarCity";
"Kigali";
}
"Kinshasa";
{
"exemplarCity";
"Kinshasa";
}
"Lagos";
{
"exemplarCity";
"Lagos";
}
"Libreville";
{
"exemplarCity";
"Libreville";
}
"Lome";
{
"exemplarCity";
"Lomé";
}
"Luanda";
{
"exemplarCity";
"Luanda";
}
"Lubumbashi";
{
"exemplarCity";
"Lubumbashi";
}
"Lusaka";
{
"exemplarCity";
"Lusaka";
}
"Malabo";
{
"exemplarCity";
"Malabo";
}
"Maputo";
{
"exemplarCity";
"Maputo";
}
"Maseru";
{
"exemplarCity";
"Maseru";
}
"Mbabane";
{
"exemplarCity";
"Mbabane";
}
"Mogadishu";
{
"exemplarCity";
"Mogadischu";
}
"Monrovia";
{
"exemplarCity";
"Monrovia";
}
"Nairobi";
{
"exemplarCity";
"Nairobi";
}
"Ndjamena";
{
"exemplarCity";
"N’Djamena";
}
"Niamey";
{
"exemplarCity";
"Niamey";
}
"Nouakchott";
{
"exemplarCity";
"Nouakchott";
}
"Ouagadougou";
{
"exemplarCity";
"Ouagadougou";
}
"Porto-Novo";
{
"exemplarCity";
"Porto Novo";
}
"Sao_Tome";
{
"exemplarCity";
"São Tomé";
}
"Tripoli";
{
"exemplarCity";
"Tripolis";
}
"Tunis";
{
"exemplarCity";
"Tunis";
}
"Windhoek";
{
"exemplarCity";
"Windhoek";
}
}
"Asia";
{
"Aden";
{
"exemplarCity";
"Aden";
}
"Almaty";
{
"exemplarCity";
"Almaty";
}
"Amman";
{
"exemplarCity";
"Amman";
}
"Anadyr";
{
"exemplarCity";
"Anadyr";
}
"Aqtau";
{
"exemplarCity";
"Aqtau";
}
"Aqtobe";
{
"exemplarCity";
"Aktobe";
}
"Ashgabat";
{
"exemplarCity";
"Aşgabat";
}
"Baghdad";
{
"exemplarCity";
"Bagdad";
}
"Bahrain";
{
"exemplarCity";
"Bahrain";
}
"Baku";
{
"exemplarCity";
"Baku";
}
"Bangkok";
{
"exemplarCity";
"Bangkok";
}
"Barnaul";
{
"exemplarCity";
"Barnaul";
}
"Beirut";
{
"exemplarCity";
"Beirut";
}
"Bishkek";
{
"exemplarCity";
"Bischkek";
}
"Brunei";
{
"exemplarCity";
"Brunei";
}
"Calcutta";
{
"exemplarCity";
"Kalkutta";
}
"Chita";
{
"exemplarCity";
"Tschita";
}
"Choibalsan";
{
"exemplarCity";
"Tschoibalsan";
}
"Colombo";
{
"exemplarCity";
"Colombo";
}
"Damascus";
{
"exemplarCity";
"Damaskus";
}
"Dhaka";
{
"exemplarCity";
"Dhaka";
}
"Dili";
{
"exemplarCity";
"Dili";
}
"Dubai";
{
"exemplarCity";
"Dubai";
}
"Dushanbe";
{
"exemplarCity";
"Duschanbe";
}
"Gaza";
{
"exemplarCity";
"Gaza";
}
"Hebron";
{
"exemplarCity";
"Hebron";
}
"Hong_Kong";
{
"exemplarCity";
"Hongkong";
}
"Hovd";
{
"exemplarCity";
"Chowd";
}
"Irkutsk";
{
"exemplarCity";
"Irkutsk";
}
"Jakarta";
{
"exemplarCity";
"Jakarta";
}
"Jayapura";
{
"exemplarCity";
"Jayapura";
}
"Jerusalem";
{
"exemplarCity";
"Jerusalem";
}
"Kabul";
{
"exemplarCity";
"Kabul";
}
"Kamchatka";
{
"exemplarCity";
"Kamtschatka";
}
"Karachi";
{
"exemplarCity";
"Karatschi";
}
"Katmandu";
{
"exemplarCity";
"Kathmandu";
}
"Khandyga";
{
"exemplarCity";
"Chandyga";
}
"Krasnoyarsk";
{
"exemplarCity";
"Krasnojarsk";
}
"Kuala_Lumpur";
{
"exemplarCity";
"Kuala Lumpur";
}
"Kuching";
{
"exemplarCity";
"Kuching";
}
"Kuwait";
{
"exemplarCity";
"Kuwait";
}
"Macau";
{
"exemplarCity";
"Macao";
}
"Magadan";
{
"exemplarCity";
"Magadan";
}
"Makassar";
{
"exemplarCity";
"Makassar";
}
"Manila";
{
"exemplarCity";
"Manila";
}
"Muscat";
{
"exemplarCity";
"Maskat";
}
"Nicosia";
{
"exemplarCity";
"Nikosia";
}
"Novokuznetsk";
{
"exemplarCity";
"Nowokuznetsk";
}
"Novosibirsk";
{
"exemplarCity";
"Nowosibirsk";
}
"Omsk";
{
"exemplarCity";
"Omsk";
}
"Oral";
{
"exemplarCity";
"Oral";
}
"Phnom_Penh";
{
"exemplarCity";
"Phnom Penh";
}
"Pontianak";
{
"exemplarCity";
"Pontianak";
}
"Pyongyang";
{
"exemplarCity";
"Pjöngjang";
}
"Qatar";
{
"exemplarCity";
"Katar";
}
"Qyzylorda";
{
"exemplarCity";
"Qysylorda";
}
"Rangoon";
{
"exemplarCity";
"Rangun";
}
"Riyadh";
{
"exemplarCity";
"Riad";
}
"Saigon";
{
"exemplarCity";
"Ho-Chi-Minh-Stadt";
}
"Sakhalin";
{
"exemplarCity";
"Sachalin";
}
"Samarkand";
{
"exemplarCity";
"Samarkand";
}
"Seoul";
{
"exemplarCity";
"Seoul";
}
"Shanghai";
{
"exemplarCity";
"Shanghai";
}
"Singapore";
{
"exemplarCity";
"Singapur";
}
"Srednekolymsk";
{
"exemplarCity";
"Srednekolymsk";
}
"Taipei";
{
"exemplarCity";
"Taipeh";
}
"Tashkent";
{
"exemplarCity";
"Taschkent";
}
"Tbilisi";
{
"exemplarCity";
"Tiflis";
}
"Tehran";
{
"exemplarCity";
"Teheran";
}
"Thimphu";
{
"exemplarCity";
"Thimphu";
}
"Tokyo";
{
"exemplarCity";
"Tokio";
}
"Tomsk";
{
"exemplarCity";
"Tomsk";
}
"Ulaanbaatar";
{
"exemplarCity";
"Ulaanbaatar";
}
"Urumqi";
{
"exemplarCity";
"Ürümqi";
}
"Ust-Nera";
{
"exemplarCity";
"Ust-Nera";
}
"Vientiane";
{
"exemplarCity";
"Vientiane";
}
"Vladivostok";
{
"exemplarCity";
"Wladiwostok";
}
"Yakutsk";
{
"exemplarCity";
"Jakutsk";
}
"Yekaterinburg";
{
"exemplarCity";
"Jekaterinburg";
}
"Yerevan";
{
"exemplarCity";
"Eriwan";
}
}
"Indian";
{
"Antananarivo";
{
"exemplarCity";
"Antananarivo";
}
"Chagos";
{
"exemplarCity";
"Chagos";
}
"Christmas";
{
"exemplarCity";
"Weihnachtsinsel";
}
"Cocos";
{
"exemplarCity";
"Cocos";
}
"Comoro";
{
"exemplarCity";
"Komoren";
}
"Kerguelen";
{
"exemplarCity";
"Kerguelen";
}
"Mahe";
{
"exemplarCity";
"Mahe";
}
"Maldives";
{
"exemplarCity";
"Malediven";
}
"Mauritius";
{
"exemplarCity";
"Mauritius";
}
"Mayotte";
{
"exemplarCity";
"Mayotte";
}
"Reunion";
{
"exemplarCity";
"Réunion";
}
}
"Australia";
{
"Adelaide";
{
"exemplarCity";
"Adelaide";
}
"Brisbane";
{
"exemplarCity";
"Brisbane";
}
"Broken_Hill";
{
"exemplarCity";
"Broken Hill";
}
"Currie";
{
"exemplarCity";
"Currie";
}
"Darwin";
{
"exemplarCity";
"Darwin";
}
"Eucla";
{
"exemplarCity";
"Eucla";
}
"Hobart";
{
"exemplarCity";
"Hobart";
}
"Lindeman";
{
"exemplarCity";
"Lindeman";
}
"Lord_Howe";
{
"exemplarCity";
"Lord Howe";
}
"Melbourne";
{
"exemplarCity";
"Melbourne";
}
"Perth";
{
"exemplarCity";
"Perth";
}
"Sydney";
{
"exemplarCity";
"Sydney";
}
}
"Pacific";
{
"Apia";
{
"exemplarCity";
"Apia";
}
"Auckland";
{
"exemplarCity";
"Auckland";
}
"Bougainville";
{
"exemplarCity";
"Bougainville";
}
"Chatham";
{
"exemplarCity";
"Chatham";
}
"Easter";
{
"exemplarCity";
"Osterinsel";
}
"Efate";
{
"exemplarCity";
"Efate";
}
"Enderbury";
{
"exemplarCity";
"Enderbury";
}
"Fakaofo";
{
"exemplarCity";
"Fakaofo";
}
"Fiji";
{
"exemplarCity";
"Fidschi";
}
"Funafuti";
{
"exemplarCity";
"Funafuti";
}
"Galapagos";
{
"exemplarCity";
"Galapagos";
}
"Gambier";
{
"exemplarCity";
"Gambier";
}
"Guadalcanal";
{
"exemplarCity";
"Guadalcanal";
}
"Guam";
{
"exemplarCity";
"Guam";
}
"Honolulu";
{
"exemplarCity";
"Honolulu";
}
"Johnston";
{
"exemplarCity";
"Johnston";
}
"Kiritimati";
{
"exemplarCity";
"Kiritimati";
}
"Kosrae";
{
"exemplarCity";
"Kosrae";
}
"Kwajalein";
{
"exemplarCity";
"Kwajalein";
}
"Majuro";
{
"exemplarCity";
"Majuro";
}
"Marquesas";
{
"exemplarCity";
"Marquesas";
}
"Midway";
{
"exemplarCity";
"Midway";
}
"Nauru";
{
"exemplarCity";
"Nauru";
}
"Niue";
{
"exemplarCity";
"Niue";
}
"Norfolk";
{
"exemplarCity";
"Norfolk";
}
"Noumea";
{
"exemplarCity";
"Noumea";
}
"Pago_Pago";
{
"exemplarCity";
"Pago Pago";
}
"Palau";
{
"exemplarCity";
"Palau";
}
"Pitcairn";
{
"exemplarCity";
"Pitcairn";
}
"Ponape";
{
"exemplarCity";
"Pohnpei";
}
"Port_Moresby";
{
"exemplarCity";
"Port Moresby";
}
"Rarotonga";
{
"exemplarCity";
"Rarotonga";
}
"Saipan";
{
"exemplarCity";
"Saipan";
}
"Tahiti";
{
"exemplarCity";
"Tahiti";
}
"Tarawa";
{
"exemplarCity";
"Tarawa";
}
"Tongatapu";
{
"exemplarCity";
"Tongatapu";
}
"Truk";
{
"exemplarCity";
"Chuuk";
}
"Wake";
{
"exemplarCity";
"Wake";
}
"Wallis";
{
"exemplarCity";
"Wallis";
}
}
"Arctic";
{
"Longyearbyen";
{
"exemplarCity";
"Longyearbyen";
}
}
"Antarctica";
{
"Casey";
{
"exemplarCity";
"Casey";
}
"Davis";
{
"exemplarCity";
"Davis";
}
"DumontDUrville";
{
"exemplarCity";
"Dumont d’Urville";
}
"Macquarie";
{
"exemplarCity";
"Macquarie";
}
"Mawson";
{
"exemplarCity";
"Mawson";
}
"McMurdo";
{
"exemplarCity";
"McMurdo";
}
"Palmer";
{
"exemplarCity";
"Palmer";
}
"Rothera";
{
"exemplarCity";
"Rothera";
}
"Syowa";
{
"exemplarCity";
"Syowa";
}
"Troll";
{
"exemplarCity";
"Troll";
}
"Vostok";
{
"exemplarCity";
"Wostok";
}
}
"Etc";
{
"GMT";
{
"exemplarCity";
"GMT";
}
"GMT1";
{
"exemplarCity";
"GMT+1";
}
"GMT10";
{
"exemplarCity";
"GMT+10";
}
"GMT11";
{
"exemplarCity";
"GMT+11";
}
"GMT12";
{
"exemplarCity";
"GMT+12";
}
"GMT2";
{
"exemplarCity";
"GMT+2";
}
"GMT3";
{
"exemplarCity";
"GMT+3";
}
"GMT4";
{
"exemplarCity";
"GMT+4";
}
"GMT5";
{
"exemplarCity";
"GMT+5";
}
"GMT6";
{
"exemplarCity";
"GMT+6";
}
"GMT7";
{
"exemplarCity";
"GMT+7";
}
"GMT8";
{
"exemplarCity";
"GMT+8";
}
"GMT9";
{
"exemplarCity";
"GMT+9";
}
"GMT-1";
{
"exemplarCity";
"GMT-1";
}
"GMT-10";
{
"exemplarCity";
"GMT-10";
}
"GMT-11";
{
"exemplarCity";
"GMT-11";
}
"GMT-12";
{
"exemplarCity";
"GMT-12";
}
"GMT-13";
{
"exemplarCity";
"GMT-13";
}
"GMT-14";
{
"exemplarCity";
"GMT-14";
}
"GMT-2";
{
"exemplarCity";
"GMT-2";
}
"GMT-3";
{
"exemplarCity";
"GMT-3";
}
"GMT-4";
{
"exemplarCity";
"GMT-4";
}
"GMT-5";
{
"exemplarCity";
"GMT-5";
}
"GMT-6";
{
"exemplarCity";
"GMT-6";
}
"GMT-7";
{
"exemplarCity";
"GMT-7";
}
"GMT-8";
{
"exemplarCity";
"GMT-8";
}
"GMT-9";
{
"exemplarCity";
"GMT-9";
}
"Unknown";
{
"exemplarCity";
"Unbekannt";
}
}
}
"metazone";
{
"Acre";
{
"long";
{
"generic";
"Acre-Zeit",
"standard";
"Acre-Normalzeit",
"daylight";
"Acre-Sommerzeit";
}
}
"Afghanistan";
{
"long";
{
"standard";
"Afghanistan-Zeit";
}
}
"Africa_Central";
{
"long";
{
"standard";
"Zentralafrikanische Zeit";
}
}
"Africa_Eastern";
{
"long";
{
"standard";
"Ostafrikanische Zeit";
}
}
"Africa_Southern";
{
"long";
{
"standard";
"Südafrikanische Zeit";
}
}
"Africa_Western";
{
"long";
{
"generic";
"Westafrikanische Zeit",
"standard";
"Westafrikanische Normalzeit",
"daylight";
"Westafrikanische Sommerzeit";
}
}
"Alaska";
{
"long";
{
"generic";
"Alaska-Zeit",
"standard";
"Alaska-Normalzeit",
"daylight";
"Alaska-Sommerzeit";
}
}
"Almaty";
{
"long";
{
"generic";
"Almaty-Zeit",
"standard";
"Almaty-Normalzeit",
"daylight";
"Almaty-Sommerzeit";
}
}
"Amazon";
{
"long";
{
"generic";
"Amazonas-Zeit",
"standard";
"Amazonas-Normalzeit",
"daylight";
"Amazonas-Sommerzeit";
}
}
"America_Central";
{
"long";
{
"generic";
"Nordamerikanische Inlandzeit",
"standard";
"Nordamerikanische Inland-Normalzeit",
"daylight";
"Nordamerikanische Inland-Sommerzeit";
}
}
"America_Eastern";
{
"long";
{
"generic";
"Nordamerikanische Ostküstenzeit",
"standard";
"Nordamerikanische Ostküsten-Normalzeit",
"daylight";
"Nordamerikanische Ostküsten-Sommerzeit";
}
}
"America_Mountain";
{
"long";
{
"generic";
"Rocky-Mountain-Zeit",
"standard";
"Rocky Mountain-Normalzeit",
"daylight";
"Rocky-Mountain-Sommerzeit";
}
}
"America_Pacific";
{
"long";
{
"generic";
"Nordamerikanische Westküstenzeit",
"standard";
"Nordamerikanische Westküsten-Normalzeit",
"daylight";
"Nordamerikanische Westküsten-Sommerzeit";
}
}
"Anadyr";
{
"long";
{
"generic";
"Anadyr Zeit",
"standard";
"Anadyr Normalzeit",
"daylight";
"Anadyr Sommerzeit";
}
}
"Apia";
{
"long";
{
"generic";
"Apia-Zeit",
"standard";
"Apia-Normalzeit",
"daylight";
"Apia-Sommerzeit";
}
}
"Aqtau";
{
"long";
{
"generic";
"Aqtau-Zeit",
"standard";
"Aqtau-Normalzeit",
"daylight";
"Aqtau-Sommerzeit";
}
}
"Aqtobe";
{
"long";
{
"generic";
"Aqtöbe-Zeit",
"standard";
"Aqtöbe-Normalzeit",
"daylight";
"Aqtöbe-Sommerzeit";
}
}
"Arabian";
{
"long";
{
"generic";
"Arabische Zeit",
"standard";
"Arabische Normalzeit",
"daylight";
"Arabische Sommerzeit";
}
}
"Argentina";
{
"long";
{
"generic";
"Argentinische Zeit",
"standard";
"Argentinische Normalzeit",
"daylight";
"Argentinische Sommerzeit";
}
}
"Argentina_Western";
{
"long";
{
"generic";
"Westargentinische Zeit",
"standard";
"Westargentinische Normalzeit",
"daylight";
"Westargentinische Sommerzeit";
}
}
"Armenia";
{
"long";
{
"generic";
"Armenische Zeit",
"standard";
"Armenische Normalzeit",
"daylight";
"Armenische Sommerzeit";
}
}
"Atlantic";
{
"long";
{
"generic";
"Atlantik-Zeit",
"standard";
"Atlantik-Normalzeit",
"daylight";
"Atlantik-Sommerzeit";
}
}
"Australia_Central";
{
"long";
{
"generic";
"Zentralaustralische Zeit",
"standard";
"Zentralaustralische Normalzeit",
"daylight";
"Zentralaustralische Sommerzeit";
}
}
"Australia_CentralWestern";
{
"long";
{
"generic";
"Zentral-/Westaustralische Zeit",
"standard";
"Zentral-/Westaustralische Normalzeit",
"daylight";
"Zentral-/Westaustralische Sommerzeit";
}
}
"Australia_Eastern";
{
"long";
{
"generic";
"Ostaustralische Zeit",
"standard";
"Ostaustralische Normalzeit",
"daylight";
"Ostaustralische Sommerzeit";
}
}
"Australia_Western";
{
"long";
{
"generic";
"Westaustralische Zeit",
"standard";
"Westaustralische Normalzeit",
"daylight";
"Westaustralische Sommerzeit";
}
}
"Azerbaijan";
{
"long";
{
"generic";
"Aserbaidschanische Zeit",
"standard";
"Aserbeidschanische Normalzeit",
"daylight";
"Aserbaidschanische Sommerzeit";
}
}
"Azores";
{
"long";
{
"generic";
"Azoren-Zeit",
"standard";
"Azoren-Normalzeit",
"daylight";
"Azoren-Sommerzeit";
}
}
"Bangladesh";
{
"long";
{
"generic";
"Bangladesch-Zeit",
"standard";
"Bangladesch-Normalzeit",
"daylight";
"Bangladesch-Sommerzeit";
}
}
"Bhutan";
{
"long";
{
"standard";
"Bhutan-Zeit";
}
}
"Bolivia";
{
"long";
{
"standard";
"Bolivianische Zeit";
}
}
"Brasilia";
{
"long";
{
"generic";
"Brasília-Zeit",
"standard";
"Brasília-Normalzeit",
"daylight";
"Brasília-Sommerzeit";
}
}
"Brunei";
{
"long";
{
"standard";
"Brunei-Zeit";
}
}
"Cape_Verde";
{
"long";
{
"generic";
"Cabo-Verde-Zeit",
"standard";
"Cabo-Verde-Normalzeit",
"daylight";
"Cabo-Verde-Sommerzeit";
}
}
"Casey";
{
"long";
{
"standard";
"Casey-Zeit";
}
}
"Chamorro";
{
"long";
{
"standard";
"Chamorro-Zeit";
}
}
"Chatham";
{
"long";
{
"generic";
"Chatham-Zeit",
"standard";
"Chatham-Normalzeit",
"daylight";
"Chatham-Sommerzeit";
}
}
"Chile";
{
"long";
{
"generic";
"Chilenische Zeit",
"standard";
"Chilenische Normalzeit",
"daylight";
"Chilenische Sommerzeit";
}
}
"China";
{
"long";
{
"generic";
"Chinesische Zeit",
"standard";
"Chinesische Normalzeit",
"daylight";
"Chinesische Sommerzeit";
}
}
"Choibalsan";
{
"long";
{
"generic";
"Tschoibalsan-Zeit",
"standard";
"Tschoibalsan-Normalzeit",
"daylight";
"Tschoibalsan-Sommerzeit";
}
}
"Christmas";
{
"long";
{
"standard";
"Weihnachtsinsel-Zeit";
}
}
"Cocos";
{
"long";
{
"standard";
"Kokosinseln-Zeit";
}
}
"Colombia";
{
"long";
{
"generic";
"Kolumbianische Zeit",
"standard";
"Kolumbianische Normalzeit",
"daylight";
"Kolumbianische Sommerzeit";
}
}
"Cook";
{
"long";
{
"generic";
"Cookinseln-Zeit",
"standard";
"Cookinseln-Normalzeit",
"daylight";
"Cookinseln-Sommerzeit";
}
}
"Cuba";
{
"long";
{
"generic";
"Kubanische Zeit",
"standard";
"Kubanische Normalzeit",
"daylight";
"Kubanische Sommerzeit";
}
}
"Davis";
{
"long";
{
"standard";
"Davis-Zeit";
}
}
"DumontDUrville";
{
"long";
{
"standard";
"Dumont-d’Urville-Zeit";
}
}
"East_Timor";
{
"long";
{
"standard";
"Osttimor-Zeit";
}
}
"Easter";
{
"long";
{
"generic";
"Osterinsel-Zeit",
"standard";
"Osterinsel-Normalzeit",
"daylight";
"Osterinsel-Sommerzeit";
}
}
"Ecuador";
{
"long";
{
"standard";
"Ecuadorianische Zeit";
}
}
"Europe_Central";
{
"long";
{
"generic";
"Mitteleuropäische Zeit",
"standard";
"Mitteleuropäische Normalzeit",
"daylight";
"Mitteleuropäische Sommerzeit";
}
"short";
{
"generic";
"MEZ",
"standard";
"MEZ",
"daylight";
"MESZ";
}
}
"Europe_Eastern";
{
"long";
{
"generic";
"Osteuropäische Zeit",
"standard";
"Osteuropäische Normalzeit",
"daylight";
"Osteuropäische Sommerzeit";
}
"short";
{
"generic";
"OEZ",
"standard";
"OEZ",
"daylight";
"OESZ";
}
}
"Europe_Further_Eastern";
{
"long";
{
"standard";
"Kaliningrader Zeit";
}
}
"Europe_Western";
{
"long";
{
"generic";
"Westeuropäische Zeit",
"standard";
"Westeuropäische Normalzeit",
"daylight";
"Westeuropäische Sommerzeit";
}
"short";
{
"generic";
"WEZ",
"standard";
"WEZ",
"daylight";
"WESZ";
}
}
"Falkland";
{
"long";
{
"generic";
"Falklandinseln-Zeit",
"standard";
"Falklandinseln-Normalzeit",
"daylight";
"Falklandinseln-Sommerzeit";
}
}
"Fiji";
{
"long";
{
"generic";
"Fidschi-Zeit",
"standard";
"Fidschi-Normalzeit",
"daylight";
"Fidschi-Sommerzeit";
}
}
"French_Guiana";
{
"long";
{
"standard";
"Französisch-Guayana-Zeit";
}
}
"French_Southern";
{
"long";
{
"standard";
"Französische Süd- und Antarktisgebiete-Zeit";
}
}
"Galapagos";
{
"long";
{
"standard";
"Galapagos-Zeit";
}
}
"Gambier";
{
"long";
{
"standard";
"Gambier-Zeit";
}
}
"Georgia";
{
"long";
{
"generic";
"Georgische Zeit",
"standard";
"Georgische Normalzeit",
"daylight";
"Georgische Sommerzeit";
}
}
"Gilbert_Islands";
{
"long";
{
"standard";
"Gilbert-Inseln-Zeit";
}
}
"GMT";
{
"long";
{
"standard";
"Mittlere Greenwich-Zeit";
}
}
"Greenland_Eastern";
{
"long";
{
"generic";
"Ostgrönland-Zeit",
"standard";
"Ostgrönland-Normalzeit",
"daylight";
"Ostgrönland-Sommerzeit";
}
}
"Greenland_Western";
{
"long";
{
"generic";
"Westgrönland-Zeit",
"standard";
"Westgrönland-Normalzeit",
"daylight";
"Westgrönland-Sommerzeit";
}
}
"Guam";
{
"long";
{
"standard";
"Guam-Zeit";
}
}
"Gulf";
{
"long";
{
"standard";
"Golf-Zeit";
}
}
"Guyana";
{
"long";
{
"standard";
"Guyana-Zeit";
}
}
"Hawaii_Aleutian";
{
"long";
{
"generic";
"Hawaii-Aleuten-Zeit",
"standard";
"Hawaii-Aleuten-Normalzeit",
"daylight";
"Hawaii-Aleuten-Sommerzeit";
}
}
"Hong_Kong";
{
"long";
{
"generic";
"Hongkong-Zeit",
"standard";
"Hongkong-Normalzeit",
"daylight";
"Hongkong-Sommerzeit";
}
}
"Hovd";
{
"long";
{
"generic";
"Chowd-Zeit",
"standard";
"Chowd-Normalzeit",
"daylight";
"Chowd-Sommerzeit";
}
}
"India";
{
"long";
{
"standard";
"Indische Zeit";
}
}
"Indian_Ocean";
{
"long";
{
"standard";
"Indischer Ozean-Zeit";
}
}
"Indochina";
{
"long";
{
"standard";
"Indochina-Zeit";
}
}
"Indonesia_Central";
{
"long";
{
"standard";
"Zentralindonesische Zeit";
}
}
"Indonesia_Eastern";
{
"long";
{
"standard";
"Ostindonesische Zeit";
}
}
"Indonesia_Western";
{
"long";
{
"standard";
"Westindonesische Zeit";
}
}
"Iran";
{
"long";
{
"generic";
"Iranische Zeit",
"standard";
"Iranische Normalzeit",
"daylight";
"Iranische Sommerzeit";
}
}
"Irkutsk";
{
"long";
{
"generic";
"Irkutsk-Zeit",
"standard";
"Irkutsk-Normalzeit",
"daylight";
"Irkutsk-Sommerzeit";
}
}
"Israel";
{
"long";
{
"generic";
"Israelische Zeit",
"standard";
"Israelische Normalzeit",
"daylight";
"Israelische Sommerzeit";
}
}
"Japan";
{
"long";
{
"generic";
"Japanische Zeit",
"standard";
"Japanische Normalzeit",
"daylight";
"Japanische Sommerzeit";
}
}
"Kamchatka";
{
"long";
{
"generic";
"Kamtschatka-Zeit",
"standard";
"Kamtschatka-Normalzeit",
"daylight";
"Kamtschatka-Sommerzeit";
}
}
"Kazakhstan_Eastern";
{
"long";
{
"standard";
"Ostkasachische Zeit";
}
}
"Kazakhstan_Western";
{
"long";
{
"standard";
"Westkasachische Zeit";
}
}
"Korea";
{
"long";
{
"generic";
"Koreanische Zeit",
"standard";
"Koreanische Normalzeit",
"daylight";
"Koreanische Sommerzeit";
}
}
"Kosrae";
{
"long";
{
"standard";
"Kosrae-Zeit";
}
}
"Krasnoyarsk";
{
"long";
{
"generic";
"Krasnojarsk-Zeit",
"standard";
"Krasnojarsk-Normalzeit",
"daylight";
"Krasnojarsk-Sommerzeit";
}
}
"Kyrgystan";
{
"long";
{
"standard";
"Kirgisistan-Zeit";
}
}
"Lanka";
{
"long";
{
"standard";
"Sri-Lanka-Zeit";
}
}
"Line_Islands";
{
"long";
{
"standard";
"Linieninseln-Zeit";
}
}
"Lord_Howe";
{
"long";
{
"generic";
"Lord-Howe-Zeit",
"standard";
"Lord-Howe-Normalzeit",
"daylight";
"Lord-Howe-Sommerzeit";
}
}
"Macau";
{
"long";
{
"generic";
"Macau-Zeit",
"standard";
"Macau-Normalzeit",
"daylight";
"Macau-Sommerzeit";
}
}
"Macquarie";
{
"long";
{
"standard";
"Macquarieinsel-Zeit";
}
}
"Magadan";
{
"long";
{
"generic";
"Magadan-Zeit",
"standard";
"Magadan-Normalzeit",
"daylight";
"Magadan-Sommerzeit";
}
}
"Malaysia";
{
"long";
{
"standard";
"Malaysische Zeit";
}
}
"Maldives";
{
"long";
{
"standard";
"Malediven-Zeit";
}
}
"Marquesas";
{
"long";
{
"standard";
"Marquesas-Zeit";
}
}
"Marshall_Islands";
{
"long";
{
"standard";
"Marshallinseln-Zeit";
}
}
"Mauritius";
{
"long";
{
"generic";
"Mauritius-Zeit",
"standard";
"Mauritius-Normalzeit",
"daylight";
"Mauritius-Sommerzeit";
}
}
"Mawson";
{
"long";
{
"standard";
"Mawson-Zeit";
}
}
"Mexico_Northwest";
{
"long";
{
"generic";
"Mexiko Nordwestliche Zone-Zeit",
"standard";
"Mexiko Nordwestliche Zone-Normalzeit",
"daylight";
"Mexiko Nordwestliche Zone-Sommerzeit";
}
}
"Mexico_Pacific";
{
"long";
{
"generic";
"Mexiko Pazifikzone-Zeit",
"standard";
"Mexiko Pazifikzone-Normalzeit",
"daylight";
"Mexiko Pazifikzone-Sommerzeit";
}
}
"Mongolia";
{
"long";
{
"generic";
"Ulaanbaatar-Zeit",
"standard";
"Ulaanbaatar-Normalzeit",
"daylight";
"Ulaanbaatar-Sommerzeit";
}
}
"Moscow";
{
"long";
{
"generic";
"Moskauer Zeit",
"standard";
"Moskauer Normalzeit",
"daylight";
"Moskauer Sommerzeit";
}
}
"Myanmar";
{
"long";
{
"standard";
"Myanmar-Zeit";
}
}
"Nauru";
{
"long";
{
"standard";
"Nauru-Zeit";
}
}
"Nepal";
{
"long";
{
"standard";
"Nepalesische Zeit";
}
}
"New_Caledonia";
{
"long";
{
"generic";
"Neukaledonische Zeit",
"standard";
"Neukaledonische Normalzeit",
"daylight";
"Neukaledonische Sommerzeit";
}
}
"New_Zealand";
{
"long";
{
"generic";
"Neuseeland-Zeit",
"standard";
"Neuseeland-Normalzeit",
"daylight";
"Neuseeland-Sommerzeit";
}
}
"Newfoundland";
{
"long";
{
"generic";
"Neufundland-Zeit",
"standard";
"Neufundland-Normalzeit",
"daylight";
"Neufundland-Sommerzeit";
}
}
"Niue";
{
"long";
{
"standard";
"Niue-Zeit";
}
}
"Norfolk";
{
"long";
{
"standard";
"Norfolkinsel-Zeit";
}
}
"Noronha";
{
"long";
{
"generic";
"Fernando de Noronha-Zeit",
"standard";
"Fernando de Noronha-Normalzeit",
"daylight";
"Fernando de Noronha-Sommerzeit";
}
}
"North_Mariana";
{
"long";
{
"standard";
"Nördliche-Marianen-Zeit";
}
}
"Novosibirsk";
{
"long";
{
"generic";
"Nowosibirsk-Zeit",
"standard";
"Nowosibirsk-Normalzeit",
"daylight";
"Nowosibirsk-Sommerzeit";
}
}
"Omsk";
{
"long";
{
"generic";
"Omsk-Zeit",
"standard";
"Omsk-Normalzeit",
"daylight";
"Omsk-Sommerzeit";
}
}
"Pakistan";
{
"long";
{
"generic";
"Pakistanische Zeit",
"standard";
"Pakistanische Normalzeit",
"daylight";
"Pakistanische Sommerzeit";
}
}
"Palau";
{
"long";
{
"standard";
"Palau-Zeit";
}
}
"Papua_New_Guinea";
{
"long";
{
"standard";
"Papua-Neuguinea-Zeit";
}
}
"Paraguay";
{
"long";
{
"generic";
"Paraguayanische Zeit",
"standard";
"Paraguayanische Normalzeit",
"daylight";
"Paraguayanische Sommerzeit";
}
}
"Peru";
{
"long";
{
"generic";
"Peruanische Zeit",
"standard";
"Peruanische Normalzeit",
"daylight";
"Peruanische Sommerzeit";
}
}
"Philippines";
{
"long";
{
"generic";
"Philippinische Zeit",
"standard";
"Philippinische Normalzeit",
"daylight";
"Philippinische Sommerzeit";
}
}
"Phoenix_Islands";
{
"long";
{
"standard";
"Phoenixinseln-Zeit";
}
}
"Pierre_Miquelon";
{
"long";
{
"generic";
"Saint-Pierre-und-Miquelon-Zeit",
"standard";
"Saint-Pierre-und-Miquelon-Normalzeit",
"daylight";
"Saint-Pierre-und-Miquelon-Sommerzeit";
}
}
"Pitcairn";
{
"long";
{
"standard";
"Pitcairninseln-Zeit";
}
}
"Ponape";
{
"long";
{
"standard";
"Ponape-Zeit";
}
}
"Pyongyang";
{
"long";
{
"standard";
"Pjöngjang-Zeit";
}
}
"Qyzylorda";
{
"long";
{
"generic";
"Quysylorda-Zeit",
"standard";
"Quysylorda-Normalzeit",
"daylight";
"Qysylorda-Sommerzeit";
}
}
"Reunion";
{
"long";
{
"standard";
"Réunion-Zeit";
}
}
"Rothera";
{
"long";
{
"standard";
"Rothera-Zeit";
}
}
"Sakhalin";
{
"long";
{
"generic";
"Sachalin-Zeit",
"standard";
"Sachalin-Normalzeit",
"daylight";
"Sachalin-Sommerzeit";
}
}
"Samara";
{
"long";
{
"generic";
"Samara-Zeit",
"standard";
"Samara-Normalzeit",
"daylight";
"Samara-Sommerzeit";
}
}
"Samoa";
{
"long";
{
"generic";
"Samoa-Zeit",
"standard";
"Samoa-Normalzeit",
"daylight";
"Samoa-Sommerzeit";
}
}
"Seychelles";
{
"long";
{
"standard";
"Seychellen-Zeit";
}
}
"Singapore";
{
"long";
{
"standard";
"Singapur-Zeit";
}
}
"Solomon";
{
"long";
{
"standard";
"Salomoninseln-Zeit";
}
}
"South_Georgia";
{
"long";
{
"standard";
"Südgeorgische Zeit";
}
}
"Suriname";
{
"long";
{
"standard";
"Suriname-Zeit";
}
}
"Syowa";
{
"long";
{
"standard";
"Syowa-Zeit";
}
}
"Tahiti";
{
"long";
{
"standard";
"Tahiti-Zeit";
}
}
"Taipei";
{
"long";
{
"generic";
"Taipeh-Zeit",
"standard";
"Taipeh-Normalzeit",
"daylight";
"Taipeh-Sommerzeit";
}
}
"Tajikistan";
{
"long";
{
"standard";
"Tadschikistan-Zeit";
}
}
"Tokelau";
{
"long";
{
"standard";
"Tokelau-Zeit";
}
}
"Tonga";
{
"long";
{
"generic";
"Tonganische Zeit",
"standard";
"Tonganische Normalzeit",
"daylight";
"Tonganische Sommerzeit";
}
}
"Truk";
{
"long";
{
"standard";
"Chuuk-Zeit";
}
}
"Turkmenistan";
{
"long";
{
"generic";
"Turkmenistan-Zeit",
"standard";
"Turkmenistan-Normalzeit",
"daylight";
"Turkmenistan-Sommerzeit";
}
}
"Tuvalu";
{
"long";
{
"standard";
"Tuvalu-Zeit";
}
}
"Uruguay";
{
"long";
{
"generic";
"Uruguayanische Zeit",
"standard";
"Uruguyanische Normalzeit",
"daylight";
"Uruguayanische Sommerzeit";
}
}
"Uzbekistan";
{
"long";
{
"generic";
"Usbekistan-Zeit",
"standard";
"Usbekistan-Normalzeit",
"daylight";
"Usbekistan-Sommerzeit";
}
}
"Vanuatu";
{
"long";
{
"generic";
"Vanuatu-Zeit",
"standard";
"Vanuatu-Normalzeit",
"daylight";
"Vanuatu-Sommerzeit";
}
}
"Venezuela";
{
"long";
{
"standard";
"Venezuela-Zeit";
}
}
"Vladivostok";
{
"long";
{
"generic";
"Wladiwostok-Zeit",
"standard";
"Wladiwostok-Normalzeit",
"daylight";
"Wladiwostok-Sommerzeit";
}
}
"Volgograd";
{
"long";
{
"generic";
"Wolgograd-Zeit",
"standard";
"Wolgograd-Normalzeit",
"daylight";
"Wolgograd-Sommerzeit";
}
}
"Vostok";
{
"long";
{
"standard";
"Wostok-Zeit";
}
}
"Wake";
{
"long";
{
"standard";
"Wake-Insel-Zeit";
}
}
"Wallis";
{
"long";
{
"standard";
"Wallis-und-Futuna-Zeit";
}
}
"Yakutsk";
{
"long";
{
"generic";
"Jakutsk-Zeit",
"standard";
"Jakutsk-Normalzeit",
"daylight";
"Jakutsk-Sommerzeit";
}
}
"Yekaterinburg";
{
"long";
{
"generic";
"Jekaterinburg-Zeit",
"standard";
"Jekaterinburg-Normalzeit",
"daylight";
"Jekaterinburg-Sommerzeit";
}
}
}
}
}
}
}
}
Right-To-Left
The Calendar supports right-to-left functionality for languages like Arabic, Hebrew, etc. To display text in the right-to-left direction. Use enableRtl
property.
The following example demonstrates the Calendar in Arabic
culture with Right-To-Left direction.
[Class-component]
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"dates": {
"calendars": {
"gregorian": {
"months": {
"format": {
"abbreviated": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
},
"narrow": {
"1": "ي",
"2": "ف",
"3": "م",
"4": "أ",
"5": "و",
"6": "ن",
"7": "ل",
"8": "غ",
"9": "س",
"10": "ك",
"11": "ب",
"12": "د"
},
"wide": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
}
},
"stand-alone": {
"abbreviated": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
},
"narrow": {
"1": "ي",
"2": "ف",
"3": "م",
"4": "أ",
"5": "و",
"6": "ن",
"7": "ل",
"8": "غ",
"9": "س",
"10": "ك",
"11": "ب",
"12": "د"
},
"wide": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
}
}
},
"days": {
"format": {
"abbreviated": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"narrow": {
"sun": "ح",
"mon": "ن",
"tue": "ث",
"wed": "ر",
"thu": "خ",
"fri": "ج",
"sat": "س"
},
"short": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"wide": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
}
},
"stand-alone": {
"abbreviated": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"narrow": {
"sun": "ح",
"mon": "ن",
"tue": "ث",
"wed": "ر",
"thu": "خ",
"fri": "ج",
"sat": "س"
},
"short": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"wide": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
}
}
},
"quarters": {
"format": {
"abbreviated": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
},
"narrow": {
"1": "١",
"2": "٢",
"3": "٣",
"4": "٤"
},
"wide": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
}
},
"stand-alone": {
"abbreviated": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
},
"narrow": {
"1": "١",
"2": "٢",
"3": "٣",
"4": "٤"
},
"wide": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
}
}
},
"dayPeriods": {
"format": {
"abbreviated": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "ص",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ل"
},
"narrow": {
"am": "ص",
"pm": "م",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"wide": {
"am": "ص",
"pm": "م",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
}
},
"stand-alone": {
"abbreviated": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "ص",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"narrow": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"wide": {
"am": "صباحًا",
"pm": "مساءً",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
}
}
},
"eras": {
"eraNames": {
"0": "قبل الميلاد",
"0-alt-variant": "BCE",
"1": "ميلادي",
"1-alt-variant": "بعد الميلاد"
},
"eraAbbr": {
"0": "ق.م",
"0-alt-variant": "BCE",
"1": "م",
"1-alt-variant": "ب.م"
},
"eraNarrow": {
"0": "ق.م",
"0-alt-variant": "BCE",
"1": "م",
"1-alt-variant": "ب.م"
}
},
"dateFormats": {
"full": "EEEE، d MMMM، y",
"long": "d MMMM، y",
"medium": "dd/MM/y",
"short": "d/M/y"
},
"timeFormats": {
"full": "h:mm:ss a zzzz",
"long": "h:mm:ss a z",
"medium": "h:mm:ss a",
"short": "h:mm a"
},
"dateTimeFormats": {
"full": "{1} {0}",
"long": "{1} {0}",
"medium": "{1} {0}",
"short": "{1} {0}",
"availableFormats": {
"d": "d",
"E": "ccc",
"Ed": "E، d",
"Ehm": "E h:mm a",
"EHm": "E HH:mm",
"Ehms": "E h:mm:ss a",
"EHms": "E HH:mm:ss",
"Gy": "y G",
"GyMMM": "MMM y G",
"GyMMMd": "d MMM، y G",
"GyMMMEd": "E، d MMM، y G",
"h": "h a",
"H": "HH",
"hm": "h:mm a",
"Hm": "HH:mm",
"hms": "h:mm:ss a",
"Hms": "HH:mm:ss",
"hmsv": "h:mm:ss a v",
"Hmsv": "HH:mm:ss v",
"hmv": "h:mm a v",
"Hmv": "HH:mm v",
"M": "L",
"Md": "d/M",
"MEd": "E، d/M",
"MMdd": "dd/MM",
"MMM": "LLL",
"MMMd": "d MMM",
"MMMEd": "E، d MMM",
"MMMMd": "d MMMM",
"MMMMEd": "E، d MMMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"ms": "mm:ss",
"y": "y",
"yM": "M/y",
"yMd": "d/M/y",
"yMEd": "E، d/M/y",
"yMM": "MM/y",
"yMMM": "MMM y",
"yMMMd": "d MMM، y",
"yMMMEd": "E، d MMM، y",
"yMMMM": "MMMM y",
"yQQQ": "QQQ y",
"yQQQQ": "QQQQ y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y"
},
"appendItems": {
"Day": "{0} ({2}: {1})",
"Day-Of-Week": "{0} {1}",
"Era": "{1} {0}",
"Hour": "{0} ({2}: {1})",
"Minute": "{0} ({2}: {1})",
"Month": "{0} ({2}: {1})",
"Quarter": "{0} ({2}: {1})",
"Second": "{0} ({2}: {1})",
"Timezone": "{0} {1}",
"Week": "{0} ({2}: {1})",
"Year": "{1} {0}"
},
"intervalFormats": {
"intervalFormatFallback": "{0} – {1}",
"d": {
"d": "d–d"
},
"h": {
"a": "h a – h a",
"h": "h–h a"
},
"H": {
"H": "HH–HH"
},
"hm": {
"a": "h:mm a – h:mm a",
"h": "h:mm–h:mm a",
"m": "h:mm–h:mm a"
},
"Hm": {
"H": "HH:mm–HH:mm",
"m": "HH:mm–HH:mm"
},
"hmv": {
"a": "h:mm a – h:mm a v",
"h": "h:mm–h:mm a v",
"m": "h:mm–h:mm a v"
},
"Hmv": {
"H": "HH:mm–HH:mm v",
"m": "HH:mm–HH:mm v"
},
"hv": {
"a": "h a – h a v",
"h": "h–h a v"
},
"Hv": {
"H": "HH–HH v"
},
"M": {
"M": "M–M"
},
"Md": {
"d": "M/d – M/d",
"M": "M/d – M/d"
},
"MEd": {
"d": "E، d/M – E، d/M",
"M": "E، d/M – E، d/M"
},
"MMM": {
"M": "MMM–MMM"
},
"MMMd": {
"d": "d–d MMM",
"M": "d MMM – d MMM"
},
"MMMEd": {
"d": "E، d – E، d MMM",
"M": "E، d MMM – E، d MMM"
},
"MMMM": {
"M": "LLLL–LLLL"
},
"y": {
"y": "y–y"
},
"yM": {
"M": "M/y – M/y",
"y": "M/y – M/y"
},
"yMd": {
"d": "d/M/y – d/M/y",
"M": "d/M/y – d/M/y",
"y": "d/M/y – d/M/y"
},
"yMEd": {
"d": "E، dd/MM/y – E، dd/MM/y",
"M": "E، d/M/y – E، d/M/y",
"y": "E، d/M/y – E، d/M/y"
},
"yMMM": {
"M": "MMM – MMM، y",
"y": "MMM، y – MMM، y"
},
"yMMMd": {
"d": "d–d MMM، y",
"M": "d MMM – d MMM، y",
"y": "d MMM، y – d MMM، y"
},
"yMMMEd": {
"d": "E، d – E، d MMM، y",
"M": "E، d MMM – E، d MMM، y",
"y": "E، d MMM، y – E، d MMM، y"
},
"yMMMM": {
"M": "MMMM – MMMM، y",
"y": "MMMM، y – MMMM، y"
}
}
}
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"dates";
{
"calendars";
{
"gregorian";
{
"months";
{
"format";
{
"abbreviated";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
"narrow";
{
"1";
"ي",
"2";
"ف",
"3";
"م",
"4";
"أ",
"5";
"و",
"6";
"ن",
"7";
"ل",
"8";
"غ",
"9";
"س",
"10";
"ك",
"11";
"ب",
"12";
"د";
}
"wide";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
"narrow";
{
"1";
"ي",
"2";
"ف",
"3";
"م",
"4";
"أ",
"5";
"و",
"6";
"ن",
"7";
"ل",
"8";
"غ",
"9";
"س",
"10";
"ك",
"11";
"ب",
"12";
"د";
}
"wide";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
}
}
"days";
{
"format";
{
"abbreviated";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"narrow";
{
"sun";
"ح",
"mon";
"ن",
"tue";
"ث",
"wed";
"ر",
"thu";
"خ",
"fri";
"ج",
"sat";
"س";
}
"short";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"wide";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
}
"stand-alone";
{
"abbreviated";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"narrow";
{
"sun";
"ح",
"mon";
"ن",
"tue";
"ث",
"wed";
"ر",
"thu";
"خ",
"fri";
"ج",
"sat";
"س";
}
"short";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"wide";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
}
}
"quarters";
{
"format";
{
"abbreviated";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
"narrow";
{
"1";
"١",
"2";
"٢",
"3";
"٣",
"4";
"٤";
}
"wide";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
"narrow";
{
"1";
"١",
"2";
"٢",
"3";
"٣",
"4";
"٤";
}
"wide";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
}
}
"dayPeriods";
{
"format";
{
"abbreviated";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"ص",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ل";
}
"narrow";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"wide";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
}
"stand-alone";
{
"abbreviated";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"ص",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"narrow";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"wide";
{
"am";
"صباحًا",
"pm";
"مساءً",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
}
}
"eras";
{
"eraNames";
{
"0";
"قبل الميلاد",
"0-alt-variant";
"BCE",
"1";
"ميلادي",
"1-alt-variant";
"بعد الميلاد";
}
"eraAbbr";
{
"0";
"ق.م",
"0-alt-variant";
"BCE",
"1";
"م",
"1-alt-variant";
"ب.م";
}
"eraNarrow";
{
"0";
"ق.م",
"0-alt-variant";
"BCE",
"1";
"م",
"1-alt-variant";
"ب.م";
}
}
"dateFormats";
{
"full";
"EEEE، d MMMM، y",
"long";
"d MMMM، y",
"medium";
"dd/MM/y",
"short";
"d/M/y";
}
"timeFormats";
{
"full";
"h:mm:ss a zzzz",
"long";
"h:mm:ss a z",
"medium";
"h:mm:ss a",
"short";
"h:mm a";
}
"dateTimeFormats";
{
"full";
"{1} {0}",
"long";
"{1} {0}",
"medium";
"{1} {0}",
"short";
"{1} {0}",
"availableFormats";
{
"d";
"d",
"E";
"ccc",
"Ed";
"E، d",
"Ehm";
"E h:mm a",
"EHm";
"E HH:mm",
"Ehms";
"E h:mm:ss a",
"EHms";
"E HH:mm:ss",
"Gy";
"y G",
"GyMMM";
"MMM y G",
"GyMMMd";
"d MMM، y G",
"GyMMMEd";
"E، d MMM، y G",
"h";
"h a",
"H";
"HH",
"hm";
"h:mm a",
"Hm";
"HH:mm",
"hms";
"h:mm:ss a",
"Hms";
"HH:mm:ss",
"hmsv";
"h:mm:ss a v",
"Hmsv";
"HH:mm:ss v",
"hmv";
"h:mm a v",
"Hmv";
"HH:mm v",
"M";
"L",
"Md";
"d/M",
"MEd";
"E، d/M",
"MMdd";
"dd/MM",
"MMM";
"LLL",
"MMMd";
"d MMM",
"MMMEd";
"E، d MMM",
"MMMMd";
"d MMMM",
"MMMMEd";
"E، d MMMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"ms";
"mm:ss",
"y";
"y",
"yM";
"M/y",
"yMd";
"d/M/y",
"yMEd";
"E، d/M/y",
"yMM";
"MM/y",
"yMMM";
"MMM y",
"yMMMd";
"d MMM، y",
"yMMMEd";
"E، d MMM، y",
"yMMMM";
"MMMM y",
"yQQQ";
"QQQ y",
"yQQQQ";
"QQQQ y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y";
}
"appendItems";
{
"Day";
"{0} ({2}: {1})",
"Day-Of-Week";
"{0} {1}",
"Era";
"{1} {0}",
"Hour";
"{0} ({2}: {1})",
"Minute";
"{0} ({2}: {1})",
"Month";
"{0} ({2}: {1})",
"Quarter";
"{0} ({2}: {1})",
"Second";
"{0} ({2}: {1})",
"Timezone";
"{0} {1}",
"Week";
"{0} ({2}: {1})",
"Year";
"{1} {0}";
}
"intervalFormats";
{
"intervalFormatFallback";
"{0} – {1}",
"d";
{
"d";
"d–d";
}
"h";
{
"a";
"h a – h a",
"h";
"h–h a";
}
"H";
{
"H";
"HH–HH";
}
"hm";
{
"a";
"h:mm a – h:mm a",
"h";
"h:mm–h:mm a",
"m";
"h:mm–h:mm a";
}
"Hm";
{
"H";
"HH:mm–HH:mm",
"m";
"HH:mm–HH:mm";
}
"hmv";
{
"a";
"h:mm a – h:mm a v",
"h";
"h:mm–h:mm a v",
"m";
"h:mm–h:mm a v";
}
"Hmv";
{
"H";
"HH:mm–HH:mm v",
"m";
"HH:mm–HH:mm v";
}
"hv";
{
"a";
"h a – h a v",
"h";
"h–h a v";
}
"Hv";
{
"H";
"HH–HH v";
}
"M";
{
"M";
"M–M";
}
"Md";
{
"d";
"M/d – M/d",
"M";
"M/d – M/d";
}
"MEd";
{
"d";
"E، d/M – E، d/M",
"M";
"E، d/M – E، d/M";
}
"MMM";
{
"M";
"MMM–MMM";
}
"MMMd";
{
"d";
"d–d MMM",
"M";
"d MMM – d MMM";
}
"MMMEd";
{
"d";
"E، d – E، d MMM",
"M";
"E، d MMM – E، d MMM";
}
"MMMM";
{
"M";
"LLLL–LLLL";
}
"y";
{
"y";
"y–y";
}
"yM";
{
"M";
"M/y – M/y",
"y";
"M/y – M/y";
}
"yMd";
{
"d";
"d/M/y – d/M/y",
"M";
"d/M/y – d/M/y",
"y";
"d/M/y – d/M/y";
}
"yMEd";
{
"d";
"E، dd/MM/y – E، dd/MM/y",
"M";
"E، d/M/y – E، d/M/y",
"y";
"E، d/M/y – E، d/M/y";
}
"yMMM";
{
"M";
"MMM – MMM، y",
"y";
"MMM، y – MMM، y";
}
"yMMMd";
{
"d";
"d–d MMM، y",
"M";
"d MMM – d MMM، y",
"y";
"d MMM، y – d MMM، y";
}
"yMMMEd";
{
"d";
"E، d – E، d MMM، y",
"M";
"E، d MMM – E، d MMM، y",
"y";
"E، d MMM، y – E، d MMM، y";
}
"yMMMM";
{
"M";
"MMMM – MMMM، y",
"y";
"MMMM، y – MMMM، y";
}
}
}
}
}
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"numbers": {
"currencies": {
"ADP": {
"displayName": "بيستا أندوري",
"symbol": "ADP"
},
"AED": {
"displayName": "درهم إماراتي",
"displayName-count-zero": "درهم إماراتي",
"displayName-count-one": "درهم إماراتي",
"displayName-count-two": "درهم إماراتي",
"displayName-count-few": "درهم إماراتي",
"displayName-count-many": "درهم إماراتي",
"displayName-count-other": "درهم إماراتي",
"symbol": "د.إ."
},
"AFA": {
"displayName": "أفغاني - 1927-2002",
"symbol": "AFA"
},
"AFN": {
"displayName": "أفغاني",
"displayName-count-zero": "أفغاني أفغانستاني",
"displayName-count-one": "أفغاني أفغانستاني",
"displayName-count-two": "أفغاني أفغانستاني",
"displayName-count-few": "أفغاني أفغانستاني",
"displayName-count-many": "أفغاني أفغانستاني",
"displayName-count-other": "أفغاني أفغانستاني",
"symbol": "AFN"
},
"ALL": {
"displayName": "ليك ألباني",
"displayName-count-zero": "ليك ألباني",
"displayName-count-one": "ليك ألباني",
"displayName-count-two": "ليك ألباني",
"displayName-count-few": "ليك ألباني",
"displayName-count-many": "ليك ألباني",
"displayName-count-other": "ليك ألباني",
"symbol": "ALL"
},
"AMD": {
"displayName": "درام أرميني",
"displayName-count-zero": "درام أرميني",
"displayName-count-one": "درام أرميني",
"displayName-count-two": "درام أرميني",
"displayName-count-few": "درام أرميني",
"displayName-count-many": "درام أرميني",
"displayName-count-other": "درام أرميني",
"symbol": "AMD"
},
"ANG": {
"displayName": "غيلدر أنتيلي هولندي",
"displayName-count-zero": "غيلدر أنتيلي هولندي",
"displayName-count-one": "غيلدر أنتيلي هولندي",
"displayName-count-two": "غيلدر أنتيلي هولندي",
"displayName-count-few": "غيلدر أنتيلي هولندي",
"displayName-count-many": "غيلدر أنتيلي هولندي",
"displayName-count-other": "غيلدر أنتيلي هولندي",
"symbol": "ANG"
},
"AOA": {
"displayName": "كوانزا أنجولي",
"displayName-count-zero": "كوانزا أنجولي",
"displayName-count-one": "كوانزا أنجولي",
"displayName-count-two": "كوانزا أنجولي",
"displayName-count-few": "كوانزا أنجولي",
"displayName-count-many": "كوانزا أنجولي",
"displayName-count-other": "كوانزا أنجولي",
"symbol": "AOA",
"symbol-alt-narrow": "Kz"
},
"AOK": {
"displayName": "كوانزا أنجولي - 1977-1990",
"symbol": "AOK"
},
"AON": {
"displayName": "كوانزا أنجولي جديدة - 1990-2000",
"symbol": "AON"
},
"AOR": {
"displayName": "كوانزا أنجولي معدلة - 1995 - 1999",
"symbol": "AOR"
},
"ARA": {
"displayName": "استرال أرجنتيني",
"symbol": "ARA"
},
"ARL": {
"displayName": "ARL",
"symbol": "ARL"
},
"ARM": {
"displayName": "ARM",
"symbol": "ARM"
},
"ARP": {
"displayName": "بيزو أرجنتيني - 1983-1985",
"symbol": "ARP"
},
"ARS": {
"displayName": "بيزو أرجنتيني",
"displayName-count-zero": "بيزو أرجنتيني",
"displayName-count-one": "بيزو أرجنتيني",
"displayName-count-two": "بيزو أرجنتيني",
"displayName-count-few": "بيزو أرجنتيني",
"displayName-count-many": "بيزو أرجنتيني",
"displayName-count-other": "بيزو أرجنتيني",
"symbol": "ARS",
"symbol-alt-narrow": "AR$"
},
"ATS": {
"displayName": "شلن نمساوي",
"symbol": "ATS"
},
"AUD": {
"displayName": "دولار أسترالي",
"displayName-count-zero": "دولار أسترالي",
"displayName-count-one": "دولار أسترالي",
"displayName-count-two": "دولار أسترالي",
"displayName-count-few": "دولار أسترالي",
"displayName-count-many": "دولار أسترالي",
"displayName-count-other": "دولار أسترالي",
"symbol": "AU$",
"symbol-alt-narrow": "AU$"
},
"AWG": {
"displayName": "فلورن أروبي",
"displayName-count-zero": "فلورن أروبي",
"displayName-count-one": "فلورن أروبي",
"displayName-count-two": "فلورن أروبي",
"displayName-count-few": "فلورن أروبي",
"displayName-count-many": "فلورن أروبي",
"displayName-count-other": "فلورن أروبي",
"symbol": "AWG"
},
"AZM": {
"displayName": "مانات أذريبجاني",
"symbol": "AZM"
},
"AZN": {
"displayName": "مانات أذربيجان",
"displayName-count-zero": "مانت أذربيجاني",
"displayName-count-one": "مانت أذربيجاني",
"displayName-count-two": "مانت أذربيجاني",
"displayName-count-few": "مانت أذربيجاني",
"displayName-count-many": "مانت أذربيجاني",
"displayName-count-other": "مانت أذربيجاني",
"symbol": "AZN"
},
"BAD": {
"displayName": "دينار البوسنة والهرسك",
"symbol": "BAD"
},
"BAM": {
"displayName": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-zero": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-one": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-two": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-few": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-many": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-other": "مارك البوسنة والهرسك قابل للتحويل",
"symbol": "BAM",
"symbol-alt-narrow": "KM"
},
"BAN": {
"displayName": "BAN",
"symbol": "BAN"
},
"BBD": {
"displayName": "دولار بربادوسي",
"displayName-count-zero": "دولار بربادوسي",
"displayName-count-one": "دولار بربادوسي",
"displayName-count-two": "دولار بربادوسي",
"displayName-count-few": "دولار بربادوسي",
"displayName-count-many": "دولار بربادوسي",
"displayName-count-other": "دولار بربادوسي",
"symbol": "BBD",
"symbol-alt-narrow": "BB$"
},
"BDT": {
"displayName": "تاكا بنجلاديشي",
"displayName-count-zero": "تاكا بنجلاديشي",
"displayName-count-one": "تاكا بنجلاديشي",
"displayName-count-two": "تاكا بنجلاديشي",
"displayName-count-few": "تاكا بنجلاديشي",
"displayName-count-many": "تاكا بنجلاديشي",
"displayName-count-other": "تاكا بنجلاديشي",
"symbol": "BDT",
"symbol-alt-narrow": "৳"
},
"BEC": {
"displayName": "فرنك بلجيكي قابل للتحويل",
"symbol": "BEC"
},
"BEF": {
"displayName": "فرنك بلجيكي",
"symbol": "BEF"
},
"BEL": {
"displayName": "فرنك بلجيكي مالي",
"symbol": "BEL"
},
"BGL": {
"displayName": "BGL",
"symbol": "BGL"
},
"BGM": {
"displayName": "BGM",
"symbol": "BGM"
},
"BGN": {
"displayName": "ليف بلغاري",
"displayName-count-zero": "ليف بلغاري",
"displayName-count-one": "ليف بلغاري",
"displayName-count-two": "ليف بلغاري",
"displayName-count-few": "ليف بلغاري",
"displayName-count-many": "ليف بلغاري",
"displayName-count-other": "ليف بلغاري",
"symbol": "BGN"
},
"BGO": {
"displayName": "BGO",
"symbol": "BGO"
},
"BHD": {
"displayName": "دينار بحريني",
"displayName-count-zero": "دينار بحريني",
"displayName-count-one": "دينار بحريني",
"displayName-count-two": "دينار بحريني",
"displayName-count-few": "دينار بحريني",
"displayName-count-many": "دينار بحريني",
"displayName-count-other": "دينار بحريني",
"symbol": "د.ب."
},
"BIF": {
"displayName": "فرنك بروندي",
"displayName-count-zero": "فرنك بروندي",
"displayName-count-one": "فرنك بروندي",
"displayName-count-two": "فرنك بروندي",
"displayName-count-few": "فرنك بروندي",
"displayName-count-many": "فرنك بروندي",
"displayName-count-other": "فرنك بروندي",
"symbol": "BIF"
},
"BMD": {
"displayName": "دولار برمودي",
"displayName-count-zero": "دولار برمودي",
"displayName-count-one": "دولار برمودي",
"displayName-count-two": "دولار برمودي",
"displayName-count-few": "دولار برمودي",
"displayName-count-many": "دولار برمودي",
"displayName-count-other": "دولار برمودي",
"symbol": "BMD",
"symbol-alt-narrow": "BM$"
},
"BND": {
"displayName": "دولار بروناي",
"displayName-count-zero": "دولار بروناي",
"displayName-count-one": "دولار بروناي",
"displayName-count-two": "دولار بروناي",
"displayName-count-few": "دولار بروناي",
"displayName-count-many": "دولار بروناي",
"displayName-count-other": "دولار بروناي",
"symbol": "BND",
"symbol-alt-narrow": "BN$"
},
"BOB": {
"displayName": "بوليفيانو بوليفي",
"displayName-count-zero": "بوليفيانو بوليفي",
"displayName-count-one": "بوليفيانو بوليفي",
"displayName-count-two": "بوليفيانو بوليفي",
"displayName-count-few": "بوليفيانو بوليفي",
"displayName-count-many": "بوليفيانو بوليفي",
"displayName-count-other": "بوليفيانو بوليفي",
"symbol": "BOB",
"symbol-alt-narrow": "Bs"
},
"BOL": {
"displayName": "BOL",
"symbol": "BOL"
},
"BOP": {
"displayName": "بيزو بوليفي",
"symbol": "BOP"
},
"BOV": {
"displayName": "مفدول بوليفي",
"symbol": "BOV"
},
"BRB": {
"displayName": "نوفو كروزايرو برازيلي - 1967-1986",
"symbol": "BRB"
},
"BRC": {
"displayName": "كروزادو برازيلي",
"symbol": "BRC"
},
"BRE": {
"displayName": "كروزايرو برازيلي - 1990-1993",
"symbol": "BRE"
},
"BRL": {
"displayName": "ريال برازيلي",
"displayName-count-zero": "ريال برازيلي",
"displayName-count-one": "ريال برازيلي",
"displayName-count-two": "ريال برازيلي",
"displayName-count-few": "ريال برازيلي",
"displayName-count-many": "ريال برازيلي",
"displayName-count-other": "ريال برازيلي",
"symbol": "R$",
"symbol-alt-narrow": "R$"
},
"BRN": {
"displayName": "BRN",
"symbol": "BRN"
},
"BRR": {
"displayName": "BRR",
"symbol": "BRR"
},
"BRZ": {
"displayName": "BRZ",
"symbol": "BRZ"
},
"BSD": {
"displayName": "دولار باهامي",
"displayName-count-zero": "دولار باهامي",
"displayName-count-one": "دولار باهامي",
"displayName-count-two": "دولار باهامي",
"displayName-count-few": "دولار باهامي",
"displayName-count-many": "دولار باهامي",
"displayName-count-other": "دولار باهامي",
"symbol": "BSD",
"symbol-alt-narrow": "BS$"
},
"BTN": {
"displayName": "نولتوم بوتاني",
"displayName-count-zero": "نولتوم بوتاني",
"displayName-count-one": "نولتوم بوتاني",
"displayName-count-two": "نولتوم بوتاني",
"displayName-count-few": "نولتوم بوتاني",
"displayName-count-many": "نولتوم بوتاني",
"displayName-count-other": "نولتوم بوتاني",
"symbol": "BTN"
},
"BUK": {
"displayName": "كيات بورمي",
"symbol": "BUK"
},
"BWP": {
"displayName": "بولا بتسواني",
"displayName-count-zero": "بولا بتسواني",
"displayName-count-one": "بولا بتسواني",
"displayName-count-two": "بولا بتسواني",
"displayName-count-few": "بولا بتسواني",
"displayName-count-many": "بولا بتسواني",
"displayName-count-other": "بولا بتسواني",
"symbol": "BWP",
"symbol-alt-narrow": "P"
},
"BYB": {
"displayName": "روبل بيلاروسي جديد - 1994-1999",
"symbol": "BYB"
},
"BYN": {
"displayName": "روبل بيلاروسي",
"displayName-count-zero": "روبل بيلاروسي",
"displayName-count-one": "روبل بيلاروسي",
"displayName-count-two": "روبل بيلاروسي",
"displayName-count-few": "روبل بيلاروسي",
"displayName-count-many": "روبل بيلاروسي",
"displayName-count-other": "روبل بيلاروسي",
"symbol": "BYN",
"symbol-alt-narrow": "р."
},
"BYR": {
"displayName": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-zero": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-one": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-two": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-few": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-many": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-other": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"symbol": "BYR"
},
"BZD": {
"displayName": "دولار بليزي",
"displayName-count-zero": "دولار بليزي",
"displayName-count-one": "دولار بليزي",
"displayName-count-two": "دولاران بليزيان",
"displayName-count-few": "دولار بليزي",
"displayName-count-many": "دولار بليزي",
"displayName-count-other": "دولار بليزي",
"symbol": "BZD",
"symbol-alt-narrow": "BZ$"
},
"CAD": {
"displayName": "دولار كندي",
"displayName-count-zero": "دولار كندي",
"displayName-count-one": "دولار كندي",
"displayName-count-two": "دولار كندي",
"displayName-count-few": "دولار كندي",
"displayName-count-many": "دولار كندي",
"displayName-count-other": "دولار كندي",
"symbol": "CA$",
"symbol-alt-narrow": "CA$"
},
"CDF": {
"displayName": "فرنك كونغولي",
"displayName-count-zero": "فرنك كونغولي",
"displayName-count-one": "فرنك كونغولي",
"displayName-count-two": "فرنك كونغولي",
"displayName-count-few": "فرنك كونغولي",
"displayName-count-many": "فرنك كونغولي",
"displayName-count-other": "فرنك كونغولي",
"symbol": "CDF"
},
"CHE": {
"displayName": "CHE",
"symbol": "CHE"
},
"CHF": {
"displayName": "فرنك سويسري",
"displayName-count-zero": "فرنك سويسري",
"displayName-count-one": "فرنك سويسري",
"displayName-count-two": "فرنك سويسري",
"displayName-count-few": "فرنك سويسري",
"displayName-count-many": "فرنك سويسري",
"displayName-count-other": "فرنك سويسري",
"symbol": "CHF"
},
"CHW": {
"displayName": "CHW",
"symbol": "CHW"
},
"CLE": {
"displayName": "CLE",
"symbol": "CLE"
},
"CLF": {
"displayName": "CLF",
"symbol": "CLF"
},
"CLP": {
"displayName": "بيزو شيلي",
"displayName-count-zero": "بيزو شيلي",
"displayName-count-one": "بيزو شيلي",
"displayName-count-two": "بيزو شيلي",
"displayName-count-few": "بيزو شيلي",
"displayName-count-many": "بيزو شيلي",
"displayName-count-other": "بيزو شيلي",
"symbol": "CLP",
"symbol-alt-narrow": "CL$"
},
"CNY": {
"displayName": "يوان صيني",
"displayName-count-zero": "يوان صيني",
"displayName-count-one": "يوان صيني",
"displayName-count-two": "يوان صيني",
"displayName-count-few": "يوان صيني",
"displayName-count-many": "يوان صيني",
"displayName-count-other": "يوان صيني",
"symbol": "CN¥",
"symbol-alt-narrow": "CN¥"
},
"COP": {
"displayName": "بيزو كولومبي",
"displayName-count-zero": "بيزو كولومبي",
"displayName-count-one": "بيزو كولومبي",
"displayName-count-two": "بيزو كولومبي",
"displayName-count-few": "بيزو كولومبي",
"displayName-count-many": "بيزو كولومبي",
"displayName-count-other": "بيزو كولومبي",
"symbol": "COP",
"symbol-alt-narrow": "CO$"
},
"COU": {
"displayName": "COU",
"symbol": "COU"
},
"CRC": {
"displayName": "كولن كوستا ريكي",
"displayName-count-zero": "كولن كوستا ريكي",
"displayName-count-one": "كولن كوستا ريكي",
"displayName-count-two": "كولن كوستا ريكي",
"displayName-count-few": "كولن كوستا ريكي",
"displayName-count-many": "كولن كوستا ريكي",
"displayName-count-other": "كولن كوستا ريكي",
"symbol": "CRC",
"symbol-alt-narrow": "₡"
},
"CSD": {
"displayName": "دينار صربي قديم",
"symbol": "CSD"
},
"CSK": {
"displayName": "كرونة تشيكوسلوفاكيا",
"symbol": "CSK"
},
"CUC": {
"displayName": "بيزو كوبي قابل للتحويل",
"displayName-count-zero": "بيزو كوبي قابل للتحويل",
"displayName-count-one": "بيزو كوبي قابل للتحويل",
"displayName-count-two": "بيزو كوبي قابل للتحويل",
"displayName-count-few": "بيزو كوبي قابل للتحويل",
"displayName-count-many": "بيزو كوبي قابل للتحويل",
"displayName-count-other": "بيزو كوبي قابل للتحويل",
"symbol": "CUC",
"symbol-alt-narrow": "$"
},
"CUP": {
"displayName": "بيزو كوبي",
"displayName-count-zero": "بيزو كوبي",
"displayName-count-one": "بيزو كوبي",
"displayName-count-two": "بيزو كوبي",
"displayName-count-few": "بيزو كوبي",
"displayName-count-many": "بيزو كوبي",
"displayName-count-other": "بيزو كوبي",
"symbol": "CUP",
"symbol-alt-narrow": "CU$"
},
"CVE": {
"displayName": "اسكودو الرأس الخضراء",
"displayName-count-zero": "اسكودو الرأس الخضراء",
"displayName-count-one": "اسكودو الرأس الخضراء",
"displayName-count-two": "اسكودو الرأس الخضراء",
"displayName-count-few": "اسكودو الرأس الخضراء",
"displayName-count-many": "اسكودو الرأس الخضراء",
"displayName-count-other": "اسكودو الرأس الخضراء",
"symbol": "CVE"
},
"CYP": {
"displayName": "جنيه قبرصي",
"symbol": "CYP"
},
"CZK": {
"displayName": "كرونة تشيكية",
"displayName-count-zero": "كرونة تشيكية",
"displayName-count-one": "كرونة تشيكية",
"displayName-count-two": "كرونة تشيكية",
"displayName-count-few": "كرونة تشيكية",
"displayName-count-many": "كرونة تشيكية",
"displayName-count-other": "كرونة تشيكية",
"symbol": "CZK",
"symbol-alt-narrow": "Kč"
},
"DDM": {
"displayName": "أوستمارك ألماني شرقي",
"symbol": "DDM"
},
"DEM": {
"displayName": "مارك ألماني",
"symbol": "DEM"
},
"DJF": {
"displayName": "فرنك جيبوتي",
"displayName-count-zero": "فرنك جيبوتي",
"displayName-count-one": "فرنك جيبوتي",
"displayName-count-two": "فرنك جيبوتي",
"displayName-count-few": "فرنك جيبوتي",
"displayName-count-many": "فرنك جيبوتي",
"displayName-count-other": "فرنك جيبوتي",
"symbol": "DJF"
},
"DKK": {
"displayName": "كرونة دانماركي",
"displayName-count-zero": "كرونة دانماركي",
"displayName-count-one": "كرونة دانماركي",
"displayName-count-two": "كرونة دانماركي",
"displayName-count-few": "كرونة دانماركي",
"displayName-count-many": "كرونة دانماركي",
"displayName-count-other": "كرونة دانماركي",
"symbol": "DKK",
"symbol-alt-narrow": "kr"
},
"DOP": {
"displayName": "بيزو الدومنيكان",
"displayName-count-zero": "بيزو الدومنيكان",
"displayName-count-one": "بيزو الدومنيكان",
"displayName-count-two": "بيزو الدومنيكان",
"displayName-count-few": "بيزو الدومنيكان",
"displayName-count-many": "بيزو الدومنيكان",
"displayName-count-other": "بيزو الدومنيكان",
"symbol": "DOP",
"symbol-alt-narrow": "DO$"
},
"DZD": {
"displayName": "دينار جزائري",
"displayName-count-zero": "دينار جزائري",
"displayName-count-one": "دينار جزائري",
"displayName-count-two": "ديناران جزائريان",
"displayName-count-few": "دينارات جزائرية",
"displayName-count-many": "دينارًا جزائريًا",
"displayName-count-other": "دينار جزائري",
"symbol": "د.ج."
},
"ECS": {
"displayName": "ECS",
"symbol": "ECS"
},
"ECV": {
"displayName": "ECV",
"symbol": "ECV"
},
"EEK": {
"displayName": "كرونة استونية",
"symbol": "EEK"
},
"EGP": {
"displayName": "جنيه مصري",
"displayName-count-zero": "جنيه مصري",
"displayName-count-one": "جنيه مصري",
"displayName-count-two": "جنيهان مصريان",
"displayName-count-few": "جنيهات مصرية",
"displayName-count-many": "جنيهًا مصريًا",
"displayName-count-other": "جنيه مصري",
"symbol": "ج.م.",
"symbol-alt-narrow": "E£"
},
"ERN": {
"displayName": "ناكفا أريتري",
"displayName-count-zero": "ناكفا أريتري",
"displayName-count-one": "ناكفا أريتري",
"displayName-count-two": "ناكفا أريتري",
"displayName-count-few": "ناكفا أريتري",
"displayName-count-many": "ناكفا أريتري",
"displayName-count-other": "ناكفا أريتري",
"symbol": "ERN"
},
"ESA": {
"displayName": "ESA",
"symbol": "ESA"
},
"ESB": {
"displayName": "ESB",
"symbol": "ESB"
},
"ESP": {
"displayName": "بيزيتا إسباني",
"symbol": "ESP",
"symbol-alt-narrow": "₧"
},
"ETB": {
"displayName": "بير أثيوبي",
"displayName-count-zero": "بير أثيوبي",
"displayName-count-one": "بير أثيوبي",
"displayName-count-two": "بير أثيوبي",
"displayName-count-few": "بير أثيوبي",
"displayName-count-many": "بير أثيوبي",
"displayName-count-other": "بير أثيوبي",
"symbol": "ETB"
},
"EUR": {
"displayName": "يورو",
"displayName-count-zero": "يورو",
"displayName-count-one": "يورو",
"displayName-count-two": "يورو",
"displayName-count-few": "يورو",
"displayName-count-many": "يورو",
"displayName-count-other": "يورو",
"symbol": "€",
"symbol-alt-narrow": "€"
},
"FIM": {
"displayName": "ماركا فنلندي",
"symbol": "FIM"
},
"FJD": {
"displayName": "دولار فيجي",
"displayName-count-zero": "دولار فيجي",
"displayName-count-one": "دولار فيجي",
"displayName-count-two": "دولار فيجي",
"displayName-count-few": "دولار فيجي",
"displayName-count-many": "دولار فيجي",
"displayName-count-other": "دولار فيجي",
"symbol": "FJD",
"symbol-alt-narrow": "FJ$"
},
"FKP": {
"displayName": "جنيه جزر فوكلاند",
"displayName-count-zero": "جنيه جزر فوكلاند",
"displayName-count-one": "جنيه جزر فوكلاند",
"displayName-count-two": "جنيه جزر فوكلاند",
"displayName-count-few": "جنيه جزر فوكلاند",
"displayName-count-many": "جنيه جزر فوكلاند",
"displayName-count-other": "جنيه جزر فوكلاند",
"symbol": "FKP",
"symbol-alt-narrow": "£"
},
"FRF": {
"displayName": "فرنك فرنسي",
"symbol": "FRF"
},
"GBP": {
"displayName": "جنيه إسترليني",
"displayName-count-zero": "جنيه إسترليني",
"displayName-count-one": "جنيه إسترليني",
"displayName-count-two": "جنيه إسترليني",
"displayName-count-few": "جنيه إسترليني",
"displayName-count-many": "جنيه إسترليني",
"displayName-count-other": "جنيه إسترليني",
"symbol": "£",
"symbol-alt-narrow": "UK£"
},
"GEK": {
"displayName": "GEK",
"symbol": "GEK"
},
"GEL": {
"displayName": "لارى جورجي",
"displayName-count-zero": "لاري جورجي",
"displayName-count-one": "لاري جورجي",
"displayName-count-two": "لاري جورجي",
"displayName-count-few": "لاري جورجي",
"displayName-count-many": "لاري جورجي",
"displayName-count-other": "لاري جورجي",
"symbol": "GEL",
"symbol-alt-narrow": "₾",
"symbol-alt-variant": "₾"
},
"GHC": {
"displayName": "سيدي غاني",
"symbol": "GHC"
},
"GHS": {
"displayName": "سيدي غانا",
"displayName-count-zero": "سيدي غانا",
"displayName-count-one": "سيدي غانا",
"displayName-count-two": "سيدي غانا",
"displayName-count-few": "سيدي غانا",
"displayName-count-many": "سيدي غانا",
"displayName-count-other": "سيدي غانا",
"symbol": "GHS"
},
"GIP": {
"displayName": "جنيه جبل طارق",
"displayName-count-zero": "جنيه جبل طارق",
"displayName-count-one": "جنيه جبل طارق",
"displayName-count-two": "جنيه جبل طارق",
"displayName-count-few": "جنيه جبل طارق",
"displayName-count-many": "جنيه جبل طارق",
"displayName-count-other": "جنيه جبل طارق",
"symbol": "GIP",
"symbol-alt-narrow": "£"
},
"GMD": {
"displayName": "دلاسي جامبي",
"displayName-count-zero": "دلاسي جامبي",
"displayName-count-one": "دلاسي جامبي",
"displayName-count-two": "دلاسي جامبي",
"displayName-count-few": "دلاسي جامبي",
"displayName-count-many": "دلاسي جامبي",
"displayName-count-other": "دلاسي جامبي",
"symbol": "GMD"
},
"GNF": {
"displayName": "فرنك غينيا",
"displayName-count-zero": "فرنك غينيا",
"displayName-count-one": "فرنك غينيا",
"displayName-count-two": "فرنك غينيا",
"displayName-count-few": "فرنك غينيا",
"displayName-count-many": "فرنك غينيا",
"displayName-count-other": "فرنك غينيا",
"symbol": "GNF",
"symbol-alt-narrow": "FG"
},
"GNS": {
"displayName": "سيلي غينيا",
"symbol": "GNS"
},
"GQE": {
"displayName": "اكويل جونينا غينيا الاستوائيّة",
"symbol": "GQE"
},
"GRD": {
"displayName": "دراخما يوناني",
"symbol": "GRD"
},
"GTQ": {
"displayName": "كوتزال جواتيمالا",
"displayName-count-zero": "كوتزال جواتيمالا",
"displayName-count-one": "كوتزال جواتيمالا",
"displayName-count-two": "كوتزال جواتيمالا",
"displayName-count-few": "كوتزال جواتيمالا",
"displayName-count-many": "كوتزال جواتيمالا",
"displayName-count-other": "كوتزال جواتيمالا",
"symbol": "GTQ",
"symbol-alt-narrow": "Q"
},
"GWE": {
"displayName": "اسكود برتغالي غينيا",
"symbol": "GWE"
},
"GWP": {
"displayName": "بيزو غينيا بيساو",
"symbol": "GWP"
},
"GYD": {
"displayName": "دولار غيانا",
"displayName-count-zero": "دولار غيانا",
"displayName-count-one": "دولار غيانا",
"displayName-count-two": "دولار غيانا",
"displayName-count-few": "دولار غيانا",
"displayName-count-many": "دولار غيانا",
"displayName-count-other": "دولار غيانا",
"symbol": "GYD",
"symbol-alt-narrow": "GY$"
},
"HKD": {
"displayName": "دولار هونغ كونغ",
"displayName-count-zero": "دولار هونغ كونغ",
"displayName-count-one": "دولار هونغ كونغ",
"displayName-count-two": "دولار هونغ كونغ",
"displayName-count-few": "دولار هونغ كونغ",
"displayName-count-many": "دولار هونغ كونغ",
"displayName-count-other": "دولار هونغ كونغ",
"symbol": "HK$",
"symbol-alt-narrow": "HK$"
},
"HNL": {
"displayName": "ليمبيرا هنداروس",
"displayName-count-zero": "ليمبيرا هندوراس",
"displayName-count-one": "ليمبيرا هندوراس",
"displayName-count-two": "ليمبيرا هندوراس",
"displayName-count-few": "ليمبيرا هندوراس",
"displayName-count-many": "ليمبيرا هندوراس",
"displayName-count-other": "ليمبيرا هندوراس",
"symbol": "HNL",
"symbol-alt-narrow": "L"
},
"HRD": {
"displayName": "دينار كرواتي",
"symbol": "HRD"
},
"HRK": {
"displayName": "كونا كرواتي",
"displayName-count-zero": "كونا كرواتي",
"displayName-count-one": "كونا كرواتي",
"displayName-count-two": "كونا كرواتي",
"displayName-count-few": "كونا كرواتي",
"displayName-count-many": "كونا كرواتي",
"displayName-count-other": "كونا كرواتي",
"symbol": "HRK",
"symbol-alt-narrow": "kn"
},
"HTG": {
"displayName": "جوردى هايتي",
"displayName-count-zero": "جوردى هايتي",
"displayName-count-one": "جوردى هايتي",
"displayName-count-two": "جوردى هايتي",
"displayName-count-few": "جوردى هايتي",
"displayName-count-many": "جوردى هايتي",
"displayName-count-other": "جوردى هايتي",
"symbol": "HTG"
},
"HUF": {
"displayName": "فورينت مجري",
"displayName-count-zero": "فورينت مجري",
"displayName-count-one": "فورينت مجري",
"displayName-count-two": "فورينت مجري",
"displayName-count-few": "فورينت مجري",
"displayName-count-many": "فورينت مجري",
"displayName-count-other": "فورينت مجري",
"symbol": "HUF",
"symbol-alt-narrow": "Ft"
},
"IDR": {
"displayName": "روبية إندونيسية",
"displayName-count-zero": "روبية إندونيسية",
"displayName-count-one": "روبية إندونيسية",
"displayName-count-two": "روبية إندونيسية",
"displayName-count-few": "روبية إندونيسية",
"displayName-count-many": "روبية إندونيسية",
"displayName-count-other": "روبية إندونيسية",
"symbol": "IDR",
"symbol-alt-narrow": "Rp"
},
"IEP": {
"displayName": "جنيه إيرلندي",
"symbol": "IEP"
},
"ILP": {
"displayName": "جنيه إسرائيلي",
"symbol": "ILP"
},
"ILS": {
"displayName": "شيكل إسرائيلي جديد",
"displayName-count-zero": "شيكل إسرائيلي جديد",
"displayName-count-one": "شيكل إسرائيلي جديد",
"displayName-count-two": "شيكل إسرائيلي جديد",
"displayName-count-few": "شيكل إسرائيلي جديد",
"displayName-count-many": "شيكل إسرائيلي جديد",
"displayName-count-other": "شيكل إسرائيلي جديد",
"symbol": "₪",
"symbol-alt-narrow": "₪"
},
"INR": {
"displayName": "روبية هندي",
"displayName-count-zero": "روبية هندي",
"displayName-count-one": "روبية هندي",
"displayName-count-two": "روبية هندي",
"displayName-count-few": "روبية هندي",
"displayName-count-many": "روبية هندي",
"displayName-count-other": "روبية هندي",
"symbol": "₹",
"symbol-alt-narrow": "₹"
},
"IQD": {
"displayName": "دينار عراقي",
"displayName-count-zero": "دينار عراقي",
"displayName-count-one": "دينار عراقي",
"displayName-count-two": "دينار عراقي",
"displayName-count-few": "دينار عراقي",
"displayName-count-many": "دينار عراقي",
"displayName-count-other": "دينار عراقي",
"symbol": "د.ع."
},
"IRR": {
"displayName": "ريال إيراني",
"displayName-count-zero": "ريال إيراني",
"displayName-count-one": "ريال إيراني",
"displayName-count-two": "ريال إيراني",
"displayName-count-few": "ريال إيراني",
"displayName-count-many": "ريال إيراني",
"displayName-count-other": "ريال إيراني",
"symbol": "ر.إ."
},
"ISK": {
"displayName": "كرونه أيسلندي",
"displayName-count-zero": "كرونه أيسلندي",
"displayName-count-one": "كرونه أيسلندي",
"displayName-count-two": "كرونه أيسلندي",
"displayName-count-few": "كرونه أيسلندي",
"displayName-count-many": "كرونه أيسلندي",
"displayName-count-other": "كرونه أيسلندي",
"symbol": "ISK",
"symbol-alt-narrow": "kr"
},
"ITL": {
"displayName": "ليرة إيطالية",
"symbol": "ITL"
},
"JMD": {
"displayName": "دولار جامايكي",
"displayName-count-zero": "دولار جامايكي",
"displayName-count-one": "دولار جامايكي",
"displayName-count-two": "دولار جامايكي",
"displayName-count-few": "دولار جامايكي",
"displayName-count-many": "دولار جامايكي",
"displayName-count-other": "دولار جامايكي",
"symbol": "JMD",
"symbol-alt-narrow": "JM$"
},
"JOD": {
"displayName": "دينار أردني",
"displayName-count-zero": "دينار أردني",
"displayName-count-one": "دينار أردني",
"displayName-count-two": "دينار أردني",
"displayName-count-few": "دينار أردني",
"displayName-count-many": "دينار أردني",
"displayName-count-other": "دينار أردني",
"symbol": "د.أ."
},
"JPY": {
"displayName": "ين ياباني",
"displayName-count-zero": "ين ياباني",
"displayName-count-one": "ين ياباني",
"displayName-count-two": "ين ياباني",
"displayName-count-few": "ين ياباني",
"displayName-count-many": "ين ياباني",
"displayName-count-other": "ين ياباني",
"symbol": "JP¥",
"symbol-alt-narrow": "JP¥"
},
"KES": {
"displayName": "شلن كينيي",
"displayName-count-zero": "شلن كينيي",
"displayName-count-one": "شلن كينيي",
"displayName-count-two": "شلن كينيي",
"displayName-count-few": "شلن كينيي",
"displayName-count-many": "شلن كينيي",
"displayName-count-other": "شلن كينيي",
"symbol": "KES"
},
"KGS": {
"displayName": "سوم قيرغستاني",
"displayName-count-zero": "سوم قيرغستاني",
"displayName-count-one": "سوم قيرغستاني",
"displayName-count-two": "سوم قيرغستاني",
"displayName-count-few": "سوم قيرغستاني",
"displayName-count-many": "سوم قيرغستاني",
"displayName-count-other": "سوم قيرغستاني",
"symbol": "KGS"
},
"KHR": {
"displayName": "رييال كمبودي",
"displayName-count-zero": "رييال كمبودي",
"displayName-count-one": "رييال كمبودي",
"displayName-count-two": "رييال كمبودي",
"displayName-count-few": "رييال كمبودي",
"displayName-count-many": "رييال كمبودي",
"displayName-count-other": "رييال كمبودي",
"symbol": "KHR",
"symbol-alt-narrow": "៛"
},
"KMF": {
"displayName": "فرنك جزر القمر",
"displayName-count-zero": "فرنك جزر القمر",
"displayName-count-one": "فرنك جزر القمر",
"displayName-count-two": "فرنك جزر القمر",
"displayName-count-few": "فرنك جزر القمر",
"displayName-count-many": "فرنك جزر القمر",
"displayName-count-other": "فرنك جزر القمر",
"symbol": "ف.ج.ق.",
"symbol-alt-narrow": "CF"
},
"KPW": {
"displayName": "وون كوريا الشمالية",
"displayName-count-zero": "وون كوريا الشمالية",
"displayName-count-one": "وون كوريا الشمالية",
"displayName-count-two": "وون كوريا الشمالية",
"displayName-count-few": "وون كوريا الشمالية",
"displayName-count-many": "وون كوريا الشمالية",
"displayName-count-other": "وون كوريا الشمالية",
"symbol": "KPW",
"symbol-alt-narrow": "₩"
},
"KRH": {
"displayName": "KRH",
"symbol": "KRH"
},
"KRO": {
"displayName": "KRO",
"symbol": "KRO"
},
"KRW": {
"displayName": "وون كوريا الجنوبية",
"displayName-count-zero": "وون كوريا الجنوبية",
"displayName-count-one": "وون كوريا الجنوبية",
"displayName-count-two": "وون كوريا الجنوبية",
"displayName-count-few": "وون كوريا الجنوبية",
"displayName-count-many": "وون كوريا الجنوبية",
"displayName-count-other": "وون كوريا الجنوبية",
"symbol": "₩",
"symbol-alt-narrow": "₩"
},
"KWD": {
"displayName": "دينار كويتي",
"displayName-count-zero": "دينار كويتي",
"displayName-count-one": "دينار كويتي",
"displayName-count-two": "دينار كويتي",
"displayName-count-few": "دينار كويتي",
"displayName-count-many": "دينار كويتي",
"displayName-count-other": "دينار كويتي",
"symbol": "د.ك."
},
"KYD": {
"displayName": "دولار جزر كيمن",
"displayName-count-zero": "دولار جزر كيمن",
"displayName-count-one": "دولار جزر كيمن",
"displayName-count-two": "دولار جزر كيمن",
"displayName-count-few": "دولار جزر كيمن",
"displayName-count-many": "دولار جزر كيمن",
"displayName-count-other": "دولار جزر كيمن",
"symbol": "KYD",
"symbol-alt-narrow": "KY$"
},
"KZT": {
"displayName": "تينغ كازاخستاني",
"displayName-count-zero": "تينغ كازاخستاني",
"displayName-count-one": "تينغ كازاخستاني",
"displayName-count-two": "تينغ كازاخستاني",
"displayName-count-few": "تينغ كازاخستاني",
"displayName-count-many": "تينغ كازاخستاني",
"displayName-count-other": "تينغ كازاخستاني",
"symbol": "KZT",
"symbol-alt-narrow": "₸"
},
"LAK": {
"displayName": "كيب لاوسي",
"displayName-count-zero": "كيب لاوسي",
"displayName-count-one": "كيب لاوسي",
"displayName-count-two": "كيب لاوسي",
"displayName-count-few": "كيب لاوسي",
"displayName-count-many": "كيب لاوسي",
"displayName-count-other": "كيب لاوسي",
"symbol": "LAK",
"symbol-alt-narrow": "₭"
},
"LBP": {
"displayName": "جنيه لبناني",
"displayName-count-zero": "جنيه لبناني",
"displayName-count-one": "جنيه لبناني",
"displayName-count-two": "جنيه لبناني",
"displayName-count-few": "جنيه لبناني",
"displayName-count-many": "جنيه لبناني",
"displayName-count-other": "جنيه لبناني",
"symbol": "ل.ل.",
"symbol-alt-narrow": "L£"
},
"LKR": {
"displayName": "روبية سريلانكية",
"displayName-count-zero": "روبية سريلانكية",
"displayName-count-one": "روبية سريلانكية",
"displayName-count-two": "روبية سريلانكية",
"displayName-count-few": "روبية سريلانكية",
"displayName-count-many": "روبية سريلانكية",
"displayName-count-other": "روبية سريلانكية",
"symbol": "LKR",
"symbol-alt-narrow": "Rs"
},
"LRD": {
"displayName": "دولار ليبيري",
"displayName-count-zero": "دولار ليبيري",
"displayName-count-one": "دولار ليبيري",
"displayName-count-two": "دولاران ليبيريان",
"displayName-count-few": "دولارات ليبيرية",
"displayName-count-many": "دولارًا ليبيريًا",
"displayName-count-other": "دولار ليبيري",
"symbol": "LRD",
"symbol-alt-narrow": "$"
},
"LSL": {
"displayName": "لوتي ليسوتو",
"symbol": "LSL"
},
"LTL": {
"displayName": "ليتا ليتوانية",
"displayName-count-zero": "ليتا ليتوانية",
"displayName-count-one": "ليتا ليتوانية",
"displayName-count-two": "ليتا ليتوانية",
"displayName-count-few": "ليتا ليتوانية",
"displayName-count-many": "ليتا ليتوانية",
"displayName-count-other": "ليتا ليتوانية",
"symbol": "LTL",
"symbol-alt-narrow": "Lt"
},
"LTT": {
"displayName": "تالوناس ليتواني",
"symbol": "LTT"
},
"LUC": {
"displayName": "فرنك لوكسمبرج قابل للتحويل",
"symbol": "LUC"
},
"LUF": {
"displayName": "فرنك لوكسمبرج",
"symbol": "LUF"
},
"LUL": {
"displayName": "فرنك لوكسمبرج المالي",
"symbol": "LUL"
},
"LVL": {
"displayName": "لاتس لاتفيا",
"displayName-count-zero": "لاتس لاتفي",
"displayName-count-one": "لاتس لاتفي",
"displayName-count-two": "لاتس لاتفي",
"displayName-count-few": "لاتس لاتفي",
"displayName-count-many": "لاتس لاتفي",
"displayName-count-other": "لاتس لاتفي",
"symbol": "LVL",
"symbol-alt-narrow": "Ls"
},
"LVR": {
"displayName": "روبل لاتفيا",
"symbol": "LVR"
},
"LYD": {
"displayName": "دينار ليبي",
"displayName-count-zero": "دينار ليبي",
"displayName-count-one": "دينار ليبي",
"displayName-count-two": "ديناران ليبيان",
"displayName-count-few": "دينارات ليبية",
"displayName-count-many": "دينارًا ليبيًا",
"displayName-count-other": "دينار ليبي",
"symbol": "د.ل."
},
"MAD": {
"displayName": "درهم مغربي",
"displayName-count-zero": "درهم مغربي",
"displayName-count-one": "درهم مغربي",
"displayName-count-two": "درهمان مغربيان",
"displayName-count-few": "دراهم مغربية",
"displayName-count-many": "درهمًا مغربيًا",
"displayName-count-other": "درهم مغربي",
"symbol": "د.م."
},
"MAF": {
"displayName": "فرنك مغربي",
"symbol": "MAF"
},
"MCF": {
"displayName": "MCF",
"symbol": "MCF"
},
"MDC": {
"displayName": "MDC",
"symbol": "MDC"
},
"MDL": {
"displayName": "ليو مولدوفي",
"displayName-count-zero": "ليو مولدوفي",
"displayName-count-one": "ليو مولدوفي",
"displayName-count-two": "ليو مولدوفي",
"displayName-count-few": "ليو مولدوفي",
"displayName-count-many": "ليو مولدوفي",
"displayName-count-other": "ليو مولدوفي",
"symbol": "MDL"
},
"MGA": {
"displayName": "أرياري مدغشقر",
"displayName-count-zero": "أرياري مدغشقر",
"displayName-count-one": "أرياري مدغشقر",
"displayName-count-two": "أرياري مدغشقر",
"displayName-count-few": "أرياري مدغشقر",
"displayName-count-many": "أرياري مدغشقر",
"displayName-count-other": "أرياري مدغشقر",
"symbol": "MGA",
"symbol-alt-narrow": "Ar"
},
"MGF": {
"displayName": "فرنك مدغشقر",
"symbol": "MGF"
},
"MKD": {
"displayName": "دينار مقدوني",
"displayName-count-zero": "دينار مقدوني",
"displayName-count-one": "دينار مقدوني",
"displayName-count-two": "ديناران مقدونيان",
"displayName-count-few": "دينارات مقدونية",
"displayName-count-many": "دينارًا مقدونيًا",
"displayName-count-other": "دينار مقدوني",
"symbol": "MKD"
},
"MKN": {
"displayName": "MKN",
"symbol": "MKN"
},
"MLF": {
"displayName": "فرنك مالي",
"symbol": "MLF"
},
"MMK": {
"displayName": "كيات ميانمار",
"displayName-count-zero": "كيات ميانمار",
"displayName-count-one": "كيات ميانمار",
"displayName-count-two": "كيات ميانمار",
"displayName-count-few": "كيات ميانمار",
"displayName-count-many": "كيات ميانمار",
"displayName-count-other": "كيات ميانمار",
"symbol": "MMK",
"symbol-alt-narrow": "K"
},
"MNT": {
"displayName": "توغروغ منغولي",
"displayName-count-zero": "توغروغ منغولي",
"displayName-count-one": "توغروغ منغولي",
"displayName-count-two": "توغروغ منغولي",
"displayName-count-few": "توغروغ منغولي",
"displayName-count-many": "توغروغ منغولي",
"displayName-count-other": "توغروغ منغولي",
"symbol": "MNT",
"symbol-alt-narrow": "₮"
},
"MOP": {
"displayName": "باتاكا ماكاوي",
"displayName-count-zero": "باتاكا ماكاوي",
"displayName-count-one": "باتاكا ماكاوي",
"displayName-count-two": "باتاكا ماكاوي",
"displayName-count-few": "باتاكا ماكاوي",
"displayName-count-many": "باتاكا ماكاوي",
"displayName-count-other": "باتاكا ماكاوي",
"symbol": "MOP"
},
"MRO": {
"displayName": "أوقية موريتانية",
"displayName-count-zero": "أوقية موريتانية",
"displayName-count-one": "أوقية موريتانية",
"displayName-count-two": "أوقية موريتانية",
"displayName-count-few": "أوقية موريتانية",
"displayName-count-many": "أوقية موريتانية",
"displayName-count-other": "أوقية موريتانية",
"symbol": "أ.م."
},
"MTL": {
"displayName": "ليرة مالطية",
"symbol": "MTL"
},
"MTP": {
"displayName": "جنيه مالطي",
"symbol": "MTP"
},
"MUR": {
"displayName": "روبية موريشيوسية",
"displayName-count-zero": "روبية موريشيوسية",
"displayName-count-one": "روبية موريشيوسية",
"displayName-count-two": "روبية موريشيوسية",
"displayName-count-few": "روبية موريشيوسية",
"displayName-count-many": "روبية موريشيوسية",
"displayName-count-other": "روبية موريشيوسية",
"symbol": "MUR",
"symbol-alt-narrow": "Rs"
},
"MVR": {
"displayName": "روفيه جزر المالديف",
"displayName-count-zero": "روفيه جزر المالديف",
"displayName-count-one": "روفيه جزر المالديف",
"displayName-count-two": "روفيه جزر المالديف",
"displayName-count-few": "روفيه جزر المالديف",
"displayName-count-many": "روفيه جزر المالديف",
"displayName-count-other": "روفيه جزر المالديف",
"symbol": "MVR"
},
"MWK": {
"displayName": "كواشا مالاوي",
"displayName-count-zero": "كواشا مالاوي",
"displayName-count-one": "كواشا مالاوي",
"displayName-count-two": "كواشا مالاوي",
"displayName-count-few": "كواشا مالاوي",
"displayName-count-many": "كواشا مالاوي",
"displayName-count-other": "كواشا مالاوي",
"symbol": "MWK"
},
"MXN": {
"displayName": "بيزو مكسيكي",
"displayName-count-zero": "بيزو مكسيكي",
"displayName-count-one": "بيزو مكسيكي",
"displayName-count-two": "بيزو مكسيكي",
"displayName-count-few": "بيزو مكسيكي",
"displayName-count-many": "بيزو مكسيكي",
"displayName-count-other": "بيزو مكسيكي",
"symbol": "MX$",
"symbol-alt-narrow": "MX$"
},
"MXP": {
"displayName": "بيزو فضي مكسيكي - 1861-1992",
"symbol": "MXP"
},
"MXV": {
"displayName": "MXV",
"symbol": "MXV"
},
"MYR": {
"displayName": "رينغيت ماليزي",
"displayName-count-zero": "رينغيت ماليزي",
"displayName-count-one": "رينغيت ماليزي",
"displayName-count-two": "رينغيت ماليزي",
"displayName-count-few": "رينغيت ماليزي",
"displayName-count-many": "رينغيت ماليزي",
"displayName-count-other": "رينغيت ماليزي",
"symbol": "MYR",
"symbol-alt-narrow": "RM"
},
"MZE": {
"displayName": "اسكود موزمبيقي",
"symbol": "MZE"
},
"MZM": {
"displayName": "MZM",
"symbol": "MZM"
},
"MZN": {
"displayName": "متكال موزمبيقي",
"displayName-count-zero": "متكال موزمبيقي",
"displayName-count-one": "متكال موزمبيقي",
"displayName-count-two": "متكال موزمبيقي",
"displayName-count-few": "متكال موزمبيقي",
"displayName-count-many": "متكال موزمبيقي",
"displayName-count-other": "متكال موزمبيقي",
"symbol": "MZN"
},
"NAD": {
"displayName": "دولار ناميبي",
"displayName-count-zero": "دولار ناميبي",
"displayName-count-one": "دولار ناميبي",
"displayName-count-two": "دولار ناميبي",
"displayName-count-few": "دولار ناميبي",
"displayName-count-many": "دولار ناميبي",
"displayName-count-other": "دولار ناميبي",
"symbol": "NAD",
"symbol-alt-narrow": "$"
},
"NGN": {
"displayName": "نايرا نيجيري",
"displayName-count-zero": "نايرا نيجيري",
"displayName-count-one": "نايرا نيجيري",
"displayName-count-two": "نايرا نيجيري",
"displayName-count-few": "نايرا نيجيري",
"displayName-count-many": "نايرا نيجيري",
"displayName-count-other": "نايرا نيجيري",
"symbol": "NGN",
"symbol-alt-narrow": "₦"
},
"NIC": {
"displayName": "كوردوبة نيكاراجوا",
"symbol": "NIC"
},
"NIO": {
"displayName": "قرطبة نيكاراغوا",
"displayName-count-zero": "قرطبة نيكاراغوا",
"displayName-count-one": "قرطبة نيكاراغوا",
"displayName-count-two": "قرطبة نيكاراغوا",
"displayName-count-few": "قرطبة نيكاراغوا",
"displayName-count-many": "قرطبة نيكاراغوا",
"displayName-count-other": "قرطبة نيكاراغوا",
"symbol": "NIO",
"symbol-alt-narrow": "C$"
},
"NLG": {
"displayName": "جلدر هولندي",
"symbol": "NLG"
},
"NOK": {
"displayName": "كرونة نرويجية",
"displayName-count-zero": "كرونة نرويجية",
"displayName-count-one": "كرونة نرويجية",
"displayName-count-two": "كرونة نرويجية",
"displayName-count-few": "كرونة نرويجية",
"displayName-count-many": "كرونة نرويجية",
"displayName-count-other": "كرونة نرويجية",
"symbol": "NOK",
"symbol-alt-narrow": "kr"
},
"NPR": {
"displayName": "روبية نيبالي",
"displayName-count-zero": "روبية نيبالي",
"displayName-count-one": "روبية نيبالي",
"displayName-count-two": "روبية نيبالي",
"displayName-count-few": "روبية نيبالي",
"displayName-count-many": "روبية نيبالي",
"displayName-count-other": "روبية نيبالي",
"symbol": "NPR",
"symbol-alt-narrow": "Rs"
},
"NZD": {
"displayName": "دولار نيوزيلندي",
"displayName-count-zero": "دولار نيوزيلندي",
"displayName-count-one": "دولار نيوزيلندي",
"displayName-count-two": "دولار نيوزيلندي",
"displayName-count-few": "دولار نيوزيلندي",
"displayName-count-many": "دولار نيوزيلندي",
"displayName-count-other": "دولار نيوزيلندي",
"symbol": "NZ$",
"symbol-alt-narrow": "NZ$"
},
"OMR": {
"displayName": "ريال عماني",
"displayName-count-zero": "ريال عماني",
"displayName-count-one": "ريال عماني",
"displayName-count-two": "ريال عماني",
"displayName-count-few": "ريال عماني",
"displayName-count-many": "ريال عماني",
"displayName-count-other": "ريال عماني",
"symbol": "ر.ع."
},
"PAB": {
"displayName": "بالبوا بنمي",
"displayName-count-zero": "بالبوا بنمي",
"displayName-count-one": "بالبوا بنمي",
"displayName-count-two": "بالبوا بنمي",
"displayName-count-few": "بالبوا بنمي",
"displayName-count-many": "بالبوا بنمي",
"displayName-count-other": "بالبوا بنمي",
"symbol": "PAB"
},
"PEI": {
"displayName": "PEI",
"symbol": "PEI"
},
"PEN": {
"displayName": "سول جديد البيرو",
"displayName-count-zero": "سول جديد البيرو",
"displayName-count-one": "سول جديد البيرو",
"displayName-count-two": "سول جديد البيرو",
"displayName-count-few": "سول جديد البيرو",
"displayName-count-many": "سول جديد البيرو",
"displayName-count-other": "سول جديد البيرو",
"symbol": "PEN"
},
"PES": {
"displayName": "PES",
"symbol": "PES"
},
"PGK": {
"displayName": "كينا بابوا غينيا الجديدة",
"displayName-count-zero": "كينا بابوا غينيا الجديدة",
"displayName-count-one": "كينا بابوا غينيا الجديدة",
"displayName-count-two": "كينا بابوا غينيا الجديدة",
"displayName-count-few": "كينا بابوا غينيا الجديدة",
"displayName-count-many": "كينا بابوا غينيا الجديدة",
"displayName-count-other": "كينا بابوا غينيا الجديدة",
"symbol": "PGK"
},
"PHP": {
"displayName": "بيزو فلبيني",
"displayName-count-zero": "بيزو فلبيني",
"displayName-count-one": "بيزو فلبيني",
"displayName-count-two": "بيزو فلبيني",
"displayName-count-few": "بيزو فلبيني",
"displayName-count-many": "بيزو فلبيني",
"displayName-count-other": "بيزو فلبيني",
"symbol": "PHP",
"symbol-alt-narrow": "₱"
},
"PKR": {
"displayName": "روبية باكستاني",
"displayName-count-zero": "روبية باكستاني",
"displayName-count-one": "روبية باكستاني",
"displayName-count-two": "روبية باكستاني",
"displayName-count-few": "روبية باكستاني",
"displayName-count-many": "روبية باكستاني",
"displayName-count-other": "روبية باكستاني",
"symbol": "PKR",
"symbol-alt-narrow": "Rs"
},
"PLN": {
"displayName": "زلوتي بولندي",
"displayName-count-zero": "زلوتي بولندي",
"displayName-count-one": "زلوتي بولندي",
"displayName-count-two": "زلوتي بولندي",
"displayName-count-few": "زلوتي بولندي",
"displayName-count-many": "زلوتي بولندي",
"displayName-count-other": "زلوتي بولندي",
"symbol": "PLN",
"symbol-alt-narrow": "zł"
},
"PLZ": {
"displayName": "زلوتي بولندي - 1950-1995",
"symbol": "PLZ"
},
"PTE": {
"displayName": "اسكود برتغالي",
"symbol": "PTE"
},
"PYG": {
"displayName": "جواراني باراجواي",
"displayName-count-zero": "جواراني باراجواي",
"displayName-count-one": "جواراني باراجواي",
"displayName-count-two": "جواراني باراجواي",
"displayName-count-few": "جواراني باراجواي",
"displayName-count-many": "جواراني باراجواي",
"displayName-count-other": "جواراني باراجواي",
"symbol": "PYG",
"symbol-alt-narrow": "₲"
},
"QAR": {
"displayName": "ريال قطري",
"displayName-count-zero": "ريال قطري",
"displayName-count-one": "ريال قطري",
"displayName-count-two": "ريال قطري",
"displayName-count-few": "ريال قطري",
"displayName-count-many": "ريال قطري",
"displayName-count-other": "ريال قطري",
"symbol": "ر.ق."
},
"RHD": {
"displayName": "دولار روديسي",
"symbol": "RHD"
},
"ROL": {
"displayName": "ليو روماني قديم",
"symbol": "ROL"
},
"RON": {
"displayName": "ليو روماني",
"displayName-count-zero": "ليو روماني",
"displayName-count-one": "ليو روماني",
"displayName-count-two": "ليو روماني",
"displayName-count-few": "ليو روماني",
"displayName-count-many": "ليو روماني",
"displayName-count-other": "ليو روماني",
"symbol": "RON",
"symbol-alt-narrow": "lei"
},
"RSD": {
"displayName": "دينار صربي",
"displayName-count-zero": "دينار صربي",
"displayName-count-one": "دينار صربي",
"displayName-count-two": "ديناران صربيان",
"displayName-count-few": "دينارات صربية",
"displayName-count-many": "دينارًا صربيًا",
"displayName-count-other": "دينار صربي",
"symbol": "RSD"
},
"RUB": {
"displayName": "روبل روسي",
"displayName-count-zero": "روبل روسي",
"displayName-count-one": "روبل روسي",
"displayName-count-two": "روبل روسي",
"displayName-count-few": "روبل روسي",
"displayName-count-many": "روبل روسي",
"displayName-count-other": "روبل روسي",
"symbol": "RUB",
"symbol-alt-narrow": "₽"
},
"RUR": {
"displayName": "روبل روسي - 1991-1998",
"symbol": "RUR",
"symbol-alt-narrow": "р."
},
"RWF": {
"displayName": "فرنك رواندي",
"displayName-count-zero": "فرنك رواندي",
"displayName-count-one": "فرنك رواندي",
"displayName-count-two": "فرنك رواندي",
"displayName-count-few": "فرنك رواندي",
"displayName-count-many": "فرنك رواندي",
"displayName-count-other": "فرنك رواندي",
"symbol": "RWF",
"symbol-alt-narrow": "RF"
},
"SAR": {
"displayName": "ريال سعودي",
"displayName-count-zero": "ريال سعودي",
"displayName-count-one": "ريال سعودي",
"displayName-count-two": "ريال سعودي",
"displayName-count-few": "ريال سعودي",
"displayName-count-many": "ريال سعودي",
"displayName-count-other": "ريال سعودي",
"symbol": "ر.س."
},
"SBD": {
"displayName": "دولار جزر سليمان",
"displayName-count-zero": "دولار جزر سليمان",
"displayName-count-one": "دولار جزر سليمان",
"displayName-count-two": "دولار جزر سليمان",
"displayName-count-few": "دولار جزر سليمان",
"displayName-count-many": "دولار جزر سليمان",
"displayName-count-other": "دولار جزر سليمان",
"symbol": "SBD",
"symbol-alt-narrow": "SB$"
},
"SCR": {
"displayName": "روبية سيشيلية",
"displayName-count-zero": "روبية سيشيلية",
"displayName-count-one": "روبية سيشيلية",
"displayName-count-two": "روبية سيشيلية",
"displayName-count-few": "روبية سيشيلية",
"displayName-count-many": "روبية سيشيلية",
"displayName-count-other": "روبية سيشيلية",
"symbol": "SCR"
},
"SDD": {
"displayName": "دينار سوداني",
"symbol": "د.س."
},
"SDG": {
"displayName": "جنيه سوداني",
"displayName-count-zero": "جنيه سوداني",
"displayName-count-one": "جنيه سوداني",
"displayName-count-two": "جنيه سوداني",
"displayName-count-few": "جنيهات سودانية",
"displayName-count-many": "جنيهًا سودانيًا",
"displayName-count-other": "جنيه سوداني",
"symbol": "ج.س."
},
"SDP": {
"displayName": "جنيه سوداني قديم",
"symbol": "SDP"
},
"SEK": {
"displayName": "كرونة سويدية",
"displayName-count-zero": "كرونة سويدية",
"displayName-count-one": "كرونة سويدية",
"displayName-count-two": "كرونة سويدية",
"displayName-count-few": "كرونة سويدية",
"displayName-count-many": "كرونة سويدية",
"displayName-count-other": "كرونة سويدية",
"symbol": "SEK",
"symbol-alt-narrow": "kr"
},
"SGD": {
"displayName": "دولار سنغافوري",
"displayName-count-zero": "دولار سنغافوري",
"displayName-count-one": "دولار سنغافوري",
"displayName-count-two": "دولار سنغافوري",
"displayName-count-few": "دولار سنغافوري",
"displayName-count-many": "دولار سنغافوري",
"displayName-count-other": "دولار سنغافوري",
"symbol": "SGD",
"symbol-alt-narrow": "$"
},
"SHP": {
"displayName": "جنيه سانت هيلين",
"displayName-count-zero": "جنيه سانت هيلين",
"displayName-count-one": "جنيه سانت هيلين",
"displayName-count-two": "جنيه سانت هيلين",
"displayName-count-few": "جنيه سانت هيلين",
"displayName-count-many": "جنيه سانت هيلين",
"displayName-count-other": "جنيه سانت هيلين",
"symbol": "SHP",
"symbol-alt-narrow": "£"
},
"SIT": {
"displayName": "تولار سلوفيني",
"symbol": "SIT"
},
"SKK": {
"displayName": "كرونة سلوفاكية",
"symbol": "SKK"
},
"SLL": {
"displayName": "ليون سيراليوني",
"displayName-count-zero": "ليون سيراليوني",
"displayName-count-one": "ليون سيراليوني",
"displayName-count-two": "ليون سيراليوني",
"displayName-count-few": "ليون سيراليوني",
"displayName-count-many": "ليون سيراليوني",
"displayName-count-other": "ليون سيراليوني",
"symbol": "SLL"
},
"SOS": {
"displayName": "شلن صومالي",
"displayName-count-zero": "شلن صومالي",
"displayName-count-one": "شلن صومالي",
"displayName-count-two": "شلن صومالي",
"displayName-count-few": "شلن صومالي",
"displayName-count-many": "شلن صومالي",
"displayName-count-other": "شلن صومالي",
"symbol": "SOS"
},
"SRD": {
"displayName": "دولار سورينامي",
"displayName-count-zero": "دولار سورينامي",
"displayName-count-one": "دولار سورينامي",
"displayName-count-two": "دولار سورينامي",
"displayName-count-few": "دولار سورينامي",
"displayName-count-many": "دولار سورينامي",
"displayName-count-other": "دولار سورينامي",
"symbol": "SRD",
"symbol-alt-narrow": "SR$"
},
"SRG": {
"displayName": "جلدر سورينامي",
"symbol": "SRG"
},
"SSP": {
"displayName": "جنيه جنوب السودان",
"displayName-count-zero": "جنيه جنوب السودان",
"displayName-count-one": "جنيه جنوب السودان",
"displayName-count-two": "جنيهان جنوب السودان",
"displayName-count-few": "جنيهات جنوب السودان",
"displayName-count-many": "جنيهًا جنوب السودان",
"displayName-count-other": "جنيه جنوب السودان",
"symbol": "SSP",
"symbol-alt-narrow": "£"
},
"STD": {
"displayName": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-zero": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-one": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-two": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-few": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-many": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-other": "دوبرا ساو تومي وبرينسيبي",
"symbol": "STD",
"symbol-alt-narrow": "Db"
},
"SUR": {
"displayName": "روبل سوفيتي",
"symbol": "SUR"
},
"SVC": {
"displayName": "كولون سلفادوري",
"symbol": "SVC"
},
"SYP": {
"displayName": "ليرة سورية",
"displayName-count-zero": "ليرة سورية",
"displayName-count-one": "ليرة سورية",
"displayName-count-two": "ليرة سورية",
"displayName-count-few": "ليرة سورية",
"displayName-count-many": "ليرة سورية",
"displayName-count-other": "ليرة سورية",
"symbol": "ل.س.",
"symbol-alt-narrow": "£"
},
"SZL": {
"displayName": "ليلانجيني سوازيلندي",
"displayName-count-zero": "ليلانجيني سوازيلندي",
"displayName-count-one": "ليلانجيني سوازيلندي",
"displayName-count-two": "ليلانجيني سوازيلندي",
"displayName-count-few": "ليلانجيني سوازيلندي",
"displayName-count-many": "ليلانجيني سوازيلندي",
"displayName-count-other": "ليلانجيني سوازيلندي",
"symbol": "SZL"
},
"THB": {
"displayName": "باخت تايلاندي",
"displayName-count-zero": "باخت تايلاندي",
"displayName-count-one": "باخت تايلاندي",
"displayName-count-two": "باخت تايلاندي",
"displayName-count-few": "باخت تايلاندي",
"displayName-count-many": "باخت تايلاندي",
"displayName-count-other": "باخت تايلاندي",
"symbol": "฿",
"symbol-alt-narrow": "฿"
},
"TJR": {
"displayName": "روبل طاجيكستاني",
"symbol": "TJR"
},
"TJS": {
"displayName": "سوموني طاجيكستاني",
"displayName-count-zero": "سوموني طاجيكستاني",
"displayName-count-one": "سوموني طاجيكستاني",
"displayName-count-two": "سوموني طاجيكستاني",
"displayName-count-few": "سوموني طاجيكستاني",
"displayName-count-many": "سوموني طاجيكستاني",
"displayName-count-other": "سوموني طاجيكستاني",
"symbol": "TJS"
},
"TMM": {
"displayName": "مانات تركمنستاني",
"symbol": "TMM"
},
"TMT": {
"displayName": "مانات تركمانستان",
"displayName-count-zero": "مانات تركمانستان",
"displayName-count-one": "مانات تركمانستان",
"displayName-count-two": "مانات تركمانستان",
"displayName-count-few": "مانات تركمانستان",
"displayName-count-many": "مانات تركمانستان",
"displayName-count-other": "مانات تركمانستان",
"symbol": "TMT"
},
"TND": {
"displayName": "دينار تونسي",
"displayName-count-zero": "دينار تونسي",
"displayName-count-one": "دينار تونسي",
"displayName-count-two": "ديناران تونسيان",
"displayName-count-few": "دينارات تونسية",
"displayName-count-many": "دينارًا تونسيًا",
"displayName-count-other": "دينار تونسي",
"symbol": "د.ت."
},
"TOP": {
"displayName": "بانغا تونغا",
"displayName-count-zero": "بانغا تونغا",
"displayName-count-one": "بانغا تونغا",
"displayName-count-two": "بانغا تونغا",
"displayName-count-few": "بانغا تونغا",
"displayName-count-many": "بانغا تونغا",
"displayName-count-other": "بانغا تونغا",
"symbol": "TOP",
"symbol-alt-narrow": "T$"
},
"TPE": {
"displayName": "اسكود تيموري",
"symbol": "TPE"
},
"TRL": {
"displayName": "ليرة تركي",
"symbol": "TRL"
},
"TRY": {
"displayName": "ليرة تركية",
"displayName-count-zero": "ليرة تركية",
"displayName-count-one": "ليرة تركية",
"displayName-count-two": "ليرة تركية",
"displayName-count-few": "ليرة تركية",
"displayName-count-many": "ليرة تركية",
"displayName-count-other": "ليرة تركية",
"symbol": "TRY",
"symbol-alt-narrow": "₺",
"symbol-alt-variant": "TL"
},
"TTD": {
"displayName": "دولار ترينداد وتوباجو",
"displayName-count-zero": "دولار ترينداد وتوباجو",
"displayName-count-one": "دولار ترينداد وتوباجو",
"displayName-count-two": "دولار ترينداد وتوباجو",
"displayName-count-few": "دولار ترينداد وتوباجو",
"displayName-count-many": "دولار ترينداد وتوباجو",
"displayName-count-other": "دولار ترينداد وتوباجو",
"symbol": "TTD",
"symbol-alt-narrow": "TT$"
},
"TWD": {
"displayName": "دولار تايواني",
"displayName-count-zero": "دولار تايواني",
"displayName-count-one": "دولار تايواني",
"displayName-count-two": "دولار تايواني",
"displayName-count-few": "دولار تايواني",
"displayName-count-many": "دولار تايواني",
"displayName-count-other": "دولار تايواني",
"symbol": "NT$",
"symbol-alt-narrow": "NT$"
},
"TZS": {
"displayName": "شلن تنزاني",
"displayName-count-zero": "شلن تنزاني",
"displayName-count-one": "شلن تنزاني",
"displayName-count-two": "شلن تنزاني",
"displayName-count-few": "شلن تنزاني",
"displayName-count-many": "شلن تنزاني",
"displayName-count-other": "شلن تنزاني",
"symbol": "TZS"
},
"UAH": {
"displayName": "هريفنيا أوكراني",
"displayName-count-zero": "هريفنيا أوكراني",
"displayName-count-one": "هريفنيا أوكراني",
"displayName-count-two": "هريفنيا أوكراني",
"displayName-count-few": "هريفنيا أوكراني",
"displayName-count-many": "هريفنيا أوكراني",
"displayName-count-other": "هريفنيا أوكراني",
"symbol": "UAH",
"symbol-alt-narrow": "₴"
},
"UAK": {
"displayName": "UAK",
"symbol": "UAK"
},
"UGS": {
"displayName": "شلن أوغندي - 1966-1987",
"symbol": "UGS"
},
"UGX": {
"displayName": "شلن أوغندي",
"displayName-count-zero": "شلن أوغندي",
"displayName-count-one": "شلن أوغندي",
"displayName-count-two": "شلن أوغندي",
"displayName-count-few": "شلن أوغندي",
"displayName-count-many": "شلن أوغندي",
"displayName-count-other": "شلن أوغندي",
"symbol": "UGX"
},
"USD": {
"displayName": "دولار أمريكي",
"displayName-count-zero": "دولار أمريكي",
"displayName-count-one": "دولار أمريكي",
"displayName-count-two": "دولار أمريكي",
"displayName-count-few": "دولار أمريكي",
"displayName-count-many": "دولار أمريكي",
"displayName-count-other": "دولار أمريكي",
"symbol": "US$",
"symbol-alt-narrow": "US$"
},
"USN": {
"displayName": "دولار أمريكي (اليوم التالي)",
"symbol": "USN"
},
"USS": {
"displayName": "دولار أمريكي (نفس اليوم)",
"symbol": "USS"
},
"UYI": {
"displayName": "UYI",
"symbol": "UYI"
},
"UYP": {
"displayName": "بيزو أوروجواي - 1975-1993",
"symbol": "UYP"
},
"UYU": {
"displayName": "بيزو اوروغواي",
"displayName-count-zero": "بيزو اوروغواي",
"displayName-count-one": "بيزو اوروغواي",
"displayName-count-two": "بيزو اوروغواي",
"displayName-count-few": "بيزو اوروغواي",
"displayName-count-many": "بيزو اوروغواي",
"displayName-count-other": "بيزو اوروغواي",
"symbol": "UYU",
"symbol-alt-narrow": "UY$"
},
"UZS": {
"displayName": "سوم أوزبكستاني",
"displayName-count-zero": "سوم أوزبكستاني",
"displayName-count-one": "سوم أوزبكستاني",
"displayName-count-two": "سوم أوزبكستاني",
"displayName-count-few": "سوم أوزبكستاني",
"displayName-count-many": "سوم أوزبكستاني",
"displayName-count-other": "سوم أوزبكستاني",
"symbol": "UZS"
},
"VEB": {
"displayName": "بوليفار فنزويلي - 1871-2008",
"symbol": "VEB"
},
"VEF": {
"displayName": "بوليفار فنزويلي",
"displayName-count-zero": "بوليفار فنزويلي",
"displayName-count-one": "بوليفار فنزويلي",
"displayName-count-two": "بوليفار فنزويلي",
"displayName-count-few": "بوليفار فنزويلي",
"displayName-count-many": "بوليفار فنزويلي",
"displayName-count-other": "بوليفار فنزويلي",
"symbol": "VEF",
"symbol-alt-narrow": "Bs"
},
"VND": {
"displayName": "دونج فيتنامي",
"displayName-count-zero": "دونج فيتنامي",
"displayName-count-one": "دونج فيتنامي",
"displayName-count-two": "دونج فيتنامي",
"displayName-count-few": "دونج فيتنامي",
"displayName-count-many": "دونج فيتنامي",
"displayName-count-other": "دونج فيتنامي",
"symbol": "₫",
"symbol-alt-narrow": "₫"
},
"VNN": {
"displayName": "VNN",
"symbol": "VNN"
},
"VUV": {
"displayName": "فاتو فانواتو",
"displayName-count-zero": "فاتو فانواتو",
"displayName-count-one": "فاتو فانواتو",
"displayName-count-two": "فاتو فانواتو",
"displayName-count-few": "فاتو فانواتو",
"displayName-count-many": "فاتو فانواتو",
"displayName-count-other": "فاتو فانواتو",
"symbol": "VUV"
},
"WST": {
"displayName": "تالا ساموا",
"displayName-count-zero": "تالا ساموا",
"displayName-count-one": "تالا ساموا",
"displayName-count-two": "تالا ساموا",
"displayName-count-few": "تالا ساموا",
"displayName-count-many": "تالا ساموا",
"displayName-count-other": "تالا ساموا",
"symbol": "WST"
},
"XAF": {
"displayName": "فرنك وسط أفريقي",
"displayName-count-zero": "فرنك وسط أفريقي",
"displayName-count-one": "فرنك وسط أفريقي",
"displayName-count-two": "فرنك وسط أفريقي",
"displayName-count-few": "فرنك وسط أفريقي",
"displayName-count-many": "فرنك وسط أفريقي",
"displayName-count-other": "فرنك وسط أفريقي",
"symbol": "FCFA"
},
"XAG": {
"displayName": "فضة",
"symbol": "XAG"
},
"XAU": {
"displayName": "ذهب",
"symbol": "XAU"
},
"XBA": {
"displayName": "الوحدة الأوروبية المركبة",
"symbol": "XBA"
},
"XBB": {
"displayName": "الوحدة المالية الأوروبية",
"symbol": "XBB"
},
"XBC": {
"displayName": "الوحدة الحسابية الأوروبية",
"symbol": "XBC"
},
"XBD": {
"displayName": "(XBD)وحدة الحساب الأوروبية",
"symbol": "XBD"
},
"XCD": {
"displayName": "دولار شرق الكاريبي",
"displayName-count-zero": "دولار شرق الكاريبي",
"displayName-count-one": "دولار شرق الكاريبي",
"displayName-count-two": "دولار شرق الكاريبي",
"displayName-count-few": "دولار شرق الكاريبي",
"displayName-count-many": "دولار شرق الكاريبي",
"displayName-count-other": "دولار شرق الكاريبي",
"symbol": "EC$",
"symbol-alt-narrow": "$"
},
"XDR": {
"displayName": "حقوق السحب الخاصة",
"symbol": "XDR"
},
"XEU": {
"displayName": "وحدة النقد الأوروبية",
"symbol": "XEU"
},
"XFO": {
"displayName": "فرنك فرنسي ذهبي",
"symbol": "XFO"
},
"XFU": {
"displayName": "(UIC)فرنك فرنسي",
"symbol": "XFU"
},
"XOF": {
"displayName": "فرنك غرب أفريقي",
"displayName-count-zero": "فرنك غرب أفريقي",
"displayName-count-one": "فرنك غرب أفريقي",
"displayName-count-two": "فرنك غرب أفريقي",
"displayName-count-few": "فرنك غرب أفريقي",
"displayName-count-many": "فرنك غرب أفريقي",
"displayName-count-other": "فرنك غرب أفريقي",
"symbol": "CFA"
},
"XPD": {
"displayName": "بالاديوم",
"symbol": "XPD"
},
"XPF": {
"displayName": "فرنك سي إف بي",
"displayName-count-zero": "فرنك سي إف بي",
"displayName-count-one": "فرنك سي إف بي",
"displayName-count-two": "فرنك سي إف بي",
"displayName-count-few": "فرنك سي إف بي",
"displayName-count-many": "فرنك سي إف بي",
"displayName-count-other": "فرنك سي إف بي",
"symbol": "CFPF"
},
"XPT": {
"displayName": "البلاتين",
"symbol": "XPT"
},
"XRE": {
"displayName": "XRE",
"symbol": "XRE"
},
"XSU": {
"displayName": "XSU",
"symbol": "XSU"
},
"XTS": {
"displayName": "كود اختبار العملة",
"symbol": "XTS"
},
"XUA": {
"displayName": "XUA",
"symbol": "XUA"
},
"XXX": {
"displayName": "عملة غير معروفة",
"displayName-count-zero": "(عملة غير معروفة)",
"displayName-count-one": "(عملة غير معروفة)",
"displayName-count-two": "(عملة غير معروفة)",
"displayName-count-few": "(عملة غير معروفة)",
"displayName-count-many": "(عملة غير معروفة)",
"displayName-count-other": "(عملة غير معروفة)",
"symbol": "***"
},
"YDD": {
"displayName": "دينار يمني",
"symbol": "YDD"
},
"YER": {
"displayName": "ريال يمني",
"displayName-count-zero": "ريال يمني",
"displayName-count-one": "ريال يمني",
"displayName-count-two": "ريال يمني",
"displayName-count-few": "ريال يمني",
"displayName-count-many": "ريال يمني",
"displayName-count-other": "ريال يمني",
"symbol": "ر.ي."
},
"YUD": {
"displayName": "دينار يوغسلافي",
"symbol": "YUD"
},
"YUM": {
"displayName": "YUM",
"symbol": "YUM"
},
"YUN": {
"displayName": "دينار يوغسلافي قابل للتحويل",
"symbol": "YUN"
},
"YUR": {
"displayName": "YUR",
"symbol": "YUR"
},
"ZAL": {
"displayName": "راند جنوب أفريقيا -مالي",
"symbol": "ZAL"
},
"ZAR": {
"displayName": "راند جنوب أفريقيا",
"displayName-count-zero": "راند جنوب أفريقيا",
"displayName-count-one": "راند جنوب أفريقيا",
"displayName-count-two": "راند جنوب أفريقيا",
"displayName-count-few": "راند جنوب أفريقيا",
"displayName-count-many": "راند جنوب أفريقيا",
"displayName-count-other": "راند جنوب أفريقيا",
"symbol": "ZAR",
"symbol-alt-narrow": "R"
},
"ZMK": {
"displayName": "كواشا زامبي - 1968-2012",
"displayName-count-zero": "كواشا زامبي - 1968-2012",
"displayName-count-one": "كواشا زامبي - 1968-2012",
"displayName-count-two": "كواشا زامبي - 1968-2012",
"displayName-count-few": "كواشا زامبي - 1968-2012",
"displayName-count-many": "كواشا زامبي - 1968-2012",
"displayName-count-other": "كواشا زامبي - 1968-2012",
"symbol": "ZMK"
},
"ZMW": {
"displayName": "كواشا زامبي",
"displayName-count-zero": "كواشا زامبي",
"displayName-count-one": "كواشا زامبي",
"displayName-count-two": "كواشا زامبي",
"displayName-count-few": "كواشا زامبي",
"displayName-count-many": "كواشا زامبي",
"displayName-count-other": "كواشا زامبي",
"symbol": "ZMW",
"symbol-alt-narrow": "ZK"
},
"ZRN": {
"displayName": "زائير زائيري جديد",
"symbol": "ZRN"
},
"ZRZ": {
"displayName": "زائير زائيري",
"symbol": "ZRZ"
},
"ZWD": {
"displayName": "دولار زمبابوي",
"symbol": "ZWD"
},
"ZWL": {
"displayName": "دولار زمبابوي 2009",
"symbol": "ZWL"
},
"ZWR": {
"displayName": "ZWR",
"symbol": "ZWR"
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"numbers";
{
"currencies";
{
"ADP";
{
"displayName";
"بيستا أندوري",
"symbol";
"ADP";
}
"AED";
{
"displayName";
"درهم إماراتي",
"displayName-count-zero";
"درهم إماراتي",
"displayName-count-one";
"درهم إماراتي",
"displayName-count-two";
"درهم إماراتي",
"displayName-count-few";
"درهم إماراتي",
"displayName-count-many";
"درهم إماراتي",
"displayName-count-other";
"درهم إماراتي",
"symbol";
"د.إ.";
}
"AFA";
{
"displayName";
"أفغاني - 1927-2002",
"symbol";
"AFA";
}
"AFN";
{
"displayName";
"أفغاني",
"displayName-count-zero";
"أفغاني أفغانستاني",
"displayName-count-one";
"أفغاني أفغانستاني",
"displayName-count-two";
"أفغاني أفغانستاني",
"displayName-count-few";
"أفغاني أفغانستاني",
"displayName-count-many";
"أفغاني أفغانستاني",
"displayName-count-other";
"أفغاني أفغانستاني",
"symbol";
"AFN";
}
"ALL";
{
"displayName";
"ليك ألباني",
"displayName-count-zero";
"ليك ألباني",
"displayName-count-one";
"ليك ألباني",
"displayName-count-two";
"ليك ألباني",
"displayName-count-few";
"ليك ألباني",
"displayName-count-many";
"ليك ألباني",
"displayName-count-other";
"ليك ألباني",
"symbol";
"ALL";
}
"AMD";
{
"displayName";
"درام أرميني",
"displayName-count-zero";
"درام أرميني",
"displayName-count-one";
"درام أرميني",
"displayName-count-two";
"درام أرميني",
"displayName-count-few";
"درام أرميني",
"displayName-count-many";
"درام أرميني",
"displayName-count-other";
"درام أرميني",
"symbol";
"AMD";
}
"ANG";
{
"displayName";
"غيلدر أنتيلي هولندي",
"displayName-count-zero";
"غيلدر أنتيلي هولندي",
"displayName-count-one";
"غيلدر أنتيلي هولندي",
"displayName-count-two";
"غيلدر أنتيلي هولندي",
"displayName-count-few";
"غيلدر أنتيلي هولندي",
"displayName-count-many";
"غيلدر أنتيلي هولندي",
"displayName-count-other";
"غيلدر أنتيلي هولندي",
"symbol";
"ANG";
}
"AOA";
{
"displayName";
"كوانزا أنجولي",
"displayName-count-zero";
"كوانزا أنجولي",
"displayName-count-one";
"كوانزا أنجولي",
"displayName-count-two";
"كوانزا أنجولي",
"displayName-count-few";
"كوانزا أنجولي",
"displayName-count-many";
"كوانزا أنجولي",
"displayName-count-other";
"كوانزا أنجولي",
"symbol";
"AOA",
"symbol-alt-narrow";
"Kz";
}
"AOK";
{
"displayName";
"كوانزا أنجولي - 1977-1990",
"symbol";
"AOK";
}
"AON";
{
"displayName";
"كوانزا أنجولي جديدة - 1990-2000",
"symbol";
"AON";
}
"AOR";
{
"displayName";
"كوانزا أنجولي معدلة - 1995 - 1999",
"symbol";
"AOR";
}
"ARA";
{
"displayName";
"استرال أرجنتيني",
"symbol";
"ARA";
}
"ARL";
{
"displayName";
"ARL",
"symbol";
"ARL";
}
"ARM";
{
"displayName";
"ARM",
"symbol";
"ARM";
}
"ARP";
{
"displayName";
"بيزو أرجنتيني - 1983-1985",
"symbol";
"ARP";
}
"ARS";
{
"displayName";
"بيزو أرجنتيني",
"displayName-count-zero";
"بيزو أرجنتيني",
"displayName-count-one";
"بيزو أرجنتيني",
"displayName-count-two";
"بيزو أرجنتيني",
"displayName-count-few";
"بيزو أرجنتيني",
"displayName-count-many";
"بيزو أرجنتيني",
"displayName-count-other";
"بيزو أرجنتيني",
"symbol";
"ARS",
"symbol-alt-narrow";
"AR$";
}
"ATS";
{
"displayName";
"شلن نمساوي",
"symbol";
"ATS";
}
"AUD";
{
"displayName";
"دولار أسترالي",
"displayName-count-zero";
"دولار أسترالي",
"displayName-count-one";
"دولار أسترالي",
"displayName-count-two";
"دولار أسترالي",
"displayName-count-few";
"دولار أسترالي",
"displayName-count-many";
"دولار أسترالي",
"displayName-count-other";
"دولار أسترالي",
"symbol";
"AU$",
"symbol-alt-narrow";
"AU$";
}
"AWG";
{
"displayName";
"فلورن أروبي",
"displayName-count-zero";
"فلورن أروبي",
"displayName-count-one";
"فلورن أروبي",
"displayName-count-two";
"فلورن أروبي",
"displayName-count-few";
"فلورن أروبي",
"displayName-count-many";
"فلورن أروبي",
"displayName-count-other";
"فلورن أروبي",
"symbol";
"AWG";
}
"AZM";
{
"displayName";
"مانات أذريبجاني",
"symbol";
"AZM";
}
"AZN";
{
"displayName";
"مانات أذربيجان",
"displayName-count-zero";
"مانت أذربيجاني",
"displayName-count-one";
"مانت أذربيجاني",
"displayName-count-two";
"مانت أذربيجاني",
"displayName-count-few";
"مانت أذربيجاني",
"displayName-count-many";
"مانت أذربيجاني",
"displayName-count-other";
"مانت أذربيجاني",
"symbol";
"AZN";
}
"BAD";
{
"displayName";
"دينار البوسنة والهرسك",
"symbol";
"BAD";
}
"BAM";
{
"displayName";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-zero";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-one";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-two";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-few";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-many";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-other";
"مارك البوسنة والهرسك قابل للتحويل",
"symbol";
"BAM",
"symbol-alt-narrow";
"KM";
}
"BAN";
{
"displayName";
"BAN",
"symbol";
"BAN";
}
"BBD";
{
"displayName";
"دولار بربادوسي",
"displayName-count-zero";
"دولار بربادوسي",
"displayName-count-one";
"دولار بربادوسي",
"displayName-count-two";
"دولار بربادوسي",
"displayName-count-few";
"دولار بربادوسي",
"displayName-count-many";
"دولار بربادوسي",
"displayName-count-other";
"دولار بربادوسي",
"symbol";
"BBD",
"symbol-alt-narrow";
"BB$";
}
"BDT";
{
"displayName";
"تاكا بنجلاديشي",
"displayName-count-zero";
"تاكا بنجلاديشي",
"displayName-count-one";
"تاكا بنجلاديشي",
"displayName-count-two";
"تاكا بنجلاديشي",
"displayName-count-few";
"تاكا بنجلاديشي",
"displayName-count-many";
"تاكا بنجلاديشي",
"displayName-count-other";
"تاكا بنجلاديشي",
"symbol";
"BDT",
"symbol-alt-narrow";
"৳";
}
"BEC";
{
"displayName";
"فرنك بلجيكي قابل للتحويل",
"symbol";
"BEC";
}
"BEF";
{
"displayName";
"فرنك بلجيكي",
"symbol";
"BEF";
}
"BEL";
{
"displayName";
"فرنك بلجيكي مالي",
"symbol";
"BEL";
}
"BGL";
{
"displayName";
"BGL",
"symbol";
"BGL";
}
"BGM";
{
"displayName";
"BGM",
"symbol";
"BGM";
}
"BGN";
{
"displayName";
"ليف بلغاري",
"displayName-count-zero";
"ليف بلغاري",
"displayName-count-one";
"ليف بلغاري",
"displayName-count-two";
"ليف بلغاري",
"displayName-count-few";
"ليف بلغاري",
"displayName-count-many";
"ليف بلغاري",
"displayName-count-other";
"ليف بلغاري",
"symbol";
"BGN";
}
"BGO";
{
"displayName";
"BGO",
"symbol";
"BGO";
}
"BHD";
{
"displayName";
"دينار بحريني",
"displayName-count-zero";
"دينار بحريني",
"displayName-count-one";
"دينار بحريني",
"displayName-count-two";
"دينار بحريني",
"displayName-count-few";
"دينار بحريني",
"displayName-count-many";
"دينار بحريني",
"displayName-count-other";
"دينار بحريني",
"symbol";
"د.ب.";
}
"BIF";
{
"displayName";
"فرنك بروندي",
"displayName-count-zero";
"فرنك بروندي",
"displayName-count-one";
"فرنك بروندي",
"displayName-count-two";
"فرنك بروندي",
"displayName-count-few";
"فرنك بروندي",
"displayName-count-many";
"فرنك بروندي",
"displayName-count-other";
"فرنك بروندي",
"symbol";
"BIF";
}
"BMD";
{
"displayName";
"دولار برمودي",
"displayName-count-zero";
"دولار برمودي",
"displayName-count-one";
"دولار برمودي",
"displayName-count-two";
"دولار برمودي",
"displayName-count-few";
"دولار برمودي",
"displayName-count-many";
"دولار برمودي",
"displayName-count-other";
"دولار برمودي",
"symbol";
"BMD",
"symbol-alt-narrow";
"BM$";
}
"BND";
{
"displayName";
"دولار بروناي",
"displayName-count-zero";
"دولار بروناي",
"displayName-count-one";
"دولار بروناي",
"displayName-count-two";
"دولار بروناي",
"displayName-count-few";
"دولار بروناي",
"displayName-count-many";
"دولار بروناي",
"displayName-count-other";
"دولار بروناي",
"symbol";
"BND",
"symbol-alt-narrow";
"BN$";
}
"BOB";
{
"displayName";
"بوليفيانو بوليفي",
"displayName-count-zero";
"بوليفيانو بوليفي",
"displayName-count-one";
"بوليفيانو بوليفي",
"displayName-count-two";
"بوليفيانو بوليفي",
"displayName-count-few";
"بوليفيانو بوليفي",
"displayName-count-many";
"بوليفيانو بوليفي",
"displayName-count-other";
"بوليفيانو بوليفي",
"symbol";
"BOB",
"symbol-alt-narrow";
"Bs";
}
"BOL";
{
"displayName";
"BOL",
"symbol";
"BOL";
}
"BOP";
{
"displayName";
"بيزو بوليفي",
"symbol";
"BOP";
}
"BOV";
{
"displayName";
"مفدول بوليفي",
"symbol";
"BOV";
}
"BRB";
{
"displayName";
"نوفو كروزايرو برازيلي - 1967-1986",
"symbol";
"BRB";
}
"BRC";
{
"displayName";
"كروزادو برازيلي",
"symbol";
"BRC";
}
"BRE";
{
"displayName";
"كروزايرو برازيلي - 1990-1993",
"symbol";
"BRE";
}
"BRL";
{
"displayName";
"ريال برازيلي",
"displayName-count-zero";
"ريال برازيلي",
"displayName-count-one";
"ريال برازيلي",
"displayName-count-two";
"ريال برازيلي",
"displayName-count-few";
"ريال برازيلي",
"displayName-count-many";
"ريال برازيلي",
"displayName-count-other";
"ريال برازيلي",
"symbol";
"R$",
"symbol-alt-narrow";
"R$";
}
"BRN";
{
"displayName";
"BRN",
"symbol";
"BRN";
}
"BRR";
{
"displayName";
"BRR",
"symbol";
"BRR";
}
"BRZ";
{
"displayName";
"BRZ",
"symbol";
"BRZ";
}
"BSD";
{
"displayName";
"دولار باهامي",
"displayName-count-zero";
"دولار باهامي",
"displayName-count-one";
"دولار باهامي",
"displayName-count-two";
"دولار باهامي",
"displayName-count-few";
"دولار باهامي",
"displayName-count-many";
"دولار باهامي",
"displayName-count-other";
"دولار باهامي",
"symbol";
"BSD",
"symbol-alt-narrow";
"BS$";
}
"BTN";
{
"displayName";
"نولتوم بوتاني",
"displayName-count-zero";
"نولتوم بوتاني",
"displayName-count-one";
"نولتوم بوتاني",
"displayName-count-two";
"نولتوم بوتاني",
"displayName-count-few";
"نولتوم بوتاني",
"displayName-count-many";
"نولتوم بوتاني",
"displayName-count-other";
"نولتوم بوتاني",
"symbol";
"BTN";
}
"BUK";
{
"displayName";
"كيات بورمي",
"symbol";
"BUK";
}
"BWP";
{
"displayName";
"بولا بتسواني",
"displayName-count-zero";
"بولا بتسواني",
"displayName-count-one";
"بولا بتسواني",
"displayName-count-two";
"بولا بتسواني",
"displayName-count-few";
"بولا بتسواني",
"displayName-count-many";
"بولا بتسواني",
"displayName-count-other";
"بولا بتسواني",
"symbol";
"BWP",
"symbol-alt-narrow";
"P";
}
"BYB";
{
"displayName";
"روبل بيلاروسي جديد - 1994-1999",
"symbol";
"BYB";
}
"BYN";
{
"displayName";
"روبل بيلاروسي",
"displayName-count-zero";
"روبل بيلاروسي",
"displayName-count-one";
"روبل بيلاروسي",
"displayName-count-two";
"روبل بيلاروسي",
"displayName-count-few";
"روبل بيلاروسي",
"displayName-count-many";
"روبل بيلاروسي",
"displayName-count-other";
"روبل بيلاروسي",
"symbol";
"BYN",
"symbol-alt-narrow";
"р.";
}
"BYR";
{
"displayName";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-zero";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-one";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-two";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-few";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-many";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-other";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"symbol";
"BYR";
}
"BZD";
{
"displayName";
"دولار بليزي",
"displayName-count-zero";
"دولار بليزي",
"displayName-count-one";
"دولار بليزي",
"displayName-count-two";
"دولاران بليزيان",
"displayName-count-few";
"دولار بليزي",
"displayName-count-many";
"دولار بليزي",
"displayName-count-other";
"دولار بليزي",
"symbol";
"BZD",
"symbol-alt-narrow";
"BZ$";
}
"CAD";
{
"displayName";
"دولار كندي",
"displayName-count-zero";
"دولار كندي",
"displayName-count-one";
"دولار كندي",
"displayName-count-two";
"دولار كندي",
"displayName-count-few";
"دولار كندي",
"displayName-count-many";
"دولار كندي",
"displayName-count-other";
"دولار كندي",
"symbol";
"CA$",
"symbol-alt-narrow";
"CA$";
}
"CDF";
{
"displayName";
"فرنك كونغولي",
"displayName-count-zero";
"فرنك كونغولي",
"displayName-count-one";
"فرنك كونغولي",
"displayName-count-two";
"فرنك كونغولي",
"displayName-count-few";
"فرنك كونغولي",
"displayName-count-many";
"فرنك كونغولي",
"displayName-count-other";
"فرنك كونغولي",
"symbol";
"CDF";
}
"CHE";
{
"displayName";
"CHE",
"symbol";
"CHE";
}
"CHF";
{
"displayName";
"فرنك سويسري",
"displayName-count-zero";
"فرنك سويسري",
"displayName-count-one";
"فرنك سويسري",
"displayName-count-two";
"فرنك سويسري",
"displayName-count-few";
"فرنك سويسري",
"displayName-count-many";
"فرنك سويسري",
"displayName-count-other";
"فرنك سويسري",
"symbol";
"CHF";
}
"CHW";
{
"displayName";
"CHW",
"symbol";
"CHW";
}
"CLE";
{
"displayName";
"CLE",
"symbol";
"CLE";
}
"CLF";
{
"displayName";
"CLF",
"symbol";
"CLF";
}
"CLP";
{
"displayName";
"بيزو شيلي",
"displayName-count-zero";
"بيزو شيلي",
"displayName-count-one";
"بيزو شيلي",
"displayName-count-two";
"بيزو شيلي",
"displayName-count-few";
"بيزو شيلي",
"displayName-count-many";
"بيزو شيلي",
"displayName-count-other";
"بيزو شيلي",
"symbol";
"CLP",
"symbol-alt-narrow";
"CL$";
}
"CNY";
{
"displayName";
"يوان صيني",
"displayName-count-zero";
"يوان صيني",
"displayName-count-one";
"يوان صيني",
"displayName-count-two";
"يوان صيني",
"displayName-count-few";
"يوان صيني",
"displayName-count-many";
"يوان صيني",
"displayName-count-other";
"يوان صيني",
"symbol";
"CN¥",
"symbol-alt-narrow";
"CN¥";
}
"COP";
{
"displayName";
"بيزو كولومبي",
"displayName-count-zero";
"بيزو كولومبي",
"displayName-count-one";
"بيزو كولومبي",
"displayName-count-two";
"بيزو كولومبي",
"displayName-count-few";
"بيزو كولومبي",
"displayName-count-many";
"بيزو كولومبي",
"displayName-count-other";
"بيزو كولومبي",
"symbol";
"COP",
"symbol-alt-narrow";
"CO$";
}
"COU";
{
"displayName";
"COU",
"symbol";
"COU";
}
"CRC";
{
"displayName";
"كولن كوستا ريكي",
"displayName-count-zero";
"كولن كوستا ريكي",
"displayName-count-one";
"كولن كوستا ريكي",
"displayName-count-two";
"كولن كوستا ريكي",
"displayName-count-few";
"كولن كوستا ريكي",
"displayName-count-many";
"كولن كوستا ريكي",
"displayName-count-other";
"كولن كوستا ريكي",
"symbol";
"CRC",
"symbol-alt-narrow";
"₡";
}
"CSD";
{
"displayName";
"دينار صربي قديم",
"symbol";
"CSD";
}
"CSK";
{
"displayName";
"كرونة تشيكوسلوفاكيا",
"symbol";
"CSK";
}
"CUC";
{
"displayName";
"بيزو كوبي قابل للتحويل",
"displayName-count-zero";
"بيزو كوبي قابل للتحويل",
"displayName-count-one";
"بيزو كوبي قابل للتحويل",
"displayName-count-two";
"بيزو كوبي قابل للتحويل",
"displayName-count-few";
"بيزو كوبي قابل للتحويل",
"displayName-count-many";
"بيزو كوبي قابل للتحويل",
"displayName-count-other";
"بيزو كوبي قابل للتحويل",
"symbol";
"CUC",
"symbol-alt-narrow";
"$";
}
"CUP";
{
"displayName";
"بيزو كوبي",
"displayName-count-zero";
"بيزو كوبي",
"displayName-count-one";
"بيزو كوبي",
"displayName-count-two";
"بيزو كوبي",
"displayName-count-few";
"بيزو كوبي",
"displayName-count-many";
"بيزو كوبي",
"displayName-count-other";
"بيزو كوبي",
"symbol";
"CUP",
"symbol-alt-narrow";
"CU$";
}
"CVE";
{
"displayName";
"اسكودو الرأس الخضراء",
"displayName-count-zero";
"اسكودو الرأس الخضراء",
"displayName-count-one";
"اسكودو الرأس الخضراء",
"displayName-count-two";
"اسكودو الرأس الخضراء",
"displayName-count-few";
"اسكودو الرأس الخضراء",
"displayName-count-many";
"اسكودو الرأس الخضراء",
"displayName-count-other";
"اسكودو الرأس الخضراء",
"symbol";
"CVE";
}
"CYP";
{
"displayName";
"جنيه قبرصي",
"symbol";
"CYP";
}
"CZK";
{
"displayName";
"كرونة تشيكية",
"displayName-count-zero";
"كرونة تشيكية",
"displayName-count-one";
"كرونة تشيكية",
"displayName-count-two";
"كرونة تشيكية",
"displayName-count-few";
"كرونة تشيكية",
"displayName-count-many";
"كرونة تشيكية",
"displayName-count-other";
"كرونة تشيكية",
"symbol";
"CZK",
"symbol-alt-narrow";
"Kč";
}
"DDM";
{
"displayName";
"أوستمارك ألماني شرقي",
"symbol";
"DDM";
}
"DEM";
{
"displayName";
"مارك ألماني",
"symbol";
"DEM";
}
"DJF";
{
"displayName";
"فرنك جيبوتي",
"displayName-count-zero";
"فرنك جيبوتي",
"displayName-count-one";
"فرنك جيبوتي",
"displayName-count-two";
"فرنك جيبوتي",
"displayName-count-few";
"فرنك جيبوتي",
"displayName-count-many";
"فرنك جيبوتي",
"displayName-count-other";
"فرنك جيبوتي",
"symbol";
"DJF";
}
"DKK";
{
"displayName";
"كرونة دانماركي",
"displayName-count-zero";
"كرونة دانماركي",
"displayName-count-one";
"كرونة دانماركي",
"displayName-count-two";
"كرونة دانماركي",
"displayName-count-few";
"كرونة دانماركي",
"displayName-count-many";
"كرونة دانماركي",
"displayName-count-other";
"كرونة دانماركي",
"symbol";
"DKK",
"symbol-alt-narrow";
"kr";
}
"DOP";
{
"displayName";
"بيزو الدومنيكان",
"displayName-count-zero";
"بيزو الدومنيكان",
"displayName-count-one";
"بيزو الدومنيكان",
"displayName-count-two";
"بيزو الدومنيكان",
"displayName-count-few";
"بيزو الدومنيكان",
"displayName-count-many";
"بيزو الدومنيكان",
"displayName-count-other";
"بيزو الدومنيكان",
"symbol";
"DOP",
"symbol-alt-narrow";
"DO$";
}
"DZD";
{
"displayName";
"دينار جزائري",
"displayName-count-zero";
"دينار جزائري",
"displayName-count-one";
"دينار جزائري",
"displayName-count-two";
"ديناران جزائريان",
"displayName-count-few";
"دينارات جزائرية",
"displayName-count-many";
"دينارًا جزائريًا",
"displayName-count-other";
"دينار جزائري",
"symbol";
"د.ج.";
}
"ECS";
{
"displayName";
"ECS",
"symbol";
"ECS";
}
"ECV";
{
"displayName";
"ECV",
"symbol";
"ECV";
}
"EEK";
{
"displayName";
"كرونة استونية",
"symbol";
"EEK";
}
"EGP";
{
"displayName";
"جنيه مصري",
"displayName-count-zero";
"جنيه مصري",
"displayName-count-one";
"جنيه مصري",
"displayName-count-two";
"جنيهان مصريان",
"displayName-count-few";
"جنيهات مصرية",
"displayName-count-many";
"جنيهًا مصريًا",
"displayName-count-other";
"جنيه مصري",
"symbol";
"ج.م.",
"symbol-alt-narrow";
"E£";
}
"ERN";
{
"displayName";
"ناكفا أريتري",
"displayName-count-zero";
"ناكفا أريتري",
"displayName-count-one";
"ناكفا أريتري",
"displayName-count-two";
"ناكفا أريتري",
"displayName-count-few";
"ناكفا أريتري",
"displayName-count-many";
"ناكفا أريتري",
"displayName-count-other";
"ناكفا أريتري",
"symbol";
"ERN";
}
"ESA";
{
"displayName";
"ESA",
"symbol";
"ESA";
}
"ESB";
{
"displayName";
"ESB",
"symbol";
"ESB";
}
"ESP";
{
"displayName";
"بيزيتا إسباني",
"symbol";
"ESP",
"symbol-alt-narrow";
"₧";
}
"ETB";
{
"displayName";
"بير أثيوبي",
"displayName-count-zero";
"بير أثيوبي",
"displayName-count-one";
"بير أثيوبي",
"displayName-count-two";
"بير أثيوبي",
"displayName-count-few";
"بير أثيوبي",
"displayName-count-many";
"بير أثيوبي",
"displayName-count-other";
"بير أثيوبي",
"symbol";
"ETB";
}
"EUR";
{
"displayName";
"يورو",
"displayName-count-zero";
"يورو",
"displayName-count-one";
"يورو",
"displayName-count-two";
"يورو",
"displayName-count-few";
"يورو",
"displayName-count-many";
"يورو",
"displayName-count-other";
"يورو",
"symbol";
"€",
"symbol-alt-narrow";
"€";
}
"FIM";
{
"displayName";
"ماركا فنلندي",
"symbol";
"FIM";
}
"FJD";
{
"displayName";
"دولار فيجي",
"displayName-count-zero";
"دولار فيجي",
"displayName-count-one";
"دولار فيجي",
"displayName-count-two";
"دولار فيجي",
"displayName-count-few";
"دولار فيجي",
"displayName-count-many";
"دولار فيجي",
"displayName-count-other";
"دولار فيجي",
"symbol";
"FJD",
"symbol-alt-narrow";
"FJ$";
}
"FKP";
{
"displayName";
"جنيه جزر فوكلاند",
"displayName-count-zero";
"جنيه جزر فوكلاند",
"displayName-count-one";
"جنيه جزر فوكلاند",
"displayName-count-two";
"جنيه جزر فوكلاند",
"displayName-count-few";
"جنيه جزر فوكلاند",
"displayName-count-many";
"جنيه جزر فوكلاند",
"displayName-count-other";
"جنيه جزر فوكلاند",
"symbol";
"FKP",
"symbol-alt-narrow";
"£";
}
"FRF";
{
"displayName";
"فرنك فرنسي",
"symbol";
"FRF";
}
"GBP";
{
"displayName";
"جنيه إسترليني",
"displayName-count-zero";
"جنيه إسترليني",
"displayName-count-one";
"جنيه إسترليني",
"displayName-count-two";
"جنيه إسترليني",
"displayName-count-few";
"جنيه إسترليني",
"displayName-count-many";
"جنيه إسترليني",
"displayName-count-other";
"جنيه إسترليني",
"symbol";
"£",
"symbol-alt-narrow";
"UK£";
}
"GEK";
{
"displayName";
"GEK",
"symbol";
"GEK";
}
"GEL";
{
"displayName";
"لارى جورجي",
"displayName-count-zero";
"لاري جورجي",
"displayName-count-one";
"لاري جورجي",
"displayName-count-two";
"لاري جورجي",
"displayName-count-few";
"لاري جورجي",
"displayName-count-many";
"لاري جورجي",
"displayName-count-other";
"لاري جورجي",
"symbol";
"GEL",
"symbol-alt-narrow";
"₾",
"symbol-alt-variant";
"₾";
}
"GHC";
{
"displayName";
"سيدي غاني",
"symbol";
"GHC";
}
"GHS";
{
"displayName";
"سيدي غانا",
"displayName-count-zero";
"سيدي غانا",
"displayName-count-one";
"سيدي غانا",
"displayName-count-two";
"سيدي غانا",
"displayName-count-few";
"سيدي غانا",
"displayName-count-many";
"سيدي غانا",
"displayName-count-other";
"سيدي غانا",
"symbol";
"GHS";
}
"GIP";
{
"displayName";
"جنيه جبل طارق",
"displayName-count-zero";
"جنيه جبل طارق",
"displayName-count-one";
"جنيه جبل طارق",
"displayName-count-two";
"جنيه جبل طارق",
"displayName-count-few";
"جنيه جبل طارق",
"displayName-count-many";
"جنيه جبل طارق",
"displayName-count-other";
"جنيه جبل طارق",
"symbol";
"GIP",
"symbol-alt-narrow";
"£";
}
"GMD";
{
"displayName";
"دلاسي جامبي",
"displayName-count-zero";
"دلاسي جامبي",
"displayName-count-one";
"دلاسي جامبي",
"displayName-count-two";
"دلاسي جامبي",
"displayName-count-few";
"دلاسي جامبي",
"displayName-count-many";
"دلاسي جامبي",
"displayName-count-other";
"دلاسي جامبي",
"symbol";
"GMD";
}
"GNF";
{
"displayName";
"فرنك غينيا",
"displayName-count-zero";
"فرنك غينيا",
"displayName-count-one";
"فرنك غينيا",
"displayName-count-two";
"فرنك غينيا",
"displayName-count-few";
"فرنك غينيا",
"displayName-count-many";
"فرنك غينيا",
"displayName-count-other";
"فرنك غينيا",
"symbol";
"GNF",
"symbol-alt-narrow";
"FG";
}
"GNS";
{
"displayName";
"سيلي غينيا",
"symbol";
"GNS";
}
"GQE";
{
"displayName";
"اكويل جونينا غينيا الاستوائيّة",
"symbol";
"GQE";
}
"GRD";
{
"displayName";
"دراخما يوناني",
"symbol";
"GRD";
}
"GTQ";
{
"displayName";
"كوتزال جواتيمالا",
"displayName-count-zero";
"كوتزال جواتيمالا",
"displayName-count-one";
"كوتزال جواتيمالا",
"displayName-count-two";
"كوتزال جواتيمالا",
"displayName-count-few";
"كوتزال جواتيمالا",
"displayName-count-many";
"كوتزال جواتيمالا",
"displayName-count-other";
"كوتزال جواتيمالا",
"symbol";
"GTQ",
"symbol-alt-narrow";
"Q";
}
"GWE";
{
"displayName";
"اسكود برتغالي غينيا",
"symbol";
"GWE";
}
"GWP";
{
"displayName";
"بيزو غينيا بيساو",
"symbol";
"GWP";
}
"GYD";
{
"displayName";
"دولار غيانا",
"displayName-count-zero";
"دولار غيانا",
"displayName-count-one";
"دولار غيانا",
"displayName-count-two";
"دولار غيانا",
"displayName-count-few";
"دولار غيانا",
"displayName-count-many";
"دولار غيانا",
"displayName-count-other";
"دولار غيانا",
"symbol";
"GYD",
"symbol-alt-narrow";
"GY$";
}
"HKD";
{
"displayName";
"دولار هونغ كونغ",
"displayName-count-zero";
"دولار هونغ كونغ",
"displayName-count-one";
"دولار هونغ كونغ",
"displayName-count-two";
"دولار هونغ كونغ",
"displayName-count-few";
"دولار هونغ كونغ",
"displayName-count-many";
"دولار هونغ كونغ",
"displayName-count-other";
"دولار هونغ كونغ",
"symbol";
"HK$",
"symbol-alt-narrow";
"HK$";
}
"HNL";
{
"displayName";
"ليمبيرا هنداروس",
"displayName-count-zero";
"ليمبيرا هندوراس",
"displayName-count-one";
"ليمبيرا هندوراس",
"displayName-count-two";
"ليمبيرا هندوراس",
"displayName-count-few";
"ليمبيرا هندوراس",
"displayName-count-many";
"ليمبيرا هندوراس",
"displayName-count-other";
"ليمبيرا هندوراس",
"symbol";
"HNL",
"symbol-alt-narrow";
"L";
}
"HRD";
{
"displayName";
"دينار كرواتي",
"symbol";
"HRD";
}
"HRK";
{
"displayName";
"كونا كرواتي",
"displayName-count-zero";
"كونا كرواتي",
"displayName-count-one";
"كونا كرواتي",
"displayName-count-two";
"كونا كرواتي",
"displayName-count-few";
"كونا كرواتي",
"displayName-count-many";
"كونا كرواتي",
"displayName-count-other";
"كونا كرواتي",
"symbol";
"HRK",
"symbol-alt-narrow";
"kn";
}
"HTG";
{
"displayName";
"جوردى هايتي",
"displayName-count-zero";
"جوردى هايتي",
"displayName-count-one";
"جوردى هايتي",
"displayName-count-two";
"جوردى هايتي",
"displayName-count-few";
"جوردى هايتي",
"displayName-count-many";
"جوردى هايتي",
"displayName-count-other";
"جوردى هايتي",
"symbol";
"HTG";
}
"HUF";
{
"displayName";
"فورينت مجري",
"displayName-count-zero";
"فورينت مجري",
"displayName-count-one";
"فورينت مجري",
"displayName-count-two";
"فورينت مجري",
"displayName-count-few";
"فورينت مجري",
"displayName-count-many";
"فورينت مجري",
"displayName-count-other";
"فورينت مجري",
"symbol";
"HUF",
"symbol-alt-narrow";
"Ft";
}
"IDR";
{
"displayName";
"روبية إندونيسية",
"displayName-count-zero";
"روبية إندونيسية",
"displayName-count-one";
"روبية إندونيسية",
"displayName-count-two";
"روبية إندونيسية",
"displayName-count-few";
"روبية إندونيسية",
"displayName-count-many";
"روبية إندونيسية",
"displayName-count-other";
"روبية إندونيسية",
"symbol";
"IDR",
"symbol-alt-narrow";
"Rp";
}
"IEP";
{
"displayName";
"جنيه إيرلندي",
"symbol";
"IEP";
}
"ILP";
{
"displayName";
"جنيه إسرائيلي",
"symbol";
"ILP";
}
"ILS";
{
"displayName";
"شيكل إسرائيلي جديد",
"displayName-count-zero";
"شيكل إسرائيلي جديد",
"displayName-count-one";
"شيكل إسرائيلي جديد",
"displayName-count-two";
"شيكل إسرائيلي جديد",
"displayName-count-few";
"شيكل إسرائيلي جديد",
"displayName-count-many";
"شيكل إسرائيلي جديد",
"displayName-count-other";
"شيكل إسرائيلي جديد",
"symbol";
"₪",
"symbol-alt-narrow";
"₪";
}
"INR";
{
"displayName";
"روبية هندي",
"displayName-count-zero";
"روبية هندي",
"displayName-count-one";
"روبية هندي",
"displayName-count-two";
"روبية هندي",
"displayName-count-few";
"روبية هندي",
"displayName-count-many";
"روبية هندي",
"displayName-count-other";
"روبية هندي",
"symbol";
"₹",
"symbol-alt-narrow";
"₹";
}
"IQD";
{
"displayName";
"دينار عراقي",
"displayName-count-zero";
"دينار عراقي",
"displayName-count-one";
"دينار عراقي",
"displayName-count-two";
"دينار عراقي",
"displayName-count-few";
"دينار عراقي",
"displayName-count-many";
"دينار عراقي",
"displayName-count-other";
"دينار عراقي",
"symbol";
"د.ع.";
}
"IRR";
{
"displayName";
"ريال إيراني",
"displayName-count-zero";
"ريال إيراني",
"displayName-count-one";
"ريال إيراني",
"displayName-count-two";
"ريال إيراني",
"displayName-count-few";
"ريال إيراني",
"displayName-count-many";
"ريال إيراني",
"displayName-count-other";
"ريال إيراني",
"symbol";
"ر.إ.";
}
"ISK";
{
"displayName";
"كرونه أيسلندي",
"displayName-count-zero";
"كرونه أيسلندي",
"displayName-count-one";
"كرونه أيسلندي",
"displayName-count-two";
"كرونه أيسلندي",
"displayName-count-few";
"كرونه أيسلندي",
"displayName-count-many";
"كرونه أيسلندي",
"displayName-count-other";
"كرونه أيسلندي",
"symbol";
"ISK",
"symbol-alt-narrow";
"kr";
}
"ITL";
{
"displayName";
"ليرة إيطالية",
"symbol";
"ITL";
}
"JMD";
{
"displayName";
"دولار جامايكي",
"displayName-count-zero";
"دولار جامايكي",
"displayName-count-one";
"دولار جامايكي",
"displayName-count-two";
"دولار جامايكي",
"displayName-count-few";
"دولار جامايكي",
"displayName-count-many";
"دولار جامايكي",
"displayName-count-other";
"دولار جامايكي",
"symbol";
"JMD",
"symbol-alt-narrow";
"JM$";
}
"JOD";
{
"displayName";
"دينار أردني",
"displayName-count-zero";
"دينار أردني",
"displayName-count-one";
"دينار أردني",
"displayName-count-two";
"دينار أردني",
"displayName-count-few";
"دينار أردني",
"displayName-count-many";
"دينار أردني",
"displayName-count-other";
"دينار أردني",
"symbol";
"د.أ.";
}
"JPY";
{
"displayName";
"ين ياباني",
"displayName-count-zero";
"ين ياباني",
"displayName-count-one";
"ين ياباني",
"displayName-count-two";
"ين ياباني",
"displayName-count-few";
"ين ياباني",
"displayName-count-many";
"ين ياباني",
"displayName-count-other";
"ين ياباني",
"symbol";
"JP¥",
"symbol-alt-narrow";
"JP¥";
}
"KES";
{
"displayName";
"شلن كينيي",
"displayName-count-zero";
"شلن كينيي",
"displayName-count-one";
"شلن كينيي",
"displayName-count-two";
"شلن كينيي",
"displayName-count-few";
"شلن كينيي",
"displayName-count-many";
"شلن كينيي",
"displayName-count-other";
"شلن كينيي",
"symbol";
"KES";
}
"KGS";
{
"displayName";
"سوم قيرغستاني",
"displayName-count-zero";
"سوم قيرغستاني",
"displayName-count-one";
"سوم قيرغستاني",
"displayName-count-two";
"سوم قيرغستاني",
"displayName-count-few";
"سوم قيرغستاني",
"displayName-count-many";
"سوم قيرغستاني",
"displayName-count-other";
"سوم قيرغستاني",
"symbol";
"KGS";
}
"KHR";
{
"displayName";
"رييال كمبودي",
"displayName-count-zero";
"رييال كمبودي",
"displayName-count-one";
"رييال كمبودي",
"displayName-count-two";
"رييال كمبودي",
"displayName-count-few";
"رييال كمبودي",
"displayName-count-many";
"رييال كمبودي",
"displayName-count-other";
"رييال كمبودي",
"symbol";
"KHR",
"symbol-alt-narrow";
"៛";
}
"KMF";
{
"displayName";
"فرنك جزر القمر",
"displayName-count-zero";
"فرنك جزر القمر",
"displayName-count-one";
"فرنك جزر القمر",
"displayName-count-two";
"فرنك جزر القمر",
"displayName-count-few";
"فرنك جزر القمر",
"displayName-count-many";
"فرنك جزر القمر",
"displayName-count-other";
"فرنك جزر القمر",
"symbol";
"ف.ج.ق.",
"symbol-alt-narrow";
"CF";
}
"KPW";
{
"displayName";
"وون كوريا الشمالية",
"displayName-count-zero";
"وون كوريا الشمالية",
"displayName-count-one";
"وون كوريا الشمالية",
"displayName-count-two";
"وون كوريا الشمالية",
"displayName-count-few";
"وون كوريا الشمالية",
"displayName-count-many";
"وون كوريا الشمالية",
"displayName-count-other";
"وون كوريا الشمالية",
"symbol";
"KPW",
"symbol-alt-narrow";
"₩";
}
"KRH";
{
"displayName";
"KRH",
"symbol";
"KRH";
}
"KRO";
{
"displayName";
"KRO",
"symbol";
"KRO";
}
"KRW";
{
"displayName";
"وون كوريا الجنوبية",
"displayName-count-zero";
"وون كوريا الجنوبية",
"displayName-count-one";
"وون كوريا الجنوبية",
"displayName-count-two";
"وون كوريا الجنوبية",
"displayName-count-few";
"وون كوريا الجنوبية",
"displayName-count-many";
"وون كوريا الجنوبية",
"displayName-count-other";
"وون كوريا الجنوبية",
"symbol";
"₩",
"symbol-alt-narrow";
"₩";
}
"KWD";
{
"displayName";
"دينار كويتي",
"displayName-count-zero";
"دينار كويتي",
"displayName-count-one";
"دينار كويتي",
"displayName-count-two";
"دينار كويتي",
"displayName-count-few";
"دينار كويتي",
"displayName-count-many";
"دينار كويتي",
"displayName-count-other";
"دينار كويتي",
"symbol";
"د.ك.";
}
"KYD";
{
"displayName";
"دولار جزر كيمن",
"displayName-count-zero";
"دولار جزر كيمن",
"displayName-count-one";
"دولار جزر كيمن",
"displayName-count-two";
"دولار جزر كيمن",
"displayName-count-few";
"دولار جزر كيمن",
"displayName-count-many";
"دولار جزر كيمن",
"displayName-count-other";
"دولار جزر كيمن",
"symbol";
"KYD",
"symbol-alt-narrow";
"KY$";
}
"KZT";
{
"displayName";
"تينغ كازاخستاني",
"displayName-count-zero";
"تينغ كازاخستاني",
"displayName-count-one";
"تينغ كازاخستاني",
"displayName-count-two";
"تينغ كازاخستاني",
"displayName-count-few";
"تينغ كازاخستاني",
"displayName-count-many";
"تينغ كازاخستاني",
"displayName-count-other";
"تينغ كازاخستاني",
"symbol";
"KZT",
"symbol-alt-narrow";
"₸";
}
"LAK";
{
"displayName";
"كيب لاوسي",
"displayName-count-zero";
"كيب لاوسي",
"displayName-count-one";
"كيب لاوسي",
"displayName-count-two";
"كيب لاوسي",
"displayName-count-few";
"كيب لاوسي",
"displayName-count-many";
"كيب لاوسي",
"displayName-count-other";
"كيب لاوسي",
"symbol";
"LAK",
"symbol-alt-narrow";
"₭";
}
"LBP";
{
"displayName";
"جنيه لبناني",
"displayName-count-zero";
"جنيه لبناني",
"displayName-count-one";
"جنيه لبناني",
"displayName-count-two";
"جنيه لبناني",
"displayName-count-few";
"جنيه لبناني",
"displayName-count-many";
"جنيه لبناني",
"displayName-count-other";
"جنيه لبناني",
"symbol";
"ل.ل.",
"symbol-alt-narrow";
"L£";
}
"LKR";
{
"displayName";
"روبية سريلانكية",
"displayName-count-zero";
"روبية سريلانكية",
"displayName-count-one";
"روبية سريلانكية",
"displayName-count-two";
"روبية سريلانكية",
"displayName-count-few";
"روبية سريلانكية",
"displayName-count-many";
"روبية سريلانكية",
"displayName-count-other";
"روبية سريلانكية",
"symbol";
"LKR",
"symbol-alt-narrow";
"Rs";
}
"LRD";
{
"displayName";
"دولار ليبيري",
"displayName-count-zero";
"دولار ليبيري",
"displayName-count-one";
"دولار ليبيري",
"displayName-count-two";
"دولاران ليبيريان",
"displayName-count-few";
"دولارات ليبيرية",
"displayName-count-many";
"دولارًا ليبيريًا",
"displayName-count-other";
"دولار ليبيري",
"symbol";
"LRD",
"symbol-alt-narrow";
"$";
}
"LSL";
{
"displayName";
"لوتي ليسوتو",
"symbol";
"LSL";
}
"LTL";
{
"displayName";
"ليتا ليتوانية",
"displayName-count-zero";
"ليتا ليتوانية",
"displayName-count-one";
"ليتا ليتوانية",
"displayName-count-two";
"ليتا ليتوانية",
"displayName-count-few";
"ليتا ليتوانية",
"displayName-count-many";
"ليتا ليتوانية",
"displayName-count-other";
"ليتا ليتوانية",
"symbol";
"LTL",
"symbol-alt-narrow";
"Lt";
}
"LTT";
{
"displayName";
"تالوناس ليتواني",
"symbol";
"LTT";
}
"LUC";
{
"displayName";
"فرنك لوكسمبرج قابل للتحويل",
"symbol";
"LUC";
}
"LUF";
{
"displayName";
"فرنك لوكسمبرج",
"symbol";
"LUF";
}
"LUL";
{
"displayName";
"فرنك لوكسمبرج المالي",
"symbol";
"LUL";
}
"LVL";
{
"displayName";
"لاتس لاتفيا",
"displayName-count-zero";
"لاتس لاتفي",
"displayName-count-one";
"لاتس لاتفي",
"displayName-count-two";
"لاتس لاتفي",
"displayName-count-few";
"لاتس لاتفي",
"displayName-count-many";
"لاتس لاتفي",
"displayName-count-other";
"لاتس لاتفي",
"symbol";
"LVL",
"symbol-alt-narrow";
"Ls";
}
"LVR";
{
"displayName";
"روبل لاتفيا",
"symbol";
"LVR";
}
"LYD";
{
"displayName";
"دينار ليبي",
"displayName-count-zero";
"دينار ليبي",
"displayName-count-one";
"دينار ليبي",
"displayName-count-two";
"ديناران ليبيان",
"displayName-count-few";
"دينارات ليبية",
"displayName-count-many";
"دينارًا ليبيًا",
"displayName-count-other";
"دينار ليبي",
"symbol";
"د.ل.";
}
"MAD";
{
"displayName";
"درهم مغربي",
"displayName-count-zero";
"درهم مغربي",
"displayName-count-one";
"درهم مغربي",
"displayName-count-two";
"درهمان مغربيان",
"displayName-count-few";
"دراهم مغربية",
"displayName-count-many";
"درهمًا مغربيًا",
"displayName-count-other";
"درهم مغربي",
"symbol";
"د.م.";
}
"MAF";
{
"displayName";
"فرنك مغربي",
"symbol";
"MAF";
}
"MCF";
{
"displayName";
"MCF",
"symbol";
"MCF";
}
"MDC";
{
"displayName";
"MDC",
"symbol";
"MDC";
}
"MDL";
{
"displayName";
"ليو مولدوفي",
"displayName-count-zero";
"ليو مولدوفي",
"displayName-count-one";
"ليو مولدوفي",
"displayName-count-two";
"ليو مولدوفي",
"displayName-count-few";
"ليو مولدوفي",
"displayName-count-many";
"ليو مولدوفي",
"displayName-count-other";
"ليو مولدوفي",
"symbol";
"MDL";
}
"MGA";
{
"displayName";
"أرياري مدغشقر",
"displayName-count-zero";
"أرياري مدغشقر",
"displayName-count-one";
"أرياري مدغشقر",
"displayName-count-two";
"أرياري مدغشقر",
"displayName-count-few";
"أرياري مدغشقر",
"displayName-count-many";
"أرياري مدغشقر",
"displayName-count-other";
"أرياري مدغشقر",
"symbol";
"MGA",
"symbol-alt-narrow";
"Ar";
}
"MGF";
{
"displayName";
"فرنك مدغشقر",
"symbol";
"MGF";
}
"MKD";
{
"displayName";
"دينار مقدوني",
"displayName-count-zero";
"دينار مقدوني",
"displayName-count-one";
"دينار مقدوني",
"displayName-count-two";
"ديناران مقدونيان",
"displayName-count-few";
"دينارات مقدونية",
"displayName-count-many";
"دينارًا مقدونيًا",
"displayName-count-other";
"دينار مقدوني",
"symbol";
"MKD";
}
"MKN";
{
"displayName";
"MKN",
"symbol";
"MKN";
}
"MLF";
{
"displayName";
"فرنك مالي",
"symbol";
"MLF";
}
"MMK";
{
"displayName";
"كيات ميانمار",
"displayName-count-zero";
"كيات ميانمار",
"displayName-count-one";
"كيات ميانمار",
"displayName-count-two";
"كيات ميانمار",
"displayName-count-few";
"كيات ميانمار",
"displayName-count-many";
"كيات ميانمار",
"displayName-count-other";
"كيات ميانمار",
"symbol";
"MMK",
"symbol-alt-narrow";
"K";
}
"MNT";
{
"displayName";
"توغروغ منغولي",
"displayName-count-zero";
"توغروغ منغولي",
"displayName-count-one";
"توغروغ منغولي",
"displayName-count-two";
"توغروغ منغولي",
"displayName-count-few";
"توغروغ منغولي",
"displayName-count-many";
"توغروغ منغولي",
"displayName-count-other";
"توغروغ منغولي",
"symbol";
"MNT",
"symbol-alt-narrow";
"₮";
}
"MOP";
{
"displayName";
"باتاكا ماكاوي",
"displayName-count-zero";
"باتاكا ماكاوي",
"displayName-count-one";
"باتاكا ماكاوي",
"displayName-count-two";
"باتاكا ماكاوي",
"displayName-count-few";
"باتاكا ماكاوي",
"displayName-count-many";
"باتاكا ماكاوي",
"displayName-count-other";
"باتاكا ماكاوي",
"symbol";
"MOP";
}
"MRO";
{
"displayName";
"أوقية موريتانية",
"displayName-count-zero";
"أوقية موريتانية",
"displayName-count-one";
"أوقية موريتانية",
"displayName-count-two";
"أوقية موريتانية",
"displayName-count-few";
"أوقية موريتانية",
"displayName-count-many";
"أوقية موريتانية",
"displayName-count-other";
"أوقية موريتانية",
"symbol";
"أ.م.";
}
"MTL";
{
"displayName";
"ليرة مالطية",
"symbol";
"MTL";
}
"MTP";
{
"displayName";
"جنيه مالطي",
"symbol";
"MTP";
}
"MUR";
{
"displayName";
"روبية موريشيوسية",
"displayName-count-zero";
"روبية موريشيوسية",
"displayName-count-one";
"روبية موريشيوسية",
"displayName-count-two";
"روبية موريشيوسية",
"displayName-count-few";
"روبية موريشيوسية",
"displayName-count-many";
"روبية موريشيوسية",
"displayName-count-other";
"روبية موريشيوسية",
"symbol";
"MUR",
"symbol-alt-narrow";
"Rs";
}
"MVR";
{
"displayName";
"روفيه جزر المالديف",
"displayName-count-zero";
"روفيه جزر المالديف",
"displayName-count-one";
"روفيه جزر المالديف",
"displayName-count-two";
"روفيه جزر المالديف",
"displayName-count-few";
"روفيه جزر المالديف",
"displayName-count-many";
"روفيه جزر المالديف",
"displayName-count-other";
"روفيه جزر المالديف",
"symbol";
"MVR";
}
"MWK";
{
"displayName";
"كواشا مالاوي",
"displayName-count-zero";
"كواشا مالاوي",
"displayName-count-one";
"كواشا مالاوي",
"displayName-count-two";
"كواشا مالاوي",
"displayName-count-few";
"كواشا مالاوي",
"displayName-count-many";
"كواشا مالاوي",
"displayName-count-other";
"كواشا مالاوي",
"symbol";
"MWK";
}
"MXN";
{
"displayName";
"بيزو مكسيكي",
"displayName-count-zero";
"بيزو مكسيكي",
"displayName-count-one";
"بيزو مكسيكي",
"displayName-count-two";
"بيزو مكسيكي",
"displayName-count-few";
"بيزو مكسيكي",
"displayName-count-many";
"بيزو مكسيكي",
"displayName-count-other";
"بيزو مكسيكي",
"symbol";
"MX$",
"symbol-alt-narrow";
"MX$";
}
"MXP";
{
"displayName";
"بيزو فضي مكسيكي - 1861-1992",
"symbol";
"MXP";
}
"MXV";
{
"displayName";
"MXV",
"symbol";
"MXV";
}
"MYR";
{
"displayName";
"رينغيت ماليزي",
"displayName-count-zero";
"رينغيت ماليزي",
"displayName-count-one";
"رينغيت ماليزي",
"displayName-count-two";
"رينغيت ماليزي",
"displayName-count-few";
"رينغيت ماليزي",
"displayName-count-many";
"رينغيت ماليزي",
"displayName-count-other";
"رينغيت ماليزي",
"symbol";
"MYR",
"symbol-alt-narrow";
"RM";
}
"MZE";
{
"displayName";
"اسكود موزمبيقي",
"symbol";
"MZE";
}
"MZM";
{
"displayName";
"MZM",
"symbol";
"MZM";
}
"MZN";
{
"displayName";
"متكال موزمبيقي",
"displayName-count-zero";
"متكال موزمبيقي",
"displayName-count-one";
"متكال موزمبيقي",
"displayName-count-two";
"متكال موزمبيقي",
"displayName-count-few";
"متكال موزمبيقي",
"displayName-count-many";
"متكال موزمبيقي",
"displayName-count-other";
"متكال موزمبيقي",
"symbol";
"MZN";
}
"NAD";
{
"displayName";
"دولار ناميبي",
"displayName-count-zero";
"دولار ناميبي",
"displayName-count-one";
"دولار ناميبي",
"displayName-count-two";
"دولار ناميبي",
"displayName-count-few";
"دولار ناميبي",
"displayName-count-many";
"دولار ناميبي",
"displayName-count-other";
"دولار ناميبي",
"symbol";
"NAD",
"symbol-alt-narrow";
"$";
}
"NGN";
{
"displayName";
"نايرا نيجيري",
"displayName-count-zero";
"نايرا نيجيري",
"displayName-count-one";
"نايرا نيجيري",
"displayName-count-two";
"نايرا نيجيري",
"displayName-count-few";
"نايرا نيجيري",
"displayName-count-many";
"نايرا نيجيري",
"displayName-count-other";
"نايرا نيجيري",
"symbol";
"NGN",
"symbol-alt-narrow";
"₦";
}
"NIC";
{
"displayName";
"كوردوبة نيكاراجوا",
"symbol";
"NIC";
}
"NIO";
{
"displayName";
"قرطبة نيكاراغوا",
"displayName-count-zero";
"قرطبة نيكاراغوا",
"displayName-count-one";
"قرطبة نيكاراغوا",
"displayName-count-two";
"قرطبة نيكاراغوا",
"displayName-count-few";
"قرطبة نيكاراغوا",
"displayName-count-many";
"قرطبة نيكاراغوا",
"displayName-count-other";
"قرطبة نيكاراغوا",
"symbol";
"NIO",
"symbol-alt-narrow";
"C$";
}
"NLG";
{
"displayName";
"جلدر هولندي",
"symbol";
"NLG";
}
"NOK";
{
"displayName";
"كرونة نرويجية",
"displayName-count-zero";
"كرونة نرويجية",
"displayName-count-one";
"كرونة نرويجية",
"displayName-count-two";
"كرونة نرويجية",
"displayName-count-few";
"كرونة نرويجية",
"displayName-count-many";
"كرونة نرويجية",
"displayName-count-other";
"كرونة نرويجية",
"symbol";
"NOK",
"symbol-alt-narrow";
"kr";
}
"NPR";
{
"displayName";
"روبية نيبالي",
"displayName-count-zero";
"روبية نيبالي",
"displayName-count-one";
"روبية نيبالي",
"displayName-count-two";
"روبية نيبالي",
"displayName-count-few";
"روبية نيبالي",
"displayName-count-many";
"روبية نيبالي",
"displayName-count-other";
"روبية نيبالي",
"symbol";
"NPR",
"symbol-alt-narrow";
"Rs";
}
"NZD";
{
"displayName";
"دولار نيوزيلندي",
"displayName-count-zero";
"دولار نيوزيلندي",
"displayName-count-one";
"دولار نيوزيلندي",
"displayName-count-two";
"دولار نيوزيلندي",
"displayName-count-few";
"دولار نيوزيلندي",
"displayName-count-many";
"دولار نيوزيلندي",
"displayName-count-other";
"دولار نيوزيلندي",
"symbol";
"NZ$",
"symbol-alt-narrow";
"NZ$";
}
"OMR";
{
"displayName";
"ريال عماني",
"displayName-count-zero";
"ريال عماني",
"displayName-count-one";
"ريال عماني",
"displayName-count-two";
"ريال عماني",
"displayName-count-few";
"ريال عماني",
"displayName-count-many";
"ريال عماني",
"displayName-count-other";
"ريال عماني",
"symbol";
"ر.ع.";
}
"PAB";
{
"displayName";
"بالبوا بنمي",
"displayName-count-zero";
"بالبوا بنمي",
"displayName-count-one";
"بالبوا بنمي",
"displayName-count-two";
"بالبوا بنمي",
"displayName-count-few";
"بالبوا بنمي",
"displayName-count-many";
"بالبوا بنمي",
"displayName-count-other";
"بالبوا بنمي",
"symbol";
"PAB";
}
"PEI";
{
"displayName";
"PEI",
"symbol";
"PEI";
}
"PEN";
{
"displayName";
"سول جديد البيرو",
"displayName-count-zero";
"سول جديد البيرو",
"displayName-count-one";
"سول جديد البيرو",
"displayName-count-two";
"سول جديد البيرو",
"displayName-count-few";
"سول جديد البيرو",
"displayName-count-many";
"سول جديد البيرو",
"displayName-count-other";
"سول جديد البيرو",
"symbol";
"PEN";
}
"PES";
{
"displayName";
"PES",
"symbol";
"PES";
}
"PGK";
{
"displayName";
"كينا بابوا غينيا الجديدة",
"displayName-count-zero";
"كينا بابوا غينيا الجديدة",
"displayName-count-one";
"كينا بابوا غينيا الجديدة",
"displayName-count-two";
"كينا بابوا غينيا الجديدة",
"displayName-count-few";
"كينا بابوا غينيا الجديدة",
"displayName-count-many";
"كينا بابوا غينيا الجديدة",
"displayName-count-other";
"كينا بابوا غينيا الجديدة",
"symbol";
"PGK";
}
"PHP";
{
"displayName";
"بيزو فلبيني",
"displayName-count-zero";
"بيزو فلبيني",
"displayName-count-one";
"بيزو فلبيني",
"displayName-count-two";
"بيزو فلبيني",
"displayName-count-few";
"بيزو فلبيني",
"displayName-count-many";
"بيزو فلبيني",
"displayName-count-other";
"بيزو فلبيني",
"symbol";
"PHP",
"symbol-alt-narrow";
"₱";
}
"PKR";
{
"displayName";
"روبية باكستاني",
"displayName-count-zero";
"روبية باكستاني",
"displayName-count-one";
"روبية باكستاني",
"displayName-count-two";
"روبية باكستاني",
"displayName-count-few";
"روبية باكستاني",
"displayName-count-many";
"روبية باكستاني",
"displayName-count-other";
"روبية باكستاني",
"symbol";
"PKR",
"symbol-alt-narrow";
"Rs";
}
"PLN";
{
"displayName";
"زلوتي بولندي",
"displayName-count-zero";
"زلوتي بولندي",
"displayName-count-one";
"زلوتي بولندي",
"displayName-count-two";
"زلوتي بولندي",
"displayName-count-few";
"زلوتي بولندي",
"displayName-count-many";
"زلوتي بولندي",
"displayName-count-other";
"زلوتي بولندي",
"symbol";
"PLN",
"symbol-alt-narrow";
"zł";
}
"PLZ";
{
"displayName";
"زلوتي بولندي - 1950-1995",
"symbol";
"PLZ";
}
"PTE";
{
"displayName";
"اسكود برتغالي",
"symbol";
"PTE";
}
"PYG";
{
"displayName";
"جواراني باراجواي",
"displayName-count-zero";
"جواراني باراجواي",
"displayName-count-one";
"جواراني باراجواي",
"displayName-count-two";
"جواراني باراجواي",
"displayName-count-few";
"جواراني باراجواي",
"displayName-count-many";
"جواراني باراجواي",
"displayName-count-other";
"جواراني باراجواي",
"symbol";
"PYG",
"symbol-alt-narrow";
"₲";
}
"QAR";
{
"displayName";
"ريال قطري",
"displayName-count-zero";
"ريال قطري",
"displayName-count-one";
"ريال قطري",
"displayName-count-two";
"ريال قطري",
"displayName-count-few";
"ريال قطري",
"displayName-count-many";
"ريال قطري",
"displayName-count-other";
"ريال قطري",
"symbol";
"ر.ق.";
}
"RHD";
{
"displayName";
"دولار روديسي",
"symbol";
"RHD";
}
"ROL";
{
"displayName";
"ليو روماني قديم",
"symbol";
"ROL";
}
"RON";
{
"displayName";
"ليو روماني",
"displayName-count-zero";
"ليو روماني",
"displayName-count-one";
"ليو روماني",
"displayName-count-two";
"ليو روماني",
"displayName-count-few";
"ليو روماني",
"displayName-count-many";
"ليو روماني",
"displayName-count-other";
"ليو روماني",
"symbol";
"RON",
"symbol-alt-narrow";
"lei";
}
"RSD";
{
"displayName";
"دينار صربي",
"displayName-count-zero";
"دينار صربي",
"displayName-count-one";
"دينار صربي",
"displayName-count-two";
"ديناران صربيان",
"displayName-count-few";
"دينارات صربية",
"displayName-count-many";
"دينارًا صربيًا",
"displayName-count-other";
"دينار صربي",
"symbol";
"RSD";
}
"RUB";
{
"displayName";
"روبل روسي",
"displayName-count-zero";
"روبل روسي",
"displayName-count-one";
"روبل روسي",
"displayName-count-two";
"روبل روسي",
"displayName-count-few";
"روبل روسي",
"displayName-count-many";
"روبل روسي",
"displayName-count-other";
"روبل روسي",
"symbol";
"RUB",
"symbol-alt-narrow";
"₽";
}
"RUR";
{
"displayName";
"روبل روسي - 1991-1998",
"symbol";
"RUR",
"symbol-alt-narrow";
"р.";
}
"RWF";
{
"displayName";
"فرنك رواندي",
"displayName-count-zero";
"فرنك رواندي",
"displayName-count-one";
"فرنك رواندي",
"displayName-count-two";
"فرنك رواندي",
"displayName-count-few";
"فرنك رواندي",
"displayName-count-many";
"فرنك رواندي",
"displayName-count-other";
"فرنك رواندي",
"symbol";
"RWF",
"symbol-alt-narrow";
"RF";
}
"SAR";
{
"displayName";
"ريال سعودي",
"displayName-count-zero";
"ريال سعودي",
"displayName-count-one";
"ريال سعودي",
"displayName-count-two";
"ريال سعودي",
"displayName-count-few";
"ريال سعودي",
"displayName-count-many";
"ريال سعودي",
"displayName-count-other";
"ريال سعودي",
"symbol";
"ر.س.";
}
"SBD";
{
"displayName";
"دولار جزر سليمان",
"displayName-count-zero";
"دولار جزر سليمان",
"displayName-count-one";
"دولار جزر سليمان",
"displayName-count-two";
"دولار جزر سليمان",
"displayName-count-few";
"دولار جزر سليمان",
"displayName-count-many";
"دولار جزر سليمان",
"displayName-count-other";
"دولار جزر سليمان",
"symbol";
"SBD",
"symbol-alt-narrow";
"SB$";
}
"SCR";
{
"displayName";
"روبية سيشيلية",
"displayName-count-zero";
"روبية سيشيلية",
"displayName-count-one";
"روبية سيشيلية",
"displayName-count-two";
"روبية سيشيلية",
"displayName-count-few";
"روبية سيشيلية",
"displayName-count-many";
"روبية سيشيلية",
"displayName-count-other";
"روبية سيشيلية",
"symbol";
"SCR";
}
"SDD";
{
"displayName";
"دينار سوداني",
"symbol";
"د.س.";
}
"SDG";
{
"displayName";
"جنيه سوداني",
"displayName-count-zero";
"جنيه سوداني",
"displayName-count-one";
"جنيه سوداني",
"displayName-count-two";
"جنيه سوداني",
"displayName-count-few";
"جنيهات سودانية",
"displayName-count-many";
"جنيهًا سودانيًا",
"displayName-count-other";
"جنيه سوداني",
"symbol";
"ج.س.";
}
"SDP";
{
"displayName";
"جنيه سوداني قديم",
"symbol";
"SDP";
}
"SEK";
{
"displayName";
"كرونة سويدية",
"displayName-count-zero";
"كرونة سويدية",
"displayName-count-one";
"كرونة سويدية",
"displayName-count-two";
"كرونة سويدية",
"displayName-count-few";
"كرونة سويدية",
"displayName-count-many";
"كرونة سويدية",
"displayName-count-other";
"كرونة سويدية",
"symbol";
"SEK",
"symbol-alt-narrow";
"kr";
}
"SGD";
{
"displayName";
"دولار سنغافوري",
"displayName-count-zero";
"دولار سنغافوري",
"displayName-count-one";
"دولار سنغافوري",
"displayName-count-two";
"دولار سنغافوري",
"displayName-count-few";
"دولار سنغافوري",
"displayName-count-many";
"دولار سنغافوري",
"displayName-count-other";
"دولار سنغافوري",
"symbol";
"SGD",
"symbol-alt-narrow";
"$";
}
"SHP";
{
"displayName";
"جنيه سانت هيلين",
"displayName-count-zero";
"جنيه سانت هيلين",
"displayName-count-one";
"جنيه سانت هيلين",
"displayName-count-two";
"جنيه سانت هيلين",
"displayName-count-few";
"جنيه سانت هيلين",
"displayName-count-many";
"جنيه سانت هيلين",
"displayName-count-other";
"جنيه سانت هيلين",
"symbol";
"SHP",
"symbol-alt-narrow";
"£";
}
"SIT";
{
"displayName";
"تولار سلوفيني",
"symbol";
"SIT";
}
"SKK";
{
"displayName";
"كرونة سلوفاكية",
"symbol";
"SKK";
}
"SLL";
{
"displayName";
"ليون سيراليوني",
"displayName-count-zero";
"ليون سيراليوني",
"displayName-count-one";
"ليون سيراليوني",
"displayName-count-two";
"ليون سيراليوني",
"displayName-count-few";
"ليون سيراليوني",
"displayName-count-many";
"ليون سيراليوني",
"displayName-count-other";
"ليون سيراليوني",
"symbol";
"SLL";
}
"SOS";
{
"displayName";
"شلن صومالي",
"displayName-count-zero";
"شلن صومالي",
"displayName-count-one";
"شلن صومالي",
"displayName-count-two";
"شلن صومالي",
"displayName-count-few";
"شلن صومالي",
"displayName-count-many";
"شلن صومالي",
"displayName-count-other";
"شلن صومالي",
"symbol";
"SOS";
}
"SRD";
{
"displayName";
"دولار سورينامي",
"displayName-count-zero";
"دولار سورينامي",
"displayName-count-one";
"دولار سورينامي",
"displayName-count-two";
"دولار سورينامي",
"displayName-count-few";
"دولار سورينامي",
"displayName-count-many";
"دولار سورينامي",
"displayName-count-other";
"دولار سورينامي",
"symbol";
"SRD",
"symbol-alt-narrow";
"SR$";
}
"SRG";
{
"displayName";
"جلدر سورينامي",
"symbol";
"SRG";
}
"SSP";
{
"displayName";
"جنيه جنوب السودان",
"displayName-count-zero";
"جنيه جنوب السودان",
"displayName-count-one";
"جنيه جنوب السودان",
"displayName-count-two";
"جنيهان جنوب السودان",
"displayName-count-few";
"جنيهات جنوب السودان",
"displayName-count-many";
"جنيهًا جنوب السودان",
"displayName-count-other";
"جنيه جنوب السودان",
"symbol";
"SSP",
"symbol-alt-narrow";
"£";
}
"STD";
{
"displayName";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-zero";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-one";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-two";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-few";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-many";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-other";
"دوبرا ساو تومي وبرينسيبي",
"symbol";
"STD",
"symbol-alt-narrow";
"Db";
}
"SUR";
{
"displayName";
"روبل سوفيتي",
"symbol";
"SUR";
}
"SVC";
{
"displayName";
"كولون سلفادوري",
"symbol";
"SVC";
}
"SYP";
{
"displayName";
"ليرة سورية",
"displayName-count-zero";
"ليرة سورية",
"displayName-count-one";
"ليرة سورية",
"displayName-count-two";
"ليرة سورية",
"displayName-count-few";
"ليرة سورية",
"displayName-count-many";
"ليرة سورية",
"displayName-count-other";
"ليرة سورية",
"symbol";
"ل.س.",
"symbol-alt-narrow";
"£";
}
"SZL";
{
"displayName";
"ليلانجيني سوازيلندي",
"displayName-count-zero";
"ليلانجيني سوازيلندي",
"displayName-count-one";
"ليلانجيني سوازيلندي",
"displayName-count-two";
"ليلانجيني سوازيلندي",
"displayName-count-few";
"ليلانجيني سوازيلندي",
"displayName-count-many";
"ليلانجيني سوازيلندي",
"displayName-count-other";
"ليلانجيني سوازيلندي",
"symbol";
"SZL";
}
"THB";
{
"displayName";
"باخت تايلاندي",
"displayName-count-zero";
"باخت تايلاندي",
"displayName-count-one";
"باخت تايلاندي",
"displayName-count-two";
"باخت تايلاندي",
"displayName-count-few";
"باخت تايلاندي",
"displayName-count-many";
"باخت تايلاندي",
"displayName-count-other";
"باخت تايلاندي",
"symbol";
"฿",
"symbol-alt-narrow";
"฿";
}
"TJR";
{
"displayName";
"روبل طاجيكستاني",
"symbol";
"TJR";
}
"TJS";
{
"displayName";
"سوموني طاجيكستاني",
"displayName-count-zero";
"سوموني طاجيكستاني",
"displayName-count-one";
"سوموني طاجيكستاني",
"displayName-count-two";
"سوموني طاجيكستاني",
"displayName-count-few";
"سوموني طاجيكستاني",
"displayName-count-many";
"سوموني طاجيكستاني",
"displayName-count-other";
"سوموني طاجيكستاني",
"symbol";
"TJS";
}
"TMM";
{
"displayName";
"مانات تركمنستاني",
"symbol";
"TMM";
}
"TMT";
{
"displayName";
"مانات تركمانستان",
"displayName-count-zero";
"مانات تركمانستان",
"displayName-count-one";
"مانات تركمانستان",
"displayName-count-two";
"مانات تركمانستان",
"displayName-count-few";
"مانات تركمانستان",
"displayName-count-many";
"مانات تركمانستان",
"displayName-count-other";
"مانات تركمانستان",
"symbol";
"TMT";
}
"TND";
{
"displayName";
"دينار تونسي",
"displayName-count-zero";
"دينار تونسي",
"displayName-count-one";
"دينار تونسي",
"displayName-count-two";
"ديناران تونسيان",
"displayName-count-few";
"دينارات تونسية",
"displayName-count-many";
"دينارًا تونسيًا",
"displayName-count-other";
"دينار تونسي",
"symbol";
"د.ت.";
}
"TOP";
{
"displayName";
"بانغا تونغا",
"displayName-count-zero";
"بانغا تونغا",
"displayName-count-one";
"بانغا تونغا",
"displayName-count-two";
"بانغا تونغا",
"displayName-count-few";
"بانغا تونغا",
"displayName-count-many";
"بانغا تونغا",
"displayName-count-other";
"بانغا تونغا",
"symbol";
"TOP",
"symbol-alt-narrow";
"T$";
}
"TPE";
{
"displayName";
"اسكود تيموري",
"symbol";
"TPE";
}
"TRL";
{
"displayName";
"ليرة تركي",
"symbol";
"TRL";
}
"TRY";
{
"displayName";
"ليرة تركية",
"displayName-count-zero";
"ليرة تركية",
"displayName-count-one";
"ليرة تركية",
"displayName-count-two";
"ليرة تركية",
"displayName-count-few";
"ليرة تركية",
"displayName-count-many";
"ليرة تركية",
"displayName-count-other";
"ليرة تركية",
"symbol";
"TRY",
"symbol-alt-narrow";
"₺",
"symbol-alt-variant";
"TL";
}
"TTD";
{
"displayName";
"دولار ترينداد وتوباجو",
"displayName-count-zero";
"دولار ترينداد وتوباجو",
"displayName-count-one";
"دولار ترينداد وتوباجو",
"displayName-count-two";
"دولار ترينداد وتوباجو",
"displayName-count-few";
"دولار ترينداد وتوباجو",
"displayName-count-many";
"دولار ترينداد وتوباجو",
"displayName-count-other";
"دولار ترينداد وتوباجو",
"symbol";
"TTD",
"symbol-alt-narrow";
"TT$";
}
"TWD";
{
"displayName";
"دولار تايواني",
"displayName-count-zero";
"دولار تايواني",
"displayName-count-one";
"دولار تايواني",
"displayName-count-two";
"دولار تايواني",
"displayName-count-few";
"دولار تايواني",
"displayName-count-many";
"دولار تايواني",
"displayName-count-other";
"دولار تايواني",
"symbol";
"NT$",
"symbol-alt-narrow";
"NT$";
}
"TZS";
{
"displayName";
"شلن تنزاني",
"displayName-count-zero";
"شلن تنزاني",
"displayName-count-one";
"شلن تنزاني",
"displayName-count-two";
"شلن تنزاني",
"displayName-count-few";
"شلن تنزاني",
"displayName-count-many";
"شلن تنزاني",
"displayName-count-other";
"شلن تنزاني",
"symbol";
"TZS";
}
"UAH";
{
"displayName";
"هريفنيا أوكراني",
"displayName-count-zero";
"هريفنيا أوكراني",
"displayName-count-one";
"هريفنيا أوكراني",
"displayName-count-two";
"هريفنيا أوكراني",
"displayName-count-few";
"هريفنيا أوكراني",
"displayName-count-many";
"هريفنيا أوكراني",
"displayName-count-other";
"هريفنيا أوكراني",
"symbol";
"UAH",
"symbol-alt-narrow";
"₴";
}
"UAK";
{
"displayName";
"UAK",
"symbol";
"UAK";
}
"UGS";
{
"displayName";
"شلن أوغندي - 1966-1987",
"symbol";
"UGS";
}
"UGX";
{
"displayName";
"شلن أوغندي",
"displayName-count-zero";
"شلن أوغندي",
"displayName-count-one";
"شلن أوغندي",
"displayName-count-two";
"شلن أوغندي",
"displayName-count-few";
"شلن أوغندي",
"displayName-count-many";
"شلن أوغندي",
"displayName-count-other";
"شلن أوغندي",
"symbol";
"UGX";
}
"USD";
{
"displayName";
"دولار أمريكي",
"displayName-count-zero";
"دولار أمريكي",
"displayName-count-one";
"دولار أمريكي",
"displayName-count-two";
"دولار أمريكي",
"displayName-count-few";
"دولار أمريكي",
"displayName-count-many";
"دولار أمريكي",
"displayName-count-other";
"دولار أمريكي",
"symbol";
"US$",
"symbol-alt-narrow";
"US$";
}
"USN";
{
"displayName";
"دولار أمريكي (اليوم التالي)",
"symbol";
"USN";
}
"USS";
{
"displayName";
"دولار أمريكي (نفس اليوم)",
"symbol";
"USS";
}
"UYI";
{
"displayName";
"UYI",
"symbol";
"UYI";
}
"UYP";
{
"displayName";
"بيزو أوروجواي - 1975-1993",
"symbol";
"UYP";
}
"UYU";
{
"displayName";
"بيزو اوروغواي",
"displayName-count-zero";
"بيزو اوروغواي",
"displayName-count-one";
"بيزو اوروغواي",
"displayName-count-two";
"بيزو اوروغواي",
"displayName-count-few";
"بيزو اوروغواي",
"displayName-count-many";
"بيزو اوروغواي",
"displayName-count-other";
"بيزو اوروغواي",
"symbol";
"UYU",
"symbol-alt-narrow";
"UY$";
}
"UZS";
{
"displayName";
"سوم أوزبكستاني",
"displayName-count-zero";
"سوم أوزبكستاني",
"displayName-count-one";
"سوم أوزبكستاني",
"displayName-count-two";
"سوم أوزبكستاني",
"displayName-count-few";
"سوم أوزبكستاني",
"displayName-count-many";
"سوم أوزبكستاني",
"displayName-count-other";
"سوم أوزبكستاني",
"symbol";
"UZS";
}
"VEB";
{
"displayName";
"بوليفار فنزويلي - 1871-2008",
"symbol";
"VEB";
}
"VEF";
{
"displayName";
"بوليفار فنزويلي",
"displayName-count-zero";
"بوليفار فنزويلي",
"displayName-count-one";
"بوليفار فنزويلي",
"displayName-count-two";
"بوليفار فنزويلي",
"displayName-count-few";
"بوليفار فنزويلي",
"displayName-count-many";
"بوليفار فنزويلي",
"displayName-count-other";
"بوليفار فنزويلي",
"symbol";
"VEF",
"symbol-alt-narrow";
"Bs";
}
"VND";
{
"displayName";
"دونج فيتنامي",
"displayName-count-zero";
"دونج فيتنامي",
"displayName-count-one";
"دونج فيتنامي",
"displayName-count-two";
"دونج فيتنامي",
"displayName-count-few";
"دونج فيتنامي",
"displayName-count-many";
"دونج فيتنامي",
"displayName-count-other";
"دونج فيتنامي",
"symbol";
"₫",
"symbol-alt-narrow";
"₫";
}
"VNN";
{
"displayName";
"VNN",
"symbol";
"VNN";
}
"VUV";
{
"displayName";
"فاتو فانواتو",
"displayName-count-zero";
"فاتو فانواتو",
"displayName-count-one";
"فاتو فانواتو",
"displayName-count-two";
"فاتو فانواتو",
"displayName-count-few";
"فاتو فانواتو",
"displayName-count-many";
"فاتو فانواتو",
"displayName-count-other";
"فاتو فانواتو",
"symbol";
"VUV";
}
"WST";
{
"displayName";
"تالا ساموا",
"displayName-count-zero";
"تالا ساموا",
"displayName-count-one";
"تالا ساموا",
"displayName-count-two";
"تالا ساموا",
"displayName-count-few";
"تالا ساموا",
"displayName-count-many";
"تالا ساموا",
"displayName-count-other";
"تالا ساموا",
"symbol";
"WST";
}
"XAF";
{
"displayName";
"فرنك وسط أفريقي",
"displayName-count-zero";
"فرنك وسط أفريقي",
"displayName-count-one";
"فرنك وسط أفريقي",
"displayName-count-two";
"فرنك وسط أفريقي",
"displayName-count-few";
"فرنك وسط أفريقي",
"displayName-count-many";
"فرنك وسط أفريقي",
"displayName-count-other";
"فرنك وسط أفريقي",
"symbol";
"FCFA";
}
"XAG";
{
"displayName";
"فضة",
"symbol";
"XAG";
}
"XAU";
{
"displayName";
"ذهب",
"symbol";
"XAU";
}
"XBA";
{
"displayName";
"الوحدة الأوروبية المركبة",
"symbol";
"XBA";
}
"XBB";
{
"displayName";
"الوحدة المالية الأوروبية",
"symbol";
"XBB";
}
"XBC";
{
"displayName";
"الوحدة الحسابية الأوروبية",
"symbol";
"XBC";
}
"XBD";
{
"displayName";
"(XBD)وحدة الحساب الأوروبية",
"symbol";
"XBD";
}
"XCD";
{
"displayName";
"دولار شرق الكاريبي",
"displayName-count-zero";
"دولار شرق الكاريبي",
"displayName-count-one";
"دولار شرق الكاريبي",
"displayName-count-two";
"دولار شرق الكاريبي",
"displayName-count-few";
"دولار شرق الكاريبي",
"displayName-count-many";
"دولار شرق الكاريبي",
"displayName-count-other";
"دولار شرق الكاريبي",
"symbol";
"EC$",
"symbol-alt-narrow";
"$";
}
"XDR";
{
"displayName";
"حقوق السحب الخاصة",
"symbol";
"XDR";
}
"XEU";
{
"displayName";
"وحدة النقد الأوروبية",
"symbol";
"XEU";
}
"XFO";
{
"displayName";
"فرنك فرنسي ذهبي",
"symbol";
"XFO";
}
"XFU";
{
"displayName";
"(UIC)فرنك فرنسي",
"symbol";
"XFU";
}
"XOF";
{
"displayName";
"فرنك غرب أفريقي",
"displayName-count-zero";
"فرنك غرب أفريقي",
"displayName-count-one";
"فرنك غرب أفريقي",
"displayName-count-two";
"فرنك غرب أفريقي",
"displayName-count-few";
"فرنك غرب أفريقي",
"displayName-count-many";
"فرنك غرب أفريقي",
"displayName-count-other";
"فرنك غرب أفريقي",
"symbol";
"CFA";
}
"XPD";
{
"displayName";
"بالاديوم",
"symbol";
"XPD";
}
"XPF";
{
"displayName";
"فرنك سي إف بي",
"displayName-count-zero";
"فرنك سي إف بي",
"displayName-count-one";
"فرنك سي إف بي",
"displayName-count-two";
"فرنك سي إف بي",
"displayName-count-few";
"فرنك سي إف بي",
"displayName-count-many";
"فرنك سي إف بي",
"displayName-count-other";
"فرنك سي إف بي",
"symbol";
"CFPF";
}
"XPT";
{
"displayName";
"البلاتين",
"symbol";
"XPT";
}
"XRE";
{
"displayName";
"XRE",
"symbol";
"XRE";
}
"XSU";
{
"displayName";
"XSU",
"symbol";
"XSU";
}
"XTS";
{
"displayName";
"كود اختبار العملة",
"symbol";
"XTS";
}
"XUA";
{
"displayName";
"XUA",
"symbol";
"XUA";
}
"XXX";
{
"displayName";
"عملة غير معروفة",
"displayName-count-zero";
"(عملة غير معروفة)",
"displayName-count-one";
"(عملة غير معروفة)",
"displayName-count-two";
"(عملة غير معروفة)",
"displayName-count-few";
"(عملة غير معروفة)",
"displayName-count-many";
"(عملة غير معروفة)",
"displayName-count-other";
"(عملة غير معروفة)",
"symbol";
"***";
}
"YDD";
{
"displayName";
"دينار يمني",
"symbol";
"YDD";
}
"YER";
{
"displayName";
"ريال يمني",
"displayName-count-zero";
"ريال يمني",
"displayName-count-one";
"ريال يمني",
"displayName-count-two";
"ريال يمني",
"displayName-count-few";
"ريال يمني",
"displayName-count-many";
"ريال يمني",
"displayName-count-other";
"ريال يمني",
"symbol";
"ر.ي.";
}
"YUD";
{
"displayName";
"دينار يوغسلافي",
"symbol";
"YUD";
}
"YUM";
{
"displayName";
"YUM",
"symbol";
"YUM";
}
"YUN";
{
"displayName";
"دينار يوغسلافي قابل للتحويل",
"symbol";
"YUN";
}
"YUR";
{
"displayName";
"YUR",
"symbol";
"YUR";
}
"ZAL";
{
"displayName";
"راند جنوب أفريقيا -مالي",
"symbol";
"ZAL";
}
"ZAR";
{
"displayName";
"راند جنوب أفريقيا",
"displayName-count-zero";
"راند جنوب أفريقيا",
"displayName-count-one";
"راند جنوب أفريقيا",
"displayName-count-two";
"راند جنوب أفريقيا",
"displayName-count-few";
"راند جنوب أفريقيا",
"displayName-count-many";
"راند جنوب أفريقيا",
"displayName-count-other";
"راند جنوب أفريقيا",
"symbol";
"ZAR",
"symbol-alt-narrow";
"R";
}
"ZMK";
{
"displayName";
"كواشا زامبي - 1968-2012",
"displayName-count-zero";
"كواشا زامبي - 1968-2012",
"displayName-count-one";
"كواشا زامبي - 1968-2012",
"displayName-count-two";
"كواشا زامبي - 1968-2012",
"displayName-count-few";
"كواشا زامبي - 1968-2012",
"displayName-count-many";
"كواشا زامبي - 1968-2012",
"displayName-count-other";
"كواشا زامبي - 1968-2012",
"symbol";
"ZMK";
}
"ZMW";
{
"displayName";
"كواشا زامبي",
"displayName-count-zero";
"كواشا زامبي",
"displayName-count-one";
"كواشا زامبي",
"displayName-count-two";
"كواشا زامبي",
"displayName-count-few";
"كواشا زامبي",
"displayName-count-many";
"كواشا زامبي",
"displayName-count-other";
"كواشا زامبي",
"symbol";
"ZMW",
"symbol-alt-narrow";
"ZK";
}
"ZRN";
{
"displayName";
"زائير زائيري جديد",
"symbol";
"ZRN";
}
"ZRZ";
{
"displayName";
"زائير زائيري",
"symbol";
"ZRZ";
}
"ZWD";
{
"displayName";
"دولار زمبابوي",
"symbol";
"ZWD";
}
"ZWL";
{
"displayName";
"دولار زمبابوي 2009",
"symbol";
"ZWL";
}
"ZWR";
{
"displayName";
"ZWR",
"symbol";
"ZWR";
}
}
}
}
}
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent } from '@syncfusion/ej2-react-calendars';
import { loadCldr, L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'ar': {
'calendar': {
today: "اليوم"
}
}
});
class App extends React.Component {
render() {
return <CalendarComponent id="calendar" locale='ar' enableRtl={true}/>;
}
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent} from '@syncfusion/ej2-react-calendars';
import { loadCldr,L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'ar': {
'calendar': {
today: "اليوم"
}
}
});
class App extends React.Component<{}, {}> {
render() {
return <CalendarComponent id="calendar" locale='ar' enableRtl={true} />
}
};
ReactDOM.render(<App />, document.getElementById('element'));
{
"supplemental": {
"version": {
"_number": "$Revision: 12732 $",
"_unicodeVersion": "9.0.0",
"_cldrVersion": "31"
},
"numberingSystems": {
"adlm": {
"_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type": "numeric"
},
"ahom": {
"_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type": "numeric"
},
"arab": {
"_digits": "٠١٢٣٤٥٦٧٨٩",
"_type": "numeric"
},
"arabext": {
"_digits": "۰۱۲۳۴۵۶۷۸۹",
"_type": "numeric"
},
"armn": {
"_rules": "armenian-upper",
"_type": "algorithmic"
},
"armnlow": {
"_rules": "armenian-lower",
"_type": "algorithmic"
},
"bali": {
"_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type": "numeric"
},
"beng": {
"_digits": "০১২৩৪৫৬৭৮৯",
"_type": "numeric"
},
"bhks": {
"_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type": "numeric"
},
"brah": {
"_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type": "numeric"
},
"cakm": {
"_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type": "numeric"
},
"cham": {
"_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type": "numeric"
},
"cyrl": {
"_rules": "cyrillic-lower",
"_type": "algorithmic"
},
"deva": {
"_digits": "०१२३४५६७८९",
"_type": "numeric"
},
"ethi": {
"_rules": "ethiopic",
"_type": "algorithmic"
},
"fullwide": {
"_digits": "0123456789",
"_type": "numeric"
},
"geor": {
"_rules": "georgian",
"_type": "algorithmic"
},
"grek": {
"_rules": "greek-upper",
"_type": "algorithmic"
},
"greklow": {
"_rules": "greek-lower",
"_type": "algorithmic"
},
"gujr": {
"_digits": "૦૧૨૩૪૫૬૭૮૯",
"_type": "numeric"
},
"guru": {
"_digits": "੦੧੨੩੪੫੬੭੮੯",
"_type": "numeric"
},
"hanidays": {
"_rules": "zh/SpelloutRules/spellout-numbering-days",
"_type": "algorithmic"
},
"hanidec": {
"_digits": "〇一二三四五六七八九",
"_type": "numeric"
},
"hans": {
"_rules": "zh/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hansfin": {
"_rules": "zh/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hant": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hantfin": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hebr": {
"_rules": "hebrew",
"_type": "algorithmic"
},
"hmng": {
"_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type": "numeric"
},
"java": {
"_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type": "numeric"
},
"jpan": {
"_rules": "ja/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"jpanfin": {
"_rules": "ja/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"kali": {
"_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type": "numeric"
},
"khmr": {
"_digits": "០១២៣៤៥៦៧៨៩",
"_type": "numeric"
},
"knda": {
"_digits": "೦೧೨೩೪೫೬೭೮೯",
"_type": "numeric"
},
"lana": {
"_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type": "numeric"
},
"lanatham": {
"_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type": "numeric"
},
"laoo": {
"_digits": "໐໑໒໓໔໕໖໗໘໙",
"_type": "numeric"
},
"latn": {
"_digits": "0123456789",
"_type": "numeric"
},
"lepc": {
"_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type": "numeric"
},
"limb": {
"_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type": "numeric"
},
"mathbold": {
"_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type": "numeric"
},
"mathdbl": {
"_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type": "numeric"
},
"mathmono": {
"_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type": "numeric"
},
"mathsanb": {
"_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type": "numeric"
},
"mathsans": {
"_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type": "numeric"
},
"mlym": {
"_digits": "൦൧൨൩൪൫൬൭൮൯",
"_type": "numeric"
},
"modi": {
"_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type": "numeric"
},
"mong": {
"_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type": "numeric"
},
"mroo": {
"_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type": "numeric"
},
"mtei": {
"_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type": "numeric"
},
"mymr": {
"_digits": "၀၁၂၃၄၅၆၇၈၉",
"_type": "numeric"
},
"mymrshan": {
"_digits": "႐႑႒႓႔႕႖႗႘႙",
"_type": "numeric"
},
"mymrtlng": {
"_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type": "numeric"
},
"newa": {
"_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type": "numeric"
},
"nkoo": {
"_digits": "߀߁߂߃߄߅߆߇߈߉",
"_type": "numeric"
},
"olck": {
"_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type": "numeric"
},
"orya": {
"_digits": "୦୧୨୩୪୫୬୭୮୯",
"_type": "numeric"
},
"osma": {
"_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type": "numeric"
},
"roman": {
"_rules": "roman-upper",
"_type": "algorithmic"
},
"romanlow": {
"_rules": "roman-lower",
"_type": "algorithmic"
},
"saur": {
"_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type": "numeric"
},
"shrd": {
"_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type": "numeric"
},
"sind": {
"_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type": "numeric"
},
"sinh": {
"_digits": "෦෧෨෩෪෫෬෭෮෯",
"_type": "numeric"
},
"sora": {
"_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type": "numeric"
},
"sund": {
"_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type": "numeric"
},
"takr": {
"_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type": "numeric"
},
"talu": {
"_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type": "numeric"
},
"taml": {
"_rules": "tamil",
"_type": "algorithmic"
},
"tamldec": {
"_digits": "௦௧௨௩௪௫௬௭௮௯",
"_type": "numeric"
},
"telu": {
"_digits": "౦౧౨౩౪౫౬౭౮౯",
"_type": "numeric"
},
"thai": {
"_digits": "๐๑๒๓๔๕๖๗๘๙",
"_type": "numeric"
},
"tibt": {
"_digits": "༠༡༢༣༤༥༦༧༨༩",
"_type": "numeric"
},
"tirh": {
"_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type": "numeric"
},
"vaii": {
"_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type": "numeric"
},
"wara": {
"_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type": "numeric"
}
}
}
}
{
"supplemental";
{
"version";
{
"_number";
"$Revision: 12732 $",
"_unicodeVersion";
"9.0.0",
"_cldrVersion";
"31";
}
"numberingSystems";
{
"adlm";
{
"_digits";
"𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type";
"numeric";
}
"ahom";
{
"_digits";
"𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type";
"numeric";
}
"arab";
{
"_digits";
"٠١٢٣٤٥٦٧٨٩",
"_type";
"numeric";
}
"arabext";
{
"_digits";
"۰۱۲۳۴۵۶۷۸۹",
"_type";
"numeric";
}
"armn";
{
"_rules";
"armenian-upper",
"_type";
"algorithmic";
}
"armnlow";
{
"_rules";
"armenian-lower",
"_type";
"algorithmic";
}
"bali";
{
"_digits";
"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type";
"numeric";
}
"beng";
{
"_digits";
"০১২৩৪৫৬৭৮৯",
"_type";
"numeric";
}
"bhks";
{
"_digits";
"𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type";
"numeric";
}
"brah";
{
"_digits";
"𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type";
"numeric";
}
"cakm";
{
"_digits";
"𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type";
"numeric";
}
"cham";
{
"_digits";
"꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type";
"numeric";
}
"cyrl";
{
"_rules";
"cyrillic-lower",
"_type";
"algorithmic";
}
"deva";
{
"_digits";
"०१२३४५६७८९",
"_type";
"numeric";
}
"ethi";
{
"_rules";
"ethiopic",
"_type";
"algorithmic";
}
"fullwide";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"geor";
{
"_rules";
"georgian",
"_type";
"algorithmic";
}
"grek";
{
"_rules";
"greek-upper",
"_type";
"algorithmic";
}
"greklow";
{
"_rules";
"greek-lower",
"_type";
"algorithmic";
}
"gujr";
{
"_digits";
"૦૧૨૩૪૫૬૭૮૯",
"_type";
"numeric";
}
"guru";
{
"_digits";
"੦੧੨੩੪੫੬੭੮੯",
"_type";
"numeric";
}
"hanidays";
{
"_rules";
"zh/SpelloutRules/spellout-numbering-days",
"_type";
"algorithmic";
}
"hanidec";
{
"_digits";
"〇一二三四五六七八九",
"_type";
"numeric";
}
"hans";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hansfin";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hant";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hantfin";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hebr";
{
"_rules";
"hebrew",
"_type";
"algorithmic";
}
"hmng";
{
"_digits";
"𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type";
"numeric";
}
"java";
{
"_digits";
"꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type";
"numeric";
}
"jpan";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"jpanfin";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"kali";
{
"_digits";
"꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type";
"numeric";
}
"khmr";
{
"_digits";
"០១២៣៤៥៦៧៨៩",
"_type";
"numeric";
}
"knda";
{
"_digits";
"೦೧೨೩೪೫೬೭೮೯",
"_type";
"numeric";
}
"lana";
{
"_digits";
"᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type";
"numeric";
}
"lanatham";
{
"_digits";
"᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type";
"numeric";
}
"laoo";
{
"_digits";
"໐໑໒໓໔໕໖໗໘໙",
"_type";
"numeric";
}
"latn";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"lepc";
{
"_digits";
"᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type";
"numeric";
}
"limb";
{
"_digits";
"᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type";
"numeric";
}
"mathbold";
{
"_digits";
"𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type";
"numeric";
}
"mathdbl";
{
"_digits";
"𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type";
"numeric";
}
"mathmono";
{
"_digits";
"𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type";
"numeric";
}
"mathsanb";
{
"_digits";
"𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type";
"numeric";
}
"mathsans";
{
"_digits";
"𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type";
"numeric";
}
"mlym";
{
"_digits";
"൦൧൨൩൪൫൬൭൮൯",
"_type";
"numeric";
}
"modi";
{
"_digits";
"𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type";
"numeric";
}
"mong";
{
"_digits";
"᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type";
"numeric";
}
"mroo";
{
"_digits";
"𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type";
"numeric";
}
"mtei";
{
"_digits";
"꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type";
"numeric";
}
"mymr";
{
"_digits";
"၀၁၂၃၄၅၆၇၈၉",
"_type";
"numeric";
}
"mymrshan";
{
"_digits";
"႐႑႒႓႔႕႖႗႘႙",
"_type";
"numeric";
}
"mymrtlng";
{
"_digits";
"꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type";
"numeric";
}
"newa";
{
"_digits";
"𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type";
"numeric";
}
"nkoo";
{
"_digits";
"߀߁߂߃߄߅߆߇߈߉",
"_type";
"numeric";
}
"olck";
{
"_digits";
"᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type";
"numeric";
}
"orya";
{
"_digits";
"୦୧୨୩୪୫୬୭୮୯",
"_type";
"numeric";
}
"osma";
{
"_digits";
"𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type";
"numeric";
}
"roman";
{
"_rules";
"roman-upper",
"_type";
"algorithmic";
}
"romanlow";
{
"_rules";
"roman-lower",
"_type";
"algorithmic";
}
"saur";
{
"_digits";
"꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type";
"numeric";
}
"shrd";
{
"_digits";
"𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type";
"numeric";
}
"sind";
{
"_digits";
"𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type";
"numeric";
}
"sinh";
{
"_digits";
"෦෧෨෩෪෫෬෭෮෯",
"_type";
"numeric";
}
"sora";
{
"_digits";
"𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type";
"numeric";
}
"sund";
{
"_digits";
"᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type";
"numeric";
}
"takr";
{
"_digits";
"𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type";
"numeric";
}
"talu";
{
"_digits";
"᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type";
"numeric";
}
"taml";
{
"_rules";
"tamil",
"_type";
"algorithmic";
}
"tamldec";
{
"_digits";
"௦௧௨௩௪௫௬௭௮௯",
"_type";
"numeric";
}
"telu";
{
"_digits";
"౦౧౨౩౪౫౬౭౮౯",
"_type";
"numeric";
}
"thai";
{
"_digits";
"๐๑๒๓๔๕๖๗๘๙",
"_type";
"numeric";
}
"tibt";
{
"_digits";
"༠༡༢༣༤༥༦༧༨༩",
"_type";
"numeric";
}
"tirh";
{
"_digits";
"𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type";
"numeric";
}
"vaii";
{
"_digits";
"꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type";
"numeric";
}
"wara";
{
"_digits";
"𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type";
"numeric";
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"numbers": {
"defaultNumberingSystem": "arab",
"otherNumberingSystems": {
"native": "arab"
},
"minimumGroupingDigits": "1",
"symbols-numberSystem-arab": {
"decimal": "٫",
"group": "٬",
"list": "؛",
"percentSign": "٪",
"plusSign": "+",
"minusSign": "-",
"exponential": "اس",
"superscriptingExponent": "×",
"perMille": "؉",
"infinity": "∞",
"nan": "ليس رقم",
"timeSeparator": ":"
},
"symbols-numberSystem-latn": {
"decimal": ".",
"group": ",",
"list": ";",
"percentSign": "%",
"plusSign": "+",
"minusSign": "-",
"exponential": "E",
"superscriptingExponent": "×",
"perMille": "‰",
"infinity": "∞",
"nan": "ليس رقمًا",
"timeSeparator": ":"
},
"decimalFormats-numberSystem-arab": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليون",
"1000000-count-one": "0 مليون",
"1000000-count-two": "0 مليون",
"1000000-count-few": "0 ملايين",
"1000000-count-many": "0 مليون",
"1000000-count-other": "0 مليون",
"10000000-count-zero": "00 مليون",
"10000000-count-one": "00 مليون",
"10000000-count-two": "00 مليون",
"10000000-count-few": "00 ملايين",
"10000000-count-many": "00 مليون",
"10000000-count-other": "00 مليون",
"100000000-count-zero": "000 مليون",
"100000000-count-one": "000 مليون",
"100000000-count-two": "000 مليون",
"100000000-count-few": "000 مليون",
"100000000-count-many": "000 مليون",
"100000000-count-other": "000 مليون",
"1000000000-count-zero": "0 مليار",
"1000000000-count-one": "0 مليار",
"1000000000-count-two": "0 مليار",
"1000000000-count-few": "0 مليار",
"1000000000-count-many": "0 مليار",
"1000000000-count-other": "0 مليار",
"10000000000-count-zero": "00 مليار",
"10000000000-count-one": "00 مليار",
"10000000000-count-two": "00 مليار",
"10000000000-count-few": "00 مليار",
"10000000000-count-many": "00 مليار",
"10000000000-count-other": "00 مليار",
"100000000000-count-zero": "000 مليار",
"100000000000-count-one": "000 مليار",
"100000000000-count-two": "000 مليار",
"100000000000-count-few": "000 مليار",
"100000000000-count-many": "000 مليار",
"100000000000-count-other": "000 مليار",
"1000000000000-count-zero": "0 تريليون",
"1000000000000-count-one": "0 تريليون",
"1000000000000-count-two": "0 تريليون",
"1000000000000-count-few": "0 تريليونات",
"1000000000000-count-many": "0 تريليون",
"1000000000000-count-other": "0 تريليون",
"10000000000000-count-zero": "00 تريليون",
"10000000000000-count-one": "00 تريليون",
"10000000000000-count-two": "00 تريليون",
"10000000000000-count-few": "00 تريليون",
"10000000000000-count-many": "00 تريليون",
"10000000000000-count-other": "00 تريليون",
"100000000000000-count-zero": "000 تريليون",
"100000000000000-count-one": "000 تريليون",
"100000000000000-count-two": "000 تريليون",
"100000000000000-count-few": "000 تريليون",
"100000000000000-count-many": "000 تريليون",
"100000000000000-count-other": "000 تريليون"
}
},
"short": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليو",
"1000000-count-one": "0 مليو",
"1000000-count-two": "0 مليو",
"1000000-count-few": "0 مليو",
"1000000-count-many": "0 مليو",
"1000000-count-other": "0 مليو",
"10000000-count-zero": "00 مليو",
"10000000-count-one": "00 مليو",
"10000000-count-two": "00 مليو",
"10000000-count-few": "00 مليو",
"10000000-count-many": "00 مليو",
"10000000-count-other": "00 مليو",
"100000000-count-zero": "000 مليو",
"100000000-count-one": "000 مليو",
"100000000-count-two": "000 مليو",
"100000000-count-few": "000 مليو",
"100000000-count-many": "000 مليو",
"100000000-count-other": "000 مليو",
"1000000000-count-zero": "0 مليا",
"1000000000-count-one": "0 مليا",
"1000000000-count-two": "0 مليا",
"1000000000-count-few": "0 مليا",
"1000000000-count-many": "0 مليا",
"1000000000-count-other": "0 مليا",
"10000000000-count-zero": "00 مليا",
"10000000000-count-one": "00 مليا",
"10000000000-count-two": "00 مليا",
"10000000000-count-few": "00 مليا",
"10000000000-count-many": "00 مليا",
"10000000000-count-other": "00 مليا",
"100000000000-count-zero": "000 مليا",
"100000000000-count-one": "000 مليا",
"100000000000-count-two": "000 مليا",
"100000000000-count-few": "000 مليا",
"100000000000-count-many": "000 مليا",
"100000000000-count-other": "000 مليا",
"1000000000000-count-zero": "0 ترليو",
"1000000000000-count-one": "0 ترليو",
"1000000000000-count-two": "0 ترليو",
"1000000000000-count-few": "0 ترليو",
"1000000000000-count-many": "0 ترليو",
"1000000000000-count-other": "0 ترليو",
"10000000000000-count-zero": "00 ترليو",
"10000000000000-count-one": "00 ترليو",
"10000000000000-count-two": "00 ترليو",
"10000000000000-count-few": "00 ترليو",
"10000000000000-count-many": "00 ترليو",
"10000000000000-count-other": "00 ترليو",
"100000000000000-count-zero": "000 ترليو",
"100000000000000-count-one": "000 ترليو",
"100000000000000-count-two": "000 ترليو",
"100000000000000-count-few": "000 ترليو",
"100000000000000-count-many": "000 ترليو",
"100000000000000-count-other": "000 ترليو"
}
}
},
"decimalFormats-numberSystem-latn": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليون",
"1000000-count-one": "0 مليون",
"1000000-count-two": "0 مليون",
"1000000-count-few": "0 ملايين",
"1000000-count-many": "0 مليون",
"1000000-count-other": "0 مليون",
"10000000-count-zero": "00 مليون",
"10000000-count-one": "00 مليون",
"10000000-count-two": "00 مليون",
"10000000-count-few": "00 ملايين",
"10000000-count-many": "00 مليون",
"10000000-count-other": "00 مليون",
"100000000-count-zero": "000 مليون",
"100000000-count-one": "000 مليون",
"100000000-count-two": "000 مليون",
"100000000-count-few": "000 مليون",
"100000000-count-many": "000 مليون",
"100000000-count-other": "000 مليون",
"1000000000-count-zero": "0 مليار",
"1000000000-count-one": "0 مليار",
"1000000000-count-two": "0 مليار",
"1000000000-count-few": "0 مليار",
"1000000000-count-many": "0 مليار",
"1000000000-count-other": "0 مليار",
"10000000000-count-zero": "00 مليار",
"10000000000-count-one": "00 مليار",
"10000000000-count-two": "00 مليار",
"10000000000-count-few": "00 مليار",
"10000000000-count-many": "00 مليار",
"10000000000-count-other": "00 مليار",
"100000000000-count-zero": "000 مليار",
"100000000000-count-one": "000 مليار",
"100000000000-count-two": "000 مليار",
"100000000000-count-few": "000 مليار",
"100000000000-count-many": "000 مليار",
"100000000000-count-other": "000 مليار",
"1000000000000-count-zero": "0 تريليون",
"1000000000000-count-one": "0 تريليون",
"1000000000000-count-two": "0 تريليون",
"1000000000000-count-few": "0 تريليونات",
"1000000000000-count-many": "0 تريليون",
"1000000000000-count-other": "0 تريليون",
"10000000000000-count-zero": "00 تريليون",
"10000000000000-count-one": "00 تريليون",
"10000000000000-count-two": "00 تريليون",
"10000000000000-count-few": "00 تريليون",
"10000000000000-count-many": "00 تريليون",
"10000000000000-count-other": "00 تريليون",
"100000000000000-count-zero": "000 تريليون",
"100000000000000-count-one": "000 تريليون",
"100000000000000-count-two": "000 تريليون",
"100000000000000-count-few": "000 تريليون",
"100000000000000-count-many": "000 تريليون",
"100000000000000-count-other": "000 تريليون"
}
},
"short": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليو",
"1000000-count-one": "0 مليو",
"1000000-count-two": "0 مليو",
"1000000-count-few": "0 مليو",
"1000000-count-many": "0 مليو",
"1000000-count-other": "0 مليو",
"10000000-count-zero": "00 مليو",
"10000000-count-one": "00 مليو",
"10000000-count-two": "00 مليو",
"10000000-count-few": "00 مليو",
"10000000-count-many": "00 مليو",
"10000000-count-other": "00 مليو",
"100000000-count-zero": "000 مليو",
"100000000-count-one": "000 مليو",
"100000000-count-two": "000 مليو",
"100000000-count-few": "000 مليو",
"100000000-count-many": "000 مليو",
"100000000-count-other": "000 مليو",
"1000000000-count-zero": "0 مليا",
"1000000000-count-one": "0 مليا",
"1000000000-count-two": "0 مليا",
"1000000000-count-few": "0 مليا",
"1000000000-count-many": "0 مليا",
"1000000000-count-other": "0 مليا",
"10000000000-count-zero": "00 مليا",
"10000000000-count-one": "00 مليا",
"10000000000-count-two": "00 مليا",
"10000000000-count-few": "00 مليا",
"10000000000-count-many": "00 مليا",
"10000000000-count-other": "00 مليا",
"100000000000-count-zero": "000 مليا",
"100000000000-count-one": "000 مليا",
"100000000000-count-two": "000 مليا",
"100000000000-count-few": "000 مليا",
"100000000000-count-many": "000 مليا",
"100000000000-count-other": "000 مليا",
"1000000000000-count-zero": "0 ترليو",
"1000000000000-count-one": "0 ترليو",
"1000000000000-count-two": "0 ترليو",
"1000000000000-count-few": "0 ترليو",
"1000000000000-count-many": "0 ترليو",
"1000000000000-count-other": "0 ترليو",
"10000000000000-count-zero": "00 ترليو",
"10000000000000-count-one": "00 ترليو",
"10000000000000-count-two": "00 ترليو",
"10000000000000-count-few": "00 ترليو",
"10000000000000-count-many": "00 ترليو",
"10000000000000-count-other": "00 ترليو",
"100000000000000-count-zero": "000 ترليو",
"100000000000000-count-one": "000 ترليو",
"100000000000000-count-two": "000 ترليو",
"100000000000000-count-few": "000 ترليو",
"100000000000000-count-many": "000 ترليو",
"100000000000000-count-other": "000 ترليو"
}
}
},
"scientificFormats-numberSystem-arab": {
"standard": "#E0"
},
"scientificFormats-numberSystem-latn": {
"standard": "#E0"
},
"percentFormats-numberSystem-arab": {
"standard": "#,##0 %"
},
"percentFormats-numberSystem-latn": {
"standard": "#,##0%"
},
"currencyFormats-numberSystem-arab": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "#,##0.00 ¤",
"accounting": "#,##0.00 ¤",
"unitPattern-count-zero": "{0} {1}",
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-two": "{0} {1}",
"unitPattern-count-few": "{0} {1}",
"unitPattern-count-many": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"currencyFormats-numberSystem-latn": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "¤ #,##0.00",
"accounting": "¤#,##0.00;(¤#,##0.00)",
"short": {
"standard": {
"1000-count-zero": "¤ 0 ألف",
"1000-count-one": "¤ 0 ألف",
"1000-count-two": "¤ 0 ألف",
"1000-count-few": "¤ 0 ألف",
"1000-count-many": "¤ 0 ألف",
"1000-count-other": "¤ 0 ألف",
"10000-count-zero": "¤ 00 ألف",
"10000-count-one": "¤ 00 ألف",
"10000-count-two": "¤ 00 ألف",
"10000-count-few": "¤ 00 ألف",
"10000-count-many": "¤ 00 ألف",
"10000-count-other": "¤ 00 ألف",
"100000-count-zero": "¤ 000 ألف",
"100000-count-one": "¤ 000 ألف",
"100000-count-two": "¤ 000 ألف",
"100000-count-few": "¤ 000 ألف",
"100000-count-many": "¤ 000 ألف",
"100000-count-other": "¤ 000 ألف",
"1000000-count-zero": "¤ 0 مليو",
"1000000-count-one": "¤ 0 مليو",
"1000000-count-two": "¤ 0 مليو",
"1000000-count-few": "¤ 0 مليو",
"1000000-count-many": "¤ 0 مليو",
"1000000-count-other": "¤ 0 مليو",
"10000000-count-zero": "¤ 00 مليو",
"10000000-count-one": "¤ 00 مليو",
"10000000-count-two": "¤ 00 مليو",
"10000000-count-few": "¤ 00 مليو",
"10000000-count-many": "¤ 00 مليو",
"10000000-count-other": "¤ 00 مليو",
"100000000-count-zero": "¤ 000 مليو",
"100000000-count-one": "¤ 000 مليو",
"100000000-count-two": "¤ 000 مليو",
"100000000-count-few": "¤ 000 مليو",
"100000000-count-many": "¤ 000 مليو",
"100000000-count-other": "¤ 000 مليو",
"1000000000-count-zero": "¤ 0 مليا",
"1000000000-count-one": "¤ 0 مليا",
"1000000000-count-two": "¤ 0 مليا",
"1000000000-count-few": "¤ 0 مليا",
"1000000000-count-many": "¤ 0 مليا",
"1000000000-count-other": "¤ 0 مليا",
"10000000000-count-zero": "¤ 00 مليا",
"10000000000-count-one": "¤ 00 مليا",
"10000000000-count-two": "¤ 00 مليا",
"10000000000-count-few": "¤ 00 مليا",
"10000000000-count-many": "¤ 00 مليا",
"10000000000-count-other": "¤ 00 مليا",
"100000000000-count-zero": "¤ 000 مليا",
"100000000000-count-one": "¤ 000 مليا",
"100000000000-count-two": "¤ 000 مليا",
"100000000000-count-few": "¤ 000 مليا",
"100000000000-count-many": "¤ 000 مليا",
"100000000000-count-other": "¤ 000 مليا",
"1000000000000-count-zero": "¤ 0 ترليو",
"1000000000000-count-one": "¤ 0 ترليو",
"1000000000000-count-two": "¤ 0 ترليو",
"1000000000000-count-few": "¤ 0 ترليو",
"1000000000000-count-many": "¤ 0 ترليو",
"1000000000000-count-other": "¤ 0 ترليو",
"10000000000000-count-zero": "¤ 00 ترليو",
"10000000000000-count-one": "¤ 00 ترليو",
"10000000000000-count-two": "¤ 00 ترليو",
"10000000000000-count-few": "¤ 00 ترليو",
"10000000000000-count-many": "¤ 00 ترليو",
"10000000000000-count-other": "¤ 00 ترليو",
"100000000000000-count-zero": "¤ 000 ترليو",
"100000000000000-count-one": "¤ 000 ترليو",
"100000000000000-count-two": "¤ 000 ترليو",
"100000000000000-count-few": "¤ 000 ترليو",
"100000000000000-count-many": "¤ 000 ترليو",
"100000000000000-count-other": "¤ 000 ترليو"
}
},
"unitPattern-count-zero": "{0} {1}",
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-two": "{0} {1}",
"unitPattern-count-few": "{0} {1}",
"unitPattern-count-many": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"miscPatterns-numberSystem-arab": {
"atLeast": "+{0}",
"range": "{0}–{1}"
},
"miscPatterns-numberSystem-latn": {
"atLeast": "+{0}",
"range": "{0}–{1}"
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"numbers";
{
"defaultNumberingSystem";
"arab",
"otherNumberingSystems";
{
"native";
"arab";
}
"minimumGroupingDigits";
"1",
"symbols-numberSystem-arab";
{
"decimal";
"٫",
"group";
"٬",
"list";
"؛",
"percentSign";
"٪",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"اس",
"superscriptingExponent";
"×",
"perMille";
"؉",
"infinity";
"∞",
"nan";
"ليس رقم",
"timeSeparator";
":";
}
"symbols-numberSystem-latn";
{
"decimal";
".",
"group";
",",
"list";
";",
"percentSign";
"%",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"E",
"superscriptingExponent";
"×",
"perMille";
"‰",
"infinity";
"∞",
"nan";
"ليس رقمًا",
"timeSeparator";
":";
}
"decimalFormats-numberSystem-arab";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليون",
"1000000-count-one";
"0 مليون",
"1000000-count-two";
"0 مليون",
"1000000-count-few";
"0 ملايين",
"1000000-count-many";
"0 مليون",
"1000000-count-other";
"0 مليون",
"10000000-count-zero";
"00 مليون",
"10000000-count-one";
"00 مليون",
"10000000-count-two";
"00 مليون",
"10000000-count-few";
"00 ملايين",
"10000000-count-many";
"00 مليون",
"10000000-count-other";
"00 مليون",
"100000000-count-zero";
"000 مليون",
"100000000-count-one";
"000 مليون",
"100000000-count-two";
"000 مليون",
"100000000-count-few";
"000 مليون",
"100000000-count-many";
"000 مليون",
"100000000-count-other";
"000 مليون",
"1000000000-count-zero";
"0 مليار",
"1000000000-count-one";
"0 مليار",
"1000000000-count-two";
"0 مليار",
"1000000000-count-few";
"0 مليار",
"1000000000-count-many";
"0 مليار",
"1000000000-count-other";
"0 مليار",
"10000000000-count-zero";
"00 مليار",
"10000000000-count-one";
"00 مليار",
"10000000000-count-two";
"00 مليار",
"10000000000-count-few";
"00 مليار",
"10000000000-count-many";
"00 مليار",
"10000000000-count-other";
"00 مليار",
"100000000000-count-zero";
"000 مليار",
"100000000000-count-one";
"000 مليار",
"100000000000-count-two";
"000 مليار",
"100000000000-count-few";
"000 مليار",
"100000000000-count-many";
"000 مليار",
"100000000000-count-other";
"000 مليار",
"1000000000000-count-zero";
"0 تريليون",
"1000000000000-count-one";
"0 تريليون",
"1000000000000-count-two";
"0 تريليون",
"1000000000000-count-few";
"0 تريليونات",
"1000000000000-count-many";
"0 تريليون",
"1000000000000-count-other";
"0 تريليون",
"10000000000000-count-zero";
"00 تريليون",
"10000000000000-count-one";
"00 تريليون",
"10000000000000-count-two";
"00 تريليون",
"10000000000000-count-few";
"00 تريليون",
"10000000000000-count-many";
"00 تريليون",
"10000000000000-count-other";
"00 تريليون",
"100000000000000-count-zero";
"000 تريليون",
"100000000000000-count-one";
"000 تريليون",
"100000000000000-count-two";
"000 تريليون",
"100000000000000-count-few";
"000 تريليون",
"100000000000000-count-many";
"000 تريليون",
"100000000000000-count-other";
"000 تريليون";
}
}
"short";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليو",
"1000000-count-one";
"0 مليو",
"1000000-count-two";
"0 مليو",
"1000000-count-few";
"0 مليو",
"1000000-count-many";
"0 مليو",
"1000000-count-other";
"0 مليو",
"10000000-count-zero";
"00 مليو",
"10000000-count-one";
"00 مليو",
"10000000-count-two";
"00 مليو",
"10000000-count-few";
"00 مليو",
"10000000-count-many";
"00 مليو",
"10000000-count-other";
"00 مليو",
"100000000-count-zero";
"000 مليو",
"100000000-count-one";
"000 مليو",
"100000000-count-two";
"000 مليو",
"100000000-count-few";
"000 مليو",
"100000000-count-many";
"000 مليو",
"100000000-count-other";
"000 مليو",
"1000000000-count-zero";
"0 مليا",
"1000000000-count-one";
"0 مليا",
"1000000000-count-two";
"0 مليا",
"1000000000-count-few";
"0 مليا",
"1000000000-count-many";
"0 مليا",
"1000000000-count-other";
"0 مليا",
"10000000000-count-zero";
"00 مليا",
"10000000000-count-one";
"00 مليا",
"10000000000-count-two";
"00 مليا",
"10000000000-count-few";
"00 مليا",
"10000000000-count-many";
"00 مليا",
"10000000000-count-other";
"00 مليا",
"100000000000-count-zero";
"000 مليا",
"100000000000-count-one";
"000 مليا",
"100000000000-count-two";
"000 مليا",
"100000000000-count-few";
"000 مليا",
"100000000000-count-many";
"000 مليا",
"100000000000-count-other";
"000 مليا",
"1000000000000-count-zero";
"0 ترليو",
"1000000000000-count-one";
"0 ترليو",
"1000000000000-count-two";
"0 ترليو",
"1000000000000-count-few";
"0 ترليو",
"1000000000000-count-many";
"0 ترليو",
"1000000000000-count-other";
"0 ترليو",
"10000000000000-count-zero";
"00 ترليو",
"10000000000000-count-one";
"00 ترليو",
"10000000000000-count-two";
"00 ترليو",
"10000000000000-count-few";
"00 ترليو",
"10000000000000-count-many";
"00 ترليو",
"10000000000000-count-other";
"00 ترليو",
"100000000000000-count-zero";
"000 ترليو",
"100000000000000-count-one";
"000 ترليو",
"100000000000000-count-two";
"000 ترليو",
"100000000000000-count-few";
"000 ترليو",
"100000000000000-count-many";
"000 ترليو",
"100000000000000-count-other";
"000 ترليو";
}
}
}
"decimalFormats-numberSystem-latn";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليون",
"1000000-count-one";
"0 مليون",
"1000000-count-two";
"0 مليون",
"1000000-count-few";
"0 ملايين",
"1000000-count-many";
"0 مليون",
"1000000-count-other";
"0 مليون",
"10000000-count-zero";
"00 مليون",
"10000000-count-one";
"00 مليون",
"10000000-count-two";
"00 مليون",
"10000000-count-few";
"00 ملايين",
"10000000-count-many";
"00 مليون",
"10000000-count-other";
"00 مليون",
"100000000-count-zero";
"000 مليون",
"100000000-count-one";
"000 مليون",
"100000000-count-two";
"000 مليون",
"100000000-count-few";
"000 مليون",
"100000000-count-many";
"000 مليون",
"100000000-count-other";
"000 مليون",
"1000000000-count-zero";
"0 مليار",
"1000000000-count-one";
"0 مليار",
"1000000000-count-two";
"0 مليار",
"1000000000-count-few";
"0 مليار",
"1000000000-count-many";
"0 مليار",
"1000000000-count-other";
"0 مليار",
"10000000000-count-zero";
"00 مليار",
"10000000000-count-one";
"00 مليار",
"10000000000-count-two";
"00 مليار",
"10000000000-count-few";
"00 مليار",
"10000000000-count-many";
"00 مليار",
"10000000000-count-other";
"00 مليار",
"100000000000-count-zero";
"000 مليار",
"100000000000-count-one";
"000 مليار",
"100000000000-count-two";
"000 مليار",
"100000000000-count-few";
"000 مليار",
"100000000000-count-many";
"000 مليار",
"100000000000-count-other";
"000 مليار",
"1000000000000-count-zero";
"0 تريليون",
"1000000000000-count-one";
"0 تريليون",
"1000000000000-count-two";
"0 تريليون",
"1000000000000-count-few";
"0 تريليونات",
"1000000000000-count-many";
"0 تريليون",
"1000000000000-count-other";
"0 تريليون",
"10000000000000-count-zero";
"00 تريليون",
"10000000000000-count-one";
"00 تريليون",
"10000000000000-count-two";
"00 تريليون",
"10000000000000-count-few";
"00 تريليون",
"10000000000000-count-many";
"00 تريليون",
"10000000000000-count-other";
"00 تريليون",
"100000000000000-count-zero";
"000 تريليون",
"100000000000000-count-one";
"000 تريليون",
"100000000000000-count-two";
"000 تريليون",
"100000000000000-count-few";
"000 تريليون",
"100000000000000-count-many";
"000 تريليون",
"100000000000000-count-other";
"000 تريليون";
}
}
"short";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليو",
"1000000-count-one";
"0 مليو",
"1000000-count-two";
"0 مليو",
"1000000-count-few";
"0 مليو",
"1000000-count-many";
"0 مليو",
"1000000-count-other";
"0 مليو",
"10000000-count-zero";
"00 مليو",
"10000000-count-one";
"00 مليو",
"10000000-count-two";
"00 مليو",
"10000000-count-few";
"00 مليو",
"10000000-count-many";
"00 مليو",
"10000000-count-other";
"00 مليو",
"100000000-count-zero";
"000 مليو",
"100000000-count-one";
"000 مليو",
"100000000-count-two";
"000 مليو",
"100000000-count-few";
"000 مليو",
"100000000-count-many";
"000 مليو",
"100000000-count-other";
"000 مليو",
"1000000000-count-zero";
"0 مليا",
"1000000000-count-one";
"0 مليا",
"1000000000-count-two";
"0 مليا",
"1000000000-count-few";
"0 مليا",
"1000000000-count-many";
"0 مليا",
"1000000000-count-other";
"0 مليا",
"10000000000-count-zero";
"00 مليا",
"10000000000-count-one";
"00 مليا",
"10000000000-count-two";
"00 مليا",
"10000000000-count-few";
"00 مليا",
"10000000000-count-many";
"00 مليا",
"10000000000-count-other";
"00 مليا",
"100000000000-count-zero";
"000 مليا",
"100000000000-count-one";
"000 مليا",
"100000000000-count-two";
"000 مليا",
"100000000000-count-few";
"000 مليا",
"100000000000-count-many";
"000 مليا",
"100000000000-count-other";
"000 مليا",
"1000000000000-count-zero";
"0 ترليو",
"1000000000000-count-one";
"0 ترليو",
"1000000000000-count-two";
"0 ترليو",
"1000000000000-count-few";
"0 ترليو",
"1000000000000-count-many";
"0 ترليو",
"1000000000000-count-other";
"0 ترليو",
"10000000000000-count-zero";
"00 ترليو",
"10000000000000-count-one";
"00 ترليو",
"10000000000000-count-two";
"00 ترليو",
"10000000000000-count-few";
"00 ترليو",
"10000000000000-count-many";
"00 ترليو",
"10000000000000-count-other";
"00 ترليو",
"100000000000000-count-zero";
"000 ترليو",
"100000000000000-count-one";
"000 ترليو",
"100000000000000-count-two";
"000 ترليو",
"100000000000000-count-few";
"000 ترليو",
"100000000000000-count-many";
"000 ترليو",
"100000000000000-count-other";
"000 ترليو";
}
}
}
"scientificFormats-numberSystem-arab";
{
"standard";
"#E0";
}
"scientificFormats-numberSystem-latn";
{
"standard";
"#E0";
}
"percentFormats-numberSystem-arab";
{
"standard";
"#,##0 %";
}
"percentFormats-numberSystem-latn";
{
"standard";
"#,##0%";
}
"currencyFormats-numberSystem-arab";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"#,##0.00 ¤",
"accounting";
"#,##0.00 ¤",
"unitPattern-count-zero";
"{0} {1}",
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-two";
"{0} {1}",
"unitPattern-count-few";
"{0} {1}",
"unitPattern-count-many";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"currencyFormats-numberSystem-latn";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"¤ #,##0.00",
"accounting";
"¤#,##0.00;(¤#,##0.00)",
"short";
{
"standard";
{
"1000-count-zero";
"¤ 0 ألف",
"1000-count-one";
"¤ 0 ألف",
"1000-count-two";
"¤ 0 ألف",
"1000-count-few";
"¤ 0 ألف",
"1000-count-many";
"¤ 0 ألف",
"1000-count-other";
"¤ 0 ألف",
"10000-count-zero";
"¤ 00 ألف",
"10000-count-one";
"¤ 00 ألف",
"10000-count-two";
"¤ 00 ألف",
"10000-count-few";
"¤ 00 ألف",
"10000-count-many";
"¤ 00 ألف",
"10000-count-other";
"¤ 00 ألف",
"100000-count-zero";
"¤ 000 ألف",
"100000-count-one";
"¤ 000 ألف",
"100000-count-two";
"¤ 000 ألف",
"100000-count-few";
"¤ 000 ألف",
"100000-count-many";
"¤ 000 ألف",
"100000-count-other";
"¤ 000 ألف",
"1000000-count-zero";
"¤ 0 مليو",
"1000000-count-one";
"¤ 0 مليو",
"1000000-count-two";
"¤ 0 مليو",
"1000000-count-few";
"¤ 0 مليو",
"1000000-count-many";
"¤ 0 مليو",
"1000000-count-other";
"¤ 0 مليو",
"10000000-count-zero";
"¤ 00 مليو",
"10000000-count-one";
"¤ 00 مليو",
"10000000-count-two";
"¤ 00 مليو",
"10000000-count-few";
"¤ 00 مليو",
"10000000-count-many";
"¤ 00 مليو",
"10000000-count-other";
"¤ 00 مليو",
"100000000-count-zero";
"¤ 000 مليو",
"100000000-count-one";
"¤ 000 مليو",
"100000000-count-two";
"¤ 000 مليو",
"100000000-count-few";
"¤ 000 مليو",
"100000000-count-many";
"¤ 000 مليو",
"100000000-count-other";
"¤ 000 مليو",
"1000000000-count-zero";
"¤ 0 مليا",
"1000000000-count-one";
"¤ 0 مليا",
"1000000000-count-two";
"¤ 0 مليا",
"1000000000-count-few";
"¤ 0 مليا",
"1000000000-count-many";
"¤ 0 مليا",
"1000000000-count-other";
"¤ 0 مليا",
"10000000000-count-zero";
"¤ 00 مليا",
"10000000000-count-one";
"¤ 00 مليا",
"10000000000-count-two";
"¤ 00 مليا",
"10000000000-count-few";
"¤ 00 مليا",
"10000000000-count-many";
"¤ 00 مليا",
"10000000000-count-other";
"¤ 00 مليا",
"100000000000-count-zero";
"¤ 000 مليا",
"100000000000-count-one";
"¤ 000 مليا",
"100000000000-count-two";
"¤ 000 مليا",
"100000000000-count-few";
"¤ 000 مليا",
"100000000000-count-many";
"¤ 000 مليا",
"100000000000-count-other";
"¤ 000 مليا",
"1000000000000-count-zero";
"¤ 0 ترليو",
"1000000000000-count-one";
"¤ 0 ترليو",
"1000000000000-count-two";
"¤ 0 ترليو",
"1000000000000-count-few";
"¤ 0 ترليو",
"1000000000000-count-many";
"¤ 0 ترليو",
"1000000000000-count-other";
"¤ 0 ترليو",
"10000000000000-count-zero";
"¤ 00 ترليو",
"10000000000000-count-one";
"¤ 00 ترليو",
"10000000000000-count-two";
"¤ 00 ترليو",
"10000000000000-count-few";
"¤ 00 ترليو",
"10000000000000-count-many";
"¤ 00 ترليو",
"10000000000000-count-other";
"¤ 00 ترليو",
"100000000000000-count-zero";
"¤ 000 ترليو",
"100000000000000-count-one";
"¤ 000 ترليو",
"100000000000000-count-two";
"¤ 000 ترليو",
"100000000000000-count-few";
"¤ 000 ترليو",
"100000000000000-count-many";
"¤ 000 ترليو",
"100000000000000-count-other";
"¤ 000 ترليو";
}
}
"unitPattern-count-zero";
"{0} {1}",
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-two";
"{0} {1}",
"unitPattern-count-few";
"{0} {1}",
"unitPattern-count-many";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"miscPatterns-numberSystem-arab";
{
"atLeast";
"+{0}",
"range";
"{0}–{1}";
}
"miscPatterns-numberSystem-latn";
{
"atLeast";
"+{0}",
"range";
"{0}–{1}";
}
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"dates": {
"timeZoneNames": {
"hourFormat": "+HH:mm;-HH:mm",
"gmtFormat": "جرينتش{0}",
"gmtZeroFormat": "جرينتش",
"regionFormat": "توقيت {0}",
"regionFormat-type-daylight": "توقيت {0} الصيفي",
"regionFormat-type-standard": "توقيت {0} الرسمي",
"fallbackFormat": "{1} ({0})",
"zone": {
"America": {
"Adak": {
"exemplarCity": "أداك"
},
"Anchorage": {
"exemplarCity": "أنشوراج"
},
"Anguilla": {
"exemplarCity": "أنغيلا"
},
"Antigua": {
"exemplarCity": "أنتيغوا"
},
"Araguaina": {
"exemplarCity": "أروجوانيا"
},
"Argentina": {
"Rio_Gallegos": {
"exemplarCity": "ريو جالييوس"
},
"San_Juan": {
"exemplarCity": "سان خوان"
},
"Ushuaia": {
"exemplarCity": "أشوا"
},
"La_Rioja": {
"exemplarCity": "لا ريوجا"
},
"San_Luis": {
"exemplarCity": "سان لويس"
},
"Salta": {
"exemplarCity": "سالطا"
},
"Tucuman": {
"exemplarCity": "تاكمان"
}
},
"Aruba": {
"exemplarCity": "أروبا"
},
"Asuncion": {
"exemplarCity": "أسونسيون"
},
"Bahia": {
"exemplarCity": "باهيا"
},
"Bahia_Banderas": {
"exemplarCity": "باهيا بانديراس"
},
"Barbados": {
"exemplarCity": "بربادوس"
},
"Belem": {
"exemplarCity": "بلم"
},
"Belize": {
"exemplarCity": "بليز"
},
"Blanc-Sablon": {
"exemplarCity": "بلانك-سابلون"
},
"Boa_Vista": {
"exemplarCity": "باو فيستا"
},
"Bogota": {
"exemplarCity": "بوغوتا"
},
"Boise": {
"exemplarCity": "بويس"
},
"Buenos_Aires": {
"exemplarCity": "بوينوس أيرس"
},
"Cambridge_Bay": {
"exemplarCity": "كامبرديج باي"
},
"Campo_Grande": {
"exemplarCity": "كومبو جراند"
},
"Cancun": {
"exemplarCity": "كانكون"
},
"Caracas": {
"exemplarCity": "كاراكاس"
},
"Catamarca": {
"exemplarCity": "كاتاماركا"
},
"Cayenne": {
"exemplarCity": "كايين"
},
"Cayman": {
"exemplarCity": "كيمان"
},
"Chicago": {
"exemplarCity": "شيكاغو"
},
"Chihuahua": {
"exemplarCity": "تشيواوا"
},
"Coral_Harbour": {
"exemplarCity": "كورال هاربر"
},
"Cordoba": {
"exemplarCity": "كوردوبا"
},
"Costa_Rica": {
"exemplarCity": "كوستاريكا"
},
"Creston": {
"exemplarCity": "كريستون"
},
"Cuiaba": {
"exemplarCity": "كيابا"
},
"Curacao": {
"exemplarCity": "كوراكاو"
},
"Danmarkshavn": {
"exemplarCity": "دانمرك شافن"
},
"Dawson": {
"exemplarCity": "داوسان"
},
"Dawson_Creek": {
"exemplarCity": "داوسن كريك"
},
"Denver": {
"exemplarCity": "دنفر"
},
"Detroit": {
"exemplarCity": "ديترويت"
},
"Dominica": {
"exemplarCity": "دومينيكا"
},
"Edmonton": {
"exemplarCity": "ايدمونتون"
},
"Eirunepe": {
"exemplarCity": "ايرونبي"
},
"El_Salvador": {
"exemplarCity": "السلفادور"
},
"Fort_Nelson": {
"exemplarCity": "فورت نيلسون"
},
"Fortaleza": {
"exemplarCity": "فورتاليزا"
},
"Glace_Bay": {
"exemplarCity": "جلاس باي"
},
"Godthab": {
"exemplarCity": "غودثاب"
},
"Goose_Bay": {
"exemplarCity": "جوس باي"
},
"Grand_Turk": {
"exemplarCity": "غراند ترك"
},
"Grenada": {
"exemplarCity": "غرينادا"
},
"Guadeloupe": {
"exemplarCity": "غوادلوب"
},
"Guatemala": {
"exemplarCity": "غواتيمالا"
},
"Guayaquil": {
"exemplarCity": "غواياكويل"
},
"Guyana": {
"exemplarCity": "غيانا"
},
"Halifax": {
"exemplarCity": "هاليفاكس"
},
"Havana": {
"exemplarCity": "هافانا"
},
"Hermosillo": {
"exemplarCity": "هيرموسيلو"
},
"Indiana": {
"Vincennes": {
"exemplarCity": "فينسينس"
},
"Petersburg": {
"exemplarCity": "بيترسبرغ"
},
"Tell_City": {
"exemplarCity": "مدينة تل، إنديانا"
},
"Knox": {
"exemplarCity": "كونكس"
},
"Winamac": {
"exemplarCity": "ويناماك"
},
"Marengo": {
"exemplarCity": "مارنجو"
},
"Vevay": {
"exemplarCity": "فيفاي"
}
},
"Indianapolis": {
"exemplarCity": "إنديانابوليس"
},
"Inuvik": {
"exemplarCity": "اينوفيك"
},
"Iqaluit": {
"exemplarCity": "اكويلت"
},
"Jamaica": {
"exemplarCity": "جامايكا"
},
"Jujuy": {
"exemplarCity": "جوجو"
},
"Juneau": {
"exemplarCity": "جوني"
},
"Kentucky": {
"Monticello": {
"exemplarCity": "مونتيسيلو"
}
},
"Kralendijk": {
"exemplarCity": "كرالنديك"
},
"La_Paz": {
"exemplarCity": "لا باز"
},
"Lima": {
"exemplarCity": "ليما"
},
"Los_Angeles": {
"exemplarCity": "لوس انجلوس"
},
"Louisville": {
"exemplarCity": "لويس فيل"
},
"Lower_Princes": {
"exemplarCity": "حي الأمير السفلي"
},
"Maceio": {
"exemplarCity": "ماشيو"
},
"Managua": {
"exemplarCity": "ماناغوا"
},
"Manaus": {
"exemplarCity": "ماناوس"
},
"Marigot": {
"exemplarCity": "ماريغوت"
},
"Martinique": {
"exemplarCity": "المارتينيك"
},
"Matamoros": {
"exemplarCity": "ماتاموروس"
},
"Mazatlan": {
"exemplarCity": "مازاتلان"
},
"Mendoza": {
"exemplarCity": "ميندوزا"
},
"Menominee": {
"exemplarCity": "مينوميني"
},
"Merida": {
"exemplarCity": "ميريدا"
},
"Metlakatla": {
"exemplarCity": "ميتلاكاتلا"
},
"Mexico_City": {
"exemplarCity": "مدينة المكسيك"
},
"Miquelon": {
"exemplarCity": "ميكولن"
},
"Moncton": {
"exemplarCity": "وينكتون"
},
"Monterrey": {
"exemplarCity": "مونتيري"
},
"Montevideo": {
"exemplarCity": "مونتفيديو"
},
"Montserrat": {
"exemplarCity": "مونتسيرات"
},
"Nassau": {
"exemplarCity": "ناسو"
},
"New_York": {
"exemplarCity": "نيويورك"
},
"Nipigon": {
"exemplarCity": "نيبيجون"
},
"Nome": {
"exemplarCity": "نوم"
},
"Noronha": {
"exemplarCity": "نوروناه"
},
"North_Dakota": {
"Beulah": {
"exemplarCity": "بيولا، داكوتا الشمالية"
},
"New_Salem": {
"exemplarCity": "نيو ساليم"
},
"Center": {
"exemplarCity": "سنتر"
}
},
"Ojinaga": {
"exemplarCity": "أوجيناجا"
},
"Panama": {
"exemplarCity": "بنما"
},
"Pangnirtung": {
"exemplarCity": "بانجينتينج"
},
"Paramaribo": {
"exemplarCity": "باراماريبو"
},
"Phoenix": {
"exemplarCity": "فينكس"
},
"Port-au-Prince": {
"exemplarCity": "بورت أو برنس"
},
"Port_of_Spain": {
"exemplarCity": "بورت أوف سبين"
},
"Porto_Velho": {
"exemplarCity": "بورتو فيلو"
},
"Puerto_Rico": {
"exemplarCity": "بورتوريكو"
},
"Rainy_River": {
"exemplarCity": "راني ريفر"
},
"Rankin_Inlet": {
"exemplarCity": "رانكن انلت"
},
"Recife": {
"exemplarCity": "ريسيف"
},
"Regina": {
"exemplarCity": "ريجينا"
},
"Resolute": {
"exemplarCity": "ريزولوت"
},
"Rio_Branco": {
"exemplarCity": "ريوبرانكو"
},
"Santa_Isabel": {
"exemplarCity": "سانتا إيزابيل"
},
"Santarem": {
"exemplarCity": "سانتاريم"
},
"Santiago": {
"exemplarCity": "سانتياغو"
},
"Santo_Domingo": {
"exemplarCity": "سانتو دومينغو"
},
"Sao_Paulo": {
"exemplarCity": "ساو باولو"
},
"Scoresbysund": {
"exemplarCity": "سكورسبيسند"
},
"Sitka": {
"exemplarCity": "سيتكا"
},
"St_Barthelemy": {
"exemplarCity": "سانت بارتيليمي"
},
"St_Johns": {
"exemplarCity": "سانت جونس"
},
"St_Kitts": {
"exemplarCity": "سانت كيتس"
},
"St_Lucia": {
"exemplarCity": "سانت لوشيا"
},
"St_Thomas": {
"exemplarCity": "سانت توماس"
},
"St_Vincent": {
"exemplarCity": "سانت فنسنت"
},
"Swift_Current": {
"exemplarCity": "سوفت كارنت"
},
"Tegucigalpa": {
"exemplarCity": "تيغوسيغالبا"
},
"Thule": {
"exemplarCity": "ثيل"
},
"Thunder_Bay": {
"exemplarCity": "ثندر باي"
},
"Tijuana": {
"exemplarCity": "تيخوانا"
},
"Toronto": {
"exemplarCity": "تورونتو"
},
"Tortola": {
"exemplarCity": "تورتولا"
},
"Vancouver": {
"exemplarCity": "فانكوفر"
},
"Whitehorse": {
"exemplarCity": "وايت هورس"
},
"Winnipeg": {
"exemplarCity": "وينيبيج"
},
"Yakutat": {
"exemplarCity": "ياكوتات"
},
"Yellowknife": {
"exemplarCity": "يلونيف"
}
},
"Atlantic": {
"Azores": {
"exemplarCity": "أزورس"
},
"Bermuda": {
"exemplarCity": "برمودا"
},
"Canary": {
"exemplarCity": "كناري"
},
"Cape_Verde": {
"exemplarCity": "الرأس الأخضر"
},
"Faeroe": {
"exemplarCity": "فارو"
},
"Madeira": {
"exemplarCity": "ماديرا"
},
"Reykjavik": {
"exemplarCity": "ريكيافيك"
},
"South_Georgia": {
"exemplarCity": "جورجيا الجنوبية"
},
"St_Helena": {
"exemplarCity": "سانت هيلينا"
},
"Stanley": {
"exemplarCity": "استانلي"
}
},
"Europe": {
"Amsterdam": {
"exemplarCity": "أمستردام"
},
"Andorra": {
"exemplarCity": "أندورا"
},
"Astrakhan": {
"exemplarCity": "أستراخان"
},
"Athens": {
"exemplarCity": "أثينا"
},
"Belgrade": {
"exemplarCity": "بلغراد"
},
"Berlin": {
"exemplarCity": "برلين"
},
"Bratislava": {
"exemplarCity": "براتيسلافا"
},
"Brussels": {
"exemplarCity": "بروكسل"
},
"Bucharest": {
"exemplarCity": "بوخارست"
},
"Budapest": {
"exemplarCity": "بودابست"
},
"Busingen": {
"exemplarCity": "بوسنغن"
},
"Chisinau": {
"exemplarCity": "تشيسيناو"
},
"Copenhagen": {
"exemplarCity": "كوبنهاغن"
},
"Dublin": {
"long": {
"daylight": "توقيت أيرلندا الرسمي"
},
"exemplarCity": "دبلن"
},
"Gibraltar": {
"exemplarCity": "جبل طارق"
},
"Guernsey": {
"exemplarCity": "غيرنسي"
},
"Helsinki": {
"exemplarCity": "هلسنكي"
},
"Isle_of_Man": {
"exemplarCity": "جزيرة مان"
},
"Istanbul": {
"exemplarCity": "إسطنبول"
},
"Jersey": {
"exemplarCity": "جيرسي"
},
"Kaliningrad": {
"exemplarCity": "كالينجراد"
},
"Kiev": {
"exemplarCity": "كييف"
},
"Kirov": {
"exemplarCity": "كيروف"
},
"Lisbon": {
"exemplarCity": "لشبونة"
},
"Ljubljana": {
"exemplarCity": "ليوبليانا"
},
"London": {
"long": {
"daylight": "توقيت بريطانيا الصيفي"
},
"exemplarCity": "لندن"
},
"Luxembourg": {
"exemplarCity": "لوكسمبورغ"
},
"Madrid": {
"exemplarCity": "مدريد"
},
"Malta": {
"exemplarCity": "مالطة"
},
"Mariehamn": {
"exemplarCity": "ماريهامن"
},
"Minsk": {
"exemplarCity": "مينسك"
},
"Monaco": {
"exemplarCity": "موناكو"
},
"Moscow": {
"exemplarCity": "موسكو"
},
"Oslo": {
"exemplarCity": "أوسلو"
},
"Paris": {
"exemplarCity": "باريس"
},
"Podgorica": {
"exemplarCity": "بودغوريكا"
},
"Prague": {
"exemplarCity": "براغ"
},
"Riga": {
"exemplarCity": "ريغا"
},
"Rome": {
"exemplarCity": "روما"
},
"Samara": {
"exemplarCity": "سمراء"
},
"San_Marino": {
"exemplarCity": "سان مارينو"
},
"Sarajevo": {
"exemplarCity": "سراييفو"
},
"Simferopol": {
"exemplarCity": "سيمفروبول"
},
"Skopje": {
"exemplarCity": "سكوبي"
},
"Sofia": {
"exemplarCity": "صوفيا"
},
"Stockholm": {
"exemplarCity": "ستوكهولم"
},
"Tallinn": {
"exemplarCity": "تالين"
},
"Tirane": {
"exemplarCity": "تيرانا"
},
"Ulyanovsk": {
"exemplarCity": "أوليانوفسك"
},
"Uzhgorod": {
"exemplarCity": "أوزجرود"
},
"Vaduz": {
"exemplarCity": "فادوز"
},
"Vatican": {
"exemplarCity": "الفاتيكان"
},
"Vienna": {
"exemplarCity": "فيينا"
},
"Vilnius": {
"exemplarCity": "فيلنيوس"
},
"Volgograd": {
"exemplarCity": "فولوجراد"
},
"Warsaw": {
"exemplarCity": "وارسو"
},
"Zagreb": {
"exemplarCity": "زغرب"
},
"Zaporozhye": {
"exemplarCity": "زابوروزي"
},
"Zurich": {
"exemplarCity": "زيورخ"
}
},
"Africa": {
"Abidjan": {
"exemplarCity": "أبيدجان"
},
"Accra": {
"exemplarCity": "أكرا"
},
"Addis_Ababa": {
"exemplarCity": "أديس أبابا"
},
"Algiers": {
"exemplarCity": "الجزائر"
},
"Asmera": {
"exemplarCity": "أسمرة"
},
"Bamako": {
"exemplarCity": "باماكو"
},
"Bangui": {
"exemplarCity": "بانغوي"
},
"Banjul": {
"exemplarCity": "بانجول"
},
"Bissau": {
"exemplarCity": "بيساو"
},
"Blantyre": {
"exemplarCity": "بلانتاير"
},
"Brazzaville": {
"exemplarCity": "برازافيل"
},
"Bujumbura": {
"exemplarCity": "بوجومبورا"
},
"Cairo": {
"exemplarCity": "القاهرة"
},
"Casablanca": {
"exemplarCity": "الدار البيضاء"
},
"Ceuta": {
"exemplarCity": "سيتا"
},
"Conakry": {
"exemplarCity": "كوناكري"
},
"Dakar": {
"exemplarCity": "داكار"
},
"Dar_es_Salaam": {
"exemplarCity": "دار السلام"
},
"Djibouti": {
"exemplarCity": "جيبوتي"
},
"Douala": {
"exemplarCity": "دوالا"
},
"El_Aaiun": {
"exemplarCity": "العيون"
},
"Freetown": {
"exemplarCity": "فري تاون"
},
"Gaborone": {
"exemplarCity": "غابورون"
},
"Harare": {
"exemplarCity": "هراري"
},
"Johannesburg": {
"exemplarCity": "جوهانسبرغ"
},
"Juba": {
"exemplarCity": "جوبا"
},
"Kampala": {
"exemplarCity": "كامبالا"
},
"Khartoum": {
"exemplarCity": "الخرطوم"
},
"Kigali": {
"exemplarCity": "كيغالي"
},
"Kinshasa": {
"exemplarCity": "كينشاسا"
},
"Lagos": {
"exemplarCity": "لاغوس"
},
"Libreville": {
"exemplarCity": "ليبرفيل"
},
"Lome": {
"exemplarCity": "لومي"
},
"Luanda": {
"exemplarCity": "لواندا"
},
"Lubumbashi": {
"exemplarCity": "لومبباشا"
},
"Lusaka": {
"exemplarCity": "لوساكا"
},
"Malabo": {
"exemplarCity": "مالابو"
},
"Maputo": {
"exemplarCity": "مابوتو"
},
"Maseru": {
"exemplarCity": "ماسيرو"
},
"Mbabane": {
"exemplarCity": "مباباني"
},
"Mogadishu": {
"exemplarCity": "مقديشيو"
},
"Monrovia": {
"exemplarCity": "مونروفيا"
},
"Nairobi": {
"exemplarCity": "نيروبي"
},
"Ndjamena": {
"exemplarCity": "نجامينا"
},
"Niamey": {
"exemplarCity": "نيامي"
},
"Nouakchott": {
"exemplarCity": "نواكشوط"
},
"Ouagadougou": {
"exemplarCity": "واغادوغو"
},
"Porto-Novo": {
"exemplarCity": "بورتو نوفو"
},
"Sao_Tome": {
"exemplarCity": "ساو تومي"
},
"Tripoli": {
"exemplarCity": "طرابلس"
},
"Tunis": {
"exemplarCity": "تونس"
},
"Windhoek": {
"exemplarCity": "ويندهوك"
}
},
"Asia": {
"Aden": {
"exemplarCity": "عدن"
},
"Almaty": {
"exemplarCity": "ألماتي"
},
"Amman": {
"exemplarCity": "عمان"
},
"Anadyr": {
"exemplarCity": "أندير"
},
"Aqtau": {
"exemplarCity": "أكتاو"
},
"Aqtobe": {
"exemplarCity": "أكتوب"
},
"Ashgabat": {
"exemplarCity": "عشق آباد"
},
"Baghdad": {
"exemplarCity": "بغداد"
},
"Bahrain": {
"exemplarCity": "البحرين"
},
"Baku": {
"exemplarCity": "باكو"
},
"Bangkok": {
"exemplarCity": "بانكوك"
},
"Barnaul": {
"exemplarCity": "بارناول"
},
"Beirut": {
"exemplarCity": "بيروت"
},
"Bishkek": {
"exemplarCity": "بشكيك"
},
"Brunei": {
"exemplarCity": "بروناي"
},
"Calcutta": {
"exemplarCity": "كالكتا"
},
"Chita": {
"exemplarCity": "تشيتا"
},
"Choibalsan": {
"exemplarCity": "تشوبالسان"
},
"Colombo": {
"exemplarCity": "كولومبو"
},
"Damascus": {
"exemplarCity": "دمشق"
},
"Dhaka": {
"exemplarCity": "دكا"
},
"Dili": {
"exemplarCity": "ديلي"
},
"Dubai": {
"exemplarCity": "دبي"
},
"Dushanbe": {
"exemplarCity": "دوشانبي"
},
"Gaza": {
"exemplarCity": "غزة"
},
"Hebron": {
"exemplarCity": "هيبرون (مدينة الخليل)"
},
"Hong_Kong": {
"exemplarCity": "هونغ كونغ"
},
"Hovd": {
"exemplarCity": "هوفد"
},
"Irkutsk": {
"exemplarCity": "ايركيتسك"
},
"Jakarta": {
"exemplarCity": "جاكرتا"
},
"Jayapura": {
"exemplarCity": "جايابيورا"
},
"Jerusalem": {
"exemplarCity": "القدس"
},
"Kabul": {
"exemplarCity": "كابول"
},
"Kamchatka": {
"exemplarCity": "كامتشاتكا"
},
"Karachi": {
"exemplarCity": "كراتشي"
},
"Katmandu": {
"exemplarCity": "كاتماندو"
},
"Khandyga": {
"exemplarCity": "خانديجا"
},
"Krasnoyarsk": {
"exemplarCity": "كراسنويارسك"
},
"Kuala_Lumpur": {
"exemplarCity": "كوالا لامبور"
},
"Kuching": {
"exemplarCity": "كيشينج"
},
"Kuwait": {
"exemplarCity": "الكويت"
},
"Macau": {
"exemplarCity": "ماكاو"
},
"Magadan": {
"exemplarCity": "مجادن"
},
"Makassar": {
"exemplarCity": "ماكسار"
},
"Manila": {
"exemplarCity": "مانيلا"
},
"Muscat": {
"exemplarCity": "مسقط"
},
"Nicosia": {
"exemplarCity": "نيقوسيا"
},
"Novokuznetsk": {
"exemplarCity": "نوفوكوزنتسك"
},
"Novosibirsk": {
"exemplarCity": "نوفوسبيرسك"
},
"Omsk": {
"exemplarCity": "أومسك"
},
"Oral": {
"exemplarCity": "أورال"
},
"Phnom_Penh": {
"exemplarCity": "بنوم بنه"
},
"Pontianak": {
"exemplarCity": "بونتيانك"
},
"Pyongyang": {
"exemplarCity": "بيونغ يانغ"
},
"Qatar": {
"exemplarCity": "قطر"
},
"Qyzylorda": {
"exemplarCity": "كيزيلوردا"
},
"Rangoon": {
"exemplarCity": "رانغون"
},
"Riyadh": {
"exemplarCity": "الرياض"
},
"Saigon": {
"exemplarCity": "مدينة هو تشي منة"
},
"Sakhalin": {
"exemplarCity": "سكالين"
},
"Samarkand": {
"exemplarCity": "سمرقند"
},
"Seoul": {
"exemplarCity": "سول"
},
"Shanghai": {
"exemplarCity": "شنغهاي"
},
"Singapore": {
"exemplarCity": "سنغافورة"
},
"Srednekolymsk": {
"exemplarCity": "سريدنكوليمسك"
},
"Taipei": {
"exemplarCity": "تايبيه"
},
"Tashkent": {
"exemplarCity": "طشقند"
},
"Tbilisi": {
"exemplarCity": "تبليسي"
},
"Tehran": {
"exemplarCity": "طهران"
},
"Thimphu": {
"exemplarCity": "تيمفو"
},
"Tokyo": {
"exemplarCity": "طوكيو"
},
"Tomsk": {
"exemplarCity": "تومسك"
},
"Ulaanbaatar": {
"exemplarCity": "آلانباتار"
},
"Urumqi": {
"exemplarCity": "أرومكي"
},
"Ust-Nera": {
"exemplarCity": "أوست نيرا"
},
"Vientiane": {
"exemplarCity": "فيانتيان"
},
"Vladivostok": {
"exemplarCity": "فلاديفوستك"
},
"Yakutsk": {
"exemplarCity": "ياكتسك"
},
"Yekaterinburg": {
"exemplarCity": "يكاترنبيرج"
},
"Yerevan": {
"exemplarCity": "يريفان"
}
},
"Indian": {
"Antananarivo": {
"exemplarCity": "أنتاناناريفو"
},
"Chagos": {
"exemplarCity": "تشاغوس"
},
"Christmas": {
"exemplarCity": "كريسماس"
},
"Cocos": {
"exemplarCity": "كوكوس"
},
"Comoro": {
"exemplarCity": "جزر القمر"
},
"Kerguelen": {
"exemplarCity": "كيرغويلين"
},
"Mahe": {
"exemplarCity": "ماهي"
},
"Maldives": {
"exemplarCity": "المالديف"
},
"Mauritius": {
"exemplarCity": "موريشيوس"
},
"Mayotte": {
"exemplarCity": "مايوت"
},
"Reunion": {
"exemplarCity": "ريونيون"
}
},
"Australia": {
"Adelaide": {
"exemplarCity": "أديليد"
},
"Brisbane": {
"exemplarCity": "برسيبان"
},
"Broken_Hill": {
"exemplarCity": "بروكن هيل"
},
"Currie": {
"exemplarCity": "كوري"
},
"Darwin": {
"exemplarCity": "دارون"
},
"Eucla": {
"exemplarCity": "أوكلا"
},
"Hobart": {
"exemplarCity": "هوبارت"
},
"Lindeman": {
"exemplarCity": "ليندمان"
},
"Lord_Howe": {
"exemplarCity": "لورد هاو"
},
"Melbourne": {
"exemplarCity": "ميلبورن"
},
"Perth": {
"exemplarCity": "برثا"
},
"Sydney": {
"exemplarCity": "سيدني"
}
},
"Pacific": {
"Apia": {
"exemplarCity": "أبيا"
},
"Auckland": {
"exemplarCity": "أوكلاند"
},
"Bougainville": {
"exemplarCity": "بوغانفيل"
},
"Chatham": {
"exemplarCity": "تشاثام"
},
"Easter": {
"exemplarCity": "استر"
},
"Efate": {
"exemplarCity": "إيفات"
},
"Enderbury": {
"exemplarCity": "اندربيرج"
},
"Fakaofo": {
"exemplarCity": "فاكاوفو"
},
"Fiji": {
"exemplarCity": "فيجي"
},
"Funafuti": {
"exemplarCity": "فونافوتي"
},
"Galapagos": {
"exemplarCity": "جلاباجوس"
},
"Gambier": {
"exemplarCity": "جامبير"
},
"Guadalcanal": {
"exemplarCity": "غوادالكانال"
},
"Guam": {
"exemplarCity": "غوام"
},
"Honolulu": {
"exemplarCity": "هونولولو"
},
"Johnston": {
"exemplarCity": "جونستون"
},
"Kiritimati": {
"exemplarCity": "كيريتي ماتي"
},
"Kosrae": {
"exemplarCity": "كوسرا"
},
"Kwajalein": {
"exemplarCity": "كواجالين"
},
"Majuro": {
"exemplarCity": "ماجورو"
},
"Marquesas": {
"exemplarCity": "ماركيساس"
},
"Midway": {
"exemplarCity": "ميدواي"
},
"Nauru": {
"exemplarCity": "ناورو"
},
"Niue": {
"exemplarCity": "نيوي"
},
"Norfolk": {
"exemplarCity": "نورفولك"
},
"Noumea": {
"exemplarCity": "نوميا"
},
"Pago_Pago": {
"exemplarCity": "باغو باغو"
},
"Palau": {
"exemplarCity": "بالاو"
},
"Pitcairn": {
"exemplarCity": "بيتكيرن"
},
"Ponape": {
"exemplarCity": "باناب"
},
"Port_Moresby": {
"exemplarCity": "بور مورسبي"
},
"Rarotonga": {
"exemplarCity": "راروتونغا"
},
"Saipan": {
"exemplarCity": "سايبان"
},
"Tahiti": {
"exemplarCity": "تاهيتي"
},
"Tarawa": {
"exemplarCity": "تاراوا"
},
"Tongatapu": {
"exemplarCity": "تونغاتابو"
},
"Truk": {
"exemplarCity": "ترك"
},
"Wake": {
"exemplarCity": "واك"
},
"Wallis": {
"exemplarCity": "واليس"
}
},
"Arctic": {
"Longyearbyen": {
"exemplarCity": "لونجيربين"
}
},
"Antarctica": {
"Casey": {
"exemplarCity": "كاساي"
},
"Davis": {
"exemplarCity": "دافيز"
},
"DumontDUrville": {
"exemplarCity": "دي مونت دو روفيل"
},
"Macquarie": {
"exemplarCity": "ماكواري"
},
"Mawson": {
"exemplarCity": "ماوسون"
},
"McMurdo": {
"exemplarCity": "ماك موردو"
},
"Palmer": {
"exemplarCity": "بالمير"
},
"Rothera": {
"exemplarCity": "روثيرا"
},
"Syowa": {
"exemplarCity": "سايووا"
},
"Troll": {
"exemplarCity": "ترول"
},
"Vostok": {
"exemplarCity": "فوستوك"
}
},
"Etc": {
"GMT": {
"exemplarCity": "GMT"
},
"GMT1": {
"exemplarCity": "GMT+1"
},
"GMT10": {
"exemplarCity": "GMT+10"
},
"GMT11": {
"exemplarCity": "GMT+11"
},
"GMT12": {
"exemplarCity": "GMT+12"
},
"GMT2": {
"exemplarCity": "GMT+2"
},
"GMT3": {
"exemplarCity": "GMT+3"
},
"GMT4": {
"exemplarCity": "GMT+4"
},
"GMT5": {
"exemplarCity": "GMT+5"
},
"GMT6": {
"exemplarCity": "GMT+6"
},
"GMT7": {
"exemplarCity": "GMT+7"
},
"GMT8": {
"exemplarCity": "GMT+8"
},
"GMT9": {
"exemplarCity": "GMT+9"
},
"GMT-1": {
"exemplarCity": "GMT-1"
},
"GMT-10": {
"exemplarCity": "GMT-10"
},
"GMT-11": {
"exemplarCity": "GMT-11"
},
"GMT-12": {
"exemplarCity": "GMT-12"
},
"GMT-13": {
"exemplarCity": "GMT-13"
},
"GMT-14": {
"exemplarCity": "GMT-14"
},
"GMT-2": {
"exemplarCity": "GMT-2"
},
"GMT-3": {
"exemplarCity": "GMT-3"
},
"GMT-4": {
"exemplarCity": "GMT-4"
},
"GMT-5": {
"exemplarCity": "GMT-5"
},
"GMT-6": {
"exemplarCity": "GMT-6"
},
"GMT-7": {
"exemplarCity": "GMT-7"
},
"GMT-8": {
"exemplarCity": "GMT-8"
},
"GMT-9": {
"exemplarCity": "GMT-9"
},
"Unknown": {
"exemplarCity": "مدينة غير معروفة"
}
}
},
"metazone": {
"Afghanistan": {
"long": {
"standard": "توقيت أفغانستان"
}
},
"Africa_Central": {
"long": {
"standard": "توقيت وسط أفريقيا"
}
},
"Africa_Eastern": {
"long": {
"standard": "توقيت شرق أفريقيا"
}
},
"Africa_Southern": {
"long": {
"standard": "توقيت جنوب أفريقيا"
}
},
"Africa_Western": {
"long": {
"generic": "توقيت غرب أفريقيا",
"standard": "توقيت غرب أفريقيا الرسمي",
"daylight": "توقيت غرب أفريقيا الصيفي"
}
},
"Alaska": {
"long": {
"generic": "توقيت ألاسكا",
"standard": "التوقيت الرسمي لألاسكا",
"daylight": "توقيت ألاسكا الصيفي"
}
},
"Amazon": {
"long": {
"generic": "توقيت الأمازون",
"standard": "توقيت الأمازون الرسمي",
"daylight": "توقيت الأمازون الصيفي"
}
},
"America_Central": {
"long": {
"generic": "التوقيت المركزي لأمريكا الشمالية",
"standard": "التوقيت الرسمي المركزي لأمريكا الشمالية",
"daylight": "التوقيت الصيفي المركزي لأمريكا الشمالية"
}
},
"America_Eastern": {
"long": {
"generic": "التوقيت الشرقي لأمريكا الشمالية",
"standard": "التوقيت الرسمي الشرقي لأمريكا الشمالية",
"daylight": "التوقيت الصيفي الشرقي لأمريكا الشمالية"
}
},
"America_Mountain": {
"long": {
"generic": "التوقيت الجبلي لأمريكا الشمالية",
"standard": "التوقيت الجبلي الرسمي لأمريكا الشمالية",
"daylight": "التوقيت الجبلي الصيفي لأمريكا الشمالية"
}
},
"America_Pacific": {
"long": {
"generic": "توقيت المحيط الهادي",
"standard": "توقيت المحيط الهادي الرسمي",
"daylight": "توقيت المحيط الهادي الصيفي"
}
},
"Anadyr": {
"long": {
"generic": "توقيت أنادير",
"standard": "توقيت أنادير الرسمي",
"daylight": "التوقيت الصيفي لأنادير"
}
},
"Apia": {
"long": {
"generic": "توقيت آبيا",
"standard": "التوقيت الرسمي لآبيا",
"daylight": "التوقيت الصيفي لأبيا"
}
},
"Arabian": {
"long": {
"generic": "التوقيت العربي",
"standard": "التوقيت العربي الرسمي",
"daylight": "التوقيت العربي الصيفي"
}
},
"Argentina": {
"long": {
"generic": "توقيت الأرجنتين",
"standard": "توقيت الأرجنتين الرسمي",
"daylight": "توقيت الأرجنتين الصيفي"
}
},
"Argentina_Western": {
"long": {
"generic": "توقيت غرب الأرجنتين",
"standard": "توقيت غرب الأرجنتين الرسمي",
"daylight": "توقيت غرب الأرجنتين الصيفي"
}
},
"Armenia": {
"long": {
"generic": "توقيت أرمينيا",
"standard": "توقيت أرمينيا الرسمي",
"daylight": "توقيت أرمينيا الصيفي"
}
},
"Atlantic": {
"long": {
"generic": "توقيت الأطلسي",
"standard": "التوقيت الرسمي الأطلسي",
"daylight": "التوقيت الصيفي الأطلسي"
}
},
"Australia_Central": {
"long": {
"generic": "توقيت وسط أستراليا",
"standard": "توقيت وسط أستراليا الرسمي",
"daylight": "توقيت وسط أستراليا الصيفي"
}
},
"Australia_CentralWestern": {
"long": {
"generic": "توقيت غرب وسط أستراليا",
"standard": "توقيت غرب وسط أستراليا الرسمي",
"daylight": "توقيت غرب وسط أستراليا الصيفي"
}
},
"Australia_Eastern": {
"long": {
"generic": "توقيت شرق أستراليا",
"standard": "توقيت شرق أستراليا الرسمي",
"daylight": "توقيت شرق أستراليا الصيفي"
}
},
"Australia_Western": {
"long": {
"generic": "توقيت غرب أستراليا",
"standard": "توقيت غرب أستراليا الرسمي",
"daylight": "توقيت غرب أستراليا الصيفي"
}
},
"Azerbaijan": {
"long": {
"generic": "توقيت أذربيجان",
"standard": "توقيت أذربيجان الرسمي",
"daylight": "توقيت أذربيجان الصيفي"
}
},
"Azores": {
"long": {
"generic": "توقيت أزورس",
"standard": "توقيت أزورس الرسمي",
"daylight": "توقيت أزورس الصيفي"
}
},
"Bangladesh": {
"long": {
"generic": "توقيت بنجلاديش",
"standard": "توقيت بنجلاديش الرسمي",
"daylight": "توقيت بنجلاديش الصيفي"
}
},
"Bhutan": {
"long": {
"standard": "توقيت بوتان"
}
},
"Bolivia": {
"long": {
"standard": "توقيت بوليفيا"
}
},
"Brasilia": {
"long": {
"generic": "توقيت برازيليا",
"standard": "توقيت برازيليا الرسمي",
"daylight": "توقيت برازيليا الصيفي"
}
},
"Brunei": {
"long": {
"standard": "توقيت بروناي"
}
},
"Cape_Verde": {
"long": {
"generic": "توقيت الرأس الأخضر",
"standard": "توقيت الرأس الأخضر الرسمي",
"daylight": "توقيت الرأس الأخضر الصيفي"
}
},
"Chamorro": {
"long": {
"standard": "توقيت تشامورو"
}
},
"Chatham": {
"long": {
"generic": "توقيت تشاتام",
"standard": "توقيت تشاتام الرسمي",
"daylight": "توقيت تشاتام الصيفي"
}
},
"Chile": {
"long": {
"generic": "توقيت شيلي",
"standard": "توقيت شيلي الرسمي",
"daylight": "توقيت شيلي الصيفي"
}
},
"China": {
"long": {
"generic": "توقيت الصين",
"standard": "توقيت الصين الرسمي",
"daylight": "توقيت الصين الصيفي"
}
},
"Choibalsan": {
"long": {
"generic": "توقيت شويبالسان",
"standard": "توقيت شويبالسان الرسمي",
"daylight": "التوقيت الصيفي لشويبالسان"
}
},
"Christmas": {
"long": {
"standard": "توقيت جزر الكريسماس"
}
},
"Cocos": {
"long": {
"standard": "توقيت جزر كوكوس"
}
},
"Colombia": {
"long": {
"generic": "توقيت كولومبيا",
"standard": "توقيت كولومبيا الرسمي",
"daylight": "توقيت كولومبيا الصيفي"
}
},
"Cook": {
"long": {
"generic": "توقيت جزر كووك",
"standard": "توقيت جزر كووك الرسمي",
"daylight": "توقيت جزر كووك الصيفي"
}
},
"Cuba": {
"long": {
"generic": "توقيت كوبا",
"standard": "توقيت كوبا الرسمي",
"daylight": "توقيت كوبا الصيفي"
}
},
"Davis": {
"long": {
"standard": "توقيت دافيز"
}
},
"DumontDUrville": {
"long": {
"standard": "توقيت دي مونت دو روفيل"
}
},
"East_Timor": {
"long": {
"standard": "توقيت تيمور الشرقية"
}
},
"Easter": {
"long": {
"generic": "توقيت جزيرة استر",
"standard": "توقيت جزيرة استر الرسمي",
"daylight": "توقيت جزيرة استر الصيفي"
}
},
"Ecuador": {
"long": {
"standard": "توقيت الإكوادور"
}
},
"Europe_Central": {
"long": {
"generic": "توقيت وسط أوروبا",
"standard": "توقيت وسط أوروبا الرسمي",
"daylight": "توقيت وسط أوروبا الصيفي"
}
},
"Europe_Eastern": {
"long": {
"generic": "توقيت شرق أوروبا",
"standard": "توقيت شرق أوروبا الرسمي",
"daylight": "توقيت شرق أوروبا الصيفي"
}
},
"Europe_Further_Eastern": {
"long": {
"standard": "التوقيت الأوروبي (أكثر شرقًا)"
}
},
"Europe_Western": {
"long": {
"generic": "توقيت غرب أوروبا",
"standard": "توقيت غرب أوروبا الرسمي",
"daylight": "توقيت غرب أوروبا الصيفي"
}
},
"Falkland": {
"long": {
"generic": "توقيت جزر فوكلاند",
"standard": "توقيت جزر فوكلاند الرسمي",
"daylight": "توقيت جزر فوكلاند الصيفي"
}
},
"Fiji": {
"long": {
"generic": "توقيت فيجي",
"standard": "توقيت فيجي الرسمي",
"daylight": "توقيت فيجي الصيفي"
}
},
"French_Guiana": {
"long": {
"standard": "توقيت غايانا الفرنسية"
}
},
"French_Southern": {
"long": {
"standard": "توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية"
}
},
"Galapagos": {
"long": {
"standard": "توقيت غلاباغوس"
}
},
"Gambier": {
"long": {
"standard": "توقيت جامبير"
}
},
"Georgia": {
"long": {
"generic": "توقيت جورجيا",
"standard": "توقيت جورجيا الرسمي",
"daylight": "توقيت جورجيا الصيفي"
}
},
"Gilbert_Islands": {
"long": {
"standard": "توقيت جزر جيلبرت"
}
},
"GMT": {
"long": {
"standard": "توقيت غرينتش"
}
},
"Greenland_Eastern": {
"long": {
"generic": "توقيت شرق غرينلاند",
"standard": "توقيت شرق غرينلاند الرسمي",
"daylight": "توقيت شرق غرينلاند الصيفي"
}
},
"Greenland_Western": {
"long": {
"generic": "توقيت غرب غرينلاند",
"standard": "توقيت غرب غرينلاند الرسمي",
"daylight": "توقيت غرب غرينلاند الصيفي"
}
},
"Guam": {
"long": {
"standard": "توقيت غوام"
}
},
"Gulf": {
"long": {
"standard": "توقيت الخليج"
}
},
"Guyana": {
"long": {
"standard": "توقيت غيانا"
}
},
"Hawaii_Aleutian": {
"long": {
"generic": "توقيت هاواي ألوتيان",
"standard": "توقيت هاواي ألوتيان الرسمي",
"daylight": "توقيت هاواي ألوتيان الصيفي"
}
},
"Hong_Kong": {
"long": {
"generic": "توقيت هونغ كونغ",
"standard": "توقيت هونغ كونغ الرسمي",
"daylight": "توقيت هونغ كونغ الصيفي"
}
},
"Hovd": {
"long": {
"generic": "توقيت هوفد",
"standard": "توقيت هوفد الرسمي",
"daylight": "توقيت هوفد الصيفي"
}
},
"India": {
"long": {
"standard": "توقيت الهند"
}
},
"Indian_Ocean": {
"long": {
"standard": "توقيت المحيط الهندي"
}
},
"Indochina": {
"long": {
"standard": "توقيت الهند الصينية"
}
},
"Indonesia_Central": {
"long": {
"standard": "توقيت وسط إندونيسيا"
}
},
"Indonesia_Eastern": {
"long": {
"standard": "توقيت شرق إندونيسيا"
}
},
"Indonesia_Western": {
"long": {
"standard": "توقيت غرب إندونيسيا"
}
},
"Iran": {
"long": {
"generic": "توقيت إيران",
"standard": "توقيت إيران الرسمي",
"daylight": "توقيت إيران الصيفي"
}
},
"Irkutsk": {
"long": {
"generic": "توقيت إركوتسك",
"standard": "توقيت إركوتسك الرسمي",
"daylight": "توقيت إركوتسك الصيفي"
}
},
"Israel": {
"long": {
"generic": "توقيت إسرائيل",
"standard": "توقيت إسرائيل الرسمي",
"daylight": "توقيت إسرائيل الصيفي"
}
},
"Japan": {
"long": {
"generic": "توقيت اليابان",
"standard": "توقيت اليابان الرسمي",
"daylight": "توقيت اليابان الصيفي"
}
},
"Kamchatka": {
"long": {
"generic": "توقيت كامشاتكا",
"standard": "توقيت بيتروبافلوفسك-كامتشاتسكي",
"daylight": "توقيت بيتروبافلوفسك-كامتشاتسكي الصيفي"
}
},
"Kazakhstan_Eastern": {
"long": {
"standard": "توقيت شرق كازاخستان"
}
},
"Kazakhstan_Western": {
"long": {
"standard": "توقيت غرب كازاخستان"
}
},
"Korea": {
"long": {
"generic": "توقيت كوريا",
"standard": "توقيت كوريا الرسمي",
"daylight": "توقيت كوريا الصيفي"
}
},
"Kosrae": {
"long": {
"standard": "توقيت كوسرا"
}
},
"Krasnoyarsk": {
"long": {
"generic": "توقيت كراسنويارسك",
"standard": "توقيت كراسنويارسك الرسمي",
"daylight": "التوقيت الصيفي لكراسنويارسك"
}
},
"Kyrgystan": {
"long": {
"standard": "توقيت قرغيزستان"
}
},
"Line_Islands": {
"long": {
"standard": "توقيت جزر لاين"
}
},
"Lord_Howe": {
"long": {
"generic": "توقيت لورد هاو",
"standard": "توقيت لورد هاو الرسمي",
"daylight": "التوقيت الصيفي للورد هاو"
}
},
"Macquarie": {
"long": {
"standard": "توقيت ماكواري"
}
},
"Magadan": {
"long": {
"generic": "توقيت ماغادان",
"standard": "توقيت ماغادان الرسمي",
"daylight": "توقيت ماغادان الصيفي"
}
},
"Malaysia": {
"long": {
"standard": "توقيت ماليزيا"
}
},
"Maldives": {
"long": {
"standard": "توقيت الـمالديف"
}
},
"Marquesas": {
"long": {
"standard": "توقيت ماركيساس"
}
},
"Marshall_Islands": {
"long": {
"standard": "توقيت جزر مارشال"
}
},
"Mauritius": {
"long": {
"generic": "توقيت موريشيوس",
"standard": "توقيت موريشيوس الرسمي",
"daylight": "توقيت موريشيوس الصيفي"
}
},
"Mawson": {
"long": {
"standard": "توقيت ماوسون"
}
},
"Mexico_Northwest": {
"long": {
"generic": "توقيت شمال غرب المكسيك",
"standard": "التوقيت الرسمي لشمال غرب المكسيك",
"daylight": "التوقيت الصيفي لشمال غرب المكسيك"
}
},
"Mexico_Pacific": {
"long": {
"generic": "توقيت المحيط الهادي للمكسيك",
"standard": "توقيت المحيط الهادي الرسمي للمكسيك",
"daylight": "توقيت المحيط الهادي الصيفي للمكسيك"
}
},
"Mongolia": {
"long": {
"generic": "توقيت أولان باتور",
"standard": "توقيت أولان باتور الرسمي",
"daylight": "توقيت أولان باتور الصيفي"
}
},
"Moscow": {
"long": {
"generic": "توقيت موسكو",
"standard": "توقيت موسكو الرسمي",
"daylight": "توقيت موسكو الصيفي"
}
},
"Myanmar": {
"long": {
"standard": "توقيت ميانمار"
}
},
"Nauru": {
"long": {
"standard": "توقيت ناورو"
}
},
"Nepal": {
"long": {
"standard": "توقيت نيبال"
}
},
"New_Caledonia": {
"long": {
"generic": "توقيت كاليدونيا الجديدة",
"standard": "توقيت كاليدونيا الجديدة الرسمي",
"daylight": "توقيت كاليدونيا الجديدة الصيفي"
}
},
"New_Zealand": {
"long": {
"generic": "توقيت نيوزيلندا",
"standard": "توقيت نيوزيلندا الرسمي",
"daylight": "توقيت نيوزيلندا الصيفي"
}
},
"Newfoundland": {
"long": {
"generic": "توقيت نيوفاوندلاند",
"standard": "توقيت نيوفاوندلاند الرسمي",
"daylight": "توقيت نيوفاوندلاند الصيفي"
}
},
"Niue": {
"long": {
"standard": "توقيت نيوي"
}
},
"Norfolk": {
"long": {
"standard": "توقيت جزيرة نورفولك"
}
},
"Noronha": {
"long": {
"generic": "توقيت فيرناندو دي نورونها",
"standard": "توقيت فرناندو دي نورونها الرسمي",
"daylight": "توقيت فرناندو دي نورونها الصيفي"
}
},
"North_Mariana": {
"long": {
"standard": "توقيت جزر ماريانا الشمالية"
}
},
"Novosibirsk": {
"long": {
"generic": "توقيت نوفوسيبيرسك",
"standard": "توقيت نوفوسيبيرسك الرسمي",
"daylight": "توقيت نوفوسيبيرسك الصيفي"
}
},
"Omsk": {
"long": {
"generic": "توقيت أومسك",
"standard": "توقيت أومسك الرسمي",
"daylight": "توقيت أومسك الصيفي"
}
},
"Pakistan": {
"long": {
"generic": "توقيت باكستان",
"standard": "توقيت باكستان الرسمي",
"daylight": "توقيت باكستان الصيفي"
}
},
"Palau": {
"long": {
"standard": "توقيت بالاو"
}
},
"Papua_New_Guinea": {
"long": {
"standard": "توقيت بابوا غينيا الجديدة"
}
},
"Paraguay": {
"long": {
"generic": "توقيت باراغواي",
"standard": "توقيت باراغواي الرسمي",
"daylight": "توقيت باراغواي الصيفي"
}
},
"Peru": {
"long": {
"generic": "توقيت بيرو",
"standard": "توقيت بيرو الرسمي",
"daylight": "توقيت بيرو الصيفي"
}
},
"Philippines": {
"long": {
"generic": "توقيت الفيلبين",
"standard": "توقيت الفيلبين الرسمي",
"daylight": "توقيت الفيلبين الصيفي"
}
},
"Phoenix_Islands": {
"long": {
"standard": "توقيت جزر فينكس"
}
},
"Pierre_Miquelon": {
"long": {
"generic": "توقيت سانت بيير وميكولون",
"standard": "توقيت سانت بيير وميكولون الرسمي",
"daylight": "توقيت سانت بيير وميكولون الصيفي"
}
},
"Pitcairn": {
"long": {
"standard": "توقيت بيتكيرن"
}
},
"Ponape": {
"long": {
"standard": "توقيت بونابي"
}
},
"Pyongyang": {
"long": {
"standard": "توقيت بيونغ يانغ"
}
},
"Reunion": {
"long": {
"standard": "توقيت ريونيون"
}
},
"Rothera": {
"long": {
"standard": "توقيت روثيرا"
}
},
"Sakhalin": {
"long": {
"generic": "توقيت ساخالين",
"standard": "توقيت ساخالين الرسمي",
"daylight": "توقيت ساخالين الصيفي"
}
},
"Samara": {
"long": {
"generic": "توقيت سامارا",
"standard": "توقيت سمارا",
"daylight": "توقيت سمارا الصيفي"
}
},
"Samoa": {
"long": {
"generic": "توقيت ساموا",
"standard": "توقيت ساموا الرسمي",
"daylight": "توقيت ساموا الصيفي"
}
},
"Seychelles": {
"long": {
"standard": "توقيت سيشل"
}
},
"Singapore": {
"long": {
"standard": "توقيت سنغافورة"
}
},
"Solomon": {
"long": {
"standard": "توقيت جزر سليمان"
}
},
"South_Georgia": {
"long": {
"standard": "توقيت جنوب جورجيا"
}
},
"Suriname": {
"long": {
"standard": "توقيت سورينام"
}
},
"Syowa": {
"long": {
"standard": "توقيت سايووا"
}
},
"Tahiti": {
"long": {
"standard": "توقيت تاهيتي"
}
},
"Taipei": {
"long": {
"generic": "توقيت تايبيه",
"standard": "توقيت تايبيه الرسمي",
"daylight": "توقيت تايبيه الصيفي"
}
},
"Tajikistan": {
"long": {
"standard": "توقيت طاجكستان"
}
},
"Tokelau": {
"long": {
"standard": "توقيت توكيلاو"
}
},
"Tonga": {
"long": {
"generic": "توقيت تونغا",
"standard": "توقيت تونغا الرسمي",
"daylight": "توقيت تونغا الصيفي"
}
},
"Truk": {
"long": {
"standard": "توقيت شوك"
}
},
"Turkmenistan": {
"long": {
"generic": "توقيت تركمانستان",
"standard": "توقيت تركمانستان الرسمي",
"daylight": "توقيت تركمانستان الصيفي"
}
},
"Tuvalu": {
"long": {
"standard": "توقيت توفالو"
}
},
"Uruguay": {
"long": {
"generic": "توقيت أورغواي",
"standard": "توقيت أورغواي الرسمي",
"daylight": "توقيت أورغواي الصيفي"
}
},
"Uzbekistan": {
"long": {
"generic": "توقيت أوزبكستان",
"standard": "توقيت أوزبكستان الرسمي",
"daylight": "توقيت أوزبكستان الصيفي"
}
},
"Vanuatu": {
"long": {
"generic": "توقيت فانواتو",
"standard": "توقيت فانواتو الرسمي",
"daylight": "توقيت فانواتو الصيفي"
}
},
"Venezuela": {
"long": {
"standard": "توقيت فنزويلا"
}
},
"Vladivostok": {
"long": {
"generic": "توقيت فلاديفوستوك",
"standard": "توقيت فلاديفوستوك الرسمي",
"daylight": "توقيت فلاديفوستوك الصيفي"
}
},
"Volgograd": {
"long": {
"generic": "توقيت فولغوغراد",
"standard": "توقيت فولغوغراد الرسمي",
"daylight": "توقيت فولغوغراد الصيفي"
}
},
"Vostok": {
"long": {
"standard": "توقيت فوستوك"
}
},
"Wake": {
"long": {
"standard": "توقيت جزيرة ويك"
}
},
"Wallis": {
"long": {
"standard": "توقيت واليس و فوتونا"
}
},
"Yakutsk": {
"long": {
"generic": "توقيت ياكوتسك",
"standard": "توقيت ياكوتسك الرسمي",
"daylight": "توقيت ياكوتسك الصيفي"
}
},
"Yekaterinburg": {
"long": {
"generic": "توقيت يكاترينبورغ",
"standard": "توقيت يكاترينبورغ الرسمي",
"daylight": "توقيت يكاترينبورغ الصيفي"
}
}
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"dates";
{
"timeZoneNames";
{
"hourFormat";
"+HH:mm;-HH:mm",
"gmtFormat";
"جرينتش{0}",
"gmtZeroFormat";
"جرينتش",
"regionFormat";
"توقيت {0}",
"regionFormat-type-daylight";
"توقيت {0} الصيفي",
"regionFormat-type-standard";
"توقيت {0} الرسمي",
"fallbackFormat";
"{1} ({0})",
"zone";
{
"America";
{
"Adak";
{
"exemplarCity";
"أداك";
}
"Anchorage";
{
"exemplarCity";
"أنشوراج";
}
"Anguilla";
{
"exemplarCity";
"أنغيلا";
}
"Antigua";
{
"exemplarCity";
"أنتيغوا";
}
"Araguaina";
{
"exemplarCity";
"أروجوانيا";
}
"Argentina";
{
"Rio_Gallegos";
{
"exemplarCity";
"ريو جالييوس";
}
"San_Juan";
{
"exemplarCity";
"سان خوان";
}
"Ushuaia";
{
"exemplarCity";
"أشوا";
}
"La_Rioja";
{
"exemplarCity";
"لا ريوجا";
}
"San_Luis";
{
"exemplarCity";
"سان لويس";
}
"Salta";
{
"exemplarCity";
"سالطا";
}
"Tucuman";
{
"exemplarCity";
"تاكمان";
}
}
"Aruba";
{
"exemplarCity";
"أروبا";
}
"Asuncion";
{
"exemplarCity";
"أسونسيون";
}
"Bahia";
{
"exemplarCity";
"باهيا";
}
"Bahia_Banderas";
{
"exemplarCity";
"باهيا بانديراس";
}
"Barbados";
{
"exemplarCity";
"بربادوس";
}
"Belem";
{
"exemplarCity";
"بلم";
}
"Belize";
{
"exemplarCity";
"بليز";
}
"Blanc-Sablon";
{
"exemplarCity";
"بلانك-سابلون";
}
"Boa_Vista";
{
"exemplarCity";
"باو فيستا";
}
"Bogota";
{
"exemplarCity";
"بوغوتا";
}
"Boise";
{
"exemplarCity";
"بويس";
}
"Buenos_Aires";
{
"exemplarCity";
"بوينوس أيرس";
}
"Cambridge_Bay";
{
"exemplarCity";
"كامبرديج باي";
}
"Campo_Grande";
{
"exemplarCity";
"كومبو جراند";
}
"Cancun";
{
"exemplarCity";
"كانكون";
}
"Caracas";
{
"exemplarCity";
"كاراكاس";
}
"Catamarca";
{
"exemplarCity";
"كاتاماركا";
}
"Cayenne";
{
"exemplarCity";
"كايين";
}
"Cayman";
{
"exemplarCity";
"كيمان";
}
"Chicago";
{
"exemplarCity";
"شيكاغو";
}
"Chihuahua";
{
"exemplarCity";
"تشيواوا";
}
"Coral_Harbour";
{
"exemplarCity";
"كورال هاربر";
}
"Cordoba";
{
"exemplarCity";
"كوردوبا";
}
"Costa_Rica";
{
"exemplarCity";
"كوستاريكا";
}
"Creston";
{
"exemplarCity";
"كريستون";
}
"Cuiaba";
{
"exemplarCity";
"كيابا";
}
"Curacao";
{
"exemplarCity";
"كوراكاو";
}
"Danmarkshavn";
{
"exemplarCity";
"دانمرك شافن";
}
"Dawson";
{
"exemplarCity";
"داوسان";
}
"Dawson_Creek";
{
"exemplarCity";
"داوسن كريك";
}
"Denver";
{
"exemplarCity";
"دنفر";
}
"Detroit";
{
"exemplarCity";
"ديترويت";
}
"Dominica";
{
"exemplarCity";
"دومينيكا";
}
"Edmonton";
{
"exemplarCity";
"ايدمونتون";
}
"Eirunepe";
{
"exemplarCity";
"ايرونبي";
}
"El_Salvador";
{
"exemplarCity";
"السلفادور";
}
"Fort_Nelson";
{
"exemplarCity";
"فورت نيلسون";
}
"Fortaleza";
{
"exemplarCity";
"فورتاليزا";
}
"Glace_Bay";
{
"exemplarCity";
"جلاس باي";
}
"Godthab";
{
"exemplarCity";
"غودثاب";
}
"Goose_Bay";
{
"exemplarCity";
"جوس باي";
}
"Grand_Turk";
{
"exemplarCity";
"غراند ترك";
}
"Grenada";
{
"exemplarCity";
"غرينادا";
}
"Guadeloupe";
{
"exemplarCity";
"غوادلوب";
}
"Guatemala";
{
"exemplarCity";
"غواتيمالا";
}
"Guayaquil";
{
"exemplarCity";
"غواياكويل";
}
"Guyana";
{
"exemplarCity";
"غيانا";
}
"Halifax";
{
"exemplarCity";
"هاليفاكس";
}
"Havana";
{
"exemplarCity";
"هافانا";
}
"Hermosillo";
{
"exemplarCity";
"هيرموسيلو";
}
"Indiana";
{
"Vincennes";
{
"exemplarCity";
"فينسينس";
}
"Petersburg";
{
"exemplarCity";
"بيترسبرغ";
}
"Tell_City";
{
"exemplarCity";
"مدينة تل، إنديانا";
}
"Knox";
{
"exemplarCity";
"كونكس";
}
"Winamac";
{
"exemplarCity";
"ويناماك";
}
"Marengo";
{
"exemplarCity";
"مارنجو";
}
"Vevay";
{
"exemplarCity";
"فيفاي";
}
}
"Indianapolis";
{
"exemplarCity";
"إنديانابوليس";
}
"Inuvik";
{
"exemplarCity";
"اينوفيك";
}
"Iqaluit";
{
"exemplarCity";
"اكويلت";
}
"Jamaica";
{
"exemplarCity";
"جامايكا";
}
"Jujuy";
{
"exemplarCity";
"جوجو";
}
"Juneau";
{
"exemplarCity";
"جوني";
}
"Kentucky";
{
"Monticello";
{
"exemplarCity";
"مونتيسيلو";
}
}
"Kralendijk";
{
"exemplarCity";
"كرالنديك";
}
"La_Paz";
{
"exemplarCity";
"لا باز";
}
"Lima";
{
"exemplarCity";
"ليما";
}
"Los_Angeles";
{
"exemplarCity";
"لوس انجلوس";
}
"Louisville";
{
"exemplarCity";
"لويس فيل";
}
"Lower_Princes";
{
"exemplarCity";
"حي الأمير السفلي";
}
"Maceio";
{
"exemplarCity";
"ماشيو";
}
"Managua";
{
"exemplarCity";
"ماناغوا";
}
"Manaus";
{
"exemplarCity";
"ماناوس";
}
"Marigot";
{
"exemplarCity";
"ماريغوت";
}
"Martinique";
{
"exemplarCity";
"المارتينيك";
}
"Matamoros";
{
"exemplarCity";
"ماتاموروس";
}
"Mazatlan";
{
"exemplarCity";
"مازاتلان";
}
"Mendoza";
{
"exemplarCity";
"ميندوزا";
}
"Menominee";
{
"exemplarCity";
"مينوميني";
}
"Merida";
{
"exemplarCity";
"ميريدا";
}
"Metlakatla";
{
"exemplarCity";
"ميتلاكاتلا";
}
"Mexico_City";
{
"exemplarCity";
"مدينة المكسيك";
}
"Miquelon";
{
"exemplarCity";
"ميكولن";
}
"Moncton";
{
"exemplarCity";
"وينكتون";
}
"Monterrey";
{
"exemplarCity";
"مونتيري";
}
"Montevideo";
{
"exemplarCity";
"مونتفيديو";
}
"Montserrat";
{
"exemplarCity";
"مونتسيرات";
}
"Nassau";
{
"exemplarCity";
"ناسو";
}
"New_York";
{
"exemplarCity";
"نيويورك";
}
"Nipigon";
{
"exemplarCity";
"نيبيجون";
}
"Nome";
{
"exemplarCity";
"نوم";
}
"Noronha";
{
"exemplarCity";
"نوروناه";
}
"North_Dakota";
{
"Beulah";
{
"exemplarCity";
"بيولا، داكوتا الشمالية";
}
"New_Salem";
{
"exemplarCity";
"نيو ساليم";
}
"Center";
{
"exemplarCity";
"سنتر";
}
}
"Ojinaga";
{
"exemplarCity";
"أوجيناجا";
}
"Panama";
{
"exemplarCity";
"بنما";
}
"Pangnirtung";
{
"exemplarCity";
"بانجينتينج";
}
"Paramaribo";
{
"exemplarCity";
"باراماريبو";
}
"Phoenix";
{
"exemplarCity";
"فينكس";
}
"Port-au-Prince";
{
"exemplarCity";
"بورت أو برنس";
}
"Port_of_Spain";
{
"exemplarCity";
"بورت أوف سبين";
}
"Porto_Velho";
{
"exemplarCity";
"بورتو فيلو";
}
"Puerto_Rico";
{
"exemplarCity";
"بورتوريكو";
}
"Rainy_River";
{
"exemplarCity";
"راني ريفر";
}
"Rankin_Inlet";
{
"exemplarCity";
"رانكن انلت";
}
"Recife";
{
"exemplarCity";
"ريسيف";
}
"Regina";
{
"exemplarCity";
"ريجينا";
}
"Resolute";
{
"exemplarCity";
"ريزولوت";
}
"Rio_Branco";
{
"exemplarCity";
"ريوبرانكو";
}
"Santa_Isabel";
{
"exemplarCity";
"سانتا إيزابيل";
}
"Santarem";
{
"exemplarCity";
"سانتاريم";
}
"Santiago";
{
"exemplarCity";
"سانتياغو";
}
"Santo_Domingo";
{
"exemplarCity";
"سانتو دومينغو";
}
"Sao_Paulo";
{
"exemplarCity";
"ساو باولو";
}
"Scoresbysund";
{
"exemplarCity";
"سكورسبيسند";
}
"Sitka";
{
"exemplarCity";
"سيتكا";
}
"St_Barthelemy";
{
"exemplarCity";
"سانت بارتيليمي";
}
"St_Johns";
{
"exemplarCity";
"سانت جونس";
}
"St_Kitts";
{
"exemplarCity";
"سانت كيتس";
}
"St_Lucia";
{
"exemplarCity";
"سانت لوشيا";
}
"St_Thomas";
{
"exemplarCity";
"سانت توماس";
}
"St_Vincent";
{
"exemplarCity";
"سانت فنسنت";
}
"Swift_Current";
{
"exemplarCity";
"سوفت كارنت";
}
"Tegucigalpa";
{
"exemplarCity";
"تيغوسيغالبا";
}
"Thule";
{
"exemplarCity";
"ثيل";
}
"Thunder_Bay";
{
"exemplarCity";
"ثندر باي";
}
"Tijuana";
{
"exemplarCity";
"تيخوانا";
}
"Toronto";
{
"exemplarCity";
"تورونتو";
}
"Tortola";
{
"exemplarCity";
"تورتولا";
}
"Vancouver";
{
"exemplarCity";
"فانكوفر";
}
"Whitehorse";
{
"exemplarCity";
"وايت هورس";
}
"Winnipeg";
{
"exemplarCity";
"وينيبيج";
}
"Yakutat";
{
"exemplarCity";
"ياكوتات";
}
"Yellowknife";
{
"exemplarCity";
"يلونيف";
}
}
"Atlantic";
{
"Azores";
{
"exemplarCity";
"أزورس";
}
"Bermuda";
{
"exemplarCity";
"برمودا";
}
"Canary";
{
"exemplarCity";
"كناري";
}
"Cape_Verde";
{
"exemplarCity";
"الرأس الأخضر";
}
"Faeroe";
{
"exemplarCity";
"فارو";
}
"Madeira";
{
"exemplarCity";
"ماديرا";
}
"Reykjavik";
{
"exemplarCity";
"ريكيافيك";
}
"South_Georgia";
{
"exemplarCity";
"جورجيا الجنوبية";
}
"St_Helena";
{
"exemplarCity";
"سانت هيلينا";
}
"Stanley";
{
"exemplarCity";
"استانلي";
}
}
"Europe";
{
"Amsterdam";
{
"exemplarCity";
"أمستردام";
}
"Andorra";
{
"exemplarCity";
"أندورا";
}
"Astrakhan";
{
"exemplarCity";
"أستراخان";
}
"Athens";
{
"exemplarCity";
"أثينا";
}
"Belgrade";
{
"exemplarCity";
"بلغراد";
}
"Berlin";
{
"exemplarCity";
"برلين";
}
"Bratislava";
{
"exemplarCity";
"براتيسلافا";
}
"Brussels";
{
"exemplarCity";
"بروكسل";
}
"Bucharest";
{
"exemplarCity";
"بوخارست";
}
"Budapest";
{
"exemplarCity";
"بودابست";
}
"Busingen";
{
"exemplarCity";
"بوسنغن";
}
"Chisinau";
{
"exemplarCity";
"تشيسيناو";
}
"Copenhagen";
{
"exemplarCity";
"كوبنهاغن";
}
"Dublin";
{
"long";
{
"daylight";
"توقيت أيرلندا الرسمي";
}
"exemplarCity";
"دبلن";
}
"Gibraltar";
{
"exemplarCity";
"جبل طارق";
}
"Guernsey";
{
"exemplarCity";
"غيرنسي";
}
"Helsinki";
{
"exemplarCity";
"هلسنكي";
}
"Isle_of_Man";
{
"exemplarCity";
"جزيرة مان";
}
"Istanbul";
{
"exemplarCity";
"إسطنبول";
}
"Jersey";
{
"exemplarCity";
"جيرسي";
}
"Kaliningrad";
{
"exemplarCity";
"كالينجراد";
}
"Kiev";
{
"exemplarCity";
"كييف";
}
"Kirov";
{
"exemplarCity";
"كيروف";
}
"Lisbon";
{
"exemplarCity";
"لشبونة";
}
"Ljubljana";
{
"exemplarCity";
"ليوبليانا";
}
"London";
{
"long";
{
"daylight";
"توقيت بريطانيا الصيفي";
}
"exemplarCity";
"لندن";
}
"Luxembourg";
{
"exemplarCity";
"لوكسمبورغ";
}
"Madrid";
{
"exemplarCity";
"مدريد";
}
"Malta";
{
"exemplarCity";
"مالطة";
}
"Mariehamn";
{
"exemplarCity";
"ماريهامن";
}
"Minsk";
{
"exemplarCity";
"مينسك";
}
"Monaco";
{
"exemplarCity";
"موناكو";
}
"Moscow";
{
"exemplarCity";
"موسكو";
}
"Oslo";
{
"exemplarCity";
"أوسلو";
}
"Paris";
{
"exemplarCity";
"باريس";
}
"Podgorica";
{
"exemplarCity";
"بودغوريكا";
}
"Prague";
{
"exemplarCity";
"براغ";
}
"Riga";
{
"exemplarCity";
"ريغا";
}
"Rome";
{
"exemplarCity";
"روما";
}
"Samara";
{
"exemplarCity";
"سمراء";
}
"San_Marino";
{
"exemplarCity";
"سان مارينو";
}
"Sarajevo";
{
"exemplarCity";
"سراييفو";
}
"Simferopol";
{
"exemplarCity";
"سيمفروبول";
}
"Skopje";
{
"exemplarCity";
"سكوبي";
}
"Sofia";
{
"exemplarCity";
"صوفيا";
}
"Stockholm";
{
"exemplarCity";
"ستوكهولم";
}
"Tallinn";
{
"exemplarCity";
"تالين";
}
"Tirane";
{
"exemplarCity";
"تيرانا";
}
"Ulyanovsk";
{
"exemplarCity";
"أوليانوفسك";
}
"Uzhgorod";
{
"exemplarCity";
"أوزجرود";
}
"Vaduz";
{
"exemplarCity";
"فادوز";
}
"Vatican";
{
"exemplarCity";
"الفاتيكان";
}
"Vienna";
{
"exemplarCity";
"فيينا";
}
"Vilnius";
{
"exemplarCity";
"فيلنيوس";
}
"Volgograd";
{
"exemplarCity";
"فولوجراد";
}
"Warsaw";
{
"exemplarCity";
"وارسو";
}
"Zagreb";
{
"exemplarCity";
"زغرب";
}
"Zaporozhye";
{
"exemplarCity";
"زابوروزي";
}
"Zurich";
{
"exemplarCity";
"زيورخ";
}
}
"Africa";
{
"Abidjan";
{
"exemplarCity";
"أبيدجان";
}
"Accra";
{
"exemplarCity";
"أكرا";
}
"Addis_Ababa";
{
"exemplarCity";
"أديس أبابا";
}
"Algiers";
{
"exemplarCity";
"الجزائر";
}
"Asmera";
{
"exemplarCity";
"أسمرة";
}
"Bamako";
{
"exemplarCity";
"باماكو";
}
"Bangui";
{
"exemplarCity";
"بانغوي";
}
"Banjul";
{
"exemplarCity";
"بانجول";
}
"Bissau";
{
"exemplarCity";
"بيساو";
}
"Blantyre";
{
"exemplarCity";
"بلانتاير";
}
"Brazzaville";
{
"exemplarCity";
"برازافيل";
}
"Bujumbura";
{
"exemplarCity";
"بوجومبورا";
}
"Cairo";
{
"exemplarCity";
"القاهرة";
}
"Casablanca";
{
"exemplarCity";
"الدار البيضاء";
}
"Ceuta";
{
"exemplarCity";
"سيتا";
}
"Conakry";
{
"exemplarCity";
"كوناكري";
}
"Dakar";
{
"exemplarCity";
"داكار";
}
"Dar_es_Salaam";
{
"exemplarCity";
"دار السلام";
}
"Djibouti";
{
"exemplarCity";
"جيبوتي";
}
"Douala";
{
"exemplarCity";
"دوالا";
}
"El_Aaiun";
{
"exemplarCity";
"العيون";
}
"Freetown";
{
"exemplarCity";
"فري تاون";
}
"Gaborone";
{
"exemplarCity";
"غابورون";
}
"Harare";
{
"exemplarCity";
"هراري";
}
"Johannesburg";
{
"exemplarCity";
"جوهانسبرغ";
}
"Juba";
{
"exemplarCity";
"جوبا";
}
"Kampala";
{
"exemplarCity";
"كامبالا";
}
"Khartoum";
{
"exemplarCity";
"الخرطوم";
}
"Kigali";
{
"exemplarCity";
"كيغالي";
}
"Kinshasa";
{
"exemplarCity";
"كينشاسا";
}
"Lagos";
{
"exemplarCity";
"لاغوس";
}
"Libreville";
{
"exemplarCity";
"ليبرفيل";
}
"Lome";
{
"exemplarCity";
"لومي";
}
"Luanda";
{
"exemplarCity";
"لواندا";
}
"Lubumbashi";
{
"exemplarCity";
"لومبباشا";
}
"Lusaka";
{
"exemplarCity";
"لوساكا";
}
"Malabo";
{
"exemplarCity";
"مالابو";
}
"Maputo";
{
"exemplarCity";
"مابوتو";
}
"Maseru";
{
"exemplarCity";
"ماسيرو";
}
"Mbabane";
{
"exemplarCity";
"مباباني";
}
"Mogadishu";
{
"exemplarCity";
"مقديشيو";
}
"Monrovia";
{
"exemplarCity";
"مونروفيا";
}
"Nairobi";
{
"exemplarCity";
"نيروبي";
}
"Ndjamena";
{
"exemplarCity";
"نجامينا";
}
"Niamey";
{
"exemplarCity";
"نيامي";
}
"Nouakchott";
{
"exemplarCity";
"نواكشوط";
}
"Ouagadougou";
{
"exemplarCity";
"واغادوغو";
}
"Porto-Novo";
{
"exemplarCity";
"بورتو نوفو";
}
"Sao_Tome";
{
"exemplarCity";
"ساو تومي";
}
"Tripoli";
{
"exemplarCity";
"طرابلس";
}
"Tunis";
{
"exemplarCity";
"تونس";
}
"Windhoek";
{
"exemplarCity";
"ويندهوك";
}
}
"Asia";
{
"Aden";
{
"exemplarCity";
"عدن";
}
"Almaty";
{
"exemplarCity";
"ألماتي";
}
"Amman";
{
"exemplarCity";
"عمان";
}
"Anadyr";
{
"exemplarCity";
"أندير";
}
"Aqtau";
{
"exemplarCity";
"أكتاو";
}
"Aqtobe";
{
"exemplarCity";
"أكتوب";
}
"Ashgabat";
{
"exemplarCity";
"عشق آباد";
}
"Baghdad";
{
"exemplarCity";
"بغداد";
}
"Bahrain";
{
"exemplarCity";
"البحرين";
}
"Baku";
{
"exemplarCity";
"باكو";
}
"Bangkok";
{
"exemplarCity";
"بانكوك";
}
"Barnaul";
{
"exemplarCity";
"بارناول";
}
"Beirut";
{
"exemplarCity";
"بيروت";
}
"Bishkek";
{
"exemplarCity";
"بشكيك";
}
"Brunei";
{
"exemplarCity";
"بروناي";
}
"Calcutta";
{
"exemplarCity";
"كالكتا";
}
"Chita";
{
"exemplarCity";
"تشيتا";
}
"Choibalsan";
{
"exemplarCity";
"تشوبالسان";
}
"Colombo";
{
"exemplarCity";
"كولومبو";
}
"Damascus";
{
"exemplarCity";
"دمشق";
}
"Dhaka";
{
"exemplarCity";
"دكا";
}
"Dili";
{
"exemplarCity";
"ديلي";
}
"Dubai";
{
"exemplarCity";
"دبي";
}
"Dushanbe";
{
"exemplarCity";
"دوشانبي";
}
"Gaza";
{
"exemplarCity";
"غزة";
}
"Hebron";
{
"exemplarCity";
"هيبرون (مدينة الخليل)";
}
"Hong_Kong";
{
"exemplarCity";
"هونغ كونغ";
}
"Hovd";
{
"exemplarCity";
"هوفد";
}
"Irkutsk";
{
"exemplarCity";
"ايركيتسك";
}
"Jakarta";
{
"exemplarCity";
"جاكرتا";
}
"Jayapura";
{
"exemplarCity";
"جايابيورا";
}
"Jerusalem";
{
"exemplarCity";
"القدس";
}
"Kabul";
{
"exemplarCity";
"كابول";
}
"Kamchatka";
{
"exemplarCity";
"كامتشاتكا";
}
"Karachi";
{
"exemplarCity";
"كراتشي";
}
"Katmandu";
{
"exemplarCity";
"كاتماندو";
}
"Khandyga";
{
"exemplarCity";
"خانديجا";
}
"Krasnoyarsk";
{
"exemplarCity";
"كراسنويارسك";
}
"Kuala_Lumpur";
{
"exemplarCity";
"كوالا لامبور";
}
"Kuching";
{
"exemplarCity";
"كيشينج";
}
"Kuwait";
{
"exemplarCity";
"الكويت";
}
"Macau";
{
"exemplarCity";
"ماكاو";
}
"Magadan";
{
"exemplarCity";
"مجادن";
}
"Makassar";
{
"exemplarCity";
"ماكسار";
}
"Manila";
{
"exemplarCity";
"مانيلا";
}
"Muscat";
{
"exemplarCity";
"مسقط";
}
"Nicosia";
{
"exemplarCity";
"نيقوسيا";
}
"Novokuznetsk";
{
"exemplarCity";
"نوفوكوزنتسك";
}
"Novosibirsk";
{
"exemplarCity";
"نوفوسبيرسك";
}
"Omsk";
{
"exemplarCity";
"أومسك";
}
"Oral";
{
"exemplarCity";
"أورال";
}
"Phnom_Penh";
{
"exemplarCity";
"بنوم بنه";
}
"Pontianak";
{
"exemplarCity";
"بونتيانك";
}
"Pyongyang";
{
"exemplarCity";
"بيونغ يانغ";
}
"Qatar";
{
"exemplarCity";
"قطر";
}
"Qyzylorda";
{
"exemplarCity";
"كيزيلوردا";
}
"Rangoon";
{
"exemplarCity";
"رانغون";
}
"Riyadh";
{
"exemplarCity";
"الرياض";
}
"Saigon";
{
"exemplarCity";
"مدينة هو تشي منة";
}
"Sakhalin";
{
"exemplarCity";
"سكالين";
}
"Samarkand";
{
"exemplarCity";
"سمرقند";
}
"Seoul";
{
"exemplarCity";
"سول";
}
"Shanghai";
{
"exemplarCity";
"شنغهاي";
}
"Singapore";
{
"exemplarCity";
"سنغافورة";
}
"Srednekolymsk";
{
"exemplarCity";
"سريدنكوليمسك";
}
"Taipei";
{
"exemplarCity";
"تايبيه";
}
"Tashkent";
{
"exemplarCity";
"طشقند";
}
"Tbilisi";
{
"exemplarCity";
"تبليسي";
}
"Tehran";
{
"exemplarCity";
"طهران";
}
"Thimphu";
{
"exemplarCity";
"تيمفو";
}
"Tokyo";
{
"exemplarCity";
"طوكيو";
}
"Tomsk";
{
"exemplarCity";
"تومسك";
}
"Ulaanbaatar";
{
"exemplarCity";
"آلانباتار";
}
"Urumqi";
{
"exemplarCity";
"أرومكي";
}
"Ust-Nera";
{
"exemplarCity";
"أوست نيرا";
}
"Vientiane";
{
"exemplarCity";
"فيانتيان";
}
"Vladivostok";
{
"exemplarCity";
"فلاديفوستك";
}
"Yakutsk";
{
"exemplarCity";
"ياكتسك";
}
"Yekaterinburg";
{
"exemplarCity";
"يكاترنبيرج";
}
"Yerevan";
{
"exemplarCity";
"يريفان";
}
}
"Indian";
{
"Antananarivo";
{
"exemplarCity";
"أنتاناناريفو";
}
"Chagos";
{
"exemplarCity";
"تشاغوس";
}
"Christmas";
{
"exemplarCity";
"كريسماس";
}
"Cocos";
{
"exemplarCity";
"كوكوس";
}
"Comoro";
{
"exemplarCity";
"جزر القمر";
}
"Kerguelen";
{
"exemplarCity";
"كيرغويلين";
}
"Mahe";
{
"exemplarCity";
"ماهي";
}
"Maldives";
{
"exemplarCity";
"المالديف";
}
"Mauritius";
{
"exemplarCity";
"موريشيوس";
}
"Mayotte";
{
"exemplarCity";
"مايوت";
}
"Reunion";
{
"exemplarCity";
"ريونيون";
}
}
"Australia";
{
"Adelaide";
{
"exemplarCity";
"أديليد";
}
"Brisbane";
{
"exemplarCity";
"برسيبان";
}
"Broken_Hill";
{
"exemplarCity";
"بروكن هيل";
}
"Currie";
{
"exemplarCity";
"كوري";
}
"Darwin";
{
"exemplarCity";
"دارون";
}
"Eucla";
{
"exemplarCity";
"أوكلا";
}
"Hobart";
{
"exemplarCity";
"هوبارت";
}
"Lindeman";
{
"exemplarCity";
"ليندمان";
}
"Lord_Howe";
{
"exemplarCity";
"لورد هاو";
}
"Melbourne";
{
"exemplarCity";
"ميلبورن";
}
"Perth";
{
"exemplarCity";
"برثا";
}
"Sydney";
{
"exemplarCity";
"سيدني";
}
}
"Pacific";
{
"Apia";
{
"exemplarCity";
"أبيا";
}
"Auckland";
{
"exemplarCity";
"أوكلاند";
}
"Bougainville";
{
"exemplarCity";
"بوغانفيل";
}
"Chatham";
{
"exemplarCity";
"تشاثام";
}
"Easter";
{
"exemplarCity";
"استر";
}
"Efate";
{
"exemplarCity";
"إيفات";
}
"Enderbury";
{
"exemplarCity";
"اندربيرج";
}
"Fakaofo";
{
"exemplarCity";
"فاكاوفو";
}
"Fiji";
{
"exemplarCity";
"فيجي";
}
"Funafuti";
{
"exemplarCity";
"فونافوتي";
}
"Galapagos";
{
"exemplarCity";
"جلاباجوس";
}
"Gambier";
{
"exemplarCity";
"جامبير";
}
"Guadalcanal";
{
"exemplarCity";
"غوادالكانال";
}
"Guam";
{
"exemplarCity";
"غوام";
}
"Honolulu";
{
"exemplarCity";
"هونولولو";
}
"Johnston";
{
"exemplarCity";
"جونستون";
}
"Kiritimati";
{
"exemplarCity";
"كيريتي ماتي";
}
"Kosrae";
{
"exemplarCity";
"كوسرا";
}
"Kwajalein";
{
"exemplarCity";
"كواجالين";
}
"Majuro";
{
"exemplarCity";
"ماجورو";
}
"Marquesas";
{
"exemplarCity";
"ماركيساس";
}
"Midway";
{
"exemplarCity";
"ميدواي";
}
"Nauru";
{
"exemplarCity";
"ناورو";
}
"Niue";
{
"exemplarCity";
"نيوي";
}
"Norfolk";
{
"exemplarCity";
"نورفولك";
}
"Noumea";
{
"exemplarCity";
"نوميا";
}
"Pago_Pago";
{
"exemplarCity";
"باغو باغو";
}
"Palau";
{
"exemplarCity";
"بالاو";
}
"Pitcairn";
{
"exemplarCity";
"بيتكيرن";
}
"Ponape";
{
"exemplarCity";
"باناب";
}
"Port_Moresby";
{
"exemplarCity";
"بور مورسبي";
}
"Rarotonga";
{
"exemplarCity";
"راروتونغا";
}
"Saipan";
{
"exemplarCity";
"سايبان";
}
"Tahiti";
{
"exemplarCity";
"تاهيتي";
}
"Tarawa";
{
"exemplarCity";
"تاراوا";
}
"Tongatapu";
{
"exemplarCity";
"تونغاتابو";
}
"Truk";
{
"exemplarCity";
"ترك";
}
"Wake";
{
"exemplarCity";
"واك";
}
"Wallis";
{
"exemplarCity";
"واليس";
}
}
"Arctic";
{
"Longyearbyen";
{
"exemplarCity";
"لونجيربين";
}
}
"Antarctica";
{
"Casey";
{
"exemplarCity";
"كاساي";
}
"Davis";
{
"exemplarCity";
"دافيز";
}
"DumontDUrville";
{
"exemplarCity";
"دي مونت دو روفيل";
}
"Macquarie";
{
"exemplarCity";
"ماكواري";
}
"Mawson";
{
"exemplarCity";
"ماوسون";
}
"McMurdo";
{
"exemplarCity";
"ماك موردو";
}
"Palmer";
{
"exemplarCity";
"بالمير";
}
"Rothera";
{
"exemplarCity";
"روثيرا";
}
"Syowa";
{
"exemplarCity";
"سايووا";
}
"Troll";
{
"exemplarCity";
"ترول";
}
"Vostok";
{
"exemplarCity";
"فوستوك";
}
}
"Etc";
{
"GMT";
{
"exemplarCity";
"GMT";
}
"GMT1";
{
"exemplarCity";
"GMT+1";
}
"GMT10";
{
"exemplarCity";
"GMT+10";
}
"GMT11";
{
"exemplarCity";
"GMT+11";
}
"GMT12";
{
"exemplarCity";
"GMT+12";
}
"GMT2";
{
"exemplarCity";
"GMT+2";
}
"GMT3";
{
"exemplarCity";
"GMT+3";
}
"GMT4";
{
"exemplarCity";
"GMT+4";
}
"GMT5";
{
"exemplarCity";
"GMT+5";
}
"GMT6";
{
"exemplarCity";
"GMT+6";
}
"GMT7";
{
"exemplarCity";
"GMT+7";
}
"GMT8";
{
"exemplarCity";
"GMT+8";
}
"GMT9";
{
"exemplarCity";
"GMT+9";
}
"GMT-1";
{
"exemplarCity";
"GMT-1";
}
"GMT-10";
{
"exemplarCity";
"GMT-10";
}
"GMT-11";
{
"exemplarCity";
"GMT-11";
}
"GMT-12";
{
"exemplarCity";
"GMT-12";
}
"GMT-13";
{
"exemplarCity";
"GMT-13";
}
"GMT-14";
{
"exemplarCity";
"GMT-14";
}
"GMT-2";
{
"exemplarCity";
"GMT-2";
}
"GMT-3";
{
"exemplarCity";
"GMT-3";
}
"GMT-4";
{
"exemplarCity";
"GMT-4";
}
"GMT-5";
{
"exemplarCity";
"GMT-5";
}
"GMT-6";
{
"exemplarCity";
"GMT-6";
}
"GMT-7";
{
"exemplarCity";
"GMT-7";
}
"GMT-8";
{
"exemplarCity";
"GMT-8";
}
"GMT-9";
{
"exemplarCity";
"GMT-9";
}
"Unknown";
{
"exemplarCity";
"مدينة غير معروفة";
}
}
}
"metazone";
{
"Afghanistan";
{
"long";
{
"standard";
"توقيت أفغانستان";
}
}
"Africa_Central";
{
"long";
{
"standard";
"توقيت وسط أفريقيا";
}
}
"Africa_Eastern";
{
"long";
{
"standard";
"توقيت شرق أفريقيا";
}
}
"Africa_Southern";
{
"long";
{
"standard";
"توقيت جنوب أفريقيا";
}
}
"Africa_Western";
{
"long";
{
"generic";
"توقيت غرب أفريقيا",
"standard";
"توقيت غرب أفريقيا الرسمي",
"daylight";
"توقيت غرب أفريقيا الصيفي";
}
}
"Alaska";
{
"long";
{
"generic";
"توقيت ألاسكا",
"standard";
"التوقيت الرسمي لألاسكا",
"daylight";
"توقيت ألاسكا الصيفي";
}
}
"Amazon";
{
"long";
{
"generic";
"توقيت الأمازون",
"standard";
"توقيت الأمازون الرسمي",
"daylight";
"توقيت الأمازون الصيفي";
}
}
"America_Central";
{
"long";
{
"generic";
"التوقيت المركزي لأمريكا الشمالية",
"standard";
"التوقيت الرسمي المركزي لأمريكا الشمالية",
"daylight";
"التوقيت الصيفي المركزي لأمريكا الشمالية";
}
}
"America_Eastern";
{
"long";
{
"generic";
"التوقيت الشرقي لأمريكا الشمالية",
"standard";
"التوقيت الرسمي الشرقي لأمريكا الشمالية",
"daylight";
"التوقيت الصيفي الشرقي لأمريكا الشمالية";
}
}
"America_Mountain";
{
"long";
{
"generic";
"التوقيت الجبلي لأمريكا الشمالية",
"standard";
"التوقيت الجبلي الرسمي لأمريكا الشمالية",
"daylight";
"التوقيت الجبلي الصيفي لأمريكا الشمالية";
}
}
"America_Pacific";
{
"long";
{
"generic";
"توقيت المحيط الهادي",
"standard";
"توقيت المحيط الهادي الرسمي",
"daylight";
"توقيت المحيط الهادي الصيفي";
}
}
"Anadyr";
{
"long";
{
"generic";
"توقيت أنادير",
"standard";
"توقيت أنادير الرسمي",
"daylight";
"التوقيت الصيفي لأنادير";
}
}
"Apia";
{
"long";
{
"generic";
"توقيت آبيا",
"standard";
"التوقيت الرسمي لآبيا",
"daylight";
"التوقيت الصيفي لأبيا";
}
}
"Arabian";
{
"long";
{
"generic";
"التوقيت العربي",
"standard";
"التوقيت العربي الرسمي",
"daylight";
"التوقيت العربي الصيفي";
}
}
"Argentina";
{
"long";
{
"generic";
"توقيت الأرجنتين",
"standard";
"توقيت الأرجنتين الرسمي",
"daylight";
"توقيت الأرجنتين الصيفي";
}
}
"Argentina_Western";
{
"long";
{
"generic";
"توقيت غرب الأرجنتين",
"standard";
"توقيت غرب الأرجنتين الرسمي",
"daylight";
"توقيت غرب الأرجنتين الصيفي";
}
}
"Armenia";
{
"long";
{
"generic";
"توقيت أرمينيا",
"standard";
"توقيت أرمينيا الرسمي",
"daylight";
"توقيت أرمينيا الصيفي";
}
}
"Atlantic";
{
"long";
{
"generic";
"توقيت الأطلسي",
"standard";
"التوقيت الرسمي الأطلسي",
"daylight";
"التوقيت الصيفي الأطلسي";
}
}
"Australia_Central";
{
"long";
{
"generic";
"توقيت وسط أستراليا",
"standard";
"توقيت وسط أستراليا الرسمي",
"daylight";
"توقيت وسط أستراليا الصيفي";
}
}
"Australia_CentralWestern";
{
"long";
{
"generic";
"توقيت غرب وسط أستراليا",
"standard";
"توقيت غرب وسط أستراليا الرسمي",
"daylight";
"توقيت غرب وسط أستراليا الصيفي";
}
}
"Australia_Eastern";
{
"long";
{
"generic";
"توقيت شرق أستراليا",
"standard";
"توقيت شرق أستراليا الرسمي",
"daylight";
"توقيت شرق أستراليا الصيفي";
}
}
"Australia_Western";
{
"long";
{
"generic";
"توقيت غرب أستراليا",
"standard";
"توقيت غرب أستراليا الرسمي",
"daylight";
"توقيت غرب أستراليا الصيفي";
}
}
"Azerbaijan";
{
"long";
{
"generic";
"توقيت أذربيجان",
"standard";
"توقيت أذربيجان الرسمي",
"daylight";
"توقيت أذربيجان الصيفي";
}
}
"Azores";
{
"long";
{
"generic";
"توقيت أزورس",
"standard";
"توقيت أزورس الرسمي",
"daylight";
"توقيت أزورس الصيفي";
}
}
"Bangladesh";
{
"long";
{
"generic";
"توقيت بنجلاديش",
"standard";
"توقيت بنجلاديش الرسمي",
"daylight";
"توقيت بنجلاديش الصيفي";
}
}
"Bhutan";
{
"long";
{
"standard";
"توقيت بوتان";
}
}
"Bolivia";
{
"long";
{
"standard";
"توقيت بوليفيا";
}
}
"Brasilia";
{
"long";
{
"generic";
"توقيت برازيليا",
"standard";
"توقيت برازيليا الرسمي",
"daylight";
"توقيت برازيليا الصيفي";
}
}
"Brunei";
{
"long";
{
"standard";
"توقيت بروناي";
}
}
"Cape_Verde";
{
"long";
{
"generic";
"توقيت الرأس الأخضر",
"standard";
"توقيت الرأس الأخضر الرسمي",
"daylight";
"توقيت الرأس الأخضر الصيفي";
}
}
"Chamorro";
{
"long";
{
"standard";
"توقيت تشامورو";
}
}
"Chatham";
{
"long";
{
"generic";
"توقيت تشاتام",
"standard";
"توقيت تشاتام الرسمي",
"daylight";
"توقيت تشاتام الصيفي";
}
}
"Chile";
{
"long";
{
"generic";
"توقيت شيلي",
"standard";
"توقيت شيلي الرسمي",
"daylight";
"توقيت شيلي الصيفي";
}
}
"China";
{
"long";
{
"generic";
"توقيت الصين",
"standard";
"توقيت الصين الرسمي",
"daylight";
"توقيت الصين الصيفي";
}
}
"Choibalsan";
{
"long";
{
"generic";
"توقيت شويبالسان",
"standard";
"توقيت شويبالسان الرسمي",
"daylight";
"التوقيت الصيفي لشويبالسان";
}
}
"Christmas";
{
"long";
{
"standard";
"توقيت جزر الكريسماس";
}
}
"Cocos";
{
"long";
{
"standard";
"توقيت جزر كوكوس";
}
}
"Colombia";
{
"long";
{
"generic";
"توقيت كولومبيا",
"standard";
"توقيت كولومبيا الرسمي",
"daylight";
"توقيت كولومبيا الصيفي";
}
}
"Cook";
{
"long";
{
"generic";
"توقيت جزر كووك",
"standard";
"توقيت جزر كووك الرسمي",
"daylight";
"توقيت جزر كووك الصيفي";
}
}
"Cuba";
{
"long";
{
"generic";
"توقيت كوبا",
"standard";
"توقيت كوبا الرسمي",
"daylight";
"توقيت كوبا الصيفي";
}
}
"Davis";
{
"long";
{
"standard";
"توقيت دافيز";
}
}
"DumontDUrville";
{
"long";
{
"standard";
"توقيت دي مونت دو روفيل";
}
}
"East_Timor";
{
"long";
{
"standard";
"توقيت تيمور الشرقية";
}
}
"Easter";
{
"long";
{
"generic";
"توقيت جزيرة استر",
"standard";
"توقيت جزيرة استر الرسمي",
"daylight";
"توقيت جزيرة استر الصيفي";
}
}
"Ecuador";
{
"long";
{
"standard";
"توقيت الإكوادور";
}
}
"Europe_Central";
{
"long";
{
"generic";
"توقيت وسط أوروبا",
"standard";
"توقيت وسط أوروبا الرسمي",
"daylight";
"توقيت وسط أوروبا الصيفي";
}
}
"Europe_Eastern";
{
"long";
{
"generic";
"توقيت شرق أوروبا",
"standard";
"توقيت شرق أوروبا الرسمي",
"daylight";
"توقيت شرق أوروبا الصيفي";
}
}
"Europe_Further_Eastern";
{
"long";
{
"standard";
"التوقيت الأوروبي (أكثر شرقًا)";
}
}
"Europe_Western";
{
"long";
{
"generic";
"توقيت غرب أوروبا",
"standard";
"توقيت غرب أوروبا الرسمي",
"daylight";
"توقيت غرب أوروبا الصيفي";
}
}
"Falkland";
{
"long";
{
"generic";
"توقيت جزر فوكلاند",
"standard";
"توقيت جزر فوكلاند الرسمي",
"daylight";
"توقيت جزر فوكلاند الصيفي";
}
}
"Fiji";
{
"long";
{
"generic";
"توقيت فيجي",
"standard";
"توقيت فيجي الرسمي",
"daylight";
"توقيت فيجي الصيفي";
}
}
"French_Guiana";
{
"long";
{
"standard";
"توقيت غايانا الفرنسية";
}
}
"French_Southern";
{
"long";
{
"standard";
"توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية";
}
}
"Galapagos";
{
"long";
{
"standard";
"توقيت غلاباغوس";
}
}
"Gambier";
{
"long";
{
"standard";
"توقيت جامبير";
}
}
"Georgia";
{
"long";
{
"generic";
"توقيت جورجيا",
"standard";
"توقيت جورجيا الرسمي",
"daylight";
"توقيت جورجيا الصيفي";
}
}
"Gilbert_Islands";
{
"long";
{
"standard";
"توقيت جزر جيلبرت";
}
}
"GMT";
{
"long";
{
"standard";
"توقيت غرينتش";
}
}
"Greenland_Eastern";
{
"long";
{
"generic";
"توقيت شرق غرينلاند",
"standard";
"توقيت شرق غرينلاند الرسمي",
"daylight";
"توقيت شرق غرينلاند الصيفي";
}
}
"Greenland_Western";
{
"long";
{
"generic";
"توقيت غرب غرينلاند",
"standard";
"توقيت غرب غرينلاند الرسمي",
"daylight";
"توقيت غرب غرينلاند الصيفي";
}
}
"Guam";
{
"long";
{
"standard";
"توقيت غوام";
}
}
"Gulf";
{
"long";
{
"standard";
"توقيت الخليج";
}
}
"Guyana";
{
"long";
{
"standard";
"توقيت غيانا";
}
}
"Hawaii_Aleutian";
{
"long";
{
"generic";
"توقيت هاواي ألوتيان",
"standard";
"توقيت هاواي ألوتيان الرسمي",
"daylight";
"توقيت هاواي ألوتيان الصيفي";
}
}
"Hong_Kong";
{
"long";
{
"generic";
"توقيت هونغ كونغ",
"standard";
"توقيت هونغ كونغ الرسمي",
"daylight";
"توقيت هونغ كونغ الصيفي";
}
}
"Hovd";
{
"long";
{
"generic";
"توقيت هوفد",
"standard";
"توقيت هوفد الرسمي",
"daylight";
"توقيت هوفد الصيفي";
}
}
"India";
{
"long";
{
"standard";
"توقيت الهند";
}
}
"Indian_Ocean";
{
"long";
{
"standard";
"توقيت المحيط الهندي";
}
}
"Indochina";
{
"long";
{
"standard";
"توقيت الهند الصينية";
}
}
"Indonesia_Central";
{
"long";
{
"standard";
"توقيت وسط إندونيسيا";
}
}
"Indonesia_Eastern";
{
"long";
{
"standard";
"توقيت شرق إندونيسيا";
}
}
"Indonesia_Western";
{
"long";
{
"standard";
"توقيت غرب إندونيسيا";
}
}
"Iran";
{
"long";
{
"generic";
"توقيت إيران",
"standard";
"توقيت إيران الرسمي",
"daylight";
"توقيت إيران الصيفي";
}
}
"Irkutsk";
{
"long";
{
"generic";
"توقيت إركوتسك",
"standard";
"توقيت إركوتسك الرسمي",
"daylight";
"توقيت إركوتسك الصيفي";
}
}
"Israel";
{
"long";
{
"generic";
"توقيت إسرائيل",
"standard";
"توقيت إسرائيل الرسمي",
"daylight";
"توقيت إسرائيل الصيفي";
}
}
"Japan";
{
"long";
{
"generic";
"توقيت اليابان",
"standard";
"توقيت اليابان الرسمي",
"daylight";
"توقيت اليابان الصيفي";
}
}
"Kamchatka";
{
"long";
{
"generic";
"توقيت كامشاتكا",
"standard";
"توقيت بيتروبافلوفسك-كامتشاتسكي",
"daylight";
"توقيت بيتروبافلوفسك-كامتشاتسكي الصيفي";
}
}
"Kazakhstan_Eastern";
{
"long";
{
"standard";
"توقيت شرق كازاخستان";
}
}
"Kazakhstan_Western";
{
"long";
{
"standard";
"توقيت غرب كازاخستان";
}
}
"Korea";
{
"long";
{
"generic";
"توقيت كوريا",
"standard";
"توقيت كوريا الرسمي",
"daylight";
"توقيت كوريا الصيفي";
}
}
"Kosrae";
{
"long";
{
"standard";
"توقيت كوسرا";
}
}
"Krasnoyarsk";
{
"long";
{
"generic";
"توقيت كراسنويارسك",
"standard";
"توقيت كراسنويارسك الرسمي",
"daylight";
"التوقيت الصيفي لكراسنويارسك";
}
}
"Kyrgystan";
{
"long";
{
"standard";
"توقيت قرغيزستان";
}
}
"Line_Islands";
{
"long";
{
"standard";
"توقيت جزر لاين";
}
}
"Lord_Howe";
{
"long";
{
"generic";
"توقيت لورد هاو",
"standard";
"توقيت لورد هاو الرسمي",
"daylight";
"التوقيت الصيفي للورد هاو";
}
}
"Macquarie";
{
"long";
{
"standard";
"توقيت ماكواري";
}
}
"Magadan";
{
"long";
{
"generic";
"توقيت ماغادان",
"standard";
"توقيت ماغادان الرسمي",
"daylight";
"توقيت ماغادان الصيفي";
}
}
"Malaysia";
{
"long";
{
"standard";
"توقيت ماليزيا";
}
}
"Maldives";
{
"long";
{
"standard";
"توقيت الـمالديف";
}
}
"Marquesas";
{
"long";
{
"standard";
"توقيت ماركيساس";
}
}
"Marshall_Islands";
{
"long";
{
"standard";
"توقيت جزر مارشال";
}
}
"Mauritius";
{
"long";
{
"generic";
"توقيت موريشيوس",
"standard";
"توقيت موريشيوس الرسمي",
"daylight";
"توقيت موريشيوس الصيفي";
}
}
"Mawson";
{
"long";
{
"standard";
"توقيت ماوسون";
}
}
"Mexico_Northwest";
{
"long";
{
"generic";
"توقيت شمال غرب المكسيك",
"standard";
"التوقيت الرسمي لشمال غرب المكسيك",
"daylight";
"التوقيت الصيفي لشمال غرب المكسيك";
}
}
"Mexico_Pacific";
{
"long";
{
"generic";
"توقيت المحيط الهادي للمكسيك",
"standard";
"توقيت المحيط الهادي الرسمي للمكسيك",
"daylight";
"توقيت المحيط الهادي الصيفي للمكسيك";
}
}
"Mongolia";
{
"long";
{
"generic";
"توقيت أولان باتور",
"standard";
"توقيت أولان باتور الرسمي",
"daylight";
"توقيت أولان باتور الصيفي";
}
}
"Moscow";
{
"long";
{
"generic";
"توقيت موسكو",
"standard";
"توقيت موسكو الرسمي",
"daylight";
"توقيت موسكو الصيفي";
}
}
"Myanmar";
{
"long";
{
"standard";
"توقيت ميانمار";
}
}
"Nauru";
{
"long";
{
"standard";
"توقيت ناورو";
}
}
"Nepal";
{
"long";
{
"standard";
"توقيت نيبال";
}
}
"New_Caledonia";
{
"long";
{
"generic";
"توقيت كاليدونيا الجديدة",
"standard";
"توقيت كاليدونيا الجديدة الرسمي",
"daylight";
"توقيت كاليدونيا الجديدة الصيفي";
}
}
"New_Zealand";
{
"long";
{
"generic";
"توقيت نيوزيلندا",
"standard";
"توقيت نيوزيلندا الرسمي",
"daylight";
"توقيت نيوزيلندا الصيفي";
}
}
"Newfoundland";
{
"long";
{
"generic";
"توقيت نيوفاوندلاند",
"standard";
"توقيت نيوفاوندلاند الرسمي",
"daylight";
"توقيت نيوفاوندلاند الصيفي";
}
}
"Niue";
{
"long";
{
"standard";
"توقيت نيوي";
}
}
"Norfolk";
{
"long";
{
"standard";
"توقيت جزيرة نورفولك";
}
}
"Noronha";
{
"long";
{
"generic";
"توقيت فيرناندو دي نورونها",
"standard";
"توقيت فرناندو دي نورونها الرسمي",
"daylight";
"توقيت فرناندو دي نورونها الصيفي";
}
}
"North_Mariana";
{
"long";
{
"standard";
"توقيت جزر ماريانا الشمالية";
}
}
"Novosibirsk";
{
"long";
{
"generic";
"توقيت نوفوسيبيرسك",
"standard";
"توقيت نوفوسيبيرسك الرسمي",
"daylight";
"توقيت نوفوسيبيرسك الصيفي";
}
}
"Omsk";
{
"long";
{
"generic";
"توقيت أومسك",
"standard";
"توقيت أومسك الرسمي",
"daylight";
"توقيت أومسك الصيفي";
}
}
"Pakistan";
{
"long";
{
"generic";
"توقيت باكستان",
"standard";
"توقيت باكستان الرسمي",
"daylight";
"توقيت باكستان الصيفي";
}
}
"Palau";
{
"long";
{
"standard";
"توقيت بالاو";
}
}
"Papua_New_Guinea";
{
"long";
{
"standard";
"توقيت بابوا غينيا الجديدة";
}
}
"Paraguay";
{
"long";
{
"generic";
"توقيت باراغواي",
"standard";
"توقيت باراغواي الرسمي",
"daylight";
"توقيت باراغواي الصيفي";
}
}
"Peru";
{
"long";
{
"generic";
"توقيت بيرو",
"standard";
"توقيت بيرو الرسمي",
"daylight";
"توقيت بيرو الصيفي";
}
}
"Philippines";
{
"long";
{
"generic";
"توقيت الفيلبين",
"standard";
"توقيت الفيلبين الرسمي",
"daylight";
"توقيت الفيلبين الصيفي";
}
}
"Phoenix_Islands";
{
"long";
{
"standard";
"توقيت جزر فينكس";
}
}
"Pierre_Miquelon";
{
"long";
{
"generic";
"توقيت سانت بيير وميكولون",
"standard";
"توقيت سانت بيير وميكولون الرسمي",
"daylight";
"توقيت سانت بيير وميكولون الصيفي";
}
}
"Pitcairn";
{
"long";
{
"standard";
"توقيت بيتكيرن";
}
}
"Ponape";
{
"long";
{
"standard";
"توقيت بونابي";
}
}
"Pyongyang";
{
"long";
{
"standard";
"توقيت بيونغ يانغ";
}
}
"Reunion";
{
"long";
{
"standard";
"توقيت ريونيون";
}
}
"Rothera";
{
"long";
{
"standard";
"توقيت روثيرا";
}
}
"Sakhalin";
{
"long";
{
"generic";
"توقيت ساخالين",
"standard";
"توقيت ساخالين الرسمي",
"daylight";
"توقيت ساخالين الصيفي";
}
}
"Samara";
{
"long";
{
"generic";
"توقيت سامارا",
"standard";
"توقيت سمارا",
"daylight";
"توقيت سمارا الصيفي";
}
}
"Samoa";
{
"long";
{
"generic";
"توقيت ساموا",
"standard";
"توقيت ساموا الرسمي",
"daylight";
"توقيت ساموا الصيفي";
}
}
"Seychelles";
{
"long";
{
"standard";
"توقيت سيشل";
}
}
"Singapore";
{
"long";
{
"standard";
"توقيت سنغافورة";
}
}
"Solomon";
{
"long";
{
"standard";
"توقيت جزر سليمان";
}
}
"South_Georgia";
{
"long";
{
"standard";
"توقيت جنوب جورجيا";
}
}
"Suriname";
{
"long";
{
"standard";
"توقيت سورينام";
}
}
"Syowa";
{
"long";
{
"standard";
"توقيت سايووا";
}
}
"Tahiti";
{
"long";
{
"standard";
"توقيت تاهيتي";
}
}
"Taipei";
{
"long";
{
"generic";
"توقيت تايبيه",
"standard";
"توقيت تايبيه الرسمي",
"daylight";
"توقيت تايبيه الصيفي";
}
}
"Tajikistan";
{
"long";
{
"standard";
"توقيت طاجكستان";
}
}
"Tokelau";
{
"long";
{
"standard";
"توقيت توكيلاو";
}
}
"Tonga";
{
"long";
{
"generic";
"توقيت تونغا",
"standard";
"توقيت تونغا الرسمي",
"daylight";
"توقيت تونغا الصيفي";
}
}
"Truk";
{
"long";
{
"standard";
"توقيت شوك";
}
}
"Turkmenistan";
{
"long";
{
"generic";
"توقيت تركمانستان",
"standard";
"توقيت تركمانستان الرسمي",
"daylight";
"توقيت تركمانستان الصيفي";
}
}
"Tuvalu";
{
"long";
{
"standard";
"توقيت توفالو";
}
}
"Uruguay";
{
"long";
{
"generic";
"توقيت أورغواي",
"standard";
"توقيت أورغواي الرسمي",
"daylight";
"توقيت أورغواي الصيفي";
}
}
"Uzbekistan";
{
"long";
{
"generic";
"توقيت أوزبكستان",
"standard";
"توقيت أوزبكستان الرسمي",
"daylight";
"توقيت أوزبكستان الصيفي";
}
}
"Vanuatu";
{
"long";
{
"generic";
"توقيت فانواتو",
"standard";
"توقيت فانواتو الرسمي",
"daylight";
"توقيت فانواتو الصيفي";
}
}
"Venezuela";
{
"long";
{
"standard";
"توقيت فنزويلا";
}
}
"Vladivostok";
{
"long";
{
"generic";
"توقيت فلاديفوستوك",
"standard";
"توقيت فلاديفوستوك الرسمي",
"daylight";
"توقيت فلاديفوستوك الصيفي";
}
}
"Volgograd";
{
"long";
{
"generic";
"توقيت فولغوغراد",
"standard";
"توقيت فولغوغراد الرسمي",
"daylight";
"توقيت فولغوغراد الصيفي";
}
}
"Vostok";
{
"long";
{
"standard";
"توقيت فوستوك";
}
}
"Wake";
{
"long";
{
"standard";
"توقيت جزيرة ويك";
}
}
"Wallis";
{
"long";
{
"standard";
"توقيت واليس و فوتونا";
}
}
"Yakutsk";
{
"long";
{
"generic";
"توقيت ياكوتسك",
"standard";
"توقيت ياكوتسك الرسمي",
"daylight";
"توقيت ياكوتسك الصيفي";
}
}
"Yekaterinburg";
{
"long";
{
"generic";
"توقيت يكاترينبورغ",
"standard";
"توقيت يكاترينبورغ الرسمي",
"daylight";
"توقيت يكاترينبورغ الصيفي";
}
}
}
}
}
}
}
}
[Functional-component]
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"dates": {
"calendars": {
"gregorian": {
"months": {
"format": {
"abbreviated": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
},
"narrow": {
"1": "ي",
"2": "ف",
"3": "م",
"4": "أ",
"5": "و",
"6": "ن",
"7": "ل",
"8": "غ",
"9": "س",
"10": "ك",
"11": "ب",
"12": "د"
},
"wide": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
}
},
"stand-alone": {
"abbreviated": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
},
"narrow": {
"1": "ي",
"2": "ف",
"3": "م",
"4": "أ",
"5": "و",
"6": "ن",
"7": "ل",
"8": "غ",
"9": "س",
"10": "ك",
"11": "ب",
"12": "د"
},
"wide": {
"1": "يناير",
"2": "فبراير",
"3": "مارس",
"4": "أبريل",
"5": "مايو",
"6": "يونيو",
"7": "يوليو",
"8": "أغسطس",
"9": "سبتمبر",
"10": "أكتوبر",
"11": "نوفمبر",
"12": "ديسمبر"
}
}
},
"days": {
"format": {
"abbreviated": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"narrow": {
"sun": "ح",
"mon": "ن",
"tue": "ث",
"wed": "ر",
"thu": "خ",
"fri": "ج",
"sat": "س"
},
"short": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"wide": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
}
},
"stand-alone": {
"abbreviated": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"narrow": {
"sun": "ح",
"mon": "ن",
"tue": "ث",
"wed": "ر",
"thu": "خ",
"fri": "ج",
"sat": "س"
},
"short": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
},
"wide": {
"sun": "الأحد",
"mon": "الاثنين",
"tue": "الثلاثاء",
"wed": "الأربعاء",
"thu": "الخميس",
"fri": "الجمعة",
"sat": "السبت"
}
}
},
"quarters": {
"format": {
"abbreviated": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
},
"narrow": {
"1": "١",
"2": "٢",
"3": "٣",
"4": "٤"
},
"wide": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
}
},
"stand-alone": {
"abbreviated": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
},
"narrow": {
"1": "١",
"2": "٢",
"3": "٣",
"4": "٤"
},
"wide": {
"1": "الربع الأول",
"2": "الربع الثاني",
"3": "الربع الثالث",
"4": "الربع الرابع"
}
}
},
"dayPeriods": {
"format": {
"abbreviated": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "ص",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ل"
},
"narrow": {
"am": "ص",
"pm": "م",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"wide": {
"am": "ص",
"pm": "م",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
}
},
"stand-alone": {
"abbreviated": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "ص",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"narrow": {
"am": "ص",
"pm": "م",
"morning1": "فجرا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
},
"wide": {
"am": "صباحًا",
"pm": "مساءً",
"morning1": "فجرًا",
"morning2": "صباحًا",
"afternoon1": "ظهرًا",
"afternoon2": "بعد الظهر",
"evening1": "مساءً",
"night1": "منتصف الليل",
"night2": "ليلاً"
}
}
},
"eras": {
"eraNames": {
"0": "قبل الميلاد",
"0-alt-variant": "BCE",
"1": "ميلادي",
"1-alt-variant": "بعد الميلاد"
},
"eraAbbr": {
"0": "ق.م",
"0-alt-variant": "BCE",
"1": "م",
"1-alt-variant": "ب.م"
},
"eraNarrow": {
"0": "ق.م",
"0-alt-variant": "BCE",
"1": "م",
"1-alt-variant": "ب.م"
}
},
"dateFormats": {
"full": "EEEE، d MMMM، y",
"long": "d MMMM، y",
"medium": "dd/MM/y",
"short": "d/M/y"
},
"timeFormats": {
"full": "h:mm:ss a zzzz",
"long": "h:mm:ss a z",
"medium": "h:mm:ss a",
"short": "h:mm a"
},
"dateTimeFormats": {
"full": "{1} {0}",
"long": "{1} {0}",
"medium": "{1} {0}",
"short": "{1} {0}",
"availableFormats": {
"d": "d",
"E": "ccc",
"Ed": "E، d",
"Ehm": "E h:mm a",
"EHm": "E HH:mm",
"Ehms": "E h:mm:ss a",
"EHms": "E HH:mm:ss",
"Gy": "y G",
"GyMMM": "MMM y G",
"GyMMMd": "d MMM، y G",
"GyMMMEd": "E، d MMM، y G",
"h": "h a",
"H": "HH",
"hm": "h:mm a",
"Hm": "HH:mm",
"hms": "h:mm:ss a",
"Hms": "HH:mm:ss",
"hmsv": "h:mm:ss a v",
"Hmsv": "HH:mm:ss v",
"hmv": "h:mm a v",
"Hmv": "HH:mm v",
"M": "L",
"Md": "d/M",
"MEd": "E، d/M",
"MMdd": "dd/MM",
"MMM": "LLL",
"MMMd": "d MMM",
"MMMEd": "E، d MMM",
"MMMMd": "d MMMM",
"MMMMEd": "E، d MMMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"MMMMW": "الأسبوع W من MMM",
"ms": "mm:ss",
"y": "y",
"yM": "M/y",
"yMd": "d/M/y",
"yMEd": "E، d/M/y",
"yMM": "MM/y",
"yMMM": "MMM y",
"yMMMd": "d MMM، y",
"yMMMEd": "E، d MMM، y",
"yMMMM": "MMMM y",
"yQQQ": "QQQ y",
"yQQQQ": "QQQQ y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y",
"yw": "الأسبوع w من سنة y"
},
"appendItems": {
"Day": "{0} ({2}: {1})",
"Day-Of-Week": "{0} {1}",
"Era": "{1} {0}",
"Hour": "{0} ({2}: {1})",
"Minute": "{0} ({2}: {1})",
"Month": "{0} ({2}: {1})",
"Quarter": "{0} ({2}: {1})",
"Second": "{0} ({2}: {1})",
"Timezone": "{0} {1}",
"Week": "{0} ({2}: {1})",
"Year": "{1} {0}"
},
"intervalFormats": {
"intervalFormatFallback": "{0} – {1}",
"d": {
"d": "d–d"
},
"h": {
"a": "h a – h a",
"h": "h–h a"
},
"H": {
"H": "HH–HH"
},
"hm": {
"a": "h:mm a – h:mm a",
"h": "h:mm–h:mm a",
"m": "h:mm–h:mm a"
},
"Hm": {
"H": "HH:mm–HH:mm",
"m": "HH:mm–HH:mm"
},
"hmv": {
"a": "h:mm a – h:mm a v",
"h": "h:mm–h:mm a v",
"m": "h:mm–h:mm a v"
},
"Hmv": {
"H": "HH:mm–HH:mm v",
"m": "HH:mm–HH:mm v"
},
"hv": {
"a": "h a – h a v",
"h": "h–h a v"
},
"Hv": {
"H": "HH–HH v"
},
"M": {
"M": "M–M"
},
"Md": {
"d": "M/d – M/d",
"M": "M/d – M/d"
},
"MEd": {
"d": "E، d/M – E، d/M",
"M": "E، d/M – E، d/M"
},
"MMM": {
"M": "MMM–MMM"
},
"MMMd": {
"d": "d–d MMM",
"M": "d MMM – d MMM"
},
"MMMEd": {
"d": "E، d – E، d MMM",
"M": "E، d MMM – E، d MMM"
},
"MMMM": {
"M": "LLLL–LLLL"
},
"y": {
"y": "y–y"
},
"yM": {
"M": "M/y – M/y",
"y": "M/y – M/y"
},
"yMd": {
"d": "d/M/y – d/M/y",
"M": "d/M/y – d/M/y",
"y": "d/M/y – d/M/y"
},
"yMEd": {
"d": "E، dd/MM/y – E، dd/MM/y",
"M": "E، d/M/y – E، d/M/y",
"y": "E، d/M/y – E، d/M/y"
},
"yMMM": {
"M": "MMM – MMM، y",
"y": "MMM، y – MMM، y"
},
"yMMMd": {
"d": "d–d MMM، y",
"M": "d MMM – d MMM، y",
"y": "d MMM، y – d MMM، y"
},
"yMMMEd": {
"d": "E، d – E، d MMM، y",
"M": "E، d MMM – E، d MMM، y",
"y": "E، d MMM، y – E، d MMM، y"
},
"yMMMM": {
"M": "MMMM – MMMM، y",
"y": "MMMM، y – MMMM، y"
}
}
}
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"dates";
{
"calendars";
{
"gregorian";
{
"months";
{
"format";
{
"abbreviated";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
"narrow";
{
"1";
"ي",
"2";
"ف",
"3";
"م",
"4";
"أ",
"5";
"و",
"6";
"ن",
"7";
"ل",
"8";
"غ",
"9";
"س",
"10";
"ك",
"11";
"ب",
"12";
"د";
}
"wide";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
"narrow";
{
"1";
"ي",
"2";
"ف",
"3";
"م",
"4";
"أ",
"5";
"و",
"6";
"ن",
"7";
"ل",
"8";
"غ",
"9";
"س",
"10";
"ك",
"11";
"ب",
"12";
"د";
}
"wide";
{
"1";
"يناير",
"2";
"فبراير",
"3";
"مارس",
"4";
"أبريل",
"5";
"مايو",
"6";
"يونيو",
"7";
"يوليو",
"8";
"أغسطس",
"9";
"سبتمبر",
"10";
"أكتوبر",
"11";
"نوفمبر",
"12";
"ديسمبر";
}
}
}
"days";
{
"format";
{
"abbreviated";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"narrow";
{
"sun";
"ح",
"mon";
"ن",
"tue";
"ث",
"wed";
"ر",
"thu";
"خ",
"fri";
"ج",
"sat";
"س";
}
"short";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"wide";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
}
"stand-alone";
{
"abbreviated";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"narrow";
{
"sun";
"ح",
"mon";
"ن",
"tue";
"ث",
"wed";
"ر",
"thu";
"خ",
"fri";
"ج",
"sat";
"س";
}
"short";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
"wide";
{
"sun";
"الأحد",
"mon";
"الاثنين",
"tue";
"الثلاثاء",
"wed";
"الأربعاء",
"thu";
"الخميس",
"fri";
"الجمعة",
"sat";
"السبت";
}
}
}
"quarters";
{
"format";
{
"abbreviated";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
"narrow";
{
"1";
"١",
"2";
"٢",
"3";
"٣",
"4";
"٤";
}
"wide";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
}
"stand-alone";
{
"abbreviated";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
"narrow";
{
"1";
"١",
"2";
"٢",
"3";
"٣",
"4";
"٤";
}
"wide";
{
"1";
"الربع الأول",
"2";
"الربع الثاني",
"3";
"الربع الثالث",
"4";
"الربع الرابع";
}
}
}
"dayPeriods";
{
"format";
{
"abbreviated";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"ص",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ل";
}
"narrow";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"wide";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
}
"stand-alone";
{
"abbreviated";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"ص",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"narrow";
{
"am";
"ص",
"pm";
"م",
"morning1";
"فجرا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
"wide";
{
"am";
"صباحًا",
"pm";
"مساءً",
"morning1";
"فجرًا",
"morning2";
"صباحًا",
"afternoon1";
"ظهرًا",
"afternoon2";
"بعد الظهر",
"evening1";
"مساءً",
"night1";
"منتصف الليل",
"night2";
"ليلاً";
}
}
}
"eras";
{
"eraNames";
{
"0";
"قبل الميلاد",
"0-alt-variant";
"BCE",
"1";
"ميلادي",
"1-alt-variant";
"بعد الميلاد";
}
"eraAbbr";
{
"0";
"ق.م",
"0-alt-variant";
"BCE",
"1";
"م",
"1-alt-variant";
"ب.م";
}
"eraNarrow";
{
"0";
"ق.م",
"0-alt-variant";
"BCE",
"1";
"م",
"1-alt-variant";
"ب.م";
}
}
"dateFormats";
{
"full";
"EEEE، d MMMM، y",
"long";
"d MMMM، y",
"medium";
"dd/MM/y",
"short";
"d/M/y";
}
"timeFormats";
{
"full";
"h:mm:ss a zzzz",
"long";
"h:mm:ss a z",
"medium";
"h:mm:ss a",
"short";
"h:mm a";
}
"dateTimeFormats";
{
"full";
"{1} {0}",
"long";
"{1} {0}",
"medium";
"{1} {0}",
"short";
"{1} {0}",
"availableFormats";
{
"d";
"d",
"E";
"ccc",
"Ed";
"E، d",
"Ehm";
"E h:mm a",
"EHm";
"E HH:mm",
"Ehms";
"E h:mm:ss a",
"EHms";
"E HH:mm:ss",
"Gy";
"y G",
"GyMMM";
"MMM y G",
"GyMMMd";
"d MMM، y G",
"GyMMMEd";
"E، d MMM، y G",
"h";
"h a",
"H";
"HH",
"hm";
"h:mm a",
"Hm";
"HH:mm",
"hms";
"h:mm:ss a",
"Hms";
"HH:mm:ss",
"hmsv";
"h:mm:ss a v",
"Hmsv";
"HH:mm:ss v",
"hmv";
"h:mm a v",
"Hmv";
"HH:mm v",
"M";
"L",
"Md";
"d/M",
"MEd";
"E، d/M",
"MMdd";
"dd/MM",
"MMM";
"LLL",
"MMMd";
"d MMM",
"MMMEd";
"E، d MMM",
"MMMMd";
"d MMMM",
"MMMMEd";
"E، d MMMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"MMMMW";
"الأسبوع W من MMM",
"ms";
"mm:ss",
"y";
"y",
"yM";
"M/y",
"yMd";
"d/M/y",
"yMEd";
"E، d/M/y",
"yMM";
"MM/y",
"yMMM";
"MMM y",
"yMMMd";
"d MMM، y",
"yMMMEd";
"E، d MMM، y",
"yMMMM";
"MMMM y",
"yQQQ";
"QQQ y",
"yQQQQ";
"QQQQ y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y",
"yw";
"الأسبوع w من سنة y";
}
"appendItems";
{
"Day";
"{0} ({2}: {1})",
"Day-Of-Week";
"{0} {1}",
"Era";
"{1} {0}",
"Hour";
"{0} ({2}: {1})",
"Minute";
"{0} ({2}: {1})",
"Month";
"{0} ({2}: {1})",
"Quarter";
"{0} ({2}: {1})",
"Second";
"{0} ({2}: {1})",
"Timezone";
"{0} {1}",
"Week";
"{0} ({2}: {1})",
"Year";
"{1} {0}";
}
"intervalFormats";
{
"intervalFormatFallback";
"{0} – {1}",
"d";
{
"d";
"d–d";
}
"h";
{
"a";
"h a – h a",
"h";
"h–h a";
}
"H";
{
"H";
"HH–HH";
}
"hm";
{
"a";
"h:mm a – h:mm a",
"h";
"h:mm–h:mm a",
"m";
"h:mm–h:mm a";
}
"Hm";
{
"H";
"HH:mm–HH:mm",
"m";
"HH:mm–HH:mm";
}
"hmv";
{
"a";
"h:mm a – h:mm a v",
"h";
"h:mm–h:mm a v",
"m";
"h:mm–h:mm a v";
}
"Hmv";
{
"H";
"HH:mm–HH:mm v",
"m";
"HH:mm–HH:mm v";
}
"hv";
{
"a";
"h a – h a v",
"h";
"h–h a v";
}
"Hv";
{
"H";
"HH–HH v";
}
"M";
{
"M";
"M–M";
}
"Md";
{
"d";
"M/d – M/d",
"M";
"M/d – M/d";
}
"MEd";
{
"d";
"E، d/M – E، d/M",
"M";
"E، d/M – E، d/M";
}
"MMM";
{
"M";
"MMM–MMM";
}
"MMMd";
{
"d";
"d–d MMM",
"M";
"d MMM – d MMM";
}
"MMMEd";
{
"d";
"E، d – E، d MMM",
"M";
"E، d MMM – E، d MMM";
}
"MMMM";
{
"M";
"LLLL–LLLL";
}
"y";
{
"y";
"y–y";
}
"yM";
{
"M";
"M/y – M/y",
"y";
"M/y – M/y";
}
"yMd";
{
"d";
"d/M/y – d/M/y",
"M";
"d/M/y – d/M/y",
"y";
"d/M/y – d/M/y";
}
"yMEd";
{
"d";
"E، dd/MM/y – E، dd/MM/y",
"M";
"E، d/M/y – E، d/M/y",
"y";
"E، d/M/y – E، d/M/y";
}
"yMMM";
{
"M";
"MMM – MMM، y",
"y";
"MMM، y – MMM، y";
}
"yMMMd";
{
"d";
"d–d MMM، y",
"M";
"d MMM – d MMM، y",
"y";
"d MMM، y – d MMM، y";
}
"yMMMEd";
{
"d";
"E، d – E، d MMM، y",
"M";
"E، d MMM – E، d MMM، y",
"y";
"E، d MMM، y – E، d MMM، y";
}
"yMMMM";
{
"M";
"MMMM – MMMM، y",
"y";
"MMMM، y – MMMM، y";
}
}
}
}
}
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"numbers": {
"currencies": {
"ADP": {
"displayName": "بيستا أندوري",
"symbol": "ADP"
},
"AED": {
"displayName": "درهم إماراتي",
"displayName-count-zero": "درهم إماراتي",
"displayName-count-one": "درهم إماراتي",
"displayName-count-two": "درهم إماراتي",
"displayName-count-few": "درهم إماراتي",
"displayName-count-many": "درهم إماراتي",
"displayName-count-other": "درهم إماراتي",
"symbol": "د.إ."
},
"AFA": {
"displayName": "أفغاني - 1927-2002",
"symbol": "AFA"
},
"AFN": {
"displayName": "أفغاني",
"displayName-count-zero": "أفغاني أفغانستاني",
"displayName-count-one": "أفغاني أفغانستاني",
"displayName-count-two": "أفغاني أفغانستاني",
"displayName-count-few": "أفغاني أفغانستاني",
"displayName-count-many": "أفغاني أفغانستاني",
"displayName-count-other": "أفغاني أفغانستاني",
"symbol": "AFN"
},
"ALL": {
"displayName": "ليك ألباني",
"displayName-count-zero": "ليك ألباني",
"displayName-count-one": "ليك ألباني",
"displayName-count-two": "ليك ألباني",
"displayName-count-few": "ليك ألباني",
"displayName-count-many": "ليك ألباني",
"displayName-count-other": "ليك ألباني",
"symbol": "ALL"
},
"AMD": {
"displayName": "درام أرميني",
"displayName-count-zero": "درام أرميني",
"displayName-count-one": "درام أرميني",
"displayName-count-two": "درام أرميني",
"displayName-count-few": "درام أرميني",
"displayName-count-many": "درام أرميني",
"displayName-count-other": "درام أرميني",
"symbol": "AMD"
},
"ANG": {
"displayName": "غيلدر أنتيلي هولندي",
"displayName-count-zero": "غيلدر أنتيلي هولندي",
"displayName-count-one": "غيلدر أنتيلي هولندي",
"displayName-count-two": "غيلدر أنتيلي هولندي",
"displayName-count-few": "غيلدر أنتيلي هولندي",
"displayName-count-many": "غيلدر أنتيلي هولندي",
"displayName-count-other": "غيلدر أنتيلي هولندي",
"symbol": "ANG"
},
"AOA": {
"displayName": "كوانزا أنجولي",
"displayName-count-zero": "كوانزا أنجولي",
"displayName-count-one": "كوانزا أنجولي",
"displayName-count-two": "كوانزا أنجولي",
"displayName-count-few": "كوانزا أنجولي",
"displayName-count-many": "كوانزا أنجولي",
"displayName-count-other": "كوانزا أنجولي",
"symbol": "AOA",
"symbol-alt-narrow": "Kz"
},
"AOK": {
"displayName": "كوانزا أنجولي - 1977-1990",
"symbol": "AOK"
},
"AON": {
"displayName": "كوانزا أنجولي جديدة - 1990-2000",
"symbol": "AON"
},
"AOR": {
"displayName": "كوانزا أنجولي معدلة - 1995 - 1999",
"symbol": "AOR"
},
"ARA": {
"displayName": "استرال أرجنتيني",
"symbol": "ARA"
},
"ARL": {
"displayName": "ARL",
"symbol": "ARL"
},
"ARM": {
"displayName": "ARM",
"symbol": "ARM"
},
"ARP": {
"displayName": "بيزو أرجنتيني - 1983-1985",
"symbol": "ARP"
},
"ARS": {
"displayName": "بيزو أرجنتيني",
"displayName-count-zero": "بيزو أرجنتيني",
"displayName-count-one": "بيزو أرجنتيني",
"displayName-count-two": "بيزو أرجنتيني",
"displayName-count-few": "بيزو أرجنتيني",
"displayName-count-many": "بيزو أرجنتيني",
"displayName-count-other": "بيزو أرجنتيني",
"symbol": "ARS",
"symbol-alt-narrow": "AR$"
},
"ATS": {
"displayName": "شلن نمساوي",
"symbol": "ATS"
},
"AUD": {
"displayName": "دولار أسترالي",
"displayName-count-zero": "دولار أسترالي",
"displayName-count-one": "دولار أسترالي",
"displayName-count-two": "دولار أسترالي",
"displayName-count-few": "دولار أسترالي",
"displayName-count-many": "دولار أسترالي",
"displayName-count-other": "دولار أسترالي",
"symbol": "AU$",
"symbol-alt-narrow": "AU$"
},
"AWG": {
"displayName": "فلورن أروبي",
"displayName-count-zero": "فلورن أروبي",
"displayName-count-one": "فلورن أروبي",
"displayName-count-two": "فلورن أروبي",
"displayName-count-few": "فلورن أروبي",
"displayName-count-many": "فلورن أروبي",
"displayName-count-other": "فلورن أروبي",
"symbol": "AWG"
},
"AZM": {
"displayName": "مانات أذريبجاني",
"symbol": "AZM"
},
"AZN": {
"displayName": "مانات أذربيجان",
"displayName-count-zero": "مانت أذربيجاني",
"displayName-count-one": "مانت أذربيجاني",
"displayName-count-two": "مانت أذربيجاني",
"displayName-count-few": "مانت أذربيجاني",
"displayName-count-many": "مانت أذربيجاني",
"displayName-count-other": "مانت أذربيجاني",
"symbol": "AZN"
},
"BAD": {
"displayName": "دينار البوسنة والهرسك",
"symbol": "BAD"
},
"BAM": {
"displayName": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-zero": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-one": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-two": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-few": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-many": "مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-other": "مارك البوسنة والهرسك قابل للتحويل",
"symbol": "BAM",
"symbol-alt-narrow": "KM"
},
"BAN": {
"displayName": "BAN",
"symbol": "BAN"
},
"BBD": {
"displayName": "دولار بربادوسي",
"displayName-count-zero": "دولار بربادوسي",
"displayName-count-one": "دولار بربادوسي",
"displayName-count-two": "دولار بربادوسي",
"displayName-count-few": "دولار بربادوسي",
"displayName-count-many": "دولار بربادوسي",
"displayName-count-other": "دولار بربادوسي",
"symbol": "BBD",
"symbol-alt-narrow": "BB$"
},
"BDT": {
"displayName": "تاكا بنجلاديشي",
"displayName-count-zero": "تاكا بنجلاديشي",
"displayName-count-one": "تاكا بنجلاديشي",
"displayName-count-two": "تاكا بنجلاديشي",
"displayName-count-few": "تاكا بنجلاديشي",
"displayName-count-many": "تاكا بنجلاديشي",
"displayName-count-other": "تاكا بنجلاديشي",
"symbol": "BDT",
"symbol-alt-narrow": "৳"
},
"BEC": {
"displayName": "فرنك بلجيكي قابل للتحويل",
"symbol": "BEC"
},
"BEF": {
"displayName": "فرنك بلجيكي",
"symbol": "BEF"
},
"BEL": {
"displayName": "فرنك بلجيكي مالي",
"symbol": "BEL"
},
"BGL": {
"displayName": "BGL",
"symbol": "BGL"
},
"BGM": {
"displayName": "BGM",
"symbol": "BGM"
},
"BGN": {
"displayName": "ليف بلغاري",
"displayName-count-zero": "ليف بلغاري",
"displayName-count-one": "ليف بلغاري",
"displayName-count-two": "ليف بلغاري",
"displayName-count-few": "ليف بلغاري",
"displayName-count-many": "ليف بلغاري",
"displayName-count-other": "ليف بلغاري",
"symbol": "BGN"
},
"BGO": {
"displayName": "BGO",
"symbol": "BGO"
},
"BHD": {
"displayName": "دينار بحريني",
"displayName-count-zero": "دينار بحريني",
"displayName-count-one": "دينار بحريني",
"displayName-count-two": "دينار بحريني",
"displayName-count-few": "دينار بحريني",
"displayName-count-many": "دينار بحريني",
"displayName-count-other": "دينار بحريني",
"symbol": "د.ب."
},
"BIF": {
"displayName": "فرنك بروندي",
"displayName-count-zero": "فرنك بروندي",
"displayName-count-one": "فرنك بروندي",
"displayName-count-two": "فرنك بروندي",
"displayName-count-few": "فرنك بروندي",
"displayName-count-many": "فرنك بروندي",
"displayName-count-other": "فرنك بروندي",
"symbol": "BIF"
},
"BMD": {
"displayName": "دولار برمودي",
"displayName-count-zero": "دولار برمودي",
"displayName-count-one": "دولار برمودي",
"displayName-count-two": "دولار برمودي",
"displayName-count-few": "دولار برمودي",
"displayName-count-many": "دولار برمودي",
"displayName-count-other": "دولار برمودي",
"symbol": "BMD",
"symbol-alt-narrow": "BM$"
},
"BND": {
"displayName": "دولار بروناي",
"displayName-count-zero": "دولار بروناي",
"displayName-count-one": "دولار بروناي",
"displayName-count-two": "دولار بروناي",
"displayName-count-few": "دولار بروناي",
"displayName-count-many": "دولار بروناي",
"displayName-count-other": "دولار بروناي",
"symbol": "BND",
"symbol-alt-narrow": "BN$"
},
"BOB": {
"displayName": "بوليفيانو بوليفي",
"displayName-count-zero": "بوليفيانو بوليفي",
"displayName-count-one": "بوليفيانو بوليفي",
"displayName-count-two": "بوليفيانو بوليفي",
"displayName-count-few": "بوليفيانو بوليفي",
"displayName-count-many": "بوليفيانو بوليفي",
"displayName-count-other": "بوليفيانو بوليفي",
"symbol": "BOB",
"symbol-alt-narrow": "Bs"
},
"BOL": {
"displayName": "BOL",
"symbol": "BOL"
},
"BOP": {
"displayName": "بيزو بوليفي",
"symbol": "BOP"
},
"BOV": {
"displayName": "مفدول بوليفي",
"symbol": "BOV"
},
"BRB": {
"displayName": "نوفو كروزايرو برازيلي - 1967-1986",
"symbol": "BRB"
},
"BRC": {
"displayName": "كروزادو برازيلي",
"symbol": "BRC"
},
"BRE": {
"displayName": "كروزايرو برازيلي - 1990-1993",
"symbol": "BRE"
},
"BRL": {
"displayName": "ريال برازيلي",
"displayName-count-zero": "ريال برازيلي",
"displayName-count-one": "ريال برازيلي",
"displayName-count-two": "ريال برازيلي",
"displayName-count-few": "ريال برازيلي",
"displayName-count-many": "ريال برازيلي",
"displayName-count-other": "ريال برازيلي",
"symbol": "R$",
"symbol-alt-narrow": "R$"
},
"BRN": {
"displayName": "BRN",
"symbol": "BRN"
},
"BRR": {
"displayName": "BRR",
"symbol": "BRR"
},
"BRZ": {
"displayName": "BRZ",
"symbol": "BRZ"
},
"BSD": {
"displayName": "دولار باهامي",
"displayName-count-zero": "دولار باهامي",
"displayName-count-one": "دولار باهامي",
"displayName-count-two": "دولار باهامي",
"displayName-count-few": "دولار باهامي",
"displayName-count-many": "دولار باهامي",
"displayName-count-other": "دولار باهامي",
"symbol": "BSD",
"symbol-alt-narrow": "BS$"
},
"BTN": {
"displayName": "نولتوم بوتاني",
"displayName-count-zero": "نولتوم بوتاني",
"displayName-count-one": "نولتوم بوتاني",
"displayName-count-two": "نولتوم بوتاني",
"displayName-count-few": "نولتوم بوتاني",
"displayName-count-many": "نولتوم بوتاني",
"displayName-count-other": "نولتوم بوتاني",
"symbol": "BTN"
},
"BUK": {
"displayName": "كيات بورمي",
"symbol": "BUK"
},
"BWP": {
"displayName": "بولا بتسواني",
"displayName-count-zero": "بولا بتسواني",
"displayName-count-one": "بولا بتسواني",
"displayName-count-two": "بولا بتسواني",
"displayName-count-few": "بولا بتسواني",
"displayName-count-many": "بولا بتسواني",
"displayName-count-other": "بولا بتسواني",
"symbol": "BWP",
"symbol-alt-narrow": "P"
},
"BYB": {
"displayName": "روبل بيلاروسي جديد - 1994-1999",
"symbol": "BYB"
},
"BYN": {
"displayName": "روبل بيلاروسي",
"displayName-count-zero": "روبل بيلاروسي",
"displayName-count-one": "روبل بيلاروسي",
"displayName-count-two": "روبل بيلاروسي",
"displayName-count-few": "روبل بيلاروسي",
"displayName-count-many": "روبل بيلاروسي",
"displayName-count-other": "روبل بيلاروسي",
"symbol": "BYN",
"symbol-alt-narrow": "р."
},
"BYR": {
"displayName": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-zero": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-one": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-two": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-few": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-many": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-other": "روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"symbol": "BYR"
},
"BZD": {
"displayName": "دولار بليزي",
"displayName-count-zero": "دولار بليزي",
"displayName-count-one": "دولار بليزي",
"displayName-count-two": "دولاران بليزيان",
"displayName-count-few": "دولار بليزي",
"displayName-count-many": "دولار بليزي",
"displayName-count-other": "دولار بليزي",
"symbol": "BZD",
"symbol-alt-narrow": "BZ$"
},
"CAD": {
"displayName": "دولار كندي",
"displayName-count-zero": "دولار كندي",
"displayName-count-one": "دولار كندي",
"displayName-count-two": "دولار كندي",
"displayName-count-few": "دولار كندي",
"displayName-count-many": "دولار كندي",
"displayName-count-other": "دولار كندي",
"symbol": "CA$",
"symbol-alt-narrow": "CA$"
},
"CDF": {
"displayName": "فرنك كونغولي",
"displayName-count-zero": "فرنك كونغولي",
"displayName-count-one": "فرنك كونغولي",
"displayName-count-two": "فرنك كونغولي",
"displayName-count-few": "فرنك كونغولي",
"displayName-count-many": "فرنك كونغولي",
"displayName-count-other": "فرنك كونغولي",
"symbol": "CDF"
},
"CHE": {
"displayName": "CHE",
"symbol": "CHE"
},
"CHF": {
"displayName": "فرنك سويسري",
"displayName-count-zero": "فرنك سويسري",
"displayName-count-one": "فرنك سويسري",
"displayName-count-two": "فرنك سويسري",
"displayName-count-few": "فرنك سويسري",
"displayName-count-many": "فرنك سويسري",
"displayName-count-other": "فرنك سويسري",
"symbol": "CHF"
},
"CHW": {
"displayName": "CHW",
"symbol": "CHW"
},
"CLE": {
"displayName": "CLE",
"symbol": "CLE"
},
"CLF": {
"displayName": "CLF",
"symbol": "CLF"
},
"CLP": {
"displayName": "بيزو شيلي",
"displayName-count-zero": "بيزو شيلي",
"displayName-count-one": "بيزو شيلي",
"displayName-count-two": "بيزو شيلي",
"displayName-count-few": "بيزو شيلي",
"displayName-count-many": "بيزو شيلي",
"displayName-count-other": "بيزو شيلي",
"symbol": "CLP",
"symbol-alt-narrow": "CL$"
},
"CNY": {
"displayName": "يوان صيني",
"displayName-count-zero": "يوان صيني",
"displayName-count-one": "يوان صيني",
"displayName-count-two": "يوان صيني",
"displayName-count-few": "يوان صيني",
"displayName-count-many": "يوان صيني",
"displayName-count-other": "يوان صيني",
"symbol": "CN¥",
"symbol-alt-narrow": "CN¥"
},
"COP": {
"displayName": "بيزو كولومبي",
"displayName-count-zero": "بيزو كولومبي",
"displayName-count-one": "بيزو كولومبي",
"displayName-count-two": "بيزو كولومبي",
"displayName-count-few": "بيزو كولومبي",
"displayName-count-many": "بيزو كولومبي",
"displayName-count-other": "بيزو كولومبي",
"symbol": "COP",
"symbol-alt-narrow": "CO$"
},
"COU": {
"displayName": "COU",
"symbol": "COU"
},
"CRC": {
"displayName": "كولن كوستا ريكي",
"displayName-count-zero": "كولن كوستا ريكي",
"displayName-count-one": "كولن كوستا ريكي",
"displayName-count-two": "كولن كوستا ريكي",
"displayName-count-few": "كولن كوستا ريكي",
"displayName-count-many": "كولن كوستا ريكي",
"displayName-count-other": "كولن كوستا ريكي",
"symbol": "CRC",
"symbol-alt-narrow": "₡"
},
"CSD": {
"displayName": "دينار صربي قديم",
"symbol": "CSD"
},
"CSK": {
"displayName": "كرونة تشيكوسلوفاكيا",
"symbol": "CSK"
},
"CUC": {
"displayName": "بيزو كوبي قابل للتحويل",
"displayName-count-zero": "بيزو كوبي قابل للتحويل",
"displayName-count-one": "بيزو كوبي قابل للتحويل",
"displayName-count-two": "بيزو كوبي قابل للتحويل",
"displayName-count-few": "بيزو كوبي قابل للتحويل",
"displayName-count-many": "بيزو كوبي قابل للتحويل",
"displayName-count-other": "بيزو كوبي قابل للتحويل",
"symbol": "CUC",
"symbol-alt-narrow": "$"
},
"CUP": {
"displayName": "بيزو كوبي",
"displayName-count-zero": "بيزو كوبي",
"displayName-count-one": "بيزو كوبي",
"displayName-count-two": "بيزو كوبي",
"displayName-count-few": "بيزو كوبي",
"displayName-count-many": "بيزو كوبي",
"displayName-count-other": "بيزو كوبي",
"symbol": "CUP",
"symbol-alt-narrow": "CU$"
},
"CVE": {
"displayName": "اسكودو الرأس الخضراء",
"displayName-count-zero": "اسكودو الرأس الخضراء",
"displayName-count-one": "اسكودو الرأس الخضراء",
"displayName-count-two": "اسكودو الرأس الخضراء",
"displayName-count-few": "اسكودو الرأس الخضراء",
"displayName-count-many": "اسكودو الرأس الخضراء",
"displayName-count-other": "اسكودو الرأس الخضراء",
"symbol": "CVE"
},
"CYP": {
"displayName": "جنيه قبرصي",
"symbol": "CYP"
},
"CZK": {
"displayName": "كرونة تشيكية",
"displayName-count-zero": "كرونة تشيكية",
"displayName-count-one": "كرونة تشيكية",
"displayName-count-two": "كرونة تشيكية",
"displayName-count-few": "كرونة تشيكية",
"displayName-count-many": "كرونة تشيكية",
"displayName-count-other": "كرونة تشيكية",
"symbol": "CZK",
"symbol-alt-narrow": "Kč"
},
"DDM": {
"displayName": "أوستمارك ألماني شرقي",
"symbol": "DDM"
},
"DEM": {
"displayName": "مارك ألماني",
"symbol": "DEM"
},
"DJF": {
"displayName": "فرنك جيبوتي",
"displayName-count-zero": "فرنك جيبوتي",
"displayName-count-one": "فرنك جيبوتي",
"displayName-count-two": "فرنك جيبوتي",
"displayName-count-few": "فرنك جيبوتي",
"displayName-count-many": "فرنك جيبوتي",
"displayName-count-other": "فرنك جيبوتي",
"symbol": "DJF"
},
"DKK": {
"displayName": "كرونة دانماركي",
"displayName-count-zero": "كرونة دانماركي",
"displayName-count-one": "كرونة دانماركي",
"displayName-count-two": "كرونة دانماركي",
"displayName-count-few": "كرونة دانماركي",
"displayName-count-many": "كرونة دانماركي",
"displayName-count-other": "كرونة دانماركي",
"symbol": "DKK",
"symbol-alt-narrow": "kr"
},
"DOP": {
"displayName": "بيزو الدومنيكان",
"displayName-count-zero": "بيزو الدومنيكان",
"displayName-count-one": "بيزو الدومنيكان",
"displayName-count-two": "بيزو الدومنيكان",
"displayName-count-few": "بيزو الدومنيكان",
"displayName-count-many": "بيزو الدومنيكان",
"displayName-count-other": "بيزو الدومنيكان",
"symbol": "DOP",
"symbol-alt-narrow": "DO$"
},
"DZD": {
"displayName": "دينار جزائري",
"displayName-count-zero": "دينار جزائري",
"displayName-count-one": "دينار جزائري",
"displayName-count-two": "ديناران جزائريان",
"displayName-count-few": "دينارات جزائرية",
"displayName-count-many": "دينارًا جزائريًا",
"displayName-count-other": "دينار جزائري",
"symbol": "د.ج."
},
"ECS": {
"displayName": "ECS",
"symbol": "ECS"
},
"ECV": {
"displayName": "ECV",
"symbol": "ECV"
},
"EEK": {
"displayName": "كرونة استونية",
"symbol": "EEK"
},
"EGP": {
"displayName": "جنيه مصري",
"displayName-count-zero": "جنيه مصري",
"displayName-count-one": "جنيه مصري",
"displayName-count-two": "جنيهان مصريان",
"displayName-count-few": "جنيهات مصرية",
"displayName-count-many": "جنيهًا مصريًا",
"displayName-count-other": "جنيه مصري",
"symbol": "ج.م.",
"symbol-alt-narrow": "E£"
},
"ERN": {
"displayName": "ناكفا أريتري",
"displayName-count-zero": "ناكفا أريتري",
"displayName-count-one": "ناكفا أريتري",
"displayName-count-two": "ناكفا أريتري",
"displayName-count-few": "ناكفا أريتري",
"displayName-count-many": "ناكفا أريتري",
"displayName-count-other": "ناكفا أريتري",
"symbol": "ERN"
},
"ESA": {
"displayName": "ESA",
"symbol": "ESA"
},
"ESB": {
"displayName": "ESB",
"symbol": "ESB"
},
"ESP": {
"displayName": "بيزيتا إسباني",
"symbol": "ESP",
"symbol-alt-narrow": "₧"
},
"ETB": {
"displayName": "بير أثيوبي",
"displayName-count-zero": "بير أثيوبي",
"displayName-count-one": "بير أثيوبي",
"displayName-count-two": "بير أثيوبي",
"displayName-count-few": "بير أثيوبي",
"displayName-count-many": "بير أثيوبي",
"displayName-count-other": "بير أثيوبي",
"symbol": "ETB"
},
"EUR": {
"displayName": "يورو",
"displayName-count-zero": "يورو",
"displayName-count-one": "يورو",
"displayName-count-two": "يورو",
"displayName-count-few": "يورو",
"displayName-count-many": "يورو",
"displayName-count-other": "يورو",
"symbol": "€",
"symbol-alt-narrow": "€"
},
"FIM": {
"displayName": "ماركا فنلندي",
"symbol": "FIM"
},
"FJD": {
"displayName": "دولار فيجي",
"displayName-count-zero": "دولار فيجي",
"displayName-count-one": "دولار فيجي",
"displayName-count-two": "دولار فيجي",
"displayName-count-few": "دولار فيجي",
"displayName-count-many": "دولار فيجي",
"displayName-count-other": "دولار فيجي",
"symbol": "FJD",
"symbol-alt-narrow": "FJ$"
},
"FKP": {
"displayName": "جنيه جزر فوكلاند",
"displayName-count-zero": "جنيه جزر فوكلاند",
"displayName-count-one": "جنيه جزر فوكلاند",
"displayName-count-two": "جنيه جزر فوكلاند",
"displayName-count-few": "جنيه جزر فوكلاند",
"displayName-count-many": "جنيه جزر فوكلاند",
"displayName-count-other": "جنيه جزر فوكلاند",
"symbol": "FKP",
"symbol-alt-narrow": "£"
},
"FRF": {
"displayName": "فرنك فرنسي",
"symbol": "FRF"
},
"GBP": {
"displayName": "جنيه إسترليني",
"displayName-count-zero": "جنيه إسترليني",
"displayName-count-one": "جنيه إسترليني",
"displayName-count-two": "جنيه إسترليني",
"displayName-count-few": "جنيه إسترليني",
"displayName-count-many": "جنيه إسترليني",
"displayName-count-other": "جنيه إسترليني",
"symbol": "£",
"symbol-alt-narrow": "UK£"
},
"GEK": {
"displayName": "GEK",
"symbol": "GEK"
},
"GEL": {
"displayName": "لارى جورجي",
"displayName-count-zero": "لاري جورجي",
"displayName-count-one": "لاري جورجي",
"displayName-count-two": "لاري جورجي",
"displayName-count-few": "لاري جورجي",
"displayName-count-many": "لاري جورجي",
"displayName-count-other": "لاري جورجي",
"symbol": "GEL",
"symbol-alt-narrow": "₾",
"symbol-alt-variant": "₾"
},
"GHC": {
"displayName": "سيدي غاني",
"symbol": "GHC"
},
"GHS": {
"displayName": "سيدي غانا",
"displayName-count-zero": "سيدي غانا",
"displayName-count-one": "سيدي غانا",
"displayName-count-two": "سيدي غانا",
"displayName-count-few": "سيدي غانا",
"displayName-count-many": "سيدي غانا",
"displayName-count-other": "سيدي غانا",
"symbol": "GHS"
},
"GIP": {
"displayName": "جنيه جبل طارق",
"displayName-count-zero": "جنيه جبل طارق",
"displayName-count-one": "جنيه جبل طارق",
"displayName-count-two": "جنيه جبل طارق",
"displayName-count-few": "جنيه جبل طارق",
"displayName-count-many": "جنيه جبل طارق",
"displayName-count-other": "جنيه جبل طارق",
"symbol": "GIP",
"symbol-alt-narrow": "£"
},
"GMD": {
"displayName": "دلاسي جامبي",
"displayName-count-zero": "دلاسي جامبي",
"displayName-count-one": "دلاسي جامبي",
"displayName-count-two": "دلاسي جامبي",
"displayName-count-few": "دلاسي جامبي",
"displayName-count-many": "دلاسي جامبي",
"displayName-count-other": "دلاسي جامبي",
"symbol": "GMD"
},
"GNF": {
"displayName": "فرنك غينيا",
"displayName-count-zero": "فرنك غينيا",
"displayName-count-one": "فرنك غينيا",
"displayName-count-two": "فرنك غينيا",
"displayName-count-few": "فرنك غينيا",
"displayName-count-many": "فرنك غينيا",
"displayName-count-other": "فرنك غينيا",
"symbol": "GNF",
"symbol-alt-narrow": "FG"
},
"GNS": {
"displayName": "سيلي غينيا",
"symbol": "GNS"
},
"GQE": {
"displayName": "اكويل جونينا غينيا الاستوائيّة",
"symbol": "GQE"
},
"GRD": {
"displayName": "دراخما يوناني",
"symbol": "GRD"
},
"GTQ": {
"displayName": "كوتزال جواتيمالا",
"displayName-count-zero": "كوتزال جواتيمالا",
"displayName-count-one": "كوتزال جواتيمالا",
"displayName-count-two": "كوتزال جواتيمالا",
"displayName-count-few": "كوتزال جواتيمالا",
"displayName-count-many": "كوتزال جواتيمالا",
"displayName-count-other": "كوتزال جواتيمالا",
"symbol": "GTQ",
"symbol-alt-narrow": "Q"
},
"GWE": {
"displayName": "اسكود برتغالي غينيا",
"symbol": "GWE"
},
"GWP": {
"displayName": "بيزو غينيا بيساو",
"symbol": "GWP"
},
"GYD": {
"displayName": "دولار غيانا",
"displayName-count-zero": "دولار غيانا",
"displayName-count-one": "دولار غيانا",
"displayName-count-two": "دولار غيانا",
"displayName-count-few": "دولار غيانا",
"displayName-count-many": "دولار غيانا",
"displayName-count-other": "دولار غيانا",
"symbol": "GYD",
"symbol-alt-narrow": "GY$"
},
"HKD": {
"displayName": "دولار هونغ كونغ",
"displayName-count-zero": "دولار هونغ كونغ",
"displayName-count-one": "دولار هونغ كونغ",
"displayName-count-two": "دولار هونغ كونغ",
"displayName-count-few": "دولار هونغ كونغ",
"displayName-count-many": "دولار هونغ كونغ",
"displayName-count-other": "دولار هونغ كونغ",
"symbol": "HK$",
"symbol-alt-narrow": "HK$"
},
"HNL": {
"displayName": "ليمبيرا هنداروس",
"displayName-count-zero": "ليمبيرا هندوراس",
"displayName-count-one": "ليمبيرا هندوراس",
"displayName-count-two": "ليمبيرا هندوراس",
"displayName-count-few": "ليمبيرا هندوراس",
"displayName-count-many": "ليمبيرا هندوراس",
"displayName-count-other": "ليمبيرا هندوراس",
"symbol": "HNL",
"symbol-alt-narrow": "L"
},
"HRD": {
"displayName": "دينار كرواتي",
"symbol": "HRD"
},
"HRK": {
"displayName": "كونا كرواتي",
"displayName-count-zero": "كونا كرواتي",
"displayName-count-one": "كونا كرواتي",
"displayName-count-two": "كونا كرواتي",
"displayName-count-few": "كونا كرواتي",
"displayName-count-many": "كونا كرواتي",
"displayName-count-other": "كونا كرواتي",
"symbol": "HRK",
"symbol-alt-narrow": "kn"
},
"HTG": {
"displayName": "جوردى هايتي",
"displayName-count-zero": "جوردى هايتي",
"displayName-count-one": "جوردى هايتي",
"displayName-count-two": "جوردى هايتي",
"displayName-count-few": "جوردى هايتي",
"displayName-count-many": "جوردى هايتي",
"displayName-count-other": "جوردى هايتي",
"symbol": "HTG"
},
"HUF": {
"displayName": "فورينت مجري",
"displayName-count-zero": "فورينت مجري",
"displayName-count-one": "فورينت مجري",
"displayName-count-two": "فورينت مجري",
"displayName-count-few": "فورينت مجري",
"displayName-count-many": "فورينت مجري",
"displayName-count-other": "فورينت مجري",
"symbol": "HUF",
"symbol-alt-narrow": "Ft"
},
"IDR": {
"displayName": "روبية إندونيسية",
"displayName-count-zero": "روبية إندونيسية",
"displayName-count-one": "روبية إندونيسية",
"displayName-count-two": "روبية إندونيسية",
"displayName-count-few": "روبية إندونيسية",
"displayName-count-many": "روبية إندونيسية",
"displayName-count-other": "روبية إندونيسية",
"symbol": "IDR",
"symbol-alt-narrow": "Rp"
},
"IEP": {
"displayName": "جنيه إيرلندي",
"symbol": "IEP"
},
"ILP": {
"displayName": "جنيه إسرائيلي",
"symbol": "ILP"
},
"ILS": {
"displayName": "شيكل إسرائيلي جديد",
"displayName-count-zero": "شيكل إسرائيلي جديد",
"displayName-count-one": "شيكل إسرائيلي جديد",
"displayName-count-two": "شيكل إسرائيلي جديد",
"displayName-count-few": "شيكل إسرائيلي جديد",
"displayName-count-many": "شيكل إسرائيلي جديد",
"displayName-count-other": "شيكل إسرائيلي جديد",
"symbol": "₪",
"symbol-alt-narrow": "₪"
},
"INR": {
"displayName": "روبية هندي",
"displayName-count-zero": "روبية هندي",
"displayName-count-one": "روبية هندي",
"displayName-count-two": "روبية هندي",
"displayName-count-few": "روبية هندي",
"displayName-count-many": "روبية هندي",
"displayName-count-other": "روبية هندي",
"symbol": "₹",
"symbol-alt-narrow": "₹"
},
"IQD": {
"displayName": "دينار عراقي",
"displayName-count-zero": "دينار عراقي",
"displayName-count-one": "دينار عراقي",
"displayName-count-two": "دينار عراقي",
"displayName-count-few": "دينار عراقي",
"displayName-count-many": "دينار عراقي",
"displayName-count-other": "دينار عراقي",
"symbol": "د.ع."
},
"IRR": {
"displayName": "ريال إيراني",
"displayName-count-zero": "ريال إيراني",
"displayName-count-one": "ريال إيراني",
"displayName-count-two": "ريال إيراني",
"displayName-count-few": "ريال إيراني",
"displayName-count-many": "ريال إيراني",
"displayName-count-other": "ريال إيراني",
"symbol": "ر.إ."
},
"ISK": {
"displayName": "كرونه أيسلندي",
"displayName-count-zero": "كرونه أيسلندي",
"displayName-count-one": "كرونه أيسلندي",
"displayName-count-two": "كرونه أيسلندي",
"displayName-count-few": "كرونه أيسلندي",
"displayName-count-many": "كرونه أيسلندي",
"displayName-count-other": "كرونه أيسلندي",
"symbol": "ISK",
"symbol-alt-narrow": "kr"
},
"ITL": {
"displayName": "ليرة إيطالية",
"symbol": "ITL"
},
"JMD": {
"displayName": "دولار جامايكي",
"displayName-count-zero": "دولار جامايكي",
"displayName-count-one": "دولار جامايكي",
"displayName-count-two": "دولار جامايكي",
"displayName-count-few": "دولار جامايكي",
"displayName-count-many": "دولار جامايكي",
"displayName-count-other": "دولار جامايكي",
"symbol": "JMD",
"symbol-alt-narrow": "JM$"
},
"JOD": {
"displayName": "دينار أردني",
"displayName-count-zero": "دينار أردني",
"displayName-count-one": "دينار أردني",
"displayName-count-two": "دينار أردني",
"displayName-count-few": "دينار أردني",
"displayName-count-many": "دينار أردني",
"displayName-count-other": "دينار أردني",
"symbol": "د.أ."
},
"JPY": {
"displayName": "ين ياباني",
"displayName-count-zero": "ين ياباني",
"displayName-count-one": "ين ياباني",
"displayName-count-two": "ين ياباني",
"displayName-count-few": "ين ياباني",
"displayName-count-many": "ين ياباني",
"displayName-count-other": "ين ياباني",
"symbol": "JP¥",
"symbol-alt-narrow": "JP¥"
},
"KES": {
"displayName": "شلن كينيي",
"displayName-count-zero": "شلن كينيي",
"displayName-count-one": "شلن كينيي",
"displayName-count-two": "شلن كينيي",
"displayName-count-few": "شلن كينيي",
"displayName-count-many": "شلن كينيي",
"displayName-count-other": "شلن كينيي",
"symbol": "KES"
},
"KGS": {
"displayName": "سوم قيرغستاني",
"displayName-count-zero": "سوم قيرغستاني",
"displayName-count-one": "سوم قيرغستاني",
"displayName-count-two": "سوم قيرغستاني",
"displayName-count-few": "سوم قيرغستاني",
"displayName-count-many": "سوم قيرغستاني",
"displayName-count-other": "سوم قيرغستاني",
"symbol": "KGS"
},
"KHR": {
"displayName": "رييال كمبودي",
"displayName-count-zero": "رييال كمبودي",
"displayName-count-one": "رييال كمبودي",
"displayName-count-two": "رييال كمبودي",
"displayName-count-few": "رييال كمبودي",
"displayName-count-many": "رييال كمبودي",
"displayName-count-other": "رييال كمبودي",
"symbol": "KHR",
"symbol-alt-narrow": "៛"
},
"KMF": {
"displayName": "فرنك جزر القمر",
"displayName-count-zero": "فرنك جزر القمر",
"displayName-count-one": "فرنك جزر القمر",
"displayName-count-two": "فرنك جزر القمر",
"displayName-count-few": "فرنك جزر القمر",
"displayName-count-many": "فرنك جزر القمر",
"displayName-count-other": "فرنك جزر القمر",
"symbol": "ف.ج.ق.",
"symbol-alt-narrow": "CF"
},
"KPW": {
"displayName": "وون كوريا الشمالية",
"displayName-count-zero": "وون كوريا الشمالية",
"displayName-count-one": "وون كوريا الشمالية",
"displayName-count-two": "وون كوريا الشمالية",
"displayName-count-few": "وون كوريا الشمالية",
"displayName-count-many": "وون كوريا الشمالية",
"displayName-count-other": "وون كوريا الشمالية",
"symbol": "KPW",
"symbol-alt-narrow": "₩"
},
"KRH": {
"displayName": "KRH",
"symbol": "KRH"
},
"KRO": {
"displayName": "KRO",
"symbol": "KRO"
},
"KRW": {
"displayName": "وون كوريا الجنوبية",
"displayName-count-zero": "وون كوريا الجنوبية",
"displayName-count-one": "وون كوريا الجنوبية",
"displayName-count-two": "وون كوريا الجنوبية",
"displayName-count-few": "وون كوريا الجنوبية",
"displayName-count-many": "وون كوريا الجنوبية",
"displayName-count-other": "وون كوريا الجنوبية",
"symbol": "₩",
"symbol-alt-narrow": "₩"
},
"KWD": {
"displayName": "دينار كويتي",
"displayName-count-zero": "دينار كويتي",
"displayName-count-one": "دينار كويتي",
"displayName-count-two": "دينار كويتي",
"displayName-count-few": "دينار كويتي",
"displayName-count-many": "دينار كويتي",
"displayName-count-other": "دينار كويتي",
"symbol": "د.ك."
},
"KYD": {
"displayName": "دولار جزر كيمن",
"displayName-count-zero": "دولار جزر كيمن",
"displayName-count-one": "دولار جزر كيمن",
"displayName-count-two": "دولار جزر كيمن",
"displayName-count-few": "دولار جزر كيمن",
"displayName-count-many": "دولار جزر كيمن",
"displayName-count-other": "دولار جزر كيمن",
"symbol": "KYD",
"symbol-alt-narrow": "KY$"
},
"KZT": {
"displayName": "تينغ كازاخستاني",
"displayName-count-zero": "تينغ كازاخستاني",
"displayName-count-one": "تينغ كازاخستاني",
"displayName-count-two": "تينغ كازاخستاني",
"displayName-count-few": "تينغ كازاخستاني",
"displayName-count-many": "تينغ كازاخستاني",
"displayName-count-other": "تينغ كازاخستاني",
"symbol": "KZT",
"symbol-alt-narrow": "₸"
},
"LAK": {
"displayName": "كيب لاوسي",
"displayName-count-zero": "كيب لاوسي",
"displayName-count-one": "كيب لاوسي",
"displayName-count-two": "كيب لاوسي",
"displayName-count-few": "كيب لاوسي",
"displayName-count-many": "كيب لاوسي",
"displayName-count-other": "كيب لاوسي",
"symbol": "LAK",
"symbol-alt-narrow": "₭"
},
"LBP": {
"displayName": "جنيه لبناني",
"displayName-count-zero": "جنيه لبناني",
"displayName-count-one": "جنيه لبناني",
"displayName-count-two": "جنيه لبناني",
"displayName-count-few": "جنيه لبناني",
"displayName-count-many": "جنيه لبناني",
"displayName-count-other": "جنيه لبناني",
"symbol": "ل.ل.",
"symbol-alt-narrow": "L£"
},
"LKR": {
"displayName": "روبية سريلانكية",
"displayName-count-zero": "روبية سريلانكية",
"displayName-count-one": "روبية سريلانكية",
"displayName-count-two": "روبية سريلانكية",
"displayName-count-few": "روبية سريلانكية",
"displayName-count-many": "روبية سريلانكية",
"displayName-count-other": "روبية سريلانكية",
"symbol": "LKR",
"symbol-alt-narrow": "Rs"
},
"LRD": {
"displayName": "دولار ليبيري",
"displayName-count-zero": "دولار ليبيري",
"displayName-count-one": "دولار ليبيري",
"displayName-count-two": "دولاران ليبيريان",
"displayName-count-few": "دولارات ليبيرية",
"displayName-count-many": "دولارًا ليبيريًا",
"displayName-count-other": "دولار ليبيري",
"symbol": "LRD",
"symbol-alt-narrow": "$"
},
"LSL": {
"displayName": "لوتي ليسوتو",
"symbol": "LSL"
},
"LTL": {
"displayName": "ليتا ليتوانية",
"displayName-count-zero": "ليتا ليتوانية",
"displayName-count-one": "ليتا ليتوانية",
"displayName-count-two": "ليتا ليتوانية",
"displayName-count-few": "ليتا ليتوانية",
"displayName-count-many": "ليتا ليتوانية",
"displayName-count-other": "ليتا ليتوانية",
"symbol": "LTL",
"symbol-alt-narrow": "Lt"
},
"LTT": {
"displayName": "تالوناس ليتواني",
"symbol": "LTT"
},
"LUC": {
"displayName": "فرنك لوكسمبرج قابل للتحويل",
"symbol": "LUC"
},
"LUF": {
"displayName": "فرنك لوكسمبرج",
"symbol": "LUF"
},
"LUL": {
"displayName": "فرنك لوكسمبرج المالي",
"symbol": "LUL"
},
"LVL": {
"displayName": "لاتس لاتفيا",
"displayName-count-zero": "لاتس لاتفي",
"displayName-count-one": "لاتس لاتفي",
"displayName-count-two": "لاتس لاتفي",
"displayName-count-few": "لاتس لاتفي",
"displayName-count-many": "لاتس لاتفي",
"displayName-count-other": "لاتس لاتفي",
"symbol": "LVL",
"symbol-alt-narrow": "Ls"
},
"LVR": {
"displayName": "روبل لاتفيا",
"symbol": "LVR"
},
"LYD": {
"displayName": "دينار ليبي",
"displayName-count-zero": "دينار ليبي",
"displayName-count-one": "دينار ليبي",
"displayName-count-two": "ديناران ليبيان",
"displayName-count-few": "دينارات ليبية",
"displayName-count-many": "دينارًا ليبيًا",
"displayName-count-other": "دينار ليبي",
"symbol": "د.ل."
},
"MAD": {
"displayName": "درهم مغربي",
"displayName-count-zero": "درهم مغربي",
"displayName-count-one": "درهم مغربي",
"displayName-count-two": "درهمان مغربيان",
"displayName-count-few": "دراهم مغربية",
"displayName-count-many": "درهمًا مغربيًا",
"displayName-count-other": "درهم مغربي",
"symbol": "د.م."
},
"MAF": {
"displayName": "فرنك مغربي",
"symbol": "MAF"
},
"MCF": {
"displayName": "MCF",
"symbol": "MCF"
},
"MDC": {
"displayName": "MDC",
"symbol": "MDC"
},
"MDL": {
"displayName": "ليو مولدوفي",
"displayName-count-zero": "ليو مولدوفي",
"displayName-count-one": "ليو مولدوفي",
"displayName-count-two": "ليو مولدوفي",
"displayName-count-few": "ليو مولدوفي",
"displayName-count-many": "ليو مولدوفي",
"displayName-count-other": "ليو مولدوفي",
"symbol": "MDL"
},
"MGA": {
"displayName": "أرياري مدغشقر",
"displayName-count-zero": "أرياري مدغشقر",
"displayName-count-one": "أرياري مدغشقر",
"displayName-count-two": "أرياري مدغشقر",
"displayName-count-few": "أرياري مدغشقر",
"displayName-count-many": "أرياري مدغشقر",
"displayName-count-other": "أرياري مدغشقر",
"symbol": "MGA",
"symbol-alt-narrow": "Ar"
},
"MGF": {
"displayName": "فرنك مدغشقر",
"symbol": "MGF"
},
"MKD": {
"displayName": "دينار مقدوني",
"displayName-count-zero": "دينار مقدوني",
"displayName-count-one": "دينار مقدوني",
"displayName-count-two": "ديناران مقدونيان",
"displayName-count-few": "دينارات مقدونية",
"displayName-count-many": "دينارًا مقدونيًا",
"displayName-count-other": "دينار مقدوني",
"symbol": "MKD"
},
"MKN": {
"displayName": "MKN",
"symbol": "MKN"
},
"MLF": {
"displayName": "فرنك مالي",
"symbol": "MLF"
},
"MMK": {
"displayName": "كيات ميانمار",
"displayName-count-zero": "كيات ميانمار",
"displayName-count-one": "كيات ميانمار",
"displayName-count-two": "كيات ميانمار",
"displayName-count-few": "كيات ميانمار",
"displayName-count-many": "كيات ميانمار",
"displayName-count-other": "كيات ميانمار",
"symbol": "MMK",
"symbol-alt-narrow": "K"
},
"MNT": {
"displayName": "توغروغ منغولي",
"displayName-count-zero": "توغروغ منغولي",
"displayName-count-one": "توغروغ منغولي",
"displayName-count-two": "توغروغ منغولي",
"displayName-count-few": "توغروغ منغولي",
"displayName-count-many": "توغروغ منغولي",
"displayName-count-other": "توغروغ منغولي",
"symbol": "MNT",
"symbol-alt-narrow": "₮"
},
"MOP": {
"displayName": "باتاكا ماكاوي",
"displayName-count-zero": "باتاكا ماكاوي",
"displayName-count-one": "باتاكا ماكاوي",
"displayName-count-two": "باتاكا ماكاوي",
"displayName-count-few": "باتاكا ماكاوي",
"displayName-count-many": "باتاكا ماكاوي",
"displayName-count-other": "باتاكا ماكاوي",
"symbol": "MOP"
},
"MRO": {
"displayName": "أوقية موريتانية",
"displayName-count-zero": "أوقية موريتانية",
"displayName-count-one": "أوقية موريتانية",
"displayName-count-two": "أوقية موريتانية",
"displayName-count-few": "أوقية موريتانية",
"displayName-count-many": "أوقية موريتانية",
"displayName-count-other": "أوقية موريتانية",
"symbol": "أ.م."
},
"MTL": {
"displayName": "ليرة مالطية",
"symbol": "MTL"
},
"MTP": {
"displayName": "جنيه مالطي",
"symbol": "MTP"
},
"MUR": {
"displayName": "روبية موريشيوسية",
"displayName-count-zero": "روبية موريشيوسية",
"displayName-count-one": "روبية موريشيوسية",
"displayName-count-two": "روبية موريشيوسية",
"displayName-count-few": "روبية موريشيوسية",
"displayName-count-many": "روبية موريشيوسية",
"displayName-count-other": "روبية موريشيوسية",
"symbol": "MUR",
"symbol-alt-narrow": "Rs"
},
"MVR": {
"displayName": "روفيه جزر المالديف",
"displayName-count-zero": "روفيه جزر المالديف",
"displayName-count-one": "روفيه جزر المالديف",
"displayName-count-two": "روفيه جزر المالديف",
"displayName-count-few": "روفيه جزر المالديف",
"displayName-count-many": "روفيه جزر المالديف",
"displayName-count-other": "روفيه جزر المالديف",
"symbol": "MVR"
},
"MWK": {
"displayName": "كواشا مالاوي",
"displayName-count-zero": "كواشا مالاوي",
"displayName-count-one": "كواشا مالاوي",
"displayName-count-two": "كواشا مالاوي",
"displayName-count-few": "كواشا مالاوي",
"displayName-count-many": "كواشا مالاوي",
"displayName-count-other": "كواشا مالاوي",
"symbol": "MWK"
},
"MXN": {
"displayName": "بيزو مكسيكي",
"displayName-count-zero": "بيزو مكسيكي",
"displayName-count-one": "بيزو مكسيكي",
"displayName-count-two": "بيزو مكسيكي",
"displayName-count-few": "بيزو مكسيكي",
"displayName-count-many": "بيزو مكسيكي",
"displayName-count-other": "بيزو مكسيكي",
"symbol": "MX$",
"symbol-alt-narrow": "MX$"
},
"MXP": {
"displayName": "بيزو فضي مكسيكي - 1861-1992",
"symbol": "MXP"
},
"MXV": {
"displayName": "MXV",
"symbol": "MXV"
},
"MYR": {
"displayName": "رينغيت ماليزي",
"displayName-count-zero": "رينغيت ماليزي",
"displayName-count-one": "رينغيت ماليزي",
"displayName-count-two": "رينغيت ماليزي",
"displayName-count-few": "رينغيت ماليزي",
"displayName-count-many": "رينغيت ماليزي",
"displayName-count-other": "رينغيت ماليزي",
"symbol": "MYR",
"symbol-alt-narrow": "RM"
},
"MZE": {
"displayName": "اسكود موزمبيقي",
"symbol": "MZE"
},
"MZM": {
"displayName": "MZM",
"symbol": "MZM"
},
"MZN": {
"displayName": "متكال موزمبيقي",
"displayName-count-zero": "متكال موزمبيقي",
"displayName-count-one": "متكال موزمبيقي",
"displayName-count-two": "متكال موزمبيقي",
"displayName-count-few": "متكال موزمبيقي",
"displayName-count-many": "متكال موزمبيقي",
"displayName-count-other": "متكال موزمبيقي",
"symbol": "MZN"
},
"NAD": {
"displayName": "دولار ناميبي",
"displayName-count-zero": "دولار ناميبي",
"displayName-count-one": "دولار ناميبي",
"displayName-count-two": "دولار ناميبي",
"displayName-count-few": "دولار ناميبي",
"displayName-count-many": "دولار ناميبي",
"displayName-count-other": "دولار ناميبي",
"symbol": "NAD",
"symbol-alt-narrow": "$"
},
"NGN": {
"displayName": "نايرا نيجيري",
"displayName-count-zero": "نايرا نيجيري",
"displayName-count-one": "نايرا نيجيري",
"displayName-count-two": "نايرا نيجيري",
"displayName-count-few": "نايرا نيجيري",
"displayName-count-many": "نايرا نيجيري",
"displayName-count-other": "نايرا نيجيري",
"symbol": "NGN",
"symbol-alt-narrow": "₦"
},
"NIC": {
"displayName": "كوردوبة نيكاراجوا",
"symbol": "NIC"
},
"NIO": {
"displayName": "قرطبة نيكاراغوا",
"displayName-count-zero": "قرطبة نيكاراغوا",
"displayName-count-one": "قرطبة نيكاراغوا",
"displayName-count-two": "قرطبة نيكاراغوا",
"displayName-count-few": "قرطبة نيكاراغوا",
"displayName-count-many": "قرطبة نيكاراغوا",
"displayName-count-other": "قرطبة نيكاراغوا",
"symbol": "NIO",
"symbol-alt-narrow": "C$"
},
"NLG": {
"displayName": "جلدر هولندي",
"symbol": "NLG"
},
"NOK": {
"displayName": "كرونة نرويجية",
"displayName-count-zero": "كرونة نرويجية",
"displayName-count-one": "كرونة نرويجية",
"displayName-count-two": "كرونة نرويجية",
"displayName-count-few": "كرونة نرويجية",
"displayName-count-many": "كرونة نرويجية",
"displayName-count-other": "كرونة نرويجية",
"symbol": "NOK",
"symbol-alt-narrow": "kr"
},
"NPR": {
"displayName": "روبية نيبالي",
"displayName-count-zero": "روبية نيبالي",
"displayName-count-one": "روبية نيبالي",
"displayName-count-two": "روبية نيبالي",
"displayName-count-few": "روبية نيبالي",
"displayName-count-many": "روبية نيبالي",
"displayName-count-other": "روبية نيبالي",
"symbol": "NPR",
"symbol-alt-narrow": "Rs"
},
"NZD": {
"displayName": "دولار نيوزيلندي",
"displayName-count-zero": "دولار نيوزيلندي",
"displayName-count-one": "دولار نيوزيلندي",
"displayName-count-two": "دولار نيوزيلندي",
"displayName-count-few": "دولار نيوزيلندي",
"displayName-count-many": "دولار نيوزيلندي",
"displayName-count-other": "دولار نيوزيلندي",
"symbol": "NZ$",
"symbol-alt-narrow": "NZ$"
},
"OMR": {
"displayName": "ريال عماني",
"displayName-count-zero": "ريال عماني",
"displayName-count-one": "ريال عماني",
"displayName-count-two": "ريال عماني",
"displayName-count-few": "ريال عماني",
"displayName-count-many": "ريال عماني",
"displayName-count-other": "ريال عماني",
"symbol": "ر.ع."
},
"PAB": {
"displayName": "بالبوا بنمي",
"displayName-count-zero": "بالبوا بنمي",
"displayName-count-one": "بالبوا بنمي",
"displayName-count-two": "بالبوا بنمي",
"displayName-count-few": "بالبوا بنمي",
"displayName-count-many": "بالبوا بنمي",
"displayName-count-other": "بالبوا بنمي",
"symbol": "PAB"
},
"PEI": {
"displayName": "PEI",
"symbol": "PEI"
},
"PEN": {
"displayName": "سول جديد البيرو",
"displayName-count-zero": "سول جديد البيرو",
"displayName-count-one": "سول جديد البيرو",
"displayName-count-two": "سول جديد البيرو",
"displayName-count-few": "سول جديد البيرو",
"displayName-count-many": "سول جديد البيرو",
"displayName-count-other": "سول جديد البيرو",
"symbol": "PEN"
},
"PES": {
"displayName": "PES",
"symbol": "PES"
},
"PGK": {
"displayName": "كينا بابوا غينيا الجديدة",
"displayName-count-zero": "كينا بابوا غينيا الجديدة",
"displayName-count-one": "كينا بابوا غينيا الجديدة",
"displayName-count-two": "كينا بابوا غينيا الجديدة",
"displayName-count-few": "كينا بابوا غينيا الجديدة",
"displayName-count-many": "كينا بابوا غينيا الجديدة",
"displayName-count-other": "كينا بابوا غينيا الجديدة",
"symbol": "PGK"
},
"PHP": {
"displayName": "بيزو فلبيني",
"displayName-count-zero": "بيزو فلبيني",
"displayName-count-one": "بيزو فلبيني",
"displayName-count-two": "بيزو فلبيني",
"displayName-count-few": "بيزو فلبيني",
"displayName-count-many": "بيزو فلبيني",
"displayName-count-other": "بيزو فلبيني",
"symbol": "PHP",
"symbol-alt-narrow": "₱"
},
"PKR": {
"displayName": "روبية باكستاني",
"displayName-count-zero": "روبية باكستاني",
"displayName-count-one": "روبية باكستاني",
"displayName-count-two": "روبية باكستاني",
"displayName-count-few": "روبية باكستاني",
"displayName-count-many": "روبية باكستاني",
"displayName-count-other": "روبية باكستاني",
"symbol": "PKR",
"symbol-alt-narrow": "Rs"
},
"PLN": {
"displayName": "زلوتي بولندي",
"displayName-count-zero": "زلوتي بولندي",
"displayName-count-one": "زلوتي بولندي",
"displayName-count-two": "زلوتي بولندي",
"displayName-count-few": "زلوتي بولندي",
"displayName-count-many": "زلوتي بولندي",
"displayName-count-other": "زلوتي بولندي",
"symbol": "PLN",
"symbol-alt-narrow": "zł"
},
"PLZ": {
"displayName": "زلوتي بولندي - 1950-1995",
"symbol": "PLZ"
},
"PTE": {
"displayName": "اسكود برتغالي",
"symbol": "PTE"
},
"PYG": {
"displayName": "جواراني باراجواي",
"displayName-count-zero": "جواراني باراجواي",
"displayName-count-one": "جواراني باراجواي",
"displayName-count-two": "جواراني باراجواي",
"displayName-count-few": "جواراني باراجواي",
"displayName-count-many": "جواراني باراجواي",
"displayName-count-other": "جواراني باراجواي",
"symbol": "PYG",
"symbol-alt-narrow": "₲"
},
"QAR": {
"displayName": "ريال قطري",
"displayName-count-zero": "ريال قطري",
"displayName-count-one": "ريال قطري",
"displayName-count-two": "ريال قطري",
"displayName-count-few": "ريال قطري",
"displayName-count-many": "ريال قطري",
"displayName-count-other": "ريال قطري",
"symbol": "ر.ق."
},
"RHD": {
"displayName": "دولار روديسي",
"symbol": "RHD"
},
"ROL": {
"displayName": "ليو روماني قديم",
"symbol": "ROL"
},
"RON": {
"displayName": "ليو روماني",
"displayName-count-zero": "ليو روماني",
"displayName-count-one": "ليو روماني",
"displayName-count-two": "ليو روماني",
"displayName-count-few": "ليو روماني",
"displayName-count-many": "ليو روماني",
"displayName-count-other": "ليو روماني",
"symbol": "RON",
"symbol-alt-narrow": "lei"
},
"RSD": {
"displayName": "دينار صربي",
"displayName-count-zero": "دينار صربي",
"displayName-count-one": "دينار صربي",
"displayName-count-two": "ديناران صربيان",
"displayName-count-few": "دينارات صربية",
"displayName-count-many": "دينارًا صربيًا",
"displayName-count-other": "دينار صربي",
"symbol": "RSD"
},
"RUB": {
"displayName": "روبل روسي",
"displayName-count-zero": "روبل روسي",
"displayName-count-one": "روبل روسي",
"displayName-count-two": "روبل روسي",
"displayName-count-few": "روبل روسي",
"displayName-count-many": "روبل روسي",
"displayName-count-other": "روبل روسي",
"symbol": "RUB",
"symbol-alt-narrow": "₽"
},
"RUR": {
"displayName": "روبل روسي - 1991-1998",
"symbol": "RUR",
"symbol-alt-narrow": "р."
},
"RWF": {
"displayName": "فرنك رواندي",
"displayName-count-zero": "فرنك رواندي",
"displayName-count-one": "فرنك رواندي",
"displayName-count-two": "فرنك رواندي",
"displayName-count-few": "فرنك رواندي",
"displayName-count-many": "فرنك رواندي",
"displayName-count-other": "فرنك رواندي",
"symbol": "RWF",
"symbol-alt-narrow": "RF"
},
"SAR": {
"displayName": "ريال سعودي",
"displayName-count-zero": "ريال سعودي",
"displayName-count-one": "ريال سعودي",
"displayName-count-two": "ريال سعودي",
"displayName-count-few": "ريال سعودي",
"displayName-count-many": "ريال سعودي",
"displayName-count-other": "ريال سعودي",
"symbol": "ر.س."
},
"SBD": {
"displayName": "دولار جزر سليمان",
"displayName-count-zero": "دولار جزر سليمان",
"displayName-count-one": "دولار جزر سليمان",
"displayName-count-two": "دولار جزر سليمان",
"displayName-count-few": "دولار جزر سليمان",
"displayName-count-many": "دولار جزر سليمان",
"displayName-count-other": "دولار جزر سليمان",
"symbol": "SBD",
"symbol-alt-narrow": "SB$"
},
"SCR": {
"displayName": "روبية سيشيلية",
"displayName-count-zero": "روبية سيشيلية",
"displayName-count-one": "روبية سيشيلية",
"displayName-count-two": "روبية سيشيلية",
"displayName-count-few": "روبية سيشيلية",
"displayName-count-many": "روبية سيشيلية",
"displayName-count-other": "روبية سيشيلية",
"symbol": "SCR"
},
"SDD": {
"displayName": "دينار سوداني",
"symbol": "د.س."
},
"SDG": {
"displayName": "جنيه سوداني",
"displayName-count-zero": "جنيه سوداني",
"displayName-count-one": "جنيه سوداني",
"displayName-count-two": "جنيه سوداني",
"displayName-count-few": "جنيهات سودانية",
"displayName-count-many": "جنيهًا سودانيًا",
"displayName-count-other": "جنيه سوداني",
"symbol": "ج.س."
},
"SDP": {
"displayName": "جنيه سوداني قديم",
"symbol": "SDP"
},
"SEK": {
"displayName": "كرونة سويدية",
"displayName-count-zero": "كرونة سويدية",
"displayName-count-one": "كرونة سويدية",
"displayName-count-two": "كرونة سويدية",
"displayName-count-few": "كرونة سويدية",
"displayName-count-many": "كرونة سويدية",
"displayName-count-other": "كرونة سويدية",
"symbol": "SEK",
"symbol-alt-narrow": "kr"
},
"SGD": {
"displayName": "دولار سنغافوري",
"displayName-count-zero": "دولار سنغافوري",
"displayName-count-one": "دولار سنغافوري",
"displayName-count-two": "دولار سنغافوري",
"displayName-count-few": "دولار سنغافوري",
"displayName-count-many": "دولار سنغافوري",
"displayName-count-other": "دولار سنغافوري",
"symbol": "SGD",
"symbol-alt-narrow": "$"
},
"SHP": {
"displayName": "جنيه سانت هيلين",
"displayName-count-zero": "جنيه سانت هيلين",
"displayName-count-one": "جنيه سانت هيلين",
"displayName-count-two": "جنيه سانت هيلين",
"displayName-count-few": "جنيه سانت هيلين",
"displayName-count-many": "جنيه سانت هيلين",
"displayName-count-other": "جنيه سانت هيلين",
"symbol": "SHP",
"symbol-alt-narrow": "£"
},
"SIT": {
"displayName": "تولار سلوفيني",
"symbol": "SIT"
},
"SKK": {
"displayName": "كرونة سلوفاكية",
"symbol": "SKK"
},
"SLL": {
"displayName": "ليون سيراليوني",
"displayName-count-zero": "ليون سيراليوني",
"displayName-count-one": "ليون سيراليوني",
"displayName-count-two": "ليون سيراليوني",
"displayName-count-few": "ليون سيراليوني",
"displayName-count-many": "ليون سيراليوني",
"displayName-count-other": "ليون سيراليوني",
"symbol": "SLL"
},
"SOS": {
"displayName": "شلن صومالي",
"displayName-count-zero": "شلن صومالي",
"displayName-count-one": "شلن صومالي",
"displayName-count-two": "شلن صومالي",
"displayName-count-few": "شلن صومالي",
"displayName-count-many": "شلن صومالي",
"displayName-count-other": "شلن صومالي",
"symbol": "SOS"
},
"SRD": {
"displayName": "دولار سورينامي",
"displayName-count-zero": "دولار سورينامي",
"displayName-count-one": "دولار سورينامي",
"displayName-count-two": "دولار سورينامي",
"displayName-count-few": "دولار سورينامي",
"displayName-count-many": "دولار سورينامي",
"displayName-count-other": "دولار سورينامي",
"symbol": "SRD",
"symbol-alt-narrow": "SR$"
},
"SRG": {
"displayName": "جلدر سورينامي",
"symbol": "SRG"
},
"SSP": {
"displayName": "جنيه جنوب السودان",
"displayName-count-zero": "جنيه جنوب السودان",
"displayName-count-one": "جنيه جنوب السودان",
"displayName-count-two": "جنيهان جنوب السودان",
"displayName-count-few": "جنيهات جنوب السودان",
"displayName-count-many": "جنيهًا جنوب السودان",
"displayName-count-other": "جنيه جنوب السودان",
"symbol": "SSP",
"symbol-alt-narrow": "£"
},
"STD": {
"displayName": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-zero": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-one": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-two": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-few": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-many": "دوبرا ساو تومي وبرينسيبي",
"displayName-count-other": "دوبرا ساو تومي وبرينسيبي",
"symbol": "STD",
"symbol-alt-narrow": "Db"
},
"SUR": {
"displayName": "روبل سوفيتي",
"symbol": "SUR"
},
"SVC": {
"displayName": "كولون سلفادوري",
"symbol": "SVC"
},
"SYP": {
"displayName": "ليرة سورية",
"displayName-count-zero": "ليرة سورية",
"displayName-count-one": "ليرة سورية",
"displayName-count-two": "ليرة سورية",
"displayName-count-few": "ليرة سورية",
"displayName-count-many": "ليرة سورية",
"displayName-count-other": "ليرة سورية",
"symbol": "ل.س.",
"symbol-alt-narrow": "£"
},
"SZL": {
"displayName": "ليلانجيني سوازيلندي",
"displayName-count-zero": "ليلانجيني سوازيلندي",
"displayName-count-one": "ليلانجيني سوازيلندي",
"displayName-count-two": "ليلانجيني سوازيلندي",
"displayName-count-few": "ليلانجيني سوازيلندي",
"displayName-count-many": "ليلانجيني سوازيلندي",
"displayName-count-other": "ليلانجيني سوازيلندي",
"symbol": "SZL"
},
"THB": {
"displayName": "باخت تايلاندي",
"displayName-count-zero": "باخت تايلاندي",
"displayName-count-one": "باخت تايلاندي",
"displayName-count-two": "باخت تايلاندي",
"displayName-count-few": "باخت تايلاندي",
"displayName-count-many": "باخت تايلاندي",
"displayName-count-other": "باخت تايلاندي",
"symbol": "฿",
"symbol-alt-narrow": "฿"
},
"TJR": {
"displayName": "روبل طاجيكستاني",
"symbol": "TJR"
},
"TJS": {
"displayName": "سوموني طاجيكستاني",
"displayName-count-zero": "سوموني طاجيكستاني",
"displayName-count-one": "سوموني طاجيكستاني",
"displayName-count-two": "سوموني طاجيكستاني",
"displayName-count-few": "سوموني طاجيكستاني",
"displayName-count-many": "سوموني طاجيكستاني",
"displayName-count-other": "سوموني طاجيكستاني",
"symbol": "TJS"
},
"TMM": {
"displayName": "مانات تركمنستاني",
"symbol": "TMM"
},
"TMT": {
"displayName": "مانات تركمانستان",
"displayName-count-zero": "مانات تركمانستان",
"displayName-count-one": "مانات تركمانستان",
"displayName-count-two": "مانات تركمانستان",
"displayName-count-few": "مانات تركمانستان",
"displayName-count-many": "مانات تركمانستان",
"displayName-count-other": "مانات تركمانستان",
"symbol": "TMT"
},
"TND": {
"displayName": "دينار تونسي",
"displayName-count-zero": "دينار تونسي",
"displayName-count-one": "دينار تونسي",
"displayName-count-two": "ديناران تونسيان",
"displayName-count-few": "دينارات تونسية",
"displayName-count-many": "دينارًا تونسيًا",
"displayName-count-other": "دينار تونسي",
"symbol": "د.ت."
},
"TOP": {
"displayName": "بانغا تونغا",
"displayName-count-zero": "بانغا تونغا",
"displayName-count-one": "بانغا تونغا",
"displayName-count-two": "بانغا تونغا",
"displayName-count-few": "بانغا تونغا",
"displayName-count-many": "بانغا تونغا",
"displayName-count-other": "بانغا تونغا",
"symbol": "TOP",
"symbol-alt-narrow": "T$"
},
"TPE": {
"displayName": "اسكود تيموري",
"symbol": "TPE"
},
"TRL": {
"displayName": "ليرة تركي",
"symbol": "TRL"
},
"TRY": {
"displayName": "ليرة تركية",
"displayName-count-zero": "ليرة تركية",
"displayName-count-one": "ليرة تركية",
"displayName-count-two": "ليرة تركية",
"displayName-count-few": "ليرة تركية",
"displayName-count-many": "ليرة تركية",
"displayName-count-other": "ليرة تركية",
"symbol": "TRY",
"symbol-alt-narrow": "₺",
"symbol-alt-variant": "TL"
},
"TTD": {
"displayName": "دولار ترينداد وتوباجو",
"displayName-count-zero": "دولار ترينداد وتوباجو",
"displayName-count-one": "دولار ترينداد وتوباجو",
"displayName-count-two": "دولار ترينداد وتوباجو",
"displayName-count-few": "دولار ترينداد وتوباجو",
"displayName-count-many": "دولار ترينداد وتوباجو",
"displayName-count-other": "دولار ترينداد وتوباجو",
"symbol": "TTD",
"symbol-alt-narrow": "TT$"
},
"TWD": {
"displayName": "دولار تايواني",
"displayName-count-zero": "دولار تايواني",
"displayName-count-one": "دولار تايواني",
"displayName-count-two": "دولار تايواني",
"displayName-count-few": "دولار تايواني",
"displayName-count-many": "دولار تايواني",
"displayName-count-other": "دولار تايواني",
"symbol": "NT$",
"symbol-alt-narrow": "NT$"
},
"TZS": {
"displayName": "شلن تنزاني",
"displayName-count-zero": "شلن تنزاني",
"displayName-count-one": "شلن تنزاني",
"displayName-count-two": "شلن تنزاني",
"displayName-count-few": "شلن تنزاني",
"displayName-count-many": "شلن تنزاني",
"displayName-count-other": "شلن تنزاني",
"symbol": "TZS"
},
"UAH": {
"displayName": "هريفنيا أوكراني",
"displayName-count-zero": "هريفنيا أوكراني",
"displayName-count-one": "هريفنيا أوكراني",
"displayName-count-two": "هريفنيا أوكراني",
"displayName-count-few": "هريفنيا أوكراني",
"displayName-count-many": "هريفنيا أوكراني",
"displayName-count-other": "هريفنيا أوكراني",
"symbol": "UAH",
"symbol-alt-narrow": "₴"
},
"UAK": {
"displayName": "UAK",
"symbol": "UAK"
},
"UGS": {
"displayName": "شلن أوغندي - 1966-1987",
"symbol": "UGS"
},
"UGX": {
"displayName": "شلن أوغندي",
"displayName-count-zero": "شلن أوغندي",
"displayName-count-one": "شلن أوغندي",
"displayName-count-two": "شلن أوغندي",
"displayName-count-few": "شلن أوغندي",
"displayName-count-many": "شلن أوغندي",
"displayName-count-other": "شلن أوغندي",
"symbol": "UGX"
},
"USD": {
"displayName": "دولار أمريكي",
"displayName-count-zero": "دولار أمريكي",
"displayName-count-one": "دولار أمريكي",
"displayName-count-two": "دولار أمريكي",
"displayName-count-few": "دولار أمريكي",
"displayName-count-many": "دولار أمريكي",
"displayName-count-other": "دولار أمريكي",
"symbol": "US$",
"symbol-alt-narrow": "US$"
},
"USN": {
"displayName": "دولار أمريكي (اليوم التالي)",
"symbol": "USN"
},
"USS": {
"displayName": "دولار أمريكي (نفس اليوم)",
"symbol": "USS"
},
"UYI": {
"displayName": "UYI",
"symbol": "UYI"
},
"UYP": {
"displayName": "بيزو أوروجواي - 1975-1993",
"symbol": "UYP"
},
"UYU": {
"displayName": "بيزو اوروغواي",
"displayName-count-zero": "بيزو اوروغواي",
"displayName-count-one": "بيزو اوروغواي",
"displayName-count-two": "بيزو اوروغواي",
"displayName-count-few": "بيزو اوروغواي",
"displayName-count-many": "بيزو اوروغواي",
"displayName-count-other": "بيزو اوروغواي",
"symbol": "UYU",
"symbol-alt-narrow": "UY$"
},
"UZS": {
"displayName": "سوم أوزبكستاني",
"displayName-count-zero": "سوم أوزبكستاني",
"displayName-count-one": "سوم أوزبكستاني",
"displayName-count-two": "سوم أوزبكستاني",
"displayName-count-few": "سوم أوزبكستاني",
"displayName-count-many": "سوم أوزبكستاني",
"displayName-count-other": "سوم أوزبكستاني",
"symbol": "UZS"
},
"VEB": {
"displayName": "بوليفار فنزويلي - 1871-2008",
"symbol": "VEB"
},
"VEF": {
"displayName": "بوليفار فنزويلي",
"displayName-count-zero": "بوليفار فنزويلي",
"displayName-count-one": "بوليفار فنزويلي",
"displayName-count-two": "بوليفار فنزويلي",
"displayName-count-few": "بوليفار فنزويلي",
"displayName-count-many": "بوليفار فنزويلي",
"displayName-count-other": "بوليفار فنزويلي",
"symbol": "VEF",
"symbol-alt-narrow": "Bs"
},
"VND": {
"displayName": "دونج فيتنامي",
"displayName-count-zero": "دونج فيتنامي",
"displayName-count-one": "دونج فيتنامي",
"displayName-count-two": "دونج فيتنامي",
"displayName-count-few": "دونج فيتنامي",
"displayName-count-many": "دونج فيتنامي",
"displayName-count-other": "دونج فيتنامي",
"symbol": "₫",
"symbol-alt-narrow": "₫"
},
"VNN": {
"displayName": "VNN",
"symbol": "VNN"
},
"VUV": {
"displayName": "فاتو فانواتو",
"displayName-count-zero": "فاتو فانواتو",
"displayName-count-one": "فاتو فانواتو",
"displayName-count-two": "فاتو فانواتو",
"displayName-count-few": "فاتو فانواتو",
"displayName-count-many": "فاتو فانواتو",
"displayName-count-other": "فاتو فانواتو",
"symbol": "VUV"
},
"WST": {
"displayName": "تالا ساموا",
"displayName-count-zero": "تالا ساموا",
"displayName-count-one": "تالا ساموا",
"displayName-count-two": "تالا ساموا",
"displayName-count-few": "تالا ساموا",
"displayName-count-many": "تالا ساموا",
"displayName-count-other": "تالا ساموا",
"symbol": "WST"
},
"XAF": {
"displayName": "فرنك وسط أفريقي",
"displayName-count-zero": "فرنك وسط أفريقي",
"displayName-count-one": "فرنك وسط أفريقي",
"displayName-count-two": "فرنك وسط أفريقي",
"displayName-count-few": "فرنك وسط أفريقي",
"displayName-count-many": "فرنك وسط أفريقي",
"displayName-count-other": "فرنك وسط أفريقي",
"symbol": "FCFA"
},
"XAG": {
"displayName": "فضة",
"symbol": "XAG"
},
"XAU": {
"displayName": "ذهب",
"symbol": "XAU"
},
"XBA": {
"displayName": "الوحدة الأوروبية المركبة",
"symbol": "XBA"
},
"XBB": {
"displayName": "الوحدة المالية الأوروبية",
"symbol": "XBB"
},
"XBC": {
"displayName": "الوحدة الحسابية الأوروبية",
"symbol": "XBC"
},
"XBD": {
"displayName": "(XBD)وحدة الحساب الأوروبية",
"symbol": "XBD"
},
"XCD": {
"displayName": "دولار شرق الكاريبي",
"displayName-count-zero": "دولار شرق الكاريبي",
"displayName-count-one": "دولار شرق الكاريبي",
"displayName-count-two": "دولار شرق الكاريبي",
"displayName-count-few": "دولار شرق الكاريبي",
"displayName-count-many": "دولار شرق الكاريبي",
"displayName-count-other": "دولار شرق الكاريبي",
"symbol": "EC$",
"symbol-alt-narrow": "$"
},
"XDR": {
"displayName": "حقوق السحب الخاصة",
"symbol": "XDR"
},
"XEU": {
"displayName": "وحدة النقد الأوروبية",
"symbol": "XEU"
},
"XFO": {
"displayName": "فرنك فرنسي ذهبي",
"symbol": "XFO"
},
"XFU": {
"displayName": "(UIC)فرنك فرنسي",
"symbol": "XFU"
},
"XOF": {
"displayName": "فرنك غرب أفريقي",
"displayName-count-zero": "فرنك غرب أفريقي",
"displayName-count-one": "فرنك غرب أفريقي",
"displayName-count-two": "فرنك غرب أفريقي",
"displayName-count-few": "فرنك غرب أفريقي",
"displayName-count-many": "فرنك غرب أفريقي",
"displayName-count-other": "فرنك غرب أفريقي",
"symbol": "CFA"
},
"XPD": {
"displayName": "بالاديوم",
"symbol": "XPD"
},
"XPF": {
"displayName": "فرنك سي إف بي",
"displayName-count-zero": "فرنك سي إف بي",
"displayName-count-one": "فرنك سي إف بي",
"displayName-count-two": "فرنك سي إف بي",
"displayName-count-few": "فرنك سي إف بي",
"displayName-count-many": "فرنك سي إف بي",
"displayName-count-other": "فرنك سي إف بي",
"symbol": "CFPF"
},
"XPT": {
"displayName": "البلاتين",
"symbol": "XPT"
},
"XRE": {
"displayName": "XRE",
"symbol": "XRE"
},
"XSU": {
"displayName": "XSU",
"symbol": "XSU"
},
"XTS": {
"displayName": "كود اختبار العملة",
"symbol": "XTS"
},
"XUA": {
"displayName": "XUA",
"symbol": "XUA"
},
"XXX": {
"displayName": "عملة غير معروفة",
"displayName-count-zero": "(عملة غير معروفة)",
"displayName-count-one": "(عملة غير معروفة)",
"displayName-count-two": "(عملة غير معروفة)",
"displayName-count-few": "(عملة غير معروفة)",
"displayName-count-many": "(عملة غير معروفة)",
"displayName-count-other": "(عملة غير معروفة)",
"symbol": "***"
},
"YDD": {
"displayName": "دينار يمني",
"symbol": "YDD"
},
"YER": {
"displayName": "ريال يمني",
"displayName-count-zero": "ريال يمني",
"displayName-count-one": "ريال يمني",
"displayName-count-two": "ريال يمني",
"displayName-count-few": "ريال يمني",
"displayName-count-many": "ريال يمني",
"displayName-count-other": "ريال يمني",
"symbol": "ر.ي."
},
"YUD": {
"displayName": "دينار يوغسلافي",
"symbol": "YUD"
},
"YUM": {
"displayName": "YUM",
"symbol": "YUM"
},
"YUN": {
"displayName": "دينار يوغسلافي قابل للتحويل",
"symbol": "YUN"
},
"YUR": {
"displayName": "YUR",
"symbol": "YUR"
},
"ZAL": {
"displayName": "راند جنوب أفريقيا -مالي",
"symbol": "ZAL"
},
"ZAR": {
"displayName": "راند جنوب أفريقيا",
"displayName-count-zero": "راند جنوب أفريقيا",
"displayName-count-one": "راند جنوب أفريقيا",
"displayName-count-two": "راند جنوب أفريقيا",
"displayName-count-few": "راند جنوب أفريقيا",
"displayName-count-many": "راند جنوب أفريقيا",
"displayName-count-other": "راند جنوب أفريقيا",
"symbol": "ZAR",
"symbol-alt-narrow": "R"
},
"ZMK": {
"displayName": "كواشا زامبي - 1968-2012",
"displayName-count-zero": "كواشا زامبي - 1968-2012",
"displayName-count-one": "كواشا زامبي - 1968-2012",
"displayName-count-two": "كواشا زامبي - 1968-2012",
"displayName-count-few": "كواشا زامبي - 1968-2012",
"displayName-count-many": "كواشا زامبي - 1968-2012",
"displayName-count-other": "كواشا زامبي - 1968-2012",
"symbol": "ZMK"
},
"ZMW": {
"displayName": "كواشا زامبي",
"displayName-count-zero": "كواشا زامبي",
"displayName-count-one": "كواشا زامبي",
"displayName-count-two": "كواشا زامبي",
"displayName-count-few": "كواشا زامبي",
"displayName-count-many": "كواشا زامبي",
"displayName-count-other": "كواشا زامبي",
"symbol": "ZMW",
"symbol-alt-narrow": "ZK"
},
"ZRN": {
"displayName": "زائير زائيري جديد",
"symbol": "ZRN"
},
"ZRZ": {
"displayName": "زائير زائيري",
"symbol": "ZRZ"
},
"ZWD": {
"displayName": "دولار زمبابوي",
"symbol": "ZWD"
},
"ZWL": {
"displayName": "دولار زمبابوي 2009",
"symbol": "ZWL"
},
"ZWR": {
"displayName": "ZWR",
"symbol": "ZWR"
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"numbers";
{
"currencies";
{
"ADP";
{
"displayName";
"بيستا أندوري",
"symbol";
"ADP";
}
"AED";
{
"displayName";
"درهم إماراتي",
"displayName-count-zero";
"درهم إماراتي",
"displayName-count-one";
"درهم إماراتي",
"displayName-count-two";
"درهم إماراتي",
"displayName-count-few";
"درهم إماراتي",
"displayName-count-many";
"درهم إماراتي",
"displayName-count-other";
"درهم إماراتي",
"symbol";
"د.إ.";
}
"AFA";
{
"displayName";
"أفغاني - 1927-2002",
"symbol";
"AFA";
}
"AFN";
{
"displayName";
"أفغاني",
"displayName-count-zero";
"أفغاني أفغانستاني",
"displayName-count-one";
"أفغاني أفغانستاني",
"displayName-count-two";
"أفغاني أفغانستاني",
"displayName-count-few";
"أفغاني أفغانستاني",
"displayName-count-many";
"أفغاني أفغانستاني",
"displayName-count-other";
"أفغاني أفغانستاني",
"symbol";
"AFN";
}
"ALL";
{
"displayName";
"ليك ألباني",
"displayName-count-zero";
"ليك ألباني",
"displayName-count-one";
"ليك ألباني",
"displayName-count-two";
"ليك ألباني",
"displayName-count-few";
"ليك ألباني",
"displayName-count-many";
"ليك ألباني",
"displayName-count-other";
"ليك ألباني",
"symbol";
"ALL";
}
"AMD";
{
"displayName";
"درام أرميني",
"displayName-count-zero";
"درام أرميني",
"displayName-count-one";
"درام أرميني",
"displayName-count-two";
"درام أرميني",
"displayName-count-few";
"درام أرميني",
"displayName-count-many";
"درام أرميني",
"displayName-count-other";
"درام أرميني",
"symbol";
"AMD";
}
"ANG";
{
"displayName";
"غيلدر أنتيلي هولندي",
"displayName-count-zero";
"غيلدر أنتيلي هولندي",
"displayName-count-one";
"غيلدر أنتيلي هولندي",
"displayName-count-two";
"غيلدر أنتيلي هولندي",
"displayName-count-few";
"غيلدر أنتيلي هولندي",
"displayName-count-many";
"غيلدر أنتيلي هولندي",
"displayName-count-other";
"غيلدر أنتيلي هولندي",
"symbol";
"ANG";
}
"AOA";
{
"displayName";
"كوانزا أنجولي",
"displayName-count-zero";
"كوانزا أنجولي",
"displayName-count-one";
"كوانزا أنجولي",
"displayName-count-two";
"كوانزا أنجولي",
"displayName-count-few";
"كوانزا أنجولي",
"displayName-count-many";
"كوانزا أنجولي",
"displayName-count-other";
"كوانزا أنجولي",
"symbol";
"AOA",
"symbol-alt-narrow";
"Kz";
}
"AOK";
{
"displayName";
"كوانزا أنجولي - 1977-1990",
"symbol";
"AOK";
}
"AON";
{
"displayName";
"كوانزا أنجولي جديدة - 1990-2000",
"symbol";
"AON";
}
"AOR";
{
"displayName";
"كوانزا أنجولي معدلة - 1995 - 1999",
"symbol";
"AOR";
}
"ARA";
{
"displayName";
"استرال أرجنتيني",
"symbol";
"ARA";
}
"ARL";
{
"displayName";
"ARL",
"symbol";
"ARL";
}
"ARM";
{
"displayName";
"ARM",
"symbol";
"ARM";
}
"ARP";
{
"displayName";
"بيزو أرجنتيني - 1983-1985",
"symbol";
"ARP";
}
"ARS";
{
"displayName";
"بيزو أرجنتيني",
"displayName-count-zero";
"بيزو أرجنتيني",
"displayName-count-one";
"بيزو أرجنتيني",
"displayName-count-two";
"بيزو أرجنتيني",
"displayName-count-few";
"بيزو أرجنتيني",
"displayName-count-many";
"بيزو أرجنتيني",
"displayName-count-other";
"بيزو أرجنتيني",
"symbol";
"ARS",
"symbol-alt-narrow";
"AR$";
}
"ATS";
{
"displayName";
"شلن نمساوي",
"symbol";
"ATS";
}
"AUD";
{
"displayName";
"دولار أسترالي",
"displayName-count-zero";
"دولار أسترالي",
"displayName-count-one";
"دولار أسترالي",
"displayName-count-two";
"دولار أسترالي",
"displayName-count-few";
"دولار أسترالي",
"displayName-count-many";
"دولار أسترالي",
"displayName-count-other";
"دولار أسترالي",
"symbol";
"AU$",
"symbol-alt-narrow";
"AU$";
}
"AWG";
{
"displayName";
"فلورن أروبي",
"displayName-count-zero";
"فلورن أروبي",
"displayName-count-one";
"فلورن أروبي",
"displayName-count-two";
"فلورن أروبي",
"displayName-count-few";
"فلورن أروبي",
"displayName-count-many";
"فلورن أروبي",
"displayName-count-other";
"فلورن أروبي",
"symbol";
"AWG";
}
"AZM";
{
"displayName";
"مانات أذريبجاني",
"symbol";
"AZM";
}
"AZN";
{
"displayName";
"مانات أذربيجان",
"displayName-count-zero";
"مانت أذربيجاني",
"displayName-count-one";
"مانت أذربيجاني",
"displayName-count-two";
"مانت أذربيجاني",
"displayName-count-few";
"مانت أذربيجاني",
"displayName-count-many";
"مانت أذربيجاني",
"displayName-count-other";
"مانت أذربيجاني",
"symbol";
"AZN";
}
"BAD";
{
"displayName";
"دينار البوسنة والهرسك",
"symbol";
"BAD";
}
"BAM";
{
"displayName";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-zero";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-one";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-two";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-few";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-many";
"مارك البوسنة والهرسك قابل للتحويل",
"displayName-count-other";
"مارك البوسنة والهرسك قابل للتحويل",
"symbol";
"BAM",
"symbol-alt-narrow";
"KM";
}
"BAN";
{
"displayName";
"BAN",
"symbol";
"BAN";
}
"BBD";
{
"displayName";
"دولار بربادوسي",
"displayName-count-zero";
"دولار بربادوسي",
"displayName-count-one";
"دولار بربادوسي",
"displayName-count-two";
"دولار بربادوسي",
"displayName-count-few";
"دولار بربادوسي",
"displayName-count-many";
"دولار بربادوسي",
"displayName-count-other";
"دولار بربادوسي",
"symbol";
"BBD",
"symbol-alt-narrow";
"BB$";
}
"BDT";
{
"displayName";
"تاكا بنجلاديشي",
"displayName-count-zero";
"تاكا بنجلاديشي",
"displayName-count-one";
"تاكا بنجلاديشي",
"displayName-count-two";
"تاكا بنجلاديشي",
"displayName-count-few";
"تاكا بنجلاديشي",
"displayName-count-many";
"تاكا بنجلاديشي",
"displayName-count-other";
"تاكا بنجلاديشي",
"symbol";
"BDT",
"symbol-alt-narrow";
"৳";
}
"BEC";
{
"displayName";
"فرنك بلجيكي قابل للتحويل",
"symbol";
"BEC";
}
"BEF";
{
"displayName";
"فرنك بلجيكي",
"symbol";
"BEF";
}
"BEL";
{
"displayName";
"فرنك بلجيكي مالي",
"symbol";
"BEL";
}
"BGL";
{
"displayName";
"BGL",
"symbol";
"BGL";
}
"BGM";
{
"displayName";
"BGM",
"symbol";
"BGM";
}
"BGN";
{
"displayName";
"ليف بلغاري",
"displayName-count-zero";
"ليف بلغاري",
"displayName-count-one";
"ليف بلغاري",
"displayName-count-two";
"ليف بلغاري",
"displayName-count-few";
"ليف بلغاري",
"displayName-count-many";
"ليف بلغاري",
"displayName-count-other";
"ليف بلغاري",
"symbol";
"BGN";
}
"BGO";
{
"displayName";
"BGO",
"symbol";
"BGO";
}
"BHD";
{
"displayName";
"دينار بحريني",
"displayName-count-zero";
"دينار بحريني",
"displayName-count-one";
"دينار بحريني",
"displayName-count-two";
"دينار بحريني",
"displayName-count-few";
"دينار بحريني",
"displayName-count-many";
"دينار بحريني",
"displayName-count-other";
"دينار بحريني",
"symbol";
"د.ب.";
}
"BIF";
{
"displayName";
"فرنك بروندي",
"displayName-count-zero";
"فرنك بروندي",
"displayName-count-one";
"فرنك بروندي",
"displayName-count-two";
"فرنك بروندي",
"displayName-count-few";
"فرنك بروندي",
"displayName-count-many";
"فرنك بروندي",
"displayName-count-other";
"فرنك بروندي",
"symbol";
"BIF";
}
"BMD";
{
"displayName";
"دولار برمودي",
"displayName-count-zero";
"دولار برمودي",
"displayName-count-one";
"دولار برمودي",
"displayName-count-two";
"دولار برمودي",
"displayName-count-few";
"دولار برمودي",
"displayName-count-many";
"دولار برمودي",
"displayName-count-other";
"دولار برمودي",
"symbol";
"BMD",
"symbol-alt-narrow";
"BM$";
}
"BND";
{
"displayName";
"دولار بروناي",
"displayName-count-zero";
"دولار بروناي",
"displayName-count-one";
"دولار بروناي",
"displayName-count-two";
"دولار بروناي",
"displayName-count-few";
"دولار بروناي",
"displayName-count-many";
"دولار بروناي",
"displayName-count-other";
"دولار بروناي",
"symbol";
"BND",
"symbol-alt-narrow";
"BN$";
}
"BOB";
{
"displayName";
"بوليفيانو بوليفي",
"displayName-count-zero";
"بوليفيانو بوليفي",
"displayName-count-one";
"بوليفيانو بوليفي",
"displayName-count-two";
"بوليفيانو بوليفي",
"displayName-count-few";
"بوليفيانو بوليفي",
"displayName-count-many";
"بوليفيانو بوليفي",
"displayName-count-other";
"بوليفيانو بوليفي",
"symbol";
"BOB",
"symbol-alt-narrow";
"Bs";
}
"BOL";
{
"displayName";
"BOL",
"symbol";
"BOL";
}
"BOP";
{
"displayName";
"بيزو بوليفي",
"symbol";
"BOP";
}
"BOV";
{
"displayName";
"مفدول بوليفي",
"symbol";
"BOV";
}
"BRB";
{
"displayName";
"نوفو كروزايرو برازيلي - 1967-1986",
"symbol";
"BRB";
}
"BRC";
{
"displayName";
"كروزادو برازيلي",
"symbol";
"BRC";
}
"BRE";
{
"displayName";
"كروزايرو برازيلي - 1990-1993",
"symbol";
"BRE";
}
"BRL";
{
"displayName";
"ريال برازيلي",
"displayName-count-zero";
"ريال برازيلي",
"displayName-count-one";
"ريال برازيلي",
"displayName-count-two";
"ريال برازيلي",
"displayName-count-few";
"ريال برازيلي",
"displayName-count-many";
"ريال برازيلي",
"displayName-count-other";
"ريال برازيلي",
"symbol";
"R$",
"symbol-alt-narrow";
"R$";
}
"BRN";
{
"displayName";
"BRN",
"symbol";
"BRN";
}
"BRR";
{
"displayName";
"BRR",
"symbol";
"BRR";
}
"BRZ";
{
"displayName";
"BRZ",
"symbol";
"BRZ";
}
"BSD";
{
"displayName";
"دولار باهامي",
"displayName-count-zero";
"دولار باهامي",
"displayName-count-one";
"دولار باهامي",
"displayName-count-two";
"دولار باهامي",
"displayName-count-few";
"دولار باهامي",
"displayName-count-many";
"دولار باهامي",
"displayName-count-other";
"دولار باهامي",
"symbol";
"BSD",
"symbol-alt-narrow";
"BS$";
}
"BTN";
{
"displayName";
"نولتوم بوتاني",
"displayName-count-zero";
"نولتوم بوتاني",
"displayName-count-one";
"نولتوم بوتاني",
"displayName-count-two";
"نولتوم بوتاني",
"displayName-count-few";
"نولتوم بوتاني",
"displayName-count-many";
"نولتوم بوتاني",
"displayName-count-other";
"نولتوم بوتاني",
"symbol";
"BTN";
}
"BUK";
{
"displayName";
"كيات بورمي",
"symbol";
"BUK";
}
"BWP";
{
"displayName";
"بولا بتسواني",
"displayName-count-zero";
"بولا بتسواني",
"displayName-count-one";
"بولا بتسواني",
"displayName-count-two";
"بولا بتسواني",
"displayName-count-few";
"بولا بتسواني",
"displayName-count-many";
"بولا بتسواني",
"displayName-count-other";
"بولا بتسواني",
"symbol";
"BWP",
"symbol-alt-narrow";
"P";
}
"BYB";
{
"displayName";
"روبل بيلاروسي جديد - 1994-1999",
"symbol";
"BYB";
}
"BYN";
{
"displayName";
"روبل بيلاروسي",
"displayName-count-zero";
"روبل بيلاروسي",
"displayName-count-one";
"روبل بيلاروسي",
"displayName-count-two";
"روبل بيلاروسي",
"displayName-count-few";
"روبل بيلاروسي",
"displayName-count-many";
"روبل بيلاروسي",
"displayName-count-other";
"روبل بيلاروسي",
"symbol";
"BYN",
"symbol-alt-narrow";
"р.";
}
"BYR";
{
"displayName";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-zero";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-one";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-two";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-few";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-many";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"displayName-count-other";
"روبل بيلاروسي (٢٠٠٠–٢٠١٦)",
"symbol";
"BYR";
}
"BZD";
{
"displayName";
"دولار بليزي",
"displayName-count-zero";
"دولار بليزي",
"displayName-count-one";
"دولار بليزي",
"displayName-count-two";
"دولاران بليزيان",
"displayName-count-few";
"دولار بليزي",
"displayName-count-many";
"دولار بليزي",
"displayName-count-other";
"دولار بليزي",
"symbol";
"BZD",
"symbol-alt-narrow";
"BZ$";
}
"CAD";
{
"displayName";
"دولار كندي",
"displayName-count-zero";
"دولار كندي",
"displayName-count-one";
"دولار كندي",
"displayName-count-two";
"دولار كندي",
"displayName-count-few";
"دولار كندي",
"displayName-count-many";
"دولار كندي",
"displayName-count-other";
"دولار كندي",
"symbol";
"CA$",
"symbol-alt-narrow";
"CA$";
}
"CDF";
{
"displayName";
"فرنك كونغولي",
"displayName-count-zero";
"فرنك كونغولي",
"displayName-count-one";
"فرنك كونغولي",
"displayName-count-two";
"فرنك كونغولي",
"displayName-count-few";
"فرنك كونغولي",
"displayName-count-many";
"فرنك كونغولي",
"displayName-count-other";
"فرنك كونغولي",
"symbol";
"CDF";
}
"CHE";
{
"displayName";
"CHE",
"symbol";
"CHE";
}
"CHF";
{
"displayName";
"فرنك سويسري",
"displayName-count-zero";
"فرنك سويسري",
"displayName-count-one";
"فرنك سويسري",
"displayName-count-two";
"فرنك سويسري",
"displayName-count-few";
"فرنك سويسري",
"displayName-count-many";
"فرنك سويسري",
"displayName-count-other";
"فرنك سويسري",
"symbol";
"CHF";
}
"CHW";
{
"displayName";
"CHW",
"symbol";
"CHW";
}
"CLE";
{
"displayName";
"CLE",
"symbol";
"CLE";
}
"CLF";
{
"displayName";
"CLF",
"symbol";
"CLF";
}
"CLP";
{
"displayName";
"بيزو شيلي",
"displayName-count-zero";
"بيزو شيلي",
"displayName-count-one";
"بيزو شيلي",
"displayName-count-two";
"بيزو شيلي",
"displayName-count-few";
"بيزو شيلي",
"displayName-count-many";
"بيزو شيلي",
"displayName-count-other";
"بيزو شيلي",
"symbol";
"CLP",
"symbol-alt-narrow";
"CL$";
}
"CNY";
{
"displayName";
"يوان صيني",
"displayName-count-zero";
"يوان صيني",
"displayName-count-one";
"يوان صيني",
"displayName-count-two";
"يوان صيني",
"displayName-count-few";
"يوان صيني",
"displayName-count-many";
"يوان صيني",
"displayName-count-other";
"يوان صيني",
"symbol";
"CN¥",
"symbol-alt-narrow";
"CN¥";
}
"COP";
{
"displayName";
"بيزو كولومبي",
"displayName-count-zero";
"بيزو كولومبي",
"displayName-count-one";
"بيزو كولومبي",
"displayName-count-two";
"بيزو كولومبي",
"displayName-count-few";
"بيزو كولومبي",
"displayName-count-many";
"بيزو كولومبي",
"displayName-count-other";
"بيزو كولومبي",
"symbol";
"COP",
"symbol-alt-narrow";
"CO$";
}
"COU";
{
"displayName";
"COU",
"symbol";
"COU";
}
"CRC";
{
"displayName";
"كولن كوستا ريكي",
"displayName-count-zero";
"كولن كوستا ريكي",
"displayName-count-one";
"كولن كوستا ريكي",
"displayName-count-two";
"كولن كوستا ريكي",
"displayName-count-few";
"كولن كوستا ريكي",
"displayName-count-many";
"كولن كوستا ريكي",
"displayName-count-other";
"كولن كوستا ريكي",
"symbol";
"CRC",
"symbol-alt-narrow";
"₡";
}
"CSD";
{
"displayName";
"دينار صربي قديم",
"symbol";
"CSD";
}
"CSK";
{
"displayName";
"كرونة تشيكوسلوفاكيا",
"symbol";
"CSK";
}
"CUC";
{
"displayName";
"بيزو كوبي قابل للتحويل",
"displayName-count-zero";
"بيزو كوبي قابل للتحويل",
"displayName-count-one";
"بيزو كوبي قابل للتحويل",
"displayName-count-two";
"بيزو كوبي قابل للتحويل",
"displayName-count-few";
"بيزو كوبي قابل للتحويل",
"displayName-count-many";
"بيزو كوبي قابل للتحويل",
"displayName-count-other";
"بيزو كوبي قابل للتحويل",
"symbol";
"CUC",
"symbol-alt-narrow";
"$";
}
"CUP";
{
"displayName";
"بيزو كوبي",
"displayName-count-zero";
"بيزو كوبي",
"displayName-count-one";
"بيزو كوبي",
"displayName-count-two";
"بيزو كوبي",
"displayName-count-few";
"بيزو كوبي",
"displayName-count-many";
"بيزو كوبي",
"displayName-count-other";
"بيزو كوبي",
"symbol";
"CUP",
"symbol-alt-narrow";
"CU$";
}
"CVE";
{
"displayName";
"اسكودو الرأس الخضراء",
"displayName-count-zero";
"اسكودو الرأس الخضراء",
"displayName-count-one";
"اسكودو الرأس الخضراء",
"displayName-count-two";
"اسكودو الرأس الخضراء",
"displayName-count-few";
"اسكودو الرأس الخضراء",
"displayName-count-many";
"اسكودو الرأس الخضراء",
"displayName-count-other";
"اسكودو الرأس الخضراء",
"symbol";
"CVE";
}
"CYP";
{
"displayName";
"جنيه قبرصي",
"symbol";
"CYP";
}
"CZK";
{
"displayName";
"كرونة تشيكية",
"displayName-count-zero";
"كرونة تشيكية",
"displayName-count-one";
"كرونة تشيكية",
"displayName-count-two";
"كرونة تشيكية",
"displayName-count-few";
"كرونة تشيكية",
"displayName-count-many";
"كرونة تشيكية",
"displayName-count-other";
"كرونة تشيكية",
"symbol";
"CZK",
"symbol-alt-narrow";
"Kč";
}
"DDM";
{
"displayName";
"أوستمارك ألماني شرقي",
"symbol";
"DDM";
}
"DEM";
{
"displayName";
"مارك ألماني",
"symbol";
"DEM";
}
"DJF";
{
"displayName";
"فرنك جيبوتي",
"displayName-count-zero";
"فرنك جيبوتي",
"displayName-count-one";
"فرنك جيبوتي",
"displayName-count-two";
"فرنك جيبوتي",
"displayName-count-few";
"فرنك جيبوتي",
"displayName-count-many";
"فرنك جيبوتي",
"displayName-count-other";
"فرنك جيبوتي",
"symbol";
"DJF";
}
"DKK";
{
"displayName";
"كرونة دانماركي",
"displayName-count-zero";
"كرونة دانماركي",
"displayName-count-one";
"كرونة دانماركي",
"displayName-count-two";
"كرونة دانماركي",
"displayName-count-few";
"كرونة دانماركي",
"displayName-count-many";
"كرونة دانماركي",
"displayName-count-other";
"كرونة دانماركي",
"symbol";
"DKK",
"symbol-alt-narrow";
"kr";
}
"DOP";
{
"displayName";
"بيزو الدومنيكان",
"displayName-count-zero";
"بيزو الدومنيكان",
"displayName-count-one";
"بيزو الدومنيكان",
"displayName-count-two";
"بيزو الدومنيكان",
"displayName-count-few";
"بيزو الدومنيكان",
"displayName-count-many";
"بيزو الدومنيكان",
"displayName-count-other";
"بيزو الدومنيكان",
"symbol";
"DOP",
"symbol-alt-narrow";
"DO$";
}
"DZD";
{
"displayName";
"دينار جزائري",
"displayName-count-zero";
"دينار جزائري",
"displayName-count-one";
"دينار جزائري",
"displayName-count-two";
"ديناران جزائريان",
"displayName-count-few";
"دينارات جزائرية",
"displayName-count-many";
"دينارًا جزائريًا",
"displayName-count-other";
"دينار جزائري",
"symbol";
"د.ج.";
}
"ECS";
{
"displayName";
"ECS",
"symbol";
"ECS";
}
"ECV";
{
"displayName";
"ECV",
"symbol";
"ECV";
}
"EEK";
{
"displayName";
"كرونة استونية",
"symbol";
"EEK";
}
"EGP";
{
"displayName";
"جنيه مصري",
"displayName-count-zero";
"جنيه مصري",
"displayName-count-one";
"جنيه مصري",
"displayName-count-two";
"جنيهان مصريان",
"displayName-count-few";
"جنيهات مصرية",
"displayName-count-many";
"جنيهًا مصريًا",
"displayName-count-other";
"جنيه مصري",
"symbol";
"ج.م.",
"symbol-alt-narrow";
"E£";
}
"ERN";
{
"displayName";
"ناكفا أريتري",
"displayName-count-zero";
"ناكفا أريتري",
"displayName-count-one";
"ناكفا أريتري",
"displayName-count-two";
"ناكفا أريتري",
"displayName-count-few";
"ناكفا أريتري",
"displayName-count-many";
"ناكفا أريتري",
"displayName-count-other";
"ناكفا أريتري",
"symbol";
"ERN";
}
"ESA";
{
"displayName";
"ESA",
"symbol";
"ESA";
}
"ESB";
{
"displayName";
"ESB",
"symbol";
"ESB";
}
"ESP";
{
"displayName";
"بيزيتا إسباني",
"symbol";
"ESP",
"symbol-alt-narrow";
"₧";
}
"ETB";
{
"displayName";
"بير أثيوبي",
"displayName-count-zero";
"بير أثيوبي",
"displayName-count-one";
"بير أثيوبي",
"displayName-count-two";
"بير أثيوبي",
"displayName-count-few";
"بير أثيوبي",
"displayName-count-many";
"بير أثيوبي",
"displayName-count-other";
"بير أثيوبي",
"symbol";
"ETB";
}
"EUR";
{
"displayName";
"يورو",
"displayName-count-zero";
"يورو",
"displayName-count-one";
"يورو",
"displayName-count-two";
"يورو",
"displayName-count-few";
"يورو",
"displayName-count-many";
"يورو",
"displayName-count-other";
"يورو",
"symbol";
"€",
"symbol-alt-narrow";
"€";
}
"FIM";
{
"displayName";
"ماركا فنلندي",
"symbol";
"FIM";
}
"FJD";
{
"displayName";
"دولار فيجي",
"displayName-count-zero";
"دولار فيجي",
"displayName-count-one";
"دولار فيجي",
"displayName-count-two";
"دولار فيجي",
"displayName-count-few";
"دولار فيجي",
"displayName-count-many";
"دولار فيجي",
"displayName-count-other";
"دولار فيجي",
"symbol";
"FJD",
"symbol-alt-narrow";
"FJ$";
}
"FKP";
{
"displayName";
"جنيه جزر فوكلاند",
"displayName-count-zero";
"جنيه جزر فوكلاند",
"displayName-count-one";
"جنيه جزر فوكلاند",
"displayName-count-two";
"جنيه جزر فوكلاند",
"displayName-count-few";
"جنيه جزر فوكلاند",
"displayName-count-many";
"جنيه جزر فوكلاند",
"displayName-count-other";
"جنيه جزر فوكلاند",
"symbol";
"FKP",
"symbol-alt-narrow";
"£";
}
"FRF";
{
"displayName";
"فرنك فرنسي",
"symbol";
"FRF";
}
"GBP";
{
"displayName";
"جنيه إسترليني",
"displayName-count-zero";
"جنيه إسترليني",
"displayName-count-one";
"جنيه إسترليني",
"displayName-count-two";
"جنيه إسترليني",
"displayName-count-few";
"جنيه إسترليني",
"displayName-count-many";
"جنيه إسترليني",
"displayName-count-other";
"جنيه إسترليني",
"symbol";
"£",
"symbol-alt-narrow";
"UK£";
}
"GEK";
{
"displayName";
"GEK",
"symbol";
"GEK";
}
"GEL";
{
"displayName";
"لارى جورجي",
"displayName-count-zero";
"لاري جورجي",
"displayName-count-one";
"لاري جورجي",
"displayName-count-two";
"لاري جورجي",
"displayName-count-few";
"لاري جورجي",
"displayName-count-many";
"لاري جورجي",
"displayName-count-other";
"لاري جورجي",
"symbol";
"GEL",
"symbol-alt-narrow";
"₾",
"symbol-alt-variant";
"₾";
}
"GHC";
{
"displayName";
"سيدي غاني",
"symbol";
"GHC";
}
"GHS";
{
"displayName";
"سيدي غانا",
"displayName-count-zero";
"سيدي غانا",
"displayName-count-one";
"سيدي غانا",
"displayName-count-two";
"سيدي غانا",
"displayName-count-few";
"سيدي غانا",
"displayName-count-many";
"سيدي غانا",
"displayName-count-other";
"سيدي غانا",
"symbol";
"GHS";
}
"GIP";
{
"displayName";
"جنيه جبل طارق",
"displayName-count-zero";
"جنيه جبل طارق",
"displayName-count-one";
"جنيه جبل طارق",
"displayName-count-two";
"جنيه جبل طارق",
"displayName-count-few";
"جنيه جبل طارق",
"displayName-count-many";
"جنيه جبل طارق",
"displayName-count-other";
"جنيه جبل طارق",
"symbol";
"GIP",
"symbol-alt-narrow";
"£";
}
"GMD";
{
"displayName";
"دلاسي جامبي",
"displayName-count-zero";
"دلاسي جامبي",
"displayName-count-one";
"دلاسي جامبي",
"displayName-count-two";
"دلاسي جامبي",
"displayName-count-few";
"دلاسي جامبي",
"displayName-count-many";
"دلاسي جامبي",
"displayName-count-other";
"دلاسي جامبي",
"symbol";
"GMD";
}
"GNF";
{
"displayName";
"فرنك غينيا",
"displayName-count-zero";
"فرنك غينيا",
"displayName-count-one";
"فرنك غينيا",
"displayName-count-two";
"فرنك غينيا",
"displayName-count-few";
"فرنك غينيا",
"displayName-count-many";
"فرنك غينيا",
"displayName-count-other";
"فرنك غينيا",
"symbol";
"GNF",
"symbol-alt-narrow";
"FG";
}
"GNS";
{
"displayName";
"سيلي غينيا",
"symbol";
"GNS";
}
"GQE";
{
"displayName";
"اكويل جونينا غينيا الاستوائيّة",
"symbol";
"GQE";
}
"GRD";
{
"displayName";
"دراخما يوناني",
"symbol";
"GRD";
}
"GTQ";
{
"displayName";
"كوتزال جواتيمالا",
"displayName-count-zero";
"كوتزال جواتيمالا",
"displayName-count-one";
"كوتزال جواتيمالا",
"displayName-count-two";
"كوتزال جواتيمالا",
"displayName-count-few";
"كوتزال جواتيمالا",
"displayName-count-many";
"كوتزال جواتيمالا",
"displayName-count-other";
"كوتزال جواتيمالا",
"symbol";
"GTQ",
"symbol-alt-narrow";
"Q";
}
"GWE";
{
"displayName";
"اسكود برتغالي غينيا",
"symbol";
"GWE";
}
"GWP";
{
"displayName";
"بيزو غينيا بيساو",
"symbol";
"GWP";
}
"GYD";
{
"displayName";
"دولار غيانا",
"displayName-count-zero";
"دولار غيانا",
"displayName-count-one";
"دولار غيانا",
"displayName-count-two";
"دولار غيانا",
"displayName-count-few";
"دولار غيانا",
"displayName-count-many";
"دولار غيانا",
"displayName-count-other";
"دولار غيانا",
"symbol";
"GYD",
"symbol-alt-narrow";
"GY$";
}
"HKD";
{
"displayName";
"دولار هونغ كونغ",
"displayName-count-zero";
"دولار هونغ كونغ",
"displayName-count-one";
"دولار هونغ كونغ",
"displayName-count-two";
"دولار هونغ كونغ",
"displayName-count-few";
"دولار هونغ كونغ",
"displayName-count-many";
"دولار هونغ كونغ",
"displayName-count-other";
"دولار هونغ كونغ",
"symbol";
"HK$",
"symbol-alt-narrow";
"HK$";
}
"HNL";
{
"displayName";
"ليمبيرا هنداروس",
"displayName-count-zero";
"ليمبيرا هندوراس",
"displayName-count-one";
"ليمبيرا هندوراس",
"displayName-count-two";
"ليمبيرا هندوراس",
"displayName-count-few";
"ليمبيرا هندوراس",
"displayName-count-many";
"ليمبيرا هندوراس",
"displayName-count-other";
"ليمبيرا هندوراس",
"symbol";
"HNL",
"symbol-alt-narrow";
"L";
}
"HRD";
{
"displayName";
"دينار كرواتي",
"symbol";
"HRD";
}
"HRK";
{
"displayName";
"كونا كرواتي",
"displayName-count-zero";
"كونا كرواتي",
"displayName-count-one";
"كونا كرواتي",
"displayName-count-two";
"كونا كرواتي",
"displayName-count-few";
"كونا كرواتي",
"displayName-count-many";
"كونا كرواتي",
"displayName-count-other";
"كونا كرواتي",
"symbol";
"HRK",
"symbol-alt-narrow";
"kn";
}
"HTG";
{
"displayName";
"جوردى هايتي",
"displayName-count-zero";
"جوردى هايتي",
"displayName-count-one";
"جوردى هايتي",
"displayName-count-two";
"جوردى هايتي",
"displayName-count-few";
"جوردى هايتي",
"displayName-count-many";
"جوردى هايتي",
"displayName-count-other";
"جوردى هايتي",
"symbol";
"HTG";
}
"HUF";
{
"displayName";
"فورينت مجري",
"displayName-count-zero";
"فورينت مجري",
"displayName-count-one";
"فورينت مجري",
"displayName-count-two";
"فورينت مجري",
"displayName-count-few";
"فورينت مجري",
"displayName-count-many";
"فورينت مجري",
"displayName-count-other";
"فورينت مجري",
"symbol";
"HUF",
"symbol-alt-narrow";
"Ft";
}
"IDR";
{
"displayName";
"روبية إندونيسية",
"displayName-count-zero";
"روبية إندونيسية",
"displayName-count-one";
"روبية إندونيسية",
"displayName-count-two";
"روبية إندونيسية",
"displayName-count-few";
"روبية إندونيسية",
"displayName-count-many";
"روبية إندونيسية",
"displayName-count-other";
"روبية إندونيسية",
"symbol";
"IDR",
"symbol-alt-narrow";
"Rp";
}
"IEP";
{
"displayName";
"جنيه إيرلندي",
"symbol";
"IEP";
}
"ILP";
{
"displayName";
"جنيه إسرائيلي",
"symbol";
"ILP";
}
"ILS";
{
"displayName";
"شيكل إسرائيلي جديد",
"displayName-count-zero";
"شيكل إسرائيلي جديد",
"displayName-count-one";
"شيكل إسرائيلي جديد",
"displayName-count-two";
"شيكل إسرائيلي جديد",
"displayName-count-few";
"شيكل إسرائيلي جديد",
"displayName-count-many";
"شيكل إسرائيلي جديد",
"displayName-count-other";
"شيكل إسرائيلي جديد",
"symbol";
"₪",
"symbol-alt-narrow";
"₪";
}
"INR";
{
"displayName";
"روبية هندي",
"displayName-count-zero";
"روبية هندي",
"displayName-count-one";
"روبية هندي",
"displayName-count-two";
"روبية هندي",
"displayName-count-few";
"روبية هندي",
"displayName-count-many";
"روبية هندي",
"displayName-count-other";
"روبية هندي",
"symbol";
"₹",
"symbol-alt-narrow";
"₹";
}
"IQD";
{
"displayName";
"دينار عراقي",
"displayName-count-zero";
"دينار عراقي",
"displayName-count-one";
"دينار عراقي",
"displayName-count-two";
"دينار عراقي",
"displayName-count-few";
"دينار عراقي",
"displayName-count-many";
"دينار عراقي",
"displayName-count-other";
"دينار عراقي",
"symbol";
"د.ع.";
}
"IRR";
{
"displayName";
"ريال إيراني",
"displayName-count-zero";
"ريال إيراني",
"displayName-count-one";
"ريال إيراني",
"displayName-count-two";
"ريال إيراني",
"displayName-count-few";
"ريال إيراني",
"displayName-count-many";
"ريال إيراني",
"displayName-count-other";
"ريال إيراني",
"symbol";
"ر.إ.";
}
"ISK";
{
"displayName";
"كرونه أيسلندي",
"displayName-count-zero";
"كرونه أيسلندي",
"displayName-count-one";
"كرونه أيسلندي",
"displayName-count-two";
"كرونه أيسلندي",
"displayName-count-few";
"كرونه أيسلندي",
"displayName-count-many";
"كرونه أيسلندي",
"displayName-count-other";
"كرونه أيسلندي",
"symbol";
"ISK",
"symbol-alt-narrow";
"kr";
}
"ITL";
{
"displayName";
"ليرة إيطالية",
"symbol";
"ITL";
}
"JMD";
{
"displayName";
"دولار جامايكي",
"displayName-count-zero";
"دولار جامايكي",
"displayName-count-one";
"دولار جامايكي",
"displayName-count-two";
"دولار جامايكي",
"displayName-count-few";
"دولار جامايكي",
"displayName-count-many";
"دولار جامايكي",
"displayName-count-other";
"دولار جامايكي",
"symbol";
"JMD",
"symbol-alt-narrow";
"JM$";
}
"JOD";
{
"displayName";
"دينار أردني",
"displayName-count-zero";
"دينار أردني",
"displayName-count-one";
"دينار أردني",
"displayName-count-two";
"دينار أردني",
"displayName-count-few";
"دينار أردني",
"displayName-count-many";
"دينار أردني",
"displayName-count-other";
"دينار أردني",
"symbol";
"د.أ.";
}
"JPY";
{
"displayName";
"ين ياباني",
"displayName-count-zero";
"ين ياباني",
"displayName-count-one";
"ين ياباني",
"displayName-count-two";
"ين ياباني",
"displayName-count-few";
"ين ياباني",
"displayName-count-many";
"ين ياباني",
"displayName-count-other";
"ين ياباني",
"symbol";
"JP¥",
"symbol-alt-narrow";
"JP¥";
}
"KES";
{
"displayName";
"شلن كينيي",
"displayName-count-zero";
"شلن كينيي",
"displayName-count-one";
"شلن كينيي",
"displayName-count-two";
"شلن كينيي",
"displayName-count-few";
"شلن كينيي",
"displayName-count-many";
"شلن كينيي",
"displayName-count-other";
"شلن كينيي",
"symbol";
"KES";
}
"KGS";
{
"displayName";
"سوم قيرغستاني",
"displayName-count-zero";
"سوم قيرغستاني",
"displayName-count-one";
"سوم قيرغستاني",
"displayName-count-two";
"سوم قيرغستاني",
"displayName-count-few";
"سوم قيرغستاني",
"displayName-count-many";
"سوم قيرغستاني",
"displayName-count-other";
"سوم قيرغستاني",
"symbol";
"KGS";
}
"KHR";
{
"displayName";
"رييال كمبودي",
"displayName-count-zero";
"رييال كمبودي",
"displayName-count-one";
"رييال كمبودي",
"displayName-count-two";
"رييال كمبودي",
"displayName-count-few";
"رييال كمبودي",
"displayName-count-many";
"رييال كمبودي",
"displayName-count-other";
"رييال كمبودي",
"symbol";
"KHR",
"symbol-alt-narrow";
"៛";
}
"KMF";
{
"displayName";
"فرنك جزر القمر",
"displayName-count-zero";
"فرنك جزر القمر",
"displayName-count-one";
"فرنك جزر القمر",
"displayName-count-two";
"فرنك جزر القمر",
"displayName-count-few";
"فرنك جزر القمر",
"displayName-count-many";
"فرنك جزر القمر",
"displayName-count-other";
"فرنك جزر القمر",
"symbol";
"ف.ج.ق.",
"symbol-alt-narrow";
"CF";
}
"KPW";
{
"displayName";
"وون كوريا الشمالية",
"displayName-count-zero";
"وون كوريا الشمالية",
"displayName-count-one";
"وون كوريا الشمالية",
"displayName-count-two";
"وون كوريا الشمالية",
"displayName-count-few";
"وون كوريا الشمالية",
"displayName-count-many";
"وون كوريا الشمالية",
"displayName-count-other";
"وون كوريا الشمالية",
"symbol";
"KPW",
"symbol-alt-narrow";
"₩";
}
"KRH";
{
"displayName";
"KRH",
"symbol";
"KRH";
}
"KRO";
{
"displayName";
"KRO",
"symbol";
"KRO";
}
"KRW";
{
"displayName";
"وون كوريا الجنوبية",
"displayName-count-zero";
"وون كوريا الجنوبية",
"displayName-count-one";
"وون كوريا الجنوبية",
"displayName-count-two";
"وون كوريا الجنوبية",
"displayName-count-few";
"وون كوريا الجنوبية",
"displayName-count-many";
"وون كوريا الجنوبية",
"displayName-count-other";
"وون كوريا الجنوبية",
"symbol";
"₩",
"symbol-alt-narrow";
"₩";
}
"KWD";
{
"displayName";
"دينار كويتي",
"displayName-count-zero";
"دينار كويتي",
"displayName-count-one";
"دينار كويتي",
"displayName-count-two";
"دينار كويتي",
"displayName-count-few";
"دينار كويتي",
"displayName-count-many";
"دينار كويتي",
"displayName-count-other";
"دينار كويتي",
"symbol";
"د.ك.";
}
"KYD";
{
"displayName";
"دولار جزر كيمن",
"displayName-count-zero";
"دولار جزر كيمن",
"displayName-count-one";
"دولار جزر كيمن",
"displayName-count-two";
"دولار جزر كيمن",
"displayName-count-few";
"دولار جزر كيمن",
"displayName-count-many";
"دولار جزر كيمن",
"displayName-count-other";
"دولار جزر كيمن",
"symbol";
"KYD",
"symbol-alt-narrow";
"KY$";
}
"KZT";
{
"displayName";
"تينغ كازاخستاني",
"displayName-count-zero";
"تينغ كازاخستاني",
"displayName-count-one";
"تينغ كازاخستاني",
"displayName-count-two";
"تينغ كازاخستاني",
"displayName-count-few";
"تينغ كازاخستاني",
"displayName-count-many";
"تينغ كازاخستاني",
"displayName-count-other";
"تينغ كازاخستاني",
"symbol";
"KZT",
"symbol-alt-narrow";
"₸";
}
"LAK";
{
"displayName";
"كيب لاوسي",
"displayName-count-zero";
"كيب لاوسي",
"displayName-count-one";
"كيب لاوسي",
"displayName-count-two";
"كيب لاوسي",
"displayName-count-few";
"كيب لاوسي",
"displayName-count-many";
"كيب لاوسي",
"displayName-count-other";
"كيب لاوسي",
"symbol";
"LAK",
"symbol-alt-narrow";
"₭";
}
"LBP";
{
"displayName";
"جنيه لبناني",
"displayName-count-zero";
"جنيه لبناني",
"displayName-count-one";
"جنيه لبناني",
"displayName-count-two";
"جنيه لبناني",
"displayName-count-few";
"جنيه لبناني",
"displayName-count-many";
"جنيه لبناني",
"displayName-count-other";
"جنيه لبناني",
"symbol";
"ل.ل.",
"symbol-alt-narrow";
"L£";
}
"LKR";
{
"displayName";
"روبية سريلانكية",
"displayName-count-zero";
"روبية سريلانكية",
"displayName-count-one";
"روبية سريلانكية",
"displayName-count-two";
"روبية سريلانكية",
"displayName-count-few";
"روبية سريلانكية",
"displayName-count-many";
"روبية سريلانكية",
"displayName-count-other";
"روبية سريلانكية",
"symbol";
"LKR",
"symbol-alt-narrow";
"Rs";
}
"LRD";
{
"displayName";
"دولار ليبيري",
"displayName-count-zero";
"دولار ليبيري",
"displayName-count-one";
"دولار ليبيري",
"displayName-count-two";
"دولاران ليبيريان",
"displayName-count-few";
"دولارات ليبيرية",
"displayName-count-many";
"دولارًا ليبيريًا",
"displayName-count-other";
"دولار ليبيري",
"symbol";
"LRD",
"symbol-alt-narrow";
"$";
}
"LSL";
{
"displayName";
"لوتي ليسوتو",
"symbol";
"LSL";
}
"LTL";
{
"displayName";
"ليتا ليتوانية",
"displayName-count-zero";
"ليتا ليتوانية",
"displayName-count-one";
"ليتا ليتوانية",
"displayName-count-two";
"ليتا ليتوانية",
"displayName-count-few";
"ليتا ليتوانية",
"displayName-count-many";
"ليتا ليتوانية",
"displayName-count-other";
"ليتا ليتوانية",
"symbol";
"LTL",
"symbol-alt-narrow";
"Lt";
}
"LTT";
{
"displayName";
"تالوناس ليتواني",
"symbol";
"LTT";
}
"LUC";
{
"displayName";
"فرنك لوكسمبرج قابل للتحويل",
"symbol";
"LUC";
}
"LUF";
{
"displayName";
"فرنك لوكسمبرج",
"symbol";
"LUF";
}
"LUL";
{
"displayName";
"فرنك لوكسمبرج المالي",
"symbol";
"LUL";
}
"LVL";
{
"displayName";
"لاتس لاتفيا",
"displayName-count-zero";
"لاتس لاتفي",
"displayName-count-one";
"لاتس لاتفي",
"displayName-count-two";
"لاتس لاتفي",
"displayName-count-few";
"لاتس لاتفي",
"displayName-count-many";
"لاتس لاتفي",
"displayName-count-other";
"لاتس لاتفي",
"symbol";
"LVL",
"symbol-alt-narrow";
"Ls";
}
"LVR";
{
"displayName";
"روبل لاتفيا",
"symbol";
"LVR";
}
"LYD";
{
"displayName";
"دينار ليبي",
"displayName-count-zero";
"دينار ليبي",
"displayName-count-one";
"دينار ليبي",
"displayName-count-two";
"ديناران ليبيان",
"displayName-count-few";
"دينارات ليبية",
"displayName-count-many";
"دينارًا ليبيًا",
"displayName-count-other";
"دينار ليبي",
"symbol";
"د.ل.";
}
"MAD";
{
"displayName";
"درهم مغربي",
"displayName-count-zero";
"درهم مغربي",
"displayName-count-one";
"درهم مغربي",
"displayName-count-two";
"درهمان مغربيان",
"displayName-count-few";
"دراهم مغربية",
"displayName-count-many";
"درهمًا مغربيًا",
"displayName-count-other";
"درهم مغربي",
"symbol";
"د.م.";
}
"MAF";
{
"displayName";
"فرنك مغربي",
"symbol";
"MAF";
}
"MCF";
{
"displayName";
"MCF",
"symbol";
"MCF";
}
"MDC";
{
"displayName";
"MDC",
"symbol";
"MDC";
}
"MDL";
{
"displayName";
"ليو مولدوفي",
"displayName-count-zero";
"ليو مولدوفي",
"displayName-count-one";
"ليو مولدوفي",
"displayName-count-two";
"ليو مولدوفي",
"displayName-count-few";
"ليو مولدوفي",
"displayName-count-many";
"ليو مولدوفي",
"displayName-count-other";
"ليو مولدوفي",
"symbol";
"MDL";
}
"MGA";
{
"displayName";
"أرياري مدغشقر",
"displayName-count-zero";
"أرياري مدغشقر",
"displayName-count-one";
"أرياري مدغشقر",
"displayName-count-two";
"أرياري مدغشقر",
"displayName-count-few";
"أرياري مدغشقر",
"displayName-count-many";
"أرياري مدغشقر",
"displayName-count-other";
"أرياري مدغشقر",
"symbol";
"MGA",
"symbol-alt-narrow";
"Ar";
}
"MGF";
{
"displayName";
"فرنك مدغشقر",
"symbol";
"MGF";
}
"MKD";
{
"displayName";
"دينار مقدوني",
"displayName-count-zero";
"دينار مقدوني",
"displayName-count-one";
"دينار مقدوني",
"displayName-count-two";
"ديناران مقدونيان",
"displayName-count-few";
"دينارات مقدونية",
"displayName-count-many";
"دينارًا مقدونيًا",
"displayName-count-other";
"دينار مقدوني",
"symbol";
"MKD";
}
"MKN";
{
"displayName";
"MKN",
"symbol";
"MKN";
}
"MLF";
{
"displayName";
"فرنك مالي",
"symbol";
"MLF";
}
"MMK";
{
"displayName";
"كيات ميانمار",
"displayName-count-zero";
"كيات ميانمار",
"displayName-count-one";
"كيات ميانمار",
"displayName-count-two";
"كيات ميانمار",
"displayName-count-few";
"كيات ميانمار",
"displayName-count-many";
"كيات ميانمار",
"displayName-count-other";
"كيات ميانمار",
"symbol";
"MMK",
"symbol-alt-narrow";
"K";
}
"MNT";
{
"displayName";
"توغروغ منغولي",
"displayName-count-zero";
"توغروغ منغولي",
"displayName-count-one";
"توغروغ منغولي",
"displayName-count-two";
"توغروغ منغولي",
"displayName-count-few";
"توغروغ منغولي",
"displayName-count-many";
"توغروغ منغولي",
"displayName-count-other";
"توغروغ منغولي",
"symbol";
"MNT",
"symbol-alt-narrow";
"₮";
}
"MOP";
{
"displayName";
"باتاكا ماكاوي",
"displayName-count-zero";
"باتاكا ماكاوي",
"displayName-count-one";
"باتاكا ماكاوي",
"displayName-count-two";
"باتاكا ماكاوي",
"displayName-count-few";
"باتاكا ماكاوي",
"displayName-count-many";
"باتاكا ماكاوي",
"displayName-count-other";
"باتاكا ماكاوي",
"symbol";
"MOP";
}
"MRO";
{
"displayName";
"أوقية موريتانية",
"displayName-count-zero";
"أوقية موريتانية",
"displayName-count-one";
"أوقية موريتانية",
"displayName-count-two";
"أوقية موريتانية",
"displayName-count-few";
"أوقية موريتانية",
"displayName-count-many";
"أوقية موريتانية",
"displayName-count-other";
"أوقية موريتانية",
"symbol";
"أ.م.";
}
"MTL";
{
"displayName";
"ليرة مالطية",
"symbol";
"MTL";
}
"MTP";
{
"displayName";
"جنيه مالطي",
"symbol";
"MTP";
}
"MUR";
{
"displayName";
"روبية موريشيوسية",
"displayName-count-zero";
"روبية موريشيوسية",
"displayName-count-one";
"روبية موريشيوسية",
"displayName-count-two";
"روبية موريشيوسية",
"displayName-count-few";
"روبية موريشيوسية",
"displayName-count-many";
"روبية موريشيوسية",
"displayName-count-other";
"روبية موريشيوسية",
"symbol";
"MUR",
"symbol-alt-narrow";
"Rs";
}
"MVR";
{
"displayName";
"روفيه جزر المالديف",
"displayName-count-zero";
"روفيه جزر المالديف",
"displayName-count-one";
"روفيه جزر المالديف",
"displayName-count-two";
"روفيه جزر المالديف",
"displayName-count-few";
"روفيه جزر المالديف",
"displayName-count-many";
"روفيه جزر المالديف",
"displayName-count-other";
"روفيه جزر المالديف",
"symbol";
"MVR";
}
"MWK";
{
"displayName";
"كواشا مالاوي",
"displayName-count-zero";
"كواشا مالاوي",
"displayName-count-one";
"كواشا مالاوي",
"displayName-count-two";
"كواشا مالاوي",
"displayName-count-few";
"كواشا مالاوي",
"displayName-count-many";
"كواشا مالاوي",
"displayName-count-other";
"كواشا مالاوي",
"symbol";
"MWK";
}
"MXN";
{
"displayName";
"بيزو مكسيكي",
"displayName-count-zero";
"بيزو مكسيكي",
"displayName-count-one";
"بيزو مكسيكي",
"displayName-count-two";
"بيزو مكسيكي",
"displayName-count-few";
"بيزو مكسيكي",
"displayName-count-many";
"بيزو مكسيكي",
"displayName-count-other";
"بيزو مكسيكي",
"symbol";
"MX$",
"symbol-alt-narrow";
"MX$";
}
"MXP";
{
"displayName";
"بيزو فضي مكسيكي - 1861-1992",
"symbol";
"MXP";
}
"MXV";
{
"displayName";
"MXV",
"symbol";
"MXV";
}
"MYR";
{
"displayName";
"رينغيت ماليزي",
"displayName-count-zero";
"رينغيت ماليزي",
"displayName-count-one";
"رينغيت ماليزي",
"displayName-count-two";
"رينغيت ماليزي",
"displayName-count-few";
"رينغيت ماليزي",
"displayName-count-many";
"رينغيت ماليزي",
"displayName-count-other";
"رينغيت ماليزي",
"symbol";
"MYR",
"symbol-alt-narrow";
"RM";
}
"MZE";
{
"displayName";
"اسكود موزمبيقي",
"symbol";
"MZE";
}
"MZM";
{
"displayName";
"MZM",
"symbol";
"MZM";
}
"MZN";
{
"displayName";
"متكال موزمبيقي",
"displayName-count-zero";
"متكال موزمبيقي",
"displayName-count-one";
"متكال موزمبيقي",
"displayName-count-two";
"متكال موزمبيقي",
"displayName-count-few";
"متكال موزمبيقي",
"displayName-count-many";
"متكال موزمبيقي",
"displayName-count-other";
"متكال موزمبيقي",
"symbol";
"MZN";
}
"NAD";
{
"displayName";
"دولار ناميبي",
"displayName-count-zero";
"دولار ناميبي",
"displayName-count-one";
"دولار ناميبي",
"displayName-count-two";
"دولار ناميبي",
"displayName-count-few";
"دولار ناميبي",
"displayName-count-many";
"دولار ناميبي",
"displayName-count-other";
"دولار ناميبي",
"symbol";
"NAD",
"symbol-alt-narrow";
"$";
}
"NGN";
{
"displayName";
"نايرا نيجيري",
"displayName-count-zero";
"نايرا نيجيري",
"displayName-count-one";
"نايرا نيجيري",
"displayName-count-two";
"نايرا نيجيري",
"displayName-count-few";
"نايرا نيجيري",
"displayName-count-many";
"نايرا نيجيري",
"displayName-count-other";
"نايرا نيجيري",
"symbol";
"NGN",
"symbol-alt-narrow";
"₦";
}
"NIC";
{
"displayName";
"كوردوبة نيكاراجوا",
"symbol";
"NIC";
}
"NIO";
{
"displayName";
"قرطبة نيكاراغوا",
"displayName-count-zero";
"قرطبة نيكاراغوا",
"displayName-count-one";
"قرطبة نيكاراغوا",
"displayName-count-two";
"قرطبة نيكاراغوا",
"displayName-count-few";
"قرطبة نيكاراغوا",
"displayName-count-many";
"قرطبة نيكاراغوا",
"displayName-count-other";
"قرطبة نيكاراغوا",
"symbol";
"NIO",
"symbol-alt-narrow";
"C$";
}
"NLG";
{
"displayName";
"جلدر هولندي",
"symbol";
"NLG";
}
"NOK";
{
"displayName";
"كرونة نرويجية",
"displayName-count-zero";
"كرونة نرويجية",
"displayName-count-one";
"كرونة نرويجية",
"displayName-count-two";
"كرونة نرويجية",
"displayName-count-few";
"كرونة نرويجية",
"displayName-count-many";
"كرونة نرويجية",
"displayName-count-other";
"كرونة نرويجية",
"symbol";
"NOK",
"symbol-alt-narrow";
"kr";
}
"NPR";
{
"displayName";
"روبية نيبالي",
"displayName-count-zero";
"روبية نيبالي",
"displayName-count-one";
"روبية نيبالي",
"displayName-count-two";
"روبية نيبالي",
"displayName-count-few";
"روبية نيبالي",
"displayName-count-many";
"روبية نيبالي",
"displayName-count-other";
"روبية نيبالي",
"symbol";
"NPR",
"symbol-alt-narrow";
"Rs";
}
"NZD";
{
"displayName";
"دولار نيوزيلندي",
"displayName-count-zero";
"دولار نيوزيلندي",
"displayName-count-one";
"دولار نيوزيلندي",
"displayName-count-two";
"دولار نيوزيلندي",
"displayName-count-few";
"دولار نيوزيلندي",
"displayName-count-many";
"دولار نيوزيلندي",
"displayName-count-other";
"دولار نيوزيلندي",
"symbol";
"NZ$",
"symbol-alt-narrow";
"NZ$";
}
"OMR";
{
"displayName";
"ريال عماني",
"displayName-count-zero";
"ريال عماني",
"displayName-count-one";
"ريال عماني",
"displayName-count-two";
"ريال عماني",
"displayName-count-few";
"ريال عماني",
"displayName-count-many";
"ريال عماني",
"displayName-count-other";
"ريال عماني",
"symbol";
"ر.ع.";
}
"PAB";
{
"displayName";
"بالبوا بنمي",
"displayName-count-zero";
"بالبوا بنمي",
"displayName-count-one";
"بالبوا بنمي",
"displayName-count-two";
"بالبوا بنمي",
"displayName-count-few";
"بالبوا بنمي",
"displayName-count-many";
"بالبوا بنمي",
"displayName-count-other";
"بالبوا بنمي",
"symbol";
"PAB";
}
"PEI";
{
"displayName";
"PEI",
"symbol";
"PEI";
}
"PEN";
{
"displayName";
"سول جديد البيرو",
"displayName-count-zero";
"سول جديد البيرو",
"displayName-count-one";
"سول جديد البيرو",
"displayName-count-two";
"سول جديد البيرو",
"displayName-count-few";
"سول جديد البيرو",
"displayName-count-many";
"سول جديد البيرو",
"displayName-count-other";
"سول جديد البيرو",
"symbol";
"PEN";
}
"PES";
{
"displayName";
"PES",
"symbol";
"PES";
}
"PGK";
{
"displayName";
"كينا بابوا غينيا الجديدة",
"displayName-count-zero";
"كينا بابوا غينيا الجديدة",
"displayName-count-one";
"كينا بابوا غينيا الجديدة",
"displayName-count-two";
"كينا بابوا غينيا الجديدة",
"displayName-count-few";
"كينا بابوا غينيا الجديدة",
"displayName-count-many";
"كينا بابوا غينيا الجديدة",
"displayName-count-other";
"كينا بابوا غينيا الجديدة",
"symbol";
"PGK";
}
"PHP";
{
"displayName";
"بيزو فلبيني",
"displayName-count-zero";
"بيزو فلبيني",
"displayName-count-one";
"بيزو فلبيني",
"displayName-count-two";
"بيزو فلبيني",
"displayName-count-few";
"بيزو فلبيني",
"displayName-count-many";
"بيزو فلبيني",
"displayName-count-other";
"بيزو فلبيني",
"symbol";
"PHP",
"symbol-alt-narrow";
"₱";
}
"PKR";
{
"displayName";
"روبية باكستاني",
"displayName-count-zero";
"روبية باكستاني",
"displayName-count-one";
"روبية باكستاني",
"displayName-count-two";
"روبية باكستاني",
"displayName-count-few";
"روبية باكستاني",
"displayName-count-many";
"روبية باكستاني",
"displayName-count-other";
"روبية باكستاني",
"symbol";
"PKR",
"symbol-alt-narrow";
"Rs";
}
"PLN";
{
"displayName";
"زلوتي بولندي",
"displayName-count-zero";
"زلوتي بولندي",
"displayName-count-one";
"زلوتي بولندي",
"displayName-count-two";
"زلوتي بولندي",
"displayName-count-few";
"زلوتي بولندي",
"displayName-count-many";
"زلوتي بولندي",
"displayName-count-other";
"زلوتي بولندي",
"symbol";
"PLN",
"symbol-alt-narrow";
"zł";
}
"PLZ";
{
"displayName";
"زلوتي بولندي - 1950-1995",
"symbol";
"PLZ";
}
"PTE";
{
"displayName";
"اسكود برتغالي",
"symbol";
"PTE";
}
"PYG";
{
"displayName";
"جواراني باراجواي",
"displayName-count-zero";
"جواراني باراجواي",
"displayName-count-one";
"جواراني باراجواي",
"displayName-count-two";
"جواراني باراجواي",
"displayName-count-few";
"جواراني باراجواي",
"displayName-count-many";
"جواراني باراجواي",
"displayName-count-other";
"جواراني باراجواي",
"symbol";
"PYG",
"symbol-alt-narrow";
"₲";
}
"QAR";
{
"displayName";
"ريال قطري",
"displayName-count-zero";
"ريال قطري",
"displayName-count-one";
"ريال قطري",
"displayName-count-two";
"ريال قطري",
"displayName-count-few";
"ريال قطري",
"displayName-count-many";
"ريال قطري",
"displayName-count-other";
"ريال قطري",
"symbol";
"ر.ق.";
}
"RHD";
{
"displayName";
"دولار روديسي",
"symbol";
"RHD";
}
"ROL";
{
"displayName";
"ليو روماني قديم",
"symbol";
"ROL";
}
"RON";
{
"displayName";
"ليو روماني",
"displayName-count-zero";
"ليو روماني",
"displayName-count-one";
"ليو روماني",
"displayName-count-two";
"ليو روماني",
"displayName-count-few";
"ليو روماني",
"displayName-count-many";
"ليو روماني",
"displayName-count-other";
"ليو روماني",
"symbol";
"RON",
"symbol-alt-narrow";
"lei";
}
"RSD";
{
"displayName";
"دينار صربي",
"displayName-count-zero";
"دينار صربي",
"displayName-count-one";
"دينار صربي",
"displayName-count-two";
"ديناران صربيان",
"displayName-count-few";
"دينارات صربية",
"displayName-count-many";
"دينارًا صربيًا",
"displayName-count-other";
"دينار صربي",
"symbol";
"RSD";
}
"RUB";
{
"displayName";
"روبل روسي",
"displayName-count-zero";
"روبل روسي",
"displayName-count-one";
"روبل روسي",
"displayName-count-two";
"روبل روسي",
"displayName-count-few";
"روبل روسي",
"displayName-count-many";
"روبل روسي",
"displayName-count-other";
"روبل روسي",
"symbol";
"RUB",
"symbol-alt-narrow";
"₽";
}
"RUR";
{
"displayName";
"روبل روسي - 1991-1998",
"symbol";
"RUR",
"symbol-alt-narrow";
"р.";
}
"RWF";
{
"displayName";
"فرنك رواندي",
"displayName-count-zero";
"فرنك رواندي",
"displayName-count-one";
"فرنك رواندي",
"displayName-count-two";
"فرنك رواندي",
"displayName-count-few";
"فرنك رواندي",
"displayName-count-many";
"فرنك رواندي",
"displayName-count-other";
"فرنك رواندي",
"symbol";
"RWF",
"symbol-alt-narrow";
"RF";
}
"SAR";
{
"displayName";
"ريال سعودي",
"displayName-count-zero";
"ريال سعودي",
"displayName-count-one";
"ريال سعودي",
"displayName-count-two";
"ريال سعودي",
"displayName-count-few";
"ريال سعودي",
"displayName-count-many";
"ريال سعودي",
"displayName-count-other";
"ريال سعودي",
"symbol";
"ر.س.";
}
"SBD";
{
"displayName";
"دولار جزر سليمان",
"displayName-count-zero";
"دولار جزر سليمان",
"displayName-count-one";
"دولار جزر سليمان",
"displayName-count-two";
"دولار جزر سليمان",
"displayName-count-few";
"دولار جزر سليمان",
"displayName-count-many";
"دولار جزر سليمان",
"displayName-count-other";
"دولار جزر سليمان",
"symbol";
"SBD",
"symbol-alt-narrow";
"SB$";
}
"SCR";
{
"displayName";
"روبية سيشيلية",
"displayName-count-zero";
"روبية سيشيلية",
"displayName-count-one";
"روبية سيشيلية",
"displayName-count-two";
"روبية سيشيلية",
"displayName-count-few";
"روبية سيشيلية",
"displayName-count-many";
"روبية سيشيلية",
"displayName-count-other";
"روبية سيشيلية",
"symbol";
"SCR";
}
"SDD";
{
"displayName";
"دينار سوداني",
"symbol";
"د.س.";
}
"SDG";
{
"displayName";
"جنيه سوداني",
"displayName-count-zero";
"جنيه سوداني",
"displayName-count-one";
"جنيه سوداني",
"displayName-count-two";
"جنيه سوداني",
"displayName-count-few";
"جنيهات سودانية",
"displayName-count-many";
"جنيهًا سودانيًا",
"displayName-count-other";
"جنيه سوداني",
"symbol";
"ج.س.";
}
"SDP";
{
"displayName";
"جنيه سوداني قديم",
"symbol";
"SDP";
}
"SEK";
{
"displayName";
"كرونة سويدية",
"displayName-count-zero";
"كرونة سويدية",
"displayName-count-one";
"كرونة سويدية",
"displayName-count-two";
"كرونة سويدية",
"displayName-count-few";
"كرونة سويدية",
"displayName-count-many";
"كرونة سويدية",
"displayName-count-other";
"كرونة سويدية",
"symbol";
"SEK",
"symbol-alt-narrow";
"kr";
}
"SGD";
{
"displayName";
"دولار سنغافوري",
"displayName-count-zero";
"دولار سنغافوري",
"displayName-count-one";
"دولار سنغافوري",
"displayName-count-two";
"دولار سنغافوري",
"displayName-count-few";
"دولار سنغافوري",
"displayName-count-many";
"دولار سنغافوري",
"displayName-count-other";
"دولار سنغافوري",
"symbol";
"SGD",
"symbol-alt-narrow";
"$";
}
"SHP";
{
"displayName";
"جنيه سانت هيلين",
"displayName-count-zero";
"جنيه سانت هيلين",
"displayName-count-one";
"جنيه سانت هيلين",
"displayName-count-two";
"جنيه سانت هيلين",
"displayName-count-few";
"جنيه سانت هيلين",
"displayName-count-many";
"جنيه سانت هيلين",
"displayName-count-other";
"جنيه سانت هيلين",
"symbol";
"SHP",
"symbol-alt-narrow";
"£";
}
"SIT";
{
"displayName";
"تولار سلوفيني",
"symbol";
"SIT";
}
"SKK";
{
"displayName";
"كرونة سلوفاكية",
"symbol";
"SKK";
}
"SLL";
{
"displayName";
"ليون سيراليوني",
"displayName-count-zero";
"ليون سيراليوني",
"displayName-count-one";
"ليون سيراليوني",
"displayName-count-two";
"ليون سيراليوني",
"displayName-count-few";
"ليون سيراليوني",
"displayName-count-many";
"ليون سيراليوني",
"displayName-count-other";
"ليون سيراليوني",
"symbol";
"SLL";
}
"SOS";
{
"displayName";
"شلن صومالي",
"displayName-count-zero";
"شلن صومالي",
"displayName-count-one";
"شلن صومالي",
"displayName-count-two";
"شلن صومالي",
"displayName-count-few";
"شلن صومالي",
"displayName-count-many";
"شلن صومالي",
"displayName-count-other";
"شلن صومالي",
"symbol";
"SOS";
}
"SRD";
{
"displayName";
"دولار سورينامي",
"displayName-count-zero";
"دولار سورينامي",
"displayName-count-one";
"دولار سورينامي",
"displayName-count-two";
"دولار سورينامي",
"displayName-count-few";
"دولار سورينامي",
"displayName-count-many";
"دولار سورينامي",
"displayName-count-other";
"دولار سورينامي",
"symbol";
"SRD",
"symbol-alt-narrow";
"SR$";
}
"SRG";
{
"displayName";
"جلدر سورينامي",
"symbol";
"SRG";
}
"SSP";
{
"displayName";
"جنيه جنوب السودان",
"displayName-count-zero";
"جنيه جنوب السودان",
"displayName-count-one";
"جنيه جنوب السودان",
"displayName-count-two";
"جنيهان جنوب السودان",
"displayName-count-few";
"جنيهات جنوب السودان",
"displayName-count-many";
"جنيهًا جنوب السودان",
"displayName-count-other";
"جنيه جنوب السودان",
"symbol";
"SSP",
"symbol-alt-narrow";
"£";
}
"STD";
{
"displayName";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-zero";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-one";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-two";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-few";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-many";
"دوبرا ساو تومي وبرينسيبي",
"displayName-count-other";
"دوبرا ساو تومي وبرينسيبي",
"symbol";
"STD",
"symbol-alt-narrow";
"Db";
}
"SUR";
{
"displayName";
"روبل سوفيتي",
"symbol";
"SUR";
}
"SVC";
{
"displayName";
"كولون سلفادوري",
"symbol";
"SVC";
}
"SYP";
{
"displayName";
"ليرة سورية",
"displayName-count-zero";
"ليرة سورية",
"displayName-count-one";
"ليرة سورية",
"displayName-count-two";
"ليرة سورية",
"displayName-count-few";
"ليرة سورية",
"displayName-count-many";
"ليرة سورية",
"displayName-count-other";
"ليرة سورية",
"symbol";
"ل.س.",
"symbol-alt-narrow";
"£";
}
"SZL";
{
"displayName";
"ليلانجيني سوازيلندي",
"displayName-count-zero";
"ليلانجيني سوازيلندي",
"displayName-count-one";
"ليلانجيني سوازيلندي",
"displayName-count-two";
"ليلانجيني سوازيلندي",
"displayName-count-few";
"ليلانجيني سوازيلندي",
"displayName-count-many";
"ليلانجيني سوازيلندي",
"displayName-count-other";
"ليلانجيني سوازيلندي",
"symbol";
"SZL";
}
"THB";
{
"displayName";
"باخت تايلاندي",
"displayName-count-zero";
"باخت تايلاندي",
"displayName-count-one";
"باخت تايلاندي",
"displayName-count-two";
"باخت تايلاندي",
"displayName-count-few";
"باخت تايلاندي",
"displayName-count-many";
"باخت تايلاندي",
"displayName-count-other";
"باخت تايلاندي",
"symbol";
"฿",
"symbol-alt-narrow";
"฿";
}
"TJR";
{
"displayName";
"روبل طاجيكستاني",
"symbol";
"TJR";
}
"TJS";
{
"displayName";
"سوموني طاجيكستاني",
"displayName-count-zero";
"سوموني طاجيكستاني",
"displayName-count-one";
"سوموني طاجيكستاني",
"displayName-count-two";
"سوموني طاجيكستاني",
"displayName-count-few";
"سوموني طاجيكستاني",
"displayName-count-many";
"سوموني طاجيكستاني",
"displayName-count-other";
"سوموني طاجيكستاني",
"symbol";
"TJS";
}
"TMM";
{
"displayName";
"مانات تركمنستاني",
"symbol";
"TMM";
}
"TMT";
{
"displayName";
"مانات تركمانستان",
"displayName-count-zero";
"مانات تركمانستان",
"displayName-count-one";
"مانات تركمانستان",
"displayName-count-two";
"مانات تركمانستان",
"displayName-count-few";
"مانات تركمانستان",
"displayName-count-many";
"مانات تركمانستان",
"displayName-count-other";
"مانات تركمانستان",
"symbol";
"TMT";
}
"TND";
{
"displayName";
"دينار تونسي",
"displayName-count-zero";
"دينار تونسي",
"displayName-count-one";
"دينار تونسي",
"displayName-count-two";
"ديناران تونسيان",
"displayName-count-few";
"دينارات تونسية",
"displayName-count-many";
"دينارًا تونسيًا",
"displayName-count-other";
"دينار تونسي",
"symbol";
"د.ت.";
}
"TOP";
{
"displayName";
"بانغا تونغا",
"displayName-count-zero";
"بانغا تونغا",
"displayName-count-one";
"بانغا تونغا",
"displayName-count-two";
"بانغا تونغا",
"displayName-count-few";
"بانغا تونغا",
"displayName-count-many";
"بانغا تونغا",
"displayName-count-other";
"بانغا تونغا",
"symbol";
"TOP",
"symbol-alt-narrow";
"T$";
}
"TPE";
{
"displayName";
"اسكود تيموري",
"symbol";
"TPE";
}
"TRL";
{
"displayName";
"ليرة تركي",
"symbol";
"TRL";
}
"TRY";
{
"displayName";
"ليرة تركية",
"displayName-count-zero";
"ليرة تركية",
"displayName-count-one";
"ليرة تركية",
"displayName-count-two";
"ليرة تركية",
"displayName-count-few";
"ليرة تركية",
"displayName-count-many";
"ليرة تركية",
"displayName-count-other";
"ليرة تركية",
"symbol";
"TRY",
"symbol-alt-narrow";
"₺",
"symbol-alt-variant";
"TL";
}
"TTD";
{
"displayName";
"دولار ترينداد وتوباجو",
"displayName-count-zero";
"دولار ترينداد وتوباجو",
"displayName-count-one";
"دولار ترينداد وتوباجو",
"displayName-count-two";
"دولار ترينداد وتوباجو",
"displayName-count-few";
"دولار ترينداد وتوباجو",
"displayName-count-many";
"دولار ترينداد وتوباجو",
"displayName-count-other";
"دولار ترينداد وتوباجو",
"symbol";
"TTD",
"symbol-alt-narrow";
"TT$";
}
"TWD";
{
"displayName";
"دولار تايواني",
"displayName-count-zero";
"دولار تايواني",
"displayName-count-one";
"دولار تايواني",
"displayName-count-two";
"دولار تايواني",
"displayName-count-few";
"دولار تايواني",
"displayName-count-many";
"دولار تايواني",
"displayName-count-other";
"دولار تايواني",
"symbol";
"NT$",
"symbol-alt-narrow";
"NT$";
}
"TZS";
{
"displayName";
"شلن تنزاني",
"displayName-count-zero";
"شلن تنزاني",
"displayName-count-one";
"شلن تنزاني",
"displayName-count-two";
"شلن تنزاني",
"displayName-count-few";
"شلن تنزاني",
"displayName-count-many";
"شلن تنزاني",
"displayName-count-other";
"شلن تنزاني",
"symbol";
"TZS";
}
"UAH";
{
"displayName";
"هريفنيا أوكراني",
"displayName-count-zero";
"هريفنيا أوكراني",
"displayName-count-one";
"هريفنيا أوكراني",
"displayName-count-two";
"هريفنيا أوكراني",
"displayName-count-few";
"هريفنيا أوكراني",
"displayName-count-many";
"هريفنيا أوكراني",
"displayName-count-other";
"هريفنيا أوكراني",
"symbol";
"UAH",
"symbol-alt-narrow";
"₴";
}
"UAK";
{
"displayName";
"UAK",
"symbol";
"UAK";
}
"UGS";
{
"displayName";
"شلن أوغندي - 1966-1987",
"symbol";
"UGS";
}
"UGX";
{
"displayName";
"شلن أوغندي",
"displayName-count-zero";
"شلن أوغندي",
"displayName-count-one";
"شلن أوغندي",
"displayName-count-two";
"شلن أوغندي",
"displayName-count-few";
"شلن أوغندي",
"displayName-count-many";
"شلن أوغندي",
"displayName-count-other";
"شلن أوغندي",
"symbol";
"UGX";
}
"USD";
{
"displayName";
"دولار أمريكي",
"displayName-count-zero";
"دولار أمريكي",
"displayName-count-one";
"دولار أمريكي",
"displayName-count-two";
"دولار أمريكي",
"displayName-count-few";
"دولار أمريكي",
"displayName-count-many";
"دولار أمريكي",
"displayName-count-other";
"دولار أمريكي",
"symbol";
"US$",
"symbol-alt-narrow";
"US$";
}
"USN";
{
"displayName";
"دولار أمريكي (اليوم التالي)",
"symbol";
"USN";
}
"USS";
{
"displayName";
"دولار أمريكي (نفس اليوم)",
"symbol";
"USS";
}
"UYI";
{
"displayName";
"UYI",
"symbol";
"UYI";
}
"UYP";
{
"displayName";
"بيزو أوروجواي - 1975-1993",
"symbol";
"UYP";
}
"UYU";
{
"displayName";
"بيزو اوروغواي",
"displayName-count-zero";
"بيزو اوروغواي",
"displayName-count-one";
"بيزو اوروغواي",
"displayName-count-two";
"بيزو اوروغواي",
"displayName-count-few";
"بيزو اوروغواي",
"displayName-count-many";
"بيزو اوروغواي",
"displayName-count-other";
"بيزو اوروغواي",
"symbol";
"UYU",
"symbol-alt-narrow";
"UY$";
}
"UZS";
{
"displayName";
"سوم أوزبكستاني",
"displayName-count-zero";
"سوم أوزبكستاني",
"displayName-count-one";
"سوم أوزبكستاني",
"displayName-count-two";
"سوم أوزبكستاني",
"displayName-count-few";
"سوم أوزبكستاني",
"displayName-count-many";
"سوم أوزبكستاني",
"displayName-count-other";
"سوم أوزبكستاني",
"symbol";
"UZS";
}
"VEB";
{
"displayName";
"بوليفار فنزويلي - 1871-2008",
"symbol";
"VEB";
}
"VEF";
{
"displayName";
"بوليفار فنزويلي",
"displayName-count-zero";
"بوليفار فنزويلي",
"displayName-count-one";
"بوليفار فنزويلي",
"displayName-count-two";
"بوليفار فنزويلي",
"displayName-count-few";
"بوليفار فنزويلي",
"displayName-count-many";
"بوليفار فنزويلي",
"displayName-count-other";
"بوليفار فنزويلي",
"symbol";
"VEF",
"symbol-alt-narrow";
"Bs";
}
"VND";
{
"displayName";
"دونج فيتنامي",
"displayName-count-zero";
"دونج فيتنامي",
"displayName-count-one";
"دونج فيتنامي",
"displayName-count-two";
"دونج فيتنامي",
"displayName-count-few";
"دونج فيتنامي",
"displayName-count-many";
"دونج فيتنامي",
"displayName-count-other";
"دونج فيتنامي",
"symbol";
"₫",
"symbol-alt-narrow";
"₫";
}
"VNN";
{
"displayName";
"VNN",
"symbol";
"VNN";
}
"VUV";
{
"displayName";
"فاتو فانواتو",
"displayName-count-zero";
"فاتو فانواتو",
"displayName-count-one";
"فاتو فانواتو",
"displayName-count-two";
"فاتو فانواتو",
"displayName-count-few";
"فاتو فانواتو",
"displayName-count-many";
"فاتو فانواتو",
"displayName-count-other";
"فاتو فانواتو",
"symbol";
"VUV";
}
"WST";
{
"displayName";
"تالا ساموا",
"displayName-count-zero";
"تالا ساموا",
"displayName-count-one";
"تالا ساموا",
"displayName-count-two";
"تالا ساموا",
"displayName-count-few";
"تالا ساموا",
"displayName-count-many";
"تالا ساموا",
"displayName-count-other";
"تالا ساموا",
"symbol";
"WST";
}
"XAF";
{
"displayName";
"فرنك وسط أفريقي",
"displayName-count-zero";
"فرنك وسط أفريقي",
"displayName-count-one";
"فرنك وسط أفريقي",
"displayName-count-two";
"فرنك وسط أفريقي",
"displayName-count-few";
"فرنك وسط أفريقي",
"displayName-count-many";
"فرنك وسط أفريقي",
"displayName-count-other";
"فرنك وسط أفريقي",
"symbol";
"FCFA";
}
"XAG";
{
"displayName";
"فضة",
"symbol";
"XAG";
}
"XAU";
{
"displayName";
"ذهب",
"symbol";
"XAU";
}
"XBA";
{
"displayName";
"الوحدة الأوروبية المركبة",
"symbol";
"XBA";
}
"XBB";
{
"displayName";
"الوحدة المالية الأوروبية",
"symbol";
"XBB";
}
"XBC";
{
"displayName";
"الوحدة الحسابية الأوروبية",
"symbol";
"XBC";
}
"XBD";
{
"displayName";
"(XBD)وحدة الحساب الأوروبية",
"symbol";
"XBD";
}
"XCD";
{
"displayName";
"دولار شرق الكاريبي",
"displayName-count-zero";
"دولار شرق الكاريبي",
"displayName-count-one";
"دولار شرق الكاريبي",
"displayName-count-two";
"دولار شرق الكاريبي",
"displayName-count-few";
"دولار شرق الكاريبي",
"displayName-count-many";
"دولار شرق الكاريبي",
"displayName-count-other";
"دولار شرق الكاريبي",
"symbol";
"EC$",
"symbol-alt-narrow";
"$";
}
"XDR";
{
"displayName";
"حقوق السحب الخاصة",
"symbol";
"XDR";
}
"XEU";
{
"displayName";
"وحدة النقد الأوروبية",
"symbol";
"XEU";
}
"XFO";
{
"displayName";
"فرنك فرنسي ذهبي",
"symbol";
"XFO";
}
"XFU";
{
"displayName";
"(UIC)فرنك فرنسي",
"symbol";
"XFU";
}
"XOF";
{
"displayName";
"فرنك غرب أفريقي",
"displayName-count-zero";
"فرنك غرب أفريقي",
"displayName-count-one";
"فرنك غرب أفريقي",
"displayName-count-two";
"فرنك غرب أفريقي",
"displayName-count-few";
"فرنك غرب أفريقي",
"displayName-count-many";
"فرنك غرب أفريقي",
"displayName-count-other";
"فرنك غرب أفريقي",
"symbol";
"CFA";
}
"XPD";
{
"displayName";
"بالاديوم",
"symbol";
"XPD";
}
"XPF";
{
"displayName";
"فرنك سي إف بي",
"displayName-count-zero";
"فرنك سي إف بي",
"displayName-count-one";
"فرنك سي إف بي",
"displayName-count-two";
"فرنك سي إف بي",
"displayName-count-few";
"فرنك سي إف بي",
"displayName-count-many";
"فرنك سي إف بي",
"displayName-count-other";
"فرنك سي إف بي",
"symbol";
"CFPF";
}
"XPT";
{
"displayName";
"البلاتين",
"symbol";
"XPT";
}
"XRE";
{
"displayName";
"XRE",
"symbol";
"XRE";
}
"XSU";
{
"displayName";
"XSU",
"symbol";
"XSU";
}
"XTS";
{
"displayName";
"كود اختبار العملة",
"symbol";
"XTS";
}
"XUA";
{
"displayName";
"XUA",
"symbol";
"XUA";
}
"XXX";
{
"displayName";
"عملة غير معروفة",
"displayName-count-zero";
"(عملة غير معروفة)",
"displayName-count-one";
"(عملة غير معروفة)",
"displayName-count-two";
"(عملة غير معروفة)",
"displayName-count-few";
"(عملة غير معروفة)",
"displayName-count-many";
"(عملة غير معروفة)",
"displayName-count-other";
"(عملة غير معروفة)",
"symbol";
"***";
}
"YDD";
{
"displayName";
"دينار يمني",
"symbol";
"YDD";
}
"YER";
{
"displayName";
"ريال يمني",
"displayName-count-zero";
"ريال يمني",
"displayName-count-one";
"ريال يمني",
"displayName-count-two";
"ريال يمني",
"displayName-count-few";
"ريال يمني",
"displayName-count-many";
"ريال يمني",
"displayName-count-other";
"ريال يمني",
"symbol";
"ر.ي.";
}
"YUD";
{
"displayName";
"دينار يوغسلافي",
"symbol";
"YUD";
}
"YUM";
{
"displayName";
"YUM",
"symbol";
"YUM";
}
"YUN";
{
"displayName";
"دينار يوغسلافي قابل للتحويل",
"symbol";
"YUN";
}
"YUR";
{
"displayName";
"YUR",
"symbol";
"YUR";
}
"ZAL";
{
"displayName";
"راند جنوب أفريقيا -مالي",
"symbol";
"ZAL";
}
"ZAR";
{
"displayName";
"راند جنوب أفريقيا",
"displayName-count-zero";
"راند جنوب أفريقيا",
"displayName-count-one";
"راند جنوب أفريقيا",
"displayName-count-two";
"راند جنوب أفريقيا",
"displayName-count-few";
"راند جنوب أفريقيا",
"displayName-count-many";
"راند جنوب أفريقيا",
"displayName-count-other";
"راند جنوب أفريقيا",
"symbol";
"ZAR",
"symbol-alt-narrow";
"R";
}
"ZMK";
{
"displayName";
"كواشا زامبي - 1968-2012",
"displayName-count-zero";
"كواشا زامبي - 1968-2012",
"displayName-count-one";
"كواشا زامبي - 1968-2012",
"displayName-count-two";
"كواشا زامبي - 1968-2012",
"displayName-count-few";
"كواشا زامبي - 1968-2012",
"displayName-count-many";
"كواشا زامبي - 1968-2012",
"displayName-count-other";
"كواشا زامبي - 1968-2012",
"symbol";
"ZMK";
}
"ZMW";
{
"displayName";
"كواشا زامبي",
"displayName-count-zero";
"كواشا زامبي",
"displayName-count-one";
"كواشا زامبي",
"displayName-count-two";
"كواشا زامبي",
"displayName-count-few";
"كواشا زامبي",
"displayName-count-many";
"كواشا زامبي",
"displayName-count-other";
"كواشا زامبي",
"symbol";
"ZMW",
"symbol-alt-narrow";
"ZK";
}
"ZRN";
{
"displayName";
"زائير زائيري جديد",
"symbol";
"ZRN";
}
"ZRZ";
{
"displayName";
"زائير زائيري",
"symbol";
"ZRZ";
}
"ZWD";
{
"displayName";
"دولار زمبابوي",
"symbol";
"ZWD";
}
"ZWL";
{
"displayName";
"دولار زمبابوي 2009",
"symbol";
"ZWL";
}
"ZWR";
{
"displayName";
"ZWR",
"symbol";
"ZWR";
}
}
}
}
}
}
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent } from '@syncfusion/ej2-react-calendars';
import { loadCldr, L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'ar': {
'calendar': {
today: "اليوم"
}
}
});
function App() {
return <CalendarComponent id="calendar" locale='ar' enableRtl={true}/>;
}
;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from "react";
import * as ReactDOM from "react-dom";
//import the calendarcomponent
import { CalendarComponent} from '@syncfusion/ej2-react-calendars';
import { loadCldr,L10n } from '@syncfusion/ej2-base';
// Here we have referred local json files for preview purpose
import * as numberingSystems from './numberingSystems.json';
import * as gregorian from './ca-gregorian.json';
import * as numbers from './numbers.json';
import * as timeZoneNames from './timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
L10n.load({
'ar': {
'calendar': {
today: "اليوم"
}
}
});
function App() {
return <CalendarComponent id="calendar" locale='ar' enableRtl={true} />
};
ReactDOM.render(<App />, document.getElementById('element'));
{
"supplemental": {
"version": {
"_number": "$Revision: 12732 $",
"_unicodeVersion": "9.0.0",
"_cldrVersion": "31"
},
"numberingSystems": {
"adlm": {
"_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type": "numeric"
},
"ahom": {
"_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type": "numeric"
},
"arab": {
"_digits": "٠١٢٣٤٥٦٧٨٩",
"_type": "numeric"
},
"arabext": {
"_digits": "۰۱۲۳۴۵۶۷۸۹",
"_type": "numeric"
},
"armn": {
"_rules": "armenian-upper",
"_type": "algorithmic"
},
"armnlow": {
"_rules": "armenian-lower",
"_type": "algorithmic"
},
"bali": {
"_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type": "numeric"
},
"beng": {
"_digits": "০১২৩৪৫৬৭৮৯",
"_type": "numeric"
},
"bhks": {
"_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type": "numeric"
},
"brah": {
"_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type": "numeric"
},
"cakm": {
"_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type": "numeric"
},
"cham": {
"_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type": "numeric"
},
"cyrl": {
"_rules": "cyrillic-lower",
"_type": "algorithmic"
},
"deva": {
"_digits": "०१२३४५६७८९",
"_type": "numeric"
},
"ethi": {
"_rules": "ethiopic",
"_type": "algorithmic"
},
"fullwide": {
"_digits": "0123456789",
"_type": "numeric"
},
"geor": {
"_rules": "georgian",
"_type": "algorithmic"
},
"grek": {
"_rules": "greek-upper",
"_type": "algorithmic"
},
"greklow": {
"_rules": "greek-lower",
"_type": "algorithmic"
},
"gujr": {
"_digits": "૦૧૨૩૪૫૬૭૮૯",
"_type": "numeric"
},
"guru": {
"_digits": "੦੧੨੩੪੫੬੭੮੯",
"_type": "numeric"
},
"hanidays": {
"_rules": "zh/SpelloutRules/spellout-numbering-days",
"_type": "algorithmic"
},
"hanidec": {
"_digits": "〇一二三四五六七八九",
"_type": "numeric"
},
"hans": {
"_rules": "zh/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hansfin": {
"_rules": "zh/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hant": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"hantfin": {
"_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"hebr": {
"_rules": "hebrew",
"_type": "algorithmic"
},
"hmng": {
"_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type": "numeric"
},
"java": {
"_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type": "numeric"
},
"jpan": {
"_rules": "ja/SpelloutRules/spellout-cardinal",
"_type": "algorithmic"
},
"jpanfin": {
"_rules": "ja/SpelloutRules/spellout-cardinal-financial",
"_type": "algorithmic"
},
"kali": {
"_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type": "numeric"
},
"khmr": {
"_digits": "០១២៣៤៥៦៧៨៩",
"_type": "numeric"
},
"knda": {
"_digits": "೦೧೨೩೪೫೬೭೮೯",
"_type": "numeric"
},
"lana": {
"_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type": "numeric"
},
"lanatham": {
"_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type": "numeric"
},
"laoo": {
"_digits": "໐໑໒໓໔໕໖໗໘໙",
"_type": "numeric"
},
"latn": {
"_digits": "0123456789",
"_type": "numeric"
},
"lepc": {
"_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type": "numeric"
},
"limb": {
"_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type": "numeric"
},
"mathbold": {
"_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type": "numeric"
},
"mathdbl": {
"_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type": "numeric"
},
"mathmono": {
"_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type": "numeric"
},
"mathsanb": {
"_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type": "numeric"
},
"mathsans": {
"_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type": "numeric"
},
"mlym": {
"_digits": "൦൧൨൩൪൫൬൭൮൯",
"_type": "numeric"
},
"modi": {
"_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type": "numeric"
},
"mong": {
"_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type": "numeric"
},
"mroo": {
"_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type": "numeric"
},
"mtei": {
"_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type": "numeric"
},
"mymr": {
"_digits": "၀၁၂၃၄၅၆၇၈၉",
"_type": "numeric"
},
"mymrshan": {
"_digits": "႐႑႒႓႔႕႖႗႘႙",
"_type": "numeric"
},
"mymrtlng": {
"_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type": "numeric"
},
"newa": {
"_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type": "numeric"
},
"nkoo": {
"_digits": "߀߁߂߃߄߅߆߇߈߉",
"_type": "numeric"
},
"olck": {
"_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type": "numeric"
},
"orya": {
"_digits": "୦୧୨୩୪୫୬୭୮୯",
"_type": "numeric"
},
"osma": {
"_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type": "numeric"
},
"roman": {
"_rules": "roman-upper",
"_type": "algorithmic"
},
"romanlow": {
"_rules": "roman-lower",
"_type": "algorithmic"
},
"saur": {
"_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type": "numeric"
},
"shrd": {
"_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type": "numeric"
},
"sind": {
"_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type": "numeric"
},
"sinh": {
"_digits": "෦෧෨෩෪෫෬෭෮෯",
"_type": "numeric"
},
"sora": {
"_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type": "numeric"
},
"sund": {
"_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type": "numeric"
},
"takr": {
"_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type": "numeric"
},
"talu": {
"_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type": "numeric"
},
"taml": {
"_rules": "tamil",
"_type": "algorithmic"
},
"tamldec": {
"_digits": "௦௧௨௩௪௫௬௭௮௯",
"_type": "numeric"
},
"telu": {
"_digits": "౦౧౨౩౪౫౬౭౮౯",
"_type": "numeric"
},
"thai": {
"_digits": "๐๑๒๓๔๕๖๗๘๙",
"_type": "numeric"
},
"tibt": {
"_digits": "༠༡༢༣༤༥༦༧༨༩",
"_type": "numeric"
},
"tirh": {
"_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type": "numeric"
},
"vaii": {
"_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type": "numeric"
},
"wara": {
"_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type": "numeric"
}
}
}
}
{
"supplemental";
{
"version";
{
"_number";
"$Revision: 12732 $",
"_unicodeVersion";
"9.0.0",
"_cldrVersion";
"31";
}
"numberingSystems";
{
"adlm";
{
"_digits";
"𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
"_type";
"numeric";
}
"ahom";
{
"_digits";
"𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
"_type";
"numeric";
}
"arab";
{
"_digits";
"٠١٢٣٤٥٦٧٨٩",
"_type";
"numeric";
}
"arabext";
{
"_digits";
"۰۱۲۳۴۵۶۷۸۹",
"_type";
"numeric";
}
"armn";
{
"_rules";
"armenian-upper",
"_type";
"algorithmic";
}
"armnlow";
{
"_rules";
"armenian-lower",
"_type";
"algorithmic";
}
"bali";
{
"_digits";
"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
"_type";
"numeric";
}
"beng";
{
"_digits";
"০১২৩৪৫৬৭৮৯",
"_type";
"numeric";
}
"bhks";
{
"_digits";
"𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
"_type";
"numeric";
}
"brah";
{
"_digits";
"𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
"_type";
"numeric";
}
"cakm";
{
"_digits";
"𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
"_type";
"numeric";
}
"cham";
{
"_digits";
"꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
"_type";
"numeric";
}
"cyrl";
{
"_rules";
"cyrillic-lower",
"_type";
"algorithmic";
}
"deva";
{
"_digits";
"०१२३४५६७८९",
"_type";
"numeric";
}
"ethi";
{
"_rules";
"ethiopic",
"_type";
"algorithmic";
}
"fullwide";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"geor";
{
"_rules";
"georgian",
"_type";
"algorithmic";
}
"grek";
{
"_rules";
"greek-upper",
"_type";
"algorithmic";
}
"greklow";
{
"_rules";
"greek-lower",
"_type";
"algorithmic";
}
"gujr";
{
"_digits";
"૦૧૨૩૪૫૬૭૮૯",
"_type";
"numeric";
}
"guru";
{
"_digits";
"੦੧੨੩੪੫੬੭੮੯",
"_type";
"numeric";
}
"hanidays";
{
"_rules";
"zh/SpelloutRules/spellout-numbering-days",
"_type";
"algorithmic";
}
"hanidec";
{
"_digits";
"〇一二三四五六七八九",
"_type";
"numeric";
}
"hans";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hansfin";
{
"_rules";
"zh/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hant";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"hantfin";
{
"_rules";
"zh_Hant/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"hebr";
{
"_rules";
"hebrew",
"_type";
"algorithmic";
}
"hmng";
{
"_digits";
"𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
"_type";
"numeric";
}
"java";
{
"_digits";
"꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
"_type";
"numeric";
}
"jpan";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal",
"_type";
"algorithmic";
}
"jpanfin";
{
"_rules";
"ja/SpelloutRules/spellout-cardinal-financial",
"_type";
"algorithmic";
}
"kali";
{
"_digits";
"꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
"_type";
"numeric";
}
"khmr";
{
"_digits";
"០១២៣៤៥៦៧៨៩",
"_type";
"numeric";
}
"knda";
{
"_digits";
"೦೧೨೩೪೫೬೭೮೯",
"_type";
"numeric";
}
"lana";
{
"_digits";
"᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
"_type";
"numeric";
}
"lanatham";
{
"_digits";
"᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
"_type";
"numeric";
}
"laoo";
{
"_digits";
"໐໑໒໓໔໕໖໗໘໙",
"_type";
"numeric";
}
"latn";
{
"_digits";
"0123456789",
"_type";
"numeric";
}
"lepc";
{
"_digits";
"᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
"_type";
"numeric";
}
"limb";
{
"_digits";
"᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
"_type";
"numeric";
}
"mathbold";
{
"_digits";
"𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
"_type";
"numeric";
}
"mathdbl";
{
"_digits";
"𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
"_type";
"numeric";
}
"mathmono";
{
"_digits";
"𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
"_type";
"numeric";
}
"mathsanb";
{
"_digits";
"𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
"_type";
"numeric";
}
"mathsans";
{
"_digits";
"𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
"_type";
"numeric";
}
"mlym";
{
"_digits";
"൦൧൨൩൪൫൬൭൮൯",
"_type";
"numeric";
}
"modi";
{
"_digits";
"𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
"_type";
"numeric";
}
"mong";
{
"_digits";
"᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
"_type";
"numeric";
}
"mroo";
{
"_digits";
"𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
"_type";
"numeric";
}
"mtei";
{
"_digits";
"꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
"_type";
"numeric";
}
"mymr";
{
"_digits";
"၀၁၂၃၄၅၆၇၈၉",
"_type";
"numeric";
}
"mymrshan";
{
"_digits";
"႐႑႒႓႔႕႖႗႘႙",
"_type";
"numeric";
}
"mymrtlng";
{
"_digits";
"꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
"_type";
"numeric";
}
"newa";
{
"_digits";
"𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
"_type";
"numeric";
}
"nkoo";
{
"_digits";
"߀߁߂߃߄߅߆߇߈߉",
"_type";
"numeric";
}
"olck";
{
"_digits";
"᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
"_type";
"numeric";
}
"orya";
{
"_digits";
"୦୧୨୩୪୫୬୭୮୯",
"_type";
"numeric";
}
"osma";
{
"_digits";
"𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
"_type";
"numeric";
}
"roman";
{
"_rules";
"roman-upper",
"_type";
"algorithmic";
}
"romanlow";
{
"_rules";
"roman-lower",
"_type";
"algorithmic";
}
"saur";
{
"_digits";
"꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
"_type";
"numeric";
}
"shrd";
{
"_digits";
"𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
"_type";
"numeric";
}
"sind";
{
"_digits";
"𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
"_type";
"numeric";
}
"sinh";
{
"_digits";
"෦෧෨෩෪෫෬෭෮෯",
"_type";
"numeric";
}
"sora";
{
"_digits";
"𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
"_type";
"numeric";
}
"sund";
{
"_digits";
"᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
"_type";
"numeric";
}
"takr";
{
"_digits";
"𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
"_type";
"numeric";
}
"talu";
{
"_digits";
"᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
"_type";
"numeric";
}
"taml";
{
"_rules";
"tamil",
"_type";
"algorithmic";
}
"tamldec";
{
"_digits";
"௦௧௨௩௪௫௬௭௮௯",
"_type";
"numeric";
}
"telu";
{
"_digits";
"౦౧౨౩౪౫౬౭౮౯",
"_type";
"numeric";
}
"thai";
{
"_digits";
"๐๑๒๓๔๕๖๗๘๙",
"_type";
"numeric";
}
"tibt";
{
"_digits";
"༠༡༢༣༤༥༦༧༨༩",
"_type";
"numeric";
}
"tirh";
{
"_digits";
"𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
"_type";
"numeric";
}
"vaii";
{
"_digits";
"꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
"_type";
"numeric";
}
"wara";
{
"_digits";
"𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
"_type";
"numeric";
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"numbers": {
"defaultNumberingSystem": "arab",
"otherNumberingSystems": {
"native": "arab"
},
"minimumGroupingDigits": "1",
"symbols-numberSystem-arab": {
"decimal": "٫",
"group": "٬",
"list": "؛",
"percentSign": "٪",
"plusSign": "+",
"minusSign": "-",
"exponential": "اس",
"superscriptingExponent": "×",
"perMille": "؉",
"infinity": "∞",
"nan": "ليس رقم",
"timeSeparator": ":"
},
"symbols-numberSystem-latn": {
"decimal": ".",
"group": ",",
"list": ";",
"percentSign": "%",
"plusSign": "+",
"minusSign": "-",
"exponential": "E",
"superscriptingExponent": "×",
"perMille": "‰",
"infinity": "∞",
"nan": "ليس رقمًا",
"timeSeparator": ":"
},
"decimalFormats-numberSystem-arab": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليون",
"1000000-count-one": "0 مليون",
"1000000-count-two": "0 مليون",
"1000000-count-few": "0 ملايين",
"1000000-count-many": "0 مليون",
"1000000-count-other": "0 مليون",
"10000000-count-zero": "00 مليون",
"10000000-count-one": "00 مليون",
"10000000-count-two": "00 مليون",
"10000000-count-few": "00 ملايين",
"10000000-count-many": "00 مليون",
"10000000-count-other": "00 مليون",
"100000000-count-zero": "000 مليون",
"100000000-count-one": "000 مليون",
"100000000-count-two": "000 مليون",
"100000000-count-few": "000 مليون",
"100000000-count-many": "000 مليون",
"100000000-count-other": "000 مليون",
"1000000000-count-zero": "0 مليار",
"1000000000-count-one": "0 مليار",
"1000000000-count-two": "0 مليار",
"1000000000-count-few": "0 مليار",
"1000000000-count-many": "0 مليار",
"1000000000-count-other": "0 مليار",
"10000000000-count-zero": "00 مليار",
"10000000000-count-one": "00 مليار",
"10000000000-count-two": "00 مليار",
"10000000000-count-few": "00 مليار",
"10000000000-count-many": "00 مليار",
"10000000000-count-other": "00 مليار",
"100000000000-count-zero": "000 مليار",
"100000000000-count-one": "000 مليار",
"100000000000-count-two": "000 مليار",
"100000000000-count-few": "000 مليار",
"100000000000-count-many": "000 مليار",
"100000000000-count-other": "000 مليار",
"1000000000000-count-zero": "0 تريليون",
"1000000000000-count-one": "0 تريليون",
"1000000000000-count-two": "0 تريليون",
"1000000000000-count-few": "0 تريليونات",
"1000000000000-count-many": "0 تريليون",
"1000000000000-count-other": "0 تريليون",
"10000000000000-count-zero": "00 تريليون",
"10000000000000-count-one": "00 تريليون",
"10000000000000-count-two": "00 تريليون",
"10000000000000-count-few": "00 تريليون",
"10000000000000-count-many": "00 تريليون",
"10000000000000-count-other": "00 تريليون",
"100000000000000-count-zero": "000 تريليون",
"100000000000000-count-one": "000 تريليون",
"100000000000000-count-two": "000 تريليون",
"100000000000000-count-few": "000 تريليون",
"100000000000000-count-many": "000 تريليون",
"100000000000000-count-other": "000 تريليون"
}
},
"short": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليو",
"1000000-count-one": "0 مليو",
"1000000-count-two": "0 مليو",
"1000000-count-few": "0 مليو",
"1000000-count-many": "0 مليو",
"1000000-count-other": "0 مليو",
"10000000-count-zero": "00 مليو",
"10000000-count-one": "00 مليو",
"10000000-count-two": "00 مليو",
"10000000-count-few": "00 مليو",
"10000000-count-many": "00 مليو",
"10000000-count-other": "00 مليو",
"100000000-count-zero": "000 مليو",
"100000000-count-one": "000 مليو",
"100000000-count-two": "000 مليو",
"100000000-count-few": "000 مليو",
"100000000-count-many": "000 مليو",
"100000000-count-other": "000 مليو",
"1000000000-count-zero": "0 مليا",
"1000000000-count-one": "0 مليا",
"1000000000-count-two": "0 مليا",
"1000000000-count-few": "0 مليا",
"1000000000-count-many": "0 مليا",
"1000000000-count-other": "0 مليا",
"10000000000-count-zero": "00 مليا",
"10000000000-count-one": "00 مليا",
"10000000000-count-two": "00 مليا",
"10000000000-count-few": "00 مليا",
"10000000000-count-many": "00 مليا",
"10000000000-count-other": "00 مليا",
"100000000000-count-zero": "000 مليا",
"100000000000-count-one": "000 مليا",
"100000000000-count-two": "000 مليا",
"100000000000-count-few": "000 مليا",
"100000000000-count-many": "000 مليا",
"100000000000-count-other": "000 مليا",
"1000000000000-count-zero": "0 ترليو",
"1000000000000-count-one": "0 ترليو",
"1000000000000-count-two": "0 ترليو",
"1000000000000-count-few": "0 ترليو",
"1000000000000-count-many": "0 ترليو",
"1000000000000-count-other": "0 ترليو",
"10000000000000-count-zero": "00 ترليو",
"10000000000000-count-one": "00 ترليو",
"10000000000000-count-two": "00 ترليو",
"10000000000000-count-few": "00 ترليو",
"10000000000000-count-many": "00 ترليو",
"10000000000000-count-other": "00 ترليو",
"100000000000000-count-zero": "000 ترليو",
"100000000000000-count-one": "000 ترليو",
"100000000000000-count-two": "000 ترليو",
"100000000000000-count-few": "000 ترليو",
"100000000000000-count-many": "000 ترليو",
"100000000000000-count-other": "000 ترليو"
}
}
},
"decimalFormats-numberSystem-latn": {
"standard": "#,##0.###",
"long": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليون",
"1000000-count-one": "0 مليون",
"1000000-count-two": "0 مليون",
"1000000-count-few": "0 ملايين",
"1000000-count-many": "0 مليون",
"1000000-count-other": "0 مليون",
"10000000-count-zero": "00 مليون",
"10000000-count-one": "00 مليون",
"10000000-count-two": "00 مليون",
"10000000-count-few": "00 ملايين",
"10000000-count-many": "00 مليون",
"10000000-count-other": "00 مليون",
"100000000-count-zero": "000 مليون",
"100000000-count-one": "000 مليون",
"100000000-count-two": "000 مليون",
"100000000-count-few": "000 مليون",
"100000000-count-many": "000 مليون",
"100000000-count-other": "000 مليون",
"1000000000-count-zero": "0 مليار",
"1000000000-count-one": "0 مليار",
"1000000000-count-two": "0 مليار",
"1000000000-count-few": "0 مليار",
"1000000000-count-many": "0 مليار",
"1000000000-count-other": "0 مليار",
"10000000000-count-zero": "00 مليار",
"10000000000-count-one": "00 مليار",
"10000000000-count-two": "00 مليار",
"10000000000-count-few": "00 مليار",
"10000000000-count-many": "00 مليار",
"10000000000-count-other": "00 مليار",
"100000000000-count-zero": "000 مليار",
"100000000000-count-one": "000 مليار",
"100000000000-count-two": "000 مليار",
"100000000000-count-few": "000 مليار",
"100000000000-count-many": "000 مليار",
"100000000000-count-other": "000 مليار",
"1000000000000-count-zero": "0 تريليون",
"1000000000000-count-one": "0 تريليون",
"1000000000000-count-two": "0 تريليون",
"1000000000000-count-few": "0 تريليونات",
"1000000000000-count-many": "0 تريليون",
"1000000000000-count-other": "0 تريليون",
"10000000000000-count-zero": "00 تريليون",
"10000000000000-count-one": "00 تريليون",
"10000000000000-count-two": "00 تريليون",
"10000000000000-count-few": "00 تريليون",
"10000000000000-count-many": "00 تريليون",
"10000000000000-count-other": "00 تريليون",
"100000000000000-count-zero": "000 تريليون",
"100000000000000-count-one": "000 تريليون",
"100000000000000-count-two": "000 تريليون",
"100000000000000-count-few": "000 تريليون",
"100000000000000-count-many": "000 تريليون",
"100000000000000-count-other": "000 تريليون"
}
},
"short": {
"decimalFormat": {
"1000-count-zero": "0 ألف",
"1000-count-one": "0 ألف",
"1000-count-two": "0 ألف",
"1000-count-few": "0 آلاف",
"1000-count-many": "0 ألف",
"1000-count-other": "0 ألف",
"10000-count-zero": "00 ألف",
"10000-count-one": "00 ألف",
"10000-count-two": "00 ألف",
"10000-count-few": "00 ألف",
"10000-count-many": "00 ألف",
"10000-count-other": "00 ألف",
"100000-count-zero": "000 ألف",
"100000-count-one": "000 ألف",
"100000-count-two": "000 ألف",
"100000-count-few": "000 ألف",
"100000-count-many": "000 ألف",
"100000-count-other": "000 ألف",
"1000000-count-zero": "0 مليو",
"1000000-count-one": "0 مليو",
"1000000-count-two": "0 مليو",
"1000000-count-few": "0 مليو",
"1000000-count-many": "0 مليو",
"1000000-count-other": "0 مليو",
"10000000-count-zero": "00 مليو",
"10000000-count-one": "00 مليو",
"10000000-count-two": "00 مليو",
"10000000-count-few": "00 مليو",
"10000000-count-many": "00 مليو",
"10000000-count-other": "00 مليو",
"100000000-count-zero": "000 مليو",
"100000000-count-one": "000 مليو",
"100000000-count-two": "000 مليو",
"100000000-count-few": "000 مليو",
"100000000-count-many": "000 مليو",
"100000000-count-other": "000 مليو",
"1000000000-count-zero": "0 مليا",
"1000000000-count-one": "0 مليا",
"1000000000-count-two": "0 مليا",
"1000000000-count-few": "0 مليا",
"1000000000-count-many": "0 مليا",
"1000000000-count-other": "0 مليا",
"10000000000-count-zero": "00 مليا",
"10000000000-count-one": "00 مليا",
"10000000000-count-two": "00 مليا",
"10000000000-count-few": "00 مليا",
"10000000000-count-many": "00 مليا",
"10000000000-count-other": "00 مليا",
"100000000000-count-zero": "000 مليا",
"100000000000-count-one": "000 مليا",
"100000000000-count-two": "000 مليا",
"100000000000-count-few": "000 مليا",
"100000000000-count-many": "000 مليا",
"100000000000-count-other": "000 مليا",
"1000000000000-count-zero": "0 ترليو",
"1000000000000-count-one": "0 ترليو",
"1000000000000-count-two": "0 ترليو",
"1000000000000-count-few": "0 ترليو",
"1000000000000-count-many": "0 ترليو",
"1000000000000-count-other": "0 ترليو",
"10000000000000-count-zero": "00 ترليو",
"10000000000000-count-one": "00 ترليو",
"10000000000000-count-two": "00 ترليو",
"10000000000000-count-few": "00 ترليو",
"10000000000000-count-many": "00 ترليو",
"10000000000000-count-other": "00 ترليو",
"100000000000000-count-zero": "000 ترليو",
"100000000000000-count-one": "000 ترليو",
"100000000000000-count-two": "000 ترليو",
"100000000000000-count-few": "000 ترليو",
"100000000000000-count-many": "000 ترليو",
"100000000000000-count-other": "000 ترليو"
}
}
},
"scientificFormats-numberSystem-arab": {
"standard": "#E0"
},
"scientificFormats-numberSystem-latn": {
"standard": "#E0"
},
"percentFormats-numberSystem-arab": {
"standard": "#,##0 %"
},
"percentFormats-numberSystem-latn": {
"standard": "#,##0%"
},
"currencyFormats-numberSystem-arab": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "#,##0.00 ¤",
"accounting": "#,##0.00 ¤",
"unitPattern-count-zero": "{0} {1}",
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-two": "{0} {1}",
"unitPattern-count-few": "{0} {1}",
"unitPattern-count-many": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"currencyFormats-numberSystem-latn": {
"currencySpacing": {
"beforeCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
},
"afterCurrency": {
"currencyMatch": "[:^S:]",
"surroundingMatch": "[:digit:]",
"insertBetween": " "
}
},
"standard": "¤ #,##0.00",
"accounting": "¤#,##0.00;(¤#,##0.00)",
"short": {
"standard": {
"1000-count-zero": "¤ 0 ألف",
"1000-count-one": "¤ 0 ألف",
"1000-count-two": "¤ 0 ألف",
"1000-count-few": "¤ 0 ألف",
"1000-count-many": "¤ 0 ألف",
"1000-count-other": "¤ 0 ألف",
"10000-count-zero": "¤ 00 ألف",
"10000-count-one": "¤ 00 ألف",
"10000-count-two": "¤ 00 ألف",
"10000-count-few": "¤ 00 ألف",
"10000-count-many": "¤ 00 ألف",
"10000-count-other": "¤ 00 ألف",
"100000-count-zero": "¤ 000 ألف",
"100000-count-one": "¤ 000 ألف",
"100000-count-two": "¤ 000 ألف",
"100000-count-few": "¤ 000 ألف",
"100000-count-many": "¤ 000 ألف",
"100000-count-other": "¤ 000 ألف",
"1000000-count-zero": "¤ 0 مليو",
"1000000-count-one": "¤ 0 مليو",
"1000000-count-two": "¤ 0 مليو",
"1000000-count-few": "¤ 0 مليو",
"1000000-count-many": "¤ 0 مليو",
"1000000-count-other": "¤ 0 مليو",
"10000000-count-zero": "¤ 00 مليو",
"10000000-count-one": "¤ 00 مليو",
"10000000-count-two": "¤ 00 مليو",
"10000000-count-few": "¤ 00 مليو",
"10000000-count-many": "¤ 00 مليو",
"10000000-count-other": "¤ 00 مليو",
"100000000-count-zero": "¤ 000 مليو",
"100000000-count-one": "¤ 000 مليو",
"100000000-count-two": "¤ 000 مليو",
"100000000-count-few": "¤ 000 مليو",
"100000000-count-many": "¤ 000 مليو",
"100000000-count-other": "¤ 000 مليو",
"1000000000-count-zero": "¤ 0 مليا",
"1000000000-count-one": "¤ 0 مليا",
"1000000000-count-two": "¤ 0 مليا",
"1000000000-count-few": "¤ 0 مليا",
"1000000000-count-many": "¤ 0 مليا",
"1000000000-count-other": "¤ 0 مليا",
"10000000000-count-zero": "¤ 00 مليا",
"10000000000-count-one": "¤ 00 مليا",
"10000000000-count-two": "¤ 00 مليا",
"10000000000-count-few": "¤ 00 مليا",
"10000000000-count-many": "¤ 00 مليا",
"10000000000-count-other": "¤ 00 مليا",
"100000000000-count-zero": "¤ 000 مليا",
"100000000000-count-one": "¤ 000 مليا",
"100000000000-count-two": "¤ 000 مليا",
"100000000000-count-few": "¤ 000 مليا",
"100000000000-count-many": "¤ 000 مليا",
"100000000000-count-other": "¤ 000 مليا",
"1000000000000-count-zero": "¤ 0 ترليو",
"1000000000000-count-one": "¤ 0 ترليو",
"1000000000000-count-two": "¤ 0 ترليو",
"1000000000000-count-few": "¤ 0 ترليو",
"1000000000000-count-many": "¤ 0 ترليو",
"1000000000000-count-other": "¤ 0 ترليو",
"10000000000000-count-zero": "¤ 00 ترليو",
"10000000000000-count-one": "¤ 00 ترليو",
"10000000000000-count-two": "¤ 00 ترليو",
"10000000000000-count-few": "¤ 00 ترليو",
"10000000000000-count-many": "¤ 00 ترليو",
"10000000000000-count-other": "¤ 00 ترليو",
"100000000000000-count-zero": "¤ 000 ترليو",
"100000000000000-count-one": "¤ 000 ترليو",
"100000000000000-count-two": "¤ 000 ترليو",
"100000000000000-count-few": "¤ 000 ترليو",
"100000000000000-count-many": "¤ 000 ترليو",
"100000000000000-count-other": "¤ 000 ترليو"
}
},
"unitPattern-count-zero": "{0} {1}",
"unitPattern-count-one": "{0} {1}",
"unitPattern-count-two": "{0} {1}",
"unitPattern-count-few": "{0} {1}",
"unitPattern-count-many": "{0} {1}",
"unitPattern-count-other": "{0} {1}"
},
"miscPatterns-numberSystem-arab": {
"atLeast": "+{0}",
"range": "{0}–{1}"
},
"miscPatterns-numberSystem-latn": {
"atLeast": "+{0}",
"range": "{0}–{1}"
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"numbers";
{
"defaultNumberingSystem";
"arab",
"otherNumberingSystems";
{
"native";
"arab";
}
"minimumGroupingDigits";
"1",
"symbols-numberSystem-arab";
{
"decimal";
"٫",
"group";
"٬",
"list";
"؛",
"percentSign";
"٪",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"اس",
"superscriptingExponent";
"×",
"perMille";
"؉",
"infinity";
"∞",
"nan";
"ليس رقم",
"timeSeparator";
":";
}
"symbols-numberSystem-latn";
{
"decimal";
".",
"group";
",",
"list";
";",
"percentSign";
"%",
"plusSign";
"+",
"minusSign";
"-",
"exponential";
"E",
"superscriptingExponent";
"×",
"perMille";
"‰",
"infinity";
"∞",
"nan";
"ليس رقمًا",
"timeSeparator";
":";
}
"decimalFormats-numberSystem-arab";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليون",
"1000000-count-one";
"0 مليون",
"1000000-count-two";
"0 مليون",
"1000000-count-few";
"0 ملايين",
"1000000-count-many";
"0 مليون",
"1000000-count-other";
"0 مليون",
"10000000-count-zero";
"00 مليون",
"10000000-count-one";
"00 مليون",
"10000000-count-two";
"00 مليون",
"10000000-count-few";
"00 ملايين",
"10000000-count-many";
"00 مليون",
"10000000-count-other";
"00 مليون",
"100000000-count-zero";
"000 مليون",
"100000000-count-one";
"000 مليون",
"100000000-count-two";
"000 مليون",
"100000000-count-few";
"000 مليون",
"100000000-count-many";
"000 مليون",
"100000000-count-other";
"000 مليون",
"1000000000-count-zero";
"0 مليار",
"1000000000-count-one";
"0 مليار",
"1000000000-count-two";
"0 مليار",
"1000000000-count-few";
"0 مليار",
"1000000000-count-many";
"0 مليار",
"1000000000-count-other";
"0 مليار",
"10000000000-count-zero";
"00 مليار",
"10000000000-count-one";
"00 مليار",
"10000000000-count-two";
"00 مليار",
"10000000000-count-few";
"00 مليار",
"10000000000-count-many";
"00 مليار",
"10000000000-count-other";
"00 مليار",
"100000000000-count-zero";
"000 مليار",
"100000000000-count-one";
"000 مليار",
"100000000000-count-two";
"000 مليار",
"100000000000-count-few";
"000 مليار",
"100000000000-count-many";
"000 مليار",
"100000000000-count-other";
"000 مليار",
"1000000000000-count-zero";
"0 تريليون",
"1000000000000-count-one";
"0 تريليون",
"1000000000000-count-two";
"0 تريليون",
"1000000000000-count-few";
"0 تريليونات",
"1000000000000-count-many";
"0 تريليون",
"1000000000000-count-other";
"0 تريليون",
"10000000000000-count-zero";
"00 تريليون",
"10000000000000-count-one";
"00 تريليون",
"10000000000000-count-two";
"00 تريليون",
"10000000000000-count-few";
"00 تريليون",
"10000000000000-count-many";
"00 تريليون",
"10000000000000-count-other";
"00 تريليون",
"100000000000000-count-zero";
"000 تريليون",
"100000000000000-count-one";
"000 تريليون",
"100000000000000-count-two";
"000 تريليون",
"100000000000000-count-few";
"000 تريليون",
"100000000000000-count-many";
"000 تريليون",
"100000000000000-count-other";
"000 تريليون";
}
}
"short";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليو",
"1000000-count-one";
"0 مليو",
"1000000-count-two";
"0 مليو",
"1000000-count-few";
"0 مليو",
"1000000-count-many";
"0 مليو",
"1000000-count-other";
"0 مليو",
"10000000-count-zero";
"00 مليو",
"10000000-count-one";
"00 مليو",
"10000000-count-two";
"00 مليو",
"10000000-count-few";
"00 مليو",
"10000000-count-many";
"00 مليو",
"10000000-count-other";
"00 مليو",
"100000000-count-zero";
"000 مليو",
"100000000-count-one";
"000 مليو",
"100000000-count-two";
"000 مليو",
"100000000-count-few";
"000 مليو",
"100000000-count-many";
"000 مليو",
"100000000-count-other";
"000 مليو",
"1000000000-count-zero";
"0 مليا",
"1000000000-count-one";
"0 مليا",
"1000000000-count-two";
"0 مليا",
"1000000000-count-few";
"0 مليا",
"1000000000-count-many";
"0 مليا",
"1000000000-count-other";
"0 مليا",
"10000000000-count-zero";
"00 مليا",
"10000000000-count-one";
"00 مليا",
"10000000000-count-two";
"00 مليا",
"10000000000-count-few";
"00 مليا",
"10000000000-count-many";
"00 مليا",
"10000000000-count-other";
"00 مليا",
"100000000000-count-zero";
"000 مليا",
"100000000000-count-one";
"000 مليا",
"100000000000-count-two";
"000 مليا",
"100000000000-count-few";
"000 مليا",
"100000000000-count-many";
"000 مليا",
"100000000000-count-other";
"000 مليا",
"1000000000000-count-zero";
"0 ترليو",
"1000000000000-count-one";
"0 ترليو",
"1000000000000-count-two";
"0 ترليو",
"1000000000000-count-few";
"0 ترليو",
"1000000000000-count-many";
"0 ترليو",
"1000000000000-count-other";
"0 ترليو",
"10000000000000-count-zero";
"00 ترليو",
"10000000000000-count-one";
"00 ترليو",
"10000000000000-count-two";
"00 ترليو",
"10000000000000-count-few";
"00 ترليو",
"10000000000000-count-many";
"00 ترليو",
"10000000000000-count-other";
"00 ترليو",
"100000000000000-count-zero";
"000 ترليو",
"100000000000000-count-one";
"000 ترليو",
"100000000000000-count-two";
"000 ترليو",
"100000000000000-count-few";
"000 ترليو",
"100000000000000-count-many";
"000 ترليو",
"100000000000000-count-other";
"000 ترليو";
}
}
}
"decimalFormats-numberSystem-latn";
{
"standard";
"#,##0.###",
"long";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليون",
"1000000-count-one";
"0 مليون",
"1000000-count-two";
"0 مليون",
"1000000-count-few";
"0 ملايين",
"1000000-count-many";
"0 مليون",
"1000000-count-other";
"0 مليون",
"10000000-count-zero";
"00 مليون",
"10000000-count-one";
"00 مليون",
"10000000-count-two";
"00 مليون",
"10000000-count-few";
"00 ملايين",
"10000000-count-many";
"00 مليون",
"10000000-count-other";
"00 مليون",
"100000000-count-zero";
"000 مليون",
"100000000-count-one";
"000 مليون",
"100000000-count-two";
"000 مليون",
"100000000-count-few";
"000 مليون",
"100000000-count-many";
"000 مليون",
"100000000-count-other";
"000 مليون",
"1000000000-count-zero";
"0 مليار",
"1000000000-count-one";
"0 مليار",
"1000000000-count-two";
"0 مليار",
"1000000000-count-few";
"0 مليار",
"1000000000-count-many";
"0 مليار",
"1000000000-count-other";
"0 مليار",
"10000000000-count-zero";
"00 مليار",
"10000000000-count-one";
"00 مليار",
"10000000000-count-two";
"00 مليار",
"10000000000-count-few";
"00 مليار",
"10000000000-count-many";
"00 مليار",
"10000000000-count-other";
"00 مليار",
"100000000000-count-zero";
"000 مليار",
"100000000000-count-one";
"000 مليار",
"100000000000-count-two";
"000 مليار",
"100000000000-count-few";
"000 مليار",
"100000000000-count-many";
"000 مليار",
"100000000000-count-other";
"000 مليار",
"1000000000000-count-zero";
"0 تريليون",
"1000000000000-count-one";
"0 تريليون",
"1000000000000-count-two";
"0 تريليون",
"1000000000000-count-few";
"0 تريليونات",
"1000000000000-count-many";
"0 تريليون",
"1000000000000-count-other";
"0 تريليون",
"10000000000000-count-zero";
"00 تريليون",
"10000000000000-count-one";
"00 تريليون",
"10000000000000-count-two";
"00 تريليون",
"10000000000000-count-few";
"00 تريليون",
"10000000000000-count-many";
"00 تريليون",
"10000000000000-count-other";
"00 تريليون",
"100000000000000-count-zero";
"000 تريليون",
"100000000000000-count-one";
"000 تريليون",
"100000000000000-count-two";
"000 تريليون",
"100000000000000-count-few";
"000 تريليون",
"100000000000000-count-many";
"000 تريليون",
"100000000000000-count-other";
"000 تريليون";
}
}
"short";
{
"decimalFormat";
{
"1000-count-zero";
"0 ألف",
"1000-count-one";
"0 ألف",
"1000-count-two";
"0 ألف",
"1000-count-few";
"0 آلاف",
"1000-count-many";
"0 ألف",
"1000-count-other";
"0 ألف",
"10000-count-zero";
"00 ألف",
"10000-count-one";
"00 ألف",
"10000-count-two";
"00 ألف",
"10000-count-few";
"00 ألف",
"10000-count-many";
"00 ألف",
"10000-count-other";
"00 ألف",
"100000-count-zero";
"000 ألف",
"100000-count-one";
"000 ألف",
"100000-count-two";
"000 ألف",
"100000-count-few";
"000 ألف",
"100000-count-many";
"000 ألف",
"100000-count-other";
"000 ألف",
"1000000-count-zero";
"0 مليو",
"1000000-count-one";
"0 مليو",
"1000000-count-two";
"0 مليو",
"1000000-count-few";
"0 مليو",
"1000000-count-many";
"0 مليو",
"1000000-count-other";
"0 مليو",
"10000000-count-zero";
"00 مليو",
"10000000-count-one";
"00 مليو",
"10000000-count-two";
"00 مليو",
"10000000-count-few";
"00 مليو",
"10000000-count-many";
"00 مليو",
"10000000-count-other";
"00 مليو",
"100000000-count-zero";
"000 مليو",
"100000000-count-one";
"000 مليو",
"100000000-count-two";
"000 مليو",
"100000000-count-few";
"000 مليو",
"100000000-count-many";
"000 مليو",
"100000000-count-other";
"000 مليو",
"1000000000-count-zero";
"0 مليا",
"1000000000-count-one";
"0 مليا",
"1000000000-count-two";
"0 مليا",
"1000000000-count-few";
"0 مليا",
"1000000000-count-many";
"0 مليا",
"1000000000-count-other";
"0 مليا",
"10000000000-count-zero";
"00 مليا",
"10000000000-count-one";
"00 مليا",
"10000000000-count-two";
"00 مليا",
"10000000000-count-few";
"00 مليا",
"10000000000-count-many";
"00 مليا",
"10000000000-count-other";
"00 مليا",
"100000000000-count-zero";
"000 مليا",
"100000000000-count-one";
"000 مليا",
"100000000000-count-two";
"000 مليا",
"100000000000-count-few";
"000 مليا",
"100000000000-count-many";
"000 مليا",
"100000000000-count-other";
"000 مليا",
"1000000000000-count-zero";
"0 ترليو",
"1000000000000-count-one";
"0 ترليو",
"1000000000000-count-two";
"0 ترليو",
"1000000000000-count-few";
"0 ترليو",
"1000000000000-count-many";
"0 ترليو",
"1000000000000-count-other";
"0 ترليو",
"10000000000000-count-zero";
"00 ترليو",
"10000000000000-count-one";
"00 ترليو",
"10000000000000-count-two";
"00 ترليو",
"10000000000000-count-few";
"00 ترليو",
"10000000000000-count-many";
"00 ترليو",
"10000000000000-count-other";
"00 ترليو",
"100000000000000-count-zero";
"000 ترليو",
"100000000000000-count-one";
"000 ترليو",
"100000000000000-count-two";
"000 ترليو",
"100000000000000-count-few";
"000 ترليو",
"100000000000000-count-many";
"000 ترليو",
"100000000000000-count-other";
"000 ترليو";
}
}
}
"scientificFormats-numberSystem-arab";
{
"standard";
"#E0";
}
"scientificFormats-numberSystem-latn";
{
"standard";
"#E0";
}
"percentFormats-numberSystem-arab";
{
"standard";
"#,##0 %";
}
"percentFormats-numberSystem-latn";
{
"standard";
"#,##0%";
}
"currencyFormats-numberSystem-arab";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"#,##0.00 ¤",
"accounting";
"#,##0.00 ¤",
"unitPattern-count-zero";
"{0} {1}",
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-two";
"{0} {1}",
"unitPattern-count-few";
"{0} {1}",
"unitPattern-count-many";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"currencyFormats-numberSystem-latn";
{
"currencySpacing";
{
"beforeCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
"afterCurrency";
{
"currencyMatch";
"[:^S:]",
"surroundingMatch";
"[:digit:]",
"insertBetween";
" ";
}
}
"standard";
"¤ #,##0.00",
"accounting";
"¤#,##0.00;(¤#,##0.00)",
"short";
{
"standard";
{
"1000-count-zero";
"¤ 0 ألف",
"1000-count-one";
"¤ 0 ألف",
"1000-count-two";
"¤ 0 ألف",
"1000-count-few";
"¤ 0 ألف",
"1000-count-many";
"¤ 0 ألف",
"1000-count-other";
"¤ 0 ألف",
"10000-count-zero";
"¤ 00 ألف",
"10000-count-one";
"¤ 00 ألف",
"10000-count-two";
"¤ 00 ألف",
"10000-count-few";
"¤ 00 ألف",
"10000-count-many";
"¤ 00 ألف",
"10000-count-other";
"¤ 00 ألف",
"100000-count-zero";
"¤ 000 ألف",
"100000-count-one";
"¤ 000 ألف",
"100000-count-two";
"¤ 000 ألف",
"100000-count-few";
"¤ 000 ألف",
"100000-count-many";
"¤ 000 ألف",
"100000-count-other";
"¤ 000 ألف",
"1000000-count-zero";
"¤ 0 مليو",
"1000000-count-one";
"¤ 0 مليو",
"1000000-count-two";
"¤ 0 مليو",
"1000000-count-few";
"¤ 0 مليو",
"1000000-count-many";
"¤ 0 مليو",
"1000000-count-other";
"¤ 0 مليو",
"10000000-count-zero";
"¤ 00 مليو",
"10000000-count-one";
"¤ 00 مليو",
"10000000-count-two";
"¤ 00 مليو",
"10000000-count-few";
"¤ 00 مليو",
"10000000-count-many";
"¤ 00 مليو",
"10000000-count-other";
"¤ 00 مليو",
"100000000-count-zero";
"¤ 000 مليو",
"100000000-count-one";
"¤ 000 مليو",
"100000000-count-two";
"¤ 000 مليو",
"100000000-count-few";
"¤ 000 مليو",
"100000000-count-many";
"¤ 000 مليو",
"100000000-count-other";
"¤ 000 مليو",
"1000000000-count-zero";
"¤ 0 مليا",
"1000000000-count-one";
"¤ 0 مليا",
"1000000000-count-two";
"¤ 0 مليا",
"1000000000-count-few";
"¤ 0 مليا",
"1000000000-count-many";
"¤ 0 مليا",
"1000000000-count-other";
"¤ 0 مليا",
"10000000000-count-zero";
"¤ 00 مليا",
"10000000000-count-one";
"¤ 00 مليا",
"10000000000-count-two";
"¤ 00 مليا",
"10000000000-count-few";
"¤ 00 مليا",
"10000000000-count-many";
"¤ 00 مليا",
"10000000000-count-other";
"¤ 00 مليا",
"100000000000-count-zero";
"¤ 000 مليا",
"100000000000-count-one";
"¤ 000 مليا",
"100000000000-count-two";
"¤ 000 مليا",
"100000000000-count-few";
"¤ 000 مليا",
"100000000000-count-many";
"¤ 000 مليا",
"100000000000-count-other";
"¤ 000 مليا",
"1000000000000-count-zero";
"¤ 0 ترليو",
"1000000000000-count-one";
"¤ 0 ترليو",
"1000000000000-count-two";
"¤ 0 ترليو",
"1000000000000-count-few";
"¤ 0 ترليو",
"1000000000000-count-many";
"¤ 0 ترليو",
"1000000000000-count-other";
"¤ 0 ترليو",
"10000000000000-count-zero";
"¤ 00 ترليو",
"10000000000000-count-one";
"¤ 00 ترليو",
"10000000000000-count-two";
"¤ 00 ترليو",
"10000000000000-count-few";
"¤ 00 ترليو",
"10000000000000-count-many";
"¤ 00 ترليو",
"10000000000000-count-other";
"¤ 00 ترليو",
"100000000000000-count-zero";
"¤ 000 ترليو",
"100000000000000-count-one";
"¤ 000 ترليو",
"100000000000000-count-two";
"¤ 000 ترليو",
"100000000000000-count-few";
"¤ 000 ترليو",
"100000000000000-count-many";
"¤ 000 ترليو",
"100000000000000-count-other";
"¤ 000 ترليو";
}
}
"unitPattern-count-zero";
"{0} {1}",
"unitPattern-count-one";
"{0} {1}",
"unitPattern-count-two";
"{0} {1}",
"unitPattern-count-few";
"{0} {1}",
"unitPattern-count-many";
"{0} {1}",
"unitPattern-count-other";
"{0} {1}";
}
"miscPatterns-numberSystem-arab";
{
"atLeast";
"+{0}",
"range";
"{0}–{1}";
}
"miscPatterns-numberSystem-latn";
{
"atLeast";
"+{0}",
"range";
"{0}–{1}";
}
}
}
}
}
{
"main": {
"ar": {
"identity": {
"version": {
"_number": "$Revision: 12879 $",
"_cldrVersion": "30.0.3"
},
"language": "ar"
},
"dates": {
"timeZoneNames": {
"hourFormat": "+HH:mm;-HH:mm",
"gmtFormat": "جرينتش{0}",
"gmtZeroFormat": "جرينتش",
"regionFormat": "توقيت {0}",
"regionFormat-type-daylight": "توقيت {0} الصيفي",
"regionFormat-type-standard": "توقيت {0} الرسمي",
"fallbackFormat": "{1} ({0})",
"zone": {
"America": {
"Adak": {
"exemplarCity": "أداك"
},
"Anchorage": {
"exemplarCity": "أنشوراج"
},
"Anguilla": {
"exemplarCity": "أنغيلا"
},
"Antigua": {
"exemplarCity": "أنتيغوا"
},
"Araguaina": {
"exemplarCity": "أروجوانيا"
},
"Argentina": {
"Rio_Gallegos": {
"exemplarCity": "ريو جالييوس"
},
"San_Juan": {
"exemplarCity": "سان خوان"
},
"Ushuaia": {
"exemplarCity": "أشوا"
},
"La_Rioja": {
"exemplarCity": "لا ريوجا"
},
"San_Luis": {
"exemplarCity": "سان لويس"
},
"Salta": {
"exemplarCity": "سالطا"
},
"Tucuman": {
"exemplarCity": "تاكمان"
}
},
"Aruba": {
"exemplarCity": "أروبا"
},
"Asuncion": {
"exemplarCity": "أسونسيون"
},
"Bahia": {
"exemplarCity": "باهيا"
},
"Bahia_Banderas": {
"exemplarCity": "باهيا بانديراس"
},
"Barbados": {
"exemplarCity": "بربادوس"
},
"Belem": {
"exemplarCity": "بلم"
},
"Belize": {
"exemplarCity": "بليز"
},
"Blanc-Sablon": {
"exemplarCity": "بلانك-سابلون"
},
"Boa_Vista": {
"exemplarCity": "باو فيستا"
},
"Bogota": {
"exemplarCity": "بوغوتا"
},
"Boise": {
"exemplarCity": "بويس"
},
"Buenos_Aires": {
"exemplarCity": "بوينوس أيرس"
},
"Cambridge_Bay": {
"exemplarCity": "كامبرديج باي"
},
"Campo_Grande": {
"exemplarCity": "كومبو جراند"
},
"Cancun": {
"exemplarCity": "كانكون"
},
"Caracas": {
"exemplarCity": "كاراكاس"
},
"Catamarca": {
"exemplarCity": "كاتاماركا"
},
"Cayenne": {
"exemplarCity": "كايين"
},
"Cayman": {
"exemplarCity": "كيمان"
},
"Chicago": {
"exemplarCity": "شيكاغو"
},
"Chihuahua": {
"exemplarCity": "تشيواوا"
},
"Coral_Harbour": {
"exemplarCity": "كورال هاربر"
},
"Cordoba": {
"exemplarCity": "كوردوبا"
},
"Costa_Rica": {
"exemplarCity": "كوستاريكا"
},
"Creston": {
"exemplarCity": "كريستون"
},
"Cuiaba": {
"exemplarCity": "كيابا"
},
"Curacao": {
"exemplarCity": "كوراكاو"
},
"Danmarkshavn": {
"exemplarCity": "دانمرك شافن"
},
"Dawson": {
"exemplarCity": "داوسان"
},
"Dawson_Creek": {
"exemplarCity": "داوسن كريك"
},
"Denver": {
"exemplarCity": "دنفر"
},
"Detroit": {
"exemplarCity": "ديترويت"
},
"Dominica": {
"exemplarCity": "دومينيكا"
},
"Edmonton": {
"exemplarCity": "ايدمونتون"
},
"Eirunepe": {
"exemplarCity": "ايرونبي"
},
"El_Salvador": {
"exemplarCity": "السلفادور"
},
"Fort_Nelson": {
"exemplarCity": "فورت نيلسون"
},
"Fortaleza": {
"exemplarCity": "فورتاليزا"
},
"Glace_Bay": {
"exemplarCity": "جلاس باي"
},
"Godthab": {
"exemplarCity": "غودثاب"
},
"Goose_Bay": {
"exemplarCity": "جوس باي"
},
"Grand_Turk": {
"exemplarCity": "غراند ترك"
},
"Grenada": {
"exemplarCity": "غرينادا"
},
"Guadeloupe": {
"exemplarCity": "غوادلوب"
},
"Guatemala": {
"exemplarCity": "غواتيمالا"
},
"Guayaquil": {
"exemplarCity": "غواياكويل"
},
"Guyana": {
"exemplarCity": "غيانا"
},
"Halifax": {
"exemplarCity": "هاليفاكس"
},
"Havana": {
"exemplarCity": "هافانا"
},
"Hermosillo": {
"exemplarCity": "هيرموسيلو"
},
"Indiana": {
"Vincennes": {
"exemplarCity": "فينسينس"
},
"Petersburg": {
"exemplarCity": "بيترسبرغ"
},
"Tell_City": {
"exemplarCity": "مدينة تل، إنديانا"
},
"Knox": {
"exemplarCity": "كونكس"
},
"Winamac": {
"exemplarCity": "ويناماك"
},
"Marengo": {
"exemplarCity": "مارنجو"
},
"Vevay": {
"exemplarCity": "فيفاي"
}
},
"Indianapolis": {
"exemplarCity": "إنديانابوليس"
},
"Inuvik": {
"exemplarCity": "اينوفيك"
},
"Iqaluit": {
"exemplarCity": "اكويلت"
},
"Jamaica": {
"exemplarCity": "جامايكا"
},
"Jujuy": {
"exemplarCity": "جوجو"
},
"Juneau": {
"exemplarCity": "جوني"
},
"Kentucky": {
"Monticello": {
"exemplarCity": "مونتيسيلو"
}
},
"Kralendijk": {
"exemplarCity": "كرالنديك"
},
"La_Paz": {
"exemplarCity": "لا باز"
},
"Lima": {
"exemplarCity": "ليما"
},
"Los_Angeles": {
"exemplarCity": "لوس انجلوس"
},
"Louisville": {
"exemplarCity": "لويس فيل"
},
"Lower_Princes": {
"exemplarCity": "حي الأمير السفلي"
},
"Maceio": {
"exemplarCity": "ماشيو"
},
"Managua": {
"exemplarCity": "ماناغوا"
},
"Manaus": {
"exemplarCity": "ماناوس"
},
"Marigot": {
"exemplarCity": "ماريغوت"
},
"Martinique": {
"exemplarCity": "المارتينيك"
},
"Matamoros": {
"exemplarCity": "ماتاموروس"
},
"Mazatlan": {
"exemplarCity": "مازاتلان"
},
"Mendoza": {
"exemplarCity": "ميندوزا"
},
"Menominee": {
"exemplarCity": "مينوميني"
},
"Merida": {
"exemplarCity": "ميريدا"
},
"Metlakatla": {
"exemplarCity": "ميتلاكاتلا"
},
"Mexico_City": {
"exemplarCity": "مدينة المكسيك"
},
"Miquelon": {
"exemplarCity": "ميكولن"
},
"Moncton": {
"exemplarCity": "وينكتون"
},
"Monterrey": {
"exemplarCity": "مونتيري"
},
"Montevideo": {
"exemplarCity": "مونتفيديو"
},
"Montserrat": {
"exemplarCity": "مونتسيرات"
},
"Nassau": {
"exemplarCity": "ناسو"
},
"New_York": {
"exemplarCity": "نيويورك"
},
"Nipigon": {
"exemplarCity": "نيبيجون"
},
"Nome": {
"exemplarCity": "نوم"
},
"Noronha": {
"exemplarCity": "نوروناه"
},
"North_Dakota": {
"Beulah": {
"exemplarCity": "بيولا، داكوتا الشمالية"
},
"New_Salem": {
"exemplarCity": "نيو ساليم"
},
"Center": {
"exemplarCity": "سنتر"
}
},
"Ojinaga": {
"exemplarCity": "أوجيناجا"
},
"Panama": {
"exemplarCity": "بنما"
},
"Pangnirtung": {
"exemplarCity": "بانجينتينج"
},
"Paramaribo": {
"exemplarCity": "باراماريبو"
},
"Phoenix": {
"exemplarCity": "فينكس"
},
"Port-au-Prince": {
"exemplarCity": "بورت أو برنس"
},
"Port_of_Spain": {
"exemplarCity": "بورت أوف سبين"
},
"Porto_Velho": {
"exemplarCity": "بورتو فيلو"
},
"Puerto_Rico": {
"exemplarCity": "بورتوريكو"
},
"Rainy_River": {
"exemplarCity": "راني ريفر"
},
"Rankin_Inlet": {
"exemplarCity": "رانكن انلت"
},
"Recife": {
"exemplarCity": "ريسيف"
},
"Regina": {
"exemplarCity": "ريجينا"
},
"Resolute": {
"exemplarCity": "ريزولوت"
},
"Rio_Branco": {
"exemplarCity": "ريوبرانكو"
},
"Santa_Isabel": {
"exemplarCity": "سانتا إيزابيل"
},
"Santarem": {
"exemplarCity": "سانتاريم"
},
"Santiago": {
"exemplarCity": "سانتياغو"
},
"Santo_Domingo": {
"exemplarCity": "سانتو دومينغو"
},
"Sao_Paulo": {
"exemplarCity": "ساو باولو"
},
"Scoresbysund": {
"exemplarCity": "سكورسبيسند"
},
"Sitka": {
"exemplarCity": "سيتكا"
},
"St_Barthelemy": {
"exemplarCity": "سانت بارتيليمي"
},
"St_Johns": {
"exemplarCity": "سانت جونس"
},
"St_Kitts": {
"exemplarCity": "سانت كيتس"
},
"St_Lucia": {
"exemplarCity": "سانت لوشيا"
},
"St_Thomas": {
"exemplarCity": "سانت توماس"
},
"St_Vincent": {
"exemplarCity": "سانت فنسنت"
},
"Swift_Current": {
"exemplarCity": "سوفت كارنت"
},
"Tegucigalpa": {
"exemplarCity": "تيغوسيغالبا"
},
"Thule": {
"exemplarCity": "ثيل"
},
"Thunder_Bay": {
"exemplarCity": "ثندر باي"
},
"Tijuana": {
"exemplarCity": "تيخوانا"
},
"Toronto": {
"exemplarCity": "تورونتو"
},
"Tortola": {
"exemplarCity": "تورتولا"
},
"Vancouver": {
"exemplarCity": "فانكوفر"
},
"Whitehorse": {
"exemplarCity": "وايت هورس"
},
"Winnipeg": {
"exemplarCity": "وينيبيج"
},
"Yakutat": {
"exemplarCity": "ياكوتات"
},
"Yellowknife": {
"exemplarCity": "يلونيف"
}
},
"Atlantic": {
"Azores": {
"exemplarCity": "أزورس"
},
"Bermuda": {
"exemplarCity": "برمودا"
},
"Canary": {
"exemplarCity": "كناري"
},
"Cape_Verde": {
"exemplarCity": "الرأس الأخضر"
},
"Faeroe": {
"exemplarCity": "فارو"
},
"Madeira": {
"exemplarCity": "ماديرا"
},
"Reykjavik": {
"exemplarCity": "ريكيافيك"
},
"South_Georgia": {
"exemplarCity": "جورجيا الجنوبية"
},
"St_Helena": {
"exemplarCity": "سانت هيلينا"
},
"Stanley": {
"exemplarCity": "استانلي"
}
},
"Europe": {
"Amsterdam": {
"exemplarCity": "أمستردام"
},
"Andorra": {
"exemplarCity": "أندورا"
},
"Astrakhan": {
"exemplarCity": "أستراخان"
},
"Athens": {
"exemplarCity": "أثينا"
},
"Belgrade": {
"exemplarCity": "بلغراد"
},
"Berlin": {
"exemplarCity": "برلين"
},
"Bratislava": {
"exemplarCity": "براتيسلافا"
},
"Brussels": {
"exemplarCity": "بروكسل"
},
"Bucharest": {
"exemplarCity": "بوخارست"
},
"Budapest": {
"exemplarCity": "بودابست"
},
"Busingen": {
"exemplarCity": "بوسنغن"
},
"Chisinau": {
"exemplarCity": "تشيسيناو"
},
"Copenhagen": {
"exemplarCity": "كوبنهاغن"
},
"Dublin": {
"long": {
"daylight": "توقيت أيرلندا الرسمي"
},
"exemplarCity": "دبلن"
},
"Gibraltar": {
"exemplarCity": "جبل طارق"
},
"Guernsey": {
"exemplarCity": "غيرنسي"
},
"Helsinki": {
"exemplarCity": "هلسنكي"
},
"Isle_of_Man": {
"exemplarCity": "جزيرة مان"
},
"Istanbul": {
"exemplarCity": "إسطنبول"
},
"Jersey": {
"exemplarCity": "جيرسي"
},
"Kaliningrad": {
"exemplarCity": "كالينجراد"
},
"Kiev": {
"exemplarCity": "كييف"
},
"Kirov": {
"exemplarCity": "كيروف"
},
"Lisbon": {
"exemplarCity": "لشبونة"
},
"Ljubljana": {
"exemplarCity": "ليوبليانا"
},
"London": {
"long": {
"daylight": "توقيت بريطانيا الصيفي"
},
"exemplarCity": "لندن"
},
"Luxembourg": {
"exemplarCity": "لوكسمبورغ"
},
"Madrid": {
"exemplarCity": "مدريد"
},
"Malta": {
"exemplarCity": "مالطة"
},
"Mariehamn": {
"exemplarCity": "ماريهامن"
},
"Minsk": {
"exemplarCity": "مينسك"
},
"Monaco": {
"exemplarCity": "موناكو"
},
"Moscow": {
"exemplarCity": "موسكو"
},
"Oslo": {
"exemplarCity": "أوسلو"
},
"Paris": {
"exemplarCity": "باريس"
},
"Podgorica": {
"exemplarCity": "بودغوريكا"
},
"Prague": {
"exemplarCity": "براغ"
},
"Riga": {
"exemplarCity": "ريغا"
},
"Rome": {
"exemplarCity": "روما"
},
"Samara": {
"exemplarCity": "سمراء"
},
"San_Marino": {
"exemplarCity": "سان مارينو"
},
"Sarajevo": {
"exemplarCity": "سراييفو"
},
"Simferopol": {
"exemplarCity": "سيمفروبول"
},
"Skopje": {
"exemplarCity": "سكوبي"
},
"Sofia": {
"exemplarCity": "صوفيا"
},
"Stockholm": {
"exemplarCity": "ستوكهولم"
},
"Tallinn": {
"exemplarCity": "تالين"
},
"Tirane": {
"exemplarCity": "تيرانا"
},
"Ulyanovsk": {
"exemplarCity": "أوليانوفسك"
},
"Uzhgorod": {
"exemplarCity": "أوزجرود"
},
"Vaduz": {
"exemplarCity": "فادوز"
},
"Vatican": {
"exemplarCity": "الفاتيكان"
},
"Vienna": {
"exemplarCity": "فيينا"
},
"Vilnius": {
"exemplarCity": "فيلنيوس"
},
"Volgograd": {
"exemplarCity": "فولوجراد"
},
"Warsaw": {
"exemplarCity": "وارسو"
},
"Zagreb": {
"exemplarCity": "زغرب"
},
"Zaporozhye": {
"exemplarCity": "زابوروزي"
},
"Zurich": {
"exemplarCity": "زيورخ"
}
},
"Africa": {
"Abidjan": {
"exemplarCity": "أبيدجان"
},
"Accra": {
"exemplarCity": "أكرا"
},
"Addis_Ababa": {
"exemplarCity": "أديس أبابا"
},
"Algiers": {
"exemplarCity": "الجزائر"
},
"Asmera": {
"exemplarCity": "أسمرة"
},
"Bamako": {
"exemplarCity": "باماكو"
},
"Bangui": {
"exemplarCity": "بانغوي"
},
"Banjul": {
"exemplarCity": "بانجول"
},
"Bissau": {
"exemplarCity": "بيساو"
},
"Blantyre": {
"exemplarCity": "بلانتاير"
},
"Brazzaville": {
"exemplarCity": "برازافيل"
},
"Bujumbura": {
"exemplarCity": "بوجومبورا"
},
"Cairo": {
"exemplarCity": "القاهرة"
},
"Casablanca": {
"exemplarCity": "الدار البيضاء"
},
"Ceuta": {
"exemplarCity": "سيتا"
},
"Conakry": {
"exemplarCity": "كوناكري"
},
"Dakar": {
"exemplarCity": "داكار"
},
"Dar_es_Salaam": {
"exemplarCity": "دار السلام"
},
"Djibouti": {
"exemplarCity": "جيبوتي"
},
"Douala": {
"exemplarCity": "دوالا"
},
"El_Aaiun": {
"exemplarCity": "العيون"
},
"Freetown": {
"exemplarCity": "فري تاون"
},
"Gaborone": {
"exemplarCity": "غابورون"
},
"Harare": {
"exemplarCity": "هراري"
},
"Johannesburg": {
"exemplarCity": "جوهانسبرغ"
},
"Juba": {
"exemplarCity": "جوبا"
},
"Kampala": {
"exemplarCity": "كامبالا"
},
"Khartoum": {
"exemplarCity": "الخرطوم"
},
"Kigali": {
"exemplarCity": "كيغالي"
},
"Kinshasa": {
"exemplarCity": "كينشاسا"
},
"Lagos": {
"exemplarCity": "لاغوس"
},
"Libreville": {
"exemplarCity": "ليبرفيل"
},
"Lome": {
"exemplarCity": "لومي"
},
"Luanda": {
"exemplarCity": "لواندا"
},
"Lubumbashi": {
"exemplarCity": "لومبباشا"
},
"Lusaka": {
"exemplarCity": "لوساكا"
},
"Malabo": {
"exemplarCity": "مالابو"
},
"Maputo": {
"exemplarCity": "مابوتو"
},
"Maseru": {
"exemplarCity": "ماسيرو"
},
"Mbabane": {
"exemplarCity": "مباباني"
},
"Mogadishu": {
"exemplarCity": "مقديشيو"
},
"Monrovia": {
"exemplarCity": "مونروفيا"
},
"Nairobi": {
"exemplarCity": "نيروبي"
},
"Ndjamena": {
"exemplarCity": "نجامينا"
},
"Niamey": {
"exemplarCity": "نيامي"
},
"Nouakchott": {
"exemplarCity": "نواكشوط"
},
"Ouagadougou": {
"exemplarCity": "واغادوغو"
},
"Porto-Novo": {
"exemplarCity": "بورتو نوفو"
},
"Sao_Tome": {
"exemplarCity": "ساو تومي"
},
"Tripoli": {
"exemplarCity": "طرابلس"
},
"Tunis": {
"exemplarCity": "تونس"
},
"Windhoek": {
"exemplarCity": "ويندهوك"
}
},
"Asia": {
"Aden": {
"exemplarCity": "عدن"
},
"Almaty": {
"exemplarCity": "ألماتي"
},
"Amman": {
"exemplarCity": "عمان"
},
"Anadyr": {
"exemplarCity": "أندير"
},
"Aqtau": {
"exemplarCity": "أكتاو"
},
"Aqtobe": {
"exemplarCity": "أكتوب"
},
"Ashgabat": {
"exemplarCity": "عشق آباد"
},
"Baghdad": {
"exemplarCity": "بغداد"
},
"Bahrain": {
"exemplarCity": "البحرين"
},
"Baku": {
"exemplarCity": "باكو"
},
"Bangkok": {
"exemplarCity": "بانكوك"
},
"Barnaul": {
"exemplarCity": "بارناول"
},
"Beirut": {
"exemplarCity": "بيروت"
},
"Bishkek": {
"exemplarCity": "بشكيك"
},
"Brunei": {
"exemplarCity": "بروناي"
},
"Calcutta": {
"exemplarCity": "كالكتا"
},
"Chita": {
"exemplarCity": "تشيتا"
},
"Choibalsan": {
"exemplarCity": "تشوبالسان"
},
"Colombo": {
"exemplarCity": "كولومبو"
},
"Damascus": {
"exemplarCity": "دمشق"
},
"Dhaka": {
"exemplarCity": "دكا"
},
"Dili": {
"exemplarCity": "ديلي"
},
"Dubai": {
"exemplarCity": "دبي"
},
"Dushanbe": {
"exemplarCity": "دوشانبي"
},
"Gaza": {
"exemplarCity": "غزة"
},
"Hebron": {
"exemplarCity": "هيبرون (مدينة الخليل)"
},
"Hong_Kong": {
"exemplarCity": "هونغ كونغ"
},
"Hovd": {
"exemplarCity": "هوفد"
},
"Irkutsk": {
"exemplarCity": "ايركيتسك"
},
"Jakarta": {
"exemplarCity": "جاكرتا"
},
"Jayapura": {
"exemplarCity": "جايابيورا"
},
"Jerusalem": {
"exemplarCity": "القدس"
},
"Kabul": {
"exemplarCity": "كابول"
},
"Kamchatka": {
"exemplarCity": "كامتشاتكا"
},
"Karachi": {
"exemplarCity": "كراتشي"
},
"Katmandu": {
"exemplarCity": "كاتماندو"
},
"Khandyga": {
"exemplarCity": "خانديجا"
},
"Krasnoyarsk": {
"exemplarCity": "كراسنويارسك"
},
"Kuala_Lumpur": {
"exemplarCity": "كوالا لامبور"
},
"Kuching": {
"exemplarCity": "كيشينج"
},
"Kuwait": {
"exemplarCity": "الكويت"
},
"Macau": {
"exemplarCity": "ماكاو"
},
"Magadan": {
"exemplarCity": "مجادن"
},
"Makassar": {
"exemplarCity": "ماكسار"
},
"Manila": {
"exemplarCity": "مانيلا"
},
"Muscat": {
"exemplarCity": "مسقط"
},
"Nicosia": {
"exemplarCity": "نيقوسيا"
},
"Novokuznetsk": {
"exemplarCity": "نوفوكوزنتسك"
},
"Novosibirsk": {
"exemplarCity": "نوفوسبيرسك"
},
"Omsk": {
"exemplarCity": "أومسك"
},
"Oral": {
"exemplarCity": "أورال"
},
"Phnom_Penh": {
"exemplarCity": "بنوم بنه"
},
"Pontianak": {
"exemplarCity": "بونتيانك"
},
"Pyongyang": {
"exemplarCity": "بيونغ يانغ"
},
"Qatar": {
"exemplarCity": "قطر"
},
"Qyzylorda": {
"exemplarCity": "كيزيلوردا"
},
"Rangoon": {
"exemplarCity": "رانغون"
},
"Riyadh": {
"exemplarCity": "الرياض"
},
"Saigon": {
"exemplarCity": "مدينة هو تشي منة"
},
"Sakhalin": {
"exemplarCity": "سكالين"
},
"Samarkand": {
"exemplarCity": "سمرقند"
},
"Seoul": {
"exemplarCity": "سول"
},
"Shanghai": {
"exemplarCity": "شنغهاي"
},
"Singapore": {
"exemplarCity": "سنغافورة"
},
"Srednekolymsk": {
"exemplarCity": "سريدنكوليمسك"
},
"Taipei": {
"exemplarCity": "تايبيه"
},
"Tashkent": {
"exemplarCity": "طشقند"
},
"Tbilisi": {
"exemplarCity": "تبليسي"
},
"Tehran": {
"exemplarCity": "طهران"
},
"Thimphu": {
"exemplarCity": "تيمفو"
},
"Tokyo": {
"exemplarCity": "طوكيو"
},
"Tomsk": {
"exemplarCity": "تومسك"
},
"Ulaanbaatar": {
"exemplarCity": "آلانباتار"
},
"Urumqi": {
"exemplarCity": "أرومكي"
},
"Ust-Nera": {
"exemplarCity": "أوست نيرا"
},
"Vientiane": {
"exemplarCity": "فيانتيان"
},
"Vladivostok": {
"exemplarCity": "فلاديفوستك"
},
"Yakutsk": {
"exemplarCity": "ياكتسك"
},
"Yekaterinburg": {
"exemplarCity": "يكاترنبيرج"
},
"Yerevan": {
"exemplarCity": "يريفان"
}
},
"Indian": {
"Antananarivo": {
"exemplarCity": "أنتاناناريفو"
},
"Chagos": {
"exemplarCity": "تشاغوس"
},
"Christmas": {
"exemplarCity": "كريسماس"
},
"Cocos": {
"exemplarCity": "كوكوس"
},
"Comoro": {
"exemplarCity": "جزر القمر"
},
"Kerguelen": {
"exemplarCity": "كيرغويلين"
},
"Mahe": {
"exemplarCity": "ماهي"
},
"Maldives": {
"exemplarCity": "المالديف"
},
"Mauritius": {
"exemplarCity": "موريشيوس"
},
"Mayotte": {
"exemplarCity": "مايوت"
},
"Reunion": {
"exemplarCity": "ريونيون"
}
},
"Australia": {
"Adelaide": {
"exemplarCity": "أديليد"
},
"Brisbane": {
"exemplarCity": "برسيبان"
},
"Broken_Hill": {
"exemplarCity": "بروكن هيل"
},
"Currie": {
"exemplarCity": "كوري"
},
"Darwin": {
"exemplarCity": "دارون"
},
"Eucla": {
"exemplarCity": "أوكلا"
},
"Hobart": {
"exemplarCity": "هوبارت"
},
"Lindeman": {
"exemplarCity": "ليندمان"
},
"Lord_Howe": {
"exemplarCity": "لورد هاو"
},
"Melbourne": {
"exemplarCity": "ميلبورن"
},
"Perth": {
"exemplarCity": "برثا"
},
"Sydney": {
"exemplarCity": "سيدني"
}
},
"Pacific": {
"Apia": {
"exemplarCity": "أبيا"
},
"Auckland": {
"exemplarCity": "أوكلاند"
},
"Bougainville": {
"exemplarCity": "بوغانفيل"
},
"Chatham": {
"exemplarCity": "تشاثام"
},
"Easter": {
"exemplarCity": "استر"
},
"Efate": {
"exemplarCity": "إيفات"
},
"Enderbury": {
"exemplarCity": "اندربيرج"
},
"Fakaofo": {
"exemplarCity": "فاكاوفو"
},
"Fiji": {
"exemplarCity": "فيجي"
},
"Funafuti": {
"exemplarCity": "فونافوتي"
},
"Galapagos": {
"exemplarCity": "جلاباجوس"
},
"Gambier": {
"exemplarCity": "جامبير"
},
"Guadalcanal": {
"exemplarCity": "غوادالكانال"
},
"Guam": {
"exemplarCity": "غوام"
},
"Honolulu": {
"exemplarCity": "هونولولو"
},
"Johnston": {
"exemplarCity": "جونستون"
},
"Kiritimati": {
"exemplarCity": "كيريتي ماتي"
},
"Kosrae": {
"exemplarCity": "كوسرا"
},
"Kwajalein": {
"exemplarCity": "كواجالين"
},
"Majuro": {
"exemplarCity": "ماجورو"
},
"Marquesas": {
"exemplarCity": "ماركيساس"
},
"Midway": {
"exemplarCity": "ميدواي"
},
"Nauru": {
"exemplarCity": "ناورو"
},
"Niue": {
"exemplarCity": "نيوي"
},
"Norfolk": {
"exemplarCity": "نورفولك"
},
"Noumea": {
"exemplarCity": "نوميا"
},
"Pago_Pago": {
"exemplarCity": "باغو باغو"
},
"Palau": {
"exemplarCity": "بالاو"
},
"Pitcairn": {
"exemplarCity": "بيتكيرن"
},
"Ponape": {
"exemplarCity": "باناب"
},
"Port_Moresby": {
"exemplarCity": "بور مورسبي"
},
"Rarotonga": {
"exemplarCity": "راروتونغا"
},
"Saipan": {
"exemplarCity": "سايبان"
},
"Tahiti": {
"exemplarCity": "تاهيتي"
},
"Tarawa": {
"exemplarCity": "تاراوا"
},
"Tongatapu": {
"exemplarCity": "تونغاتابو"
},
"Truk": {
"exemplarCity": "ترك"
},
"Wake": {
"exemplarCity": "واك"
},
"Wallis": {
"exemplarCity": "واليس"
}
},
"Arctic": {
"Longyearbyen": {
"exemplarCity": "لونجيربين"
}
},
"Antarctica": {
"Casey": {
"exemplarCity": "كاساي"
},
"Davis": {
"exemplarCity": "دافيز"
},
"DumontDUrville": {
"exemplarCity": "دي مونت دو روفيل"
},
"Macquarie": {
"exemplarCity": "ماكواري"
},
"Mawson": {
"exemplarCity": "ماوسون"
},
"McMurdo": {
"exemplarCity": "ماك موردو"
},
"Palmer": {
"exemplarCity": "بالمير"
},
"Rothera": {
"exemplarCity": "روثيرا"
},
"Syowa": {
"exemplarCity": "سايووا"
},
"Troll": {
"exemplarCity": "ترول"
},
"Vostok": {
"exemplarCity": "فوستوك"
}
},
"Etc": {
"GMT": {
"exemplarCity": "GMT"
},
"GMT1": {
"exemplarCity": "GMT+1"
},
"GMT10": {
"exemplarCity": "GMT+10"
},
"GMT11": {
"exemplarCity": "GMT+11"
},
"GMT12": {
"exemplarCity": "GMT+12"
},
"GMT2": {
"exemplarCity": "GMT+2"
},
"GMT3": {
"exemplarCity": "GMT+3"
},
"GMT4": {
"exemplarCity": "GMT+4"
},
"GMT5": {
"exemplarCity": "GMT+5"
},
"GMT6": {
"exemplarCity": "GMT+6"
},
"GMT7": {
"exemplarCity": "GMT+7"
},
"GMT8": {
"exemplarCity": "GMT+8"
},
"GMT9": {
"exemplarCity": "GMT+9"
},
"GMT-1": {
"exemplarCity": "GMT-1"
},
"GMT-10": {
"exemplarCity": "GMT-10"
},
"GMT-11": {
"exemplarCity": "GMT-11"
},
"GMT-12": {
"exemplarCity": "GMT-12"
},
"GMT-13": {
"exemplarCity": "GMT-13"
},
"GMT-14": {
"exemplarCity": "GMT-14"
},
"GMT-2": {
"exemplarCity": "GMT-2"
},
"GMT-3": {
"exemplarCity": "GMT-3"
},
"GMT-4": {
"exemplarCity": "GMT-4"
},
"GMT-5": {
"exemplarCity": "GMT-5"
},
"GMT-6": {
"exemplarCity": "GMT-6"
},
"GMT-7": {
"exemplarCity": "GMT-7"
},
"GMT-8": {
"exemplarCity": "GMT-8"
},
"GMT-9": {
"exemplarCity": "GMT-9"
},
"Unknown": {
"exemplarCity": "مدينة غير معروفة"
}
}
},
"metazone": {
"Afghanistan": {
"long": {
"standard": "توقيت أفغانستان"
}
},
"Africa_Central": {
"long": {
"standard": "توقيت وسط أفريقيا"
}
},
"Africa_Eastern": {
"long": {
"standard": "توقيت شرق أفريقيا"
}
},
"Africa_Southern": {
"long": {
"standard": "توقيت جنوب أفريقيا"
}
},
"Africa_Western": {
"long": {
"generic": "توقيت غرب أفريقيا",
"standard": "توقيت غرب أفريقيا الرسمي",
"daylight": "توقيت غرب أفريقيا الصيفي"
}
},
"Alaska": {
"long": {
"generic": "توقيت ألاسكا",
"standard": "التوقيت الرسمي لألاسكا",
"daylight": "توقيت ألاسكا الصيفي"
}
},
"Amazon": {
"long": {
"generic": "توقيت الأمازون",
"standard": "توقيت الأمازون الرسمي",
"daylight": "توقيت الأمازون الصيفي"
}
},
"America_Central": {
"long": {
"generic": "التوقيت المركزي لأمريكا الشمالية",
"standard": "التوقيت الرسمي المركزي لأمريكا الشمالية",
"daylight": "التوقيت الصيفي المركزي لأمريكا الشمالية"
}
},
"America_Eastern": {
"long": {
"generic": "التوقيت الشرقي لأمريكا الشمالية",
"standard": "التوقيت الرسمي الشرقي لأمريكا الشمالية",
"daylight": "التوقيت الصيفي الشرقي لأمريكا الشمالية"
}
},
"America_Mountain": {
"long": {
"generic": "التوقيت الجبلي لأمريكا الشمالية",
"standard": "التوقيت الجبلي الرسمي لأمريكا الشمالية",
"daylight": "التوقيت الجبلي الصيفي لأمريكا الشمالية"
}
},
"America_Pacific": {
"long": {
"generic": "توقيت المحيط الهادي",
"standard": "توقيت المحيط الهادي الرسمي",
"daylight": "توقيت المحيط الهادي الصيفي"
}
},
"Anadyr": {
"long": {
"generic": "توقيت أنادير",
"standard": "توقيت أنادير الرسمي",
"daylight": "التوقيت الصيفي لأنادير"
}
},
"Apia": {
"long": {
"generic": "توقيت آبيا",
"standard": "التوقيت الرسمي لآبيا",
"daylight": "التوقيت الصيفي لأبيا"
}
},
"Arabian": {
"long": {
"generic": "التوقيت العربي",
"standard": "التوقيت العربي الرسمي",
"daylight": "التوقيت العربي الصيفي"
}
},
"Argentina": {
"long": {
"generic": "توقيت الأرجنتين",
"standard": "توقيت الأرجنتين الرسمي",
"daylight": "توقيت الأرجنتين الصيفي"
}
},
"Argentina_Western": {
"long": {
"generic": "توقيت غرب الأرجنتين",
"standard": "توقيت غرب الأرجنتين الرسمي",
"daylight": "توقيت غرب الأرجنتين الصيفي"
}
},
"Armenia": {
"long": {
"generic": "توقيت أرمينيا",
"standard": "توقيت أرمينيا الرسمي",
"daylight": "توقيت أرمينيا الصيفي"
}
},
"Atlantic": {
"long": {
"generic": "توقيت الأطلسي",
"standard": "التوقيت الرسمي الأطلسي",
"daylight": "التوقيت الصيفي الأطلسي"
}
},
"Australia_Central": {
"long": {
"generic": "توقيت وسط أستراليا",
"standard": "توقيت وسط أستراليا الرسمي",
"daylight": "توقيت وسط أستراليا الصيفي"
}
},
"Australia_CentralWestern": {
"long": {
"generic": "توقيت غرب وسط أستراليا",
"standard": "توقيت غرب وسط أستراليا الرسمي",
"daylight": "توقيت غرب وسط أستراليا الصيفي"
}
},
"Australia_Eastern": {
"long": {
"generic": "توقيت شرق أستراليا",
"standard": "توقيت شرق أستراليا الرسمي",
"daylight": "توقيت شرق أستراليا الصيفي"
}
},
"Australia_Western": {
"long": {
"generic": "توقيت غرب أستراليا",
"standard": "توقيت غرب أستراليا الرسمي",
"daylight": "توقيت غرب أستراليا الصيفي"
}
},
"Azerbaijan": {
"long": {
"generic": "توقيت أذربيجان",
"standard": "توقيت أذربيجان الرسمي",
"daylight": "توقيت أذربيجان الصيفي"
}
},
"Azores": {
"long": {
"generic": "توقيت أزورس",
"standard": "توقيت أزورس الرسمي",
"daylight": "توقيت أزورس الصيفي"
}
},
"Bangladesh": {
"long": {
"generic": "توقيت بنجلاديش",
"standard": "توقيت بنجلاديش الرسمي",
"daylight": "توقيت بنجلاديش الصيفي"
}
},
"Bhutan": {
"long": {
"standard": "توقيت بوتان"
}
},
"Bolivia": {
"long": {
"standard": "توقيت بوليفيا"
}
},
"Brasilia": {
"long": {
"generic": "توقيت برازيليا",
"standard": "توقيت برازيليا الرسمي",
"daylight": "توقيت برازيليا الصيفي"
}
},
"Brunei": {
"long": {
"standard": "توقيت بروناي"
}
},
"Cape_Verde": {
"long": {
"generic": "توقيت الرأس الأخضر",
"standard": "توقيت الرأس الأخضر الرسمي",
"daylight": "توقيت الرأس الأخضر الصيفي"
}
},
"Chamorro": {
"long": {
"standard": "توقيت تشامورو"
}
},
"Chatham": {
"long": {
"generic": "توقيت تشاتام",
"standard": "توقيت تشاتام الرسمي",
"daylight": "توقيت تشاتام الصيفي"
}
},
"Chile": {
"long": {
"generic": "توقيت شيلي",
"standard": "توقيت شيلي الرسمي",
"daylight": "توقيت شيلي الصيفي"
}
},
"China": {
"long": {
"generic": "توقيت الصين",
"standard": "توقيت الصين الرسمي",
"daylight": "توقيت الصين الصيفي"
}
},
"Choibalsan": {
"long": {
"generic": "توقيت شويبالسان",
"standard": "توقيت شويبالسان الرسمي",
"daylight": "التوقيت الصيفي لشويبالسان"
}
},
"Christmas": {
"long": {
"standard": "توقيت جزر الكريسماس"
}
},
"Cocos": {
"long": {
"standard": "توقيت جزر كوكوس"
}
},
"Colombia": {
"long": {
"generic": "توقيت كولومبيا",
"standard": "توقيت كولومبيا الرسمي",
"daylight": "توقيت كولومبيا الصيفي"
}
},
"Cook": {
"long": {
"generic": "توقيت جزر كووك",
"standard": "توقيت جزر كووك الرسمي",
"daylight": "توقيت جزر كووك الصيفي"
}
},
"Cuba": {
"long": {
"generic": "توقيت كوبا",
"standard": "توقيت كوبا الرسمي",
"daylight": "توقيت كوبا الصيفي"
}
},
"Davis": {
"long": {
"standard": "توقيت دافيز"
}
},
"DumontDUrville": {
"long": {
"standard": "توقيت دي مونت دو روفيل"
}
},
"East_Timor": {
"long": {
"standard": "توقيت تيمور الشرقية"
}
},
"Easter": {
"long": {
"generic": "توقيت جزيرة استر",
"standard": "توقيت جزيرة استر الرسمي",
"daylight": "توقيت جزيرة استر الصيفي"
}
},
"Ecuador": {
"long": {
"standard": "توقيت الإكوادور"
}
},
"Europe_Central": {
"long": {
"generic": "توقيت وسط أوروبا",
"standard": "توقيت وسط أوروبا الرسمي",
"daylight": "توقيت وسط أوروبا الصيفي"
}
},
"Europe_Eastern": {
"long": {
"generic": "توقيت شرق أوروبا",
"standard": "توقيت شرق أوروبا الرسمي",
"daylight": "توقيت شرق أوروبا الصيفي"
}
},
"Europe_Further_Eastern": {
"long": {
"standard": "التوقيت الأوروبي (أكثر شرقًا)"
}
},
"Europe_Western": {
"long": {
"generic": "توقيت غرب أوروبا",
"standard": "توقيت غرب أوروبا الرسمي",
"daylight": "توقيت غرب أوروبا الصيفي"
}
},
"Falkland": {
"long": {
"generic": "توقيت جزر فوكلاند",
"standard": "توقيت جزر فوكلاند الرسمي",
"daylight": "توقيت جزر فوكلاند الصيفي"
}
},
"Fiji": {
"long": {
"generic": "توقيت فيجي",
"standard": "توقيت فيجي الرسمي",
"daylight": "توقيت فيجي الصيفي"
}
},
"French_Guiana": {
"long": {
"standard": "توقيت غايانا الفرنسية"
}
},
"French_Southern": {
"long": {
"standard": "توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية"
}
},
"Galapagos": {
"long": {
"standard": "توقيت غلاباغوس"
}
},
"Gambier": {
"long": {
"standard": "توقيت جامبير"
}
},
"Georgia": {
"long": {
"generic": "توقيت جورجيا",
"standard": "توقيت جورجيا الرسمي",
"daylight": "توقيت جورجيا الصيفي"
}
},
"Gilbert_Islands": {
"long": {
"standard": "توقيت جزر جيلبرت"
}
},
"GMT": {
"long": {
"standard": "توقيت غرينتش"
}
},
"Greenland_Eastern": {
"long": {
"generic": "توقيت شرق غرينلاند",
"standard": "توقيت شرق غرينلاند الرسمي",
"daylight": "توقيت شرق غرينلاند الصيفي"
}
},
"Greenland_Western": {
"long": {
"generic": "توقيت غرب غرينلاند",
"standard": "توقيت غرب غرينلاند الرسمي",
"daylight": "توقيت غرب غرينلاند الصيفي"
}
},
"Guam": {
"long": {
"standard": "توقيت غوام"
}
},
"Gulf": {
"long": {
"standard": "توقيت الخليج"
}
},
"Guyana": {
"long": {
"standard": "توقيت غيانا"
}
},
"Hawaii_Aleutian": {
"long": {
"generic": "توقيت هاواي ألوتيان",
"standard": "توقيت هاواي ألوتيان الرسمي",
"daylight": "توقيت هاواي ألوتيان الصيفي"
}
},
"Hong_Kong": {
"long": {
"generic": "توقيت هونغ كونغ",
"standard": "توقيت هونغ كونغ الرسمي",
"daylight": "توقيت هونغ كونغ الصيفي"
}
},
"Hovd": {
"long": {
"generic": "توقيت هوفد",
"standard": "توقيت هوفد الرسمي",
"daylight": "توقيت هوفد الصيفي"
}
},
"India": {
"long": {
"standard": "توقيت الهند"
}
},
"Indian_Ocean": {
"long": {
"standard": "توقيت المحيط الهندي"
}
},
"Indochina": {
"long": {
"standard": "توقيت الهند الصينية"
}
},
"Indonesia_Central": {
"long": {
"standard": "توقيت وسط إندونيسيا"
}
},
"Indonesia_Eastern": {
"long": {
"standard": "توقيت شرق إندونيسيا"
}
},
"Indonesia_Western": {
"long": {
"standard": "توقيت غرب إندونيسيا"
}
},
"Iran": {
"long": {
"generic": "توقيت إيران",
"standard": "توقيت إيران الرسمي",
"daylight": "توقيت إيران الصيفي"
}
},
"Irkutsk": {
"long": {
"generic": "توقيت إركوتسك",
"standard": "توقيت إركوتسك الرسمي",
"daylight": "توقيت إركوتسك الصيفي"
}
},
"Israel": {
"long": {
"generic": "توقيت إسرائيل",
"standard": "توقيت إسرائيل الرسمي",
"daylight": "توقيت إسرائيل الصيفي"
}
},
"Japan": {
"long": {
"generic": "توقيت اليابان",
"standard": "توقيت اليابان الرسمي",
"daylight": "توقيت اليابان الصيفي"
}
},
"Kamchatka": {
"long": {
"generic": "توقيت كامشاتكا",
"standard": "توقيت بيتروبافلوفسك-كامتشاتسكي",
"daylight": "توقيت بيتروبافلوفسك-كامتشاتسكي الصيفي"
}
},
"Kazakhstan_Eastern": {
"long": {
"standard": "توقيت شرق كازاخستان"
}
},
"Kazakhstan_Western": {
"long": {
"standard": "توقيت غرب كازاخستان"
}
},
"Korea": {
"long": {
"generic": "توقيت كوريا",
"standard": "توقيت كوريا الرسمي",
"daylight": "توقيت كوريا الصيفي"
}
},
"Kosrae": {
"long": {
"standard": "توقيت كوسرا"
}
},
"Krasnoyarsk": {
"long": {
"generic": "توقيت كراسنويارسك",
"standard": "توقيت كراسنويارسك الرسمي",
"daylight": "التوقيت الصيفي لكراسنويارسك"
}
},
"Kyrgystan": {
"long": {
"standard": "توقيت قرغيزستان"
}
},
"Line_Islands": {
"long": {
"standard": "توقيت جزر لاين"
}
},
"Lord_Howe": {
"long": {
"generic": "توقيت لورد هاو",
"standard": "توقيت لورد هاو الرسمي",
"daylight": "التوقيت الصيفي للورد هاو"
}
},
"Macquarie": {
"long": {
"standard": "توقيت ماكواري"
}
},
"Magadan": {
"long": {
"generic": "توقيت ماغادان",
"standard": "توقيت ماغادان الرسمي",
"daylight": "توقيت ماغادان الصيفي"
}
},
"Malaysia": {
"long": {
"standard": "توقيت ماليزيا"
}
},
"Maldives": {
"long": {
"standard": "توقيت الـمالديف"
}
},
"Marquesas": {
"long": {
"standard": "توقيت ماركيساس"
}
},
"Marshall_Islands": {
"long": {
"standard": "توقيت جزر مارشال"
}
},
"Mauritius": {
"long": {
"generic": "توقيت موريشيوس",
"standard": "توقيت موريشيوس الرسمي",
"daylight": "توقيت موريشيوس الصيفي"
}
},
"Mawson": {
"long": {
"standard": "توقيت ماوسون"
}
},
"Mexico_Northwest": {
"long": {
"generic": "توقيت شمال غرب المكسيك",
"standard": "التوقيت الرسمي لشمال غرب المكسيك",
"daylight": "التوقيت الصيفي لشمال غرب المكسيك"
}
},
"Mexico_Pacific": {
"long": {
"generic": "توقيت المحيط الهادي للمكسيك",
"standard": "توقيت المحيط الهادي الرسمي للمكسيك",
"daylight": "توقيت المحيط الهادي الصيفي للمكسيك"
}
},
"Mongolia": {
"long": {
"generic": "توقيت أولان باتور",
"standard": "توقيت أولان باتور الرسمي",
"daylight": "توقيت أولان باتور الصيفي"
}
},
"Moscow": {
"long": {
"generic": "توقيت موسكو",
"standard": "توقيت موسكو الرسمي",
"daylight": "توقيت موسكو الصيفي"
}
},
"Myanmar": {
"long": {
"standard": "توقيت ميانمار"
}
},
"Nauru": {
"long": {
"standard": "توقيت ناورو"
}
},
"Nepal": {
"long": {
"standard": "توقيت نيبال"
}
},
"New_Caledonia": {
"long": {
"generic": "توقيت كاليدونيا الجديدة",
"standard": "توقيت كاليدونيا الجديدة الرسمي",
"daylight": "توقيت كاليدونيا الجديدة الصيفي"
}
},
"New_Zealand": {
"long": {
"generic": "توقيت نيوزيلندا",
"standard": "توقيت نيوزيلندا الرسمي",
"daylight": "توقيت نيوزيلندا الصيفي"
}
},
"Newfoundland": {
"long": {
"generic": "توقيت نيوفاوندلاند",
"standard": "توقيت نيوفاوندلاند الرسمي",
"daylight": "توقيت نيوفاوندلاند الصيفي"
}
},
"Niue": {
"long": {
"standard": "توقيت نيوي"
}
},
"Norfolk": {
"long": {
"standard": "توقيت جزيرة نورفولك"
}
},
"Noronha": {
"long": {
"generic": "توقيت فيرناندو دي نورونها",
"standard": "توقيت فرناندو دي نورونها الرسمي",
"daylight": "توقيت فرناندو دي نورونها الصيفي"
}
},
"North_Mariana": {
"long": {
"standard": "توقيت جزر ماريانا الشمالية"
}
},
"Novosibirsk": {
"long": {
"generic": "توقيت نوفوسيبيرسك",
"standard": "توقيت نوفوسيبيرسك الرسمي",
"daylight": "توقيت نوفوسيبيرسك الصيفي"
}
},
"Omsk": {
"long": {
"generic": "توقيت أومسك",
"standard": "توقيت أومسك الرسمي",
"daylight": "توقيت أومسك الصيفي"
}
},
"Pakistan": {
"long": {
"generic": "توقيت باكستان",
"standard": "توقيت باكستان الرسمي",
"daylight": "توقيت باكستان الصيفي"
}
},
"Palau": {
"long": {
"standard": "توقيت بالاو"
}
},
"Papua_New_Guinea": {
"long": {
"standard": "توقيت بابوا غينيا الجديدة"
}
},
"Paraguay": {
"long": {
"generic": "توقيت باراغواي",
"standard": "توقيت باراغواي الرسمي",
"daylight": "توقيت باراغواي الصيفي"
}
},
"Peru": {
"long": {
"generic": "توقيت بيرو",
"standard": "توقيت بيرو الرسمي",
"daylight": "توقيت بيرو الصيفي"
}
},
"Philippines": {
"long": {
"generic": "توقيت الفيلبين",
"standard": "توقيت الفيلبين الرسمي",
"daylight": "توقيت الفيلبين الصيفي"
}
},
"Phoenix_Islands": {
"long": {
"standard": "توقيت جزر فينكس"
}
},
"Pierre_Miquelon": {
"long": {
"generic": "توقيت سانت بيير وميكولون",
"standard": "توقيت سانت بيير وميكولون الرسمي",
"daylight": "توقيت سانت بيير وميكولون الصيفي"
}
},
"Pitcairn": {
"long": {
"standard": "توقيت بيتكيرن"
}
},
"Ponape": {
"long": {
"standard": "توقيت بونابي"
}
},
"Pyongyang": {
"long": {
"standard": "توقيت بيونغ يانغ"
}
},
"Reunion": {
"long": {
"standard": "توقيت ريونيون"
}
},
"Rothera": {
"long": {
"standard": "توقيت روثيرا"
}
},
"Sakhalin": {
"long": {
"generic": "توقيت ساخالين",
"standard": "توقيت ساخالين الرسمي",
"daylight": "توقيت ساخالين الصيفي"
}
},
"Samara": {
"long": {
"generic": "توقيت سامارا",
"standard": "توقيت سمارا",
"daylight": "توقيت سمارا الصيفي"
}
},
"Samoa": {
"long": {
"generic": "توقيت ساموا",
"standard": "توقيت ساموا الرسمي",
"daylight": "توقيت ساموا الصيفي"
}
},
"Seychelles": {
"long": {
"standard": "توقيت سيشل"
}
},
"Singapore": {
"long": {
"standard": "توقيت سنغافورة"
}
},
"Solomon": {
"long": {
"standard": "توقيت جزر سليمان"
}
},
"South_Georgia": {
"long": {
"standard": "توقيت جنوب جورجيا"
}
},
"Suriname": {
"long": {
"standard": "توقيت سورينام"
}
},
"Syowa": {
"long": {
"standard": "توقيت سايووا"
}
},
"Tahiti": {
"long": {
"standard": "توقيت تاهيتي"
}
},
"Taipei": {
"long": {
"generic": "توقيت تايبيه",
"standard": "توقيت تايبيه الرسمي",
"daylight": "توقيت تايبيه الصيفي"
}
},
"Tajikistan": {
"long": {
"standard": "توقيت طاجكستان"
}
},
"Tokelau": {
"long": {
"standard": "توقيت توكيلاو"
}
},
"Tonga": {
"long": {
"generic": "توقيت تونغا",
"standard": "توقيت تونغا الرسمي",
"daylight": "توقيت تونغا الصيفي"
}
},
"Truk": {
"long": {
"standard": "توقيت شوك"
}
},
"Turkmenistan": {
"long": {
"generic": "توقيت تركمانستان",
"standard": "توقيت تركمانستان الرسمي",
"daylight": "توقيت تركمانستان الصيفي"
}
},
"Tuvalu": {
"long": {
"standard": "توقيت توفالو"
}
},
"Uruguay": {
"long": {
"generic": "توقيت أورغواي",
"standard": "توقيت أورغواي الرسمي",
"daylight": "توقيت أورغواي الصيفي"
}
},
"Uzbekistan": {
"long": {
"generic": "توقيت أوزبكستان",
"standard": "توقيت أوزبكستان الرسمي",
"daylight": "توقيت أوزبكستان الصيفي"
}
},
"Vanuatu": {
"long": {
"generic": "توقيت فانواتو",
"standard": "توقيت فانواتو الرسمي",
"daylight": "توقيت فانواتو الصيفي"
}
},
"Venezuela": {
"long": {
"standard": "توقيت فنزويلا"
}
},
"Vladivostok": {
"long": {
"generic": "توقيت فلاديفوستوك",
"standard": "توقيت فلاديفوستوك الرسمي",
"daylight": "توقيت فلاديفوستوك الصيفي"
}
},
"Volgograd": {
"long": {
"generic": "توقيت فولغوغراد",
"standard": "توقيت فولغوغراد الرسمي",
"daylight": "توقيت فولغوغراد الصيفي"
}
},
"Vostok": {
"long": {
"standard": "توقيت فوستوك"
}
},
"Wake": {
"long": {
"standard": "توقيت جزيرة ويك"
}
},
"Wallis": {
"long": {
"standard": "توقيت واليس و فوتونا"
}
},
"Yakutsk": {
"long": {
"generic": "توقيت ياكوتسك",
"standard": "توقيت ياكوتسك الرسمي",
"daylight": "توقيت ياكوتسك الصيفي"
}
},
"Yekaterinburg": {
"long": {
"generic": "توقيت يكاترينبورغ",
"standard": "توقيت يكاترينبورغ الرسمي",
"daylight": "توقيت يكاترينبورغ الصيفي"
}
}
}
}
}
}
}
}
{
"main";
{
"ar";
{
"identity";
{
"version";
{
"_number";
"$Revision: 12879 $",
"_cldrVersion";
"30.0.3";
}
"language";
"ar";
}
"dates";
{
"timeZoneNames";
{
"hourFormat";
"+HH:mm;-HH:mm",
"gmtFormat";
"جرينتش{0}",
"gmtZeroFormat";
"جرينتش",
"regionFormat";
"توقيت {0}",
"regionFormat-type-daylight";
"توقيت {0} الصيفي",
"regionFormat-type-standard";
"توقيت {0} الرسمي",
"fallbackFormat";
"{1} ({0})",
"zone";
{
"America";
{
"Adak";
{
"exemplarCity";
"أداك";
}
"Anchorage";
{
"exemplarCity";
"أنشوراج";
}
"Anguilla";
{
"exemplarCity";
"أنغيلا";
}
"Antigua";
{
"exemplarCity";
"أنتيغوا";
}
"Araguaina";
{
"exemplarCity";
"أروجوانيا";
}
"Argentina";
{
"Rio_Gallegos";
{
"exemplarCity";
"ريو جالييوس";
}
"San_Juan";
{
"exemplarCity";
"سان خوان";
}
"Ushuaia";
{
"exemplarCity";
"أشوا";
}
"La_Rioja";
{
"exemplarCity";
"لا ريوجا";
}
"San_Luis";
{
"exemplarCity";
"سان لويس";
}
"Salta";
{
"exemplarCity";
"سالطا";
}
"Tucuman";
{
"exemplarCity";
"تاكمان";
}
}
"Aruba";
{
"exemplarCity";
"أروبا";
}
"Asuncion";
{
"exemplarCity";
"أسونسيون";
}
"Bahia";
{
"exemplarCity";
"باهيا";
}
"Bahia_Banderas";
{
"exemplarCity";
"باهيا بانديراس";
}
"Barbados";
{
"exemplarCity";
"بربادوس";
}
"Belem";
{
"exemplarCity";
"بلم";
}
"Belize";
{
"exemplarCity";
"بليز";
}
"Blanc-Sablon";
{
"exemplarCity";
"بلانك-سابلون";
}
"Boa_Vista";
{
"exemplarCity";
"باو فيستا";
}
"Bogota";
{
"exemplarCity";
"بوغوتا";
}
"Boise";
{
"exemplarCity";
"بويس";
}
"Buenos_Aires";
{
"exemplarCity";
"بوينوس أيرس";
}
"Cambridge_Bay";
{
"exemplarCity";
"كامبرديج باي";
}
"Campo_Grande";
{
"exemplarCity";
"كومبو جراند";
}
"Cancun";
{
"exemplarCity";
"كانكون";
}
"Caracas";
{
"exemplarCity";
"كاراكاس";
}
"Catamarca";
{
"exemplarCity";
"كاتاماركا";
}
"Cayenne";
{
"exemplarCity";
"كايين";
}
"Cayman";
{
"exemplarCity";
"كيمان";
}
"Chicago";
{
"exemplarCity";
"شيكاغو";
}
"Chihuahua";
{
"exemplarCity";
"تشيواوا";
}
"Coral_Harbour";
{
"exemplarCity";
"كورال هاربر";
}
"Cordoba";
{
"exemplarCity";
"كوردوبا";
}
"Costa_Rica";
{
"exemplarCity";
"كوستاريكا";
}
"Creston";
{
"exemplarCity";
"كريستون";
}
"Cuiaba";
{
"exemplarCity";
"كيابا";
}
"Curacao";
{
"exemplarCity";
"كوراكاو";
}
"Danmarkshavn";
{
"exemplarCity";
"دانمرك شافن";
}
"Dawson";
{
"exemplarCity";
"داوسان";
}
"Dawson_Creek";
{
"exemplarCity";
"داوسن كريك";
}
"Denver";
{
"exemplarCity";
"دنفر";
}
"Detroit";
{
"exemplarCity";
"ديترويت";
}
"Dominica";
{
"exemplarCity";
"دومينيكا";
}
"Edmonton";
{
"exemplarCity";
"ايدمونتون";
}
"Eirunepe";
{
"exemplarCity";
"ايرونبي";
}
"El_Salvador";
{
"exemplarCity";
"السلفادور";
}
"Fort_Nelson";
{
"exemplarCity";
"فورت نيلسون";
}
"Fortaleza";
{
"exemplarCity";
"فورتاليزا";
}
"Glace_Bay";
{
"exemplarCity";
"جلاس باي";
}
"Godthab";
{
"exemplarCity";
"غودثاب";
}
"Goose_Bay";
{
"exemplarCity";
"جوس باي";
}
"Grand_Turk";
{
"exemplarCity";
"غراند ترك";
}
"Grenada";
{
"exemplarCity";
"غرينادا";
}
"Guadeloupe";
{
"exemplarCity";
"غوادلوب";
}
"Guatemala";
{
"exemplarCity";
"غواتيمالا";
}
"Guayaquil";
{
"exemplarCity";
"غواياكويل";
}
"Guyana";
{
"exemplarCity";
"غيانا";
}
"Halifax";
{
"exemplarCity";
"هاليفاكس";
}
"Havana";
{
"exemplarCity";
"هافانا";
}
"Hermosillo";
{
"exemplarCity";
"هيرموسيلو";
}
"Indiana";
{
"Vincennes";
{
"exemplarCity";
"فينسينس";
}
"Petersburg";
{
"exemplarCity";
"بيترسبرغ";
}
"Tell_City";
{
"exemplarCity";
"مدينة تل، إنديانا";
}
"Knox";
{
"exemplarCity";
"كونكس";
}
"Winamac";
{
"exemplarCity";
"ويناماك";
}
"Marengo";
{
"exemplarCity";
"مارنجو";
}
"Vevay";
{
"exemplarCity";
"فيفاي";
}
}
"Indianapolis";
{
"exemplarCity";
"إنديانابوليس";
}
"Inuvik";
{
"exemplarCity";
"اينوفيك";
}
"Iqaluit";
{
"exemplarCity";
"اكويلت";
}
"Jamaica";
{
"exemplarCity";
"جامايكا";
}
"Jujuy";
{
"exemplarCity";
"جوجو";
}
"Juneau";
{
"exemplarCity";
"جوني";
}
"Kentucky";
{
"Monticello";
{
"exemplarCity";
"مونتيسيلو";
}
}
"Kralendijk";
{
"exemplarCity";
"كرالنديك";
}
"La_Paz";
{
"exemplarCity";
"لا باز";
}
"Lima";
{
"exemplarCity";
"ليما";
}
"Los_Angeles";
{
"exemplarCity";
"لوس انجلوس";
}
"Louisville";
{
"exemplarCity";
"لويس فيل";
}
"Lower_Princes";
{
"exemplarCity";
"حي الأمير السفلي";
}
"Maceio";
{
"exemplarCity";
"ماشيو";
}
"Managua";
{
"exemplarCity";
"ماناغوا";
}
"Manaus";
{
"exemplarCity";
"ماناوس";
}
"Marigot";
{
"exemplarCity";
"ماريغوت";
}
"Martinique";
{
"exemplarCity";
"المارتينيك";
}
"Matamoros";
{
"exemplarCity";
"ماتاموروس";
}
"Mazatlan";
{
"exemplarCity";
"مازاتلان";
}
"Mendoza";
{
"exemplarCity";
"ميندوزا";
}
"Menominee";
{
"exemplarCity";
"مينوميني";
}
"Merida";
{
"exemplarCity";
"ميريدا";
}
"Metlakatla";
{
"exemplarCity";
"ميتلاكاتلا";
}
"Mexico_City";
{
"exemplarCity";
"مدينة المكسيك";
}
"Miquelon";
{
"exemplarCity";
"ميكولن";
}
"Moncton";
{
"exemplarCity";
"وينكتون";
}
"Monterrey";
{
"exemplarCity";
"مونتيري";
}
"Montevideo";
{
"exemplarCity";
"مونتفيديو";
}
"Montserrat";
{
"exemplarCity";
"مونتسيرات";
}
"Nassau";
{
"exemplarCity";
"ناسو";
}
"New_York";
{
"exemplarCity";
"نيويورك";
}
"Nipigon";
{
"exemplarCity";
"نيبيجون";
}
"Nome";
{
"exemplarCity";
"نوم";
}
"Noronha";
{
"exemplarCity";
"نوروناه";
}
"North_Dakota";
{
"Beulah";
{
"exemplarCity";
"بيولا، داكوتا الشمالية";
}
"New_Salem";
{
"exemplarCity";
"نيو ساليم";
}
"Center";
{
"exemplarCity";
"سنتر";
}
}
"Ojinaga";
{
"exemplarCity";
"أوجيناجا";
}
"Panama";
{
"exemplarCity";
"بنما";
}
"Pangnirtung";
{
"exemplarCity";
"بانجينتينج";
}
"Paramaribo";
{
"exemplarCity";
"باراماريبو";
}
"Phoenix";
{
"exemplarCity";
"فينكس";
}
"Port-au-Prince";
{
"exemplarCity";
"بورت أو برنس";
}
"Port_of_Spain";
{
"exemplarCity";
"بورت أوف سبين";
}
"Porto_Velho";
{
"exemplarCity";
"بورتو فيلو";
}
"Puerto_Rico";
{
"exemplarCity";
"بورتوريكو";
}
"Rainy_River";
{
"exemplarCity";
"راني ريفر";
}
"Rankin_Inlet";
{
"exemplarCity";
"رانكن انلت";
}
"Recife";
{
"exemplarCity";
"ريسيف";
}
"Regina";
{
"exemplarCity";
"ريجينا";
}
"Resolute";
{
"exemplarCity";
"ريزولوت";
}
"Rio_Branco";
{
"exemplarCity";
"ريوبرانكو";
}
"Santa_Isabel";
{
"exemplarCity";
"سانتا إيزابيل";
}
"Santarem";
{
"exemplarCity";
"سانتاريم";
}
"Santiago";
{
"exemplarCity";
"سانتياغو";
}
"Santo_Domingo";
{
"exemplarCity";
"سانتو دومينغو";
}
"Sao_Paulo";
{
"exemplarCity";
"ساو باولو";
}
"Scoresbysund";
{
"exemplarCity";
"سكورسبيسند";
}
"Sitka";
{
"exemplarCity";
"سيتكا";
}
"St_Barthelemy";
{
"exemplarCity";
"سانت بارتيليمي";
}
"St_Johns";
{
"exemplarCity";
"سانت جونس";
}
"St_Kitts";
{
"exemplarCity";
"سانت كيتس";
}
"St_Lucia";
{
"exemplarCity";
"سانت لوشيا";
}
"St_Thomas";
{
"exemplarCity";
"سانت توماس";
}
"St_Vincent";
{
"exemplarCity";
"سانت فنسنت";
}
"Swift_Current";
{
"exemplarCity";
"سوفت كارنت";
}
"Tegucigalpa";
{
"exemplarCity";
"تيغوسيغالبا";
}
"Thule";
{
"exemplarCity";
"ثيل";
}
"Thunder_Bay";
{
"exemplarCity";
"ثندر باي";
}
"Tijuana";
{
"exemplarCity";
"تيخوانا";
}
"Toronto";
{
"exemplarCity";
"تورونتو";
}
"Tortola";
{
"exemplarCity";
"تورتولا";
}
"Vancouver";
{
"exemplarCity";
"فانكوفر";
}
"Whitehorse";
{
"exemplarCity";
"وايت هورس";
}
"Winnipeg";
{
"exemplarCity";
"وينيبيج";
}
"Yakutat";
{
"exemplarCity";
"ياكوتات";
}
"Yellowknife";
{
"exemplarCity";
"يلونيف";
}
}
"Atlantic";
{
"Azores";
{
"exemplarCity";
"أزورس";
}
"Bermuda";
{
"exemplarCity";
"برمودا";
}
"Canary";
{
"exemplarCity";
"كناري";
}
"Cape_Verde";
{
"exemplarCity";
"الرأس الأخضر";
}
"Faeroe";
{
"exemplarCity";
"فارو";
}
"Madeira";
{
"exemplarCity";
"ماديرا";
}
"Reykjavik";
{
"exemplarCity";
"ريكيافيك";
}
"South_Georgia";
{
"exemplarCity";
"جورجيا الجنوبية";
}
"St_Helena";
{
"exemplarCity";
"سانت هيلينا";
}
"Stanley";
{
"exemplarCity";
"استانلي";
}
}
"Europe";
{
"Amsterdam";
{
"exemplarCity";
"أمستردام";
}
"Andorra";
{
"exemplarCity";
"أندورا";
}
"Astrakhan";
{
"exemplarCity";
"أستراخان";
}
"Athens";
{
"exemplarCity";
"أثينا";
}
"Belgrade";
{
"exemplarCity";
"بلغراد";
}
"Berlin";
{
"exemplarCity";
"برلين";
}
"Bratislava";
{
"exemplarCity";
"براتيسلافا";
}
"Brussels";
{
"exemplarCity";
"بروكسل";
}
"Bucharest";
{
"exemplarCity";
"بوخارست";
}
"Budapest";
{
"exemplarCity";
"بودابست";
}
"Busingen";
{
"exemplarCity";
"بوسنغن";
}
"Chisinau";
{
"exemplarCity";
"تشيسيناو";
}
"Copenhagen";
{
"exemplarCity";
"كوبنهاغن";
}
"Dublin";
{
"long";
{
"daylight";
"توقيت أيرلندا الرسمي";
}
"exemplarCity";
"دبلن";
}
"Gibraltar";
{
"exemplarCity";
"جبل طارق";
}
"Guernsey";
{
"exemplarCity";
"غيرنسي";
}
"Helsinki";
{
"exemplarCity";
"هلسنكي";
}
"Isle_of_Man";
{
"exemplarCity";
"جزيرة مان";
}
"Istanbul";
{
"exemplarCity";
"إسطنبول";
}
"Jersey";
{
"exemplarCity";
"جيرسي";
}
"Kaliningrad";
{
"exemplarCity";
"كالينجراد";
}
"Kiev";
{
"exemplarCity";
"كييف";
}
"Kirov";
{
"exemplarCity";
"كيروف";
}
"Lisbon";
{
"exemplarCity";
"لشبونة";
}
"Ljubljana";
{
"exemplarCity";
"ليوبليانا";
}
"London";
{
"long";
{
"daylight";
"توقيت بريطانيا الصيفي";
}
"exemplarCity";
"لندن";
}
"Luxembourg";
{
"exemplarCity";
"لوكسمبورغ";
}
"Madrid";
{
"exemplarCity";
"مدريد";
}
"Malta";
{
"exemplarCity";
"مالطة";
}
"Mariehamn";
{
"exemplarCity";
"ماريهامن";
}
"Minsk";
{
"exemplarCity";
"مينسك";
}
"Monaco";
{
"exemplarCity";
"موناكو";
}
"Moscow";
{
"exemplarCity";
"موسكو";
}
"Oslo";
{
"exemplarCity";
"أوسلو";
}
"Paris";
{
"exemplarCity";
"باريس";
}
"Podgorica";
{
"exemplarCity";
"بودغوريكا";
}
"Prague";
{
"exemplarCity";
"براغ";
}
"Riga";
{
"exemplarCity";
"ريغا";
}
"Rome";
{
"exemplarCity";
"روما";
}
"Samara";
{
"exemplarCity";
"سمراء";
}
"San_Marino";
{
"exemplarCity";
"سان مارينو";
}
"Sarajevo";
{
"exemplarCity";
"سراييفو";
}
"Simferopol";
{
"exemplarCity";
"سيمفروبول";
}
"Skopje";
{
"exemplarCity";
"سكوبي";
}
"Sofia";
{
"exemplarCity";
"صوفيا";
}
"Stockholm";
{
"exemplarCity";
"ستوكهولم";
}
"Tallinn";
{
"exemplarCity";
"تالين";
}
"Tirane";
{
"exemplarCity";
"تيرانا";
}
"Ulyanovsk";
{
"exemplarCity";
"أوليانوفسك";
}
"Uzhgorod";
{
"exemplarCity";
"أوزجرود";
}
"Vaduz";
{
"exemplarCity";
"فادوز";
}
"Vatican";
{
"exemplarCity";
"الفاتيكان";
}
"Vienna";
{
"exemplarCity";
"فيينا";
}
"Vilnius";
{
"exemplarCity";
"فيلنيوس";
}
"Volgograd";
{
"exemplarCity";
"فولوجراد";
}
"Warsaw";
{
"exemplarCity";
"وارسو";
}
"Zagreb";
{
"exemplarCity";
"زغرب";
}
"Zaporozhye";
{
"exemplarCity";
"زابوروزي";
}
"Zurich";
{
"exemplarCity";
"زيورخ";
}
}
"Africa";
{
"Abidjan";
{
"exemplarCity";
"أبيدجان";
}
"Accra";
{
"exemplarCity";
"أكرا";
}
"Addis_Ababa";
{
"exemplarCity";
"أديس أبابا";
}
"Algiers";
{
"exemplarCity";
"الجزائر";
}
"Asmera";
{
"exemplarCity";
"أسمرة";
}
"Bamako";
{
"exemplarCity";
"باماكو";
}
"Bangui";
{
"exemplarCity";
"بانغوي";
}
"Banjul";
{
"exemplarCity";
"بانجول";
}
"Bissau";
{
"exemplarCity";
"بيساو";
}
"Blantyre";
{
"exemplarCity";
"بلانتاير";
}
"Brazzaville";
{
"exemplarCity";
"برازافيل";
}
"Bujumbura";
{
"exemplarCity";
"بوجومبورا";
}
"Cairo";
{
"exemplarCity";
"القاهرة";
}
"Casablanca";
{
"exemplarCity";
"الدار البيضاء";
}
"Ceuta";
{
"exemplarCity";
"سيتا";
}
"Conakry";
{
"exemplarCity";
"كوناكري";
}
"Dakar";
{
"exemplarCity";
"داكار";
}
"Dar_es_Salaam";
{
"exemplarCity";
"دار السلام";
}
"Djibouti";
{
"exemplarCity";
"جيبوتي";
}
"Douala";
{
"exemplarCity";
"دوالا";
}
"El_Aaiun";
{
"exemplarCity";
"العيون";
}
"Freetown";
{
"exemplarCity";
"فري تاون";
}
"Gaborone";
{
"exemplarCity";
"غابورون";
}
"Harare";
{
"exemplarCity";
"هراري";
}
"Johannesburg";
{
"exemplarCity";
"جوهانسبرغ";
}
"Juba";
{
"exemplarCity";
"جوبا";
}
"Kampala";
{
"exemplarCity";
"كامبالا";
}
"Khartoum";
{
"exemplarCity";
"الخرطوم";
}
"Kigali";
{
"exemplarCity";
"كيغالي";
}
"Kinshasa";
{
"exemplarCity";
"كينشاسا";
}
"Lagos";
{
"exemplarCity";
"لاغوس";
}
"Libreville";
{
"exemplarCity";
"ليبرفيل";
}
"Lome";
{
"exemplarCity";
"لومي";
}
"Luanda";
{
"exemplarCity";
"لواندا";
}
"Lubumbashi";
{
"exemplarCity";
"لومبباشا";
}
"Lusaka";
{
"exemplarCity";
"لوساكا";
}
"Malabo";
{
"exemplarCity";
"مالابو";
}
"Maputo";
{
"exemplarCity";
"مابوتو";
}
"Maseru";
{
"exemplarCity";
"ماسيرو";
}
"Mbabane";
{
"exemplarCity";
"مباباني";
}
"Mogadishu";
{
"exemplarCity";
"مقديشيو";
}
"Monrovia";
{
"exemplarCity";
"مونروفيا";
}
"Nairobi";
{
"exemplarCity";
"نيروبي";
}
"Ndjamena";
{
"exemplarCity";
"نجامينا";
}
"Niamey";
{
"exemplarCity";
"نيامي";
}
"Nouakchott";
{
"exemplarCity";
"نواكشوط";
}
"Ouagadougou";
{
"exemplarCity";
"واغادوغو";
}
"Porto-Novo";
{
"exemplarCity";
"بورتو نوفو";
}
"Sao_Tome";
{
"exemplarCity";
"ساو تومي";
}
"Tripoli";
{
"exemplarCity";
"طرابلس";
}
"Tunis";
{
"exemplarCity";
"تونس";
}
"Windhoek";
{
"exemplarCity";
"ويندهوك";
}
}
"Asia";
{
"Aden";
{
"exemplarCity";
"عدن";
}
"Almaty";
{
"exemplarCity";
"ألماتي";
}
"Amman";
{
"exemplarCity";
"عمان";
}
"Anadyr";
{
"exemplarCity";
"أندير";
}
"Aqtau";
{
"exemplarCity";
"أكتاو";
}
"Aqtobe";
{
"exemplarCity";
"أكتوب";
}
"Ashgabat";
{
"exemplarCity";
"عشق آباد";
}
"Baghdad";
{
"exemplarCity";
"بغداد";
}
"Bahrain";
{
"exemplarCity";
"البحرين";
}
"Baku";
{
"exemplarCity";
"باكو";
}
"Bangkok";
{
"exemplarCity";
"بانكوك";
}
"Barnaul";
{
"exemplarCity";
"بارناول";
}
"Beirut";
{
"exemplarCity";
"بيروت";
}
"Bishkek";
{
"exemplarCity";
"بشكيك";
}
"Brunei";
{
"exemplarCity";
"بروناي";
}
"Calcutta";
{
"exemplarCity";
"كالكتا";
}
"Chita";
{
"exemplarCity";
"تشيتا";
}
"Choibalsan";
{
"exemplarCity";
"تشوبالسان";
}
"Colombo";
{
"exemplarCity";
"كولومبو";
}
"Damascus";
{
"exemplarCity";
"دمشق";
}
"Dhaka";
{
"exemplarCity";
"دكا";
}
"Dili";
{
"exemplarCity";
"ديلي";
}
"Dubai";
{
"exemplarCity";
"دبي";
}
"Dushanbe";
{
"exemplarCity";
"دوشانبي";
}
"Gaza";
{
"exemplarCity";
"غزة";
}
"Hebron";
{
"exemplarCity";
"هيبرون (مدينة الخليل)";
}
"Hong_Kong";
{
"exemplarCity";
"هونغ كونغ";
}
"Hovd";
{
"exemplarCity";
"هوفد";
}
"Irkutsk";
{
"exemplarCity";
"ايركيتسك";
}
"Jakarta";
{
"exemplarCity";
"جاكرتا";
}
"Jayapura";
{
"exemplarCity";
"جايابيورا";
}
"Jerusalem";
{
"exemplarCity";
"القدس";
}
"Kabul";
{
"exemplarCity";
"كابول";
}
"Kamchatka";
{
"exemplarCity";
"كامتشاتكا";
}
"Karachi";
{
"exemplarCity";
"كراتشي";
}
"Katmandu";
{
"exemplarCity";
"كاتماندو";
}
"Khandyga";
{
"exemplarCity";
"خانديجا";
}
"Krasnoyarsk";
{
"exemplarCity";
"كراسنويارسك";
}
"Kuala_Lumpur";
{
"exemplarCity";
"كوالا لامبور";
}
"Kuching";
{
"exemplarCity";
"كيشينج";
}
"Kuwait";
{
"exemplarCity";
"الكويت";
}
"Macau";
{
"exemplarCity";
"ماكاو";
}
"Magadan";
{
"exemplarCity";
"مجادن";
}
"Makassar";
{
"exemplarCity";
"ماكسار";
}
"Manila";
{
"exemplarCity";
"مانيلا";
}
"Muscat";
{
"exemplarCity";
"مسقط";
}
"Nicosia";
{
"exemplarCity";
"نيقوسيا";
}
"Novokuznetsk";
{
"exemplarCity";
"نوفوكوزنتسك";
}
"Novosibirsk";
{
"exemplarCity";
"نوفوسبيرسك";
}
"Omsk";
{
"exemplarCity";
"أومسك";
}
"Oral";
{
"exemplarCity";
"أورال";
}
"Phnom_Penh";
{
"exemplarCity";
"بنوم بنه";
}
"Pontianak";
{
"exemplarCity";
"بونتيانك";
}
"Pyongyang";
{
"exemplarCity";
"بيونغ يانغ";
}
"Qatar";
{
"exemplarCity";
"قطر";
}
"Qyzylorda";
{
"exemplarCity";
"كيزيلوردا";
}
"Rangoon";
{
"exemplarCity";
"رانغون";
}
"Riyadh";
{
"exemplarCity";
"الرياض";
}
"Saigon";
{
"exemplarCity";
"مدينة هو تشي منة";
}
"Sakhalin";
{
"exemplarCity";
"سكالين";
}
"Samarkand";
{
"exemplarCity";
"سمرقند";
}
"Seoul";
{
"exemplarCity";
"سول";
}
"Shanghai";
{
"exemplarCity";
"شنغهاي";
}
"Singapore";
{
"exemplarCity";
"سنغافورة";
}
"Srednekolymsk";
{
"exemplarCity";
"سريدنكوليمسك";
}
"Taipei";
{
"exemplarCity";
"تايبيه";
}
"Tashkent";
{
"exemplarCity";
"طشقند";
}
"Tbilisi";
{
"exemplarCity";
"تبليسي";
}
"Tehran";
{
"exemplarCity";
"طهران";
}
"Thimphu";
{
"exemplarCity";
"تيمفو";
}
"Tokyo";
{
"exemplarCity";
"طوكيو";
}
"Tomsk";
{
"exemplarCity";
"تومسك";
}
"Ulaanbaatar";
{
"exemplarCity";
"آلانباتار";
}
"Urumqi";
{
"exemplarCity";
"أرومكي";
}
"Ust-Nera";
{
"exemplarCity";
"أوست نيرا";
}
"Vientiane";
{
"exemplarCity";
"فيانتيان";
}
"Vladivostok";
{
"exemplarCity";
"فلاديفوستك";
}
"Yakutsk";
{
"exemplarCity";
"ياكتسك";
}
"Yekaterinburg";
{
"exemplarCity";
"يكاترنبيرج";
}
"Yerevan";
{
"exemplarCity";
"يريفان";
}
}
"Indian";
{
"Antananarivo";
{
"exemplarCity";
"أنتاناناريفو";
}
"Chagos";
{
"exemplarCity";
"تشاغوس";
}
"Christmas";
{
"exemplarCity";
"كريسماس";
}
"Cocos";
{
"exemplarCity";
"كوكوس";
}
"Comoro";
{
"exemplarCity";
"جزر القمر";
}
"Kerguelen";
{
"exemplarCity";
"كيرغويلين";
}
"Mahe";
{
"exemplarCity";
"ماهي";
}
"Maldives";
{
"exemplarCity";
"المالديف";
}
"Mauritius";
{
"exemplarCity";
"موريشيوس";
}
"Mayotte";
{
"exemplarCity";
"مايوت";
}
"Reunion";
{
"exemplarCity";
"ريونيون";
}
}
"Australia";
{
"Adelaide";
{
"exemplarCity";
"أديليد";
}
"Brisbane";
{
"exemplarCity";
"برسيبان";
}
"Broken_Hill";
{
"exemplarCity";
"بروكن هيل";
}
"Currie";
{
"exemplarCity";
"كوري";
}
"Darwin";
{
"exemplarCity";
"دارون";
}
"Eucla";
{
"exemplarCity";
"أوكلا";
}
"Hobart";
{
"exemplarCity";
"هوبارت";
}
"Lindeman";
{
"exemplarCity";
"ليندمان";
}
"Lord_Howe";
{
"exemplarCity";
"لورد هاو";
}
"Melbourne";
{
"exemplarCity";
"ميلبورن";
}
"Perth";
{
"exemplarCity";
"برثا";
}
"Sydney";
{
"exemplarCity";
"سيدني";
}
}
"Pacific";
{
"Apia";
{
"exemplarCity";
"أبيا";
}
"Auckland";
{
"exemplarCity";
"أوكلاند";
}
"Bougainville";
{
"exemplarCity";
"بوغانفيل";
}
"Chatham";
{
"exemplarCity";
"تشاثام";
}
"Easter";
{
"exemplarCity";
"استر";
}
"Efate";
{
"exemplarCity";
"إيفات";
}
"Enderbury";
{
"exemplarCity";
"اندربيرج";
}
"Fakaofo";
{
"exemplarCity";
"فاكاوفو";
}
"Fiji";
{
"exemplarCity";
"فيجي";
}
"Funafuti";
{
"exemplarCity";
"فونافوتي";
}
"Galapagos";
{
"exemplarCity";
"جلاباجوس";
}
"Gambier";
{
"exemplarCity";
"جامبير";
}
"Guadalcanal";
{
"exemplarCity";
"غوادالكانال";
}
"Guam";
{
"exemplarCity";
"غوام";
}
"Honolulu";
{
"exemplarCity";
"هونولولو";
}
"Johnston";
{
"exemplarCity";
"جونستون";
}
"Kiritimati";
{
"exemplarCity";
"كيريتي ماتي";
}
"Kosrae";
{
"exemplarCity";
"كوسرا";
}
"Kwajalein";
{
"exemplarCity";
"كواجالين";
}
"Majuro";
{
"exemplarCity";
"ماجورو";
}
"Marquesas";
{
"exemplarCity";
"ماركيساس";
}
"Midway";
{
"exemplarCity";
"ميدواي";
}
"Nauru";
{
"exemplarCity";
"ناورو";
}
"Niue";
{
"exemplarCity";
"نيوي";
}
"Norfolk";
{
"exemplarCity";
"نورفولك";
}
"Noumea";
{
"exemplarCity";
"نوميا";
}
"Pago_Pago";
{
"exemplarCity";
"باغو باغو";
}
"Palau";
{
"exemplarCity";
"بالاو";
}
"Pitcairn";
{
"exemplarCity";
"بيتكيرن";
}
"Ponape";
{
"exemplarCity";
"باناب";
}
"Port_Moresby";
{
"exemplarCity";
"بور مورسبي";
}
"Rarotonga";
{
"exemplarCity";
"راروتونغا";
}
"Saipan";
{
"exemplarCity";
"سايبان";
}
"Tahiti";
{
"exemplarCity";
"تاهيتي";
}
"Tarawa";
{
"exemplarCity";
"تاراوا";
}
"Tongatapu";
{
"exemplarCity";
"تونغاتابو";
}
"Truk";
{
"exemplarCity";
"ترك";
}
"Wake";
{
"exemplarCity";
"واك";
}
"Wallis";
{
"exemplarCity";
"واليس";
}
}
"Arctic";
{
"Longyearbyen";
{
"exemplarCity";
"لونجيربين";
}
}
"Antarctica";
{
"Casey";
{
"exemplarCity";
"كاساي";
}
"Davis";
{
"exemplarCity";
"دافيز";
}
"DumontDUrville";
{
"exemplarCity";
"دي مونت دو روفيل";
}
"Macquarie";
{
"exemplarCity";
"ماكواري";
}
"Mawson";
{
"exemplarCity";
"ماوسون";
}
"McMurdo";
{
"exemplarCity";
"ماك موردو";
}
"Palmer";
{
"exemplarCity";
"بالمير";
}
"Rothera";
{
"exemplarCity";
"روثيرا";
}
"Syowa";
{
"exemplarCity";
"سايووا";
}
"Troll";
{
"exemplarCity";
"ترول";
}
"Vostok";
{
"exemplarCity";
"فوستوك";
}
}
"Etc";
{
"GMT";
{
"exemplarCity";
"GMT";
}
"GMT1";
{
"exemplarCity";
"GMT+1";
}
"GMT10";
{
"exemplarCity";
"GMT+10";
}
"GMT11";
{
"exemplarCity";
"GMT+11";
}
"GMT12";
{
"exemplarCity";
"GMT+12";
}
"GMT2";
{
"exemplarCity";
"GMT+2";
}
"GMT3";
{
"exemplarCity";
"GMT+3";
}
"GMT4";
{
"exemplarCity";
"GMT+4";
}
"GMT5";
{
"exemplarCity";
"GMT+5";
}
"GMT6";
{
"exemplarCity";
"GMT+6";
}
"GMT7";
{
"exemplarCity";
"GMT+7";
}
"GMT8";
{
"exemplarCity";
"GMT+8";
}
"GMT9";
{
"exemplarCity";
"GMT+9";
}
"GMT-1";
{
"exemplarCity";
"GMT-1";
}
"GMT-10";
{
"exemplarCity";
"GMT-10";
}
"GMT-11";
{
"exemplarCity";
"GMT-11";
}
"GMT-12";
{
"exemplarCity";
"GMT-12";
}
"GMT-13";
{
"exemplarCity";
"GMT-13";
}
"GMT-14";
{
"exemplarCity";
"GMT-14";
}
"GMT-2";
{
"exemplarCity";
"GMT-2";
}
"GMT-3";
{
"exemplarCity";
"GMT-3";
}
"GMT-4";
{
"exemplarCity";
"GMT-4";
}
"GMT-5";
{
"exemplarCity";
"GMT-5";
}
"GMT-6";
{
"exemplarCity";
"GMT-6";
}
"GMT-7";
{
"exemplarCity";
"GMT-7";
}
"GMT-8";
{
"exemplarCity";
"GMT-8";
}
"GMT-9";
{
"exemplarCity";
"GMT-9";
}
"Unknown";
{
"exemplarCity";
"مدينة غير معروفة";
}
}
}
"metazone";
{
"Afghanistan";
{
"long";
{
"standard";
"توقيت أفغانستان";
}
}
"Africa_Central";
{
"long";
{
"standard";
"توقيت وسط أفريقيا";
}
}
"Africa_Eastern";
{
"long";
{
"standard";
"توقيت شرق أفريقيا";
}
}
"Africa_Southern";
{
"long";
{
"standard";
"توقيت جنوب أفريقيا";
}
}
"Africa_Western";
{
"long";
{
"generic";
"توقيت غرب أفريقيا",
"standard";
"توقيت غرب أفريقيا الرسمي",
"daylight";
"توقيت غرب أفريقيا الصيفي";
}
}
"Alaska";
{
"long";
{
"generic";
"توقيت ألاسكا",
"standard";
"التوقيت الرسمي لألاسكا",
"daylight";
"توقيت ألاسكا الصيفي";
}
}
"Amazon";
{
"long";
{
"generic";
"توقيت الأمازون",
"standard";
"توقيت الأمازون الرسمي",
"daylight";
"توقيت الأمازون الصيفي";
}
}
"America_Central";
{
"long";
{
"generic";
"التوقيت المركزي لأمريكا الشمالية",
"standard";
"التوقيت الرسمي المركزي لأمريكا الشمالية",
"daylight";
"التوقيت الصيفي المركزي لأمريكا الشمالية";
}
}
"America_Eastern";
{
"long";
{
"generic";
"التوقيت الشرقي لأمريكا الشمالية",
"standard";
"التوقيت الرسمي الشرقي لأمريكا الشمالية",
"daylight";
"التوقيت الصيفي الشرقي لأمريكا الشمالية";
}
}
"America_Mountain";
{
"long";
{
"generic";
"التوقيت الجبلي لأمريكا الشمالية",
"standard";
"التوقيت الجبلي الرسمي لأمريكا الشمالية",
"daylight";
"التوقيت الجبلي الصيفي لأمريكا الشمالية";
}
}
"America_Pacific";
{
"long";
{
"generic";
"توقيت المحيط الهادي",
"standard";
"توقيت المحيط الهادي الرسمي",
"daylight";
"توقيت المحيط الهادي الصيفي";
}
}
"Anadyr";
{
"long";
{
"generic";
"توقيت أنادير",
"standard";
"توقيت أنادير الرسمي",
"daylight";
"التوقيت الصيفي لأنادير";
}
}
"Apia";
{
"long";
{
"generic";
"توقيت آبيا",
"standard";
"التوقيت الرسمي لآبيا",
"daylight";
"التوقيت الصيفي لأبيا";
}
}
"Arabian";
{
"long";
{
"generic";
"التوقيت العربي",
"standard";
"التوقيت العربي الرسمي",
"daylight";
"التوقيت العربي الصيفي";
}
}
"Argentina";
{
"long";
{
"generic";
"توقيت الأرجنتين",
"standard";
"توقيت الأرجنتين الرسمي",
"daylight";
"توقيت الأرجنتين الصيفي";
}
}
"Argentina_Western";
{
"long";
{
"generic";
"توقيت غرب الأرجنتين",
"standard";
"توقيت غرب الأرجنتين الرسمي",
"daylight";
"توقيت غرب الأرجنتين الصيفي";
}
}
"Armenia";
{
"long";
{
"generic";
"توقيت أرمينيا",
"standard";
"توقيت أرمينيا الرسمي",
"daylight";
"توقيت أرمينيا الصيفي";
}
}
"Atlantic";
{
"long";
{
"generic";
"توقيت الأطلسي",
"standard";
"التوقيت الرسمي الأطلسي",
"daylight";
"التوقيت الصيفي الأطلسي";
}
}
"Australia_Central";
{
"long";
{
"generic";
"توقيت وسط أستراليا",
"standard";
"توقيت وسط أستراليا الرسمي",
"daylight";
"توقيت وسط أستراليا الصيفي";
}
}
"Australia_CentralWestern";
{
"long";
{
"generic";
"توقيت غرب وسط أستراليا",
"standard";
"توقيت غرب وسط أستراليا الرسمي",
"daylight";
"توقيت غرب وسط أستراليا الصيفي";
}
}
"Australia_Eastern";
{
"long";
{
"generic";
"توقيت شرق أستراليا",
"standard";
"توقيت شرق أستراليا الرسمي",
"daylight";
"توقيت شرق أستراليا الصيفي";
}
}
"Australia_Western";
{
"long";
{
"generic";
"توقيت غرب أستراليا",
"standard";
"توقيت غرب أستراليا الرسمي",
"daylight";
"توقيت غرب أستراليا الصيفي";
}
}
"Azerbaijan";
{
"long";
{
"generic";
"توقيت أذربيجان",
"standard";
"توقيت أذربيجان الرسمي",
"daylight";
"توقيت أذربيجان الصيفي";
}
}
"Azores";
{
"long";
{
"generic";
"توقيت أزورس",
"standard";
"توقيت أزورس الرسمي",
"daylight";
"توقيت أزورس الصيفي";
}
}
"Bangladesh";
{
"long";
{
"generic";
"توقيت بنجلاديش",
"standard";
"توقيت بنجلاديش الرسمي",
"daylight";
"توقيت بنجلاديش الصيفي";
}
}
"Bhutan";
{
"long";
{
"standard";
"توقيت بوتان";
}
}
"Bolivia";
{
"long";
{
"standard";
"توقيت بوليفيا";
}
}
"Brasilia";
{
"long";
{
"generic";
"توقيت برازيليا",
"standard";
"توقيت برازيليا الرسمي",
"daylight";
"توقيت برازيليا الصيفي";
}
}
"Brunei";
{
"long";
{
"standard";
"توقيت بروناي";
}
}
"Cape_Verde";
{
"long";
{
"generic";
"توقيت الرأس الأخضر",
"standard";
"توقيت الرأس الأخضر الرسمي",
"daylight";
"توقيت الرأس الأخضر الصيفي";
}
}
"Chamorro";
{
"long";
{
"standard";
"توقيت تشامورو";
}
}
"Chatham";
{
"long";
{
"generic";
"توقيت تشاتام",
"standard";
"توقيت تشاتام الرسمي",
"daylight";
"توقيت تشاتام الصيفي";
}
}
"Chile";
{
"long";
{
"generic";
"توقيت شيلي",
"standard";
"توقيت شيلي الرسمي",
"daylight";
"توقيت شيلي الصيفي";
}
}
"China";
{
"long";
{
"generic";
"توقيت الصين",
"standard";
"توقيت الصين الرسمي",
"daylight";
"توقيت الصين الصيفي";
}
}
"Choibalsan";
{
"long";
{
"generic";
"توقيت شويبالسان",
"standard";
"توقيت شويبالسان الرسمي",
"daylight";
"التوقيت الصيفي لشويبالسان";
}
}
"Christmas";
{
"long";
{
"standard";
"توقيت جزر الكريسماس";
}
}
"Cocos";
{
"long";
{
"standard";
"توقيت جزر كوكوس";
}
}
"Colombia";
{
"long";
{
"generic";
"توقيت كولومبيا",
"standard";
"توقيت كولومبيا الرسمي",
"daylight";
"توقيت كولومبيا الصيفي";
}
}
"Cook";
{
"long";
{
"generic";
"توقيت جزر كووك",
"standard";
"توقيت جزر كووك الرسمي",
"daylight";
"توقيت جزر كووك الصيفي";
}
}
"Cuba";
{
"long";
{
"generic";
"توقيت كوبا",
"standard";
"توقيت كوبا الرسمي",
"daylight";
"توقيت كوبا الصيفي";
}
}
"Davis";
{
"long";
{
"standard";
"توقيت دافيز";
}
}
"DumontDUrville";
{
"long";
{
"standard";
"توقيت دي مونت دو روفيل";
}
}
"East_Timor";
{
"long";
{
"standard";
"توقيت تيمور الشرقية";
}
}
"Easter";
{
"long";
{
"generic";
"توقيت جزيرة استر",
"standard";
"توقيت جزيرة استر الرسمي",
"daylight";
"توقيت جزيرة استر الصيفي";
}
}
"Ecuador";
{
"long";
{
"standard";
"توقيت الإكوادور";
}
}
"Europe_Central";
{
"long";
{
"generic";
"توقيت وسط أوروبا",
"standard";
"توقيت وسط أوروبا الرسمي",
"daylight";
"توقيت وسط أوروبا الصيفي";
}
}
"Europe_Eastern";
{
"long";
{
"generic";
"توقيت شرق أوروبا",
"standard";
"توقيت شرق أوروبا الرسمي",
"daylight";
"توقيت شرق أوروبا الصيفي";
}
}
"Europe_Further_Eastern";
{
"long";
{
"standard";
"التوقيت الأوروبي (أكثر شرقًا)";
}
}
"Europe_Western";
{
"long";
{
"generic";
"توقيت غرب أوروبا",
"standard";
"توقيت غرب أوروبا الرسمي",
"daylight";
"توقيت غرب أوروبا الصيفي";
}
}
"Falkland";
{
"long";
{
"generic";
"توقيت جزر فوكلاند",
"standard";
"توقيت جزر فوكلاند الرسمي",
"daylight";
"توقيت جزر فوكلاند الصيفي";
}
}
"Fiji";
{
"long";
{
"generic";
"توقيت فيجي",
"standard";
"توقيت فيجي الرسمي",
"daylight";
"توقيت فيجي الصيفي";
}
}
"French_Guiana";
{
"long";
{
"standard";
"توقيت غايانا الفرنسية";
}
}
"French_Southern";
{
"long";
{
"standard";
"توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية";
}
}
"Galapagos";
{
"long";
{
"standard";
"توقيت غلاباغوس";
}
}
"Gambier";
{
"long";
{
"standard";
"توقيت جامبير";
}
}
"Georgia";
{
"long";
{
"generic";
"توقيت جورجيا",
"standard";
"توقيت جورجيا الرسمي",
"daylight";
"توقيت جورجيا الصيفي";
}
}
"Gilbert_Islands";
{
"long";
{
"standard";
"توقيت جزر جيلبرت";
}
}
"GMT";
{
"long";
{
"standard";
"توقيت غرينتش";
}
}
"Greenland_Eastern";
{
"long";
{
"generic";
"توقيت شرق غرينلاند",
"standard";
"توقيت شرق غرينلاند الرسمي",
"daylight";
"توقيت شرق غرينلاند الصيفي";
}
}
"Greenland_Western";
{
"long";
{
"generic";
"توقيت غرب غرينلاند",
"standard";
"توقيت غرب غرينلاند الرسمي",
"daylight";
"توقيت غرب غرينلاند الصيفي";
}
}
"Guam";
{
"long";
{
"standard";
"توقيت غوام";
}
}
"Gulf";
{
"long";
{
"standard";
"توقيت الخليج";
}
}
"Guyana";
{
"long";
{
"standard";
"توقيت غيانا";
}
}
"Hawaii_Aleutian";
{
"long";
{
"generic";
"توقيت هاواي ألوتيان",
"standard";
"توقيت هاواي ألوتيان الرسمي",
"daylight";
"توقيت هاواي ألوتيان الصيفي";
}
}
"Hong_Kong";
{
"long";
{
"generic";
"توقيت هونغ كونغ",
"standard";
"توقيت هونغ كونغ الرسمي",
"daylight";
"توقيت هونغ كونغ الصيفي";
}
}
"Hovd";
{
"long";
{
"generic";
"توقيت هوفد",
"standard";
"توقيت هوفد الرسمي",
"daylight";
"توقيت هوفد الصيفي";
}
}
"India";
{
"long";
{
"standard";
"توقيت الهند";
}
}
"Indian_Ocean";
{
"long";
{
"standard";
"توقيت المحيط الهندي";
}
}
"Indochina";
{
"long";
{
"standard";
"توقيت الهند الصينية";
}
}
"Indonesia_Central";
{
"long";
{
"standard";
"توقيت وسط إندونيسيا";
}
}
"Indonesia_Eastern";
{
"long";
{
"standard";
"توقيت شرق إندونيسيا";
}
}
"Indonesia_Western";
{
"long";
{
"standard";
"توقيت غرب إندونيسيا";
}
}
"Iran";
{
"long";
{
"generic";
"توقيت إيران",
"standard";
"توقيت إيران الرسمي",
"daylight";
"توقيت إيران الصيفي";
}
}
"Irkutsk";
{
"long";
{
"generic";
"توقيت إركوتسك",
"standard";
"توقيت إركوتسك الرسمي",
"daylight";
"توقيت إركوتسك الصيفي";
}
}
"Israel";
{
"long";
{
"generic";
"توقيت إسرائيل",
"standard";
"توقيت إسرائيل الرسمي",
"daylight";
"توقيت إسرائيل الصيفي";
}
}
"Japan";
{
"long";
{
"generic";
"توقيت اليابان",
"standard";
"توقيت اليابان الرسمي",
"daylight";
"توقيت اليابان الصيفي";
}
}
"Kamchatka";
{
"long";
{
"generic";
"توقيت كامشاتكا",
"standard";
"توقيت بيتروبافلوفسك-كامتشاتسكي",
"daylight";
"توقيت بيتروبافلوفسك-كامتشاتسكي الصيفي";
}
}
"Kazakhstan_Eastern";
{
"long";
{
"standard";
"توقيت شرق كازاخستان";
}
}
"Kazakhstan_Western";
{
"long";
{
"standard";
"توقيت غرب كازاخستان";
}
}
"Korea";
{
"long";
{
"generic";
"توقيت كوريا",
"standard";
"توقيت كوريا الرسمي",
"daylight";
"توقيت كوريا الصيفي";
}
}
"Kosrae";
{
"long";
{
"standard";
"توقيت كوسرا";
}
}
"Krasnoyarsk";
{
"long";
{
"generic";
"توقيت كراسنويارسك",
"standard";
"توقيت كراسنويارسك الرسمي",
"daylight";
"التوقيت الصيفي لكراسنويارسك";
}
}
"Kyrgystan";
{
"long";
{
"standard";
"توقيت قرغيزستان";
}
}
"Line_Islands";
{
"long";
{
"standard";
"توقيت جزر لاين";
}
}
"Lord_Howe";
{
"long";
{
"generic";
"توقيت لورد هاو",
"standard";
"توقيت لورد هاو الرسمي",
"daylight";
"التوقيت الصيفي للورد هاو";
}
}
"Macquarie";
{
"long";
{
"standard";
"توقيت ماكواري";
}
}
"Magadan";
{
"long";
{
"generic";
"توقيت ماغادان",
"standard";
"توقيت ماغادان الرسمي",
"daylight";
"توقيت ماغادان الصيفي";
}
}
"Malaysia";
{
"long";
{
"standard";
"توقيت ماليزيا";
}
}
"Maldives";
{
"long";
{
"standard";
"توقيت الـمالديف";
}
}
"Marquesas";
{
"long";
{
"standard";
"توقيت ماركيساس";
}
}
"Marshall_Islands";
{
"long";
{
"standard";
"توقيت جزر مارشال";
}
}
"Mauritius";
{
"long";
{
"generic";
"توقيت موريشيوس",
"standard";
"توقيت موريشيوس الرسمي",
"daylight";
"توقيت موريشيوس الصيفي";
}
}
"Mawson";
{
"long";
{
"standard";
"توقيت ماوسون";
}
}
"Mexico_Northwest";
{
"long";
{
"generic";
"توقيت شمال غرب المكسيك",
"standard";
"التوقيت الرسمي لشمال غرب المكسيك",
"daylight";
"التوقيت الصيفي لشمال غرب المكسيك";
}
}
"Mexico_Pacific";
{
"long";
{
"generic";
"توقيت المحيط الهادي للمكسيك",
"standard";
"توقيت المحيط الهادي الرسمي للمكسيك",
"daylight";
"توقيت المحيط الهادي الصيفي للمكسيك";
}
}
"Mongolia";
{
"long";
{
"generic";
"توقيت أولان باتور",
"standard";
"توقيت أولان باتور الرسمي",
"daylight";
"توقيت أولان باتور الصيفي";
}
}
"Moscow";
{
"long";
{
"generic";
"توقيت موسكو",
"standard";
"توقيت موسكو الرسمي",
"daylight";
"توقيت موسكو الصيفي";
}
}
"Myanmar";
{
"long";
{
"standard";
"توقيت ميانمار";
}
}
"Nauru";
{
"long";
{
"standard";
"توقيت ناورو";
}
}
"Nepal";
{
"long";
{
"standard";
"توقيت نيبال";
}
}
"New_Caledonia";
{
"long";
{
"generic";
"توقيت كاليدونيا الجديدة",
"standard";
"توقيت كاليدونيا الجديدة الرسمي",
"daylight";
"توقيت كاليدونيا الجديدة الصيفي";
}
}
"New_Zealand";
{
"long";
{
"generic";
"توقيت نيوزيلندا",
"standard";
"توقيت نيوزيلندا الرسمي",
"daylight";
"توقيت نيوزيلندا الصيفي";
}
}
"Newfoundland";
{
"long";
{
"generic";
"توقيت نيوفاوندلاند",
"standard";
"توقيت نيوفاوندلاند الرسمي",
"daylight";
"توقيت نيوفاوندلاند الصيفي";
}
}
"Niue";
{
"long";
{
"standard";
"توقيت نيوي";
}
}
"Norfolk";
{
"long";
{
"standard";
"توقيت جزيرة نورفولك";
}
}
"Noronha";
{
"long";
{
"generic";
"توقيت فيرناندو دي نورونها",
"standard";
"توقيت فرناندو دي نورونها الرسمي",
"daylight";
"توقيت فرناندو دي نورونها الصيفي";
}
}
"North_Mariana";
{
"long";
{
"standard";
"توقيت جزر ماريانا الشمالية";
}
}
"Novosibirsk";
{
"long";
{
"generic";
"توقيت نوفوسيبيرسك",
"standard";
"توقيت نوفوسيبيرسك الرسمي",
"daylight";
"توقيت نوفوسيبيرسك الصيفي";
}
}
"Omsk";
{
"long";
{
"generic";
"توقيت أومسك",
"standard";
"توقيت أومسك الرسمي",
"daylight";
"توقيت أومسك الصيفي";
}
}
"Pakistan";
{
"long";
{
"generic";
"توقيت باكستان",
"standard";
"توقيت باكستان الرسمي",
"daylight";
"توقيت باكستان الصيفي";
}
}
"Palau";
{
"long";
{
"standard";
"توقيت بالاو";
}
}
"Papua_New_Guinea";
{
"long";
{
"standard";
"توقيت بابوا غينيا الجديدة";
}
}
"Paraguay";
{
"long";
{
"generic";
"توقيت باراغواي",
"standard";
"توقيت باراغواي الرسمي",
"daylight";
"توقيت باراغواي الصيفي";
}
}
"Peru";
{
"long";
{
"generic";
"توقيت بيرو",
"standard";
"توقيت بيرو الرسمي",
"daylight";
"توقيت بيرو الصيفي";
}
}
"Philippines";
{
"long";
{
"generic";
"توقيت الفيلبين",
"standard";
"توقيت الفيلبين الرسمي",
"daylight";
"توقيت الفيلبين الصيفي";
}
}
"Phoenix_Islands";
{
"long";
{
"standard";
"توقيت جزر فينكس";
}
}
"Pierre_Miquelon";
{
"long";
{
"generic";
"توقيت سانت بيير وميكولون",
"standard";
"توقيت سانت بيير وميكولون الرسمي",
"daylight";
"توقيت سانت بيير وميكولون الصيفي";
}
}
"Pitcairn";
{
"long";
{
"standard";
"توقيت بيتكيرن";
}
}
"Ponape";
{
"long";
{
"standard";
"توقيت بونابي";
}
}
"Pyongyang";
{
"long";
{
"standard";
"توقيت بيونغ يانغ";
}
}
"Reunion";
{
"long";
{
"standard";
"توقيت ريونيون";
}
}
"Rothera";
{
"long";
{
"standard";
"توقيت روثيرا";
}
}
"Sakhalin";
{
"long";
{
"generic";
"توقيت ساخالين",
"standard";
"توقيت ساخالين الرسمي",
"daylight";
"توقيت ساخالين الصيفي";
}
}
"Samara";
{
"long";
{
"generic";
"توقيت سامارا",
"standard";
"توقيت سمارا",
"daylight";
"توقيت سمارا الصيفي";
}
}
"Samoa";
{
"long";
{
"generic";
"توقيت ساموا",
"standard";
"توقيت ساموا الرسمي",
"daylight";
"توقيت ساموا الصيفي";
}
}
"Seychelles";
{
"long";
{
"standard";
"توقيت سيشل";
}
}
"Singapore";
{
"long";
{
"standard";
"توقيت سنغافورة";
}
}
"Solomon";
{
"long";
{
"standard";
"توقيت جزر سليمان";
}
}
"South_Georgia";
{
"long";
{
"standard";
"توقيت جنوب جورجيا";
}
}
"Suriname";
{
"long";
{
"standard";
"توقيت سورينام";
}
}
"Syowa";
{
"long";
{
"standard";
"توقيت سايووا";
}
}
"Tahiti";
{
"long";
{
"standard";
"توقيت تاهيتي";
}
}
"Taipei";
{
"long";
{
"generic";
"توقيت تايبيه",
"standard";
"توقيت تايبيه الرسمي",
"daylight";
"توقيت تايبيه الصيفي";
}
}
"Tajikistan";
{
"long";
{
"standard";
"توقيت طاجكستان";
}
}
"Tokelau";
{
"long";
{
"standard";
"توقيت توكيلاو";
}
}
"Tonga";
{
"long";
{
"generic";
"توقيت تونغا",
"standard";
"توقيت تونغا الرسمي",
"daylight";
"توقيت تونغا الصيفي";
}
}
"Truk";
{
"long";
{
"standard";
"توقيت شوك";
}
}
"Turkmenistan";
{
"long";
{
"generic";
"توقيت تركمانستان",
"standard";
"توقيت تركمانستان الرسمي",
"daylight";
"توقيت تركمانستان الصيفي";
}
}
"Tuvalu";
{
"long";
{
"standard";
"توقيت توفالو";
}
}
"Uruguay";
{
"long";
{
"generic";
"توقيت أورغواي",
"standard";
"توقيت أورغواي الرسمي",
"daylight";
"توقيت أورغواي الصيفي";
}
}
"Uzbekistan";
{
"long";
{
"generic";
"توقيت أوزبكستان",
"standard";
"توقيت أوزبكستان الرسمي",
"daylight";
"توقيت أوزبكستان الصيفي";
}
}
"Vanuatu";
{
"long";
{
"generic";
"توقيت فانواتو",
"standard";
"توقيت فانواتو الرسمي",
"daylight";
"توقيت فانواتو الصيفي";
}
}
"Venezuela";
{
"long";
{
"standard";
"توقيت فنزويلا";
}
}
"Vladivostok";
{
"long";
{
"generic";
"توقيت فلاديفوستوك",
"standard";
"توقيت فلاديفوستوك الرسمي",
"daylight";
"توقيت فلاديفوستوك الصيفي";
}
}
"Volgograd";
{
"long";
{
"generic";
"توقيت فولغوغراد",
"standard";
"توقيت فولغوغراد الرسمي",
"daylight";
"توقيت فولغوغراد الصيفي";
}
}
"Vostok";
{
"long";
{
"standard";
"توقيت فوستوك";
}
}
"Wake";
{
"long";
{
"standard";
"توقيت جزيرة ويك";
}
}
"Wallis";
{
"long";
{
"standard";
"توقيت واليس و فوتونا";
}
}
"Yakutsk";
{
"long";
{
"generic";
"توقيت ياكوتسك",
"standard";
"توقيت ياكوتسك الرسمي",
"daylight";
"توقيت ياكوتسك الصيفي";
}
}
"Yekaterinburg";
{
"long";
{
"generic";
"توقيت يكاترينبورغ",
"standard";
"توقيت يكاترينبورغ الرسمي",
"daylight";
"توقيت يكاترينبورغ الصيفي";
}
}
}
}
}
}
}
}