From 1eb740933fa1515a7b31a83bdcce042d3b1dce2f Mon Sep 17 00:00:00 2001 From: surikat Date: Tue, 18 Aug 2015 17:49:16 +0200 Subject: [PATCH] initial commit --- FileReader.php | 50 + Gettext/Extractors/Extractor.php | 89 + Gettext/Extractors/ExtractorInterface.php | 28 + Gettext/Extractors/Jed.php | 24 + Gettext/Extractors/JsCode.php | 30 + Gettext/Extractors/Mo.php | 96 ++ Gettext/Extractors/PhpArray.php | 74 + Gettext/Extractors/PhpCode.php | 33 + Gettext/Extractors/Po.php | 198 +++ Gettext/Generators/Generator.php | 26 + Gettext/Generators/GeneratorInterface.php | 26 + Gettext/Generators/Jed.php | 17 + Gettext/Generators/Mo.php | 75 + Gettext/Generators/PhpArray.php | 63 + Gettext/Generators/Po.php | 112 ++ Gettext/Translation.php | 303 ++++ Gettext/Translations.php | 236 +++ Gettext/Translator.php | 310 ++++ Gettext/Utils/FunctionsScanner.php | 66 + Gettext/Utils/JsFunctionsScanner.php | 191 +++ Gettext/Utils/PhpFunctionsScanner.php | 64 + Gettext/Utils/StringReader.php | 50 + GettextEmulator.php | 173 ++ Iso/3166.en.php | 1501 +++++++++++++++++ Iso/639.en.php | 188 +++ Iso/639.fr.php | 188 +++ Iso/639.php | 188 +++ Punic/Calendar.php | 1721 ++++++++++++++++++++ Punic/Data.php | 563 +++++++ Punic/Exception.php | 73 + Punic/Exception/BadArgumentType.php | 62 + Punic/Exception/BadDataFileContents.php | 44 + Punic/Exception/DataFileNotFound.php | 65 + Punic/Exception/DataFileNotReadable.php | 32 + Punic/Exception/DataFolderNotFound.php | 47 + Punic/Exception/InvalidDataFile.php | 37 + Punic/Exception/InvalidLocale.php | 36 + Punic/Exception/NotImplemented.php | 30 + Punic/Exception/ValueNotInList.php | 43 + Punic/Language.php | 86 + Punic/Misc.php | 228 +++ Punic/Number.php | 169 ++ Punic/Plural.php | 135 ++ Punic/Territory.php | 362 ++++ Punic/Unit.php | 91 ++ Punic/data/ar/calendar.json | 1 + Punic/data/ar/dateFields.json | 1 + Punic/data/ar/languages.json | 1 + Punic/data/ar/listPatterns.json | 1 + Punic/data/ar/localeDisplayNames.json | 1 + Punic/data/ar/numbers.json | 1 + Punic/data/ar/territories.json | 1 + Punic/data/ar/timeZoneNames.json | 1 + Punic/data/ar/units.json | 1 + Punic/data/ca/calendar.json | 1 + Punic/data/ca/dateFields.json | 1 + Punic/data/ca/languages.json | 1 + Punic/data/ca/listPatterns.json | 1 + Punic/data/ca/localeDisplayNames.json | 1 + Punic/data/ca/numbers.json | 1 + Punic/data/ca/territories.json | 1 + Punic/data/ca/timeZoneNames.json | 1 + Punic/data/ca/units.json | 1 + Punic/data/cs/calendar.json | 1 + Punic/data/cs/dateFields.json | 1 + Punic/data/cs/languages.json | 1 + Punic/data/cs/listPatterns.json | 1 + Punic/data/cs/localeDisplayNames.json | 1 + Punic/data/cs/numbers.json | 1 + Punic/data/cs/territories.json | 1 + Punic/data/cs/timeZoneNames.json | 1 + Punic/data/cs/units.json | 1 + Punic/data/da/calendar.json | 1 + Punic/data/da/dateFields.json | 1 + Punic/data/da/languages.json | 1 + Punic/data/da/listPatterns.json | 1 + Punic/data/da/localeDisplayNames.json | 1 + Punic/data/da/numbers.json | 1 + Punic/data/da/territories.json | 1 + Punic/data/da/timeZoneNames.json | 1 + Punic/data/da/units.json | 1 + Punic/data/de/calendar.json | 1 + Punic/data/de/dateFields.json | 1 + Punic/data/de/languages.json | 1 + Punic/data/de/listPatterns.json | 1 + Punic/data/de/localeDisplayNames.json | 1 + Punic/data/de/numbers.json | 1 + Punic/data/de/territories.json | 1 + Punic/data/de/timeZoneNames.json | 1 + Punic/data/de/units.json | 1 + Punic/data/el/calendar.json | 1 + Punic/data/el/dateFields.json | 1 + Punic/data/el/languages.json | 1 + Punic/data/el/listPatterns.json | 1 + Punic/data/el/localeDisplayNames.json | 1 + Punic/data/el/numbers.json | 1 + Punic/data/el/territories.json | 1 + Punic/data/el/timeZoneNames.json | 1 + Punic/data/el/units.json | 1 + Punic/data/en-001/calendar.json | 1 + Punic/data/en-001/dateFields.json | 1 + Punic/data/en-001/languages.json | 1 + Punic/data/en-001/listPatterns.json | 1 + Punic/data/en-001/localeDisplayNames.json | 1 + Punic/data/en-001/numbers.json | 1 + Punic/data/en-001/territories.json | 1 + Punic/data/en-001/timeZoneNames.json | 1 + Punic/data/en-001/units.json | 1 + Punic/data/en-AU/calendar.json | 1 + Punic/data/en-AU/dateFields.json | 1 + Punic/data/en-AU/languages.json | 1 + Punic/data/en-AU/listPatterns.json | 1 + Punic/data/en-AU/localeDisplayNames.json | 1 + Punic/data/en-AU/numbers.json | 1 + Punic/data/en-AU/territories.json | 1 + Punic/data/en-AU/timeZoneNames.json | 1 + Punic/data/en-AU/units.json | 1 + Punic/data/en-CA/calendar.json | 1 + Punic/data/en-CA/dateFields.json | 1 + Punic/data/en-CA/languages.json | 1 + Punic/data/en-CA/listPatterns.json | 1 + Punic/data/en-CA/localeDisplayNames.json | 1 + Punic/data/en-CA/numbers.json | 1 + Punic/data/en-CA/territories.json | 1 + Punic/data/en-CA/timeZoneNames.json | 1 + Punic/data/en-CA/units.json | 1 + Punic/data/en-GB/calendar.json | 1 + Punic/data/en-GB/dateFields.json | 1 + Punic/data/en-GB/languages.json | 1 + Punic/data/en-GB/listPatterns.json | 1 + Punic/data/en-GB/localeDisplayNames.json | 1 + Punic/data/en-GB/numbers.json | 1 + Punic/data/en-GB/territories.json | 1 + Punic/data/en-GB/timeZoneNames.json | 1 + Punic/data/en-GB/units.json | 1 + Punic/data/en-HK/calendar.json | 1 + Punic/data/en-HK/dateFields.json | 1 + Punic/data/en-HK/languages.json | 1 + Punic/data/en-HK/listPatterns.json | 1 + Punic/data/en-HK/localeDisplayNames.json | 1 + Punic/data/en-HK/numbers.json | 1 + Punic/data/en-HK/territories.json | 1 + Punic/data/en-HK/timeZoneNames.json | 1 + Punic/data/en-HK/units.json | 1 + Punic/data/en-IN/calendar.json | 1 + Punic/data/en-IN/dateFields.json | 1 + Punic/data/en-IN/languages.json | 1 + Punic/data/en-IN/listPatterns.json | 1 + Punic/data/en-IN/localeDisplayNames.json | 1 + Punic/data/en-IN/numbers.json | 1 + Punic/data/en-IN/territories.json | 1 + Punic/data/en-IN/timeZoneNames.json | 1 + Punic/data/en-IN/units.json | 1 + Punic/data/en/calendar.json | 1 + Punic/data/en/dateFields.json | 1 + Punic/data/en/languages.json | 1 + Punic/data/en/listPatterns.json | 1 + Punic/data/en/localeDisplayNames.json | 1 + Punic/data/en/numbers.json | 1 + Punic/data/en/territories.json | 1 + Punic/data/en/timeZoneNames.json | 1 + Punic/data/en/units.json | 1 + Punic/data/es/calendar.json | 1 + Punic/data/es/dateFields.json | 1 + Punic/data/es/languages.json | 1 + Punic/data/es/listPatterns.json | 1 + Punic/data/es/localeDisplayNames.json | 1 + Punic/data/es/numbers.json | 1 + Punic/data/es/territories.json | 1 + Punic/data/es/timeZoneNames.json | 1 + Punic/data/es/units.json | 1 + Punic/data/fi/calendar.json | 1 + Punic/data/fi/dateFields.json | 1 + Punic/data/fi/languages.json | 1 + Punic/data/fi/listPatterns.json | 1 + Punic/data/fi/localeDisplayNames.json | 1 + Punic/data/fi/numbers.json | 1 + Punic/data/fi/territories.json | 1 + Punic/data/fi/timeZoneNames.json | 1 + Punic/data/fi/units.json | 1 + Punic/data/fr/calendar.json | 1 + Punic/data/fr/dateFields.json | 1 + Punic/data/fr/languages.json | 1 + Punic/data/fr/listPatterns.json | 1 + Punic/data/fr/localeDisplayNames.json | 1 + Punic/data/fr/numbers.json | 1 + Punic/data/fr/territories.json | 1 + Punic/data/fr/timeZoneNames.json | 1 + Punic/data/fr/units.json | 1 + Punic/data/he/calendar.json | 1 + Punic/data/he/dateFields.json | 1 + Punic/data/he/languages.json | 1 + Punic/data/he/listPatterns.json | 1 + Punic/data/he/localeDisplayNames.json | 1 + Punic/data/he/numbers.json | 1 + Punic/data/he/territories.json | 1 + Punic/data/he/timeZoneNames.json | 1 + Punic/data/he/units.json | 1 + Punic/data/hi/calendar.json | 1 + Punic/data/hi/dateFields.json | 1 + Punic/data/hi/languages.json | 1 + Punic/data/hi/listPatterns.json | 1 + Punic/data/hi/localeDisplayNames.json | 1 + Punic/data/hi/numbers.json | 1 + Punic/data/hi/territories.json | 1 + Punic/data/hi/timeZoneNames.json | 1 + Punic/data/hi/units.json | 1 + Punic/data/hr/calendar.json | 1 + Punic/data/hr/dateFields.json | 1 + Punic/data/hr/languages.json | 1 + Punic/data/hr/listPatterns.json | 1 + Punic/data/hr/localeDisplayNames.json | 1 + Punic/data/hr/numbers.json | 1 + Punic/data/hr/territories.json | 1 + Punic/data/hr/timeZoneNames.json | 1 + Punic/data/hr/units.json | 1 + Punic/data/hu/calendar.json | 1 + Punic/data/hu/dateFields.json | 1 + Punic/data/hu/languages.json | 1 + Punic/data/hu/listPatterns.json | 1 + Punic/data/hu/localeDisplayNames.json | 1 + Punic/data/hu/numbers.json | 1 + Punic/data/hu/territories.json | 1 + Punic/data/hu/timeZoneNames.json | 1 + Punic/data/hu/units.json | 1 + Punic/data/it/calendar.json | 1 + Punic/data/it/dateFields.json | 1 + Punic/data/it/languages.json | 1 + Punic/data/it/listPatterns.json | 1 + Punic/data/it/localeDisplayNames.json | 1 + Punic/data/it/numbers.json | 1 + Punic/data/it/territories.json | 1 + Punic/data/it/timeZoneNames.json | 1 + Punic/data/it/units.json | 1 + Punic/data/ja/calendar.json | 1 + Punic/data/ja/dateFields.json | 1 + Punic/data/ja/languages.json | 1 + Punic/data/ja/listPatterns.json | 1 + Punic/data/ja/localeDisplayNames.json | 1 + Punic/data/ja/numbers.json | 1 + Punic/data/ja/territories.json | 1 + Punic/data/ja/timeZoneNames.json | 1 + Punic/data/ja/units.json | 1 + Punic/data/ko/calendar.json | 1 + Punic/data/ko/dateFields.json | 1 + Punic/data/ko/languages.json | 1 + Punic/data/ko/listPatterns.json | 1 + Punic/data/ko/localeDisplayNames.json | 1 + Punic/data/ko/numbers.json | 1 + Punic/data/ko/territories.json | 1 + Punic/data/ko/timeZoneNames.json | 1 + Punic/data/ko/units.json | 1 + Punic/data/likelySubtags.json | 1 + Punic/data/metaZones.json | 1 + Punic/data/nb/calendar.json | 1 + Punic/data/nb/dateFields.json | 1 + Punic/data/nb/languages.json | 1 + Punic/data/nb/listPatterns.json | 1 + Punic/data/nb/localeDisplayNames.json | 1 + Punic/data/nb/numbers.json | 1 + Punic/data/nb/territories.json | 1 + Punic/data/nb/timeZoneNames.json | 1 + Punic/data/nb/units.json | 1 + Punic/data/nl/calendar.json | 1 + Punic/data/nl/dateFields.json | 1 + Punic/data/nl/languages.json | 1 + Punic/data/nl/listPatterns.json | 1 + Punic/data/nl/localeDisplayNames.json | 1 + Punic/data/nl/numbers.json | 1 + Punic/data/nl/territories.json | 1 + Punic/data/nl/timeZoneNames.json | 1 + Punic/data/nl/units.json | 1 + Punic/data/parentLocales.json | 1 + Punic/data/pl/calendar.json | 1 + Punic/data/pl/dateFields.json | 1 + Punic/data/pl/languages.json | 1 + Punic/data/pl/listPatterns.json | 1 + Punic/data/pl/localeDisplayNames.json | 1 + Punic/data/pl/numbers.json | 1 + Punic/data/pl/territories.json | 1 + Punic/data/pl/timeZoneNames.json | 1 + Punic/data/pl/units.json | 1 + Punic/data/plurals.json | 1 + Punic/data/pt-PT/calendar.json | 1 + Punic/data/pt-PT/dateFields.json | 1 + Punic/data/pt-PT/languages.json | 1 + Punic/data/pt-PT/listPatterns.json | 1 + Punic/data/pt-PT/localeDisplayNames.json | 1 + Punic/data/pt-PT/numbers.json | 1 + Punic/data/pt-PT/territories.json | 1 + Punic/data/pt-PT/timeZoneNames.json | 1 + Punic/data/pt-PT/units.json | 1 + Punic/data/pt/calendar.json | 1 + Punic/data/pt/dateFields.json | 1 + Punic/data/pt/languages.json | 1 + Punic/data/pt/listPatterns.json | 1 + Punic/data/pt/localeDisplayNames.json | 1 + Punic/data/pt/numbers.json | 1 + Punic/data/pt/territories.json | 1 + Punic/data/pt/timeZoneNames.json | 1 + Punic/data/pt/units.json | 1 + Punic/data/ro/calendar.json | 1 + Punic/data/ro/dateFields.json | 1 + Punic/data/ro/languages.json | 1 + Punic/data/ro/listPatterns.json | 1 + Punic/data/ro/localeDisplayNames.json | 1 + Punic/data/ro/numbers.json | 1 + Punic/data/ro/territories.json | 1 + Punic/data/ro/timeZoneNames.json | 1 + Punic/data/ro/units.json | 1 + Punic/data/root/calendar.json | 1 + Punic/data/root/dateFields.json | 1 + Punic/data/root/languages.json | 1 + Punic/data/root/listPatterns.json | 1 + Punic/data/root/localeDisplayNames.json | 1 + Punic/data/root/numbers.json | 1 + Punic/data/root/territories.json | 1 + Punic/data/root/timeZoneNames.json | 1 + Punic/data/root/units.json | 1 + Punic/data/ru/calendar.json | 1 + Punic/data/ru/dateFields.json | 1 + Punic/data/ru/languages.json | 1 + Punic/data/ru/listPatterns.json | 1 + Punic/data/ru/localeDisplayNames.json | 1 + Punic/data/ru/numbers.json | 1 + Punic/data/ru/territories.json | 1 + Punic/data/ru/timeZoneNames.json | 1 + Punic/data/ru/units.json | 1 + Punic/data/sk/calendar.json | 1 + Punic/data/sk/dateFields.json | 1 + Punic/data/sk/languages.json | 1 + Punic/data/sk/listPatterns.json | 1 + Punic/data/sk/localeDisplayNames.json | 1 + Punic/data/sk/numbers.json | 1 + Punic/data/sk/territories.json | 1 + Punic/data/sk/timeZoneNames.json | 1 + Punic/data/sk/units.json | 1 + Punic/data/sl/calendar.json | 1 + Punic/data/sl/dateFields.json | 1 + Punic/data/sl/languages.json | 1 + Punic/data/sl/listPatterns.json | 1 + Punic/data/sl/localeDisplayNames.json | 1 + Punic/data/sl/numbers.json | 1 + Punic/data/sl/territories.json | 1 + Punic/data/sl/timeZoneNames.json | 1 + Punic/data/sl/units.json | 1 + Punic/data/sr/calendar.json | 1 + Punic/data/sr/dateFields.json | 1 + Punic/data/sr/languages.json | 1 + Punic/data/sr/listPatterns.json | 1 + Punic/data/sr/localeDisplayNames.json | 1 + Punic/data/sr/numbers.json | 1 + Punic/data/sr/territories.json | 1 + Punic/data/sr/timeZoneNames.json | 1 + Punic/data/sr/units.json | 1 + Punic/data/sv/calendar.json | 1 + Punic/data/sv/dateFields.json | 1 + Punic/data/sv/languages.json | 1 + Punic/data/sv/listPatterns.json | 1 + Punic/data/sv/localeDisplayNames.json | 1 + Punic/data/sv/numbers.json | 1 + Punic/data/sv/territories.json | 1 + Punic/data/sv/timeZoneNames.json | 1 + Punic/data/sv/units.json | 1 + Punic/data/territoryContainment.json | 1 + Punic/data/territoryInfo.json | 1 + Punic/data/th/calendar.json | 1 + Punic/data/th/dateFields.json | 1 + Punic/data/th/languages.json | 1 + Punic/data/th/listPatterns.json | 1 + Punic/data/th/localeDisplayNames.json | 1 + Punic/data/th/numbers.json | 1 + Punic/data/th/territories.json | 1 + Punic/data/th/timeZoneNames.json | 1 + Punic/data/th/units.json | 1 + Punic/data/tr/calendar.json | 1 + Punic/data/tr/dateFields.json | 1 + Punic/data/tr/languages.json | 1 + Punic/data/tr/listPatterns.json | 1 + Punic/data/tr/localeDisplayNames.json | 1 + Punic/data/tr/numbers.json | 1 + Punic/data/tr/territories.json | 1 + Punic/data/tr/timeZoneNames.json | 1 + Punic/data/tr/units.json | 1 + Punic/data/uk/calendar.json | 1 + Punic/data/uk/dateFields.json | 1 + Punic/data/uk/languages.json | 1 + Punic/data/uk/listPatterns.json | 1 + Punic/data/uk/localeDisplayNames.json | 1 + Punic/data/uk/numbers.json | 1 + Punic/data/uk/territories.json | 1 + Punic/data/uk/timeZoneNames.json | 1 + Punic/data/uk/units.json | 1 + Punic/data/vi/calendar.json | 1 + Punic/data/vi/dateFields.json | 1 + Punic/data/vi/languages.json | 1 + Punic/data/vi/listPatterns.json | 1 + Punic/data/vi/localeDisplayNames.json | 1 + Punic/data/vi/numbers.json | 1 + Punic/data/vi/territories.json | 1 + Punic/data/vi/timeZoneNames.json | 1 + Punic/data/vi/units.json | 1 + Punic/data/weekData.json | 1 + Punic/data/zh-Hant/calendar.json | 1 + Punic/data/zh-Hant/dateFields.json | 1 + Punic/data/zh-Hant/languages.json | 1 + Punic/data/zh-Hant/listPatterns.json | 1 + Punic/data/zh-Hant/localeDisplayNames.json | 1 + Punic/data/zh-Hant/numbers.json | 1 + Punic/data/zh-Hant/territories.json | 1 + Punic/data/zh-Hant/timeZoneNames.json | 1 + Punic/data/zh-Hant/units.json | 1 + Punic/data/zh/calendar.json | 1 + Punic/data/zh/dateFields.json | 1 + Punic/data/zh/languages.json | 1 + Punic/data/zh/listPatterns.json | 1 + Punic/data/zh/localeDisplayNames.json | 1 + Punic/data/zh/numbers.json | 1 + Punic/data/zh/territories.json | 1 + Punic/data/zh/timeZoneNames.json | 1 + Punic/data/zh/units.json | 1 + Strings.php | 141 ++ Translator.php | 304 ++++ __.php | 11 + autoload.inc.php | 11 + domain.php | 7 + getTextExtractor.php | 45 + getTextExtractorPHP.php | 54 + getTextExtractorTemplix.php | 28 + gettext_reader.php | 429 +++++ msgfmt.php | 201 +++ 431 files changed, 9830 insertions(+) create mode 100644 FileReader.php create mode 100644 Gettext/Extractors/Extractor.php create mode 100644 Gettext/Extractors/ExtractorInterface.php create mode 100644 Gettext/Extractors/Jed.php create mode 100644 Gettext/Extractors/JsCode.php create mode 100644 Gettext/Extractors/Mo.php create mode 100644 Gettext/Extractors/PhpArray.php create mode 100644 Gettext/Extractors/PhpCode.php create mode 100644 Gettext/Extractors/Po.php create mode 100644 Gettext/Generators/Generator.php create mode 100644 Gettext/Generators/GeneratorInterface.php create mode 100644 Gettext/Generators/Jed.php create mode 100644 Gettext/Generators/Mo.php create mode 100644 Gettext/Generators/PhpArray.php create mode 100644 Gettext/Generators/Po.php create mode 100644 Gettext/Translation.php create mode 100644 Gettext/Translations.php create mode 100644 Gettext/Translator.php create mode 100644 Gettext/Utils/FunctionsScanner.php create mode 100644 Gettext/Utils/JsFunctionsScanner.php create mode 100644 Gettext/Utils/PhpFunctionsScanner.php create mode 100644 Gettext/Utils/StringReader.php create mode 100644 GettextEmulator.php create mode 100644 Iso/3166.en.php create mode 100644 Iso/639.en.php create mode 100644 Iso/639.fr.php create mode 100644 Iso/639.php create mode 100644 Punic/Calendar.php create mode 100644 Punic/Data.php create mode 100644 Punic/Exception.php create mode 100644 Punic/Exception/BadArgumentType.php create mode 100644 Punic/Exception/BadDataFileContents.php create mode 100644 Punic/Exception/DataFileNotFound.php create mode 100644 Punic/Exception/DataFileNotReadable.php create mode 100644 Punic/Exception/DataFolderNotFound.php create mode 100644 Punic/Exception/InvalidDataFile.php create mode 100644 Punic/Exception/InvalidLocale.php create mode 100644 Punic/Exception/NotImplemented.php create mode 100644 Punic/Exception/ValueNotInList.php create mode 100644 Punic/Language.php create mode 100644 Punic/Misc.php create mode 100644 Punic/Number.php create mode 100644 Punic/Plural.php create mode 100644 Punic/Territory.php create mode 100644 Punic/Unit.php create mode 100644 Punic/data/ar/calendar.json create mode 100644 Punic/data/ar/dateFields.json create mode 100644 Punic/data/ar/languages.json create mode 100644 Punic/data/ar/listPatterns.json create mode 100644 Punic/data/ar/localeDisplayNames.json create mode 100644 Punic/data/ar/numbers.json create mode 100644 Punic/data/ar/territories.json create mode 100644 Punic/data/ar/timeZoneNames.json create mode 100644 Punic/data/ar/units.json create mode 100644 Punic/data/ca/calendar.json create mode 100644 Punic/data/ca/dateFields.json create mode 100644 Punic/data/ca/languages.json create mode 100644 Punic/data/ca/listPatterns.json create mode 100644 Punic/data/ca/localeDisplayNames.json create mode 100644 Punic/data/ca/numbers.json create mode 100644 Punic/data/ca/territories.json create mode 100644 Punic/data/ca/timeZoneNames.json create mode 100644 Punic/data/ca/units.json create mode 100644 Punic/data/cs/calendar.json create mode 100644 Punic/data/cs/dateFields.json create mode 100644 Punic/data/cs/languages.json create mode 100644 Punic/data/cs/listPatterns.json create mode 100644 Punic/data/cs/localeDisplayNames.json create mode 100644 Punic/data/cs/numbers.json create mode 100644 Punic/data/cs/territories.json create mode 100644 Punic/data/cs/timeZoneNames.json create mode 100644 Punic/data/cs/units.json create mode 100644 Punic/data/da/calendar.json create mode 100644 Punic/data/da/dateFields.json create mode 100644 Punic/data/da/languages.json create mode 100644 Punic/data/da/listPatterns.json create mode 100644 Punic/data/da/localeDisplayNames.json create mode 100644 Punic/data/da/numbers.json create mode 100644 Punic/data/da/territories.json create mode 100644 Punic/data/da/timeZoneNames.json create mode 100644 Punic/data/da/units.json create mode 100644 Punic/data/de/calendar.json create mode 100644 Punic/data/de/dateFields.json create mode 100644 Punic/data/de/languages.json create mode 100644 Punic/data/de/listPatterns.json create mode 100644 Punic/data/de/localeDisplayNames.json create mode 100644 Punic/data/de/numbers.json create mode 100644 Punic/data/de/territories.json create mode 100644 Punic/data/de/timeZoneNames.json create mode 100644 Punic/data/de/units.json create mode 100644 Punic/data/el/calendar.json create mode 100644 Punic/data/el/dateFields.json create mode 100644 Punic/data/el/languages.json create mode 100644 Punic/data/el/listPatterns.json create mode 100644 Punic/data/el/localeDisplayNames.json create mode 100644 Punic/data/el/numbers.json create mode 100644 Punic/data/el/territories.json create mode 100644 Punic/data/el/timeZoneNames.json create mode 100644 Punic/data/el/units.json create mode 100644 Punic/data/en-001/calendar.json create mode 100644 Punic/data/en-001/dateFields.json create mode 100644 Punic/data/en-001/languages.json create mode 100644 Punic/data/en-001/listPatterns.json create mode 100644 Punic/data/en-001/localeDisplayNames.json create mode 100644 Punic/data/en-001/numbers.json create mode 100644 Punic/data/en-001/territories.json create mode 100644 Punic/data/en-001/timeZoneNames.json create mode 100644 Punic/data/en-001/units.json create mode 100644 Punic/data/en-AU/calendar.json create mode 100644 Punic/data/en-AU/dateFields.json create mode 100644 Punic/data/en-AU/languages.json create mode 100644 Punic/data/en-AU/listPatterns.json create mode 100644 Punic/data/en-AU/localeDisplayNames.json create mode 100644 Punic/data/en-AU/numbers.json create mode 100644 Punic/data/en-AU/territories.json create mode 100644 Punic/data/en-AU/timeZoneNames.json create mode 100644 Punic/data/en-AU/units.json create mode 100644 Punic/data/en-CA/calendar.json create mode 100644 Punic/data/en-CA/dateFields.json create mode 100644 Punic/data/en-CA/languages.json create mode 100644 Punic/data/en-CA/listPatterns.json create mode 100644 Punic/data/en-CA/localeDisplayNames.json create mode 100644 Punic/data/en-CA/numbers.json create mode 100644 Punic/data/en-CA/territories.json create mode 100644 Punic/data/en-CA/timeZoneNames.json create mode 100644 Punic/data/en-CA/units.json create mode 100644 Punic/data/en-GB/calendar.json create mode 100644 Punic/data/en-GB/dateFields.json create mode 100644 Punic/data/en-GB/languages.json create mode 100644 Punic/data/en-GB/listPatterns.json create mode 100644 Punic/data/en-GB/localeDisplayNames.json create mode 100644 Punic/data/en-GB/numbers.json create mode 100644 Punic/data/en-GB/territories.json create mode 100644 Punic/data/en-GB/timeZoneNames.json create mode 100644 Punic/data/en-GB/units.json create mode 100644 Punic/data/en-HK/calendar.json create mode 100644 Punic/data/en-HK/dateFields.json create mode 100644 Punic/data/en-HK/languages.json create mode 100644 Punic/data/en-HK/listPatterns.json create mode 100644 Punic/data/en-HK/localeDisplayNames.json create mode 100644 Punic/data/en-HK/numbers.json create mode 100644 Punic/data/en-HK/territories.json create mode 100644 Punic/data/en-HK/timeZoneNames.json create mode 100644 Punic/data/en-HK/units.json create mode 100644 Punic/data/en-IN/calendar.json create mode 100644 Punic/data/en-IN/dateFields.json create mode 100644 Punic/data/en-IN/languages.json create mode 100644 Punic/data/en-IN/listPatterns.json create mode 100644 Punic/data/en-IN/localeDisplayNames.json create mode 100644 Punic/data/en-IN/numbers.json create mode 100644 Punic/data/en-IN/territories.json create mode 100644 Punic/data/en-IN/timeZoneNames.json create mode 100644 Punic/data/en-IN/units.json create mode 100644 Punic/data/en/calendar.json create mode 100644 Punic/data/en/dateFields.json create mode 100644 Punic/data/en/languages.json create mode 100644 Punic/data/en/listPatterns.json create mode 100644 Punic/data/en/localeDisplayNames.json create mode 100644 Punic/data/en/numbers.json create mode 100644 Punic/data/en/territories.json create mode 100644 Punic/data/en/timeZoneNames.json create mode 100644 Punic/data/en/units.json create mode 100644 Punic/data/es/calendar.json create mode 100644 Punic/data/es/dateFields.json create mode 100644 Punic/data/es/languages.json create mode 100644 Punic/data/es/listPatterns.json create mode 100644 Punic/data/es/localeDisplayNames.json create mode 100644 Punic/data/es/numbers.json create mode 100644 Punic/data/es/territories.json create mode 100644 Punic/data/es/timeZoneNames.json create mode 100644 Punic/data/es/units.json create mode 100644 Punic/data/fi/calendar.json create mode 100644 Punic/data/fi/dateFields.json create mode 100644 Punic/data/fi/languages.json create mode 100644 Punic/data/fi/listPatterns.json create mode 100644 Punic/data/fi/localeDisplayNames.json create mode 100644 Punic/data/fi/numbers.json create mode 100644 Punic/data/fi/territories.json create mode 100644 Punic/data/fi/timeZoneNames.json create mode 100644 Punic/data/fi/units.json create mode 100644 Punic/data/fr/calendar.json create mode 100644 Punic/data/fr/dateFields.json create mode 100644 Punic/data/fr/languages.json create mode 100644 Punic/data/fr/listPatterns.json create mode 100644 Punic/data/fr/localeDisplayNames.json create mode 100644 Punic/data/fr/numbers.json create mode 100644 Punic/data/fr/territories.json create mode 100644 Punic/data/fr/timeZoneNames.json create mode 100644 Punic/data/fr/units.json create mode 100644 Punic/data/he/calendar.json create mode 100644 Punic/data/he/dateFields.json create mode 100644 Punic/data/he/languages.json create mode 100644 Punic/data/he/listPatterns.json create mode 100644 Punic/data/he/localeDisplayNames.json create mode 100644 Punic/data/he/numbers.json create mode 100644 Punic/data/he/territories.json create mode 100644 Punic/data/he/timeZoneNames.json create mode 100644 Punic/data/he/units.json create mode 100644 Punic/data/hi/calendar.json create mode 100644 Punic/data/hi/dateFields.json create mode 100644 Punic/data/hi/languages.json create mode 100644 Punic/data/hi/listPatterns.json create mode 100644 Punic/data/hi/localeDisplayNames.json create mode 100644 Punic/data/hi/numbers.json create mode 100644 Punic/data/hi/territories.json create mode 100644 Punic/data/hi/timeZoneNames.json create mode 100644 Punic/data/hi/units.json create mode 100644 Punic/data/hr/calendar.json create mode 100644 Punic/data/hr/dateFields.json create mode 100644 Punic/data/hr/languages.json create mode 100644 Punic/data/hr/listPatterns.json create mode 100644 Punic/data/hr/localeDisplayNames.json create mode 100644 Punic/data/hr/numbers.json create mode 100644 Punic/data/hr/territories.json create mode 100644 Punic/data/hr/timeZoneNames.json create mode 100644 Punic/data/hr/units.json create mode 100644 Punic/data/hu/calendar.json create mode 100644 Punic/data/hu/dateFields.json create mode 100644 Punic/data/hu/languages.json create mode 100644 Punic/data/hu/listPatterns.json create mode 100644 Punic/data/hu/localeDisplayNames.json create mode 100644 Punic/data/hu/numbers.json create mode 100644 Punic/data/hu/territories.json create mode 100644 Punic/data/hu/timeZoneNames.json create mode 100644 Punic/data/hu/units.json create mode 100644 Punic/data/it/calendar.json create mode 100644 Punic/data/it/dateFields.json create mode 100644 Punic/data/it/languages.json create mode 100644 Punic/data/it/listPatterns.json create mode 100644 Punic/data/it/localeDisplayNames.json create mode 100644 Punic/data/it/numbers.json create mode 100644 Punic/data/it/territories.json create mode 100644 Punic/data/it/timeZoneNames.json create mode 100644 Punic/data/it/units.json create mode 100644 Punic/data/ja/calendar.json create mode 100644 Punic/data/ja/dateFields.json create mode 100644 Punic/data/ja/languages.json create mode 100644 Punic/data/ja/listPatterns.json create mode 100644 Punic/data/ja/localeDisplayNames.json create mode 100644 Punic/data/ja/numbers.json create mode 100644 Punic/data/ja/territories.json create mode 100644 Punic/data/ja/timeZoneNames.json create mode 100644 Punic/data/ja/units.json create mode 100644 Punic/data/ko/calendar.json create mode 100644 Punic/data/ko/dateFields.json create mode 100644 Punic/data/ko/languages.json create mode 100644 Punic/data/ko/listPatterns.json create mode 100644 Punic/data/ko/localeDisplayNames.json create mode 100644 Punic/data/ko/numbers.json create mode 100644 Punic/data/ko/territories.json create mode 100644 Punic/data/ko/timeZoneNames.json create mode 100644 Punic/data/ko/units.json create mode 100644 Punic/data/likelySubtags.json create mode 100644 Punic/data/metaZones.json create mode 100644 Punic/data/nb/calendar.json create mode 100644 Punic/data/nb/dateFields.json create mode 100644 Punic/data/nb/languages.json create mode 100644 Punic/data/nb/listPatterns.json create mode 100644 Punic/data/nb/localeDisplayNames.json create mode 100644 Punic/data/nb/numbers.json create mode 100644 Punic/data/nb/territories.json create mode 100644 Punic/data/nb/timeZoneNames.json create mode 100644 Punic/data/nb/units.json create mode 100644 Punic/data/nl/calendar.json create mode 100644 Punic/data/nl/dateFields.json create mode 100644 Punic/data/nl/languages.json create mode 100644 Punic/data/nl/listPatterns.json create mode 100644 Punic/data/nl/localeDisplayNames.json create mode 100644 Punic/data/nl/numbers.json create mode 100644 Punic/data/nl/territories.json create mode 100644 Punic/data/nl/timeZoneNames.json create mode 100644 Punic/data/nl/units.json create mode 100644 Punic/data/parentLocales.json create mode 100644 Punic/data/pl/calendar.json create mode 100644 Punic/data/pl/dateFields.json create mode 100644 Punic/data/pl/languages.json create mode 100644 Punic/data/pl/listPatterns.json create mode 100644 Punic/data/pl/localeDisplayNames.json create mode 100644 Punic/data/pl/numbers.json create mode 100644 Punic/data/pl/territories.json create mode 100644 Punic/data/pl/timeZoneNames.json create mode 100644 Punic/data/pl/units.json create mode 100644 Punic/data/plurals.json create mode 100644 Punic/data/pt-PT/calendar.json create mode 100644 Punic/data/pt-PT/dateFields.json create mode 100644 Punic/data/pt-PT/languages.json create mode 100644 Punic/data/pt-PT/listPatterns.json create mode 100644 Punic/data/pt-PT/localeDisplayNames.json create mode 100644 Punic/data/pt-PT/numbers.json create mode 100644 Punic/data/pt-PT/territories.json create mode 100644 Punic/data/pt-PT/timeZoneNames.json create mode 100644 Punic/data/pt-PT/units.json create mode 100644 Punic/data/pt/calendar.json create mode 100644 Punic/data/pt/dateFields.json create mode 100644 Punic/data/pt/languages.json create mode 100644 Punic/data/pt/listPatterns.json create mode 100644 Punic/data/pt/localeDisplayNames.json create mode 100644 Punic/data/pt/numbers.json create mode 100644 Punic/data/pt/territories.json create mode 100644 Punic/data/pt/timeZoneNames.json create mode 100644 Punic/data/pt/units.json create mode 100644 Punic/data/ro/calendar.json create mode 100644 Punic/data/ro/dateFields.json create mode 100644 Punic/data/ro/languages.json create mode 100644 Punic/data/ro/listPatterns.json create mode 100644 Punic/data/ro/localeDisplayNames.json create mode 100644 Punic/data/ro/numbers.json create mode 100644 Punic/data/ro/territories.json create mode 100644 Punic/data/ro/timeZoneNames.json create mode 100644 Punic/data/ro/units.json create mode 100644 Punic/data/root/calendar.json create mode 100644 Punic/data/root/dateFields.json create mode 100644 Punic/data/root/languages.json create mode 100644 Punic/data/root/listPatterns.json create mode 100644 Punic/data/root/localeDisplayNames.json create mode 100644 Punic/data/root/numbers.json create mode 100644 Punic/data/root/territories.json create mode 100644 Punic/data/root/timeZoneNames.json create mode 100644 Punic/data/root/units.json create mode 100644 Punic/data/ru/calendar.json create mode 100644 Punic/data/ru/dateFields.json create mode 100644 Punic/data/ru/languages.json create mode 100644 Punic/data/ru/listPatterns.json create mode 100644 Punic/data/ru/localeDisplayNames.json create mode 100644 Punic/data/ru/numbers.json create mode 100644 Punic/data/ru/territories.json create mode 100644 Punic/data/ru/timeZoneNames.json create mode 100644 Punic/data/ru/units.json create mode 100644 Punic/data/sk/calendar.json create mode 100644 Punic/data/sk/dateFields.json create mode 100644 Punic/data/sk/languages.json create mode 100644 Punic/data/sk/listPatterns.json create mode 100644 Punic/data/sk/localeDisplayNames.json create mode 100644 Punic/data/sk/numbers.json create mode 100644 Punic/data/sk/territories.json create mode 100644 Punic/data/sk/timeZoneNames.json create mode 100644 Punic/data/sk/units.json create mode 100644 Punic/data/sl/calendar.json create mode 100644 Punic/data/sl/dateFields.json create mode 100644 Punic/data/sl/languages.json create mode 100644 Punic/data/sl/listPatterns.json create mode 100644 Punic/data/sl/localeDisplayNames.json create mode 100644 Punic/data/sl/numbers.json create mode 100644 Punic/data/sl/territories.json create mode 100644 Punic/data/sl/timeZoneNames.json create mode 100644 Punic/data/sl/units.json create mode 100644 Punic/data/sr/calendar.json create mode 100644 Punic/data/sr/dateFields.json create mode 100644 Punic/data/sr/languages.json create mode 100644 Punic/data/sr/listPatterns.json create mode 100644 Punic/data/sr/localeDisplayNames.json create mode 100644 Punic/data/sr/numbers.json create mode 100644 Punic/data/sr/territories.json create mode 100644 Punic/data/sr/timeZoneNames.json create mode 100644 Punic/data/sr/units.json create mode 100644 Punic/data/sv/calendar.json create mode 100644 Punic/data/sv/dateFields.json create mode 100644 Punic/data/sv/languages.json create mode 100644 Punic/data/sv/listPatterns.json create mode 100644 Punic/data/sv/localeDisplayNames.json create mode 100644 Punic/data/sv/numbers.json create mode 100644 Punic/data/sv/territories.json create mode 100644 Punic/data/sv/timeZoneNames.json create mode 100644 Punic/data/sv/units.json create mode 100644 Punic/data/territoryContainment.json create mode 100644 Punic/data/territoryInfo.json create mode 100644 Punic/data/th/calendar.json create mode 100644 Punic/data/th/dateFields.json create mode 100644 Punic/data/th/languages.json create mode 100644 Punic/data/th/listPatterns.json create mode 100644 Punic/data/th/localeDisplayNames.json create mode 100644 Punic/data/th/numbers.json create mode 100644 Punic/data/th/territories.json create mode 100644 Punic/data/th/timeZoneNames.json create mode 100644 Punic/data/th/units.json create mode 100644 Punic/data/tr/calendar.json create mode 100644 Punic/data/tr/dateFields.json create mode 100644 Punic/data/tr/languages.json create mode 100644 Punic/data/tr/listPatterns.json create mode 100644 Punic/data/tr/localeDisplayNames.json create mode 100644 Punic/data/tr/numbers.json create mode 100644 Punic/data/tr/territories.json create mode 100644 Punic/data/tr/timeZoneNames.json create mode 100644 Punic/data/tr/units.json create mode 100644 Punic/data/uk/calendar.json create mode 100644 Punic/data/uk/dateFields.json create mode 100644 Punic/data/uk/languages.json create mode 100644 Punic/data/uk/listPatterns.json create mode 100644 Punic/data/uk/localeDisplayNames.json create mode 100644 Punic/data/uk/numbers.json create mode 100644 Punic/data/uk/territories.json create mode 100644 Punic/data/uk/timeZoneNames.json create mode 100644 Punic/data/uk/units.json create mode 100644 Punic/data/vi/calendar.json create mode 100644 Punic/data/vi/dateFields.json create mode 100644 Punic/data/vi/languages.json create mode 100644 Punic/data/vi/listPatterns.json create mode 100644 Punic/data/vi/localeDisplayNames.json create mode 100644 Punic/data/vi/numbers.json create mode 100644 Punic/data/vi/territories.json create mode 100644 Punic/data/vi/timeZoneNames.json create mode 100644 Punic/data/vi/units.json create mode 100644 Punic/data/weekData.json create mode 100644 Punic/data/zh-Hant/calendar.json create mode 100644 Punic/data/zh-Hant/dateFields.json create mode 100644 Punic/data/zh-Hant/languages.json create mode 100644 Punic/data/zh-Hant/listPatterns.json create mode 100644 Punic/data/zh-Hant/localeDisplayNames.json create mode 100644 Punic/data/zh-Hant/numbers.json create mode 100644 Punic/data/zh-Hant/territories.json create mode 100644 Punic/data/zh-Hant/timeZoneNames.json create mode 100644 Punic/data/zh-Hant/units.json create mode 100644 Punic/data/zh/calendar.json create mode 100644 Punic/data/zh/dateFields.json create mode 100644 Punic/data/zh/languages.json create mode 100644 Punic/data/zh/listPatterns.json create mode 100644 Punic/data/zh/localeDisplayNames.json create mode 100644 Punic/data/zh/numbers.json create mode 100644 Punic/data/zh/territories.json create mode 100644 Punic/data/zh/timeZoneNames.json create mode 100644 Punic/data/zh/units.json create mode 100644 Strings.php create mode 100644 Translator.php create mode 100644 __.php create mode 100644 autoload.inc.php create mode 100644 domain.php create mode 100644 getTextExtractor.php create mode 100644 getTextExtractorPHP.php create mode 100644 getTextExtractorTemplix.php create mode 100644 gettext_reader.php create mode 100644 msgfmt.php diff --git a/FileReader.php b/FileReader.php new file mode 100644 index 0000000..6fc993f --- /dev/null +++ b/FileReader.php @@ -0,0 +1,50 @@ +_length=filesize($filename); + $this->_pos = 0; + $this->_fd = fopen($filename,'rb'); + if(!$this->_fd){ + $this->error = 3; + return false; + } + } + else{ + $this->error = 2; + return false; + } + } + function read($bytes){ + if ($bytes) { + fseek($this->_fd, $this->_pos); + $data = ''; + while($bytes > 0){ + $chunk = fread($this->_fd, $bytes); + $data .= $chunk; + $bytes -= strlen($chunk); + } + $this->_pos = ftell($this->_fd); + return $data; + } + else + return ''; + } + function seekto($pos) { + fseek($this->_fd, $pos); + $this->_pos = ftell($this->_fd); + return $this->_pos; + } + function currentpos() { + return $this->_pos; + } + function length() { + return $this->_length; + } + function close() { + fclose($this->_fd); + } +} \ No newline at end of file diff --git a/Gettext/Extractors/Extractor.php b/Gettext/Extractors/Extractor.php new file mode 100644 index 0000000..26c5d2d --- /dev/null +++ b/Gettext/Extractors/Extractor.php @@ -0,0 +1,89 @@ + '__', + 'n__' => 'n__', + 'p__' => 'p__', + ); + + /** + * {@inheritDoc} + */ + public static function fromString($string, Translations $translations = null, $file = '') + { + if ($translations === null) { + $translations = new Translations(); + } + + $functions = new JsFunctionsScanner($string); + $functions->saveGettextFunctions(self::$functions, $translations, $file); + } +} diff --git a/Gettext/Extractors/Mo.php b/Gettext/Extractors/Mo.php new file mode 100644 index 0000000..758e53e --- /dev/null +++ b/Gettext/Extractors/Mo.php @@ -0,0 +1,96 @@ +seekto($originals); + $table_originals = self::readIntArray($stream, $byteOrder, $total * 2); + $stream->seekto($tran); + $table_translations = self::readIntArray($stream, $byteOrder, $total * 2); + + for ($i = 0; $i < $total; $i++) { + $stream->seekto($table_originals[$i * 2 + 2]); + $original = $stream->read($table_originals[$i * 2 + 1]); + + if (empty($original)) { + continue; + } + + $stream->seekto($table_translations[$i * 2 + 2]); + $original = explode("\000", $original, 2); + $translated = explode("\000", $stream->read($table_translations[$i * 2 + 1]), 2); + + $plural = isset($original[1]) ? $original[1] : ''; + $pluralTranslation = isset($translated[1]) ? $translated[1] : ''; + + $translation = $translations->insert(null, $original[0], $plural); + $translation->setTranslation($translated[0]); + + if ($plural && $pluralTranslation) { + $translation->setPluralTranslation($pluralTranslation); + } + } + } + + /** + * @param StringReader $stream + * @param string $byteOrder + */ + private static function readInt(StringReader $stream, $byteOrder) + { + if (($read = $stream->read(4)) === false) { + return false; + } + + $read = unpack($byteOrder, $read); + + return array_shift($read); + } + + /** + * @param StringReader $stream + * @param string $byteOrder + * @param int $count + */ + private static function readIntArray(StringReader $stream, $byteOrder, $count) + { + return unpack($byteOrder.$count, $stream->read(4 * $count)); + } +} diff --git a/Gettext/Extractors/PhpArray.php b/Gettext/Extractors/PhpArray.php new file mode 100644 index 0000000..ce974f9 --- /dev/null +++ b/Gettext/Extractors/PhpArray.php @@ -0,0 +1,74 @@ +setDomain($translations_info['domain']); + } + + $context_glue = '\u0004'; + + foreach ($content as $key => $message) { + $key = explode($context_glue, $key); + + $context = isset($key[1]) ? array_shift($key) : ''; + $original = array_shift($key); + $plural = array_shift($message); + $translation = array_shift($message); + $plural_translation = array_shift($message); + + $entry = $translations->find($context, $original, $plural) ?: $translations->insert($context, $original, $plural); + $entry->setTranslation($translation); + $entry->setPluralTranslation($plural_translation); + } + } +} diff --git a/Gettext/Extractors/PhpCode.php b/Gettext/Extractors/PhpCode.php new file mode 100644 index 0000000..c9753b1 --- /dev/null +++ b/Gettext/Extractors/PhpCode.php @@ -0,0 +1,33 @@ + '__', + '__e' => '__', + 'n__' => 'n__', + 'n__e' => 'n__', + 'p__' => 'p__', + 'p__e' => 'p__', + ); + + /** + * {@inheritDoc} + */ + public static function fromString($string, Translations $translations = null, $file = '') + { + if ($translations === null) { + $translations = new Translations(); + } + + $functions = new PhpFunctionsScanner($string); + $functions->saveGettextFunctions(self::$functions, $translations, $file); + } +} diff --git a/Gettext/Extractors/Po.php b/Gettext/Extractors/Po.php new file mode 100644 index 0000000..88ba0d0 --- /dev/null +++ b/Gettext/Extractors/Po.php @@ -0,0 +1,198 @@ +setHeader($currentHeader, $header[1]); + + switch (strtolower($currentHeader)) { + case 'x-domain': + $translations->setDomain($header[1]); + break; + + case 'language': + $translations->setLanguage($header[1]); + break; + } + } else { + $entry = $translations->getHeader($currentHeader); + $translations->setHeader($currentHeader, $entry.$line); + } + } + + $translation = new Translation(); + + for ($n = count($lines); $i < $n; $i++) { + $line = trim($lines[$i]); + + $line = self::fixMultiLines($line, $lines, $i); + + if ($line === '') { + if ($translation->hasOriginal()) { + $translations[] = $translation; + $translation = new Translation(); + } + continue; + } + + $splitLine = preg_split('/\s/', $line, 2); + $key = $splitLine[0]; + $data = isset($splitLine[1]) ? $splitLine[1] : ''; + $append = null; + + switch ($key) { + case '#,': + case '#': + case '#.': + $translation->addComment($data); + $append = null; + break; + + case '#:': + $data = explode(':', $data); + $translation->addReference($data[0], isset($data[1]) ? $data[1] : null); + $append = null; + break; + + case 'msgctxt': + $translation->setContext(self::clean($data)); + $append = 'Context'; + break; + + case 'msgid': + $translation->setOriginal(self::clean($data)); + $append = 'Original'; + break; + + case 'msgid_plural': + $translation->setPlural(self::clean($data)); + $append = 'Plural'; + break; + + case 'msgstr': + case 'msgstr[0]': + $translation->setTranslation(self::clean($data)); + $append = 'Translation'; + break; + + case 'msgstr[1]': + $translation->setPluralTranslation(self::clean($data)); + $append = 'PluralTranslation'; + break; + + default: + if (strpos($key, 'msgstr[') === 0) { + $translation->setPluralTranslation(self::clean($data)); + $append = 'PluralTranslation'; + break; + } + + if (isset($append)) { + if ($append === 'PluralTranslation') { + $key = count($translation->getPluralTranslation()) - 1; + $translation->setPluralTranslation($translation->getPluralTranslation($key)."\n".self::clean($data), $key); + break; + } + + $getMethod = 'get'.$append; + $setMethod = 'set'.$append; + $translation->$setMethod($translation->$getMethod()."\n".self::clean($data)); + } + break; + } + } + + if ($translation->hasOriginal() && !in_array($translation, iterator_to_array($translations))) { + $translations[] = $translation; + } + + return $translations; + } + + /** + * Checks if it is a header definition line. Useful for distguishing between header definitions + * and possible continuations of a header entry + * + * @param string $line Line to parse + * @return boolean + */ + private static function isHeaderDefinition($line) + { + return (bool) preg_match('/^[\w-]+:/', $line); + } + + /** + * Cleans the strings. Removes quotes and "\n", etc + * + * @param string $str + * + * @return string + */ + private static function clean($str) + { + if ($str[0] === '"') { + $str = substr($str, 1, -1); + } + + return str_replace(array('\\n', '\\"'), array("\n", '"'), $str); + } + + /** + * Gets one strings from multiline strings + * + * @param string $line + * @param array $lines + * @param integer &$i + * + * @return string + */ + private static function fixMultiLines($line, array $lines, &$i) + { + for ($j = $i; $jhasTranslation()) { + $array[$translation->getOriginal()] = $translation; + } + } + + ksort($array, SORT_STRING); + + $offsets = array(); + $ids = ''; + $strings = ''; + + foreach ($array as $translation) { + $id = $translation->getOriginal(); + + if ($translation->hasPlural()) { + $id .= "\x00".$translation->getPlural(); + } + + if ($translation->hasContext()) { + $id = $translation->getContext()."\x04".$id; + } + + //Plural msgstrs are NUL-separated + $msgstrs = array_merge(array($translation->getTranslation()), $translation->getPluralTranslation()); + $str = str_replace("\n", "\x00", implode("\x00", $msgstrs)); + + $offsets[] = array(strlen($ids), strlen($id), strlen($strings), strlen($str)); + + //plural msgids are not stored (?) + $ids .= $id."\x00"; + $strings .= $str."\x00"; + } + + $key_start = 7 * 4 + count($array) * 4 * 4; + $value_start = $key_start + strlen($ids); + $key_offsets = array(); + $value_offsets = array(); + + //Calculate + foreach ($offsets as $v) { + list($o1, $l1, $o2, $l2) = $v; + + $key_offsets[] = $l1; + $key_offsets[] = $o1 + $key_start; + $value_offsets[] = $l2; + $value_offsets[] = $o2 + $value_start; + } + + $offsets = array_merge($key_offsets, $value_offsets); + + //Generate binary data + $mo = pack('Iiiiiii', 0x950412de, 0, count($array), 7 * 4, 7 * 4 + count($array) * 8, 0, $key_start); + + foreach ($offsets as $offset) { + $mo .= pack('i', $offset); + } + + return $mo.$ids.$strings; + } +} diff --git a/Gettext/Generators/PhpArray.php b/Gettext/Generators/PhpArray.php new file mode 100644 index 0000000..652615d --- /dev/null +++ b/Gettext/Generators/PhpArray.php @@ -0,0 +1,63 @@ +'; + } + + /** + * Generates an array with the translations + * + * @param Translations $translations + * + * @return array + */ + public static function toArray(Translations $translations) + { + $array = array(); + + $context_glue = "\004"; + + foreach ($translations as $translation) { + $key = ($translation->hasContext() ? $translation->getContext().$context_glue : '').$translation->getOriginal(); + $entry = array($translation->getPlural(), $translation->getTranslation()); + + if ($translation->hasPluralTranslation()) { + $entry = array_merge($entry, $translation->getPluralTranslation()); + } + + $array[$key] = $entry; + } + + $domain = $translations->getDomain() ?: 'messages'; + $lang = $translations->getLanguage() ?: 'en'; + + $fullArray = array( + $domain => array( + '' => array( + 'domain' => $domain, + 'lang' => $lang, + 'plural-forms' => 'nplurals=2; plural=(n != 1);', + ), + ), + ); + + if ($translations->getHeader('Plural-Forms') !== null) { + $fullArray[$domain]['']['plural-forms'] = $translations->getHeader('Plural-Forms'); + } + + $fullArray[$domain] = array_merge($fullArray[$domain], $array); + + return $fullArray; + } +} diff --git a/Gettext/Generators/Po.php b/Gettext/Generators/Po.php new file mode 100644 index 0000000..01e3965 --- /dev/null +++ b/Gettext/Generators/Po.php @@ -0,0 +1,112 @@ + '', + 'Report-Msgid-Bugs-To' => '', + 'Last-Translator' => '', + 'Language-Team' => '', + 'MIME-Version' => '1.0', + 'Content-Type' => 'text/plain; charset=UTF-8', + 'Content-Transfer-Encoding' => '8bit', + 'Language' => $translations->getLanguage(), + ), $translations->getHeaders()); + + $headers['POT-Creation-Date'] = $headers['PO-Revision-Date'] = date('c'); + + foreach ($headers as $name => $value) { + $lines[] = '"'.$name.': '.$value.'\\n"'; + } + + $lines[] = ''; + + //Translations + foreach ($translations as $translation) { + if ($translation->hasComments()) { + foreach ($translation->getComments() as $comment) { + $lines[] = '# '.$comment; + } + } + + if ($translation->hasReferences()) { + foreach ($translation->getReferences() as $reference) { + $lines[] = '#: '.$reference[0].(!is_null($reference[1]) ? ':'.$reference[1] : null); + } + } + + if ($translation->hasContext()) { + $lines[] = 'msgctxt '.self::quote($translation->getContext()); + } + + $msgid = self::multilineQuote($translation->getOriginal()); + + if (count($msgid) === 1) { + $lines[] = 'msgid '.$msgid[0]; + } else { + $lines[] = 'msgid ""'; + $lines = array_merge($lines, $msgid); + } + + if ($translation->hasPlural()) { + $lines[] = 'msgid_plural '.self::quote($translation->getPlural()); + $lines[] = 'msgstr[0] '.self::quote($translation->getTranslation()); + + foreach ($translation->getPluralTranslation() as $k => $v) { + $lines[] = 'msgstr['.($k + 1).'] '.self::quote($v); + } + } else { + $lines[] = 'msgstr '.self::quote($translation->getTranslation()); + } + + $lines[] = ''; + } + + return implode("\n", $lines); + } + + /** + * Escapes and adds double quotes to a string + * + * @param string $string + * + * @return string + */ + private static function quote($string) + { + return '"'.str_replace(array("\r", "\n", '"'), array('', '\n', '\\"'), $string).'"'; + } + + /** + * Escapes and adds double quotes to a string + * + * @param string $string + * + * @return string + */ + private static function multilineQuote($string) + { + $lines = explode("\n", $string); + $last = count($lines) - 1; + + foreach ($lines as $k => $line) { + if ($k === $last) { + $lines[$k] = self::quote($line); + } else { + $lines[$k] = self::quote($line."\n"); + } + } + + return $lines; + } +} diff --git a/Gettext/Translation.php b/Gettext/Translation.php new file mode 100644 index 0000000..d088961 --- /dev/null +++ b/Gettext/Translation.php @@ -0,0 +1,303 @@ +setContext($context); + $this->setOriginal($original); + $this->setPlural($plural); + } + + /** + * Checks whether the translation matches with the arguments + * + * @param string $context + * @param string $original + * @param string $plural + * + * @return boolean + */ + public function is($context, $original = '', $plural = '') + { + return (($this->context === $context) && ($this->original === $original) && ($this->plural === $plural)) ? true : false; + } + + /** + * Sets the original string + * + * @param string $original + */ + public function setOriginal($original) + { + $this->original = (string) $original; + } + + /** + * Gets the original string + * + * @return string + */ + public function getOriginal() + { + return $this->original; + } + + /** + * Checks if the original string is empty or not + * + * @return boolean + */ + public function hasOriginal() + { + return ($this->original !== '') ? true : false; + } + + /** + * Sets the translation string + * + * @param string $translation + */ + public function setTranslation($translation) + { + $this->translation = (string) $translation; + } + + /** + * Gets the translation string + * + * @return string + */ + public function getTranslation() + { + return $this->translation; + } + + /** + * Checks if the translation string is empty or not + * + * @return boolean + */ + public function hasTranslation() + { + return ($this->translation !== '') ? true : false; + } + + /** + * Sets the plural translation string + * + * @param string $plural + */ + public function setPlural($plural) + { + $this->plural = (string) $plural; + } + + /** + * Gets the plural translation string + * + * @return string + */ + public function getPlural() + { + return $this->plural; + } + + /** + * Checks if the plural translation string is empty or not + * + * @return boolean + */ + public function hasPlural() + { + return ($this->plural !== '') ? true : false; + } + + /** + * Set a new plural translation + * + * @param string $plural The plural string to add + * @param null|integer $key The key of the plural translation. + */ + public function setPluralTranslation($plural, $key = null) + { + if ($key === null) { + $this->pluralTranslation[] = $plural; + } else { + $this->pluralTranslation[$key] = $plural; + } + } + + /** + * Gets one or all plural translations + * + * @param integer|null $key The key to return. If is null, return all translations + * + * @return string|array + */ + public function getPluralTranslation($key = null) + { + if ($key === null) { + return $this->pluralTranslation; + } + + return isset($this->pluralTranslation[$key]) ? (string) $this->pluralTranslation[$key] : ''; + } + + /** + * Checks if there any plural translation + * + * @return boolean + */ + public function hasPluralTranslation() + { + return isset($this->pluralTranslation[0]); + } + + /** + * Sets the context of this translation + * + * @param string $context + */ + public function setContext($context) + { + $this->context = (string) $context; + } + + /** + * Gets the context of this translation + * + * @return string + */ + public function getContext() + { + return $this->context; + } + + /** + * Checks if the context is empty or not + * + * @return boolean + */ + public function hasContext() + { + return (isset($this->context) && ($this->context !== '')) ? true : false; + } + + /** + * Adds a new reference for this translation + * + * @param string $filename The file path where the translation has been found + * @param null|integer $line The line number where the translation has been found + */ + public function addReference($filename, $line = null) + { + $key = "{$filename}:{$line}"; + $this->references[$key] = array($filename, $line); + } + + /** + * Checks if the translation has any reference + * + * @return boolean + */ + public function hasReferences() + { + return !empty($this->references); + } + + /** + * Clear all references + */ + public function wipeReferences() + { + $this->references = array(); + } + + /** + * Return all references for this translation + * + * @return array + */ + public function getReferences() + { + return array_values($this->references); + } + + /** + * Adds a new comment for this translation + * + * @param string $comment + */ + public function addComment($comment) + { + $this->comments[] = $comment; + } + + /** + * Checks if the translation has any comment + * + * @return boolean + */ + public function hasComments() + { + return isset($this->comments[0]); + } + + /** + * Returns all comments for this translation + * + * @return array + */ + public function getComments() + { + return $this->comments; + } + + /** + * Merges this translation with other translation + * + * @param Translation $translation The translation to merge with + * @param boolean $references Merge references? + * @param boolean $comments Merge comments? + */ + public function mergeWith(Translation $translation, $references = true, $comments = true) + { + if (!$this->hasTranslation()) { + $this->setTranslation($translation->getTranslation()); + } + + if (!$this->hasPluralTranslation() && $translation->hasPluralTranslation()) { + $this->pluralTranslation = $translation->getPluralTranslation(); + } + + if ($references) { + foreach ($translation->getReferences() as $reference) { + $this->addReference($reference[0], $reference[1]); + } + } + + if ($comments) { + $this->comments = array_unique(array_merge($translation->getComments(), $this->comments)); + } + } +} diff --git a/Gettext/Translations.php b/Gettext/Translations.php new file mode 100644 index 0000000..5424ae2 --- /dev/null +++ b/Gettext/Translations.php @@ -0,0 +1,236 @@ +toMoFile($filename); + * + * @return bool|string + */ + public function __call($name, $arguments) + { + if (!preg_match('/^to(\w+)(File|String)$/i', $name, $matches)) { + throw new \Exception("The method $name does not exists"); + } + + array_unshift($arguments, $this); + + return call_user_func_array('Wild\\Localize\\Gettext\\Generators\\'.$matches[1].'::to'.$matches[2], $arguments); + } + + /** + * Magic method to clone each translation on clone the translations object + */ + public function __clone() + { + foreach ($this as $key => $translation) { + $this[$key] = clone $translation; + } + } + + /** + * Set a new header. + * + * @param string $name + * @param string $value + */ + public function setHeader($name, $value) + { + $this->headers[trim($name)] = trim($value); + } + + /** + * Returns a header value + * + * @param string $name + * + * @return null|string + */ + public function getHeader($name) + { + return isset($this->headers[$name]) ? $this->headers[$name] : null; + } + + /** + * Returns all header for this translations + * + * @return array + */ + public function getHeaders() + { + return $this->headers; + } + + /** + * Returns the language value + * + * @return string $language + */ + public function getLanguage() + { + return $this->language; + } + + /** + * Sets the language value + */ + public function setLanguage($language) + { + $this->language = trim($language); + } + + /** + * Set a new domain for this translations + * + * @param string $domain + */ + public function setDomain($domain) + { + $this->domain = trim($domain); + } + + /** + * Returns the domain + * + * @return string + */ + public function getDomain() + { + return $this->domain; + } + + /** + * Checks whether the domain is empty or not + * + * @return boolean + */ + public function hasDomain() + { + return (isset($this->domain) && $this->domain !== '') ? true : false; + } + + /** + * Search for a specific translation + * + * @param string|Translation $context The context of the translation or a translation instance + * @param string $original The original string + * @param string $plural The original plural string + * + * @return Translation|false + */ + public function find($context, $original = '', $plural = '') + { + if ($context instanceof Translation) { + $original = $context->getOriginal(); + $plural = $context->getPlural(); + $context = $context->getContext(); + } else { + $context = (string) $context; + $original = (string) $original; + $plural = (string) $plural; + } + + foreach ($this as $t) { + if ($t->is($context, $original, $plural)) { + return $t; + } + } + + return false; + } + + /** + * Creates and insert a new translation + * + * @param string $context The translation context + * @param string $original The translation original string + * @param string $plural The translation original plural string + * + * @return Translation The translation created + */ + public function insert($context, $original, $plural = '') + { + return $this[] = new Translation($context, $original, $plural); + } + + /** + * Merges this translations with other translations + * + * @param Translations $translations The translations instance to merge with + * @param integer|null $method One or various Translations::MERGE_* constants to define how to merge the translations + */ + public function mergeWith(Translations $translations, $method = null) + { + if ($method === null) { + $method = self::MERGE_ADD | self::MERGE_HEADERS | self::MERGE_COMMENTS; + } + + if (!$this->getLanguage()) { + $this->setLanguage($translations->getLanguage()); + } + + if (!$this->getDomain()) { + $this->setDomain($translations->getDomain()); + } + + if ($method & self::MERGE_HEADERS) { + foreach ($translations->getHeaders() as $name => $value) { + if (!$this->getHeader($name)) { + $this->setHeader($name, $value); + } + } + } + + $add = (boolean) $method & self::MERGE_ADD; + $references = (boolean) $method & self::MERGE_REFERENCES; + $comments = (boolean) $method & self::MERGE_COMMENTS; + + foreach ($translations as $entry) { + if (($existing = $this->find($entry))) { + $existing->mergeWith($entry, $references, $comments); + } elseif ($add) { + $this[] = clone $entry; + } + } + + if ($method & self::MERGE_REMOVE) { + $iterator = $this->getIterator(); + + foreach ($iterator as $k => $entry) { + if (!($existing = $translations->find($entry))) { + $iterator->offsetUnset($k); + } + } + } + } +} diff --git a/Gettext/Translator.php b/Gettext/Translator.php new file mode 100644 index 0000000..d068b06 --- /dev/null +++ b/Gettext/Translator.php @@ -0,0 +1,310 @@ +addTranslations($translation); + } + + return $this; + } + + + /** + * Set new translations to the dictionary + * + * @param array $translations + */ + public function addTranslations(array $translations) + { + $info = isset($translations['']) ? $translations[''] : null; + unset($translations['']); + + $domain = isset($info['domain']) ? $info['domain'] : 'messages'; + + //Set the first domain loaded as default domain + if (!$this->domain) { + $this->domain = $domain; + } + + if (!isset($this->dictionary[$domain])) { + // If a plural form is set we extract those values + $pluralForms = empty($info['plural-forms']) ? 'nplurals=2; plural=(n != 1)' : $info['plural-forms']; + + list($count, $code) = explode(';', $pluralForms, 2); + + // extract just the expression turn 'n' into a php variable '$n'. + // Slap on a return keyword and semicolon at the end. + $this->plurals[$domain] = [ + 'count' => (int) str_replace('nplurals=', '', $count), + 'code' => str_replace('plural=', 'return ', str_replace('n', '$n', $code)).';', + ]; + + $this->dictionary[$domain] = $translations; + } else { + $this->dictionary[$domain] = array_replace_recursive($this->dictionary[$domain], $translations); + } + } + + /** + * Clear all translations + */ + public function clearTranslations() + { + $this->dictionary = array(); + } + + /** + * Search and returns a translation + * + * @param string $domain + * @param string $context + * @param string $original + * + * @return array + */ + public function getTranslation($domain, $context, $original) + { + $key = isset($context) ? $context.$this->context_glue.$original : $original; + + return isset($this->dictionary[$domain][$key]) ? $this->dictionary[$domain][$key] : false; + } + + /** + * Gets a translation using the original string + * + * @param string $original + * + * @return string + */ + public function gettext($original) + { + return $this->dpgettext($this->domain, null, $original); + } + + /** + * Gets a translation checking the plural form + * + * @param string $original + * @param string $plural + * @param string $value + * + * @return string + */ + public function ngettext($original, $plural, $value) + { + return $this->dnpgettext($this->domain, null, $original, $plural, $value); + } + + /** + * Gets a translation checking the domain and the plural form + * + * @param string $domain + * @param string $original + * @param string $plural + * @param string $value + * + * @return string + */ + public function dngettext($domain, $original, $plural, $value) + { + return $this->dnpgettext($domain, null, $original, $plural, $value); + } + + /** + * Gets a translation checking the context and the plural form + * + * @param string $context + * @param string $original + * @param string $plural + * @param string $value + * + * @return string + */ + public function npgettext($context, $original, $plural, $value) + { + return $this->dnpgettext($this->domain, $context, $original, $plural, $value); + } + + /** + * Gets a translation checking the context + * + * @param string $context + * @param string $original + * + * @return string + */ + public function pgettext($context, $original) + { + return $this->dpgettext($this->domain, $context, $original); + } + + /** + * Gets a translation checking the domain + * + * @param string $domain + * @param string $original + * + * @return string + */ + public function dgettext($domain, $original) + { + return $this->dpgettext($domain, null, $original); + } + + /** + * Gets a translation checking the domain and context + * + * @param string $domain + * @param string $context + * @param string $original + * + * @return string + */ + public function dpgettext($domain, $context, $original) + { + $translation = $this->getTranslation($domain, $context, $original); + + if (isset($translation[1]) && $translation[1] !== '') { + return $translation[1]; + } + + return $original; + } + + /** + * Gets a translation checking the domain, the context and the plural form + * + * @param string $domain + * @param string $context + * @param string $original + * @param string $plural + * @param string $value + */ + public function dnpgettext($domain, $context, $original, $plural, $value) + { + $key = $this->isPlural($domain, $value); + $translation = $this->getTranslation($domain, $context, $original); + + if (isset($translation[$key]) && $translation[$key] !== '') { + return $translation[$key]; + } + + return ($key === 1) ? $original : $plural; + } + + /** + * Executes the plural decision code given the number to decide which + * plural version to take. + * + * @param string $domain + * @param string $n + * @return int + */ + public function isPlural($domain, $n) + { + if (!isset($this->plurals[$domain])) { + throw new \InvalidArgumentException("The gettext domain '$domain' is not loaded"); + } + + if (!isset($this->plurals[$domain]['function'])) { + $this->plurals[$domain]['function'] = create_function('$n', self::fixTerseIfs($this->plurals[$domain]['code'])); + } + + if ($this->plurals[$domain]['count'] <= 2) { + return (call_user_func($this->plurals[$domain]['function'], $n)) ? 2 : 1; + } + + // We need to +1 because while (GNU) gettext codes assume 0 based, + // this gettext actually stores 1 based. + return (call_user_func($this->plurals[$domain]['function'], $n)) + 1; + } + + /** + * This function will recursively wrap failure states in brackets if they contain a nested terse if + * + * This because PHP can not handle nested terse if's unless they are wrapped in brackets. + * + * This code probably only works for the gettext plural decision codes. + * + * return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2); + * becomes + * return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2)); + * + * @param string $code the terse if string + * @param bool $inner If inner is true we wrap it in brackets + * @return string A formatted terse If that PHP can work with. + */ + private static function fixTerseIfs($code, $inner = false) + { + /** + * (?P[^?]+) Capture everything up to ? as 'expression' + * \? ? + * (?P[^:]+) Capture everything up to : as 'success' + * : : + * (?P[^;]+) Capture everything up to ; as 'failure' + */ + preg_match('/(?P[^?]+)\?(?P[^:]+):(?P[^;]+)/', $code, $matches); + + // If no match was found then no terse if was present + if (!isset($matches[0])) { + return $code; + } + + $expression = $matches['expression']; + $success = $matches['success']; + $failure = $matches['failure']; + + // Go look for another terse if in the failure state. + $failure = self::fixTerseIfs($failure, true); + $code = $expression.' ? '.$success.' : '.$failure; + + if ($inner) { + return "($code)"; + } + + // note the semicolon. We need that for executing the code. + return "$code;"; + } +} diff --git a/Gettext/Utils/FunctionsScanner.php b/Gettext/Utils/FunctionsScanner.php new file mode 100644 index 0000000..7c66fc1 --- /dev/null +++ b/Gettext/Utils/FunctionsScanner.php @@ -0,0 +1,66 @@ +getFunctions() as $function) { + list($name, $line, $args) = $function; + + if (!isset($functions[$name])) { + continue; + } + + switch ($functions[$name]) { + case '__': + if (!isset($args[0])) { + continue 2; + } + $original = $args[0]; + $translation = $translations->find('', $original) ?: $translations->insert('', $original); + break; + + case 'n__': + if (!isset($args[1])) { + continue 2; + } + $original = $args[0]; + $plural = $args[1]; + $translation = $translations->find('', $original, $plural) ?: $translations->insert('', $original, $plural); + break; + + case 'p__': + if (!isset($args[1])) { + continue 2; + } + $context = $args[0]; + $original = $args[1]; + $translation = $translations->find($context, $original) ?: $translations->insert($context, $original); + break; + + default: + throw new Exception('Not valid functions'); + } + + $translation->addReference($file, $line); + } + } +} diff --git a/Gettext/Utils/JsFunctionsScanner.php b/Gettext/Utils/JsFunctionsScanner.php new file mode 100644 index 0000000..f990fad --- /dev/null +++ b/Gettext/Utils/JsFunctionsScanner.php @@ -0,0 +1,191 @@ +code = $code; + } + + /** + * {@inheritDoc} + */ + public function getFunctions() + { + $length = strlen($this->code); + $line = 1; + $buffer = ''; + $functions = array(); + $bufferFunctions = array(); + $char = null; + + for ($pos = 0; $pos < $length; $pos++) { + $prev = $char; + $char = $this->code[$pos]; + $next = isset($this->code[$pos]) ? $this->code[$pos] : null; + + switch ($char) { + case "\n": + ++$line; + + if ($this->status('line-comment')) { + $this->upStatus(); + } + break; + + case "/": + switch ($this->status()) { + case 'simple-quote': + case 'double-quote': + case 'line-comment': + break; + + case 'block-comment': + if ($prev === '*') { + $this->upStatus(); + } + break; + + default: + if ($next === '/') { + $this->downStatus('line-comment'); + } elseif ($next === '*') { + $this->downStatus('block-comment'); + } + break; + } + break; + + case "'": + switch ($this->status()) { + case 'simple-quote': + $this->upStatus(); + break; + + case 'line-comment': + case 'block-comment': + break; + + default: + $this->downStatus('simple-quote'); + break; + } + break; + + case '"': + switch ($this->status()) { + case 'double-quote': + $this->upStatus(); + break; + + case 'line-comment': + case 'block-comment': + break; + + default: + $this->downStatus('double-quote'); + break; + } + break; + + case '(': + switch ($this->status()) { + case 'double-quote': + case 'line-comment': + case 'block-comment': + break; + + default: + if ($buffer && preg_match('/(\w+)$/', $buffer, $matches)) { + $this->downStatus('function'); + array_unshift($bufferFunctions, array($matches[1], $line, array())); + $buffer = ''; + continue 3; + } + break; + } + break; + + case ')': + switch ($this->status()) { + case 'function': + if ($buffer && ($buffer[0] === '"' || $buffer[0] === "'")) { + if ($buffer[0] === '"') { + $buffer = str_replace('\\"', '"', $buffer); + } else { + $buffer = str_replace("\\'", "'", $buffer); + } + + $bufferFunctions[0][2][] = substr($buffer, 1, -1); + } + + if ($bufferFunctions) { + $functions[] = array_shift($bufferFunctions); + } + + $buffer = ''; + continue 3; + } + + case ',': + switch ($this->status()) { + case 'function': + if ($buffer && ($buffer[0] === '"' || $buffer[0] === "'")) { + if ($buffer[0] === '"') { + $buffer = str_replace('\\"', '"', $buffer); + } else { + $buffer = str_replace("\\'", "'", $buffer); + } + + $bufferFunctions[0][2][] = substr($buffer, 1, -1); + } + + $buffer = ''; + continue 3; + } + } + + switch ($this->status()) { + case 'line-comment': + case 'block-comment': + break; + + default: + $buffer .= $char; + break; + } + } + + return $functions; + } + + protected function status($match = null) + { + $status = isset($this->status[0]) ? $this->status[0] : null; + + if ($match) { + return ($status === $match); + } + + return $status; + } + + protected function downStatus($status) + { + array_unshift($this->status, $status); + } + + protected function upStatus() + { + return array_shift($this->status); + } +} diff --git a/Gettext/Utils/PhpFunctionsScanner.php b/Gettext/Utils/PhpFunctionsScanner.php new file mode 100644 index 0000000..780352b --- /dev/null +++ b/Gettext/Utils/PhpFunctionsScanner.php @@ -0,0 +1,64 @@ +tokens = token_get_all($code); + } + + /** + * {@inheritDoc} + */ + public function getFunctions() + { + $count = count($this->tokens); + $bufferFunctions = array(); + $functions = array(); + + for ($k = 0; $k < $count; $k++) { + $value = $this->tokens[$k]; + + //close the current function + if (is_string($value)) { + if ($value === ')' && isset($bufferFunctions[0])) { + $functions[] = array_shift($bufferFunctions); + } + + continue; + } + + //add an argument to the current function + if (isset($bufferFunctions[0]) && ($value[0] === T_CONSTANT_ENCAPSED_STRING)) { + $val = $value[1]; + + if ($val[0] === '"') { + $val = str_replace('\\"', '"', $val); + } else { + $val = str_replace("\\'", "'", $val); + } + + $bufferFunctions[0][2][] = substr($val, 1, -1); + continue; + } + + //new function found + if (($value[0] === T_STRING) && is_string($this->tokens[$k + 1]) && ($this->tokens[$k + 1] === '(')) { + array_unshift($bufferFunctions, array($value[1], $value[2], array())); + $k++; + + continue; + } + } + + return $functions; + } +} diff --git a/Gettext/Utils/StringReader.php b/Gettext/Utils/StringReader.php new file mode 100644 index 0000000..68e8eba --- /dev/null +++ b/Gettext/Utils/StringReader.php @@ -0,0 +1,50 @@ +str = $str; + $this->strlen = strlen($this->str); + } + + /** + * Read and returns a part of the string + * + * @param int $bytes The number of bytes to read + * + * @return string + */ + public function read($bytes) + { + $data = substr($this->str, $this->pos, $bytes); + + $this->seekto($this->pos + $bytes); + + return $data; + } + + /** + * Move the cursor to a specific position + * + * @param int $pos The amount of bytes to move + * + * @return int The new position + */ + public function seekto($pos) + { + $this->pos = ($this->strlen < $pos) ? $this->strlen : $pos; + + return $this->pos; + } +} diff --git a/GettextEmulator.php b/GettextEmulator.php new file mode 100644 index 0000000..a49b0a5 --- /dev/null +++ b/GettextEmulator.php @@ -0,0 +1,173 @@ +locale = $locale; + } + function setlocale($category, $locale) { + if(func_num_args()>2){ + $locale = func_get_args(); + array_shift($locale); + } + if ($locale===0){ + if ($this->CURRENTLOCALE != '') + return $this->CURRENTLOCALE; + else + return $this->setlocale($category, $this->CURRENTLOCALE); + } + else{ + if(function_exists('setlocale')){ + if(is_array($locale)){ + foreach($locale as $lc){ + $ret = setlocale($category,$lc); + if($ret) + break; + } + } + else{ + $ret = setlocale($category, $locale); + } + if(($locale==''&&!$ret) || ($locale!='' && $ret!=$locale)) + $this->CURRENTLOCALE = $locale==''?getenv('LANG'):$locale; + else + $this->CURRENTLOCALE = $ret; + } + if (array_key_exists($this->default_domain, $this->text_domains)) + unset($this->text_domains[$this->default_domain]->l10n); + return $this->CURRENTLOCALE; + } + } + static function get_list_of_locales($locale) { + $locale_names = []; + $lang = NULL; + $country = NULL; + $charset = NULL; + $modifier = NULL; + if ($locale) { + if (preg_match("/^(?P[a-z]{2,3})(?:_(?P[A-Z]{2}))?(?:\.(?P[-A-Za-z0-9_]+))?(?:@(?P[-A-Za-z0-9_]+))?$/",$locale, $matches)){ + if(isset($matches["lang"])) + $lang = $matches["lang"]; + if(isset($matches["country"])) + $country = $matches["country"]; + if(isset($matches["charset"])) + $charset = $matches["charset"]; + if(isset($matches["modifier"])) + $modifier = $matches["modifier"]; + if ($modifier) { + if ($country) { + if ($charset) + array_push($locale_names, "${lang}_$country.$charset@$modifier"); + array_push($locale_names, "${lang}_$country@$modifier"); + } + elseif($charset) + array_push($locale_names, "${lang}.$charset@$modifier"); + array_push($locale_names, "$lang@$modifier"); + } + if ($country) { + if($charset) + array_push($locale_names, "${lang}_$country.$charset"); + array_push($locale_names, "${lang}_$country"); + } + elseif($charset) + array_push($locale_names, "${lang}.$charset"); + array_push($locale_names, $lang); + } + if (!in_array($locale, $locale_names)) + array_push($locale_names, $locale); + } + return $locale_names; + } + protected function getReader($domain=null, $category=5, $enable_cache=false) { + if (!isset($domain)) + $domain = $this->default_domain; + if (!isset($this->text_domains[$domain]->l10n)) { + $locale = $this->setlocale(LC_MESSAGES, 0); + $bound_path = isset($this->text_domains[$domain]->path) ? + $this->text_domains[$domain]->path : './'; + $subpath = $this->LC_CATEGORIES[$category] ."/$domain.mo"; + $locale_names = self::get_list_of_locales($this->locale); + $input = null; + foreach($locale_names as $locale){ + $full_path = $bound_path . $locale . '/' . $subpath; + if(file_exists($full_path)){ + $input = new FileReader($full_path); + break; + } + } + if (!isset($this->text_domains[$domain])) + $this->text_domains[$domain] = new domain(); // Initialize an empty domain object. + $this->text_domains[$domain]->l10n = new gettext_reader($input,$enable_cache); + } + return $this->text_domains[$domain]->l10n; + } + function getCodeset($domain=null){ + if (!isset($domain)) + $domain = $this->default_domain; + return (isset($this->text_domains[$domain]->codeset))? $this->text_domains[$domain]->codeset : ini_get('mbstring.internal_encoding'); + } + function encode($text){ + $source_encoding = mb_detect_encoding($text); + $target_encoding = $this->getCodeset(); + if ($source_encoding != $target_encoding) + return mb_convert_encoding($text, $target_encoding, $source_encoding); + else + return $text; + } + function bindtextdomain($domain, $path){ + if ($path[strlen($path)-1] != '/') + $path .= '/'; + if (!array_key_exists($domain, $this->text_domains)) + $this->text_domains[$domain] = new domain(); + $this->text_domains[$domain]->path = $path; + } + function bind_textdomain_codeset($domain, $codeset){ + $this->text_domains[$domain]->codeset = $codeset; + } + function textdomain($domain){ + $this->default_domain = $domain; + } + function gettext($msgid){ + return $this->encode($this->getReader()->translate($msgid)); + } + function ngettext($singular, $plural, $number){ + return $this->encode($this->getReader()->ngettext($singular, $plural, $number)); + } + function dgettext($domain, $msgid){ + return $this->encode($this->getReader($domain)->translate($msgid)); + } + function dngettext($domain, $singular, $plural, $number){ + return $this->encode($this->getReader($domain)->ngettext($singular, $plural, $number)); + } + function dcgettext($domain, $msgid, $category){ + return $this->encode($this->getReader($domain)->translate($msgid)); + } + function dcngettext($domain, $singular, $plural, $number, $category){ + return $this->encode($this->getReader($domain)->ngettext($singular, $plural, $number)); + } + function pgettext($context, $msgid){ + return $this->encode($this->getReader()->pgettext($context, $msgid)); + } + function dpgettext($domain, $context, $msgid){ + return $this->encode($this->getReader($domain)->pgettext($context, $msgid)); + } + function dcpgettext($domain, $context, $msgid, $category){ + return $this->encode($this->getReader($domain)->pgettext($context, $msgid)); + } + function npgettext($context, $singular, $plural){ + return $this->encode($this->getReader()->npgettext($context, $singular, $plural)); + } + function dnpgettext($domain, $context, $singular, $plural){ + return $this->encode($this->getReader($domain)->npgettext($context, $singular, $plural)); + } + function dcnpgettext($domain, $context, $singular, $plural, $category){ + return $this->encode($this->getReader($domain)->npgettext($context, $singular, $plural)); + } +} \ No newline at end of file diff --git a/Iso/3166.en.php b/Iso/3166.en.php new file mode 100644 index 0000000..67dc03e --- /dev/null +++ b/Iso/3166.en.php @@ -0,0 +1,1501 @@ + [ + 'name' => 'AFGHANISTAN', + 'A2' => 'AF', + 'A3' => 'AFG', + 'number' => '004', + ], + 'AX' => [ + 'name' => 'ALAND ISLANDS', + 'A2' => 'AX', + 'A3' => NULL, + 'number' => NULL, + ], + 'AL' => [ + 'name' => 'ALBANIA', + 'A2' => 'AL', + 'A3' => 'ALB', + 'number' => '008', + ], + 'DZ' => [ + 'name' => 'ALGERIA', + 'A2' => 'DZ', + 'A3' => 'DZA', + 'number' => '012', + ], + 'AS' => [ + 'name' => 'AMERICAN SAMOA', + 'A2' => 'AS', + 'A3' => 'ASM', + 'number' => '016', + ], + 'AD' => [ + 'name' => 'ANDORRA', + 'A2' => 'AD', + 'A3' => 'AND', + 'number' => '020', + ], + 'AO' => [ + 'name' => 'ANGOLA', + 'A2' => 'AO', + 'A3' => 'AGO', + 'number' => '024', + ], + 'AI' => [ + 'name' => 'ANGUILLA', + 'A2' => 'AI', + 'A3' => 'AIA', + 'number' => '660', + ], + 'AQ' => [ + 'name' => 'ANTARCTICA', + 'A2' => 'AQ', + 'A3' => 'ATA', + 'number' => '010', + ], + 'AG' => [ + 'name' => 'ANTIGUA AND BARBUDA', + 'A2' => 'AG', + 'A3' => 'ATG', + 'number' => '028', + ], + 'AR' => [ + 'name' => 'ARGENTINA', + 'A2' => 'AR', + 'A3' => 'ARG', + 'number' => '032', + ], + 'AM' => [ + 'name' => 'ARMENIA', + 'A2' => 'AM', + 'A3' => 'ARM', + 'number' => '051', + ], + 'AW' => [ + 'name' => 'ARUBA', + 'A2' => 'AW', + 'A3' => 'ABW', + 'number' => '533', + ], + 'AU' => [ + 'name' => 'AUSTRALIA', + 'A2' => 'AU', + 'A3' => 'AUS', + 'number' => '036', + ], + 'AT' => [ + 'name' => 'AUSTRIA', + 'A2' => 'AT', + 'A3' => 'AUT', + 'number' => '040', + ], + 'AZ' => [ + 'name' => 'AZERBAIJAN', + 'A2' => 'AZ', + 'A3' => 'AZE', + 'number' => '031', + ], + 'BS' => [ + 'name' => 'BAHAMAS', + 'A2' => 'BS', + 'A3' => 'BHS', + 'number' => '044', + ], + 'BH' => [ + 'name' => 'BAHRAIN', + 'A2' => 'BH', + 'A3' => 'BHR', + 'number' => '048', + ], + 'BD' => [ + 'name' => 'BANGLADESH', + 'A2' => 'BD', + 'A3' => 'BGD', + 'number' => '050', + ], + 'BB' => [ + 'name' => 'BARBADOS', + 'A2' => 'BB', + 'A3' => 'BRB', + 'number' => '052', + ], + 'BY' => [ + 'name' => 'BELARUS', + 'A2' => 'BY', + 'A3' => 'BLR', + 'number' => '112', + ], + 'BE' => [ + 'name' => 'BELGIUM', + 'A2' => 'BE', + 'A3' => 'BEL', + 'number' => '056', + ], + 'BZ' => [ + 'name' => 'BELIZE', + 'A2' => 'BZ', + 'A3' => 'BLZ', + 'number' => '084', + ], + 'BJ' => [ + 'name' => 'BENIN', + 'A2' => 'BJ', + 'A3' => 'BEN', + 'number' => '204', + ], + 'BM' => [ + 'name' => 'BERMUDA', + 'A2' => 'BM', + 'A3' => 'BMU', + 'number' => '060', + ], + 'BT' => [ + 'name' => 'BHUTAN', + 'A2' => 'BT', + 'A3' => 'BTN', + 'number' => '064', + ], + 'BO' => [ + 'name' => 'BOLIVIA', + 'A2' => 'BO', + 'A3' => 'BOL', + 'number' => '068', + ], + 'BA' => [ + 'name' => 'BOSNIA AND HERZEGOWINA', + 'A2' => 'BA', + 'A3' => 'BIH', + 'number' => '070', + ], + 'BW' => [ + 'name' => 'BOTSWANA', + 'A2' => 'BW', + 'A3' => 'BWA', + 'number' => '072', + ], + 'BV' => [ + 'name' => 'BOUVET ISLAND', + 'A2' => 'BV', + 'A3' => 'BVT', + 'number' => '074', + ], + 'BR' => [ + 'name' => 'BRAZIL', + 'A2' => 'BR', + 'A3' => 'BRA', + 'number' => '076', + ], + 'IO' => [ + 'name' => 'BRITISH INDIAN OCEAN TERRITORY', + 'A2' => 'IO', + 'A3' => 'IOT', + 'number' => '086', + ], + 'BN' => [ + 'name' => 'BRUNEI DARUSSALAM', + 'A2' => 'BN', + 'A3' => 'BRN', + 'number' => '096', + ], + 'BG' => [ + 'name' => 'BULGARIA', + 'A2' => 'BG', + 'A3' => 'BGR', + 'number' => '100', + ], + 'BF' => [ + 'name' => 'BURKINA FASO', + 'A2' => 'BF', + 'A3' => 'BFA', + 'number' => '854', + ], + 'BI' => [ + 'name' => 'BURUNDI', + 'A2' => 'BI', + 'A3' => 'BDI', + 'number' => '108', + ], + 'KH' => [ + 'name' => 'CAMBODIA', + 'A2' => 'KH', + 'A3' => 'KHM', + 'number' => '116', + ], + 'CM' => [ + 'name' => 'CAMEROON', + 'A2' => 'CM', + 'A3' => 'CMR', + 'number' => '120', + ], + 'CA' => [ + 'name' => 'CANADA', + 'A2' => 'CA', + 'A3' => 'CAN', + 'number' => '124', + ], + 'CV' => [ + 'name' => 'CAPE VERDE', + 'A2' => 'CV', + 'A3' => 'CPV', + 'number' => '132', + ], + 'KY' => [ + 'name' => 'CAYMAN ISLANDS', + 'A2' => 'KY', + 'A3' => 'CYM', + 'number' => '136', + ], + 'CF' => [ + 'name' => 'CENTRAL AFRICAN REPUBLIC', + 'A2' => 'CF', + 'A3' => 'CAF', + 'number' => '140', + ], + 'TD' => [ + 'name' => 'CHAD', + 'A2' => 'TD', + 'A3' => 'TCD', + 'number' => '148', + ], + 'CL' => [ + 'name' => 'CHILE', + 'A2' => 'CL', + 'A3' => 'CHL', + 'number' => '152', + ], + 'CN' => [ + 'name' => 'CHINA', + 'A2' => 'CN', + 'A3' => 'CHN', + 'number' => '156', + ], + 'CX' => [ + 'name' => 'CHRISTMAS ISLAND', + 'A2' => 'CX', + 'A3' => 'CXR', + 'number' => '162', + ], + 'CC' => [ + 'name' => 'COCOS (KEELING) ISLANDS', + 'A2' => 'CC', + 'A3' => 'CCK', + 'number' => '166', + ], + 'CO' => [ + 'name' => 'COLOMBIA', + 'A2' => 'CO', + 'A3' => 'COL', + 'number' => '170', + ], + 'KM' => [ + 'name' => 'COMOROS', + 'A2' => 'KM', + 'A3' => 'COM', + 'number' => '174', + ], + 'CG' => [ + 'name' => 'CONGO', + 'A2' => 'CG', + 'A3' => 'COG', + 'number' => '178', + ], + 'CD + ' => [ + 'name' => 'CONGO, THE DEMOCRATIC REPUBLIC OF THE', + 'A2' => 'CD + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'CK' => [ + 'name' => 'COOK ISLANDS', + 'A2' => 'CK', + 'A3' => 'COK', + 'number' => '184', + ], + 'CR' => [ + 'name' => 'COSTA RICA', + 'A2' => 'CR', + 'A3' => 'CRI', + 'number' => '188', + ], + 'CI' => [ + 'name' => 'COTE D\'IVOIRE', + 'A2' => 'CI', + 'A3' => 'CIV', + 'number' => '384', + ], + 'HR' => [ + 'name' => 'CROATIA', + 'A2' => 'HR', + 'A3' => 'HRV', + 'number' => '191', + ], + 'CU' => [ + 'name' => 'CUBA', + 'A2' => 'CU', + 'A3' => 'CUB', + 'number' => '192', + ], + 'CY' => [ + 'name' => 'CYPRUS', + 'A2' => 'CY', + 'A3' => 'CYP', + 'number' => '196', + ], + 'CZ' => [ + 'name' => 'CZECH REPUBLIC', + 'A2' => 'CZ', + 'A3' => 'CZE', + 'number' => '203', + ], + 'DK' => [ + 'name' => 'DENMARK', + 'A2' => 'DK', + 'A3' => 'DNK', + 'number' => '208', + ], + 'DJ' => [ + 'name' => 'DJIBOUTI', + 'A2' => 'DJ', + 'A3' => 'DJI', + 'number' => '262', + ], + 'DM' => [ + 'name' => 'DOMINICA', + 'A2' => 'DM', + 'A3' => 'DMA', + 'number' => '212', + ], + 'DO' => [ + 'name' => 'DOMINICAN REPUBLIC', + 'A2' => 'DO', + 'A3' => 'DOM', + 'number' => '214', + ], + 'EC' => [ + 'name' => 'ECUADOR', + 'A2' => 'EC', + 'A3' => 'ECU', + 'number' => '218', + ], + 'EG' => [ + 'name' => 'EGYPT', + 'A2' => 'EG', + 'A3' => 'EGY', + 'number' => '818', + ], + 'SV' => [ + 'name' => 'EL SALVADOR', + 'A2' => 'SV', + 'A3' => 'SLV', + 'number' => '222', + ], + 'GQ' => [ + 'name' => 'EQUATORIAL GUINEA', + 'A2' => 'GQ', + 'A3' => 'GNQ', + 'number' => '226', + ], + 'ER' => [ + 'name' => 'ERITREA', + 'A2' => 'ER', + 'A3' => 'ERI', + 'number' => '232', + ], + 'EE' => [ + 'name' => 'ESTONIA', + 'A2' => 'EE', + 'A3' => 'EST', + 'number' => '233', + ], + 'ET' => [ + 'name' => 'ETHIOPIA', + 'A2' => 'ET', + 'A3' => 'ETH', + 'number' => '231', + ], + 'FK' => [ + 'name' => 'FALKLAND ISLANDS (MALVINAS)', + 'A2' => 'FK', + 'A3' => 'FLK', + 'number' => '238', + ], + 'FO' => [ + 'name' => 'FAROE ISLANDS', + 'A2' => 'FO', + 'A3' => 'FRO', + 'number' => '234', + ], + 'FJ' => [ + 'name' => 'FIJI', + 'A2' => 'FJ', + 'A3' => 'FJI', + 'number' => '242', + ], + 'FI' => [ + 'name' => 'FINLAND', + 'A2' => 'FI', + 'A3' => 'FIN', + 'number' => '246', + ], + 'FR' => [ + 'name' => 'FRANCE', + 'A2' => 'FR', + 'A3' => 'FRA', + 'number' => '250', + ], + 'GF' => [ + 'name' => 'FRENCH GUIANA', + 'A2' => 'GF', + 'A3' => 'GUF', + 'number' => '254', + ], + 'PF' => [ + 'name' => 'FRENCH POLYNESIA', + 'A2' => 'PF', + 'A3' => 'PYF', + 'number' => '258', + ], + 'TF' => [ + 'name' => 'FRENCH SOUTHERN TERRITORIES', + 'A2' => 'TF', + 'A3' => 'ATF', + 'number' => '260', + ], + 'GA' => [ + 'name' => 'GABON', + 'A2' => 'GA', + 'A3' => 'GAB', + 'number' => '266', + ], + 'GM' => [ + 'name' => 'GAMBIA', + 'A2' => 'GM', + 'A3' => 'GMB', + 'number' => '270', + ], + 'GE' => [ + 'name' => 'GEORGIA', + 'A2' => 'GE', + 'A3' => 'GEO', + 'number' => '268', + ], + 'DE' => [ + 'name' => 'GERMANY', + 'A2' => 'DE', + 'A3' => 'DEU', + 'number' => '276', + ], + 'GH' => [ + 'name' => 'GHANA', + 'A2' => 'GH', + 'A3' => 'GHA', + 'number' => '288', + ], + 'GI' => [ + 'name' => 'GIBRALTAR', + 'A2' => 'GI', + 'A3' => 'GIB', + 'number' => '292', + ], + 'GR' => [ + 'name' => 'GREECE', + 'A2' => 'GR', + 'A3' => 'GRC', + 'number' => '300', + ], + 'GL' => [ + 'name' => 'GREENLAND', + 'A2' => 'GL', + 'A3' => 'GRL', + 'number' => '304', + ], + 'GD' => [ + 'name' => 'GRENADA', + 'A2' => 'GD', + 'A3' => 'GRD', + 'number' => '308', + ], + 'GP' => [ + 'name' => 'GUADELOUPE', + 'A2' => 'GP', + 'A3' => 'GLP', + 'number' => '312', + ], + 'GU' => [ + 'name' => 'GUAM', + 'A2' => 'GU', + 'A3' => 'GUM', + 'number' => '316', + ], + 'GT' => [ + 'name' => 'GUATEMALA', + 'A2' => 'GT', + 'A3' => 'GTM', + 'number' => '320', + ], + 'GG + ' => [ + 'name' => 'GUERNSEY', + 'A2' => 'GG + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'GN' => [ + 'name' => 'GUINEA', + 'A2' => 'GN', + 'A3' => 'GIN', + 'number' => '324', + ], + 'GW' => [ + 'name' => 'GUINEA-BISSAU', + 'A2' => 'GW', + 'A3' => 'GNB', + 'number' => '624', + ], + 'GY' => [ + 'name' => 'GUYANA', + 'A2' => 'GY', + 'A3' => 'GUY', + 'number' => '328', + ], + 'HT' => [ + 'name' => 'HAITI', + 'A2' => 'HT', + 'A3' => 'HTI', + 'number' => '332', + ], + 'HM' => [ + 'name' => 'HEARD ISLAND AND MC DONALD ISLANDS', + 'A2' => 'HM', + 'A3' => 'HMD', + 'number' => '334', + ], + 'VA + ' => [ + 'name' => 'HOLY SEE (VATICAN CITY STATE)', + 'A2' => 'VA + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'HN' => [ + 'name' => 'HONDURAS', + 'A2' => 'HN', + 'A3' => 'HND', + 'number' => '340', + ], + 'HK' => [ + 'name' => 'HONG KONG', + 'A2' => 'HK', + 'A3' => 'HKG', + 'number' => '344', + ], + 'HU' => [ + 'name' => 'HUNGARY', + 'A2' => 'HU', + 'A3' => 'HUN', + 'number' => '348', + ], + 'IS' => [ + 'name' => 'ICELAND', + 'A2' => 'IS', + 'A3' => 'ISL', + 'number' => '352', + ], + 'IN' => [ + 'name' => 'INDIA', + 'A2' => 'IN', + 'A3' => 'IND', + 'number' => '356', + ], + 'ID' => [ + 'name' => 'INDONESIA', + 'A2' => 'ID', + 'A3' => 'IDN', + 'number' => '360', + ], + 'IR' => [ + 'name' => 'IRAN (ISLAMIC REPUBLIC OF)', + 'A2' => 'IR', + 'A3' => 'IRN', + 'number' => '364', + ], + 'IQ' => [ + 'name' => 'IRAQ', + 'A2' => 'IQ', + 'A3' => 'IRQ', + 'number' => '368', + ], + 'IE' => [ + 'name' => 'IRELAND', + 'A2' => 'IE', + 'A3' => 'IRL', + 'number' => '372', + ], + 'IM + ' => [ + 'name' => 'ISLE OF MAN', + 'A2' => 'IM + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'IL' => [ + 'name' => 'ISRAEL', + 'A2' => 'IL', + 'A3' => 'ISR', + 'number' => '376', + ], + 'IT' => [ + 'name' => 'ITALY', + 'A2' => 'IT', + 'A3' => 'ITA', + 'number' => '380', + ], + 'JM' => [ + 'name' => 'JAMAICA', + 'A2' => 'JM', + 'A3' => 'JAM', + 'number' => '388', + ], + 'JP' => [ + 'name' => 'JAPAN', + 'A2' => 'JP', + 'A3' => 'JPN', + 'number' => '392', + ], + 'JE + ' => [ + 'name' => 'JERSEY', + 'A2' => 'JE + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'JO' => [ + 'name' => 'JORDAN', + 'A2' => 'JO', + 'A3' => 'JOR', + 'number' => '400', + ], + 'KZ' => [ + 'name' => 'KAZAKHSTAN', + 'A2' => 'KZ', + 'A3' => 'KAZ', + 'number' => '398', + ], + 'KE' => [ + 'name' => 'KENYA', + 'A2' => 'KE', + 'A3' => 'KEN', + 'number' => '404', + ], + 'KI' => [ + 'name' => 'KIRIBATI', + 'A2' => 'KI', + 'A3' => 'KIR', + 'number' => '296', + ], + 'KP' => [ + 'name' => 'KOREA, DEMOCRATIC PEOPLE\'S REPUBLIC OF', + 'A2' => 'KP', + 'A3' => 'PRK', + 'number' => '408', + ], + 'KR' => [ + 'name' => 'KOREA, REPUBLIC OF', + 'A2' => 'KR', + 'A3' => 'KOR', + 'number' => '410', + ], + 'KW' => [ + 'name' => 'KUWAIT', + 'A2' => 'KW', + 'A3' => 'KWT', + 'number' => '414', + ], + 'KG' => [ + 'name' => 'KYRGYZSTAN', + 'A2' => 'KG', + 'A3' => 'KGZ', + 'number' => '417', + ], + 'LA' => [ + 'name' => 'LAO PEOPLE\'S DEMOCRATIC REPUBLIC', + 'A2' => 'LA', + 'A3' => 'LAO', + 'number' => '418', + ], + 'LV' => [ + 'name' => 'LATVIA', + 'A2' => 'LV', + 'A3' => 'LVA', + 'number' => '428', + ], + 'LB' => [ + 'name' => 'LEBANON', + 'A2' => 'LB', + 'A3' => 'LBN', + 'number' => '422', + ], + 'LS' => [ + 'name' => 'LESOTHO', + 'A2' => 'LS', + 'A3' => 'LSO', + 'number' => '426', + ], + 'LR' => [ + 'name' => 'LIBERIA', + 'A2' => 'LR', + 'A3' => 'LBR', + 'number' => '430', + ], + 'LY' => [ + 'name' => 'LIBYAN ARAB JAMAHIRIYA', + 'A2' => 'LY', + 'A3' => 'LBY', + 'number' => '434', + ], + 'LI' => [ + 'name' => 'LIECHTENSTEIN', + 'A2' => 'LI', + 'A3' => 'LIE', + 'number' => '438', + ], + 'LT' => [ + 'name' => 'LITHUANIA', + 'A2' => 'LT', + 'A3' => 'LTU', + 'number' => '440', + ], + 'LU' => [ + 'name' => 'LUXEMBOURG', + 'A2' => 'LU', + 'A3' => 'LUX', + 'number' => '442', + ], + 'MO' => [ + 'name' => 'MACAO', + 'A2' => 'MO', + 'A3' => 'MAC', + 'number' => '446', + ], + 'MK' => [ + 'name' => 'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF', + 'A2' => 'MK', + 'A3' => 'MKD', + 'number' => '807', + ], + 'MG' => [ + 'name' => 'MADAGASCAR', + 'A2' => 'MG', + 'A3' => 'MDG', + 'number' => '450', + ], + 'MW' => [ + 'name' => 'MALAWI', + 'A2' => 'MW', + 'A3' => 'MWI', + 'number' => '454', + ], + 'MY' => [ + 'name' => 'MALAYSIA', + 'A2' => 'MY', + 'A3' => 'MYS', + 'number' => '458', + ], + 'MV' => [ + 'name' => 'MALDIVES', + 'A2' => 'MV', + 'A3' => 'MDV', + 'number' => '462', + ], + 'ML' => [ + 'name' => 'MALI', + 'A2' => 'ML', + 'A3' => 'MLI', + 'number' => '466', + ], + 'MT' => [ + 'name' => 'MALTA', + 'A2' => 'MT', + 'A3' => 'MLT', + 'number' => '470', + ], + 'MH' => [ + 'name' => 'MARSHALL ISLANDS', + 'A2' => 'MH', + 'A3' => 'MHL', + 'number' => '584', + ], + 'MQ' => [ + 'name' => 'MARTINIQUE', + 'A2' => 'MQ', + 'A3' => 'MTQ', + 'number' => '474', + ], + 'MR' => [ + 'name' => 'MAURITANIA', + 'A2' => 'MR', + 'A3' => 'MRT', + 'number' => '478', + ], + 'MU' => [ + 'name' => 'MAURITIUS', + 'A2' => 'MU', + 'A3' => 'MUS', + 'number' => '480', + ], + 'YT' => [ + 'name' => 'MAYOTTE', + 'A2' => 'YT', + 'A3' => 'MYT', + 'number' => '175', + ], + 'MX' => [ + 'name' => 'MEXICO', + 'A2' => 'MX', + 'A3' => 'MEX', + 'number' => '484', + ], + 'FM' => [ + 'name' => 'MICRONESIA, FEDERATED STATES OF', + 'A2' => 'FM', + 'A3' => 'FSM', + 'number' => '583', + ], + 'MD' => [ + 'name' => 'MOLDOVA, REPUBLIC OF', + 'A2' => 'MD', + 'A3' => 'MDA', + 'number' => '498', + ], + 'MC' => [ + 'name' => 'MONACO', + 'A2' => 'MC', + 'A3' => 'MCO', + 'number' => '492', + ], + 'MN' => [ + 'name' => 'MONGOLIA', + 'A2' => 'MN', + 'A3' => 'MNG', + 'number' => '496', + ], + 'ME + ' => [ + 'name' => 'MONTENEGRO', + 'A2' => 'ME + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'MS' => [ + 'name' => 'MONTSERRAT', + 'A2' => 'MS', + 'A3' => 'MSR', + 'number' => '500', + ], + 'MA' => [ + 'name' => 'MOROCCO', + 'A2' => 'MA', + 'A3' => 'MAR', + 'number' => '504', + ], + 'MZ' => [ + 'name' => 'MOZAMBIQUE', + 'A2' => 'MZ', + 'A3' => 'MOZ', + 'number' => '508', + ], + 'MM' => [ + 'name' => 'MYANMAR', + 'A2' => 'MM', + 'A3' => 'MMR', + 'number' => '104', + ], + 'NA' => [ + 'name' => 'NAMIBIA', + 'A2' => 'NA', + 'A3' => 'NAM', + 'number' => '516', + ], + 'NR' => [ + 'name' => 'NAURU', + 'A2' => 'NR', + 'A3' => 'NRU', + 'number' => '520', + ], + 'NP' => [ + 'name' => 'NEPAL', + 'A2' => 'NP', + 'A3' => 'NPL', + 'number' => '524', + ], + 'NL' => [ + 'name' => 'NETHERLANDS', + 'A2' => 'NL', + 'A3' => 'NLD', + 'number' => '528', + ], + 'AN' => [ + 'name' => 'NETHERLANDS ANTILLES', + 'A2' => 'AN', + 'A3' => 'ANT', + 'number' => '530', + ], + 'NC' => [ + 'name' => 'NEW CALEDONIA', + 'A2' => 'NC', + 'A3' => 'NCL', + 'number' => '540', + ], + 'NZ' => [ + 'name' => 'NEW ZEALAND', + 'A2' => 'NZ', + 'A3' => 'NZL', + 'number' => '554', + ], + 'NI' => [ + 'name' => 'NICARAGUA', + 'A2' => 'NI', + 'A3' => 'NIC', + 'number' => '558', + ], + 'NE' => [ + 'name' => 'NIGER', + 'A2' => 'NE', + 'A3' => 'NER', + 'number' => '562', + ], + 'NG' => [ + 'name' => 'NIGERIA', + 'A2' => 'NG', + 'A3' => 'NGA', + 'number' => '566', + ], + 'NU' => [ + 'name' => 'NIUE', + 'A2' => 'NU', + 'A3' => 'NIU', + 'number' => '570', + ], + 'NF' => [ + 'name' => 'NORFOLK ISLAND', + 'A2' => 'NF', + 'A3' => 'NFK', + 'number' => '574', + ], + 'MP' => [ + 'name' => 'NORTHERN MARIANA ISLANDS', + 'A2' => 'MP', + 'A3' => 'MNP', + 'number' => '580', + ], + 'NO' => [ + 'name' => 'NORWAY', + 'A2' => 'NO', + 'A3' => 'NOR', + 'number' => '578', + ], + 'OM' => [ + 'name' => 'OMAN', + 'A2' => 'OM', + 'A3' => 'OMN', + 'number' => '512', + ], + 'PK' => [ + 'name' => 'PAKISTAN', + 'A2' => 'PK', + 'A3' => 'PAK', + 'number' => '586', + ], + 'PW' => [ + 'name' => 'PALAU', + 'A2' => 'PW', + 'A3' => 'PLW', + 'number' => '585', + ], + 'PS + ' => [ + 'name' => 'PALESTINIAN TERRITORY, OCCUPIED', + 'A2' => 'PS + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'PA' => [ + 'name' => 'PANAMA', + 'A2' => 'PA', + 'A3' => 'PAN', + 'number' => '591', + ], + 'PG' => [ + 'name' => 'PAPUA NEW GUINEA', + 'A2' => 'PG', + 'A3' => 'PNG', + 'number' => '598', + ], + 'PY' => [ + 'name' => 'PARAGUAY', + 'A2' => 'PY', + 'A3' => 'PRY', + 'number' => '600', + ], + 'PE' => [ + 'name' => 'PERU', + 'A2' => 'PE', + 'A3' => 'PER', + 'number' => '604', + ], + 'PH' => [ + 'name' => 'PHILIPPINES', + 'A2' => 'PH', + 'A3' => 'PHL', + 'number' => '608', + ], + 'PN' => [ + 'name' => 'PITCAIRN', + 'A2' => 'PN', + 'A3' => 'PCN', + 'number' => '612', + ], + 'PL' => [ + 'name' => 'POLAND', + 'A2' => 'PL', + 'A3' => 'POL', + 'number' => '616', + ], + 'PT' => [ + 'name' => 'PORTUGAL', + 'A2' => 'PT', + 'A3' => 'PRT', + 'number' => '620', + ], + 'PR' => [ + 'name' => 'PUERTO RICO', + 'A2' => 'PR', + 'A3' => 'PRI', + 'number' => '630', + ], + 'QA' => [ + 'name' => 'QATAR', + 'A2' => 'QA', + 'A3' => 'QAT', + 'number' => '634', + ], + 'RE' => [ + 'name' => 'REUNION', + 'A2' => 'RE', + 'A3' => 'REU', + 'number' => '638', + ], + 'RO' => [ + 'name' => 'ROMANIA', + 'A2' => 'RO', + 'A3' => 'ROM', + 'number' => '642', + ], + 'RU' => [ + 'name' => 'RUSSIAN FEDERATION', + 'A2' => 'RU', + 'A3' => 'RUS', + 'number' => '643', + ], + 'RW' => [ + 'name' => 'RWANDA', + 'A2' => 'RW', + 'A3' => 'RWA', + 'number' => '646', + ], + 'EH + ' => [ + 'name' => 'SAHARA OCCIDENTAL', + 'A2' => 'EH + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'BL + ' => [ + 'name' => 'SAINT BARTHELEMY', + 'A2' => 'BL + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'SH' => [ + 'name' => 'SAINT HELENA', + 'A2' => 'SH', + 'A3' => 'SHN', + 'number' => '654 + ', + ], + 'KN' => [ + 'name' => 'SAINT KITTS AND NEVIS', + 'A2' => 'KN', + 'A3' => 'KNA', + 'number' => '659', + ], + 'LC' => [ + 'name' => 'SAINT LUCIA', + 'A2' => 'LC', + 'A3' => 'LCA', + 'number' => '662', + ], + 'PM' => [ + 'name' => 'SAINT PIERRE AND MIQUELON', + 'A2' => 'PM', + 'A3' => 'SPM', + 'number' => '666 + ', + ], + 'VC' => [ + 'name' => 'SAINT VINCENT AND THE GRENADINES', + 'A2' => 'VC', + 'A3' => 'VCT', + 'number' => '670', + ], + 'WS' => [ + 'name' => 'SAMOA', + 'A2' => 'WS', + 'A3' => 'WSM', + 'number' => '882', + ], + 'SM' => [ + 'name' => 'SAN MARINO', + 'A2' => 'SM', + 'A3' => 'SMR', + 'number' => '674', + ], + 'ST' => [ + 'name' => 'SAO TOME AND PRINCIPE', + 'A2' => 'ST', + 'A3' => 'STP', + 'number' => '678', + ], + 'SA' => [ + 'name' => 'SAUDI ARABIA', + 'A2' => 'SA', + 'A3' => 'SAU', + 'number' => '682', + ], + 'SN' => [ + 'name' => 'SENEGAL', + 'A2' => 'SN', + 'A3' => 'SEN', + 'number' => '686', + ], + 'RS + ' => [ + 'name' => 'SERBIA', + 'A2' => 'RS + ', + 'A3' => NULL, + 'number' => NULL, + ], + 'SC' => [ + 'name' => 'SEYCHELLES', + 'A2' => 'SC', + 'A3' => 'SYC', + 'number' => '690', + ], + 'SL' => [ + 'name' => 'SIERRA LEONE', + 'A2' => 'SL', + 'A3' => 'SLE', + 'number' => '694', + ], + 'SG' => [ + 'name' => 'SINGAPORE', + 'A2' => 'SG', + 'A3' => 'SGP', + 'number' => '702', + ], + 'SK' => [ + 'name' => 'SLOVAKIA', + 'A2' => 'SK', + 'A3' => 'SVK', + 'number' => '703', + ], + 'SI' => [ + 'name' => 'SLOVENIA', + 'A2' => 'SI', + 'A3' => 'SVN', + 'number' => '705', + ], + 'SB' => [ + 'name' => 'SOLOMON ISLANDS', + 'A2' => 'SB', + 'A3' => 'SLB', + 'number' => '090', + ], + 'SO' => [ + 'name' => 'SOMALIA', + 'A2' => 'SO', + 'A3' => 'SOM', + 'number' => '706', + ], + 'ZA' => [ + 'name' => 'SOUTH AFRICA', + 'A2' => 'ZA', + 'A3' => 'ZAF', + 'number' => '710', + ], + 'SGS' => [ + 'name' => 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS GS', + 'A2' => 'SGS', + 'A3' => '239', + 'number' => NULL, + ], + 'ES' => [ + 'name' => 'SPAIN', + 'A2' => 'ES', + 'A3' => 'ESP', + 'number' => '724', + ], + 'LK' => [ + 'name' => 'SRI LANKA', + 'A2' => 'LK', + 'A3' => 'LKA', + 'number' => '144', + ], + 'SD' => [ + 'name' => 'SUDAN', + 'A2' => 'SD', + 'A3' => 'SDN', + 'number' => '736', + ], + 'SR' => [ + 'name' => 'SURINAME', + 'A2' => 'SR', + 'A3' => 'SUR', + 'number' => '740', + ], + 'SJ' => [ + 'name' => 'SVALBARD AND JAN MAYEN ISLANDS', + 'A2' => 'SJ', + 'A3' => 'SJM', + 'number' => '744', + ], + 'SZ' => [ + 'name' => 'SWAZILAND', + 'A2' => 'SZ', + 'A3' => 'SWZ', + 'number' => '748', + ], + 'SE' => [ + 'name' => 'SWEDEN', + 'A2' => 'SE', + 'A3' => 'SWE', + 'number' => '752', + ], + 'CH' => [ + 'name' => 'SWITZERLAND', + 'A2' => 'CH', + 'A3' => 'CHE', + 'number' => '756', + ], + 'SY' => [ + 'name' => 'SYRIAN ARAB REPUBLIC', + 'A2' => 'SY', + 'A3' => 'SYR', + 'number' => '760', + ], + 'TW' => [ + 'name' => 'TAIWAN, PROVINCE OF CHINA', + 'A2' => 'TW', + 'A3' => 'TWN', + 'number' => '158', + ], + 'TJ' => [ + 'name' => 'TAJIKISTAN', + 'A2' => 'TJ', + 'A3' => 'TJK', + 'number' => '762', + ], + 'TZ' => [ + 'name' => 'TANZANIA, UNITED REPUBLIC OF', + 'A2' => 'TZ', + 'A3' => 'TZA', + 'number' => '834', + ], + 'TH' => [ + 'name' => 'THAILAND', + 'A2' => 'TH', + 'A3' => 'THA', + 'number' => '764', + ], + 'TG' => [ + 'name' => 'TOGO', + 'A2' => 'TG', + 'A3' => 'TGO', + 'number' => '768', + ], + 'TK' => [ + 'name' => 'TOKELAU', + 'A2' => 'TK', + 'A3' => 'TKL', + 'number' => '772', + ], + 'TO' => [ + 'name' => 'TONGA', + 'A2' => 'TO', + 'A3' => 'TON', + 'number' => '776', + ], + 'TT' => [ + 'name' => 'TRINIDAD AND TOBAGO', + 'A2' => 'TT', + 'A3' => 'TTO', + 'number' => '780', + ], + 'TN' => [ + 'name' => 'TUNISIA', + 'A2' => 'TN', + 'A3' => 'TUN', + 'number' => '788', + ], + 'TR' => [ + 'name' => 'TURKEY', + 'A2' => 'TR', + 'A3' => 'TUR', + 'number' => '792', + ], + 'TM' => [ + 'name' => 'TURKMENISTAN', + 'A2' => 'TM', + 'A3' => 'TKM', + 'number' => '795', + ], + 'TC' => [ + 'name' => 'TURKS AND CAICOS ISLANDS', + 'A2' => 'TC', + 'A3' => 'TCA', + 'number' => '796', + ], + 'TV' => [ + 'name' => 'TUVALU', + 'A2' => 'TV', + 'A3' => 'TUV', + 'number' => '798', + ], + 'UG' => [ + 'name' => 'UGANDA', + 'A2' => 'UG', + 'A3' => 'UGA', + 'number' => '800', + ], + 'UA' => [ + 'name' => 'UKRAINE', + 'A2' => 'UA', + 'A3' => 'UKR', + 'number' => '804', + ], + 'AE' => [ + 'name' => 'UNITED ARAB EMIRATES', + 'A2' => 'AE', + 'A3' => 'ARE', + 'number' => '784', + ], + 'GB' => [ + 'name' => 'UNITED KINGDOM', + 'A2' => 'GB', + 'A3' => 'GBR', + 'number' => '826', + ], + 'US' => [ + 'name' => 'UNITED STATES', + 'A2' => 'US', + 'A3' => 'USA', + 'number' => '840', + ], + 'UM' => [ + 'name' => 'UNITED STATES MINOR OUTLYING ISLANDS', + 'A2' => 'UM', + 'A3' => 'UMI', + 'number' => '581', + ], + 'UY' => [ + 'name' => 'URUGUAY', + 'A2' => 'UY', + 'A3' => 'URY', + 'number' => '858', + ], + 'UZ' => [ + 'name' => 'UZBEKISTAN', + 'A2' => 'UZ', + 'A3' => 'UZB', + 'number' => '860', + ], + 'VU' => [ + 'name' => 'VANUATU', + 'A2' => 'VU', + 'A3' => 'VUT', + 'number' => '548', + ], + 'VA' => [ + 'name' => 'VATICAN CITY STATE (HOLY SEE)', + 'A2' => 'VA', + 'A3' => 'VAT', + 'number' => '336', + ], + 'VE' => [ + 'name' => 'VENEZUELA', + 'A2' => 'VE', + 'A3' => 'VEN', + 'number' => '862', + ], + 'VN' => [ + 'name' => 'VIET NAM', + 'A2' => 'VN', + 'A3' => 'VNM', + 'number' => '704', + ], + 'VG' => [ + 'name' => 'VIRGIN ISLANDS (BRITISH)', + 'A2' => 'VG', + 'A3' => 'VGB', + 'number' => '092', + ], + 'VI' => [ + 'name' => 'VIRGIN ISLANDS (U.S.)', + 'A2' => 'VI', + 'A3' => 'VIR', + 'number' => '850', + ], + 'WF' => [ + 'name' => 'WALLIS AND FUTUNA ISLANDS', + 'A2' => 'WF', + 'A3' => 'WLF', + 'number' => '876', + ], + 'EH' => [ + 'name' => 'WESTERN SAHARA', + 'A2' => 'EH', + 'A3' => 'ESH', + 'number' => '732', + ], + 'YE' => [ + 'name' => 'YEMEN', + 'A2' => 'YE', + 'A3' => 'YEM', + 'number' => '887', + ], + 'ZM' => [ + 'name' => 'ZAMBIA', + 'A2' => 'ZM', + 'A3' => 'ZMB', + 'number' => '894', + ], + 'ZW' => [ + 'name' => 'ZIMBABWE', + 'A2' => 'ZW', + 'A3' => 'ZWE', + 'number' => '716', + ], +]; \ No newline at end of file diff --git a/Iso/639.en.php b/Iso/639.en.php new file mode 100644 index 0000000..fca8ca2 --- /dev/null +++ b/Iso/639.en.php @@ -0,0 +1,188 @@ +"Afar", + "ab"=>"Abkhazian", + "ae"=>"Avestan", + "af"=>"Afrikaans", + "ak"=>"Akan", + "am"=>"Amharic", + "an"=>"Aragonese", + "ar"=>"Arabic", + "as"=>"Assamese", + "av"=>"Avaric", + "ay"=>"Aymara", + "az"=>"Azerbaijani", + "ba"=>"Bashkir", + "be"=>"Belarusian", + "bg"=>"Bulgarian", + "bh"=>"Bihari", + "bi"=>"Bislama", + "bm"=>"Bambara", + "bn"=>"Bengali", + "bo"=>"Tibetan", + "br"=>"Breton", + "bs"=>"Bosnian", + "ca"=>"Catalan", + "ce"=>"Chechen", + "ch"=>"Chamorro", + "co"=>"Corsican", + "cr"=>"Cree", + "cs"=>"Czech", + "cu"=>"Old Church Slavonic", + "cv"=>"Chuvash", + "cy"=>"Welsh", + "da"=>"Danish", + "de"=>"German", + "dv"=>"Divehi", + "dz"=>"Dzongkha", + "ee"=>"Ewe", + "el"=>"Greek", + "en"=>"English", + "eo"=>"Esperanto", + "es"=>"Spanish", + "et"=>"Estonian", + "eu"=>"Basque", + "fa"=>"Persian", + "ff"=>"Fulah", + "fi"=>"Finnish", + "fj"=>"Fijian", + "fo"=>"Faroese", + "fr"=>"French", + "fy"=>"Western Frisian", + "ga"=>"Irish", + "gd"=>"Scottish Gaelic", + "gl"=>"Galician", + "gn"=>"Guarani", + "gu"=>"Gujarati", + "gv"=>"Manx", + "ha"=>"Hausa", + "he"=>"Hebrew", + "hi"=>"Hindi", + "ho"=>"Hiri Motu", + "hr"=>"Croatian", + "ht"=>"Haitian", + "hu"=>"Hungarian", + "hy"=>"Armenian", + "hz"=>"Herero", + "ia"=>"Interlingua", + "id"=>"Indonesian", + "ie"=>"Interlingue", + "ig"=>"Igbo", + "ii"=>"Sichuan Yi", + "ik"=>"Inupiaq", + "io"=>"Ido", + "is"=>"Icelandic", + "it"=>"Italian", + "iu"=>"Inuktitut", + "ja"=>"Japanese", + "jv"=>"Javanese", + "ka"=>"Georgian", + "kg"=>"Kongo", + "ki"=>"Kikuyu", + "kj"=>"Kwanyama", + "kk"=>"Kazakh", + "kl"=>"Kalaallisut", + "km"=>"Khmer", + "kn"=>"Kannada", + "ko"=>"Korean", + "kr"=>"Kanuri", + "ks"=>"Kashmiri", + "ku"=>"Kurdish", + "kv"=>"Komi", + "kw"=>"Cornish", + "ky"=>"Kirghiz", + "la"=>"Latin", + "lb"=>"Luxembourgish", + "lg"=>"Ganda", + "li"=>"Limburgish", + "ln"=>"Lingala", + "lo"=>"Lao", + "lt"=>"Lithuanian", + "lu"=>"Luba-Katanga", + "lv"=>"Latvian", + "mg"=>"Malagasy", + "mh"=>"Marshallese", + "mi"=>"Māori", + "mk"=>"Macedonian", + "ml"=>"Malayalam", + "mn"=>"Mongolian", + "mo"=>"Moldavian", + "mr"=>"Marathi", + "ms"=>"Malay", + "mt"=>"Maltese", + "my"=>"Burmese", + "na"=>"Nauru", + "nb"=>"Norwegian Bokmål", + "nd"=>"North Ndebele", + "ne"=>"Nepali", + "ng"=>"Ndonga", + "nl"=>"Dutch", + "nn"=>"Norwegian Nynorsk", + "no"=>"Norwegian", + "nr"=>"South Ndebele", + "nv"=>"Navajo", + "ny"=>"Chichewa", + "oc"=>"Occitan", + "oj"=>"Ojibwa", + "om"=>"Oromo", + "or"=>"Oriya", + "os"=>"Ossetian", + "pa"=>"Panjabi", + "pi"=>"Pāli", + "pl"=>"Polish", + "ps"=>"Pashto", + "pt"=>"Portuguese", + "qu"=>"Quechua", + "rm"=>"Romansh", + "rn"=>"Kirundi", + "ro"=>"Romanian", + "ru"=>"Russian", + "rw"=>"Kinyarwanda", + "sa"=>"Sanskrit", + "sc"=>"Sardinian", + "sd"=>"Sindhi", + "se"=>"Northern Sami", + "sg"=>"Sango", + "si"=>"Sinhalese", + "sk"=>"Slovak", + "sl"=>"Slovene", + "sm"=>"Samoan", + "sn"=>"Shona", + "so"=>"Somali", + "sq"=>"Albanian", + "sr"=>"Serbian", + "ss"=>"Swati", + "st"=>"Sotho", + "su"=>"Sundanese", + "sv"=>"Swedish", + "sw"=>"Swahili", + "ta"=>"Tamil", + "te"=>"Telugu", + "tg"=>"Tajik", + "th"=>"Thai", + "ti"=>"Tigrinya", + "tk"=>"Turkmen", + "tl"=>"Tagalog", + "tn"=>"Tswana", + "to"=>"Tonga", + "tr"=>"Turkish", + "ts"=>"Tsonga", + "tt"=>"Tatar", + "tw"=>"Twi", + "ty"=>"Tahitian", + "ug"=>"Uighur", + "uk"=>"Ukrainian", + "ur"=>"Urdu", + "uz"=>"Uzbek", + "ve"=>"Venda", + "vi"=>"Viêt Namese", + "vo"=>"Volapük", + "wa"=>"Walloon", + "wo"=>"Wolof", + "xh"=>"Xhosa", + "yi"=>"Yiddish", + "yo"=>"Yoruba", + "za"=>"Zhuang", + "zh"=>"Chinese", + "zu"=>"Zulu" +]; \ No newline at end of file diff --git a/Iso/639.fr.php b/Iso/639.fr.php new file mode 100644 index 0000000..771c964 --- /dev/null +++ b/Iso/639.fr.php @@ -0,0 +1,188 @@ +"Afar", + "ab"=>"Abkhaze", + "ae"=>"Avestique", + "af"=>"Afrikaans", + "ak"=>"Akan", + "am"=>"Amharique", + "an"=>"Aragonais", + "ar"=>"Arabe", + "as"=>"Assamais", + "av"=>"Avar", + "ay"=>"Aymara", + "az"=>"Azéri", + "ba"=>"Bachkir", + "be"=>"Biélorusse", + "bg"=>"Bulgare", + "bh"=>"Bihari", + "bi"=>"Bichelamar", + "bm"=>"Bambara", + "bn"=>"Bengalî", + "bo"=>"Tibétain", + "br"=>"Breton", + "bs"=>"Bosnien", + "ca"=>"Catalan", + "ce"=>"Tchétchène", + "ch"=>"Chamorro", + "co"=>"Corse", + "cr"=>"Cri", + "cs"=>"Tchèque", + "cu"=>"Vieux slave", + "cv"=>"Tchouvache", + "cy"=>"Gallois", + "da"=>"Danois", + "de"=>"Allemand", + "dv"=>"Dhivehi", + "dz"=>"Dzongkha", + "ee"=>"Ewe", + "el"=>"Grec moderne", + "en"=>"Anglais", + "eo"=>"Espéranto", + "es"=>"Espagnol", + "et"=>"Estonien", + "eu"=>"Basque", + "fa"=>"Persan", + "ff"=>"Peul", + "fi"=>"Finnois", + "fj"=>"Fidjien", + "fo"=>"Féringien", + "fr"=>"Français", + "fy"=>"Frison", + "ga"=>"Irlandais", + "gd"=>"Écossais", + "gl"=>"Galicien", + "gn"=>"Guarani", + "gu"=>"Gujarâtî", + "gv"=>"Mannois", + "ha"=>"Haoussa", + "he"=>"Hébreu", + "hi"=>"Hindî", + "ho"=>"Hiri motu", + "hr"=>"Croate", + "ht"=>"Créole haïtien", + "hu"=>"Hongrois", + "hy"=>"Arménien", + "hz"=>"Héréro", + "ia"=>"Interlingua", + "id"=>"Indonésien", + "ie"=>"Occidental", + "ig"=>"Igbo", + "ii"=>"Yi", + "ik"=>"Inupiaq", + "io"=>"Ido", + "is"=>"Islandais", + "it"=>"Italien", + "iu"=>"Inuktitut", + "ja"=>"Japonais", + "jv"=>"Javanais", + "ka"=>"Géorgien", + "kg"=>"Kikongo", + "ki"=>"Kikuyu", + "kj"=>"Kuanyama", + "kk"=>"Kazakh", + "kl"=>"Kalaallisut", + "km"=>"Khmer", + "kn"=>"Kannara", + "ko"=>"Coréen", + "kr"=>"Kanouri", + "ks"=>"Kashmiri", + "ku"=>"Kurde", + "kv"=>"Komi", + "kw"=>"Cornique", + "ky"=>"Kirghiz", + "la"=>"Latin", + "lb"=>"Luxembourgeois", + "lg"=>"Ganda", + "li"=>"Limbourgeois", + "ln"=>"Lingala", + "lo"=>"Lao", + "lt"=>"Lituanien", + "lu"=>"Luba-katanga", + "lv"=>"Letton", + "mg"=>"Malgache", + "mh"=>"Marshallais", + "mi"=>"Maori de Nouvelle-Zélande", + "mk"=>"Macédonien", + "ml"=>"Malayalam", + "mn"=>"Mongol", + "mo"=>"Moldave", + "mr"=>"Marâthî", + "ms"=>"Malais", + "mt"=>"Maltais", + "my"=>"Birman", + "na"=>"Nauruan", + "nb"=>"Norvégien Bokmål", + "nd"=>"Ndébélé du Nord", + "ne"=>"Népalais", + "ng"=>"Ndonga", + "nl"=>"Néerlandais", + "nn"=>"Norvégien Nynorsk", + "no"=>"Norvégien", + "nr"=>"Ndébélé du Sud", + "nv"=>"Navajo", + "ny"=>"Chichewa", + "oc"=>"Occitan", + "oj"=>"Ojibwé", + "om"=>"Oromo", + "or"=>"Oriya", + "os"=>"Ossète", + "pa"=>"Panjâbî", + "pi"=>"Pâli", + "pl"=>"Polonais", + "ps"=>"Pachto", + "pt"=>"Portugais", + "qu"=>"Quechua", + "rm"=>"Romanche", + "rn"=>"Kirundi", + "ro"=>"Roumain", + "ru"=>"Russe", + "rw"=>"Kinyarwanda", + "sa"=>"Sanskrit", + "sc"=>"Sarde", + "sd"=>"Sindhi", + "se"=>"Same du Nord", + "sg"=>"Sango", + "si"=>"Cingalais", + "sk"=>"Slovaque", + "sl"=>"Slovène", + "sm"=>"Samoan", + "sn"=>"Shona", + "so"=>"Somali", + "sq"=>"Albanais", + "sr"=>"Serbe", + "ss"=>"Siswati", + "st"=>"Sotho du Sud", + "su"=>"Soundanais", + "sv"=>"Suédois", + "sw"=>"Swahili", + "ta"=>"Tamoul", + "te"=>"Télougou", + "tg"=>"Tadjik", + "th"=>"Thaï", + "ti"=>"Tigrinya", + "tk"=>"Turkmène", + "tl"=>"Tagalog", + "tn"=>"Tswana", + "to"=>"Tongien", + "tr"=>"Turc", + "ts"=>"Tsonga", + "tt"=>"Tatar", + "tw"=>"Twi", + "ty"=>"Tahitien", + "ug"=>"Ouïghour", + "uk"=>"Ukrainien", + "ur"=>"Ourdou", + "uz"=>"Ouzbek", + "ve"=>"Venda", + "vi"=>"Vietnamien", + "vo"=>"Volapük", + "wa"=>"Wallon", + "wo"=>"Wolof", + "xh"=>"Xhosa", + "yi"=>"Yiddish", + "yo"=>"Yoruba", + "za"=>"Zhuang", + "zh"=>"Chinois", + "zu"=>"Zoulou" +]; \ No newline at end of file diff --git a/Iso/639.php b/Iso/639.php new file mode 100644 index 0000000..36d293b --- /dev/null +++ b/Iso/639.php @@ -0,0 +1,188 @@ +"Afaraf", + "ab"=>"Аҧсуа", + "ae"=>"Avesta", + "af"=>"Afrikaans", + "ak"=>"Akan", + "am"=>"አማርኛ", + "an"=>"Aragonés", + "ar"=>"‫العربية", + "as"=>"অসমীয়া", + "av"=>"авар мацӀ", + "ay"=>"Aymar aru", + "az"=>"Azərbaycan dili", + "ba"=>"башҡорт теле", + "be"=>"Беларуская", + "bg"=>"български език", + "bh"=>"भोजपुरी", + "bi"=>"Bislama", + "bm"=>"Bamanankan", + "bn"=>"বাংলা", + "bo"=>"བོད་ཡིག", + "br"=>"Brezhoneg", + "bs"=>"Bosanski jezik", + "ca"=>"Català", + "ce"=>"нохчийн мотт", + "ch"=>"Chamoru", + "co"=>"Corsu", + "cr"=>"ᓀᐦᐃᔭᐍᐏᐣ", + "cs"=>"Česky", + "cu"=>"Словѣньскъ", + "cv"=>"чӑваш чӗлхи", + "cy"=>"Cymraeg", + "da"=>"Dansk", + "de"=>"Deutsch", + "dv"=>"‫ދިވެހި", + "dz"=>"རྫོང་ཁ", + "ee"=>"Ɛʋɛgbɛ", + "el"=>"Ελληνικά", + "en"=>"English", + "eo"=>"Esperanto", + "es"=>"Español", + "et"=>"Eesti keel", + "eu"=>"Euskara", + "fa"=>"‫فارسی", + "ff"=>"Fulfulde", + "fi"=>"Suomen kieli", + "fj"=>"Vosa Vakaviti", + "fo"=>"Føroyskt", + "fr"=>"Français", + "fy"=>"Frysk", + "ga"=>"Gaeilge", + "gd"=>"Gàidhlig", + "gl"=>"Galego", + "gn"=>"Avañe'ẽ", + "gu"=>"ગુજરાતી", + "gv"=>"Ghaelg", + "ha"=>"‫هَوُسَ", + "he"=>"‫עברית", + "hi"=>"हिन्दी", + "ho"=>"Hiri Motu", + "hr"=>"Hrvatski", + "ht"=>"Kreyòl ayisyen", + "hu"=>"magyar", + "hy"=>"Հայերեն", + "hz"=>"Otjiherero", + "ia"=>"Interlingua", + "id"=>"Bahasa Indonesia", + "ie"=>"Interlingue", + "ig"=>"Igbo", + "ii"=>"ꆇꉙ", + "ik"=>"Iñupiaq", + "io"=>"Ido", + "is"=>"Íslenska", + "it"=>"Italiano", + "iu"=>"ᐃᓄᒃᑎᑐᑦ", + "ja"=>"日本語 (にほんご)", + "jv"=>"Basa Jawa", + "ka"=>"ქართული", + "kg"=>"KiKongo", + "ki"=>"Gĩkũyũ", + "kj"=>"Kuanyama", + "kk"=>"Қазақ тілі", + "kl"=>"Kalaallisut", + "km"=>"ភាសាខ្មែរ", + "kn"=>"ಕನ್ನಡ", + "ko"=>"한국어 (韓國語)", + "kr"=>"Kanuri", + "ks"=>"कश्मीरी", + "ku"=>"Kurdî", + "kv"=>"коми кыв", + "kw"=>"Kernewek", + "ky"=>"кыргыз тили", + "la"=>"Latine", + "lb"=>"Lëtzebuergesch", + "lg"=>"Luganda", + "li"=>"Limburgs", + "ln"=>"Lingála", + "lo"=>"ພາສາລາວ", + "lt"=>"Lietuvių kalba", + "lu"=>"kiluba", + "lv"=>"Latviešu valoda", + "mg"=>"Fiteny malagasy", + "mh"=>"Kajin M̧ajeļ", + "mi"=>"Te reo Māori", + "mk"=>"македонски јазик", + "ml"=>"മലയാളം", + "mn"=>"Монгол", + "mo"=>"лимба молдовеняскэ", + "mr"=>"मराठी", + "ms"=>"Bahasa Melayu", + "mt"=>"Malti", + "my"=>"ဗမာစာ", + "na"=>"Ekakairũ Naoero", + "nb"=>"Norsk bokmål", + "nd"=>"isiNdebele", + "ne"=>"नेपाली", + "ng"=>"Owambo", + "nl"=>"Nederlands", + "nn"=>"Norsk nynorsk", + "no"=>"Norsk", + "nr"=>"Ndébélé", + "nv"=>"Diné bizaad", + "ny"=>"ChiCheŵa", + "oc"=>"Occitan", + "oj"=>"ᐊᓂᔑᓈᐯᒧᐎᓐ", + "om"=>"Afaan Oromoo", + "or"=>"ଓଡ଼ିଆ", + "os"=>"Ирон æвзаг", + "pa"=>"ਪੰਜਾਬੀ", + "pi"=>"पािऴ", + "pl"=>"Polski", + "ps"=>"‫پښتو", + "pt"=>"Português", + "qu"=>"Runa Simi", + "rm"=>"Rumantsch grischun", + "rn"=>"kiRundi", + "ro"=>"Română", + "ru"=>"русский язык", + "rw"=>"Kinyarwanda", + "sa"=>"संस्कृतम्", + "sc"=>"sardu", + "sd"=>"सिन्धी", + "se"=>"Davvisámegiella", + "sg"=>"Yângâ tî sängö", + "si"=>"සිංහල", + "sk"=>"Slovenčina", + "sl"=>"Slovenščina", + "sm"=>"Gagana fa'a Samoa", + "sn"=>"chiShona", + "so"=>"Soomaaliga", + "sq"=>"Shqip", + "sr"=>"српски језик", + "ss"=>"SiSwati", + "st"=>"seSotho", + "su"=>"Basa Sunda", + "sv"=>"Svenska", + "sw"=>"Kiswahili", + "ta"=>"தமிழ்", + "te"=>"తెలుగు", + "tg"=>"тоҷикӣ", + "th"=>"ไทย", + "ti"=>"ትግርኛ", + "tk"=>"Türkmen", + "tl"=>"Tagalog", + "tn"=>"seTswana", + "to"=>"faka Tonga", + "tr"=>"Türkçe", + "ts"=>"xiTsonga", + "tt"=>"татарча", + "tw"=>"Twi", + "ty"=>"Reo Mā`ohi", + "ug"=>"Uyƣurqə", + "uk"=>"українська мова", + "ur"=>"‫اردو", + "uz"=>"O'zbek", + "ve"=>"tshiVenḓa", + "vi"=>"Tiếng Việt", + "vo"=>"Volapük", + "wa"=>"Walon", + "wo"=>"Wollof", + "xh"=>"isiXhosa", + "yi"=>"‫ייִדיש", + "yo"=>"Yorùbá", + "za"=>"Saɯ cueŋƅ", + "zh"=>"中文, 汉语, 漢語", + "zu"=>"isiZulu" +]; \ No newline at end of file diff --git a/Punic/Calendar.php b/Punic/Calendar.php new file mode 100644 index 0000000..0dd02e5 --- /dev/null +++ b/Punic/Calendar.php @@ -0,0 +1,1721 @@ +\DateTime instance or a string accepted by {@link http://php.net/manual/function.strtotime.php strtotime}. + * @param string|\DateTimeZone $toTimezone The timezone to set; leave empty to use the value of $fromTimezone (if it's empty we'll use the default timezone or the timezone associated to $value if it's already a \DateTime). + * @param string|\DateTimeZone $fromTimezone The original timezone of $value; leave empty to use the default timezone (or the timezone associated to $value if it's already a \DateTime). + * @return \DateTime|null Returns null if $value is empty, a \DateTime instance otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws an exception if $value is not empty and can't be converted to a \DateTime instance or if $toTimezone is not empty and is not valid. + * @example + * Convert a Unix timestamp to a \DateTime instance with the current time zone:
+ * \Wild\Localize\Punic\Calendar::toDateTime(1409648286);
+ *
+ * Convert a Unix timestamp to a \DateTime instance with a specific time zone:
+ * \Wild\Localize\Punic\Calendar::toDateTime(1409648286, 'Europe/Rome');
+ * \Wild\Localize\Punic\Calendar::toDateTime(1409648286, new \DateTimeZone('Europe/Rome'));
+ *
+ * Convert a string to a \DateTime instance with the current time zone:
+ * \Wild\Localize\Punic\Calendar::toDateTime('2014-03-07 13:30');
+ *
+ * Convert a string to a \DateTime instance with a specific time zone:
+ * \Wild\Localize\Punic\Calendar::toDateTime('2014-03-07 13:30', 'Europe/Rome');
+ * Please remark that in this case '2014-03-07 13:30' is converted to a \DateTime instance with the current timezone, and after we change the timezone.
+ * So, if your system default timezone is 'America/Los_Angeles' (GMT -8), the resulting date/time will be '2014-03-07 22:30 GMT+1' since it'll be converted to 'Europe/Rome' (GMT +1) + */ + public static function toDateTime($value, $toTimezone = '', $fromTimezone = '') + { + $result = null; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $tzFrom = null; + if (!empty($fromTimezone)) { + if (is_string($fromTimezone)) { + try { + $tzFrom = new \DateTimeZone($fromTimezone); + } catch (\Exception $x) { + throw new Exception\BadArgumentType($fromTimezone, '\\DateTimeZone', $x); + } + } elseif (is_a($fromTimezone, '\DateTimeZone')) { + $tzFrom = $fromTimezone; + } else { + throw new Exception\BadArgumentType($fromTimezone, '\\DateTimeZone'); + } + } + if (is_int($value) || is_float($value)) { + $result = new \DateTime(); + $result->setTimestamp($value); + if (!is_null($tzFrom)) { + $result->setTimezone($tzFrom); + } + } elseif ($value instanceof \DateTime) { + $result = clone $value; + if (!is_null($tzFrom)) { + $result->setTimezone($tzFrom); + } + } elseif (is_string($value)) { + if (is_numeric($value)) { + $result = new \DateTime(); + $result->setTimestamp($value); + if (!is_null($tzFrom)) { + $result->setTimezone($tzFrom); + } + } else { + try { + if (is_null($tzFrom)) { + $result = new \DateTime($value); + } else { + $result = new \DateTime($value, $tzFrom); + } + } catch (\Exception $x) { + throw new Exception\BadArgumentType($value, '\\DateTime', $x); + } + } + } else { + throw new Exception\BadArgumentType($value, '\\DateTime'); + } + if ($result) { + if (!empty($toTimezone)) { + if (is_string($toTimezone)) { + try { + $result->setTimezone(new \DateTimeZone($toTimezone)); + } catch (\Exception $x) { + throw new Exception\BadArgumentType($toTimezone, '\\DateTimeZone', $x); + } + } elseif (is_a($toTimezone, '\DateTimeZone')) { + $result->setTimezone($toTimezone); + } else { + throw new Exception\BadArgumentType($toTimezone, '\\DateTimeZone'); + } + } + } + } + + return $result; + } + + /** + * Converts a format string from {@link http://php.net/manual/en/function.date.php#refsect1-function.date-parameters PHP's date format} to {@link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table ISO format}. + * @param string $format The PHP date/time format string to convert. + * @return string Returns the ISO date/time format corresponding to the specified PHP date/time format. + */ + public static function convertPhpToIsoFormat($format) + { + static $cache = array(); + static $convert = array( + 'd' => 'dd' , 'D' => 'EE' , 'j' => 'd' , 'l' => 'EEEE', + 'N' => 'eee' , 'S' => 'SS' , 'w' => 'e' , 'z' => 'D' , + 'W' => 'ww' , 'F' => 'MMMM', 'm' => 'MM' , 'M' => 'MMM' , + 'n' => 'M' , 't' => 'ddd' , 'L' => 'l' , 'o' => 'YYYY', + 'Y' => 'yyyy', 'y' => 'yy' , 'a' => 'a' , 'A' => 'a' , + 'B' => 'B' , 'g' => 'h' , 'G' => 'H' , 'h' => 'hh' , + 'H' => 'HH' , 'i' => 'mm' , 's' => 'ss' , 'e' => 'zzzz', + 'I' => 'I' , 'O' => 'Z' , 'P' => 'ZZZZ', 'T' => 'z' , + 'Z' => 'X' , 'c' => 'yyyy-MM-ddTHH:mm:ssZZZZ', 'r' => 'r', + 'U' => 'U', + ); + if (!is_string($format)) { + return ''; + } + if (!array_key_exists($format, $cache)) { + $escaped = false; + $inEscapedString = false; + $converted = array(); + foreach (str_split($format) as $char) { + if (!$escaped && $char == '\\') { + // Next char will be escaped: let's remember it + $escaped = true; + } elseif ($escaped) { + if (!$inEscapedString) { + // First escaped string: start the quoted chunk + $converted[] = "'"; + $inEscapedString = true; + } + // Since the previous char was a \ and we are in the quoted + // chunk, let's simply add $char as it is + $converted[] = $char; + $escaped = false; + } elseif ($char == "'") { + // Single quotes need to be escaped like this + $converted[] = "''"; + } else { + if ($inEscapedString) { + // Close the single-quoted chunk + $converted[] = "'"; + $inEscapedString = false; + } + // Convert the unescaped char if needed + if (isset($convert[$char])) { + $converted[] = $convert[$char]; + } else { + $converted[] = $char; + } + } + } + $cache[$format] = implode($converted); + } + + return $cache[$format]; + } + + /** + * Get the name of an era. + * @param number|\DateTime $value The year number or the \DateTime instance for which you want the name of the era. + * @param string $width = 'abbreviated' The format name; it can be 'wide' (eg 'Before Christ'), 'abbreviated' (eg 'BC') or 'narrow' (eg 'B'). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @return string Returns an empty string if $value is empty, the name of the era otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws a BadArgumentType exception if $value is not valid. + * @throws \Wild\Localize\Punic\Exception\ValueNotInList Throws a ValueNotInList exception if $width is not valid. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of other problems (for instance if you specify an invalid locale). + */ + public static function getEraName($value, $width = 'abbreviated', $locale = '') + { + $result = ''; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $year = null; + if (is_int($value)) { + $year = $value; + } elseif (is_float($value)) { + $year = intval($value); + } elseif (is_string($value)) { + if (is_numeric($value)) { + $year = intval($value); + } + } elseif (is_a($value, '\DateTime')) { + $year = intval($value->format('Y')); + } + if (is_null($year)) { + throw new Exception\BadArgumentType($value, 'year number'); + } + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['eras']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + $result = $data[$width][($year < 0) ? '0' : '1']; + } + + return $result; + } + + /** + * Get the name of a month. + * @param number|\DateTime $value The month number (1-12) or a \DateTime instance for which you want the name of the month. + * @param string $width = 'wide' The format name; it can be 'wide' (eg 'January'), 'abbreviated' (eg 'Jan') or 'narrow' (eg 'J'). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @param bool $standAlone = false Set to true to return the form used independently (such as in calendar header), set to false if the month name will be part of a date. + * @return string Returns an empty string if $value is empty, the name of the month otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws a BadArgumentType exception if $value is not valid. + * @throws \Wild\Localize\Punic\Exception\ValueNotInList Throws a ValueNotInList exception if $width is not valid. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of other problems (for instance if you specify an invalid locale). + */ + public static function getMonthName($value, $width = 'wide', $locale = '', $standAlone = false) + { + $result = ''; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $month = null; + if (is_int($value)) { + $month = $value; + } elseif (is_float($value)) { + $month = intval($value); + } elseif (is_string($value)) { + if (is_numeric($value)) { + $month = intval($value); + } + } elseif (is_a($value, '\DateTime')) { + $month = intval($value->format('n')); + } + if (is_null($month) || (($month < 1) || ($month > 12))) { + throw new Exception\BadArgumentType($value, 'month number'); + } + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['months'][$standAlone ? 'stand-alone' : 'format']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + $result = $data[$width][$month]; + } + + return $result; + } + + /** + * Get the name of a week day. + * @param number|\DateTime $value A week day number (from 0-Sunday to 6-Saturnday) or a \DateTime instance for which you want the name of the day of the week. + * @param string $width = 'wide' The format name; it can be 'wide' (eg 'Sunday'), 'abbreviated' (eg 'Sun'), 'short' (eg 'Su') or 'narrow' (eg 'S'). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @param bool $standAlone = false Set to true to return the form used independently (such as in calendar header), set to false if the week day name will be part of a date. + * @return string Returns an empty string if $value is empty, the name of the week day name otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws a BadArgumentType exception if $value is not valid. + * @throws \Wild\Localize\Punic\Exception\ValueNotInList Throws a ValueNotInList exception if $width is not valid. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of other problems (for instance if you specify an invalid locale). + */ + public static function getWeekdayName($value, $width = 'wide', $locale = '', $standAlone = false) + { + static $dictionary = array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'); + $result = ''; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $weekday = null; + if (is_int($value)) { + $weekday = $value; + } elseif (is_float($value)) { + $weekday = intval($value); + } elseif (is_string($value)) { + if (is_numeric($value)) { + $weekday = intval($value); + } + } elseif (is_a($value, '\DateTime')) { + $weekday = intval($value->format('w')); + } + if (is_null($weekday) || (($weekday < 0) || ($weekday > 6))) { + throw new Exception\BadArgumentType($value, 'weekday number'); + } + $weekday = $dictionary[$weekday]; + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['days'][$standAlone ? 'stand-alone' : 'format']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + $result = $data[$width][$weekday]; + } + + return $result; + } + + /** + * Get the name of a quarter. + * @param number|\DateTime $value A quarter number (from 1 to 4) or a \DateTime instance for which you want the name of the day of the quarter. + * @param string $width = 'wide' The format name; it can be 'wide' (eg '1st quarter'), 'abbreviated' (eg 'Q1') or 'narrow' (eg '1'). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @param bool $standAlone = false Set to true to return the form used independently (such as in calendar header), set to false if the quarter name will be part of a date. + * @return string Returns an empty string if $value is empty, the name of the quarter name otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws a BadArgumentType exception if $value is not valid. + * @throws \Wild\Localize\Punic\Exception\ValueNotInList Throws a ValueNotInList exception if $width is not valid. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of other problems (for instance if you specify an invalid locale). + */ + public static function getQuarterName($value, $width = 'wide', $locale = '', $standAlone = false) + { + $result = ''; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $quarter = null; + if (is_int($value)) { + $quarter = $value; + } elseif (is_float($value)) { + $quarter = intval($value); + } elseif (is_string($value)) { + if (is_numeric($value)) { + $quarter = intval($value); + } + } elseif (is_a($value, '\DateTime')) { + $quarter = 1 + intval(floor((intval($value->format('n')) - 1) / 3)); + } + if (is_null($quarter) || (($quarter < 1) || ($quarter > 4))) { + throw new Exception\BadArgumentType($value, 'quarter number'); + } + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['quarters'][$standAlone ? 'stand-alone' : 'format']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + $result = $data[$width][$quarter]; + } + + return $result; + } + + /** + * Get the name of a day period (AM/PM). + * @param number|string|\DateTime $value An hour (from 0 to 23), a standard period name ('am' or 'pm', lower or upper case) a \DateTime instance for which you want the name of the day period. + * @param string $width = 'wide' The format name; it can be 'wide' (eg 'AM'), 'abbreviated' (eg 'AM') or 'narrow' (eg 'a'). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @param bool $standAlone = false Set to true to return the form used independently (such as in calendar header), set to false if the day period name will be part of a date. + * @return string Returns an empty string if $value is empty, the name of the day period name otherwise. + * @throws \Wild\Localize\Punic\Exception\BadArgumentType Throws a BadArgumentType exception if $value is not valid. + * @throws \Wild\Localize\Punic\Exception\ValueNotInList Throws a ValueNotInList exception if $width is not valid. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of other problems (for instance if you specify an invalid locale). + */ + public static function getDayperiodName($value, $width = 'wide', $locale = '', $standAlone = false) + { + static $dictionary = array('am', 'pm'); + $result = ''; + if ((!empty($value)) || ($value === 0) || ($value === '0')) { + $dayperiod = null; + $hours = null; + if (is_int($value)) { + $hours = $value; + } elseif (is_float($value)) { + $hours = intval($value); + } elseif (is_string($value)) { + if (is_numeric($value)) { + $hours = intval($value); + } else { + $s = strtolower($value); + if (in_array($s, $dictionary, true)) { + $dayperiod = $s; + } + } + } elseif (is_a($value, '\DateTime')) { + $dayperiod = $value->format('a'); + } + if ((!is_null($hours)) && ($hours >= 0) && ($hours <= 23)) { + $dayperiod = ($hours < 12) ? 'am' : 'pm'; + } + if (is_null($dayperiod)) { + throw new Exception\BadArgumentType($value, 'day period'); + } + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['dayPeriods'][$standAlone ? 'stand-alone' : 'format']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + $result = $data[$width][$dayperiod]; + } + + return $result; + } + + /** + * Returns the localized name of a timezone, no location-specific. + * @param string|\DateTime|\DateTimeZone $value The php name of a timezone, or a \DateTime instance or a \DateTimeZone instance for which you want the localized timezone name. + * @param string $width = 'long' The format name; it can be 'long' (eg 'Greenwich Mean Time') or 'short' (eg 'GMT'). + * @param string $kind = '' Set to 'daylight' to retrieve the daylight saving time name, set to 'standard' to retrieve the standard time, set to 'generic' to retrieve the generic name, set to '' to determine automatically the dst (if $value is \DateTime) or the generic (otherwise). + * @param string $locale = '' The locale to use. If empty we'll use the default locale set with {@link \Wild\Localize\Punic\Data::setDefaultLocale()}. + * @return string Returns an empty string if the timezone has not been found (maybe we don't have the data in the specified $width), the timezone name otherwise. + * @throws \Wild\Localize\Punic\Exception Throws a generic exception in case of problems (for instance if you specify an invalid locale). + */ + public static function getTimezoneNameNoLocationSpecific($value, $width = 'long', $kind = '', $locale = '') + { + $result = ''; + if (!empty($value)) { + $receivedPhpName = ''; + $date = ''; + if (is_string($value)) { + $receivedPhpName = $value; + } elseif (is_a($value, '\\DateTime')) { + $receivedPhpName = $value->getTimezone()->getName(); + $date = $value->format('Y-m-d H:i'); + if (empty($kind)) { + if (intval($value->format('I')) === 1) { + $kind = 'daylight'; + } else { + $kind = 'standard'; + } + } + } elseif (is_a($value, '\\DateTimeZone')) { + $receivedPhpName = $value->getName(); + } + if (strlen($receivedPhpName)) { + $metazoneCode = ''; + $data = \Wild\Localize\Punic\Data::getGeneric('metaZones'); + $phpNames = static::getTimezonesAliases($receivedPhpName); + if (!strlen($metazoneCode)) { + foreach ($phpNames as $phpName) { + $path = array_merge(array('metazoneInfo'), explode('/', $phpName)); + $tzInfo = $data; + foreach ($path as $chunk) { + if (array_key_exists($chunk, $tzInfo)) { + $tzInfo = $tzInfo[$chunk]; + } else { + $tzInfo = null; + break; + } + } + if (is_array($tzInfo)) { + foreach ($tzInfo as $tz) { + if (is_array($tz) && array_key_exists('mzone', $tz)) { + if (strlen($date)) { + if (array_key_exists('from', $tz) && (strcmp($date, $tz['from']) < 0)) { + continue; + } + if (array_key_exists('to', $tz) && (strcmp($date, $tz['to']) >= 0)) { + continue; + } + } + $metazoneCode = $tz['mzone']; + break; + } + } + } + if (strlen($metazoneCode)) { + break; + } + } + } + if (!strlen($metazoneCode)) { + foreach ($phpNames as $phpName) { + foreach ($data['metazones'] as $metazone) { + if (strcasecmp($phpName, $metazone['type']) === 0) { + $metazoneCode = $metazone['other']; + break; + } + } + if (strlen($metazoneCode)) { + break; + } + } + } + if (!strlen($metazoneCode)) { + $metazoneCode = $receivedPhpName; + } + if (strlen($metazoneCode)) { + $data = \Wild\Localize\Punic\Data::get('timeZoneNames', $locale); + if (array_key_exists('metazone', $data)) { + $data = $data['metazone']; + if (array_key_exists($metazoneCode, $data)) { + $data = $data[$metazoneCode]; + if (array_key_exists($width, $data)) { + $data = $data[$width]; + $lookFor = array(); + if (!empty($kind)) { + $lookFor[] = $kind; + } + $lookFor[] = 'generic'; + $lookFor[] = 'standard'; + $lookFor[] = 'daylight'; + foreach ($lookFor as $lf) { + if (array_key_exists($lf, $data)) { + $result = $data[$lf]; + break; + } + } + } + } + } + } + } + } + + return $result; + } + + /** @todo I can't find data for this */ + public static function getTimezoneNameLocationSpecific($value, $width = 'long', $kind = '', $locale = '') + { + return ''; + } + + /** + * Returns the localized name of an exemplar city for a specific timezone + * @param string|\DateTime|\DateTimeZone $value The php name of a timezone, or a \DateTime instance or a \DateTimeZone instance + * @param bool $returnUnknownIfNotFound true If the exemplar city is not found, shall we return the translation of 'Unknown City'? + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if the exemplar city hasn't been found and $returnUnknownIfNotFound is false + */ + public static function getTimezoneExemplarCity($value, $returnUnknownIfNotFound = true, $locale = '') + { + $result = ''; + $locale = empty($locale) ? \Wild\Localize\Punic\Data::getDefaultLocale() : $locale; + if (!empty($value)) { + $receivedPhpName = ''; + if (is_string($value)) { + $receivedPhpName = $value; + } elseif (is_a($value, '\\DateTime')) { + $receivedPhpName = $value->getTimezone()->getName(); + } elseif (is_a($value, '\\DateTimeZone')) { + $receivedPhpName = $value->getName(); + } + if (strlen($receivedPhpName)) { + $phpNames = static::getTimezonesAliases($receivedPhpName); + $timeZoneNames = \Wild\Localize\Punic\Data::get('timeZoneNames', $locale); + foreach ($phpNames as $phpName) { + $chunks = array_merge(array('zone'), explode('/', $phpName)); + $data = $timeZoneNames; + foreach ($chunks as $chunk) { + if (array_key_exists($chunk, $data)) { + $data = $data[$chunk]; + } else { + $data = null; + } + if (!is_array($data)) { + break; + } + } + if (is_array($data) && array_key_exists('exemplarCity', $data)) { + $result = $data['exemplarCity']; + break; + } + } + } + } + if ((!strlen($result)) && $returnUnknownIfNotFound) { + $result = 'Unknown City'; + $s = static::getTimezoneExemplarCity('Etc/Unknown', false, $locale); + if (strlen($s)) { + $result = $s; + } + } + + return $result; + } + + /** + * Returns true if a locale has a 12-hour clock, false if 24-hour clock + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return bool + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + */ + public static function has12HoursClock($locale = '') + { + static $cache = array(); + $locale = empty($locale) ? \Wild\Localize\Punic\Data::getDefaultLocale() : $locale; + if (!array_key_exists($locale, $cache)) { + $format = static::getTimeFormat('short', $locale); + $format = str_replace("''", '', $format); + $cache[$locale] = (strpos($format, 'a') === false) ? false : true; + } + + return $cache[$locale]; + } + + /** + * Retrieve the first weekday for a specific locale (from 0-Sunday to 6-Saturnday) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return int Returns a number from 0 (Sunday) to 7 (Saturnday) + */ + public static function getFirstWeekday($locale = '') + { + static $cache = array(); + $locale = empty($locale) ? \Wild\Localize\Punic\Data::getDefaultLocale() : $locale; + if (!array_key_exists($locale, $cache)) { + $result = 0; + $data = \Wild\Localize\Punic\Data::getGeneric('weekData'); + $i = \Wild\Localize\Punic\Data::getTerritoryNode($data['firstDay'], $locale); + if (is_int($i)) { + $result = $i; + } + $cache[$locale] = $result; + } + + return $cache[$locale]; + } + + /** + * Returns the sorted list of weekdays, starting from {@link getFirstWeekday} + * @param string|false $namesWidth If false you'll get only the list of weekday identifiers (for instance: [0, 1, 2, 3, 4, 5, 6]), + * If it's a string it must be one accepted by {@link getWeekdayName}, and you'll get an array like this: [{id: 0, name: 'Monday', ..., {id: 6, name: 'Sunday'}] + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return array + */ + public static function getSortedWeekdays($namesWidth = false, $locale = '') + { + $codes = array(); + $code = static::getFirstWeekday($locale); + for ($count = 0; $count < 7; $count++) { + $codes[] = $code; + $code += 1; + if ($code === 7) { + $code = 0; + } + } + if (empty($namesWidth)) { + $result = $codes; + } else { + $result = array(); + foreach ($codes as $code) { + $result[] = array('id' => $code, 'name' => static::getWeekdayName($code, $namesWidth, $locale, true)); + } + } + + return $result; + } + + /** + * Get the ISO format for a date + * @param string $width The format name; it can be 'full' (eg 'EEEE, MMMM d, y' - 'Wednesday, August 20, 2014'), 'long' (eg 'MMMM d, y' - 'August 20, 2014'), 'medium' (eg 'MMM d, y' - 'August 20, 2014') or 'short' (eg 'M/d/yy' - '8/20/14') + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns the requested ISO format + * @throws Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function getDateFormat($width, $locale = '') + { + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['dateFormats']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + + return $data[$width]; + } + + /** + * Get the ISO format for a time + * @param string $width The format name; it can be 'full' (eg 'h:mm:ss a zzzz' - '11:42:13 AM GMT+2:00'), 'long' (eg 'h:mm:ss a z' - '11:42:13 AM GMT+2:00'), 'medium' (eg 'h:mm:ss a' - '11:42:13 AM') or 'short' (eg 'h:mm a' - '11:42 AM') + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns the requested ISO format + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function getTimeFormat($width, $locale = '') + { + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['timeFormats']; + if (!array_key_exists($width, $data)) { + throw new Exception\ValueNotInList($width, array_keys($data)); + } + + return $data[$width]; + } + + /** + * Get the ISO format for a date/time + * @param string $width The format name; it can be 'full', 'long', 'medium', 'short' or a combination for date+time like 'full|short' or a combination for format+date+time like 'full|full|short' + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns the requested ISO format + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function getDatetimeFormat($width, $locale = '') + { + return static::getDatetimeFormatReal($width, $locale); + } + + protected static function getDatetimeFormatReal($width, $locale = '', $overrideDateFormat = '', $overrideTimeFormat = '') + { + $chunks = explode('|', @str_replace(array('*', '^'), '', $width)); + switch (count($chunks)) { + case 1: + $timeWidth = $dateWidth = $wholeWidth = $chunks[0]; + break; + case 2: + $sortedChunks = $chunks; + usort($sortedChunks, function ($a, $b) { + $cmp = 0; + if ($a !== $b) { + foreach (array('full', 'long', 'medium', 'short') as $w) { + if ($a === $w) { + $cmp = -1; + break; + } + if ($b === $w) { + $cmp = 1; + break; + } + } + } + + return $cmp; + }); + $wholeWidth = $sortedChunks[0]; + $dateWidth = $chunks[0]; + $timeWidth = $chunks[1]; + break; + case 3: + $wholeWidth = $chunks[0]; + $dateWidth = $chunks[1]; + $timeWidth = $chunks[2]; + break; + default: + throw new Exception\BadArgumentType($width, 'pipe-separated list of strings (from 1 to 3 chunks)'); + } + $data = \Wild\Localize\Punic\Data::get('calendar', $locale); + $data = $data['dateTimeFormats']; + if (!array_key_exists($wholeWidth, $data)) { + throw new Exception\ValueNotInList($wholeWidth, array_keys($data)); + } + + return sprintf( + $data[$wholeWidth], + strlen($overrideTimeFormat) ? $overrideTimeFormat : static::getTimeFormat($timeWidth, $locale), + strlen($overrideDateFormat) ? $overrideDateFormat : static::getDateFormat($dateWidth, $locale) + ); + } + + /** + * Returns the difference in days between two dates (or between a date and today) + * @param \DateTime $dateEnd The first date + * @param \DateTime|null $dateStart The final date (if it has a timezone different than $dateEnd, we'll use the one of $dateEnd) + * @return int Returns the diffence $dateEnd - $dateStart in days + * @throws Exception\BadArgumentType + */ + public static function getDeltaDays($dateEnd, $dateStart = null) + { + if (!is_a($dateEnd, '\\DateTime')) { + throw new Exception\BadArgumentType($dateEnd, '\\DateTime'); + } + if (empty($dateStart) && ($dateStart !== 0) && ($dateStart !== '0')) { + $dateStart = new \DateTime('now', $dateEnd->getTimezone()); + } + if (!is_a($dateStart, '\\DateTime')) { + throw new Exception\BadArgumentType($dateStart, '\\DateTime'); + } + if ($dateStart->getOffset() !== $dateEnd->getOffset()) { + $dateStart->setTimezone($dateEnd->getTimezone()); + } + $utc = new \DateTimeZone('UTC'); + $dateEndUTC = new \DateTime($dateEnd->format('Y-m-d'), $utc); + $dateStartUTC = new \DateTime($dateStart->format('Y-m-d'), $utc); + $seconds = $dateEndUTC->getTimestamp() - $dateStartUTC->getTimestamp(); + + return intval(round($seconds / 86400)); + } + + /** + * Describe an interval between two dates (eg '2 days and 4 hours'). + * @param \DateTime $dateEnd The first date + * @param \DateTime|null $dateStart The final date (if it has a timezone different than $dateEnd, we'll use the one of $dateEnd) + * @param int $maxParts = 2 The maximim parts (eg with 2 you may have '2 days and 4 hours', with 3 '2 days, 4 hours and 24 minutes') + * @param string $width = 'short' The format name; it can be 'long' (eg '3 seconds'), 'short' (eg '3 s') or 'narrow' (eg '3s') + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string + * @throws Exception\BadArgumentType + */ + public static function describeInterval($dateEnd, $dateStart = null, $maxParts = 2, $width = 'short', $locale = '') + { + + if (!is_a($dateEnd, '\\DateTime')) { + throw new Exception\BadArgumentType($dateEnd, '\\DateTime'); + } + if (empty($dateStart) && ($dateStart !== 0) && ($dateStart !== '0')) { + $dateStart = new \DateTime('now', $dateEnd->getTimezone()); + } + if (!is_a($dateStart, '\\DateTime')) { + throw new Exception\BadArgumentType($dateStart, '\\DateTime'); + } + if ($dateStart->getOffset() !== $dateEnd->getOffset()) { + $dateStart->setTimezone($dateEnd->getTimezone()); + } + $utc = new \DateTimeZone('UTC'); + $dateEndUTC = new \DateTime($dateEnd->format('Y-m-d H:i:s'), $utc); + $dateStartUTC = new \DateTime($dateStart->format('Y-m-d H:i:s'), $utc); + + $parts = array(); + $data = \Wild\Localize\Punic\Data::get('dateFields', $locale); + if ($dateEndUTC->getTimestamp() == $dateStartUTC->getTimestamp()) { + $parts[] = $data['second']['relative-type-0']; + } else { + $diff = $dateStartUTC->diff($dateEndUTC, true); + $mostFar = 0; + $maxDistance = 3; + if (($mostFar < $maxDistance) && ($diff->y > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->y, 'duration/year', $width, $locale); + $mostFar = 0; + } elseif (!empty($parts)) { + $mostFar++; + } + if (($mostFar < $maxDistance) && ($diff->m > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->m, 'duration/month', $width, $locale); + $mostFar = 0; + } elseif (!empty($parts)) { + $mostFar++; + } + if (($mostFar < $maxDistance) && ($diff->d > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->d, 'duration/day', $width, $locale); + $mostFar = 0; + } elseif (!empty($parts)) { + $mostFar++; + } + if (($mostFar < $maxDistance) && ($diff->h > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->h, 'duration/hour', $width, $locale); + $mostFar = 0; + } elseif (!empty($parts)) { + $mostFar++; + } + if (($mostFar < $maxDistance) && ($diff->i > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->i, 'duration/minute', $width, $locale); + $mostFar = 0; + } elseif (!empty($parts)) { + $mostFar++; + } + if (empty($parts) || ($diff->s > 0)) { + $parts[] = \Wild\Localize\Punic\Unit::format($diff->s, 'duration/second', $width, $locale); + } + if (count($parts) > $maxParts) { + $parts = array_slice($parts, 0, $maxParts); + } + } + switch ($width) { + case 'narrow': + case 'short': + $joined = \Wild\Localize\Punic\Misc::joinUnits($parts, $width, $locale); + break; + default: + $joined = \Wild\Localize\Punic\Misc::join($parts, $locale); + break; + } + + return $joined; + } + + /** + * Format a date + * @param \DateTime $value The \DateTime instance for which you want the localized textual representation + * @param string $width The format name; it can be 'full' (eg 'EEEE, MMMM d, y' - 'Wednesday, August 20, 2014'), 'long' (eg 'MMMM d, y' - 'August 20, 2014'), 'medium' (eg 'MMM d, y' - 'August 20, 2014') or 'short' (eg 'M/d/yy' - '8/20/14'). + * You can also append a caret ('^') or an asterisk ('*') to $width. If so, special day names may be used (like 'Today', 'Yesterday', 'Tomorrow' with '^' and 'today', 'yesterday', 'tomorrow' width '*') instead of the date. + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatDate($value, $width, $locale = '') + { + $c = is_string($width) ? @substr($width, -1) : ''; + if (($c === '^') || ($c === '*')) { + $dayName = static::getDateRelativeName($value, ($c === '^') ? true : false, $locale); + if (strlen($dayName)) { + return $dayName; + } + $width = substr($width, 0, -1); + } + + return static::format( + $value, + static::getDateFormat($width, $locale), + $locale + ); + } + + /** + * Format a date (extended version: various date/time representations - see toDateTime()) + * @param number|\DateTime|string $value An Unix timestamp, a \DateTime instance or a string accepted by {@link http://php.net/manual/function.strtotime.php strtotime}. + * @param string $width The format name; it can be 'full' (eg 'EEEE, MMMM d, y' - 'Wednesday, August 20, 2014'), 'long' (eg 'MMMM d, y' - 'August 20, 2014'), 'medium' (eg 'MMM d, y' - 'August 20, 2014') or 'short' (eg 'M/d/yy' - '8/20/14') + * You can also append a caret ('^') or an asterisk ('*') to $width. If so, special day names may be used (like 'Today', 'Yesterday', 'Tomorrow' with '^' and 'today', 'yesterday', 'tomorrow' width '*') instead of the date. + * @param string|\DateTimeZone $toTimezone The timezone to set; leave empty to use the default timezone (or the timezone associated to $value if it's already a \DateTime) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @see toDateTime() + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatDateEx($value, $width, $toTimezone = '', $locale = '') + { + return static::formatDate( + static::toDateTime($value, $toTimezone), + $width, + $locale + ); + } + + /** + * Format a time + * @param \DateTime $value The \DateTime instance for which you want the localized textual representation + * @param string $width The format name; it can be 'full' (eg 'h:mm:ss a zzzz' - '11:42:13 AM GMT+2:00'), 'long' (eg 'h:mm:ss a z' - '11:42:13 AM GMT+2:00'), 'medium' (eg 'h:mm:ss a' - '11:42:13 AM') or 'short' (eg 'h:mm a' - '11:42 AM') + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatTime($value, $width, $locale = '') + { + return static::format( + $value, + static::getTimeFormat($width, $locale), + $locale + ); + } + + /** + * Format a time (extended version: various date/time representations - see toDateTime()) + * @param number|\DateTime|string $value An Unix timestamp, a \DateTime instance or a string accepted by {@link http://php.net/manual/function.strtotime.php strtotime}. + * @param string $width The format name; it can be 'full' (eg 'h:mm:ss a zzzz' - '11:42:13 AM GMT+2:00'), 'long' (eg 'h:mm:ss a z' - '11:42:13 AM GMT+2:00'), 'medium' (eg 'h:mm:ss a' - '11:42:13 AM') or 'short' (eg 'h:mm a' - '11:42 AM') + * @param string|\DateTimeZone $toTimezone The timezone to set; leave empty to use the default timezone (or the timezone associated to $value if it's already a \DateTime) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @see toDateTime() + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatTimeEx($value, $width, $toTimezone = '', $locale = '') + { + return static::formatTime( + static::toDateTime($value, $toTimezone), + $width, + $locale + ); + } + + /** + * Format a date/time + * @param \DateTime $value The \DateTime instance for which you want the localized textual representation + * @param string $width The format name; it can be 'full', 'long', 'medium', 'short' or a combination for date+time like 'full|short' or a combination for format+date+time like 'full|full|short' + * You can also append an asterisk ('*') to the date parh of $width. If so, special day names may be used (like 'Today', 'Yesterday', 'Tomorrow') instead of the date part. + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatDatetime($value, $width, $locale = '') + { + $overrideDateFormat = ''; + if (is_string($width)) { + $dateFormat = ''; + $chunks = explode('|', $width); + switch (count($chunks)) { + case 1: + case 2: + $dateFormat = $chunks[0]; + break; + case 3: + $dateFormat = $chunks[1]; + break; + } + $c = strlen($dateFormat) ? @substr($dateFormat, -1) : ''; + if (($c === '^') || ($c === '*')) { + $dayName = static::getDateRelativeName($value, ($c === '^') ? true : false, $locale); + if (strlen($dayName)) { + $overrideDateFormat = "'$dayName'"; + } + + } + } + + return static::format( + $value, + static::getDatetimeFormatReal($width, $locale, $overrideDateFormat), + $locale + ); + } + + /** + * Format a date/time (extended version: various date/time representations - see toDateTime()) + * @param number|\DateTime|string $value An Unix timestamp, a \DateTime instance or a string accepted by {@link http://php.net/manual/function.strtotime.php strtotime}. + * @param string $width The format name; it can be 'full', 'long', 'medium', 'short' or a combination for date+time like 'full|short' or a combination for format+date+time like 'full|full|short' + * You can also append an asterisk ('*') to the date parh of $width. If so, special day names may be used (like 'Today', 'Yesterday', 'Tomorrow') instead of the date part. + * @param string|\DateTimeZone $toTimezone The timezone to set; leave empty to use the default timezone (or the timezone associated to $value if it's already a \DateTime) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @see toDateTime() + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatDatetimeEx($value, $width, $toTimezone = '', $locale = '') + { + return static::formatDatetime( + static::toDateTime($value, $toTimezone), + $width, + $locale + ); + } + + /** + * Format a date and/or time + * @param \DateTime $value The \DateTime instance for which you want the localized textual representation + * @param string $format The ISO format that specify how to render the date/time + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function format($value, $format, $locale = '') + { + static $decodeCache = array(); + static $decoderFunctions = array( + 'G' => 'decodeEra', + 'y' => 'decodeYear', + 'Y' => 'decodeYearWeekOfYear', + 'u' => 'decodeYearExtended', + 'U' => 'decodeYearCyclicName', + 'r' => 'decodeYearRelatedGregorian', + 'Q' => 'decodeQuarter', + 'q' => 'decodeQuarterAlone', + 'M' => 'decodeMonth', + 'L' => 'decodeMonthAlone', + 'w' => 'decodeWeekOfYear', + 'W' => 'decodeWeekOfMonth', + 'd' => 'decodeDayOfMonth', + 'D' => 'decodeDayOfYear', + 'F' => 'decodeWeekdayInMonth', + 'g' => 'decodeModifiedGiulianDay', + 'E' => 'decodeDayOfWeek', + 'e' => 'decodeDayOfWeekLocal', + 'c' => 'decodeDayOfWeekLocalAlone', + 'a' => 'decodeDayperiod', + 'h' => 'decodeHour12', + 'H' => 'decodeHour24', + 'K' => 'decodeHour12From0', + 'k' => 'decodeHour24From1', + 'm' => 'decodeMinute', + 's' => 'decodeSecond', + 'S' => 'decodeFranctionsOfSeconds', + 'A' => 'decodeMsecInDay', + 'z' => 'decodeTimezoneNoLocationSpecific', + 'Z' => 'decodeTimezoneDelta', + 'O' => 'decodeTimezoneShortGMT', + 'v' => 'decodeTimezoneNoLocationGeneric', + 'V' => 'decodeTimezoneID', + 'X' => 'decodeTimezoneWithTimeZ', + 'x' => 'decodeTimezoneWithTime', + ); + $result = ''; + if (!empty($value)) { + if (!is_a($value, '\\DateTime')) { + throw new Exception\BadArgumentType($value, '\\DateTime'); + } + $length = is_string($format) ? strlen($format) : 0; + if ($length === 0) { + throw new Exception\BadArgumentType($format, 'date/time ISO format'); + } + $cacheKey = empty($locale) ? \Wild\Localize\Punic\Data::getDefaultLocale() : $locale; + if (!array_key_exists($cacheKey, $decodeCache)) { + $decodeCache[$cacheKey] = array(); + } + if (!array_key_exists($format, $decodeCache[$cacheKey])) { + $decoder = array(); + $lengthM1 = $length - 1; + $quoted = false; + for ($index = 0; $index < $length; $index++) { + $char = $format[$index]; + if ($char === "'") { + if ($quoted) { + $quoted = false; + } elseif (($index < $lengthM1) && ($format[$index + 1] === "'")) { + $decoder[] = "'"; + $index++; + } else { + $quoted = true; + } + } elseif ($quoted) { + $decoder[] = $char; + } else { + $count = 1; + for ($j = $index + 1; ($j < $length) && ($format[$j] === $char); $j++) { + $count++; + $index++; + } + if (array_key_exists($char, $decoderFunctions)) { + $decoder[] = array($decoderFunctions[$char], $count); + } else { + $decoder[] = str_repeat($char, $count); + } + } + } + $decodeCache[$cacheKey][$format] = $decoder; + } else { + $decoder = $decodeCache[$cacheKey][$format]; + } + foreach ($decoder as $chunk) { + if (is_string($chunk)) { + $result .= $chunk; + } else { + $functionName = $chunk[0]; + $count = $chunk[1]; + $result .= static::$functionName($value, $count, $locale); + } + } + } + + return $result; + } + /** + * Format a date and/or time (extended version: various date/time representations - see toDateTime()) + * @param number|\DateTime|string $value An Unix timestamp, a \DateTime instance or a string accepted by {@link http://php.net/manual/function.strtotime.php strtotime}. + * @param string $format The ISO format that specify how to render the date/time + * @param string|\DateTimeZone $toTimezone The timezone to set; leave empty to use the default timezone (or the timezone associated to $value if it's already a \DateTime) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return string Returns an empty string if $value is empty, the localized textual representation otherwise + * @throws \Wild\Localize\Punic\Exception Throws an exception in case of problems + * @link http://cldr.unicode.org/translation/date-time-patterns + * @link http://cldr.unicode.org/translation/date-time + * @link http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns + */ + public static function formatEx($value, $format, $toTimezone = '', $locale = '') + { + return static::format( + static::toDateTime($value, $toTimezone), + $format, + $locale + ); + } + + /** + * Retrieve the relative day name (eg 'yesterday', 'tomorrow'), if available + * @param \DateTime $datetime The date for which you want the relative day name + * @param bool $ucFirst = false Force first letter to be upper case? + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return Returns the relative name if available, otherwise returns an empty string + */ + public static function getDateRelativeName($datetime, $ucFirst = false, $locale = '') + { + $result = ''; + $deltaDays = static::getDeltaDays($datetime); + $data = \Wild\Localize\Punic\Data::get('dateFields', $locale); + if (array_key_exists('day', $data)) { + $data = $data['day']; + $key = "relative-type-$deltaDays"; + if (array_key_exists($key, $data)) { + $result = $data[$key]; + if ($ucFirst) { + $result = \Wild\Localize\Punic\Misc::fixCase($result, 'titlecase-firstword'); + } + } + } + + return $result; + } + + protected static function decodeDayOfWeek(\DateTime $value, $count, $locale, $standAlone = false) + { + switch ($count) { + case 1: + case 2: + case 3: + return static::getWeekdayName($value, 'abbreviated', $locale, $standAlone); + case 4: + return static::getWeekdayName($value, 'wide', $locale, $standAlone); + case 5: + return static::getWeekdayName($value, 'narrow', $locale, $standAlone); + case 6: + return static::getWeekdayName($value, 'short', $locale, $standAlone); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5, 6)); + } + } + + protected static function decodeDayOfWeekLocal(\DateTime $value, $count, $locale, $standAlone = false) + { + switch ($count) { + case 1: + case 2: + $weekDay = intval($value->format('w')); + $firstWeekdayForCountry = static::getFirstWeekday($locale); + $localWeekday = 1 + ((7 + $weekDay - $firstWeekdayForCountry) % 7); + + return str_pad(strval($localWeekday), $count, '0', STR_PAD_LEFT); + default: + return static::decodeDayOfWeek($value, $count, $locale, $standAlone); + } + } + + protected static function decodeDayOfWeekLocalAlone(\DateTime $value, $count, $locale) + { + return static::decodeDayOfWeekLocal($value, $count, $locale, true); + } + + protected static function decodeDayOfMonth(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return $value->format('j'); + case 2: + return $value->format('d'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeMonth(\DateTime $value, $count, $locale, $standAlone = false) + { + switch ($count) { + case 1: + return $value->format('n'); + case 2: + return $value->format('m'); + case 3: + return static::getMonthName($value, 'abbreviated', $locale, $standAlone); + case 4: + return static::getMonthName($value, 'wide', $locale, $standAlone); + case 5: + return static::getMonthName($value, 'narrow', $locale, $standAlone); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5)); + } + } + + protected static function decodeMonthAlone(\DateTime $value, $count, $locale) + { + return static::decodeMonth($value, $count, $locale, true); + } + + protected static function decodeYear(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return strval(intval($value->format('Y'))); + case 2: + return $value->format('y'); + default: + $s = $value->format('Y'); + if ($count > strlen($s)) { + $s = str_pad($s, $count, '0', STR_PAD_LEFT); + } + + return $s; + } + } + + protected static function decodeHour12(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return $value->format('g'); + case 2: + return $value->format('h'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeDayperiod(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return static::getDayperiodName($value, 'abbreviated', $locale); + default: + throw new Exception\ValueNotInList($count, array(1)); + } + } + + protected static function decodeHour24(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return $value->format('G'); + case 2: + return $value->format('H'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeHour12From0(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + return str_pad(strval(intval($value->format('G')) % 12), $count, '0', STR_PAD_LEFT); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeHour24From1(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + return str_pad(strval(1 + intval($value->format('G'))), $count, '0', STR_PAD_LEFT); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeMinute(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return strval(intval($value->format('i'))); + case 2: + return $value->format('i'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeSecond(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return strval(intval($value->format('s'))); + case 2: + return $value->format('s'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeTimezoneNoLocationSpecific(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + case 3: + $tz = static::getTimezoneNameNoLocationSpecific($value, 'short', '', $locale); + if (!strlen($tz)) { + $tz = static::decodeTimezoneShortGMT($value, 1, $locale); + } + break; + case 4: + $tz = static::getTimezoneNameNoLocationSpecific($value, 'long', '', $locale); + if (!strlen($tz)) { + $tz = static::decodeTimezoneShortGMT($value, 4, $locale); + } + break; + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4)); + } + + return $tz; + } + + protected static function decodeTimezoneShortGMT(\DateTime $value, $count, $locale) + { + $offset = $value->getOffset(); + $sign = ($offset < 0) ? '-' : '+'; + $seconds = abs($offset); + $hours = intval(floor($seconds / 3600)); + $seconds -= $hours * 3600; + $minutes = intval(floor($seconds / 60)); + $data = \Wild\Localize\Punic\Data::get('timeZoneNames', $locale); + $format = array_key_exists('gmtFormat', $data) ? $data['gmtFormat'] : 'GMT%1$s'; + switch ($count) { + case 1: + return sprintf($format, $sign . $hours . (($minutes === 0) ? '' : (':' . substr('0' . $minutes, -2)))); + case 4: + return sprintf($format, $sign . $hours . ':' . substr('0' . $minutes, -2)); + default: + throw new Exception\ValueNotInList($count, array(1, 4)); + } + } + + protected static function decodeEra(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + case 3: + return static::getEraName($value, 'abbreviated', $locale); + case 4: + return static::getEraName($value, 'wide', $locale); + case 5: + return static::getEraName($value, 'narrow', $locale); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5)); + } + } + + protected static function decodeYearWeekOfYear(\DateTime $value, $count, $locale) + { + $y = $value->format('o'); + if ($count === 2) { + $y = substr('0' . $y, -2); + } else { + if ($count > strlen($y)) { + $y = str_pad($y, $count, '0', STR_PAD_LEFT); + } + } + + return $y; + } + + /** + * Note: we assume Gregorian calendar here + */ + protected static function decodeYearExtended(\DateTime $value, $count, $locale) + { + return static::decodeYear($value, $count, $locale); + } + + /** + * Note: we assume Gregorian calendar here + */ + protected static function decodeYearRelatedGregorian(\DateTime $value, $count, $locale) + { + return static::decodeYearExtended($value, $count, $locale); + } + + protected static function decodeQuarter(\DateTime $value, $count, $locale, $standAlone = false) + { + $quarter = 1 + intval(floor((intval($value->format('n')) - 1) / 3)); + switch ($count) { + case 1: + return strval($quarter); + case 2: + return '0' . strval($quarter); + case 3: + return static::getQuarterName($quarter, 'abbreviated', $locale, $standAlone); + case 4: + return static::getQuarterName($quarter, 'wide', $locale, $standAlone); + case 5: + return static::getQuarterName($quarter, 'narrow', $locale, $standAlone); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5)); + } + } + + protected static function decodeQuarterAlone(\DateTime $value, $count, $locale) + { + return static::decodeQuarter($value, $count, $locale, true); + } + + protected static function decodeWeekOfYear(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + return strval(intval($value->format('W'))); + case 2: + return $value->format('W'); + default: + throw new Exception\ValueNotInList($count, array(1, 2)); + } + } + + protected static function decodeDayOfYear(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + case 3: + return str_pad(strval(1 + $value->format('z')), $count, '0', STR_PAD_LEFT); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3)); + } + } + + protected static function decodeWeekdayInMonth(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + case 2: + case 3: + $dom = intval($value->format('j')); + $wim = 1 + intval(floor(($dom - 1) / 7)); + + return str_pad(strval($wim), $count, '0', STR_PAD_LEFT); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3)); + } + } + + protected static function decodeFranctionsOfSeconds(\DateTime $value, $count, $locale) + { + $us = intval($value->format('u')); + if ($count >= 6) { + $result = str_pad(strval($us), $count, '0', STR_PAD_RIGHT); + } elseif ($count >= 1) { + $v = intval(floor($us / pow(10, 6 - $count))); + $result = str_pad(strval($v), $count, '0', STR_PAD_LEFT); + } + + return $result; + } + + protected static function decodeMsecInDay(\DateTime $value, $count, $locale) + { + $hours = intval($value->format('G')); + $minutes = $hours * 60 + intval($value->format('i')); + $seconds = $minutes * 60 + intval($value->format('s')); + $milliseconds = $seconds * 1000 + intval(floor(intval($value->format('u')) / 1000)); + + return str_pad(strval($milliseconds), $count, '0', STR_PAD_LEFT); + } + + protected static function decodeTimezoneDelta(\DateTime $value, $count, $locale) + { + $offset = $value->getOffset(); + $sign = ($offset < 0) ? '-' : '+'; + $seconds = abs($offset); + $hours = intval(floor($seconds / 3600)); + $seconds -= $hours * 3600; + $minutes = intval(floor($seconds / 60)); + $seconds -= $minutes * 60; + $partsWithoutSeconds = array(); + $partsWithoutSeconds[] = $sign . substr('0' . strval($hours), -2); + $partsWithoutSeconds[] = substr('0' . strval($minutes), -2); + $partsMaybeWithSeconds = $partsWithoutSeconds; + /* @TZWS + if ($seconds > 0) { + $partsMaybeWithSeconds[] = substr('0' . strval($seconds), -2); + } + */ + switch ($count) { + case 1: + case 2: + case 3: + return implode('', $partsMaybeWithSeconds); + case 4: + $data = \Wild\Localize\Punic\Data::get('timeZoneNames', $locale); + $format = array_key_exists('gmtFormat', $data) ? $data['gmtFormat'] : 'GMT%1$s'; + + return sprintf($format, implode(':', $partsWithoutSeconds)); + case 5: + return implode(':', $partsMaybeWithSeconds); + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5)); + } + } + + protected static function decodeTimezoneNoLocationGeneric(\DateTime $value, $count, $locale) + { + switch ($count) { + case 1: + $tz = static::getTimezoneNameNoLocationSpecific($value, 'short', 'generic', $locale); + if (!strlen($tz)) { + $tz = static::decodeTimezoneID($value, 4, $locale); + } + break; + case 4: + $tz = static::getTimezoneNameNoLocationSpecific($value, 'long', 'generic', $locale); + if (!strlen($tz)) { + $tz = static::decodeTimezoneID($value, 4, $locale); + } + break; + default: + throw new Exception\ValueNotInList($count, array(1, 4)); + } + + return $tz; + } + + protected static function decodeTimezoneID(\DateTime $value, $count, $locale) + { + $result = ''; + switch ($count) { + case 1: + $result = 'unk'; + break; + case 2: + $result = $value->getTimezone()->getName(); + break; + case 3: + $result = static::getTimezoneExemplarCity($value, true, $locale); + break; + case 4: + $result = static::getTimezoneNameLocationSpecific($value, 'short', 'generic', $locale); + if (!strlen($result)) { + $result = static::decodeTimezoneShortGMT($value, 4, $locale); + } + break; + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4)); + } + + return $result; + } + + protected static function decodeTimezoneWithTime(\DateTime $value, $count, $locale, $zForZero = false) + { + $offset = $value->getOffset(); + $useZ = ($zForZero && ($offset === 0)) ? true : false; + $sign = ($offset < 0) ? '-' : '+'; + $seconds = abs($offset); + $hours = intval(floor($seconds / 3600)); + $seconds -= $hours * 3600; + $minutes = intval(floor($seconds / 60)); + $seconds -= $minutes * 60; + $hours2 = $sign . substr('0' . strval($hours), -2); + $minutes2 = substr('0' . strval($minutes), -2); + /* @TZWS + $seconds2 = substr('0' . strval($seconds), -2); + */ + $hmMaybe = array($hours2); + if ($minutes > 0) { + $hmMaybe[] = $minutes2; + } + $hmsMaybe = array($hours2, $minutes2); + /* @TZWS + if ($seconds > 0) { + $hmsMaybe[] = $seconds2; + } + */ + switch ($count) { + case 1: + $result = $useZ ? 'Z' : implode('', $hmMaybe); + break; + case 2: + $result = $useZ ? 'Z' : "$hours2$minutes2"; + break; + case 3: + $result = $useZ ? 'Z' : "$hours2:$minutes2"; + break; + case 4: + $result = $useZ ? 'Z' : implode('', $hmsMaybe); + break; + case 5: + $result = $useZ ? 'Z' : implode(':', $hmsMaybe); + break; + default: + throw new Exception\ValueNotInList($count, array(1, 2, 3, 4, 5)); + } + + return $result; + } + + protected static function decodeTimezoneWithTimeZ(\DateTime $value, $count, $locale) + { + return static::decodeTimezoneWithTime($value, $count, $locale, true); + } + + /** @todo */ + protected static function decodeWeekOfMonth(\DateTime $value, $count, $locale) { throw new Exception\NotImplemented(__METHOD__); } + /** @todo */ + protected static function decodeYearCyclicName() { throw new Exception\NotImplemented(__METHOD__); } + /** @todo */ + protected static function decodeModifiedGiulianDay() { throw new Exception\NotImplemented(__METHOD__); } + + protected static function getTimezonesAliases($phpTimezoneName) + { + $result = array($phpTimezoneName); + switch ($phpTimezoneName) { + case 'Africa/Asmara': + $result[] = 'Africa/Asmera'; + break; + case 'America/Atikokan': + $result[] = 'America/Coral_Harbour'; + break; + case 'Asia/Ho_Chi_Minh': + $result[] = 'Asia/Saigon'; + break; + case 'Asia/Kathmandu': + $result[] = 'Asia/Katmandu'; + break; + case 'Asia/Kolkata': + $result[] = 'Asia/Calcutta'; + break; + case 'Atlantic/Faroe': + $result[] = 'Atlantic/Faeroe'; + break; + case 'Pacific/Chuuk': + $result[] = 'Pacific/Truk'; + break; + case 'Pacific/Pohnpei': + $result[] = 'Pacific/Ponape'; + break; + case 'America/Argentina/Buenos_Aires': + $result[] = 'America/Buenos_Aires'; + break; + case 'America/Argentina/Catamarca': + $result[] = 'America/Catamarca'; + break; + case 'America/Argentina/Cordoba': + $result[] = 'America/Cordoba'; + break; + case 'America/Argentina/Jujuy': + $result[] = 'America/Jujuy'; + break; + case 'America/Argentina/Mendoza': + $result[] = 'America/Mendoza'; + break; + case 'America/Indiana/Indianapolis': + $result[] = 'America/Indianapolis'; + break; + case 'America/Kentucky/Louisville': + $result[] = 'America/Louisville'; + break; + } + + return $result; + } +} diff --git a/Punic/Data.php b/Punic/Data.php new file mode 100644 index 0000000..8be0569 --- /dev/null +++ b/Punic/Data.php @@ -0,0 +1,563 @@ + 0) && (stripos($result, "$language-$script-") !== 0)) { + $parts = static::explodeLocale($result); + if (!is_null($parts)) { + $result = "{$parts['language']}-$script-{$parts['territory']}"; + } + } + break; + } + } + + return $result; + } + + /** + * Return the terrotory associated to the locale (guess it if it's not present in $locale) + * @param string $locale ='' The locale identifier (if empty we'll use the current default locale) + * @return string + */ + public static function getTerritory($locale = '', $checkFallbackLocale = true) + { + $result = ''; + if (empty($locale)) { + $locale = static::$defaultLocale; + } + $info = static::explodeLocale($locale); + if (is_array($info)) { + if (!strlen($info['territory'])) { + $fullLocale = static::guessFullLocale($info['language'], $info['script']); + if (strlen($fullLocale)) { + $info = static::explodeLocale($fullLocale); + } + } + if (strlen($info['territory'])) { + $result = $info['territory']; + } elseif ($checkFallbackLocale) { + $result = static::getTerritory(static::$fallbackLocale, false); + } + } + + return $result; + } + + /** + * Return the parent of a territory + * @param string $territory The child territory + * @return string Returns an empty string if the parent territory was not found, the parent territory ID if found + */ + protected static function getParentTerritory($territory) + { + $result = ''; + if (is_string($territory) && strlen($territory)) { + foreach (static::getGeneric('territoryContainment') as $parent => $info) { + if (in_array($territory, $info['contains'], true)) { + $result = $parent; + break; + } + } + } + + return $result; + } + + /** + * Retrieves all the atomic territories belonging to a group. + * @param string $parentTerritory The parent territory (eg '001') + * @return array + */ + protected static function expandTerritoryGroup($parentTerritory) + { + $result = array(); + $data = static::getGeneric('territoryContainment'); + if (array_key_exists($parentTerritory, $data)) { + foreach ($data[$parentTerritory]['contains'] as $child) { + $grandchildren = static::expandTerritoryGroup($child); + if (empty($grandchildren)) { + $result[] = $child; + } else { + $result = array_merge($result, $grandchildren); + } + } + } + + return $result; + } + + /** + * Return the node associated to the locale territory + * @param string $locale ='' The locale identifier (if empty we'll use the current default locale) + * @return mixed Returns null if the node was not found, the node data otherwise + * @internal + */ + public static function getTerritoryNode($data, $locale = '') + { + $result = null; + $territory = static::getTerritory($locale); + while (strlen($territory)) { + if (array_key_exists($territory, $data)) { + $result = $data[$territory]; + break; + } + $territory = static::getParentTerritory($territory); + } + + return $result; + } + + /** + * Return the node associated to the language (not locale) territory + * @param string $locale ='' The locale identifier (if empty we'll use the current default locale) + * @return mixed Returns null if the node was not found, the node data otherwise + * @internal + */ + public static function getLanguageNode($data, $locale = '') + { + $result = null; + if (empty($locale)) { + $locale = static::$defaultLocale; + } + foreach (static::getLocaleAlternatives($locale) as $l) { + if (array_key_exists($l, $data)) { + $result = $data[$l]; + break; + } + } + + return $result; + } + + /** + * Returns the item of an array associated to a locale + * @param array $data The data containing the locale info + * @param string $locale ='' The locale identifier (if empty we'll use the current default locale) + * @return mixed Returns null if $data is not an array or it does not contain locale info, the array item otherwise + * @internal + */ + public static function getLocaleItem($data, $locale = '') + { + $result = null; + if (is_array($data)) { + if (empty($locale)) { + $locale = static::$defaultLocale; + } + foreach (static::getLocaleAlternatives($locale) as $alternative) { + if (array_key_exists($alternative, $data)) { + $result = $data[$alternative]; + break; + } + } + } + + return $result; + } + + /** + * Parse a string representing a locale and extract its components. + * @param string $locale + * @return Return null if $locale is not valid; if $locale is valid returns an array with keys 'language', 'script', 'territory' + * @internal + */ + public static function explodeLocale($locale) + { + $result = null; + if (is_string($locale)) { + if ($locale === 'root') { + $locale = 'en-US'; + } + $chunks = explode('-', str_replace('_', '-', strtolower($locale))); + if (count($chunks) <= 3) { + if (preg_match('/^[a-z]{2,3}$/', $chunks[0])) { + $language = $chunks[0]; + $script = ''; + $territory = ''; + $parentLocale = ''; + $ok = true; + $chunkCount = count($chunks); + for ($i = 1; $ok && ($i < $chunkCount); $i++) { + if (preg_match('/^[a-z]{4}$/', $chunks[$i])) { + if (strlen($script) > 0) { + $ok = false; + } else { + $script = ucfirst($chunks[$i]); + } + } elseif (preg_match('/^([a-z]{2})|([0-9]{3})$/', $chunks[$i])) { + if (strlen($territory) > 0) { + $ok = false; + } else { + $territory = strtoupper($chunks[$i]); + } + } else { + $ok = false; + } + } + if ($ok) { + $parentLocales = static::getGeneric('parentLocales'); + if (strlen($script) && strlen($territory) && array_key_exists("$language-$script-$territory", $parentLocales)) { + $parentLocale = $parentLocales["$language-$script-$territory"]; + } elseif (strlen($script) && array_key_exists("$language-$script", $parentLocales)) { + $parentLocale = $parentLocales["$language-$script"]; + } elseif (strlen($territory) && array_key_exists("$language-$territory", $parentLocales)) { + $parentLocale = $parentLocales["$language-$territory"]; + } elseif (array_key_exists($language, $parentLocales)) { + $parentLocale = $parentLocales[$language]; + } + $result = array( + 'language' => $language, + 'script' => $script, + 'territory' => $territory, + 'parentLocale' => $parentLocale + ); + } + } + } + } + + return $result; + } + + /** + * Returns the path of the locale-specific data, looking also for the fallback locale + * @param string $locale The locale for which you want the data folder + * @return string Returns an empty string if the folder is not found, the absolute path to the folder otherwise + */ + protected static function getLocaleFolder($locale) + { + static $cache = array(); + $result = ''; + if (is_string($locale)) { + $key = $locale . '/' . static::$fallbackLocale; + if (!array_key_exists($key, $cache)) { + foreach (static::getLocaleAlternatives($locale) as $alternative) { + $dir = 'data' . DIRECTORY_SEPARATOR . $alternative; + if (is_dir(__DIR__ . DIRECTORY_SEPARATOR . $dir)) { + $result = $dir; + break; + } + } + $cache[$key] = $result; + } + $result = $cache[$key]; + } + + return $result; + } + + /** + * Returns a list of locale identifiers associated to a locale + * @param string $locale The locale for which you want the alternatives + * @param string $addFallback = true Set to true to add the fallback locale to the result, false otherwise + * @return array + */ + protected static function getLocaleAlternatives($locale, $addFallback = true) + { + $result = array(); + $localeInfo = static::explodeLocale($locale); + if (!is_array($localeInfo)) { + throw new Exception\InvalidLocale($locale); + } + extract($localeInfo); + if (!strlen($territory)) { + $fullLocale = static::guessFullLocale($language, $script); + if (strlen($fullLocale)) { + extract(static::explodeLocale($fullLocale)); + } + } + $territories = array(); + while (strlen($territory) > 0) { + $territories[] = $territory; + $territory = static::getParentTerritory($territory); + } + if (strlen($script)) { + foreach ($territories as $territory) { + $result[] = "{$language}-{$script}-{$territory}"; + } + } + if (strlen($script)) { + $result[] = "{$language}-{$script}"; + } + foreach ($territories as $territory) { + $result[] = "{$language}-{$territory}"; + if ("{$language}-{$territory}" === 'en-US') { + $result[] = 'root'; + } + } + if (strlen($parentLocale)) { + $result = array_merge($result, static::getLocaleAlternatives($parentLocale, false)); + } + $result[] = $language; + if ($addFallback && ($locale !== static::$fallbackLocale)) { + $result = array_merge($result, static::getLocaleAlternatives(static::$fallbackLocale, false)); + } + for ($i = count($result) - 1; $i > 1; $i--) { + for ($j = 0; $j < $i; $j++) { + if ($result[$i] === $result[$j]) { + array_splice($result, $i, 1); + break; + } + } + } + $i = array_search('root', $result, true); + if ($i !== false) { + array_splice($result, $i, 1); + $result[] = 'root'; + } + + return $result; + } +} diff --git a/Punic/Exception.php b/Punic/Exception.php new file mode 100644 index 0000000..308b80d --- /dev/null +++ b/Punic/Exception.php @@ -0,0 +1,73 @@ +argumentValue = $argumentValue; + $this->destinationTypeDescription = $destinationTypeDescription; + $type = gettype($argumentValue); + switch ($type) { + case 'boolean': + $shownName = $argumentValue ? 'TRUE' : 'FALSE'; + break; + case 'integer': + case 'double': + $shownName = strval($argumentValue); + break; + case 'string': + $shownName = "'$argumentValue'"; + break; + case 'object': + $shownName = get_class($argumentValue); + break; + default: + $shownName = $type; + break; + } + $message = "Can't convert $shownName to a $destinationTypeDescription"; + parent::__construct($message, \Wild\Localize\Punic\Exception::BAD_ARGUMENT_TYPE, $previous); + } + + /** + * Retrieves the value of the invalid argument + * @return mixed + */ + public function getArgumentValue() + { + return $this->argumentValue; + } + + /** + * Retrieves the destination type (or a list of destination types) + * @return string|array[string] + */ + public function getDestinationTypeDescription() + { + return $this->destinationTypeDescription; + } +} diff --git a/Punic/Exception/BadDataFileContents.php b/Punic/Exception/BadDataFileContents.php new file mode 100644 index 0000000..ff661da --- /dev/null +++ b/Punic/Exception/BadDataFileContents.php @@ -0,0 +1,44 @@ +dataFilePath = $dataFilePath; + $this->dataFileContents = $dataFileContents; + $message = "The file '$dataFilePath' contains malformed data"; + parent::__construct($message, \Wild\Localize\Punic\Exception::BAD_DATA_FILE_CONTENTS, $previous); + } + + /** + * Retrieves the path to the data file + * @return string + */ + public function getDataFilePath() + { + return $this->dataFilePath; + } + + /** + * Retrieves the malformed contents of the file + * @return string + */ + public function getDataFileContents() + { + return $this->dataFileContents; + } +} diff --git a/Punic/Exception/DataFileNotFound.php b/Punic/Exception/DataFileNotFound.php new file mode 100644 index 0000000..5d272be --- /dev/null +++ b/Punic/Exception/DataFileNotFound.php @@ -0,0 +1,65 @@ +identifier = $identifier; + if (empty($locale) && empty($fallbackLocale)) { + $this->locale = ''; + $this->fallbackLocale = ''; + $message = "Unable to find the data file '$identifier'"; + } else { + $this->locale = $locale; + $this->fallbackLocale = $fallbackLocale; + if (@strcasecmp($locale, $fallbackLocale) === 0) { + $message = "Unable to find the data file '$identifier' for '$locale'"; + } else { + $message = "Unable to find the data file '$identifier', neither for '$locale' nor for '$fallbackLocale'"; + } + } + parent::__construct($message, \Wild\Localize\Punic\Exception::DATA_FILE_NOT_FOUND, $previous); + } + + /** + * Retrieves the bad data file identifier + * @return string + */ + public function getIdentifier() + { + return $this->identifier; + } + + /** + * Retrieves the preferred locale + * @return string + */ + public function getLocale() + { + return $this->locale; + } + + /** + * Retrieves the fallback locale + * @return string + */ + public function getFallbackLocale() + { + return $this->fallbackLocale; + } +} diff --git a/Punic/Exception/DataFileNotReadable.php b/Punic/Exception/DataFileNotReadable.php new file mode 100644 index 0000000..ce4d975 --- /dev/null +++ b/Punic/Exception/DataFileNotReadable.php @@ -0,0 +1,32 @@ +dataFilePath = $dataFilePath; + $message = "Unable to read from the data file '$dataFilePath'"; + parent::__construct($message, \Wild\Localize\Punic\Exception::DATA_FILE_NOT_READABLE, $previous); + } + + /** + * Retrieves the path to the unreadable file + * @return string + */ + public function getDataFilePath() + { + return $this->dataFilePath; + } + +} diff --git a/Punic/Exception/DataFolderNotFound.php b/Punic/Exception/DataFolderNotFound.php new file mode 100644 index 0000000..3a2430d --- /dev/null +++ b/Punic/Exception/DataFolderNotFound.php @@ -0,0 +1,47 @@ +locale = $locale; + $this->fallbackLocale = $fallbackLocale; + if (@strcasecmp($locale, $fallbackLocale) === 0) { + $message = "Unable to find the specified locale folder for '$locale'"; + } else { + $message = "Unable to find the specified locale folder, neither for '$locale' nor for '$fallbackLocale'"; + } + parent::__construct($message, \Wild\Localize\Punic\Exception::DATA_FOLDER_NOT_FOUND, $previous); + } + + /** + * Retrieves the preferred locale + * @return string + */ + public function getLocale() + { + return $this->locale; + } + + /** + * Retrieves the fallback locale + * @return string + */ + public function getFallbackLocale() + { + return $this->fallbackLocale; + } +} diff --git a/Punic/Exception/InvalidDataFile.php b/Punic/Exception/InvalidDataFile.php new file mode 100644 index 0000000..cf0e535 --- /dev/null +++ b/Punic/Exception/InvalidDataFile.php @@ -0,0 +1,37 @@ +identifier = $identifier; + $type = gettype($identifier); + if ($type === 'string') { + $message = "'$identifier' is not a valid data file identifier"; + } else { + $message = "A valid identifier should be a string, $type received"; + } + parent::__construct($message, \Wild\Localize\Punic\Exception::INVALID_DATAFILE, $previous); + } + + /** + * Retrieves the bad data file identifier + * @return mixed + */ + public function getIdentifier() + { + return $this->identifier; + } +} diff --git a/Punic/Exception/InvalidLocale.php b/Punic/Exception/InvalidLocale.php new file mode 100644 index 0000000..609b8dc --- /dev/null +++ b/Punic/Exception/InvalidLocale.php @@ -0,0 +1,36 @@ +locale = $locale; + $type = gettype($locale); + if ($type === 'string') { + $message = "'$locale' is not a valid locale identifier"; + } else { + $message = "A valid locale should be a string, $type received"; + } + parent::__construct($message, \Wild\Localize\Punic\Exception::INVALID_LOCALE, $previous); + } + + /** + * Retrieves the bad locale + * @return mixed + */ + public function getLocale() + { + return $this->locale; + } +} diff --git a/Punic/Exception/NotImplemented.php b/Punic/Exception/NotImplemented.php new file mode 100644 index 0000000..68059dc --- /dev/null +++ b/Punic/Exception/NotImplemented.php @@ -0,0 +1,30 @@ +function = $function; + $message = "$function is not implemented"; + parent::__construct($message, \Wild\Localize\Punic\Exception::NOT_IMPLEMENTED, $previous); + } + + /** + * Retrieves the name of the not implemented function/method + * @return string + */ + public function getFunction() + { + return $this->function; + } +} diff --git a/Punic/Exception/ValueNotInList.php b/Punic/Exception/ValueNotInList.php new file mode 100644 index 0000000..b931cc5 --- /dev/null +++ b/Punic/Exception/ValueNotInList.php @@ -0,0 +1,43 @@ +value = $value; + $this->allowedValues = $allowedValues; + $message = "'$value' is not valid. Acceptable values are: '" . implode("', '", $allowedValues) . "'"; + parent::__construct($message, \Wild\Localize\Punic\Exception::VALUE_NOT_IN_LIST, $previous); + } + + /** + * Retrieves the invalid value + * @return mixed + */ + public function getValue() + { + return $this->value; + } + + /** + * Retrieves the list of valid values + * @return array[string|numeric] + */ + public function getAllowedValues() + { + return $this->allowedValues; + } +} diff --git a/Punic/Language.php b/Punic/Language.php new file mode 100644 index 0000000..0b19c40 --- /dev/null +++ b/Punic/Language.php @@ -0,0 +1,86 @@ + 2) { + for ($index = $n - 3; $index > 0; $index --) { + $result = sprintf($data['middle'], $list[$index], $result); + } + $result = sprintf($data['start'], $list[0], $result); + } + } + break; + } + } + + return $result; + } + + /** + * Fix the case of a string. + * @param string $string The string whose case needs to be fixed + * @param string $case How to fix case. Allowed values:
    + *
  • 'titlecase-words' all words in the phrase should be title case
  • + *
  • 'titlecase-firstword' the first word should be title case
  • + *
  • 'lowercase-words' all words in the phrase should be lower case
  • + *
+ * @return string + * @link http://cldr.unicode.org/development/development-process/design-proposals/consistent-casing + */ + public static function fixCase($string, $case) + { + $result = $string; + if (is_string($string) && is_string($case) && (strlen($string) > 0)) { + switch ($case) { + case 'titlecase-words': + if (function_exists('mb_strtoupper') && (@preg_match('/\pL/u', 'a'))) { + $result = preg_replace_callback('/\\pL+/u', function ($m) { + $s = $m[0]; + $l = mb_strlen($s, 'UTF-8'); + if ($l === 1) { + $s = mb_strtoupper($s, 'UTF-8'); + } else { + $s = mb_strtoupper(mb_substr($s, 0, 1, 'UTF-8'), 'UTF-8') . mb_substr($s, 1, $l - 1, 'UTF-8'); + } + + return $s; + }, $string); + } + break; + case 'titlecase-firstword': + if (function_exists('mb_strlen')) { + $l = mb_strlen($string, 'UTF-8'); + if ($l === 1) { + $result = mb_strtoupper($string, 'UTF-8'); + } elseif ($l > 1) { + $result = mb_strtoupper(mb_substr($string, 0, 1, 'UTF-8'), 'UTF-8') . mb_substr($string, 1, $l - 1, 'UTF-8'); + } + } + break; + case 'lowercase-words': + if (function_exists('mb_strtolower')) { + $result = mb_strtolower($string, 'UTF-8'); + } + break; + } + } + + return $result; + } + + /** + * Parse the browser HTTP_ACCEPT_LANGUAGE header and return the found locales + * @param boolean $ignoreCache set to true if you want to ignore the cache + * @return array + */ + public static function getBrowserLocales($ignoreCache = false) + { + static $result; + if (!isset($result) || $ignoreCache) { + $httpAcceptLanguages = @getenv('HTTP_ACCEPT_LANGUAGE'); + if ((!is_string($httpAcceptLanguages)) || (strlen($httpAcceptLanguages) === 0)) { + if (isset($_SERVER) && is_array($_SERVER) && array_key_exists('HTTP_ACCEPT_LANGUAGE', $_SERVER)) { + $httpAcceptLanguages = $_SERVER['HTTP_ACCEPT_LANGUAGE']; + } + } + $result = self::parseHttpAcceptLanguage($httpAcceptLanguages); + } + + return $result; + } + + /** + * Parse the value of an HTTP_ACCEPT_LANGUAGE header and return the found locales + * @param string $httpAcceptLanguages + * @return array + */ + public static function parseHttpAcceptLanguage($httpAcceptLanguages) + { + $result = array(); + if (is_string($httpAcceptLanguages) && (strlen($httpAcceptLanguages) > 0)) { + foreach (explode(',', $httpAcceptLanguages) as $httpAcceptLanguage) { + if (preg_match('/^([a-z]{2,3}(?:[_\\-][a-z]+)*)(?:\\s*;(?:\\s*q(?:\\s*=(?:\\s*([\\d.]+))?)?)?)?$/', strtolower(trim($httpAcceptLanguage, " \t")), $m)) { + if (count($m) > 2) { + if (strpos($m[2], '.') === 0) { + $m[2] = '0' . $m[2]; + } + if (preg_match('/^[01](\\.\\d*)?$/', $m[2])) { + $quality = round(@floatval($m[2]), 4); + } else { + $quality = -1; + } + } else { + $quality = 1; + } + if (($quality >= 0) && ($quality <= 1)) { + $found = array(); + $chunks = explode('-', str_replace('_', '-', $m[1])); + $numChunks = count($chunks); + if ($numChunks === 1) { + $found[] = $m[1]; + } else { + $base = $chunks[0]; + for ($i = 1; $i < $numChunks; $i++) { + if (strlen($chunks[$i]) === 4) { + $base .= '-' . ucfirst($chunks[$i]); + break; + } + } + for ($i = 1; $i < $numChunks; $i++) { + if (preg_match('/^[a-z][a-z]$/', $chunks[$i])) { + $found[] = $base . '-' . strtoupper($chunks[$i]); + } elseif (preg_match('/^\\d{3}$/', $chunks[$i])) { + $found[] = $base . '-' . $chunks[$i]; + } + } + if (empty($found)) { + $found[] = $base; + } + } + foreach ($found as $f) { + if (array_key_exists($f, $result)) { + if ($result[$f] < $quality) { + $result[$f] = $quality; + } + } else { + $result[$f] = $quality; + } + } + } + } + } + } + + return $result; + } +} diff --git a/Punic/Number.php b/Punic/Number.php new file mode 100644 index 0000000..141d47a --- /dev/null +++ b/Punic/Number.php @@ -0,0 +1,169 @@ + 0) || (strlen($m[2]) > 0)) { + $number = floatval($value); + if (!is_numeric($precision)) { + $precision = strlen($m[2]); + } + } + } + } + if (!is_null($number)) { + $precision = is_numeric($precision) ? intval($precision) : null; + if (!is_null($precision)) { + $value = round($value, $precision); + } + $data = \Wild\Localize\Punic\Data::get('numbers', $locale); + $decimal = $data['symbols']['decimal']; + $groupLength = (array_key_exists('groupLength', $data) && is_numeric($data['groupLength'])) ? intval($data['groupLength']) : 3; + if ($value < 0) { + $sign = $data['symbols']['minusSign']; + $value = abs($value); + } else { + $sign = ''; + } + $full = explode('.', strval($value), 2); + $intPart = $full[0]; + $floatPath = (count($full) > 1) ? $full[1] : ''; + $len = strlen($intPart); + if (($groupLength > 0) && ($len > $groupLength)) { + $groupSign = $data['symbols']['group']; + $preLength = 1 + (($len -1) % 3); + $pre = substr($intPart, 0, $preLength); + $intPart = $pre . $groupSign . implode($groupSign, str_split(substr($intPart, $preLength), $groupLength)); + } + $result = $sign . $intPart; + if (is_null($precision)) { + if (strlen($floatPath)) { + $result .= $decimal . $floatPath; + } + } elseif ($precision > 0) { + $result .= $decimal . substr(str_pad($floatPath, $precision, '0', STR_PAD_RIGHT), 0, $precision); + } + + } + + return $result; + } + + /** + * Convert a localized representation of a number to a number (for instance, converts the string '1,234' to 1234 in case of English and to 1.234 in case of Italian) + * @param string $value The string value to convert + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return int|float|null Returns null if $value is not valid, the numeric value otherwise + */ + public static function unformat($value, $locale = '') + { + $result = null; + if (is_int($value) || is_float($value)) { + $result = $value; + } elseif (is_string($value) && strlen($value)) { + $data = \Wild\Localize\Punic\Data::get('numbers', $locale); + $plus = $data['symbols']['plusSign']; + $plusQ = preg_quote($plus); + $minus = $data['symbols']['minusSign']; + $minusQ = preg_quote($minus); + $decimal = $data['symbols']['decimal']; + $decimalQ = preg_quote($decimal); + $group = $data['symbols']['group']; + $groupQ = preg_quote($group); + $ok = true; + if (preg_match('/^' . "($plusQ|$minusQ)?(\\d+(?:$groupQ\\d+)*)" . '$/', $value, $m)) { + $sign = $m[1]; + $int = $m[2]; + $float = null; + } elseif (preg_match('/^' . "($plusQ|$minusQ)?(\\d+(?:$groupQ\\d+)*)$decimalQ" . '$/', $value, $m)) { + $sign = $m[1]; + $int = $m[2]; + $float = ''; + } elseif (preg_match('/^' . "($plusQ|$minusQ)?(\\d+(?:$groupQ\\d+)*)$decimalQ(\\d+)" . '$/', $value, $m)) { + $sign = $m[1]; + $int = $m[2]; + $float = $m[3]; + } elseif (preg_match('/^' . "($plusQ|$minusQ)?$decimalQ(\\d+)" . '$/', $value, $m)) { + $sign = $m[1]; + $int = '0'; + $float = $m[2]; + } else { + $ok = false; + } + if ($ok) { + if ($sign === $minus) { + $sign = '-'; + } else { + $sign = ''; + } + $int = str_replace($group, '', $int); + if (is_null($float)) { + $result = intval("$sign$int"); + } else { + $result = floatval("$sign$int.$float"); + } + } + } + + return $result; + } +} diff --git a/Punic/Plural.php b/Punic/Plural.php new file mode 100644 index 0000000..aff2e5d --- /dev/null +++ b/Punic/Plural.php @@ -0,0 +1,135 @@ + '%1$s', // absolute value of the source number (integer and decimals). + $v1 = $intPartAbs . (strlen($floatPart) ? ".$floatPart" : ''); + // 'i' => '%2$s', // integer digits of n + $v2 = $intPartAbs; + // 'v' => '%3$s', // number of visible fraction digits in n, with trailing zeros. + $v3 = strlen($floatPart); + // 'w' => '%4$s', // number of visible fraction digits in n, without trailing zeros. + $v4 = strlen(rtrim($floatPart, '0')); + // 'f' => '%5$s', // visible fractional digits in n, with trailing zeros. + $v5 = strlen($floatPart) ? strval(intval($floatPart)) : '0'; + // 't' => '%6$s', // visible fractional digits in n, without trailing zeros. + $v6 = trim($floatPart, '0'); + if (!strlen($v6)) { + $v6 = '0'; + } + $result = 'other'; + $node = \Wild\Localize\Punic\Data::getLanguageNode(\Wild\Localize\Punic\Data::getGeneric('plurals'), $locale); + foreach ($node as $rule => $formulaPattern) { + $formula = sprintf($formulaPattern, $v1, $v2, $v3, $v4, $v5, $v6); + $check = str_replace(array('static::inRange(', ' and ', ' or ', ', false, ', ', true, ', ', array('), ' , ', $formula); + if (preg_match('/[a-z]/', $check)) { + throw new \Exception('Bad formula!'); + } + // fix for difference in modulo (%) in the definition and the one implemented in PHP for decimal numbers + while (preg_match('/(\\d+\\.\\d+) % (\\d+(\\.\\d+)?)/', $formula, $m)) { + list(, $decimalPart) = explode('.', $m[1], 2); + $decimals = strlen(rtrim($decimalPart, '0')); + if ($decimals > 0) { + $pow = intval(pow(10, $decimals)); + $repl = '(' . strval(intval(floatval($m[1]) * $pow)) . ' % ' . strval(intval(floatval($m[2] * $pow))) . ') / ' . $pow; + } else { + $repl = strval(intval($m[1])) . ' % ' . $m[2]; + } + $formula = str_replace($m[0], $repl, $formula); + } + $formulaResult = @eval("return ($formula) ? 'yes' : 'no';"); + if ($formulaResult === 'yes') { + $result = $rule; + break; + } elseif ($formulaResult !== 'no') { + throw new \Exception('There was a problem in the formula ' . $formulaPattern); + } + } + + return $result; + } + + protected static function inRange($value, $mustBeIncluded) + { + if (is_int($value)) { + $isInt = true; + } elseif (intval($value) == $value) { + $isInt = true; + } else { + $isInt = false; + } + $rangeValues = (func_num_args() > 2) ? array_slice(func_get_args(), 2) : array(); + $included = false; + foreach ($rangeValues as $rangeValue) { + if (is_array($rangeValue)) { + if ($isInt && ($value >= $rangeValue[0]) && ($value <= $rangeValue[1])) { + + $included = true; + break; + } + } elseif ($value == $rangeValue) { + $included = true; + break; + } + } + + return $included == $mustBeIncluded; + } +} diff --git a/Punic/Territory.php b/Punic/Territory.php new file mode 100644 index 0000000..189e69a --- /dev/null +++ b/Punic/Territory.php @@ -0,0 +1,362 @@ + + * { + * "002": { + * "name": "Africa", + * "children": { + * "DZ": {"name": "Algeria"}, + * "AO": {"name": "Angola"}, + * ... + * } + * }, + * "150": { + * "name": "Europe", + * "children": { + * "AL": {"name": "Albania"}, + * "AD": {"name": "Andorra"}, + * ... + * } + * } + * ... + * } + * + * The arrays are sorted by territory name + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return array + */ + public static function getContinentsAndCountries($locale = '') + { + return static::getList('Cc', $locale); + } + + /** + * Return a list of some specified territory, structured or not. + * $levels control which data you want to retrieve. It can be one or more of the following values: + *
    + *
  • 'W': world
  • + *
  • 'C': continents
  • + *
  • 'S': sub-continents
  • + *
  • 'c': countries
  • + *
+ * If only one level is specified you'll get a flat list (like the one returned by {@link getContinents}). + * If one or more levels are specified, you'll get a structured list (like the one returned by {@link getContinentsAndCountries}). + * @param string $levels A string with one or more of the characters: 'W' (for world), 'C' (for continents), 'S' (for sub-continents), 'c' (for countries) + * @param string $locale = '' The locale to use. If empty we'll use the default locale set in \Wild\Localize\Punic\Data + * @return array + * @link http://www.unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html + */ + public static function getList($levels = 'W', $locale = '') + { + static $levelMap = array('W' => 0, 'C' => 1, 'S' => 2, 'c' => 3); + $decodedLevels = array(); + $n = is_string($levels) ? strlen($levels) : 0; + if ($n > 0) { + for ($i = 0; $i < $n; $i++) { + $l = substr($levels, $i, 1); + if (!array_key_exists($l, $levelMap)) { + $decodedLevels = array(); + break; + } + if (!in_array($levelMap[$l], $decodedLevels, true)) { + $decodedLevels[] = $levelMap[$l]; + } + } + } + if (count($decodedLevels) === 0) { + throw new \Wild\Localize\Punic\Exception\BadArgumentType($levels, "list of territory kinds: it should be a list of one or more of the codes '" . implode("', '", array_keys($levelMap)) . "'"); + } + $struct = self::filterStructure(self::getStructure(), $decodedLevels, 0); + $flatList = (count($decodedLevels) > 1) ? false : true; + $finalized = self::finalizeWithNames(Data::get('territories', $locale), $struct, $flatList); + + if ($flatList) { + natcasesort($finalized); + } else { + $finalized = static::sort($finalized); + } + + return $finalized; + } + + /** + * Return a list of territory identifiers for which we have some info (languages, population, literacy level, Gross Domestic Product) + * @return array The list of territory IDs for which we have some info + */ + public static function getTerritoriesWithInfo() + { + return array_keys(Data::getGeneric('territoryInfo')); + } + + /** + * Return the list of languages spoken in a territory + * @param string $territoryCode The territory code + * @param string $filterStatuses = '' Filter language status. + *
    + *
  • If empty no filter will be applied
  • + *
  • 'o' to include official languages
  • + *
  • 'r' to include official regional languages
  • + *
  • 'f' to include de facto official languages
  • + *
  • 'm' to include official minority languages
  • + *
  • 'u' to include unofficial or unknown languages
  • + *
+ * @param string $onlyCodes = false Set to true to retrieve only the language codes. If set to false (default) you'll receive a list of arrays with these keys: + *
    + *
  • string id: the language identifier
  • + *
  • string status: 'o' for official; 'r' for official regional; 'f' for de facto official; 'm' for official minority; 'u' for unofficial or unknown
  • + *
  • number population: the amount of people speaking the language (%)
  • + *
  • number|null writing: the amount of people able to write (%). May be null if no data is available
  • + *
+ * @return array|null Return the languages spoken in the specified territory, as described by the $onlyCodes parameter (or null if $territoryCode is not valid or no data is available) + */ + public static function getLanguages($territoryCode, $filterStatuses = '', $onlyCodes = false) + { + $result = null; + $info = self::getTerritoryInfo($territoryCode); + if (is_array($info)) { + $result = array(); + foreach ($info['languages'] as $languageID => $languageInfo) { + if (!array_key_exists('status', $languageInfo)) { + $languageInfo['status'] = 'u'; + } + if ((strlen($filterStatuses) === 0) || (stripos($filterStatuses, $languageInfo['status']) !== false)) { + if (!array_key_exists('writing', $languageInfo)) { + $languageInfo['writing'] = null; + } + if ($onlyCodes) { + $result[] = $languageID; + } else { + $result[] = array_merge(array('id' => $languageID), $languageInfo); + } + } + } + } + + return $result; + } + + /** + * Return the population of a specific territory + * @param string $territoryCode The territory code + * @return number|null Return the size of the population of the specified territory (or null if $territoryCode is not valid or no data is available) + */ + public static function getPopulation($territoryCode) + { + $result = null; + $info = self::getTerritoryInfo($territoryCode); + if (is_array($info)) { + $result = $info['population']; + } + + return $result; + } + + /** + * Return the literacy level for a specific territory, in % + * @param string $territoryCode The territory code + * @return number|null Return the % of literacy lever of the specified territory (or null if $territoryCode is not valid or no data is available) + */ + public static function getLiteracyLevel($territoryCode) + { + $result = null; + $info = self::getTerritoryInfo($territoryCode); + if (is_array($info)) { + $result = $info['literacy']; + } + + return $result; + } + + /** + * Return the GDP (Gross Domestic Product) for a specific territory, in US$ + * @param string $territoryCode The territory code + * @return number|null Return the GDP of the specified territory (or null if $territoryCode is not valid or no data is available) + */ + public static function getGrossDomesticProduct($territoryCode) + { + $result = null; + $info = self::getTerritoryInfo($territoryCode); + if (is_array($info)) { + $result = $info['gdp']; + } + + return $result; + } + + /** + * Return a list of territory IDs where a specific language is spoken, sorted by the total number of people speaking that language. + * @param string $languageID The language identifier + * @return array + */ + public static function getTerritoriesForLanguage($languageID) + { + $langPeople = array(); + foreach (Data::getGeneric('territoryInfo') as $territoryID => $territoryInfo) { + foreach ($territoryInfo['languages'] as $langID => $langInfo) { + if ((strcasecmp($languageID, $langID) === 0) || (stripos($langID, $languageID . '_') === 0)) { + $langPeople[] = array('territoryID' => $territoryID, 'people' => $territoryInfo['population'] * $langInfo['population']); + } + } + } + usort($langPeople, function ($a, $b) { + $delta = $a['people'] - $b['people']; + if ($delta != 0) { + $result = ($delta > 0) ? -1 : 1; + } else { + $result = strcmp($a['territoryID'], $b['territoryID']); + } + + return $result; + }); + $territoryIDs = array(); + foreach ($langPeople as $lp) { + $territoryIDs[] = $lp['territoryID']; + } + + return $territoryIDs; + } + + protected static function getTerritoryInfo($territoryCode) + { + $result = null; + if (preg_match('/^[a-z0-9]{2,3}$/i', $territoryCode)) { + $territoryCode = strtoupper($territoryCode); + $data = Data::getGeneric('territoryInfo'); + if (array_key_exists($territoryCode, $data)) { + $result = $data[$territoryCode]; + } + } + + return $result; + } + + protected static function getStructure() + { + static $cache = null; + if (is_null($cache)) { + $data = Data::getGeneric('territoryContainment'); + $result = static::fillStructure($data, '001', 0); + $cache = $result; + } else { + $result = $cache; + } + + return $result; + } + + protected static function fillStructure($data, $id, $level) + { + $item = array('id' => $id, 'level' => $level, 'children' => array()); + if (array_key_exists($id, $data)) { + foreach ($data[$id]['contains'] as $childID) { + $item['children'][] = static::fillStructure($data, $childID, $level + 1); + } + } + + return $item; + } + + protected static function finalizeWithNames($data, $list, $flatList) + { + $result = array(); + foreach ($list as $item) { + $name = $data[$item['id']]; + if ($flatList) { + $result[$item['id']] = $name; + } else { + $result[$item['id']] = array('name' => $name); + if (count($item['children']) > 0) { + $result[$item['id']]['children'] = static::finalizeWithNames($data, $item['children'], $flatList); + } + } + } + + return $result; + } + + protected static function filterStructure($parent, $levels) + { + $thisResult = array(); + if (in_array($parent['level'], $levels, true)) { + $thisResult[0] = $parent; + $thisResult[0]['children'] = array(); + $addToSub = true; + } else { + $addToSub = false; + } + + $subList = array(); + foreach ($parent['children'] as $child) { + $subList = array_merge($subList, static::filterStructure($child, $levels)); + } + if ($addToSub) { + $thisResult[0]['children'] = $subList; + } else { + $thisResult = $subList; + } + + return $thisResult; + } + + protected static function sort($list) + { + foreach (array_keys($list) as $i) { + if (array_key_exists('children', $list[$i])) { + $list[$i]['children'] = static::sort($list[$i]['children']); + } + } + uasort($list, function ($a, $b) { + return strcasecmp($a['name'], $b['name']); + }); + + return $list; + } +} diff --git a/Punic/Unit.php b/Punic/Unit.php new file mode 100644 index 0000000..d5dcb28 --- /dev/null +++ b/Punic/Unit.php @@ -0,0 +1,91 @@ + $us) { + if (strpos($c, '_') === false) { + foreach (array_keys($us) as $u) { + if (strpos($c, '_') === false) { + $units[] = "$c/$u"; + } + } + } + } + throw new \Wild\Localize\Punic\Exception\ValueNotInList($unit, $units); + } + $pluralRule = \Wild\Localize\Punic\Plural::getRule($number, $locale); + //@codeCoverageIgnoreStart + // These checks aren't necessary since $pluralRule should always be in $rules, but they don't hurt ;) + if (!array_key_exists($pluralRule, $rules)) { + if (array_key_exists('other', $rules)) { + $pluralRule = 'other'; + } else { + $availableRules = array_keys($rules); + $pluralRule = $availableRules[0]; + } + } + //@codeCoverageIgnoreEnd + return sprintf($rules[$pluralRule], \Wild\Localize\Punic\Number::format($number, $precision, $locale)); + } +} diff --git a/Punic/data/ar/calendar.json b/Punic/data/ar/calendar.json new file mode 100644 index 0000000..1556aea --- /dev/null +++ b/Punic/data/ar/calendar.json @@ -0,0 +1 @@ +{"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":"ص","noon":"ظ","pm":"م"},"narrow":{"am":"ص","noon":"ظ","pm":"م"},"wide":{"am":"ص","noon":"ظ","pm":"م"}},"stand-alone":{"abbreviated":{"am":"ص","noon":"ظ","pm":"م"},"narrow":{"am":"ص","noon":"ظ","pm":"م"},"wide":{"am":"ص","noon":"ظ","pm":"م"}}},"eras":{"wide":{"0":"قبل الميلاد","0-alt-variant":"BCE","1":"ميلادي","1-alt-variant":"بعد الميلاد"},"abbreviated":{"0":"ق.م","0-alt-variant":"BCE","1":"م","1-alt-variant":"ب.م"},"narrow":{"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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/ar/dateFields.json b/Punic/data/ar/dateFields.json new file mode 100644 index 0000000..93feb9e --- /dev/null +++ b/Punic/data/ar/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"العصر"},"year":{"displayName":"السنة","relative-type--1":"السنة الماضية","relative-type-0":"السنة الحالية","relative-type-1":"السنة التالية","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من السنوات","relativeTimePattern-count-one":"خلال {0} من السنوات","relativeTimePattern-count-two":"خلال سنتين","relativeTimePattern-count-few":"خلال {0} سنوات","relativeTimePattern-count-many":"خلال {0} سنة","relativeTimePattern-count-other":"خلال {0} من السنوات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من السنوات","relativeTimePattern-count-one":"قبل {0} من السنوات","relativeTimePattern-count-two":"قبل سنتين","relativeTimePattern-count-few":"قبل {0} سنوات","relativeTimePattern-count-many":"قبل {0} سنة","relativeTimePattern-count-other":"قبل {0} من السنوات"}},"year-short":{"displayName":"السنة","relative-type--1":"السنة الماضية","relative-type-0":"السنة الحالية","relative-type-1":"السنة التالية","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من السنوات","relativeTimePattern-count-one":"خلال {0} من السنوات","relativeTimePattern-count-two":"خلال {0} من السنوات","relativeTimePattern-count-few":"خلال {0} من السنوات","relativeTimePattern-count-many":"خلال {0} من السنوات","relativeTimePattern-count-other":"خلال {0} من السنوات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من السنوات","relativeTimePattern-count-one":"قبل {0} من السنوات","relativeTimePattern-count-two":"قبل {0} من السنوات","relativeTimePattern-count-few":"قبل {0} من السنوات","relativeTimePattern-count-many":"قبل {0} من السنوات","relativeTimePattern-count-other":"قبل {0} من السنوات"}},"year-narrow":{"displayName":"السنة","relative-type--1":"السنة الماضية","relative-type-0":"السنة الحالية","relative-type-1":"السنة التالية","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من السنوات","relativeTimePattern-count-one":"خلال {0} من السنوات","relativeTimePattern-count-two":"خلال {0} من السنوات","relativeTimePattern-count-few":"خلال {0} من السنوات","relativeTimePattern-count-many":"خلال {0} من السنوات","relativeTimePattern-count-other":"خلال {0} من السنوات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من السنوات","relativeTimePattern-count-one":"قبل {0} من السنوات","relativeTimePattern-count-two":"قبل {0} من السنوات","relativeTimePattern-count-few":"قبل {0} من السنوات","relativeTimePattern-count-many":"قبل {0} من السنوات","relativeTimePattern-count-other":"قبل {0} من السنوات"}},"quarter":{"displayName":"ربع السنة","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من أرباع السنة","relativeTimePattern-count-one":"خلال {0} من أرباع السنة","relativeTimePattern-count-two":"خلال {0} من أرباع السنة","relativeTimePattern-count-few":"خلال {0} من أرباع السنة","relativeTimePattern-count-many":"خلال {0} من أرباع السنة","relativeTimePattern-count-other":"خلال {0} من أرباع السنة"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من أرباع السنة","relativeTimePattern-count-one":"قبل {0} من أرباع السنة","relativeTimePattern-count-two":"قبل {0} من أرباع السنة","relativeTimePattern-count-few":"قبل {0} من أرباع السنة","relativeTimePattern-count-many":"قبل {0} من أرباع السنة","relativeTimePattern-count-other":"قبل {0} من أرباع السنة"}},"quarter-short":{"displayName":"ربع السنة","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من أرباع السنة","relativeTimePattern-count-one":"خلال {0} من أرباع السنة","relativeTimePattern-count-two":"خلال {0} من أرباع السنة","relativeTimePattern-count-few":"خلال {0} من أرباع السنة","relativeTimePattern-count-many":"خلال {0} من أرباع السنة","relativeTimePattern-count-other":"خلال {0} من أرباع السنة"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من أرباع السنة","relativeTimePattern-count-one":"قبل {0} من أرباع السنة","relativeTimePattern-count-two":"قبل {0} من أرباع السنة","relativeTimePattern-count-few":"قبل {0} من أرباع السنة","relativeTimePattern-count-many":"قبل {0} من أرباع السنة","relativeTimePattern-count-other":"قبل {0} من أرباع السنة"}},"quarter-narrow":{"displayName":"ربع السنة","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من أرباع السنة","relativeTimePattern-count-one":"خلال {0} من أرباع السنة","relativeTimePattern-count-two":"خلال {0} من أرباع السنة","relativeTimePattern-count-few":"خلال {0} من أرباع السنة","relativeTimePattern-count-many":"خلال {0} من أرباع السنة","relativeTimePattern-count-other":"خلال {0} من أرباع السنة"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من أرباع السنة","relativeTimePattern-count-one":"قبل {0} من أرباع السنة","relativeTimePattern-count-two":"قبل {0} من أرباع السنة","relativeTimePattern-count-few":"قبل {0} من أرباع السنة","relativeTimePattern-count-many":"قبل {0} من أرباع السنة","relativeTimePattern-count-other":"قبل {0} من أرباع السنة"}},"month":{"displayName":"الشهر","relative-type--1":"الشهر الماضي","relative-type-0":"هذا الشهر","relative-type-1":"الشهر التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الشهور","relativeTimePattern-count-one":"خلال {0} من الشهور","relativeTimePattern-count-two":"خلال شهرين","relativeTimePattern-count-few":"خلال {0} شهور","relativeTimePattern-count-many":"خلال {0} شهرًا","relativeTimePattern-count-other":"خلال {0} من الشهور"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الشهور","relativeTimePattern-count-one":"قبل {0} من الشهور","relativeTimePattern-count-two":"قبل شهرين","relativeTimePattern-count-few":"قبل {0} أشهر","relativeTimePattern-count-many":"قبل {0} شهرًا","relativeTimePattern-count-other":"قبل {0} من الشهور"}},"month-short":{"displayName":"الشهر","relative-type--1":"الشهر الماضي","relative-type-0":"هذا الشهر","relative-type-1":"الشهر التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الشهور","relativeTimePattern-count-one":"خلال {0} من الشهور","relativeTimePattern-count-two":"خلال {0} من الشهور","relativeTimePattern-count-few":"خلال {0} من الشهور","relativeTimePattern-count-many":"خلال {0} من الشهور","relativeTimePattern-count-other":"خلال {0} من الشهور"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الشهور","relativeTimePattern-count-one":"قبل {0} من الشهور","relativeTimePattern-count-two":"قبل {0} من الشهور","relativeTimePattern-count-few":"قبل {0} من الشهور","relativeTimePattern-count-many":"قبل {0} من الشهور","relativeTimePattern-count-other":"قبل {0} من الشهور"}},"month-narrow":{"displayName":"الشهر","relative-type--1":"الشهر الماضي","relative-type-0":"هذا الشهر","relative-type-1":"الشهر التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الشهور","relativeTimePattern-count-one":"خلال {0} من الشهور","relativeTimePattern-count-two":"خلال {0} من الشهور","relativeTimePattern-count-few":"خلال {0} من الشهور","relativeTimePattern-count-many":"خلال {0} من الشهور","relativeTimePattern-count-other":"خلال {0} من الشهور"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الشهور","relativeTimePattern-count-one":"قبل {0} من الشهور","relativeTimePattern-count-two":"قبل {0} من الشهور","relativeTimePattern-count-few":"قبل {0} من الشهور","relativeTimePattern-count-many":"قبل {0} من الشهور","relativeTimePattern-count-other":"قبل {0} من الشهور"}},"week":{"displayName":"الأسبوع","relative-type--1":"الأسبوع الماضي","relative-type-0":"هذا الأسبوع","relative-type-1":"الأسبوع التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأسابيع","relativeTimePattern-count-one":"خلال {0} من الأسابيع","relativeTimePattern-count-two":"خلال أسبوعين","relativeTimePattern-count-few":"خلال {0} أسابيع","relativeTimePattern-count-many":"خلال {0} أسبوعًا","relativeTimePattern-count-other":"خلال {0} من الأسابيع"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأسابيع","relativeTimePattern-count-one":"قبل {0} من الأسابيع","relativeTimePattern-count-two":"قبل أسبوعين","relativeTimePattern-count-few":"قبل {0} أسابيع","relativeTimePattern-count-many":"قبل {0} أسبوعًا","relativeTimePattern-count-other":"قبل {0} من الأسابيع"}},"week-short":{"displayName":"الأسبوع","relative-type--1":"الأسبوع الماضي","relative-type-0":"هذا الأسبوع","relative-type-1":"الأسبوع التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأسابيع","relativeTimePattern-count-one":"خلال {0} من الأسابيع","relativeTimePattern-count-two":"خلال {0} من الأسابيع","relativeTimePattern-count-few":"خلال {0} من الأسابيع","relativeTimePattern-count-many":"خلال {0} من الأسابيع","relativeTimePattern-count-other":"خلال {0} من الأسابيع"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأسابيع","relativeTimePattern-count-one":"قبل {0} من الأسابيع","relativeTimePattern-count-two":"قبل {0} من الأسابيع","relativeTimePattern-count-few":"قبل {0} من الأسابيع","relativeTimePattern-count-many":"قبل {0} من الأسابيع","relativeTimePattern-count-other":"قبل {0} من الأسابيع"}},"week-narrow":{"displayName":"الأسبوع","relative-type--1":"الأسبوع الماضي","relative-type-0":"هذا الأسبوع","relative-type-1":"الأسبوع التالي","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأسابيع","relativeTimePattern-count-one":"خلال {0} من الأسابيع","relativeTimePattern-count-two":"خلال {0} من الأسابيع","relativeTimePattern-count-few":"خلال {0} من الأسابيع","relativeTimePattern-count-many":"خلال {0} من الأسابيع","relativeTimePattern-count-other":"خلال {0} من الأسابيع"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأسابيع","relativeTimePattern-count-one":"قبل {0} من الأسابيع","relativeTimePattern-count-two":"قبل {0} من الأسابيع","relativeTimePattern-count-few":"قبل {0} من الأسابيع","relativeTimePattern-count-many":"قبل {0} من الأسابيع","relativeTimePattern-count-other":"قبل {0} من الأسابيع"}},"day":{"displayName":"يوم","relative-type--1":"أمس","relative-type--2":"أول أمس","relative-type-0":"اليوم","relative-type-1":"غدًا","relative-type-2":"بعد الغد","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأيام","relativeTimePattern-count-one":"خلال {0} من الأيام","relativeTimePattern-count-two":"خلال يومين","relativeTimePattern-count-few":"خلال {0} أيام","relativeTimePattern-count-many":"خلال {0} يومًا","relativeTimePattern-count-other":"خلال {0} من الأيام"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأيام","relativeTimePattern-count-one":"قبل {0} من الأيام","relativeTimePattern-count-two":"قبل يومين","relativeTimePattern-count-few":"قبل {0} أيام","relativeTimePattern-count-many":"قبل {0} يومًا","relativeTimePattern-count-other":"قبل {0} من الأيام"}},"day-short":{"displayName":"يوم","relative-type--1":"أمس","relative-type--2":"أول أمس","relative-type-0":"اليوم","relative-type-1":"غدًا","relative-type-2":"بعد الغد","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأيام","relativeTimePattern-count-one":"خلال {0} من الأيام","relativeTimePattern-count-two":"خلال {0} من الأيام","relativeTimePattern-count-few":"خلال {0} من الأيام","relativeTimePattern-count-many":"خلال {0} من الأيام","relativeTimePattern-count-other":"خلال {0} من الأيام"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأيام","relativeTimePattern-count-one":"قبل {0} من الأيام","relativeTimePattern-count-two":"قبل {0} من الأيام","relativeTimePattern-count-few":"قبل {0} من الأيام","relativeTimePattern-count-many":"قبل {0} من الأيام","relativeTimePattern-count-other":"قبل {0} من الأيام"}},"day-narrow":{"displayName":"يوم","relative-type--1":"أمس","relative-type--2":"أول أمس","relative-type-0":"اليوم","relative-type-1":"غدًا","relative-type-2":"بعد الغد","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الأيام","relativeTimePattern-count-one":"خلال {0} من الأيام","relativeTimePattern-count-two":"خلال {0} من الأيام","relativeTimePattern-count-few":"خلال {0} من الأيام","relativeTimePattern-count-many":"خلال {0} من الأيام","relativeTimePattern-count-other":"خلال {0} من الأيام"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الأيام","relativeTimePattern-count-one":"قبل {0} من الأيام","relativeTimePattern-count-two":"قبل {0} من الأيام","relativeTimePattern-count-few":"قبل {0} من الأيام","relativeTimePattern-count-many":"قبل {0} من الأيام","relativeTimePattern-count-other":"قبل {0} من الأيام"}},"weekday":{"displayName":"اليوم"},"sun":{"relative-type--1":"الأحد الماضي","relative-type-0":"الأحد الحالي","relative-type-1":"الأحد التالي"},"sun-short":{"relative-type--1":"الأحد الماضي","relative-type-0":"الأحد الحالي","relative-type-1":"الأحد القادم"},"sun-narrow":{"relative-type--1":"الأحد الماضي","relative-type-0":"الأحد الحالي","relative-type-1":"الأحد القادم"},"mon":{"relative-type--1":"الاثنين الماضي","relative-type-0":"الاثنين الحالي","relative-type-1":"الاثنين التالي"},"mon-short":{"relative-type--1":"الاثنين الماضي","relative-type-0":"الاثنين الحالي","relative-type-1":"الاثنين القادم"},"mon-narrow":{"relative-type--1":"الاثنين الماضي","relative-type-0":"الاثنين الحالي","relative-type-1":"الاثنين القادم"},"tue":{"relative-type--1":"الثلاثاء الماضي","relative-type-0":"الثلاثاء الحالي","relative-type-1":"الثلاثاء التالي"},"tue-short":{"relative-type--1":"الثلاثاء الماضي","relative-type-0":"الثلاثاء الحالي","relative-type-1":"الثلاثاء القادم"},"tue-narrow":{"relative-type--1":"الثلاثاء الماضي","relative-type-0":"الثلاثاء الحالي","relative-type-1":"الثلاثاء القادم"},"wed":{"relative-type--1":"الأربعاء الماضي","relative-type-0":"الأربعاء الحالي","relative-type-1":"الأربعاء التالي"},"wed-short":{"relative-type--1":"الأربعاء الماضي","relative-type-0":"الأربعاء الحالي","relative-type-1":"الأربعاء القادم"},"wed-narrow":{"relative-type--1":"الأربعاء الماضي","relative-type-0":"الأربعاء الحالي","relative-type-1":"الأربعاء القادم"},"thu":{"relative-type--1":"الخميس الماضي","relative-type-0":"الخميس الحالي","relative-type-1":"الخميس التالي"},"thu-short":{"relative-type--1":"الخميس الماضي","relative-type-0":"الخميس الحالي","relative-type-1":"الخميس القادم"},"thu-narrow":{"relative-type--1":"الخميس الماضي","relative-type-0":"الخميس الحالي","relative-type-1":"الخميس القادم"},"fri":{"relative-type--1":"الجمعة الماضية","relative-type-0":"الجمعة الحالية","relative-type-1":"الجمعة التالية"},"fri-short":{"relative-type--1":"الجمعة الماضية","relative-type-0":"الجمعة الحالية","relative-type-1":"الجمعة القادمة"},"fri-narrow":{"relative-type--1":"الجمعة الماضية","relative-type-0":"الجمعة الحالية","relative-type-1":"الجمعة القادمة"},"sat":{"relative-type--1":"السبت الماضي","relative-type-0":"السبت الحالي","relative-type-1":"السبت التالي"},"sat-short":{"relative-type--1":"السبت الماضي","relative-type-0":"السبت الحالي","relative-type-1":"السبت القادم"},"sat-narrow":{"relative-type--1":"السبت الماضي","relative-type-0":"السبت الحالي","relative-type-1":"السبت القادم"},"dayperiod":{"displayName":"ص/م"},"hour":{"displayName":"الساعات","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الساعات","relativeTimePattern-count-one":"خلال {0} من الساعات","relativeTimePattern-count-two":"خلال ساعتين","relativeTimePattern-count-few":"خلال {0} ساعات","relativeTimePattern-count-many":"خلال {0} ساعة","relativeTimePattern-count-other":"خلال {0} من الساعات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الساعات","relativeTimePattern-count-one":"قبل {0} من الساعات","relativeTimePattern-count-two":"قبل ساعتين","relativeTimePattern-count-few":"قبل {0} ساعات","relativeTimePattern-count-many":"قبل {0} ساعة","relativeTimePattern-count-other":"قبل {0} من الساعات"}},"hour-short":{"displayName":"الساعات","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الساعات","relativeTimePattern-count-one":"خلال {0} من الساعات","relativeTimePattern-count-two":"خلال {0} من الساعات","relativeTimePattern-count-few":"خلال {0} من الساعات","relativeTimePattern-count-many":"خلال {0} من الساعات","relativeTimePattern-count-other":"خلال {0} من الساعات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الساعات","relativeTimePattern-count-one":"قبل {0} من الساعات","relativeTimePattern-count-two":"قبل {0} من الساعات","relativeTimePattern-count-few":"قبل {0} من الساعات","relativeTimePattern-count-many":"قبل {0} من الساعات","relativeTimePattern-count-other":"قبل {0} من الساعات"}},"hour-narrow":{"displayName":"الساعات","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الساعات","relativeTimePattern-count-one":"خلال {0} من الساعات","relativeTimePattern-count-two":"خلال {0} من الساعات","relativeTimePattern-count-few":"خلال {0} من الساعات","relativeTimePattern-count-many":"خلال {0} من الساعات","relativeTimePattern-count-other":"خلال {0} من الساعات"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الساعات","relativeTimePattern-count-one":"قبل {0} من الساعات","relativeTimePattern-count-two":"قبل {0} من الساعات","relativeTimePattern-count-few":"قبل {0} من الساعات","relativeTimePattern-count-many":"قبل {0} من الساعات","relativeTimePattern-count-other":"قبل {0} من الساعات"}},"minute":{"displayName":"الدقائق","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الدقائق","relativeTimePattern-count-one":"خلال {0} من الدقائق","relativeTimePattern-count-two":"خلال دقيقتين","relativeTimePattern-count-few":"خلال {0} دقائق","relativeTimePattern-count-many":"خلال {0} دقيقة","relativeTimePattern-count-other":"خلال {0} من الدقائق"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الدقائق","relativeTimePattern-count-one":"قبل {0} من الدقائق","relativeTimePattern-count-two":"قبل دقيقتين","relativeTimePattern-count-few":"قبل {0} دقائق","relativeTimePattern-count-many":"قبل {0} دقيقة","relativeTimePattern-count-other":"قبل {0} من الدقائق"}},"minute-short":{"displayName":"الدقائق","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الدقائق","relativeTimePattern-count-one":"خلال {0} من الدقائق","relativeTimePattern-count-two":"خلال {0} من الدقائق","relativeTimePattern-count-few":"خلال {0} من الدقائق","relativeTimePattern-count-many":"خلال {0} من الدقائق","relativeTimePattern-count-other":"خلال {0} من الدقائق"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الدقائق","relativeTimePattern-count-one":"قبل {0} من الدقائق","relativeTimePattern-count-two":"قبل {0} من الدقائق","relativeTimePattern-count-few":"قبل {0} من الدقائق","relativeTimePattern-count-many":"قبل {0} من الدقائق","relativeTimePattern-count-other":"قبل {0} من الدقائق"}},"minute-narrow":{"displayName":"الدقائق","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الدقائق","relativeTimePattern-count-one":"خلال {0} من الدقائق","relativeTimePattern-count-two":"خلال {0} من الدقائق","relativeTimePattern-count-few":"خلال {0} من الدقائق","relativeTimePattern-count-many":"خلال {0} من الدقائق","relativeTimePattern-count-other":"خلال {0} من الدقائق"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الدقائق","relativeTimePattern-count-one":"قبل {0} من الدقائق","relativeTimePattern-count-two":"قبل {0} من الدقائق","relativeTimePattern-count-few":"قبل {0} من الدقائق","relativeTimePattern-count-many":"قبل {0} من الدقائق","relativeTimePattern-count-other":"قبل {0} من الدقائق"}},"second":{"displayName":"الثواني","relative-type-0":"الآن","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الثواني","relativeTimePattern-count-one":"خلال {0} من الثواني","relativeTimePattern-count-two":"خلال ثانيتين","relativeTimePattern-count-few":"خلال {0} ثوانِ","relativeTimePattern-count-many":"خلال {0} ثانية","relativeTimePattern-count-other":"خلال {0} من الثواني"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الثواني","relativeTimePattern-count-one":"قبل {0} من الثواني","relativeTimePattern-count-two":"قبل ثانيتين","relativeTimePattern-count-few":"قبل {0} ثوانِ","relativeTimePattern-count-many":"قبل {0} ثانية","relativeTimePattern-count-other":"قبل {0} من الثواني"}},"second-short":{"displayName":"الثواني","relative-type-0":"الآن","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الثواني","relativeTimePattern-count-one":"خلال {0} من الثواني","relativeTimePattern-count-two":"خلال {0} من الثواني","relativeTimePattern-count-few":"خلال {0} من الثواني","relativeTimePattern-count-many":"خلال {0} من الثواني","relativeTimePattern-count-other":"خلال {0} من الثواني"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الثواني","relativeTimePattern-count-one":"قبل {0} من الثواني","relativeTimePattern-count-two":"قبل {0} من الثواني","relativeTimePattern-count-few":"قبل {0} من الثواني","relativeTimePattern-count-many":"قبل {0} من الثواني","relativeTimePattern-count-other":"قبل {0} من الثواني"}},"second-narrow":{"displayName":"الثواني","relative-type-0":"الآن","relativeTime-type-future":{"relativeTimePattern-count-zero":"خلال {0} من الثواني","relativeTimePattern-count-one":"خلال {0} من الثواني","relativeTimePattern-count-two":"خلال {0} من الثواني","relativeTimePattern-count-few":"خلال {0} من الثواني","relativeTimePattern-count-many":"خلال {0} من الثواني","relativeTimePattern-count-other":"خلال {0} من الثواني"},"relativeTime-type-past":{"relativeTimePattern-count-zero":"قبل {0} من الثواني","relativeTimePattern-count-one":"قبل {0} من الثواني","relativeTimePattern-count-two":"قبل {0} من الثواني","relativeTimePattern-count-few":"قبل {0} من الثواني","relativeTimePattern-count-many":"قبل {0} من الثواني","relativeTimePattern-count-other":"قبل {0} من الثواني"}},"zone":{"displayName":"التوقيت"}} \ No newline at end of file diff --git a/Punic/data/ar/languages.json b/Punic/data/ar/languages.json new file mode 100644 index 0000000..5412850 --- /dev/null +++ b/Punic/data/ar/languages.json @@ -0,0 +1 @@ +{"aa":"الأفارية","ab":"الأبخازية","ace":"الأتشينيزية","ach":"الأكولية","ada":"الأدانجمية","ady":"الأديجه","ae":"الأفستية","aeb":"aeb","af":"الأفريقانية","afh":"الأفريهيلية","agq":"الأغم","ain":"الآينوية","ak":"الأكانية","akk":"الأكادية","akz":"akz","ale":"الأليوتية","aln":"aln","alt":"الألطائية الجنوبية","am":"الأمهرية","an":"الأراجونية","ang":"الإنجليزية القديمة","anp":"الأنجيكا","ar":"العربية","ar-001":"العربية الرسمية الحديثة","arc":"الآرامية","arn":"الأروكانية","aro":"aro","arp":"الأراباهو","arq":"arq","arw":"الأراواكية","ary":"ary","arz":"arz","as":"الأسامية","asa":"آسو","ase":"ase","ast":"الأسترية","av":"الأفاريكية","avk":"avk","awa":"الأوادية","ay":"الأيمارا","az":"الأذربيجانية","az-alt-short":"الأذرية","azb":"azb","ba":"الباشكيرية","bal":"البلوشية","ban":"اللغة البالية","bar":"bar","bas":"الباسا","bax":"بامن","bbc":"bbc","bbj":"bbj","be":"البيلوروسية","bej":"البيجا","bem":"البيمبا","bew":"bew","bez":"بينا","bfd":"bfd","bfq":"bfq","bg":"البلغارية","bho":"البهوجبرية","bi":"البيسلامية","bik":"البيكولية","bin":"البينية","bjn":"bjn","bkm":"bkm","bla":"السيكسيكية","bm":"البامبارا","bn":"البنغالية","bo":"التبتية","bpy":"bpy","bqi":"bqi","br":"البريتونية","bra":"البراجية","brh":"brh","brx":"البودو","bs":"البوسنية","bss":"أكوس","bua":"البرياتية","bug":"البجينيزية","bum":"bum","byn":"البلينية","byv":"byv","ca":"الكتالانية","cad":"الكادو","car":"الكاريبية","cay":"cay","cch":"الأتسام","ce":"الشيشانية","ceb":"السيبيونو","cgg":"تشيغا","ch":"التشامورو","chb":"التشيبشا","chg":"التشاجاتاي","chk":"التشكيزية","chm":"الماري","chn":"الشينوك جارجون","cho":"الشوكتو","chp":"الشيباوايان","chr":"الشيروكي","chy":"الشايان","ckb":"السريانية الكردية","co":"الكورسيكية","cop":"القبطية","cps":"cps","cr":"الكرى","crh":"التركية الكريمينية","cs":"التشيكية","csb":"الكاشبايان","cu":"سلافية كنسية","cv":"التشفاش","cy":"الولزية","da":"الدانماركية","dak":"الداكوتا","dar":"الدارجوا","dav":"تيتا","de":"الألمانية","de-AT":"الألمانية النمساوية","de-CH":"الألمانية العليا السويسرية","del":"الديلوير","den":"السلافية","dgr":"الدوجريب","din":"الدنكا","dje":"الزارمية","doi":"الدوجري","dsb":"الصربية السفلى","dtp":"dtp","dua":"الديولا","dum":"الهولندية الوسطى","dv":"المالديفية","dyo":"جولا فونيا","dyu":"الدايلا","dz":"الزونخاية","dzg":"القرعانية","ebu":"إمبو","ee":"الإيوي","efi":"الإفيك","egl":"egl","egy":"المصرية القديمة","eka":"الإكاجك","el":"اليونانية","elx":"الإمايت","en":"الإنجليزية","en-AU":"الإنجليزية الأسترالية","en-CA":"الإنجليزية الكندية","en-GB":"الإنجليزية البريطانية","en-GB-alt-short":"الإنجليزية المملكة المتحدة","en-US":"الإنجليزية الولايات المتحدة","en-US-alt-short":"الإنجليزية الولايات المتحدة","enm":"الإنجليزية الوسطى","eo":"الإسبرانتو","es":"الإسبانية","es-419":"إسبانية أمريكا اللاتينية","es-ES":"الإسبانية الأوروبية","es-MX":"es_MX","esu":"esu","et":"الإستونية","eu":"لغة الباسك","ewo":"الإيوندو","ext":"ext","fa":"الفارسية","fan":"الفانج","fat":"الفانتي","ff":"الفلة","fi":"الفنلندية","fil":"الفلبينية","fit":"fit","fj":"الفيجية","fo":"الفارويز","fon":"الفون","fr":"الفرنسية","fr-CA":"الفرنسية الكندية","fr-CH":"الفرنسية السويسرية","frc":"frc","frm":"الفرنسية الوسطى","fro":"الفرنسية القديمة","frp":"frp","frr":"الفريزينية الشمالية","frs":"الفريزينية الشرقية","fur":"الفريلايان","fy":"الفريزيان","ga":"الأيرلندية","gaa":"الجا","gag":"الغاغوز","gan":"gan","gay":"الجايو","gba":"الجبيا","gbz":"gbz","gd":"الغيلية الأسكتلندية","gez":"الجيز","gil":"لغة أهل جبل طارق","gl":"الجاليكية","glk":"glk","gmh":"الألمانية العليا الوسطى","gn":"الجواراني","goh":"الألمانية العليا القديمة","gom":"gom","gon":"الجندي","gor":"الجورونتالو","got":"القوطية","grb":"الجريبو","grc":"اليونانية القديمة","gsw":"الألمانية السويسرية","gu":"الغوجاراتية","guc":"guc","gur":"gur","guz":"الغيزية","gv":"المنكية","gwi":"غوتشن","ha":"الهوسا","hai":"الهيدا","hak":"hak","haw":"لغة أهل الهاواي","he":"العبرية","hi":"الهندية","hif":"hif","hil":"الهيليجينون","hit":"الحثية","hmn":"الهمونجية","ho":"الهيري موتو","hr":"الكرواتية","hsb":"الصربية العليا","hsn":"hsn","ht":"الهايتية","hu":"الهنغارية","hup":"الهبا","hy":"الأرمينية","hz":"الهيريرو","ia":"اللّغة الوسيطة","iba":"الإيبان","ibb":"ibb","id":"الإندونيسية","ie":"الإنترلينج","ig":"الإيجبو","ii":"السيتشيون يي","ik":"الإينبياك","ilo":"الإيلوكو","inh":"الإنجوشية","io":"الإيدو","is":"الأيسلاندية","it":"الإيطالية","iu":"الإينكتيتت","izh":"izh","ja":"اليابانية","jam":"jam","jbo":"اللوجبان","jgo":"نغومبا","jmc":"ماتشيم","jpr":"الجيدو - الفارسي","jrb":"الجيدو - العربي","jut":"jut","jv":"الجاوية","ka":"الجورجية","kaa":"الكارا-كالباك","kab":"القبيلية","kac":"الكاتشين","kaj":"الجو","kam":"الكامبا","kaw":"الكوي","kbd":"الكاباردايان","kbl":"كانمبو","kcg":"kcg","kde":"ماكونده","kea":"كابوفيرديانو","ken":"ken","kfo":"الكورو","kg":"الكونغو","kgp":"kgp","kha":"الكازية","kho":"الخوتانيز","khq":"كويرا تشيني","khw":"khw","ki":"الكيكيو","kiu":"kiu","kj":"الكيونياما","kk":"الكازاخستانية","kkj":"kkj","kl":"الكالاليست","kln":"كالينجين","km":"الخميرية","kmb":"الكيمبندو","kn":"الكانادا","ko":"الكورية","koi":"كومي-بيرماياك","kok":"الكونكانية","kos":"الكوسراين","kpe":"الكبيل","kr":"الكانيوري","krc":"الكاراتشاي-بالكار","kri":"kri","krj":"krj","krl":"الكريلية","kru":"كرخانة","ks":"الكشميرية","ksb":"شامبالا","ksf":"بافيا","ksh":"ksh","ku":"الكردية","kum":"الكميك","kut":"الكتيناي","kv":"الكومي","kw":"الكورنية","ky":"القرغيزية","la":"اللاتينية","lad":"الإسباعبرية","lag":"لانجي","lah":"اللاهندا","lam":"اللامبا","lb":"اللوكسمبرجية","lez":"الليزجهايانية","lfn":"lfn","lg":"الجاندا","li":"الليمبرجيشية","lij":"lij","liv":"liv","lkt":"لاكوتا","lmo":"lmo","ln":"اللينجالا","lo":"اللاوية","lol":"منغولى","loz":"اللوزي","lt":"اللتوانية","ltg":"ltg","lu":"اللبا-كاتانجا","lua":"اللبا-لؤلؤ","lui":"اللوسينو","lun":"اللوندا","luo":"اللو","lus":"اللشاي","luy":"لويا","lv":"اللاتفية","lzh":"lzh","lzz":"lzz","mad":"المادريز","maf":"maf","mag":"الماجا","mai":"المايثيلي","mak":"الماكاسار","man":"الماندينغ","mas":"الماساي","mde":"مابا","mdf":"الموكشا","mdr":"الماندار","men":"الميند","mer":"ميرو","mfe":"المورسيانية","mg":"المالاجاشية","mga":"الأيرلندية الوسطى","mgh":"ماخاوا-ميتو","mgo":"ميتا","mh":"المارشالية","mi":"الماورية","mic":"الميكماكيونية","min":"المينانجكاباو","mk":"المقدونية","ml":"الماليالام","mn":"المنغولية","mnc":"المانشو","mni":"المانيبري","moh":"الموهوك","mos":"الموسي","mr":"الماراثي","mrj":"mrj","ms":"لغة الملايو","mt":"المالطية","mua":"مندنج","mul":"لغات متعددة","mus":"الكريك","mwl":"الميرانديز","mwr":"المارواري","mwv":"mwv","my":"البورمية","mye":"mye","myv":"الأرزية","mzn":"mzn","na":"النورو","nan":"nan","nap":"اللغة النابولية","naq":"ناما","nb":"البوكمالية النرويجية","nd":"النديبيل الشمالي","nds":"الألمانية السفلى","ne":"النيبالية","new":"النيواري","ng":"الندونجا","nia":"النياس","niu":"النيوي","njo":"njo","nl":"الهولندية","nl-BE":"الفلمنك","nmg":"كواسيو","nn":"النينورسك النرويجي","nnh":"nnh","no":"النرويجية","nog":"النوجاي","non":"النورس القديم","nov":"nov","nqo":"أنكو","nr":"النديبيل الجنوبي","nso":"السوتو الشمالية","nus":"النوير","nv":"النافاجو","nwc":"النوارية التقليدية","ny":"النيانجا","nym":"النيامويزي","nyn":"النيانكول","nyo":"النيورو","nzi":"النزيما","oc":"الأوكيتانية","oj":"الأوجيبوا","om":"الأورومو","or":"الأورييا","os":"الأوسيتيك","osa":"الأوساج","ota":"التركية العثمانية","pa":"البنجابية","pag":"البانجاسينان","pal":"البهلوية","pam":"البامبانجا","pap":"البابيامينتو","pau":"البالوان","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"الفارسية القديمة","pfl":"pfl","phn":"الفينيقية","pi":"البالية","pl":"البولندية","pms":"pms","pnt":"pnt","pon":"البوهنبيايان","prg":"prg","pro":"البروفانسية القديمة","ps":"البشتونية","ps-alt-variant":"بشتو","pt":"البرتغالية","pt-BR":"البرتغالية البرازيلية","pt-PT":"البرتغالية الأوروبية","qu":"الكويتشوا","quc":"كيشي","qug":"qug","raj":"الراجاسثانية","rap":"الراباني","rar":"الراروتونجاني","rgn":"rgn","rif":"rif","rm":"الرومانشية","rn":"الرندي","ro":"الرومانية","ro-MD":"المولدوفية","rof":"رومبو","rom":"غجري","root":"الجذر","rtm":"rtm","ru":"الروسية","rue":"rue","rug":"rug","rup":"الأرومانيان","rw":"الكينيارواندا","rwk":"روا","sa":"السنسكريتية","sad":"السانداوي","sah":"الساخية","sam":"الآرامية السومارية","saq":"سامبورو","sas":"الساساك","sat":"السانتالي","saz":"saz","sba":"نامبي","sbp":"سانغو","sc":"السردينية","scn":"الصقلية","sco":"الأسكتلندية","sd":"السندية","sdc":"sdc","se":"السامي الشمالي","see":"see","seh":"سينا","sei":"sei","sel":"السيلكب","ses":"كويرابورو سيني","sg":"السانجو","sga":"الأيرلندية القديمة","sgs":"sgs","sh":"sh","shi":"تشلحيت","shn":"الشانية","shu":"العربية التشادية","si":"السنهالية","sid":"السيدامو","sk":"السلوفاكية","sl":"السلوفانية","sli":"sli","sly":"sly","sm":"الساموائية","sma":"السامي الجنوبي","smj":"اللول سامي","smn":"الإيناري سامي","sms":"السكولت سامي","sn":"الشونا","snk":"السونينك","so":"الصومالية","sog":"السوجدين","sq":"الألبانية","sr":"الصربية","srn":"السرانان تونجو","srr":"السرر","ss":"السواتي","ssy":"ssy","st":"السوتو الجنوبية","stq":"stq","su":"السوندانية","suk":"السوكوما","sus":"السوسو","sux":"السومارية","sv":"السويدية","sw":"السواحلية","swb":"القمرية","swc":"الكونغو السواحلية","syc":"سريانية تقليدية","syr":"السريانية","szl":"szl","ta":"التاميلية","tcy":"tcy","te":"التيلجو","tem":"التيمن","teo":"تيسو","ter":"التيرينو","tet":"التيتم","tg":"الطاجيكية","th":"التايلاندية","ti":"التيجرينيا","tig":"التيجر","tiv":"التيف","tk":"التركمانية","tkl":"التوكيلاو","tkr":"tkr","tl":"التاغالوغية","tlh":"الكلينجون","tli":"التلينغيتية","tly":"tly","tmh":"التاماشيك","tn":"التسوانية","to":"التونغية","tog":"تونجا - نياسا","tpi":"التوك بيسين","tr":"التركية","tru":"tru","trv":"trv","ts":"السونجا","tsd":"tsd","tsi":"التسيمشيان","tt":"التتارية","ttt":"ttt","tum":"التامبوكا","tvl":"التوفالو","tw":"التوي","twq":"تاساواق","ty":"التاهيتية","tyv":"التُرك","tzm":"الأمازيغية وسط الأطلس","udm":"الأدمرت","ug":"الأغورية","ug-alt-variant":"الأيغورية","uga":"اليجاريتيك","uk":"الأوكرانية","umb":"الأمبندو","und":"لغة غير معروفة","ur":"الأردية","uz":"الأوزباكية","vai":"الفاي","ve":"الفيندا","vec":"vec","vep":"vep","vi":"الفيتنامية","vls":"vls","vmf":"vmf","vo":"vo","vot":"الفوتيك","vro":"vro","vun":"فونجو","wa":"الولونية","wae":"wae","wal":"الوالامو","war":"الواراي","was":"الواشو","wo":"الولوف","wuu":"wuu","xal":"الكالميك","xh":"الخوسا","xmf":"xmf","xog":"سوجا","yao":"الياو","yap":"اليابيز","yav":"يانجبن","ybb":"ybb","yi":"اليديشية","yo":"اليوروبية","yrl":"yrl","yue":"الكَنْتُونية","za":"الزهيونج","zap":"الزابوتيك","zbl":"رموز المعايير الأساسية","zea":"zea","zen":"الزيناجا","zgh":"التمازيغية المغربية القياسية","zh":"الصينية","zh-Hans":"الصينية المبسطة","zh-Hant":"الصينية التقليدية","zu":"الزولو","zun":"الزونية","zxx":"بدون محتوى لغوي","zza":"زازا"} \ No newline at end of file diff --git a/Punic/data/ar/listPatterns.json b/Punic/data/ar/listPatterns.json new file mode 100644 index 0000000..3d3a4fb --- /dev/null +++ b/Punic/data/ar/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s، %2$s","middle":"%1$s، %2$s","end":"%1$s، و %2$s","2":"%1$s و %2$s"},"unit":{"start":"%1$s، %2$s","middle":"%1$s، %2$s","end":"%1$s، و %2$s","2":"%1$s و %2$s"},"unit-narrow":{"start":"%1$s، %2$s","middle":"%1$s، %2$s","end":"%1$s، و %2$s","2":"%1$s و %2$s"},"unit-short":{"start":"%1$s، %2$s","middle":"%1$s، %2$s","end":"%1$s، و %2$s","2":"%1$s و %2$s"}} \ No newline at end of file diff --git a/Punic/data/ar/localeDisplayNames.json b/Punic/data/ar/localeDisplayNames.json new file mode 100644 index 0000000..b2c2007 --- /dev/null +++ b/Punic/data/ar/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s، %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"التقويم","colAlternate":"التصنيف بحسب تجاهل الرموز","colBackwards":"التصنيف بحسب اللكنة المعكوسة","colCaseFirst":"الترتيب بحسب الأحرف الكبيرة/الصغيرة","colCaseLevel":"التصنيف بحسب حساسية حالة الأحرف","colHiraganaQuaternary":"التصنيف بحسب الكانا","colNormalization":"التصنيف الموحد","colNumeric":"التصنيف الرقمي","colStrength":"قوة التصنيف","collation":"ترتيب الفرز","currency":"العملة","numbers":"الأرقام","timezone":"المنطقة الزمنية","va":"متغيرات اللغة","variableTop":"تصنيف كرموز","x":"استخدام خاص"},"types":{"numbers":{"vaii":"أرقام فاي"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"تقويم مينجو"},"colStrength":{"tertiary":"تصنيف اللكنات/الحالة/العرض"},"colCaseFirst":{"upper":"تصنيف الأحرف الكبيرة أولاً"},"colBackwards":{"yes":"تصنيف اللكنات معكوسة"},"colCaseLevel":{"yes":"تصنيف بحسب حساسية الأحرف"},"colHiraganaQuaternary":{"yes":"تصنيف الكانا بشكل مختلف"},"colNormalization":{"yes":"تصنيف Unicode طبيعي"},"colNumeric":{"yes":"تصنيف الأرقام بالعدد"},"colAlternate":{"shifted":"تصنيف تجاهل الرموز"}},"codePatterns":{"language":"اللغة: %1$s","script":"نظام الكتابة: %1$s","territory":"المنطقة: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ar/numbers.json b/Punic/data/ar/numbers.json new file mode 100644 index 0000000..01e5597 --- /dev/null +++ b/Punic/data/ar/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"‎+","minusSign":"‎-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ar/territories.json b/Punic/data/ar/territories.json new file mode 100644 index 0000000..4ebe603 --- /dev/null +++ b/Punic/data/ar/territories.json @@ -0,0 +1 @@ +{"001":"العالم","002":"أفريقيا","003":"أمريكا الشمالية","005":"أمريكا الجنوبية","009":"أوقيانوسيا","011":"غرب أفريقيا","013":"أمريكا الوسطى","014":"شرق أفريقيا","015":"شمال أفريقيا","017":"وسط أفريقيا","018":"أفريقيا الجنوبية","019":"الأمريكتين","021":"شمال أمريكا","029":"الكاريبي","030":"شرق آسيا","034":"جنوب آسيا","035":"جنوب شرق آسيا","039":"جنوب أوروبا","053":"أسترالاسيا","054":"ميلانيزيا","057":"الجزر الميكرونيزية","061":"بولينيزيا","142":"آسيا","143":"وسط آسيا","145":"غرب آسيا","150":"أوروبا","151":"شرق أوروبا","154":"شمال أوروبا","155":"غرب أوروبا","419":"أمريكا اللاتينية","AC":"جزيرة أسينشيون","AD":"أندورا","AE":"الإمارات العربية المتحدة","AF":"أفغانستان","AG":"أنتيغوا وبربودا","AI":"أنغويلا","AL":"ألبانيا","AM":"أرمينيا","AN":"جزر الأنتيل الهولندية","AO":"أنغولا","AQ":"أنتاركتيكا","AR":"الأرجنتين","AS":"ساموا الأمريكية","AT":"النمسا","AU":"أستراليا","AW":"آروبا","AX":"جزر آلاند","AZ":"أذربيجان","BA":"البوسنة والهرسك","BB":"بربادوس","BD":"بنجلاديش","BE":"بلجيكا","BF":"بوركينا فاسو","BG":"بلغاريا","BH":"البحرين","BI":"بوروندي","BJ":"بنين","BL":"سان بارتليمي","BM":"برمودا","BN":"بروناي","BO":"بوليفيا","BQ":"هولندا الكاريبية","BR":"البرازيل","BS":"الباهاما","BT":"بوتان","BV":"جزيرة بوفيه","BW":"بتسوانا","BY":"روسيا البيضاء","BZ":"بليز","CA":"كندا","CC":"جزر كوكوس","CD":"الكونغو - كينشاسا","CD-alt-variant":"جمهورية الكونغو الديمقراطية","CF":"جمهورية أفريقيا الوسطى","CG":"الكونغو - برازافيل","CG-alt-variant":"جمهورية الكونغو","CH":"سويسرا","CI":"ساحل العاج","CI-alt-variant":"CI","CK":"جزر كوك","CL":"شيلي","CM":"الكاميرون","CN":"الصين","CO":"كولومبيا","CP":"جزيرة كليبيرتون","CR":"كوستاريكا","CU":"كوبا","CV":"الرأس الأخضر","CW":"كوراساو","CX":"جزيرة الكريسماس","CY":"قبرص","CZ":"جمهورية التشيك","DE":"ألمانيا","DG":"دييغو غارسيا","DJ":"جيبوتي","DK":"الدانمرك","DM":"دومينيكا","DO":"جمهورية الدومينيك","DZ":"الجزائر","EA":"سيوتا وميليلا","EC":"الإكوادور","EE":"أستونيا","EG":"مصر","EH":"الصحراء الغربية","ER":"أريتريا","ES":"إسبانيا","ET":"إثيوبيا","EU":"الاتحاد الأوروبي","FI":"فنلندا","FJ":"فيجي","FK":"جزر فوكلاند","FK-alt-variant":"جزر فوكلاند - جزر مالفيناس","FM":"ميكرونيزيا","FO":"جزر فارو","FR":"فرنسا","GA":"الجابون","GB":"المملكة المتحدة","GB-alt-short":"المملكة المتحدة","GD":"غرينادا","GE":"جورجيا","GF":"غويانا الفرنسية","GG":"غيرنزي","GH":"غانا","GI":"جبل طارق","GL":"غرينلاند","GM":"غامبيا","GN":"غينيا","GP":"جوادلوب","GQ":"غينيا الإستوائية","GR":"اليونان","GS":"جورجيا الجنوبية وجزر ساندويتش الجنوبية","GT":"غواتيمالا","GU":"غوام","GW":"غينيا بيساو","GY":"غيانا","HK":"هونغ كونغ الصينية","HK-alt-short":"هونغ كونغ","HM":"جزيرة هيرد وجزر ماكدونالد","HN":"هندوراس","HR":"كرواتيا","HT":"هايتي","HU":"هنغاريا","IC":"جزر الكناري","ID":"أندونيسيا","IE":"أيرلندا","IL":"إسرائيل","IM":"جزيرة مان","IN":"الهند","IO":"الإقليم البريطاني في المحيط الهندي","IQ":"العراق","IR":"إيران","IS":"أيسلندا","IT":"إيطاليا","JE":"جيرسي","JM":"جامايكا","JO":"الأردن","JP":"اليابان","KE":"كينيا","KG":"قرغيزستان","KH":"كمبوديا","KI":"كيريباتي","KM":"جزر القمر","KN":"سانت كيتس ونيفيس","KP":"كوريا الشمالية","KR":"كوريا الجنوبية","KW":"الكويت","KY":"جزر الكايمن","KZ":"كازاخستان","LA":"لاوس","LB":"لبنان","LC":"سانت لوسيا","LI":"ليختنشتاين","LK":"سريلانكا","LR":"ليبيريا","LS":"ليسوتو","LT":"ليتوانيا","LU":"لوكسمبورغ","LV":"لاتفيا","LY":"ليبيا","MA":"المغرب","MC":"موناكو","MD":"مولدافيا","ME":"الجبل الأسود","MF":"سانت مارتن","MG":"مدغشقر","MH":"جزر المارشال","MK":"مقدونيا","MK-alt-variant":"مقدونيا- جمهورية مقدونيا اليوغسلافية السابقة","ML":"مالي","MM":"ميانمار -بورما","MN":"منغوليا","MO":"مكاو الصينية (منطقة إدارية خاصة)","MO-alt-short":"مكاو","MP":"جزر ماريانا الشمالية","MQ":"مارتينيك","MR":"موريتانيا","MS":"مونتسرات","MT":"مالطا","MU":"موريشيوس","MV":"جزر المالديف","MW":"ملاوي","MX":"المكسيك","MY":"ماليزيا","MZ":"موزمبيق","NA":"ناميبيا","NC":"كاليدونيا الجديدة","NE":"النيجر","NF":"جزيرة نورفوك","NG":"نيجيريا","NI":"نيكاراغوا","NL":"هولندا","NO":"النرويج","NP":"نيبال","NR":"ناورو","NU":"نيوي","NZ":"نيوزيلاندا","OM":"عُمان","PA":"بنما","PE":"بيرو","PF":"بولينيزيا الفرنسية","PG":"بابوا غينيا الجديدة","PH":"الفلبين","PK":"باكستان","PL":"بولندا","PM":"سانت بيير وميكولون","PN":"جزر بيتكيرن","PR":"بورتوريكو","PS":"الأراضي الفلسطينية","PS-alt-short":"فلسطين","PT":"البرتغال","PW":"بالاو","PY":"باراغواي","QA":"قطر","QO":"أوقيانوسيا النائية","RE":"روينيون","RO":"رومانيا","RS":"صربيا","RU":"روسيا","RW":"رواندا","SA":"المملكة العربية السعودية","SB":"جزر سليمان","SC":"سيشل","SD":"السودان","SE":"السويد","SG":"سنغافورة","SH":"سانت هيلنا","SI":"سلوفينيا","SJ":"سفالبارد وجان مايان","SK":"سلوفاكيا","SL":"سيراليون","SM":"سان مارينو","SN":"السنغال","SO":"الصومال","SR":"سورينام","SS":"جنوب السودان","ST":"ساو تومي وبرينسيبي","SV":"السلفادور","SX":"سينت مارتن","SY":"سوريا","SZ":"سوازيلاند","TA":"تريستان دي كونها","TC":"جزر الترك وجايكوس","TD":"تشاد","TF":"المقاطعات الجنوبية الفرنسية","TG":"توجو","TH":"تايلاند","TJ":"طاجكستان","TK":"توكيلو","TL":"تيمور الشرقية","TL-alt-variant":"TL","TM":"تركمانستان","TN":"تونس","TO":"تونغا","TR":"تركيا","TT":"ترينيداد وتوباغو","TV":"توفالو","TW":"تايوان","TZ":"تانزانيا","UA":"أوكرانيا","UG":"أوغندا","UM":"جزر الولايات المتحدة النائية","US":"الولايات المتحدة","US-alt-short":"الولايات المتحدة","UY":"أورغواي","UZ":"أوزبكستان","VA":"الفاتيكان","VC":"سانت فنسنت وغرنادين","VE":"فنزويلا","VG":"جزر فرجين البريطانية","VI":"جزر فرجين الأمريكية","VN":"فيتنام","VU":"فانواتو","WF":"جزر والس وفوتونا","WS":"ساموا","XK":"كوسوفو","YE":"اليمن","YT":"مايوت","ZA":"جنوب أفريقيا","ZM":"زامبيا","ZW":"زيمبابوي","ZZ":"منطقة غير معروفة"} \ No newline at end of file diff --git a/Punic/data/ar/timeZoneNames.json b/Punic/data/ar/timeZoneNames.json new file mode 100644 index 0000000..4ea7029 --- /dev/null +++ b/Punic/data/ar/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"جرينتش%1$s","gmtZeroFormat":"جرينتش","regionFormat":"توقيت %1$s","regionFormat-type-standard":"توقيت %1$s الرسمي","regionFormat-type-daylight":"توقيت %1$s الصيفي","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"أداك"},"Anchorage":{"exemplarCity":"أنشوراج"},"Anguilla":{"exemplarCity":"أنغيلا"},"Antigua":{"exemplarCity":"أنتيغوا"},"Araguaina":{"exemplarCity":"أروجوانيا"},"Argentina":{"La_Rioja":{"exemplarCity":"لا ريوجا"},"Rio_Gallegos":{"exemplarCity":"ريو جالييوس"},"Salta":{"exemplarCity":"سالطا"},"San_Juan":{"exemplarCity":"سان خوان"},"San_Luis":{"exemplarCity":"سان لويس"},"Tucuman":{"exemplarCity":"تاكمان"},"Ushuaia":{"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":"السلفادور"},"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":{"Knox":{"exemplarCity":"كونكس"},"Marengo":{"exemplarCity":"مارنجو"},"Petersburg":{"exemplarCity":"بيترسبرغ"},"Tell_City":{"exemplarCity":"مدينة تل، إنديانا"},"Vevay":{"exemplarCity":"فيفاي"},"Vincennes":{"exemplarCity":"فينسينس"},"Winamac":{"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":"بيولا، داكوتا الشمالية"},"Center":{"exemplarCity":"سنتر"},"New_Salem":{"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":"أندورا"},"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":"كييف"},"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":"تيرانا"},"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":"بانكوك"},"Beirut":{"exemplarCity":"بيروت"},"Bishkek":{"exemplarCity":"بشكيك"},"Brunei":{"exemplarCity":"بروناي"},"Calcutta":{"exemplarCity":"كالكتا"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"تشوبالسان"},"Chongqing":{"exemplarCity":"تشونجكينج"},"Colombo":{"exemplarCity":"كولومبو"},"Damascus":{"exemplarCity":"دمشق"},"Dhaka":{"exemplarCity":"دكا"},"Dili":{"exemplarCity":"ديلي"},"Dubai":{"exemplarCity":"دبي"},"Dushanbe":{"exemplarCity":"دوشانبي"},"Gaza":{"exemplarCity":"غزة"},"Harbin":{"exemplarCity":"هاربين"},"Hebron":{"exemplarCity":"هيبرون (مدينة الخليل)"},"Hong_Kong":{"exemplarCity":"هونغ كونغ"},"Hovd":{"exemplarCity":"هوفد"},"Irkutsk":{"exemplarCity":"ايركيتسك"},"Jakarta":{"exemplarCity":"جاكرتا"},"Jayapura":{"exemplarCity":"جايابيورا"},"Jerusalem":{"exemplarCity":"القدس"},"Kabul":{"exemplarCity":"كابول"},"Kamchatka":{"exemplarCity":"كامتشاتكا"},"Karachi":{"exemplarCity":"كراتشي"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"تايبيه"},"Tashkent":{"exemplarCity":"طشقند"},"Tbilisi":{"exemplarCity":"تبليسي"},"Tehran":{"exemplarCity":"طهران"},"Thimphu":{"exemplarCity":"تيمفو"},"Tokyo":{"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":"أوكلاند"},"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":"توقيت المقاطعات الفرنسية الجنوبية والأنتارتيكية"}},"GMT":{"long":{"standard":"توقيت غرينتش"}},"Galapagos":{"long":{"standard":"توقيت غلاباغوس"}},"Gambier":{"long":{"standard":"توقيت جامبير"}},"Georgia":{"long":{"generic":"توقيت جورجيا","standard":"توقيت جورجيا الرسمي","daylight":"توقيت جورجيا الصيفي"}},"Gilbert_Islands":{"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":"توقيت بونابي"}},"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":"توقيت يكاترينبورغ الصيفي"}}}} \ No newline at end of file diff --git a/Punic/data/ar/units.json b/Punic/data/ar/units.json new file mode 100644 index 0000000..94a2bf4 --- /dev/null +++ b/Punic/data/ar/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s كل %2$s","acceleration":{"g-force":{"_name":"قوة تسارع","zero":"%1$s قوة تسارع","one":"%1$s قوة تسارع","two":"%1$s قوة تسارع","few":"%1$s قوة تسارع","many":"%1$s قوة تسارع","other":"%1$s قوة تسارع"},"meter-per-second-squared":{"_name":"متر في الثانية المربعة","zero":"%1$s متر في الثانية المربعة","one":"%1$s متر في الثانية المربعة","two":"%1$s متر في الثانية المربعة","few":"%1$s متر في الثانية المربعة","many":"%1$s متر في الثانية المربعة","other":"%1$s متر في الثانية المربعة"}},"angle":{"arc-minute":{"_name":"دقيقة قوسية","zero":"%1$s من الدقائق","one":"%1$s دقيقة","two":"دقيقتان (%1$s)","few":"%1$s دقائق","many":"%1$s دقيقة","other":"%1$s من الدقائق"},"arc-second":{"_name":"ثانية قوسية","zero":"%1$s من الثواني","one":"%1$s ثانية","two":"ثانيتان (%1$s)","few":"%1$s ثوانٍ","many":"%1$s ثانية","other":"%1$s من الثواني"},"degree":{"_name":"درجة","zero":"%1$s من الدرجات","one":"%1$s درجة","two":"درجتان (%1$s)","few":"%1$s درجات","many":"%1$s درجة","other":"%1$s من الدرجات"},"radian":{"_name":"راديان","zero":"%1$s راديان","one":"%1$s راديان","two":"%1$s راديان","few":"%1$s راديان","many":"%1$s راديان","other":"%1$s راديان"}},"area":{"acre":{"_name":"فدان","zero":"%1$s من الفدادين","one":"%1$s فدان","two":"فدانان (%1$s)","few":"%1$s فدادين","many":"%1$s فدانًا","other":"%1$s من الفدادين"},"hectare":{"_name":"هكتار","zero":"%1$s من الهكتارات","one":"%1$s هكتار","two":"هكتاران (%1$s)","few":"%1$s هكتارات","many":"%1$s هكتارًا","other":"%1$s من الهكتارات"},"square-centimeter":{"_name":"سنتيمتر مربع","zero":"%1$s سنتيمتر مربع","one":"%1$s سنتيمتر مربع","two":"%1$s سنتيمتر مربع","few":"%1$s سنتيمتر مربع","many":"%1$s سنتيمتر مربع","other":"%1$s سنتيمتر مربع"},"square-foot":{"_name":"قدم مربعة","zero":"%1$s من الأقدام المربعة","one":"%1$s قدم مربعة","two":"قدمان مربعان (%1$s)","few":"%1$s أقدام مربعة","many":"%1$s قدمًا مربعًا","other":"%1$s من الأقدام المربعة"},"square-inch":{"_name":"بوصة مربعة","zero":"%1$s بوصة مربعة","one":"%1$s بوصة مربعة","two":"%1$s بوصة مربعة","few":"%1$s بوصة مربعة","many":"%1$s بوصة مربعة","other":"%1$s بوصة مربعة"},"square-kilometer":{"_name":"كيلومتر مربع","zero":"%1$s كيلومتر مربع","one":"%1$s كيلومتر مربع","two":"%1$s كيلومتر مربع","few":"%1$s كيلومتر مربع","many":"%1$s كيلومتر مربع","other":"%1$s كيلومتر مربع"},"square-meter":{"_name":"متر مربع","zero":"%1$s متر مربع","one":"%1$s متر مربع","two":"%1$s متر مربع","few":"%1$s متر مربع","many":"%1$s متر مربع","other":"%1$s متر مربع"},"square-mile":{"_name":"ميل مربع","zero":"%1$s ميل مربع","one":"%1$s ميل مربع","two":"%1$s ميل مربع","few":"%1$s ميل مربع","many":"%1$s ميل مربع","other":"%1$s ميل مربع"},"square-yard":{"_name":"ياردة مربعة","zero":"%1$s ياردة مربعة","one":"%1$s ياردة مربعة","two":"%1$s ياردة مربعة","few":"%1$s ياردة مربعة","many":"%1$s ياردة مربعة","other":"%1$s ياردة مربعة"}},"consumption":{"liter-per-kilometer":{"_name":"لتر لكل كيلومتر","zero":"%1$s لتر لكل كيلومتر","one":"%1$s لتر لكل كيلومتر","two":"%1$s لتر لكل كيلومتر","few":"%1$s لتر لكل كيلومتر","many":"%1$s لتر لكل كيلومتر","other":"%1$s لتر لكل كيلومتر"},"mile-per-gallon":{"_name":"ميل لكل غالون","zero":"%1$s ميل لكل غالون","one":"%1$s ميل لكل غالون","two":"%1$s ميل لكل غالون","few":"%1$s ميل لكل غالون","many":"%1$s ميل لكل غالون","other":"%1$s ميل لكل غالون"}},"digital":{"bit":{"_name":"بت","zero":"%1$s بت","one":"%1$s بت","two":"%1$s بت","few":"%1$s بت","many":"%1$s بت","other":"%1$s بت"},"byte":{"_name":"بايت","zero":"%1$s بايت","one":"%1$s بايت","two":"%1$s بايت","few":"%1$s بايت","many":"%1$s بايت","other":"%1$s بايت"},"gigabit":{"_name":"غيغابت","zero":"%1$s غيغابت","one":"%1$s غيغابت","two":"%1$s غيغابت","few":"%1$s غيغابت","many":"%1$s غيغابت","other":"%1$s غيغابت"},"gigabyte":{"_name":"غيغابايت","zero":"%1$s غيغابايت","one":"%1$s غيغابايت","two":"%1$s غيغابايت","few":"%1$s غيغابايت","many":"%1$s غيغابايت","other":"%1$s غيغابايت"},"kilobit":{"_name":"كيلوبت","zero":"%1$s كيلوبت","one":"%1$s كيلوبت","two":"%1$s كيلوبت","few":"%1$s كيلوبت","many":"%1$s كيلوبت","other":"%1$s كيلوبت"},"kilobyte":{"_name":"كيلوبايت","zero":"%1$s كيلوبايت","one":"%1$s كيلوبايت","two":"%1$s كيلوبايت","few":"%1$s كيلوبايت","many":"%1$s كيلوبايت","other":"%1$s كيلوبايت"},"megabit":{"_name":"ميغابت","zero":"%1$s ميغابت","one":"%1$s ميغابت","two":"%1$s ميغابت","few":"%1$s ميغابت","many":"%1$s ميغابت","other":"%1$s ميغابت"},"megabyte":{"_name":"ميغابايت","zero":"%1$s ميغابايت","one":"%1$s ميغابايت","two":"%1$s ميغابايت","few":"%1$s ميغابايت","many":"%1$s ميغابايت","other":"%1$s ميغابايت"},"terabit":{"_name":"تيرابت","zero":"%1$s تيرابت","one":"%1$s تيرابت","two":"%1$s تيرابت","few":"%1$s تيرابت","many":"%1$s تيرابت","other":"%1$s تيرابت"},"terabyte":{"_name":"تيرابايت","zero":"%1$s تيرابايت","one":"%1$s تيرابايت","two":"%1$s تيرابايت","few":"%1$s تيرابايت","many":"%1$s تيرابايت","other":"%1$s تيرابايت"}},"duration":{"day":{"_name":"يوم","zero":"%1$s يوم","one":"يوم","two":"يومان","few":"%1$s أيام","many":"%1$s يومًا","other":"%1$s يوم"},"hour":{"_name":"ساعة","zero":"%1$s ساعة","one":"ساعة","two":"ساعتان","few":"%1$s ساعات","many":"%1$s ساعة","other":"%1$s ساعة","_per":"%1$s/ساعة"},"microsecond":{"_name":"ميكروثانية","zero":"%1$s ميكروثانية","one":"%1$s ميكروثانية","two":"%1$s ميكروثانية","few":"%1$s ميكروثانية","many":"%1$s ميكروثانية","other":"%1$s ميكروثانية"},"millisecond":{"_name":"مللي ثانية","zero":"%1$s مللي ثانية","one":"%1$s مللي ثانية","two":"%1$s مللي ثانية","few":"%1$s مللي ثانية","many":"%1$s مللي ثانية","other":"%1$s مللي ثانية"},"minute":{"_name":"دقيقة","zero":"%1$s دقيقة","one":"%1$s دقيقة","two":"دقيقتان","few":"%1$s دقائق","many":"%1$s دقيقة","other":"%1$s دقيقة"},"month":{"_name":"شهر","zero":"%1$s شهر","one":"شهر","two":"شهران","few":"%1$s أشهر","many":"%1$s شهرًا","other":"%1$s شهر"},"nanosecond":{"_name":"نانو ثانية","zero":"%1$s نانو ثانية","one":"%1$s نانو ثانية","two":"%1$s نانو ثانية","few":"%1$s نانو ثانية","many":"%1$s نانو ثانية","other":"%1$s نانو ثانية"},"second":{"_name":"ثانية","zero":"%1$s ثانية","one":"ثانية","two":"ثانيتان","few":"%1$s ثوان","many":"%1$s ثانية","other":"%1$s ثانية","_per":"%1$s/ثانية"},"week":{"_name":"أسبوع","zero":"%1$s أسبوع","one":"أسبوع","two":"أسبوعان","few":"%1$s أسابيع","many":"%1$s أسبوعًا","other":"%1$s أسبوع"},"year":{"_name":"سنة","zero":"%1$s سنة","one":"سنة","two":"سنتان","few":"%1$s سنوات","many":"%1$s سنة","other":"%1$s سنة"}},"electric":{"ampere":{"_name":"أمبير","zero":"%1$s أمبير","one":"%1$s أمبير","two":"%1$s أمبير","few":"%1$s أمبير","many":"%1$s أمبير","other":"%1$s أمبير"},"milliampere":{"_name":"مللي أمبير","zero":"%1$s مللي أمبير","one":"%1$s مللي أمبير","two":"%1$s مللي أمبير","few":"%1$s مللي أمبير","many":"%1$s مللي أمبير","other":"%1$s مللي أمبير"},"ohm":{"_name":"أوم","zero":"%1$s أوم","one":"%1$s أوم","two":"%1$s أوم","few":"%1$s أوم","many":"%1$s أوم","other":"%1$s أوم"},"volt":{"_name":"فولت","zero":"%1$s فولت","one":"%1$s فولت","two":"%1$s فولت","few":"%1$s فولت","many":"%1$s فولت","other":"%1$s فولت"}},"energy":{"calorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"foodcalorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"joule":{"_name":"جول","zero":"%1$s جول","one":"%1$s جول","two":"%1$s جول","few":"%1$s جول","many":"%1$s جول","other":"%1$s جول"},"kilocalorie":{"_name":"كيلو كالوري","zero":"%1$s كيلو كالوري","one":"%1$s كيلو كالوري","two":"%1$s كيلو كالوري","few":"%1$s كيلو كالوري","many":"%1$s كيلو كالوري","other":"%1$s كيلو كالوري"},"kilojoule":{"_name":"كيلو جول","zero":"%1$s كيلو جول","one":"%1$s كيلو جول","two":"%1$s كيلو جول","few":"%1$s كيلو جول","many":"%1$s كيلو جول","other":"%1$s كيلو جول"},"kilowatt-hour":{"_name":"كيلو واط/ساعة","zero":"%1$s كيلو واط/ساعة","one":"%1$s كيلو واط/ساعة","two":"%1$s كيلو واط/ساعة","few":"%1$s كيلو واط/ساعة","many":"%1$s كيلو واط/ساعة","other":"%1$s كيلو واط/ساعة"}},"frequency":{"gigahertz":{"_name":"غيغا هرتز","zero":"%1$s غيغا هرتز","one":"%1$s غيغا هرتز","two":"%1$s غيغا هرتز","few":"%1$s غيغا هرتز","many":"%1$s غيغا هرتز","other":"%1$s غيغا هرتز"},"hertz":{"_name":"هرتز","zero":"%1$s هرتز","one":"%1$s هرتز","two":"%1$s هرتز","few":"%1$s هرتز","many":"%1$s هرتز","other":"%1$s هرتز"},"kilohertz":{"_name":"كيلو هرتز","zero":"%1$s كيلو هرتز","one":"%1$s كيلو هرتز","two":"%1$s كيلو هرتز","few":"%1$s كيلو هرتز","many":"%1$s كيلو هرتز","other":"%1$s كيلو هرتز"},"megahertz":{"_name":"ميغا هرتز","zero":"%1$s ميغا هرتز","one":"%1$s ميغا هرتز","two":"%1$s ميغا هرتز","few":"%1$s ميغا هرتز","many":"%1$s ميغا هرتز","other":"%1$s ميغا هرتز"}},"length":{"astronomical-unit":{"_name":"وحدة فلكية","zero":"%1$s من الوحدات الفلكية","one":"%1$s وحدة فلكية","two":"وحدتان فلكيتان","few":"%1$s وحدات فلكية","many":"%1$s وحدة فلكية","other":"%1$s من الوحدات الفلكية"},"centimeter":{"_name":"سنتيمتر","zero":"%1$s سنتيمتر","one":"%1$s سنتيمتر","two":"%1$s سنتيمتر","few":"%1$s سنتيمتر","many":"%1$s سنتيمتر","other":"%1$s سنتيمتر"},"decimeter":{"_name":"ديسيمتر","zero":"%1$s ديسيمتر","one":"%1$s ديسيمتر","two":"%1$s ديسيمتر","few":"%1$s ديسيمتر","many":"%1$s ديسيمتر","other":"%1$s ديسيمتر"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"قدم","zero":"%1$s من الأقدام","one":"%1$s قدم","two":"قدمان (%1$s)","few":"%1$s أقدام","many":"%1$s قدمًا","other":"%1$s من الأقدام"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"بوصة","zero":"%1$s بوصة","one":"%1$s بوصة","two":"%1$s بوصة","few":"%1$s بوصة","many":"%1$s بوصة","other":"%1$s بوصة"},"kilometer":{"_name":"كيلومتر","zero":"%1$s كيلومتر","one":"%1$s كيلومتر","two":"%1$s كيلومتر","few":"%1$s كيلومتر","many":"%1$s كيلومتر","other":"%1$s كيلومتر"},"light-year":{"_name":"سنة ضوئية","zero":"%1$s من السنوات الضوئية","one":"%1$s سنة ضوئية","two":"سنتان ضوئيتان (%1$s)","few":"%1$s سنوات ضوئية","many":"%1$s سنة ضوئية","other":"%1$s من السنوات الضوئية"},"meter":{"_name":"متر","zero":"%1$s من الأمتار","one":"%1$s متر","two":"متران (%1$s)","few":"%1$s أمتار","many":"%1$s مترًا","other":"%1$s من الأمتار"},"micrometer":{"_name":"ميكرومتر","zero":"%1$s ميكرومتر","one":"%1$s ميكرومتر","two":"%1$s ميكرومتر","few":"%1$s ميكرومتر","many":"%1$s ميكرومتر","other":"%1$s ميكرومتر"},"mile":{"_name":"ميل","zero":"%1$s من الأميال","one":"%1$s ميل","two":"ميلان (%1$s)","few":"%1$s أميال","many":"%1$s ميلاً","other":"%1$s من الأميال"},"millimeter":{"_name":"ملليمتر","zero":"%1$s ملليمتر","one":"%1$s ملليمتر","two":"%1$s ملليمتر","few":"%1$s ملليمتر","many":"%1$s ملليمتر","other":"%1$s ملليمتر"},"nanometer":{"_name":"نانو متر","zero":"%1$s نانو متر","one":"%1$s نانو متر","two":"%1$s نانو متر","few":"%1$s نانو متر","many":"%1$s نانو متر","other":"%1$s نانو متر"},"nautical-mile":{"_name":"ميل بحري","zero":"%1$s من الأميال البحرية","one":"%1$s ميل بحري","two":"ميلان بحريان","few":"%1$s أميال بحرية","many":"%1$s ميلاً بحريًا","other":"%1$s من الأميال البحرية"},"parsec":{"_name":"فرسخ فلكي","zero":"%1$s من الفراسخ الفلكية","one":"%1$s فرسخ فلكي","two":"فرسخان فلكيان","few":"%1$s فراسخ فلكية","many":"%1$s فرسخًا فلكيًا","other":"%1$s من الفراسخ الفلكية"},"picometer":{"_name":"بيكومتر","zero":"%1$s بيكومتر","one":"%1$s بيكومتر","two":"%1$s بيكومتر","few":"%1$s بيكومتر","many":"%1$s بيكومتر","other":"%1$s بيكومتر"},"yard":{"_name":"ياردة","zero":"%1$s من الياردات","one":"%1$s ياردة","two":"ياردتان (%1$s)","few":"%1$s ياردات","many":"%1$s ياردة","other":"%1$s من الياردات"}},"light":{"lux":{"_name":"لكس","zero":"%1$s لكس","one":"%1$s لكس","two":"%1$s لكس","few":"%1$s لكس","many":"%1$s لكس","other":"%1$s لكس"}},"mass":{"carat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"},"gram":{"_name":"غرام","zero":"%1$s من الغرامات","one":"%1$s غرام","two":"غرامان (%1$s)","few":"%1$s غرامات","many":"%1$s غرامًا","other":"%1$s من الغرامات"},"kilogram":{"_name":"كيلوغرام","zero":"%1$s كيلوغرام","one":"%1$s كيلوغرام","two":"%1$s كيلوغرام","few":"%1$s كيلوغرام","many":"%1$s كيلوغرام","other":"%1$s كيلوغرام"},"metric-ton":{"_name":"طن متري","zero":"%1$s طن متري","one":"%1$s طن متري","two":"%1$s طن متري","few":"%1$s طن متري","many":"%1$s طن متري","other":"%1$s طن متري"},"microgram":{"_name":"ميكروغرام","zero":"%1$s ميكروغرام","one":"%1$s ميكروغرام","two":"%1$s ميكروغرام","few":"%1$s ميكروغرام","many":"%1$s ميكروغرام","other":"%1$s ميكروغرام"},"milligram":{"_name":"ملليغرام","zero":"%1$s ملليغرام","one":"%1$s ملليغرام","two":"%1$s ملليغرام","few":"%1$s ملليغرام","many":"%1$s ملليغرام","other":"%1$s ملليغرام"},"ounce":{"_name":"أونصة","zero":"%1$s أونس","one":"%1$s أونس","two":"%1$s أونس","few":"%1$s أونس","many":"%1$s أونس","other":"%1$s أونس"},"ounce-troy":{"_name":"أونصة ترويسية","zero":"%1$s من الأونصات الترويسية","one":"%1$s أونصة ترويسية","two":"أونصتان ترويسيتان","few":"%1$s أونصات ترويسية","many":"%1$s أونصة ترويسية","other":"%1$s من الأونصات الترويسية"},"pound":{"_name":"رطل","zero":"%1$s رطل","one":"%1$s رطل","two":"%1$s رطل","few":"%1$s رطل","many":"%1$s رطل","other":"%1$s رطل"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"طن","zero":"%1$s طن","one":"%1$s طن","two":"%1$s طن","few":"%1$s طن","many":"%1$s طن","other":"%1$s طن"}},"power":{"gigawatt":{"_name":"غيغا واط","zero":"%1$s غيغا واط","one":"%1$s غيغا واط","two":"%1$s غيغا واط","few":"%1$s غيغا واط","many":"%1$s غيغا واط","other":"%1$s غيغا واط"},"horsepower":{"_name":"قوة حصان","zero":"%1$s قوة حصان","one":"%1$s قوة حصان","two":"%1$s قوة حصان","few":"%1$s قوة حصان","many":"%1$s قوة حصان","other":"%1$s قوة حصان"},"kilowatt":{"_name":"كيلوواط","zero":"%1$s كيلوواط","one":"%1$s كيلوواط","two":"%1$s كيلوواط","few":"%1$s كيلوواط","many":"%1$s كيلوواط","other":"%1$s كيلوواط"},"megawatt":{"_name":"ميغا واط","zero":"%1$s ميغا واط","one":"%1$s ميغا واط","two":"%1$s ميغا واط","few":"%1$s ميغا واط","many":"%1$s ميغا واط","other":"%1$s ميغا واط"},"milliwatt":{"_name":"مللي واط","zero":"%1$s مللي واط","one":"%1$s مللي واط","two":"%1$s مللي واط","few":"%1$s مللي واط","many":"%1$s مللي واط","other":"%1$s مللي واط"},"watt":{"_name":"واط","zero":"%1$s واط","one":"%1$s واط","two":"%1$s واط","few":"%1$s واط","many":"%1$s واط","other":"%1$s واط"}},"pressure":{"hectopascal":{"_name":"هكتوباسكال","zero":"%1$s هكتوباسكال","one":"%1$s هكتوباسكال","two":"%1$s هكتوباسكال","few":"%1$s هكتوباسكال","many":"%1$s هكتوباسكال","other":"%1$s هكتوباسكال"},"inch-hg":{"_name":"بوصة زئبقية","zero":"%1$s بوصة زئبقية","one":"%1$s بوصة زئبقية","two":"%1$s بوصة زئبقية","few":"%1$s بوصة زئبقية","many":"%1$s بوصة زئبقية","other":"%1$s بوصة زئبقية"},"millibar":{"_name":"مللي بار","zero":"%1$s مللي بار","one":"%1$s مللي بار","two":"%1$s مللي بار","few":"%1$s مللي بار","many":"%1$s مللي بار","other":"%1$s مللي بار"},"millimeter-of-mercury":{"_name":"ملليمتر زئبقي","zero":"%1$s ملليمتر زئبقي","one":"%1$s ملليمتر زئبقي","two":"%1$s ملليمتر زئبقي","few":"%1$s ملليمتر زئبقي","many":"%1$s ملليمتر زئبقي","other":"%1$s ملليمتر زئبقي"},"pound-per-square-inch":{"_name":"رطل لكل بوصة مربعة","zero":"%1$s رطل لكل بوصة مربعة","one":"%1$s رطل لكل بوصة مربعة","two":"%1$s رطل لكل بوصة مربعة","few":"%1$s رطل لكل بوصة مربعة","many":"%1$s رطل لكل بوصة مربعة","other":"%1$s رطل لكل بوصة مربعة"}},"proportion":{"karat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"}},"speed":{"kilometer-per-hour":{"_name":"كيلومتر في الساعة","zero":"%1$s كيلومتر في الساعة","one":"%1$s كيلومتر في الساعة","two":"%1$s كيلومتر في الساعة","few":"%1$s كيلومتر في الساعة","many":"%1$s كيلومتر في الساعة","other":"%1$s كيلومتر في الساعة"},"meter-per-second":{"_name":"متر في الثانية","zero":"%1$s متر في الثانية","one":"%1$s متر في الثانية","two":"%1$s متر في الثانية","few":"%1$s متر في الثانية","many":"%1$s متر في الثانية","other":"%1$s متر في الثانية"},"mile-per-hour":{"_name":"ميل في الساعة","zero":"%1$s ميل في الساعة","one":"%1$s ميل في الساعة","two":"%1$s ميل في الساعة","few":"%1$s ميل في الساعة","many":"%1$s ميل في الساعة","other":"%1$s ميل في الساعة"}},"temperature":{"celsius":{"_name":"درجة مئوية","zero":"%1$s درجة مئوية","one":"%1$s درجة مئوية","two":"%1$s درجة مئوية","few":"%1$s درجة مئوية","many":"%1$s درجة مئوية","other":"%1$s درجة مئوية"},"fahrenheit":{"_name":"درجة فهرنهايت","zero":"%1$s درجة فهرنهايت","one":"%1$s درجة فهرنهايت","two":"%1$s درجة فهرنهايت","few":"%1$s درجة فهرنهايت","many":"%1$s درجة فهرنهايت","other":"%1$s درجة فهرنهايت"},"kelvin":{"_name":"درجة كلفن","zero":"%1$s درجة كلفن","one":"%1$s درجة كلفن","two":"%1$s درجة كلفن","few":"%1$s درجة كلفن","many":"%1$s درجة كلفن","other":"%1$s درجة كلفن"}},"volume":{"acre-foot":{"_name":"فدان قدم","zero":"%1$s فدان قدم","one":"%1$s فدان قدم","two":"%1$s فدان قدم","few":"%1$s فدان قدم","many":"%1$s فدان قدم","other":"%1$s فدان قدم"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"سنتيلتر","zero":"%1$s سنتيلتر","one":"%1$s سنتيلتر","two":"%1$s سنتيلتر","few":"%1$s سنتيلتر","many":"%1$s سنتيلتر","other":"%1$s سنتيلتر"},"cubic-centimeter":{"_name":"سنتيمتر مكعب","zero":"%1$s سنتيمتر مكعب","one":"%1$s سنتيمتر مكعب","two":"%1$s سنتيمتر مكعب","few":"%1$s سنتيمتر مكعب","many":"%1$s سنتيمتر مكعب","other":"%1$s سنتيمتر مكعب"},"cubic-foot":{"_name":"قدم مكعبة","zero":"%1$s من الأقدام المكعبة","one":"%1$s قدم مكعبة","two":"قدمان مكعبان","few":"%1$s أقدام مكعبة","many":"%1$s قدمًا مكعبًا","other":"%1$s من الأقدام المكعبة"},"cubic-inch":{"_name":"بوصة مكعبة","zero":"%1$s بوصة مكعبة","one":"%1$s بوصة مكعبة","two":"%1$s بوصة مكعبة","few":"%1$s بوصة مكعبة","many":"%1$s بوصة مكعبة","other":"%1$s بوصة مكعبة"},"cubic-kilometer":{"_name":"كيلومتر مكعب","zero":"%1$s كيلومتر مكعب","one":"%1$s كيلومتر مكعب","two":"%1$s كيلومتر مكعب","few":"%1$s كيلومتر مكعب","many":"%1$s كيلومتر مكعب","other":"%1$s كيلومتر مكعب"},"cubic-meter":{"_name":"متر مكعب","zero":"%1$s متر مكعب","one":"%1$s متر مكعب","two":"%1$s متر مكعب","few":"%1$s متر مكعب","many":"%1$s متر مكعب","other":"%1$s متر مكعب"},"cubic-mile":{"_name":"ميل مكعب","zero":"%1$s ميل مكعب","one":"%1$s ميل مكعب","two":"%1$s ميل مكعب","few":"%1$s ميل مكعب","many":"%1$s ميل مكعب","other":"%1$s ميل مكعب"},"cubic-yard":{"_name":"ياردة مكعبة","zero":"%1$s ياردة مكعبة","one":"%1$s ياردة مكعبة","two":"%1$s ياردة مكعبة","few":"%1$s ياردة مكعبة","many":"%1$s ياردة مكعبة","other":"%1$s ياردة مكعبة"},"cup":{"_name":"كوب","zero":"%1$s من الأكواب","one":"%1$s كوب","two":"كوبان","few":"%1$s أكواب","many":"%1$s كوبًا","other":"%1$s من الأكواب"},"deciliter":{"_name":"ديسيلتر","zero":"%1$s ديسيلتر","one":"%1$s ديسيلتر","two":"%1$s ديسيلتر","few":"%1$s ديسيلتر","many":"%1$s ديسيلتر","other":"%1$s ديسيلتر"},"fluid-ounce":{"_name":"أونصة سائلة","zero":"%1$s من الأونصات السائلة","one":"%1$s أونصة سائلة","two":"أونصتان سائلتان","few":"%1$s أونصات سائلة","many":"%1$s أونصة سائلة","other":"%1$s من الأونصات السائلة"},"gallon":{"_name":"غالون","zero":"%1$s من الغالونات","one":"%1$s غالون","two":"غالونان","few":"%1$s غالونات","many":"%1$s غالونًا","other":"%1$s من الغالونات"},"hectoliter":{"_name":"هكتولتر","zero":"%1$s هكتولتر","one":"%1$s هكتولتر","two":"%1$s هكتولتر","few":"%1$s هكتولتر","many":"%1$s هكتولتر","other":"%1$s هكتولتر"},"liter":{"_name":"لتر","zero":"%1$s من اللترات","one":"%1$s لتر","two":"لتران (%1$s)","few":"%1$s لترات","many":"%1$s لترًا","other":"%1$s من اللترات"},"megaliter":{"_name":"ميغالتر","zero":"%1$s ميغالتر","one":"%1$s ميغالتر","two":"%1$s ميغالتر","few":"%1$s ميغالتر","many":"%1$s ميغالتر","other":"%1$s ميغالتر"},"milliliter":{"_name":"ملليلتر","zero":"%1$s ملليلتر","one":"%1$s ملليلتر","two":"%1$s ملليلتر","few":"%1$s ملليلتر","many":"%1$s ملليلتر","other":"%1$s ملليلتر"},"pint":{"_name":"باينت","zero":"%1$s باينت","one":"%1$s باينت","two":"%1$s باينت","few":"%1$s باينت","many":"%1$s باينت","other":"%1$s باينت"},"quart":{"_name":"ربع غالون","zero":"%1$s من أرباع الغالون","one":"%1$s ربع غالون","two":"نصف غالون","few":"%1$s أرباع غالون","many":"%1$s ربع غالون","other":"%1$s من أرباع الغالون"},"tablespoon":{"_name":"ملعقة المائدة","zero":"%1$s من ملاعق المائدة","one":"%1$s ملعقة مائدة","two":"ملعقتا مائدة","few":"%1$s ملاعق مائدة","many":"%1$s ملعقة مائدة","other":"%1$s من ملاعق المائدة"},"teaspoon":{"_name":"ملعقة شاي","zero":"%1$s من ملاعق الشاي","one":"%1$s ملعقة شاي","two":"ملعقتا شاي","few":"%1$s ملاعق شاي","many":"%1$s ملعقة شاي","other":"%1$s من ملاعق الشاي"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"قوة تسارع","zero":"%1$s قوة تسارع","one":"%1$s قوة تسارع","two":"%1$s قوة تسارع","few":"%1$s قوة تسارع","many":"%1$s قوة تسارع","other":"%1$s قوة تسارع"},"meter-per-second-squared":{"_name":"م/ث²","zero":"%1$s م/ث²","one":"%1$s م/ث²","two":"%1$s م/ث²","few":"%1$s م/ث²","many":"%1$s م/ث²","other":"%1$s م/ث²"}},"angle":{"arc-minute":{"_name":"دقيقة قوسية","zero":"%1$s من الدقائق","one":"%1$s دقيقة","two":"دقيقتان (%1$s)","few":"%1$s دقائق","many":"%1$s دقيقة","other":"%1$s من الدقائق"},"arc-second":{"_name":"ثانية قوسية","zero":"%1$s من الثواني","one":"%1$s ثانية","two":"ثانيتان (%1$s)","few":"%1$s ثوانٍ","many":"%1$s ثانية","other":"%1$s من الثواني"},"degree":{"_name":"درجة","zero":"%1$s من الدرجات","one":"%1$s درجة","two":"درجتان (%1$s)","few":"%1$s درجات","many":"%1$s درجة","other":"%1$s من الدرجات"},"radian":{"_name":"راديان","zero":"%1$s راديان","one":"%1$s راديان","two":"%1$s راديان","few":"%1$s راديان","many":"%1$s راديان","other":"%1$s راديان"}},"area":{"acre":{"_name":"فدان","zero":"%1$s من الفدادين","one":"%1$s فدان","two":"فدانان (%1$s)","few":"%1$s فدادين","many":"%1$s فدانًا","other":"%1$s من الفدادين"},"hectare":{"_name":"هكتار","zero":"%1$s من الهكتارات","one":"%1$s هكتار","two":"هكتاران (%1$s)","few":"%1$s هكتارات","many":"%1$s هكتارًا","other":"%1$s من الهكتارات"},"square-centimeter":{"_name":"سم ²","zero":"%1$s سم ²","one":"%1$s سم ²","two":"%1$s سم ²","few":"%1$s سم ²","many":"%1$s سم ²","other":"%1$s سم ²"},"square-foot":{"_name":"قدم مربعة","zero":"%1$s من الأقدام المربعة","one":"%1$s قدم مربعة","two":"قدمان مربعان (%1$s)","few":"%1$s أقدام مربعة","many":"%1$s قدمًا مربعًا","other":"%1$s من الأقدام المربعة"},"square-inch":{"_name":"بوصة مربعة","zero":"%1$s بوصة مربعة","one":"%1$s بوصة مربعة","two":"%1$s بوصة مربعة","few":"%1$s بوصة مربعة","many":"%1$s بوصة مربعة","other":"%1$s بوصة مربعة"},"square-kilometer":{"_name":"كم²","zero":"%1$s كم²","one":"%1$s كم²","two":"%1$s كم²","few":"%1$s كم²","many":"%1$s كم²","other":"%1$s كم²"},"square-meter":{"_name":"م²","zero":"%1$s م²","one":"%1$s م²","two":"%1$s م²","few":"%1$s م²","many":"%1$s م²","other":"%1$s م²"},"square-mile":{"_name":"ميل مربع","zero":"%1$s ميل مربع","one":"%1$s ميل مربع","two":"%1$s ميل مربع","few":"%1$s ميل مربع","many":"%1$s ميل مربع","other":"%1$s ميل مربع"},"square-yard":{"_name":"ياردة مربعة","zero":"%1$s ياردة مربعة","one":"%1$s ياردة مربعة","two":"%1$s ياردة مربعة","few":"%1$s ياردة مربعة","many":"%1$s ياردة مربعة","other":"%1$s ياردة مربعة"}},"consumption":{"liter-per-kilometer":{"_name":"لتر/كم","zero":"%1$s لتر/كم","one":"%1$s لتر/كم","two":"%1$s لتر/كم","few":"%1$s لتر/كم","many":"%1$s لتر/كم","other":"%1$s لتر/كم"},"mile-per-gallon":{"_name":"ميل/غالون","zero":"%1$s ميل/غالون","one":"%1$s ميل/غالون","two":"%1$s ميل/غالون","few":"%1$s ميل/غالون","many":"%1$s ميل/غالون","other":"%1$s ميل/غالون"}},"digital":{"bit":{"_name":"بت","zero":"%1$s بت","one":"%1$s بت","two":"%1$s بت","few":"%1$s بت","many":"%1$s بت","other":"%1$s بت"},"byte":{"_name":"بايت","zero":"%1$s بايت","one":"%1$s بايت","two":"%1$s بايت","few":"%1$s بايت","many":"%1$s بايت","other":"%1$s بايت"},"gigabit":{"_name":"غيغابت","zero":"%1$s غيغابت","one":"%1$s غيغابت","two":"%1$s غيغابت","few":"%1$s غيغابت","many":"%1$s غيغابت","other":"%1$s غيغابت"},"gigabyte":{"_name":"غيغابايت","zero":"%1$s غيغابايت","one":"%1$s غيغابايت","two":"%1$s غيغابايت","few":"%1$s غيغابايت","many":"%1$s غيغابايت","other":"%1$s غيغابايت"},"kilobit":{"_name":"كيلوبت","zero":"%1$s كيلوبت","one":"%1$s كيلوبت","two":"%1$s كيلوبت","few":"%1$s كيلوبت","many":"%1$s كيلوبت","other":"%1$s كيلوبت"},"kilobyte":{"_name":"كيلوبايت","zero":"%1$s كيلوبايت","one":"%1$s كيلوبايت","two":"%1$s كيلوبايت","few":"%1$s كيلوبايت","many":"%1$s كيلوبايت","other":"%1$s كيلوبايت"},"megabit":{"_name":"ميغابت","zero":"%1$s ميغابت","one":"%1$s ميغابت","two":"%1$s ميغابت","few":"%1$s ميغابت","many":"%1$s ميغابت","other":"%1$s ميغابت"},"megabyte":{"_name":"ميغابايت","zero":"%1$s ميغابايت","one":"%1$s ميغابايت","two":"%1$s ميغابايت","few":"%1$s ميغابايت","many":"%1$s ميغابايت","other":"%1$s ميغابايت"},"terabit":{"_name":"تيرابت","zero":"%1$s تيرابت","one":"%1$s تيرابت","two":"%1$s تيرابت","few":"%1$s تيرابت","many":"%1$s تيرابت","other":"%1$s تيرابت"},"terabyte":{"_name":"تيرابايت","zero":"%1$s تيرابايت","one":"%1$s تيرابايت","two":"%1$s تيرابايت","few":"%1$s تيرابايت","many":"%1$s تيرابايت","other":"%1$s تيرابايت"}},"duration":{"day":{"_name":"يوم","zero":"%1$s يوم","one":"%1$s يوم","two":"يومان","few":"%1$s أيام","many":"%1$s يومًا","other":"%1$s يوم"},"hour":{"_name":"ساعة","zero":"%1$s س","one":"%1$s س","two":"%1$s س","few":"%1$s س","many":"%1$s س","other":"%1$s س","_per":"%1$s/س"},"microsecond":{"_name":"م.ث.","zero":"%1$s م.ث.","one":"%1$s م.ث.","two":"%1$s م.ث.","few":"%1$s م.ث.","many":"%1$s م.ث.","other":"%1$s م.ث."},"millisecond":{"_name":"مللي ثانية","zero":"%1$s مللي ث.","one":"%1$s مللي ث.","two":"%1$s مللي ث.","few":"%1$s مللي ث.","many":"%1$s مللي ث.","other":"%1$s مللي ث."},"minute":{"_name":"دقيقة","zero":"%1$s د","one":"%1$s د","two":"%1$s د","few":"%1$s د","many":"%1$s د","other":"%1$s د"},"month":{"_name":"شهر","zero":"%1$s شهر","one":"شهر","two":"شهران","few":"%1$s أشهر","many":"%1$s شهرًا","other":"%1$s شهر"},"nanosecond":{"_name":"ن.ث.","zero":"%1$s ن.ث.","one":"%1$s ن.ث.","two":"%1$s ن.ث.","few":"%1$s ن.ث.","many":"%1$s ن.ث.","other":"%1$s ن.ث."},"second":{"_name":"ثانية","zero":"%1$s ث","one":"%1$s ث","two":"%1$s ث","few":"%1$s ث","many":"%1$s ث","other":"%1$s ث","_per":"%1$s/ث"},"week":{"_name":"أسبوع","zero":"%1$s أسبوع","one":"%1$s أسبوع","two":"أسبوعان","few":"%1$s أسابيع","many":"%1$s أسبوعًا","other":"%1$s أسبوع"},"year":{"_name":"سنة","zero":"%1$s سنة","one":"سنة","two":"سنتان","few":"%1$s سنة","many":"%1$s سنة","other":"%1$s سنة"}},"electric":{"ampere":{"_name":"أمبير","zero":"%1$s أمبير","one":"%1$s أمبير","two":"%1$s أمبير","few":"%1$s أمبير","many":"%1$s أمبير","other":"%1$s أمبير"},"milliampere":{"_name":"مللي أمبير","zero":"%1$s مللي أمبير","one":"%1$s مللي أمبير","two":"%1$s مللي أمبير","few":"%1$s مللي أمبير","many":"%1$s مللي أمبير","other":"%1$s مللي أمبير"},"ohm":{"_name":"أوم","zero":"%1$s أوم","one":"%1$s أوم","two":"%1$s أوم","few":"%1$s أوم","many":"%1$s أوم","other":"%1$s أوم"},"volt":{"_name":"فولت","zero":"%1$s فولت","one":"%1$s فولت","two":"%1$s فولت","few":"%1$s فولت","many":"%1$s فولت","other":"%1$s فولت"}},"energy":{"calorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"foodcalorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"joule":{"_name":"جول","zero":"%1$s جول","one":"%1$s جول","two":"%1$s جول","few":"%1$s جول","many":"%1$s جول","other":"%1$s جول"},"kilocalorie":{"_name":"ك كالوري","zero":"%1$s ك كالوري","one":"%1$s ك كالوري","two":"%1$s ك كالوري","few":"%1$s ك كالوري","many":"%1$s ك كالوري","other":"%1$s ك كالوري"},"kilojoule":{"_name":"ك جول","zero":"%1$s ك جول","one":"%1$s ك جول","two":"%1$s ك جول","few":"%1$s ك جول","many":"%1$s ك جول","other":"%1$s ك جول"},"kilowatt-hour":{"_name":"ك.و.س","zero":"%1$s ك.و.س","one":"%1$s ك.و.س","two":"%1$s ك.و.س","few":"%1$s ك.و.س","many":"%1$s ك.و.س","other":"%1$s ك.و.س"}},"frequency":{"gigahertz":{"_name":"غ هرتز","zero":"%1$s غ هرتز","one":"%1$s غ هرتز","two":"%1$s غ هرتز","few":"%1$s غ هرتز","many":"%1$s غ هرتز","other":"%1$s غ هرتز"},"hertz":{"_name":"هرتز","zero":"%1$s هرتز","one":"%1$s هرتز","two":"%1$s هرتز","few":"%1$s هرتز","many":"%1$s هرتز","other":"%1$s هرتز"},"kilohertz":{"_name":"ك هرتز","zero":"%1$s ك هرتز","one":"%1$s ك هرتز","two":"%1$s ك هرتز","few":"%1$s ك هرتز","many":"%1$s ك هرتز","other":"%1$s ك هرتز"},"megahertz":{"_name":"م هرتز","zero":"%1$s م هرتز","one":"%1$s م هرتز","two":"%1$s م هرتز","few":"%1$s م هرتز","many":"%1$s م هرتز","other":"%1$s م هرتز"}},"length":{"astronomical-unit":{"_name":"و.ف.","zero":"%1$s و.ف.","one":"%1$s و.ف.","two":"%1$s و.ف.","few":"%1$s و.ف.","many":"%1$s و.ف.","other":"%1$s و.ف."},"centimeter":{"_name":"سم","zero":"%1$s سم","one":"%1$s سم","two":"%1$s سم","few":"%1$s سم","many":"%1$s سم","other":"%1$s سم"},"decimeter":{"_name":"دسم","zero":"%1$s دسم","one":"%1$s دسم","two":"%1$s دسم","few":"%1$s دسم","many":"%1$s دسم","other":"%1$s دسم"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"قدم","zero":"%1$s من الأقدام","one":"%1$s قدم","two":"قدمان (%1$s)","few":"%1$s أقدام","many":"%1$s قدمًا","other":"%1$s من الأقدام"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"بوصة","zero":"%1$s بوصة","one":"%1$s بوصة","two":"%1$s بوصة","few":"%1$s بوصة","many":"%1$s بوصة","other":"%1$s بوصة"},"kilometer":{"_name":"كم","zero":"%1$s كم","one":"%1$s كم","two":"%1$s كم","few":"%1$s كم","many":"%1$s كم","other":"%1$s كم"},"light-year":{"_name":"سنة ضوئية","zero":"%1$s من السنوات الضوئية","one":"%1$s سنة ضوئية","two":"سنتان ضوئيتان (%1$s)","few":"%1$s سنوات ضوئية","many":"%1$s سنة ضوئية","other":"%1$s من السنوات الضوئية"},"meter":{"_name":"متر","zero":"%1$s من الأمتار","one":"%1$s متر","two":"متران (%1$s)","few":"%1$s أمتار","many":"%1$s مترًا","other":"%1$s من الأمتار"},"micrometer":{"_name":"ميكرومتر","zero":"%1$s ميكرومتر","one":"%1$s ميكرومتر","two":"%1$s ميكرومتر","few":"%1$s ميكرومتر","many":"%1$s ميكرومتر","other":"%1$s ميكرومتر"},"mile":{"_name":"ميل","zero":"%1$s من الأميال","one":"%1$s ميل","two":"ميلان (%1$s)","few":"%1$s أميال","many":"%1$s ميلاً","other":"%1$s من الأميال"},"millimeter":{"_name":"ملليمتر","zero":"%1$s ملليمتر","one":"%1$s ملليمتر","two":"%1$s ملليمتر","few":"%1$s ملليمتر","many":"%1$s ملليمتر","other":"%1$s ملليمتر"},"nanometer":{"_name":"نانو متر","zero":"%1$s نانو متر","one":"%1$s نانو متر","two":"%1$s نانو متر","few":"%1$s نانو متر","many":"%1$s نانو متر","other":"%1$s نانو متر"},"nautical-mile":{"_name":"ميل بحري","zero":"%1$s من الأميال البحرية","one":"%1$s ميل بحري","two":"ميلان بحريان","few":"%1$s أميال بحرية","many":"%1$s ميلاً بحريًا","other":"%1$s من الأميال البحرية"},"parsec":{"_name":"فرسخ فلكي","zero":"%1$s من الفراسخ الفلكية","one":"%1$s فرسخ فلكي","two":"فرسخان فلكيان","few":"%1$s فراسخ فلكية","many":"%1$s فرسخًا فلكيًا","other":"%1$s من الفراسخ الفلكية"},"picometer":{"_name":"بيكومتر","zero":"%1$s بيكومتر","one":"%1$s بيكومتر","two":"%1$s بيكومتر","few":"%1$s بيكومتر","many":"%1$s بيكومتر","other":"%1$s بيكومتر"},"yard":{"_name":"ياردة","zero":"%1$s من الياردات","one":"%1$s ياردة","two":"ياردتان (%1$s)","few":"%1$s ياردات","many":"%1$s ياردة","other":"%1$s من الياردات"}},"light":{"lux":{"_name":"لكس","zero":"%1$s لكس","one":"%1$s لكس","two":"%1$s لكس","few":"%1$s لكس","many":"%1$s لكس","other":"%1$s لكس"}},"mass":{"carat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"},"gram":{"_name":"غرام","zero":"%1$s من الغرامات","one":"%1$s غرام","two":"غرامان (%1$s)","few":"%1$s غرامات","many":"%1$s غرامًا","other":"%1$s من الغرامات"},"kilogram":{"_name":"كغم","zero":"%1$s كغم","one":"%1$s كغم","two":"%1$s كغم","few":"%1$s كغم","many":"%1$s كغم","other":"%1$s كغم"},"metric-ton":{"_name":"ط/م","zero":"%1$s ط/م","one":"%1$s ط/م","two":"%1$s ط/م","few":"%1$s ط/م","many":"%1$s ط/م","other":"%1$s ط/م"},"microgram":{"_name":"مكغم","zero":"%1$s مكغم","one":"%1$s مكغم","two":"%1$s مكغم","few":"%1$s مكغم","many":"%1$s مكغم","other":"%1$s مكغم"},"milligram":{"_name":"مغم","zero":"%1$s مغم","one":"%1$s مغم","two":"%1$s مغم","few":"%1$s مغم","many":"%1$s مغم","other":"%1$s مغم"},"ounce":{"_name":"أونصة","zero":"%1$s أونس","one":"%1$s أونس","two":"%1$s أونس","few":"%1$s أونس","many":"%1$s أونس","other":"%1$s أونس"},"ounce-troy":{"_name":"أونصة ترويسية","zero":"%1$s أونصات ترويسية","one":"%1$s أونصة ترويسية","two":"أونصتان ترويسيتان","few":"%1$s أونصات ترويسية","many":"%1$s أونصة ترويسية","other":"%1$s أونصات ترويسية"},"pound":{"_name":"رطل","zero":"%1$s رطل","one":"%1$s رطل","two":"%1$s رطل","few":"%1$s رطل","many":"%1$s رطل","other":"%1$s رطل"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"طن","zero":"%1$s طن","one":"%1$s طن","two":"%1$s طن","few":"%1$s طن","many":"%1$s طن","other":"%1$s طن"}},"power":{"gigawatt":{"_name":"غ واط","zero":"%1$s غ واط","one":"%1$s غ واط","two":"%1$s غ واط","few":"%1$s غ واط","many":"%1$s غ واط","other":"%1$s غ واط"},"horsepower":{"_name":"قوة حصان","zero":"%1$s قوة حصان","one":"%1$s قوة حصان","two":"%1$s قوة حصان","few":"%1$s قوة حصان","many":"%1$s قوة حصان","other":"%1$s قوة حصان"},"kilowatt":{"_name":"ك واط","zero":"%1$s كيلوواط","one":"%1$s كيلوواط","two":"%1$s كيلوواط","few":"%1$s كيلوواط","many":"%1$s كيلوواط","other":"%1$s كيلوواط"},"megawatt":{"_name":"م واط","zero":"%1$s م واط","one":"%1$s م واط","two":"%1$s م واط","few":"%1$s م واط","many":"%1$s م واط","other":"%1$s م واط"},"milliwatt":{"_name":"مللي واط","zero":"%1$s مللي واط","one":"%1$s مللي واط","two":"%1$s مللي واط","few":"%1$s مللي واط","many":"%1$s مللي واط","other":"%1$s مللي واط"},"watt":{"_name":"واط","zero":"%1$s واط","one":"%1$s واط","two":"%1$s واط","few":"%1$s واط","many":"%1$s واط","other":"%1$s واط"}},"pressure":{"hectopascal":{"_name":"هكتوباسكال","zero":"%1$s هكتوباسكال","one":"%1$s هكتوباسكال","two":"%1$s هكتوباسكال","few":"%1$s هكتوباسكال","many":"%1$s هكتوباسكال","other":"%1$s هكتوباسكال"},"inch-hg":{"_name":"بوصة زئبقية","zero":"%1$s بوصة زئبقية","one":"%1$s بوصة زئبقية","two":"%1$s بوصة زئبقية","few":"%1$s بوصة زئبقية","many":"%1$s بوصة زئبقية","other":"%1$s بوصة زئبقية"},"millibar":{"_name":"مللي بار","zero":"%1$s مللي بار","one":"%1$s مللي بار","two":"%1$s مللي بار","few":"%1$s مللي بار","many":"%1$s مللي بار","other":"%1$s مللي بار"},"millimeter-of-mercury":{"_name":"ملم زئبقي","zero":"%1$s ملم زئبقي","one":"%1$s ملم زئبقي","two":"%1$s ملم زئبقي","few":"%1$s ملم زئبقي","many":"%1$s ملم زئبقي","other":"%1$s ملم زئبقي"},"pound-per-square-inch":{"_name":"رطل/بوصة مربعة","zero":"%1$s رطل/بوصة مربعة","one":"%1$s رطل/بوصة مربعة","two":"%1$s رطل/بوصة مربعة","few":"%1$s رطل/بوصة مربعة","many":"%1$s رطل/بوصة مربعة","other":"%1$s رطل/بوصة مربعة"}},"proportion":{"karat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"}},"speed":{"kilometer-per-hour":{"_name":"كم/س","zero":"%1$s كم/س","one":"%1$s كم/س","two":"%1$s كم/س","few":"%1$s كم/س","many":"%1$s كم/س","other":"%1$s كم/س"},"meter-per-second":{"_name":"م/ث","zero":"%1$s م/ث","one":"%1$s م/ث","two":"%1$s م/ث","few":"%1$s م/ث","many":"%1$s م/ث","other":"%1$s م/ث"},"mile-per-hour":{"_name":"ميل/س","zero":"%1$s ميل/س","one":"%1$s ميل/س","two":"%1$s ميل/س","few":"%1$s ميل/س","many":"%1$s ميل/س","other":"%1$s ميل/س"}},"temperature":{"celsius":{"_name":"درجة مئوية","zero":"%1$s°م","one":"%1$s°م","two":"%1$s°م","few":"%1$s°م","many":"%1$s°م","other":"%1$s°م"},"fahrenheit":{"_name":"درجة فهرنهايت","zero":"%1$s°ف","one":"%1$s°ف","two":"%1$s°ف","few":"%1$s°ف","many":"%1$s°ف","other":"%1$s°ف"},"kelvin":{"_name":"د كلفن","zero":"%1$s د كلفن","one":"%1$s د كلفن","two":"%1$s د كلفن","few":"%1$s د كلفن","many":"%1$s د كلفن","other":"%1$s د كلفن"}},"volume":{"acre-foot":{"_name":"فدان قدم","zero":"%1$s فدان قدم","one":"%1$s فدان قدم","two":"%1$s فدان قدم","few":"%1$s فدان قدم","many":"%1$s فدان قدم","other":"%1$s فدان قدم"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"سنتيلتر","zero":"%1$s سنتيلتر","one":"%1$s سنتيلتر","two":"%1$s سنتيلتر","few":"%1$s سنتيلتر","many":"%1$s سنتيلتر","other":"%1$s سنتيلتر"},"cubic-centimeter":{"_name":"سم³","zero":"%1$s سم³","one":"%1$s سم³","two":"%1$s سم³","few":"%1$s سم³","many":"%1$s سم³","other":"%1$s سم³"},"cubic-foot":{"_name":"قدم مكعبة","zero":"%1$s من الأقدام المكعبة","one":"%1$s قدم مكعبة","two":"قدمان مكعبان","few":"%1$s أقدام مكعبة","many":"%1$s قدمًا مكعبًا","other":"%1$s من الأقدام المكعبة"},"cubic-inch":{"_name":"بوصة مكعبة","zero":"%1$s بوصة مكعبة","one":"%1$s بوصة مكعبة","two":"%1$s بوصة مكعبة","few":"%1$s بوصة مكعبة","many":"%1$s بوصة مكعبة","other":"%1$s بوصة مكعبة"},"cubic-kilometer":{"_name":"كم³","zero":"%1$s كم³","one":"%1$s كم³","two":"%1$s كم³","few":"%1$s كم³","many":"%1$s كم³","other":"%1$s كم³"},"cubic-meter":{"_name":"م³","zero":"%1$s م³","one":"%1$s م³","two":"%1$s م³","few":"%1$s م³","many":"%1$s م³","other":"%1$s م³"},"cubic-mile":{"_name":"ميل مكعب","zero":"%1$s ميل مكعب","one":"%1$s ميل مكعب","two":"%1$s ميل مكعب","few":"%1$s ميل مكعب","many":"%1$s ميل مكعب","other":"%1$s ميل مكعب"},"cubic-yard":{"_name":"ياردة مكعبة","zero":"%1$s ياردة مكعبة","one":"%1$s ياردة مكعبة","two":"%1$s ياردة مكعبة","few":"%1$s ياردة مكعبة","many":"%1$s ياردة مكعبة","other":"%1$s ياردة مكعبة"},"cup":{"_name":"كوب","zero":"%1$s من الأكواب","one":"%1$s كوب","two":"كوبان","few":"%1$s أكواب","many":"%1$s كوبًا","other":"%1$s من الأكواب"},"deciliter":{"_name":"ديسيلتر","zero":"%1$s ديسيلتر","one":"%1$s ديسيلتر","two":"%1$s ديسيلتر","few":"%1$s ديسيلتر","many":"%1$s ديسيلتر","other":"%1$s ديسيلتر"},"fluid-ounce":{"_name":"أونصة سائلة","zero":"%1$s من الأونصات السائلة","one":"%1$s أونصة سائلة","two":"أونصتان سائلتان","few":"%1$s أونصات سائلة","many":"%1$s أونصة سائلة","other":"%1$s من الأونصات السائلة"},"gallon":{"_name":"غالون","zero":"%1$s من الغالونات","one":"%1$s غالون","two":"غالونان","few":"%1$s غالونات","many":"%1$s غالونًا","other":"%1$s من الغالونات"},"hectoliter":{"_name":"هكتولتر","zero":"%1$s هكتولتر","one":"%1$s هكتولتر","two":"%1$s هكتولتر","few":"%1$s هكتولتر","many":"%1$s هكتولتر","other":"%1$s هكتولتر"},"liter":{"_name":"لتر","zero":"%1$s من اللترات","one":"%1$s لتر","two":"لتران (%1$s)","few":"%1$s لترات","many":"%1$s لترًا","other":"%1$s من اللترات"},"megaliter":{"_name":"ميغالتر","zero":"%1$s ميغالتر","one":"%1$s ميغالتر","two":"%1$s ميغالتر","few":"%1$s ميغالتر","many":"%1$s ميغالتر","other":"%1$s ميغالتر"},"milliliter":{"_name":"ملتر","zero":"%1$s ملتر","one":"%1$s ملتر","two":"%1$s ملتر","few":"%1$s ملتر","many":"%1$s ملتر","other":"%1$s ملتر"},"pint":{"_name":"باينت","zero":"%1$s باينت","one":"%1$s باينت","two":"%1$s باينت","few":"%1$s باينت","many":"%1$s باينت","other":"%1$s باينت"},"quart":{"_name":"ربع غالون","zero":"%1$s من أرباع الغالون","one":"%1$s ربع غالون","two":"نصف غالون","few":"%1$s أرباع غالون","many":"%1$s ربع غالون","other":"%1$s من أرباع الغالون"},"tablespoon":{"_name":"ملعقة المائدة","zero":"%1$s من ملاعق المائدة","one":"%1$s ملعقة مائدة","two":"ملعقتا مائدة","few":"%1$s ملاعق مائدة","many":"%1$s ملعقة مائدة","other":"%1$s من ملاعق المائدة"},"teaspoon":{"_name":"ملعقة شاي","zero":"%1$s من ملاعق الشاي","one":"%1$s ملعقة شاي","two":"ملعقتا شاي","few":"%1$s ملاعق شاي","many":"%1$s ملعقة شاي","other":"%1$s من ملاعق الشاي"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"قوة تسارع","zero":"%1$s قوة تسارع","one":"%1$s قوة تسارع","two":"%1$s قوة تسارع","few":"%1$s قوة تسارع","many":"%1$s قوة تسارع","other":"%1$s قوة تسارع"},"meter-per-second-squared":{"_name":"م/ث²","zero":"%1$s م/ث²","one":"%1$s م/ث²","two":"%1$s م/ث²","few":"%1$s م/ث²","many":"%1$s م/ث²","other":"%1$s م/ث²"}},"angle":{"arc-minute":{"_name":"دقيقة قوسية","zero":"%1$s′","one":"%1$s دقيقة","two":"%1$s′","few":"%1$s دقائق","many":"%1$s دقيقة","other":"%1$s′"},"arc-second":{"_name":"ثانية قوسية","zero":"%1$s″","one":"%1$s″","two":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"درجة","zero":"%1$s درجة","one":"%1$s درجة","two":"درجتان (%1$s)","few":"%1$s درجات","many":"%1$s درجة","other":"%1$s درجة"},"radian":{"_name":"راديان","zero":"%1$s راديان","one":"%1$s راديان","two":"%1$s راديان","few":"%1$s راديان","many":"%1$s راديان","other":"%1$s راديان"}},"area":{"acre":{"_name":"فدان","zero":"%1$s من الفدادين","one":"%1$s فدان","two":"فدانان (%1$s)","few":"%1$s فدادين","many":"%1$s فدانًا","other":"%1$s من الفدادين"},"hectare":{"_name":"هكتار","zero":"%1$s هكت","one":"%1$s هكتار","two":"%1$s هكت","few":"%1$s هكتارات","many":"%1$s هكتارًا","other":"%1$s هكت"},"square-centimeter":{"_name":"سم ²","zero":"%1$s سم ²","one":"%1$s سم ²","two":"%1$s سم ²","few":"%1$s سم ²","many":"%1$s سم ²","other":"%1$s سم ²"},"square-foot":{"_name":"قدم مربعة","zero":"%1$sft²","one":"%1$sft²","two":"%1$sft²","few":"%1$sft²","many":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"بوصة مربعة","zero":"%1$s بوصة مربعة","one":"%1$s بوصة مربعة","two":"%1$s بوصة مربعة","few":"%1$s بوصة مربعة","many":"%1$s بوصة مربعة","other":"%1$s بوصة مربعة"},"square-kilometer":{"_name":"كم²","zero":"%1$s كم²","one":"%1$s كم²","two":"%1$s كم²","few":"%1$s كم²","many":"%1$s كم²","other":"%1$s كم²"},"square-meter":{"_name":"م²","zero":"%1$s م²","one":"%1$s م²","two":"%1$s م²","few":"%1$s م²","many":"%1$s م²","other":"%1$s م²"},"square-mile":{"_name":"ميل مربع","zero":"%1$s ميل مربع","one":"%1$s ميل مربع","two":"%1$s ميل مربع","few":"%1$s ميل مربع","many":"%1$s ميل مربع","other":"%1$s ميل مربع"},"square-yard":{"_name":"ياردة مربعة","zero":"%1$s ياردة مربعة","one":"%1$s ياردة مربعة","two":"%1$s ياردة مربعة","few":"%1$s ياردة مربعة","many":"%1$s ياردة مربعة","other":"%1$s ياردة مربعة"}},"consumption":{"liter-per-kilometer":{"_name":"لتر/كم","zero":"%1$s لتر/كم","one":"%1$s لتر/كم","two":"%1$s لتر/كم","few":"%1$s لتر/كم","many":"%1$s لتر/كم","other":"%1$s لتر/كم"},"mile-per-gallon":{"_name":"ميل/غالون","zero":"%1$s ميل/غالون","one":"%1$s ميل/غالون","two":"%1$s ميل/غالون","few":"%1$s ميل/غالون","many":"%1$s ميل/غالون","other":"%1$s ميل/غالون"}},"digital":{"bit":{"_name":"بت","zero":"%1$s بت","one":"%1$s بت","two":"%1$s بت","few":"%1$s بت","many":"%1$s بت","other":"%1$s بت"},"byte":{"_name":"بايت","zero":"%1$s بايت","one":"%1$s بايت","two":"%1$s بايت","few":"%1$s بايت","many":"%1$s بايت","other":"%1$s بايت"},"gigabit":{"_name":"غيغابت","zero":"%1$s غيغابت","one":"%1$s غيغابت","two":"%1$s غيغابت","few":"%1$s غيغابت","many":"%1$s غيغابت","other":"%1$s غيغابت"},"gigabyte":{"_name":"غيغابايت","zero":"%1$s غيغابايت","one":"%1$s غيغابايت","two":"%1$s غيغابايت","few":"%1$s غيغابايت","many":"%1$s غيغابايت","other":"%1$s غيغابايت"},"kilobit":{"_name":"كيلوبت","zero":"%1$s كيلوبت","one":"%1$s كيلوبت","two":"%1$s كيلوبت","few":"%1$s كيلوبت","many":"%1$s كيلوبت","other":"%1$s كيلوبت"},"kilobyte":{"_name":"كيلوبايت","zero":"%1$s كيلوبايت","one":"%1$s كيلوبايت","two":"%1$s كيلوبايت","few":"%1$s كيلوبايت","many":"%1$s كيلوبايت","other":"%1$s كيلوبايت"},"megabit":{"_name":"ميغابت","zero":"%1$s ميغابت","one":"%1$s ميغابت","two":"%1$s ميغابت","few":"%1$s ميغابت","many":"%1$s ميغابت","other":"%1$s ميغابت"},"megabyte":{"_name":"ميغابايت","zero":"%1$s ميغابايت","one":"%1$s ميغابايت","two":"%1$s ميغابايت","few":"%1$s ميغابايت","many":"%1$s ميغابايت","other":"%1$s ميغابايت"},"terabit":{"_name":"تيرابت","zero":"%1$s تيرابت","one":"%1$s تيرابت","two":"%1$s تيرابت","few":"%1$s تيرابت","many":"%1$s تيرابت","other":"%1$s تيرابت"},"terabyte":{"_name":"تيرابايت","zero":"%1$s تيرابايت","one":"%1$s تيرابايت","two":"%1$s تيرابايت","few":"%1$s تيرابايت","many":"%1$s تيرابايت","other":"%1$s تيرابايت"}},"duration":{"day":{"_name":"يوم","zero":"%1$s يوم","one":"%1$s يوم","two":"%1$s يوم","few":"%1$s يوم","many":"%1$s يوم","other":"%1$s يوم"},"hour":{"_name":"ساعة","zero":"%1$s س","one":"%1$s س","two":"%1$s س","few":"%1$s س","many":"%1$s س","other":"%1$s س","_per":"%1$s/س"},"microsecond":{"_name":"م.ث.","zero":"%1$s م.ث.","one":"%1$s م.ث.","two":"%1$s م.ث.","few":"%1$s م.ث.","many":"%1$s م.ث.","other":"%1$s م.ث."},"millisecond":{"_name":"مللي ثانية","zero":"%1$s مللي ث.","one":"%1$s مللي ث.","two":"%1$s مللي ث.","few":"%1$s مللي ث.","many":"%1$s مللي ث.","other":"%1$s مللي ث."},"minute":{"_name":"د","zero":"%1$s د","one":"%1$s د","two":"%1$s د","few":"%1$s د","many":"%1$s د","other":"%1$s د"},"month":{"_name":"شهر","zero":"%1$s شهر","one":"%1$s شهر","two":"%1$s شهر","few":"%1$s شهر","many":"%1$s شهر","other":"%1$s شهر"},"nanosecond":{"_name":"ن.ث.","zero":"%1$s ن.ث.","one":"%1$s ن.ث.","two":"%1$s ن.ث.","few":"%1$s ن.ث.","many":"%1$s ن.ث.","other":"%1$s ن.ث."},"second":{"_name":"ث","zero":"%1$s ث","one":"%1$s ث","two":"%1$s ث","few":"%1$s ث","many":"%1$s ث","other":"%1$s ث","_per":"%1$s/ث"},"week":{"_name":"أسبوع","zero":"%1$s أسبوع","one":"%1$s أسبوع","two":"%1$s أسبوع","few":"%1$s أسبوع","many":"%1$s أسبوع","other":"%1$s أسبوع"},"year":{"_name":"سنة","zero":"%1$s سنة","one":"%1$s سنة","two":"%1$s سنة","few":"%1$s سنة","many":"%1$s سنة","other":"%1$s سنة"}},"electric":{"ampere":{"_name":"أمبير","zero":"%1$s أمبير","one":"%1$s أمبير","two":"%1$s أمبير","few":"%1$s أمبير","many":"%1$s أمبير","other":"%1$s أمبير"},"milliampere":{"_name":"مللي أمبير","zero":"%1$s مللي أمبير","one":"%1$s مللي أمبير","two":"%1$s مللي أمبير","few":"%1$s مللي أمبير","many":"%1$s مللي أمبير","other":"%1$s مللي أمبير"},"ohm":{"_name":"أوم","zero":"%1$s أوم","one":"%1$s أوم","two":"%1$s أوم","few":"%1$s أوم","many":"%1$s أوم","other":"%1$s أوم"},"volt":{"_name":"فولت","zero":"%1$s فولت","one":"%1$s فولت","two":"%1$s فولت","few":"%1$s فولت","many":"%1$s فولت","other":"%1$s فولت"}},"energy":{"calorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"foodcalorie":{"_name":"كالوري","zero":"%1$s كالوري","one":"%1$s كالوري","two":"%1$s كالوري","few":"%1$s كالوري","many":"%1$s كالوري","other":"%1$s كالوري"},"joule":{"_name":"جول","zero":"%1$s جول","one":"%1$s جول","two":"%1$s جول","few":"%1$s جول","many":"%1$s جول","other":"%1$s جول"},"kilocalorie":{"_name":"ك كالوري","zero":"%1$s ك كالوري","one":"%1$s ك كالوري","two":"%1$s ك كالوري","few":"%1$s ك كالوري","many":"%1$s ك كالوري","other":"%1$s ك كالوري"},"kilojoule":{"_name":"ك جول","zero":"%1$s ك جول","one":"%1$s ك جول","two":"%1$s ك جول","few":"%1$s ك جول","many":"%1$s ك جول","other":"%1$s ك جول"},"kilowatt-hour":{"_name":"ك.و.س","zero":"%1$s ك.و.س","one":"%1$s ك.و.س","two":"%1$s ك.و.س","few":"%1$s ك.و.س","many":"%1$s ك.و.س","other":"%1$s ك.و.س"}},"frequency":{"gigahertz":{"_name":"غ هرتز","zero":"%1$s غ هرتز","one":"%1$s غ هرتز","two":"%1$s غ هرتز","few":"%1$s غ هرتز","many":"%1$s غ هرتز","other":"%1$s غ هرتز"},"hertz":{"_name":"هرتز","zero":"%1$s هرتز","one":"%1$s هرتز","two":"%1$s هرتز","few":"%1$s هرتز","many":"%1$s هرتز","other":"%1$s هرتز"},"kilohertz":{"_name":"ك هرتز","zero":"%1$s ك هرتز","one":"%1$s ك هرتز","two":"%1$s ك هرتز","few":"%1$s ك هرتز","many":"%1$s ك هرتز","other":"%1$s ك هرتز"},"megahertz":{"_name":"م هرتز","zero":"%1$s م هرتز","one":"%1$s م هرتز","two":"%1$s م هرتز","few":"%1$s م هرتز","many":"%1$s م هرتز","other":"%1$s م هرتز"}},"length":{"astronomical-unit":{"_name":"و.ف.","zero":"%1$s و.ف.","one":"%1$s و.ف.","two":"%1$s و.ف.","few":"%1$s و.ف.","many":"%1$s و.ف.","other":"%1$s و.ف."},"centimeter":{"_name":"سم","zero":"%1$s سم","one":"%1$s سم","two":"%1$s سم","few":"%1$s سم","many":"%1$s سم","other":"%1$s سم"},"decimeter":{"_name":"دسم","zero":"%1$s دسم","one":"%1$s دسم","two":"%1$s دسم","few":"%1$s دسم","many":"%1$s دسم","other":"%1$s دسم"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"قدم","zero":"%1$s من الأقدام","one":"%1$s قدم","two":"قدمان (%1$s)","few":"%1$s أقدام","many":"%1$s قدمًا","other":"%1$s من الأقدام"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"بوصة","zero":"%1$s بوصة","one":"%1$s بوصة","two":"%1$s بوصة","few":"%1$s بوصة","many":"%1$s بوصة","other":"%1$s بوصة"},"kilometer":{"_name":"كم","zero":"%1$s كم","one":"%1$s كم","two":"%1$s كم","few":"%1$s كم","many":"%1$s كم","other":"%1$s كم"},"light-year":{"_name":"سنة ضوئية","zero":"%1$sس ض","one":"%1$s س ض","two":"%1$s س ض","few":"%1$s س ض","many":"%1$s س ض","other":"%1$s س ض"},"meter":{"_name":"متر","zero":"%1$s من الأمتار","one":"%1$s متر","two":"متران (%1$s)","few":"%1$s أمتار","many":"%1$s مترًا","other":"%1$s من الأمتار"},"micrometer":{"_name":"ميكرومتر","zero":"%1$s ميكرومتر","one":"%1$s ميكرومتر","two":"%1$s ميكرومتر","few":"%1$s ميكرومتر","many":"%1$s ميكرومتر","other":"%1$s ميكرومتر"},"mile":{"_name":"ميل","zero":"%1$s من الأميال","one":"%1$s ميل","two":"ميلان (%1$s)","few":"%1$s أميال","many":"%1$s ميلاً","other":"%1$s من الأميال"},"millimeter":{"_name":"مم","zero":"%1$s ملليمتر","one":"%1$s ملليمتر","two":"%1$s ملليمتر","few":"%1$s ملليمتر","many":"%1$s ملليمتر","other":"%1$s ملليمتر"},"nanometer":{"_name":"نانو متر","zero":"%1$s نانو متر","one":"%1$s نانو متر","two":"%1$s نانو متر","few":"%1$s نانو متر","many":"%1$s نانو متر","other":"%1$s نانو متر"},"nautical-mile":{"_name":"ميل بحري","zero":"%1$s من الأميال البحرية","one":"%1$s من الأميال البحرية","two":"%1$s من الأميال البحرية","few":"%1$s من الأميال البحرية","many":"%1$s من الأميال البحرية","other":"%1$s من الأميال البحرية"},"parsec":{"_name":"فرسخ فلكي","zero":"%1$s من الفراسخ الفلكية","one":"%1$s من الفراسخ الفلكية","two":"%1$s من الفراسخ الفلكية","few":"%1$s من الفراسخ الفلكية","many":"%1$s من الفراسخ الفلكية","other":"%1$s من الفراسخ الفلكية"},"picometer":{"_name":"بيكومتر","zero":"%1$s بيكومتر","one":"%1$s بيكومتر","two":"%1$s بيكومتر","few":"%1$s بيكومتر","many":"%1$s بيكومتر","other":"%1$s بيكومتر"},"yard":{"_name":"ياردة","zero":"%1$s من الياردات","one":"%1$s ياردة","two":"ياردتان (%1$s)","few":"%1$s ياردات","many":"%1$s ياردة","other":"%1$s من الياردات"}},"light":{"lux":{"_name":"لكس","zero":"%1$s لكس","one":"%1$s لكس","two":"%1$s لكس","few":"%1$s لكس","many":"%1$s لكس","other":"%1$s لكس"}},"mass":{"carat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"},"gram":{"_name":"غ","zero":"%1$s غ","one":"%1$s غرام","two":"غرامان (%1$s)","few":"%1$s غرامات","many":"%1$s غرامًا","other":"%1$sغ"},"kilogram":{"_name":"كغم","zero":"%1$s كغم","one":"%1$s كغم","two":"%1$s كغم","few":"%1$s كغم","many":"%1$s كغم","other":"%1$s كغم"},"metric-ton":{"_name":"ط/م","zero":"%1$s ط/م","one":"%1$s ط/م","two":"%1$s ط/م","few":"%1$s ط/م","many":"%1$s ط/م","other":"%1$s ط/م"},"microgram":{"_name":"مكغم","zero":"%1$s مكغم","one":"%1$s مكغم","two":"%1$s مكغم","few":"%1$s مكغم","many":"%1$s مكغم","other":"%1$s مكغم"},"milligram":{"_name":"مغم","zero":"%1$s مغم","one":"%1$s مغم","two":"%1$s مغم","few":"%1$s مغم","many":"%1$s مغم","other":"%1$s مغم"},"ounce":{"_name":"أونصة","zero":"%1$s أونس","one":"%1$s أونس","two":"%1$s أونس","few":"%1$s أونس","many":"%1$s أونس","other":"%1$s أونس"},"ounce-troy":{"_name":"أونصة ترويسية","zero":"%1$s أونصات ترويسية","one":"%1$s أونصات ترويسية","two":"%1$s أونصات ترويسية","few":"%1$s أونصات ترويسية","many":"%1$s أونصات ترويسية","other":"%1$s أونصات ترويسية"},"pound":{"_name":"رطل","zero":"%1$s#","one":"%1$s#","two":"%1$s#","few":"%1$s#","many":"%1$s#","other":"%1$s#"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"طن","zero":"%1$s طن","one":"%1$s طن","two":"%1$s طن","few":"%1$s طن","many":"%1$s طن","other":"%1$s طن"}},"power":{"gigawatt":{"_name":"غ واط","zero":"%1$s غ واط","one":"%1$s غ واط","two":"%1$s غ واط","few":"%1$s غ واط","many":"%1$s غ واط","other":"%1$s غ واط"},"horsepower":{"_name":"قوة حصان","zero":"%1$s قوة حصان","one":"%1$s قوة حصان","two":"%1$s قوة حصان","few":"%1$s قوة حصان","many":"%1$s قوة حصان","other":"%1$s قوة حصان"},"kilowatt":{"_name":"ك واط","zero":"%1$s كواط","one":"%1$s كواط","two":"%1$s كواط","few":"%1$s كواط","many":"%1$s كواط","other":"%1$s كواط"},"megawatt":{"_name":"م واط","zero":"%1$s م واط","one":"%1$s م واط","two":"%1$s م واط","few":"%1$s م واط","many":"%1$s م واط","other":"%1$s م واط"},"milliwatt":{"_name":"مللي واط","zero":"%1$s مللي واط","one":"%1$s مللي واط","two":"%1$s مللي واط","few":"%1$s مللي واط","many":"%1$s مللي واط","other":"%1$s مللي واط"},"watt":{"_name":"واط","zero":"%1$s واط","one":"%1$s واط","two":"%1$s واط","few":"%1$s واط","many":"%1$s واط","other":"%1$s واط"}},"pressure":{"hectopascal":{"_name":"هكتوباسكال","zero":"%1$s هكب","one":"%1$s هكب","two":"%1$s هكب","few":"%1$s هكب","many":"%1$s هكب","other":"%1$s هكب"},"inch-hg":{"_name":"بوصة زئبقية","zero":"%1$s ب ز","one":"%1$s ب ز","two":"%1$s ب ز","few":"%1$s ب ز","many":"%1$s ب ز","other":"%1$s ب ز"},"millibar":{"_name":"مللي بار","zero":"%1$s مللي بار","one":"%1$s مللي بار","two":"%1$s مللي بار","few":"%1$s مللي بار","many":"%1$s مللي بار","other":"%1$s مللي بار"},"millimeter-of-mercury":{"_name":"ملم زئبقي","zero":"%1$s ملم زئبقي","one":"%1$s ملم زئبقي","two":"%1$s ملم زئبقي","few":"%1$s ملم زئبقي","many":"%1$s ملم زئبقي","other":"%1$s ملم زئبقي"},"pound-per-square-inch":{"_name":"رطل/بوصة مربعة","zero":"%1$s رطل/بوصة مربعة","one":"%1$s رطل/بوصة مربعة","two":"%1$s رطل/بوصة مربعة","few":"%1$s رطل/بوصة مربعة","many":"%1$s رطل/بوصة مربعة","other":"%1$s رطل/بوصة مربعة"}},"proportion":{"karat":{"_name":"قيراط","zero":"%1$s قيراط","one":"%1$s قيراط","two":"%1$s قيراط","few":"%1$s قيراط","many":"%1$s قيراط","other":"%1$s قيراط"}},"speed":{"kilometer-per-hour":{"_name":"كم/س","zero":"%1$s كم/س","one":"%1$s كم/س","two":"%1$s كم/س","few":"%1$s كم/س","many":"%1$s كم/س","other":"%1$s كم/س"},"meter-per-second":{"_name":"م/ث","zero":"%1$s م/ث","one":"%1$s م/ث","two":"%1$s م/ث","few":"%1$s م/ث","many":"%1$s م/ث","other":"%1$s م/ث"},"mile-per-hour":{"_name":"ميل/س","zero":"%1$s ميل/س","one":"%1$s ميل/س","two":"%1$s ميل/س","few":"%1$s ميل/س","many":"%1$s ميل/س","other":"%1$s ميل/س"}},"temperature":{"celsius":{"_name":"°م","zero":"%1$s°م","one":"%1$s°م","two":"%1$s°م","few":"%1$s°م","many":"%1$s°م","other":"%1$s°م"},"fahrenheit":{"_name":"درجة فهرنهايت","zero":"%1$s د ف","one":"%1$s د ف","two":"%1$s د ف","few":"%1$s د ف","many":"%1$s د ف","other":"%1$s د ف"},"kelvin":{"_name":"د كلفن","zero":"%1$s د كلفن","one":"%1$s د كلفن","two":"%1$s د كلفن","few":"%1$s د كلفن","many":"%1$s د كلفن","other":"%1$s د كلفن"}},"volume":{"acre-foot":{"_name":"فدان قدم","zero":"%1$s فدان قدم","one":"%1$s فدان قدم","two":"%1$s فدان قدم","few":"%1$s فدان قدم","many":"%1$s فدان قدم","other":"%1$s فدان قدم"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"سنتيلتر","zero":"%1$s سنتيلتر","one":"%1$s سنتيلتر","two":"%1$s سنتيلتر","few":"%1$s سنتيلتر","many":"%1$s سنتيلتر","other":"%1$s سنتيلتر"},"cubic-centimeter":{"_name":"سم³","zero":"%1$s سم³","one":"%1$s سم³","two":"%1$s سم³","few":"%1$s سم³","many":"%1$s سم³","other":"%1$s سم³"},"cubic-foot":{"_name":"قدم مكعبة","zero":"%1$s من الأقدام المكعبة","one":"%1$s من الأقدام المكعبة","two":"%1$s من الأقدام المكعبة","few":"%1$s من الأقدام المكعبة","many":"%1$s من الأقدام المكعبة","other":"%1$s من الأقدام المكعبة"},"cubic-inch":{"_name":"بوصة مكعبة","zero":"%1$s بوصة مكعبة","one":"%1$s بوصة مكعبة","two":"%1$s بوصة مكعبة","few":"%1$s بوصة مكعبة","many":"%1$s بوصة مكعبة","other":"%1$s بوصة مكعبة"},"cubic-kilometer":{"_name":"كم³","zero":"%1$s كم³","one":"%1$s كم³","two":"%1$s كم³","few":"%1$s كم³","many":"%1$s كم³","other":"%1$s كم³"},"cubic-meter":{"_name":"م³","zero":"%1$s م³","one":"%1$s م³","two":"%1$s م³","few":"%1$s م³","many":"%1$s م³","other":"%1$s م³"},"cubic-mile":{"_name":"ميل مكعب","zero":"%1$s ميل مكعب","one":"%1$s ميل مكعب","two":"%1$s ميل مكعب","few":"%1$s ميل مكعب","many":"%1$s ميل مكعب","other":"%1$s ميل مكعب"},"cubic-yard":{"_name":"ياردة مكعبة","zero":"%1$s ياردة مكعبة","one":"%1$s ياردة مكعبة","two":"%1$s ياردة مكعبة","few":"%1$s ياردة مكعبة","many":"%1$s ياردة مكعبة","other":"%1$s ياردة مكعبة"},"cup":{"_name":"كوب","zero":"%1$s من الأكواب","one":"%1$s من الأكواب","two":"%1$s من الأكواب","few":"%1$s من الأكواب","many":"%1$s من الأكواب","other":"%1$s من الأكواب"},"deciliter":{"_name":"ديسيلتر","zero":"%1$s ديسيلتر","one":"%1$s ديسيلتر","two":"%1$s ديسيلتر","few":"%1$s ديسيلتر","many":"%1$s ديسيلتر","other":"%1$s ديسيلتر"},"fluid-ounce":{"_name":"أونصة سائلة","zero":"%1$s من الأونصات السائلة","one":"%1$s من الأونصات السائلة","two":"%1$s من الأونصات السائلة","few":"%1$s من الأونصات السائلة","many":"%1$s من الأونصات السائلة","other":"%1$s من الأونصات السائلة"},"gallon":{"_name":"غالون","zero":"%1$s من الغالونات","one":"%1$s من الغالونات","two":"%1$s من الغالونات","few":"%1$s من الغالونات","many":"%1$s من الغالونات","other":"%1$s من الغالونات"},"hectoliter":{"_name":"هكتولتر","zero":"%1$s هكتولتر","one":"%1$s هكتولتر","two":"%1$s هكتولتر","few":"%1$s هكتولتر","many":"%1$s هكتولتر","other":"%1$s هكتولتر"},"liter":{"_name":"لتر","zero":"%1$s ل","one":"%1$s لتر","two":"لتران (%1$s)","few":"%1$s لترات","many":"%1$s لترًا","other":"%1$s ل"},"megaliter":{"_name":"ميغالتر","zero":"%1$s ميغالتر","one":"%1$s ميغالتر","two":"%1$s ميغالتر","few":"%1$s ميغالتر","many":"%1$s ميغالتر","other":"%1$s ميغالتر"},"milliliter":{"_name":"ملتر","zero":"%1$s ملتر","one":"%1$s ملتر","two":"%1$s ملتر","few":"%1$s ملتر","many":"%1$s ملتر","other":"%1$s ملتر"},"pint":{"_name":"باينت","zero":"%1$s باينت","one":"%1$s باينت","two":"%1$s باينت","few":"%1$s باينت","many":"%1$s باينت","other":"%1$s باينت"},"quart":{"_name":"ربع غالون","zero":"%1$s من أرباع الغالون","one":"%1$s من أرباع الغالون","two":"%1$s من أرباع الغالون","few":"%1$s من أرباع الغالون","many":"%1$s من أرباع الغالون","other":"%1$s من أرباع الغالون"},"tablespoon":{"_name":"ملعقة المائدة","zero":"%1$s من ملاعق المائدة","one":"%1$s من ملاعق المائدة","two":"%1$s من ملاعق المائدة","few":"%1$s من ملاعق المائدة","many":"%1$s من ملاعق المائدة","other":"%1$s من ملاعق المائدة"},"teaspoon":{"_name":"ملعقة شاي","zero":"%1$s من ملاعق الشاي","one":"%1$s من ملاعق الشاي","two":"%1$s من ملاعق الشاي","few":"%1$s من ملاعق الشاي","many":"%1$s من ملاعق الشاي","other":"%1$s من ملاعق الشاي"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/ca/calendar.json b/Punic/data/ca/calendar.json new file mode 100644 index 0000000..70ca00a --- /dev/null +++ b/Punic/data/ca/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"gen.","2":"febr.","3":"març","4":"abr.","5":"maig","6":"juny","7":"jul.","8":"ag.","9":"set.","10":"oct.","11":"nov.","12":"des."},"narrow":{"1":"GN","2":"FB","3":"MÇ","4":"AB","5":"MG","6":"JN","7":"JL","8":"AG","9":"ST","10":"OC","11":"NV","12":"DS"},"wide":{"1":"gener","2":"febrer","3":"març","4":"abril","5":"maig","6":"juny","7":"juliol","8":"agost","9":"setembre","10":"octubre","11":"novembre","12":"desembre"}},"stand-alone":{"abbreviated":{"1":"gen.","2":"febr.","3":"març","4":"abr.","5":"maig","6":"juny","7":"jul.","8":"ag.","9":"set.","10":"oct.","11":"nov.","12":"des."},"narrow":{"1":"GN","2":"FB","3":"MÇ","4":"AB","5":"MG","6":"JN","7":"JL","8":"AG","9":"ST","10":"OC","11":"NV","12":"DS"},"wide":{"1":"gener","2":"febrer","3":"març","4":"abril","5":"maig","6":"juny","7":"juliol","8":"agost","9":"setembre","10":"octubre","11":"novembre","12":"desembre"}}},"days":{"format":{"abbreviated":{"sun":"dg.","mon":"dl.","tue":"dt.","wed":"dc.","thu":"dj.","fri":"dv.","sat":"ds."},"narrow":{"sun":"dg","mon":"dl","tue":"dt","wed":"dc","thu":"dj","fri":"dv","sat":"ds"},"short":{"sun":"dg.","mon":"dl.","tue":"dt.","wed":"dc.","thu":"dj.","fri":"dv.","sat":"ds."},"wide":{"sun":"diumenge","mon":"dilluns","tue":"dimarts","wed":"dimecres","thu":"dijous","fri":"divendres","sat":"dissabte"}},"stand-alone":{"abbreviated":{"sun":"dg.","mon":"dl.","tue":"dt.","wed":"dc.","thu":"dj.","fri":"dv.","sat":"ds."},"narrow":{"sun":"dg","mon":"dl","tue":"dt","wed":"dc","thu":"dj","fri":"dv","sat":"ds"},"short":{"sun":"dg.","mon":"dl.","tue":"dt.","wed":"dc.","thu":"dj.","fri":"dv.","sat":"ds."},"wide":{"sun":"diumenge","mon":"dilluns","tue":"dimarts","wed":"dimecres","thu":"dijous","fri":"divendres","sat":"dissabte"}}},"quarters":{"format":{"abbreviated":{"1":"1T","2":"2T","3":"3T","4":"4T"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1r trimestre","2":"2n trimestre","3":"3r trimestre","4":"4t trimestre"}},"stand-alone":{"abbreviated":{"1":"1T","2":"2T","3":"3T","4":"4T"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1r trimestre","2":"2n trimestre","3":"3r trimestre","4":"4t trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"am":"a. m.","noon":"migdia","pm":"p. m."},"narrow":{"am":"a.m.","noon":"md","pm":"p.m."},"wide":{"am":"a. m.","noon":"migdia","pm":"p. m."}},"stand-alone":{"abbreviated":{"am":"a. m.","noon":"migdia","pm":"p. m."},"narrow":{"am":"a.m.","noon":"md","pm":"p.m."},"wide":{"am":"a. m.","noon":"migdia","pm":"p. m."}}},"eras":{"wide":{"0":"abans de Crist","0-alt-variant":"abans de l’Era Comuna","1":"després de Crist","1-alt-variant":"Era Comuna"},"abbreviated":{"0":"aC","0-alt-variant":"AEC","1":"dC","1-alt-variant":"EC"},"narrow":{"0":"aC","0-alt-variant":"a. de la n. e.","1":"dC","1-alt-variant":"de la n.e."}},"dateFormats":{"full":"EEEE, d MMMM 'de' y","long":"d MMMM 'de' y","medium":"d MMM y","short":"d/M/yy"},"timeFormats":{"full":"H:mm:ss zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s 'a les' %1$s","long":"%2$s, %1$s","medium":"%2$s , %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/ca/dateFields.json b/Punic/data/ca/dateFields.json new file mode 100644 index 0000000..58bd96a --- /dev/null +++ b/Punic/data/ca/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"era"},"year":{"displayName":"any","relative-type--1":"l’any passat","relative-type-0":"enguany","relative-type-1":"l’any que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} any","relativeTimePattern-count-other":"d’aquí a {0} anys"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} any","relativeTimePattern-count-other":"fa {0} anys"}},"year-short":{"displayName":"any","relative-type--1":"l’any passat","relative-type-0":"enguany","relative-type-1":"l’any que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} any","relativeTimePattern-count-other":"d’aquí a {0} anys"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} any","relativeTimePattern-count-other":"fa {0} anys"}},"year-narrow":{"displayName":"any","relative-type--1":"l’any passat","relative-type-0":"enguany","relative-type-1":"l’any que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"en {0} any","relativeTimePattern-count-other":"en {0} anys"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} any","relativeTimePattern-count-other":"fa {0} anys"}},"quarter":{"displayName":"trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} trimestre","relativeTimePattern-count-other":"d’aquí a {0} trimestres"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} trimestre","relativeTimePattern-count-other":"fa {0} trimestres"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} trim.","relativeTimePattern-count-other":"d’aquí a {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} trim.","relativeTimePattern-count-other":"fa {0} trim."}},"quarter-narrow":{"displayName":"T","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"en {0} trim.","relativeTimePattern-count-other":"en {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} trim.","relativeTimePattern-count-other":"fa {0} trim."}},"month":{"displayName":"mes","relative-type--1":"el mes passat","relative-type-0":"aquest mes","relative-type-1":"el mes que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} mes","relativeTimePattern-count-other":"d’aquí a {0} mesos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} mes","relativeTimePattern-count-other":"fa {0} mesos"}},"month-short":{"displayName":"mes","relative-type--1":"el mes passat","relative-type-0":"aquest mes","relative-type-1":"el mes que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} mes","relativeTimePattern-count-other":"d’aquí a {0} mesos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} mes","relativeTimePattern-count-other":"fa {0} mesos"}},"month-narrow":{"displayName":"mes","relative-type--1":"el mes passat","relative-type-0":"aquest mes","relative-type-1":"el mes que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"en {0} mes","relativeTimePattern-count-other":"en {0} mesos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} mes","relativeTimePattern-count-other":"fa {0} mesos"}},"week":{"displayName":"setmana","relative-type--1":"la setmana passada","relative-type-0":"aquesta setmana","relative-type-1":"la setmana que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} setmana","relativeTimePattern-count-other":"d’aquí a {0} setmanes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} setmana","relativeTimePattern-count-other":"fa {0} setmanes"}},"week-short":{"displayName":"setm.","relative-type--1":"la setmana passada","relative-type-0":"aquesta setmana","relative-type-1":"la setmana que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} setm.","relativeTimePattern-count-other":"d’aquí a {0} setm."},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} setm.","relativeTimePattern-count-other":"fa {0} setm."}},"week-narrow":{"displayName":"setm.","relative-type--1":"la setmana passada","relative-type-0":"aquesta setmana","relative-type-1":"la setmana que ve","relativeTime-type-future":{"relativeTimePattern-count-one":"en {0} setm.","relativeTimePattern-count-other":"en {0} setm."},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} setm.","relativeTimePattern-count-other":"fa {0} setm."}},"day":{"displayName":"dia","relative-type--1":"ahir","relative-type--2":"abans-d’ahir","relative-type-0":"avui","relative-type-1":"demà","relative-type-2":"demà passat","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} dia","relativeTimePattern-count-other":"d’aquí a {0} dies"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} dia","relativeTimePattern-count-other":"fa {0} dies"}},"day-short":{"displayName":"dia","relative-type--1":"ahir","relative-type--2":"abans-d’ahir","relative-type-0":"avui","relative-type-1":"demà","relative-type-2":"demà passat","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} dia","relativeTimePattern-count-other":"d’aquí a {0} dies"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} dia","relativeTimePattern-count-other":"fa {0} dies"}},"day-narrow":{"displayName":"dia","relative-type--1":"ahir","relative-type--2":"abans-d’ahir","relative-type-0":"avui","relative-type-1":"demà","relative-type-2":"demà passat","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} dia","relativeTimePattern-count-other":"d’aquí a {0} dies"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} dia","relativeTimePattern-count-other":"fa {0} dies"}},"weekday":{"displayName":"dia de la setmana"},"sun":{"relative-type--1":"diumenge passat","relative-type-0":"aquest diumenge","relative-type-1":"diumenge que ve"},"sun-short":{"relative-type--1":"dg. passat","relative-type-0":"aquest dg.","relative-type-1":"dg. que ve"},"sun-narrow":{"relative-type--1":"dg. passat","relative-type-0":"aquest dg.","relative-type-1":"dg. que ve"},"mon":{"relative-type--1":"dilluns passat","relative-type-0":"aquest dilluns","relative-type-1":"dilluns que ve"},"mon-short":{"relative-type--1":"dl. passat","relative-type-0":"aquest dl.","relative-type-1":"dl. que ve"},"mon-narrow":{"relative-type--1":"dl. passat","relative-type-0":"aquest dl.","relative-type-1":"dl. que ve"},"tue":{"relative-type--1":"dimarts passat","relative-type-0":"aquest dimarts","relative-type-1":"dimarts que ve"},"tue-short":{"relative-type--1":"dm. passat","relative-type-0":"aquest dm.","relative-type-1":"dm. que ve"},"tue-narrow":{"relative-type--1":"dm. passat","relative-type-0":"aquest dm.","relative-type-1":"dm. que ve"},"wed":{"relative-type--1":"dimecres passat","relative-type-0":"aquest dimecres","relative-type-1":"dimecres que ve"},"wed-short":{"relative-type--1":"dc. passat","relative-type-0":"aquest dc.","relative-type-1":"dc. que ve"},"wed-narrow":{"relative-type--1":"dc. passat","relative-type-0":"aquest dc.","relative-type-1":"dc. que ve"},"thu":{"relative-type--1":"dijous passat","relative-type-0":"aquest dijous","relative-type-1":"dijous que ve"},"thu-short":{"relative-type--1":"dj. passat","relative-type-0":"aquest dj.","relative-type-1":"dj. que ve"},"thu-narrow":{"relative-type--1":"dj. passat","relative-type-0":"aquest dj.","relative-type-1":"dj. que ve"},"fri":{"relative-type--1":"divendres passat","relative-type-0":"aquest divendres","relative-type-1":"divendres que ve"},"fri-short":{"relative-type--1":"dv. passat","relative-type-0":"aquest dv.","relative-type-1":"dv. que ve"},"fri-narrow":{"relative-type--1":"dv. passat","relative-type-0":"aquest dv.","relative-type-1":"dv. que ve"},"sat":{"relative-type--1":"dissabte passat","relative-type-0":"aquest dissabte","relative-type-1":"dissabte que ve"},"sat-short":{"relative-type--1":"ds. passat","relative-type-0":"aquest ds.","relative-type-1":"ds. que ve"},"sat-narrow":{"relative-type--1":"ds. passat","relative-type-0":"aquest ds.","relative-type-1":"ds. que ve"},"dayperiod":{"displayName":"a. m./p. m."},"hour":{"displayName":"hora","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} hora","relativeTimePattern-count-other":"d’aquí {0} hores"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} hora","relativeTimePattern-count-other":"fa {0} hores"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} h","relativeTimePattern-count-other":"d’aquí {0} hores"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} h","relativeTimePattern-count-other":"fa {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"d‘aquí a {0} h","relativeTimePattern-count-other":"d‘aquí a {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} h","relativeTimePattern-count-other":"fa {0} h"}},"minute":{"displayName":"minut","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} minut","relativeTimePattern-count-other":"d’aquí a {0} minuts"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} minut","relativeTimePattern-count-other":"fa {0} minuts"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} min","relativeTimePattern-count-other":"d’aquí a {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} min","relativeTimePattern-count-other":"fa {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} min","relativeTimePattern-count-other":"d’aquí a {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} min","relativeTimePattern-count-other":"fa {0} min"}},"second":{"displayName":"segon","relative-type-0":"ara","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} segon","relativeTimePattern-count-other":"d’aquí a {0} segons"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} segon","relativeTimePattern-count-other":"fa {0} segons"}},"second-short":{"displayName":"s","relative-type-0":"ara","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} s","relativeTimePattern-count-other":"d’aquí a {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} s","relativeTimePattern-count-other":"fa {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"ara","relativeTime-type-future":{"relativeTimePattern-count-one":"d’aquí a {0} s","relativeTimePattern-count-other":"d’aquí a {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"fa {0} s","relativeTimePattern-count-other":"fa {0} s"}},"zone":{"displayName":"zona"}} \ No newline at end of file diff --git a/Punic/data/ca/languages.json b/Punic/data/ca/languages.json new file mode 100644 index 0000000..b8f27f5 --- /dev/null +++ b/Punic/data/ca/languages.json @@ -0,0 +1 @@ +{"aa":"àfar","ab":"abkhaz","ace":"atjeh","ach":"acoli","ada":"adangme","ady":"adigué","ae":"avèstic","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"àkan","akk":"accadi","akz":"akz","ale":"aleuta","aln":"aln","alt":"altaic meridional","am":"amhàric","an":"aragonès","ang":"anglès antic","anp":"angika","ar":"àrab","ar-001":"àrab estàndard modern","arc":"arameu","arn":"araucà","aro":"aro","arp":"arapaho","arq":"arq","arw":"arauac","ary":"ary","arz":"arz","as":"assamès","asa":"pare","ase":"ase","ast":"asturià","av":"àvar","avk":"avk","awa":"awadhi","ay":"aimara","az":"azerbaidjanès","az-alt-short":"àzeri","azb":"azb","ba":"baixkir","bal":"balutxi","ban":"balinès","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"bielorús","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"búlgar","bho":"bhojpuri","bi":"bislama","bik":"bicol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"blackfoot","bm":"bambara","bn":"bengalí","bo":"tibetà","bpy":"bpy","bqi":"bqi","br":"bretó","bra":"braj","brh":"brh","brx":"bodo","bs":"bosnià","bss":"akoose","bua":"buriat","bug":"bugui","bum":"seki","byn":"bilin","byv":"medumba","ca":"català","cad":"caddo","car":"carib","cay":"cayuga","cch":"atsam","ce":"txetxè","ceb":"cebuà","cgg":"chiga","ch":"chamorro","chb":"txibtxa","chg":"txagatai","chk":"chuuk","chm":"mari","chn":"pidgin chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"xeienne","ckb":"kurd sorani","co":"cors","cop":"copte","cps":"cps","cr":"cree","crh":"tàtar de Crimea","cs":"txec","csb":"caixubi","cu":"eslau eclesiàstic","cv":"txuvaix","cy":"gal·lès","da":"danès","dak":"dakota","dar":"darguà","dav":"taita","de":"alemany","de-AT":"alemany austríac","de-CH":"alt alemany suís","del":"delaware","den":"slavey","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"baix sòrab","dtp":"dtp","dua":"douala","dum":"neerlandès mitjà","dv":"divehi","dyo":"diola","dyu":"jula","dz":"dzongka","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"egl","egy":"egipci antic","eka":"ekajuk","el":"grec","elx":"elamita","en":"anglès","en-AU":"anglès australià","en-CA":"anglès canadenc","en-GB":"anglès britànic","en-GB-alt-short":"anglès (GB)","en-US":"anglès americà","en-US-alt-short":"anglès (EUA)","enm":"anglès mitjà","eo":"esperanto","es":"espanyol","es-419":"espanyol hispanoamericà","es-ES":"espanyol europeu","es-MX":"espanyol de Mèxic","esu":"esu","et":"estonià","eu":"basc","ewo":"ewondo","ext":"ext","fa":"persa","fan":"fang","fat":"fanti","ff":"ful","fi":"finès","fil":"filipí","fit":"fit","fj":"fijià","fo":"feroès","fon":"fon","fr":"francès","fr-CA":"francès canadenc","fr-CH":"francès suís","frc":"frc","frm":"francès mitjà","fro":"francès antic","frp":"frp","frr":"frisó septentrional","frs":"frisó occidental","fur":"friülà","fy":"frisó oriental","ga":"irlandès","gaa":"ga","gag":"gagaús","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"gaèlic escocès","gez":"gueez","gil":"gilbertès","gl":"gallec","glk":"glk","gmh":"alt alemany mitjà","gn":"guaraní","goh":"alt alemany antic","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gòtic","grb":"grebo","grc":"grec antic","gsw":"alemany suís","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusí","gv":"manx","gwi":"gwichin","ha":"haussa","hai":"haida","hak":"hak","haw":"hawaià","he":"hebreu","hi":"hindi","hif":"hif","hil":"hiligainon","hit":"hitita","hmn":"hmong","ho":"hiri motu","hr":"croat","hsb":"alt sòrab","hsn":"hsn","ht":"haitià","hu":"hongarès","hup":"hupa","hy":"armeni","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesi","ie":"interlingue","ig":"igbo","ii":"yi sichuan","ik":"inupiak","ilo":"ilocà","inh":"ingúix","io":"ido","is":"islandès","it":"italià","iu":"inuktitut","izh":"izh","ja":"japonès","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"judeopersa","jrb":"judeoàrab","jut":"jut","jv":"javanès","ka":"georgià","kaa":"karakalpak","kab":"cabilenc","kac":"katxin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardí","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"crioll capverdià","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kgp","kha":"khasi","kho":"khotanès","khq":"koyra chiini","khw":"khw","ki":"kikuiu","kiu":"kiu","kj":"kuanyama","kk":"kazakh","kkj":"kako","kl":"grenlandès","kln":"kalenjin","km":"khmer","kmb":"kimbundu","kn":"kannada","ko":"coreà","koi":"komi-permiac","kok":"konkani","kos":"kosraeà","kpe":"kpelle","kr":"kanuri","krc":"karatxai","kri":"kri","krj":"krj","krl":"carelià","kru":"kurukh","ks":"caixmiri","ksb":"shambala","ksf":"bafia","ksh":"colognian","ku":"kurd","kum":"kúmik","kut":"kutenai","kv":"komi","kw":"còrnic","ky":"kirguís","la":"llatí","lad":"ladí","lag":"langi","lah":"panjabi occidental","lam":"lamba","lb":"luxemburguès","lez":"lesguià","lfn":"lfn","lg":"ganda","li":"limburguès","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laosià","lol":"mongo","loz":"lozi","lt":"lituà","ltg":"ltg","lu":"luba katanga","lua":"luba-lulua","lui":"luisenyo","lun":"lunda","luo":"luo","lus":"mizo","luy":"luyia","lv":"letó","lzh":"lzh","lzz":"lzz","mad":"madurès","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makassar","man":"mandinga","mas":"massai","mde":"maba","mdf":"mordovià moksa","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauricià","mg":"malgaix","mga":"gaèlic irlandès mitjà","mgh":"makhuwa-metto","mgo":"meta’","mh":"marshallès","mi":"maori","mic":"micmac","min":"minangkabau","mk":"macedoni","ml":"malaiàlam","mn":"mongol","mnc":"manxú","mni":"manipurí","moh":"mohawk","mos":"moré","mr":"marathi","mrj":"mrj","ms":"malai","mt":"maltès","mua":"mundang","mul":"llengües vàries","mus":"creek","mwl":"mirandès","mwr":"marwari","mwv":"mwv","my":"birmà","mye":"myene","myv":"mordovià erza","mzn":"mzn","na":"nauruà","nan":"nan","nap":"napolità","naq":"nama","nb":"noruec bokmål","nd":"ndebele septentrional","nds":"baix alemany","ne":"nepalès","new":"newari","ng":"ndonga","nia":"nias","niu":"niueà","njo":"njo","nl":"neerlandès","nl-BE":"flamenc","nmg":"bissio","nn":"noruec nynorsk","nnh":"ngiemboon","no":"noruec","nog":"nogai","non":"nòrdic antic","nov":"nov","nqo":"n’Ko","nr":"ndebele meridional","nso":"sotho septentrional","nus":"nuer","nv":"navaho","nwc":"newari clàssic","ny":"nyanja","nym":"nyamwesi","nyn":"nyankole","nyo":"nyoro","nzi":"nzema","oc":"occità","oj":"ojibwa","om":"oromo","or":"oriya","os":"osset","osa":"osage","ota":"turc otomà","pa":"panjabi","pag":"pangasi","pal":"pahlavi","pam":"pampangà","pap":"papiamento","pau":"palauà","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"persa antic","pfl":"pfl","phn":"fenici","pi":"pali","pl":"polonès","pms":"pms","pnt":"pnt","pon":"ponapeà","prg":"prg","pro":"provençal antic","ps":"paixtu","ps-alt-variant":"pushtu","pt":"portuguès","pt-BR":"portuguès del Brasil","pt-PT":"portuguès de Portugal","qu":"quítxua","quc":"quitxé","qug":"qug","raj":"rajasthani","rap":"rapanui","rar":"rarotongà","rgn":"rgn","rif":"rif","rm":"retoromànic","rn":"rundi","ro":"romanès","ro-MD":"moldau","rof":"rombo","rom":"romaní","root":"arrel","rtm":"rtm","ru":"rus","rue":"rue","rug":"rug","rup":"aromanès","rw":"ruandès","rwk":"rwo","sa":"sànscrit","sad":"sandawe","sah":"iacut","sam":"arameu samarità","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sard","scn":"sicilià","sco":"escocès","sd":"sindhi","sdc":"sdc","se":"sami septentrional","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"songhai oriental","sg":"sango","sga":"irlandès antic","sgs":"sgs","sh":"serbocroat","shi":"taixelhit","shn":"xan","shu":"àrab txadià","si":"singalès","sid":"sidamo","sk":"eslovac","sl":"eslovè","sli":"sli","sly":"sly","sm":"samoà","sma":"sami meridional","smj":"sami lule","smn":"sami d’Inari","sms":"sami skolt","sn":"shona","snk":"soninke","so":"somali","sog":"sogdià","sq":"albanès","sr":"serbi","srn":"sranan","srr":"serer","ss":"siswati","ssy":"saho","st":"sotho meridional","stq":"stq","su":"sundanès","suk":"sukuma","sus":"susú","sux":"sumeri","sv":"suec","sw":"suahili","swb":"comorià","swc":"suahili del Congo","syc":"siríac clàssic","syr":"siríac","szl":"szl","ta":"tàmil","tcy":"tcy","te":"telugu","tem":"temne","teo":"teso","ter":"terena","tet":"tetun","tg":"tadjik","th":"tailandès","ti":"tigrinya","tig":"tigre","tiv":"tiv","tk":"turcman","tkl":"tokelauès","tkr":"tkr","tl":"tagàlog","tlh":"klingonià","tli":"tlingit","tly":"tly","tmh":"tamazight","tn":"tswana","to":"tongalès","tog":"tonga","tpi":"tok pisin","tr":"turc","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshià","tt":"tàtar","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluà","tw":"twi","twq":"tasawaq","ty":"tahitià","tyv":"tuvinià","tzm":"amazic del Marroc central","udm":"udmurt","ug":"uigur","uga":"ugarític","uk":"ucraïnès","umb":"umbundu","und":"idioma desconegut","ur":"urdú","uz":"uzbek","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamita","vls":"vls","vmf":"vmf","vo":"volapük","vot":"vòtic","vro":"vro","vun":"vunjo","wa":"való","wae":"walser","wal":"ameto","war":"waray-waray","was":"washo","wo":"wòlof","wuu":"wuu","xal":"calmuc","xh":"xosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapeà","yav":"yangben","ybb":"yemba","yi":"jiddisch","yo":"ioruba","yrl":"yrl","yue":"cantonès","za":"zhuang","zap":"zapoteca","zbl":"símbols Bliss","zea":"zea","zen":"zenaga","zgh":"amazic estàndard marroquí","zh":"xinès","zh-Hans":"xinès simplificat","zh-Hant":"xinès tradicional","zu":"zulu","zun":"zuni","zxx":"sense contingut lingüístic","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/ca/listPatterns.json b/Punic/data/ca/listPatterns.json new file mode 100644 index 0000000..b858af5 --- /dev/null +++ b/Punic/data/ca/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"}} \ No newline at end of file diff --git a/Punic/data/ca/localeDisplayNames.json b/Punic/data/ca/localeDisplayNames.json new file mode 100644 index 0000000..e619d17 --- /dev/null +++ b/Punic/data/ca/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"calendari","colAlternate":"Ordenació sense tenir en compte els símbols","colBackwards":"Ordenació per accents invertida","colCaseFirst":"Ordenació per majúscules i minúscules","colCaseLevel":"Ordenació per detecció de majúscules","colHiraganaQuaternary":"Ordenació per kana","colNormalization":"Ordenació normalitzada","colNumeric":"Ordenació numèrica","colStrength":"Força de l’ordenació","collation":"ordenació","currency":"moneda","numbers":"xifres","timezone":"Zona horària","va":"Variant local","variableTop":"Ordena com a símbols","x":"ús privat"},"types":{"numbers":{"vaii":"dígits vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"calendari de la República de Xina"},"colStrength":{"tertiary":"Ordena per accent/majúscules/amplada"},"colCaseFirst":{"upper":"Ordena amb majúscules primer"},"colBackwards":{"yes":"Ordena amb ordre invers dels accents"},"colCaseLevel":{"yes":"Ordena amb detecció de majúscules i minúscules"},"colHiraganaQuaternary":{"yes":"Ordena els caràcters kana de manera diferent"},"colNormalization":{"yes":"Ordena per caràcters Unicode normalitzats"},"colNumeric":{"yes":"Ordena els dígits numèricament"},"colAlternate":{"shifted":"Ordena sense tenir en compte els símbols"}},"codePatterns":{"language":"Idioma: %1$s","script":"Escriptura: %1$s","territory":"Regió: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ca/numbers.json b/Punic/data/ca/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/ca/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ca/territories.json b/Punic/data/ca/territories.json new file mode 100644 index 0000000..290fc19 --- /dev/null +++ b/Punic/data/ca/territories.json @@ -0,0 +1 @@ +{"001":"Món","002":"Àfrica","003":"Amèrica del Nord","005":"Amèrica del Sud","009":"Oceania","011":"Àfrica occidental","013":"Amèrica Central","014":"Àfrica oriental","015":"Àfrica septentrional","017":"Àfrica central","018":"Àfrica meridional","019":"Amèrica","021":"Amèrica septentrional","029":"Carib","030":"Àsia oriental","034":"Àsia meridional","035":"Àsia sud-oriental","039":"Europa meridional","053":"Australàsia","054":"Melanèsia","057":"Regió de la Micronèsia","061":"Polinèsia","142":"Àsia","143":"Àsia central","145":"Àsia occidental","150":"Europa","151":"Europa oriental","154":"Europa septentrional","155":"Europa occidental","419":"Amèrica Llatina","AC":"illa de l’Ascensió","AD":"Andorra","AE":"Emirats Àrabs Units","AF":"Afganistan","AG":"Antigua i Barbuda","AI":"Anguilla","AL":"Albània","AM":"Armènia","AN":"Antilles Neerlandeses","AO":"Angola","AQ":"Antàrtida","AR":"Argentina","AS":"Samoa Nord-americana","AT":"Àustria","AU":"Austràlia","AW":"Aruba","AX":"illes Åland","AZ":"Azerbaidjan","BA":"Bòsnia i Hercegovina","BB":"Barbados","BD":"Bangla Desh","BE":"Bèlgica","BF":"Burkina Faso","BG":"Bulgària","BH":"Bahrain","BI":"Burundi","BJ":"Benín","BL":"Saint Barthélemy","BM":"Bermudes","BN":"Brunei","BO":"Bolívia","BQ":"Carib Neerlandès","BR":"Brasil","BS":"Bahames","BT":"Bhutan","BV":"Bouvet","BW":"Botswana","BY":"Bielorússia","BZ":"Belize","CA":"Canadà","CC":"illes Cocos","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (República Democràtica del Congo)","CF":"República Centreafricana","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (República del Congo)","CH":"Suïssa","CI":"Costa d’Ivori","CI-alt-variant":"CI","CK":"illes Cook","CL":"Xile","CM":"Camerun","CN":"Xina","CO":"Colòmbia","CP":"illa Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cap Verd","CW":"Curaçao","CX":"illa Christmas","CY":"Xipre","CZ":"República Txeca","DE":"Alemanya","DG":"Diego Garcia","DJ":"Djibouti","DK":"Dinamarca","DM":"Dominica","DO":"República Dominicana","DZ":"Algèria","EA":"Ceuta i Melilla","EC":"Equador","EE":"Estònia","EG":"Egipte","EH":"Sàhara Occidental","ER":"Eritrea","ES":"Espanya","ET":"Etiòpia","EU":"Unió Europea","FI":"Finlàndia","FJ":"Fiji","FK":"Illes Malvines","FK-alt-variant":"Illes Malvines (Illes Falkland)","FM":"Micronèsia","FO":"illes Fèroe","FR":"França","GA":"Gabon","GB":"Regne Unit","GB-alt-short":"GB","GD":"Grenada","GE":"Geòrgia","GF":"Guaiana Francesa","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grenlàndia","GM":"Gàmbia","GN":"Guinea","GP":"Guadeloupe","GQ":"Guinea Equatorial","GR":"Grècia","GS":"illes Geòrgia del Sud i Sandwich del Sud","GT":"Guatemala","GU":"Guam","GW":"Guinea Bissau","GY":"Guyana","HK":"Hong Kong (RAE Xina)","HK-alt-short":"Hong Kong","HM":"Illa Heard i Illes McDonald","HN":"Hondures","HR":"Croàcia","HT":"Haití","HU":"Hongria","IC":"illes Canàries","ID":"Indonèsia","IE":"Irlanda","IL":"Israel","IM":"illa de Man","IN":"Índia","IO":"Territori Britànic de l’Oceà Índic","IQ":"Iraq","IR":"Iran","IS":"Islàndia","IT":"Itàlia","JE":"Jersey","JM":"Jamaica","JO":"Jordània","JP":"Japó","KE":"Kenya","KG":"Kirguizistan","KH":"Cambodja","KI":"Kiribati","KM":"Comores","KN":"Saint Christopher i Nevis","KP":"Corea del Nord","KR":"Corea del Sud","KW":"Kuwait","KY":"Illes Caiman","KZ":"Kazakhstan","LA":"Laos","LB":"Líban","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Libèria","LS":"Lesotho","LT":"Lituània","LU":"Luxemburg","LV":"Letònia","LY":"Líbia","MA":"Marroc","MC":"Mònaco","MD":"Moldàvia","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"illes Marshall","MK":"Macedònia","MK-alt-variant":"Macedònia (Antiga República Iugoslava de Macedònia)","ML":"Mali","MM":"Myanmar (Birmània)","MN":"Mongòlia","MO":"Macau (RAE Xina)","MO-alt-short":"Macau","MP":"illes Mariannes del Nord","MQ":"Martinica","MR":"Mauritània","MS":"Montserrat","MT":"Malta","MU":"Maurici","MV":"Maldives","MW":"Malawi","MX":"Mèxic","MY":"Malàisia","MZ":"Moçambic","NA":"Namíbia","NC":"Nova Caledònia","NE":"Níger","NF":"Norfolk","NG":"Nigèria","NI":"Nicaragua","NL":"Països Baixos","NO":"Noruega","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nova Zelanda","OM":"Oman","PA":"Panamà","PE":"Perú","PF":"Polinèsia Francesa","PG":"Papua Nova Guinea","PH":"Filipines","PK":"Pakistan","PL":"Polònia","PM":"Saint-Pierre-et-Miquelon","PN":"illes Pitcairn","PR":"Puerto Rico","PS":"Palestina","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguai","QA":"Qatar","QO":"Territoris allunyats d’Oceania","RE":"Illa de la Reunió","RO":"Romania","RS":"Sèrbia","RU":"Rússia","RW":"Ruanda","SA":"Aràbia Saudita","SB":"illes Salomó","SC":"Seychelles","SD":"Sudan","SE":"Suècia","SG":"Singapur","SH":"Saint Helena","SI":"Eslovènia","SJ":"Svalbard i Jan Mayen","SK":"Eslovàquia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somàlia","SR":"Surinam","SS":"Sudan del Sud","ST":"São Tomé i Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Síria","SZ":"Swazilàndia","TA":"Tristão da Cunha","TC":"Illes Turks i Caicos","TD":"Txad","TF":"Territoris Francesos del Sud","TG":"Togo","TH":"Tailàndia","TJ":"Tadjikistan","TK":"Tokelau","TL":"Timor Oriental","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunísia","TO":"Tonga","TR":"Turquia","TT":"Trinitat i Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzània","UA":"Ucraïna","UG":"Uganda","UM":"illes Perifèriques Menors dels EUA","US":"Estats Units","US-alt-short":"EUA","UY":"Uruguai","UZ":"Uzbekistan","VA":"Ciutat del Vaticà","VC":"Saint Vincent i les Grenadines","VE":"Veneçuela","VG":"Illes Verges Britàniques","VI":"Illes Verges Nord-americanes","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis i Futuna","WS":"Samoa","XK":"Kosovo","YE":"Iemen","YT":"Mayotte","ZA":"República de Sud-àfrica","ZM":"Zàmbia","ZW":"Zimbàbue","ZZ":"Regió desconeguda"} \ No newline at end of file diff --git a/Punic/data/ca/timeZoneNames.json b/Punic/data/ca/timeZoneNames.json new file mode 100644 index 0000000..f7c4a23 --- /dev/null +++ b/Punic/data/ca/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Hora de: %1$s","regionFormat-type-standard":"Hora estàndard, %1$s","regionFormat-type-daylight":"Horari d’estiu, %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"bahía de Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Caiena"},"Cayman":{"exemplarCity":"Caiman"},"Chicago":{"exemplarCity":"Xicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciutat de Mèxic"},"Miquelon":{"exemplarCity":"Miquelon"},"Moncton":{"exemplarCity":"Moncton"},"Monterrey":{"exemplarCity":"Monterrey"},"Montevideo":{"exemplarCity":"Montevideo"},"Montserrat":{"exemplarCity":"Montserrat"},"Nassau":{"exemplarCity":"Nassau"},"New_York":{"exemplarCity":"Nova York"},"Nipigon":{"exemplarCity":"Nipigon"},"Nome":{"exemplarCity":"Nome"},"Noronha":{"exemplarCity":"Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, Dakota del Nord"},"Center":{"exemplarCity":"Center, Dakota del Nord"},"New_Salem":{"exemplarCity":"New Salem, Dakota del Nord"}},"Ojinaga":{"exemplarCity":"Ojinaga"},"Panama":{"exemplarCity":"Panamà"},"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":"Río Branco"},"Santa_Isabel":{"exemplarCity":"Santa Isabel"},"Santarem":{"exemplarCity":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Scoresbysund"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Saint Barthélemy"},"St_Johns":{"exemplarCity":"Saint John’s"},"St_Kitts":{"exemplarCity":"Saint Kitts"},"St_Lucia":{"exemplarCity":"Saint Lucia"},"St_Thomas":{"exemplarCity":"Saint Thomas"},"St_Vincent":{"exemplarCity":"Saint 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":"Açores"},"Bermuda":{"exemplarCity":"Bermudes"},"Canary":{"exemplarCity":"illes Canàries"},"Cape_Verde":{"exemplarCity":"Cap Verd"},"Faeroe":{"exemplarCity":"Illes Fèroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Geòrgia del Sud"},"St_Helena":{"exemplarCity":"Saint Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atenes"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berlín"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussel·les"},"Bucharest":{"exemplarCity":"Bucarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Hora estàndard d’Irlanda"},"exemplarCity":"Dublín"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Hèlsinki"},"Isle_of_Man":{"exemplarCity":"Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kíev"},"Lisbon":{"exemplarCity":"Lisboa"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Hora d’estiu britànica"},"exemplarCity":"Londres"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Maarianhamina"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Mònaco"},"Moscow":{"exemplarCity":"Moscou"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"París"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Estocolm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vaticà"},"Vienna":{"exemplarCity":"Viena"},"Vilnius":{"exemplarCity":"Vílnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varsòvia"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporíjia"},"Zurich":{"exemplarCity":"Zuric"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Caire, el"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"Al-aaiun"},"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":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Muqdiisho"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Trípoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr’"},"Aqtau":{"exemplarCity":"Aqtaū"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Bakú"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bixkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcuta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasc"},"Dhaka":{"exemplarCity":"Dacca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jaipur"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kābul"},"Kamchatka":{"exemplarCity":"Kamtxatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kaixgar"},"Katmandu":{"exemplarCity":"Katmandú"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoiarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makasar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Masqat"},"Nicosia":{"exemplarCity":"Nicòsia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Kizilordà"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Al-Riyād"},"Saigon":{"exemplarCity":"Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarcanda"},"Seoul":{"exemplarCity":"Seül"},"Shanghai":{"exemplarCity":"Xangai"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Taixkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimbu"},"Tokyo":{"exemplarCity":"Tòquio"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumchi"},"Ust-Nera":{"exemplarCity":"Ust’-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"Mauritius":{"exemplarCity":"Maurici"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunió"}},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Illa de Pasqua"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"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":"Marqueses"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"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":"Tahití"},"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":"Vostok"}},"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":"Ciutat desconeguda"}}},"metazone":{"Afghanistan":{"long":{"standard":"Hora de l’Afganistan"}},"Africa_Central":{"long":{"standard":"Hora de l’Àfrica Central"}},"Africa_Eastern":{"long":{"standard":"Hora de l’Àfrica Oriental"}},"Africa_Southern":{"long":{"standard":"Hora estàndard del sud de l’Àfrica"}},"Africa_Western":{"long":{"generic":"Hora de l’Àfrica Occidental","standard":"Hora estàndard de l’Àfrica Occidental","daylight":"Hora d’estiu de l’Àfrica Occidental"}},"Alaska":{"long":{"generic":"Hora d’Alaska","standard":"Hora estàndard d’Alaska","daylight":"Hora d’estiu d’Alaska"}},"Amazon":{"long":{"generic":"Hora de l’Amazones","standard":"Hora estàndard de l’Amazones","daylight":"Hora d’estiu de l’Amazones"}},"America_Central":{"long":{"generic":"Hora central d’Amèrica del Nord","standard":"Hora estàndard central d’Amèrica del Nord","daylight":"Hora d’estiu central d’Amèrica del Nord"}},"America_Eastern":{"long":{"generic":"Hora oriental d’Amèrica del Nord","standard":"Hora estàndard oriental d’Amèrica del Nord","daylight":"Hora d’estiu oriental d’Amèrica del Nord"}},"America_Mountain":{"long":{"generic":"Hora de muntanya d’Amèrica del Nord","standard":"Hora estàndard de muntanya d’Amèrica del Nord","daylight":"Hora d’estiu de muntanya d’Amèrica del Nord"}},"America_Pacific":{"long":{"generic":"Hora del Pacífic","standard":"Hora estàndard del Pacífic","daylight":"Hora d’estiu del Pacífic"}},"Anadyr":{"long":{"generic":"Hora d’Anadyr","standard":"Hora estàndard d’Anadyr","daylight":"Horari d’estiu d’Anadyr"}},"Apia":{"long":{"generic":"Hora d’Apia","standard":"Hora estàndard d’Apia","daylight":"Hora d’estiu d’Apia"}},"Arabian":{"long":{"generic":"Hora àrab","standard":"Hora estàndard àrab","daylight":"Hora d’estiu àrab"}},"Argentina":{"long":{"generic":"Hora de l’Argentina","standard":"Hora estàndard de l’Argentina","daylight":"Hora d’estiu de l’Argentina"}},"Argentina_Western":{"long":{"generic":"Hora de l’oest de l’Argentina","standard":"Hora estàndard de l’oest de l’Argentina","daylight":"Hora d’estiu de l’oest de l’Argentina"}},"Armenia":{"long":{"generic":"Hora d’Armènia","standard":"Hora estàndard d’Armènia","daylight":"Hora d’estiu d’Armènia"}},"Atlantic":{"long":{"generic":"Hora de l’Atlàntic","standard":"Hora estàndard de l’Atlàntic","daylight":"Hora d’estiu de l’Atlàntic"}},"Australia_Central":{"long":{"generic":"Hora d’Austràlia Central","standard":"Hora estàndard d’Austràlia Central","daylight":"Hora d’estiu d’Austràlia Central"}},"Australia_CentralWestern":{"long":{"generic":"Hora d’Austràlia centre-occidental","standard":"Hora estàndard d’Austràlia centre-occidental","daylight":"Hora d’estiu d’Austràlia centre-occidental"}},"Australia_Eastern":{"long":{"generic":"Hora d’Austràlia Oriental","standard":"Hora estàndard d’Austràlia Oriental","daylight":"Hora d’estiu d’Austràlia Oriental"}},"Australia_Western":{"long":{"generic":"Hora d’Austràlia Occidental","standard":"Hora estàndard d’Austràlia Occidental","daylight":"Hora d’estiu d’Austràlia Occidental"}},"Azerbaijan":{"long":{"generic":"Hora d’Azerbaidjan","standard":"Hora estàndard d’Azerbaidjan","daylight":"Hora d’estiu d’Azerbaidjan"}},"Azores":{"long":{"generic":"Hora de les Açores","standard":"Hora estàndard de les Açores","daylight":"Hora d’estiu de les Açores"}},"Bangladesh":{"long":{"generic":"Hora de Bangla Desh","standard":"Hora estàndard de Bangla Desh","daylight":"Hora d’estiu de Bangla Desh"}},"Bhutan":{"long":{"standard":"Hora de Bhutan"}},"Bolivia":{"long":{"standard":"Hora de Bolívia"}},"Brasilia":{"long":{"generic":"Hora de Brasília","standard":"Hora estàndard de Brasília","daylight":"Hora d’estiu de Brasília"}},"Brunei":{"long":{"standard":"Hora de Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Hora de Cap Verd","standard":"Hora estàndard de Cap Verd","daylight":"Hora d’estiu de Cap Verd"}},"Chamorro":{"long":{"standard":"Hora de Chamorro"}},"Chatham":{"long":{"generic":"Hora de Chatham","standard":"Hora estàndard de Chatham","daylight":"Hora d’estiu de Chatham"}},"Chile":{"long":{"generic":"Hora de Xile","standard":"Hora estàndard de Xile","daylight":"Hora d’estiu de Xile"}},"China":{"long":{"generic":"Hora de la Xina","standard":"Hora estàndard de la Xina","daylight":"Hora d’estiu de la Xina"}},"Choibalsan":{"long":{"generic":"Hora de Choibalsan","standard":"Hora estàndard de Choibalsan","daylight":"Hora d’estiu de Choibalsan"}},"Christmas":{"long":{"standard":"Hora de Kiritimati"}},"Cocos":{"long":{"standard":"Hora de les illes Cocos"}},"Colombia":{"long":{"generic":"Hora de Colòmbia","standard":"Hora estàndard de Colòmbia","daylight":"Hora d’estiu de Colòmbia"}},"Cook":{"long":{"generic":"Hora de les illes Cook","standard":"Hora estàndard de les illes Cook","daylight":"Hora de mig estiu de les illes Cook"}},"Cuba":{"long":{"generic":"Hora de Cuba","standard":"Hora estàndard de Cuba","daylight":"Hora d’estiu de Cuba"}},"Davis":{"long":{"standard":"Hora de Davis"}},"DumontDUrville":{"long":{"standard":"Hora de Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Hora de Timor Oriental"}},"Easter":{"long":{"generic":"Hora de l’illa de Pasqua","standard":"Hora estàndard de l’illa de Pasqua","daylight":"Hora d’estiu de l’illa de Pasqua"}},"Ecuador":{"long":{"standard":"Hora de l’Equador"}},"Europe_Central":{"long":{"generic":"Hora del Centre d’Europa","standard":"Hora estàndard del Centre d’Europa","daylight":"Hora d’estiu del Centre d’Europa"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Hora de l’Est d’Europa","standard":"Hora estàndard de l’Est d’Europa","daylight":"Hora d’estiu de l’Est d’Europa"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Hora de l’Extrem Orient Europeu"}},"Europe_Western":{"long":{"generic":"Hora de l’Oest d’Europa","standard":"Hora estàndard de l’Oest d’Europa","daylight":"Hora d’estiu de l’Oest d’Europa"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Hora de les illes Malvines","standard":"Hora estàndard de les illes Malvines","daylight":"Hora d’estiu de les illes Malvines"}},"Fiji":{"long":{"generic":"Hora de Fiji","standard":"Hora estàndard de Fiji","daylight":"Hora d’estiu de Fiji"}},"French_Guiana":{"long":{"standard":"Hora de la Guaiana Francesa"}},"French_Southern":{"long":{"standard":"Hora d’Antàrtida i França del Sud"}},"GMT":{"long":{"standard":"Hora del Meridià de Greenwich"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Hora de Galápagos"}},"Gambier":{"long":{"standard":"Hora de Gambier"}},"Georgia":{"long":{"generic":"Hora de Geòrgia","standard":"Hora estàndard de Geòrgia","daylight":"Hora d’estiu de Geòrgia"}},"Gilbert_Islands":{"long":{"standard":"Hora de les illes Gilbert"}},"Greenland_Eastern":{"long":{"generic":"Hora de l’Est de Grenlàndia","standard":"Hora estàndard de l’Est de Grenlàndia","daylight":"Hora d’estiu de l’Est de Grenlàndia"}},"Greenland_Western":{"long":{"generic":"Hora de l’Oest de Grenlàndia","standard":"Hora estàndard de l’Oest de Grenlàndia","daylight":"Hora d’estiu de l’Oest de Grenlàndia"}},"Gulf":{"long":{"standard":"Hora del Golf"}},"Guyana":{"long":{"standard":"Hora de Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"Hora de Hawaii-Aleutianes","standard":"Hora estàndard de Hawaii-Aleutianes","daylight":"Hora d’estiu de Hawaii-Aleutianes"}},"Hong_Kong":{"long":{"generic":"Hora de Hong Kong","standard":"Hora estàndard de Hong Kong","daylight":"Hora d’estiu de Hong Kong"}},"Hovd":{"long":{"generic":"Hora de Hovd","standard":"Hora estàndard de Hovd","daylight":"Hora d’estiu de Hovd"}},"India":{"long":{"standard":"Hora estàndard de l’Índia"}},"Indian_Ocean":{"long":{"standard":"Hora de l’oceà Índic"}},"Indochina":{"long":{"standard":"Hora d’Indoxina"}},"Indonesia_Central":{"long":{"standard":"Hora central d’Indonèsia"}},"Indonesia_Eastern":{"long":{"standard":"Hora de l’est d’Indonèsia"}},"Indonesia_Western":{"long":{"standard":"Hora de l’oest d’Indonèsia"}},"Iran":{"long":{"generic":"Hora d’Iran","standard":"Hora estàndard d’Iran","daylight":"Hora d’estiu d’Iran"}},"Irkutsk":{"long":{"generic":"Hora d’Irkutsk","standard":"Hora estàndard d’Irkutsk","daylight":"Hora d’estiu d’Irkutsk"}},"Israel":{"long":{"generic":"Hora d’Israel","standard":"Hora estàndard d’Israel","daylight":"Hora d’estiu d’Israel"}},"Japan":{"long":{"generic":"Hora del Japó","standard":"Hora estàndard del Japó","daylight":"Hora d’estiu del Japó"}},"Kamchatka":{"long":{"generic":"Hora de Kamtxatka","standard":"Hora estàndard de Petropavlovsk de Kamtxatka","daylight":"Horari d’estiu de Petropavlovsk de Kamtxatka"}},"Kazakhstan_Eastern":{"long":{"standard":"Hora de l’est del Kazakhstan"}},"Kazakhstan_Western":{"long":{"standard":"Hora de l’oest del Kazakhstan"}},"Korea":{"long":{"generic":"Hora de Corea","standard":"Hora estàndard de Corea","daylight":"Hora d’estiu de Corea"}},"Kosrae":{"long":{"standard":"Hora de Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Hora de Krasnoiarsk","standard":"Hora estàndard de Krasnoiarsk","daylight":"Hora d’estiu de Krasnoiarsk"}},"Kyrgystan":{"long":{"standard":"Hora del Kirguizistan"}},"Line_Islands":{"long":{"standard":"Hora de Line Islands"}},"Lord_Howe":{"long":{"generic":"Hora de Lord Howe","standard":"Hora estàndard de Lord Howe","daylight":"Horari d’estiu de Lord Howe"}},"Macau":{"long":{"generic":"Hora de Macau","standard":"Hora estàndard de Macau","daylight":"Hora d’estiu de Macau"}},"Macquarie":{"long":{"standard":"Hora de Macquarie"}},"Magadan":{"long":{"generic":"Hora de Magadan","standard":"Hora estàndard de Magadan","daylight":"Hora d’estiu de Magadan"}},"Malaysia":{"long":{"standard":"Hora de Malàisia"}},"Maldives":{"long":{"standard":"Hora de les Maldives"}},"Marquesas":{"long":{"standard":"Hora de les Marqueses"}},"Marshall_Islands":{"long":{"standard":"Hora de les illes Marshall"}},"Mauritius":{"long":{"generic":"Hora de Maurici","standard":"Hora estàndard de Maurici","daylight":"Hora d’estiu de Maurici"}},"Mawson":{"long":{"standard":"Hora de Mawson"}},"Mexico_Northwest":{"long":{"generic":"Hora del nord-oest de Mèxic","standard":"Hora estàndard del nord-oest de Mèxic","daylight":"Hora d’estiu del nord-oest de Mèxic"}},"Mexico_Pacific":{"long":{"generic":"Hora del Pacífic de Mèxic","standard":"Hora estàndard del Pacífic de Mèxic","daylight":"Hora d’estiu del Pacífic de Mèxic"}},"Mongolia":{"long":{"generic":"Hora d’Ulan Bator","standard":"Hora estàndard d’Ulan Bator","daylight":"Hora d’estiu d’Ulan Bator"}},"Moscow":{"long":{"generic":"Hora de Moscou","standard":"Hora estàndard de Moscou","daylight":"Hora d’estiu de Moscou"}},"Myanmar":{"long":{"standard":"Hora de Myanmar"}},"Nauru":{"long":{"standard":"Hora de Nauru"}},"Nepal":{"long":{"standard":"Hora del Nepal"}},"New_Caledonia":{"long":{"generic":"Hora de Nova Caledònia","standard":"Hora estàndard de Nova Caledònia","daylight":"Hora d’estiu de Nova Caledònia"}},"New_Zealand":{"long":{"generic":"Hora de Nova Zelanda","standard":"Hora estàndard de Nova Zelanda","daylight":"Hora d’estiu de Nova Zelanda"}},"Newfoundland":{"long":{"generic":"Hora de Terranova","standard":"Hora estàndard de Terranova","daylight":"Hora d’estiu de Terranova"}},"Niue":{"long":{"standard":"Hora de Niue"}},"Norfolk":{"long":{"standard":"Hora de les illes Norfolk"}},"Noronha":{"long":{"generic":"Hora de Fernando de Noronha","standard":"Hora estàndard de Fernando de Noronha","daylight":"Hora d’estiu de Fernando de Noronha"}},"Novosibirsk":{"long":{"generic":"Hora de Novosibirsk","standard":"Hora estàndard de Novosibirsk","daylight":"Hora d’estiu de Novosibirsk"}},"Omsk":{"long":{"generic":"Hora d’Omsk","standard":"Hora estàndard d’Omsk","daylight":"Hora d’estiu d’Omsk"}},"Pakistan":{"long":{"generic":"Hora del Pakistan","standard":"Hora estàndard del Pakistan","daylight":"Hora d’estiu del Pakistan"}},"Palau":{"long":{"standard":"Hora de Palau"}},"Papua_New_Guinea":{"long":{"standard":"Hora de Papua Nova Guinea"}},"Paraguay":{"long":{"generic":"Hora del Paraguai","standard":"Hora estàndard del Paraguai","daylight":"Hora d’estiu del Paraguai"}},"Peru":{"long":{"generic":"Hora del Perú","standard":"Hora estàndard del Perú","daylight":"Hora d’estiu del Perú"}},"Philippines":{"long":{"generic":"Hora de Filipines","standard":"Hora estàndard de Filipines","daylight":"Hora d’estiu de Filipines"}},"Phoenix_Islands":{"long":{"standard":"Hora de les illes Phoenix"}},"Pierre_Miquelon":{"long":{"generic":"Hora de Saint-Pierre i Miquelon","standard":"Hora estàndard de Saint-Pierre i Miquelon","daylight":"Hora d’estiu de Saint-Pierre i Miquelon"}},"Pitcairn":{"long":{"standard":"Hora de Pitcairn"}},"Ponape":{"long":{"standard":"Hora de Ponape"}},"Reunion":{"long":{"standard":"Hora de Reunió"}},"Rothera":{"long":{"standard":"Hora de Rothera"}},"Sakhalin":{"long":{"generic":"Hora de Sakhalin","standard":"Hora estàndard de Sakhalin","daylight":"Hora d’estiu de Sakhalin"}},"Samara":{"long":{"generic":"Hora de Samara","standard":"Hora estàndard de Samara","daylight":"Hora d’estiu de Samara"}},"Samoa":{"long":{"generic":"Hora de Samoa","standard":"Hora estàndard de Samoa","daylight":"Hora d’estiu de Samoa"}},"Seychelles":{"long":{"standard":"Hora de les Seychelles"}},"Singapore":{"long":{"standard":"Hora de Singapur"}},"Solomon":{"long":{"standard":"Hora de Salomó"}},"South_Georgia":{"long":{"standard":"Hora de Geòrgia del Sud"}},"Suriname":{"long":{"standard":"Hora de Surinam"}},"Syowa":{"long":{"standard":"Hora de Syowa"}},"Tahiti":{"long":{"standard":"Hora de Tahití"}},"Taipei":{"long":{"generic":"Hora de Taipei","standard":"Hora estàndard de Taipei","daylight":"Hora d’estiu de Taipei"}},"Tajikistan":{"long":{"standard":"Hora del Tadjikistan"}},"Tokelau":{"long":{"standard":"Hora de Tokelau"}},"Tonga":{"long":{"generic":"Hora de Tonga","standard":"Hora estàndard de Tonga","daylight":"Hora d’estiu de Tonga"}},"Truk":{"long":{"standard":"Hora de Chuuk"}},"Turkmenistan":{"long":{"generic":"Hora del Turkmenistan","standard":"Hora estàndard del Turkmenistan","daylight":"Hora d’estiu del Turkmenistan"}},"Tuvalu":{"long":{"standard":"Hora de Tuvalu"}},"Uruguay":{"long":{"generic":"Hora de l’Uruguai","standard":"Hora estàndard de l’Uruguai","daylight":"Hora d’estiu de l’Uruguai"}},"Uzbekistan":{"long":{"generic":"Hora de l’Uzbekistan","standard":"Hora estàndard de l’Uzbekistan","daylight":"Hora d’estiu de l’Uzbekistan"}},"Vanuatu":{"long":{"generic":"Hora de Vanatu","standard":"Hora estàndard de Vanatu","daylight":"Hora d’estiu de Vanatu"}},"Venezuela":{"long":{"standard":"Hora de Veneçuela"}},"Vladivostok":{"long":{"generic":"Hora de Vladivostok","standard":"Hora estàndard de Vladivostok","daylight":"Hora d’estiu de Vladivostok"}},"Volgograd":{"long":{"generic":"Hora de Volgograd","standard":"Hora estàndard de Volgograd","daylight":"Hora d’estiu de Volgograd"}},"Vostok":{"long":{"standard":"Hora de Vostok"}},"Wake":{"long":{"standard":"Hora de Wake"}},"Wallis":{"long":{"standard":"Hora de Wallis i Futuna"}},"Yakutsk":{"long":{"generic":"Hora de Iakutsk","standard":"Hora estàndard de Iakutsk","daylight":"Hora d’estiu de Iakutsk"}},"Yekaterinburg":{"long":{"generic":"Hora d’Ekaterinburg","standard":"Hora estàndard d’Ekaterinburg","daylight":"Hora d’estiu d’Ekaterinburg"}}}} \ No newline at end of file diff --git a/Punic/data/ca/units.json b/Punic/data/ca/units.json new file mode 100644 index 0000000..da6a5f1 --- /dev/null +++ b/Punic/data/ca/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"força G","one":"%1$s força G","other":"%1$s força G"},"meter-per-second-squared":{"_name":"metres per segon al quadrat","one":"%1$s metre per segon al quadrat","other":"%1$s metres per segon al quadrat"}},"angle":{"arc-minute":{"_name":"minuts d’arc","one":"%1$s minut d'arc","other":"%1$s minuts d'arc"},"arc-second":{"_name":"segons d’arc","one":"%1$s segon","other":"%1$s segons"},"degree":{"_name":"graus","one":"%1$s grau","other":"%1$s graus"},"radian":{"_name":"radiant","one":"%1$s radiant","other":"%1$s radiants"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectàrees","one":"%1$s hectàrea","other":"%1$s hectàrees"},"square-centimeter":{"_name":"centímetres quadrats","one":"%1$s centímetre quadrat","other":"%1$s centímetres quadrats"},"square-foot":{"_name":"peus quadrats","one":"%1$s peu quadrat","other":"%1$s peus quadrats"},"square-inch":{"_name":"polzades quadrades","one":"%1$s polzada quadrada","other":"%1$s polzades quadrades"},"square-kilometer":{"_name":"quilòmetres quadrats","one":"%1$s quilòmetre quadrat","other":"%1$s quilòmetres quadrats"},"square-meter":{"_name":"metres quadrats","one":"%1$s metre quadrat","other":"%1$s metres quadrats"},"square-mile":{"_name":"milles quadrades","one":"%1$s milla quadrada","other":"%1$s milles quadrades"},"square-yard":{"_name":"iardes quadrades","one":"%1$s iarda quadrada","other":"%1$s iardes quadrades"}},"consumption":{"liter-per-kilometer":{"_name":"litres per quilòmetre","one":"%1$s litre per quilòmetre","other":"%1$s litres per quilòmetre"},"mile-per-gallon":{"_name":"milles per galó","one":"%1$s milla per galó","other":"%1$s milles per galó"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"quilobits","one":"%1$s quilobit","other":"%1$s quilobits"},"kilobyte":{"_name":"quilobytes","one":"%1$s quilobyte","other":"%1$s quilobytes"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"dies","one":"%1$s dia","other":"%1$s dies"},"hour":{"_name":"hores","one":"%1$s hora","other":"%1$s hores","_per":"%1$s per hora"},"microsecond":{"_name":"microsegon","one":"%1$s microsegon","other":"%1$s microsegons"},"millisecond":{"_name":"mil·lisegons","one":"%1$s mil·lisegon","other":"%1$s mil·lisegons"},"minute":{"_name":"minuts","one":"%1$s minut","other":"%1$s minuts"},"month":{"_name":"mesos","one":"%1$s mes","other":"%1$s mesos"},"nanosecond":{"_name":"nanosegons","one":"%1$s nanosegon","other":"%1$s nanosegons"},"second":{"_name":"segons","one":"%1$s segon","other":"%1$s segons","_per":"%1$s per segon"},"week":{"_name":"setmanes","one":"%1$s setmana","other":"%1$s setmanes"},"year":{"_name":"anys","one":"%1$s any","other":"%1$s anys"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"mil·liampere","one":"%1$s mil·liampere","other":"%1$s mil·liamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s caloria","other":"%1$s calories"},"foodcalorie":{"_name":"quilocalories","one":"%1$s quilocaloria","other":"%1$s quilocalories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"quilocalories","one":"%1$s quilocaloria","other":"%1$s quilocalories"},"kilojoule":{"_name":"quilojoules","one":"%1$s quilojoule","other":"%1$s quilojoules"},"kilowatt-hour":{"_name":"quilowatts hora","one":"%1$s quilowatt hora","other":"%1$s quilowatts hora"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"quilohertz","one":"%1$s quilohertz","other":"%1$s quilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"unitats astronòmiques","one":"%1$s unitat astronòmica","other":"%1$s unitats astronòmiques"},"centimeter":{"_name":"centímetres","one":"%1$s centímetre","other":"%1$s centímetres"},"decimeter":{"_name":"decímetres","one":"%1$s decímetres","other":"%1$s decímetres"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"peus","one":"%1$s peu","other":"%1$s peus"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polzades","one":"%1$s polzada","other":"%1$s polzades"},"kilometer":{"_name":"quilòmetres","one":"%1$s quilòmetre","other":"%1$s quilòmetres"},"light-year":{"_name":"anys llum","one":"%1$s any llum","other":"%1$s anys llum"},"meter":{"_name":"metres","one":"%1$s metre","other":"%1$s metres"},"micrometer":{"_name":"micròmetres","one":"%1$s micròmetre","other":"%1$s micròmetres"},"mile":{"_name":"milles","one":"%1$s milla","other":"%1$s milles"},"millimeter":{"_name":"mil·límetres","one":"%1$s mil·límetre","other":"%1$s mil·límetres"},"nanometer":{"_name":"nanòmetre","one":"%1$s nanòmetre","other":"%1$s nanòmetres"},"nautical-mile":{"_name":"milla nàutica","one":"%1$s milla nàutica","other":"%1$s milles nàutiques"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picòmetres","one":"%1$s picòmetre","other":"%1$s picòmetres"},"yard":{"_name":"iardes","one":"%1$s iarda","other":"%1$s iardes"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"quirat","one":"%1$s quirat","other":"%1$s quirats"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"quilogram","one":"%1$s quilogram","other":"%1$s quilograms"},"metric-ton":{"_name":"tones mètriques","one":"%1$s tona mètrica","other":"%1$s tones mètriques"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"mil·ligram","one":"%1$s mil·ligram","other":"%1$s mil·ligrams"},"ounce":{"_name":"unça","one":"%1$s unça","other":"%1$s unces"},"ounce-troy":{"_name":"unça troy","one":"%1$s unça troy","other":"%1$s unces troy"},"pound":{"_name":"lliura","one":"%1$s lliura","other":"%1$s lliures"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tones","one":"%1$s tona","other":"%1$s tones"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"cavalls de vapor","one":"%1$s cavall de vapor","other":"%1$s cavalls de vapor"},"kilowatt":{"_name":"quilowatts","one":"%1$s quilowatt","other":"%1$s quilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"miliwatts","one":"%1$s miliwatt","other":"%1$s miliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"polzades de mercuri","one":"%1$s polzada de mercuri","other":"%1$s polzades de mercuri"},"millibar":{"_name":"mil·libars","one":"%1$s mil·libar","other":"%1$s mil·libars"},"millimeter-of-mercury":{"_name":"mil·límetres de mercuri","one":"mil·límetre de mercuri","other":"%1$s mil·límetres de mercuri"},"pound-per-square-inch":{"_name":"lliures per polzada quadrada","one":"%1$s lliura per polzada quadrada","other":"%1$s lliures per polzada quadrada"}},"proportion":{"karat":{"_name":"quirats","one":"%1$s quirat","other":"%1$s quirats"}},"speed":{"kilometer-per-hour":{"_name":"quilòmetres per hora","one":"%1$s quilòmetre per hora","other":"%1$s quilòmetres per hora"},"meter-per-second":{"_name":"metres per segon","one":"%1$s metre per segon","other":"%1$s metres per segon"},"mile-per-hour":{"_name":"milles per hora","one":"%1$s milla per hora","other":"%1$s milles per hora"}},"temperature":{"celsius":{"_name":"graus Celsius","one":"%1$s grau Celsius","other":"%1$s graus Celsius"},"fahrenheit":{"_name":"graus Fahrenheit","one":"%1$s grau Fahrenheit","other":"%1$s graus Fahrenheit"},"kelvin":{"_name":"Kelvin","one":"%1$s Kelvin","other":"%1$s Kelvin"}},"volume":{"acre-foot":{"_name":"acre-peu","one":"%1$s acre-peu","other":"%1$s acres-peus"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"centímetres cúbics","one":"%1$s centímetre cúbic","other":"%1$s centímetres cúbics"},"cubic-foot":{"_name":"peus cúbics","one":"%1$s peu cúbic","other":"%1$s peus cúbics"},"cubic-inch":{"_name":"polzades cúbiques","one":"%1$s polzada cúbica","other":"%1$s polzades cúbiques"},"cubic-kilometer":{"_name":"quilòmetres cúbics","one":"%1$s quilòmetre cúbic","other":"%1$s quilòmetres cúbics"},"cubic-meter":{"_name":"metres cúbics","one":"%1$s metre cúbic","other":"%1$s metres cúbics"},"cubic-mile":{"_name":"milles cúbiques","one":"%1$s milla cúbica","other":"%1$s milles cúbiques"},"cubic-yard":{"_name":"iardes cúbiques","one":"%1$s iarda cúbica","other":"%1$s iardes cúbiques"},"cup":{"_name":"tasses","one":"%1$s tassa","other":"%1$s tasses"},"deciliter":{"_name":"decilitres","one":"%1$s decilitre","other":"%1$s decilitres"},"fluid-ounce":{"_name":"unça líquida","one":"%1$s unça líquida","other":"%1$s unces líquides"},"gallon":{"_name":"galons","one":"%1$s galó","other":"%1$s galons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"megalitres","one":"%1$s megalitre","other":"%1$s megalitres"},"milliliter":{"_name":"mil·lilitres","one":"%1$s mil·lilitre","other":"%1$s mil·lilitres"},"pint":{"_name":"pintes","one":"%1$s pinta","other":"%1$s pintes"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"cullerades","one":"%1$s cullerada","other":"%1$s cullerades"},"teaspoon":{"_name":"culleradetes","one":"%1$s culleradeta","other":"%1$s culleradetes"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"´","one":"%1$s min","other":"%1$s min"},"arc-second":{"_name":"segons","one":"%1$s s","other":"%1$s s"},"degree":{"_name":"º","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radiant","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectàrees","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"B","one":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mbit","other":"%1$s Mbit"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dies","one":"%1$s dia","other":"%1$s dies"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"mil·lisegons","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mesos","one":"%1$s mes","other":"%1$s mesos"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"setm.","one":"%1$s setm.","other":"%1$s setm."},"year":{"_name":"anys","one":"%1$s any","other":"%1$s anys"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polz.","one":"%1$s polz.","other":"%1$s polz."},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anys llum","one":"%1$s any ll.","other":"%1$s anys ll."},"meter":{"_name":"metres","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mil·límetres","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"iardes","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quirat","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"gram","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t mètriques","one":"%1$s t mètrica","other":"%1$s t mètr."},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ozt","one":"%1$s ozt","other":"%1$s ozt"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"t","one":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CV","one":"%1$s CV","other":"%1$s CV"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"ct","one":"%1$s ct","other":"%1$s ct"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"tassa","one":"%1$s tassa","other":"%1$s tasses"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cull.","one":"%1$s cull.","other":"%1$s cull."},"teaspoon":{"_name":"cdta.","one":"%1$s cdta.","other":"%1$s cdta."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"´","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"segons","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"º","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radiant","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$sac.","other":"%1$sac."},"hectare":{"_name":"hectàrees","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"bit","one":"%1$s bits","other":"%1$s bits"},"byte":{"_name":"B","one":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mbit","other":"%1$s Mbit"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dia","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mes","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"s","one":"%1$ss","other":"%1$s s"},"year":{"_name":"anys","one":"%1$s any","other":"%1$s anys"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polz.","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anys llum","one":"%1$s l. y.","other":"%1$s l. y."},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"iardes","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quirat","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t mètriques","one":"%1$s t mètr.","other":"%1$s t mètr."},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ozt","one":"%1$s ozt","other":"%1$s ozt"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"t","one":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CV","one":"%1$sCV","other":"%1$sCV"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"ct","one":"%1$s ct","other":"%1$s ct"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$smi/h","other":"%1$smi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"tassa","one":"%1$s tasses","other":"%1$s tasses"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cull.","one":"%1$s cull.","other":"%1$s cull."},"teaspoon":{"_name":"cdta.","one":"%1$s cdta.","other":"%1$s cdta."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/cs/calendar.json b/Punic/data/cs/calendar.json new file mode 100644 index 0000000..d9d3e29 --- /dev/null +++ b/Punic/data/cs/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"led","2":"úno","3":"bře","4":"dub","5":"kvě","6":"čvn","7":"čvc","8":"srp","9":"zář","10":"říj","11":"lis","12":"pro"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"ledna","2":"února","3":"března","4":"dubna","5":"května","6":"června","7":"července","8":"srpna","9":"září","10":"října","11":"listopadu","12":"prosince"}},"stand-alone":{"abbreviated":{"1":"led","2":"úno","3":"bře","4":"dub","5":"kvě","6":"čvn","7":"čvc","8":"srp","9":"zář","10":"říj","11":"lis","12":"pro"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"leden","2":"únor","3":"březen","4":"duben","5":"květen","6":"červen","7":"červenec","8":"srpen","9":"září","10":"říjen","11":"listopad","12":"prosinec"}}},"days":{"format":{"abbreviated":{"sun":"ne","mon":"po","tue":"út","wed":"st","thu":"čt","fri":"pá","sat":"so"},"narrow":{"sun":"N","mon":"P","tue":"Ú","wed":"S","thu":"Č","fri":"P","sat":"S"},"short":{"sun":"ne","mon":"po","tue":"út","wed":"st","thu":"čt","fri":"pá","sat":"so"},"wide":{"sun":"neděle","mon":"pondělí","tue":"úterý","wed":"středa","thu":"čtvrtek","fri":"pátek","sat":"sobota"}},"stand-alone":{"abbreviated":{"sun":"ne","mon":"po","tue":"út","wed":"st","thu":"čt","fri":"pá","sat":"so"},"narrow":{"sun":"N","mon":"P","tue":"Ú","wed":"S","thu":"Č","fri":"P","sat":"S"},"short":{"sun":"ne","mon":"po","tue":"út","wed":"st","thu":"čt","fri":"pá","sat":"so"},"wide":{"sun":"neděle","mon":"pondělí","tue":"úterý","wed":"středa","thu":"čtvrtek","fri":"pátek","sat":"sobota"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. čtvrtletí","2":"2. čtvrtletí","3":"3. čtvrtletí","4":"4. čtvrtletí"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. čtvrtletí","2":"2. čtvrtletí","3":"3. čtvrtletí","4":"4. čtvrtletí"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","noon":"poledne","pm":"PM"},"narrow":{"am":"AM","noon":"pol.","pm":"PM"},"wide":{"am":"AM","noon":"poledne","pm":"PM"}},"stand-alone":{"abbreviated":{"am":"AM","noon":"poledne","pm":"PM"},"narrow":{"am":"AM","noon":"pol.","pm":"PM"},"wide":{"am":"AM","noon":"poledne","pm":"PM"}}},"eras":{"wide":{"0":"př. n. l.","0-alt-variant":"BCE","1":"n. l.","1-alt-variant":"CE"},"abbreviated":{"0":"př. n. l.","0-alt-variant":"BCE","1":"n. l.","1-alt-variant":"CE"},"narrow":{"0":"př.n.l.","0-alt-variant":"BCE","1":"n.l.","1-alt-variant":"n. l."}},"dateFormats":{"full":"EEEE d. MMMM y","long":"d. MMMM y","medium":"d. M. y","short":"dd.MM.yy"},"timeFormats":{"full":"H:mm:ss zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/cs/dateFields.json b/Punic/data/cs/dateFields.json new file mode 100644 index 0000000..23f4751 --- /dev/null +++ b/Punic/data/cs/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Letopočet"},"year":{"displayName":"Rok","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"příští rok","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} rok","relativeTimePattern-count-few":"za {0} roky","relativeTimePattern-count-many":"za {0} roku","relativeTimePattern-count-other":"za {0} let"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} rokem","relativeTimePattern-count-few":"před {0} lety","relativeTimePattern-count-many":"před {0} rokem","relativeTimePattern-count-other":"před {0} lety"}},"year-short":{"displayName":"r.","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"příští rok","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} r.","relativeTimePattern-count-few":"za {0} r.","relativeTimePattern-count-many":"za {0} r.","relativeTimePattern-count-other":"za {0} l."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} r.","relativeTimePattern-count-few":"před {0} r.","relativeTimePattern-count-many":"před {0} r.","relativeTimePattern-count-other":"před {0} l."}},"year-narrow":{"displayName":"r.","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"příští rok","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} r.","relativeTimePattern-count-few":"za {0} r.","relativeTimePattern-count-many":"za {0} r.","relativeTimePattern-count-other":"za {0} l."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} r.","relativeTimePattern-count-few":"před {0} r.","relativeTimePattern-count-many":"před {0} r.","relativeTimePattern-count-other":"před {0} l."}},"quarter":{"displayName":"Čtvrtletí","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} čtvrtletí","relativeTimePattern-count-few":"za {0} čtvrtletí","relativeTimePattern-count-many":"za {0} čtvrtletí","relativeTimePattern-count-other":"za {0} čtvrtletí"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} čtvrtletím","relativeTimePattern-count-few":"před {0} čtvrtletími","relativeTimePattern-count-many":"před {0} čtvrtletím","relativeTimePattern-count-other":"před {0} čtvrtletími"}},"quarter-short":{"displayName":"Q","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-few":"+{0} Q","relativeTimePattern-count-many":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-few":"-{0} Q","relativeTimePattern-count-many":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"quarter-narrow":{"displayName":"Q","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-few":"+{0} Q","relativeTimePattern-count-many":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-few":"-{0} Q","relativeTimePattern-count-many":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Měsíc","relative-type--1":"minulý měsíc","relative-type-0":"tento měsíc","relative-type-1":"příští měsíc","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} měsíc","relativeTimePattern-count-few":"za {0} měsíce","relativeTimePattern-count-many":"za {0} měsíce","relativeTimePattern-count-other":"za {0} měsíců"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} měsícem","relativeTimePattern-count-few":"před {0} měsíci","relativeTimePattern-count-many":"před {0} měsícem","relativeTimePattern-count-other":"před {0} měsíci"}},"month-short":{"displayName":"měs.","relative-type--1":"minulý měsíc","relative-type-0":"tento měsíc","relative-type-1":"příští měsíc","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} měs.","relativeTimePattern-count-few":"za {0} měs.","relativeTimePattern-count-many":"za {0} měs.","relativeTimePattern-count-other":"za {0} měs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} měs.","relativeTimePattern-count-few":"před {0} měs.","relativeTimePattern-count-many":"před {0} měs.","relativeTimePattern-count-other":"před {0} měs."}},"month-narrow":{"displayName":"měs.","relative-type--1":"minulý měsíc","relative-type-0":"tento měsíc","relative-type-1":"příští měsíc","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} měs.","relativeTimePattern-count-few":"za {0} měs.","relativeTimePattern-count-many":"za {0} měs.","relativeTimePattern-count-other":"za {0} měs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} měs.","relativeTimePattern-count-few":"před {0} měs.","relativeTimePattern-count-many":"před {0} měs.","relativeTimePattern-count-other":"před {0} měs."}},"week":{"displayName":"Týden","relative-type--1":"minulý týden","relative-type-0":"tento týden","relative-type-1":"příští týden","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} týden","relativeTimePattern-count-few":"za {0} týdny","relativeTimePattern-count-many":"za {0} týdne","relativeTimePattern-count-other":"za {0} týdnů"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} týdnem","relativeTimePattern-count-few":"před {0} týdny","relativeTimePattern-count-many":"před {0} týdnem","relativeTimePattern-count-other":"před {0} týdny"}},"week-short":{"displayName":"týd.","relative-type--1":"minulý týden","relative-type-0":"tento týden","relative-type-1":"příští týden","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} týd.","relativeTimePattern-count-few":"za {0} týd.","relativeTimePattern-count-many":"za {0} týd.","relativeTimePattern-count-other":"za {0} týd."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} týd.","relativeTimePattern-count-few":"před {0} týd.","relativeTimePattern-count-many":"před {0} týd.","relativeTimePattern-count-other":"před {0} týd."}},"week-narrow":{"displayName":"týd.","relative-type--1":"minulý týden","relative-type-0":"tento týden","relative-type-1":"příští týden","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} týd.","relativeTimePattern-count-few":"za {0} týd.","relativeTimePattern-count-many":"za {0} týd.","relativeTimePattern-count-other":"za {0} týd."},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} týd.","relativeTimePattern-count-few":"před {0} týd.","relativeTimePattern-count-many":"před {0} týd.","relativeTimePattern-count-other":"před {0} týd."}},"day":{"displayName":"Den","relative-type--1":"včera","relative-type--2":"předevčírem","relative-type-0":"dnes","relative-type-1":"zítra","relative-type-2":"pozítří","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} den","relativeTimePattern-count-few":"za {0} dny","relativeTimePattern-count-many":"za {0} dne","relativeTimePattern-count-other":"za {0} dní"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} dnem","relativeTimePattern-count-few":"před {0} dny","relativeTimePattern-count-many":"před {0} dnem","relativeTimePattern-count-other":"před {0} dny"}},"day-short":{"displayName":"den","relative-type--1":"včera","relative-type--2":"předevčírem","relative-type-0":"dnes","relative-type-1":"zítra","relative-type-2":"pozítří","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} den","relativeTimePattern-count-few":"za {0} dny","relativeTimePattern-count-many":"za {0} dne","relativeTimePattern-count-other":"za {0} dní"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} dnem","relativeTimePattern-count-few":"před {0} dny","relativeTimePattern-count-many":"před {0} dnem","relativeTimePattern-count-other":"před {0} dny"}},"day-narrow":{"displayName":"den","relative-type--1":"včera","relative-type--2":"předevčírem","relative-type-0":"dnes","relative-type-1":"zítra","relative-type-2":"pozítří","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} den","relativeTimePattern-count-few":"za {0} dny","relativeTimePattern-count-many":"za {0} dne","relativeTimePattern-count-other":"za {0} dní"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} dnem","relativeTimePattern-count-few":"před {0} dny","relativeTimePattern-count-many":"před {0} dnem","relativeTimePattern-count-other":"před {0} dny"}},"weekday":{"displayName":"Den v týdnu"},"sun":{"relative-type--1":"minulou neděli","relative-type-0":"tuto neděli","relative-type-1":"příští neděli"},"sun-short":{"relative-type--1":"minulou neděli","relative-type-0":"tuto neděli","relative-type-1":"příští neděli"},"sun-narrow":{"relative-type--1":"minulou neděli","relative-type-0":"tuto neděli","relative-type-1":"příští neděli"},"mon":{"relative-type--1":"minulé pondělí","relative-type-0":"toto pondělí","relative-type-1":"příští pondělí"},"mon-short":{"relative-type--1":"minulé pondělí","relative-type-0":"toto pondělí","relative-type-1":"příští pondělí"},"mon-narrow":{"relative-type--1":"minulé pondělí","relative-type-0":"toto pondělí","relative-type-1":"příští pondělí"},"tue":{"relative-type--1":"minulé úterý","relative-type-0":"toto úterý","relative-type-1":"příští úterý"},"tue-short":{"relative-type--1":"minulé úterý","relative-type-0":"toto úterý","relative-type-1":"příští úterý"},"tue-narrow":{"relative-type--1":"minulé úterý","relative-type-0":"toto úterý","relative-type-1":"příští úterý"},"wed":{"relative-type--1":"minulou středu","relative-type-0":"tuto středu","relative-type-1":"příští středu"},"wed-short":{"relative-type--1":"minulou středu","relative-type-0":"tuto středu","relative-type-1":"příští středu"},"wed-narrow":{"relative-type--1":"minulou středu","relative-type-0":"tuto středu","relative-type-1":"příští středu"},"thu":{"relative-type--1":"minulý čtvrtek","relative-type-0":"tento čtvrtek","relative-type-1":"příští čtvrtek"},"thu-short":{"relative-type--1":"minulý čtvrtek","relative-type-0":"tento čtvrtek","relative-type-1":"příští čtvrtek"},"thu-narrow":{"relative-type--1":"minulý čtvrtek","relative-type-0":"tento čtvrtek","relative-type-1":"příští čtvrtek"},"fri":{"relative-type--1":"minulý pátek","relative-type-0":"tento pátek","relative-type-1":"příští pátek"},"fri-short":{"relative-type--1":"minulý pátek","relative-type-0":"tento pátek","relative-type-1":"příští pátek"},"fri-narrow":{"relative-type--1":"minulý pátek","relative-type-0":"tento pátek","relative-type-1":"příští pátek"},"sat":{"relative-type--1":"minulou sobotu","relative-type-0":"tuto sobotu","relative-type-1":"příští sobotu"},"sat-short":{"relative-type--1":"minulou sobotu","relative-type-0":"tuto sobotu","relative-type-1":"příští sobotu"},"sat-narrow":{"relative-type--1":"minulou sobotu","relative-type-0":"tuto sobotu","relative-type-1":"příští sobotu"},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Hodina","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} hodinu","relativeTimePattern-count-few":"za {0} hodiny","relativeTimePattern-count-many":"za {0} hodiny","relativeTimePattern-count-other":"za {0} hodin"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} hodinou","relativeTimePattern-count-few":"před {0} hodinami","relativeTimePattern-count-many":"před {0} hodinou","relativeTimePattern-count-other":"před {0} hodinami"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} h","relativeTimePattern-count-few":"za {0} h","relativeTimePattern-count-many":"za {0} h","relativeTimePattern-count-other":"za {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} h","relativeTimePattern-count-few":"před {0} h","relativeTimePattern-count-many":"před {0} h","relativeTimePattern-count-other":"před {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} h","relativeTimePattern-count-few":"za {0} h","relativeTimePattern-count-many":"za {0} h","relativeTimePattern-count-other":"za {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} h","relativeTimePattern-count-few":"před {0} h","relativeTimePattern-count-many":"před {0} h","relativeTimePattern-count-other":"před {0} h"}},"minute":{"displayName":"Minuta","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} minutu","relativeTimePattern-count-few":"za {0} minuty","relativeTimePattern-count-many":"za {0} minuty","relativeTimePattern-count-other":"za {0} minut"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} minutou","relativeTimePattern-count-few":"před {0} minutami","relativeTimePattern-count-many":"před {0} minutou","relativeTimePattern-count-other":"před {0} minutami"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} min","relativeTimePattern-count-few":"za {0} min","relativeTimePattern-count-many":"za {0} min","relativeTimePattern-count-other":"za {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} min","relativeTimePattern-count-few":"před {0} min","relativeTimePattern-count-many":"před {0} min","relativeTimePattern-count-other":"před {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} min","relativeTimePattern-count-few":"za {0} min","relativeTimePattern-count-many":"za {0} min","relativeTimePattern-count-other":"za {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} min","relativeTimePattern-count-few":"před {0} min","relativeTimePattern-count-many":"před {0} min","relativeTimePattern-count-other":"před {0} min"}},"second":{"displayName":"Sekunda","relative-type-0":"nyní","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} sekundu","relativeTimePattern-count-few":"za {0} sekundy","relativeTimePattern-count-many":"za {0} sekundy","relativeTimePattern-count-other":"za {0} sekund"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} sekundou","relativeTimePattern-count-few":"před {0} sekundami","relativeTimePattern-count-many":"před {0} sekundou","relativeTimePattern-count-other":"před {0} sekundami"}},"second-short":{"displayName":"s","relative-type-0":"nyní","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} s","relativeTimePattern-count-few":"za {0} s","relativeTimePattern-count-many":"za {0} s","relativeTimePattern-count-other":"za {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} s","relativeTimePattern-count-few":"před {0} s","relativeTimePattern-count-many":"před {0} s","relativeTimePattern-count-other":"před {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"nyní","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} s","relativeTimePattern-count-few":"za {0} s","relativeTimePattern-count-many":"za {0} s","relativeTimePattern-count-other":"za {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"před {0} s","relativeTimePattern-count-few":"před {0} s","relativeTimePattern-count-many":"před {0} s","relativeTimePattern-count-other":"před {0} s"}},"zone":{"displayName":"Časové pásmo"}} \ No newline at end of file diff --git a/Punic/data/cs/languages.json b/Punic/data/cs/languages.json new file mode 100644 index 0000000..42e9251 --- /dev/null +++ b/Punic/data/cs/languages.json @@ -0,0 +1 @@ +{"aa":"afarština","ab":"abcházština","ace":"acehština","ach":"akolština","ada":"adangme","ady":"adygejština","ae":"avestánština","aeb":"arabština (tuniská)","af":"afrikánština","afh":"afrihili","agq":"aghem","ain":"ainština","ak":"akanština","akk":"akkadština","akz":"alabamština","ale":"aleutština","aln":"albánština (Gheg)","alt":"altajština (jižní)","am":"amharština","an":"aragonština","ang":"staroangličtina","anp":"angika","ar":"arabština","ar-001":"arabština (moderní standardní)","arc":"aramejština","arn":"araukánština","aro":"araonština","arp":"arapažština","arq":"arabština (alžírská)","arw":"arawacké jazyky","ary":"arabština (marocká)","arz":"arabština (egyptská)","as":"ásámština","asa":"asu","ase":"znaková řeč (americká)","ast":"asturština","av":"avarština","avk":"kotava","awa":"awadhština","ay":"ajmarština","az":"ázerbájdžánština","az-alt-short":"ázerbájdžánština","azb":"ázerbájdžánština (jižní)","ba":"baškirština","bal":"balúčština","ban":"balijština","bar":"bavorština","bas":"basa","bax":"bamun","bbc":"batak toba","bbj":"ghomala","be":"běloruština","bej":"bedža","bem":"bembština","bew":"batavština","bez":"bena","bfd":"bafut","bfq":"badagština","bg":"bulharština","bho":"bhojpurština","bi":"bislamština","bik":"bikolština","bin":"bini","bjn":"bandžarština","bkm":"kom","bla":"siksika","bm":"bambarština","bn":"bengálština","bo":"tibetština","bpy":"bišnuprijskomanipurština","bqi":"bachtijárština","br":"bretonština","bra":"bradžština","brh":"brahujština","brx":"bodoština","bs":"bosenština","bss":"akoose","bua":"burjatština","bug":"bugiština","bum":"bulu","byn":"blinština","byv":"medumba","ca":"katalánština","cad":"caddo","car":"karibština","cay":"kajugština","cch":"atsam","ce":"čečenština","ceb":"cebuánština","cgg":"kiga","ch":"čamoro","chb":"čibča","chg":"čagatajština","chk":"čukština","chm":"marijština","chn":"činuk pidžin","cho":"čoktština","chp":"čipevajština","chr":"čerokézština","chy":"čejenština","ckb":"kurdština (sorání)","co":"korsičtina","cop":"koptština","cps":"kapiznonština","cr":"kríjština","crh":"turečtina (krymská)","cs":"čeština","csb":"kašubština","cu":"staroslověnština","cv":"čuvaština","cy":"velština","da":"dánština","dak":"dakotština","dar":"dargština","dav":"taita","de":"němčina","de-AT":"de_AT","de-CH":"němčina standardní (Švýcarsko)","del":"delawarština","den":"slejvština (athabaský jazyk)","dgr":"dogrib","din":"dinkština","dje":"zarmština","doi":"dogarština","dsb":"dolnolužická srbština","dtp":"kadazandusunština","dua":"dualština","dum":"holandština (středověká)","dv":"maledivština","dyo":"jola-fonyi","dyu":"djula","dz":"dzongkä","dzg":"dazaga","ebu":"embu","ee":"eweština","efi":"efikština","egl":"emilijština","egy":"egyptština stará","eka":"ekajuk","el":"řečtina","elx":"elamitština","en":"angličtina","en-AU":"en_AU","en-CA":"en_CA","en-GB":"en_GB","en-GB-alt-short":"angličtina (VB)","en-US":"angličtina (USA)","en-US-alt-short":"angličtina (USA)","enm":"angličtina (středověká)","eo":"esperanto","es":"španělština","es-419":"es_419","es-ES":"španělština (Evropa)","es-MX":"es_MX","esu":"jupikština (středoaljašská)","et":"estonština","eu":"baskičtina","ewo":"ewondo","ext":"extremadurština","fa":"perština","fan":"fang","fat":"fantština","ff":"fulbština","fi":"finština","fil":"filipínština","fit":"finština (tornedalská)","fj":"fidžijština","fo":"faerština","fon":"fonština","fr":"francouzština","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"francouzština (kajunská)","frm":"francouzština (středověká)","fro":"francouzština (stará)","frp":"franko-provensálština","frr":"fríština (severní)","frs":"fríština (východní)","fur":"furlanština","fy":"fríština","ga":"irština","gaa":"gaština","gag":"gagauzština","gan":"čínština (dialekty Gan)","gay":"gayo","gba":"gbaja","gbz":"daríjština (zoroastrijská)","gd":"skotská gaelština","gez":"geez","gil":"kiribatština","gl":"galicijština","glk":"gilačtina","gmh":"hornoněmčina (středověká)","gn":"guaranština","goh":"hornoněmčina (stará)","gom":"konkánština (Goa)","gon":"góndština","gor":"gorontalo","got":"gótština","grb":"grebo","grc":"starořečtina","gsw":"němčina (Švýcarsko)","gu":"gudžarátština","guc":"wayúuština","gur":"frafra","guz":"gusii","gv":"manština","gwi":"gwichʼin","ha":"hauština","hai":"haidština","hak":"čínština (dialekty Hakka)","haw":"havajština","he":"hebrejština","hi":"hindština","hif":"hindština (Fidži)","hil":"hiligajnonština","hit":"chetitština","hmn":"hmongština","ho":"hiri motu","hr":"chorvatština","hsb":"hornolužická srbština","hsn":"čínština (dialekty Xiang)","ht":"haitština","hu":"maďarština","hup":"hupa","hy":"arménština","hz":"hererština","ia":"interlingua","iba":"ibanština","ibb":"ibibio","id":"indonéština","ie":"interlingue","ig":"igboština","ii":"s’-čchuan i","ik":"inupiakština","ilo":"ilokánština","inh":"inguština","io":"ido","is":"islandština","it":"italština","iu":"inuktitutština","izh":"ingrijština","ja":"japonština","jam":"jamajská kreolština","jbo":"lojban","jgo":"ngomba","jmc":"mašame","jpr":"judeoperština","jrb":"judeoarabština","jut":"jutština","jv":"javánština","ka":"gruzínština","kaa":"karakalpačtina","kab":"kabylština","kac":"kačijština","kaj":"jju","kam":"kambština","kaw":"kawi","kbd":"kabardinština","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kapverdština","ken":"kenyang","kfo":"koro","kg":"konžština","kgp":"kaingang","kha":"khásí","kho":"chotánština","khq":"koyra chiini","khw":"chovarština","ki":"kikujština","kiu":"zazakština","kj":"kuaňamština","kk":"kazaština","kkj":"kako","kl":"grónština","kln":"kalendžin","km":"khmérština","kmb":"kimbundština","kn":"kannadština","ko":"korejština","koi":"komi-permjačtina","kok":"konkánština","kos":"kosrajština","kpe":"kpelle","kr":"kanuri","krc":"karačajevo-balkarština","kri":"krio","krj":"kinaraj-a","krl":"karelština","kru":"kuruchština","ks":"kašmírština","ksb":"šambala","ksf":"bafia","ksh":"kolínština","ku":"kurdština","kum":"kumyčtina","kut":"kutenajština","kv":"komijština","kw":"kornština","ky":"kyrgyzština","la":"latina","lad":"ladinština","lag":"langi","lah":"lahndština","lam":"lambština","lb":"lucemburština","lez":"lezginština","lfn":"lingua franca nova","lg":"gandština","li":"limburština","lij":"ligurština","liv":"livonština","lkt":"lakotština","lmo":"lombardština","ln":"lingalština","lo":"laoština","lol":"mongština","loz":"lozština","lt":"litevština","ltg":"latgalština","lu":"lubu-katanžština","lua":"luba-luluaština","lui":"luiseňo","lun":"lundština","luo":"luoština","lus":"mizoština","luy":"luhja","lv":"lotyština","lzh":"čínština (klasická)","lzz":"lazština","mad":"madurština","maf":"mafa","mag":"magahijština","mai":"maithiliština","mak":"makasarština","man":"mandingština","mas":"masajština","mde":"maba","mdf":"mokšanština","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauricijská kreolština","mg":"malgaština","mga":"irština (středověká)","mgh":"makhuwa-meetto","mgo":"meta’","mh":"maršálština","mi":"maorština","mic":"micmac","min":"minangkabau","mk":"makedonština","ml":"malajálamština","mn":"mongolština","mnc":"mandžuština","mni":"manipurština","moh":"mohawkština","mos":"mosi","mr":"maráthština","mrj":"marijština (západní)","ms":"malajština","mt":"maltština","mua":"mundang","mul":"složené (víceřádkové) jazyky","mus":"kríkština","mwl":"mirandština","mwr":"márvárština","mwv":"mentavajština","my":"barmština","mye":"myene","myv":"erzjanština","mzn":"mázandaránština","na":"naurština","nan":"čínština (dialekty Minnan)","nap":"neapolština","naq":"namaština","nb":"norština (bokmål)","nd":"ndebele (Zimbabwe)","nds":"dolnoněmčina","ne":"nepálština","new":"névárština","ng":"ndondština","nia":"nias","niu":"niueština","njo":"ao (jazyky Nágálandu)","nl":"nizozemština","nl-BE":"vlámština","nmg":"kwasio","nn":"norština (nynorsk)","nnh":"ngiemboon","no":"norština","nog":"nogajština","non":"norština historická","nov":"novial","nqo":"n’ko","nr":"ndebele (Jižní Afrika)","nso":"sotština (severní)","nus":"nuerština","nv":"navažština","nwc":"newarština (klasická)","ny":"ňandžština","nym":"ňamwežština","nyn":"ňankolština","nyo":"ňorština","nzi":"nzima","oc":"okcitánština","oj":"odžibvejština","om":"oromština","or":"urijština","os":"osetština","osa":"osage","ota":"turečtina (osmanská)","pa":"paňdžábština","pag":"pangasinanština","pal":"pahlavština","pam":"papangau","pap":"papiamento","pau":"palauština","pcd":"picardština","pdc":"němčina (pensylvánská)","pdt":"němčina (plautdietsch)","peo":"staroperština","pfl":"falčtina","phn":"féničtina","pi":"pálí","pl":"polština","pms":"piemonština","pnt":"pontština","pon":"pohnpeiština","prg":"pruština","pro":"provensálština","ps":"paštština","pt":"portugalština","pt-BR":"pt_BR","pt-PT":"portugalština (Evropa)","qu":"kečuánština","quc":"kičé","qug":"kečuánština (chimborazo)","raj":"rádžastánština","rap":"rapanujština","rar":"rarotongánština","rgn":"romaňolština","rif":"rífština","rm":"rétorománština","rn":"kirundština","ro":"rumunština","ro-MD":"moldavština","rof":"rombo","rom":"romština","root":"kořen","rtm":"rotumanština","ru":"ruština","rue":"rusínština","rug":"rovianština","rup":"arumunština","rw":"kiňarwandština","rwk":"rwa","sa":"sanskrt","sad":"sandawština","sah":"jakutština","sam":"samarština","saq":"samburu","sas":"sasakština","sat":"santálština","saz":"saurášterština","sba":"ngambay","sbp":"sangoština","sc":"sardština","scn":"sicilština","sco":"skotština","sd":"sindhština","sdc":"sassarština","se":"sámština (severní)","see":"seneca","seh":"sena","sei":"seriština","sel":"selkupština","ses":"koyraboro senni","sg":"sangština","sga":"irština (stará)","sgs":"žemaitština","sh":"srbochorvatština","shi":"tachelhit","shn":"šanština","shu":"arabština (čadská)","si":"sinhálština","sid":"sidamo","sk":"slovenština","sl":"slovinština","sli":"němčina (slezská)","sly":"selajarština","sm":"samojština","sma":"sámština (jižní)","smj":"sámština (lulejská)","smn":"sámština (inarijská)","sms":"sámština (skoltská)","sn":"šonština","snk":"sonikština","so":"somálština","sog":"sogdština","sq":"albánština","sr":"srbština","srn":"sranan tongo","srr":"sererština","ss":"siswatština","ssy":"saho","st":"sotština (jižní)","stq":"fríština (saterlandská)","su":"sundština","suk":"sukuma","sus":"susu","sux":"sumerština","sv":"švédština","sw":"svahilština","swb":"komorština","swc":"svahilština (Kongo)","syc":"syrština (klasická)","syr":"syrština","szl":"slezština","ta":"tamilština","tcy":"tuluština","te":"telugština","tem":"temne","teo":"teso","ter":"tereno","tet":"tetumština","tg":"tádžičtina","th":"thajština","ti":"tigrinijština","tig":"tigrejština","tiv":"tivština","tk":"turkmenština","tkl":"tokelauština","tkr":"cachurština","tl":"tagalog","tlh":"klingonština","tli":"tlingit","tly":"talyština","tmh":"tamašek","tn":"setswanština","to":"tongánština","tog":"tonžština (nyasa)","tpi":"tok pisin","tr":"turečtina","tru":"turojština","trv":"taroko","ts":"tsonga","tsd":"tsakonština","tsi":"tsimšijské jazyky","tt":"tatarština","ttt":"tatština","tum":"tumbukština","tvl":"tuvalština","tw":"twi","twq":"tasawaq","ty":"tahitština","tyv":"tuvinština","tzm":"tamazight (střední Maroko)","udm":"udmurtština","ug":"ujgurština","uga":"ugaritština","uk":"ukrajinština","umb":"umbundu","und":"neznámý jazyk","ur":"urdština","uz":"uzbečtina","vai":"vai","ve":"venda","vec":"benátština","vep":"vepština","vi":"vietnamština","vls":"vlámština (západní)","vmf":"němčina (mohansko-franské dialekty)","vo":"volapük","vot":"votština","vro":"võruština","vun":"vunjo","wa":"valonština","wae":"němčina (walser)","wal":"wolajtština","war":"warajština","was":"waština","wo":"wolofština","wuu":"čínština (dialekty Wu)","xal":"kalmyčtina","xh":"xhoština","xmf":"mingrelština","xog":"sogština","yao":"jaoština","yap":"japština","yav":"jangbenština","ybb":"yemba","yi":"jidiš","yo":"jorubština","yrl":"nheengatu","yue":"kantonština","za":"čuangština","zap":"zapotéčtina","zbl":"bliss systém","zea":"zélandština","zen":"zenaga","zgh":"tamazight (standardní marocký)","zh":"čínština","zh-Hans":"čínština (zjednodušená)","zh-Hant":"zh_Hant","zu":"zuluština","zun":"zunijština","zxx":"žádný jazykový obsah","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/cs/listPatterns.json b/Punic/data/cs/listPatterns.json new file mode 100644 index 0000000..f5807a6 --- /dev/null +++ b/Punic/data/cs/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s a %2$s","2":"%1$s a %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s a %2$s","2":"%1$s a %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s a %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/cs/localeDisplayNames.json b/Punic/data/cs/localeDisplayNames.json new file mode 100644 index 0000000..fb3695e --- /dev/null +++ b/Punic/data/cs/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Kalendář","colAlternate":"Ignorovat řazení symbolů","colBackwards":"Obrácené řazení akcentů","colCaseFirst":"Řazení velkých a malých písmen","colCaseLevel":"Rozlišovaní velkých a malých písmen při řazení","colHiraganaQuaternary":"Řazení podle slabičných písem (kana)","colNormalization":"Normalizované řazení","colNumeric":"Číselné řazení","colStrength":"Míra řazení","collation":"Řazení","currency":"Měna","numbers":"Čísla","timezone":"Časové pásmo","va":"Varianta národního prostředí","variableTop":"Řadit jako symboly","x":"Soukromé použití"},"types":{"numbers":{"vaii":"Vaiské číslice"},"collation":{"zhuyin":"Ču-jin"},"calendar":{"roc":"Kalendář Čínské republiky"},"colStrength":{"tertiary":"Řadit akcenty/velká a malá písmena/šířku"},"colCaseFirst":{"upper":"Nejdříve řadit velká písmena"},"colBackwards":{"yes":"Řadit akcenty opačně"},"colCaseLevel":{"yes":"Rozlišovat při řazení velká a malá písmena"},"colHiraganaQuaternary":{"yes":"Řadit jednotlivé typy slabičných písem (kana) různě"},"colNormalization":{"yes":"Řadit podle normalizovaného kódování Unicode"},"colNumeric":{"yes":"Řadit číslice numericky"},"colAlternate":{"shifted":"Při řazení ignorovat symboly"}},"codePatterns":{"language":"Jazyk: %1$s","script":"Písmo: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/cs/numbers.json b/Punic/data/cs/numbers.json new file mode 100644 index 0000000..af8a5c6 --- /dev/null +++ b/Punic/data/cs/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/cs/territories.json b/Punic/data/cs/territories.json new file mode 100644 index 0000000..39d8b1d --- /dev/null +++ b/Punic/data/cs/territories.json @@ -0,0 +1 @@ +{"001":"Svět","002":"Afrika","003":"Severní Amerika","005":"Jižní Amerika","009":"Oceánie","011":"Západní Afrika","013":"Střední Amerika","014":"Východní Afrika","015":"Severní Afrika","017":"Střední Afrika","018":"Jižní Afrika","019":"Amerika","021":"Severní Amerika (oblast)","029":"Karibik","030":"Východní Asie","034":"Jižní Asie","035":"Jihovýchodní Asie","039":"Jižní Evropa","053":"Australasie","054":"Melanésie","057":"Mikronésie (region)","061":"Polynésie","142":"Asie","143":"Střední Asie","145":"Západní Asie","150":"Evropa","151":"Východní Evropa","154":"Severní Evropa","155":"Západní Evropa","419":"Latinská Amerika","AC":"Ascension","AD":"Andorra","AE":"Spojené arabské emiráty","AF":"Afghánistán","AG":"Antigua a Barbuda","AI":"Anguilla","AL":"Albánie","AM":"Arménie","AN":"Nizozemské Antily","AO":"Angola","AQ":"Antarktida","AR":"Argentina","AS":"Americká Samoa","AT":"Rakousko","AU":"Austrálie","AW":"Aruba","AX":"Ålandy","AZ":"Ázerbájdžán","BA":"Bosna a Hercegovina","BB":"Barbados","BD":"Bangladéš","BE":"Belgie","BF":"Burkina Faso","BG":"Bulharsko","BH":"Bahrajn","BI":"Burundi","BJ":"Benin","BL":"Svatý Bartoloměj","BM":"Bermudy","BN":"Brunej","BO":"Bolívie","BQ":"Karibské Nizozemsko","BR":"Brazílie","BS":"Bahamy","BT":"Bhútán","BV":"Bouvetův ostrov","BW":"Botswana","BY":"Bělorusko","BZ":"Belize","CA":"Kanada","CC":"Kokosové ostrovy","CD":"Kongo – Kinshasa","CD-alt-variant":"Kongo (DRK)","CF":"Středoafrická republika","CG":"Kongo – Brazzaville","CG-alt-variant":"Kongo (republika)","CH":"Švýcarsko","CI":"Pobřeží slonoviny","CI-alt-variant":"CI","CK":"Cookovy ostrovy","CL":"Chile","CM":"Kamerun","CN":"Čína","CO":"Kolumbie","CP":"Clippertonův ostrov","CR":"Kostarika","CU":"Kuba","CV":"Kapverdy","CW":"Curaçao","CX":"Vánoční ostrov","CY":"Kypr","CZ":"Česká republika","DE":"Německo","DG":"Diego García","DJ":"Džibutsko","DK":"Dánsko","DM":"Dominika","DO":"Dominikánská republika","DZ":"Alžírsko","EA":"Ceuta a Melilla","EC":"Ekvádor","EE":"Estonsko","EG":"Egypt","EH":"Západní Sahara","ER":"Eritrea","ES":"Španělsko","ET":"Etiopie","EU":"Evropská unie","FI":"Finsko","FJ":"Fidži","FK":"Falklandské ostrovy","FK-alt-variant":"Falklandské ostrovy (Malvíny)","FM":"Mikronésie","FO":"Faerské ostrovy","FR":"Francie","GA":"Gabon","GB":"Velká Británie","GB-alt-short":"VB","GD":"Grenada","GE":"Gruzie","GF":"Francouzská Guyana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grónsko","GM":"Gambie","GN":"Guinea","GP":"Guadeloupe","GQ":"Rovníková Guinea","GR":"Řecko","GS":"Jižní Georgie a Jižní Sandwichovy ostrovy","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong – ZAO Číny","HK-alt-short":"Hongkong","HM":"Heardův ostrov a McDonaldovy ostrovy","HN":"Honduras","HR":"Chorvatsko","HT":"Haiti","HU":"Maďarsko","IC":"Kanárské ostrovy","ID":"Indonésie","IE":"Irsko","IL":"Izrael","IM":"Ostrov Man","IN":"Indie","IO":"Britské indickooceánské území","IQ":"Irák","IR":"Írán","IS":"Island","IT":"Itálie","JE":"Jersey","JM":"Jamajka","JO":"Jordánsko","JP":"Japonsko","KE":"Keňa","KG":"Kyrgyzstán","KH":"Kambodža","KI":"Kiribati","KM":"Komory","KN":"Svatý Kryštof a Nevis","KP":"Severní Korea","KR":"Jižní Korea","KW":"Kuvajt","KY":"Kajmanské ostrovy","KZ":"Kazachstán","LA":"Laos","LB":"Libanon","LC":"Svatá Lucie","LI":"Lichtenštejnsko","LK":"Srí Lanka","LR":"Libérie","LS":"Lesotho","LT":"Litva","LU":"Lucembursko","LV":"Lotyšsko","LY":"Libye","MA":"Maroko","MC":"Monako","MD":"Moldavsko","ME":"Černá Hora","MF":"Svatý Martin (Francie)","MG":"Madagaskar","MH":"Marshallovy ostrovy","MK":"Makedonie","MK-alt-variant":"Makedonie (FYROM)","ML":"Mali","MM":"Myanmar (Barma)","MN":"Mongolsko","MO":"Macao – ZAO Číny","MO-alt-short":"Macao","MP":"Severní Mariany","MQ":"Martinik","MR":"Mauritánie","MS":"Montserrat","MT":"Malta","MU":"Mauricius","MV":"Maledivy","MW":"Malawi","MX":"Mexiko","MY":"Malajsie","MZ":"Mosambik","NA":"Namibie","NC":"Nová Kaledonie","NE":"Niger","NF":"Norfolk","NG":"Nigérie","NI":"Nikaragua","NL":"Nizozemsko","NO":"Norsko","NP":"Nepál","NR":"Nauru","NU":"Niue","NZ":"Nový Zéland","OM":"Omán","PA":"Panama","PE":"Peru","PF":"Francouzská Polynésie","PG":"Papua-Nová Guinea","PH":"Filipíny","PK":"Pákistán","PL":"Polsko","PM":"Saint-Pierre a Miquelon","PN":"Pitcairnovy ostrovy","PR":"Portoriko","PS":"Palestinská území","PS-alt-short":"Palestina","PT":"Portugalsko","PW":"Palau","PY":"Paraguay","QA":"Katar","QO":"Vnější Oceánie","RE":"Réunion","RO":"Rumunsko","RS":"Srbsko","RU":"Rusko","RW":"Rwanda","SA":"Saúdská Arábie","SB":"Šalamounovy ostrovy","SC":"Seychely","SD":"Súdán","SE":"Švédsko","SG":"Singapur","SH":"Svatá Helena","SI":"Slovinsko","SJ":"Špicberky a Jan Mayen","SK":"Slovensko","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somálsko","SR":"Surinam","SS":"Jižní Súdán","ST":"Svatý Tomáš a Princův ostrov","SV":"Salvador","SX":"Svatý Martin (Nizozemsko)","SY":"Sýrie","SZ":"Svazijsko","TA":"Tristan da Cunha","TC":"Turks a Caicos","TD":"Čad","TF":"Francouzská jižní území","TG":"Togo","TH":"Thajsko","TJ":"Tádžikistán","TK":"Tokelau","TL":"Východní Timor","TL-alt-variant":"TL","TM":"Turkmenistán","TN":"Tunisko","TO":"Tonga","TR":"Turecko","TT":"Trinidad a Tobago","TV":"Tuvalu","TW":"Tchaj-wan","TZ":"Tanzanie","UA":"Ukrajina","UG":"Uganda","UM":"Menší odlehlé ostrovy USA","US":"Spojené státy","US-alt-short":"USA","UY":"Uruguay","UZ":"Uzbekistán","VA":"Vatikán","VC":"Svatý Vincenc a Grenadiny","VE":"Venezuela","VG":"Britské Panenské ostrovy","VI":"Americké Panenské ostrovy","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis a Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Jihoafrická republika","ZM":"Zambie","ZW":"Zimbabwe","ZZ":"Neznámá oblast"} \ No newline at end of file diff --git a/Punic/data/cs/timeZoneNames.json b/Punic/data/cs/timeZoneNames.json new file mode 100644 index 0000000..52fef28 --- /dev/null +++ b/Punic/data/cs/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+H:mm;-H:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Časové pásmo %1$s","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahía"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Kajmanské ostrovy"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Kostarika"},"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":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepe"},"El_Salvador":{"exemplarCity":"Salvador"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamajka"},"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":"Martinik"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Merida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"México"},"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, Severní Dakota"},"Center":{"exemplarCity":"Center, Severní Dakota"},"New_Salem":{"exemplarCity":"New Salem, Severní 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":"Portoriko"},"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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Svatý Bartoloměj"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"Svatý Kryštof"},"St_Lucia":{"exemplarCity":"Svatá Lucie"},"St_Thomas":{"exemplarCity":"Svatý Tomáš (Karibik)"},"St_Vincent":{"exemplarCity":"Svatý Vincenc"},"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":"Azorské ostrovy"},"Bermuda":{"exemplarCity":"Bermudy"},"Canary":{"exemplarCity":"Kanárské ostrovy"},"Cape_Verde":{"exemplarCity":"Kapverdy"},"Faeroe":{"exemplarCity":"Faerské ostrovy"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavík"},"South_Georgia":{"exemplarCity":"Jižní Georgie"},"St_Helena":{"exemplarCity":"Svatá Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athény"},"Belgrade":{"exemplarCity":"Bělehrad"},"Berlin":{"exemplarCity":"Berlín"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brusel"},"Bucharest":{"exemplarCity":"Bukurešť"},"Budapest":{"exemplarCity":"Budapešť"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Kišiněv"},"Copenhagen":{"exemplarCity":"Kodaň"},"Dublin":{"long":{"daylight":"Irský letní čas"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinky"},"Isle_of_Man":{"exemplarCity":"Ostrov Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kyjev"},"Lisbon":{"exemplarCity":"Lisabon"},"Ljubljana":{"exemplarCity":"Lublaň"},"London":{"long":{"daylight":"Britský letní čas"},"exemplarCity":"Londýn"},"Luxembourg":{"exemplarCity":"Lucemburk"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paříž"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praha"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Řím"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofie"},"Stockholm":{"exemplarCity":"Stockholm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Užhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikán"},"Vienna":{"exemplarCity":"Vídeň"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varšava"},"Zagreb":{"exemplarCity":"Záhřeb"},"Zaporozhye":{"exemplarCity":"Záporoží"},"Zurich":{"exemplarCity":"Curych"}},"Africa":{"Abidjan":{"exemplarCity":"Abidžan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alžír"},"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":"Káhira"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Džibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Chartúm"},"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":"Mogadišu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndžamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nuakšott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"Svatý Tomáš"},"Tripoli":{"exemplarCity":"Tripolis"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Ammán"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Ašchabad"},"Baghdad":{"exemplarCity":"Bagdád"},"Bahrain":{"exemplarCity":"Bahrajn"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Bejrút"},"Bishkek":{"exemplarCity":"Biškek"},"Brunei":{"exemplarCity":"Brunej"},"Calcutta":{"exemplarCity":"Kalkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Čojbalsan"},"Chongqing":{"exemplarCity":"Čchung-čching"},"Colombo":{"exemplarCity":"Kolombo"},"Damascus":{"exemplarCity":"Damašek"},"Dhaka":{"exemplarCity":"Dháka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubaj"},"Dushanbe":{"exemplarCity":"Dušanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Charbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzalém"},"Kabul":{"exemplarCity":"Kábul"},"Kamchatka":{"exemplarCity":"Kamčatka"},"Karachi":{"exemplarCity":"Karáčí"},"Kashgar":{"exemplarCity":"Kašghar"},"Katmandu":{"exemplarCity":"Káthmándú"},"Khandyga":{"exemplarCity":"Chandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kučing"},"Kuwait":{"exemplarCity":"Kuvajt"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Maskat"},"Nicosia":{"exemplarCity":"Nikósie"},"Novokuznetsk":{"exemplarCity":"Novokuzněck"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnompenh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pchjongjang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kyzylorda"},"Rangoon":{"exemplarCity":"Rangún"},"Riyadh":{"exemplarCity":"Rijád"},"Saigon":{"exemplarCity":"Ho Či Minovo město"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Soul"},"Shanghai":{"exemplarCity":"Šanghaj"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Tchaj-pej"},"Tashkent":{"exemplarCity":"Taškent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teherán"},"Thimphu":{"exemplarCity":"Thimbú"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulánbátar"},"Urumqi":{"exemplarCity":"Urumči"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekatěrinburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Vánoční ostrov"},"Cocos":{"exemplarCity":"Kokosové ostrovy"},"Comoro":{"exemplarCity":"Komory"},"Kerguelen":{"exemplarCity":"Kerguelenovy ostrovy"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maledivy"},"Mauritius":{"exemplarCity":"Mauricius"},"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"},"Chatham":{"exemplarCity":"Chathamské ostrovy"},"Easter":{"exemplarCity":"Velikonoční ostrov"},"Efate":{"exemplarCity":"Éfaté"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidži"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapágy"},"Gambier":{"exemplarCity":"Gambierovy ostrovy"},"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":"Markézy"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palau"},"Pitcairn":{"exemplarCity":"Pitcairnovy ostrovy"},"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":"Chuukské ostrovy"},"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":"Vostok"}},"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":"Neznámé město"}}},"metazone":{"Acre":{"long":{"generic":"Acrejský čas","standard":"Acrejský standardní čas","daylight":"Acrejský letní čas"}},"Afghanistan":{"long":{"standard":"Afghánský čas"}},"Africa_Central":{"long":{"standard":"Středoafrický čas"}},"Africa_Eastern":{"long":{"standard":"Východoafrický čas"}},"Africa_Southern":{"long":{"standard":"Jihoafrický čas"}},"Africa_Western":{"long":{"generic":"Západoafrický čas","standard":"Západoafrický standardní čas","daylight":"Západoafrický letní čas"}},"Alaska":{"long":{"generic":"Aljašský čas","standard":"Aljašský standardní čas","daylight":"Aljašský letní čas"}},"Almaty":{"long":{"generic":"Almatský čas","standard":"Almatský standardní čas","daylight":"Almatský letní čas"}},"Amazon":{"long":{"generic":"Amazonský čas","standard":"Amazonský standardní čas","daylight":"Amazonský letní čas"}},"America_Central":{"long":{"generic":"Severoamerický centrální čas","standard":"Severoamerický centrální standardní čas","daylight":"Severoamerický centrální letní čas"}},"America_Eastern":{"long":{"generic":"Severoamerický východní čas","standard":"Severoamerický východní standardní čas","daylight":"Severoamerický východní letní čas"}},"America_Mountain":{"long":{"generic":"Severoamerický horský čas","standard":"Severoamerický horský standardní čas","daylight":"Severoamerický horský letní čas"}},"America_Pacific":{"long":{"generic":"Severoamerický pacifický čas","standard":"Severoamerický pacifický standardní čas","daylight":"Severoamerický pacifický letní čas"}},"Anadyr":{"long":{"generic":"Anadyrský čas","standard":"Anadyrský standardní čas","daylight":"Anadyrský letní čas"}},"Apia":{"long":{"generic":"Apijský čas","standard":"Apijský standardní čas","daylight":"Apijský letní čas"}},"Aqtau":{"long":{"generic":"Aktauský čas","standard":"Aktauský standardní čas","daylight":"Aktauský letní čas"}},"Aqtobe":{"long":{"generic":"Aktobský čas","standard":"Aktobský standardní čas","daylight":"Aktobský letní čas"}},"Arabian":{"long":{"generic":"Arabský čas","standard":"Arabský standardní čas","daylight":"Arabský letní čas"}},"Argentina":{"long":{"generic":"Argentinský čas","standard":"Argentinský standardní čas","daylight":"Argentinský letní čas"}},"Argentina_Western":{"long":{"generic":"Západoargentinský čas","standard":"Západoargentinský standardní čas","daylight":"Západoargentinský letní čas"}},"Armenia":{"long":{"generic":"Arménský čas","standard":"Arménský standardní čas","daylight":"Arménský letní čas"}},"Atlantic":{"long":{"generic":"Atlantický čas","standard":"Atlantický standardní čas","daylight":"Atlantický letní čas"}},"Australia_Central":{"long":{"generic":"Středoaustralský čas","standard":"Středoaustralský standardní čas","daylight":"Středoaustralský letní čas"}},"Australia_CentralWestern":{"long":{"generic":"Středozápadní australský čas","standard":"Středozápadní australský standardní čas","daylight":"Středozápadní australský letní čas"}},"Australia_Eastern":{"long":{"generic":"Východoaustralský čas","standard":"Východoaustralský standardní čas","daylight":"Východoaustralský letní čas"}},"Australia_Western":{"long":{"generic":"Západoaustralský čas","standard":"Západoaustralský standardní čas","daylight":"Západoaustralský letní čas"}},"Azerbaijan":{"long":{"generic":"Ázerbájdžánský čas","standard":"Ázerbájdžánský standardní čas","daylight":"Ázerbájdžánský letní čas"}},"Azores":{"long":{"generic":"Azorský čas","standard":"Azorský standardní čas","daylight":"Azorský letní čas"}},"Bangladesh":{"long":{"generic":"Bangladéšský čas","standard":"Bangladéšský standardní čas","daylight":"Bangladéšský letní čas"}},"Bhutan":{"long":{"standard":"Bhútánský čas"}},"Bolivia":{"long":{"standard":"Bolivijský čas"}},"Brasilia":{"long":{"generic":"Brasilijský čas","standard":"Brasilijský standardní čas","daylight":"Brasilijský letní čas"}},"Brunei":{"long":{"standard":"Brunejský čas"}},"Cape_Verde":{"long":{"generic":"Kapverdský čas","standard":"Kapverdský standardní čas","daylight":"Kapverdský letní čas"}},"Casey":{"long":{"standard":"Čas Caseyho stanice"}},"Chamorro":{"long":{"standard":"Chamorrský čas"}},"Chatham":{"long":{"generic":"Chathamský čas","standard":"Chathamský standardní čas","daylight":"Chathamský letní čas"}},"Chile":{"long":{"generic":"Chilský čas","standard":"Chilský standardní čas","daylight":"Chilský letní čas"}},"China":{"long":{"generic":"Čínský čas","standard":"Čínský standardní čas","daylight":"Čínský letní čas"}},"Choibalsan":{"long":{"generic":"Čojbalsanský čas","standard":"Čojbalsanský standardní čas","daylight":"Čojbalsanský letní čas"}},"Christmas":{"long":{"standard":"Čas Vánočního ostrova"}},"Cocos":{"long":{"standard":"Čas Kokosových ostrovů"}},"Colombia":{"long":{"generic":"Kolumbijský čas","standard":"Kolumbijský standardní čas","daylight":"Kolumbijský letní čas"}},"Cook":{"long":{"generic":"Čas Cookových ostrovů","standard":"Standardní čas Cookových ostrovů","daylight":"Letní čas Cookových ostrovů"}},"Cuba":{"long":{"generic":"Kubánský čas","standard":"Kubánský standardní čas","daylight":"Kubánský letní čas"}},"Davis":{"long":{"standard":"Čas Davisovy stanice"}},"DumontDUrville":{"long":{"standard":"Čas stanice Dumonta d’Urvilla"}},"East_Timor":{"long":{"standard":"Východotimorský čas"}},"Easter":{"long":{"generic":"Čas Velikonočního ostrova","standard":"Standardní čas Velikonočního ostrova","daylight":"Letní čas Velikonočního ostrova"}},"Ecuador":{"long":{"standard":"Ekvádorský čas"}},"Europe_Central":{"long":{"generic":"Středoevropský čas","standard":"Středoevropský standardní čas","daylight":"Středoevropský letní čas"},"short":{"generic":"SEČ","standard":"SEČ","daylight":"SELČ"}},"Europe_Eastern":{"long":{"generic":"Východoevropský čas","standard":"Východoevropský standardní čas","daylight":"Východoevropský letní čas"}},"Europe_Further_Eastern":{"long":{"standard":"Dálněvýchodoevropský čas"}},"Europe_Western":{"long":{"generic":"Západoevropský čas","standard":"Západoevropský standardní čas","daylight":"Západoevropský letní čas"}},"Falkland":{"long":{"generic":"Falklandský čas","standard":"Falklandský standardní čas","daylight":"Falklandský letní čas"}},"Fiji":{"long":{"generic":"Fidžijský čas","standard":"Fidžijský standardní čas","daylight":"Fidžijský letní čas"}},"French_Guiana":{"long":{"standard":"Francouzskoguyanský čas"}},"French_Southern":{"long":{"standard":"Čas Francouzských jižních a antarktických území"}},"GMT":{"long":{"standard":"Greenwichský střední čas"}},"Galapagos":{"long":{"standard":"Galapážský čas"}},"Gambier":{"long":{"standard":"Gambierský čas"}},"Georgia":{"long":{"generic":"Gruzínský čas","standard":"Gruzínský standardní čas","daylight":"Gruzínský letní čas"}},"Gilbert_Islands":{"long":{"standard":"Čas Gilbertových ostrovů"}},"Greenland_Eastern":{"long":{"generic":"Východogrónský čas","standard":"Východogrónský standardní čas","daylight":"Východogrónský letní čas"}},"Greenland_Western":{"long":{"generic":"Západogrónský čas","standard":"Západogrónský standardní čas","daylight":"Západogrónský letní čas"}},"Guam":{"long":{"standard":"Guamský čas"}},"Gulf":{"long":{"standard":"Standardní čas Perského zálivu"}},"Guyana":{"long":{"standard":"Guyanský čas"}},"Hawaii_Aleutian":{"long":{"generic":"Havajsko-aleutský čas","standard":"Havajsko-aleutský standardní čas","daylight":"Havajsko-aleutský letní čas"}},"Hong_Kong":{"long":{"generic":"Hongkongský čas","standard":"Hongkongský standardní čas","daylight":"Hongkongský letní čas"}},"Hovd":{"long":{"generic":"Hovdský čas","standard":"Hovdský standardní čas","daylight":"Hovdský letní čas"}},"India":{"long":{"standard":"Indický čas"}},"Indian_Ocean":{"long":{"standard":"Indickooceánský čas"}},"Indochina":{"long":{"standard":"Indočínský čas"}},"Indonesia_Central":{"long":{"standard":"Středoindonéský čas"}},"Indonesia_Eastern":{"long":{"standard":"Východoindonéský čas"}},"Indonesia_Western":{"long":{"standard":"Západoindonéský čas"}},"Iran":{"long":{"generic":"Íránský čas","standard":"Íránský standardní čas","daylight":"Íránský letní čas"}},"Irkutsk":{"long":{"generic":"Irkutský čas","standard":"Irkutský standardní čas","daylight":"Irkutský letní čas"}},"Israel":{"long":{"generic":"Izraelský čas","standard":"Izraelský standardní čas","daylight":"Izraelský letní čas"}},"Japan":{"long":{"generic":"Japonský čas","standard":"Japonský standardní čas","daylight":"Japonský letní čas"}},"Kamchatka":{"long":{"generic":"Petropavlovsko-kamčatský čas","standard":"Petropavlovsko-kamčatský standardní čas","daylight":"Petropavlovsko-kamčatský letní čas"}},"Kazakhstan_Eastern":{"long":{"standard":"Východokazachstánský čas"}},"Kazakhstan_Western":{"long":{"standard":"Západokazachstánský čas"}},"Korea":{"long":{"generic":"Korejský čas","standard":"Korejský standardní čas","daylight":"Korejský letní čas"}},"Kosrae":{"long":{"standard":"Kosrajský čas"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarský čas","standard":"Krasnojarský standardní čas","daylight":"Krasnojarský letní čas"}},"Kyrgystan":{"long":{"standard":"Kyrgyzský čas"}},"Lanka":{"long":{"standard":"Srílanský čas"}},"Line_Islands":{"long":{"standard":"Čas Rovníkových ostrovů"}},"Lord_Howe":{"long":{"generic":"Čas ostrova lorda Howa","standard":"Standardní čas ostrova lorda Howa","daylight":"Letní čas ostrova lorda Howa"}},"Macau":{"long":{"generic":"Macajský čas","standard":"Macajský standardní čas","daylight":"Macajský letní čas"}},"Macquarie":{"long":{"standard":"Čas ostrova Macquarie"}},"Magadan":{"long":{"generic":"Magadanský čas","standard":"Magadanský standardní čas","daylight":"Magadanský letní čas"}},"Malaysia":{"long":{"standard":"Malajský čas"}},"Maldives":{"long":{"standard":"Maledivský čas"}},"Marquesas":{"long":{"standard":"Markézský čas"}},"Marshall_Islands":{"long":{"standard":"Čas Marshallových ostrovů"}},"Mauritius":{"long":{"generic":"Mauricijský čas","standard":"Mauricijský standardní čas","daylight":"Mauricijský letní čas"}},"Mawson":{"long":{"standard":"Čas Mawsonovy stanice"}},"Mexico_Northwest":{"long":{"generic":"Severozápadní mexický čas","standard":"Severozápadní mexický standardní čas","daylight":"Severozápadní mexický letní čas"}},"Mexico_Pacific":{"long":{"generic":"Mexický pacifický čas","standard":"Mexický pacifický standardní čas","daylight":"Mexický pacifický letní čas"}},"Mongolia":{"long":{"generic":"Ulánbátarský čas","standard":"Ulánbátarský standardní čas","daylight":"Ulánbátarský letní čas"}},"Moscow":{"long":{"generic":"Moskevský čas","standard":"Moskevský standardní čas","daylight":"Moskevský letní čas"}},"Myanmar":{"long":{"standard":"Myanmarský čas"}},"Nauru":{"long":{"standard":"Naurský čas"}},"Nepal":{"long":{"standard":"Nepálský čas"}},"New_Caledonia":{"long":{"generic":"Novokaledonský čas","standard":"Novokaledonský standardní čas","daylight":"Novokaledonský letní čas"}},"New_Zealand":{"long":{"generic":"Novozélandský čas","standard":"Novozélandský standardní čas","daylight":"Novozélandský letní čas"}},"Newfoundland":{"long":{"generic":"Newfoundlandský čas","standard":"Newfoundlandský standardní čas","daylight":"Newfoundlandský letní čas"}},"Niue":{"long":{"standard":"Niuejský čas"}},"Norfolk":{"long":{"standard":"Norfolský čas"}},"Noronha":{"long":{"generic":"Čas souostroví Fernando de Noronha","standard":"Standardní čas souostroví Fernando de Noronha","daylight":"Letní čas souostroví Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Severomariánský čas"}},"Novosibirsk":{"long":{"generic":"Novosibirský čas","standard":"Novosibirský standardní čas","daylight":"Novosibirský letní čas"}},"Omsk":{"long":{"generic":"Omský čas","standard":"Omský standardní čas","daylight":"Omský letní čas"}},"Pakistan":{"long":{"generic":"Pákistánský čas","standard":"Pákistánský standardní čas","daylight":"Pákistánský letní čas"}},"Palau":{"long":{"standard":"Palauský čas"}},"Papua_New_Guinea":{"long":{"standard":"Čas Papuy-Nové Guiney"}},"Paraguay":{"long":{"generic":"Paraguayský čas","standard":"Paraguayský standardní čas","daylight":"Paraguayský letní čas"}},"Peru":{"long":{"generic":"Peruánský čas","standard":"Peruánský standardní čas","daylight":"Peruánský letní čas"}},"Philippines":{"long":{"generic":"Filipínský čas","standard":"Filipínský standardní čas","daylight":"Filipínský letní čas"}},"Phoenix_Islands":{"long":{"standard":"Čas Fénixových ostrovů"}},"Pierre_Miquelon":{"long":{"generic":"Pierre-miquelonský čas","standard":"Pierre-miquelonský standardní čas","daylight":"Pierre-miquelonský letní čas"}},"Pitcairn":{"long":{"standard":"Čas Pitcairnova ostrova"}},"Ponape":{"long":{"standard":"Ponapský čas"}},"Qyzylorda":{"long":{"generic":"Kyzylordský čas","standard":"Kyzylordský standardní čas","daylight":"Kyzylordský letní čas"}},"Reunion":{"long":{"standard":"Réunionský čas"}},"Rothera":{"long":{"standard":"Čas Rotherovy stanice"}},"Sakhalin":{"long":{"generic":"Sachalinský čas","standard":"Sachalinský standardní čas","daylight":"Sachalinský letní čas"}},"Samara":{"long":{"generic":"Samarský čas","standard":"Samarský standardní čas","daylight":"Samarský letní čas"}},"Samoa":{"long":{"generic":"Samojský čas","standard":"Samojský standardní čas","daylight":"Samojský letní čas"}},"Seychelles":{"long":{"standard":"Seychelský čas"}},"Singapore":{"long":{"standard":"Singapurský čas"}},"Solomon":{"long":{"standard":"Čas Šalamounových ostrovů"}},"South_Georgia":{"long":{"standard":"Čas Jižní Georgie"}},"Suriname":{"long":{"standard":"Surinamský čas"}},"Syowa":{"long":{"standard":"Čas stanice Šówa"}},"Tahiti":{"long":{"standard":"Tahitský čas"}},"Taipei":{"long":{"generic":"Tchajpejský čas","standard":"Tchajpejský standardní čas","daylight":"Tchajpejský letní čas"}},"Tajikistan":{"long":{"standard":"Tádžický čas"}},"Tokelau":{"long":{"standard":"Tokelauský čas"}},"Tonga":{"long":{"generic":"Tonžský čas","standard":"Tonžský standardní čas","daylight":"Tonžský letní čas"}},"Truk":{"long":{"standard":"Chuukský čas"}},"Turkmenistan":{"long":{"generic":"Turkmenský čas","standard":"Turkmenský standardní čas","daylight":"Turkmenský letní čas"}},"Tuvalu":{"long":{"standard":"Tuvalský čas"}},"Uruguay":{"long":{"generic":"Uruguayský čas","standard":"Uruguayský standardní čas","daylight":"Uruguayský letní čas"}},"Uzbekistan":{"long":{"generic":"Uzbecký čas","standard":"Uzbecký standardní čas","daylight":"Uzbecký letní čas"}},"Vanuatu":{"long":{"generic":"Vanuatský čas","standard":"Vanuatský standardní čas","daylight":"Vanuatský letní čas"}},"Venezuela":{"long":{"standard":"Venezuelský čas"}},"Vladivostok":{"long":{"generic":"Vladivostocký čas","standard":"Vladivostocký standardní čas","daylight":"Vladivostocký letní čas"}},"Volgograd":{"long":{"generic":"Volgogradský čas","standard":"Volgogradský standardní čas","daylight":"Volgogradský letní čas"}},"Vostok":{"long":{"standard":"Čas stanice Vostok"}},"Wake":{"long":{"standard":"Čas ostrova Wake"}},"Wallis":{"long":{"standard":"Čas ostrovů Wallis a Futuna"}},"Yakutsk":{"long":{"generic":"Jakutský čas","standard":"Jakutský standardní čas","daylight":"Jakutský letní čas"}},"Yekaterinburg":{"long":{"generic":"Jekatěrinburský čas","standard":"Jekatěrinburský standardní čas","daylight":"Jekatěrinburský letní čas"}}}} \ No newline at end of file diff --git a/Punic/data/cs/units.json b/Punic/data/cs/units.json new file mode 100644 index 0000000..43faffc --- /dev/null +++ b/Punic/data/cs/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"gravitační síla","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metr za sekundu na druhou","one":"%1$s metr za sekundu na druhou","few":"%1$s metry za sekundu na druhou","many":"%1$s metru za sekundu na druhou","other":"%1$s metrů za sekundu na druhou"}},"angle":{"arc-minute":{"_name":"minuty","one":"%1$s minuta","few":"%1$s minuty","many":"%1$s minuty","other":"%1$s minut"},"arc-second":{"_name":"vteřiny","one":"%1$s vteřina","few":"%1$s vteřiny","many":"%1$s vteřiny","other":"%1$s vteřin"},"degree":{"_name":"stupně","one":"%1$s stupeň","few":"%1$s stupně","many":"%1$s stupně","other":"%1$s stupňů"},"radian":{"_name":"radiány","one":"%1$s radián","few":"%1$s radiány","many":"%1$s radiánu","other":"%1$s radiánů"}},"area":{"acre":{"_name":"akry","one":"%1$s akr","few":"%1$s akry","many":"%1$s akru","other":"%1$s akrů"},"hectare":{"_name":"hektary","one":"%1$s hektar","few":"%1$s hektary","many":"%1$s hektaru","other":"%1$s hektarů"},"square-centimeter":{"_name":"centimetry čtvereční","one":"%1$s centimetr čtvereční","few":"%1$s centimetry čtvereční","many":"%1$s centimetru čtverečního","other":"%1$s centimetrů čtverečních"},"square-foot":{"_name":"stopy čtvereční","one":"%1$s stopa čtvereční","few":"%1$s stopy čtvereční","many":"%1$s stopy čtvereční","other":"%1$s stop čtverečních"},"square-inch":{"_name":"palce čtvereční","one":"%1$s palec čtvereční","few":"%1$s palce čtvereční","many":"%1$s palce čtverečního","other":"%1$s palců čtverečních"},"square-kilometer":{"_name":"kilometry čtvereční","one":"%1$s kilometr čtvereční","few":"%1$s kilometry čtvereční","many":"%1$s kilometru čtverečního","other":"%1$s kilometrů čtverečních"},"square-meter":{"_name":"metry čtvereční","one":"%1$s metr čtvereční","few":"%1$s metry čtvereční","many":"%1$s metru čtverečního","other":"%1$s metrů čtverečních"},"square-mile":{"_name":"míle čtvereční","one":"%1$s míle čtvereční","few":"%1$s míle čtvereční","many":"%1$s míle čtvereční","other":"%1$s mil čtverečních"},"square-yard":{"_name":"yardy čtvereční","one":"%1$s yard čtvereční","few":"%1$s yardy čtvereční","many":"%1$s yardu čtverečního","other":"%1$s yardů čtverečních"}},"consumption":{"liter-per-kilometer":{"_name":"litry na kilometr","one":"%1$s litr na kilometr","few":"%1$s litry na kilometr","many":"%1$s litru na kilometr","other":"%1$s litrů na kilometr"},"mile-per-gallon":{"_name":"míle na galon","one":"%1$s míle na galon","few":"%1$s míle na galon","many":"%1$s míle na galon","other":"%1$s mil na galon"}},"digital":{"bit":{"_name":"bity","one":"%1$s bit","few":"%1$s bity","many":"%1$s bitu","other":"%1$s bitů"},"byte":{"_name":"bajty","one":"%1$s bajt","few":"%1$s bajty","many":"%1$s bajtu","other":"%1$s bajtů"},"gigabit":{"_name":"gigabity","one":"%1$s gigabit","few":"%1$s gigabity","many":"%1$s gigabitu","other":"%1$s gigabitů"},"gigabyte":{"_name":"gigabajty","one":"%1$s gigabajt","few":"%1$s gigabajty","many":"%1$s gigabajtu","other":"%1$s gigabajtů"},"kilobit":{"_name":"kilobity","one":"%1$s kilobit","few":"%1$s kilobity","many":"%1$s kilobitu","other":"%1$s kilobitů"},"kilobyte":{"_name":"kilobajty","one":"%1$s kilobajt","few":"%1$s kilobajty","many":"%1$s kilobajtu","other":"%1$s kilobajtů"},"megabit":{"_name":"megabity","one":"%1$s megabit","few":"%1$s megabity","many":"%1$s megabitu","other":"%1$s megabitů"},"megabyte":{"_name":"megabajty","one":"%1$s megabajt","few":"%1$s megabajty","many":"%1$s megabajtu","other":"%1$s megabajtů"},"terabit":{"_name":"terabity","one":"%1$s terabit","few":"%1$s terabity","many":"%1$s terabitu","other":"%1$s terabitů"},"terabyte":{"_name":"terabajty","one":"%1$s terabajt","few":"%1$s terabajty","many":"%1$s terabajtu","other":"%1$s terabajtů"}},"duration":{"day":{"_name":"dny","one":"%1$s den","few":"%1$s dny","many":"%1$s dne","other":"%1$s dní"},"hour":{"_name":"hodiny","one":"%1$s hodina","few":"%1$s hodiny","many":"%1$s hodiny","other":"%1$s hodin","_per":"za hodinu"},"microsecond":{"_name":"mikrosekundy","one":"%1$s mikrosekunda","few":"%1$s mikrosekundy","many":"%1$s mikrosekundy","other":"%1$s mikrosekund"},"millisecond":{"_name":"milisekundy","one":"%1$s milisekunda","few":"%1$s milisekundy","many":"%1$s milisekundy","other":"%1$s milisekund"},"minute":{"_name":"minuty","one":"%1$s minuta","few":"%1$s minuty","many":"%1$s minuty","other":"%1$s minut"},"month":{"_name":"měsíce","one":"%1$s měsíc","few":"%1$s měsíce","many":"%1$s měsíce","other":"%1$s měsíců"},"nanosecond":{"_name":"nanosekundy","one":"%1$s nanosekunda","few":"%1$s nanosekundy","many":"%1$s nanosekundy","other":"%1$s nanosekund"},"second":{"_name":"sekundy","one":"%1$s sekunda","few":"%1$s sekundy","many":"%1$s sekundy","other":"%1$s sekund","_per":"za sekundu"},"week":{"_name":"týdny","one":"%1$s týden","few":"%1$s týdny","many":"%1$s týdne","other":"%1$s týdnů"},"year":{"_name":"roky","one":"%1$s rok","few":"%1$s roky","many":"%1$s roku","other":"%1$s let"}},"electric":{"ampere":{"_name":"ampéry","one":"%1$s ampér","few":"%1$s ampéry","many":"%1$s ampéru","other":"%1$s ampérů"},"milliampere":{"_name":"miliampéry","one":"%1$s miliampér","few":"%1$s miliampéry","many":"%1$s miliampéru","other":"%1$s miliampérů"},"ohm":{"_name":"ohmy","one":"%1$s ohm","few":"%1$s ohmy","many":"%1$s ohmu","other":"%1$s ohmů"},"volt":{"_name":"volty","one":"%1$s volt","few":"%1$s volty","many":"%1$s voltu","other":"%1$s voltů"}},"energy":{"calorie":{"_name":"kalorie","one":"%1$s kalorie","few":"%1$s kalorie","many":"%1$s kalorie","other":"%1$s kalorií"},"foodcalorie":{"_name":"kilokalorie","one":"%1$s kilokalorie","few":"%1$s kilokalorie","many":"%1$s kilokalorie","other":"%1$s kilokalorií"},"joule":{"_name":"jouly","one":"%1$s joule","few":"%1$s jouly","many":"%1$s joulu","other":"%1$s joulů"},"kilocalorie":{"_name":"kilokalorie","one":"%1$s kilokalorie","few":"%1$s kilokalorie","many":"%1$s kilokalorie","other":"%1$s kilokalorií"},"kilojoule":{"_name":"kilojouly","one":"%1$s kilojoule","few":"%1$s kilojouly","many":"%1$s kilojoulu","other":"%1$s kilojoulů"},"kilowatt-hour":{"_name":"kilowatthodiny","one":"%1$s kilowatthodina","few":"%1$s kilowatthodiny","many":"%1$s kilowatthodiny","other":"%1$s kilowatthodin"}},"frequency":{"gigahertz":{"_name":"gigahertzy","one":"%1$s gigahertz","few":"%1$s gigahertzy","many":"%1$s gigahertzu","other":"%1$s gigahertzů"},"hertz":{"_name":"hertzy","one":"%1$s hertz","few":"%1$s hertzy","many":"%1$s hertzu","other":"%1$s hertzů"},"kilohertz":{"_name":"kilohertzy","one":"%1$s kilohertz","few":"%1$s kilohertzy","many":"%1$s kilohertzu","other":"%1$s kilohertzů"},"megahertz":{"_name":"megahertzy","one":"%1$s megahertz","few":"%1$s megahertzy","many":"%1$s megahertzu","other":"%1$s megahertzů"}},"length":{"astronomical-unit":{"_name":"astronomické jednotky","one":"%1$s astronomická jednotka","few":"%1$s astronomické jednotky","many":"%1$s astronomické jednotky","other":"%1$s astronomických jednotek"},"centimeter":{"_name":"centimetry","one":"%1$s centimetr","few":"%1$s centimetry","many":"%1$s centimetru","other":"%1$s centimetrů"},"decimeter":{"_name":"decimetry","one":"%1$s decimetr","few":"%1$s decimetry","many":"%1$s decimetru","other":"%1$s decimetrů"},"fathom":{"_name":"fathomy","one":"%1$s fathom","few":"%1$s fathomy","many":"%1$s fathomu","other":"%1$s fathomů"},"foot":{"_name":"stopy","one":"%1$s stopa","few":"%1$s stopy","many":"%1$s stopy","other":"%1$s stop"},"furlong":{"_name":"furlongy","one":"%1$s furlong","few":"%1$s furlongy","many":"%1$s furlongu","other":"%1$s furlongů"},"inch":{"_name":"palce","one":"%1$s palec","few":"%1$s palce","many":"%1$s palce","other":"%1$s palců"},"kilometer":{"_name":"kilometry","one":"%1$s kilometr","few":"%1$s kilometry","many":"%1$s kilometru","other":"%1$s kilometrů"},"light-year":{"_name":"světelné roky","one":"%1$s světelný rok","few":"%1$s světelné roky","many":"%1$s světelného roku","other":"%1$s světelných let"},"meter":{"_name":"metry","one":"%1$s metr","few":"%1$s metry","many":"%1$s metru","other":"%1$s metrů"},"micrometer":{"_name":"mikrometry","one":"%1$s mikrometr","few":"%1$s mikrometry","many":"%1$s mikrometru","other":"%1$s mikrometrů"},"mile":{"_name":"míle","one":"%1$s míle","few":"%1$s míle","many":"%1$s míle","other":"%1$s mil"},"millimeter":{"_name":"milimetry","one":"%1$s milimetr","few":"%1$s milimetry","many":"%1$s milimetru","other":"%1$s milimetrů"},"nanometer":{"_name":"nanometry","one":"%1$s nanometr","few":"%1$s nanometry","many":"%1$s nanometru","other":"%1$s nanometrů"},"nautical-mile":{"_name":"námořní míle","one":"%1$s námořní míle","few":"%1$s námořní míle","many":"%1$s námořní míle","other":"%1$s námořních mil"},"parsec":{"_name":"parseky","one":"%1$s parsek","few":"%1$s parseky","many":"%1$s parseku","other":"%1$s parseků"},"picometer":{"_name":"pikometry","one":"%1$s pikometr","few":"%1$s pikometry","many":"%1$s pikometru","other":"%1$s pikometrů"},"yard":{"_name":"yardy","one":"%1$s yard","few":"%1$s yardy","many":"%1$s yardu","other":"%1$s yardů"}},"light":{"lux":{"_name":"luxy","one":"%1$s lux","few":"%1$s luxy","many":"%1$s luxu","other":"%1$s luxů"}},"mass":{"carat":{"_name":"karáty","one":"%1$s karát","few":"%1$s karáty","many":"%1$s karátu","other":"%1$s karátů"},"gram":{"_name":"gramy","one":"%1$s gram","few":"%1$s gramy","many":"%1$s gramu","other":"%1$s gramů"},"kilogram":{"_name":"kilogramy","one":"%1$s kilogram","few":"%1$s kilogramy","many":"%1$s kilogramu","other":"%1$s kilogramů"},"metric-ton":{"_name":"metrické tuny","one":"%1$s metrická tuna","few":"%1$s metrické tuny","many":"%1$s metrické tuny","other":"%1$s metrických tun"},"microgram":{"_name":"mikrogramy","one":"%1$s mikrogram","few":"%1$s mikrogramy","many":"%1$s mikrogramu","other":"%1$s mikrogramů"},"milligram":{"_name":"miligramy","one":"%1$s miligram","few":"%1$s miligramy","many":"%1$s miligramu","other":"%1$s miligramů"},"ounce":{"_name":"unce","one":"%1$s unce","few":"%1$s unce","many":"%1$s unce","other":"%1$s uncí"},"ounce-troy":{"_name":"trojské unce","one":"%1$s trojská unce","few":"%1$s trojské unce","many":"%1$s trojské unce","other":"%1$s trojských uncí"},"pound":{"_name":"libra","one":"%1$s libra","few":"%1$s libry","many":"%1$s libry","other":"%1$s liber"},"stone":{"_name":"kameny","one":"%1$s kámen","few":"%1$s kameny","many":"%1$s kamene","other":"%1$s kamenů"},"ton":{"_name":"tuny","one":"%1$s tuna","few":"%1$s tuny","many":"%1$s tuny","other":"%1$s tun"}},"power":{"gigawatt":{"_name":"gigawatty","one":"%1$s gigawatt","few":"%1$s gigawatty","many":"%1$s gigawattu","other":"%1$s gigawattů"},"horsepower":{"_name":"koňská síla","one":"%1$s koňská síla","few":"%1$s koňské síly","many":"%1$s koňské síly","other":"%1$s koňských sil"},"kilowatt":{"_name":"kilowatty","one":"%1$s kilowatt","few":"%1$s kilowatty","many":"%1$s kilowattu","other":"%1$s kilowattů"},"megawatt":{"_name":"megawatty","one":"%1$s megawatt","few":"%1$s megawatty","many":"%1$s megawattu","other":"%1$s megawattů"},"milliwatt":{"_name":"miliwatty","one":"%1$s miliwatt","few":"%1$s miliwatty","many":"%1$s miliwattu","other":"%1$s miliwattů"},"watt":{"_name":"watty","one":"%1$s watt","few":"%1$s watty","many":"%1$s wattu","other":"%1$s wattů"}},"pressure":{"hectopascal":{"_name":"hektopascaly","one":"%1$s hektopascal","few":"%1$s hektopascaly","many":"%1$s hektopascalu","other":"%1$s hektopascalů"},"inch-hg":{"_name":"palce rtuti","one":"%1$s palec rtuti","few":"%1$s palce rtuti","many":"%1$s palce rtuti","other":"%1$s palců rtuti"},"millibar":{"_name":"milibary","one":"%1$s milibar","few":"%1$s milibary","many":"%1$s milibaru","other":"%1$s milibarů"},"millimeter-of-mercury":{"_name":"milimetry rtuti","one":"%1$s milimetr rtuti","few":"%1$s milimetry rtuti","many":"%1$s milimetru rtuti","other":"%1$s milimetrů rtuti"},"pound-per-square-inch":{"_name":"libry na čtvereční palec","one":"%1$s libra na čtvereční palec","few":"%1$s libry na čtvereční palec","many":"%1$s libry na čtvereční palec","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karáty","one":"%1$s karát","few":"%1$s karáty","many":"%1$s karátu","other":"%1$s karátů"}},"speed":{"kilometer-per-hour":{"_name":"kilometry za hodinu","one":"%1$s kilometr za hodinu","few":"%1$s kilometry za hodinu","many":"%1$s kilometru za hodinu","other":"%1$s kilometrů za hodinu"},"meter-per-second":{"_name":"metry za sekundu","one":"%1$s metr za sekundu","few":"%1$s metry za sekundu","many":"%1$s metru za sekundu","other":"%1$s metrů za sekundu"},"mile-per-hour":{"_name":"míle za hodinu","one":"%1$s míle za hodinu","few":"%1$s míle za hodinu","many":"%1$s míle za hodinu","other":"%1$s mil za hodinu"}},"temperature":{"celsius":{"_name":"stupně Celsia","one":"%1$s stupeň Celsia","few":"%1$s stupně Celsia","many":"%1$s stupně Celsia","other":"%1$s stupňů Celsia"},"fahrenheit":{"_name":"stupně Fahrenheita","one":"%1$s stupeň Fahrenheita","few":"%1$s stupně Fahrenheita","many":"%1$s stupně Fahrenheita","other":"%1$s stupňů Fahrenheita"},"kelvin":{"_name":"kelviny","one":"%1$s kelvin","few":"%1$s kelviny","many":"%1$s kelvinu","other":"%1$s kelvinů"}},"volume":{"acre-foot":{"_name":"akro-stopy","one":"%1$s akro-stopa","few":"%1$s akro-stopy","many":"%1$s akro-stopy","other":"%1$s akro-stop"},"bushel":{"_name":"bušly","one":"%1$s bušl","few":"%1$s bušly","many":"%1$s bušlu","other":"%1$s bušlů"},"centiliter":{"_name":"centilitry","one":"%1$s centilitr","few":"%1$s centilitry","many":"%1$s centilitru","other":"%1$s centilitrů"},"cubic-centimeter":{"_name":"centimetry krychlové","one":"%1$s centimetr krychlový","few":"%1$s centimetry krychlové","many":"%1$s centimetru krychlového","other":"%1$s centimetrů krychlových"},"cubic-foot":{"_name":"stopy krychlové","one":"%1$s stopa krychlová","few":"%1$s stopy krychlové","many":"%1$s stopy krychlové","other":"%1$s stop krychlových"},"cubic-inch":{"_name":"palce krychlové","one":"%1$s palec krychlový","few":"%1$s palce krychlové","many":"%1$s palce krychlového","other":"%1$s palců krychlových"},"cubic-kilometer":{"_name":"kilometry krychlové","one":"%1$s kilometr krychlový","few":"%1$s kilometry krychlové","many":"%1$s kilometru krychlového","other":"%1$s kilometrů krychlových"},"cubic-meter":{"_name":"metry krychlové","one":"%1$s metr krychlový","few":"%1$s metry krychlové","many":"%1$s metru krychlového","other":"%1$s metrů krychlových"},"cubic-mile":{"_name":"míle krychlové","one":"%1$s míle krychlová","few":"%1$s míle krychlové","many":"%1$s míle krychlové","other":"%1$s mil krychlových"},"cubic-yard":{"_name":"yardy krychlové","one":"%1$s yard krychlový","few":"%1$s yardy krychlové","many":"%1$s yardu krychlového","other":"%1$s yardů krychlových"},"cup":{"_name":"šálek","one":"%1$s šálek","few":"%1$s šálky","many":"%1$s šálku","other":"%1$s šálků"},"deciliter":{"_name":"decilitry","one":"%1$s decilitr","few":"%1$s decilitry","many":"%1$s decilitru","other":"%1$s decilitrů"},"fluid-ounce":{"_name":"kapalinové unce","one":"%1$s kapalinová unce","few":"%1$s kapalinové unce","many":"%1$s kapalinové unce","other":"%1$s kapalinových uncí"},"gallon":{"_name":"galon","one":"%1$s galon","few":"%1$s galony","many":"%1$s galonu","other":"%1$s galonů"},"hectoliter":{"_name":"hektolitr","one":"%1$s hektolitr","few":"%1$s hektolitry","many":"%1$s hektolitru","other":"%1$s hektolitrů"},"liter":{"_name":"litry","one":"%1$s litr","few":"%1$s litry","many":"%1$s litru","other":"%1$s litrů"},"megaliter":{"_name":"megalitry","one":"%1$s megalitr","few":"%1$s megalitry","many":"%1$s megalitru","other":"%1$s megalitrů"},"milliliter":{"_name":"mililitry","one":"%1$s mililitr","few":"%1$s mililitry","many":"%1$s mililitru","other":"%1$s mililitrů"},"pint":{"_name":"pinty","one":"%1$s pinta","few":"%1$s pinty","many":"%1$s pinty","other":"%1$s pint"},"quart":{"_name":"kvarty","one":"%1$s kvart","few":"%1$s kvarty","many":"%1$s kvartu","other":"%1$s kvartů"},"tablespoon":{"_name":"lžíce","one":"%1$s lžíce","few":"%1$s lžíce","many":"%1$s lžíce","other":"%1$s lžic"},"teaspoon":{"_name":"lžička","one":"%1$s lžička","few":"%1$s lžičky","many":"%1$s lžičky","other":"%1$s lžiček"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","few":"%1$s ac","many":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","many":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","many":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","many":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","few":"%1$s bity","many":"%1$s bitu","other":"%1$s bitů"},"byte":{"_name":"bajt","one":"%1$s bajt","few":"%1$s bajty","many":"%1$s bajtu","other":"%1$s bajtů"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dny","one":"%1$s den","few":"%1$s dny","many":"%1$s dne","other":"%1$s dní"},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","many":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"month":{"_name":"měs.","one":"%1$s měs.","few":"%1$s měs.","many":"%1$s měs.","other":"%1$s měs."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"týd.","one":"%1$s týd.","few":"%1$s týd.","many":"%1$s týd.","other":"%1$s týd."},"year":{"_name":"roky","one":"%1$s rok","few":"%1$s roky","many":"%1$s roku","other":"%1$s let"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","many":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","one":"%1$s fm","few":"%1$s fm","many":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","many":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","one":"%1$s fur","few":"%1$s fur","many":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","few":"%1$s in","many":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ly","one":"%1$s ly","few":"%1$s ly","many":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","many":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","many":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","many":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","few":"%1$s CD","many":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"mt","one":"%1$s mt","few":"%1$s mt","many":"%1$s mt","other":"%1$s mt"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","few":"%1$s st","many":"%1$s st","other":"%1$s st"},"ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","few":"%1$s hp","many":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mb","one":"%1$s mb","few":"%1$s mb","many":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","many":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","many":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","few":"%1$s °F","many":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","one":"%1$s bu","few":"%1$s bu","many":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","many":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","many":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","many":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","few":"%1$s ac","many":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","many":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","many":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","many":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","few":"%1$s bity","many":"%1$s bitu","other":"%1$s bitů"},"byte":{"_name":"bajt","one":"%1$s bajt","few":"%1$s bajty","many":"%1$s bajtu","other":"%1$s bajtů"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d","one":"%1$s d","few":"%1$s d","many":"%1$s d","other":"%1$s d"},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","many":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"month":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"},"year":{"_name":"r","one":"%1$s r","few":"%1$s r","many":"%1$s r","other":"%1$s r"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","many":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","one":"%1$s fm","few":"%1$s fm","many":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","one":"%1$s fur","few":"%1$s fur","many":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ly","one":"%1$s ly","few":"%1$s ly","many":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","many":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","many":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","many":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","few":"%1$s CD","many":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"mt","one":"%1$s mt","few":"%1$s mt","many":"%1$s mt","other":"%1$s mt"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","few":"%1$s st","many":"%1$s st","other":"%1$s st"},"ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","few":"%1$s hp","many":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mb","one":"%1$s mb","few":"%1$s mb","many":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","many":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","many":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","few":"%1$s °F","many":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","one":"%1$s bu","few":"%1$s bu","many":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","many":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","many":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","many":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/da/calendar.json b/Punic/data/da/calendar.json new file mode 100644 index 0000000..b26fec2 --- /dev/null +++ b/Punic/data/da/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"feb.","3":"mar.","4":"apr.","5":"maj","6":"jun.","7":"jul.","8":"aug.","9":"sep.","10":"okt.","11":"nov.","12":"dec."},"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":"marts","4":"april","5":"maj","6":"juni","7":"juli","8":"august","9":"september","10":"oktober","11":"november","12":"december"}},"stand-alone":{"abbreviated":{"1":"jan","2":"feb","3":"mar","4":"apr","5":"maj","6":"jun","7":"jul","8":"aug","9":"sep","10":"okt","11":"nov","12":"dec"},"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":"marts","4":"april","5":"maj","6":"juni","7":"juli","8":"august","9":"september","10":"oktober","11":"november","12":"december"}}},"days":{"format":{"abbreviated":{"sun":"søn.","mon":"man.","tue":"tir.","wed":"ons.","thu":"tor.","fri":"fre.","sat":"lør."},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"sø","mon":"ma","tue":"ti","wed":"on","thu":"to","fri":"fr","sat":"lø"},"wide":{"sun":"søndag","mon":"mandag","tue":"tirsdag","wed":"onsdag","thu":"torsdag","fri":"fredag","sat":"lørdag"}},"stand-alone":{"abbreviated":{"sun":"søn","mon":"man","tue":"tir","wed":"ons","thu":"tor","fri":"fre","sat":"lør"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"sø","mon":"ma","tue":"ti","wed":"on","thu":"to","fri":"fr","sat":"lø"},"wide":{"sun":"søndag","mon":"mandag","tue":"tirsdag","wed":"onsdag","thu":"torsdag","fri":"fredag","sat":"lørdag"}}},"quarters":{"format":{"abbreviated":{"1":"1. kvt.","2":"2. kvt.","3":"3. kvt.","4":"4. kvt."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}},"stand-alone":{"abbreviated":{"1":"1. kvt.","2":"2. kvt.","3":"3. kvt.","4":"4. kvt."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","noon":"middag","pm":"PM"},"narrow":{"am":"a","noon":"middag","pm":"p"},"wide":{"am":"AM","noon":"middag","pm":"PM"}},"stand-alone":{"abbreviated":{"am":"AM","noon":"middag","pm":"PM"},"narrow":{"am":"a","noon":"middag","pm":"p"},"wide":{"am":"formiddag","noon":"middag","pm":"eftermiddag"}}},"eras":{"wide":{"0":"f.Kr.","0-alt-variant":"før vesterlandsk tidsregning","1":"e.Kr.","1-alt-variant":"vesterlandsk tidsregning"},"abbreviated":{"0":"f.Kr.","0-alt-variant":"f.v.t.","1":"e.Kr.","1-alt-variant":"v.t."},"narrow":{"0":"fKr","0-alt-variant":"fvt","1":"eKr","1-alt-variant":"vt"}},"dateFormats":{"full":"EEEE 'den' 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":"%2$s 'kl.' %1$s","long":"%2$s 'kl.' %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/da/dateFields.json b/Punic/data/da/dateFields.json new file mode 100644 index 0000000..8f8facc --- /dev/null +++ b/Punic/data/da/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Æra"},"year":{"displayName":"År","relative-type--1":"sidste år","relative-type-0":"i år","relative-type-1":"næste år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} år siden","relativeTimePattern-count-other":"for {0} år siden"}},"year-short":{"displayName":"år","relative-type--1":"sidste år","relative-type-0":"i år","relative-type-1":"næste år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} år siden","relativeTimePattern-count-other":"for {0} år siden"}},"year-narrow":{"displayName":"år","relative-type--1":"sidste år","relative-type-0":"i år","relative-type-1":"næste år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} år siden","relativeTimePattern-count-other":"for {0} år siden"}},"quarter":{"displayName":"Kvartal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kvartal","relativeTimePattern-count-other":"om {0} kvartaler"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} kvartal siden","relativeTimePattern-count-other":"for {0} kvartaler siden"}},"quarter-short":{"displayName":"kvt.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kvt.","relativeTimePattern-count-other":"om {0} kvt."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} kvt. siden","relativeTimePattern-count-other":"for {0} kvt. siden"}},"quarter-narrow":{"displayName":"kvt.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kvt.","relativeTimePattern-count-other":"om {0} kvt."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} kvt. siden","relativeTimePattern-count-other":"for {0} kvt. siden"}},"month":{"displayName":"Måned","relative-type--1":"sidste måned","relative-type-0":"denne måned","relative-type-1":"næste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} måned","relativeTimePattern-count-other":"om {0} måneder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} måned siden","relativeTimePattern-count-other":"for {0} måneder siden"}},"month-short":{"displayName":"md.","relative-type--1":"sidste måned","relative-type-0":"denne måned","relative-type-1":"næste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} md.","relativeTimePattern-count-other":"om {0} md."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} md. siden","relativeTimePattern-count-other":"for {0} md. siden"}},"month-narrow":{"displayName":"md.","relative-type--1":"sidste måned","relative-type-0":"denne måned","relative-type-1":"næste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} md.","relativeTimePattern-count-other":"om {0} md."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} md. siden","relativeTimePattern-count-other":"for {0} md. siden"}},"week":{"displayName":"Uge","relative-type--1":"sidste uge","relative-type-0":"denne uge","relative-type-1":"næste uge","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} uge","relativeTimePattern-count-other":"om {0} uger"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} uge siden","relativeTimePattern-count-other":"for {0} uger siden"}},"week-short":{"displayName":"uge","relative-type--1":"sidste uge","relative-type-0":"denne uge","relative-type-1":"næste uge","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} uge","relativeTimePattern-count-other":"om {0} uger"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} uge siden","relativeTimePattern-count-other":"for {0} uger siden"}},"week-narrow":{"displayName":"uge","relative-type--1":"sidste uge","relative-type-0":"denne uge","relative-type-1":"næste uge","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} uge","relativeTimePattern-count-other":"om {0} uger"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} uge siden","relativeTimePattern-count-other":"for {0} uger siden"}},"day":{"displayName":"Dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} dag","relativeTimePattern-count-other":"om {0} dage"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} dag siden","relativeTimePattern-count-other":"for {0} dage siden"}},"day-short":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} dag","relativeTimePattern-count-other":"om {0} dage"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} dag siden","relativeTimePattern-count-other":"for {0} dage siden"}},"day-narrow":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} dag","relativeTimePattern-count-other":"om {0} dage"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} dag siden","relativeTimePattern-count-other":"for {0} dage siden"}},"weekday":{"displayName":"Ugedag"},"sun":{"relative-type--1":"sidste søndag","relative-type-0":"denne søndag","relative-type-1":"næste søndag"},"sun-short":{"relative-type--1":"sidste søn.","relative-type-0":"denne søn.","relative-type-1":"næste sø."},"sun-narrow":{"relative-type--1":"sidste sø.","relative-type-0":"denne sø.","relative-type-1":"næste sø."},"mon":{"relative-type--1":"sidste mandag","relative-type-0":"denne mandag","relative-type-1":"næste mandag"},"mon-short":{"relative-type--1":"sidste man.","relative-type-0":"denne man.","relative-type-1":"næste man."},"mon-narrow":{"relative-type--1":"sidste ma.","relative-type-0":"denne ma.","relative-type-1":"næste ma."},"tue":{"relative-type--1":"sidste tirsdag","relative-type-0":"denne tirsdag","relative-type-1":"næste tirsdag"},"tue-short":{"relative-type--1":"sidste tir.","relative-type-0":"denne tir.","relative-type-1":"næste tir."},"tue-narrow":{"relative-type--1":"sidste ti.","relative-type-0":"denne ti.","relative-type-1":"næste ti."},"wed":{"relative-type--1":"sidste onsdag","relative-type-0":"denne onsdag","relative-type-1":"næste onsdag"},"wed-short":{"relative-type--1":"sidste ons.","relative-type-0":"denne ons.","relative-type-1":"næste ons."},"wed-narrow":{"relative-type--1":"sidste on.","relative-type-0":"denne on.","relative-type-1":"næste on."},"thu":{"relative-type--1":"sidste torsdag","relative-type-0":"denne torsdag","relative-type-1":"næste torsdag"},"thu-short":{"relative-type--1":"sidste tor.","relative-type-0":"denne tor.","relative-type-1":"næste tor."},"thu-narrow":{"relative-type--1":"sidste to.","relative-type-0":"denne to.","relative-type-1":"næste to."},"fri":{"relative-type--1":"sidste fredag","relative-type-0":"denne fredag","relative-type-1":"næste fredag"},"fri-short":{"relative-type--1":"sidste fre.","relative-type-0":"denne fre.","relative-type-1":"næste fre."},"fri-narrow":{"relative-type--1":"sidste fr.","relative-type-0":"denne fr.","relative-type-1":"næste fr."},"sat":{"relative-type--1":"sidste lørdag","relative-type-0":"denne lørdag","relative-type-1":"næste lørdag"},"sat-short":{"relative-type--1":"sidste lør.","relative-type-0":"denne lør.","relative-type-1":"næste lør."},"sat-narrow":{"relative-type--1":"sidste lø.","relative-type-0":"denne lø.","relative-type-1":"næste lø."},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Time","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} time","relativeTimePattern-count-other":"om {0} timer"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} time siden","relativeTimePattern-count-other":"for {0} timer siden"}},"hour-short":{"displayName":"t.","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} time","relativeTimePattern-count-other":"om {0} timer"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} time siden","relativeTimePattern-count-other":"for {0} timer siden"}},"hour-narrow":{"displayName":"t","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} time","relativeTimePattern-count-other":"om {0} timer"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} time siden","relativeTimePattern-count-other":"for {0} timer siden"}},"minute":{"displayName":"Minut","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} minut","relativeTimePattern-count-other":"om {0} minutter"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} minut siden","relativeTimePattern-count-other":"for {0} minutter siden"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} min.","relativeTimePattern-count-other":"om {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} min. siden","relativeTimePattern-count-other":"for {0} min. siden"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} min.","relativeTimePattern-count-other":"om {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} min. siden","relativeTimePattern-count-other":"for {0} min. siden"}},"second":{"displayName":"Sekund","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sekund","relativeTimePattern-count-other":"om {0} sekunder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} sekund siden","relativeTimePattern-count-other":"for {0} sekunder siden"}},"second-short":{"displayName":"sek.","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sek.","relativeTimePattern-count-other":"om {0} sek."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} sek. siden","relativeTimePattern-count-other":"for {0} sek. siden"}},"second-narrow":{"displayName":"s","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sek.","relativeTimePattern-count-other":"om {0} sek."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} sek. siden","relativeTimePattern-count-other":"for {0} sek. siden"}},"zone":{"displayName":"Tidszone"}} \ No newline at end of file diff --git a/Punic/data/da/languages.json b/Punic/data/da/languages.json new file mode 100644 index 0000000..e5e0751 --- /dev/null +++ b/Punic/data/da/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abkhasisk","ace":"achinesisk","ach":"acoli","ada":"adangme","ady":"adyghe","ae":"avestan","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"akkadisk","akz":"akz","ale":"aleutisk","aln":"aln","alt":"sydaltaisk","am":"amharisk","an":"aragonesisk","ang":"oldengelsk","anp":"angika","ar":"arabisk","ar-001":"moderne standardarabisk","arc":"aramæisk","arn":"araukansk","aro":"aro","arp":"arapaho","arq":"arq","arw":"arawak","ary":"ary","arz":"arz","as":"assamesisk","asa":"asu","ase":"ase","ast":"asturisk","av":"avarisk","avk":"avk","awa":"awadhi","ay":"aymara","az":"aserbajdsjansk","az-alt-short":"azeri","azb":"azb","ba":"bashkir","bal":"baluchi","ban":"balinesisk","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"hviderussisk","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bulgarsk","bho":"bhojpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibetansk","bpy":"bpy","bqi":"bqi","br":"bretonsk","bra":"braj","brh":"brh","brx":"bodo","bs":"bosnisk","bss":"bakossi","bua":"buriatisk","bug":"buginesisk","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalansk","cad":"caddo","car":"caribisk","cay":"cayuga","cch":"atsam","ce":"tjetjensk","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukese","chm":"mari","chn":"chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheyenne","ckb":"sorani","co":"korsikansk","cop":"koptisk","cps":"cps","cr":"cree","crh":"krim tyrkisk","cs":"tjekkisk","csb":"kasjubisk","cu":"kirkeslavisk","cv":"chuvash","cy":"walisisk","da":"dansk","dak":"dakota","dar":"dargwa","dav":"taita","de":"tysk","de-AT":"østrigsk tysk","de-CH":"schweizerhøjtysk","del":"delaware","den":"athapaskisk","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"nedersorbisk","dtp":"dtp","dua":"duala","dum":"middelhollandsk","dv":"divehi","dyo":"jola-fonyi","dyu":"dyula","dz":"dzongkha","dzg":"dazaga","ebu":"kiembu","ee":"ewe","efi":"efik","egl":"egl","egy":"oldegyptisk","eka":"ekajuk","el":"græsk","elx":"elamitisk","en":"engelsk","en-AU":"australsk engelsk","en-CA":"canadisk engelsk","en-GB":"britisk engelsk","en-GB-alt-short":"engelsk (UK)","en-US":"amerikansk engelsk","en-US-alt-short":"en_US","enm":"middelengelsk","eo":"esperanto","es":"spansk","es-419":"latinamerikansk spansk","es-ES":"europæisk spansk","es-MX":"mexicansk spansk","esu":"esu","et":"estisk","eu":"baskisk","ewo":"ewondo","ext":"ext","fa":"persisk","fan":"fang","fat":"fanti","ff":"fulah","fi":"finsk","fil":"filippinsk","fit":"fit","fj":"fijiansk","fo":"færøsk","fon":"fon","fr":"fransk","fr-CA":"canadisk fransk","fr-CH":"schweizisk fransk","frc":"frc","frm":"middelfransk","fro":"oldfransk","frp":"frp","frr":"nordfrisisk","frs":"østfrisisk","fur":"friulian","fy":"frisisk","ga":"irsk","gaa":"ga","gag":"gagauzisk","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"skotsk gælisk","gez":"geez","gil":"gilbertesisk","gl":"galicisk","glk":"glk","gmh":"middelhøjtysk","gn":"guarani","goh":"oldhøjtysk","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gotisk","grb":"grebo","grc":"oldgræsk","gsw":"schweizertysk","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichin","ha":"hausa","hai":"haida","hak":"hak","haw":"hawaiiansk","he":"hebraisk","hi":"hindi","hif":"hif","hil":"hiligaynon","hit":"hittitisk","hmn":"hmong","ho":"hirimotu","hr":"kroatisk","hsb":"øvresorbisk","hsn":"hsn","ht":"haitisk","hu":"ungarsk","hup":"hupa","hy":"armensk","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesisk","ie":"interlingue","ig":"igbo","ii":"sichuan yi","ik":"inupiaq","ilo":"iloko","inh":"ingush","io":"ido","is":"islandsk","it":"italiensk","iu":"inuktitut","izh":"izh","ja":"japansk","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"jødisk-persisk","jrb":"jødisk-arabisk","jut":"jut","jv":"javanesisk","ka":"georgisk","kaa":"karakalpakisk","kab":"kabylisk","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardian","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kapverdisk","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kgp","kha":"khasi","kho":"khotanesisk","khq":"koyra-chiini","khw":"khw","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kasakhisk","kkj":"kako","kl":"grønlandsk","kln":"kalenjin","km":"khmer","kmb":"kimbundu","kn":"kannada","ko":"koreansk","koi":"komi-permjakisk","kok":"konkani","kos":"kosraean","kpe":"kpelle","kr":"kanuri","krc":"karatjai-balkar","kri":"kri","krj":"krj","krl":"karelsk","kru":"kurukh","ks":"kashmiri","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"kurdisk","kum":"kymyk","kut":"kutenaj","kv":"komi","kw":"cornisk","ky":"kirgisisk","la":"latin","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxembourgsk","lez":"lezghian","lfn":"lfn","lg":"ganda","li":"limburgsk","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"lao","lol":"mongo","loz":"lozi","lt":"litauisk","ltg":"ltg","lu":"luba-Katanga","lua":"luba-Lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyana","lv":"lettisk","lzh":"lzh","lzz":"lzz","mad":"madurese","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masai","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"morisyen","mg":"malagassisk","mga":"middelirsk","mgh":"makhuwa-meetto","mgo":"meta","mh":"marshallese","mi":"maori","mic":"micmac","min":"minangkabau","mk":"makedonsk","ml":"malayalam","mn":"mongolsk","mnc":"manchu","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathisk","mrj":"mrj","ms":"malay","mt":"maltesisk","mua":"mundang","mul":"flere sprog","mus":"creek","mwl":"mirandesisk","mwr":"marwari","mwv":"mwv","my":"burmesisk","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauru","nan":"nan","nap":"neapolitansk","naq":"nama","nb":"norsk bokmål","nd":"nordndebele","nds":"nedertysk","ne":"nepalesisk","new":"newari","ng":"ndonga","nia":"nias","niu":"niuean","njo":"njo","nl":"hollandsk","nl-BE":"flamsk","nmg":"kwasio","nn":"nynorsk","nnh":"ngiemboon","no":"norsk","nog":"nogai","non":"oldislandsk","nov":"nov","nqo":"n-ko","nr":"sydndebele","nso":"nordsotho","nus":"nuer","nv":"navajo","nwc":"klassisk newarisk","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro sprog","nzi":"nzima","oc":"occitansk","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossetisk","osa":"osage","ota":"osmannisk-tyrkisk","pa":"punjabi","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palauansk","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"oldpersisk","pfl":"pfl","phn":"fønikisk","pi":"pali","pl":"polsk","pms":"pms","pnt":"pnt","pon":"ponape","prg":"prg","pro":"oldprovencalsk","ps":"pashto","ps-alt-variant":"pushto","pt":"portugisisk","pt-BR":"brasiliansk portugisisk","pt-PT":"europæisk portugisisk","qu":"quechua","quc":"quiché","qug":"qug","raj":"rajasthani","rap":"rapanui","rar":"rarotongan","rgn":"rgn","rif":"rif","rm":"rætoromansk","rn":"rundi","ro":"rumænsk","ro-MD":"moldovisk","rof":"rombo","rom":"romani","root":"rot","rtm":"rtm","ru":"russisk","rue":"rue","rug":"rug","rup":"arumænsk","rw":"kinyarwanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"yakut","sam":"samaritansk","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardinsk","scn":"siciliansk","sco":"skotsk","sd":"sindhi","sdc":"sdc","se":"nordsamisk","see":"seneca","seh":"sena","sei":"sei","sel":"selkupisk","ses":"koyraboro senni","sg":"sango","sga":"oldirsk","sgs":"sgs","sh":"serbokroatisk","shi":"tachelhit","shn":"shan","shu":"tchadisk-arabisk","si":"singalesisk","sid":"sidamo","sk":"slovakisk","sl":"slovensk","sli":"sli","sly":"sly","sm":"samoansk","sma":"sydsamisk","smj":"lulesamisk","smn":"enaresamisk","sms":"skoltesamisk","sn":"shona","snk":"soninke","so":"somalisk","sog":"sogdiansk","sq":"albansk","sr":"serbisk","srn":"sranan tongo","srr":"serer","ss":"swati","ssy":"saho","st":"sydsotho","stq":"stq","su":"sundanesisk","suk":"sukuma","sus":"susu","sux":"sumerisk","sv":"svensk","sw":"swahili","swb":"shimaore","swc":"congolesisk swahili","syc":"klassisk syrisk","syr":"syrisk","szl":"szl","ta":"tamilsk","tcy":"tcy","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tajik","th":"thailandsk","ti":"tigrinya","tig":"tigre","tiv":"tivi","tk":"turkmensk","tkl":"tokelau","tkr":"tkr","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"tly","tmh":"tamashek","tn":"tswana","to":"tongansk","tog":"nyasa tongansk","tpi":"tok pisin","tr":"tyrkisk","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshisk","tt":"tatarisk","ttt":"ttt","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahitiansk","tyv":"tuvinian","tzm":"centralmarokkansk tamazight","udm":"udmurt","ug":"uygurisk","ug-alt-variant":"uighurisk","uga":"ugaristisk","uk":"ukrainsk","umb":"umbundu","und":"ukendt sprog","ur":"urdu","uz":"usbekisk","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamesisk","vls":"vls","vmf":"vmf","vo":"volapyk","vot":"votisk","vro":"vro","vun":"vunjo","wa":"vallonsk","wae":"walsertysk","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wuu","xal":"kalmyk","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapese","yav":"yangben","ybb":"yemba","yi":"jiddisch","yo":"yoruba","yrl":"yrl","yue":"kantonesisk","za":"zhuang","zap":"zapotec","zbl":"blissymboler","zea":"zea","zen":"zenaga","zgh":"tamazight","zh":"kinesisk","zh-Hans":"forenklet kinesisk","zh-Hant":"traditionelt kinesisk","zu":"zulu","zun":"zuni","zxx":"intet sprogligt indhold","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/da/listPatterns.json b/Punic/data/da/listPatterns.json new file mode 100644 index 0000000..95c0c97 --- /dev/null +++ b/Punic/data/da/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"}} \ No newline at end of file diff --git a/Punic/data/da/localeDisplayNames.json b/Punic/data/da/localeDisplayNames.json new file mode 100644 index 0000000..c019794 --- /dev/null +++ b/Punic/data/da/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalender","colAlternate":"Ignorer symboler under sortering","colBackwards":"Omvendt sortering efter accenter","colCaseFirst":"Sortering efter store/små bogstaver","colCaseLevel":"Sortering med forskel på små og store bogstaver","colHiraganaQuaternary":"Sortering efter kana","colNormalization":"Normaliseret sortering","colNumeric":"Numerisk sortering","colStrength":"Sorteringsstyrke","collation":"sorteringsrækkefølge","currency":"valuta","numbers":"tal","timezone":"Tidszone","va":"Sprogvariant","variableTop":"Sortér som symboler","x":"Privatbrug"},"types":{"numbers":{"vaii":"Vai-tal"},"collation":{"zhuyin":"zhuyin-sorteringsrækkefølge"},"calendar":{"roc":"kalender for Republikken Kina"},"colStrength":{"tertiary":"Sortér efter accenter/store og små bogstaver/bredde"},"colCaseFirst":{"upper":"Sortér med store bogstaver først"},"colBackwards":{"yes":"Sortér efter accenter i omvendt rækkefølge"},"colCaseLevel":{"yes":"Sortér med skelnen mellem store og små bogstaver"},"colHiraganaQuaternary":{"yes":"Sortér kana med forskel på varianter"},"colNormalization":{"yes":"Sortér Unicode efter første normalisering"},"colNumeric":{"yes":"Sortér tal numerisk"},"colAlternate":{"shifted":"Sortér, og ignorer symboler"}},"codePatterns":{"language":"Sprog: %1$s","script":"Instruks: %1$s","territory":"Område: %1$s"}} \ No newline at end of file diff --git a/Punic/data/da/numbers.json b/Punic/data/da/numbers.json new file mode 100644 index 0000000..7a5f2e5 --- /dev/null +++ b/Punic/data/da/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":"."}} \ No newline at end of file diff --git a/Punic/data/da/territories.json b/Punic/data/da/territories.json new file mode 100644 index 0000000..319d8cc --- /dev/null +++ b/Punic/data/da/territories.json @@ -0,0 +1 @@ +{"001":"Verden","002":"Afrika","003":"Nordamerika","005":"Sydamerika","009":"Oceanien","011":"Vestafrika","013":"Mellemamerika","014":"Østafrika","015":"Nordafrika","017":"Centralafrika","018":"Det sydlige Afrika","019":"Amerika","021":"Det nordlige Amerika","029":"Caribien","030":"Østasien","034":"Sydasien","035":"Sydøstasien","039":"Sydeuropa","053":"Australasien","054":"Melanesien","057":"Mikronesien","061":"Polynesien","142":"Asien","143":"Centralasien","145":"Vestasien","150":"Europa","151":"Østeuropa","154":"Nordeuropa","155":"Vesteuropa","419":"Latinamerika","AC":"Ascensionøen","AD":"Andorra","AE":"Forenede Arabiske Emirater","AF":"Afghanistan","AG":"Antigua og Barbuda","AI":"Anguilla","AL":"Albanien","AM":"Armenien","AN":"Hollandske Antiller","AO":"Angola","AQ":"Antarktis","AR":"Argentina","AS":"Amerikansk Samoa","AT":"Østrig","AU":"Australien","AW":"Aruba","AX":"Ålandsøerne","AZ":"Aserbajdsjan","BA":"Bosnien-Hercegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgien","BF":"Burkina Faso","BG":"Bulgarien","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Nederlandske antiller","BR":"Brasilien","BS":"Bahamas","BT":"Bhutan","BV":"Bouvetøen","BW":"Botswana","BY":"Hviderusland","BZ":"Belize","CA":"Canada","CC":"Cocosøerne","CD":"Congo-Kinshasa","CD-alt-variant":"Den Demokratiske Republik Congo","CF":"Centralafrikanske Republik","CG":"Congo-Brazzaville","CG-alt-variant":"Republikken Congo","CH":"Schweiz","CI":"Elfenbenskysten","CI-alt-variant":"CI","CK":"Cookøerne","CL":"Chile","CM":"Cameroun","CN":"Kina","CO":"Colombia","CP":"Clippertonøen","CR":"Costa Rica","CU":"Cuba","CV":"Kap Verde","CW":"Curaçao","CX":"Juleøen","CY":"Cypern","CZ":"Tjekkiet","DE":"Tyskland","DG":"Diego Garcia","DJ":"Djibouti","DK":"Danmark","DM":"Dominica","DO":"Den Dominikanske Republik","DZ":"Algeriet","EA":"Ceuta og Melilla","EC":"Ecuador","EE":"Estland","EG":"Egypten","EH":"Vestsahara","ER":"Eritrea","ES":"Spanien","ET":"Etiopien","EU":"Den Europæiske Union","FI":"Finland","FJ":"Fiji","FK":"Falklandsøerne","FK-alt-variant":"Falklandsøerne (Islas Malvinas)","FM":"Mikronesiens Forenede Stater","FO":"Færøerne","FR":"Frankrig","GA":"Gabon","GB":"Storbritannien","GB-alt-short":"UK","GD":"Grenada","GE":"Georgien","GF":"Fransk Guyana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grønland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Ækvatorialguinea","GR":"Grækenland","GS":"South Georgia og South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong SAR","HK-alt-short":"Hongkong","HM":"Heard Island og McDonald Islands","HN":"Honduras","HR":"Kroatien","HT":"Haiti","HU":"Ungarn","IC":"Kanariske øer","ID":"Indonesien","IE":"Irland","IL":"Israel","IM":"Isle of Man","IN":"Indien","IO":"Det britiske territorium i Det Indiske Ocean","IQ":"Irak","IR":"Iran","IS":"Island","IT":"Italien","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kirgisistan","KH":"Cambodja","KI":"Kiribati","KM":"Comorerne","KN":"Saint Kitts og Nevis","KP":"Nordkorea","KR":"Sydkorea","KW":"Kuwait","KY":"Caymanøerne","KZ":"Kasakhstan","LA":"Laos","LB":"Libanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litauen","LU":"Luxembourg","LV":"Letland","LY":"Libyen","MA":"Marokko","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagaskar","MH":"Marshalløerne","MK":"Makedonien","MK-alt-variant":"Makedonien (Den Tidligere Jugoslaviske Republik Makedonien)","ML":"Mali","MM":"Myanmar (Burma)","MN":"Mongoliet","MO":"Macao SAR","MO-alt-short":"Macao","MP":"Nordmarianerne","MQ":"Martinique","MR":"Mauretanien","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldiverne","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"Ny Caledonien","NE":"Niger","NF":"Norfolkøen","NG":"Nigeria","NI":"Nicaragua","NL":"Holland","NO":"Norge","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Fransk Polynesien","PG":"Papua Ny Guinea","PH":"Filippinerne","PK":"Pakistan","PL":"Polen","PM":"Saint Pierre og Miquelon","PN":"Pitcairn","PR":"Puerto Rico","PS":"De palæstinensiske områder","PS-alt-short":"Palæstina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Ydre Oceanien","RE":"Réunion","RO":"Rumænien","RS":"Serbien","RU":"Rusland","RW":"Rwanda","SA":"Saudi-Arabien","SB":"Salomonøerne","SC":"Seychellerne","SD":"Sudan","SE":"Sverige","SG":"Singapore","SH":"St. Helena","SI":"Slovenien","SJ":"Svalbard og Jan Mayen","SK":"Slovakiet","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sydsudan","ST":"Sao Tome og Principe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syrien","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks- og Caicosøerne","TD":"Tchad","TF":"De franske besiddelser i Det Sydlige Indiske Ocean","TG":"Togo","TH":"Thailand","TJ":"Tadsjikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"Østtimor","TM":"Turkmenistan","TN":"Tunesien","TO":"Tonga","TR":"Tyrkiet","TT":"Trinidad og Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"Amerikanske oversøiske øer","US":"USA","US-alt-short":"USA","UY":"Uruguay","UZ":"Usbekistan","VA":"Vatikanstaten","VC":"Saint Vincent og Grenadinerne","VE":"Venezuela","VG":"De Britiske Jomfruøer","VI":"De Amerikanske Jomfruøer","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis og Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"Sydafrika","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Ukendt område"} \ No newline at end of file diff --git a/Punic/data/da/timeZoneNames.json b/Punic/data/da/timeZoneNames.json new file mode 100644 index 0000000..a5158b9 --- /dev/null +++ b/Punic/data/da/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH.mm;-HH.mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Tidszone for %1$s","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Azorerne"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"De Kanariske Øer"},"Cape_Verde":{"exemplarCity":"Kap Verde"},"Faeroe":{"exemplarCity":"Færøerne"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athen"},"Belgrade":{"exemplarCity":"Beograd"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelles"},"Bucharest":{"exemplarCity":"Bukarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"København"},"Dublin":{"long":{"daylight":"Irsk normaltid"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lissabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Britisk sommertid"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moskva"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikanet"},"Vienna":{"exemplarCity":"Wien"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warszawa"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizjzja"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaskus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"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":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh-byen"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tasjkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldiverne"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Påskeøen"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Ukendt by"}}},"metazone":{"Acre":{"long":{"generic":"Acre-tid","standard":"Acre-normaltid","daylight":"Acre-sommertid"}},"Afghanistan":{"long":{"standard":"Afghansk tid"}},"Africa_Central":{"long":{"standard":"Centralafrikansk tid"}},"Africa_Eastern":{"long":{"standard":"Østafrikansk tid"}},"Africa_Southern":{"long":{"standard":"Sydafrikansk tid"}},"Africa_Western":{"long":{"generic":"Vestafrikansk tid","standard":"Vestafrikansk normaltid","daylight":"Vestafrikansk sommertid"}},"Alaska":{"long":{"generic":"Alaska-tid","standard":"Alaska-normaltid","daylight":"Alaska-sommertid"}},"Almaty":{"long":{"generic":"Almaty-tid","standard":"Almaty-normaltid","daylight":"Almaty-sommertid"}},"Amazon":{"long":{"generic":"Amazonas-tid","standard":"Amazonas-normaltid","daylight":"Amazonas-sommertid"}},"America_Central":{"long":{"generic":"Central-tid","standard":"Central-normaltid","daylight":"Central-sommertid"}},"America_Eastern":{"long":{"generic":"Eastern-tid","standard":"Eastern-normaltid","daylight":"Eastern-sommertid"}},"America_Mountain":{"long":{"generic":"Mountain-tid","standard":"Mountain-normaltid","daylight":"Mountain-sommertid"}},"America_Pacific":{"long":{"generic":"Pacific-tid","standard":"Pacific-normaltid","daylight":"Pacific-sommertid"}},"Anadyr":{"long":{"generic":"Anadyr-tid","standard":"Anadyr-normaltid","daylight":"Anadyr-sommertid"}},"Apia":{"long":{"generic":"Apia-tid","standard":"Apia-normaltid","daylight":"Apia-sommertid"}},"Aqtau":{"long":{"generic":"Aqtau-tid","standard":"Aqtau-normaltid","daylight":"Aqtau-sommertid"}},"Aqtobe":{"long":{"generic":"Aqtobe-tid","standard":"Aqtobe-normaltid","daylight":"Aqtobe-sommertid"}},"Arabian":{"long":{"generic":"Arabisk tid","standard":"Arabisk normaltid","daylight":"Arabisk sommertid"}},"Argentina":{"long":{"generic":"Argentisk tid","standard":"Argentinsk normaltid","daylight":"Argentinsk sommertid"}},"Argentina_Western":{"long":{"generic":"Vestargentinsk tid","standard":"Vestargentinsk normaltid","daylight":"Vestargentinsk sommertid"}},"Armenia":{"long":{"generic":"Armensk tid","standard":"Armensk normaltid","daylight":"Armensk sommertid"}},"Atlantic":{"long":{"generic":"Atlantic-tid","standard":"Atlantic-normaltid","daylight":"Atlantic-sommertid"}},"Australia_Central":{"long":{"generic":"Centralaustralsk tid","standard":"Centralaustralsk normaltid","daylight":"Centralaustralsk sommertid"}},"Australia_CentralWestern":{"long":{"generic":"Vestlig centralaustralsk tid","standard":"Vestlig centralaustralsk normaltid","daylight":"Vestlig centralaustralsk sommertid"}},"Australia_Eastern":{"long":{"generic":"Østaustralsk tid","standard":"Østaustralsk normaltid","daylight":"Østaustralsk sommertid"}},"Australia_Western":{"long":{"generic":"Vestaustralsk tid","standard":"Vestaustralsk normaltid","daylight":"Vestaustralsk sommertid"}},"Azerbaijan":{"long":{"generic":"Aserbajdsjansk tid","standard":"Aserbajdsjansk normaltid","daylight":"Aserbajdsjansk sommertid"}},"Azores":{"long":{"generic":"Azorerne-tid","standard":"Azorerne-normaltid","daylight":"Azorerne-sommertid"}},"Bangladesh":{"long":{"generic":"Bangladeshisk tid","standard":"Bangladeshisk normaltid","daylight":"Bangladeshisk sommertid"}},"Bhutan":{"long":{"standard":"Bhutanesisk tid"}},"Bolivia":{"long":{"standard":"Boliviansk tid"}},"Brasilia":{"long":{"generic":"Brasiliansk tid","standard":"Brasiliansk normaltid","daylight":"Brasiliansk sommertid"}},"Brunei":{"long":{"standard":"Brunei Darussalam-tid"}},"Cape_Verde":{"long":{"generic":"Kapverdisk tid","standard":"Kapverdisk normaltid","daylight":"Kapverdisk sommertid"}},"Chamorro":{"long":{"standard":"Chamorro-tid"}},"Chatham":{"long":{"generic":"Chatham-tid","standard":"Chatham-normaltid","daylight":"Chatham-sommertid"}},"Chile":{"long":{"generic":"Chilensk tid","standard":"Chilensk normaltid","daylight":"Chilensk sommertid"}},"China":{"long":{"generic":"Kinesisk tid","standard":"Kinesisk normaltid","daylight":"Kinesisk sommertid"}},"Choibalsan":{"long":{"generic":"Choibalsan-tid","standard":"Choibalsan-normaltid","daylight":"Choibalsan-sommertid"}},"Christmas":{"long":{"standard":"Christmas Island-normaltid"}},"Cocos":{"long":{"standard":"Cocosøerne-normaltid"}},"Colombia":{"long":{"generic":"Colombiansk tid","standard":"Colombiansk normaltid","daylight":"Colombiansk sommertid"}},"Cook":{"long":{"generic":"Cookøerne-tid","standard":"Cookøerne-normaltid","daylight":"Cookøerne-sommertid"}},"Cuba":{"long":{"generic":"Cubansk tid","standard":"Cubansk normaltid","daylight":"Cubansk sommertid"}},"Davis":{"long":{"standard":"Davis-tid"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville-tid"}},"East_Timor":{"long":{"standard":"Østtimor-tid"}},"Easter":{"long":{"generic":"Påskeøen-tid","standard":"Påskeøen-normaltid","daylight":"Påskeøen-sommertid"}},"Ecuador":{"long":{"standard":"Ecuadoriansk tid"}},"Europe_Central":{"long":{"generic":"Centraleuropæisk tid","standard":"Centraleuropæisk normaltid","daylight":"Centraleuropæisk sommertid"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Østeuropæisk tid","standard":"Østeuropæisk normaltid","daylight":"Østeuropæisk sommertid"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Fjernøsteuropæisk tid"}},"Europe_Western":{"long":{"generic":"Vesteuropæisk tid","standard":"Vesteuropæisk normaltid","daylight":"Vesteuropæisk sommertid"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Falklandsøerne-tid","standard":"Falklandsøerne-normaltid","daylight":"Falklandsøerne-sommertid"}},"Fiji":{"long":{"generic":"Fijiansk tid","standard":"Fijiansk normaltid","daylight":"Fijiansk sommertid"}},"French_Guiana":{"long":{"standard":"Fransk Guyana-tid"}},"French_Southern":{"long":{"standard":"Franske Sydlige og Antarktiske Territorier-tid"}},"GMT":{"long":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos-tid"}},"Gambier":{"long":{"standard":"Gambier-tid"}},"Georgia":{"long":{"generic":"Georgiansk tid","standard":"Georgiansk normaltid","daylight":"Georgiansk sommertid"}},"Gilbert_Islands":{"long":{"standard":"Gilbertøerne-tid"}},"Greenland_Eastern":{"long":{"generic":"Østgrønlandsk tid","standard":"Østgrønlandsk normaltid","daylight":"Østgrønlandsk sommertid"}},"Greenland_Western":{"long":{"generic":"Vestgrønlandsk tid","standard":"Vestgrønlandsk normaltid","daylight":"Vestgrønlandsk sommertid"}},"Guam":{"long":{"standard":"Guam-normaltid"}},"Gulf":{"long":{"standard":"Golflandene-normaltid"}},"Guyana":{"long":{"standard":"Guyana-tid"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian-tid","standard":"Hawaii-Aleutian-normaltid","daylight":"Hawaii-Aleutian-sommertid"}},"Hong_Kong":{"long":{"generic":"Hongkong-tid","standard":"Hongkong-normaltid","daylight":"Hongkong-sommertid"}},"Hovd":{"long":{"generic":"Hovd-tid","standard":"Hovd-normaltid","daylight":"Hovd-sommertid"}},"India":{"long":{"standard":"Indisk normaltid"}},"Indian_Ocean":{"long":{"standard":"Indiske Ocean-normaltid"}},"Indochina":{"long":{"standard":"Indokina-tid"}},"Indonesia_Central":{"long":{"standard":"Centralindonesisk tid"}},"Indonesia_Eastern":{"long":{"standard":"Østindonesisk tid"}},"Indonesia_Western":{"long":{"standard":"Vestindonesisk tid"}},"Iran":{"long":{"generic":"Iransk tid","standard":"Iransk normaltid","daylight":"Iransk sommertid"}},"Irkutsk":{"long":{"generic":"Irkutsk-tid","standard":"Irkutsk-normaltid","daylight":"Irkutsk-sommertid"}},"Israel":{"long":{"generic":"Israelsk tid","standard":"Israelsk normaltid","daylight":"Israelsk sommertid"}},"Japan":{"long":{"generic":"Japansk tid","standard":"Japansk normaltid","daylight":"Japansk sommertid"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski tid","standard":"Petropavlovsk-Kamchatski normaltid","daylight":"Petropavlovsk-Kamchatski sommertid"}},"Kazakhstan_Eastern":{"long":{"standard":"Østkasakhstansk tid"}},"Kazakhstan_Western":{"long":{"standard":"Vestkasakhstansk tid"}},"Korea":{"long":{"generic":"Koreansk tid","standard":"Koreansk normaltid","daylight":"Koreansk sommertid"}},"Kosrae":{"long":{"standard":"Kosrae-tid"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk-tid","standard":"Krasnoyarsk-normaltid","daylight":"Krasnoyarsk-sommertid"}},"Kyrgystan":{"long":{"standard":"Kirgisisk tid"}},"Lanka":{"long":{"standard":"Langa tid"}},"Line_Islands":{"long":{"standard":"Linjeøerne-tid"}},"Lord_Howe":{"long":{"generic":"Lord Howe-tid","standard":"Lord Howe-normaltid","daylight":"Lord Howe-sommertid"}},"Macau":{"long":{"generic":"Macao-tid","standard":"Macao-normaltid","daylight":"Macao-sommertid"}},"Macquarie":{"long":{"standard":"Macquarie-tid"}},"Magadan":{"long":{"generic":"Magadan-tid","standard":"Magadan-normaltid","daylight":"Magadan-sommertid"}},"Malaysia":{"long":{"standard":"Malaysisk tid"}},"Maldives":{"long":{"standard":"Maldivisk tid"}},"Marquesas":{"long":{"standard":"Marquesas-tid"}},"Marshall_Islands":{"long":{"standard":"Marshalløerne-tid"}},"Mauritius":{"long":{"generic":"Mauritius-tid","standard":"Mauritius-normaltid","daylight":"Mauritius-sommertid"}},"Mawson":{"long":{"standard":"Mawson-tid"}},"Mexico_Northwest":{"long":{"generic":"Nordvestmexicansk tid","standard":"Nordvestmexicansk normaltid","daylight":"Nordvestmexicansk sommertid"}},"Mexico_Pacific":{"long":{"generic":"Mexicansk Pacific-tid","standard":"Mexicansk Pacific-normaltid","daylight":"Mexicansk Pacific-sommertid"}},"Mongolia":{"long":{"generic":"Ulan Bator-tid","standard":"Ulan Bator-normaltid","daylight":"Ulan Bator-sommertid"}},"Moscow":{"long":{"generic":"Moskovitisk tid","standard":"Moskovitisk normaltid","daylight":"Moskovitisk sommertid"}},"Myanmar":{"long":{"standard":"Myanmarsk tid"}},"Nauru":{"long":{"standard":"Nauru-tid"}},"Nepal":{"long":{"standard":"Nepalesisk tid"}},"New_Caledonia":{"long":{"generic":"Nykaledonsk tid","standard":"Nykaledonsk normaltid","daylight":"Nykaledonsk sommertid"}},"New_Zealand":{"long":{"generic":"Newzealandsk tid","standard":"Newzealandsk normaltid","daylight":"Newzealandsk sommertid"}},"Newfoundland":{"long":{"generic":"Newfoundlandsk tid","standard":"Newfoundlandsk normaltid","daylight":"Newfoundlandsk sommertid"}},"Niue":{"long":{"standard":"Niue-tid"}},"Norfolk":{"long":{"standard":"Norfolkøen-tid"}},"Noronha":{"long":{"generic":"Fernando de Noronha-tid","standard":"Fernando de Noronha-normaltid","daylight":"Fernando de Noronha-sommertid"}},"North_Mariana":{"long":{"standard":"Nordmarianerne-tid"}},"Novosibirsk":{"long":{"generic":"Novosibirsk tid","standard":"Novosibirsk normaltid","daylight":"Novosibirsk sommertid"}},"Omsk":{"long":{"generic":"Omsk-tid","standard":"Omsk-normaltid","daylight":"Omsk-sommertid"}},"Pakistan":{"long":{"generic":"Pakistansk tid","standard":"Pakistansk normaltid","daylight":"Pakistansk sommertid"}},"Palau":{"long":{"standard":"Palau-normaltid"}},"Papua_New_Guinea":{"long":{"standard":"Papua Ny Guinea-tid"}},"Paraguay":{"long":{"generic":"Paraguayansk tid","standard":"Paraguayansk normaltid","daylight":"Paraguayansk sommertid"}},"Peru":{"long":{"generic":"Peruviansk tid","standard":"Peruviansk normaltid","daylight":"Peruviansk sommertid"}},"Philippines":{"long":{"generic":"Filippinsk tid","standard":"Filippinsk normaltid","daylight":"Filippinsk sommertid"}},"Phoenix_Islands":{"long":{"standard":"Phoenixøen-tid"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre- og Miquelon-tid","standard":"Saint Pierre- og Miquelon-normaltid","daylight":"Saint Pierre- og Miquelon-sommertid"}},"Pitcairn":{"long":{"standard":"Pitcairn-tid"}},"Ponape":{"long":{"standard":"Ponape-tid"}},"Qyzylorda":{"long":{"generic":"Qyzylorda-tid","standard":"Qyzylorda-normaltid","daylight":"Qyzylorda-sommertid"}},"Reunion":{"long":{"standard":"Reunion-tid"}},"Rothera":{"long":{"standard":"Rothera-tid"}},"Sakhalin":{"long":{"generic":"Sakhalin-tid","standard":"Sakhalin-normaltid","daylight":"Sakhalin-sommertid"}},"Samara":{"long":{"generic":"Samara-tid","standard":"Samara-normaltid","daylight":"Samara-sommertid"}},"Samoa":{"long":{"generic":"Samoa-tid","standard":"Samoa-normaltid","daylight":"Samoa-sommertid"}},"Seychelles":{"long":{"standard":"Seychellisk tid"}},"Singapore":{"long":{"standard":"Singaporeansk normaltid"}},"Solomon":{"long":{"standard":"Salomonøerne-tid"}},"South_Georgia":{"long":{"standard":"South Georgia-tid"}},"Suriname":{"long":{"standard":"Surinam-tid"}},"Syowa":{"long":{"standard":"Syowa-tid"}},"Tahiti":{"long":{"standard":"Tahitisk tid"}},"Taipei":{"long":{"generic":"Taipei-tid","standard":"Taipei-normaltid","daylight":"Taipei-sommertid"}},"Tajikistan":{"long":{"standard":"Tadsjikisk tid"}},"Tokelau":{"long":{"standard":"Tokelau-tid"}},"Tonga":{"long":{"generic":"Tongansk tid","standard":"Tongansk normaltid","daylight":"Tongansk sommertid"}},"Truk":{"long":{"standard":"Truk-tid"}},"Turkmenistan":{"long":{"generic":"Turkmensk tid","standard":"Turkmensk normaltid","daylight":"Turkmensk sommertid"}},"Tuvalu":{"long":{"standard":"Tuvalu-tid"}},"Uruguay":{"long":{"generic":"Uruguayansk tid","standard":"Uruguayansk normaltid","daylight":"Uruguayansk sommertid"}},"Uzbekistan":{"long":{"generic":"Usbekisk tid","standard":"Usbekisk normaltid","daylight":"Usbekisk sommertid"}},"Vanuatu":{"long":{"generic":"Vanuatu-tid","standard":"Vanuatu-normaltid","daylight":"Vanuatu-sommertid"}},"Venezuela":{"long":{"standard":"Venezuelansk tid"}},"Vladivostok":{"long":{"generic":"Vladivostok-tid","standard":"Vladivostok-normaltid","daylight":"Vladivostok-sommertid"}},"Volgograd":{"long":{"generic":"Volgograd-tid","standard":"Volgograd-normaltid","daylight":"Volgograd-sommertid"}},"Vostok":{"long":{"standard":"Vostok-tid"}},"Wake":{"long":{"standard":"Wakeøen-tid"}},"Wallis":{"long":{"standard":"Wallis og Futuna-tid"}},"Yakutsk":{"long":{"generic":"Yakutsk-tid","standard":"Yakutsk-normaltid","daylight":"Yakutsk-sommertid"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburgsk tid","standard":"Yekaterinburgsk normaltid","daylight":"Yekaterinburgsk sommertid"}}}} \ No newline at end of file diff --git a/Punic/data/da/units.json b/Punic/data/da/units.json new file mode 100644 index 0000000..2dca02d --- /dev/null +++ b/Punic/data/da/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s pr. %2$s","acceleration":{"g-force":{"_name":"G-kraft","one":"%1$s G-kraft","other":"%1$s G-kraft"},"meter-per-second-squared":{"_name":"meter pr. sekund²","one":"%1$s meter pr. sekund²","other":"%1$s meter pr. sekund²"}},"angle":{"arc-minute":{"_name":"bueminutter","one":"%1$s bueminut","other":"%1$s bueminutter"},"arc-second":{"_name":"buesekunder","one":"%1$s buesekund","other":"%1$s buesekunder"},"degree":{"_name":"grader","one":"%1$s grad","other":"%1$s grader"},"radian":{"_name":"radian","one":"%1$s radian","other":"%1$s radianer"}},"area":{"acre":{"_name":"acre","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hektar","one":"%1$s hektar","other":"%1$s hektar"},"square-centimeter":{"_name":"kvadratcentimeter","one":"%1$s kvadratcentimeter","other":"%1$s kvadratcentimeter"},"square-foot":{"_name":"kvadratfod","one":"%1$s kvadratfod","other":"%1$s kvadratfod"},"square-inch":{"_name":"kvadrattommer","one":"%1$s kvadrattomme","other":"%1$s kvadrattommer"},"square-kilometer":{"_name":"kvadratkilometer","one":"%1$s kvadratkilometer","other":"%1$s kvadratkilometer"},"square-meter":{"_name":"kvadratmeter","one":"%1$s kvadratmeter","other":"%1$s kvadratmeter"},"square-mile":{"_name":"kvadrat-engelske mil","one":"%1$s kvadrat-engelsk mil","other":"%1$s kvadrat-engelske mil"},"square-yard":{"_name":"kvadrat-engelske yard","one":"%1$s kvadrat engelske yard","other":"%1$s kvadrat engelske yard"}},"consumption":{"liter-per-kilometer":{"_name":"liter pr. kilometer","one":"%1$s liter pr. kilometer","other":"%1$s liter pr. kilometer"},"mile-per-gallon":{"_name":"mil pr. gallon","one":"mil pr. gallon","other":"%1$s mil pr. gallon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabyte","one":"%1$s gigabyte","other":"%1$s GB"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobyte","one":"%1$s kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"dage","one":"%1$s dag","other":"%1$s dage"},"hour":{"_name":"timer","one":"%1$s time","other":"%1$s timer","_per":"%1$s pr. time"},"microsecond":{"_name":"mikrosekunder","one":"%1$s mikrosekund","other":"%1$s mikrosekunder"},"millisecond":{"_name":"millisekunder","one":"%1$s millisekund","other":"%1$s millisekunder"},"minute":{"_name":"minutter","one":"%1$s minut","other":"%1$s minutter"},"month":{"_name":"måneder","one":"%1$s måned","other":"%1$s måneder"},"nanosecond":{"_name":"nanosekunder","one":"%1$s nanosekund","other":"%1$s nanosekunder"},"second":{"_name":"sekunder","one":"%1$s sekund","other":"%1$s sekunder","_per":"%1$s pr. sekund"},"week":{"_name":"uger","one":"%1$s uge","other":"%1$s uger"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s ampere","other":"%1$s ampere"},"milliampere":{"_name":"milliampere","one":"%1$s milliampere","other":"%1$s milliampere"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"kalorier","one":"%1$s kalorie","other":"%1$s kalorier"},"foodcalorie":{"_name":"Kalorier","one":"%1$s kalorie","other":"%1$s kalorier"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joule"},"kilocalorie":{"_name":"kilokalorier","one":"%1$s kilokalorie","other":"%1$s kilokalorier"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoule"},"kilowatt-hour":{"_name":"kilowatt-timer","one":"kilowatt-time","other":"%1$s kilowatt-timer"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomiske enheder","one":"%1$s astronomisk enhed","other":"%1$s astronomiske enheder"},"centimeter":{"_name":"centimeter","one":"%1$s centimeter","other":"%1$s centimeter"},"decimeter":{"_name":"decimeter","one":"%1$s decimeter","other":"%1$s decimeter"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fod","one":"%1$s fod","other":"%1$s fod"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tommer","one":"%1$s tomme","other":"%1$s tommer"},"kilometer":{"_name":"kilometer","one":"%1$s kilometer","other":"%1$s kilometer"},"light-year":{"_name":"lysår","one":"%1$s lysår","other":"%1$s lysår"},"meter":{"_name":"meter","one":"%1$s meter","other":"%1$s meter"},"micrometer":{"_name":"mikrometer","one":"%1$s mikrometer","other":"%1$s mikrometer"},"mile":{"_name":"engelske mil","one":"%1$s engelsk mil","other":"%1$s engelske mil"},"millimeter":{"_name":"millimeter","one":"%1$s millimeter","other":"%1$s millimeter"},"nanometer":{"_name":"nanometer","one":"%1$s nanometer","other":"%1$s nanometer"},"nautical-mile":{"_name":"sømil","one":"%1$s sømil","other":"%1$s sømil"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsec"},"picometer":{"_name":"pikometer","one":"%1$s pikometer","other":"%1$s pikometer"},"yard":{"_name":"engelske yard","one":"%1$s engelsk yard","other":"%1$s engelske yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s gram"},"kilogram":{"_name":"kilogram","one":"%1$s kilogram","other":"%1$s kilogram"},"metric-ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"},"microgram":{"_name":"mikrogram","one":"%1$s mikrogram","other":"%1$s mikrogram"},"milligram":{"_name":"milligram","one":"%1$s milligram","other":"%1$s milligram"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"short ton","one":"%1$s short ton","other":"%1$s short ton"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"hestekræfter","one":"%1$s hestekraft","other":"%1$s hestekræfter"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"hektopascal","one":"%1$s hektopascal","other":"%1$s hektopascal"},"inch-hg":{"_name":"tommer kviksølv","one":"%1$s tomme kviksølv","other":"%1$s tommer kviksølv"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"millimeter kviksølv","one":"%1$s millimeter kviksølv","other":"%1$s millimeter kviksølv"},"pound-per-square-inch":{"_name":"pounds pr. kvadrattomme","one":"%1$s pounds pr. kvadrattomme","other":"%1$s pounds pr. kvadrattommer"}},"proportion":{"karat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"}},"speed":{"kilometer-per-hour":{"_name":"kilometer i timen","one":"kilometer i timen","other":"%1$s kilometer i timen"},"meter-per-second":{"_name":"meter per sekund","one":"%1$s meter i sekundet","other":"%1$s meter i sekundet"},"mile-per-hour":{"_name":"engelske mil i timen","one":"%1$s engelsk mil i timen","other":"%1$s engelske mil i timen"}},"temperature":{"celsius":{"_name":"grader celsius","one":"%1$s grad Celsius","other":"%1$s grader Celsius"},"fahrenheit":{"_name":"grader Fahrenheit","one":"%1$s grad Fahrenheit","other":"%1$s grader Fahrenheit"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"acre-fod","one":"%1$s acre-fod","other":"%1$s acre-fod"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centiliter","one":"%1$s centiliter","other":"%1$s centiliter"},"cubic-centimeter":{"_name":"kubikcentimeter","one":"%1$s kubikcentimeter","other":"%1$s kubikcentimeter"},"cubic-foot":{"_name":"kubikfod","one":"%1$s kubikfod","other":"%1$s kubikfod"},"cubic-inch":{"_name":"kubiktommer","one":"%1$s kubiktomme","other":"%1$s kubiktommer"},"cubic-kilometer":{"_name":"kubikkilometer","one":"%1$s kubikkilometer","other":"%1$s kubikkilometer"},"cubic-meter":{"_name":"kubikmeter","one":"%1$s kubikmeter","other":"%1$s kubikmeter"},"cubic-mile":{"_name":"kubik-engelske mil","one":"%1$s kubik-engelsk mil","other":"%1$s kubik-engelske mil"},"cubic-yard":{"_name":"kubik-engelske yard","one":"%1$s kubik-engelske yard","other":"%1$s kubik-engelske yard"},"cup":{"_name":"engelske kopper","one":"engelsk kop","other":"%1$s engelske kopper"},"deciliter":{"_name":"deciliter","one":"%1$s deciliter","other":"%1$s deciliter"},"fluid-ounce":{"_name":"engelske fluid ounces","one":"%1$s engelsk fluid ounce","other":"%1$s engelske fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hektoliter","one":"%1$s hektoliter","other":"%1$s hektoliter"},"liter":{"_name":"liter","one":"%1$s liter","other":"%1$s liter"},"megaliter":{"_name":"megaliter","one":"%1$s megaliter","other":"%1$s megaliter"},"milliliter":{"_name":"milliliter","one":"%1$s milliliter","other":"%1$s milliliter"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"engelske quarts","one":"%1$s engelsk quart","other":"%1$s engelske quarts"},"tablespoon":{"_name":"spiseske","one":"%1$s spiseske","other":"%1$s spiseskeer"},"teaspoon":{"_name":"teske","one":"%1$s teske","other":"%1$s teskeer"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G-kraft","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"bueminutter","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"buesekunder","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"grader","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radian","one":"%1$s radian","other":"%1$s radian"}},"area":{"acre":{"_name":"acre","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"kvadratfod","one":"%1$s kvadratfod","other":"%1$s kvadratfod"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gbit","other":"%1$s Gbit"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dage","one":"%1$s dag","other":"%1$s dage"},"hour":{"_name":"timer","one":"%1$s t","other":"%1$s t","_per":"%1$s /t"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"milisek.","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minutter","one":"%1$s min","other":"%1$s min"},"month":{"_name":"måneder","one":"%1$s md.","other":"%1$s mdr."},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekunder","one":"%1$s sek","other":"%1$s sek","_per":"%1$s /sek"},"week":{"_name":"uger","one":"%1$s uge","other":"%1$s uger"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ae","one":"%1$s ae","other":"%1$s ae"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fod","one":"%1$s fod","other":"%1$s fod"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tommer","one":"%1$s tomme","other":"%1$s tommer"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lysår","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"meter","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"engelske mil","one":"%1$s mil","other":"%1$s mil"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"sømil","one":"%1$s sm","other":"%1$s sm"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"engelske yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"kt.","one":"%1$s kt.","other":"%1$s kt."},"gram":{"_name":"gram","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kilogram","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pund","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hk","one":"%1$s hk","other":"%1$s hk"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"# Hg","one":"%1$s # Hg","other":"%1$s # Hg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/t","one":"%1$s km/t.","other":"%1$s km/t."},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"engelske mil/timen","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"engelsk kop","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"spsk.","one":"%1$s spsk.","other":"%1$s spsk."},"teaspoon":{"_name":"tsk.","one":"%1$s tsk.","other":"%1$s tsk."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G-kraft","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"bueminutter","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"buesekunder","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"grader","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radian","one":"%1$s radian","other":"%1$s radian"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hektar","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"kvadratfod","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gbit","other":"%1$s Gbit"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dag","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"time","one":"%1$s t","other":"%1$s t","_per":"%1$s /t"},"microsecond":{"_name":"μs","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s m","other":"%1$s min"},"month":{"_name":"måned","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sek","one":"%1$s s","other":"%1$s s","_per":"%1$s /sek"},"week":{"_name":"uge","one":"%1$s u","other":"%1$s u"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ae","one":"%1$s ae","other":"%1$s ae"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fod","one":"%1$s fod","other":"%1$s fod"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tommer","one":"%1$s\"","other":"%1$s\""},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lysår","one":"%1$s lysår","other":"%1$s lysår"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$sμm","other":"%1$sμm"},"mile":{"_name":"engelske mil","one":"%1$s mil","other":"%1$s mil"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"sømil","one":"%1$s sømil","other":"%1$s sømil"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"engelske yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"kt.","one":"%1$s kt.","other":"%1$s kt."},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$s unse","other":"%1$s unser"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hk","one":"%1$shk","other":"%1$shk"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"# Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smbar","other":"%1$smbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/t","one":"%1$s km/t","other":"%1$s km/t"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"engelske mil/timen","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$s fod³","other":"%1$s fod³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"engelsk kop","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"ml","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"spsk.","one":"%1$s spsk","other":"%1$s spsk"},"teaspoon":{"_name":"tsk.","one":"%1$s tsk","other":"%1$s tsk"}}},"_durationPattern":{"hm":"h.mm","hms":"h.mm.ss","ms":"m.ss"}} \ No newline at end of file diff --git a/Punic/data/de/calendar.json b/Punic/data/de/calendar.json new file mode 100644 index 0000000..7a8c8a2 --- /dev/null +++ b/Punic/data/de/calendar.json @@ -0,0 +1 @@ +{"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":{"afternoon":"nachmittags","am":"vorm.","earlyMorning":"morgens","evening":"abends","morning":"vormittags","night":"nachts","noon":"Mittag","pm":"nachm."},"narrow":{"am":"vorm.","noon":"Mittag","pm":"nachm."},"wide":{"afternoon":"nachmittags","am":"vorm.","earlyMorning":"morgens","evening":"abends","morning":"vormittags","night":"nachts","noon":"Mittag","pm":"nachm."}},"stand-alone":{"abbreviated":{"afternoon":"nachmittags","am":"vorm.","earlyMorning":"morgens","evening":"abends","morning":"vormittags","night":"nachts","noon":"Mittag","pm":"nachm."},"narrow":{"am":"vorm.","noon":"Mittag","pm":"nachm."},"wide":{"afternoon":"Nachmittag","am":"vorm.","earlyMorning":"Morgen","evening":"Abend","morning":"Vormittag","night":"Nacht","noon":"Mittag","pm":"nachm."}}},"eras":{"wide":{"0":"v. Chr.","0-alt-variant":"vor unserer Zeitrechnung","1":"n. Chr.","1-alt-variant":"unserer Zeitrechnung"},"abbreviated":{"0":"v. Chr.","0-alt-variant":"v. u. Z.","1":"n. Chr.","1-alt-variant":"u. Z."},"narrow":{"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":"%2$s 'um' %1$s","long":"%2$s 'um' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/de/dateFields.json b/Punic/data/de/dateFields.json new file mode 100644 index 0000000..c02c9c0 --- /dev/null +++ b/Punic/data/de/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Epoche"},"year":{"displayName":"Jahr","relative-type--1":"letztes Jahr","relative-type-0":"dieses Jahr","relative-type-1":"nächstes Jahr","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Jahr","relativeTimePattern-count-other":"in {0} Jahren"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Jahr","relativeTimePattern-count-other":"vor {0} Jahren"}},"year-short":{"displayName":"Jahr","relative-type--1":"letztes Jahr","relative-type-0":"dieses Jahr","relative-type-1":"nächstes Jahr","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Jahr","relativeTimePattern-count-other":"in {0} Jahren"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Jahr","relativeTimePattern-count-other":"vor {0} Jahren"}},"year-narrow":{"displayName":"J","relative-type--1":"letztes Jahr","relative-type-0":"dieses Jahr","relative-type-1":"nächstes Jahr","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Jahr","relativeTimePattern-count-other":"in {0} Jahren"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Jahr","relativeTimePattern-count-other":"vor {0} Jahren"}},"quarter":{"displayName":"Quartal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Quartal","relativeTimePattern-count-other":"in {0} Quartalen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Quartal","relativeTimePattern-count-other":"vor {0} Quartalen"}},"quarter-short":{"displayName":"Quart.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Quart.","relativeTimePattern-count-other":"in {0} Quart."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Quart.","relativeTimePattern-count-other":"vor {0} Quart."}},"quarter-narrow":{"displayName":"Q","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Q","relativeTimePattern-count-other":"in {0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Q","relativeTimePattern-count-other":"vor {0} Q"}},"month":{"displayName":"Monat","relative-type--1":"letzten Monat","relative-type-0":"diesen Monat","relative-type-1":"nächsten Monat","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Monat","relativeTimePattern-count-other":"in {0} Monaten"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Monat","relativeTimePattern-count-other":"vor {0} Monaten"}},"month-short":{"displayName":"Monat","relative-type--1":"letzten Monat","relative-type-0":"diesen Monat","relative-type-1":"nächsten Monat","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Monat","relativeTimePattern-count-other":"in {0} Monaten"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Monat","relativeTimePattern-count-other":"vor {0} Monaten"}},"month-narrow":{"displayName":"M","relative-type--1":"letzten Monat","relative-type-0":"diesen Monat","relative-type-1":"nächsten Monat","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Monat","relativeTimePattern-count-other":"in {0} Monaten"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Monat","relativeTimePattern-count-other":"vor {0} Monaten"}},"week":{"displayName":"Woche","relative-type--1":"letzte Woche","relative-type-0":"diese Woche","relative-type-1":"nächste Woche","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Woche","relativeTimePattern-count-other":"in {0} Wochen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Woche","relativeTimePattern-count-other":"vor {0} Wochen"}},"week-short":{"displayName":"Woche","relative-type--1":"letzte Woche","relative-type-0":"diese Woche","relative-type-1":"nächste Woche","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Woche","relativeTimePattern-count-other":"in {0} Wochen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Woche","relativeTimePattern-count-other":"vor {0} Wochen"}},"week-narrow":{"displayName":"W","relative-type--1":"letzte Woche","relative-type-0":"diese Woche","relative-type-1":"nächste Woche","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Wo.","relativeTimePattern-count-other":"in {0} Wo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Wo.","relativeTimePattern-count-other":"vor {0} Wo."}},"day":{"displayName":"Tag","relative-type--1":"gestern","relative-type--2":"vorgestern","relative-type-0":"heute","relative-type-1":"morgen","relative-type-2":"übermorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Tag","relativeTimePattern-count-other":"in {0} Tagen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Tag","relativeTimePattern-count-other":"vor {0} Tagen"}},"day-short":{"displayName":"Tag","relative-type--1":"gestern","relative-type--2":"vorgestern","relative-type-0":"heute","relative-type-1":"morgen","relative-type-2":"übermorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Tag","relativeTimePattern-count-other":"in {0} Tagen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Tag","relativeTimePattern-count-other":"vor {0} Tagen"}},"day-narrow":{"displayName":"Tag","relative-type--1":"gestern","relative-type--2":"vorgestern","relative-type-0":"heute","relative-type-1":"morgen","relative-type-2":"übermorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Tag","relativeTimePattern-count-other":"in {0} Tagen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Tag","relativeTimePattern-count-other":"vor {0} Tagen"}},"weekday":{"displayName":"Wochentag"},"sun":{"relative-type--1":"letzten Sonntag","relative-type-0":"diesen Sonntag","relative-type-1":"nächsten Sonntag"},"sun-short":{"relative-type--1":"letzten So.","relative-type-0":"diesen So.","relative-type-1":"nächsten So."},"sun-narrow":{"relative-type--1":"letzten So.","relative-type-0":"diesen So.","relative-type-1":"nächsten So."},"mon":{"relative-type--1":"letzten Montag","relative-type-0":"diesen Montag","relative-type-1":"nächsten Montag"},"mon-short":{"relative-type--1":"letzten Mo.","relative-type-0":"diesen Mo.","relative-type-1":"nächsten Mo."},"mon-narrow":{"relative-type--1":"letzten Mo.","relative-type-0":"diesen Mo.","relative-type-1":"nächsten Mo."},"tue":{"relative-type--1":"letzten Dienstag","relative-type-0":"diesen Dienstag","relative-type-1":"nächsten Dienstag"},"tue-short":{"relative-type--1":"letzten Di.","relative-type-0":"diesen Di.","relative-type-1":"nächsten Di."},"tue-narrow":{"relative-type--1":"letzten Di.","relative-type-0":"diesen Di.","relative-type-1":"nächsten Di."},"wed":{"relative-type--1":"letzten Mittwoch","relative-type-0":"diesen Mittwoch","relative-type-1":"nächsten Mittwoch"},"wed-short":{"relative-type--1":"letzten Mi.","relative-type-0":"diesen Mi.","relative-type-1":"nächsten Mi."},"wed-narrow":{"relative-type--1":"letzten Mi.","relative-type-0":"diesen Mi.","relative-type-1":"nächsten Mi."},"thu":{"relative-type--1":"letzten Donnerstag","relative-type-0":"diesen Donnerstag","relative-type-1":"nächsten Donnerstag"},"thu-short":{"relative-type--1":"letzten Do.","relative-type-0":"diesen Do.","relative-type-1":"nächsten Do."},"thu-narrow":{"relative-type--1":"letzten Do.","relative-type-0":"diesen Do.","relative-type-1":"nächsten Do."},"fri":{"relative-type--1":"letzten Freitag","relative-type-0":"diesen Freitag","relative-type-1":"nächsten Freitag"},"fri-short":{"relative-type--1":"letzten Fr.","relative-type-0":"diesen Fr.","relative-type-1":"nächsten Fr."},"fri-narrow":{"relative-type--1":"letzten Fr.","relative-type-0":"diesen Fr.","relative-type-1":"nächsten Fr."},"sat":{"relative-type--1":"letzten Samstag","relative-type-0":"diesen Samstag","relative-type-1":"nächsten Samstag"},"sat-short":{"relative-type--1":"letzten Sa.","relative-type-0":"diesen Sa.","relative-type-1":"nächsten Sa."},"sat-narrow":{"relative-type--1":"letzten Sa.","relative-type-0":"diesen Sa.","relative-type-1":"nächsten Sa."},"dayperiod":{"displayName":"Tageshälfte"},"hour":{"displayName":"Stunde","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Stunde","relativeTimePattern-count-other":"in {0} Stunden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Stunde","relativeTimePattern-count-other":"vor {0} Stunden"}},"hour-short":{"displayName":"Std.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Std.","relativeTimePattern-count-other":"in {0} Std."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Std.","relativeTimePattern-count-other":"vor {0} Std."}},"hour-narrow":{"displayName":"Std.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Std.","relativeTimePattern-count-other":"in {0} Std."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Std.","relativeTimePattern-count-other":"vor {0} Std."}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Minute","relativeTimePattern-count-other":"in {0} Minuten"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Minute","relativeTimePattern-count-other":"vor {0} Minuten"}},"minute-short":{"displayName":"Min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Min.","relativeTimePattern-count-other":"in {0} Min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Min.","relativeTimePattern-count-other":"vor {0} Min."}},"minute-narrow":{"displayName":"Min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} m","relativeTimePattern-count-other":"in {0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} m","relativeTimePattern-count-other":"vor {0} m"}},"second":{"displayName":"Sekunde","relative-type-0":"jetzt","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Sekunde","relativeTimePattern-count-other":"in {0} Sekunden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Sekunde","relativeTimePattern-count-other":"vor {0} Sekunden"}},"second-short":{"displayName":"Sek.","relative-type-0":"jetzt","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} Sek.","relativeTimePattern-count-other":"in {0} Sek."},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} Sek.","relativeTimePattern-count-other":"vor {0} Sek."}},"second-narrow":{"displayName":"Sek.","relative-type-0":"jetzt","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} s","relativeTimePattern-count-other":"in {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"vor {0} s","relativeTimePattern-count-other":"vor {0} s"}},"zone":{"displayName":"Zeitzone"}} \ No newline at end of file diff --git a/Punic/data/de/languages.json b/Punic/data/de/languages.json new file mode 100644 index 0000000..1e2fae4 --- /dev/null +++ b/Punic/data/de/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abchasisch","ace":"Aceh-Sprache","ach":"Acholi-Sprache","ada":"Adangme","ady":"Adygeisch","ae":"Avestisch","aeb":"Tunesisches Arabisch","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu-Sprache","ak":"Akan","akk":"Akkadisch","akz":"Alabama","ale":"Aleutisch","aln":"Gegisch","alt":"Süd-Altaisch","am":"Amharisch","an":"Aragonesisch","ang":"Altenglisch","anp":"Angika","ar":"Arabisch","ar-001":"Modernes Hocharabisch","arc":"Aramäisch","arn":"Araukanisch","aro":"Araona","arp":"Arapaho-Sprache","arq":"Algerisches Arabisch","arw":"Arawak-Sprache","ary":"Marokkanisches Arabisch","arz":"Ägyptisches Arabisch","as":"Assamesisch","asa":"Pare","ase":"Amerikanische Gebärdensprache","ast":"Asturianisch","av":"Awarisch","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Aserbaidschanisch","az-alt-short":"Aserbaidschanisch","azb":"Südaserbaidschanisch","ba":"Baschkirisch","bal":"Belutschisch","ban":"Balinesisch","bar":"Bairisch","bas":"Basaa-Sprache","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Weißrussisch","bej":"Bedauye","bem":"Bemba-Sprache","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarisch","bho":"Bhodschpuri","bi":"Bislama","bik":"Bikol-Sprache","bin":"Bini-Sprache","bjn":"Banjaresisch","bkm":"Kom","bla":"Blackfoot-Sprache","bm":"Bambara-Sprache","bn":"Bengalisch","bo":"Tibetisch","bpy":"Bishnupriya","bqi":"Bachtiarisch","br":"Bretonisch","bra":"Braj-Bhakha","brh":"Brahui","brx":"Bodo","bs":"Bosnisch","bss":"Akoose","bua":"Burjatisch","bug":"Buginesisch","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Katalanisch","cad":"Caddo","car":"Karibisch","cay":"Cayuga","cch":"Atsam","ce":"Tschetschenisch","ceb":"Cebuano","cgg":"Rukiga","ch":"Chamorro-Sprache","chb":"Chibcha-Sprache","chg":"Tschagataisch","chk":"Trukesisch","chm":"Tscheremissisch","chn":"Chinook","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani","co":"Korsisch","cop":"Koptisch","cps":"Capiznon","cr":"Cree","crh":"Krimtatarisch","cs":"Tschechisch","csb":"Kaschubisch","cu":"Kirchenslawisch","cv":"Tschuwaschisch","cy":"Walisisch","da":"Dänisch","dak":"Dakota-Sprache","dar":"Darginisch","dav":"Taita","de":"Deutsch","de-AT":"Österreichisches Deutsch","de-CH":"Schweizer Hochdeutsch","del":"Delaware-Sprache","den":"Slave","dgr":"Dogrib","din":"Dinka-Sprache","dje":"Zarma","doi":"Dogri","dsb":"Niedersorbisch","dtp":"Zentral-Dusun","dua":"Duala","dum":"Mittelniederländisch","dv":"Maledivisch","dyo":"Diola","dyu":"Dyula-Sprache","dz":"Bhutanisch","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilianisch","egy":"Ägyptisch","eka":"Ekajuk","el":"Griechisch","elx":"Elamisch","en":"Englisch","en-AU":"Australisches Englisch","en-CA":"Kanadisches Englisch","en-GB":"Britisches Englisch","en-GB-alt-short":"UK-Englisch","en-US":"Amerikanisches Englisch","en-US-alt-short":"US-Englisch","enm":"Mittelenglisch","eo":"Esperanto","es":"Spanisch","es-419":"Lateinamerikanisches Spanisch","es-ES":"Europäisches Spanisch","es-MX":"Mexikanisches Spanisch","esu":"Zentral-Alaska-Yupik","et":"Estnisch","eu":"Baskisch","ewo":"Ewondo","ext":"Extremadurisch","fa":"Persisch","fan":"Pangwe-Sprache","fat":"Fanti-Sprache","ff":"Ful","fi":"Finnisch","fil":"Filipino","fit":"Meänkieli","fj":"Fidschi","fo":"Färöisch","fon":"Fon-Sprache","fr":"Französisch","fr-CA":"Kanadisches Französisch","fr-CH":"Schweizer Französisch","frc":"Cajun","frm":"Mittelfranzösisch","fro":"Altfranzösisch","frp":"Frankoprovenzalisch","frr":"Nordfriesisch","frs":"Ostfriesisch","fur":"Friulisch","fy":"Westfriesisch","ga":"Irisch","gaa":"Ga-Sprache","gag":"Gagausisch","gan":"Gan","gay":"Gayo","gba":"Gbaya-Sprache","gbz":"Gabri","gd":"Schottisches Gälisch","gez":"Geez","gil":"Gilbertesisch","gl":"Galizisch","glk":"Gilaki","gmh":"Mittelhochdeutsch","gn":"Guarani","goh":"Althochdeutsch","gom":"Goa-Konkani","gon":"Gondi-Sprache","gor":"Mongondou","got":"Gotisch","grb":"Grebo-Sprache","grc":"Altgriechisch","gsw":"Schweizerdeutsch","gu":"Gujarati","guc":"Wayúu","gur":"Farefare","guz":"Gusii","gv":"Manx","gwi":"Kutchin-Sprache","ha":"Hausa","hai":"Haida-Sprache","hak":"Hakka","haw":"Hawaiisch","he":"Hebräisch","hi":"Hindi","hif":"Fidschi-Hindi","hil":"Hiligaynon-Sprache","hit":"Hethitisch","hmn":"Miao-Sprache","ho":"Hiri-Motu","hr":"Kroatisch","hsb":"Obersorbisch","hsn":"Xiang","ht":"Haitianisch","hu":"Ungarisch","hup":"Hupa","hy":"Armenisch","hz":"Herero-Sprache","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesisch","ie":"Interlingue","ig":"Igbo","ii":"Yi","ik":"Inupiak","ilo":"Ilokano-Sprache","inh":"Inguschisch","io":"Ido-Sprache","is":"Isländisch","it":"Italienisch","iu":"Inuktitut","izh":"Ischorisch","ja":"Japanisch","jam":"Jamaikanisch-kreolische Sprache","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Jüdisch-Persisch","jrb":"Jüdisch-Arabisch","jut":"Jütisch","jv":"Javanisch","ka":"Georgisch","kaa":"Karakalpakisch","kab":"Kabylisch","kac":"Kachin-Sprache","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardinisch","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongolesisch","kgp":"Kaingang","kha":"Khasi-Sprache","kho":"Sakisch","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kwanyama","kk":"Kasachisch","kkj":"Kako","kl":"Grönländisch","kln":"Kalenjin","km":"Kambodschanisch","kmb":"Kimbundu-Sprache","kn":"Kannada","ko":"Koreanisch","koi":"Komi-Permjakisch","kok":"Konkani","kos":"Kosraeanisch","kpe":"Kpelle-Sprache","kr":"Kanuri-Sprache","krc":"Karatschaiisch-Balkarisch","kri":"Krio","krj":"Kinaray-a","krl":"Karelisch","kru":"Oraon-Sprache","ks":"Kaschmirisch","ksb":"Shambala","ksf":"Bafia","ksh":"Kölsch","ku":"Kurdisch","kum":"Kumükisch","kut":"Kutenai-Sprache","kv":"Komi-Sprache","kw":"Kornisch","ky":"Kirgisisch","la":"Latein","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba-Sprache","lb":"Luxemburgisch","lez":"Lesgisch","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgisch","lij":"Ligurisch","liv":"Livisch","lkt":"Lakota","lmo":"Lombardisch","ln":"Lingala","lo":"Laotisch","lol":"Mongo","loz":"Rotse-Sprache","lt":"Litauisch","ltg":"Lettgallisch","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno-Sprache","lun":"Lunda-Sprache","luo":"Luo-Sprache","lus":"Lushai-Sprache","luy":"Luhya","lv":"Lettisch","lzh":"Klassisches Chinesisch","lzz":"Lasisch","mad":"Maduresisch","maf":"Mafa","mag":"Khotta","mai":"Maithili","mak":"Makassarisch","man":"Manding-Sprache","mas":"Massai-Sprache","mde":"Maba","mdf":"Moksha","mdr":"Mandaresisch","men":"Mende-Sprache","mer":"Meru","mfe":"Morisyen","mg":"Madagassisch","mga":"Mittelirisch","mgh":"Makhuwa-Meetto","mgo":"Meta’","mh":"Marschallesisch","mi":"Maori","mic":"Micmac-Sprache","min":"Minangkabau-Sprache","mk":"Mazedonisch","ml":"Malayalam","mn":"Mongolisch","mnc":"Mandschurisch","mni":"Meithei-Sprache","moh":"Mohawk","mos":"Mossi-Sprache","mr":"Marathi","mrj":"Bergmari","ms":"Malaiisch","mt":"Maltesisch","mua":"Mundang","mul":"Mehrsprachig","mus":"Muskogee-Sprache","mwl":"Mirandesisch","mwr":"Marwari","mwv":"Mentawai","my":"Birmanisch","mye":"Myene","myv":"Ersja-Mordwinisch","mzn":"Masanderanisch","na":"Nauruisch","nan":"Min Nan","nap":"Neapolitanisch","naq":"Nama","nb":"Norwegisch Bokmål","nd":"Nord-Ndebele-Sprache","nds":"Niederdeutsch","ne":"Nepalesisch","new":"Newari","ng":"Ndonga","nia":"Nias-Sprache","niu":"Niue-Sprache","njo":"Ao-Naga","nl":"Niederländisch","nl-BE":"Flämisch","nmg":"Kwasio","nn":"Norwegisch Nynorsk","nnh":"Ngiemboon","no":"Norwegisch","nog":"Nogai","non":"Altnordisch","nov":"Novial","nqo":"N’Ko","nr":"Süd-Ndebele-Sprache","nso":"Nord-Sotho-Sprache","nus":"Nuer","nv":"Navajo","nwc":"Alt-Newari","ny":"Nyanja-Sprache","nym":"Nyamwezi-Sprache","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Okzitanisch","oj":"Ojibwa-Sprache","om":"Oromo","or":"Oriya","os":"Ossetisch","osa":"Osage-Sprache","ota":"Osmanisch","pa":"Panjabi","pag":"Pangasinan-Sprache","pal":"Mittelpersisch","pam":"Pampanggan-Sprache","pap":"Papiamento","pau":"Palau","pcd":"Picardisch","pdc":"Pennsylvaniadeutsch","pdt":"Plautdietsch","peo":"Altpersisch","pfl":"Pfälzisch","phn":"Phönikisch","pi":"Pali","pl":"Polnisch","pms":"Piemontesisch","pnt":"Pontisch","pon":"Ponapeanisch","prg":"Altpreußisch","pro":"Altprovenzalisch","ps":"Paschtu","pt":"Portugiesisch","pt-BR":"Brasilianisches Portugiesisch","pt-PT":"Europäisches Portugiesisch","qu":"Quechua","quc":"K’iche’","qug":"Chimborazo Hochland-Quechua","raj":"Rajasthani","rap":"Osterinsel-Sprache","rar":"Rarotonganisch","rgn":"Romagnol","rif":"Tarifit","rm":"Rätoromanisch","rn":"Rundi-Sprache","ro":"Rumänisch","ro-MD":"Moldauisch","rof":"Rombo","rom":"Romani","root":"Root","rtm":"Rotumanisch","ru":"Russisch","rue":"Russinisch","rug":"Roviana","rup":"Aromunisch","rw":"Ruandisch","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe-Sprache","sah":"Jakutisch","sam":"Samaritanisch","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardisch","scn":"Sizilianisch","sco":"Schottisch","sd":"Sindhi","sdc":"Sassarisch","se":"Nord-Samisch","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkupisch","ses":"Koyra Senni","sg":"Sango","sga":"Altirisch","sgs":"Samogitisch","sh":"Serbo-Kroatisch","shi":"Taschelhit","shn":"Schan-Sprache","shu":"Tschadisch-Arabisch","si":"Singhalesisch","sid":"Sidamo","sk":"Slowakisch","sl":"Slowenisch","sli":"Schlesisch","sly":"Selayar","sm":"Samoanisch","sma":"Süd-Samisch","smj":"Lule-Lappisch","smn":"Inari-Lappisch","sms":"Skolt-Lappisch","sn":"Shona","snk":"Soninke-Sprache","so":"Somali","sog":"Sogdisch","sq":"Albanisch","sr":"Serbisch","srn":"Srananisch","srr":"Serer-Sprache","ss":"Swazi","ssy":"Saho","st":"Süd-Sotho-Sprache","stq":"Saterfriesisch","su":"Sundanesisch","suk":"Sukuma-Sprache","sus":"Susu","sux":"Sumerisch","sv":"Schwedisch","sw":"Suaheli","swb":"Komorisch","swc":"Kongo-Suaheli","syc":"Altsyrisch","syr":"Syrisch","szl":"Schlesisch (Polen)","ta":"Tamilisch","tcy":"Tulu","te":"Telugu","tem":"Temne","teo":"Teso","ter":"Tereno-Sprache","tet":"Tetum-Sprache","tg":"Tadschikisch","th":"Thailändisch","ti":"Tigrinja","tig":"Tigre","tiv":"Tiv-Sprache","tk":"Turkmenisch","tkl":"Tokelauanisch","tkr":"Tsachurisch","tl":"Tagalog","tlh":"Klingonisch","tli":"Tlingit-Sprache","tly":"Talisch","tmh":"Tamaseq","tn":"Tswana-Sprache","to":"Tongaisch","tog":"Tsonga-Sprache","tpi":"Neumelanesisch","tr":"Türkisch","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonisch","tsi":"Tsimshian-Sprache","tt":"Tatarisch","ttt":"Tatisch","tum":"Tumbuka-Sprache","tvl":"Elliceanisch","tw":"Twi","twq":"Tasawaq","ty":"Tahitisch","tyv":"Tuwinisch","tzm":"Zentralatlas-Tamazight","udm":"Udmurtisch","ug":"Uigurisch","uga":"Ugaritisch","uk":"Ukrainisch","umb":"Mbundu-Sprache","und":"Unbestimmte Sprache","ur":"Urdu","uz":"Usbekisch","vai":"Vai","ve":"Venda-Sprache","vec":"Venetisch","vep":"Wepsisch","vi":"Vietnamesisch","vls":"Westflämisch","vmf":"Mainfränkisch","vo":"Volapük","vot":"Wotisch","vro":"Võro","vun":"Vunjo","wa":"Wallonisch","wae":"Walser-Dialekte","wal":"Walamo-Sprache","war":"Waray","was":"Washo-Sprache","wo":"Wolof","wuu":"Wu","xal":"Kalmückisch","xh":"Xhosa","xmf":"Mingrelisch","xog":"Soga","yao":"Yao-Sprache","yap":"Yapesisch","yav":"Yangben","ybb":"Yemba","yi":"Jiddisch","yo":"Yoruba","yrl":"Nheengatu","yue":"Kantonesisch","za":"Zhuang","zap":"Zapotekisch","zbl":"Bliss-Symbole","zea":"Seeländisch","zen":"Zenaga","zgh":"Tamazight","zh":"Chinesisch","zh-Hans":"Chinesisch (vereinfacht)","zh-Hant":"Chinesisch (traditionell)","zu":"Zulu","zun":"Zuni-Sprache","zxx":"Keine Sprachinhalte","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/de/listPatterns.json b/Punic/data/de/listPatterns.json new file mode 100644 index 0000000..47e6558 --- /dev/null +++ b/Punic/data/de/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s und %2$s","2":"%1$s und %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s und %2$s","2":"%1$s und %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s und %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s und %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/de/localeDisplayNames.json b/Punic/data/de/localeDisplayNames.json new file mode 100644 index 0000000..b64c0ab --- /dev/null +++ b/Punic/data/de/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Kalender","colAlternate":"Sortierung ohne Symbole","colBackwards":"Umgekehrte Sortierung von Akzenten","colCaseFirst":"Sortierung nach Groß- bzw. Kleinbuchstaben","colCaseLevel":"Sortierung nach Groß- oder Kleinschreibung","colHiraganaQuaternary":"Kana-Sortierung","colNormalization":"Normierte Sortierung","colNumeric":"Sortierung nach Zahlen","colStrength":"Sortierstärke","collation":"Sortierung","currency":"Währung","numbers":"Zahlen","timezone":"Zeitzone","va":"Lokale Variante","variableTop":"Nach Symbolen sortieren","x":"Privatnutzung"},"types":{"numbers":{"vaii":"Vai-Ziffern"},"collation":{"zhuyin":"Zhuyin-Sortierregeln"},"calendar":{"roc":"Kalender der Republik China"},"colStrength":{"tertiary":"Akzente/Fall/Breite sortieren"},"colCaseFirst":{"upper":"Großbuchstaben zuerst aufführen"},"colBackwards":{"yes":"Akzente umgekehrt sortieren"},"colCaseLevel":{"yes":"Nach Groß-/Kleinschreibung sortieren"},"colHiraganaQuaternary":{"yes":"Kana anders sortieren"},"colNormalization":{"yes":"Nach Unicode sortieren"},"colNumeric":{"yes":"Ziffern numerisch sortieren"},"colAlternate":{"shifted":"Symbole sortieren ignorieren"}},"codePatterns":{"language":"Sprache: %1$s","script":"Schrift: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/de/numbers.json b/Punic/data/de/numbers.json new file mode 100644 index 0000000..419e70a --- /dev/null +++ b/Punic/data/de/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"·","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/de/territories.json b/Punic/data/de/territories.json new file mode 100644 index 0000000..d4e2921 --- /dev/null +++ b/Punic/data/de/territories.json @@ -0,0 +1 @@ +{"001":"Welt","002":"Afrika","003":"Nordamerika","005":"Südamerika","009":"Ozeanien","011":"Westafrika","013":"Mittelamerika","014":"Ostafrika","015":"Nordafrika","017":"Zentralafrika","018":"Südliches Afrika","019":"Amerika","021":"Nördliches Amerika","029":"Karibik","030":"Ostasien","034":"Südasien","035":"Südostasien","039":"Südeuropa","053":"Australasien","054":"Melanesien","057":"Mikronesisches Inselgebiet","061":"Polynesien","142":"Asien","143":"Zentralasien","145":"Westasien","150":"Europa","151":"Osteuropa","154":"Nordeuropa","155":"Westeuropa","419":"Lateinamerika","AC":"Ascension","AD":"Andorra","AE":"Vereinigte Arabische Emirate","AF":"Afghanistan","AG":"Antigua und Barbuda","AI":"Anguilla","AL":"Albanien","AM":"Armenien","AN":"Niederländische Antillen","AO":"Angola","AQ":"Antarktis","AR":"Argentinien","AS":"Amerikanisch-Samoa","AT":"Österreich","AU":"Australien","AW":"Aruba","AX":"Åland-Inseln","AZ":"Aserbaidschan","BA":"Bosnien und Herzegowina","BB":"Barbados","BD":"Bangladesch","BE":"Belgien","BF":"Burkina Faso","BG":"Bulgarien","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"St. Barthélemy","BM":"Bermuda","BN":"Brunei Darussalam","BO":"Bolivien","BQ":"Karibische Niederlande","BR":"Brasilien","BS":"Bahamas","BT":"Bhutan","BV":"Bouvetinsel","BW":"Botsuana","BY":"Belarus","BZ":"Belize","CA":"Kanada","CC":"Kokosinseln","CD":"Kongo-Kinshasa","CD-alt-variant":"Kongo (Demokratische Republik)","CF":"Zentralafrikanische Republik","CG":"Kongo-Brazzaville","CG-alt-variant":"Kongo (Republik)","CH":"Schweiz","CI":"Côte d’Ivoire","CI-alt-variant":"Elfenbeinküste","CK":"Cookinseln","CL":"Chile","CM":"Kamerun","CN":"China","CO":"Kolumbien","CP":"Clipperton-Insel","CR":"Costa Rica","CU":"Kuba","CV":"Kap Verde","CW":"Curaçao","CX":"Weihnachtsinsel","CY":"Zypern","CZ":"Tschechische Republik","DE":"Deutschland","DG":"Diego Garcia","DJ":"Dschibuti","DK":"Dänemark","DM":"Dominica","DO":"Dominikanische Republik","DZ":"Algerien","EA":"Ceuta und Melilla","EC":"Ecuador","EE":"Estland","EG":"Ägypten","EH":"Westsahara","ER":"Eritrea","ES":"Spanien","ET":"Äthiopien","EU":"Europäische Union","FI":"Finnland","FJ":"Fidschi","FK":"Falklandinseln","FK-alt-variant":"Falklandinseln (Malwinen)","FM":"Mikronesien","FO":"Färöer","FR":"Frankreich","GA":"Gabun","GB":"Vereinigtes Königreich","GB-alt-short":"UK","GD":"Grenada","GE":"Georgien","GF":"Französisch-Guayana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grönland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Äquatorialguinea","GR":"Griechenland","GS":"Südgeorgien und die Südlichen Sandwichinseln","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Sonderverwaltungszone Hongkong","HK-alt-short":"Hongkong","HM":"Heard- und McDonald-Inseln","HN":"Honduras","HR":"Kroatien","HT":"Haiti","HU":"Ungarn","IC":"Kanarische Inseln","ID":"Indonesien","IE":"Irland","IL":"Israel","IM":"Isle of Man","IN":"Indien","IO":"Britisches Territorium im Indischen Ozean","IQ":"Irak","IR":"Iran","IS":"Island","IT":"Italien","JE":"Jersey","JM":"Jamaika","JO":"Jordanien","JP":"Japan","KE":"Kenia","KG":"Kirgisistan","KH":"Kambodscha","KI":"Kiribati","KM":"Komoren","KN":"St. Kitts und Nevis","KP":"Demokratische Volksrepublik Korea","KR":"Republik Korea","KW":"Kuwait","KY":"Kaimaninseln","KZ":"Kasachstan","LA":"Laos","LB":"Libanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litauen","LU":"Luxemburg","LV":"Lettland","LY":"Libyen","MA":"Marokko","MC":"Monaco","MD":"Republik Moldau","ME":"Montenegro","MF":"St. Martin","MG":"Madagaskar","MH":"Marshallinseln","MK":"Mazedonien","MK-alt-variant":"Mazedonien (EJR)","ML":"Mali","MM":"Myanmar","MN":"Mongolei","MO":"Sonderverwaltungsregion Macau","MO-alt-short":"Macau","MP":"Nördliche Marianen","MQ":"Martinique","MR":"Mauretanien","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Malediven","MW":"Malawi","MX":"Mexiko","MY":"Malaysia","MZ":"Mosambik","NA":"Namibia","NC":"Neukaledonien","NE":"Niger","NF":"Norfolkinsel","NG":"Nigeria","NI":"Nicaragua","NL":"Niederlande","NO":"Norwegen","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Neuseeland","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Französisch-Polynesien","PG":"Papua-Neuguinea","PH":"Philippinen","PK":"Pakistan","PL":"Polen","PM":"St. Pierre und Miquelon","PN":"Pitcairninseln","PR":"Puerto Rico","PS":"Palästinensische Autonomiegebiete","PS-alt-short":"Palästina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Katar","QO":"Äußeres Ozeanien","RE":"Réunion","RO":"Rumänien","RS":"Serbien","RU":"Russische Föderation","RW":"Ruanda","SA":"Saudi-Arabien","SB":"Salomonen","SC":"Seychellen","SD":"Sudan","SE":"Schweden","SG":"Singapur","SH":"St. Helena","SI":"Slowenien","SJ":"Svalbard und Jan Mayen","SK":"Slowakei","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"Südsudan","ST":"São Tomé und Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syrien","SZ":"Swasiland","TA":"Tristan da Cunha","TC":"Turks- und Caicosinseln","TD":"Tschad","TF":"Französische Süd- und Antarktisgebiete","TG":"Togo","TH":"Thailand","TJ":"Tadschikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"Osttimor","TM":"Turkmenistan","TN":"Tunesien","TO":"Tonga","TR":"Türkei","TT":"Trinidad und Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tansania","UA":"Ukraine","UG":"Uganda","UM":"Amerikanisch-Ozeanien","US":"Vereinigte Staaten","US-alt-short":"USA","UY":"Uruguay","UZ":"Usbekistan","VA":"Vatikanstadt","VC":"St. Vincent und die Grenadinen","VE":"Venezuela","VG":"Britische Jungferninseln","VI":"Amerikanische Jungferninseln","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis und Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Südafrika","ZM":"Sambia","ZW":"Simbabwe","ZZ":"Unbekannte Region"} \ No newline at end of file diff --git a/Punic/data/de/timeZoneNames.json b/Punic/data/de/timeZoneNames.json new file mode 100644 index 0000000..204cf08 --- /dev/null +++ b/Punic/data/de/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Zeit","regionFormat-type-standard":"%1$s Normalzeit","regionFormat-type-daylight":"%1$s Sommerzeit","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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"},"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":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, 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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Kap Verde"},"Faeroe":{"exemplarCity":"Färöer"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reyk­ja­vík"},"South_Georgia":{"exemplarCity":"Südgeorgien"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"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"},"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"},"Uzhgorod":{"exemplarCity":"Uschgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikan"},"Vienna":{"exemplarCity":"Wien"},"Vilnius":{"exemplarCity":"Wilna"},"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"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bischkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kalkutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Tschoibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaskus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Duschanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"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"},"Kashgar":{"exemplarCity":"Kaxgar"},"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"},"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"},"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":"Zeit in Apia","standard":"Normalzeit in Apia","daylight":"Sommerzeit in Apia"}},"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":"Kap-Verde-Zeit","standard":"Kap-Verde-Normalzeit","daylight":"Kap-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"}},"GMT":{"long":{"standard":"Mittlere Greenwich-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"}},"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"}},"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"}}}} \ No newline at end of file diff --git a/Punic/data/de/units.json b/Punic/data/de/units.json new file mode 100644 index 0000000..1d03666 --- /dev/null +++ b/Punic/data/de/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s pro %2$s","acceleration":{"g-force":{"_name":"g-Kraft","one":"%1$s-fache Erdbeschleunigung","other":"%1$s-fache Erdbeschleunigung"},"meter-per-second-squared":{"_name":"Meter pro Quadratsekunde","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"Winkelminuten","one":"%1$s Winkelminute","other":"%1$s Winkelminuten"},"arc-second":{"_name":"Winkelsekunden","one":"%1$s Winkelsekunde","other":"%1$s Winkelsekunden"},"degree":{"_name":"Grad","one":"%1$s Grad","other":"%1$s Grad"},"radian":{"_name":"Radianten","one":"%1$s Radiant","other":"%1$s Radianten"}},"area":{"acre":{"_name":"Acres","one":"%1$s Acre","other":"%1$s Acres"},"hectare":{"_name":"Hektar","one":"%1$s Hektar","other":"%1$s Hektar"},"square-centimeter":{"_name":"Quadratzentimeter","one":"%1$s Quadratzentimeter","other":"%1$s Quadratzentimeter"},"square-foot":{"_name":"Quadratfuß","one":"%1$s Quadratfuß","other":"%1$s Quadratfuß"},"square-inch":{"_name":"Quadratzoll","one":"%1$s Quadratzoll","other":"%1$s Quadratzoll"},"square-kilometer":{"_name":"Quadratkilometer","one":"%1$s Quadratkilometer","other":"%1$s Quadratkilometer"},"square-meter":{"_name":"Quadratmeter","one":"%1$s Quadratmeter","other":"%1$s Quadratmeter"},"square-mile":{"_name":"Quadratmeilen","one":"%1$s Quadratmeile","other":"%1$s Quadratmeilen"},"square-yard":{"_name":"Quadratyards","one":"%1$s Quadratyard","other":"%1$s Quadratyards"}},"consumption":{"liter-per-kilometer":{"_name":"Liter pro Kilometer","one":"%1$s Liter pro Kilometer","other":"%1$s Liter pro Kilometer"},"mile-per-gallon":{"_name":"Meilen pro Gallone","one":"%1$s Meile pro Gallone","other":"%1$s Meilen pro Gallone"}},"digital":{"bit":{"_name":"Bits","one":"%1$s Bit","other":"%1$s Bits"},"byte":{"_name":"Bytes","one":"%1$s Byte","other":"%1$s Bytes"},"gigabit":{"_name":"Gigabits","one":"%1$s Gigabit","other":"%1$s Gigabits"},"gigabyte":{"_name":"Gigabytes","one":"%1$s Gigabyte","other":"%1$s Gigabytes"},"kilobit":{"_name":"Kilobits","one":"%1$s Kilobit","other":"%1$s Kilobits"},"kilobyte":{"_name":"Kilobytes","one":"%1$s Kilobyte","other":"%1$s Kilobytes"},"megabit":{"_name":"Megabits","one":"%1$s Megabit","other":"%1$s Megabits"},"megabyte":{"_name":"Megabytes","one":"%1$s Megabyte","other":"%1$s Megabytes"},"terabit":{"_name":"Terabits","one":"%1$s Terabit","other":"%1$s Terabits"},"terabyte":{"_name":"Terabytes","one":"%1$s Terabyte","other":"%1$s Terabytes"}},"duration":{"day":{"_name":"Tage","one":"%1$s Tag","other":"%1$s Tage"},"hour":{"_name":"Stunden","one":"%1$s Stunde","other":"%1$s Stunden","_per":"%1$s pro Stunde"},"microsecond":{"_name":"Mikrosekunden","one":"%1$s Mikrosekunde","other":"%1$s Mikrosekunden"},"millisecond":{"_name":"Millisekunden","one":"%1$s Millisekunde","other":"%1$s Millisekunden"},"minute":{"_name":"Minuten","one":"%1$s Minute","other":"%1$s Minuten"},"month":{"_name":"Monate","one":"%1$s Monat","other":"%1$s Monate"},"nanosecond":{"_name":"Nanosekunden","one":"%1$s Nanosekunde","other":"%1$s Nanosekunden"},"second":{"_name":"Sekunden","one":"%1$s Sekunde","other":"%1$s Sekunden","_per":"%1$s pro Sekunde"},"week":{"_name":"Wochen","one":"%1$s Woche","other":"%1$s Wochen"},"year":{"_name":"Jahre","one":"%1$s Jahr","other":"%1$s Jahre"}},"electric":{"ampere":{"_name":"Ampere","one":"%1$s Ampere","other":"%1$s Ampere"},"milliampere":{"_name":"Milliampere","one":"%1$s Milliampere","other":"%1$s Milliampere"},"ohm":{"_name":"Ohm","one":"%1$s Ohm","other":"%1$s Ohm"},"volt":{"_name":"Volt","one":"%1$s Volt","other":"%1$s Volt"}},"energy":{"calorie":{"_name":"Kalorien","one":"%1$s Kalorie","other":"%1$s Kalorien"},"foodcalorie":{"_name":"Kilokalorien","one":"%1$s Cal","other":"%1$s Kilokalorien"},"joule":{"_name":"Joule","one":"%1$s Joule","other":"%1$s Joule"},"kilocalorie":{"_name":"Kilokalorien","one":"%1$s Kilokalorie","other":"%1$s Kilokalorien"},"kilojoule":{"_name":"Kilojoule","one":"%1$s Kilojoule","other":"%1$s Kilojoule"},"kilowatt-hour":{"_name":"Kilowattstunden","one":"%1$s Kilowattstunde","other":"%1$s Kilowattstunden"}},"frequency":{"gigahertz":{"_name":"Gigahertz","one":"%1$s Gigahertz","other":"%1$s Gigahertz"},"hertz":{"_name":"Hertz","one":"%1$s Hertz","other":"%1$s Hertz"},"kilohertz":{"_name":"Kilohertz","one":"%1$s Kilohertz","other":"%1$s Kilohertz"},"megahertz":{"_name":"Megahertz","one":"%1$s Megahertz","other":"%1$s Megahertz"}},"length":{"astronomical-unit":{"_name":"Astronomische Einheiten","one":"%1$s AE","other":"%1$s AE"},"centimeter":{"_name":"Zentimeter","one":"%1$s Zentimeter","other":"%1$s Zentimeter"},"decimeter":{"_name":"Dezimeter","one":"%1$s Dezimeter","other":"%1$s Dezimeter"},"fathom":{"_name":"Nautischer Faden","one":"%1$s Faden","other":"%1$s Faden"},"foot":{"_name":"Fuß","one":"%1$s Fuß","other":"%1$s Fuß"},"furlong":{"_name":"Furlong","one":"%1$s Furlong","other":"%1$s Furlong"},"inch":{"_name":"Zoll","one":"%1$s Zoll","other":"%1$s Zoll"},"kilometer":{"_name":"Kilometer","one":"%1$s Kilometer","other":"%1$s Kilometer"},"light-year":{"_name":"Lichtjahre","one":"%1$s Lichtjahr","other":"%1$s Lichtjahre"},"meter":{"_name":"Meter","one":"%1$s Meter","other":"%1$s Meter"},"micrometer":{"_name":"Mikrometer","one":"%1$s Mikrometer","other":"%1$s Mikrometer"},"mile":{"_name":"Meilen","one":"%1$s Meile","other":"%1$s Meilen"},"millimeter":{"_name":"Millimeter","one":"%1$s Millimeter","other":"%1$s Millimeter"},"nanometer":{"_name":"Nanometer","one":"%1$s Nanometer","other":"%1$s Nanometer"},"nautical-mile":{"_name":"Seemeilen","one":"%1$s Seemeile","other":"%1$s Seemeilen"},"parsec":{"_name":"Parsec","one":"%1$s Parsec","other":"%1$s Parsec"},"picometer":{"_name":"Pikometer","one":"%1$s Pikometer","other":"%1$s Pikometer"},"yard":{"_name":"Yards","one":"%1$s Yard","other":"%1$s Yards"}},"light":{"lux":{"_name":"Lux","one":"%1$s Lux","other":"%1$s Lux"}},"mass":{"carat":{"_name":"Karat","one":"%1$s Karat","other":"%1$s Karat"},"gram":{"_name":"Gramm","one":"%1$s Gramm","other":"%1$s Gramm"},"kilogram":{"_name":"Kilogramm","one":"%1$s Kilogramm","other":"%1$s Kilogramm"},"metric-ton":{"_name":"Tonnen","one":"%1$s Tonne","other":"%1$s Tonnen"},"microgram":{"_name":"Mikrogramm","one":"%1$s Mikrogramm","other":"%1$s Mikrogramm"},"milligram":{"_name":"Milligramm","one":"%1$s Milligramm","other":"%1$s Milligramm"},"ounce":{"_name":"Unzen","one":"%1$s Unze","other":"%1$s Unzen"},"ounce-troy":{"_name":"Feinunzen","one":"%1$s Feinunze","other":"%1$s Feinunzen"},"pound":{"_name":"Pfund","one":"%1$s Pfund","other":"%1$s Pfund"},"stone":{"_name":"Stones","one":"%1$s Stone","other":"%1$s Stones"},"ton":{"_name":"Short Tons","one":"%1$s Short Ton","other":"%1$s Short Tons"}},"power":{"gigawatt":{"_name":"Gigawatt","one":"%1$s Gigawatt","other":"%1$s Gigawatt"},"horsepower":{"_name":"Pferdestärken","one":"%1$s Pferdestärke","other":"%1$s Pferdestärken"},"kilowatt":{"_name":"Kilowatt","one":"%1$s Kilowatt","other":"%1$s Kilowatt"},"megawatt":{"_name":"Megawatt","one":"%1$s Megawatt","other":"%1$s Megawatt"},"milliwatt":{"_name":"Milliwatt","one":"%1$s Milliwatt","other":"%1$s Milliwatt"},"watt":{"_name":"Watt","one":"%1$s Watt","other":"%1$s Watt"}},"pressure":{"hectopascal":{"_name":"Hektopascal","one":"%1$s Hektopascal","other":"%1$s Hektopascal"},"inch-hg":{"_name":"Zoll Quecksilbersäule","one":"%1$s Zoll Quecksilbersäule","other":"%1$s Zoll Quecksilbersäule"},"millibar":{"_name":"Millibar","one":"%1$s Millibar","other":"%1$s Millibar"},"millimeter-of-mercury":{"_name":"Millimeter Quecksilbersäule","one":"%1$s Millimeter Quecksilbersäule","other":"%1$s Millimeter Quecksilbersäule"},"pound-per-square-inch":{"_name":"Pfund pro Quadratzoll","one":"%1$s Pfund pro Quadratzoll","other":"%1$s Pfund pro Quadratzoll"}},"proportion":{"karat":{"_name":"Karat","one":"%1$s Karat","other":"%1$s Karat"}},"speed":{"kilometer-per-hour":{"_name":"Kilometer pro Stunde","one":"%1$s Kilometer pro Stunde","other":"%1$s Kilometer pro Stunde"},"meter-per-second":{"_name":"Meter pro Sekunde","one":"%1$s Meter pro Sekunde","other":"%1$s Meter pro Sekunde"},"mile-per-hour":{"_name":"Meilen pro Stunde","one":"%1$s Meile pro Stunde","other":"%1$s Meilen pro Stunde"}},"temperature":{"celsius":{"_name":"Grad Celsius","one":"%1$s Grad Celsius","other":"%1$s Grad Celsius"},"fahrenheit":{"_name":"Grad Fahrenheit","one":"%1$s Grad Fahrenheit","other":"%1$s Grad Fahrenheit"},"kelvin":{"_name":"Kelvin","one":"%1$s Kelvin","other":"%1$s Kelvin"}},"volume":{"acre-foot":{"_name":"Acre-Feet","one":"%1$s Acre-Foot","other":"%1$s Acre-Feet"},"bushel":{"_name":"Bushel","one":"%1$s Bushel","other":"%1$s Bushel"},"centiliter":{"_name":"Zentiliter","one":"%1$s Zentiliter","other":"%1$s Zentiliter"},"cubic-centimeter":{"_name":"Kubikzentimeter","one":"%1$s Kubikzentimeter","other":"%1$s Kubikzentimeter"},"cubic-foot":{"_name":"Kubikfuß","one":"%1$s Kubikfuß","other":"%1$s Kubikfuß"},"cubic-inch":{"_name":"Kubikzoll","one":"%1$s Kubikzoll","other":"%1$s Kubikzoll"},"cubic-kilometer":{"_name":"Kubikkilometer","one":"%1$s Kubikkilometer","other":"%1$s Kubikkilometer"},"cubic-meter":{"_name":"Kubikmeter","one":"%1$s Kubikmeter","other":"%1$s Kubikmeter"},"cubic-mile":{"_name":"Kubikmeilen","one":"%1$s Kubikmeile","other":"%1$s Kubikmeilen"},"cubic-yard":{"_name":"Kubikyards","one":"%1$s Kubikyard","other":"%1$s Kubikyards"},"cup":{"_name":"Cups","one":"%1$s Cup","other":"%1$s Cups"},"deciliter":{"_name":"Deziliter","one":"%1$s Deziliter","other":"%1$s Deziliter"},"fluid-ounce":{"_name":"Flüssigunzen","one":"%1$s Flüssigunze","other":"%1$s Flüssigunzen"},"gallon":{"_name":"Gallonen","one":"%1$s Gallone","other":"%1$s Gallonen"},"hectoliter":{"_name":"Hektoliter","one":"%1$s Hektoliter","other":"%1$s Hektoliter"},"liter":{"_name":"Liter","one":"%1$s Liter","other":"%1$s Liter"},"megaliter":{"_name":"Megaliter","one":"%1$s Megaliter","other":"%1$s Megaliter"},"milliliter":{"_name":"Milliliter","one":"%1$s Milliliter","other":"%1$s Milliliter"},"pint":{"_name":"Pints","one":"%1$s Pint","other":"%1$s Pints"},"quart":{"_name":"Quart","one":"%1$s Quart","other":"%1$s Quart"},"tablespoon":{"_name":"Esslöffel","one":"%1$s Esslöffel","other":"%1$s Esslöffel"},"teaspoon":{"_name":"Teelöffel","one":"%1$s Teelöffel","other":"%1$s Teelöffel"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-Kraft","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"Winkelminuten","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"Winkelsekunden","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"Grad","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"Acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"Hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"Bit","one":"%1$s Bit","other":"%1$s Bits"},"byte":{"_name":"Byte","one":"%1$s Byte","other":"%1$s Bytes"},"gigabit":{"_name":"Gigabit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"Gigabyte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kbyte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"Mbyte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"Tage","one":"%1$s T","other":"%1$s T"},"hour":{"_name":"Stunden","one":"%1$s Std.","other":"%1$s Std.","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"Millisekunden","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"Min.","one":"%1$s Min.","other":"%1$s Min."},"month":{"_name":"Monate","one":"%1$s Mon","other":"%1$s Mon"},"nanosecond":{"_name":"Nanosekunden","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"Sek.","one":"%1$s Sek.","other":"%1$s Sek.","_per":"%1$s/s"},"week":{"_name":"Wochen","one":"%1$s W","other":"%1$s W"},"year":{"_name":"Jahre","one":"%1$s J","other":"%1$s J"}},"electric":{"ampere":{"_name":"Ampere","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"Volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"Joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"Kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AE","one":"%1$s AE","other":"%1$s AE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"Faden","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"Fuß","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"Furlong","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"Zoll","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"Kilometer","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"Lichtjahre","one":"%1$s Lj","other":"%1$s Lj"},"meter":{"_name":"Meter","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"Meilen","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"Millimeter","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"sm","one":"%1$s sm","other":"%1$s sm"},"parsec":{"_name":"Parsec","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"Pikometer","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"Yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"Lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"Karat","one":"%1$s Kt","other":"%1$s Kt"},"gram":{"_name":"Gramm","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"Unzen","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz.tr.","one":"%1$s oz.tr.","other":"%1$s oz.tr."},"pound":{"_name":"Pfund","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"Stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"Tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"Pferdestärken","one":"%1$s PS","other":"%1$s PS"},"kilowatt":{"_name":"Kilowatt","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"Watt","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"Millibar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"Karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"Acre-Feet","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"Bushel","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"Cups","one":"%1$s Cup","other":"%1$s Cups"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"Liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"Pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"Quart","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"EL","one":"%1$s EL","other":"%1$s EL"},"teaspoon":{"_name":"TL","one":"%1$s TL","other":"%1$s TL"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-Kraft","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"Winkelminuten","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"Winkelsekunden","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"Grad","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"Acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"Hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"Bit","one":"%1$s Bit","other":"%1$s Bits"},"byte":{"_name":"Byte","one":"%1$s Byte","other":"%1$s Bytes"},"gigabit":{"_name":"Gigabit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"Gigabyte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kbyte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"Mbyte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"Tag","one":"%1$s T","other":"%1$s T"},"hour":{"_name":"Std.","one":"%1$s Std.","other":"%1$s Std.","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"Millisekunden","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"Min.","one":"%1$s Min.","other":"%1$s Min."},"month":{"_name":"Monat","one":"%1$s M","other":"%1$s M"},"nanosecond":{"_name":"Nanosekunden","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"Sek.","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"Woche","one":"%1$s W","other":"%1$s W"},"year":{"_name":"J","one":"%1$s J","other":"%1$s J"}},"electric":{"ampere":{"_name":"Ampere","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"Volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"Joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"Kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AE","one":"%1$s AE","other":"%1$s AE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"Faden","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"Fuß","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"Furlong","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"Zoll","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"Lichtjahre","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"Meter","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"Meilen","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"sm","one":"%1$s sm","other":"%1$s sm"},"parsec":{"_name":"Parsec","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"Pikometer","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"Yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"Lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"Karat","one":"%1$s Kt","other":"%1$s Kt"},"gram":{"_name":"Gramm","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"Unzen","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz.tr.","one":"%1$s oz.tr.","other":"%1$s oz.tr."},"pound":{"_name":"Pfund","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"Stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"Tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"Pferdestärken","one":"%1$s PS","other":"%1$s PS"},"kilowatt":{"_name":"Kilowatt","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"Watt","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"Millibar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"Karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"Acre-Feet","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"Bushel","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"Cups","one":"%1$s Cup","other":"%1$s Cups"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"Liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"Pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"Quart","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"EL","one":"%1$s EL","other":"%1$s EL"},"teaspoon":{"_name":"TL","one":"%1$s TL","other":"%1$s TL"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/el/calendar.json b/Punic/data/el/calendar.json new file mode 100644 index 0000000..f150d76 --- /dev/null +++ b/Punic/data/el/calendar.json @@ -0,0 +1 @@ +{"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":"Τ1","2":"Τ2","3":"Τ3","4":"Τ4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1ο τρίμηνο","2":"2ο τρίμηνο","3":"3ο τρίμηνο","4":"4ο τρίμηνο"}},"stand-alone":{"abbreviated":{"1":"Τ1","2":"Τ2","3":"Τ3","4":"Τ4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1ο τρίμηνο","2":"2ο τρίμηνο","3":"3ο τρίμηνο","4":"4ο τρίμηνο"}}},"dayPeriods":{"format":{"abbreviated":{"am":"π.μ.","noon":"μεσημέρι","pm":"μ.μ."},"narrow":{"am":"π","noon":"μεσ.","pm":"μ"},"wide":{"am":"π.μ.","noon":"μεσημέρι","pm":"μ.μ."}},"stand-alone":{"abbreviated":{"am":"π.μ.","noon":"μεσημέρι","pm":"μ.μ."},"narrow":{"am":"π","noon":"μεσ.","pm":"μ"},"wide":{"am":"π.μ.","noon":"μεσημέρι","pm":"μ.μ."}}},"eras":{"wide":{"0":"προ Χριστού","0-alt-variant":"πριν από την Κοινή Χρονολογία","1":"μετά Χριστόν","1-alt-variant":"Κοινή Χρονολογία"},"abbreviated":{"0":"π.Χ.","0-alt-variant":"π.Κ.Χ.","1":"μ.Χ.","1-alt-variant":"ΚΧ"},"narrow":{"0":"π.Χ.","0-alt-variant":"π.Κ.Χ.","1":"μ.Χ.","1-alt-variant":"ΚΧ"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"d/M/yy"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s - %1$s","long":"%2$s - %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/el/dateFields.json b/Punic/data/el/dateFields.json new file mode 100644 index 0000000..732bde8 --- /dev/null +++ b/Punic/data/el/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Περίοδος"},"year":{"displayName":"Έτος","relative-type--1":"προηγούμενο έτος","relative-type-0":"φέτος","relative-type-1":"επόμενο έτος","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} έτος","relativeTimePattern-count-other":"σε {0} έτη"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} έτος","relativeTimePattern-count-other":"πριν από {0} έτη"}},"year-short":{"displayName":"έτ.","relative-type--1":"προηγούμενο έτος","relative-type-0":"φέτος","relative-type-1":"επόμενο έτος","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} έτος","relativeTimePattern-count-other":"σε {0} έτη"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} έτος","relativeTimePattern-count-other":"πριν από {0} έτη"}},"year-narrow":{"displayName":"έτ.","relative-type--1":"προηγούμενο έτος","relative-type-0":"φέτος","relative-type-1":"επόμενο έτος","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} έτος","relativeTimePattern-count-other":"+{0} έτη"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} έτος","relativeTimePattern-count-other":"-{0} έτη"}},"quarter":{"displayName":"Τρίμηνο","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} τρίμηνο","relativeTimePattern-count-other":"σε {0} τρίμηνα"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} τρίμηνο","relativeTimePattern-count-other":"πριν από {0} τρίμηνα"}},"quarter-short":{"displayName":"τρίμ.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} τρίμ.","relativeTimePattern-count-other":"σε {0} τρίμ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} τρίμ.","relativeTimePattern-count-other":"πριν από {0} τρίμ."}},"quarter-narrow":{"displayName":"τρίμ.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Τ","relativeTimePattern-count-other":"+{0} Τ"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Τ","relativeTimePattern-count-other":"-{0} Τ"}},"month":{"displayName":"Μήνας","relative-type--1":"προηγούμενος μήνας","relative-type-0":"τρέχων μήνας","relative-type-1":"επόμενος μήνας","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} μήνα","relativeTimePattern-count-other":"σε {0} μήνες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} μήνα","relativeTimePattern-count-other":"πριν από {0} μήνες"}},"month-short":{"displayName":"μήν.","relative-type--1":"προηγούμενος μήνας","relative-type-0":"τρέχων μήνας","relative-type-1":"επόμενος μήνας","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} μήν.","relativeTimePattern-count-other":"σε {0} μήν."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} μήν.","relativeTimePattern-count-other":"πριν από {0} μήν."}},"month-narrow":{"displayName":"μήν.","relative-type--1":"προηγούμενος μήνας","relative-type-0":"τρέχων μήνας","relative-type-1":"επόμενος μήνας","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} μήν.","relativeTimePattern-count-other":"+{0} μήν."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} μήν.","relativeTimePattern-count-other":"-{0} μήν."}},"week":{"displayName":"Εβδομάδα","relative-type--1":"προηγούμενη εβδομάδα","relative-type-0":"αυτήν την εβδομάδα","relative-type-1":"επόμενη εβδομάδα","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} εβδομάδα","relativeTimePattern-count-other":"σε {0} εβδομάδες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} εβδομάδα","relativeTimePattern-count-other":"πριν από {0} εβδομάδες"}},"week-short":{"displayName":"εβδ.","relative-type--1":"προηγούμενη εβδομάδα","relative-type-0":"αυτήν την εβδομάδα","relative-type-1":"επόμενη εβδομάδα","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} εβδ.","relativeTimePattern-count-other":"σε {0} εβδ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} εβδ.","relativeTimePattern-count-other":"πριν από {0} εβδ."}},"week-narrow":{"displayName":"εβδ.","relative-type--1":"προηγούμενη εβδομάδα","relative-type-0":"αυτήν την εβδομάδα","relative-type-1":"επόμενη εβδομάδα","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} εβδ.","relativeTimePattern-count-other":"+{0} εβδ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} εβδ.","relativeTimePattern-count-other":"-{0} εβδ."}},"day":{"displayName":"Ημέρα","relative-type--1":"χθες","relative-type--2":"προχθές","relative-type-0":"σήμερα","relative-type-1":"αύριο","relative-type-2":"μεθαύριο","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} ημέρα","relativeTimePattern-count-other":"σε {0} ημέρες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} ημέρα","relativeTimePattern-count-other":"πριν από {0} ημέρες"}},"day-short":{"displayName":"ημέρα","relative-type--1":"χθες","relative-type--2":"προχθές","relative-type-0":"σήμερα","relative-type-1":"αύριο","relative-type-2":"μεθαύριο","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} ημέρα","relativeTimePattern-count-other":"σε {0} ημέρες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} ημέρα","relativeTimePattern-count-other":"πριν από {0} ημέρες"}},"day-narrow":{"displayName":"ημέρα","relative-type--1":"χθες","relative-type--2":"προχθές","relative-type-0":"σήμερα","relative-type-1":"αύριο","relative-type-2":"μεθαύριο","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} ημέρα","relativeTimePattern-count-other":"σε {0} ημέρες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} ημέρα","relativeTimePattern-count-other":"πριν από {0} ημέρες"}},"weekday":{"displayName":"Ημέρα εβδομάδας"},"sun":{"relative-type--1":"προηγούμενη Κυριακή","relative-type-0":"αυτήν την Κυριακή","relative-type-1":"επόμενη Κυριακή"},"sun-short":{"relative-type--1":"προηγ. Κυρ.","relative-type-0":"αυτήν την Κυρ.","relative-type-1":"επόμ. Κυρ."},"sun-narrow":{"relative-type--1":"προηγ. Κυ","relative-type-0":"αυτήν την Κυ","relative-type-1":"επόμ. Κυ"},"mon":{"relative-type--1":"προηγούμενη Δευτέρα","relative-type-0":"αυτήν τη Δευτέρα","relative-type-1":"επόμενη Δευτέρα"},"mon-short":{"relative-type--1":"προηγ. Δευτ.","relative-type-0":"αυτήν τη Δευτ.","relative-type-1":"επόμ. Δευτ."},"mon-narrow":{"relative-type--1":"προηγ. Δε","relative-type-0":"αυτήν τη Δε","relative-type-1":"επόμ. Δε"},"tue":{"relative-type--1":"προηγούμενη Τρίτη","relative-type-0":"αυτήν την Τρίτη","relative-type-1":"επόμενη Τρίτη"},"tue-short":{"relative-type--1":"προηγ. Τρ.","relative-type-0":"αυτήν την Τρ.","relative-type-1":"επόμ. Τρ."},"tue-narrow":{"relative-type--1":"προηγ. Τρ","relative-type-0":"αυτήν την Τρ","relative-type-1":"επόμ. Τρ"},"wed":{"relative-type--1":"προηγούμενη Τετάρτη","relative-type-0":"αυτήν την Τετάρτη","relative-type-1":"επόμενη Τετάρτη"},"wed-short":{"relative-type--1":"προηγ. Τετ.","relative-type-0":"αυτήν την Τετ.","relative-type-1":"επόμ. Τετ."},"wed-narrow":{"relative-type--1":"προηγ. Τε","relative-type-0":"αυτήν την Τε","relative-type-1":"επόμ. Τε"},"thu":{"relative-type--1":"επόμενη Πέμπτη","relative-type-0":"αυτήν την Πέμπτη","relative-type-1":"επόμενη Πέμπτη"},"thu-short":{"relative-type--1":"προηγ. Πέμ.","relative-type-0":"αυτήν την Πέμ.","relative-type-1":"επόμ. Πέμ."},"thu-narrow":{"relative-type--1":"προηγ. Πέ","relative-type-0":"αυτήν την Πέ","relative-type-1":"επόμ. Πέ"},"fri":{"relative-type--1":"προηγούμενη Παρασκευή","relative-type-0":"αυτήν την Παρασκευή","relative-type-1":"επόμενη Παρασκευή"},"fri-short":{"relative-type--1":"προηγ. Παρ.","relative-type-0":"αυτήν την Παρ.","relative-type-1":"επόμ. Παρ."},"fri-narrow":{"relative-type--1":"προηγ. Πα","relative-type-0":"αυτήν την Πα","relative-type-1":"επόμ. Πα"},"sat":{"relative-type--1":"προηγούμενο Σάββατο","relative-type-0":"αυτό το Σάββατο","relative-type-1":"επόμενο Σάββατο"},"sat-short":{"relative-type--1":"προηγ. Σάβ.","relative-type-0":"αυτό το Σάβ.","relative-type-1":"επόμ. Σάβ."},"sat-narrow":{"relative-type--1":"προηγ. Σά","relative-type-0":"αυτό το Σά","relative-type-1":"επόμ. Σά"},"dayperiod":{"displayName":"π.μ./μ.μ."},"hour":{"displayName":"Ώρα","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} ώρα","relativeTimePattern-count-other":"σε {0} ώρες"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} ώρα","relativeTimePattern-count-other":"πριν από {0} ώρες"}},"hour-short":{"displayName":"ώρ.","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} ώρα","relativeTimePattern-count-other":"σε {0} ώρ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} ώρα","relativeTimePattern-count-other":"πριν από {0} ώρ."}},"hour-narrow":{"displayName":"ώ","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} ώ","relativeTimePattern-count-other":"+{0} ώ"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} ώ","relativeTimePattern-count-other":"-{0} ώ"}},"minute":{"displayName":"Λεπτό","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} λεπτό","relativeTimePattern-count-other":"σε {0} λεπτά"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} λεπτό","relativeTimePattern-count-other":"πριν από {0} λεπτά"}},"minute-short":{"displayName":"λεπ.","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} λεπ.","relativeTimePattern-count-other":"σε {0} λεπ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} λεπ.","relativeTimePattern-count-other":"πριν από {0} λεπ."}},"minute-narrow":{"displayName":"λ","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} λ","relativeTimePattern-count-other":"+{0} λ"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} λ","relativeTimePattern-count-other":"-{0} λ"}},"second":{"displayName":"Δευτερόλεπτο","relative-type-0":"τώρα","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} δευτερόλεπτο","relativeTimePattern-count-other":"σε {0} δευτερόλεπτα"},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} δευτερόλεπτο","relativeTimePattern-count-other":"πριν από {0} δευτερόλεπτα"}},"second-short":{"displayName":"δευτ.","relative-type-0":"τώρα","relativeTime-type-future":{"relativeTimePattern-count-one":"σε {0} δευτ.","relativeTimePattern-count-other":"σε {0} δευτ."},"relativeTime-type-past":{"relativeTimePattern-count-one":"πριν από {0} δευτ.","relativeTimePattern-count-other":"πριν από {0} δευτ."}},"second-narrow":{"displayName":"δ","relative-type-0":"τώρα","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} δ","relativeTimePattern-count-other":"+{0} δ"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} δ","relativeTimePattern-count-other":"-{0} δ"}},"zone":{"displayName":"Ζώνη ώρας"}} \ No newline at end of file diff --git a/Punic/data/el/languages.json b/Punic/data/el/languages.json new file mode 100644 index 0000000..dde7be9 --- /dev/null +++ b/Punic/data/el/languages.json @@ -0,0 +1 @@ +{"aa":"Αφάρ","ab":"Αμπχαζικά","ace":"Αχινίζ","ach":"Ακολί","ada":"Αντάνγκμε","ady":"Αντιγκέα","ae":"Αβεστάν","aeb":"aeb","af":"Αφρικάανς","afh":"Αφριχίλι","agq":"Αγκέμ","ain":"Αϊνού","ak":"Ακάν","akk":"Ακάντιαν","akz":"akz","ale":"Αλούτ","aln":"aln","alt":"Νότια Αλαταϊκά","am":"Αμαρικά","an":"Αραγκονικά","ang":"Παλαιά Αγγλικά","anp":"Ανγκικά","ar":"Αραβικά","ar-001":"Σύγχρονα Τυπικά Αραβικά","arc":"Αραμαϊκά","arn":"Αρουκάνιαν","aro":"aro","arp":"Αράπαχο","arq":"arq","arw":"Αραγουάκ","ary":"ary","arz":"arz","as":"Ασαμεζικά","asa":"Άσου","ase":"ase","ast":"Αστουριανά","av":"Άβαρικ","avk":"avk","awa":"Αγουαντί","ay":"Αϊμάρα","az":"Αζερμπαϊτζανικά","az-alt-short":"Αζερικά","azb":"azb","ba":"Μπασκίρ","bal":"Μπαλούτσι","ban":"Μπαλινίζ","bar":"bar","bas":"Μπάσα","bax":"Μπαμούν","bbc":"bbc","bbj":"Γκομάλα","be":"Λευκορωσικά","bej":"Μπέζα","bem":"Μπέμπα","bew":"bew","bez":"Μπένα","bfd":"Μπαφούτ","bfq":"bfq","bg":"Βουλγαρικά","bho":"Μποζπούρι","bi":"Μπισλάμα","bik":"Μπικόλ","bin":"Μπίνι","bjn":"bjn","bkm":"Κομ","bla":"Σικσίκα","bm":"Μπαμπάρα","bn":"Μπενγκάλι","bo":"Θιβετιανά","bpy":"bpy","bqi":"bqi","br":"Βρετονικά","bra":"Μπρατζ","brh":"brh","brx":"Μπόντο","bs":"Βοσνιακά","bss":"Ακόσι","bua":"Μπουριάτ","bug":"Μπουγκίζ","bum":"Μπουλού","byn":"Μπλιν","byv":"Μεντούμπα","ca":"Καταλανικά","cad":"Κάντο","car":"Καρίμπ","cay":"Καγιούγκα","cch":"Ατσάμ","ce":"Τσέτσνιαν","ceb":"Κεμπουάνο","cgg":"Τσίγκα","ch":"Καμόρρο","chb":"Τσίμπτσα","chg":"Τσαγκατάι","chk":"Τσουκίζι","chm":"Μάρι","chn":"Ιδιωματικά Σινούκ","cho":"Τσοκτάου","chp":"Τσίπιουαν","chr":"Τσερόκι","chy":"Σεγιέν","ckb":"Κουρδικά Σοράνι","co":"Κορσικανικά","cop":"Κοπτικά","cps":"cps","cr":"Κρι","crh":"Τουρκικά Κριμαίας","cs":"Τσεχικά","csb":"Κασούμπιαν","cu":"Εκκλησιαστικά Σλαβικά","cv":"Χουβάς","cy":"Ουαλικά","da":"Δανικά","dak":"Ντακότα","dar":"Ντάργκουα","dav":"Τάιτα","de":"Γερμανικά","de-AT":"Γερμανικά Αυστρίας","de-CH":"Γερμανικά Ελβετίας","del":"Ντέλαγουερ","den":"Σλαβικά","dgr":"Ντόγκριμπ","din":"Ντίνκα","dje":"Ζάρμα","doi":"Ντόγκρι","dsb":"Γλώσσα Κάτω Λουσατίας","dtp":"dtp","dua":"Ντουάλα","dum":"Μέσα Ολλανδικά","dv":"Ντιβέχι","dyo":"Τζόλα-Φόνι","dyu":"Ντογιούλα","dz":"Ντζόνγκχα","dzg":"Νταζάγκα","ebu":"Έμπου","ee":"Γι","efi":"Εφίκ","egl":"egl","egy":"Αρχαία Αιγυπτιακά","eka":"Εκατζούκ","el":"Ελληνικά","elx":"Ελαμάιτ","en":"Αγγλικά","en-AU":"Αγγλικά Αυστραλίας","en-CA":"Αγγλικά Καναδά","en-GB":"Αγγλικά Ηνωμένου Βασιλείου","en-GB-alt-short":"Αγγλικά ΗΒ","en-US":"Αγγλικά Αμερικής","en-US-alt-short":"Αγγλικά ΗΠΑ","enm":"Μέσα Αγγλικά","eo":"Εσπεράντο","es":"Ισπανικά","es-419":"Ισπανικά Λατινικής Αμερικής","es-ES":"Ισπανικά Ευρώπης","es-MX":"Ισπανικά Μεξικού","esu":"esu","et":"Εσθονικά","eu":"Βασκικά","ewo":"Εγουόντο","ext":"ext","fa":"Περσικά","fan":"Φανγκ","fat":"Φάντι","ff":"Φουλάχ","fi":"Φινλανδικά","fil":"Φιλιππινεζικά","fit":"fit","fj":"Φίτζι","fo":"Φαρόε","fon":"Φον","fr":"Γαλλικά","fr-CA":"Γαλλικά Καναδά","fr-CH":"Γαλλικά Ελβετίας","frc":"frc","frm":"Μέσα Γαλλικά","fro":"Παλαιά Γαλλικά","frp":"frp","frr":"Βόρεια Φριζιανά","frs":"Ανατολικά Φριζιανά","fur":"Φριούλιαν","fy":"Δυτικά Φριζιανά","ga":"Ιρλανδικά","gaa":"Γκα","gag":"Γκαγκάουζ","gan":"gan","gay":"Γκάγιο","gba":"Γκμπάγια","gbz":"gbz","gd":"Σκωτικά Κελτικά","gez":"Γκιζ","gil":"Γκιλμπερτίζ","gl":"Γαλικιανά","glk":"glk","gmh":"Μέσα Άνω Γερμανικά","gn":"Γκουαρανί","goh":"Παλαιά Άνω Γερμανικά","gom":"gom","gon":"Γκόντι","gor":"Γκοροντάλο","got":"Γοτθικά","grb":"Γκρίμπο","grc":"Αρχαία Ελληνικά","gsw":"Ελβετικά Γερμανικά","gu":"Γκουγιαράτι","guc":"guc","gur":"gur","guz":"Γκούσι","gv":"Μανξ","gwi":"Γκουίτσιν","ha":"Χάουσα","hai":"Χάιντα","hak":"hak","haw":"Χαβανεζικά","he":"Εβραϊκά","hi":"Χίντι","hif":"hif","hil":"Χιλιγκαγιόν","hit":"Χιτίτε","hmn":"Χμονγκ","ho":"Χίρι Μότου","hr":"Κροατικά","hsb":"Γλώσσα Άνω Λουσατίας","hsn":"hsn","ht":"Αϊτιανά","hu":"Ουγγρικά","hup":"Χούπα","hy":"Αρμενικά","hz":"Χερέρο","ia":"Ιντερλίνγκουα","iba":"Ιμπάν","ibb":"Ιμπίμπιο","id":"Ινδονησιακά","ie":"Ιντερλίνγκουε","ig":"Ίγκμπο","ii":"Σικουάν Γι","ik":"Ινουπιάκ","ilo":"Ιλόκο","inh":"Ινγκούς","io":"Ίντο","is":"Ισλανδικά","it":"Ιταλικά","iu":"Ινουκτιτούτ","izh":"izh","ja":"Ιαπωνικά","jam":"jam","jbo":"Λόζμπαν","jgo":"Νγκόμπα","jmc":"Μάχαμε","jpr":"Ιουδαϊκά-Περσικά","jrb":"Ιουδαϊκά-Αραβικά","jut":"jut","jv":"Ιαβανεζικά","ka":"Γεωργιανά","kaa":"Κάρα-Καλπάκ","kab":"Καμπίλε","kac":"Κατσίν","kaj":"Τζου","kam":"Κάμπα","kaw":"Κάουι","kbd":"Καμπαρντιανά","kbl":"Κανέμπου","kcg":"Τουάπ","kde":"Μακόντε","kea":"Γλώσσα του Πράσινου Ακρωτηρίου","ken":"ken","kfo":"Κόρο","kg":"Κονγκό","kgp":"kgp","kha":"Κάσι","kho":"Κοτανικά","khq":"Κόιρα Τσίνι","khw":"khw","ki":"Κικούγιου","kiu":"kiu","kj":"Κουανιγιάμα","kk":"Καζακικά","kkj":"Κάκο","kl":"Καλαάλισουτ","kln":"Καλεντζίν","km":"Καμποτζιανά","kmb":"Κιμπούντου","kn":"Κανάντα","ko":"Κορεατικά","koi":"Κόμι-Περμιάκ","kok":"Κονκάνι","kos":"Κοσραενικά","kpe":"Κπέλε","kr":"Κανούρι","krc":"Καρατσάι-Μπαλκάρ","kri":"kri","krj":"krj","krl":"Καρελιακά","kru":"Κουρούχ","ks":"Κασμίρι","ksb":"Σάμπαλα","ksf":"Μπάφια","ksh":"Κολωνικά","ku":"Κουρδικά","kum":"Κουμγιούκ","kut":"Κουτενάι","kv":"Κόμι","kw":"Κόρνις","ky":"Κυργιζικά","la":"Λατινικά","lad":"Λαδίνο","lag":"Λάνγκι","lah":"Λάχδα","lam":"Λάμπα","lb":"Λουξεμβουργιανά","lez":"Λαζγκιάν","lfn":"lfn","lg":"Γκάντα","li":"Λιμβουργιανά","lij":"lij","liv":"liv","lkt":"Λακότα","lmo":"lmo","ln":"Λινγκάλα","lo":"Λαοθιανά","lol":"Μόνγκο","loz":"Λόζι","lt":"Λιθουανικά","ltg":"ltg","lu":"Λούμπα-Κατάνγκα","lua":"Λούμπα-Λουλούα","lui":"Λουισένο","lun":"Λούντα","luo":"Λούο","lus":"Λουσάι","luy":"Λουχία","lv":"Λετονικά","lzh":"lzh","lzz":"lzz","mad":"Μαντουρίζ","maf":"Μάφα","mag":"Μαγκάχι","mai":"Μαϊτχίλι","mak":"Μακαζάρ","man":"Μαντίνγκο","mas":"Μασάι","mde":"Μάμπα","mdf":"Μόκσα","mdr":"Μανδάρ","men":"Μέντε","mer":"Μερού","mfe":"Μορίσιεν","mg":"Μαλαγάσι","mga":"Μέσα Ιρλανδικά","mgh":"Μακούβα-Μέτο","mgo":"Μετά","mh":"Μάρσαλ","mi":"Μάορι","mic":"Μικμάκ","min":"Μινανγκαμπάου","mk":"Σλαβομακεδονικά","ml":"Μαλαγιαλάμ","mn":"Μογγολικά","mnc":"Μαντσού","mni":"Μανιπούρι","moh":"Μοχόκ","mos":"Μόσι","mr":"Μαράθι","mrj":"mrj","ms":"Μαλάι","mt":"Μαλτεζικά","mua":"Μουντάνγκ","mul":"Πολλαπλές γλώσσες","mus":"Κρικ","mwl":"Μιραντεζικά","mwr":"Μαργουάρι","mwv":"mwv","my":"Βιρμανικά","mye":"Μιένε","myv":"Έρζυα","mzn":"mzn","na":"Ναούρου","nan":"nan","nap":"Ναπολιτανικά","naq":"Νάμα","nb":"Νορβηγικά Μποκμάλ","nd":"Ντεμπέλε Βορρά","nds":"Κάτω Γερμανικά","ne":"Νεπάλι","new":"Νεγουάρι","ng":"Ντόνγκα","nia":"Νίας","niu":"Νιούεαν","njo":"njo","nl":"Ολλανδικά","nl-BE":"Φλαμανδικά","nmg":"Κβάσιο","nn":"Νορβηγικά Νινόρσκ","nnh":"Νγκιεμπούν","no":"Νορβηγικά","nog":"Νογκάι","non":"Παλαιά Νορβηγικά","nov":"nov","nqo":"Ν’Κο","nr":"Ντεμπέλε Νότου","nso":"Βόρεια Σόθο","nus":"Νουέρ","nv":"Νάβαχο","nwc":"Κλασικά Νεουάρι","ny":"Νιάντζα","nym":"Νιαμγουέζι","nyn":"Νιανκόλε","nyo":"Νιόρο","nzi":"Νζίμα","oc":"Οκσιτανικά","oj":"Οζιβίγουα","om":"Ορόμο","or":"Ορίγια","os":"Οσετικά","osa":"Οσάζ","ota":"Οθωμανικά Τουρκικά","pa":"Παντζαπικά","pag":"Πανγκασινάν","pal":"Παχλάβι","pam":"Παμπάνγκα","pap":"Παπιαμέντο","pau":"Παλάουαν","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"Αρχαία Περσικά","pfl":"pfl","phn":"Φοινικικά","pi":"Πάλι","pl":"Πολωνικά","pms":"pms","pnt":"pnt","pon":"Ποχπέιαν","prg":"prg","pro":"Παλαιά Προβενσιάλ","ps":"Πάστο","pt":"Πορτογαλικά","pt-BR":"Πορτογαλικά Βραζιλίας","pt-PT":"Πορτογαλικά Ευρώπης","qu":"Κετσούα","quc":"Κισέ","qug":"qug","raj":"Ραζασθάνι","rap":"Ραπανούι","rar":"Ραροτονγκάν","rgn":"rgn","rif":"rif","rm":"Ρομανικά","rn":"Ρούντι","ro":"Ρουμανικά","ro-MD":"Μολδαβικά","rof":"Ρόμπο","rom":"Ρομανί","root":"Ρουτ","rtm":"rtm","ru":"Ρωσικά","rue":"rue","rug":"rug","rup":"Αρομανικά","rw":"Κινιαρβάντα","rwk":"Ρουά","sa":"Σανσκριτικά","sad":"Σαντάγουε","sah":"Γιακούτ","sam":"Σαμαρίτικα Αραμαϊκά","saq":"Σαμπούρου","sas":"Σασάκ","sat":"Σαντάλι","saz":"saz","sba":"Νγκαμπέι","sbp":"Σάνγκου","sc":"Σαρδινικά","scn":"Σικελιανά","sco":"Σκωτικά","sd":"Σίντι","sdc":"sdc","se":"Βόρεια Σάμι","see":"Σένεκα","seh":"Σένα","sei":"sei","sel":"Σελκούπ","ses":"Κοϊραμπόρο Σένι","sg":"Σάνγκο","sga":"Παλαιά Ιρλανδικά","sgs":"sgs","sh":"Σερβοκροατικά","shi":"Τασελχίτ","shn":"Σαν","shu":"Αραβικά του Τσαντ","si":"Σινχαλεζικά","sid":"Σιντάμο","sk":"Σλοβακικά","sl":"Σλοβενικά","sli":"sli","sly":"sly","sm":"Σαμόαν","sma":"Νότια Σάμι","smj":"Λούλε Σάμι","smn":"Ινάρι Σάμι","sms":"Σκολτ Σάμι","sn":"Σχόνα","snk":"Σονίνκε","so":"Σομάλι","sog":"Σογκντιέν","sq":"Αλβανικά","sr":"Σερβικά","srn":"Σρανάρ Τόνγκο","srr":"Σερέρ","ss":"Σουάτι","ssy":"Σάχο","st":"Νότια Σόθο","stq":"stq","su":"Σουδανικά","suk":"Σουκούμα","sus":"Σούσου","sux":"Σουμερικά","sv":"Σουηδικά","sw":"Σουαχίλι","swb":"Κομόρρια","swc":"Κονγκό Σουαχίλι","syc":"Κλασικά Συριακά","syr":"Συριακά","szl":"szl","ta":"Ταμίλ","tcy":"tcy","te":"Τελούγκου","tem":"Τίμνε","teo":"Τέσο","ter":"Τερένο","tet":"Τέτουμ","tg":"Τατζίκ","th":"Ταϊλανδικά","ti":"Τιγκρίνυα","tig":"Τίγκρε","tiv":"Τιβ","tk":"Τουρκμενικά","tkl":"Τοκελάου","tkr":"tkr","tl":"Ταγκαλόγκ","tlh":"Κλίνγκον","tli":"Τλίνγκιτ","tly":"tly","tmh":"Ταμασέκ","tn":"Τσιγουάνα","to":"Τονγκανικά","tog":"Νιάσα Τόνγκα","tpi":"Τοκ Πισίν","tr":"Τουρκικά","tru":"tru","trv":"Ταρόκο","ts":"Τσόνγκα","tsd":"tsd","tsi":"Τσίμσιαν","tt":"Τατάρ","ttt":"ttt","tum":"Τουμπούκα","tvl":"Τουβαλού","tw":"Τούι","twq":"Τασαβάκ","ty":"Ταϊτιανά","tyv":"Τουβίνιαν","tzm":"Ταμαζίτ Κεντρικού Μαρόκο","udm":"Ουντμούρτ","ug":"Ουιγουρικά","ug-alt-variant":"Ουιγκούρ","uga":"Ουγκαρίτικ","uk":"Ουκρανικά","umb":"Ουμπούντου","und":"Άγνωστη γλώσσα","ur":"Ουρντού","uz":"Ουζμπεκικά","vai":"Βάι","ve":"Βένδα","vec":"vec","vep":"vep","vi":"Βιετναμικά","vls":"vls","vmf":"vmf","vo":"Βόλαπικ","vot":"Βότικ","vro":"vro","vun":"Βούντζο","wa":"Γουαλούν","wae":"Βάλσερ","wal":"Γουάλαμο","war":"Γουάρει","was":"Γουασό","wo":"Γουόλοφ","wuu":"wuu","xal":"Καλμίκ","xh":"Ζόσα","xmf":"xmf","xog":"Σόγκα","yao":"Γιάο","yap":"Γιαπίζ","yav":"Γιανγκμπέν","ybb":"Γιέμπα","yi":"Γίντις","yo":"Γιορούμπα","yrl":"yrl","yue":"Καντονέζικα","za":"Ζουάνγκ","zap":"Ζάποτεκ","zbl":"Σύμβολα Bliss","zea":"zea","zen":"Ζενάγκα","zgh":"Τυπικά Ταμαζίγκτ Μαρόκου","zh":"Κινεζικά","zh-Hans":"Απλοποιημένα Κινεζικά","zh-Hant":"Παραδοσιακά Κινεζικά","zu":"Ζουλού","zun":"Ζούνι","zxx":"Χωρίς γλωσσολογικό περιεχόμενο","zza":"Ζάζα"} \ No newline at end of file diff --git a/Punic/data/el/listPatterns.json b/Punic/data/el/listPatterns.json new file mode 100644 index 0000000..88113ce --- /dev/null +++ b/Punic/data/el/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s και %2$s","2":"%1$s και %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s και %2$s","2":"%1$s και %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/el/localeDisplayNames.json b/Punic/data/el/localeDisplayNames.json new file mode 100644 index 0000000..0f69939 --- /dev/null +++ b/Punic/data/el/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Ημερολόγιο","colAlternate":"Ταξινόμηση με αγνόηση συμβόλων","colBackwards":"Ταξινόμηση με αντεστραμμένο τονισμό","colCaseFirst":"Ταξινόμηση με κεφαλαίους/πεζούς χαρακτήρες","colCaseLevel":"Ταξινόμηση με διάκριση χαρακτήρων","colHiraganaQuaternary":"Ταξινόμηση Κάνα","colNormalization":"Κανονικοποιημένη ταξινόμηση","colNumeric":"Αριθμητική ταξινόμηση","colStrength":"Ισχύς ταξινόμησης","collation":"Σειρά ταξινόμησης","currency":"Νόμισμα","numbers":"Αριθμοί","timezone":"Ζώνη ώρας","va":"Παραλλαγή τοπικών ρυθμίσεων","variableTop":"Ταξινόμηση ως σύμβολα","x":"Προσωπική χρήση"},"types":{"numbers":{"vaii":"Ψηφία Βάι"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"Ημερολόγιο της Δημοκρατίας της Κίνας"},"colStrength":{"tertiary":"Ταξινόμηση τόνων/χαρακτήρων διάκρισης/χαρακτήρων μεγάλου μεγέθους"},"colCaseFirst":{"upper":"Ταξινόμηση κεφαλαίων χαρακτήρων πρώτα"},"colBackwards":{"yes":"Αντίστροφη ταξινόμηση τόνων"},"colCaseLevel":{"yes":"Ταξινόμηση χαρακτήρων διάκρισης"},"colHiraganaQuaternary":{"yes":"Διαφορετική ταξινόμηση Κάνα"},"colNormalization":{"yes":"Κανονικοποιημένη ταξινόμηση Unicode"},"colNumeric":{"yes":"Αριθμητική ταξινόμηση ψηφίων"},"colAlternate":{"shifted":"Ταξινόμηση με αγνόηση συμβόλων"}},"codePatterns":{"language":"Γλώσσα: %1$s","script":"Σύστημα γραφής: %1$s","territory":"Περιοχή: %1$s"}} \ No newline at end of file diff --git a/Punic/data/el/numbers.json b/Punic/data/el/numbers.json new file mode 100644 index 0000000..dfe4fe9 --- /dev/null +++ b/Punic/data/el/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"e","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/el/territories.json b/Punic/data/el/territories.json new file mode 100644 index 0000000..dd6f1c3 --- /dev/null +++ b/Punic/data/el/territories.json @@ -0,0 +1 @@ +{"001":"Κόσμος","002":"Αφρική","003":"Βόρεια Αμερική","005":"Νότια Αμερική","009":"Ωκεανία","011":"Δυτική Αφρική","013":"Κεντρική Αμερική","014":"Ανατολική Αφρική","015":"Βόρεια Αφρική","017":"Μέση Αφρική","018":"Νότιος Αφρική","019":"Αμερική","021":"Βόρειος Αμερική","029":"Καραϊβική","030":"Ανατολική Ασία","034":"Νότια Ασία","035":"Νοτιοανατολική Ασία","039":"Νότια Ευρώπη","053":"Αυστραλασία","054":"Μελανησία","057":"Περιοχή Μικρονησίας","061":"Πολυνησία","142":"Ασία","143":"Κεντρική Ασία","145":"Δυτική Ασία","150":"Ευρώπη","151":"Ανατολική Ευρώπη","154":"Βόρεια Ευρώπη","155":"Δυτική Ευρώπη","419":"Λατινική Αμερική","AC":"Νήσος Ασενσιόν","AD":"Ανδόρα","AE":"Ηνωμένα Αραβικά Εμιράτα","AF":"Αφγανιστάν","AG":"Αντίγκουα και Μπαρμπούντα","AI":"Ανγκουίλα","AL":"Αλβανία","AM":"Αρμενία","AN":"Ολλανδικές Αντίλλες","AO":"Ανγκόλα","AQ":"Ανταρκτική","AR":"Αργεντινή","AS":"Αμερικανική Σαμόα","AT":"Αυστρία","AU":"Αυστραλία","AW":"Αρούμπα","AX":"Νήσοι Όλαντ","AZ":"Αζερμπαϊτζάν","BA":"Βοσνία - Ερζεγοβίνη","BB":"Μπαρμπάντος","BD":"Μπανγκλαντές","BE":"Βέλγιο","BF":"Μπουρκίνα Φάσο","BG":"Βουλγαρία","BH":"Μπαχρέιν","BI":"Μπουρούντι","BJ":"Μπενίν","BL":"Άγιος Βαρθολομαίος","BM":"Βερμούδες","BN":"Μπρουνέι","BO":"Βολιβία","BQ":"Ολλανδία Καραϊβικής","BR":"Βραζιλία","BS":"Μπαχάμες","BT":"Μπουτάν","BV":"Νήσος Μπουβέ","BW":"Μποτσουάνα","BY":"Λευκορωσία","BZ":"Μπελίζ","CA":"Καναδάς","CC":"Νήσοι Κόκος (Κίλινγκ)","CD":"Κονγκό - Κινσάσα","CD-alt-variant":"Κονγκό","CF":"Κεντροαφρικανική Δημοκρατία","CG":"Κονγκό - Μπραζαβίλ","CG-alt-variant":"Κονγκό (Δημοκρατία)","CH":"Ελβετία","CI":"Ακτή Ελεφαντοστού","CI-alt-variant":"CI","CK":"Νήσοι Κουκ","CL":"Χιλή","CM":"Καμερούν","CN":"Κίνα","CO":"Κολομβία","CP":"Νήσος Κλίπερτον","CR":"Κόστα Ρίκα","CU":"Κούβα","CV":"Πράσινο Ακρωτήριο","CW":"Κουρασάο","CX":"Νήσος των Χριστουγέννων","CY":"Κύπρος","CZ":"Τσεχική Δημοκρατία","DE":"Γερμανία","DG":"Ντιέγκο Γκαρσία","DJ":"Τζιμπουτί","DK":"Δανία","DM":"Ντομίνικα","DO":"Δομινικανή Δημοκρατία","DZ":"Αλγερία","EA":"Θεούτα και Μελίλα","EC":"Εκουαδόρ","EE":"Εσθονία","EG":"Αίγυπτος","EH":"Δυτική Σαχάρα","ER":"Ερυθραία","ES":"Ισπανία","ET":"Αιθιοπία","EU":"Ευρωπαϊκή Ένωση","FI":"Φινλανδία","FJ":"Φίτζι","FK":"Νήσοι Φόκλαντ","FK-alt-variant":"Νήσοι Φόκλαντ (Νήσοι Μαλβίνας)","FM":"Μικρονησία","FO":"Νήσοι Φερόες","FR":"Γαλλία","GA":"Γκαμπόν","GB":"Ηνωμένο Βασίλειο","GB-alt-short":"Η.Β.","GD":"Γρενάδα","GE":"Γεωργία","GF":"Γαλλική Γουιάνα","GG":"Γκέρνζι","GH":"Γκάνα","GI":"Γιβραλτάρ","GL":"Γροιλανδία","GM":"Γκάμπια","GN":"Γουινέα","GP":"Γουαδελούπη","GQ":"Ισημερινή Γουινέα","GR":"Ελλάδα","GS":"Νήσοι Νότια Γεωργία και Νότιες Σάντουιτς","GT":"Γουατεμάλα","GU":"Γκουάμ","GW":"Γουινέα Μπισάου","GY":"Γουιάνα","HK":"Χονγκ Κονγκ ΕΔΠ Κίνας","HK-alt-short":"Χονγκ Κονγκ","HM":"Νήσοι Χερντ και Μακντόναλντ","HN":"Ονδούρα","HR":"Κροατία","HT":"Αϊτή","HU":"Ουγγαρία","IC":"Κανάριοι Νήσοι","ID":"Ινδονησία","IE":"Ιρλανδία","IL":"Ισραήλ","IM":"Νήσος Μαν","IN":"Ινδία","IO":"Βρετανικά Εδάφη Ινδικού Ωκεανού","IQ":"Ιράκ","IR":"Ιράν","IS":"Ισλανδία","IT":"Ιταλία","JE":"Τζέρζι","JM":"Τζαμάικα","JO":"Ιορδανία","JP":"Ιαπωνία","KE":"Κένυα","KG":"Κιργιστάν","KH":"Καμπότζη","KI":"Κιριμπάτι","KM":"Κομόρες","KN":"Άγιος Χριστόφορος και Νέβις","KP":"Βόρεια Κορέα","KR":"Νότια Κορέα","KW":"Κουβέιτ","KY":"Νήσοι Κάιμαν","KZ":"Καζακστάν","LA":"Λάος","LB":"Λίβανος","LC":"Αγία Λουκία","LI":"Λιχτενστάιν","LK":"Σρι Λάνκα","LR":"Λιβερία","LS":"Λεσότο","LT":"Λιθουανία","LU":"Λουξεμβούργο","LV":"Λετονία","LY":"Λιβύη","MA":"Μαρόκο","MC":"Μονακό","MD":"Μολδαβία","ME":"Μαυροβούνιο","MF":"Άγιος Μαρτίνος (Γαλλικό τμήμα)","MG":"Μαδαγασκάρη","MH":"Νήσοι Μάρσαλ","MK":"Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας","MK-alt-variant":"Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας (ΠΓΔΜ)","ML":"Μάλι","MM":"Μιανμάρ/Βιρμανία","MN":"Μογγολία","MO":"Μακάο ΕΔΠ Κίνας","MO-alt-short":"Μακάο","MP":"Νήσοι Βόρειες Μαριάνες","MQ":"Μαρτινίκα","MR":"Μαυριτανία","MS":"Μονσεράτ","MT":"Μάλτα","MU":"Μαυρίκιος","MV":"Μαλδίβες","MW":"Μαλάουι","MX":"Μεξικό","MY":"Μαλαισία","MZ":"Μοζαμβίκη","NA":"Ναμίμπια","NC":"Νέα Καληδονία","NE":"Νίγηρας","NF":"Νήσος Νόρφολκ","NG":"Νιγηρία","NI":"Νικαράγουα","NL":"Ολλανδία","NO":"Νορβηγία","NP":"Νεπάλ","NR":"Ναουρού","NU":"Νιούε","NZ":"Νέα Ζηλανδία","OM":"Ομάν","PA":"Παναμάς","PE":"Περού","PF":"Γαλλική Πολυνησία","PG":"Παπούα Νέα Γουινέα","PH":"Φιλιππίνες","PK":"Πακιστάν","PL":"Πολωνία","PM":"Σεν Πιερ και Μικελόν","PN":"Νήσοι Πίτκερν","PR":"Πουέρτο Ρίκο","PS":"Παλαιστινιακά Εδάφη","PS-alt-short":"Παλαιστίνη","PT":"Πορτογαλία","PW":"Παλάου","PY":"Παραγουάη","QA":"Κατάρ","QO":"Περιφερειακή Ωκεανία","RE":"Ρεϊνιόν","RO":"Ρουμανία","RS":"Σερβία","RU":"Ρωσία","RW":"Ρουάντα","SA":"Σαουδική Αραβία","SB":"Νήσοι Σολομώντος","SC":"Σεϋχέλλες","SD":"Σουδάν","SE":"Σουηδία","SG":"Σιγκαπούρη","SH":"Αγία Ελένη","SI":"Σλοβενία","SJ":"Σβάλμπαρντ και Γιαν Μαγιέν","SK":"Σλοβακία","SL":"Σιέρα Λεόνε","SM":"Άγιος Μαρίνος","SN":"Σενεγάλη","SO":"Σομαλία","SR":"Σουρινάμ","SS":"Νότιο Σουδάν","ST":"Σάο Τομέ και Πρίνσιπε","SV":"Ελ Σαλβαδόρ","SX":"Άγιος Μαρτίνος (Ολλανδικό τμήμα)","SY":"Συρία","SZ":"Σουαζιλάνδη","TA":"Τριστάν ντα Κούνια","TC":"Νήσοι Τερκ και Κάικος","TD":"Τσαντ","TF":"Γαλλικές περιοχές του νοτίου ημισφαιρίου","TG":"Τόγκο","TH":"Ταϊλάνδη","TJ":"Τατζικιστάν","TK":"Τοκελάου","TL":"Τιμόρ-Λέστε","TL-alt-variant":"Ανατολικό Τιμόρ","TM":"Τουρκμενιστάν","TN":"Τυνησία","TO":"Τόνγκα","TR":"Τουρκία","TT":"Τρινιντάντ και Τομπάγκο","TV":"Τουβαλού","TW":"Ταϊβάν","TZ":"Τανζανία","UA":"Ουκρανία","UG":"Ουγκάντα","UM":"Απομακρυσμένες Νησίδες Η.Π.Α.","US":"Ηνωμένες Πολιτείες","US-alt-short":"ΗΠΑ","UY":"Ουρουγουάη","UZ":"Ουζμπεκιστάν","VA":"Βατικανό","VC":"Άγιος Βικέντιος και Γρεναδίνες","VE":"Βενεζουέλα","VG":"Βρετανικές Παρθένοι Νήσοι","VI":"Αμερικανικές Παρθένοι Νήσοι","VN":"Βιετνάμ","VU":"Βανουάτου","WF":"Ουάλις και Φουτούνα","WS":"Σαμόα","XK":"Κόσοβο","YE":"Υεμένη","YT":"Μαγιότ","ZA":"Νότια Αφρική","ZM":"Ζάμπια","ZW":"Ζιμπάμπουε","ZZ":"Άγνωστη περιοχή"} \ No newline at end of file diff --git a/Punic/data/el/timeZoneNames.json b/Punic/data/el/timeZoneNames.json new file mode 100644 index 0000000..89aa5d2 --- /dev/null +++ b/Punic/data/el/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Ώρα (%1$s)","regionFormat-type-standard":"Χειμερινή ώρα (%1$s)","regionFormat-type-daylight":"Θερινή ώρα (%1$s)","fallbackFormat":"[%2$s (%1$s)]","zone":{"America":{"Adak":{"exemplarCity":"Άντακ"},"Anchorage":{"exemplarCity":"Άνκορατζ"},"Anguilla":{"exemplarCity":"Ανγκουίλα"},"Antigua":{"exemplarCity":"Αντίγκουα"},"Araguaina":{"exemplarCity":"Αραγκουάινα"},"Argentina":{"La_Rioja":{"exemplarCity":"Λα Ριόχα"},"Rio_Gallegos":{"exemplarCity":"Ρίο Γκαγιέγκος"},"Salta":{"exemplarCity":"Σάλτα"},"San_Juan":{"exemplarCity":"Σαν Χουάν"},"San_Luis":{"exemplarCity":"Σαν Λούις"},"Tucuman":{"exemplarCity":"Τουκουμάν"},"Ushuaia":{"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":"Ελ Σαλβαδόρ"},"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":{"Knox":{"exemplarCity":"Νοξ, Ιντιάνα"},"Marengo":{"exemplarCity":"Μαρένγκο, Ιντιάνα"},"Petersburg":{"exemplarCity":"Πίτερσμπεργκ, Ιντιάνα"},"Tell_City":{"exemplarCity":"Τελ Σίτυ, Ιντιάνα"},"Vevay":{"exemplarCity":"Βεβάι, Ιντιάνα"},"Vincennes":{"exemplarCity":"Βίνκενες, Ιντιάνα"},"Winamac":{"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":"Lower Prince’s Quarter (Άγιος Μαρτίνος Ολλανδίας)"},"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":"Μπέουλαχ, Βόρεια Ντακότα"},"Center":{"exemplarCity":"Κέντρο, Βόρεια Ντακότα"},"New_Salem":{"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":"Ανδόρα"},"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":"Κίεβο"},"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":"Τίρανα"},"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":"Μπανγκόκ"},"Beirut":{"exemplarCity":"Βυρητός"},"Bishkek":{"exemplarCity":"Μπισκέκ"},"Brunei":{"exemplarCity":"Μπρουνέι"},"Calcutta":{"exemplarCity":"Καλκούτα"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Χόιμπαλσαν"},"Chongqing":{"exemplarCity":"Τσονγκίνγκ"},"Colombo":{"exemplarCity":"Κολόμπο"},"Damascus":{"exemplarCity":"Δαμασκός"},"Dhaka":{"exemplarCity":"Ντάκα"},"Dili":{"exemplarCity":"Ντίλι"},"Dubai":{"exemplarCity":"Ντουμπάι"},"Dushanbe":{"exemplarCity":"Ντουσάμπε"},"Gaza":{"exemplarCity":"Γάζα"},"Harbin":{"exemplarCity":"Χαρμπίν"},"Hebron":{"exemplarCity":"Χεμπρόν"},"Hong_Kong":{"exemplarCity":"Χονγκ Κονγκ"},"Hovd":{"exemplarCity":"Χοβντ"},"Irkutsk":{"exemplarCity":"Ιρκούτσκ"},"Jakarta":{"exemplarCity":"Τζακάρτα"},"Jayapura":{"exemplarCity":"Χαγιαπούρα"},"Jerusalem":{"exemplarCity":"Ιερουσαλήμ"},"Kabul":{"exemplarCity":"Καμπούλ"},"Kamchatka":{"exemplarCity":"Καμτσάτκα"},"Karachi":{"exemplarCity":"Καράτσι"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"Ταϊπέι"},"Tashkent":{"exemplarCity":"Τασκένδη"},"Tbilisi":{"exemplarCity":"Τιφλίδα"},"Tehran":{"exemplarCity":"Τεχεράνη"},"Thimphu":{"exemplarCity":"Τρίμφου"},"Tokyo":{"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":"Όκλαντ"},"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":"Θερινή ώρα Κεντρικής Ευρώπης"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Ώρα Ανατολικής Ευρώπης","standard":"Χειμερινή ώρα Ανατολικής Ευρώπης","daylight":"Θερινή ώρα Ανατολικής Ευρώπης"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Ώρα περαιτέρω Ανατολικής Ευρώπης"}},"Europe_Western":{"long":{"generic":"Ώρα Δυτικής Ευρώπης","standard":"Χειμερινή ώρα Δυτικής Ευρώπης","daylight":"Θερινή ώρα Δυτικής Ευρώπης"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Ώρα Νησιών Φώκλαντ","standard":"Χειμερινή ώρα Νησιών Φώκλαντ","daylight":"Θερινή ώρα Νησιών Φώκλαντ"}},"Fiji":{"long":{"generic":"Ώρα Φίτζι","standard":"Χειμερινή ώρα Φίτζι","daylight":"Θερινή ώρα Φίτζι"}},"French_Guiana":{"long":{"standard":"Ώρα Γαλλικής Γουιάνας"}},"French_Southern":{"long":{"standard":"Ώρα Γαλλικού Νότου και Ανταρκτικής"}},"GMT":{"long":{"standard":"Μέση ώρα Γκρίνουιτς"}},"Galapagos":{"long":{"standard":"Ώρα Γκαλάπαγκος"}},"Gambier":{"long":{"standard":"Ώρα Γκάμπιερ"}},"Georgia":{"long":{"generic":"Ώρα Γεωργίας","standard":"Χειμερινή ώρα Γεωργίας","daylight":"Θερινή ώρα Γεωργίας"}},"Gilbert_Islands":{"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":"Θερινή ώρα Λορντ Χάου"}},"Macau":{"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":"Ώρα Πονάπε"}},"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":"Θερινή ώρα Αικατερίνμπουργκ"}}}} \ No newline at end of file diff --git a/Punic/data/el/units.json b/Punic/data/el/units.json new file mode 100644 index 0000000..8f27951 --- /dev/null +++ b/Punic/data/el/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s ανά %2$s","acceleration":{"g-force":{"_name":"ατμοσφαιρική επιτάχυνση βαρύτητας","one":"%1$s δύναμη επιτάχυνσης","other":"%1$s δύναμη επιτάχυνσης"},"meter-per-second-squared":{"_name":"μέτρα ανά τετραγωνικό δευτερόλεπτο","one":"%1$s μέτρο ανά τετραγωνικό δευτερόλεπτο","other":"%1$s μέτρα ανά τετραγωνικό δευτερόλεπτο"}},"angle":{"arc-minute":{"_name":"λεπτά του τόξου","one":"%1$s λεπτό του τόξου","other":"%1$s λεπτά του τόξου"},"arc-second":{"_name":"δευτερόλεπτα του τόξου","one":"%1$s δευτερόλεπτο του τόξου","other":"%1$s δευτερόλεπτα του τόξου"},"degree":{"_name":"μοίρες","one":"%1$s μοίρα","other":"%1$s μοίρες"},"radian":{"_name":"ακτίνια","one":"%1$s ακτίνιο","other":"%1$s ακτίνιο"}},"area":{"acre":{"_name":"ακρ","one":"%1$s ακρ","other":"%1$s ακρ"},"hectare":{"_name":"εκτάρια","one":"%1$s εκτάριο","other":"%1$s εκτάρια"},"square-centimeter":{"_name":"τετραγωνικά εκατοστά","one":"%1$s τετραγωνικό εκατοστό","other":"%1$s τετραγωνικά εκατοστά"},"square-foot":{"_name":"τετραγωνικά πόδια","one":"%1$s τετραγωνικό πόδι","other":"%1$s τετραγωνικά πόδια"},"square-inch":{"_name":"τετραγωνικές ίντσες","one":"%1$s τετραγωνική ίντσα","other":"%1$s τετραγωνικές ίντσες"},"square-kilometer":{"_name":"τετραγωνικά χιλιόμετρα","one":"%1$s τετραγωνικό χιλιόμετρο","other":"%1$s τετραγωνικά χιλιόμετρα"},"square-meter":{"_name":"τετραγωνικά μέτρα","one":"%1$s τετραγωνικό μέτρο","other":"%1$s τετραγωνικά μέτρα"},"square-mile":{"_name":"τετραγωνικά μίλια","one":"%1$s τετραγωνικό μίλι","other":"%1$s τετραγωνικά μίλια"},"square-yard":{"_name":"τετραγωνικές γιάρδες","one":"%1$s τετραγωνική γιάρδα","other":"%1$s τετραγωνικές γιάρδες"}},"consumption":{"liter-per-kilometer":{"_name":"λίτρα ανά χιλιόμετρο","one":"%1$s λίτρο ανά χιλιόμετρο","other":"%1$s λίτρα ανά χιλιόμετρο"},"mile-per-gallon":{"_name":"μίλια ανά γαλόνι","one":"%1$s μίλι ανά γαλόνι","other":"%1$s μίλια ανά γαλόνι"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabyte","one":"%1$s gigabyte","other":"%1$s gigabyte"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobyte","one":"%1$s kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"ημέρες","one":"%1$s ημέρα","other":"%1$s ημέρες"},"hour":{"_name":"ώρες","one":"%1$s ώρα","other":"%1$s ώρες","_per":"%1$s ανά ώρα"},"microsecond":{"_name":"μικροδευτερόλεπτα","one":"%1$s μικροδευτερόλεπτο","other":"%1$s μικροδευτερόλεπτα"},"millisecond":{"_name":"χιλιοστά του δευτερολέπτου","one":"%1$s χιλιοστό του δευτερολέπτου","other":"%1$s χιλιοστά του δευτερολέπτου"},"minute":{"_name":"λεπτά","one":"%1$s λεπτό","other":"%1$s λεπτά"},"month":{"_name":"μήνες","one":"%1$s μήνας","other":"%1$s μήνες"},"nanosecond":{"_name":"νανοδευτερόλεπτα","one":"%1$s νανοδευτερόλεπτο","other":"%1$s νανοδευτερόλεπτα"},"second":{"_name":"δευτερόλεπτα","one":"%1$s δευτερόλεπτο","other":"%1$s δευτερόλεπτα","_per":"%1$s ανά δευτερόλεπτο"},"week":{"_name":"εβδομάδες","one":"%1$s εβδομάδα","other":"%1$s εβδομάδες"},"year":{"_name":"έτη","one":"%1$s έτος","other":"%1$s έτη"}},"electric":{"ampere":{"_name":"αμπέρ","one":"%1$s αμπέρ","other":"%1$s αμπέρ"},"milliampere":{"_name":"μιλιαμπέρ","one":"%1$s μιλιαμπέρ","other":"%1$s μιλιαμπέρ"},"ohm":{"_name":"ωμ","one":"%1$s ωμ","other":"%1$s ωμ"},"volt":{"_name":"βολτ","one":"%1$s βολτ","other":"%1$s βολτ"}},"energy":{"calorie":{"_name":"θερμίδες","one":"%1$s θερμίδα","other":"%1$s θερμίδες"},"foodcalorie":{"_name":"Θερμίδες","one":"%1$s Θερμίδα","other":"%1$s Θερμίδες"},"joule":{"_name":"τζάουλ","one":"%1$s τζάουλ","other":"%1$s τζάουλ"},"kilocalorie":{"_name":"χιλιοθερμίδες","one":"%1$s χιλιοθερμίδα","other":"%1$s χιλιοθερμίδες"},"kilojoule":{"_name":"κιλοτζάουλ","one":"%1$s κιλοτζάουλ","other":"%1$s κιλοτζάουλ"},"kilowatt-hour":{"_name":"κιλοβατώρες","one":"%1$s κιλοβατώρα","other":"%1$s κιλοβατώρες"}},"frequency":{"gigahertz":{"_name":"γιγαχέρτζ","one":"%1$s γιγαχέρτζ","other":"%1$s γιγαχέρτζ"},"hertz":{"_name":"χερτζ","one":"%1$s χερτζ","other":"%1$s χερτζ"},"kilohertz":{"_name":"κιλοχέρτζ","one":"%1$s κιλοχέρτζ","other":"%1$s κιλοχέρτζ"},"megahertz":{"_name":"μεγαχέρτζ","one":"%1$s μεγαχέρτζ","other":"%1$s μεγαχέρτζ"}},"length":{"astronomical-unit":{"_name":"αστρονομικές μονάδες","one":"%1$s αστρονομική μονάδα","other":"%1$s αστρονομικές μονάδες"},"centimeter":{"_name":"εκατοστά","one":"%1$s εκατοστό","other":"%1$s εκατοστά"},"decimeter":{"_name":"δεκατόμετρα","one":"%1$s δεκατόμετρο","other":"%1$s δεκατόμετρα"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"πόδια","one":"%1$s πόδι","other":"%1$s πόδια"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"ίντσες","one":"%1$s ίντσα","other":"%1$s ίντσες"},"kilometer":{"_name":"χιλιόμετρα","one":"%1$s χιλιόμετρο","other":"%1$s χιλιόμετρα"},"light-year":{"_name":"έτη φωτός","one":"%1$s έτος φωτός","other":"%1$s έτη φωτός"},"meter":{"_name":"μέτρα","one":"%1$s μέτρο","other":"%1$s μέτρα"},"micrometer":{"_name":"µm","one":"%1$s μικρόμετρο","other":"%1$s μικρόμετρα"},"mile":{"_name":"μίλια","one":"%1$s μίλι","other":"%1$s μίλια"},"millimeter":{"_name":"χιλιοστόμετρα","one":"%1$s χιλιοστόμετρο","other":"%1$s χιλιοστόμετρα"},"nanometer":{"_name":"νανόμετρα","one":"%1$s νανόμετρο","other":"%1$s νανόμετρα"},"nautical-mile":{"_name":"ναυτικά μίλια","one":"%1$s ναυτικό μίλι","other":"%1$s ναυτικά μίλια"},"parsec":{"_name":"παρσέκ","one":"%1$s παρσέκ","other":"%1$s παρσέκ"},"picometer":{"_name":"πικόμετρα","one":"%1$s πικόμετρο","other":"%1$s πικόμετρα"},"yard":{"_name":"γιάρδες","one":"%1$s γιάρδα","other":"%1$s γιάρδες"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"καράτια","one":"%1$s καράτι","other":"%1$s καράτια"},"gram":{"_name":"γραμμάρια","one":"%1$s γραμμάριο","other":"%1$s γραμμάρια"},"kilogram":{"_name":"χιλιόγραμμα","one":"%1$s χιλιόγραμμο","other":"%1$s χιλιόγραμμα"},"metric-ton":{"_name":"μετρικοί τόνοι","one":"%1$s μετρικός τόνος","other":"%1$s μετρικοί τόνοι"},"microgram":{"_name":"μικρογραμμάρια","one":"%1$s μικρογραμμάριο","other":"%1$s μικρογραμμάρια"},"milligram":{"_name":"χιλιοστόγραμμα","one":"%1$s χιλιοστόγραμμο","other":"%1$s χιλιοστόγραμμα"},"ounce":{"_name":"ουγγιές","one":"%1$s ουγγιά","other":"%1$s ουγγιές"},"ounce-troy":{"_name":"ευγενείς ουγγιές","one":"%1$s ευγενής ουγγιά","other":"%1$s ευγενείς ουγγιές"},"pound":{"_name":"λίβρες","one":"%1$s λίβρα","other":"%1$s λίβρες"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"τόνοι","one":"%1$s τόνος","other":"%1$s τόνοι"}},"power":{"gigawatt":{"_name":"γιγαβάτ","one":"%1$s γιγαβάτ","other":"%1$s γιγαβάτ"},"horsepower":{"_name":"ίπποι","one":"%1$s ίππος","other":"%1$s ίπποι"},"kilowatt":{"_name":"κιλοβάτ","one":"%1$s κιλοβάτ","other":"%1$s κιλοβάτ"},"megawatt":{"_name":"μεγαβάτ","one":"%1$s μεγαβάτ","other":"%1$s μεγαβάτ"},"milliwatt":{"_name":"μιλιβάτ","one":"%1$s μιλιβάτ","other":"%1$s μιλιβάτ"},"watt":{"_name":"βατ","one":"%1$s βατ","other":"%1$s βατ"}},"pressure":{"hectopascal":{"_name":"εκτοπασκάλ","one":"%1$s εκτοπασκάλ","other":"%1$s εκτοπασκάλ"},"inch-hg":{"_name":"ίντσες στήλης υδραργύρου","one":"%1$s ίντσα στήλης υδραργύρου","other":"%1$s ίντσες στήλης υδραργύρου"},"millibar":{"_name":"μιλιμπάρ","one":"%1$s μιλιμπάρ","other":"%1$s μιλιμπάρ"},"millimeter-of-mercury":{"_name":"χιλιοστόμετρα στήλης υδραργύρου","one":"%1$s χιλιοστόμετρα στήλης υδραργύρου","other":"%1$s χιλιοστόμετρα στήλης υδραργύρου"},"pound-per-square-inch":{"_name":"λίβρα ανά τετραγωνική ίντσα","one":"%1$s λίβρα ανά τετραγωνική ίντσα","other":"%1$s λίβρες ανά τετραγωνική ίντσα"}},"proportion":{"karat":{"_name":"καράτια","one":"%1$s καράτι","other":"%1$s καράτια"}},"speed":{"kilometer-per-hour":{"_name":"χιλιόμετρα ανά ώρα","one":"%1$s χιλιόμετρο ανά ώρα","other":"%1$s χιλιόμετρα ανά ώρα"},"meter-per-second":{"_name":"μέτρα ανά δευτερόλεπτο","one":"%1$s μέτρο ανά δευτερόλεπτο","other":"%1$s μέτρα ανά δευτερόλεπτο"},"mile-per-hour":{"_name":"μίλια ανά ώρα","one":"%1$s μίλι ανά ώρα","other":"%1$s μίλια ανά ώρα"}},"temperature":{"celsius":{"_name":"βαθμοί Κελσίου","one":"%1$s βαθμός Κελσίου","other":"%1$s βαθμοί Κελσίου"},"fahrenheit":{"_name":"βαθμοί Φαρενάιτ","one":"%1$s βαθμός Φαρενάιτ","other":"%1$s βαθμοί Φαρενάιτ"},"kelvin":{"_name":"κέλβιν","one":"%1$s κέλβιν","other":"%1$s κέλβιν"}},"volume":{"acre-foot":{"_name":"ακρ-πόδια","one":"%1$s ακρ-πόδι","other":"%1$s ακρ-πόδια"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"εκατοστόλιτρα","one":"%1$s εκατοστόλιτρο","other":"%1$s εκατοστόλιτρα"},"cubic-centimeter":{"_name":"κυβικά εκατοστά","one":"%1$s κυβικό εκατοστό","other":"%1$s κυβικά εκατοστά"},"cubic-foot":{"_name":"κυβικά πόδια","one":"%1$s κυβικό πόδι","other":"%1$s κυβικά πόδια"},"cubic-inch":{"_name":"κυβικές ίντσες","one":"%1$s κυβική ίντσα","other":"%1$s κυβικές ίντσες"},"cubic-kilometer":{"_name":"κυβικά χιλιόμετρα","one":"%1$s κυβικό χιλιόμετρο","other":"%1$s κυβικά χιλιόμετρα"},"cubic-meter":{"_name":"κυβικά μέτρα","one":"%1$s κυβικό μέτρο","other":"%1$s κυβικό μέτρο"},"cubic-mile":{"_name":"κυβικά μίλια","one":"%1$s κυβικό μίλι","other":"%1$s κυβικά μίλια"},"cubic-yard":{"_name":"κυβικές γιάρδες","one":"%1$s κυβική γιάρδα","other":"%1$s κυβικές γιάρδες"},"cup":{"_name":"κύπελλο","one":"%1$s κύπελλο","other":"%1$s κύπελλα"},"deciliter":{"_name":"δεκατόλιτρα","one":"%1$s δεκατόλιτρο","other":"%1$s δεκατόλιτρα"},"fluid-ounce":{"_name":"ουγγιές υγρού","one":"%1$s ουγγιά υγρού","other":"%1$s ουγγιές υγρού"},"gallon":{"_name":"γαλόνια","one":"%1$s γαλόνι","other":"%1$s γαλόνια"},"hectoliter":{"_name":"εκτόλιτρα","one":"%1$s εκτόλιτρο","other":"%1$s εκτόλιτρα"},"liter":{"_name":"λίτρα","one":"%1$s λίτρο","other":"%1$s λίτρα"},"megaliter":{"_name":"μεγαλίτρα","one":"%1$s μεγαλίτρο","other":"%1$s μεγαλίτρα"},"milliliter":{"_name":"χιλιοστόλιτρο","one":"%1$s χιλιοστόλιτρο","other":"%1$s χιλιοστόλιτρα"},"pint":{"_name":"πίντες","one":"%1$s πίντα","other":"%1$s πίντες"},"quart":{"_name":"τέταρτα του γαλονιού","one":"%1$s τέταρτο του γαλονιού","other":"%1$s τέταρτα του γαλονιού"},"tablespoon":{"_name":"κουταλιές της σούπας","one":"%1$s κουταλιά της σούπας","other":"%1$s κουταλιές της σούπας"},"teaspoon":{"_name":"κουταλιές του γλυκού","one":"%1$s κουταλιά του γλυκού","other":"%1$s κουταλιές του γλυκού"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"δύν. επιτάχ.","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"μέτρα/τετρ. δευτ.","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"λεπτά του τόξου","one":"%1$s λεπ. τόξου","other":"%1$s λεπ. τόξου"},"arc-second":{"_name":"δευτερόλεπτα του τόξου","one":"%1$s δευτ.","other":"%1$s δευτ."},"degree":{"_name":"μοίρες","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"ακτίνια","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ακρ","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"εκτάρια","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"τ. εκ.","one":"%1$s τ. εκ.","other":"%1$s τ. εκ."},"square-foot":{"_name":"τετρ. πόδια","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"τετρ. ίντσες","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"τ. χλμ.","one":"%1$s τ. χλμ.","other":"%1$s τ. χλμ."},"square-meter":{"_name":"τ. μέτρα","one":"%1$s τ.μ.","other":"%1$s τ.μ."},"square-mile":{"_name":"τ. μίλια","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"τετρ. γιάρδες","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"λίτρα/χλμ.","one":"%1$s λίτρο/χλμ","other":"%1$s λίτρα/χλμ"},"mile-per-gallon":{"_name":"μίλια/γαλόνι","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"ημέρες","one":"%1$s ημέρα","other":"%1$s ημέρες"},"hour":{"_name":"ώρες","one":"%1$s ώρα","other":"%1$s ώρ.","_per":"%1$s α.ώ."},"microsecond":{"_name":"μικροδεύτερα","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"χιλιοστά δευτ.","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"λεπ.","one":"%1$s λεπ.","other":"%1$s λεπ."},"month":{"_name":"μήνες","one":"%1$s μήν.","other":"%1$s μήν."},"nanosecond":{"_name":"νανοδεύτερα","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"δευτ.","one":"%1$s δευτ.","other":"%1$s δευτ.","_per":"%1$s ανα δευτ."},"week":{"_name":"εβδομάδες","one":"%1$s εβδ.","other":"%1$s εβδ."},"year":{"_name":"έτη","one":"%1$s έτ.","other":"%1$s έτ."}},"electric":{"ampere":{"_name":"αμπέρ","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"μιλιαμπέρ","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ωμ","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"βολτ","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"τζάουλ","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"κιλοτζάουλ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"κιλοβάτ/ώρα","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"γιγαχέρτζ","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"χερτζ","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"κιλοχέρτζ","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"μεγαχέρτζ","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"α.μ.","one":"%1$s α.μ.","other":"%1$s α.μ."},"centimeter":{"_name":"εκ.","one":"%1$s εκ.","other":"%1$s εκ."},"decimeter":{"_name":"δεκ.","one":"%1$s δεκ.","other":"%1$s δεκ."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"πόδια","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"ίντσες","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"χλμ.","one":"%1$s χλμ.","other":"%1$s χλμ."},"light-year":{"_name":"έτη φωτός","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"μέτρα","one":"%1$s μ.","other":"%1$s μ."},"micrometer":{"_name":"μικρόμετρα","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"μίλια","one":"%1$s μίλ.","other":"%1$s μίλ."},"millimeter":{"_name":"χιλιοστόμ.","one":"%1$s χλστ.","other":"%1$s χλστ."},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"παρσέκ","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"γιάρδες","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"καράτια","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"γραμμάρια","one":"%1$s γρ.","other":"%1$s γρ."},"kilogram":{"_name":"χιλιόγραμμα","one":"%1$s χλγρ.","other":"%1$s χλγρ."},"metric-ton":{"_name":"mt","one":"%1$s mt","other":"%1$s mt"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ευγενής ουγγιά","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"λίβρες","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"τόνοι","one":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"γιγαβάτ","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"ίπποι","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"κιλοβάτ","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"μεγαβάτ","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"μιλιβάτ","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"βατ","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"εκτοπασκάλ","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"ίντσες στήλης υδραργύρου","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"μιλιμπάρ","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"χιλιοστόμετρα στήλης υδραργύρου","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"λίβρα ανά τετραγωνική ίντσα","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"καράτια","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"χλμ./ώρα","one":"%1$s χλμ./ώρα","other":"%1$s χλμ./ώρα"},"meter-per-second":{"_name":"μέτρα/δευτερόλεπτο","one":"%1$s μέτρο/δευτ.","other":"%1$s μέτρα/δευτ."},"mile-per-hour":{"_name":"μίλια/ώρα","one":"%1$s μίλι/ώρα","other":"%1$s μίλια/ώρα"}},"temperature":{"celsius":{"_name":"βαθμοί Κελσίου","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"βαθμοί Φαρενάιτ","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ακρ πόδια","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"κυβ. γιάρδες","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"κύπελλα","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"λίτρα","one":"%1$s λίτ.","other":"%1$s λίτ."},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"πίντες","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"τέταρτα γαλονιού","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"κ.σ.","one":"%1$s κ.σ.","other":"%1$s κ.σ."},"teaspoon":{"_name":"κ.γ.","one":"%1$s κ.γ.","other":"%1$s κ.γ."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"δύν. επιτάχ.","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"μέτρα/τετρ. δευτ.","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"λεπτά του τόξου","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"δευτερόλεπτα του τόξου","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"μοίρες","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"ακτίνια","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ακρ","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"εκτάρια","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"τ. εκ.","one":"%1$s τ. εκ.","other":"%1$s τ. εκ."},"square-foot":{"_name":"τετρ. πόδια","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"τετρ. ίντσες","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"τ. χλμ.","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"τ. μέτρα","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"τ. μίλια","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"τετρ. γιάρδες","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"λίτρα/χλμ.","one":"%1$s λίτρα/χλμ","other":"%1$s λίτρα/χλμ"},"mile-per-gallon":{"_name":"μίλια/γαλόνι","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"ημέρα","one":"%1$s η","other":"%1$s η"},"hour":{"_name":"ώρα","one":"%1$s ώ","other":"%1$s ώ","_per":"%1$s α.ώ."},"microsecond":{"_name":"μικροδεύτερα","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"χιλ. δευτ.","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"λεπ.","one":"%1$s λ","other":"%1$s λ"},"month":{"_name":"μήνας","one":"%1$s μ","other":"%1$s μ"},"nanosecond":{"_name":"νανοδεύτερα","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"δευτ.","one":"%1$s δ","other":"%1$s δ","_per":"%1$s ανα δευτ."},"week":{"_name":"εβδ.","one":"%1$s ε","other":"%1$s ε"},"year":{"_name":"έτ.","one":"%1$s έ","other":"%1$s έ"}},"electric":{"ampere":{"_name":"αμπέρ","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"μιλιαμπέρ","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ωμ","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"βολτ","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"τζάουλ","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"κιλοτζάουλ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"κιλοβάτ/ώρα","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"γιγαχέρτζ","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"χερτζ","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"κιλοχέρτζ","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"μεγαχέρτζ","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"α.μ.","one":"%1$s α.μ.","other":"%1$s α.μ."},"centimeter":{"_name":"εκ.","one":"%1$s εκ.","other":"%1$s εκ."},"decimeter":{"_name":"δεκ.","one":"%1$s δεκ.","other":"%1$s δεκ."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"πόδια","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"ίντσες","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"χλμ.","one":"%1$s χλμ.","other":"%1$s χλμ."},"light-year":{"_name":"έτη φωτός","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"μέτρο","one":"%1$s μ.","other":"%1$s μ."},"micrometer":{"_name":"μικρόμετρα","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"μίλια","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"χλστ.","one":"%1$s χλστ.","other":"%1$s χλστ."},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"παρσέκ","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"γιάρδες","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"καράτια","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"γρ.","one":"%1$s γρ.","other":"%1$s γρ."},"kilogram":{"_name":"χγρ.","one":"%1$s χγρ.","other":"%1$s χγρ."},"metric-ton":{"_name":"mt","one":"%1$s mt","other":"%1$s mt"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ευγενής ουγγιά","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"λίβρες","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"τόνοι","one":"%1$s t","other":"%1$s t"}},"power":{"gigawatt":{"_name":"γιγαβάτ","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"ίπποι","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"κιλοβάτ","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"μεγαβάτ","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"μιλιβάτ","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"βατ","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"εκτοπασκάλ","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"ίντσες στήλης υδραργύρου","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"μιλιμπάρ","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"χιλιοστόμετρα στήλης υδραργύρου","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"λίβρα ανά τετραγωνική ίντσα","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"καράτια","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"χλμ./ώρα","one":"%1$s χλμ./ώρα","other":"%1$s χλμ./ώρα"},"meter-per-second":{"_name":"μέτρα/δευτερόλεπτο","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"μίλια/ώρα","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"βαθμοί Φαρενάιτ","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ακρ πόδια","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"κυβ. γιάρδες","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"κύπελλα","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"λίτρο","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"πίντες","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"τέταρτα γαλονιού","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"κ.σ.","one":"%1$s κ.σ.","other":"%1$s κ.σ."},"teaspoon":{"_name":"κ.γ.","one":"%1$s κ.γ.","other":"%1$s κ.γ."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-001/calendar.json b/Punic/data/en-001/calendar.json new file mode 100644 index 0000000..1f59ea9 --- /dev/null +++ b/Punic/data/en-001/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, MMMM d, y","long":"MMMM d, y","medium":"MMM d, y","short":"M/d/yy"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-001/dateFields.json b/Punic/data/en-001/dateFields.json new file mode 100644 index 0000000..5273865 --- /dev/null +++ b/Punic/data/en-001/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtrs.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtrs. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-001/languages.json b/Punic/data/en-001/languages.json new file mode 100644 index 0000000..7dac970 --- /dev/null +++ b/Punic/data/en-001/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"U.K. English","en-US":"American English","en-US-alt-short":"U.S. English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Wolaytta","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-001/listPatterns.json b/Punic/data/en-001/listPatterns.json new file mode 100644 index 0000000..0c52e3a --- /dev/null +++ b/Punic/data/en-001/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-001/localeDisplayNames.json b/Punic/data/en-001/localeDisplayNames.json new file mode 100644 index 0000000..27490c2 --- /dev/null +++ b/Punic/data/en-001/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalized Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalized"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-001/numbers.json b/Punic/data/en-001/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-001/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-001/territories.json b/Punic/data/en-001/territories.json new file mode 100644 index 0000000..09b85c3 --- /dev/null +++ b/Punic/data/en-001/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"Southeast Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua & Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia & Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"St. Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta & Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"U.K.","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"St. Kitts & Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"St. Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"St. Pierre & Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"St. Helena","SI":"Slovenia","SJ":"Svalbard & Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé & Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks & Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad & Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"U.S.","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis & Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-001/timeZoneNames.json b/Punic/data/en-001/timeZoneNames.json new file mode 100644 index 0000000..5265cb0 --- /dev/null +++ b/Punic/data/en-001/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"St. 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern & Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"St. Pierre & Miquelon Time","standard":"St. Pierre & Miquelon Standard Time","daylight":"St. Pierre & Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis & Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-001/units.json b/Punic/data/en-001/units.json new file mode 100644 index 0000000..1bf86ea --- /dev/null +++ b/Punic/data/en-001/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"meters per second squared","one":"%1$s meter per second squared","other":"%1$s meters per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimeters","one":"%1$s square centimeter","other":"%1$s square centimeters"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometers","one":"%1$s square kilometer","other":"%1$s square kilometers"},"square-meter":{"_name":"square meters","one":"%1$s square meter","other":"%1$s square meters"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"liters per kilometer","one":"%1$s liter per kilometer","other":"%1$s liters per kilometer"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimeters","one":"%1$s centimeter","other":"%1$s centimeters"},"decimeter":{"_name":"decimeters","one":"%1$s decimeter","other":"%1$s decimeters"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometers","one":"%1$s kilometer","other":"%1$s kilometers"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"meters","one":"%1$s meter","other":"%1$s meters"},"micrometer":{"_name":"micrometers","one":"%1$s micrometer","other":"%1$s micrometers"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimeters","one":"%1$s millimeter","other":"%1$s millimeters"},"nanometer":{"_name":"nanometers","one":"%1$s nanometer","other":"%1$s nanometers"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometers","one":"%1$s picometer","other":"%1$s picometers"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimeters of mercury","one":"%1$s millimeter of mercury","other":"%1$s millimeters of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometers per hour","one":"%1$s kilometer per hour","other":"%1$s kilometers per hour"},"meter-per-second":{"_name":"meters per second","one":"%1$s meter per second","other":"%1$s meters per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centiliters","one":"%1$s centiliter","other":"%1$s centiliters"},"cubic-centimeter":{"_name":"cubic centimeters","one":"%1$s cubic centimeter","other":"%1$s cubic centimeters"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometers","one":"%1$s cubic kilometer","other":"%1$s cubic kilometers"},"cubic-meter":{"_name":"cubic meters","one":"%1$s cubic meter","other":"%1$s cubic meters"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"deciliters","one":"%1$s deciliter","other":"%1$s deciliters"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectoliters","one":"%1$s hectoliter","other":"%1$s hectoliters"},"liter":{"_name":"liters","one":"%1$s liter","other":"%1$s liters"},"megaliter":{"_name":"megaliters","one":"%1$s megaliter","other":"%1$s megaliters"},"milliliter":{"_name":"milliliters","one":"%1$s milliliter","other":"%1$s milliliters"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"meters/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"liters/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s ftm","other":"%1$s ftm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"meters","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"meters/sec","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"liters","one":"%1$s L","other":"%1$s L"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sGs"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$s#","other":"%1$s#"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s″ Hg","other":"%1$s″ Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-AU/calendar.json b/Punic/data/en-AU/calendar.json new file mode 100644 index 0000000..86913a1 --- /dev/null +++ b/Punic/data/en-AU/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"d/MM/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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-AU/dateFields.json b/Punic/data/en-AU/dateFields.json new file mode 100644 index 0000000..1ed521f --- /dev/null +++ b/Punic/data/en-AU/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"Last year","relative-type-0":"This year","relative-type-1":"Next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} yr.","relativeTimePattern-count-other":"+{0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} yr.","relativeTimePattern-count-other":"-{0} yr."}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Month","relative-type--1":"Last month","relative-type-0":"This month","relative-type-1":"Next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mo.","relativeTimePattern-count-other":"+{0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mo.","relativeTimePattern-count-other":"-{0} mo."}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} wk.","relativeTimePattern-count-other":"+{0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} wk.","relativeTimePattern-count-other":"-{0} wk."}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} day","relativeTimePattern-count-other":"+{0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} day","relativeTimePattern-count-other":"-{0} days"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"am/pm"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"s","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s ago","relativeTimePattern-count-other":"-{0} s ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-AU/languages.json b/Punic/data/en-AU/languages.json new file mode 100644 index 0000000..8863481 --- /dev/null +++ b/Punic/data/en-AU/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamum","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"UK English","en-US":"United States English","en-US-alt-short":"US English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Walamo","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-AU/listPatterns.json b/Punic/data/en-AU/listPatterns.json new file mode 100644 index 0000000..8cfce62 --- /dev/null +++ b/Punic/data/en-AU/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s and %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-AU/localeDisplayNames.json b/Punic/data/en-AU/localeDisplayNames.json new file mode 100644 index 0000000..93d8929 --- /dev/null +++ b/Punic/data/en-AU/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case-Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalised Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalised"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-AU/numbers.json b/Punic/data/en-AU/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-AU/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-AU/territories.json b/Punic/data/en-AU/territories.json new file mode 100644 index 0000000..67d6523 --- /dev/null +++ b/Punic/data/en-AU/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"South-Eastern Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua and Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia and Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta and Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"U.K.","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia and the South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard Island and McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"Saint Kitts and Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"Saint Pierre and Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Svalbard and Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé and Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks and Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad and Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Minor Outlying Islands","US":"United States","US-alt-short":"U.S.","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"Saint Vincent and the Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis and Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-AU/timeZoneNames.json b/Punic/data/en-AU/timeZoneNames.json new file mode 100644 index 0000000..3efe24f --- /dev/null +++ b/Punic/data/en-AU/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Summer Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"short":{"daylight":"BST"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Summer Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"},"short":{"generic":"ACT","standard":"ACST","daylight":"ACDT"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"},"short":{"generic":"ACWT","standard":"ACWST","daylight":"ACWDT"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"},"short":{"generic":"AET","standard":"AEST","daylight":"AEDT"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"},"short":{"generic":"AWT","standard":"AWST","daylight":"AWDT"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Summer Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern and Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Summer Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Summer Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Summer Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Summer Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"},"short":{"generic":"LHT","standard":"LHST","daylight":"LHDT"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"},"short":{"generic":"NZT","standard":"NZST","daylight":"NZDT"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre and Miquelon Time","standard":"Saint Pierre and Miquelon Standard Time","daylight":"Saint Pierre and Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Summer Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis and Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-AU/units.json b/Punic/data/en-AU/units.json new file mode 100644 index 0000000..9cd356f --- /dev/null +++ b/Punic/data/en-AU/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"metres per second squared","one":"%1$s metre per second squared","other":"%1$s metres per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimetres","one":"%1$s square centimetre","other":"%1$s square centimetres"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometres","one":"%1$s square kilometre","other":"%1$s square kilometres"},"square-meter":{"_name":"square metres","one":"%1$s square metre","other":"%1$s square metres"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"litres per kilometre","one":"%1$s litre per kilometre","other":"%1$s litres per kilometre"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimetres","one":"%1$s centimetre","other":"%1$s centimetres"},"decimeter":{"_name":"decimetre","one":"%1$s decimetre","other":"%1$s decimetres"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometres","one":"%1$s kilometre","other":"%1$s kilometres"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"metres","one":"%1$s metre","other":"%1$s metres"},"micrometer":{"_name":"micrometre","one":"%1$s micrometre","other":"%1$s micrometres"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimetres","one":"%1$s millimetre","other":"%1$s millimetres"},"nanometer":{"_name":"nanometres","one":"%1$s nanometre","other":"%1$s nanometres"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometres","one":"%1$s picometre","other":"%1$s picometres"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"tonnes","one":"tonne","other":"%1$s tonnes"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimetres of mercury","one":"%1$s millimetre of mercury","other":"%1$s millimetres of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kilometre per hour","other":"%1$s kilometres per hour"},"meter-per-second":{"_name":"metres per second","one":"%1$s metre per second","other":"%1$s metres per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"cubic centimetres","one":"%1$s cubic centimetre","other":"%1$s cubic centimetres"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometres","one":"%1$s cubic kilometre","other":"%1$s cubic kilometres"},"cubic-meter":{"_name":"cubic metres","one":"%1$s cubic metre","other":"%1$s cubic metres"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"decilitres","one":"%1$s decilitre","other":"%1$s decilitres"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"megalitres","one":"%1$s megalitre","other":"%1$s megalitres"},"milliliter":{"_name":"millilitres","one":"%1$s millilitre","other":"%1$s millilitres"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metres/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litres/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"centimetres","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metres","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmetres","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"metres per second","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"litres","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"litre","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-CA/calendar.json b/Punic/data/en-CA/calendar.json new file mode 100644 index 0000000..c8ee38e --- /dev/null +++ b/Punic/data/en-CA/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, MMMM d, y","long":"MMMM d, y","medium":"MMM d, y","short":"y-MM-dd"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-CA/dateFields.json b/Punic/data/en-CA/dateFields.json new file mode 100644 index 0000000..5273865 --- /dev/null +++ b/Punic/data/en-CA/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtrs.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtrs. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-CA/languages.json b/Punic/data/en-CA/languages.json new file mode 100644 index 0000000..7dac970 --- /dev/null +++ b/Punic/data/en-CA/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"U.K. English","en-US":"American English","en-US-alt-short":"U.S. English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Wolaytta","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-CA/listPatterns.json b/Punic/data/en-CA/listPatterns.json new file mode 100644 index 0000000..0c52e3a --- /dev/null +++ b/Punic/data/en-CA/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-CA/localeDisplayNames.json b/Punic/data/en-CA/localeDisplayNames.json new file mode 100644 index 0000000..27490c2 --- /dev/null +++ b/Punic/data/en-CA/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalized Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalized"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-CA/numbers.json b/Punic/data/en-CA/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-CA/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-CA/territories.json b/Punic/data/en-CA/territories.json new file mode 100644 index 0000000..09b85c3 --- /dev/null +++ b/Punic/data/en-CA/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"Southeast Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua & Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia & Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"St. Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta & Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"U.K.","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"St. Kitts & Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"St. Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"St. Pierre & Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"St. Helena","SI":"Slovenia","SJ":"Svalbard & Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé & Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks & Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad & Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"U.S.","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis & Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-CA/timeZoneNames.json b/Punic/data/en-CA/timeZoneNames.json new file mode 100644 index 0000000..eb638ee --- /dev/null +++ b/Punic/data/en-CA/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"St. 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapagos"},"Gambier":{"exemplarCity":"Gambier"},"Guadalcanal":{"exemplarCity":"Guadalcanal"},"Guam":{"exemplarCity":"Guam"},"Honolulu":{"short":{"generic":"HST","standard":"HST","daylight":"HDT"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"},"short":{"generic":"AKT","standard":"AKST","daylight":"AKDT"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"},"short":{"generic":"CT","standard":"CST","daylight":"CDT"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"},"short":{"generic":"ET","standard":"EST","daylight":"EDT"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"},"short":{"generic":"MT","standard":"MST","daylight":"MDT"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"},"short":{"generic":"PT","standard":"PST","daylight":"PDT"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"},"short":{"generic":"AT","standard":"AST","daylight":"ADT"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern & Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"},"short":{"generic":"HAT","standard":"HAST","daylight":"HADT"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"},"short":{"generic":"NT","standard":"NST","daylight":"NDT"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"St. Pierre & Miquelon Time","standard":"St. Pierre & Miquelon Standard Time","daylight":"St. Pierre & Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis & Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-CA/units.json b/Punic/data/en-CA/units.json new file mode 100644 index 0000000..4573917 --- /dev/null +++ b/Punic/data/en-CA/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"meters per second squared","one":"%1$s meter per second squared","other":"%1$s meters per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimeters","one":"%1$s square centimeter","other":"%1$s square centimeters"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometers","one":"%1$s square kilometer","other":"%1$s square kilometers"},"square-meter":{"_name":"square meters","one":"%1$s square meter","other":"%1$s square meters"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"liters per kilometer","one":"%1$s liter per kilometer","other":"%1$s liters per kilometer"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimeters","one":"%1$s centimeter","other":"%1$s centimeters"},"decimeter":{"_name":"decimeters","one":"%1$s decimeter","other":"%1$s decimeters"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometers","one":"%1$s kilometer","other":"%1$s kilometers"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"meters","one":"%1$s meter","other":"%1$s meters"},"micrometer":{"_name":"micrometers","one":"%1$s micrometer","other":"%1$s micrometers"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimeters","one":"%1$s millimeter","other":"%1$s millimeters"},"nanometer":{"_name":"nanometers","one":"%1$s nanometer","other":"%1$s nanometers"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometers","one":"%1$s picometer","other":"%1$s picometers"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimeters of mercury","one":"%1$s millimeter of mercury","other":"%1$s millimeters of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometers per hour","one":"%1$s kilometer per hour","other":"%1$s kilometers per hour"},"meter-per-second":{"_name":"meters per second","one":"%1$s meter per second","other":"%1$s meters per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centiliters","one":"%1$s centiliter","other":"%1$s centiliters"},"cubic-centimeter":{"_name":"cubic centimeters","one":"%1$s cubic centimeter","other":"%1$s cubic centimeters"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometers","one":"%1$s cubic kilometer","other":"%1$s cubic kilometers"},"cubic-meter":{"_name":"cubic meters","one":"%1$s cubic meter","other":"%1$s cubic meters"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"deciliters","one":"%1$s deciliter","other":"%1$s deciliters"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectoliters","one":"%1$s hectoliter","other":"%1$s hectoliters"},"liter":{"_name":"liters","one":"%1$s liter","other":"%1$s liters"},"megaliter":{"_name":"megaliters","one":"%1$s megaliter","other":"%1$s megaliters"},"milliliter":{"_name":"milliliters","one":"%1$s milliliter","other":"%1$s milliliters"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"meters/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"liters/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s ftm","other":"%1$s ftm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"meters","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"meters/sec","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"liters","one":"%1$s L","other":"%1$s L"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sGs"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s″ Hg","other":"%1$s″ Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°","other":"%1$s°"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-GB/calendar.json b/Punic/data/en-GB/calendar.json new file mode 100644 index 0000000..077e7b5 --- /dev/null +++ b/Punic/data/en-GB/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd/MM/y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-GB/dateFields.json b/Punic/data/en-GB/dateFields.json new file mode 100644 index 0000000..1e04063 --- /dev/null +++ b/Punic/data/en-GB/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} yr.","relativeTimePattern-count-other":"+{0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} yr.","relativeTimePattern-count-other":"-{0} yr."}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mo.","relativeTimePattern-count-other":"+{0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mo.","relativeTimePattern-count-other":"-{0} mo."}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} wk.","relativeTimePattern-count-other":"+{0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} wk.","relativeTimePattern-count-other":"-{0} wk."}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} day","relativeTimePattern-count-other":"+{0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} day","relativeTimePattern-count-other":"-{0} days"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"am/pm"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"s","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s ago","relativeTimePattern-count-other":"-{0} s ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-GB/languages.json b/Punic/data/en-GB/languages.json new file mode 100644 index 0000000..9b76102 --- /dev/null +++ b/Punic/data/en-GB/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"UK English","en-US":"American English","en-US-alt-short":"US English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Walamo","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-GB/listPatterns.json b/Punic/data/en-GB/listPatterns.json new file mode 100644 index 0000000..b6c594b --- /dev/null +++ b/Punic/data/en-GB/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-GB/localeDisplayNames.json b/Punic/data/en-GB/localeDisplayNames.json new file mode 100644 index 0000000..93d8929 --- /dev/null +++ b/Punic/data/en-GB/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case-Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalised Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalised"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-GB/numbers.json b/Punic/data/en-GB/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-GB/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-GB/territories.json b/Punic/data/en-GB/territories.json new file mode 100644 index 0000000..11e7e70 --- /dev/null +++ b/Punic/data/en-GB/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"South-Eastern Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua and Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia and Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta and Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"UK","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"Saint Kitts and Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"Saint Pierre and Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Svalbard and Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé and Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks and Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad and Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"US","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis and Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-GB/timeZoneNames.json b/Punic/data/en-GB/timeZoneNames.json new file mode 100644 index 0000000..989df6c --- /dev/null +++ b/Punic/data/en-GB/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"short":{"daylight":"BST"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern and Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre and Miquelon Time","standard":"Saint Pierre and Miquelon Standard Time","daylight":"Saint Pierre and Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis and Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-GB/units.json b/Punic/data/en-GB/units.json new file mode 100644 index 0000000..505049a --- /dev/null +++ b/Punic/data/en-GB/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"metres per second squared","one":"%1$s metre per second squared","other":"%1$s metres per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimetres","one":"%1$s square centimetre","other":"%1$s square centimetres"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometres","one":"%1$s square kilometre","other":"%1$s square kilometres"},"square-meter":{"_name":"square metres","one":"%1$s square metre","other":"%1$s square metres"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"litres per kilometre","one":"%1$s litre per kilometre","other":"%1$s litres per kilometre"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimetres","one":"%1$s centimetre","other":"%1$s centimetres"},"decimeter":{"_name":"decimetre","one":"%1$s decimetre","other":"%1$s decimetres"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometres","one":"%1$s kilometre","other":"%1$s kilometres"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"metres","one":"%1$s metre","other":"%1$s metres"},"micrometer":{"_name":"micrometre","one":"%1$s micrometre","other":"%1$s micrometres"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimetres","one":"%1$s millimetre","other":"%1$s millimetres"},"nanometer":{"_name":"nanometres","one":"%1$s nanometre","other":"%1$s nanometres"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometres","one":"%1$s picometre","other":"%1$s picometres"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimetres of mercury","one":"%1$s millimetre of mercury","other":"%1$s millimetres of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kilometre per hour","other":"%1$s kilometres per hour"},"meter-per-second":{"_name":"metres per second","one":"%1$s metre per second","other":"%1$s metres per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"cubic centimetres","one":"%1$s cubic centimetre","other":"%1$s cubic centimetres"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometres","one":"%1$s cubic kilometre","other":"%1$s cubic kilometres"},"cubic-meter":{"_name":"cubic metres","one":"%1$s cubic metre","other":"%1$s cubic metres"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"decilitres","one":"%1$s decilitre","other":"%1$s decilitres"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"megalitres","one":"%1$s megalitre","other":"%1$s megalitres"},"milliliter":{"_name":"millilitres","one":"%1$s millilitre","other":"%1$s millilitres"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metres/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litres/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"centimetres","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metres","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"metres per second","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"litres","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"litre","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-HK/calendar.json b/Punic/data/en-HK/calendar.json new file mode 100644 index 0000000..0405708 --- /dev/null +++ b/Punic/data/en-HK/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM 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":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-HK/dateFields.json b/Punic/data/en-HK/dateFields.json new file mode 100644 index 0000000..1e04063 --- /dev/null +++ b/Punic/data/en-HK/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} yr.","relativeTimePattern-count-other":"+{0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} yr.","relativeTimePattern-count-other":"-{0} yr."}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mo.","relativeTimePattern-count-other":"+{0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mo.","relativeTimePattern-count-other":"-{0} mo."}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} wk.","relativeTimePattern-count-other":"+{0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} wk.","relativeTimePattern-count-other":"-{0} wk."}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} day","relativeTimePattern-count-other":"+{0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} day","relativeTimePattern-count-other":"-{0} days"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"am/pm"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"s","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s ago","relativeTimePattern-count-other":"-{0} s ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-HK/languages.json b/Punic/data/en-HK/languages.json new file mode 100644 index 0000000..9b76102 --- /dev/null +++ b/Punic/data/en-HK/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"UK English","en-US":"American English","en-US-alt-short":"US English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Walamo","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-HK/listPatterns.json b/Punic/data/en-HK/listPatterns.json new file mode 100644 index 0000000..b6c594b --- /dev/null +++ b/Punic/data/en-HK/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-HK/localeDisplayNames.json b/Punic/data/en-HK/localeDisplayNames.json new file mode 100644 index 0000000..93d8929 --- /dev/null +++ b/Punic/data/en-HK/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case-Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalised Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalised"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-HK/numbers.json b/Punic/data/en-HK/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-HK/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-HK/territories.json b/Punic/data/en-HK/territories.json new file mode 100644 index 0000000..11e7e70 --- /dev/null +++ b/Punic/data/en-HK/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"South-Eastern Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua and Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia and Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta and Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"UK","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"Saint Kitts and Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"Saint Pierre and Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Svalbard and Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé and Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks and Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad and Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"US","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis and Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-HK/timeZoneNames.json b/Punic/data/en-HK/timeZoneNames.json new file mode 100644 index 0000000..a452c37 --- /dev/null +++ b/Punic/data/en-HK/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern and Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"},"short":{"generic":"HKT","standard":"HKT","daylight":"HKST"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre and Miquelon Time","standard":"Saint Pierre and Miquelon Standard Time","daylight":"Saint Pierre and Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis and Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-HK/units.json b/Punic/data/en-HK/units.json new file mode 100644 index 0000000..505049a --- /dev/null +++ b/Punic/data/en-HK/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"metres per second squared","one":"%1$s metre per second squared","other":"%1$s metres per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimetres","one":"%1$s square centimetre","other":"%1$s square centimetres"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometres","one":"%1$s square kilometre","other":"%1$s square kilometres"},"square-meter":{"_name":"square metres","one":"%1$s square metre","other":"%1$s square metres"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"litres per kilometre","one":"%1$s litre per kilometre","other":"%1$s litres per kilometre"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimetres","one":"%1$s centimetre","other":"%1$s centimetres"},"decimeter":{"_name":"decimetre","one":"%1$s decimetre","other":"%1$s decimetres"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometres","one":"%1$s kilometre","other":"%1$s kilometres"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"metres","one":"%1$s metre","other":"%1$s metres"},"micrometer":{"_name":"micrometre","one":"%1$s micrometre","other":"%1$s micrometres"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimetres","one":"%1$s millimetre","other":"%1$s millimetres"},"nanometer":{"_name":"nanometres","one":"%1$s nanometre","other":"%1$s nanometres"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometres","one":"%1$s picometre","other":"%1$s picometres"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimetres of mercury","one":"%1$s millimetre of mercury","other":"%1$s millimetres of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kilometre per hour","other":"%1$s kilometres per hour"},"meter-per-second":{"_name":"metres per second","one":"%1$s metre per second","other":"%1$s metres per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"cubic centimetres","one":"%1$s cubic centimetre","other":"%1$s cubic centimetres"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometres","one":"%1$s cubic kilometre","other":"%1$s cubic kilometres"},"cubic-meter":{"_name":"cubic metres","one":"%1$s cubic metre","other":"%1$s cubic metres"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"decilitres","one":"%1$s decilitre","other":"%1$s decilitres"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"megalitres","one":"%1$s megalitre","other":"%1$s megalitres"},"milliliter":{"_name":"millilitres","one":"%1$s millilitre","other":"%1$s millilitres"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metres/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litres/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"centimetres","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metres","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"metres per second","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"litres","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"litre","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en-IN/calendar.json b/Punic/data/en-IN/calendar.json new file mode 100644 index 0000000..85b7d1a --- /dev/null +++ b/Punic/data/en-IN/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"am","am-alt-variant":"am","noon":"noon","pm":"pm","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"dd-MMM-y","short":"dd/MM/yy"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-IN/dateFields.json b/Punic/data/en-IN/dateFields.json new file mode 100644 index 0000000..1e04063 --- /dev/null +++ b/Punic/data/en-IN/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} yr.","relativeTimePattern-count-other":"+{0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} yr.","relativeTimePattern-count-other":"-{0} yr."}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} Q","relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} Q","relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mo.","relativeTimePattern-count-other":"+{0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mo.","relativeTimePattern-count-other":"-{0} mo."}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} wk.","relativeTimePattern-count-other":"+{0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} wk.","relativeTimePattern-count-other":"-{0} wk."}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} day","relativeTimePattern-count-other":"+{0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} day","relativeTimePattern-count-other":"-{0} days"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"am/pm"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"s","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s ago","relativeTimePattern-count-other":"-{0} s ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en-IN/languages.json b/Punic/data/en-IN/languages.json new file mode 100644 index 0000000..9b76102 --- /dev/null +++ b/Punic/data/en-IN/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"UK English","en-US":"American English","en-US-alt-short":"US English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Walamo","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en-IN/listPatterns.json b/Punic/data/en-IN/listPatterns.json new file mode 100644 index 0000000..b6c594b --- /dev/null +++ b/Punic/data/en-IN/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s and %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en-IN/localeDisplayNames.json b/Punic/data/en-IN/localeDisplayNames.json new file mode 100644 index 0000000..93d8929 --- /dev/null +++ b/Punic/data/en-IN/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case-Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalised Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalised"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en-IN/numbers.json b/Punic/data/en-IN/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en-IN/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en-IN/territories.json b/Punic/data/en-IN/territories.json new file mode 100644 index 0000000..11e7e70 --- /dev/null +++ b/Punic/data/en-IN/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"South-Eastern Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua and Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia and Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta and Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"UK","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"Saint Kitts and Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"Saint Pierre and Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Svalbard and Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé and Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks and Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad and Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"US","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis and Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en-IN/timeZoneNames.json b/Punic/data/en-IN/timeZoneNames.json new file mode 100644 index 0000000..03238ea --- /dev/null +++ b/Punic/data/en-IN/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern and Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"},"short":{"standard":"IST"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre and Miquelon Time","standard":"Saint Pierre and Miquelon Standard Time","daylight":"Saint Pierre and Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis and Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en-IN/units.json b/Punic/data/en-IN/units.json new file mode 100644 index 0000000..505049a --- /dev/null +++ b/Punic/data/en-IN/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"metres per second squared","one":"%1$s metre per second squared","other":"%1$s metres per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimetres","one":"%1$s square centimetre","other":"%1$s square centimetres"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometres","one":"%1$s square kilometre","other":"%1$s square kilometres"},"square-meter":{"_name":"square metres","one":"%1$s square metre","other":"%1$s square metres"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"litres per kilometre","one":"%1$s litre per kilometre","other":"%1$s litres per kilometre"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimetres","one":"%1$s centimetre","other":"%1$s centimetres"},"decimeter":{"_name":"decimetre","one":"%1$s decimetre","other":"%1$s decimetres"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometres","one":"%1$s kilometre","other":"%1$s kilometres"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"metres","one":"%1$s metre","other":"%1$s metres"},"micrometer":{"_name":"micrometre","one":"%1$s micrometre","other":"%1$s micrometres"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimetres","one":"%1$s millimetre","other":"%1$s millimetres"},"nanometer":{"_name":"nanometres","one":"%1$s nanometre","other":"%1$s nanometres"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometres","one":"%1$s picometre","other":"%1$s picometres"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimetres of mercury","one":"%1$s millimetre of mercury","other":"%1$s millimetres of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kilometre per hour","other":"%1$s kilometres per hour"},"meter-per-second":{"_name":"metres per second","one":"%1$s metre per second","other":"%1$s metres per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"cubic centimetres","one":"%1$s cubic centimetre","other":"%1$s cubic centimetres"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometres","one":"%1$s cubic kilometre","other":"%1$s cubic kilometres"},"cubic-meter":{"_name":"cubic metres","one":"%1$s cubic metre","other":"%1$s cubic metres"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"decilitres","one":"%1$s decilitre","other":"%1$s decilitres"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"megalitres","one":"%1$s megalitre","other":"%1$s megalitres"},"milliliter":{"_name":"millilitres","one":"%1$s millilitre","other":"%1$s millilitres"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metres/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litres/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"centimetres","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metres","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"kilometres per hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"metres per second","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"litres","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"litre","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/en/calendar.json b/Punic/data/en/calendar.json new file mode 100644 index 0000000..1f59ea9 --- /dev/null +++ b/Punic/data/en/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"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":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Su","mon":"Mo","tue":"Tu","wed":"We","thu":"Th","fri":"Fr","sat":"Sa"},"wide":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1st quarter","2":"2nd quarter","3":"3rd quarter","4":"4th quarter"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}},"stand-alone":{"abbreviated":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","am-alt-variant":"am","noon":"noon","pm":"PM","pm-alt-variant":"pm"}}},"eras":{"wide":{"0":"Before Christ","0-alt-variant":"Before Common Era","1":"Anno Domini","1-alt-variant":"Common Era"},"abbreviated":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"},"narrow":{"0":"B","0-alt-variant":"BCE","1":"A","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, MMMM d, y","long":"MMMM d, y","medium":"MMM d, y","short":"M/d/yy"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s 'at' %1$s","long":"%2$s 'at' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/en/dateFields.json b/Punic/data/en/dateFields.json new file mode 100644 index 0000000..5273865 --- /dev/null +++ b/Punic/data/en/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{"displayName":"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{"displayName":"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtrs.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtrs. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{"displayName":"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"}},"week-short":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"week-narrow":{"displayName":"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{"displayName":"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} days","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} days ago","relativeTimePattern-count-other":"{0} days ago"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sun.","relative-type-0":"this Sun.","relative-type-1":"next Sun."},"sun-narrow":{"relative-type--1":"last Su","relative-type-0":"this Su","relative-type-1":"next Su"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Mon.","relative-type-0":"this Mon.","relative-type-1":"next Mon."},"mon-narrow":{"relative-type--1":"last M","relative-type-0":"this M","relative-type-1":"next M"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tue.","relative-type-0":"this Tue.","relative-type-1":"next Tue."},"tue-narrow":{"relative-type--1":"last Tu","relative-type-0":"this Tu","relative-type-1":"next Tu"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wed.","relative-type-0":"this Wed.","relative-type-1":"next Wed."},"wed-narrow":{"relative-type--1":"last W","relative-type-0":"this W","relative-type-1":"next W"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thu.","relative-type-0":"this Thu.","relative-type-1":"next Thu."},"thu-narrow":{"relative-type--1":"last Th","relative-type-0":"this Th","relative-type-1":"next Th"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Fri.","relative-type-0":"this Fri.","relative-type-1":"next Fri."},"fri-narrow":{"relative-type--1":"last F","relative-type-0":"this F","relative-type-1":"next F"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Sat.","relative-type-0":"this Sat.","relative-type-1":"next Sat."},"sat-narrow":{"relative-type--1":"last Sa","relative-type-0":"this Sa","relative-type-1":"next Sa"},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{"displayName":"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"zone":{"displayName":"Time Zone"}} \ No newline at end of file diff --git a/Punic/data/en/languages.json b/Punic/data/en/languages.json new file mode 100644 index 0000000..7dac970 --- /dev/null +++ b/Punic/data/en/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","az-alt-short":"Azeri","azb":"South Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengali","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Sorani Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-GB-alt-short":"U.K. English","en-US":"American English","en-US-alt-short":"U.S. English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","ky-alt-variant":"Kirghiz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","loz":"Lozi","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Micmac","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple Languages","mus":"Creek","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"NʼKo","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Oriya","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","ps-alt-variant":"Pushto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","root":"Root","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","swb":"Comorian","swc":"Congo Swahili","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","ug-alt-variant":"Uighur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown Language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Wolaytta","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/en/listPatterns.json b/Punic/data/en/listPatterns.json new file mode 100644 index 0000000..0c52e3a --- /dev/null +++ b/Punic/data/en/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, and %2$s","2":"%1$s and %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/en/localeDisplayNames.json b/Punic/data/en/localeDisplayNames.json new file mode 100644 index 0000000..27490c2 --- /dev/null +++ b/Punic/data/en/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendar","colAlternate":"Ignore Symbols Sorting","colBackwards":"Reversed Accent Sorting","colCaseFirst":"Uppercase/Lowercase Ordering","colCaseLevel":"Case Sensitive Sorting","colHiraganaQuaternary":"Kana Sorting","colNormalization":"Normalized Sorting","colNumeric":"Numeric Sorting","colReorder":"Script/Block Reordering","colStrength":"Sorting Strength","collation":"Sort Order","currency":"Currency","kv":"Highest Ignored","numbers":"Numbers","timezone":"Time Zone","va":"Locale Variant","variableTop":"Sort As Symbols","x":"Private-Use"},"types":{"numbers":{"vaii":"Vai Digits"},"collation":{"zhuyin":"Zhuyin Sort Order"},"calendar":{"roc":"Minguo Calendar"},"colStrength":{"tertiary":"Sort Accents/Case/Width"},"colCaseFirst":{"upper":"Sort Uppercase First"},"colBackwards":{"yes":"Sort Accents Reversed"},"colCaseLevel":{"yes":"Sort Case Sensitive"},"colHiraganaQuaternary":{"yes":"Sort Kana Differently"},"colNormalization":{"yes":"Sort Unicode Normalized"},"colNumeric":{"yes":"Sort Digits Numerically"},"colAlternate":{"shifted":"Sort Ignoring Symbols"},"va":{"posix":"POSIX Compliant Locale"}},"codePatterns":{"language":"Language: %1$s","script":"Script: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/en/numbers.json b/Punic/data/en/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/en/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/en/territories.json b/Punic/data/en/territories.json new file mode 100644 index 0000000..09b85c3 --- /dev/null +++ b/Punic/data/en/territories.json @@ -0,0 +1 @@ +{"001":"World","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"Southeast Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","419":"Latin America","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua & Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Netherlands Antilles","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia & Herzegovina","BA-alt-short":"Bosnia","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"St. Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Central African Republic","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republic)","CH":"Switzerland","CI":"Côte d’Ivoire","CI-alt-variant":"Ivory Coast","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czech Republic","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta & Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FK-alt-variant":"Falkland Islands (Islas Malvinas)","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GB-alt-short":"U.K.","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HK-alt-short":"Hong Kong","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"St. Kitts & Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"St. Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MM-alt-short":"Myanmar","MN":"Mongolia","MO":"Macau SAR China","MO-alt-short":"Macau","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"St. Pierre & Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"St. Helena","SI":"Slovenia","SJ":"Svalbard & Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé & Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks & Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"East Timor","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad & Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","US":"United States","US-alt-short":"U.S.","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis & Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"} \ No newline at end of file diff --git a/Punic/data/en/timeZoneNames.json b/Punic/data/en/timeZoneNames.json new file mode 100644 index 0000000..367fa48 --- /dev/null +++ b/Punic/data/en/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Time","regionFormat-type-standard":"%1$s Standard Time","regionFormat-type-daylight":"%1$s Daylight Time","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"St. 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Irish Standard Time"},"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"British Summer Time"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh City"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapagos"},"Gambier":{"exemplarCity":"Gambier"},"Guadalcanal":{"exemplarCity":"Guadalcanal"},"Guam":{"exemplarCity":"Guam"},"Honolulu":{"short":{"generic":"HST","standard":"HST","daylight":"HDT"},"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":"Vostok"}},"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":"Unknown City"}}},"metazone":{"Acre":{"long":{"generic":"Acre Time","standard":"Acre Standard Time","daylight":"Acre Summer Time"}},"Afghanistan":{"long":{"standard":"Afghanistan Time"}},"Africa_Central":{"long":{"standard":"Central Africa Time"}},"Africa_Eastern":{"long":{"standard":"East Africa Time"}},"Africa_Southern":{"long":{"standard":"South Africa Standard Time"}},"Africa_Western":{"long":{"generic":"West Africa Time","standard":"West Africa Standard Time","daylight":"West Africa Summer Time"}},"Alaska":{"long":{"generic":"Alaska Time","standard":"Alaska Standard Time","daylight":"Alaska Daylight Time"},"short":{"generic":"AKT","standard":"AKST","daylight":"AKDT"}},"Almaty":{"long":{"generic":"Almaty Time","standard":"Almaty Standard Time","daylight":"Almaty Summer Time"}},"Amazon":{"long":{"generic":"Amazon Time","standard":"Amazon Standard Time","daylight":"Amazon Summer Time"}},"America_Central":{"long":{"generic":"Central Time","standard":"Central Standard Time","daylight":"Central Daylight Time"},"short":{"generic":"CT","standard":"CST","daylight":"CDT"}},"America_Eastern":{"long":{"generic":"Eastern Time","standard":"Eastern Standard Time","daylight":"Eastern Daylight Time"},"short":{"generic":"ET","standard":"EST","daylight":"EDT"}},"America_Mountain":{"long":{"generic":"Mountain Time","standard":"Mountain Standard Time","daylight":"Mountain Daylight Time"},"short":{"generic":"MT","standard":"MST","daylight":"MDT"}},"America_Pacific":{"long":{"generic":"Pacific Time","standard":"Pacific Standard Time","daylight":"Pacific Daylight Time"},"short":{"generic":"PT","standard":"PST","daylight":"PDT"}},"Anadyr":{"long":{"generic":"Anadyr Time","standard":"Anadyr Standard Time","daylight":"Anadyr Summer Time"}},"Apia":{"long":{"generic":"Apia Time","standard":"Apia Standard Time","daylight":"Apia Daylight Time"}},"Aqtau":{"long":{"generic":"Aqtau Time","standard":"Aqtau Standard Time","daylight":"Aqtau Summer Time"}},"Aqtobe":{"long":{"generic":"Aqtobe Time","standard":"Aqtobe Standard Time","daylight":"Aqtobe Summer Time"}},"Arabian":{"long":{"generic":"Arabian Time","standard":"Arabian Standard Time","daylight":"Arabian Daylight Time"}},"Argentina":{"long":{"generic":"Argentina Time","standard":"Argentina Standard Time","daylight":"Argentina Summer Time"}},"Argentina_Western":{"long":{"generic":"Western Argentina Time","standard":"Western Argentina Standard Time","daylight":"Western Argentina Summer Time"}},"Armenia":{"long":{"generic":"Armenia Time","standard":"Armenia Standard Time","daylight":"Armenia Summer Time"}},"Atlantic":{"long":{"generic":"Atlantic Time","standard":"Atlantic Standard Time","daylight":"Atlantic Daylight Time"},"short":{"generic":"AT","standard":"AST","daylight":"ADT"}},"Australia_Central":{"long":{"generic":"Central Australia Time","standard":"Australian Central Standard Time","daylight":"Australian Central Daylight Time"}},"Australia_CentralWestern":{"long":{"generic":"Australian Central Western Time","standard":"Australian Central Western Standard Time","daylight":"Australian Central Western Daylight Time"}},"Australia_Eastern":{"long":{"generic":"Eastern Australia Time","standard":"Australian Eastern Standard Time","daylight":"Australian Eastern Daylight Time"}},"Australia_Western":{"long":{"generic":"Western Australia Time","standard":"Australian Western Standard Time","daylight":"Australian Western Daylight Time"}},"Azerbaijan":{"long":{"generic":"Azerbaijan Time","standard":"Azerbaijan Standard Time","daylight":"Azerbaijan Summer Time"}},"Azores":{"long":{"generic":"Azores Time","standard":"Azores Standard Time","daylight":"Azores Summer Time"}},"Bangladesh":{"long":{"generic":"Bangladesh Time","standard":"Bangladesh Standard Time","daylight":"Bangladesh Summer Time"}},"Bhutan":{"long":{"standard":"Bhutan Time"}},"Bolivia":{"long":{"standard":"Bolivia Time"}},"Brasilia":{"long":{"generic":"Brasilia Time","standard":"Brasilia Standard Time","daylight":"Brasilia Summer Time"}},"Brunei":{"long":{"standard":"Brunei Darussalam Time"}},"Cape_Verde":{"long":{"generic":"Cape Verde Time","standard":"Cape Verde Standard Time","daylight":"Cape Verde Summer Time"}},"Casey":{"long":{"standard":"Casey Time"}},"Chamorro":{"long":{"standard":"Chamorro Standard Time"}},"Chatham":{"long":{"generic":"Chatham Time","standard":"Chatham Standard Time","daylight":"Chatham Daylight Time"}},"Chile":{"long":{"generic":"Chile Time","standard":"Chile Standard Time","daylight":"Chile Summer Time"}},"China":{"long":{"generic":"China Time","standard":"China Standard Time","daylight":"China Daylight Time"}},"Choibalsan":{"long":{"generic":"Choibalsan Time","standard":"Choibalsan Standard Time","daylight":"Choibalsan Summer Time"}},"Christmas":{"long":{"standard":"Christmas Island Time"}},"Cocos":{"long":{"standard":"Cocos Islands Time"}},"Colombia":{"long":{"generic":"Colombia Time","standard":"Colombia Standard Time","daylight":"Colombia Summer Time"}},"Cook":{"long":{"generic":"Cook Islands Time","standard":"Cook Islands Standard Time","daylight":"Cook Islands Half Summer Time"}},"Cuba":{"long":{"generic":"Cuba Time","standard":"Cuba Standard Time","daylight":"Cuba Daylight Time"}},"Davis":{"long":{"standard":"Davis Time"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Time"}},"East_Timor":{"long":{"standard":"East Timor Time"}},"Easter":{"long":{"generic":"Easter Island Time","standard":"Easter Island Standard Time","daylight":"Easter Island Summer Time"}},"Ecuador":{"long":{"standard":"Ecuador Time"}},"Europe_Central":{"long":{"generic":"Central European Time","standard":"Central European Standard Time","daylight":"Central European Summer Time"}},"Europe_Eastern":{"long":{"generic":"Eastern European Time","standard":"Eastern European Standard Time","daylight":"Eastern European Summer Time"}},"Europe_Further_Eastern":{"long":{"standard":"Further-eastern European Time"}},"Europe_Western":{"long":{"generic":"Western European Time","standard":"Western European Standard Time","daylight":"Western European Summer Time"}},"Falkland":{"long":{"generic":"Falkland Islands Time","standard":"Falkland Islands Standard Time","daylight":"Falkland Islands Summer Time"}},"Fiji":{"long":{"generic":"Fiji Time","standard":"Fiji Standard Time","daylight":"Fiji Summer Time"}},"French_Guiana":{"long":{"standard":"French Guiana Time"}},"French_Southern":{"long":{"standard":"French Southern & Antarctic Time"}},"GMT":{"long":{"standard":"Greenwich Mean Time"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galapagos Time"}},"Gambier":{"long":{"standard":"Gambier Time"}},"Georgia":{"long":{"generic":"Georgia Time","standard":"Georgia Standard Time","daylight":"Georgia Summer Time"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Islands Time"}},"Greenland_Eastern":{"long":{"generic":"East Greenland Time","standard":"East Greenland Standard Time","daylight":"East Greenland Summer Time"}},"Greenland_Western":{"long":{"generic":"West Greenland Time","standard":"West Greenland Standard Time","daylight":"West Greenland Summer Time"}},"Guam":{"long":{"standard":"Guam Standard Time"}},"Gulf":{"long":{"standard":"Gulf Standard Time"}},"Guyana":{"long":{"standard":"Guyana Time"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleutian Time","standard":"Hawaii-Aleutian Standard Time","daylight":"Hawaii-Aleutian Daylight Time"},"short":{"generic":"HAT","standard":"HAST","daylight":"HADT"}},"Hong_Kong":{"long":{"generic":"Hong Kong Time","standard":"Hong Kong Standard Time","daylight":"Hong Kong Summer Time"}},"Hovd":{"long":{"generic":"Hovd Time","standard":"Hovd Standard Time","daylight":"Hovd Summer Time"}},"India":{"long":{"standard":"India Standard Time"}},"Indian_Ocean":{"long":{"standard":"Indian Ocean Time"}},"Indochina":{"long":{"standard":"Indochina Time"}},"Indonesia_Central":{"long":{"standard":"Central Indonesia Time"}},"Indonesia_Eastern":{"long":{"standard":"Eastern Indonesia Time"}},"Indonesia_Western":{"long":{"standard":"Western Indonesia Time"}},"Iran":{"long":{"generic":"Iran Time","standard":"Iran Standard Time","daylight":"Iran Daylight Time"}},"Irkutsk":{"long":{"generic":"Irkutsk Time","standard":"Irkutsk Standard Time","daylight":"Irkutsk Summer Time"}},"Israel":{"long":{"generic":"Israel Time","standard":"Israel Standard Time","daylight":"Israel Daylight Time"}},"Japan":{"long":{"generic":"Japan Time","standard":"Japan Standard Time","daylight":"Japan Daylight Time"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamchatski Time","standard":"Petropavlovsk-Kamchatski Standard Time","daylight":"Petropavlovsk-Kamchatski Summer Time"}},"Kazakhstan_Eastern":{"long":{"standard":"East Kazakhstan Time"}},"Kazakhstan_Western":{"long":{"standard":"West Kazakhstan Time"}},"Korea":{"long":{"generic":"Korean Time","standard":"Korean Standard Time","daylight":"Korean Daylight Time"}},"Kosrae":{"long":{"standard":"Kosrae Time"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Time","standard":"Krasnoyarsk Standard Time","daylight":"Krasnoyarsk Summer Time"}},"Kyrgystan":{"long":{"standard":"Kyrgystan Time"}},"Lanka":{"long":{"standard":"Lanka Time"}},"Line_Islands":{"long":{"standard":"Line Islands Time"}},"Lord_Howe":{"long":{"generic":"Lord Howe Time","standard":"Lord Howe Standard Time","daylight":"Lord Howe Daylight Time"}},"Macau":{"long":{"generic":"Macau Time","standard":"Macau Standard Time","daylight":"Macau Summer Time"}},"Macquarie":{"long":{"standard":"Macquarie Island Time"}},"Magadan":{"long":{"generic":"Magadan Time","standard":"Magadan Standard Time","daylight":"Magadan Summer Time"}},"Malaysia":{"long":{"standard":"Malaysia Time"}},"Maldives":{"long":{"standard":"Maldives Time"}},"Marquesas":{"long":{"standard":"Marquesas Time"}},"Marshall_Islands":{"long":{"standard":"Marshall Islands Time"}},"Mauritius":{"long":{"generic":"Mauritius Time","standard":"Mauritius Standard Time","daylight":"Mauritius Summer Time"}},"Mawson":{"long":{"standard":"Mawson Time"}},"Mexico_Northwest":{"long":{"generic":"Northwest Mexico Time","standard":"Northwest Mexico Standard Time","daylight":"Northwest Mexico Daylight Time"}},"Mexico_Pacific":{"long":{"generic":"Mexican Pacific Time","standard":"Mexican Pacific Standard Time","daylight":"Mexican Pacific Daylight Time"}},"Mongolia":{"long":{"generic":"Ulan Bator Time","standard":"Ulan Bator Standard Time","daylight":"Ulan Bator Summer Time"}},"Moscow":{"long":{"generic":"Moscow Time","standard":"Moscow Standard Time","daylight":"Moscow Summer Time"}},"Myanmar":{"long":{"standard":"Myanmar Time"}},"Nauru":{"long":{"standard":"Nauru Time"}},"Nepal":{"long":{"standard":"Nepal Time"}},"New_Caledonia":{"long":{"generic":"New Caledonia Time","standard":"New Caledonia Standard Time","daylight":"New Caledonia Summer Time"}},"New_Zealand":{"long":{"generic":"New Zealand Time","standard":"New Zealand Standard Time","daylight":"New Zealand Daylight Time"}},"Newfoundland":{"long":{"generic":"Newfoundland Time","standard":"Newfoundland Standard Time","daylight":"Newfoundland Daylight Time"}},"Niue":{"long":{"standard":"Niue Time"}},"Norfolk":{"long":{"standard":"Norfolk Island Time"}},"Noronha":{"long":{"generic":"Fernando de Noronha Time","standard":"Fernando de Noronha Standard Time","daylight":"Fernando de Noronha Summer Time"}},"North_Mariana":{"long":{"standard":"North Mariana Islands Time"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Time","standard":"Novosibirsk Standard Time","daylight":"Novosibirsk Summer Time"}},"Omsk":{"long":{"generic":"Omsk Time","standard":"Omsk Standard Time","daylight":"Omsk Summer Time"}},"Pakistan":{"long":{"generic":"Pakistan Time","standard":"Pakistan Standard Time","daylight":"Pakistan Summer Time"}},"Palau":{"long":{"standard":"Palau Time"}},"Papua_New_Guinea":{"long":{"standard":"Papua New Guinea Time"}},"Paraguay":{"long":{"generic":"Paraguay Time","standard":"Paraguay Standard Time","daylight":"Paraguay Summer Time"}},"Peru":{"long":{"generic":"Peru Time","standard":"Peru Standard Time","daylight":"Peru Summer Time"}},"Philippines":{"long":{"generic":"Philippine Time","standard":"Philippine Standard Time","daylight":"Philippine Summer Time"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Islands Time"}},"Pierre_Miquelon":{"long":{"generic":"St. Pierre & Miquelon Time","standard":"St. Pierre & Miquelon Standard Time","daylight":"St. Pierre & Miquelon Daylight Time"}},"Pitcairn":{"long":{"standard":"Pitcairn Time"}},"Ponape":{"long":{"standard":"Ponape Time"}},"Qyzylorda":{"long":{"generic":"Qyzylorda Time","standard":"Qyzylorda Standard Time","daylight":"Qyzylorda Summer Time"}},"Reunion":{"long":{"standard":"Reunion Time"}},"Rothera":{"long":{"standard":"Rothera Time"}},"Sakhalin":{"long":{"generic":"Sakhalin Time","standard":"Sakhalin Standard Time","daylight":"Sakhalin Summer Time"}},"Samara":{"long":{"generic":"Samara Time","standard":"Samara Standard Time","daylight":"Samara Summer Time"}},"Samoa":{"long":{"generic":"Samoa Time","standard":"Samoa Standard Time","daylight":"Samoa Daylight Time"}},"Seychelles":{"long":{"standard":"Seychelles Time"}},"Singapore":{"long":{"standard":"Singapore Standard Time"}},"Solomon":{"long":{"standard":"Solomon Islands Time"}},"South_Georgia":{"long":{"standard":"South Georgia Time"}},"Suriname":{"long":{"standard":"Suriname Time"}},"Syowa":{"long":{"standard":"Syowa Time"}},"Tahiti":{"long":{"standard":"Tahiti Time"}},"Taipei":{"long":{"generic":"Taipei Time","standard":"Taipei Standard Time","daylight":"Taipei Daylight Time"}},"Tajikistan":{"long":{"standard":"Tajikistan Time"}},"Tokelau":{"long":{"standard":"Tokelau Time"}},"Tonga":{"long":{"generic":"Tonga Time","standard":"Tonga Standard Time","daylight":"Tonga Summer Time"}},"Truk":{"long":{"standard":"Chuuk Time"}},"Turkmenistan":{"long":{"generic":"Turkmenistan Time","standard":"Turkmenistan Standard Time","daylight":"Turkmenistan Summer Time"}},"Tuvalu":{"long":{"standard":"Tuvalu Time"}},"Uruguay":{"long":{"generic":"Uruguay Time","standard":"Uruguay Standard Time","daylight":"Uruguay Summer Time"}},"Uzbekistan":{"long":{"generic":"Uzbekistan Time","standard":"Uzbekistan Standard Time","daylight":"Uzbekistan Summer Time"}},"Vanuatu":{"long":{"generic":"Vanuatu Time","standard":"Vanuatu Standard Time","daylight":"Vanuatu Summer Time"}},"Venezuela":{"long":{"standard":"Venezuela Time"}},"Vladivostok":{"long":{"generic":"Vladivostok Time","standard":"Vladivostok Standard Time","daylight":"Vladivostok Summer Time"}},"Volgograd":{"long":{"generic":"Volgograd Time","standard":"Volgograd Standard Time","daylight":"Volgograd Summer Time"}},"Vostok":{"long":{"standard":"Vostok Time"}},"Wake":{"long":{"standard":"Wake Island Time"}},"Wallis":{"long":{"standard":"Wallis & Futuna Time"}},"Yakutsk":{"long":{"generic":"Yakutsk Time","standard":"Yakutsk Standard Time","daylight":"Yakutsk Summer Time"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Time","standard":"Yekaterinburg Standard Time","daylight":"Yekaterinburg Summer Time"}}}} \ No newline at end of file diff --git a/Punic/data/en/units.json b/Punic/data/en/units.json new file mode 100644 index 0000000..8aeb756 --- /dev/null +++ b/Punic/data/en/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s g-force","other":"%1$s g-force"},"meter-per-second-squared":{"_name":"meters per second squared","one":"%1$s meter per second squared","other":"%1$s meters per second squared"}},"angle":{"arc-minute":{"_name":"arcminutes","one":"%1$s arcminute","other":"%1$s arcminutes"},"arc-second":{"_name":"arcseconds","one":"%1$s arcsecond","other":"%1$s arcseconds"},"degree":{"_name":"degrees","one":"%1$s degree","other":"%1$s degrees"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"square centimeters","one":"%1$s square centimeter","other":"%1$s square centimeters"},"square-foot":{"_name":"square feet","one":"%1$s square foot","other":"%1$s square feet"},"square-inch":{"_name":"square inches","one":"%1$s square inch","other":"%1$s square inches"},"square-kilometer":{"_name":"square kilometers","one":"%1$s square kilometer","other":"%1$s square kilometers"},"square-meter":{"_name":"square meters","one":"%1$s square meter","other":"%1$s square meters"},"square-mile":{"_name":"square miles","one":"%1$s square mile","other":"%1$s square miles"},"square-yard":{"_name":"square yards","one":"%1$s square yard","other":"%1$s square yards"}},"consumption":{"liter-per-kilometer":{"_name":"liters per kilometer","one":"%1$s liter per kilometer","other":"%1$s liters per kilometer"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hour","other":"%1$s hours","_per":"%1$s per hour"},"microsecond":{"_name":"microseconds","one":"%1$s microsecond","other":"%1$s microseconds"},"millisecond":{"_name":"milliseconds","one":"%1$s millisecond","other":"%1$s milliseconds"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"months","one":"%1$s month","other":"%1$s months"},"nanosecond":{"_name":"nanoseconds","one":"%1$s nanosecond","other":"%1$s nanoseconds"},"second":{"_name":"seconds","one":"%1$s second","other":"%1$s seconds","_per":"%1$s per second"},"week":{"_name":"weeks","one":"%1$s week","other":"%1$s weeks"},"year":{"_name":"years","one":"%1$s year","other":"%1$s years"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"milliamperes","one":"%1$s milliampere","other":"%1$s milliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"Calories","one":"%1$s Calorie","other":"%1$s Calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowatt-hours","one":"%1$s kilowatt hour","other":"%1$s kilowatt-hours"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomical units","one":"%1$s astronomical unit","other":"%1$s astronomical units"},"centimeter":{"_name":"centimeters","one":"%1$s centimeter","other":"%1$s centimeters"},"decimeter":{"_name":"decimeters","one":"%1$s decimeter","other":"%1$s decimeters"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"feet","one":"%1$s foot","other":"%1$s feet"},"furlong":{"_name":"furlongs","one":"%1$s furlong","other":"%1$s furlongs"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometers","one":"%1$s kilometer","other":"%1$s kilometers"},"light-year":{"_name":"light years","one":"%1$s light year","other":"%1$s light years"},"meter":{"_name":"meters","one":"%1$s meter","other":"%1$s meters"},"micrometer":{"_name":"micrometers","one":"%1$s micrometer","other":"%1$s micrometers"},"mile":{"_name":"miles","one":"%1$s mile","other":"%1$s miles"},"millimeter":{"_name":"millimeters","one":"%1$s millimeter","other":"%1$s millimeters"},"nanometer":{"_name":"nanometers","one":"%1$s nanometer","other":"%1$s nanometers"},"nautical-mile":{"_name":"nautical miles","one":"%1$s nautical mile","other":"%1$s nautical miles"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometers","one":"%1$s picometer","other":"%1$s picometers"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grams","one":"%1$s gram","other":"%1$s grams"},"kilogram":{"_name":"kilograms","one":"%1$s kilogram","other":"%1$s kilograms"},"metric-ton":{"_name":"metric tons","one":"%1$s metric ton","other":"%1$s metric tons"},"microgram":{"_name":"micrograms","one":"%1$s microgram","other":"%1$s micrograms"},"milligram":{"_name":"milligrams","one":"%1$s milligram","other":"%1$s milligrams"},"ounce":{"_name":"ounces","one":"%1$s ounce","other":"%1$s ounces"},"ounce-troy":{"_name":"troy ounces","one":"%1$s troy ounce","other":"%1$s troy ounces"},"pound":{"_name":"pounds","one":"%1$s pound","other":"%1$s pounds"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stones"},"ton":{"_name":"tons","one":"%1$s ton","other":"%1$s tons"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"horsepower","one":"%1$s horsepower","other":"%1$s horsepower"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"inches of mercury","one":"%1$s inch of mercury","other":"%1$s inches of mercury"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimeters of mercury","one":"%1$s millimeter of mercury","other":"%1$s millimeters of mercury"},"pound-per-square-inch":{"_name":"pounds per square inch","one":"%1$s pound per square inch","other":"%1$s pounds per square inch"}},"proportion":{"karat":{"_name":"karats","one":"%1$s karat","other":"%1$s karats"}},"speed":{"kilometer-per-hour":{"_name":"kilometers per hour","one":"%1$s kilometer per hour","other":"%1$s kilometers per hour"},"meter-per-second":{"_name":"meters per second","one":"%1$s meter per second","other":"%1$s meters per second"},"mile-per-hour":{"_name":"miles per hour","one":"%1$s mile per hour","other":"%1$s miles per hour"}},"temperature":{"celsius":{"_name":"degrees Celsius","one":"%1$s degree Celsius","other":"%1$s degrees Celsius"},"fahrenheit":{"_name":"degrees Fahrenheit","one":"%1$s degree Fahrenheit","other":"%1$s degrees Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bushels","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centiliters","one":"%1$s centiliter","other":"%1$s centiliters"},"cubic-centimeter":{"_name":"cubic centimeters","one":"%1$s cubic centimeter","other":"%1$s cubic centimeters"},"cubic-foot":{"_name":"cubic feet","one":"%1$s cubic foot","other":"%1$s cubic feet"},"cubic-inch":{"_name":"cubic inches","one":"%1$s cubic inch","other":"%1$s cubic inches"},"cubic-kilometer":{"_name":"cubic kilometers","one":"%1$s cubic kilometer","other":"%1$s cubic kilometers"},"cubic-meter":{"_name":"cubic meters","one":"%1$s cubic meter","other":"%1$s cubic meters"},"cubic-mile":{"_name":"cubic miles","one":"%1$s cubic mile","other":"%1$s cubic miles"},"cubic-yard":{"_name":"cubic yards","one":"%1$s cubic yard","other":"%1$s cubic yards"},"cup":{"_name":"cups","one":"%1$s cup","other":"%1$s cups"},"deciliter":{"_name":"deciliters","one":"%1$s deciliter","other":"%1$s deciliters"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectoliters","one":"%1$s hectoliter","other":"%1$s hectoliters"},"liter":{"_name":"liters","one":"%1$s liter","other":"%1$s liters"},"megaliter":{"_name":"megaliters","one":"%1$s megaliter","other":"%1$s megaliters"},"milliliter":{"_name":"milliliters","one":"%1$s milliliter","other":"%1$s milliliters"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"tablespoons","one":"%1$s tablespoon","other":"%1$s tablespoons"},"teaspoon":{"_name":"teaspoons","one":"%1$s teaspoon","other":"%1$s teaspoons"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"meters/sec²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsecs","one":"%1$s arcsec","other":"%1$s arcsecs"},"degree":{"_name":"degrees","one":"%1$s deg","other":"%1$s deg"},"radian":{"_name":"radians","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"sq feet","one":"%1$s sq ft","other":"%1$s sq ft"},"square-inch":{"_name":"inches²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"sq miles","one":"%1$s sq mi","other":"%1$s sq mi"},"square-yard":{"_name":"yards²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"liters/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"miles/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"days","one":"%1$s day","other":"%1$s days"},"hour":{"_name":"hours","one":"%1$s hr","other":"%1$s hrs","_per":"%1$sph"},"microsecond":{"_name":"μsecs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"millisecs","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s mins"},"month":{"_name":"months","one":"%1$s mth","other":"%1$s mths"},"nanosecond":{"_name":"nanosecs","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"secs","one":"%1$s sec","other":"%1$s secs","_per":"%1$sps"},"week":{"_name":"weeks","one":"%1$s wk","other":"%1$s wks"},"year":{"_name":"years","one":"%1$s yr","other":"%1$s yrs"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hour","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathoms","one":"%1$s ftm","other":"%1$s ftm"},"foot":{"_name":"feet","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlongs","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"light yrs","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"meters","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µmeters","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miles","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carats","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"grams","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"pounds","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stones","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"tons","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karats","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/hour","one":"%1$s kph","other":"%1$s kph"},"meter-per-second":{"_name":"meters/sec","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"miles/hour","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"deg. C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"deg. F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bushels","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"feet³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"inches³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yards³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cups","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"liters","one":"%1$s L","other":"%1$s L"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","one":"%1$sG","other":"%1$sGs"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"deg","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acre","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hectare","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"meters²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"byte","one":"%1$sbyte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GByte","one":"%1$sGB","other":"%1$sGB"},"kilobit":{"_name":"kbit","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kByte","one":"%1$skB","other":"%1$skB"},"megabit":{"_name":"Mbit","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MByte","one":"%1$sMB","other":"%1$sMB"},"terabit":{"_name":"Tbit","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TByte","one":"%1$sTB","other":"%1$sTB"}},"duration":{"day":{"_name":"day","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"hour","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μsec","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"msec","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"month","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sec","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"wk","one":"%1$sw","other":"%1$sw"},"year":{"_name":"yr","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amp","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"ohm","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"volt","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","one":"%1$sCal","other":"%1$sCal"},"joule":{"_name":"joule","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fathom","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ly","one":"%1$sly","other":"%1$sly"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"parsec","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"carat","one":"%1$sCD","other":"%1$sCD"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$s#","other":"%1$s#"},"stone":{"_name":"stone","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"ton","one":"%1$stn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hp","one":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″ Hg","one":"%1$s″ Hg","other":"%1$s″ Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"karat","one":"%1$skt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/hr","one":"%1$skph","other":"%1$skph"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/hr","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°","other":"%1$s°"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bushel","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"cup","one":"%1$sc","other":"%1$sc"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","one":"%1$stbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","one":"%1$stsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/es/calendar.json b/Punic/data/es/calendar.json new file mode 100644 index 0000000..3419b11 --- /dev/null +++ b/Punic/data/es/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"ene.","2":"feb.","3":"mar.","4":"abr.","5":"may.","6":"jun.","7":"jul.","8":"ago.","9":"sept.","10":"oct.","11":"nov.","12":"dic."},"narrow":{"1":"E","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"enero","2":"febrero","3":"marzo","4":"abril","5":"mayo","6":"junio","7":"julio","8":"agosto","9":"septiembre","10":"octubre","11":"noviembre","12":"diciembre"}},"stand-alone":{"abbreviated":{"1":"Ene.","2":"Feb.","3":"Mar.","4":"Abr.","5":"May.","6":"Jun.","7":"Jul.","8":"Ago.","9":"Sept.","10":"Oct.","11":"Nov.","12":"Dic."},"narrow":{"1":"E","2":"F","3":"M","4":"A","5":"M","6":"J","7":"J","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"Enero","2":"Febrero","3":"Marzo","4":"Abril","5":"Mayo","6":"Junio","7":"Julio","8":"Agosto","9":"Septiembre","10":"Octubre","11":"Noviembre","12":"Diciembre"}}},"days":{"format":{"abbreviated":{"sun":"dom.","mon":"lun.","tue":"mar.","wed":"mié.","thu":"jue.","fri":"vie.","sat":"sáb."},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"X","thu":"J","fri":"V","sat":"S"},"short":{"sun":"DO","mon":"LU","tue":"MA","wed":"MI","thu":"JU","fri":"VI","sat":"SA"},"wide":{"sun":"domingo","mon":"lunes","tue":"martes","wed":"miércoles","thu":"jueves","fri":"viernes","sat":"sábado"}},"stand-alone":{"abbreviated":{"sun":"Dom.","mon":"Lun.","tue":"Mar.","wed":"Mié.","thu":"Jue.","fri":"Vie.","sat":"Sáb."},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"X","thu":"J","fri":"V","sat":"S"},"short":{"sun":"DO","mon":"LU","tue":"MA","wed":"MI","thu":"JU","fri":"VI","sat":"SA"},"wide":{"sun":"Domingo","mon":"Lunes","tue":"Martes","wed":"Miércoles","thu":"Jueves","fri":"Viernes","sat":"Sábado"}}},"quarters":{"format":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1T","2":"2T","3":"3T","4":"4T"},"wide":{"1":"1.er trimestre","2":"2.º trimestre","3":"3.er trimestre","4":"4.º trimestre"}},"stand-alone":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1T","2":"2T","3":"3T","4":"4T"},"wide":{"1":"1.er trimestre","2":"2.º trimestre","3":"3.er trimestre","4":"4.º trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"am":"a. m.","noon":"mediodía","pm":"p. m."},"narrow":{"am":"a.m.","noon":"m.","pm":"p.m."},"wide":{"am":"a. m.","noon":"mediodía","pm":"p. m."}},"stand-alone":{"abbreviated":{"am":"a. m.","noon":"mediodía","pm":"p. m."},"narrow":{"am":"a.m.","noon":"m.","pm":"p.m."},"wide":{"am":"a. m.","noon":"mediodía","pm":"p. m."}}},"eras":{"wide":{"0":"antes de Cristo","0-alt-variant":"a. e. c.","1":"anno Dómini","1-alt-variant":"e. c."},"abbreviated":{"0":"a. C.","0-alt-variant":"a. e. c.","1":"d. C.","1-alt-variant":"e. c."},"narrow":{"0":"a. C.","0-alt-variant":"a. e. c.","1":"d. C.","1-alt-variant":"e. c."}},"dateFormats":{"full":"EEEE, d 'de' MMMM 'de' y","long":"d 'de' MMMM 'de' y","medium":"d 'de' MMM 'de' y","short":"d/M/yy"},"timeFormats":{"full":"H:mm:ss (zzzz)","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s, %1$s","long":"%2$s, %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/es/dateFields.json b/Punic/data/es/dateFields.json new file mode 100644 index 0000000..66042bc --- /dev/null +++ b/Punic/data/es/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Año","relative-type--1":"el año pasado","relative-type-0":"este año","relative-type-1":"el próximo año","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} año","relativeTimePattern-count-other":"dentro de {0} años"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} año","relativeTimePattern-count-other":"hace {0} años"}},"year-short":{"displayName":"a","relative-type--1":"el año pasado","relative-type-0":"este año","relative-type-1":"el próximo año","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} a","relativeTimePattern-count-other":"dentro de {0} a"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} a","relativeTimePattern-count-other":"hace {0} a"}},"year-narrow":{"displayName":"a","relative-type--1":"el año pasado","relative-type-0":"este año","relative-type-1":"el próximo año","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} a","relativeTimePattern-count-other":"dentro de {0} a"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} a","relativeTimePattern-count-other":"hace {0} a"}},"quarter":{"displayName":"Trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} trimestre","relativeTimePattern-count-other":"dentro de {0} trimestres"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} trimestre","relativeTimePattern-count-other":"hace {0} trimestres"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} trim.","relativeTimePattern-count-other":"dentro de {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} trim.","relativeTimePattern-count-other":"hace {0} trim."}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} trim.","relativeTimePattern-count-other":"dentro de {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} trim.","relativeTimePattern-count-other":"hace {0} trim."}},"month":{"displayName":"Mes","relative-type--1":"el mes pasado","relative-type-0":"este mes","relative-type-1":"el próximo mes","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} mes","relativeTimePattern-count-other":"dentro de {0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} mes","relativeTimePattern-count-other":"hace {0} meses"}},"month-short":{"displayName":"m","relative-type--1":"el mes pasado","relative-type-0":"este mes","relative-type-1":"el próximo mes","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} m","relativeTimePattern-count-other":"dentro de {0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} m","relativeTimePattern-count-other":"hace {0} m"}},"month-narrow":{"displayName":"m","relative-type--1":"el mes pasado","relative-type-0":"este mes","relative-type-1":"el próximo mes","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} m","relativeTimePattern-count-other":"dentro de {0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} m","relativeTimePattern-count-other":"hace {0} m"}},"week":{"displayName":"Semana","relative-type--1":"la semana pasada","relative-type-0":"esta semana","relative-type-1":"la próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} semana","relativeTimePattern-count-other":"dentro de {0} semanas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} semana","relativeTimePattern-count-other":"hace {0} semanas"}},"week-short":{"displayName":"sem.","relative-type--1":"la semana pasada","relative-type-0":"esta semana","relative-type-1":"la próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} sem.","relativeTimePattern-count-other":"dentro de {0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} sem.","relativeTimePattern-count-other":"hace {0} sem."}},"week-narrow":{"displayName":"sem.","relative-type--1":"la semana pasada","relative-type-0":"esta semana","relative-type-1":"la próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} sem.","relativeTimePattern-count-other":"dentro de {0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} sem.","relativeTimePattern-count-other":"hace {0} sem."}},"day":{"displayName":"Día","relative-type--1":"ayer","relative-type--2":"antes de ayer","relative-type-0":"hoy","relative-type-1":"mañana","relative-type-2":"pasado mañana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} día","relativeTimePattern-count-other":"dentro de {0} días"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} día","relativeTimePattern-count-other":"hace {0} días"}},"day-short":{"displayName":"d","relative-type--1":"ayer","relative-type--2":"antes de ayer","relative-type-0":"hoy","relative-type-1":"mañana","relative-type-2":"pasado mañana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} día","relativeTimePattern-count-other":"dentro de {0} días"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} día","relativeTimePattern-count-other":"hace {0} días"}},"day-narrow":{"displayName":"d","relative-type--1":"ayer","relative-type--2":"antes de ayer","relative-type-0":"hoy","relative-type-1":"mañana","relative-type-2":"pasado mañana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} día","relativeTimePattern-count-other":"dentro de {0} días"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} día","relativeTimePattern-count-other":"hace {0} días"}},"weekday":{"displayName":"Día de la semana"},"sun":{"relative-type--1":"el domingo pasado","relative-type-0":"este domingo","relative-type-1":"el próximo domingo"},"sun-short":{"relative-type--1":"el dom. pasado","relative-type-0":"este dom.","relative-type-1":"el próximo dom."},"sun-narrow":{"relative-type--1":"el DO pasado","relative-type-0":"este DO","relative-type-1":"el próximo DO"},"mon":{"relative-type--1":"el lunes pasado","relative-type-0":"este lunes","relative-type-1":"el próximo lunes"},"mon-short":{"relative-type--1":"el lun. pasado","relative-type-0":"este lun.","relative-type-1":"el próximo lun."},"mon-narrow":{"relative-type--1":"el LU pasado","relative-type-0":"este LU","relative-type-1":"el próximo LU"},"tue":{"relative-type--1":"el martes pasado","relative-type-0":"este martes","relative-type-1":"el próximo martes"},"tue-short":{"relative-type--1":"el mar. pasado","relative-type-0":"este mar.","relative-type-1":"el próximo mar."},"tue-narrow":{"relative-type--1":"el MA pasado","relative-type-0":"este MA","relative-type-1":"el próximo MA"},"wed":{"relative-type--1":"el miércoles pasado","relative-type-0":"este miércoles","relative-type-1":"el próximo miércoles"},"wed-short":{"relative-type--1":"el mié. pasado","relative-type-0":"este mié.","relative-type-1":"el próximo mié."},"wed-narrow":{"relative-type--1":"el MI pasado","relative-type-0":"este MI","relative-type-1":"el próximo MI"},"thu":{"relative-type--1":"el jueves pasado","relative-type-0":"este jueves","relative-type-1":"el próximo jueves"},"thu-short":{"relative-type--1":"el jue. pasado","relative-type-0":"este jue.","relative-type-1":"el próximo jue."},"thu-narrow":{"relative-type--1":"el JU pasado","relative-type-0":"este JU","relative-type-1":"el próximo JU"},"fri":{"relative-type--1":"el viernes pasado","relative-type-0":"este viernes","relative-type-1":"el próximo viernes"},"fri-short":{"relative-type--1":"el vie. pasado","relative-type-0":"este vie.","relative-type-1":"el próximo vie."},"fri-narrow":{"relative-type--1":"el VI pasado","relative-type-0":"este VI","relative-type-1":"el próximo VI"},"sat":{"relative-type--1":"el sábado pasado","relative-type-0":"este sábado","relative-type-1":"el próximo sábado"},"sat-short":{"relative-type--1":"el sáb. pasado","relative-type-0":"este sáb.","relative-type-1":"el próximo sáb."},"sat-narrow":{"relative-type--1":"el SA pasado","relative-type-0":"este SA","relative-type-1":"el próximo SA"},"dayperiod":{"displayName":"a. m./p. m."},"hour":{"displayName":"Hora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} hora","relativeTimePattern-count-other":"dentro de {0} horas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} hora","relativeTimePattern-count-other":"hace {0} horas"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} h","relativeTimePattern-count-other":"dentro de {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} h","relativeTimePattern-count-other":"hace {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} h","relativeTimePattern-count-other":"dentro de {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} h","relativeTimePattern-count-other":"hace {0} h"}},"minute":{"displayName":"Minuto","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} minuto","relativeTimePattern-count-other":"dentro de {0} minutos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} minuto","relativeTimePattern-count-other":"hace {0} minutos"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} min","relativeTimePattern-count-other":"dentro de {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} min","relativeTimePattern-count-other":"hace {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} min","relativeTimePattern-count-other":"dentro de {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} min","relativeTimePattern-count-other":"hace {0} min"}},"second":{"displayName":"Segundo","relative-type-0":"ahora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} segundo","relativeTimePattern-count-other":"dentro de {0} segundos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} segundo","relativeTimePattern-count-other":"hace {0} segundos"}},"second-short":{"displayName":"s","relative-type-0":"ahora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} s","relativeTimePattern-count-other":"dentro de {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} s","relativeTimePattern-count-other":"hace {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"ahora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} s","relativeTimePattern-count-other":"dentro de {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"hace {0} s","relativeTimePattern-count-other":"hace {0} s"}},"zone":{"displayName":"Zona horaria"}} \ No newline at end of file diff --git a/Punic/data/es/languages.json b/Punic/data/es/languages.json new file mode 100644 index 0000000..b5fe14c --- /dev/null +++ b/Punic/data/es/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abjasio","ace":"acehnés","ach":"acoli","ada":"adangme","ady":"adigeo","ae":"avéstico","aeb":"aeb","af":"afrikáans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"acadio","akz":"akz","ale":"aleutiano","aln":"aln","alt":"altái meridional","am":"amárico","an":"aragonés","ang":"inglés antiguo","anp":"angika","ar":"árabe","ar-001":"árabe estándar moderno","arc":"arameo","arn":"araucano","aro":"aro","arp":"arapaho","arq":"arq","arw":"arahuaco","ary":"ary","arz":"arz","as":"asamés","asa":"asu","ase":"ase","ast":"asturiano","av":"avar","avk":"avk","awa":"avadhi","ay":"aimara","az":"azerí","az-alt-short":"azerí","azb":"azb","ba":"bashkir","bal":"baluchi","ban":"balinés","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"bielorruso","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"búlgaro","bho":"bhojpuri","bi":"bislama","bik":"bicol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengalí","bo":"tibetano","bpy":"bpy","bqi":"bqi","br":"bretón","bra":"braj","brh":"brh","brx":"bodo","bs":"bosnio","bss":"akoose","bua":"buriat","bug":"buginés","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalán","cad":"caddo","car":"caribe","cay":"cayuga","cch":"atsam","ce":"checheno","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatái","chk":"trukés","chm":"marí","chn":"jerga chinuk","cho":"choctaw","chp":"chipewyan","chr":"cheroqui","chy":"cheyene","ckb":"kurdo sorani","co":"corso","cop":"copto","cps":"cps","cr":"cree","crh":"tártaro de Crimea","cs":"checo","csb":"casubio","cu":"eslavo eclesiástico","cv":"chuvash","cy":"galés","da":"danés","dak":"dakota","dar":"dargva","dav":"taita","de":"alemán","de-AT":"alemán austríaco","de-CH":"alto alemán de Suiza","del":"delaware","den":"slave","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"sorbio inferior","dtp":"dtp","dua":"duala","dum":"neerlandés medieval","dv":"divehi","dyo":"jola-fonyi","dyu":"diula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewé","efi":"efik","egl":"egl","egy":"egipcio antiguo","eka":"ekajuk","el":"griego","elx":"elamita","en":"inglés","en-AU":"inglés australiano","en-CA":"inglés canadiense","en-GB":"inglés británico","en-GB-alt-short":"inglés (RU)","en-US":"inglés estadounidense","en-US-alt-short":"inglés (EE. UU.)","enm":"inglés medieval","eo":"esperanto","es":"español","es-419":"español de América","es-ES":"español de España","es-MX":"español de México","esu":"esu","et":"estonio","eu":"euskera","ewo":"ewondo","ext":"ext","fa":"persa","fan":"fang","fat":"fanti","ff":"fula","fi":"finés","fil":"filipino","fit":"fit","fj":"fiyiano","fo":"feroés","fon":"fon","fr":"francés","fr-CA":"francés canadiense","fr-CH":"francés suizo","frc":"frc","frm":"francés medieval","fro":"francés antiguo","frp":"frp","frr":"frisón septentrional","frs":"frisón oriental","fur":"friulano","fy":"frisón occidental","ga":"irlandés","gaa":"ga","gag":"gagauzo","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"gaélico escocés","gez":"geez","gil":"gilbertés","gl":"gallego","glk":"glk","gmh":"alemán de la alta edad media","gn":"guaraní","goh":"alemán de la alta edad antigua","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gótico","grb":"grebo","grc":"griego antiguo","gsw":"alemán suizo","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusii","gv":"gaélico manés","gwi":"kutchin","ha":"hausa","hai":"haida","hak":"hak","haw":"hawaiano","he":"hebreo","hi":"hindi","hif":"hif","hil":"hiligaynon","hit":"hitita","hmn":"hmong","ho":"hiri motu","hr":"croata","hsb":"sorbio superior","hsn":"hsn","ht":"haitiano","hu":"húngaro","hup":"hupa","hy":"armenio","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesio","ie":"interlingue","ig":"igbo","ii":"yi de Sichuán","ik":"inupiaq","ilo":"ilocano","inh":"ingush","io":"ido","is":"islandés","it":"italiano","iu":"inuktitut","izh":"izh","ja":"japonés","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"judeo-persa","jrb":"judeo-árabe","jut":"jut","jv":"javanés","ka":"georgiano","kaa":"karakalpako","kab":"cabila","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardiano","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"criollo caboverdiano","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kgp","kha":"khasi","kho":"kotanés","khq":"koyra chiini","khw":"khw","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kazajo","kkj":"kako","kl":"groenlandés","kln":"kalenjin","km":"jemer","kmb":"kimbundu","kn":"canarés","ko":"coreano","koi":"komi permio","kok":"konkaní","kos":"kosraeano","kpe":"kpelle","kr":"kanuri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"carelio","kru":"kurukh","ks":"cachemiro","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"kurdo","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"córnico","ky":"kirguís","la":"latín","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburgués","lez":"lezgiano","lfn":"lfn","lg":"ganda","li":"limburgués","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laosiano","lol":"mongo","loz":"lozi","lt":"lituano","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseño","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyia","lv":"letón","lzh":"lzh","lzz":"lzz","mad":"madurés","maf":"mafa","mag":"magahi","mai":"maithili","mak":"macasar","man":"mandingo","mas":"masái","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"criollo mauriciano","mg":"malgache","mga":"irlandés medieval","mgh":"makhuwa-meetto","mgo":"meta’","mh":"marshalés","mi":"maorí","mic":"micmac","min":"minangkabau","mk":"macedonio","ml":"malayalam","mn":"mongol","mnc":"manchú","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"mrj","ms":"malayo","mt":"maltés","mua":"mundang","mul":"lenguas múltiples","mus":"creek","mwl":"mirandés","mwr":"marwari","mwv":"mwv","my":"birmano","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauruano","nan":"nan","nap":"napolitano","naq":"nama","nb":"bokmal noruego","nd":"ndebele septentrional","nds":"bajo alemán","ne":"nepalí","new":"newari","ng":"ndonga","nia":"nias","niu":"niueano","njo":"njo","nl":"neerlandés","nl-BE":"flamenco","nmg":"kwasio","nn":"nynorsk noruego","nnh":"ngiemboon","no":"noruego","nog":"nogai","non":"nórdico antiguo","nov":"nov","nqo":"n’ko","nr":"ndebele meridional","nso":"sotho septentrional","nus":"nuer","nv":"navajo","nwc":"newari clásico","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"occitano","oj":"ojibwa","om":"oromo","or":"oriya","os":"osético","osa":"osage","ota":"turco otomano","pa":"punjabí","pag":"pangasinán","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palauano","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"persa antiguo","pfl":"pfl","phn":"fenicio","pi":"pali","pl":"polaco","pms":"pms","pnt":"pnt","pon":"pohnpeiano","prg":"prg","pro":"provenzal antiguo","ps":"pastún","ps-alt-variant":"pastú","pt":"portugués","pt-BR":"portugués de Brasil","pt-PT":"portugués de Portugal","qu":"quechua","quc":"quiché","qug":"qug","raj":"rajasthani","rap":"rapanui","rar":"rarotongano","rgn":"rgn","rif":"rif","rm":"retorrománico","rn":"kiroundi","ro":"rumano","ro-MD":"moldavo","rof":"rombo","rom":"romaní","root":"raíz","rtm":"rtm","ru":"ruso","rue":"rue","rug":"rug","rup":"arrumano","rw":"kinyarwanda","rwk":"rwa","sa":"sánscrito","sad":"sandawe","sah":"sakha","sam":"arameo samaritano","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardo","scn":"siciliano","sco":"escocés","sd":"sindhi","sdc":"sdc","se":"sami septentrional","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"koyraboro senni","sg":"sango","sga":"irlandés antiguo","sgs":"sgs","sh":"serbocroata","shi":"tashelhit","shn":"shan","shu":"árabe chadiano","si":"cingalés","sid":"sidamo","sk":"eslovaco","sl":"esloveno","sli":"sli","sly":"sly","sm":"samoano","sma":"sami meridional","smj":"sami lule","smn":"sami inari","sms":"sami skolt","sn":"shona","snk":"soninké","so":"somalí","sog":"sogdiano","sq":"albanés","sr":"serbio","srn":"sranan tongo","srr":"serer","ss":"siswati","ssy":"saho","st":"sesotho meridional","stq":"stq","su":"sundanés","suk":"sukuma","sus":"susu","sux":"sumerio","sv":"sueco","sw":"swahili","swb":"comorense","swc":"swahili del Congo","syc":"siríaco clásico","syr":"siriaco","szl":"szl","ta":"tamil","tcy":"tcy","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetún","tg":"tayiko","th":"tailandés","ti":"tigriña","tig":"tigré","tiv":"tiv","tk":"turcomano","tkl":"tokelauano","tkr":"tkr","tl":"tagalo","tlh":"klingon","tli":"tlingit","tly":"tly","tmh":"tamashek","tn":"setchwana","to":"tongano","tog":"tonga del Nyasa","tpi":"tok pisin","tr":"turco","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshiano","tt":"tártaro","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluano","tw":"twi","twq":"tasawaq","ty":"tahitiano","tyv":"tuviniano","tzm":"tamazight del Marruecos Central","udm":"udmurt","ug":"uigur","ug-alt-variant":"uygur","uga":"ugarítico","uk":"ucraniano","umb":"umbundu","und":"lengua desconocida","ur":"urdu","uz":"uzbeko","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamita","vls":"vls","vmf":"vmf","vo":"volapük","vot":"vótico","vro":"vro","vun":"kivunjo","wa":"valón","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wólof","wuu":"wuu","xal":"kalmyk","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapés","yav":"yangben","ybb":"yemba","yi":"yídish","yo":"yoruba","yrl":"yrl","yue":"cantonés","za":"zhuang","zap":"zapoteco","zbl":"símbolos Bliss","zea":"zea","zen":"zenaga","zgh":"tamazight","zh":"chino","zh-Hans":"chino simplificado","zh-Hant":"chino tradicional","zu":"zulú","zun":"zuni","zxx":"sin contenido lingüístico","zza":"zazaki"} \ No newline at end of file diff --git a/Punic/data/es/listPatterns.json b/Punic/data/es/listPatterns.json new file mode 100644 index 0000000..73c7c8e --- /dev/null +++ b/Punic/data/es/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s y %2$s","2":"%1$s y %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s y %2$s","2":"%1$s y %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s y %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s y %2$s"}} \ No newline at end of file diff --git a/Punic/data/es/localeDisplayNames.json b/Punic/data/es/localeDisplayNames.json new file mode 100644 index 0000000..7aeabab --- /dev/null +++ b/Punic/data/es/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"calendario","colAlternate":"Orden ignorando símbolos","colBackwards":"Orden de acentos con inversión","colCaseFirst":"Orden de mayúsculas/minúsculas","colCaseLevel":"Orden con distinción entre mayúsculas y minúsculas","colHiraganaQuaternary":"Orden de kana","colNormalization":"Orden con normalización","colNumeric":"Orden numérico","colStrength":"Intensidad de orden","collation":"orden","currency":"moneda","numbers":"números","timezone":"Zona horaria","va":"Variante local","variableTop":"Ordenar como símbolos","x":"Uso privado"},"types":{"numbers":{"vaii":"Dígitos vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"calendario de la República de China"},"colStrength":{"tertiary":"Ordenar acentos/mayúsculas y minúsculas/ancho"},"colCaseFirst":{"upper":"Ordenar empezando por mayúsculas"},"colBackwards":{"yes":"Ordenar acentos con inversión"},"colCaseLevel":{"yes":"Ordenar distinguiendo entre mayúsculas y minúsculas"},"colHiraganaQuaternary":{"yes":"Ordenar diferenciando caracteres kana"},"colNormalization":{"yes":"Ordenar con normalización Unicode"},"colNumeric":{"yes":"Ordenar dígitos numéricamente"},"colAlternate":{"shifted":"Ordenar ignorando símbolos"}},"codePatterns":{"language":"Idioma: %1$s","script":"Dialecto: %1$s","territory":"Región: %1$s"}} \ No newline at end of file diff --git a/Punic/data/es/numbers.json b/Punic/data/es/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/es/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/es/territories.json b/Punic/data/es/territories.json new file mode 100644 index 0000000..412d21b --- /dev/null +++ b/Punic/data/es/territories.json @@ -0,0 +1 @@ +{"001":"Mundo","002":"África","003":"América del Norte","005":"Suramérica","009":"Oceanía","011":"África occidental","013":"Centroamérica","014":"África oriental","015":"África septentrional","017":"África central","018":"África meridional","019":"América","021":"Norteamérica","029":"Caribe","030":"Asia oriental","034":"Asia meridional","035":"Sudeste asiático","039":"Europa meridional","053":"Australasia","054":"Melanesia","057":"Región de Micronesia","061":"Polinesia","142":"Asia","143":"Asia central","145":"Asia occidental","150":"Europa","151":"Europa oriental","154":"Europa septentrional","155":"Europa occidental","419":"Latinoamérica","AC":"Isla de la Ascensión","AD":"Andorra","AE":"Emiratos Árabes Unidos","AF":"Afganistán","AG":"Antigua y Barbuda","AI":"Anguila","AL":"Albania","AM":"Armenia","AN":"Antillas Neerlandesas","AO":"Angola","AQ":"Antártida","AR":"Argentina","AS":"Samoa Americana","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Islas Åland","AZ":"Azerbaiyán","BA":"Bosnia-Herzegovina","BB":"Barbados","BD":"Bangladés","BE":"Bélgica","BF":"Burkina Faso","BG":"Bulgaria","BH":"Baréin","BI":"Burundi","BJ":"Benín","BL":"San Bartolomé","BM":"Bermudas","BN":"Brunéi","BO":"Bolivia","BQ":"Caribe neerlandés","BR":"Brasil","BS":"Bahamas","BT":"Bután","BV":"Isla Bouvet","BW":"Botsuana","BY":"Bielorrusia","BZ":"Belice","CA":"Canadá","CC":"Islas Cocos","CD":"República Democrática del Congo","CD-alt-variant":"Congo (República Democrática del Congo)","CF":"República Centroafricana","CG":"República del Congo","CG-alt-variant":"Congo (República)","CH":"Suiza","CI":"Costa de Marfil","CI-alt-variant":"CI","CK":"Islas Cook","CL":"Chile","CM":"Camerún","CN":"China","CO":"Colombia","CP":"Isla Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cabo Verde","CW":"Curazao","CX":"Isla Christmas","CY":"Chipre","CZ":"República Checa","DE":"Alemania","DG":"Diego García","DJ":"Yibuti","DK":"Dinamarca","DM":"Dominica","DO":"República Dominicana","DZ":"Argelia","EA":"Ceuta y Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egipto","EH":"Sáhara Occidental","ER":"Eritrea","ES":"España","ET":"Etiopía","EU":"Unión Europea","FI":"Finlandia","FJ":"Fiyi","FK":"Islas Malvinas","FK-alt-variant":"Islas Malvinas (Islas Falkland)","FM":"Micronesia","FO":"Islas Feroe","FR":"Francia","GA":"Gabón","GB":"Reino Unido","GB-alt-short":"RU","GD":"Granada","GE":"Georgia","GF":"Guayana Francesa","GG":"Guernesey","GH":"Ghana","GI":"Gibraltar","GL":"Groenlandia","GM":"Gambia","GN":"Guinea","GP":"Guadalupe","GQ":"Guinea Ecuatorial","GR":"Grecia","GS":"Islas Georgia del Sur y Sandwich del Sur","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bisáu","GY":"Guyana","HK":"RAE de Hong Kong (China)","HK-alt-short":"Hong Kong","HM":"Islas Heard y McDonald","HN":"Honduras","HR":"Croacia","HT":"Haití","HU":"Hungría","IC":"islas Canarias","ID":"Indonesia","IE":"Irlanda","IL":"Israel","IM":"Isla de Man","IN":"India","IO":"Territorio Británico del Océano Índico","IQ":"Iraq","IR":"Irán","IS":"Islandia","IT":"Italia","JE":"Jersey","JM":"Jamaica","JO":"Jordania","JP":"Japón","KE":"Kenia","KG":"Kirguistán","KH":"Camboya","KI":"Kiribati","KM":"Comoras","KN":"San Cristóbal y Nieves","KP":"Corea del Norte","KR":"Corea del Sur","KW":"Kuwait","KY":"Islas Caimán","KZ":"Kazajistán","LA":"Laos","LB":"Líbano","LC":"Santa Lucía","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesoto","LT":"Lituania","LU":"Luxemburgo","LV":"Letonia","LY":"Libia","MA":"Marruecos","MC":"Mónaco","MD":"Moldavia","ME":"Montenegro","MF":"San Martín","MG":"Madagascar","MH":"Islas Marshall","MK":"Macedonia","MK-alt-variant":"Macedonia (ERYM)","ML":"Mali","MM":"Myanmar (Birmania)","MN":"Mongolia","MO":"RAE de Macao (China)","MO-alt-short":"Macao","MP":"Islas Marianas del Norte","MQ":"Martinica","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauricio","MV":"Maldivas","MW":"Malaui","MX":"México","MY":"Malasia","MZ":"Mozambique","NA":"Namibia","NC":"Nueva Caledonia","NE":"Níger","NF":"Isla Norfolk","NG":"Nigeria","NI":"Nicaragua","NL":"Países Bajos","NO":"Noruega","NP":"Nepal","NR":"Nauru","NU":"Isla Niue","NZ":"Nueva Zelanda","OM":"Omán","PA":"Panamá","PE":"Perú","PF":"Polinesia Francesa","PG":"Papúa Nueva Guinea","PH":"Filipinas","PK":"Pakistán","PL":"Polonia","PM":"San Pedro y Miquelón","PN":"Islas Pitcairn","PR":"Puerto Rico","PS":"Territorios Palestinos","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Catar","QO":"Territorios alejados de Oceanía","RE":"Reunión","RO":"Rumanía","RS":"Serbia","RU":"Rusia","RW":"Ruanda","SA":"Arabia Saudí","SB":"Islas Salomón","SC":"Seychelles","SD":"Sudán","SE":"Suecia","SG":"Singapur","SH":"Santa Elena","SI":"Eslovenia","SJ":"Svalbard y Jan Mayen","SK":"Eslovaquia","SL":"Sierra Leona","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sudán del Sur","ST":"Santo Tomé y Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Siria","SZ":"Suazilandia","TA":"Tristán da Cunha","TC":"Islas Turcas y Caicos","TD":"Chad","TF":"Territorios Australes Franceses","TG":"Togo","TH":"Tailandia","TJ":"Tayikistán","TK":"Tokelau","TL":"Timor Oriental","TL-alt-variant":"TL","TM":"Turkmenistán","TN":"Túnez","TO":"Tonga","TR":"Turquía","TT":"Trinidad y Tobago","TV":"Tuvalu","TW":"Taiwán","TZ":"Tanzania","UA":"Ucrania","UG":"Uganda","UM":"Islas menores alejadas de EE. UU.","US":"Estados Unidos","US-alt-short":"EE. UU.","UY":"Uruguay","UZ":"Uzbekistán","VA":"Ciudad del Vaticano","VC":"San Vicente y las Granadinas","VE":"Venezuela","VG":"Islas Vírgenes Británicas","VI":"Islas Vírgenes de EE. UU.","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis y Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"Sudáfrica","ZM":"Zambia","ZW":"Zimbabue","ZZ":"Región desconocida"} \ No newline at end of file diff --git a/Punic/data/es/timeZoneNames.json b/Punic/data/es/timeZoneNames.json new file mode 100644 index 0000000..aed9344 --- /dev/null +++ b/Punic/data/es/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"hora de %1$s","regionFormat-type-standard":"horario estándar de %1$s","regionFormat-type-daylight":"horario de verano de %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguila"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahía"},"Bahia_Banderas":{"exemplarCity":"Bahía de Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belén"},"Belize":{"exemplarCity":"Belice"},"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":"Cayena"},"Cayman":{"exemplarCity":"Caimán"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curazao"},"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":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Nuuk"},"Goose_Bay":{"exemplarCity":"Goose Bay"},"Grand_Turk":{"exemplarCity":"Gran Turca"},"Grenada":{"exemplarCity":"Granada"},"Guadeloupe":{"exemplarCity":"Guadalupe"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Guyana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"La Habana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianápolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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 Ángeles"},"Louisville":{"exemplarCity":"Louisville"},"Lower_Princes":{"exemplarCity":"Lower Prince’s Quarter"},"Maceio":{"exemplarCity":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaos"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciudad de México"},"Miquelon":{"exemplarCity":"Miquelón"},"Moncton":{"exemplarCity":"Moncton"},"Monterrey":{"exemplarCity":"Monterrey"},"Montevideo":{"exemplarCity":"Montevideo"},"Montserrat":{"exemplarCity":"Montserrat"},"Nassau":{"exemplarCity":"Nassau"},"New_York":{"exemplarCity":"Nueva York"},"Nipigon":{"exemplarCity":"Nipigon"},"Nome":{"exemplarCity":"Nome"},"Noronha":{"exemplarCity":"Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, Dakota del Norte"},"Center":{"exemplarCity":"Center, Dakota del Norte"},"New_Salem":{"exemplarCity":"New Salem, Dakota del Norte"}},"Ojinaga":{"exemplarCity":"Ojinaga"},"Panama":{"exemplarCity":"Panamá"},"Pangnirtung":{"exemplarCity":"Pangnirtung"},"Paramaribo":{"exemplarCity":"Paramaribo"},"Phoenix":{"exemplarCity":"Phoenix"},"Port-au-Prince":{"exemplarCity":"Puerto Príncipe"},"Port_of_Spain":{"exemplarCity":"Puerto España"},"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":"Río Branco"},"Santa_Isabel":{"exemplarCity":"Santa Isabel"},"Santarem":{"exemplarCity":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"San Bartolomé"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"St. Kitts"},"St_Lucia":{"exemplarCity":"Santa Lucía"},"St_Thomas":{"exemplarCity":"St. Thomas"},"St_Vincent":{"exemplarCity":"San Vicente"},"Swift_Current":{"exemplarCity":"Swift Current"},"Tegucigalpa":{"exemplarCity":"Tegucigalpa"},"Thule":{"exemplarCity":"Thule"},"Thunder_Bay":{"exemplarCity":"Thunder Bay"},"Tijuana":{"exemplarCity":"Tijuana"},"Toronto":{"exemplarCity":"Toronto"},"Tortola":{"exemplarCity":"Tórtola"},"Vancouver":{"exemplarCity":"Vancouver"},"Whitehorse":{"exemplarCity":"Whitehorse"},"Winnipeg":{"exemplarCity":"Winnipeg"},"Yakutat":{"exemplarCity":"Yakutat"},"Yellowknife":{"exemplarCity":"Yellowknife"}},"Atlantic":{"Azores":{"exemplarCity":"Azores"},"Bermuda":{"exemplarCity":"Bermudas"},"Canary":{"exemplarCity":"Islas Canarias"},"Cape_Verde":{"exemplarCity":"Cabo Verde"},"Faeroe":{"exemplarCity":"Islas Feroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reikiavik"},"South_Georgia":{"exemplarCity":"Georgia del Sur"},"St_Helena":{"exemplarCity":"Santa Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Ámsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atenas"},"Belgrade":{"exemplarCity":"Belgrado"},"Berlin":{"exemplarCity":"Berlín"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruselas"},"Bucharest":{"exemplarCity":"Bucarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhague"},"Dublin":{"long":{"daylight":"hora de verano de Irlanda"},"exemplarCity":"Dublín"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Isla de Man"},"Istanbul":{"exemplarCity":"Estambul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrado"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisboa"},"Ljubljana":{"exemplarCity":"Liubliana"},"London":{"long":{"daylight":"hora de verano británica"},"exemplarCity":"Londres"},"Luxembourg":{"exemplarCity":"Luxemburgo"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Mónaco"},"Moscow":{"exemplarCity":"Moscú"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"París"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopie"},"Sofia":{"exemplarCity":"Sofía"},"Stockholm":{"exemplarCity":"Estocolmo"},"Tallinn":{"exemplarCity":"Tallin"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"El Vaticano"},"Vienna":{"exemplarCity":"Viena"},"Vilnius":{"exemplarCity":"Vilna"},"Volgograd":{"exemplarCity":"Volgogrado"},"Warsaw":{"exemplarCity":"Varsovia"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizhia"},"Zurich":{"exemplarCity":"Zúrich"}},"Africa":{"Abidjan":{"exemplarCity":"Abiyán"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Argel"},"Asmera":{"exemplarCity":"Asmara"},"Bamako":{"exemplarCity":"Bamako"},"Bangui":{"exemplarCity":"Bangui"},"Banjul":{"exemplarCity":"Banjul"},"Bissau":{"exemplarCity":"Bisáu"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzaville"},"Bujumbura":{"exemplarCity":"Bujumbura"},"Cairo":{"exemplarCity":"El Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Yibuti"},"Douala":{"exemplarCity":"Duala"},"El_Aaiun":{"exemplarCity":"El Aaiún"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburgo"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Jartún"},"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":"Mogadiscio"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Yamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nuakchot"},"Ouagadougou":{"exemplarCity":"Uagadugú"},"Porto-Novo":{"exemplarCity":"Portonovo"},"Sao_Tome":{"exemplarCity":"Santo Tomé"},"Tripoli":{"exemplarCity":"Trípoli"},"Tunis":{"exemplarCity":"Túnez capital"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Adén"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Ammán"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Asjabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Baréin"},"Baku":{"exemplarCity":"Bakú"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunéi"},"Calcutta":{"exemplarCity":"Calcuta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasco"},"Dhaka":{"exemplarCity":"Dacca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubái"},"Dushanbe":{"exemplarCity":"Duchanbé"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebrón"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Yakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalén"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Katmandú"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadán"},"Makassar":{"exemplarCity":"Makasar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Mascate"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Catar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangún"},"Riyadh":{"exemplarCity":"Riad"},"Saigon":{"exemplarCity":"Ciudad Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sajalín"},"Samarkand":{"exemplarCity":"Samarcanda"},"Seoul":{"exemplarCity":"Seúl"},"Shanghai":{"exemplarCity":"Shanghái"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipéi"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tiflis"},"Tehran":{"exemplarCity":"Teherán"},"Thimphu":{"exemplarCity":"Timbu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulán Bator"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientián"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburgo"},"Yerevan":{"exemplarCity":"Ereván"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoras"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldivas"},"Mauritius":{"exemplarCity":"Mauricio"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunión"}},"Australia":{"Adelaide":{"exemplarCity":"Adelaida"},"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":"Sídney"}},"Pacific":{"Apia":{"exemplarCity":"Apia"},"Auckland":{"exemplarCity":"Auckland"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Isla de Pascua"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiyi"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"Gambier":{"exemplarCity":"Gambier"},"Guadalcanal":{"exemplarCity":"Guadalcanal"},"Guam":{"exemplarCity":"Guam"},"Honolulu":{"exemplarCity":"Honolulú"},"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":"Numea"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palaos"},"Pitcairn":{"exemplarCity":"Islas Pitcairn"},"Ponape":{"exemplarCity":"Pohnpei"},"Port_Moresby":{"exemplarCity":"Port Moresby"},"Rarotonga":{"exemplarCity":"Rarotonga"},"Saipan":{"exemplarCity":"Saipán"},"Tahiti":{"exemplarCity":"Tahití"},"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":"Vostok"}},"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":"Ciudad desconocida"}}},"metazone":{"Acre":{"long":{"generic":"Hora de Acre","standard":"Hora estándar de Acre","daylight":"Hora de verano de Acre"}},"Afghanistan":{"long":{"standard":"hora de Afganistán"}},"Africa_Central":{"long":{"standard":"hora de África central"}},"Africa_Eastern":{"long":{"standard":"hora de África oriental"}},"Africa_Southern":{"long":{"standard":"hora de Sudáfrica"}},"Africa_Western":{"long":{"generic":"hora de África occidental","standard":"hora estándar de África occidental","daylight":"hora de verano de África occidental"}},"Alaska":{"long":{"generic":"hora de Alaska","standard":"hora estándar de Alaska","daylight":"hora de verano de Alaska"}},"Amazon":{"long":{"generic":"hora del Amazonas","standard":"hora estándar del Amazonas","daylight":"hora de verano del Amazonas"}},"America_Central":{"long":{"generic":"hora central","standard":"hora estándar central","daylight":"hora de verano central"}},"America_Eastern":{"long":{"generic":"hora oriental","standard":"hora estándar oriental","daylight":"hora de verano oriental"}},"America_Mountain":{"long":{"generic":"hora de las Montañas","standard":"hora estándar de las Montañas","daylight":"hora de verano de las Montañas"}},"America_Pacific":{"long":{"generic":"hora del Pacífico","standard":"hora estándar del Pacífico","daylight":"hora de verano del Pacífico"}},"Anadyr":{"long":{"generic":"Hora de Anadyr","standard":"Hora estándar de Anadyr","daylight":"Hora de verano de Anadyr"}},"Apia":{"long":{"generic":"hora de Apia","standard":"hora estándar de Apia","daylight":"horario de verano de Apia"}},"Aqtau":{"long":{"generic":"Hora de Aktau","standard":"Hora estándar de Aktau","daylight":"Hora de verano de Aktau"}},"Aqtobe":{"long":{"generic":"Hora de Aktobe","standard":"Hora estándar de Aktobe","daylight":"Hora de verano de Aktobe"}},"Arabian":{"long":{"generic":"hora de Arabia","standard":"hora estándar de Arabia","daylight":"hora de verano de Arabia"}},"Argentina":{"long":{"generic":"hora de Argentina","standard":"hora estándar de Argentina","daylight":"hora de verano de Argentina"}},"Argentina_Western":{"long":{"generic":"hora de Argentina occidental","standard":"hora estándar de Argentina occidental","daylight":"hora de verano de Argentina occidental"}},"Armenia":{"long":{"generic":"hora de Armenia","standard":"hora estándar de Armenia","daylight":"hora de verano de Armenia"}},"Atlantic":{"long":{"generic":"hora del Atlántico","standard":"hora estándar del Atlántico","daylight":"hora de verano del Atlántico"}},"Australia_Central":{"long":{"generic":"hora de Australia central","standard":"hora estándar de Australia central","daylight":"hora de verano de Australia central"}},"Australia_CentralWestern":{"long":{"generic":"hora de Australia centroccidental","standard":"hora estándar de Australia centroccidental","daylight":"hora de verano de Australia centroccidental"}},"Australia_Eastern":{"long":{"generic":"hora de Australia oriental","standard":"hora estándar de Australia oriental","daylight":"hora de verano de Australia oriental"}},"Australia_Western":{"long":{"generic":"hora de Australia occidental","standard":"hora estándar de Australia occidental","daylight":"hora de verano de Australia occidental"}},"Azerbaijan":{"long":{"generic":"hora de Azerbaiyán","standard":"hora estándar de Azerbaiyán","daylight":"hora de verano de Azerbaiyán"}},"Azores":{"long":{"generic":"hora de las Azores","standard":"hora estándar de las Azores","daylight":"hora de verano de las Azores"}},"Bangladesh":{"long":{"generic":"hora de Bangladés","standard":"hora estándar de Bangladés","daylight":"hora de verano de Bangladés"}},"Bhutan":{"long":{"standard":"hora de Bután"}},"Bolivia":{"long":{"standard":"hora de Bolivia"}},"Brasilia":{"long":{"generic":"hora de Brasilia","standard":"hora estándar de Brasilia","daylight":"hora de verano de Brasilia"}},"Brunei":{"long":{"standard":"hora de Brunéi"}},"Cape_Verde":{"long":{"generic":"hora de Cabo Verde","standard":"hora estándar de Cabo Verde","daylight":"hora de verano de Cabo Verde"}},"Chamorro":{"long":{"standard":"hora estándar de Chamorro"}},"Chatham":{"long":{"generic":"hora de Chatham","standard":"hora estándar de Chatham","daylight":"hora de verano de Chatham"}},"Chile":{"long":{"generic":"hora de Chile","standard":"hora estándar de Chile","daylight":"hora de verano de Chile"}},"China":{"long":{"generic":"hora de China","standard":"hora estándar de China","daylight":"hora de verano de China"}},"Choibalsan":{"long":{"generic":"hora de Choibalsan","standard":"hora estándar de Choibalsan","daylight":"hora de verano de Choibalsan"}},"Christmas":{"long":{"standard":"hora de la isla Christmas"}},"Cocos":{"long":{"standard":"hora de las islas Cocos"}},"Colombia":{"long":{"generic":"hora de Colombia","standard":"hora estándar de Colombia","daylight":"hora de verano de Colombia"}},"Cook":{"long":{"generic":"hora de las islas Cook","standard":"hora estándar de las islas Cook","daylight":"hora de verano media de las islas Cook"}},"Cuba":{"long":{"generic":"hora de Cuba","standard":"hora estándar de Cuba","daylight":"hora de verano de Cuba"}},"Davis":{"long":{"standard":"hora de Davis"}},"DumontDUrville":{"long":{"standard":"hora de Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"hora de Timor Oriental"}},"Easter":{"long":{"generic":"hora de la isla de Pascua","standard":"hora estándar de la isla de Pascua","daylight":"hora de verano de la isla de Pascua"}},"Ecuador":{"long":{"standard":"hora de Ecuador"}},"Europe_Central":{"long":{"generic":"hora de Europa central","standard":"hora estándar de Europa central","daylight":"hora de verano de Europa central"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"hora de Europa oriental","standard":"hora estándar de Europa oriental","daylight":"hora de verano de Europa oriental"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"hora de Europa oriental lejana"}},"Europe_Western":{"long":{"generic":"hora de Europa occidental","standard":"hora estándar de Europa occidental","daylight":"hora de verano de Europa occidental"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"hora de las islas Malvinas","standard":"hora estándar de las islas Malvinas","daylight":"hora de verano de las islas Malvinas"}},"Fiji":{"long":{"generic":"hora de Fiyi","standard":"hora estándar de Fiyi","daylight":"hora de verano de Fiyi"}},"French_Guiana":{"long":{"standard":"hora de la Guayana Francesa"}},"French_Southern":{"long":{"standard":"hora de las Tierras Australes y Antárticas Francesas"}},"GMT":{"long":{"standard":"hora del meridiano de Greenwich"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"hora de Galápagos"}},"Gambier":{"long":{"standard":"hora de Gambier"}},"Georgia":{"long":{"generic":"hora de Georgia","standard":"hora estándar de Georgia","daylight":"hora de verano de Georgia"}},"Gilbert_Islands":{"long":{"standard":"hora de las islas Gilbert"}},"Greenland_Eastern":{"long":{"generic":"hora de Groenlandia oriental","standard":"hora estándar de Groenlandia oriental","daylight":"hora de verano de de Groenlandia oriental"}},"Greenland_Western":{"long":{"generic":"hora de Groenlandia occidental","standard":"hora estándar de Groenlandia occidental","daylight":"hora de verano de Groenlandia occidental"}},"Guam":{"long":{"standard":"Hora estándar de Guam"}},"Gulf":{"long":{"standard":"hora estándar del Golfo"}},"Guyana":{"long":{"standard":"hora de Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"hora de Hawái-Aleutiano","standard":"hora estándar de Hawái-Aleutiano","daylight":"hora de verano de Hawái-Aleutiano"}},"Hong_Kong":{"long":{"generic":"hora de Hong Kong","standard":"hora estándar de Hong Kong","daylight":"hora de verano de Hong Kong"}},"Hovd":{"long":{"generic":"hora de Hovd","standard":"hora estándar de Hovd","daylight":"hora de verano de Hovd"}},"India":{"long":{"standard":"hora estándar de la India"}},"Indian_Ocean":{"long":{"standard":"hora del océano Índico"}},"Indochina":{"long":{"standard":"hora de Indochina"}},"Indonesia_Central":{"long":{"standard":"hora de Indonesia central"}},"Indonesia_Eastern":{"long":{"standard":"hora de Indonesia oriental"}},"Indonesia_Western":{"long":{"standard":"hora de Indonesia occidental"}},"Iran":{"long":{"generic":"hora de Irán","standard":"hora estándar de Irán","daylight":"hora de verano de Irán"}},"Irkutsk":{"long":{"generic":"hora de Irkutsk","standard":"hora estándar de Irkutsk","daylight":"hora de verano de Irkutsk"}},"Israel":{"long":{"generic":"hora de Israel","standard":"hora estándar de Israel","daylight":"hora de verano de Israel"}},"Japan":{"long":{"generic":"hora de Japón","standard":"hora estándar de Japón","daylight":"hora de verano de Japón"}},"Kamchatka":{"long":{"generic":"Hora de Kamchatka","standard":"Hora de estándar de Kamchatka","daylight":"Hora de verano de Kamchatka"}},"Kazakhstan_Eastern":{"long":{"standard":"hora de Kazajistán oriental"}},"Kazakhstan_Western":{"long":{"standard":"hora de Kazajistán occidental"}},"Korea":{"long":{"generic":"hora de Corea","standard":"hora estándar de Corea","daylight":"hora de verano de Corea"}},"Kosrae":{"long":{"standard":"hora de Kosrae"}},"Krasnoyarsk":{"long":{"generic":"hora de Krasnoyarsk","standard":"hora estándar de Krasnoyarsk","daylight":"hora de verano de Krasnoyarsk"}},"Kyrgystan":{"long":{"standard":"hora de Kirguistán"}},"Lanka":{"long":{"standard":"Hora de Sri Lanka"}},"Line_Islands":{"long":{"standard":"hora de las Espóradas Ecuatoriales"}},"Lord_Howe":{"long":{"generic":"hora de Lord Howe","standard":"hora estándar de Lord Howe","daylight":"hora de verano de Lord Howe"}},"Macau":{"long":{"generic":"Hora de Macao","standard":"Hora estándar de Macao","daylight":"Hora de verano de Macao"}},"Macquarie":{"long":{"standard":"hora de la isla Macquarie"}},"Magadan":{"long":{"generic":"hora de Magadán","standard":"hora estándar de Magadán","daylight":"hora de verano de Magadán"}},"Malaysia":{"long":{"standard":"hora de Malasia"}},"Maldives":{"long":{"standard":"hora de Maldivas"}},"Marquesas":{"long":{"standard":"hora de las islas Marquesas"}},"Marshall_Islands":{"long":{"standard":"hora de las Islas Marshall"}},"Mauritius":{"long":{"generic":"hora de Mauricio","standard":"hora estándar de Mauricio","daylight":"hora de verano de Mauricio"}},"Mawson":{"long":{"standard":"hora de Mawson"}},"Mexico_Northwest":{"long":{"generic":"hora del noroeste de México","standard":"hora estándar del noroeste de México","daylight":"hora de verano del noroeste de México"}},"Mexico_Pacific":{"long":{"generic":"hora del Pacífico de México","standard":"hora estándar del Pacífico de México","daylight":"hora de verano del Pacífico de México"}},"Mongolia":{"long":{"generic":"hora de Ulán Bator","standard":"hora estándar de Ulán Bator","daylight":"hora de verano de Ulán Bator"}},"Moscow":{"long":{"generic":"hora de Moscú","standard":"hora estándar de Moscú","daylight":"hora de verano de Moscú"}},"Myanmar":{"long":{"standard":"hora de Birmania"}},"Nauru":{"long":{"standard":"hora de Nauru"}},"Nepal":{"long":{"standard":"hora de Nepal"}},"New_Caledonia":{"long":{"generic":"hora de Nueva Caledonia","standard":"hora estándar de Nueva Caledonia","daylight":"hora de verano de Nueva Caledonia"}},"New_Zealand":{"long":{"generic":"hora de Nueva Zelanda","standard":"hora estándar de Nueva Zelanda","daylight":"hora de verano de Nueva Zelanda"}},"Newfoundland":{"long":{"generic":"hora de Terranova","standard":"hora estándar de Terranova","daylight":"hora de verano de Terranova"}},"Niue":{"long":{"standard":"hora de Niue"}},"Norfolk":{"long":{"standard":"hora de las islas Norfolk"}},"Noronha":{"long":{"generic":"hora de Fernando de Noronha","standard":"hora estándar de Fernando de Noronha","daylight":"hora de verano de Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Hora de las Islas Marianas del Norte"}},"Novosibirsk":{"long":{"generic":"hora de Novosibirsk","standard":"hora estándar de Novosibirsk","daylight":"hora de verano de Novosibirsk"}},"Omsk":{"long":{"generic":"hora de Omsk","standard":"hora estándar de Omsk","daylight":"hora de verano de Omsk"}},"Pakistan":{"long":{"generic":"hora de Pakistán","standard":"hora estándar de Pakistán","daylight":"hora de verano de Pakistán"}},"Palau":{"long":{"standard":"hora de Palaos"}},"Papua_New_Guinea":{"long":{"standard":"hora de Papúa Nueva Guinea"}},"Paraguay":{"long":{"generic":"hora de Paraguay","standard":"hora estándar de Paraguay","daylight":"hora de verano de Paraguay"}},"Peru":{"long":{"generic":"hora de Perú","standard":"hora estándar de Perú","daylight":"hora de verano de Perú"}},"Philippines":{"long":{"generic":"hora de Filipinas","standard":"hora estándar de Filipinas","daylight":"hora de verano de Filipinas"}},"Phoenix_Islands":{"long":{"standard":"hora de las Islas Fénix"}},"Pierre_Miquelon":{"long":{"generic":"hora de San Pedro y Miquelón","standard":"hora estándar de San Pedro y Miquelón","daylight":"hora de verano de San Pedro y Miquelón"}},"Pitcairn":{"long":{"standard":"hora de Pitcairn"}},"Ponape":{"long":{"standard":"hora de Pohnpei"}},"Qyzylorda":{"long":{"generic":"Hora de Qyzylorda","standard":"Hora estándar de Qyzylorda","daylight":"Hora de verano de Qyzylorda"}},"Reunion":{"long":{"standard":"hora de Reunión"}},"Rothera":{"long":{"standard":"hora de Rothera"}},"Sakhalin":{"long":{"generic":"hora de Sajalín","standard":"hora estándar de Sajalín","daylight":"hora de verano de Sajalín"}},"Samara":{"long":{"generic":"Hora de Samara","standard":"Hora estándar de Samara","daylight":"Hora de verano de Samara"}},"Samoa":{"long":{"generic":"hora de Samoa","standard":"hora estándar de Samoa","daylight":"hora de verano de Samoa"}},"Seychelles":{"long":{"standard":"hora de Seychelles"}},"Singapore":{"long":{"standard":"hora de Singapur"}},"Solomon":{"long":{"standard":"hora de las Islas Salomón"}},"South_Georgia":{"long":{"standard":"hora de Georgia meridional"}},"Suriname":{"long":{"standard":"hora de Surinam"}},"Syowa":{"long":{"standard":"hora de Syowa"}},"Tahiti":{"long":{"standard":"hora de Tahití"}},"Taipei":{"long":{"generic":"hora de Taipéi","standard":"hora estándar de Taipéi","daylight":"hora de verano de Taipéi"}},"Tajikistan":{"long":{"standard":"hora de Tayikistán"}},"Tokelau":{"long":{"standard":"hora de Tokelau"}},"Tonga":{"long":{"generic":"hora de Tonga","standard":"hora estándar de Tonga","daylight":"hora de verano de Tonga"}},"Truk":{"long":{"standard":"hora de Chuuk"}},"Turkmenistan":{"long":{"generic":"hora de Turkmenistán","standard":"hora estándar de Turkmenistán","daylight":"hora de verano de Turkmenistán"}},"Tuvalu":{"long":{"standard":"hora de Tuvalu"}},"Uruguay":{"long":{"generic":"hora de Uruguay","standard":"hora estándar de Uruguay","daylight":"hora de verano de Uruguay"}},"Uzbekistan":{"long":{"generic":"hora de Uzbekistán","standard":"hora estándar de Uzbekistán","daylight":"hora de verano de Uzbekistán"}},"Vanuatu":{"long":{"generic":"hora de Vanuatu","standard":"hora estándar de Vanuatu","daylight":"hora de verano de Vanuatu"}},"Venezuela":{"long":{"standard":"hora de Venezuela"}},"Vladivostok":{"long":{"generic":"hora de Vladivostok","standard":"hora estándar de Vladivostok","daylight":"hora de verano de Vladivostok"}},"Volgograd":{"long":{"generic":"hora de Volgogrado","standard":"hora estándar de Volgogrado","daylight":"hora de verano de Volgogrado"}},"Vostok":{"long":{"standard":"hora de Vostok"}},"Wake":{"long":{"standard":"hora de la isla Wake"}},"Wallis":{"long":{"standard":"hora de Wallis y Futuna"}},"Yakutsk":{"long":{"generic":"hora de Yakutsk","standard":"hora estándar de Yakutsk","daylight":"hora de verano de Yakutsk"}},"Yekaterinburg":{"long":{"generic":"hora de Ekaterimburgo","standard":"hora estándar de Ekaterimburgo","daylight":"hora de verano de Ekaterimburgo"}}}} \ No newline at end of file diff --git a/Punic/data/es/units.json b/Punic/data/es/units.json new file mode 100644 index 0000000..873eec1 --- /dev/null +++ b/Punic/data/es/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s por %2$s","acceleration":{"g-force":{"_name":"fuerza G","one":"%1$s unidad de fuerza gravitacional","other":"%1$s unidades de fuerza gravitacional"},"meter-per-second-squared":{"_name":"metros por segundo al cuadrado","one":"%1$s metro por segundo al cuadrado","other":"%1$s metros por segundo al cuadrado"}},"angle":{"arc-minute":{"_name":"minutos de arco","one":"%1$s minuto de arco","other":"%1$s minutos de arco"},"arc-second":{"_name":"segundos de arco","one":"%1$s segundo de arco","other":"%1$s segundos de arco"},"degree":{"_name":"grados","one":"%1$s grado","other":"%1$s grados"},"radian":{"_name":"radianes","one":"%1$s radián","other":"%1$s radianes"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectáreas","one":"%1$s hectárea","other":"%1$s hectáreas"},"square-centimeter":{"_name":"centímetros cuadrados","one":"%1$s centímetro cuadrado","other":"%1$s centímetros cuadrados"},"square-foot":{"_name":"pies cuadrados","one":"%1$s pie cuadrado","other":"%1$s pies cuadrados"},"square-inch":{"_name":"pulgadas cuadradas","one":"%1$s pulgada cuadrada","other":"%1$s pulgadas cuadradas"},"square-kilometer":{"_name":"kilómetros cuadrados","one":"%1$s kilómetro cuadrado","other":"%1$s kilómetros cuadrados"},"square-meter":{"_name":"metros cuadrados","one":"%1$s metro cuadrado","other":"%1$s metros cuadrados"},"square-mile":{"_name":"millas cuadradas","one":"%1$s milla cuadrada","other":"%1$s millas cuadradas"},"square-yard":{"_name":"yardas cuadradas","one":"%1$s yarda cuadrada","other":"%1$s yardas cuadradas"}},"consumption":{"liter-per-kilometer":{"_name":"litros por kilómetro","one":"%1$s litro por kilómetro","other":"%1$s litros por kilómetro"},"mile-per-gallon":{"_name":"millas por galón","one":"%1$s milla por galón","other":"%1$s millas por galón"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"días","one":"%1$s día","other":"%1$s días"},"hour":{"_name":"horas","one":"%1$s hora","other":"%1$s horas","_per":"%1$s por hora"},"microsecond":{"_name":"microsegundos","one":"%1$s microsegundo","other":"%1$s microsegundos"},"millisecond":{"_name":"milisegundos","one":"%1$s milisegundo","other":"%1$s milisegundos"},"minute":{"_name":"minutos","one":"%1$s minuto","other":"%1$s minutos"},"month":{"_name":"meses","one":"%1$s mes","other":"%1$s meses"},"nanosecond":{"_name":"nanosegundos","one":"%1$s nanosegundo","other":"%1$s nanosegundos"},"second":{"_name":"segundos","one":"%1$s segundo","other":"%1$s segundos","_per":"%1$s por segundo"},"week":{"_name":"semanas","one":"%1$s semana","other":"%1$s semanas"},"year":{"_name":"años","one":"%1$s año","other":"%1$s años"}},"electric":{"ampere":{"_name":"amperios","one":"%1$s amperio","other":"%1$s amperios"},"milliampere":{"_name":"miliamperios","one":"%1$s miliamperio","other":"%1$s miliamperios"},"ohm":{"_name":"ohmios","one":"%1$s ohmio","other":"%1$s ohmios"},"volt":{"_name":"voltios","one":"%1$s voltio","other":"%1$s voltios"}},"energy":{"calorie":{"_name":"calorías","one":"%1$s caloría","other":"%1$s calorías"},"foodcalorie":{"_name":"calorías","one":"%1$s caloría","other":"%1$s calorías"},"joule":{"_name":"julios","one":"%1$s julio","other":"%1$s julios"},"kilocalorie":{"_name":"kilocalorías","one":"%1$s kilocaloría","other":"%1$s kilocalorías"},"kilojoule":{"_name":"kilojulios","one":"%1$s kilojulio","other":"%1$s kilojulios"},"kilowatt-hour":{"_name":"kilovatios hora","one":"%1$s kilovatio hora","other":"%1$s kilovatios hora"}},"frequency":{"gigahertz":{"_name":"gigahercios","one":"%1$s gigahercio","other":"%1$s gigahercios"},"hertz":{"_name":"hercios","one":"%1$s hercio","other":"%1$s hercios"},"kilohertz":{"_name":"kilohercios","one":"%1$s kilohercio","other":"%1$s kilohercios"},"megahertz":{"_name":"megahercios","one":"%1$s megahercio","other":"%1$s megahercios"}},"length":{"astronomical-unit":{"_name":"unidades astronómicas","one":"%1$s unidad astronómica","other":"%1$s unidades astronómicas"},"centimeter":{"_name":"centímetros","one":"%1$s centímetro","other":"%1$s centímetros"},"decimeter":{"_name":"decímetros","one":"%1$s decímetro","other":"%1$s decímetros"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pies","one":"%1$s pie","other":"%1$s pies"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pulgadas","one":"%1$s pulgada","other":"%1$s pulgadas"},"kilometer":{"_name":"kilómetros","one":"%1$s kilómetro","other":"%1$s kilómetros"},"light-year":{"_name":"años luz","one":"%1$s año luz","other":"%1$s años luz"},"meter":{"_name":"metros","one":"%1$s metro","other":"%1$s metros"},"micrometer":{"_name":"micrómetros","one":"%1$s micrómetro","other":"%1$s micrómetros"},"mile":{"_name":"millas","one":"%1$s milla","other":"%1$s millas"},"millimeter":{"_name":"milímetros","one":"%1$s milímetro","other":"%1$s milímetros"},"nanometer":{"_name":"nanómetros","one":"%1$s nanómetro","other":"%1$s nanómetros"},"nautical-mile":{"_name":"millas náuticas","one":"%1$s milla náutica","other":"%1$s millas náuticas"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picómetros","one":"%1$s picómetro","other":"%1$s picómetros"},"yard":{"_name":"yardas","one":"%1$s yarda","other":"%1$s yardas"}},"light":{"lux":{"_name":"luxes","one":"%1$s lux","other":"%1$s luxes"}},"mass":{"carat":{"_name":"quilates","one":"%1$s quilate","other":"%1$s quilates"},"gram":{"_name":"gramos","one":"%1$s gramo","other":"%1$s gramos"},"kilogram":{"_name":"kilogramos","one":"%1$s kilogramo","other":"%1$s kilogramos"},"metric-ton":{"_name":"toneladas métricas","one":"%1$s tonelada métrica","other":"%1$s toneladas métricas"},"microgram":{"_name":"microgramos","one":"%1$s microgramo","other":"%1$s microgramos"},"milligram":{"_name":"miligramos","one":"%1$s miligramo","other":"%1$s miligramos"},"ounce":{"_name":"onzas","one":"%1$s onza","other":"%1$s onzas"},"ounce-troy":{"_name":"onzas troy","one":"%1$s onza troy","other":"%1$s onzas troy"},"pound":{"_name":"libras","one":"%1$s libra","other":"%1$s libras"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s tonelada","other":"%1$s toneladas"}},"power":{"gigawatt":{"_name":"gigavatios","one":"%1$s gigavatio","other":"%1$s gigavatios"},"horsepower":{"_name":"caballos de vapor","one":"%1$s caballo de vapor","other":"%1$s caballos de vapor"},"kilowatt":{"_name":"kilovatios","one":"%1$s kilovatio","other":"%1$s kilovatios"},"megawatt":{"_name":"megavatios","one":"%1$s megavatio","other":"%1$s megavatios"},"milliwatt":{"_name":"milivatios","one":"%1$s milivatio","other":"%1$s milivatios"},"watt":{"_name":"vatios","one":"%1$s vatio","other":"%1$s vatios"}},"pressure":{"hectopascal":{"_name":"hectopascales","one":"%1$s hectopascal","other":"%1$s hectopascales"},"inch-hg":{"_name":"pulgadas de mercurio","one":"%1$s pulgada de mercurio","other":"%1$s pulgadas de mercurio"},"millibar":{"_name":"milibares","one":"%1$s milibar","other":"%1$s milibares"},"millimeter-of-mercury":{"_name":"milímetros de mercurio","one":"%1$s milímetro de mercurio","other":"%1$s milímetros de mercurio"},"pound-per-square-inch":{"_name":"libras por pulgada cuadrada","one":"%1$s libra por pulgada cuadrada","other":"%1$s libras por pulgada cuadrada"}},"proportion":{"karat":{"_name":"quilates","one":"%1$s quilate","other":"%1$s quilates"}},"speed":{"kilometer-per-hour":{"_name":"kilómetros por hora","one":"%1$s kilómetro por hora","other":"%1$s kilómetros por hora"},"meter-per-second":{"_name":"metros por segundo","one":"%1$s metro por segundo","other":"%1$s metros por segundo"},"mile-per-hour":{"_name":"millas por hora","one":"%1$s milla por hora","other":"%1$s millas por hora"}},"temperature":{"celsius":{"_name":"grados Celsius","one":"%1$s grado Celsius","other":"%1$s grados Celsius"},"fahrenheit":{"_name":"grados Fahrenheit","one":"%1$s grado Fahrenheit","other":"%1$s grados Fahrenheit"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"acres pies","one":"%1$s acre pie","other":"%1$s acres pies"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitros","one":"%1$s centilitro","other":"%1$s centilitros"},"cubic-centimeter":{"_name":"centímetros cúbicos","one":"%1$s centímetro cúbico","other":"%1$s centímetros cúbicos"},"cubic-foot":{"_name":"pies cúbicos","one":"%1$s pie cúbico","other":"%1$s pies cúbicos"},"cubic-inch":{"_name":"pulgadas cúbicas","one":"%1$s pulgada cúbica","other":"%1$s pulgadas cúbicas"},"cubic-kilometer":{"_name":"kilómetros cúbicos","one":"%1$s kilómetro cúbico","other":"%1$s kilómetros cúbicos"},"cubic-meter":{"_name":"metros cúbicos","one":"%1$s metro cúbico","other":"%1$s metros cúbicos"},"cubic-mile":{"_name":"millas cúbicas","one":"%1$s milla cúbica","other":"%1$s millas cúbicas"},"cubic-yard":{"_name":"yardas cúbicas","one":"%1$s yarda cúbica","other":"%1$s yardas cúbicas"},"cup":{"_name":"tazas","one":"%1$s taza","other":"%1$s tazas"},"deciliter":{"_name":"decilitros","one":"%1$s decilitro","other":"%1$s decilitros"},"fluid-ounce":{"_name":"onzas fluidas","one":"%1$s onza fluida","other":"%1$s onzas fluidas"},"gallon":{"_name":"galones","one":"%1$s galón","other":"%1$s galones"},"hectoliter":{"_name":"hectolitros","one":"%1$s hectolitro","other":"%1$s hectolitros"},"liter":{"_name":"litros","one":"%1$s litro","other":"%1$s litros"},"megaliter":{"_name":"megalitros","one":"%1$s megalitro","other":"%1$s megalitros"},"milliliter":{"_name":"mililitros","one":"%1$s mililitro","other":"%1$s mililitros"},"pint":{"_name":"pintas","one":"%1$s pinta","other":"%1$s pintas"},"quart":{"_name":"cuartos","one":"%1$s cuarto","other":"%1$s cuartos"},"tablespoon":{"_name":"cucharadas","one":"%1$s cucharada","other":"%1$s cucharadas"},"teaspoon":{"_name":"cucharaditas","one":"%1$s cucharadita","other":"%1$s cucharaditas"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"Fg","one":"%1$s Fg","other":"%1$s Fg"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s arcmin","other":"%1$s arcmin"},"arc-second":{"_name":"arcsec","one":"%1$s arcsec","other":"%1$s arcsec"},"degree":{"_name":"grad.","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"b","one":"%1$s b","other":"%1$s b"},"byte":{"_name":"B","one":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"horas","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"m","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sem","one":"%1$s sem","other":"%1$s sem"},"year":{"_name":"a","one":"%1$s a","other":"%1$s a"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"voltios","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"a·l","one":"%1$s a. l.","other":"%1$s a. l."},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"M","one":"%1$s M","other":"%1$s M"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"c","one":"%1$s c","other":"%1$s c"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz tr","one":"%1$s oz tr","other":"%1$s oz tr"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CV","one":"%1$s CV","other":"%1$s CV"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"vatios","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"c","one":"%1$s c","other":"%1$s c"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"tza.","one":"%1$s tza.","other":"%1$s tza."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cd.","one":"%1$s cd.","other":"%1$s cda."},"teaspoon":{"_name":"cdta.","one":"%1$s cdta.","other":"%1$s cdta."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"Fg","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s'","other":"%1$s'"},"arc-second":{"_name":"arcsec","one":"%1$s\"","other":"%1$s\""},"degree":{"_name":"grad.","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"b","one":"%1$s b","other":"%1$s b"},"byte":{"_name":"B","one":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"m","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sem","one":"%1$s sem","other":"%1$s sem"},"year":{"_name":"a","one":"%1$s a","other":"%1$s a"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"voltios","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"a·l","one":"%1$s a. l.","other":"%1$s a. l."},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"M","one":"%1$s M","other":"%1$s M"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"c","one":"%1$s c","other":"%1$s c"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz tr","one":"%1$s oz tr","other":"%1$s oz tr"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CV","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"vatios","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"c","one":"%1$s c","other":"%1$s c"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"tza.","one":"%1$s tza.","other":"%1$s tza."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cd.","one":"%1$s cda.","other":"%1$s cda."},"teaspoon":{"_name":"cdta.","one":"%1$s cdta.","other":"%1$s cdta."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/fi/calendar.json b/Punic/data/fi/calendar.json new file mode 100644 index 0000000..b335bd4 --- /dev/null +++ b/Punic/data/fi/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"tammikuuta","2":"helmikuuta","3":"maaliskuuta","4":"huhtikuuta","5":"toukokuuta","6":"kesäkuuta","7":"heinäkuuta","8":"elokuuta","9":"syyskuuta","10":"lokakuuta","11":"marraskuuta","12":"joulukuuta"},"narrow":{"1":"T","2":"H","3":"M","4":"H","5":"T","6":"K","7":"H","8":"E","9":"S","10":"L","11":"M","12":"J"},"wide":{"1":"tammikuuta","2":"helmikuuta","3":"maaliskuuta","4":"huhtikuuta","5":"toukokuuta","6":"kesäkuuta","7":"heinäkuuta","8":"elokuuta","9":"syyskuuta","10":"lokakuuta","11":"marraskuuta","12":"joulukuuta"}},"stand-alone":{"abbreviated":{"1":"tammi","2":"helmi","3":"maalis","4":"huhti","5":"touko","6":"kesä","7":"heinä","8":"elo","9":"syys","10":"loka","11":"marras","12":"joulu"},"narrow":{"1":"T","2":"H","3":"M","4":"H","5":"T","6":"K","7":"H","8":"E","9":"S","10":"L","11":"M","12":"J"},"wide":{"1":"tammikuu","2":"helmikuu","3":"maaliskuu","4":"huhtikuu","5":"toukokuu","6":"kesäkuu","7":"heinäkuu","8":"elokuu","9":"syyskuu","10":"lokakuu","11":"marraskuu","12":"joulukuu"}}},"days":{"format":{"abbreviated":{"sun":"su","mon":"ma","tue":"ti","wed":"ke","thu":"to","fri":"pe","sat":"la"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"K","thu":"T","fri":"P","sat":"L"},"short":{"sun":"su","mon":"ma","tue":"ti","wed":"ke","thu":"to","fri":"pe","sat":"la"},"wide":{"sun":"sunnuntaina","mon":"maanantaina","tue":"tiistaina","wed":"keskiviikkona","thu":"torstaina","fri":"perjantaina","sat":"lauantaina"}},"stand-alone":{"abbreviated":{"sun":"su","mon":"ma","tue":"ti","wed":"ke","thu":"to","fri":"pe","sat":"la"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"K","thu":"T","fri":"P","sat":"L"},"short":{"sun":"su","mon":"ma","tue":"ti","wed":"ke","thu":"to","fri":"pe","sat":"la"},"wide":{"sun":"sunnuntai","mon":"maanantai","tue":"tiistai","wed":"keskiviikko","thu":"torstai","fri":"perjantai","sat":"lauantai"}}},"quarters":{"format":{"abbreviated":{"1":"1. nelj.","2":"2. nelj.","3":"3. nelj.","4":"4. nelj."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. neljännes","2":"2. neljännes","3":"3. neljännes","4":"4. neljännes"}},"stand-alone":{"abbreviated":{"1":"1. nelj.","2":"2. nelj.","3":"3. nelj.","4":"4. nelj."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. neljännes","2":"2. neljännes","3":"3. neljännes","4":"4. neljännes"}}},"dayPeriods":{"format":{"abbreviated":{"am":"ap.","noon":"keskipäivä","pm":"ip."},"narrow":{"am":"ap.","noon":"kp.","pm":"ip."},"wide":{"am":"ap.","noon":"keskipäivä","pm":"ip."}},"stand-alone":{"abbreviated":{"am":"ap.","noon":"keskipäivä","pm":"ip."},"narrow":{"am":"ap.","noon":"kp.","pm":"ip."},"wide":{"am":"ap.","noon":"keskipäivä","pm":"ip."}}},"eras":{"wide":{"0":"ennen Kristuksen syntymää","0-alt-variant":"ennen ajanlaskun alkua","1":"jälkeen Kristuksen syntymän","1-alt-variant":"jälkeen ajanlaskun alun"},"abbreviated":{"0":"eKr.","0-alt-variant":"eaa.","1":"jKr.","1-alt-variant":"jaa."},"narrow":{"0":"eK","0-alt-variant":"eaa","1":"jK","1-alt-variant":"jaa"}},"dateFormats":{"full":"cccc d. MMMM y","long":"d. MMMM y","medium":"d.M.y","short":"d.M.y"},"timeFormats":{"full":"H.mm.ss zzzz","long":"H.mm.ss z","medium":"H.mm.ss","short":"H.mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/fi/dateFields.json b/Punic/data/fi/dateFields.json new file mode 100644 index 0000000..8bcea65 --- /dev/null +++ b/Punic/data/fi/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"aikakausi"},"year":{"displayName":"vuosi","relative-type--1":"viime vuonna","relative-type-0":"tänä vuonna","relative-type-1":"ensi vuonna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} vuoden päästä","relativeTimePattern-count-other":"{0} vuoden päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} vuosi sitten","relativeTimePattern-count-other":"{0} vuotta sitten"}},"year-short":{"displayName":"v","relative-type--1":"viime vuonna","relative-type-0":"tänä vuonna","relative-type-1":"ensi vuonna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} vuoden päästä","relativeTimePattern-count-other":"{0} vuoden päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} vuotta sitten","relativeTimePattern-count-other":"{0} vuotta sitten"}},"year-narrow":{"displayName":"v","relative-type--1":"viime vuonna","relative-type-0":"tänä vuonna","relative-type-1":"ensi vuonna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} v päästä","relativeTimePattern-count-other":"{0} v päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} v sitten","relativeTimePattern-count-other":"{0} v sitten"}},"quarter":{"displayName":"neljännesvuosi","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} neljännesvuoden päästä","relativeTimePattern-count-other":"{0} neljännesvuoden päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} neljännesvuosi sitten","relativeTimePattern-count-other":"{0} neljännesvuotta sitten"}},"quarter-short":{"displayName":"neljännes","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} neljänneksen päästä","relativeTimePattern-count-other":"{0} neljänneksen päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} neljännes sitten","relativeTimePattern-count-other":"{0} neljännes sitten"}},"quarter-narrow":{"displayName":"nelj.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} nelj. päästä","relativeTimePattern-count-other":"{0} nelj. päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} nelj. sitten","relativeTimePattern-count-other":"{0} nelj. sitten"}},"month":{"displayName":"kuukausi","relative-type--1":"viime kuussa","relative-type-0":"tässä kuussa","relative-type-1":"ensi kuussa","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} kuukauden päästä","relativeTimePattern-count-other":"{0} kuukauden päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kuukausi sitten","relativeTimePattern-count-other":"{0} kuukautta sitten"}},"month-short":{"displayName":"kk","relative-type--1":"viime kuussa","relative-type-0":"tässä kuussa","relative-type-1":"ensi kuussa","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} kk päästä","relativeTimePattern-count-other":"{0} kk päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kk sitten","relativeTimePattern-count-other":"{0} kk sitten"}},"month-narrow":{"displayName":"kk","relative-type--1":"viime kuussa","relative-type-0":"tässä kuussa","relative-type-1":"ensi kuussa","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} kk päästä","relativeTimePattern-count-other":"{0} kk päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kk sitten","relativeTimePattern-count-other":"{0} kk sitten"}},"week":{"displayName":"viikko","relative-type--1":"viime viikolla","relative-type-0":"tällä viikolla","relative-type-1":"ensi viikolla","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} viikon päästä","relativeTimePattern-count-other":"{0} viikon päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} viikko sitten","relativeTimePattern-count-other":"{0} viikkoa sitten"}},"week-short":{"displayName":"vk","relative-type--1":"viime viikolla","relative-type-0":"tällä viikolla","relative-type-1":"ensi viikolla","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} vk päästä","relativeTimePattern-count-other":"{0} vk päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} vk sitten","relativeTimePattern-count-other":"{0} vk sitten"}},"week-narrow":{"displayName":"vk","relative-type--1":"viime viikolla","relative-type-0":"tällä viikolla","relative-type-1":"ensi viikolla","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} vk päästä","relativeTimePattern-count-other":"{0} vk päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} vk sitten","relativeTimePattern-count-other":"{0} vk sitten"}},"day":{"displayName":"päivä","relative-type--1":"eilen","relative-type--2":"toissa päivänä","relative-type-0":"tänään","relative-type-1":"huomenna","relative-type-2":"ylihuomenna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} päivän päästä","relativeTimePattern-count-other":"{0} päivän päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} päivä sitten","relativeTimePattern-count-other":"{0} päivää sitten"}},"day-short":{"displayName":"pv","relative-type--1":"eilen","relative-type--2":"toissa päivänä","relative-type-0":"tänään","relative-type-1":"huomenna","relative-type-2":"ylihuomenna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} pv päästä","relativeTimePattern-count-other":"{0} pv päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} pv sitten","relativeTimePattern-count-other":"{0} pv sitten"}},"day-narrow":{"displayName":"pv","relative-type--1":"eilen","relative-type--2":"toissa päivänä","relative-type-0":"tänään","relative-type-1":"huomenna","relative-type-2":"ylihuomenna","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} pv päästä","relativeTimePattern-count-other":"{0} pv päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} pv sitten","relativeTimePattern-count-other":"{0} pv sitten"}},"weekday":{"displayName":"viikonpäivä"},"sun":{"relative-type--1":"viime sunnuntaina","relative-type-0":"tänä sunnuntaina","relative-type-1":"ensi sunnuntaina"},"sun-short":{"relative-type--1":"viime su","relative-type-0":"tänä su","relative-type-1":"ensi su"},"sun-narrow":{"relative-type--1":"viime su","relative-type-0":"tänä su","relative-type-1":"ensi su"},"mon":{"relative-type--1":"viime maanantaina","relative-type-0":"tänä maanantaina","relative-type-1":"ensi maanantaina"},"mon-short":{"relative-type--1":"viime ma","relative-type-0":"tänä ma","relative-type-1":"ensi ma"},"mon-narrow":{"relative-type--1":"viime ma","relative-type-0":"tänä ma","relative-type-1":"ensi ma"},"tue":{"relative-type--1":"viime tiistaina","relative-type-0":"tänä tiistaina","relative-type-1":"ensi tiistaina"},"tue-short":{"relative-type--1":"viime ti","relative-type-0":"tänä ti","relative-type-1":"ensi ti"},"tue-narrow":{"relative-type--1":"viime ti","relative-type-0":"tänä ti","relative-type-1":"ensi ti"},"wed":{"relative-type--1":"viime keskiviikkona","relative-type-0":"tänä keskiviikkona","relative-type-1":"ensi keskiviikkona"},"wed-short":{"relative-type--1":"viime ke","relative-type-0":"tänä ke","relative-type-1":"ensi ke"},"wed-narrow":{"relative-type--1":"viime ke","relative-type-0":"tänä ke","relative-type-1":"ensi ke"},"thu":{"relative-type--1":"viime torstaina","relative-type-0":"tänä torstaina","relative-type-1":"ensi torstaina"},"thu-short":{"relative-type--1":"viime to","relative-type-0":"tänä to","relative-type-1":"ensi to"},"thu-narrow":{"relative-type--1":"viime to","relative-type-0":"tänä to","relative-type-1":"ensi to"},"fri":{"relative-type--1":"viime perjantaina","relative-type-0":"tänä perjantaina","relative-type-1":"ensi perjantaina"},"fri-short":{"relative-type--1":"viime pe","relative-type-0":"tänä pe","relative-type-1":"ensi pe"},"fri-narrow":{"relative-type--1":"viime pe","relative-type-0":"tänä pe","relative-type-1":"ensi pe"},"sat":{"relative-type--1":"viime lauantaina","relative-type-0":"tänä lauantaina","relative-type-1":"ensi lauantaina"},"sat-short":{"relative-type--1":"viime la","relative-type-0":"tänä la","relative-type-1":"ensi la"},"sat-narrow":{"relative-type--1":"viime la","relative-type-0":"tänä la","relative-type-1":"ensi la"},"dayperiod":{"displayName":"vuorokaudenaika"},"hour":{"displayName":"tunti","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} tunnin päästä","relativeTimePattern-count-other":"{0} tunnin päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} tunti sitten","relativeTimePattern-count-other":"{0} tuntia sitten"}},"hour-short":{"displayName":"t","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} t päästä","relativeTimePattern-count-other":"{0} t päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} t sitten","relativeTimePattern-count-other":"{0} t sitten"}},"hour-narrow":{"displayName":"t","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} t päästä","relativeTimePattern-count-other":"{0} t päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} t sitten","relativeTimePattern-count-other":"{0} t sitten"}},"minute":{"displayName":"minuutti","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} minuutin päästä","relativeTimePattern-count-other":"{0} minuutin päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minuutti sitten","relativeTimePattern-count-other":"{0} minuuttia sitten"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} min päästä","relativeTimePattern-count-other":"{0} min päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min sitten","relativeTimePattern-count-other":"{0} min sitten"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} min päästä","relativeTimePattern-count-other":"{0} min päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min sitten","relativeTimePattern-count-other":"{0} min sitten"}},"second":{"displayName":"sekunti","relative-type-0":"nyt","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} sekunnin päästä","relativeTimePattern-count-other":"{0} sekunnin päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sekunti sitten","relativeTimePattern-count-other":"{0} sekuntia sitten"}},"second-short":{"displayName":"s","relative-type-0":"nyt","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} s päästä","relativeTimePattern-count-other":"{0} s päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} s sitten","relativeTimePattern-count-other":"{0} s sitten"}},"second-narrow":{"displayName":"s","relative-type-0":"nyt","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} s päästä","relativeTimePattern-count-other":"{0} s päästä"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} s sitten","relativeTimePattern-count-other":"{0} s sitten"}},"zone":{"displayName":"aikavyöhyke"}} \ No newline at end of file diff --git a/Punic/data/fi/languages.json b/Punic/data/fi/languages.json new file mode 100644 index 0000000..38e728f --- /dev/null +++ b/Punic/data/fi/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abhaasi","ace":"atšeh","ach":"atšoli","ada":"adangme","ady":"adyge","ae":"avesta","aeb":"tunisianarabia","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"akkadi","akz":"alabama","ale":"aleutti","aln":"geg","alt":"altai","am":"amhara","an":"aragonia","ang":"muinaisenglanti","anp":"angika","ar":"arabia","ar-001":"yleisarabia","arc":"valtakunnanaramea","arn":"mapudungun","aro":"araona","arp":"arapaho","arq":"algerianarabia","arw":"arawak","ary":"marokonarabia","arz":"egyptinarabia","as":"assami","asa":"asu","ase":"amerikkalainen viittomakieli","ast":"asturia","av":"avaari","avk":"kotava","awa":"awadhi","ay":"aimara","az":"azeri","az-alt-short":"azeri","azb":"eteläazeri","ba":"baškiiri","bal":"belutši","ban":"bali","bar":"baijeri","bas":"basaa","bax":"bamum","bbc":"batak-toba","bbj":"ghomala","be":"valkovenäjä","bej":"bedža","bem":"bemba","bew":"betawi","bez":"bena","bfd":"fut","bfq":"badaga","bg":"bulgaria","bho":"bhodžpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"banjar","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tiibet","bpy":"bišnupria","bqi":"bahtiari","br":"bretoni","bra":"bradž","brh":"brahui","brx":"bodo","bs":"bosnia","bss":"koose","bua":"burjaatti","bug":"bugi","bum":"bulu","byn":"bilin","byv":"medumba","ca":"katalaani","cad":"caddo","car":"karibi","cay":"cayuga","cch":"atsam","ce":"tšetšeeni","ceb":"cebuano","cgg":"kiga","ch":"tšamorro","chb":"tšibtša","chg":"tšagatai","chk":"chuuk","chm":"mari","chn":"chinook-jargon","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheyenne","ckb":"sorani","co":"korsika","cop":"kopti","cps":"capiznon","cr":"cree","crh":"krimintataari","crh-alt-secondary":"kriminturkki","cs":"tšekki","csb":"kašubi","cu":"kirkkoslaavi","cv":"tšuvassi","cy":"kymri","da":"tanska","dak":"dakota","dar":"dargi","dav":"taita","de":"saksa","de-AT":"itävallansaksa","de-CH":"sveitsinyläsaksa","del":"delaware","den":"slevi","dgr":"dogrib","din":"dinka","dje":"djerma","doi":"dogri","dsb":"alasorbi","dtp":"dusun","dua":"duala","dum":"keskihollanti","dv":"divehi","dyo":"jola-fonyi","dyu":"djula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"emilia","egy":"muinaisegypti","eka":"ekajuk","el":"kreikka","elx":"elami","en":"englanti","en-AU":"australianenglanti","en-CA":"kanadanenglanti","en-GB":"britannianenglanti","en-GB-alt-short":"englanti (Britannia)","en-US":"amerikanenglanti","en-US-alt-short":"englanti (USA)","enm":"keskienglanti","eo":"esperanto","es":"espanja","es-419":"amerikanespanja","es-ES":"espanjanespanja","es-MX":"meksikonespanja","esu":"alaskanjupik","et":"viro","eu":"baski","ewo":"ewondo","ext":"extremadura","fa":"farsi","fa-alt-secondary":"persia","fan":"fang","fat":"fanti","ff":"fulani","fi":"suomi","fil":"filipino","fit":"meänkieli","fj":"fidži","fo":"fääri","fon":"fon","fr":"ranska","fr-CA":"kanadanranska","fr-CH":"sveitsinranska","frc":"cajun","frm":"keskiranska","fro":"muinaisranska","frp":"arpitaani","frr":"pohjoisfriisi","frs":"itäfriisi","fur":"friuli","fy":"länsifriisi","ga":"iiri","gaa":"ga","gag":"gagauzi","gan":"gan-kiina","gay":"gajo","gba":"gbaja","gbz":"zoroastrialaisdari","gd":"gaeli","gez":"ge’ez","gil":"kiribati","gl":"galicia","glk":"gilaki","gmh":"keskiyläsaksa","gn":"guarani","goh":"muinaisyläsaksa","gom":"goankonkani","gon":"gondi","gor":"gorontalo","got":"gootti","grb":"grebo","grc":"muinaiskreikka","gsw":"sveitsinsaksa","gu":"gudžarati","guc":"wayuu","gur":"frafra","guz":"gusii","gv":"manksi","gwi":"gwitšin","ha":"hausa","hai":"haida","hak":"hakka-kiina","haw":"havaiji","he":"heprea","hi":"hindi","hif":"fidžinhindi","hil":"hiligaino","hit":"heetti","hmn":"hmong","ho":"hiri-motu","hr":"kroatia","hsb":"yläsorbi","hsn":"xiang-kiina","ht":"haiti","hu":"unkari","hup":"hupa","hy":"armenia","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesia","ie":"interlingue","ig":"igbo","ii":"sichuanin-yi","ik":"inupiaq","ilo":"iloko","inh":"inguuši","io":"ido","is":"islanti","it":"italia","iu":"inuktitut","izh":"inkeroinen","ja":"japani","jam":"jamaikankreolienglanti","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"juutalaispersia","jrb":"juutalaisarabia","jut":"juutti","jv":"jaava","ka":"georgia","kaa":"karakalpakki","kab":"kabyyli","kac":"katšin","kaj":"jju","kam":"kamba","kaw":"kavi","kbd":"kabardi","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kapverdenkreoli","ken":"kenyang","kfo":"norsunluurannikonkoro","kg":"kongo","kgp":"kaingang","kha":"khasi","kho":"khotani","khq":"koyra chiini","khw":"khowar","ki":"kikuju","kiu":"kirmanjki","kj":"kuanjama","kk":"kazakki","kkj":"kako","kl":"kalaallisut","kl-alt-secondary":"grönlanti","kln":"kalenjin","km":"khmer","kmb":"kimbundu","kn":"kannada","ko":"korea","koi":"komipermjakki","kok":"konkani","kos":"kosrae","kpe":"kpelle","kr":"kanuri","krc":"karatšai-balkaari","kri":"krio","krj":"kinaray-a","krl":"karjala","kru":"kurukh","ks":"kašmiri","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"kurdi","kum":"kumykki","kut":"kutenai","kv":"komi","kw":"korni","ky":"kirgiisi","la":"latina","lad":"ladino","lad-alt-secondary":"juutalaisespanja","lag":"lango","lah":"lahnda","lam":"lamba","lb":"luxemburg","lez":"lezgi","lfn":"lingua franca nova","lg":"ganda","li":"limburg","lij":"liguuri","liv":"liivi","lkt":"lakota","lmo":"lombardi","ln":"lingala","lo":"lao","lol":"mongo","loz":"lozi","lt":"liettua","ltg":"latgalli","lu":"katanganluba","lua":"luluanluba","lui":"luiseño","lun":"lunda","luo":"luo","lus":"lusai","luy":"luhya","lv":"latvia","lzh":"klassinen kiina","lzz":"lazi","mad":"madura","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makassar","man":"mandingo","mas":"maasai","mde":"maba","mdf":"mokša","mdr":"mandar","men":"mende","mer":"meru","mfe":"morisyen","mg":"malagassi","mga":"keski-iiri","mgh":"makua-meetto","mgo":"meta’","mh":"marshall","mi":"maori","mic":"micmac","min":"minangkabau","mk":"makedonia","ml":"malajalam","mn":"mongoli","mnc":"mantšu","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"vuorimari","ms":"malaiji","mt":"malta","mua":"mundang","mul":"monia kieliä","mus":"creek","mwl":"mirandeesi","mwr":"marwari","mwv":"mentawai","my":"burma","mye":"myene","myv":"ersä","mzn":"mazandarani","na":"nauru","nan":"min nan -kiina","nap":"napoli","naq":"nama","nb":"norjan bokmål","nd":"pohjois-ndebele","nds":"alasaksa","ne":"nepali","new":"newari","ng":"ndonga","nia":"nias","niu":"niue","njo":"ao naga","nl":"hollanti","nl-BE":"flaami","nmg":"kwasio","nn":"norjan nynorsk","nnh":"ngiemboon","no":"norja","nog":"nogai","non":"muinaisnorja","nov":"novial","nqo":"n’ko","nr":"etelä-ndebele","nso":"pohjoissotho","nus":"nuer","nv":"navajo","nwc":"klassinen newari","ny":"njandža","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"oksitaani","oj":"odžibwa","om":"oromo","or":"orija","os":"osseetti","osa":"osage","ota":"osmani","pa":"pandžabi","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamentu","pau":"palau","pcd":"picardi","pdc":"pennsylvaniansaksa","pdt":"plautdietsch","peo":"muinaispersia","pfl":"pfaltsi","phn":"foinikia","pi":"paali","pl":"puola","pms":"piemonte","pnt":"pontoksenkreikka","pon":"pohnpei","prg":"muinaispreussi","pro":"muinaisprovensaali","ps":"paštu","pt":"portugali","pt-BR":"brasilianportugali","pt-PT":"portugalinportugali","qu":"ketšua","quc":"kʼicheʼ","qug":"chimborazonylänköketšua","raj":"radžastani","rap":"rapanui","rar":"rarotonga","rgn":"romagnoli","rif":"tarifit","rm":"retoromaani","rn":"rundi","ro":"romania","ro-MD":"moldova","rof":"rombo","rom":"romani","root":"juuri","rtm":"rotuma","ru":"venäjä","rue":"ruteeni","rug":"roviana","rup":"aromania","rw":"ruanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"jakuutti","sam":"samarianaramea","saq":"samburu","sas":"sasak","sat":"santali","saz":"sauraštri","sba":"ngambay","sbp":"sangu","sc":"sardi","scn":"sisilia","sco":"skotti","sd":"sindhi","sdc":"sassarinsardi","se":"pohjoissaame","see":"seneca","seh":"sena","sei":"seri","sel":"selkuppi","ses":"koyraboro senni","sg":"sango","sga":"muinaisiiri","sgs":"samogiitti","sh":"serbokroaatti","shi":"tašelhit","shn":"shan","shu":"tšadinarabia","si":"sinhala","sid":"sidamo","sk":"slovakki","sl":"sloveeni","sli":"sleesiansaksa","sly":"selayar","sm":"samoa","sma":"eteläsaame","smj":"luulajansaame","smn":"inarinsaame","sms":"koltansaame","sn":"šona","snk":"soninke","so":"somali","sog":"sogdi","sq":"albania","sr":"serbia","srn":"sranan","srr":"serer","ss":"swazi","ssy":"saho","st":"eteläsotho","stq":"saterlandinfriisi","su":"sunda","suk":"sukuma","sus":"susu","sux":"sumeri","sv":"ruotsi","sw":"swahili","swb":"komori","swc":"kingwana","syc":"muinaissyyria","syr":"syyria","szl":"sleesia","ta":"tamili","tcy":"tulu","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadžikki","th":"thai","ti":"tigrinja","tig":"tigre","tiv":"tiv","tk":"turkmeeni","tkl":"tokelau","tkr":"tsahuri","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"tališi","tmh":"tamašek","tn":"tswana","to":"tonga","tog":"malawintonga","tpi":"tok-pisin","tr":"turkki","tru":"turojo","trv":"taroko","ts":"tsonga","tsd":"tsakonia","tsi":"tsimši","tt":"tataari","ttt":"tati","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahiti","tyv":"tuva","tzm":"keskiatlaksentamazight","udm":"udmurtti","ug":"uiguuri","uga":"ugarit","uk":"ukraina","umb":"mbundu","und":"määrittämätön kieli","ur":"urdu","uz":"uzbekki","vai":"vai","ve":"venda","vec":"venetsia","vep":"vepsä","vi":"vietnam","vls":"länsiflaami","vmf":"maininfrankki","vo":"volapük","vot":"vatja","vro":"võro","vun":"vunjo","wa":"valloni","wae":"walser","wal":"wolaitta","war":"waray","was":"washo","wo":"wolof","wuu":"wu-kiina","xal":"kalmukki","xh":"xhosa","xmf":"mingreli","xog":"soga","yao":"jao","yap":"japi","yav":"yangben","ybb":"yemba","yi":"jiddiš","yo":"joruba","yrl":"ñeengatú","yue":"kantoninkiina","za":"zhuang","zap":"zapoteekki","zbl":"blisskieli","zea":"seelanti","zen":"zenaga","zgh":"vakioitu tamazight","zh":"kiina","zh-Hans":"yksinkertaistettu kiina","zh-Hant":"perinteinen kiina","zu":"zulu","zun":"zuni","zxx":"ei kielellistä sisältöä","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/fi/listPatterns.json b/Punic/data/fi/listPatterns.json new file mode 100644 index 0000000..168936e --- /dev/null +++ b/Punic/data/fi/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ja %2$s","2":"%1$s ja %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ja %2$s","2":"%1$s ja %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/fi/localeDisplayNames.json b/Punic/data/fi/localeDisplayNames.json new file mode 100644 index 0000000..475d208 --- /dev/null +++ b/Punic/data/fi/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalenteri","colAlternate":"symbolien lajittelu","colBackwards":"painomerkkien lajittelu","colCaseFirst":"isojen ja pienten kirjainten järjestys","colCaseLevel":"aakkoslajien lajittelu","colHiraganaQuaternary":"kana-merkkien lajittelu","colNormalization":"lajittelun normalisointi","colNumeric":"numeroiden lajittelu","colStrength":"lajittelun taso","collation":"lajittelujärjestys","currency":"valuutta","numbers":"numerot","timezone":"aikavyöhyke","va":"maavalinnan muunnelma","variableTop":"lajittelu symboleina","x":"yksityiskäyttö"},"types":{"numbers":{"vaii":"vai-numerot"},"collation":{"zhuyin":"zhuyin-järjestys"},"calendar":{"roc":"Kiinan tasavallan kalenteri"},"colStrength":{"tertiary":"painomerkit ja aakkoslajit tai merkkileveydet huomioiva lajittelu"},"colCaseFirst":{"upper":"isot kirjaimet edeltävät pieniä"},"colBackwards":{"yes":"painomerkkien käänteinen lajittelu"},"colCaseLevel":{"yes":"isojen ja pienten kirjainten lajittelu erikseen"},"colHiraganaQuaternary":{"yes":"kana-merkkien lajittelu tyypin mukaan"},"colNormalization":{"yes":"lajittelu Unicode-normalisoituna"},"colNumeric":{"yes":"numeroden lajittelu lukuina"},"colAlternate":{"shifted":"symbolit ohittava lajittelu"}},"codePatterns":{"language":"kieli: %1$s","script":"kirjoitusjärjestelmä: %1$s","territory":"alue: %1$s"}} \ No newline at end of file diff --git a/Punic/data/fi/numbers.json b/Punic/data/fi/numbers.json new file mode 100644 index 0000000..8ec3e7d --- /dev/null +++ b/Punic/data/fi/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"−","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"epäluku","timeSeparator":"."}} \ No newline at end of file diff --git a/Punic/data/fi/territories.json b/Punic/data/fi/territories.json new file mode 100644 index 0000000..caa01e2 --- /dev/null +++ b/Punic/data/fi/territories.json @@ -0,0 +1 @@ +{"001":"maailma","002":"Afrikka","003":"Pohjois-Amerikka","005":"Etelä-Amerikka","009":"Oseania","011":"Länsi-Afrikka","013":"Väli-Amerikka","014":"Itä-Afrikka","015":"Pohjois-Afrikka","017":"Keski-Afrikka","018":"eteläinen Afrikka","019":"Amerikka","021":"pohjoinen Amerikka","029":"Karibia","030":"Itä-Aasia","034":"Etelä-Aasia","035":"Kaakkois-Aasia","039":"Etelä-Eurooppa","053":"Australaasia","054":"Melanesia","057":"Mikronesia","061":"Polynesia","142":"Aasia","143":"Keski-Aasia","145":"Länsi-Aasia","150":"Eurooppa","151":"Itä-Eurooppa","154":"Pohjois-Eurooppa","155":"Länsi-Eurooppa","419":"Latinalainen Amerikka","AC":"Ascension-saari","AD":"Andorra","AE":"Arabiemiirikunnat","AF":"Afganistan","AG":"Antigua ja Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Alankomaiden Antillit","AO":"Angola","AQ":"Antarktis","AR":"Argentiina","AS":"Amerikan Samoa","AT":"Itävalta","AU":"Australia","AW":"Aruba","AX":"Ahvenanmaa","AZ":"Azerbaidžan","BA":"Bosnia ja Hertsegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgia","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Karibian Alankomaat","BR":"Brasilia","BS":"Bahama","BT":"Bhutan","BV":"Bouvet’nsaari","BW":"Botswana","BY":"Valko-Venäjä","BZ":"Belize","CA":"Kanada","CC":"Kookossaaret (Keelingsaaret)","CD":"Kongon demokraattinen tasavalta","CD-alt-variant":"Kongo-Kinshasa","CF":"Keski-Afrikan tasavalta","CG":"Kongon tasavalta","CG-alt-variant":"Kongo-Brazzaville","CH":"Sveitsi","CI":"Norsunluurannikko","CI-alt-variant":"Côte d’Ivoire","CK":"Cookinsaaret","CL":"Chile","CM":"Kamerun","CN":"Kiina","CO":"Kolumbia","CP":"Clippertoninsaari","CR":"Costa Rica","CU":"Kuuba","CV":"Kap Verde","CW":"Curaçao","CX":"Joulusaari","CY":"Kypros","CZ":"Tšekki","DE":"Saksa","DG":"Diego Garcia","DJ":"Djibouti","DK":"Tanska","DM":"Dominica","DO":"Dominikaaninen tasavalta","DZ":"Algeria","EA":"Ceuta ja Melilla","EC":"Ecuador","EE":"Viro","EG":"Egypti","EH":"Länsi-Sahara","ER":"Eritrea","ES":"Espanja","ET":"Etiopia","EU":"Euroopan unioni","FI":"Suomi","FJ":"Fidži","FK":"Falklandinsaaret","FK-alt-variant":"Falklandinsaaret (Malvinassaaret)","FM":"Mikronesian liittovaltio","FO":"Färsaaret","FR":"Ranska","GA":"Gabon","GB":"Yhdistynyt kuningaskunta","GB-alt-short":"Britannia","GD":"Grenada","GE":"Georgia","GF":"Ranskan Guayana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grönlanti","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Päiväntasaajan Guinea","GR":"Kreikka","GS":"Etelä-Georgia ja Eteläiset Sandwichsaaret","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong – Kiinan e.h.a.","HK-alt-short":"Hongkong","HM":"Heard ja McDonaldinsaaret","HN":"Honduras","HR":"Kroatia","HT":"Haiti","HU":"Unkari","IC":"Kanariansaaret","ID":"Indonesia","IE":"Irlanti","IL":"Israel","IM":"Mansaari","IN":"Intia","IO":"Brittiläinen Intian valtameren alue","IQ":"Irak","IR":"Iran","IS":"Islanti","IT":"Italia","JE":"Jersey","JM":"Jamaika","JO":"Jordania","JP":"Japani","KE":"Kenia","KG":"Kirgisia","KH":"Kambodža","KI":"Kiribati","KM":"Komorit","KN":"Saint Kitts ja Nevis","KP":"Pohjois-Korea","KR":"Etelä-Korea","KW":"Kuwait","KY":"Caymansaaret","KZ":"Kazakstan","LA":"Laos","LB":"Libanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Liettua","LU":"Luxemburg","LV":"Latvia","LY":"Libya","MA":"Marokko","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint-Martin","MG":"Madagaskar","MH":"Marshallinsaaret","MK":"Makedonia","MK-alt-variant":"EJT Makedonia","ML":"Mali","MM":"Myanmar (Burma)","MN":"Mongolia","MO":"Macao – Kiinan e.h.a.","MO-alt-short":"Macao","MP":"Pohjois-Mariaanit","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Malediivit","MW":"Malawi","MX":"Meksiko","MY":"Malesia","MZ":"Mosambik","NA":"Namibia","NC":"Uusi-Kaledonia","NE":"Niger","NF":"Norfolkinsaari","NG":"Nigeria","NI":"Nicaragua","NL":"Alankomaat","NO":"Norja","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Uusi-Seelanti","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Ranskan Polynesia","PG":"Papua-Uusi-Guinea","PH":"Filippiinit","PK":"Pakistan","PL":"Puola","PM":"Saint-Pierre ja Miquelon","PN":"Pitcairn","PR":"Puerto Rico","PS":"Palestiinalaisalueet","PS-alt-short":"Palestiina","PT":"Portugali","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"ulkomeri","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Venäjä","RW":"Ruanda","SA":"Saudi-Arabia","SB":"Salomonsaaret","SC":"Seychellit","SD":"Sudan","SE":"Ruotsi","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Huippuvuoret ja Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Etelä-Sudan","ST":"São Tomé ja Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syyria","SZ":"Swazimaa","TA":"Tristan da Cunha","TC":"Turks- ja Caicossaaret","TD":"Tšad","TF":"Ranskan ulkopuoliset eteläiset alueet","TG":"Togo","TH":"Thaimaa","TJ":"Tadžikistan","TK":"Tokelau","TL":"Itä-Timor","TL-alt-variant":"Timor-Leste","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkki","TT":"Trinidad ja Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tansania","UA":"Ukraina","UG":"Uganda","UM":"Yhdysvaltain erillissaaret","US":"Yhdysvallat","US-alt-short":"USA","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatikaani","VC":"Saint Vincent ja Grenadiinit","VE":"Venezuela","VG":"Brittiläiset Neitsytsaaret","VI":"Yhdysvaltain Neitsytsaaret","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis ja Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Etelä-Afrikka","ZM":"Sambia","ZW":"Zimbabwe","ZZ":"tuntematon alue"} \ No newline at end of file diff --git a/Punic/data/fi/timeZoneNames.json b/Punic/data/fi/timeZoneNames.json new file mode 100644 index 0000000..bca4d6f --- /dev/null +++ b/Punic/data/fi/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+H.mm;-H.mm","gmtFormat":"UTC%1$s","gmtZeroFormat":"UTC","regionFormat":"aikavyöhyke: %1$s","regionFormat-type-standard":"%1$s (normaaliaika)","regionFormat-type-daylight":"%1$s (kesäaika)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahía de 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":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Nuuk","exemplarCity-alt-secondary":"Godthåb"},"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":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, 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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinique"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciudad de México"},"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, Pohjois-Dakota"},"Center":{"exemplarCity":"Center, Pohjois-Dakota"},"New_Salem":{"exemplarCity":"New Salem, Pohjois-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":"Santarém"},"Santiago":{"exemplarCity":"Santiago de Chile"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit","exemplarCity-alt-secondary":"Scoresbysund"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Saint-Barthélemy"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"Saint Kitts"},"St_Lucia":{"exemplarCity":"Saint Lucia"},"St_Thomas":{"exemplarCity":"Saint Thomas"},"St_Vincent":{"exemplarCity":"Saint Vincent"},"Swift_Current":{"exemplarCity":"Swift Current"},"Tegucigalpa":{"exemplarCity":"Tegucigalpa"},"Thule":{"exemplarCity":"Thule","exemplarCity-alt-secondary":"Qaanaaq"},"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":"Azorit"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanariansaaret"},"Cape_Verde":{"exemplarCity":"Kap Verde"},"Faeroe":{"exemplarCity":"Färsaaret"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavík"},"South_Georgia":{"exemplarCity":"Etelä-Georgia"},"St_Helena":{"exemplarCity":"Saint Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Ateena"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berliini"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bryssel"},"Bucharest":{"exemplarCity":"Bukarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chişinău"},"Copenhagen":{"exemplarCity":"Kööpenhamina"},"Dublin":{"long":{"daylight":"Irlannin kesäaika"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Mansaari"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiova"},"Lisbon":{"exemplarCity":"Lissabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Britannian kesäaika"},"exemplarCity":"Lontoo"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Maarianhamina","exemplarCity-alt-secondary":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moskova"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Pariisi"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praha"},"Riga":{"exemplarCity":"Riika"},"Rome":{"exemplarCity":"Rooma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Tukholma"},"Tallinn":{"exemplarCity":"Tallinna"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Užgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikaani"},"Vienna":{"exemplarCity":"Wien"},"Vilnius":{"exemplarCity":"Vilna"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varsova"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporižžja"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"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":"Mogadishu"},"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":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtaw"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Ašgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Biškek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kalkutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Tšoibalsa"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaskos"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dušanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamtšatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kašgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Handyga"},"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":"Muscat"},"Nicosia":{"exemplarCity":"Nikosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pjongjang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qızılorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riad"},"Saigon":{"exemplarCity":"Hồ Chí Minhin kaupunki"},"Sakhalin":{"exemplarCity":"Sahalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Soul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Taškent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Joulusaari"},"Cocos":{"exemplarCity":"Kookossaaret"},"Comoro":{"exemplarCity":"Komorit"},"Kerguelen":{"exemplarCity":"Kerguelensaaret"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Malediivit"},"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"},"Chatham":{"exemplarCity":"Chathamsaaret"},"Easter":{"exemplarCity":"Pääsiäissaari"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidži"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapagos"},"Gambier":{"exemplarCity":"Gambiersaaret"},"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":"Marquesassaaret"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"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":"Macquariensaari"},"Mawson":{"exemplarCity":"Mawson"},"McMurdo":{"exemplarCity":"McMurdo"},"Palmer":{"exemplarCity":"Palmer"},"Rothera":{"exemplarCity":"Rothera"},"Syowa":{"exemplarCity":"Syowa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Vostok"}},"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":"tuntematon"}}},"metazone":{"Acre":{"long":{"generic":"Acren aika","standard":"Acren normaaliaika","daylight":"Acren kesäaika"}},"Afghanistan":{"long":{"standard":"Afganistanin aika"}},"Africa_Central":{"long":{"standard":"Keski-Afrikan aika"}},"Africa_Eastern":{"long":{"standard":"Itä-Afrikan aika"}},"Africa_Southern":{"long":{"standard":"Etelä-Afrikan aika"}},"Africa_Western":{"long":{"generic":"Länsi-Afrikan aika","standard":"Länsi-Afrikan normaaliaika","daylight":"Länsi-Afrikan kesäaika"}},"Alaska":{"long":{"generic":"Alaskan aika","standard":"Alaskan normaaliaika","daylight":"Alaskan kesäaika"}},"Almaty":{"long":{"generic":"Almatyn aika","standard":"Almatyn normaaliaika","daylight":"Almatyn kesäaika"}},"Amazon":{"long":{"generic":"Amazonin aika","standard":"Amazonin normaaliaika","daylight":"Amazonin kesäaika"}},"America_Central":{"long":{"generic":"Yhdysvaltain keskinen aika","standard":"Yhdysvaltain keskinen normaaliaika","daylight":"Yhdysvaltain keskinen kesäaika"}},"America_Eastern":{"long":{"generic":"Yhdysvaltain itäinen aika","standard":"Yhdysvaltain itäinen normaaliaika","daylight":"Yhdysvaltain itäinen kesäaika"}},"America_Mountain":{"long":{"generic":"Kalliovuorten aika","standard":"Kalliovuorten normaaliaika","daylight":"Kalliovuorten kesäaika"}},"America_Pacific":{"long":{"generic":"Yhdysvaltain Tyynenmeren aika","standard":"Yhdysvaltain Tyynenmeren normaaliaika","daylight":"Yhdysvaltain Tyynenmeren kesäaika"}},"Anadyr":{"long":{"generic":"Anadyrin aika","standard":"Anadyrin normaaliaika","daylight":"Anadyrin kesäaika"}},"Apia":{"long":{"generic":"Apian aika","standard":"Apian normaaliaika","daylight":"Apian kesäaika"}},"Aqtau":{"long":{"generic":"Aqtaw’n aika","standard":"Aqtaw’n normaaliaika","daylight":"Aqtaw’n kesäaika"}},"Aqtobe":{"long":{"generic":"Aqtöben aika","standard":"Aqtöben normaaliaika","daylight":"Aqtöben kesäaika"}},"Arabian":{"long":{"generic":"Saudi-Arabian aika","standard":"Saudi-Arabian normaaliaika","daylight":"Saudi-Arabian kesäaika"}},"Argentina":{"long":{"generic":"Argentiinan aika","standard":"Argentiinan normaaliaika","daylight":"Argentiinan kesäaika"}},"Argentina_Western":{"long":{"generic":"Länsi-Argentiinan aika","standard":"Länsi-Argentiinan normaaliaika","daylight":"Länsi-Argentiinan kesäaika"}},"Armenia":{"long":{"generic":"Armenian aika","standard":"Armenian normaaliaika","daylight":"Armenian kesäaika"}},"Atlantic":{"long":{"generic":"Kanadan Atlantin aika","standard":"Kanadan Atlantin normaaliaika","daylight":"Kanadan Atlantin kesäaika"}},"Australia_Central":{"long":{"generic":"Keski-Australian aika","standard":"Keski-Australian normaaliaika","daylight":"Keski-Australian kesäaika"}},"Australia_CentralWestern":{"long":{"generic":"Läntisen Keski-Australian aika","standard":"Läntisen Keski-Australian normaaliaika","daylight":"Läntisen Keski-Australian kesäaika"}},"Australia_Eastern":{"long":{"generic":"Itä-Australian aika","standard":"Itä-Australian normaaliaika","daylight":"Itä-Australian kesäaika"}},"Australia_Western":{"long":{"generic":"Länsi-Australian aika","standard":"Länsi-Australian normaaliaika","daylight":"Länsi-Australian kesäaika"}},"Azerbaijan":{"long":{"generic":"Azerbaidžanin aika","standard":"Azerbaidžanin normaaliaika","daylight":"Azerbaidžanin kesäaika"}},"Azores":{"long":{"generic":"Azorien aika","standard":"Azorien normaaliaika","daylight":"Azorien kesäaika"}},"Bangladesh":{"long":{"generic":"Bangladeshin aika","standard":"Bangladeshin normaaliaika","daylight":"Bangladeshin kesäaika"}},"Bhutan":{"long":{"standard":"Bhutanin aika"}},"Bolivia":{"long":{"standard":"Bolivian aika"}},"Brasilia":{"long":{"generic":"Brasilian aika","standard":"Brasilian normaaliaika","daylight":"Brasilian kesäaika"}},"Brunei":{"long":{"standard":"Brunein aika"}},"Cape_Verde":{"long":{"generic":"Kap Verden aika","standard":"Kap Verden normaaliaika","daylight":"Kap Verden kesäaika"}},"Casey":{"long":{"standard":"Caseyn aika"}},"Chamorro":{"long":{"standard":"Tšamorron aika"}},"Chatham":{"long":{"generic":"Chathamin aika","standard":"Chathamin normaaliaika","daylight":"Chathamin kesäaika"}},"Chile":{"long":{"generic":"Chilen aika","standard":"Chilen normaaliaika","daylight":"Chilen kesäaika"}},"China":{"long":{"generic":"Kiinan aika","standard":"Kiinan normaaliaika","daylight":"Kiinan kesäaika"}},"Choibalsan":{"long":{"generic":"Tšoibalsan aika","standard":"Tšoibalsan normaaliaika","daylight":"Tšoibalsan kesäaika"}},"Christmas":{"long":{"standard":"Joulusaaren aika"}},"Cocos":{"long":{"standard":"Kookossaarten aika"}},"Colombia":{"long":{"generic":"Kolumbian aika","standard":"Kolumbian normaaliaika","daylight":"Kolumbian kesäaika"}},"Cook":{"long":{"generic":"Cookinsaarten aika","standard":"Cookinsaarten normaaliaika","daylight":"Cookinsaarten kesäaika"}},"Cuba":{"long":{"generic":"Kuuban aika","standard":"Kuuban normaaliaika","daylight":"Kuuban kesäaika"}},"Davis":{"long":{"standard":"Davisin aika"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urvillen aika"}},"East_Timor":{"long":{"standard":"Itä-Timorin aika"}},"Easter":{"long":{"generic":"Pääsiäissaaren aika","standard":"Pääsiäissaaren normaaliaika","daylight":"Pääsiäissaaren kesäaika"}},"Ecuador":{"long":{"standard":"Ecuadorin aika"}},"Europe_Central":{"long":{"generic":"Keski-Euroopan aika","standard":"Keski-Euroopan normaaliaika","daylight":"Keski-Euroopan kesäaika"}},"Europe_Eastern":{"long":{"generic":"Itä-Euroopan aika","standard":"Itä-Euroopan normaaliaika","daylight":"Itä-Euroopan kesäaika"}},"Europe_Further_Eastern":{"long":{"standard":"Itäisemmän Euroopan aika"}},"Europe_Western":{"long":{"generic":"Länsi-Euroopan aika","standard":"Länsi-Euroopan normaaliaika","daylight":"Länsi-Euroopan kesäaika"}},"Falkland":{"long":{"generic":"Falklandinsaarten aika","standard":"Falklandinsaarten normaaliaika","daylight":"Falklandinsaarten kesäaika"}},"Fiji":{"long":{"generic":"Fidžin aika","standard":"Fidžin normaaliaika","daylight":"Fidžin kesäaika"}},"French_Guiana":{"long":{"standard":"Ranskan Guayanan aika"}},"French_Southern":{"long":{"standard":"Ranskan eteläisten ja antarktisten alueiden aika"}},"GMT":{"long":{"standard":"Greenwichin normaaliaika"}},"Galapagos":{"long":{"standard":"Galápagossaarten aika"}},"Gambier":{"long":{"standard":"Gambierin aika"}},"Georgia":{"long":{"generic":"Georgian aika","standard":"Georgian normaaliaika","daylight":"Georgian kesäaika"}},"Gilbert_Islands":{"long":{"standard":"Gilbertsaarten aika"}},"Greenland_Eastern":{"long":{"generic":"Itä-Grönlannin aika","standard":"Itä-Grönlannin normaaliaika","daylight":"Itä-Grönlannin kesäaika"}},"Greenland_Western":{"long":{"generic":"Länsi-Grönlannin aika","standard":"Länsi-Grönlannin normaaliaika","daylight":"Länsi-Grönlannin kesäaika"}},"Guam":{"long":{"standard":"Guamin aika"}},"Gulf":{"long":{"standard":"Arabiemiirikuntien normaaliaika"}},"Guyana":{"long":{"standard":"Guyanan aika"}},"Hawaii_Aleutian":{"long":{"generic":"Havaijin-Aleuttien aika","standard":"Havaijin-Aleuttien normaaliaika","daylight":"Havaijin-Aleuttien kesäaika"}},"Hong_Kong":{"long":{"generic":"Hongkongin aika","standard":"Hongkongin normaaliaika","daylight":"Hongkongin kesäaika"}},"Hovd":{"long":{"generic":"Hovdin aika","standard":"Hovdin normaaliaika","daylight":"Hovdin kesäaika"}},"India":{"long":{"standard":"Intian aika"}},"Indian_Ocean":{"long":{"standard":"Intian valtameren aika"}},"Indochina":{"long":{"standard":"Indokiinan aika"}},"Indonesia_Central":{"long":{"standard":"Keski-Indonesian aika"}},"Indonesia_Eastern":{"long":{"standard":"Itä-Indonesian aika"}},"Indonesia_Western":{"long":{"standard":"Länsi-Indonesian aika"}},"Iran":{"long":{"generic":"Iranin aika","standard":"Iranin normaaliaika","daylight":"Iranin kesäaika"}},"Irkutsk":{"long":{"generic":"Irkutskin aika","standard":"Irkutskin normaaliaika","daylight":"Irkutskin kesäaika"}},"Israel":{"long":{"generic":"Israelin aika","standard":"Israelin normaaliaika","daylight":"Israelin kesäaika"}},"Japan":{"long":{"generic":"Japanin aika","standard":"Japanin normaaliaika","daylight":"Japanin kesäaika"}},"Kamchatka":{"long":{"generic":"Kamtšatkan aika","standard":"Kamtšatkan normaaliaika","daylight":"Kamtšatkan kesäaika"}},"Kazakhstan_Eastern":{"long":{"standard":"Itä-Kazakstanin aika"}},"Kazakhstan_Western":{"long":{"standard":"Länsi-Kazakstanin aika"}},"Korea":{"long":{"generic":"Korean aika","standard":"Korean normaaliaika","daylight":"Korean kesäaika"}},"Kosrae":{"long":{"standard":"Kosraen aika"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarskin aika","standard":"Krasnojarskin normaaliaika","daylight":"Krasnojarskin kesäaika"}},"Kyrgystan":{"long":{"standard":"Kirgisian aika"}},"Lanka":{"long":{"standard":"Sri Lankan aika"}},"Line_Islands":{"long":{"standard":"Linesaarten aika"}},"Lord_Howe":{"long":{"generic":"Lord Howen aika","standard":"Lord Howen normaaliaika","daylight":"Lord Howen kesäaika"}},"Macau":{"long":{"generic":"Macaon aika","standard":"Macaon normaaliaika","daylight":"Macaon kesäaika"}},"Macquarie":{"long":{"standard":"Macquariensaaren aika"}},"Magadan":{"long":{"generic":"Magadanin aika","standard":"Magadanin normaaliaika","daylight":"Magadanin kesäaika"}},"Malaysia":{"long":{"standard":"Malesian aika"}},"Maldives":{"long":{"standard":"Malediivien aika"}},"Marquesas":{"long":{"standard":"Marquesasin aika"}},"Marshall_Islands":{"long":{"standard":"Marshallinsaarten aika"}},"Mauritius":{"long":{"generic":"Mauritiuksen aika","standard":"Mauritiuksen normaaliaika","daylight":"Mauritiuksen kesäaika"}},"Mawson":{"long":{"standard":"Mawsonin aika"}},"Mexico_Northwest":{"long":{"generic":"Luoteis-Meksikon aika","standard":"Luoteis-Meksikon normaaliaika","daylight":"Luoteis-Meksikon kesäaika"}},"Mexico_Pacific":{"long":{"generic":"Meksikon Tyynenmeren aika","standard":"Meksikon Tyynenmeren normaaliaika","daylight":"Meksikon Tyynenmeren kesäaika"}},"Mongolia":{"long":{"generic":"Ulan Batorin aika","standard":"Ulan Batorin normaaliaika","daylight":"Ulan Batorin kesäaika"}},"Moscow":{"long":{"generic":"Moskovan aika","standard":"Moskovan normaaliaika","daylight":"Moskovan kesäaika"}},"Myanmar":{"long":{"standard":"Myanmarin aika"}},"Nauru":{"long":{"standard":"Naurun aika"}},"Nepal":{"long":{"standard":"Nepalin aika"}},"New_Caledonia":{"long":{"generic":"Uuden-Kaledonian aika","standard":"Uuden-Kaledonian normaaliaika","daylight":"Uuden-Kaledonian kesäaika"}},"New_Zealand":{"long":{"generic":"Uuden-Seelannin aika","standard":"Uuden-Seelannin normaaliaika","daylight":"Uuden-Seelannin kesäaika"}},"Newfoundland":{"long":{"generic":"Newfoundlandin aika","standard":"Newfoundlandin normaaliaika","daylight":"Newfoundlandin kesäaika"}},"Niue":{"long":{"standard":"Niuen aika"}},"Norfolk":{"long":{"standard":"Norfolkinsaarten aika"}},"Noronha":{"long":{"generic":"Fernando de Noronhan aika","standard":"Fernando de Noronhan normaaliaika","daylight":"Fernando de Noronhan kesäaika"}},"North_Mariana":{"long":{"standard":"Pohjois-Mariaanien aika"}},"Novosibirsk":{"long":{"generic":"Novosibirskin aika","standard":"Novosibirskin normaaliaika","daylight":"Novosibirskin kesäaika"}},"Omsk":{"long":{"generic":"Omskin aika","standard":"Omskin normaaliaika","daylight":"Omskin kesäaika"}},"Pakistan":{"long":{"generic":"Pakistanin aika","standard":"Pakistanin normaaliaika","daylight":"Pakistanin kesäaika"}},"Palau":{"long":{"standard":"Palaun aika"}},"Papua_New_Guinea":{"long":{"standard":"Papua-Uuden-Guinean aika"}},"Paraguay":{"long":{"generic":"Paraguayn aika","standard":"Paraguayn normaaliaika","daylight":"Paraguayn kesäaika"}},"Peru":{"long":{"generic":"Perun aika","standard":"Perun normaaliaika","daylight":"Perun kesäaika"}},"Philippines":{"long":{"generic":"Filippiinien aika","standard":"Filippiinien normaaliaika","daylight":"Filippiinien kesäaika"}},"Phoenix_Islands":{"long":{"standard":"Phoenixsaarten aika"}},"Pierre_Miquelon":{"long":{"generic":"Saint-Pierren ja Miquelonin aika","standard":"Saint-Pierren ja Miquelonin normaaliaika","daylight":"Saint-Pierren ja Miquelonin kesäaika"}},"Pitcairn":{"long":{"standard":"Pitcairnin aika"}},"Ponape":{"long":{"standard":"Pohnpein aika"}},"Qyzylorda":{"long":{"generic":"Qızılordan aika","standard":"Qızılordan normaaliaika","daylight":"Qızılordan kesäaika"}},"Reunion":{"long":{"standard":"Réunionin aika"}},"Rothera":{"long":{"standard":"Rotheran aika"}},"Sakhalin":{"long":{"generic":"Sahalinin aika","standard":"Sahalinin normaaliaika","daylight":"Sahalinin kesäaika"}},"Samara":{"long":{"generic":"Samaran aika","standard":"Samaran normaaliaika","daylight":"Samaran kesäaika"}},"Samoa":{"long":{"generic":"Samoan aika","standard":"Samoan normaaliaika","daylight":"Samoan kesäaika"}},"Seychelles":{"long":{"standard":"Seychellien aika"}},"Singapore":{"long":{"standard":"Singaporen aika"}},"Solomon":{"long":{"standard":"Salomonsaarten aika"}},"South_Georgia":{"long":{"standard":"Etelä-Georgian aika"}},"Suriname":{"long":{"standard":"Surinamin aika"}},"Syowa":{"long":{"standard":"Syowan aika"}},"Tahiti":{"long":{"standard":"Tahitin aika"}},"Taipei":{"long":{"generic":"Taipein aika","standard":"Taipein normaaliaika","daylight":"Taipein kesäaika"}},"Tajikistan":{"long":{"standard":"Tadžikistanin aika"}},"Tokelau":{"long":{"standard":"Tokelaun aika"}},"Tonga":{"long":{"generic":"Tongan aika","standard":"Tongan normaaliaika","daylight":"Tongan kesäaika"}},"Truk":{"long":{"standard":"Chuukin aika"}},"Turkmenistan":{"long":{"generic":"Turkmenistanin aika","standard":"Turkmenistanin normaaliaika","daylight":"Turkmenistanin kesäaika"}},"Tuvalu":{"long":{"standard":"Tuvalun aika"}},"Uruguay":{"long":{"generic":"Uruguayn aika","standard":"Uruguayn normaaliaika","daylight":"Uruguayn kesäaika"}},"Uzbekistan":{"long":{"generic":"Uzbekistanin aika","standard":"Uzbekistanin normaaliaika","daylight":"Uzbekistanin kesäaika"}},"Vanuatu":{"long":{"generic":"Vanuatun aika","standard":"Vanuatun normaaliaika","daylight":"Vanuatun kesäaika"}},"Venezuela":{"long":{"standard":"Venezuelan aika"}},"Vladivostok":{"long":{"generic":"Vladivostokin aika","standard":"Vladivostokin normaaliaika","daylight":"Vladivostokin kesäaika"}},"Volgograd":{"long":{"generic":"Volgogradin aika","standard":"Volgogradin normaaliaika","daylight":"Volgogradin kesäaika"}},"Vostok":{"long":{"standard":"Vostokin aika"}},"Wake":{"long":{"standard":"Waken aika"}},"Wallis":{"long":{"standard":"Wallisin ja Futunan aika"}},"Yakutsk":{"long":{"generic":"Jakutskin aika","standard":"Jakutskin normaaliaika","daylight":"Jakutskin kesäaika"}},"Yekaterinburg":{"long":{"generic":"Jekaterinburgin aika","standard":"Jekaterinburgin normaaliaika","daylight":"Jekaterinburgin kesäaika"}}}} \ No newline at end of file diff --git a/Punic/data/fi/units.json b/Punic/data/fi/units.json new file mode 100644 index 0000000..0c49f9a --- /dev/null +++ b/Punic/data/fi/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G-voimat","one":"%1$s G-voima","other":"%1$s G-voimaa"},"meter-per-second-squared":{"_name":"metrit per sekunti toiseen","one":"%1$s metri per sekunti toiseen","other":"%1$s metriä per sekunti toiseen"}},"angle":{"arc-minute":{"_name":"kulmaminuutit","one":"%1$s kulmaminuutti","other":"%1$s kulmaminuuttia"},"arc-second":{"_name":"kulmasekunnit","one":"%1$s kulmasekunti","other":"%1$s kulmasekuntia"},"degree":{"_name":"asteet","one":"%1$s aste","other":"%1$s astetta"},"radian":{"_name":"radiaanit","one":"%1$s radiaani","other":"%1$s radiaania"}},"area":{"acre":{"_name":"eekkerit","one":"%1$s eekkeri","other":"%1$s eekkeriä"},"hectare":{"_name":"hehtaarit","one":"%1$s hehtaari","other":"%1$s hehtaaria"},"square-centimeter":{"_name":"neliösenttimetrit","one":"%1$s neliösenttimetri","other":"%1$s neliösenttimetriä"},"square-foot":{"_name":"neliöjalat","one":"%1$s neliöjalka","other":"%1$s neliöjalkaa"},"square-inch":{"_name":"neliötuumat","one":"%1$s neliötuuma","other":"%1$s neliötuumaa"},"square-kilometer":{"_name":"neliökilometrit","one":"%1$s neliökilometri","other":"%1$s neliökilometriä"},"square-meter":{"_name":"neliömetrit","one":"%1$s neliömetri","other":"%1$s neliömetriä"},"square-mile":{"_name":"neliömailit","one":"%1$s neliömaili","other":"%1$s neliömailia"},"square-yard":{"_name":"neliöjaardit","one":"%1$s neliöjaardi","other":"%1$s neliöjaardia"}},"consumption":{"liter-per-kilometer":{"_name":"litrat per kilometri","one":"%1$s litra per kilometri","other":"%1$s litraa per kilometri"},"mile-per-gallon":{"_name":"mailit per gallona","one":"%1$s maili per gallona","other":"%1$s mailia per gallona"}},"digital":{"bit":{"_name":"bitit","one":"%1$s bitti","other":"%1$s bittiä"},"byte":{"_name":"tavut","one":"%1$s tavu","other":"%1$s tavua"},"gigabit":{"_name":"gigabitit","one":"%1$s gigabitti","other":"%1$s gigabittiä"},"gigabyte":{"_name":"gigatavut","one":"%1$s gigatavu","other":"%1$s gigatavua"},"kilobit":{"_name":"kilobitit","one":"%1$s kilobitti","other":"%1$s kilobittiä"},"kilobyte":{"_name":"kilotavut","one":"%1$s kilotavu","other":"%1$s kilotavua"},"megabit":{"_name":"megabitit","one":"%1$s megabitti","other":"%1$s megabittiä"},"megabyte":{"_name":"megatavut","one":"%1$s megatavu","other":"%1$s megatavua"},"terabit":{"_name":"terabitit","one":"%1$s terabitti","other":"%1$s terabittiä"},"terabyte":{"_name":"teratavut","one":"%1$s teratavu","other":"%1$s teratavua"}},"duration":{"day":{"_name":"päivät","one":"%1$s päivä","other":"%1$s päivää"},"hour":{"_name":"tunnit","one":"%1$s tunti","other":"%1$s tuntia","_per":"%1$s tunnissa"},"microsecond":{"_name":"mikrosekunnit","one":"%1$s mikrosekunti","other":"%1$s mikrosekuntia"},"millisecond":{"_name":"millisekunnit","one":"%1$s millisekunti","other":"%1$s millisekuntia"},"minute":{"_name":"minuutit","one":"%1$s minuutti","other":"%1$s minuuttia"},"month":{"_name":"kuukaudet","one":"%1$s kuukausi","other":"%1$s kuukautta"},"nanosecond":{"_name":"nanosekunnit","one":"%1$s nanosekunti","other":"%1$s nanosekuntia"},"second":{"_name":"sekunnit","one":"%1$s sekunti","other":"%1$s sekuntia","_per":"%1$s sekunnissa"},"week":{"_name":"viikot","one":"%1$s viikko","other":"%1$s viikkoa"},"year":{"_name":"vuodet","one":"%1$s vuosi","other":"%1$s vuotta"}},"electric":{"ampere":{"_name":"ampeerit","one":"%1$s ampeeri","other":"%1$s ampeeria"},"milliampere":{"_name":"milliampeerit","one":"%1$s milliampeeri","other":"%1$s milliampeeria"},"ohm":{"_name":"ohmit","one":"%1$s ohmi","other":"%1$s ohmia"},"volt":{"_name":"voltit","one":"%1$s voltti","other":"%1$s volttia"}},"energy":{"calorie":{"_name":"kalorit","one":"%1$s kalori","other":"%1$s kaloria"},"foodcalorie":{"_name":"kilokalorit","one":"%1$s kilokalori","other":"%1$s kilokaloria"},"joule":{"_name":"joulet","one":"%1$s joule","other":"%1$s joulea"},"kilocalorie":{"_name":"kilokalorit","one":"%1$s kilokalori","other":"%1$s kilokaloria"},"kilojoule":{"_name":"kilojoulet","one":"%1$s kilojoule","other":"%1$s kilojoulea"},"kilowatt-hour":{"_name":"kilowattitunnit","one":"%1$s kilowattitunti","other":"%1$s kilowattituntia"}},"frequency":{"gigahertz":{"_name":"gigahertsit","one":"%1$s gigahertsi","other":"%1$s gigahertsiä"},"hertz":{"_name":"hertsit","one":"%1$s hertsi","other":"%1$s hertsiä"},"kilohertz":{"_name":"kilohertsit","one":"%1$s kilohertsi","other":"%1$s kilohertsiä"},"megahertz":{"_name":"megahertsit","one":"%1$s megahertsi","other":"%1$s megahertsiä"}},"length":{"astronomical-unit":{"_name":"astronomiset yksiköt","one":"%1$s astronominen yksikkö","other":"%1$s astronomista yksikköä"},"centimeter":{"_name":"senttimetrit","one":"%1$s senttimetri","other":"%1$s senttimetriä"},"decimeter":{"_name":"desimetrit","one":"%1$s desimetri","other":"%1$s desimetriä"},"fathom":{"_name":"sylet","one":"syli","other":"%1$s syltä"},"foot":{"_name":"jalat","one":"%1$s jalka","other":"%1$s jalkaa"},"furlong":{"_name":"furlongit","one":"%1$s furlong","other":"%1$s furlongia"},"inch":{"_name":"tuumat","one":"%1$s tuuma","other":"%1$s tuumaa"},"kilometer":{"_name":"kilometrit","one":"%1$s kilometri","other":"%1$s kilometriä"},"light-year":{"_name":"valovuodet","one":"%1$s valovuosi","other":"%1$s valovuotta"},"meter":{"_name":"metrit","one":"%1$s metri","other":"%1$s metriä"},"micrometer":{"_name":"mikrometrit","one":"%1$s mikrometri","other":"%1$s mikrometriä"},"mile":{"_name":"mailit","one":"%1$s maili","other":"%1$s mailia"},"millimeter":{"_name":"millimetrit","one":"%1$s millimetri","other":"%1$s millimetriä"},"nanometer":{"_name":"nanometrit","one":"%1$s nanometri","other":"%1$s nanometriä"},"nautical-mile":{"_name":"meripeninkulmat","one":"%1$s meripeninkulma","other":"%1$s meripeninkulmaa"},"parsec":{"_name":"parsekit","one":"%1$s parsek","other":"%1$s parsekia"},"picometer":{"_name":"pikometrit","one":"%1$s pikometri","other":"%1$s pikometriä"},"yard":{"_name":"jaardit","one":"%1$s jaardi","other":"%1$s jaardia"}},"light":{"lux":{"_name":"luksit","one":"%1$s luksi","other":"%1$s luksia"}},"mass":{"carat":{"_name":"karaatit","one":"%1$s karaatti","other":"%1$s karaattia"},"gram":{"_name":"grammat","one":"%1$s gramma","other":"%1$s grammaa"},"kilogram":{"_name":"kilogrammat","one":"%1$s kilogramma","other":"%1$s kilogrammaa"},"metric-ton":{"_name":"tonnit","one":"%1$s tonni","other":"%1$s tonnia"},"microgram":{"_name":"mikrogrammat","one":"%1$s mikrogramma","other":"%1$s mikrogrammaa"},"milligram":{"_name":"milligrammat","one":"%1$s milligramma","other":"%1$s milligrammaa"},"ounce":{"_name":"unssit","one":"%1$s unssi","other":"%1$s unssia"},"ounce-troy":{"_name":"troy-unssit","one":"%1$s troy-unssi","other":"%1$s troy-unssia"},"pound":{"_name":"paunat","one":"%1$s pauna","other":"%1$s paunaa"},"stone":{"_name":"stonet","one":"%1$s stone","other":"%1$s stonea"},"ton":{"_name":"US-tonnit","one":"%1$s US-tonni","other":"%1$s US-tonnia"}},"power":{"gigawatt":{"_name":"gigawatit","one":"%1$s gigawatti","other":"%1$s gigawattia"},"horsepower":{"_name":"hevosvoimat","one":"%1$s hevosvoima","other":"%1$s hevosvoimaa"},"kilowatt":{"_name":"kilowatit","one":"%1$s kilowatti","other":"%1$s kilowattia"},"megawatt":{"_name":"megawatit","one":"%1$s megawatti","other":"%1$s megawattia"},"milliwatt":{"_name":"milliwatit","one":"%1$s milliwatti","other":"%1$s milliwattia"},"watt":{"_name":"watit","one":"%1$s watti","other":"%1$s wattia"}},"pressure":{"hectopascal":{"_name":"hehtopascalit","one":"%1$s hehtopascal","other":"%1$s hehtopascalia"},"inch-hg":{"_name":"elohopeatuumat","one":"%1$s tuuma elohopeaa","other":"%1$s tuumaa elohopeaa"},"millibar":{"_name":"millibaarit","one":"%1$s millibaari","other":"%1$s millibaaria"},"millimeter-of-mercury":{"_name":"elohopeamillimetrit","one":"%1$s millimetri elohopeaa","other":"%1$s millimetriä elohopeaa"},"pound-per-square-inch":{"_name":"paunat neliötuumaa kohti","one":"%1$s pauna neliötuumaa kohti","other":"%1$s paunaa neliötuumaa kohti"}},"proportion":{"karat":{"_name":"karaatit","one":"%1$s karaatti","other":"%1$s karaattia"}},"speed":{"kilometer-per-hour":{"_name":"kilometrit tunnissa","one":"%1$s kilometri tunnissa","other":"%1$s kilometriä tunnissa"},"meter-per-second":{"_name":"metrit sekunnissa","one":"%1$s metri sekunnissa","other":"%1$s metriä sekunnissa"},"mile-per-hour":{"_name":"mailit tunnissa","one":"%1$s maili tunnissa","other":"%1$s mailia tunnissa"}},"temperature":{"celsius":{"_name":"celsiusasteet","one":"%1$s celsiusaste","other":"%1$s celsiusastetta"},"fahrenheit":{"_name":"fahrenheitasteet","one":"%1$s fahrenheitaste","other":"%1$s fahrenheitastetta"},"kelvin":{"_name":"kelvinit","one":"%1$s kelvin","other":"%1$s kelviniä"}},"volume":{"acre-foot":{"_name":"eekkerijalat","one":"%1$s eekkerijalka","other":"%1$s eekkerijalkaa"},"bushel":{"_name":"bushelit","one":"%1$s busheli","other":"%1$s bushelia"},"centiliter":{"_name":"senttilitrat","one":"%1$s senttilitra","other":"%1$s senttilitraa"},"cubic-centimeter":{"_name":"kuutiosenttimetrit","one":"%1$s kuutiosenttimetri","other":"%1$s kuutiosenttimetriä"},"cubic-foot":{"_name":"kuutiojalat","one":"%1$s kuutiojalka","other":"%1$s kuutiojalkaa"},"cubic-inch":{"_name":"kuutiotuumat","one":"%1$s kuutiotuuma","other":"%1$s kuutiotuumaa"},"cubic-kilometer":{"_name":"kuutiokilometrit","one":"%1$s kuutiokilometri","other":"%1$s kuutiokilometriä"},"cubic-meter":{"_name":"kuutiometrit","one":"%1$s kuutiometri","other":"%1$s kuutiometriä"},"cubic-mile":{"_name":"kuutiomailit","one":"%1$s kuutiomaili","other":"%1$s kuutiomailia"},"cubic-yard":{"_name":"kuutiojaardit","one":"%1$s kuutiojaardi","other":"%1$s kuutiojaardia"},"cup":{"_name":"kupit","one":"%1$s kuppi","other":"%1$s kuppia"},"deciliter":{"_name":"desilitrat","one":"%1$s desilitra","other":"%1$s desilitraa"},"fluid-ounce":{"_name":"nesteunssit","one":"%1$s nesteunssi","other":"%1$s nesteunssia"},"gallon":{"_name":"gallonat","one":"%1$s gallona","other":"%1$s gallonaa"},"hectoliter":{"_name":"hehtolitrat","one":"%1$s hehtolitra","other":"%1$s hehtolitraa"},"liter":{"_name":"litrat","one":"%1$s litra","other":"%1$s litraa"},"megaliter":{"_name":"megalitrat","one":"%1$s megalitra","other":"%1$s megalitraa"},"milliliter":{"_name":"millilitrat","one":"%1$s millilitra","other":"%1$s millilitraa"},"pint":{"_name":"pintit","one":"%1$s pint","other":"%1$s pinttiä"},"quart":{"_name":"neljännesgallonat","one":"%1$s neljännesgallona","other":"%1$s neljännesgallonaa"},"tablespoon":{"_name":"ruokalusikat","one":"%1$s ruokalusikka","other":"%1$s ruokalusikkaa"},"teaspoon":{"_name":"teelusikat","one":"%1$s teelusikka","other":"%1$s teelusikkaa"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"b","one":"%1$s b","other":"%1$s b"},"byte":{"_name":"t","one":"%1$s t","other":"%1$s t"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"Gt","one":"%1$s Gt","other":"%1$s Gt"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kt","one":"%1$s kt","other":"%1$s kt"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"Mt","one":"%1$s Mt","other":"%1$s Mt"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"Tt","one":"%1$s Tt","other":"%1$s Tt"}},"duration":{"day":{"_name":"pv","one":"%1$s pv","other":"%1$s pv"},"hour":{"_name":"t","one":"%1$s t","other":"%1$s t","_per":"%1$s/t"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"kk","one":"%1$s kk","other":"%1$s kk"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sek","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"vk","one":"%1$s vk","other":"%1$s vk"},"year":{"_name":"v","one":"%1$s v","other":"%1$s v"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"vv","one":"%1$s vv","other":"%1$s vv"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"mpk","one":"%1$s mpk","other":"%1$s mpk"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ka","one":"%1$s ka","other":"%1$s ka"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"US-tn","one":"%1$s US-tn","other":"%1$s US-tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hv","one":"%1$s hv","other":"%1$s hv"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"ka","one":"%1$s ka","other":"%1$s ka"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"kp","one":"%1$s kp","other":"%1$s kp"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"rkl","one":"%1$s rkl","other":"%1$s rkl"},"teaspoon":{"_name":"tl","one":"%1$s tl","other":"%1$s tl"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"ac","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"ha","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$sin²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$syd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$sl/km","other":"%1$sl/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$smpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"b","one":"%1$sb","other":"%1$sb"},"byte":{"_name":"t","one":"%1$st","other":"%1$st"},"gigabit":{"_name":"Gb","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"Gt","one":"%1$sGt","other":"%1$sGt"},"kilobit":{"_name":"kb","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kt","one":"%1$skt","other":"%1$skt"},"megabit":{"_name":"Mb","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"Mt","one":"%1$sMt","other":"%1$sMt"},"terabit":{"_name":"Tb","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"Tt","one":"%1$sTt","other":"%1$sTt"}},"duration":{"day":{"_name":"pv","one":"%1$spv","other":"%1$spv"},"hour":{"_name":"t","one":"%1$st","other":"%1$st","_per":"%1$s/t"},"microsecond":{"_name":"μs","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"ms","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$smin","other":"%1$smin"},"month":{"_name":"kk","one":"%1$skk","other":"%1$skk"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"s","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"vk","one":"%1$svk","other":"%1$svk"},"year":{"_name":"v","one":"%1$sv","other":"%1$sv"}},"electric":{"ampere":{"_name":"A","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"Ω","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"V","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$scal","other":"%1$scal"},"foodcalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"joule":{"_name":"J","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$skcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$sau","other":"%1$sau"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fm","one":"%1$sfm","other":"%1$sfm"},"foot":{"_name":"ft","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","one":"%1$sfur","other":"%1$sfur"},"inch":{"_name":"in","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"vv","one":"%1$svv","other":"%1$svv"},"meter":{"_name":"m","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"mpk","one":"%1$smpk","other":"%1$smpk"},"parsec":{"_name":"pc","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lx","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"ka","one":"%1$ska","other":"%1$ska"},"gram":{"_name":"g","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sμg","other":"%1$sμg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"st","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"US-tn","one":"%1$sUS-tn","other":"%1$sUS-tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hv","one":"%1$shv","other":"%1$shv"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sGW","other":"%1$sGW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"W","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","one":"%1$s″ Hg","other":"%1$s″ Hg"},"millibar":{"_name":"mbar","one":"%1$smbar","other":"%1$smbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$spsi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"ka","one":"%1$ska","other":"%1$ska"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$skm/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$smi/h","other":"%1$smi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$sac ft","other":"%1$sac ft"},"bushel":{"_name":"bu","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cl","one":"%1$scl","other":"%1$scl"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","one":"%1$sft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","one":"%1$sin³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"kp","one":"%1$skp","other":"%1$skp"},"deciliter":{"_name":"dl","one":"%1$sdl","other":"%1$sdl"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hl","one":"%1$shl","other":"%1$shl"},"liter":{"_name":"l","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"Ml","one":"%1$sMl","other":"%1$sMl"},"milliliter":{"_name":"ml","one":"%1$sml","other":"%1$sml"},"pint":{"_name":"pt","one":"%1$spt","other":"%1$spt"},"quart":{"_name":"qt","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"rkl","one":"%1$srkl","other":"%1$srkl"},"teaspoon":{"_name":"tl","one":"%1$stl","other":"%1$stl"}}},"_durationPattern":{"hm":"h.mm","hms":"h.mm.ss","ms":"m.ss"}} \ No newline at end of file diff --git a/Punic/data/fr/calendar.json b/Punic/data/fr/calendar.json new file mode 100644 index 0000000..211a743 --- /dev/null +++ b/Punic/data/fr/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"janv.","2":"févr.","3":"mars","4":"avr.","5":"mai","6":"juin","7":"juil.","8":"août","9":"sept.","10":"oct.","11":"nov.","12":"déc."},"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":"janvier","2":"février","3":"mars","4":"avril","5":"mai","6":"juin","7":"juillet","8":"août","9":"septembre","10":"octobre","11":"novembre","12":"décembre"}},"stand-alone":{"abbreviated":{"1":"Janv.","2":"Févr.","3":"Mars","4":"Avr.","5":"Mai","6":"Juin","7":"Juil.","8":"Août","9":"Sept.","10":"Oct.","11":"Nov.","12":"Déc."},"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":"Janvier","2":"Février","3":"Mars","4":"Avril","5":"Mai","6":"Juin","7":"Juillet","8":"Août","9":"Septembre","10":"Octobre","11":"Novembre","12":"Décembre"}}},"days":{"format":{"abbreviated":{"sun":"dim.","mon":"lun.","tue":"mar.","wed":"mer.","thu":"jeu.","fri":"ven.","sat":"sam."},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"J","fri":"V","sat":"S"},"short":{"sun":"di","mon":"lu","tue":"ma","wed":"me","thu":"je","fri":"ve","sat":"sa"},"wide":{"sun":"dimanche","mon":"lundi","tue":"mardi","wed":"mercredi","thu":"jeudi","fri":"vendredi","sat":"samedi"}},"stand-alone":{"abbreviated":{"sun":"Dim.","mon":"Lun.","tue":"Mar.","wed":"Mer.","thu":"Jeu.","fri":"Ven.","sat":"Sam."},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"J","fri":"V","sat":"S"},"short":{"sun":"Di","mon":"Lu","tue":"Ma","wed":"Me","thu":"Je","fri":"Ve","sat":"Sa"},"wide":{"sun":"Dimanche","mon":"Lundi","tue":"Mardi","wed":"Mercredi","thu":"Jeudi","fri":"Vendredi","sat":"Samedi"}}},"quarters":{"format":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1er trimestre","2":"2e trimestre","3":"3e trimestre","4":"4e trimestre"}},"stand-alone":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1er trimestre","2":"2e trimestre","3":"3e trimestre","4":"4e trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"ap.m.","am":"AM","morning":"matin","night":"soir","noon":"midi","pm":"PM"},"narrow":{"afternoon":"ap.-m.","am":"AM","morning":"matin","night":"soir","noon":"midi","pm":"p"},"wide":{"afternoon":"après-midi","am":"AM","morning":"matin","night":"soir","noon":"midi","pm":"PM"}},"stand-alone":{"abbreviated":{"afternoon":"ap.m.","am":"av.m.","morning":"matin","night":"soir","noon":"midi","pm":"ap.m."},"narrow":{"afternoon":"ap.-m.","am":"AM","morning":"matin","night":"soir","noon":"midi","pm":"p"},"wide":{"afternoon":"après-midi","am":"avant-midi","morning":"matin","night":"soir","noon":"midi","pm":"après-midi"}}},"eras":{"wide":{"0":"avant Jésus-Christ","0-alt-variant":"AEC","1":"après Jésus-Christ","1-alt-variant":"EC"},"abbreviated":{"0":"av. J.-C.","0-alt-variant":"AEC","1":"ap. J.-C.","1-alt-variant":"EC"},"narrow":{"0":"av. J.-C.","0-alt-variant":"AEC","1":"ap. J.-C.","1-alt-variant":"EC"}},"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd/MM/y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/fr/dateFields.json b/Punic/data/fr/dateFields.json new file mode 100644 index 0000000..c029b4c --- /dev/null +++ b/Punic/data/fr/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"ère"},"year":{"displayName":"année","relative-type--1":"l’année dernière","relative-type-0":"cette année","relative-type-1":"l’année prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} an","relativeTimePattern-count-other":"dans {0} ans"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} an","relativeTimePattern-count-other":"il y a {0} ans"}},"year-short":{"displayName":"a","relative-type--1":"l’année dernière","relative-type-0":"cette année","relative-type-1":"l’année prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} a","relativeTimePattern-count-other":"dans {0} a"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} a","relativeTimePattern-count-other":"il y a {0} a"}},"year-narrow":{"displayName":"a","relative-type--1":"l’année dernière","relative-type-0":"cette année","relative-type-1":"l’année prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} a","relativeTimePattern-count-other":"+{0} a"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} a","relativeTimePattern-count-other":"-{0} a"}},"quarter":{"displayName":"trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} trimestre","relativeTimePattern-count-other":"dans {0} trimestres"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} trimestre","relativeTimePattern-count-other":"il y a {0} trimestres"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} trim.","relativeTimePattern-count-other":"dans {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} trim.","relativeTimePattern-count-other":"il y a {0} trim."}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} trim.","relativeTimePattern-count-other":"+{0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} trim.","relativeTimePattern-count-other":"-{0} trim."}},"month":{"displayName":"mois","relative-type--1":"le mois dernier","relative-type-0":"ce mois-ci","relative-type-1":"le mois prochain","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} mois","relativeTimePattern-count-other":"dans {0} mois"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} mois","relativeTimePattern-count-other":"il y a {0} mois"}},"month-short":{"displayName":"m.","relative-type--1":"le mois dernier","relative-type-0":"ce mois-ci","relative-type-1":"le mois prochain","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} m.","relativeTimePattern-count-other":"dans {0} m."},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} m.","relativeTimePattern-count-other":"il y a {0} m."}},"month-narrow":{"displayName":"m","relative-type--1":"le mois dernier","relative-type-0":"ce mois-ci","relative-type-1":"le mois prochain","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m.","relativeTimePattern-count-other":"+{0} m."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m.","relativeTimePattern-count-other":"-{0} m."}},"week":{"displayName":"semaine","relative-type--1":"la semaine dernière","relative-type-0":"cette semaine","relative-type-1":"la semaine prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} semaine","relativeTimePattern-count-other":"dans {0} semaines"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} semaine","relativeTimePattern-count-other":"il y a {0} semaines"}},"week-short":{"displayName":"sem.","relative-type--1":"la semaine dernière","relative-type-0":"cette semaine","relative-type-1":"la semaine prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} sem.","relativeTimePattern-count-other":"dans {0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} sem.","relativeTimePattern-count-other":"il y a {0} sem."}},"week-narrow":{"displayName":"sem.","relative-type--1":"la semaine dernière","relative-type-0":"cette semaine","relative-type-1":"la semaine prochaine","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} sem.","relativeTimePattern-count-other":"+{0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} sem.","relativeTimePattern-count-other":"-{0} sem."}},"day":{"displayName":"jour","relative-type--1":"hier","relative-type--2":"avant-hier","relative-type-0":"aujourd’hui","relative-type-1":"demain","relative-type-2":"après-demain","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} jour","relativeTimePattern-count-other":"dans {0} jours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} jour","relativeTimePattern-count-other":"il y a {0} jours"}},"day-short":{"displayName":"j","relative-type--1":"hier","relative-type--2":"avant-hier","relative-type-0":"aujourd’hui","relative-type-1":"demain","relative-type-2":"après-demain","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} j","relativeTimePattern-count-other":"dans {0} j"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} j","relativeTimePattern-count-other":"il y a {0} j"}},"day-narrow":{"displayName":"j","relative-type--1":"hier","relative-type--2":"avant-hier","relative-type-0":"aujourd’hui","relative-type-1":"demain","relative-type-2":"après-demain","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} j","relativeTimePattern-count-other":"+{0} j"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} j","relativeTimePattern-count-other":"-{0} j"}},"weekday":{"displayName":"jour de la semaine"},"sun":{"relative-type--1":"dimanche dernier","relative-type-0":"ce dimanche","relative-type-1":"dimanche prochain"},"sun-short":{"relative-type--1":"dim. dernier","relative-type-0":"ce dim.","relative-type-1":"dim. prochain"},"sun-narrow":{"relative-type--1":"dim dernier","relative-type-0":"ce dim","relative-type-1":"dim prochain"},"mon":{"relative-type--1":"lundi dernier","relative-type-0":"ce lundi","relative-type-1":"lundi prochain"},"mon-short":{"relative-type--1":"lun. dernier","relative-type-0":"ce lun.","relative-type-1":"lun. prochain"},"mon-narrow":{"relative-type--1":"lun dernier","relative-type-0":"ce lun","relative-type-1":"lun prochain"},"tue":{"relative-type--1":"mardi dernier","relative-type-0":"ce mardi","relative-type-1":"mardi prochain"},"tue-short":{"relative-type--1":"mar. dernier","relative-type-0":"ce mar.","relative-type-1":"mar. prochain"},"tue-narrow":{"relative-type--1":"mar dernier","relative-type-0":"ce mar","relative-type-1":"mar prochain"},"wed":{"relative-type--1":"mercredi dernier","relative-type-0":"ce mercredi","relative-type-1":"mercredi prochain"},"wed-short":{"relative-type--1":"mer. dernier","relative-type-0":"ce mer.","relative-type-1":"mer. prochain"},"wed-narrow":{"relative-type--1":"mer dernier","relative-type-0":"ce mer","relative-type-1":"mer prochain"},"thu":{"relative-type--1":"jeudi dernier","relative-type-0":"ce jeudi","relative-type-1":"jeudi prochain"},"thu-short":{"relative-type--1":"jeu. dernier","relative-type-0":"ce jeu.","relative-type-1":"jeu. prochain"},"thu-narrow":{"relative-type--1":"jeu dernier","relative-type-0":"ce jeu","relative-type-1":"jeu prochain"},"fri":{"relative-type--1":"vendredi dernier","relative-type-0":"ce vendredi","relative-type-1":"vendredi prochain"},"fri-short":{"relative-type--1":"ven. dernier","relative-type-0":"ce ven.","relative-type-1":"ven. prochain"},"fri-narrow":{"relative-type--1":"ven dernier","relative-type-0":"ce ven","relative-type-1":"ven prochain"},"sat":{"relative-type--1":"samedi dernier","relative-type-0":"ce samedi","relative-type-1":"samedi prochain"},"sat-short":{"relative-type--1":"sam. dernier","relative-type-0":"ce sam.","relative-type-1":"sam. prochain"},"sat-narrow":{"relative-type--1":"sam dernier","relative-type-0":"ce sam","relative-type-1":"sam prochain"},"dayperiod":{"displayName":"cadran"},"hour":{"displayName":"heure","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} heure","relativeTimePattern-count-other":"dans {0} heures"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} heure","relativeTimePattern-count-other":"il y a {0} heures"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} h","relativeTimePattern-count-other":"dans {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} h","relativeTimePattern-count-other":"il y a {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"minute","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} minute","relativeTimePattern-count-other":"dans {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} minute","relativeTimePattern-count-other":"il y a {0} minutes"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} min","relativeTimePattern-count-other":"dans {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} min","relativeTimePattern-count-other":"il y a {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} min","relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} min","relativeTimePattern-count-other":"-{0} min"}},"second":{"displayName":"seconde","relative-type-0":"maintenant","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} seconde","relativeTimePattern-count-other":"dans {0} secondes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} seconde","relativeTimePattern-count-other":"il y a {0} secondes"}},"second-short":{"displayName":"s","relative-type-0":"maintenant","relativeTime-type-future":{"relativeTimePattern-count-one":"dans {0} s","relativeTimePattern-count-other":"dans {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"il y a {0} s","relativeTimePattern-count-other":"il y a {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"maintenant","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"fuseau horaire"}} \ No newline at end of file diff --git a/Punic/data/fr/languages.json b/Punic/data/fr/languages.json new file mode 100644 index 0000000..89cd504 --- /dev/null +++ b/Punic/data/fr/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abkhaze","ace":"aceh","ach":"acoli","ada":"adangme","ady":"adyghéen","ae":"avestique","aeb":"arabe tunisien","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"aïnou","ak":"akan","akk":"akkadien","akz":"alabama","ale":"aléoute","aln":"guègue","alt":"altaï du Sud","am":"amharique","an":"aragonais","ang":"ancien anglais","anp":"angika","ar":"arabe","ar-001":"arabe standard moderne","arc":"araméen","arn":"araukan","aro":"araona","arp":"arapaho","arq":"arabe algérien","arw":"arawak","ary":"arabe marocain","arz":"arabe égyptien","as":"assamais","asa":"assou","ase":"langue des signes américaine","ast":"asturien","av":"avar","avk":"kotava","awa":"awadhi","ay":"aymara","az":"azéri","az-alt-short":"azéri","azb":"azéri méridional","ba":"bachkir","bal":"baloutchi","ban":"balinais","bar":"bavarois","bas":"bassa","bax":"bamoun","bbc":"batak toba","bbj":"ghomala","be":"biélorusse","bej":"bedja","bem":"bemba","bew":"betawi","bez":"béna","bfd":"bafut","bfq":"badaga","bg":"bulgare","bho":"bhojpuri","bi":"bichelamar","bik":"bikol","bin":"bini","bjn":"banjar","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibétain","bpy":"bishnupriya","bqi":"bakhtiari","br":"breton","bra":"braj","brh":"brahoui","brx":"bodo","bs":"bosniaque","bss":"akoose","bua":"bouriate","bug":"bugi","bum":"boulou","byn":"blin","byv":"medumba","ca":"catalan","cad":"caddo","car":"caribe","cay":"cayuga","cch":"atsam","ce":"tchétchène","ceb":"cebuano","cgg":"kiga","ch":"chamorro","chb":"chibcha","chg":"tchaghataï","chk":"chuuk","chm":"mari","chn":"jargon chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheyenne","ckb":"sorani","co":"corse","cop":"copte","cps":"capiznon","cr":"cree","crh":"turc de Crimée","cs":"tchèque","csb":"kachoube","cu":"slavon d’église","cv":"tchouvache","cy":"gallois","da":"danois","dak":"dakota","dar":"dargwa","dav":"taita","de":"allemand","de-AT":"allemand autrichien","de-CH":"allemand suisse","del":"delaware","den":"slavey","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"bas-sorabe","dtp":"dusun central","dua":"douala","dum":"moyen néerlandais","dv":"maldivien","dyo":"diola-fogny","dyu":"dioula","dz":"dzongkha","dzg":"dazaga","ebu":"embou","ee":"éwé","efi":"efik","egl":"émilien","egy":"égyptien ancien","eka":"ekajuk","el":"grec","elx":"élamite","en":"anglais","en-AU":"anglais australien","en-CA":"anglais canadien","en-GB":"anglais britannique","en-GB-alt-short":"anglais (R.-U.)","en-US":"anglais américain","en-US-alt-short":"anglais (É.-U.)","enm":"moyen anglais","eo":"espéranto","es":"espagnol","es-419":"espagnol latino-américain","es-ES":"espagnol d’Europe","es-MX":"espagnol mexicain","esu":"youpik central","et":"estonien","eu":"basque","ewo":"éwondo","ext":"estrémègne","fa":"persan","fan":"fang","fat":"fanti","ff":"peul","fi":"finnois","fil":"filipino","fit":"finnois tornédalien","fj":"fidjien","fo":"féroïen","fon":"fon","fr":"français","fr-CA":"français canadien","fr-CH":"français suisse","frc":"français cadien","frm":"moyen français","fro":"ancien français","frp":"franco-provençal","frr":"frison du Nord","frs":"frison oriental","fur":"frioulan","fy":"frison occidental","ga":"irlandais","gaa":"ga","gag":"gagaouze","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"dari zoroastrien","gd":"gaélique écossais","gez":"guèze","gil":"gilbertais","gl":"galicien","glk":"gilaki","gmh":"moyen haut-allemand","gn":"guarani","goh":"ancien haut allemand","gom":"konkani de Goa","gon":"gondi","gor":"gorontalo","got":"gotique","grb":"grebo","grc":"grec ancien","gsw":"alémanique","gu":"gujarati","guc":"wayuu","gur":"gurenne","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"haoussa","hai":"haida","hak":"hakka","haw":"hawaïen","he":"hébreu","hi":"hindi","hif":"hindi fidjien","hil":"hiligaynon","hit":"hittite","hmn":"hmong","ho":"hiri motu","hr":"croate","hsb":"haut-sorabe","hsn":"xiang","ht":"haïtien","hu":"hongrois","hup":"hupa","hy":"arménien","hz":"héréro","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonésien","ie":"interlingue","ig":"igbo","ii":"yi du Sichuan","ik":"inupiaq","ilo":"ilokano","inh":"ingouche","io":"ido","is":"islandais","it":"italien","iu":"inuktitut","izh":"ingrien","ja":"japonais","jam":"créole anglais jamaïcain","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"judéo-persan","jrb":"judéo-arabe","jut":"jute","jv":"javanais","ka":"géorgien","kaa":"karakalpak","kab":"kabyle","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardin","kbl":"kanembou","kcg":"tyap","kde":"makonde","kea":"capverdien","ken":"kenyang","kfo":"koro","kg":"kongo","kgp":"caingangue","kha":"khasi","kho":"khotanais","khq":"koyra chiini","khw":"khowar","ki":"kikuyu","kiu":"kirmanjki","kj":"kuanyama","kk":"kazakh","kkj":"kako","kl":"groenlandais","kln":"kalenjin","km":"khmer","kmb":"kiMboundou","kn":"kannada","ko":"coréen","koi":"komi-permiak","kok":"konkani","kos":"kusaien","kpe":"kpellé","kr":"kanouri","krc":"karatchaï balkar","kri":"krio","krj":"kinaray-a","krl":"carélien","kru":"kurukh","ks":"kashmiri","ksb":"chambala","ksf":"bafia","ksh":"francique ripuaire","ku":"kurde","kum":"koumyk","kut":"kutenai","kv":"komi","kw":"cornique","ky":"kirghize","la":"latin","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxembourgeois","lez":"lezghien","lfn":"lingua franca nova","lg":"ganda","li":"limbourgeois","lij":"ligure","liv":"livonien","lkt":"lakota","lmo":"lombard","ln":"lingala","lo":"lao","lol":"mongo","loz":"lozi","lt":"lituanien","ltg":"latgalien","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"oluluyia","lv":"letton","lzh":"chinois littéraire","lzz":"laze","mad":"madurais","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makassar","man":"mandingue","mas":"masai","mde":"maba","mdf":"moksa","mdr":"mandar","men":"mendé","mer":"merou","mfe":"créole mauricien","mg":"malgache","mga":"moyen irlandais","mgh":"makhuwa-meetto","mgo":"méta’","mh":"marshall","mi":"maori","mic":"micmac","min":"minangkabau","mk":"macédonien","ml":"malayalam","mn":"mongol","mnc":"mandchou","mni":"manipuri","moh":"mohawk","mos":"moré","mr":"marathe","mrj":"mari occidental","ms":"malais","mt":"maltais","mua":"mundang","mul":"multilingue","mus":"creek","mwl":"mirandais","mwr":"marwarî","mwv":"mentawaï","my":"birman","mye":"myènè","myv":"erzya","mzn":"mazandérani","na":"nauruan","nan":"minnan","nap":"napolitain","naq":"nama","nb":"norvégien bokmål","nd":"ndébélé du Nord","nds":"bas-allemand","ne":"népalais","new":"newari","ng":"ndonga","nia":"nias","niu":"niué","njo":"ao naga","nl":"néerlandais","nl-BE":"flamand","nmg":"kwasio","nn":"norvégien nynorsk","nnh":"ngiemboon","no":"norvégien","nog":"nogaï","non":"vieux norrois","nov":"novial","nqo":"n’ko","nr":"ndébélé du Sud","nso":"sotho du Nord","nus":"nuer","nv":"navaho","nwc":"newarî classique","ny":"nyanja","nym":"nyamwezi","nyn":"nyankolé","nyo":"nyoro","nzi":"nzema","oc":"occitan","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossète","osa":"osage","ota":"turc ottoman","pa":"pendjabi","pag":"pangasinan","pal":"pahlavi","pam":"pampangan","pap":"papiamento","pau":"palau","pcd":"picard","pdc":"allemand de Pennsylvanie","pdt":"bas-prussien","peo":"persan ancien","pfl":"allemand palatin","phn":"phénicien","pi":"pali","pl":"polonais","pms":"piémontais","pnt":"pontique","pon":"pohnpei","prg":"prussien","pro":"provençal ancien","ps":"pachto","ps-alt-variant":"pashto","pt":"portugais","pt-BR":"portugais brésilien","pt-PT":"portugais d’Europe","qu":"quechua","quc":"k’iche’","qug":"quichua du Haut-Chimborazo","raj":"rajasthani","rap":"rapanui","rar":"rarotongien","rgn":"romagnol","rif":"riffain","rm":"romanche","rn":"roundi","ro":"roumain","ro-MD":"moldave","rof":"rombo","rom":"tzigane","root":"racine","rtm":"rotuman","ru":"russe","rue":"ruthène","rug":"roviana","rup":"valaque","rw":"rwanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"iakoute","sam":"araméen samaritain","saq":"samburu","sas":"sasak","sat":"santal","saz":"saurashtra","sba":"ngambay","sbp":"sangu","sc":"sarde","scn":"sicilien","sco":"écossais","sd":"sindhi","sdc":"sarde sassarais","se":"sami du Nord","see":"seneca","seh":"sena","sei":"séri","sel":"selkoupe","ses":"koyraboro senni","sg":"sangho","sga":"ancien irlandais","sgs":"samogitien","sh":"serbo-croate","shi":"chleuh","shn":"shan","shu":"arabe tchadien","si":"cinghalais","sid":"sidamo","sk":"slovaque","sl":"slovène","sli":"bas-silésien","sly":"selayar","sm":"samoan","sma":"sami du Sud","smj":"sami de Lule","smn":"sami d’Inari","sms":"sami skolt","sn":"shona","snk":"soninké","so":"somali","sog":"sogdien","sq":"albanais","sr":"serbe","srn":"sranan tongo","srr":"sérère","ss":"swati","ssy":"saho","st":"sesotho","stq":"frison de Saterland","su":"soundanais","suk":"sukuma","sus":"soussou","sux":"sumérien","sv":"suédois","sw":"swahili","swb":"comorien","swc":"swahili du Congo","syc":"syriaque classique","syr":"syriaque","szl":"silésien","ta":"tamoul","tcy":"toulou","te":"télougou","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadjik","th":"thaï","ti":"tigrigna","tig":"tigré","tiv":"tiv","tk":"turkmène","tkl":"tokelau","tkr":"tsakhur","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"talysh","tmh":"tamacheq","tn":"tswana","to":"tonguien","tog":"tonga nyasa","tpi":"tok pisin","tr":"turc","tru":"touroyo","trv":"taroko","ts":"tsonga","tsd":"tsakonien","tsi":"tsimshian","tt":"tatar","ttt":"tati caucasien","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahitien","tyv":"touva","tzm":"tamazight","udm":"oudmourte","ug":"ouïghour","ug-alt-variant":"ouïgour","uga":"ougaritique","uk":"ukrainien","umb":"umbundu","und":"langue indéterminée","ur":"ourdou","uz":"ouzbek","vai":"vaï","ve":"venda","vec":"vénitien","vep":"vepse","vi":"vietnamien","vls":"flamand occidental","vmf":"franconien du Main","vo":"volapuk","vot":"vote","vro":"võro","vun":"vunjo","wa":"wallon","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"chinois wu","xal":"kalmouk","xh":"xhosa","xmf":"mingrélien","xog":"soga","yao":"yao","yap":"yapois","yav":"yangben","ybb":"yemba","yi":"yiddish","yo":"yoruba","yrl":"nheengatou","yue":"cantonais","za":"zhuang","zap":"zapotèque","zbl":"symboles Bliss","zea":"zélandais","zen":"zenaga","zgh":"amazighe standard marocain","zh":"chinois","zh-Hans":"chinois simplifié","zh-Hant":"chinois traditionnel","zu":"zoulou","zun":"zuni","zxx":"sans contenu linguistique","zza":"zazaki"} \ No newline at end of file diff --git a/Punic/data/fr/listPatterns.json b/Punic/data/fr/listPatterns.json new file mode 100644 index 0000000..d2bf7e5 --- /dev/null +++ b/Punic/data/fr/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s et %2$s","2":"%1$s et %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s et %2$s","2":"%1$s et %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s et %2$s","2":"%1$s et %2$s"}} \ No newline at end of file diff --git a/Punic/data/fr/localeDisplayNames.json b/Punic/data/fr/localeDisplayNames.json new file mode 100644 index 0000000..8522bcd --- /dev/null +++ b/Punic/data/fr/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s : %2$s"},"keys":{"calendar":"calendrier","colAlternate":"Tri ne tenant pas compte des symboles","colBackwards":"Tri inversé des caractères accentués","colCaseFirst":"Classement basé sur les majuscules et les minuscules","colCaseLevel":"Tri sensible à la casse","colHiraganaQuaternary":"Tri des caractères Kana","colNormalization":"Tri normalisé","colNumeric":"Tri numérique","colStrength":"Priorité du tri","collation":"ordre de tri","currency":"devise","numbers":"nombres","timezone":"Fuseau horaire","va":"Variante locale","variableTop":"Trier en tant que symboles","x":"Usage privé"},"types":{"numbers":{"vaii":"Chiffres en vaï"},"collation":{"zhuyin":"ordre zhuyin"},"calendar":{"roc":"calendrier républicain chinois"},"colStrength":{"tertiary":"Trier en tenant compte des caractères accentués, de la casse et de la largeur"},"colCaseFirst":{"upper":"Trier avec les majuscules d’abord"},"colBackwards":{"yes":"Trier les caractères accentués dans l’ordre inverse"},"colCaseLevel":{"yes":"Trier en tenant compte de la casse"},"colHiraganaQuaternary":{"yes":"Trier les caractères Kana différemment"},"colNormalization":{"yes":"Trier avec normalisation Unicode"},"colNumeric":{"yes":"Trier les chiffres par ordre numérique"},"colAlternate":{"shifted":"Trier en ignorant les symboles"}},"codePatterns":{"language":"langue : %1$s","script":"écriture : %1$s","territory":"région : %1$s"}} \ No newline at end of file diff --git a/Punic/data/fr/numbers.json b/Punic/data/fr/numbers.json new file mode 100644 index 0000000..af8a5c6 --- /dev/null +++ b/Punic/data/fr/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/fr/territories.json b/Punic/data/fr/territories.json new file mode 100644 index 0000000..f4b889e --- /dev/null +++ b/Punic/data/fr/territories.json @@ -0,0 +1 @@ +{"001":"Monde","002":"Afrique","003":"Amérique du Nord","005":"Amérique du Sud","009":"Océanie","011":"Afrique occidentale","013":"Amérique centrale","014":"Afrique orientale","015":"Afrique septentrionale","017":"Afrique centrale","018":"Afrique australe","019":"Amériques","021":"Amérique septentrionale","029":"Caraïbes","030":"Asie orientale","034":"Asie du Sud","035":"Asie du Sud-Est","039":"Europe méridionale","053":"Australasie","054":"Mélanésie","057":"région micronésienne","061":"Polynésie","142":"Asie","143":"Asie centrale","145":"Asie occidentale","150":"Europe","151":"Europe orientale","154":"Europe septentrionale","155":"Europe occidentale","419":"Amérique latine","AC":"Île de l’Ascension","AD":"Andorre","AE":"Émirats arabes unis","AF":"Afghanistan","AG":"Antigua-et-Barbuda","AI":"Anguilla","AL":"Albanie","AM":"Arménie","AN":"Antilles néerlandaises","AO":"Angola","AQ":"Antarctique","AR":"Argentine","AS":"Samoa américaines","AT":"Autriche","AU":"Australie","AW":"Aruba","AX":"Îles Åland","AZ":"Azerbaïdjan","BA":"Bosnie-Herzégovine","BB":"Barbade","BD":"Bangladesh","BE":"Belgique","BF":"Burkina Faso","BG":"Bulgarie","BH":"Bahreïn","BI":"Burundi","BJ":"Bénin","BL":"Saint-Barthélemy","BM":"Bermudes","BN":"Brunéi Darussalam","BO":"Bolivie","BQ":"Pays-Bas caribéens","BR":"Brésil","BS":"Bahamas","BT":"Bhoutan","BV":"Île Bouvet","BW":"Botswana","BY":"Biélorussie","BZ":"Belize","CA":"Canada","CC":"Îles Cocos","CD":"Congo-Kinshasa","CD-alt-variant":"Congo (RDC)","CF":"République centrafricaine","CG":"Congo-Brazzaville","CG-alt-variant":"République du Congo","CH":"Suisse","CI":"Côte d’Ivoire","CI-alt-variant":"CI","CK":"Îles Cook","CL":"Chili","CM":"Cameroun","CN":"Chine","CO":"Colombie","CP":"Île Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cap-Vert","CW":"Curaçao","CX":"Île Christmas","CY":"Chypre","CZ":"République tchèque","DE":"Allemagne","DG":"Diego Garcia","DJ":"Djibouti","DK":"Danemark","DM":"Dominique","DO":"République dominicaine","DZ":"Algérie","EA":"Ceuta et Melilla","EC":"Équateur","EE":"Estonie","EG":"Égypte","EH":"Sahara occidental","ER":"Érythrée","ES":"Espagne","ET":"Éthiopie","EU":"Union européenne","FI":"Finlande","FJ":"Fidji","FK":"Îles Malouines","FK-alt-variant":"Îles Falkland","FM":"États fédérés de Micronésie","FO":"Îles Féroé","FR":"France","GA":"Gabon","GB":"Royaume-Uni","GB-alt-short":"R.-U.","GD":"Grenade","GE":"Géorgie","GF":"Guyane française","GG":"Guernesey","GH":"Ghana","GI":"Gibraltar","GL":"Groenland","GM":"Gambie","GN":"Guinée","GP":"Guadeloupe","GQ":"Guinée équatoriale","GR":"Grèce","GS":"Îles Géorgie du Sud et Sandwich du Sud","GT":"Guatemala","GU":"Guam","GW":"Guinée-Bissau","GY":"Guyana","HK":"R.A.S. chinoise de Hong Kong","HK-alt-short":"Hong Kong","HM":"Îles Heard et McDonald","HN":"Honduras","HR":"Croatie","HT":"Haïti","HU":"Hongrie","IC":"Îles Canaries","ID":"Indonésie","IE":"Irlande","IL":"Israël","IM":"Île de Man","IN":"Inde","IO":"Territoire britannique de l’océan Indien","IQ":"Irak","IR":"Iran","IS":"Islande","IT":"Italie","JE":"Jersey","JM":"Jamaïque","JO":"Jordanie","JP":"Japon","KE":"Kenya","KG":"Kirghizistan","KH":"Cambodge","KI":"Kiribati","KM":"Comores","KN":"Saint-Christophe-et-Niévès","KP":"Corée du Nord","KR":"Corée du Sud","KW":"Koweït","KY":"Îles Caïmans","KZ":"Kazakhstan","LA":"Laos","LB":"Liban","LC":"Sainte-Lucie","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Libéria","LS":"Lesotho","LT":"Lituanie","LU":"Luxembourg","LV":"Lettonie","LY":"Libye","MA":"Maroc","MC":"Monaco","MD":"Moldavie","ME":"Monténégro","MF":"Saint-Martin (partie française)","MG":"Madagascar","MH":"Îles Marshall","MK":"Macédoine","MK-alt-variant":"Macédoine (ARYM)","ML":"Mali","MM":"Myanmar","MN":"Mongolie","MO":"R.A.S. chinoise de Macao","MO-alt-short":"Macao","MP":"Îles Mariannes du Nord","MQ":"Martinique","MR":"Mauritanie","MS":"Montserrat","MT":"Malte","MU":"Maurice","MV":"Maldives","MW":"Malawi","MX":"Mexique","MY":"Malaisie","MZ":"Mozambique","NA":"Namibie","NC":"Nouvelle-Calédonie","NE":"Niger","NF":"Île Norfolk","NG":"Nigéria","NI":"Nicaragua","NL":"Pays-Bas","NO":"Norvège","NP":"Népal","NR":"Nauru","NU":"Niue","NZ":"Nouvelle-Zélande","OM":"Oman","PA":"Panama","PE":"Pérou","PF":"Polynésie française","PG":"Papouasie-Nouvelle-Guinée","PH":"Philippines","PK":"Pakistan","PL":"Pologne","PM":"Saint-Pierre-et-Miquelon","PN":"Pitcairn","PR":"Porto Rico","PS":"Territoires palestiniens","PS-alt-short":"Palestine","PT":"Portugal","PW":"Palaos","PY":"Paraguay","QA":"Qatar","QO":"régions éloignées de l’Océanie","RE":"La Réunion","RO":"Roumanie","RS":"Serbie","RU":"Russie","RW":"Rwanda","SA":"Arabie saoudite","SB":"Îles Salomon","SC":"Seychelles","SD":"Soudan","SE":"Suède","SG":"Singapour","SH":"Sainte-Hélène","SI":"Slovénie","SJ":"Svalbard et Jan Mayen","SK":"Slovaquie","SL":"Sierra Leone","SM":"Saint-Marin","SN":"Sénégal","SO":"Somalie","SR":"Suriname","SS":"Soudan du Sud","ST":"Sao Tomé-et-Principe","SV":"El Salvador","SX":"Saint-Martin (partie néerlandaise)","SY":"Syrie","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Îles Turques-et-Caïques","TD":"Tchad","TF":"Terres australes françaises","TG":"Togo","TH":"Thaïlande","TJ":"Tadjikistan","TK":"Tokelau","TL":"Timor oriental","TL-alt-variant":"Timor-Oriental","TM":"Turkménistan","TN":"Tunisie","TO":"Tonga","TR":"Turquie","TT":"Trinité-et-Tobago","TV":"Tuvalu","TW":"Taïwan","TZ":"Tanzanie","UA":"Ukraine","UG":"Ouganda","UM":"Îles mineures éloignées des États-Unis","US":"États-Unis","US-alt-short":"É.-U.","UY":"Uruguay","UZ":"Ouzbékistan","VA":"État de la Cité du Vatican","VC":"Saint-Vincent-et-les-Grenadines","VE":"Venezuela","VG":"Îles Vierges britanniques","VI":"Îles Vierges des États-Unis","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis-et-Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yémen","YT":"Mayotte","ZA":"Afrique du Sud","ZM":"Zambie","ZW":"Zimbabwe","ZZ":"région indéterminée"} \ No newline at end of file diff --git a/Punic/data/fr/timeZoneNames.json b/Punic/data/fr/timeZoneNames.json new file mode 100644 index 0000000..e09e592 --- /dev/null +++ b/Punic/data/fr/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;−HH:mm","gmtFormat":"UTC%1$s","gmtZeroFormat":"UTC","regionFormat":"heure : %1$s","regionFormat-type-standard":"%1$s (heure standard)","regionFormat-type-daylight":"%1$s (heure d’été)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaïa"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahia de Banderas"},"Barbados":{"exemplarCity":"La Barbade"},"Belem":{"exemplarCity":"Belém"},"Belize":{"exemplarCity":"Belize"},"Blanc-Sablon":{"exemplarCity":"Blanc-Sablon"},"Boa_Vista":{"exemplarCity":"Boa Vista"},"Bogota":{"exemplarCity":"Bogota"},"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":"Caïmans"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curaçao"},"Danmarkshavn":{"exemplarCity":"Danmarkshavn"},"Dawson":{"exemplarCity":"Dawson"},"Dawson_Creek":{"exemplarCity":"Dawson Creek"},"Denver":{"exemplarCity":"Denver"},"Detroit":{"exemplarCity":"Détroit"},"Dominica":{"exemplarCity":"Dominique"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Nuuk"},"Goose_Bay":{"exemplarCity":"Goose Bay"},"Grand_Turk":{"exemplarCity":"Grand Turk"},"Grenada":{"exemplarCity":"Grenade"},"Guadeloupe":{"exemplarCity":"Guadeloupe"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Guyana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"La Havane"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox [Indiana]"},"Marengo":{"exemplarCity":"Marengo [Indiana]"},"Petersburg":{"exemplarCity":"Petersburg [Indiana]"},"Tell_City":{"exemplarCity":"Tell City [Indiana]"},"Vevay":{"exemplarCity":"Vevay [Indiana]"},"Vincennes":{"exemplarCity":"Vincennes [Indiana]"},"Winamac":{"exemplarCity":"Winamac [Indiana]"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaïque"},"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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaos"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinique"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexico"},"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 [Dakota du Nord]"},"Center":{"exemplarCity":"Center [Dakota du Nord]"},"New_Salem":{"exemplarCity":"New Salem [Dakota du Nord]"}},"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-d’Espagne"},"Porto_Velho":{"exemplarCity":"Porto Velho"},"Puerto_Rico":{"exemplarCity":"Porto 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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Saint-Domingue"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Saint-Barthélemy"},"St_Johns":{"exemplarCity":"Saint-Jean de Terre-Neuve"},"St_Kitts":{"exemplarCity":"Saint-Kitts"},"St_Lucia":{"exemplarCity":"Sainte-Lucie"},"St_Thomas":{"exemplarCity":"Saint-Thomas"},"St_Vincent":{"exemplarCity":"Saint-Vincent"},"Swift_Current":{"exemplarCity":"Swift Current"},"Tegucigalpa":{"exemplarCity":"Tégucigalpa"},"Thule":{"exemplarCity":"Thulé"},"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":"Açores"},"Bermuda":{"exemplarCity":"Bermudes"},"Canary":{"exemplarCity":"Îles Canaries"},"Cape_Verde":{"exemplarCity":"Cap-Vert"},"Faeroe":{"exemplarCity":"Féroé"},"Madeira":{"exemplarCity":"Madère"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Géorgie du Sud"},"St_Helena":{"exemplarCity":"Sainte-Hélène"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorre"},"Athens":{"exemplarCity":"Athènes"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelles"},"Bucharest":{"exemplarCity":"Bucarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhague"},"Dublin":{"long":{"daylight":"heure d’été irlandaise"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernesey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Île de Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisbonne"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"heure d’été britannique"},"exemplarCity":"Londres"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malte"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscou"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"Saint-Marin"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Stockholm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Oujgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Le Vatican"},"Vienna":{"exemplarCity":"Vienne"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varsovie"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporojie"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis-Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Le Caire"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"Laâyoune"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"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":"Mogadiscio"},"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":"Tripoli [Libye]"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Alma Ata"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktaou"},"Aqtobe":{"exemplarCity":"Aktioubinsk"},"Ashgabat":{"exemplarCity":"Achgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahreïn"},"Baku":{"exemplarCity":"Bakou"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beyrouth"},"Bishkek":{"exemplarCity":"Bichkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Tchoïbalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damas"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubaï"},"Dushanbe":{"exemplarCity":"Douchanbé"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hébron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkoutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jérusalem"},"Kabul":{"exemplarCity":"Kaboul"},"Kamchatka":{"exemplarCity":"Kamtchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kachgar"},"Katmandu":{"exemplarCity":"Katmandou"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoïarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Koweït"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Macassar"},"Manila":{"exemplarCity":"Manille"},"Muscat":{"exemplarCity":"Mascate"},"Nicosia":{"exemplarCity":"Nicosie"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novossibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Ouralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Kzyl Orda"},"Rangoon":{"exemplarCity":"Rangoun"},"Riyadh":{"exemplarCity":"Riyad"},"Saigon":{"exemplarCity":"Hô-Chi-Minh-Ville"},"Sakhalin":{"exemplarCity":"Sakhaline"},"Samarkand":{"exemplarCity":"Samarcande"},"Seoul":{"exemplarCity":"Séoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapour"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tachkent"},"Tbilisi":{"exemplarCity":"Tbilissi"},"Tehran":{"exemplarCity":"Téhéran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Oulan-Bator"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Iakoutsk"},"Yekaterinburg":{"exemplarCity":"Ekaterinbourg"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comores"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldives"},"Mauritius":{"exemplarCity":"Maurice"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"La Réunion"}},"Australia":{"Adelaide":{"exemplarCity":"Adélaïde"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Île de Pâques"},"Efate":{"exemplarCity":"Éfaté"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"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":"Marquises"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"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":"Showa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Vostok"}},"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":"zone inconnue"}}},"metazone":{"Acre":{"long":{"generic":"heure de l’Acre","standard":"heure normale de l’Acre","daylight":"heure d’été de l’Acre"}},"Afghanistan":{"long":{"standard":"heure de l’Afghanistan"}},"Africa_Central":{"long":{"standard":"heure normale d’Afrique centrale"}},"Africa_Eastern":{"long":{"standard":"heure normale d’Afrique de l’Est"}},"Africa_Southern":{"long":{"standard":"heure normale d’Afrique méridionale"}},"Africa_Western":{"long":{"generic":"heure d’Afrique de l’Ouest","standard":"heure normale d’Afrique de l’Ouest","daylight":"heure d’été d’Afrique de l’Ouest"}},"Alaska":{"long":{"generic":"heure de l’Alaska","standard":"heure normale de l’Alaska","daylight":"heure d’été de l’Alaska"}},"Almaty":{"long":{"generic":"heure d’Alma Ata","standard":"heure normale d’Alma Ata","daylight":"heure d’été d’Alma Ata"}},"Amazon":{"long":{"generic":"heure de l’Amazonie","standard":"heure normale de l’Amazonie","daylight":"heure d’été de l’Amazonie"}},"America_Central":{"long":{"generic":"heure du centre nord-américain","standard":"heure normale du centre nord-américain","daylight":"heure d’été du Centre"}},"America_Eastern":{"long":{"generic":"heure de l’Est nord-américain","standard":"heure normale de l’Est nord-américain","daylight":"heure d’été de l’Est"}},"America_Mountain":{"long":{"generic":"heure des Rocheuses","standard":"heure normale des Rocheuses","daylight":"heure d’été des Rocheuses"}},"America_Pacific":{"long":{"generic":"heure du Pacifique nord-américain","standard":"heure normale du Pacifique nord-américain","daylight":"heure d’été du Pacifique"}},"Anadyr":{"long":{"generic":"heure d’Anadyr","standard":"heure normale d’Anadyr","daylight":"heure d’été d’Anadyr"}},"Apia":{"long":{"generic":"heure d’Apia","standard":"heure normale d’Apia","daylight":"heure d’été d’Apia"}},"Aqtau":{"long":{"generic":"heure d’Aktaou","standard":"heure normale d’Aktaou","daylight":"heure d’été d’Aktaou"}},"Aqtobe":{"long":{"generic":"heure d’Aqtöbe","standard":"heure normale d’Aqtöbe","daylight":"heure d’été d’Aqtöbe"}},"Arabian":{"long":{"generic":"heure de l’Arabie","standard":"heure normale de l’Arabie","daylight":"heure d’été de l’Arabie"}},"Argentina":{"long":{"generic":"heure de l’Argentine","standard":"heure normale d’Argentine","daylight":"heure d’été de l’Argentine"}},"Argentina_Western":{"long":{"generic":"heure de l’Ouest argentin","standard":"heure normale de l’Ouest argentin","daylight":"heure d’été de l’Ouest argentin"}},"Armenia":{"long":{"generic":"heure de l’Arménie","standard":"heure normale de l’Arménie","daylight":"heure d’été d’Arménie"}},"Atlantic":{"long":{"generic":"heure de l’Atlantique","standard":"heure normale de l’Atlantique","daylight":"heure d’été de l’Atlantique"}},"Australia_Central":{"long":{"generic":"heure du centre de l’Australie","standard":"heure normale du centre de l’Australie","daylight":"heure d’été du centre de l’Australie"}},"Australia_CentralWestern":{"long":{"generic":"heure du centre-ouest de l’Australie","standard":"heure normale du centre-ouest de l’Australie","daylight":"heure d’été du centre-ouest de l’Australie"}},"Australia_Eastern":{"long":{"generic":"heure de l’Est de l’Australie","standard":"heure normale de l’Est de l’Australie","daylight":"heure d’été de l’Est de l’Australie"}},"Australia_Western":{"long":{"generic":"heure de l’Ouest de l’Australie","standard":"heure normale de l’Ouest de l’Australie","daylight":"heure d’été de l’Ouest de l’Australie"}},"Azerbaijan":{"long":{"generic":"heure de l’Azerbaïdjan","standard":"heure normale de l’Azerbaïdjan","daylight":"heure d’été d’Azerbaïdjan"}},"Azores":{"long":{"generic":"heure des Açores","standard":"heure normale des Açores","daylight":"heure d’été des Açores"}},"Bangladesh":{"long":{"generic":"heure du Bangladesh","standard":"heure normale du Bangladesh","daylight":"heure d’été du Bangladesh"}},"Bhutan":{"long":{"standard":"heure du Bhoutan"}},"Bolivia":{"long":{"standard":"heure de Bolivie"}},"Brasilia":{"long":{"generic":"heure de Brasilia","standard":"heure normale de Brasilia","daylight":"heure d’été de Brasilia"}},"Brunei":{"long":{"standard":"heure du Brunéi"}},"Cape_Verde":{"long":{"generic":"heure du Cap-Vert","standard":"heure normale du Cap-Vert","daylight":"heure d’été du Cap-Vert"}},"Chamorro":{"long":{"standard":"heure des Chamorro"}},"Chatham":{"long":{"generic":"heure des îles Chatham","standard":"heure normale des Îles Chatham","daylight":"heure d’été des Îles Chatham"}},"Chile":{"long":{"generic":"heure du Chili","standard":"heure normale du Chili","daylight":"heure d’été du Chili"}},"China":{"long":{"generic":"heure de la Chine","standard":"heure normale de la Chine","daylight":"heure d’été de Chine"}},"Choibalsan":{"long":{"generic":"heure de Choibalsan","standard":"heure normale de Choibalsan","daylight":"heure d’été de Choibalsan"}},"Christmas":{"long":{"standard":"heure de l’île Christmas"}},"Cocos":{"long":{"standard":"heure des îles Cocos"}},"Colombia":{"long":{"generic":"heure de Colombie","standard":"heure normale de Colombie","daylight":"heure d’été de Colombie"}},"Cook":{"long":{"generic":"heure des îles Cook","standard":"heure normale des îles Cook","daylight":"heure d’été des îles Cook"}},"Cuba":{"long":{"generic":"heure de Cuba","standard":"heure normale de Cuba","daylight":"heure d’été de Cuba"}},"Davis":{"long":{"standard":"heure de Davis"}},"DumontDUrville":{"long":{"standard":"heure de Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"heure du Timor oriental"}},"Easter":{"long":{"generic":"heure de l’île de Pâques","standard":"heure normale de l’île de Pâques","daylight":"heure d’été de l’île de Pâques"}},"Ecuador":{"long":{"standard":"heure de l’Équateur"}},"Europe_Central":{"long":{"generic":"heure d’Europe centrale","standard":"heure normale d’Europe centrale","daylight":"heure d’été d’Europe centrale"}},"Europe_Eastern":{"long":{"generic":"heure d’Europe de l’Est","standard":"heure normale d’Europe de l’Est","daylight":"heure d’été d’Europe de l’Est"}},"Europe_Further_Eastern":{"long":{"standard":"heure de Kaliningrad"}},"Europe_Western":{"long":{"generic":"heure d’Europe de l’Ouest","standard":"heure normale d’Europe de l’Ouest","daylight":"heure d’été d’Europe de l’Ouest"}},"Falkland":{"long":{"generic":"heure des îles Malouines","standard":"heure normale des îles Malouines","daylight":"heure d’été des îles Malouines"}},"Fiji":{"long":{"generic":"heure des îles Fidji","standard":"heure normale des îles Fidji","daylight":"heure d’été des îles Fidji"}},"French_Guiana":{"long":{"standard":"heure de la Guyane française"}},"French_Southern":{"long":{"standard":"heure des Terres australes et antarctiques françaises"}},"GMT":{"long":{"standard":"heure moyenne de Greenwich"}},"Galapagos":{"long":{"standard":"heure des îles Galápagos"}},"Gambier":{"long":{"standard":"heure des îles Gambier"}},"Georgia":{"long":{"generic":"heure de la Géorgie","standard":"heure normale de la Géorgie","daylight":"heure d’été de Géorgie"}},"Gilbert_Islands":{"long":{"standard":"heure des îles Gilbert"}},"Greenland_Eastern":{"long":{"generic":"heure de l’Est du Groenland","standard":"heure normale de l’Est du Groenland","daylight":"heure d’été de l’Est du Groenland"}},"Greenland_Western":{"long":{"generic":"heure de l’Ouest du Groenland","standard":"heure normale de l’Ouest du Groenland","daylight":"heure d’été de l’Ouest du Groenland"}},"Guam":{"long":{"standard":"heure de Guam"}},"Gulf":{"long":{"standard":"heure du Golfe"}},"Guyana":{"long":{"standard":"heure du Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"heure d’Hawaii - Aléoutiennes","standard":"heure normale d’Hawaii - Aléoutiennes","daylight":"heure d’été d’Hawaii - Aléoutiennes"}},"Hong_Kong":{"long":{"generic":"heure de Hong Kong","standard":"heure normale de Hong Kong","daylight":"heure d’été de Hong Kong"}},"Hovd":{"long":{"generic":"heure de Hovd","standard":"heure normale de Hovd","daylight":"heure d’été de Hovd"}},"India":{"long":{"standard":"heure de l’Inde"}},"Indian_Ocean":{"long":{"standard":"heure de l’Océan Indien"}},"Indochina":{"long":{"standard":"heure d’Indochine"}},"Indonesia_Central":{"long":{"standard":"heure du Centre indonésien"}},"Indonesia_Eastern":{"long":{"standard":"heure de l’Est indonésien"}},"Indonesia_Western":{"long":{"standard":"heure de l’Ouest indonésien"}},"Iran":{"long":{"generic":"heure de l’Iran","standard":"heure normale d’Iran","daylight":"heure d’été d’Iran"}},"Irkutsk":{"long":{"generic":"heure d’Irkoutsk","standard":"heure normale d’Irkoutsk","daylight":"heure d’été d’Irkoutsk"}},"Israel":{"long":{"generic":"heure d’Israël","standard":"heure normale d’Israël","daylight":"heure d’été d’Israël"}},"Japan":{"long":{"generic":"heure du Japon","standard":"heure normale du Japon","daylight":"heure d’été du Japon"}},"Kamchatka":{"long":{"generic":"heure de Petropavlovsk-Kamchatski","standard":"heure normale de Petropavlovsk-Kamchatski","daylight":"heure d’été de Petropavlovsk-Kamchatski"}},"Kazakhstan_Eastern":{"long":{"standard":"heure de l’Est du Kazakhstan"}},"Kazakhstan_Western":{"long":{"standard":"heure de l’Ouest du Kazakhstan"}},"Korea":{"long":{"generic":"heure de la Corée","standard":"heure normale de la Corée","daylight":"heure d’été de Corée"}},"Kosrae":{"long":{"standard":"heure de Kosrae"}},"Krasnoyarsk":{"long":{"generic":"heure de Krasnoïarsk","standard":"heure normale de Krasnoïarsk","daylight":"heure d’été de Krasnoïarsk"}},"Kyrgystan":{"long":{"standard":"heure du Kirghizistan"}},"Lanka":{"long":{"standard":"heure de Lanka"}},"Line_Islands":{"long":{"standard":"heure des îles de la Ligne"}},"Lord_Howe":{"long":{"generic":"heure de Lord Howe","standard":"heure normale de Lord Howe","daylight":"heure d’été de Lord Howe"}},"Macau":{"long":{"generic":"heure de Macao","standard":"heure normale de Macao","daylight":"heure d’été de Macao"}},"Macquarie":{"long":{"standard":"heure de l’île Macquarie"}},"Magadan":{"long":{"generic":"heure de Magadan","standard":"heure normale de Magadan","daylight":"heure d’été de Magadan"}},"Malaysia":{"long":{"standard":"heure de la Malaisie"}},"Maldives":{"long":{"standard":"heure des Maldives"}},"Marquesas":{"long":{"standard":"heure des îles Marquises"}},"Marshall_Islands":{"long":{"standard":"heure des îles Marshall"}},"Mauritius":{"long":{"generic":"heure de Maurice","standard":"heure normale de Maurice","daylight":"heure d’été de Maurice"}},"Mawson":{"long":{"standard":"heure de Mawson"}},"Mexico_Northwest":{"long":{"generic":"heure du Nord-Ouest du Mexique","standard":"heure normale du Nord-Ouest du Mexique","daylight":"heure d’été du Nord-Ouest du Mexique"}},"Mexico_Pacific":{"long":{"generic":"heure du Pacifique mexicain","standard":"heure normale du Pacifique mexicain","daylight":"heure d’été du Pacifique mexicain"}},"Mongolia":{"long":{"generic":"heure d’Oulan-Bator","standard":"heure normale d’Oulan-Bator","daylight":"heure d’été d’Oulan-Bator"}},"Moscow":{"long":{"generic":"heure de Moscou","standard":"heure normale de Moscou","daylight":"heure d’été de Moscou"}},"Myanmar":{"long":{"standard":"heure du Myanmar"}},"Nauru":{"long":{"standard":"heure de Nauru"}},"Nepal":{"long":{"standard":"heure du Népal"}},"New_Caledonia":{"long":{"generic":"heure de la Nouvelle-Calédonie","standard":"heure normale de la Nouvelle-Calédonie","daylight":"heure d’été de Nouvelle-Calédonie"}},"New_Zealand":{"long":{"generic":"heure de la Nouvelle-Zélande","standard":"heure normale de la Nouvelle-Zélande","daylight":"heure d’été de la Nouvelle-Zélande"}},"Newfoundland":{"long":{"generic":"heure de Terre-Neuve","standard":"heure normale de Terre-Neuve","daylight":"heure d’été de Terre-Neuve"}},"Niue":{"long":{"standard":"heure de Nioué"}},"Norfolk":{"long":{"standard":"heure de l’île Norfolk"}},"Noronha":{"long":{"generic":"heure de Fernando de Noronha","standard":"heure normale de Fernando de Noronha","daylight":"heure d’été de Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"heure des îles Mariannes du Nord"}},"Novosibirsk":{"long":{"generic":"heure de Novossibirsk","standard":"heure normale de Novossibirsk","daylight":"heure d’été de Novossibirsk"}},"Omsk":{"long":{"generic":"heure de Omsk","standard":"heure normale de Omsk","daylight":"heure d’été de Omsk"}},"Pakistan":{"long":{"generic":"heure du Pakistan","standard":"heure normale du Pakistan","daylight":"heure d’été du Pakistan"}},"Palau":{"long":{"standard":"heure des Palaos"}},"Papua_New_Guinea":{"long":{"standard":"heure de la Papouasie-Nouvelle-Guinée"}},"Paraguay":{"long":{"generic":"heure du Paraguay","standard":"heure normale du Paraguay","daylight":"heure d’été du Paraguay"}},"Peru":{"long":{"generic":"heure du Pérou","standard":"heure normale du Pérou","daylight":"heure d’été du Pérou"}},"Philippines":{"long":{"generic":"heure des Philippines","standard":"heure normale des Philippines","daylight":"heure d’été des Philippines"}},"Phoenix_Islands":{"long":{"standard":"heure des îles Phoenix"}},"Pierre_Miquelon":{"long":{"generic":"heure de Saint-Pierre-et-Miquelon","standard":"heure normale de Saint-Pierre-et-Miquelon","daylight":"heure d’été de Saint-Pierre-et-Miquelon"}},"Pitcairn":{"long":{"standard":"heure des îles Pitcairn"}},"Ponape":{"long":{"standard":"heure de l’île de Pohnpei"}},"Reunion":{"long":{"standard":"heure de la Réunion"}},"Rothera":{"long":{"standard":"heure de Rothera"}},"Sakhalin":{"long":{"generic":"heure de Sakhaline","standard":"heure normale de Sakhaline","daylight":"heure d’été de Sakhaline"}},"Samara":{"long":{"generic":"heure de Samara","standard":"heure normale de Samara","daylight":"heure d’été de Samara"}},"Samoa":{"long":{"generic":"heure des Samoa","standard":"heure normale des Samoa","daylight":"heure d’été des Samoa"}},"Seychelles":{"long":{"standard":"heure des Seychelles"}},"Singapore":{"long":{"standard":"heure de Singapour"}},"Solomon":{"long":{"standard":"heure des îles Salomon"}},"South_Georgia":{"long":{"standard":"heure de Géorgie du Sud"}},"Suriname":{"long":{"standard":"heure du Suriname"}},"Syowa":{"long":{"standard":"heure de Syowa"}},"Tahiti":{"long":{"standard":"heure de Tahiti"}},"Taipei":{"long":{"generic":"heure de Taipei","standard":"heure normale de Taipei","daylight":"heure d’été de Taipei"}},"Tajikistan":{"long":{"standard":"heure du Tadjikistan"}},"Tokelau":{"long":{"standard":"heure de Tokelau"}},"Tonga":{"long":{"generic":"heure des Tonga","standard":"heure normale des Tonga","daylight":"heure d’été de Tonga"}},"Truk":{"long":{"standard":"heure de Chuuk"}},"Turkmenistan":{"long":{"generic":"heure du Turkménistan","standard":"heure normale du Turkménistan","daylight":"heure d’été du Turkménistan"}},"Tuvalu":{"long":{"standard":"heure des Tuvalu"}},"Uruguay":{"long":{"generic":"heure de l’Uruguay","standard":"heure normale de l’Uruguay","daylight":"heure d’été de l’Uruguay"}},"Uzbekistan":{"long":{"generic":"heure de l’Ouzbékistan","standard":"heure normale de l’Ouzbékistan","daylight":"heure d’été de l’Ouzbékistan"}},"Vanuatu":{"long":{"generic":"heure du Vanuatu","standard":"heure normale du Vanuatu","daylight":"heure d’été de Vanuatu"}},"Venezuela":{"long":{"standard":"heure du Venezuela"}},"Vladivostok":{"long":{"generic":"heure de Vladivostok","standard":"heure normale de Vladivostok","daylight":"heure d’été de Vladivostok"}},"Volgograd":{"long":{"generic":"heure de Volgograd","standard":"heure normale de Volgograd","daylight":"heure d’été de Volgograd"}},"Vostok":{"long":{"standard":"heure de Vostok"}},"Wake":{"long":{"standard":"heure de l’île Wake"}},"Wallis":{"long":{"standard":"heure de Wallis-et-Futuna"}},"Yakutsk":{"long":{"generic":"heure de Iakoutsk","standard":"heure normale de Iakoutsk","daylight":"heure d’été de Iakoutsk"}},"Yekaterinburg":{"long":{"generic":"heure d’Ekaterinbourg","standard":"heure normale d’Ekaterinbourg","daylight":"heure d’été d’Ekaterinbourg"}}}} \ No newline at end of file diff --git a/Punic/data/fr/units.json b/Punic/data/fr/units.json new file mode 100644 index 0000000..95430eb --- /dev/null +++ b/Punic/data/fr/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s par %2$s","acceleration":{"g-force":{"_name":"fois la gravitation terrestre","one":"%1$s fois la gravitation terrestre","other":"%1$s fois la gravitation terrestre"},"meter-per-second-squared":{"_name":"mètres par seconde carrée","one":"%1$s mètre par seconde carrée","other":"%1$s mètres par seconde carrée"}},"angle":{"arc-minute":{"_name":"minutes d’arc","one":"%1$s minute d’arc","other":"%1$s minutes d’arc"},"arc-second":{"_name":"secondes d’arc","one":"%1$s seconde d’angle","other":"%1$s secondes d’angle"},"degree":{"_name":"degrés","one":"%1$s degré","other":"%1$s degrés"},"radian":{"_name":"radians","one":"%1$s radian","other":"%1$s radians"}},"area":{"acre":{"_name":"acres anglo-saxonnes","one":"%1$s acre anglo-saxonne","other":"%1$s acres anglo-saxonnes"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"centimètres carrés","one":"%1$s centimètre carré","other":"%1$s centimètres carrés"},"square-foot":{"_name":"pieds carrés","one":"%1$s pied carré","other":"%1$s pieds carrés"},"square-inch":{"_name":"pouces carrés","one":"%1$s pouce carré","other":"%1$s pouces carrés"},"square-kilometer":{"_name":"kilomètres carrés","one":"%1$s kilomètre carré","other":"%1$s kilomètres carrés"},"square-meter":{"_name":"mètres carrés","one":"%1$s mètre carré","other":"%1$s mètres carrés"},"square-mile":{"_name":"miles carrés","one":"%1$s mille anglais carré","other":"%1$s milles anglais carrés"},"square-yard":{"_name":"yards carrés","one":"%1$s yard carré","other":"%1$s yards carrés"}},"consumption":{"liter-per-kilometer":{"_name":"litres au kilomètre","one":"%1$s litre au kilomètre","other":"%1$s litres au kilomètre"},"mile-per-gallon":{"_name":"miles par gallon","one":"%1$s mile par gallon","other":"%1$s miles par gallon"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"octets","one":"%1$s octet","other":"%1$s octets"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigaoctets","one":"%1$s gigaoctet","other":"%1$s gigaoctets"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilooctets","one":"%1$s kilooctet","other":"%1$s kilooctets"},"megabit":{"_name":"mégabits","one":"%1$s mégabit","other":"%1$s mégabits"},"megabyte":{"_name":"mégaoctets","one":"%1$s mégaoctet","other":"%1$s mégaoctets"},"terabit":{"_name":"térabits","one":"%1$s térabit","other":"%1$s térabits"},"terabyte":{"_name":"téraoctets","one":"%1$s téraoctet","other":"%1$s téraoctets"}},"duration":{"day":{"_name":"jours","one":"%1$s jour","other":"%1$s jours"},"hour":{"_name":"heures","one":"%1$s heure","other":"%1$s heures","_per":"%1$s par heure"},"microsecond":{"_name":"microsecondes","one":"%1$s microseconde","other":"%1$s microsecondes"},"millisecond":{"_name":"millisecondes","one":"%1$s milliseconde","other":"%1$s millisecondes"},"minute":{"_name":"minutes","one":"%1$s minute","other":"%1$s minutes"},"month":{"_name":"mois","one":"%1$s mois","other":"%1$s mois"},"nanosecond":{"_name":"nanosecondes","one":"%1$s nanoseconde","other":"%1$s nanosecondes"},"second":{"_name":"secondes","one":"%1$s seconde","other":"%1$s secondes","_per":"%1$s par seconde"},"week":{"_name":"semaines","one":"%1$s semaine","other":"%1$s semaines"},"year":{"_name":"ans","one":"%1$s an","other":"%1$s ans"}},"electric":{"ampere":{"_name":"ampères","one":"%1$s ampère","other":"%1$s ampères"},"milliampere":{"_name":"milliampères","one":"%1$s milliampère","other":"%1$s milliampères"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calories","one":"%1$s calorie","other":"%1$s calories"},"foodcalorie":{"_name":"grandes calories","one":"%1$s grande calorie","other":"%1$s grandes calories"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalories","one":"%1$s kilocalorie","other":"%1$s kilocalories"},"kilojoule":{"_name":"kilojoules","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowattheures","one":"%1$s kilowattheure","other":"%1$s kilowattheures"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"mégahertz","one":"%1$s mégahertz","other":"%1$s mégahertz"}},"length":{"astronomical-unit":{"_name":"unités astronomiques","one":"%1$s unité astronomique","other":"%1$s unités astronomiques"},"centimeter":{"_name":"centimètres","one":"%1$s centimètre","other":"%1$s centimètres"},"decimeter":{"_name":"décimètres","one":"%1$s décimètre","other":"%1$s décimètres"},"fathom":{"_name":"fathoms","one":"%1$s fathom","other":"%1$s fathoms"},"foot":{"_name":"pieds","one":"%1$s pied","other":"%1$s pieds"},"furlong":{"_name":"sillons","one":"%1$s sillon","other":"%1$s sillons"},"inch":{"_name":"pouces","one":"%1$s pouce","other":"%1$s pouces"},"kilometer":{"_name":"kilomètres","one":"%1$s kilomètre","other":"%1$s kilomètres"},"light-year":{"_name":"années-lumière","one":"%1$s année-lumière","other":"%1$s années-lumière"},"meter":{"_name":"mètres","one":"%1$s mètre","other":"%1$s mètres"},"micrometer":{"_name":"micromètres","one":"%1$s micromètre","other":"%1$s micromètres"},"mile":{"_name":"milles anglais","one":"%1$s mille anglais","other":"%1$s milles anglais"},"millimeter":{"_name":"millimètres","one":"%1$s millimètre","other":"%1$s millimètres"},"nanometer":{"_name":"nanomètres","one":"%1$s nanomètre","other":"%1$s nanomètres"},"nautical-mile":{"_name":"milles marins","one":"%1$s mille marin","other":"%1$s milles marins"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picomètres","one":"%1$s picomètre","other":"%1$s picomètres"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"},"gram":{"_name":"grammes","one":"%1$s gramme","other":"%1$s grammes"},"kilogram":{"_name":"kilogrammes","one":"%1$s kilogramme","other":"%1$s kilogrammes"},"metric-ton":{"_name":"tonnes","one":"%1$s tonne","other":"%1$s tonnes"},"microgram":{"_name":"microgrammes","one":"%1$s microgramme","other":"%1$s microgrammes"},"milligram":{"_name":"milligrammes","one":"%1$s milligramme","other":"%1$s milligrammes"},"ounce":{"_name":"onces","one":"%1$s once","other":"%1$s onces"},"ounce-troy":{"_name":"onces troy","one":"%1$s once troy","other":"%1$s onces troy"},"pound":{"_name":"livres","one":"%1$s livre","other":"%1$s livres"},"stone":{"_name":"stones","one":"%1$s stone","other":"%1$s stone"},"ton":{"_name":"tonnes courtes","one":"%1$s tonne courte","other":"%1$s tonnes courtes"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"chevaux-vapeur","one":"%1$s cheval-vapeur","other":"%1$s chevaux-vapeur"},"kilowatt":{"_name":"kilowatts","one":"%1$s kilowatt","other":"%1$s kilowatts"},"megawatt":{"_name":"mégawatts","one":"%1$s mégawatt","other":"%1$s mégawatts"},"milliwatt":{"_name":"milliwatts","one":"%1$s milliwatt","other":"%1$s milliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascals","one":"%1$s hectopascal","other":"%1$s hectopascals"},"inch-hg":{"_name":"pouces de mercure","one":"%1$s pouce de mercure","other":"%1$s pouces de mercure"},"millibar":{"_name":"millibars","one":"%1$s millibar","other":"%1$s millibars"},"millimeter-of-mercury":{"_name":"millimètres de mercure","one":"%1$s millimètre de mercure","other":"%1$s millimètres de mercure"},"pound-per-square-inch":{"_name":"livres par pouce carré","one":"%1$s livre par pouce carré","other":"%1$s livres par pouce carré"}},"proportion":{"karat":{"_name":"carats","one":"%1$s carat","other":"%1$s carats"}},"speed":{"kilometer-per-hour":{"_name":"kilomètres par heure","one":"%1$s kilomètre par heure","other":"%1$s kilomètres par heure"},"meter-per-second":{"_name":"mètres par seconde","one":"%1$s mètre par seconde","other":"%1$s mètres par seconde"},"mile-per-hour":{"_name":"milles anglais par heure","one":"%1$s mille anglais par heure","other":"%1$s milles anglais par heure"}},"temperature":{"celsius":{"_name":"degrés Celsius","one":"%1$s degré Celsius","other":"%1$s degrés Celsius"},"fahrenheit":{"_name":"degrés Fahrenheit","one":"%1$s degré Fahrenheit","other":"%1$s degrés Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acres-pieds","one":"%1$s acre-pied","other":"%1$s acres-pieds"},"bushel":{"_name":"boisseaux","one":"%1$s boisseau","other":"%1$s boisseaux"},"centiliter":{"_name":"centilitres","one":"%1$s centilitre","other":"%1$s centilitres"},"cubic-centimeter":{"_name":"centimètres cubes","one":"%1$s centimètre cube","other":"%1$s centimètres cubes"},"cubic-foot":{"_name":"pieds cubes","one":"%1$s pied cube","other":"%1$s pieds cubes"},"cubic-inch":{"_name":"pouces cubes","one":"%1$s pouce cube","other":"%1$s pouces cubes"},"cubic-kilometer":{"_name":"kilomètres cubes","one":"%1$s kilomètre cube","other":"%1$s kilomètres cubes"},"cubic-meter":{"_name":"mètres cubes","one":"%1$s mètre cube","other":"%1$s mètres cubes"},"cubic-mile":{"_name":"milles anglais cubes","one":"%1$s mille anglais cube","other":"%1$s milles anglais cubes"},"cubic-yard":{"_name":"yards cubes","one":"%1$s yard cube","other":"%1$s yards cubes"},"cup":{"_name":"tasses","one":"%1$s tasse","other":"%1$s tasses"},"deciliter":{"_name":"décilitres","one":"%1$s décilitre","other":"%1$s décilitres"},"fluid-ounce":{"_name":"onces liquides","one":"%1$s once liquide","other":"%1$s onces liquides"},"gallon":{"_name":"gallons","one":"%1$s gallon","other":"%1$s gallons"},"hectoliter":{"_name":"hectolitres","one":"%1$s hectolitre","other":"%1$s hectolitres"},"liter":{"_name":"litres","one":"%1$s litre","other":"%1$s litres"},"megaliter":{"_name":"mégalitres","one":"%1$s mégalitre","other":"%1$s mégalitres"},"milliliter":{"_name":"millilitres","one":"%1$s millilitre","other":"%1$s millilitres"},"pint":{"_name":"pintes","one":"%1$s pinte","other":"%1$s pintes"},"quart":{"_name":"quarts","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"cuillères à soupe","one":"%1$s cuillère à soupe","other":"%1$s cuillères à soupe"},"teaspoon":{"_name":"cuillères à café","one":"%1$s cuillère à café","other":"%1$s cuillères à café"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pi²","one":"%1$s pi²","other":"%1$s pi²"},"square-inch":{"_name":"po²","one":"%1$s po²","other":"%1$s po²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"octet","one":"%1$s octet","other":"%1$s octet"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"Go","one":"%1$s Go","other":"%1$s Go"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"ko","one":"%1$s ko","other":"%1$s ko"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"Mo","one":"%1$s Mo","other":"%1$s Mo"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"To","one":"%1$s To","other":"%1$s To"}},"duration":{"day":{"_name":"j","one":"%1$s j","other":"%1$s j"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"m","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sem.","one":"%1$s sem.","other":"%1$s sem."},"year":{"_name":"ans","one":"%1$s an","other":"%1$s ans"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fat","one":"%1$s fat","other":"%1$s fat"},"foot":{"_name":"pi","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"sil","one":"%1$s sil","other":"%1$s sil"},"inch":{"_name":"po","one":"%1$s po","other":"%1$s po"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"a.l.","one":"%1$s a.l.","other":"%1$s a.l."},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"sh tn","one":"%1$s sh tn","other":"%1$s sh tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"ch","one":"%1$s ch","other":"%1$s ch"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"lb/po²","one":"%1$s lb/po²","other":"%1$s lb/po²"}},"proportion":{"karat":{"_name":"ct","one":"%1$s ct","other":"%1$s ct"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac pi","one":"%1$s ac pi","other":"%1$s ac pi"},"bushel":{"_name":"boisseaux","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"pi³","one":"%1$s pi³","other":"%1$s pi³"},"cubic-inch":{"_name":"po³","one":"%1$s po³","other":"%1$s po³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"tasses","one":"%1$s tasse","other":"%1$s tasses"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"L","one":"%1$s L","other":"%1$s L"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pte","one":"%1$s pte","other":"%1$s pte"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"c. à s.","one":"%1$s c. à s.","other":"%1$s c. à s."},"teaspoon":{"_name":"c. à c.","one":"%1$s c. à c.","other":"%1$s c. à c."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"ac","one":"%1$sac","other":"%1$sac"},"hectare":{"_name":"ha","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pi²","one":"%1$spi²","other":"%1$spi²"},"square-inch":{"_name":"po²","one":"%1$s po²","other":"%1$s po²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"mi²","one":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mi/gal","one":"%1$s mi/gal","other":"%1$s mi/gal"}},"digital":{"bit":{"_name":"bit","one":"%1$sbit","other":"%1$sbit"},"byte":{"_name":"octet","one":"%1$s octet","other":"%1$s octet"},"gigabit":{"_name":"Gb","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"Go","one":"%1$sGo","other":"%1$sGo"},"kilobit":{"_name":"kb","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"ko","one":"%1$sko","other":"%1$sko"},"megabit":{"_name":"Mb","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"Mo","one":"%1$sMo","other":"%1$sMo"},"terabit":{"_name":"Tb","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"To","one":"%1$sTo","other":"%1$sTo"}},"duration":{"day":{"_name":"j","one":"%1$sj","other":"%1$sj"},"hour":{"_name":"h","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$sµs","other":"%1$sµs"},"millisecond":{"_name":"ms","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"m","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"s","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"sem","one":"%1$ssem","other":"%1$ssem"},"year":{"_name":"a","one":"%1$sa","other":"%1$sa"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$sua","other":"%1$sua"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fat","one":"%1$sfat","other":"%1$sfat"},"foot":{"_name":"pi","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"sil","one":"%1$ssil","other":"%1$ssil"},"inch":{"_name":"po","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"al","one":"%1$sa.l.","other":"%1$sa.l."},"meter":{"_name":"m","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"mi","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$snmi","other":"%1$snmi"},"parsec":{"_name":"pc","one":"%1$spc","other":"%1$spc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"vg","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$sct","other":"%1$sct"},"gram":{"_name":"g","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"oz","one":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$soz t","other":"%1$soz t"},"pound":{"_name":"lb","one":"%1$slb","other":"%1$slb"},"stone":{"_name":"st","one":"%1$sst","other":"%1$sst"},"ton":{"_name":"sh tn","one":"%1$s sh tn","other":"%1$s sh tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"ch","one":"%1$sch","other":"%1$sch"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"″Hg","one":"%1$sinHg","other":"%1$sinHg"},"millibar":{"_name":"mbar","one":"%1$smbar","other":"%1$smbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$smmHg","other":"%1$smmHg"},"pound-per-square-inch":{"_name":"lb/po²","one":"%1$slb/po²","other":"%1$slb/po²"}},"proportion":{"karat":{"_name":"ct","one":"%1$s ct","other":"%1$s ct"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$skm/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$smi/h","other":"%1$smi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"ac pi","one":"%1$sac pi","other":"%1$sac pi"},"bushel":{"_name":"boisseau","one":"%1$sbu","other":"%1$sbu"},"centiliter":{"_name":"cl","one":"%1$scl","other":"%1$scl"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"pi³","one":"%1$spi³","other":"%1$spi³"},"cubic-inch":{"_name":"po³","one":"%1$spo³","other":"%1$spo³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$syd³","other":"%1$syd³"},"cup":{"_name":"tasse","one":"%1$sta","other":"%1$sta"},"deciliter":{"_name":"dl","one":"%1$sdl","other":"%1$sdl"},"fluid-ounce":{"_name":"fl oz","one":"%1$sfl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","one":"%1$sgal","other":"%1$sgal"},"hectoliter":{"_name":"hl","one":"%1$shl","other":"%1$shl"},"liter":{"_name":"L","one":"%1$sL","other":"%1$sL"},"megaliter":{"_name":"Ml","one":"%1$sMl","other":"%1$sMl"},"milliliter":{"_name":"ml","one":"%1$sml","other":"%1$sml"},"pint":{"_name":"pinte","one":"%1$spte","other":"%1$spte"},"quart":{"_name":"quart","one":"%1$sqt","other":"%1$sqt"},"tablespoon":{"_name":"CàS","one":"%1$sCàS","other":"%1$sCàS"},"teaspoon":{"_name":"CàC","one":"%1$sCàC","other":"%1$sCàC"}}},"_durationPattern":{"hm":"hh:mm","hms":"hh:mm:ss","ms":"mm:ss"}} \ No newline at end of file diff --git a/Punic/data/he/calendar.json b/Punic/data/he/calendar.json new file mode 100644 index 0000000..e6fcfec --- /dev/null +++ b/Punic/data/he/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"ינו׳","2":"פבר׳","3":"מרץ","4":"אפר׳","5":"מאי","6":"יוני","7":"יולי","8":"אוג׳","9":"ספט׳","10":"אוק׳","11":"נוב׳","12":"דצמ׳"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"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":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"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":"רבעון 1","2":"רבעון 2","3":"רבעון 3","4":"רבעון 4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"רבעון 1","2":"רבעון 2","3":"רבעון 3","4":"רבעון 4"}},"stand-alone":{"abbreviated":{"1":"רבעון 1","2":"רבעון 2","3":"רבעון 3","4":"רבעון 4"},"narrow":{"1":"ר1","2":"ר2","3":"ר3","4":"ר4"},"wide":{"1":"רבעון 1","2":"רבעון 2","3":"רבעון 3","4":"רבעון 4"}}},"dayPeriods":{"format":{"abbreviated":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"},"narrow":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"},"wide":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"}},"stand-alone":{"abbreviated":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"},"narrow":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"},"wide":{"am":"לפנה״צ","noon":"בצהריים","pm":"אחה״צ"}}},"eras":{"wide":{"0":"לפני הספירה","0-alt-variant":"לפנה״ס","1":"לספירה","1-alt-variant":"CE"},"abbreviated":{"0":"לפנה״ס","0-alt-variant":"BCE","1":"לספירה","1-alt-variant":"CE"},"narrow":{"0":"לפנה״ס","0-alt-variant":"BCE","1":"לספירה","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d בMMMM y","long":"d בMMMM y","medium":"d בMMM y","short":"d.M.y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s בשעה %1$s","long":"%2$s בשעה %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/he/dateFields.json b/Punic/data/he/dateFields.json new file mode 100644 index 0000000..e5c940a --- /dev/null +++ b/Punic/data/he/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"תקופה"},"year":{"displayName":"שנה","relative-type--1":"השנה שעברה","relative-type-0":"השנה","relative-type-1":"השנה הבאה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנה","relativeTimePattern-count-two":"בעוד שנתיים","relativeTimePattern-count-many":"בעוד {0} שנה","relativeTimePattern-count-other":"בעוד {0} שנים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנה","relativeTimePattern-count-two":"לפני שנתיים","relativeTimePattern-count-many":"לפני {0} שנה","relativeTimePattern-count-other":"לפני {0} שנים"}},"year-short":{"displayName":"שנ׳","relative-type--1":"השנה שעברה","relative-type-0":"השנה","relative-type-1":"השנה הבאה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנה","relativeTimePattern-count-two":"בעוד שנתיים","relativeTimePattern-count-many":"בעוד {0} שנה","relativeTimePattern-count-other":"בעוד {0} שנים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנה","relativeTimePattern-count-two":"לפני שנתיים","relativeTimePattern-count-many":"לפני {0} שנה","relativeTimePattern-count-other":"לפני {0} שנים"}},"year-narrow":{"displayName":"שנ׳","relative-type--1":"השנה שעברה","relative-type-0":"השנה","relative-type-1":"השנה הבאה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנה","relativeTimePattern-count-two":"בעוד שנתיים","relativeTimePattern-count-many":"בעוד {0} שנה","relativeTimePattern-count-other":"בעוד {0} שנים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנה","relativeTimePattern-count-two":"לפני שנתיים","relativeTimePattern-count-many":"לפני {0} שנה","relativeTimePattern-count-other":"לפני {0} שנים"}},"quarter":{"displayName":"רבעון","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"ברבעון הבא","relativeTimePattern-count-two":"בעוד שני רבעונים","relativeTimePattern-count-many":"בעוד {0} רבעונים","relativeTimePattern-count-other":"בעוד {0} רבעונים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"ברבעון הקודם","relativeTimePattern-count-two":"לפני שני רבעונים","relativeTimePattern-count-many":"לפני {0} רבעונים","relativeTimePattern-count-other":"לפני {0} רבעונים"}},"quarter-short":{"displayName":"רבע׳","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"ברבע׳ הבא","relativeTimePattern-count-two":"בעוד שני רבע׳","relativeTimePattern-count-many":"בעוד {0} רבע׳","relativeTimePattern-count-other":"בעוד {0} רבע׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"ברבע׳ הקודם","relativeTimePattern-count-two":"לפני שני רבע׳","relativeTimePattern-count-many":"לפני {0} רבע׳","relativeTimePattern-count-other":"לפני {0} רבע׳"}},"quarter-narrow":{"displayName":"רבע׳","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"ברבע׳ הבא","relativeTimePattern-count-two":"בעוד שני רבע׳","relativeTimePattern-count-many":"בעוד {0} רבע׳","relativeTimePattern-count-other":"בעוד {0} רבע׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"ברבע׳ הקודם","relativeTimePattern-count-two":"לפני שני רבע׳","relativeTimePattern-count-many":"לפני {0} רבע׳","relativeTimePattern-count-other":"לפני {0} רבע׳"}},"month":{"displayName":"חודש","relative-type--1":"החודש שעבר","relative-type-0":"החודש","relative-type-1":"החודש הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד חודש","relativeTimePattern-count-two":"בעוד חודשיים","relativeTimePattern-count-many":"בעוד {0} חודשים","relativeTimePattern-count-other":"בעוד {0} חודשים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני חודש","relativeTimePattern-count-two":"לפני חודשיים","relativeTimePattern-count-many":"לפני {0} חודשים","relativeTimePattern-count-other":"לפני {0} חודשים"}},"month-short":{"displayName":"חו׳","relative-type--1":"החודש שעבר","relative-type-0":"החודש","relative-type-1":"החודש הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד חודש","relativeTimePattern-count-two":"בעוד חודשיים","relativeTimePattern-count-many":"בעוד {0} חודשים","relativeTimePattern-count-other":"בעוד {0} חודשים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני חודש","relativeTimePattern-count-two":"לפני חודשיים","relativeTimePattern-count-many":"לפני {0} חודשים","relativeTimePattern-count-other":"לפני {0} חודשים"}},"month-narrow":{"displayName":"חו׳","relative-type--1":"החודש שעבר","relative-type-0":"החודש","relative-type-1":"החודש הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד חו׳","relativeTimePattern-count-two":"בעוד חודשיים","relativeTimePattern-count-many":"בעוד {0} חו׳","relativeTimePattern-count-other":"בעוד {0} חו׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני חו׳","relativeTimePattern-count-two":"לפני חודשיים","relativeTimePattern-count-many":"לפני {0} חו׳","relativeTimePattern-count-other":"לפני {0} חו׳"}},"week":{"displayName":"שבוע","relative-type--1":"השבוע שעבר","relative-type-0":"השבוע","relative-type-1":"השבוע הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שבוע","relativeTimePattern-count-two":"בעוד שבועיים","relativeTimePattern-count-many":"בעוד {0} שבועות","relativeTimePattern-count-other":"בעוד {0} שבועות"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שבוע","relativeTimePattern-count-two":"לפני שבועיים","relativeTimePattern-count-many":"לפני {0} שבועות","relativeTimePattern-count-other":"לפני {0} שבועות"}},"week-short":{"displayName":"שב׳","relative-type--1":"השבוע שעבר","relative-type-0":"השבוע","relative-type-1":"השבוע הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שב׳","relativeTimePattern-count-two":"בעוד שבועיים","relativeTimePattern-count-many":"בעוד {0} שב׳","relativeTimePattern-count-other":"בעוד {0} שב׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שב׳","relativeTimePattern-count-two":"לפני שבועיים","relativeTimePattern-count-many":"לפני {0} שב׳","relativeTimePattern-count-other":"לפני {0} שב׳"}},"week-narrow":{"displayName":"שב׳","relative-type--1":"השבוע שעבר","relative-type-0":"השבוע","relative-type-1":"השבוע הבא","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שב׳","relativeTimePattern-count-two":"בעוד שבועיים","relativeTimePattern-count-many":"בעוד {0} שב׳","relativeTimePattern-count-other":"בעוד {0} שב׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שבוע","relativeTimePattern-count-two":"לפני שבועיים","relativeTimePattern-count-many":"לפני {0} שב׳","relativeTimePattern-count-other":"לפני {0} שב׳"}},"day":{"displayName":"יום","relative-type--1":"אתמול","relative-type--2":"שלשום","relative-type-0":"היום","relative-type-1":"מחר","relative-type-2":"מחרתיים","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד יום {0}","relativeTimePattern-count-two":"בעוד יומיים","relativeTimePattern-count-many":"בעוד {0} ימים","relativeTimePattern-count-other":"בעוד {0} ימים"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני יום {0}","relativeTimePattern-count-two":"לפני יומיים","relativeTimePattern-count-many":"לפני {0} ימים","relativeTimePattern-count-other":"לפני {0} ימים"}},"day-short":{"displayName":"יום","relative-type--1":"אתמול","relative-type--2":"שלשום","relative-type-0":"היום","relative-type-1":"מחר","relative-type-2":"מחרתיים","relativeTime-type-future":{"relativeTimePattern-count-one":"מחר","relativeTimePattern-count-two":"בעוד יומיים","relativeTimePattern-count-many":"בעוד {0} יום","relativeTimePattern-count-other":"בעוד {0} ימ׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"אתמול","relativeTimePattern-count-two":"לפני יומיים","relativeTimePattern-count-many":"לפני {0} יום","relativeTimePattern-count-other":"לפני {0} ימ׳"}},"day-narrow":{"displayName":"יום","relative-type--1":"אתמול","relative-type--2":"שלשום","relative-type-0":"היום","relative-type-1":"מחר","relative-type-2":"מחרתיים","relativeTime-type-future":{"relativeTimePattern-count-one":"מחר","relativeTimePattern-count-two":"בעוד יומיים","relativeTimePattern-count-many":"בעוד {0} יום","relativeTimePattern-count-other":"בעוד {0} ימ׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"אתמול","relativeTimePattern-count-two":"לפני יומיים","relativeTimePattern-count-many":"לפני {0} יום","relativeTimePattern-count-other":"לפני {0} ימ׳"}},"weekday":{"displayName":"יום בשבוע"},"sun":{"relative-type--1":"יום ראשון שעבר","relative-type-0":"יום ראשון","relative-type-1":"יום ראשון הבא"},"sun-short":{"relative-type--1":"יום א׳ שעבר","relative-type-0":"יום א׳","relative-type-1":"יום א׳ הבא"},"sun-narrow":{"relative-type--1":"יום א׳ שעבר","relative-type-0":"יום א׳","relative-type-1":"יום א׳ הבא"},"mon":{"relative-type--1":"יום שני שעבר","relative-type-0":"יום שני","relative-type-1":"יום שני הבא"},"mon-short":{"relative-type--1":"יום ב׳ שעבר","relative-type-0":"יום ב׳","relative-type-1":"יום ב׳ הבא"},"mon-narrow":{"relative-type--1":"יום ב׳ שעבר","relative-type-0":"יום ב׳","relative-type-1":"יום ב׳ הבא"},"tue":{"relative-type--1":"יום שלישי שעבר","relative-type-0":"יום שלישי","relative-type-1":"יום שלישי הבא"},"tue-short":{"relative-type--1":"יום ג׳ שעבר","relative-type-0":"יום ג׳","relative-type-1":"יום ג׳ הבא"},"tue-narrow":{"relative-type--1":"יום ג׳ שעבר","relative-type-0":"יום ג׳","relative-type-1":"יום ג׳ הבא"},"wed":{"relative-type--1":"יום רביעי שעבר","relative-type-0":"יום רביעי","relative-type-1":"יום רביעי הבא"},"wed-short":{"relative-type--1":"יום ד׳ שעבר","relative-type-0":"יום ד׳","relative-type-1":"יום ד׳ הבא"},"wed-narrow":{"relative-type--1":"יום ד׳ שעבר","relative-type-0":"יום ד׳","relative-type-1":"יום ד׳ הבא"},"thu":{"relative-type--1":"יום חמישי שעבר","relative-type-0":"יום חמישי","relative-type-1":"יום חמישי הבא"},"thu-short":{"relative-type--1":"יום ה׳ שעבר","relative-type-0":"יום ה׳","relative-type-1":"יום ה׳ הבא"},"thu-narrow":{"relative-type--1":"יום ה׳ שעבר","relative-type-0":"יום ה׳","relative-type-1":"יום ה׳ הבא"},"fri":{"relative-type--1":"יום שישי שעבר","relative-type-0":"יום שישי","relative-type-1":"יום שישי הבא"},"fri-short":{"relative-type--1":"יום ו׳ שעבר","relative-type-0":"יום ו׳","relative-type-1":"יום ו׳ הבא"},"fri-narrow":{"relative-type--1":"יום ו׳ שעבר","relative-type-0":"יום ו׳","relative-type-1":"יום ו׳ הבא"},"sat":{"relative-type--1":"יום שבת שעבר","relative-type-0":"יום שבת","relative-type-1":"יום שבת הבא"},"sat-short":{"relative-type--1":"שבת שעברה","relative-type-0":"שבת","relative-type-1":"שבת הבאה"},"sat-narrow":{"relative-type--1":"שבת שעברה","relative-type-0":"שבת","relative-type-1":"שבת הבאה"},"dayperiod":{"displayName":"לפנה״צ/אחה״צ"},"hour":{"displayName":"שעה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שעה","relativeTimePattern-count-two":"בעוד שעתיים","relativeTimePattern-count-many":"בעוד {0} שעות","relativeTimePattern-count-other":"בעוד {0} שעות"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שעה","relativeTimePattern-count-two":"לפני שעתיים","relativeTimePattern-count-many":"לפני {0} שעות","relativeTimePattern-count-other":"לפני {0} שעות"}},"hour-short":{"displayName":"שעה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שעה","relativeTimePattern-count-two":"בעוד שעתיים","relativeTimePattern-count-many":"בעוד {0} שע׳","relativeTimePattern-count-other":"בעוד {0} שע׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שעה","relativeTimePattern-count-two":"לפני שעתיים","relativeTimePattern-count-many":"לפני {0} שע׳","relativeTimePattern-count-other":"לפני {0} שע׳"}},"hour-narrow":{"displayName":"שע׳","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שעה","relativeTimePattern-count-two":"בעוד שעתיים","relativeTimePattern-count-many":"בעוד {0} שע׳","relativeTimePattern-count-other":"בעוד {0} שע׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שעה","relativeTimePattern-count-two":"לפני שעתיים","relativeTimePattern-count-many":"לפני {0} שע׳","relativeTimePattern-count-other":"לפני {0} שע׳"}},"minute":{"displayName":"דקה","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד דקה","relativeTimePattern-count-two":"בעוד שתי דקות","relativeTimePattern-count-many":"בעוד {0} דקות","relativeTimePattern-count-other":"בעוד {0} דקות"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני דקה","relativeTimePattern-count-two":"לפני שתי דקות","relativeTimePattern-count-many":"לפני {0} דקות","relativeTimePattern-count-other":"לפני {0} דקות"}},"minute-short":{"displayName":"דק׳","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד דקה","relativeTimePattern-count-two":"בעוד שתי דק׳","relativeTimePattern-count-many":"בעוד {0} דק׳","relativeTimePattern-count-other":"בעוד {0} דק׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני דקה","relativeTimePattern-count-two":"לפני {0} דק׳","relativeTimePattern-count-many":"לפני {0} דק׳","relativeTimePattern-count-other":"לפני {0} דק׳"}},"minute-narrow":{"displayName":"דק׳","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד דקה","relativeTimePattern-count-two":"בעוד שתי דק׳","relativeTimePattern-count-many":"בעוד {0} דק׳","relativeTimePattern-count-other":"בעוד {0} דק׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני דקה","relativeTimePattern-count-two":"לפני שתי דק׳","relativeTimePattern-count-many":"לפני {0} דק׳","relativeTimePattern-count-other":"לפני {0} דק׳"}},"second":{"displayName":"שנייה","relative-type-0":"עכשיו","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנייה","relativeTimePattern-count-two":"בעוד שתי שניות","relativeTimePattern-count-many":"בעוד {0} שניות","relativeTimePattern-count-other":"בעוד {0} שניות"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנייה","relativeTimePattern-count-two":"לפני שתי שניות","relativeTimePattern-count-many":"לפני {0} שניות","relativeTimePattern-count-other":"לפני {0} שניות"}},"second-short":{"displayName":"שנ׳","relative-type-0":"עכשיו","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנ׳","relativeTimePattern-count-two":"בעוד שתי שנ׳","relativeTimePattern-count-many":"בעוד {0} שנ׳","relativeTimePattern-count-other":"בעוד {0} שנ׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנ׳","relativeTimePattern-count-two":"לפני שתי שנ׳","relativeTimePattern-count-many":"לפני {0} שנ׳","relativeTimePattern-count-other":"לפני {0} שנ׳"}},"second-narrow":{"displayName":"שנ׳","relative-type-0":"עכשיו","relativeTime-type-future":{"relativeTimePattern-count-one":"בעוד שנ׳","relativeTimePattern-count-two":"בעוד שתי שנ׳","relativeTimePattern-count-many":"בעוד {0} שנ׳","relativeTimePattern-count-other":"בעוד {0} שנ׳"},"relativeTime-type-past":{"relativeTimePattern-count-one":"לפני שנ׳","relativeTimePattern-count-two":"לפני שתי שנ׳","relativeTimePattern-count-many":"לפני {0} שנ׳","relativeTimePattern-count-other":"לפני {0} שנ׳"}},"zone":{"displayName":"אזור"}} \ No newline at end of file diff --git a/Punic/data/he/languages.json b/Punic/data/he/languages.json new file mode 100644 index 0000000..7c1353e --- /dev/null +++ b/Punic/data/he/languages.json @@ -0,0 +1 @@ +{"aa":"אפארית","ab":"אבחזית","ace":"אכינזית","ach":"אקולי","ada":"אדנמה","ady":"אדיגית","ae":"אבסטן","aeb":"aeb","af":"אפריקאנס","afh":"אפריהילי","agq":"אהיים","ain":"אינו","ak":"אקאן","akk":"אכדית","akz":"akz","ale":"אלאוט","aln":"aln","alt":"אלטאי דרומית","am":"אמהרית","an":"אראגונית","ang":"אנגלית עתיקה","anp":"אנג׳יקה","ar":"ערבית","ar-001":"ערבית ספרותית","arc":"ארמית","arn":"אראוקנית","aro":"aro","arp":"ארפהו","arq":"arq","arw":"ארוואק","ary":"ary","arz":"arz","as":"אסאמית","asa":"אסו","ase":"ase","ast":"אסטורית","av":"אבארית","avk":"avk","awa":"אוואדית","ay":"איימארית","az":"אזרית","az-alt-short":"אזרית","azb":"azb","ba":"בשקירית","bal":"באלוצ׳י","ban":"בלינזית","bar":"בווארית","bas":"בסאא","bax":"באקס","bbc":"bbc","bbj":"גומל","be":"בלארוסית","bej":"בז׳ה","bem":"במבה","bew":"bew","bez":"בנה","bfd":"באפוט","bfq":"bfq","bg":"בולגרית","bho":"בוג׳פורי","bi":"ביסלמה","bik":"ביקול","bin":"ביני","bjn":"bjn","bkm":"קום","bla":"סיקסיקה","bm":"במבארה","bn":"בנגלית","bo":"טיבטית","bpy":"bpy","bqi":"bqi","br":"ברטונית","bra":"בראג׳","brh":"brh","brx":"בודו","bs":"בוסנית","bss":"אקוסה","bua":"בוריאט","bug":"בוגינזית","bum":"בולו","byn":"בלין","byv":"מדומבה","ca":"קטלאנית","cad":"קאדו","car":"קאריב","cay":"קאיוגה","cch":"אטסם","ce":"צ׳צ׳נית","ceb":"קבואנו","cgg":"צ׳יגה","ch":"צ׳מורו","chb":"צ׳יבצ׳ה","chg":"צ׳אגאטאי","chk":"צ׳וקסה","chm":"מארי","chn":"ניב צ׳ינוק","cho":"צ׳וקטאו","chp":"צ׳יפוויאן","chr":"צ׳רוקי","chy":"שאיין","ckb":"כורדית סוראנית","co":"קורסיקנית","cop":"קופטית","cps":"cps","cr":"קרי","crh":"טטרית של קרים","cs":"צ׳כית","csb":"קשוביאן","cu":"סלאבית כנסייתית עתיקה","cv":"צ׳ובאש","cy":"ולשית","da":"דנית","dak":"דקוטה","dar":"דרגווה","dav":"טאיטה","de":"גרמנית","de-AT":"גרמנית אוסטרית","de-CH":"גרמנית שוויצרית (גבוהה)","del":"דלאוור","den":"סלאבית","dgr":"דוגריב","din":"דינקה","dje":"זארמה","doi":"דוגרי","dsb":"סורבית נמוכה","dtp":"dtp","dua":"דואלה","dum":"הולנדית תיכונה","dv":"דיבהי","dyo":"הולה-פוניי","dyu":"דיולה","dz":"דזונקה","dzg":"דזאנגה","ebu":"אמבו","ee":"אווה","efi":"אפיק","egl":"egl","egy":"מצרית עתיקה","eka":"אקיוק","el":"יוונית","elx":"עילמית","en":"אנגלית","en-AU":"אנגלית אוסטרלית","en-CA":"אנגלית קנדית","en-GB":"אנגלית בריטית","en-GB-alt-short":"אנגלית בריטית","en-US":"אנגלית אמריקאית","en-US-alt-short":"אנגלית אמריקאית","enm":"אנגלית תיכונה","eo":"אספרנטו","es":"ספרדית","es-419":"ספרדית לטינו־אמריקאית","es-ES":"ספרדית אירופאית","es-MX":"ספרדית מקסיקנית","esu":"esu","et":"אסטונית","eu":"בסקית","ewo":"אוונדו","ext":"ext","fa":"פרסית","fan":"פנג","fat":"פאנטי","ff":"פולה","fi":"פינית","fil":"פיליפינית","fit":"fit","fj":"פיג׳ית","fo":"פארואזית","fon":"פון","fr":"צרפתית","fr-CA":"צרפתית קנדית","fr-CH":"צרפתית שוויצרית","frc":"frc","frm":"צרפתית תיכונה","fro":"צרפתית עתיקה","frp":"frp","frr":"פריזית צפונית","frs":"פריזיאן מזרחית","fur":"פריולית","fy":"פריזית","ga":"אירית","gaa":"גא","gag":"גגאוזית","gan":"gan","gay":"גאיו","gba":"גבאיה","gbz":"gbz","gd":"גאלית סקוטית","gez":"געז","gil":"גילברטזית","gl":"גליציאנית","glk":"glk","gmh":"גרמנית בינונית-גבוהה","gn":"גוארני","goh":"גרמנית עתיקה גבוהה","gom":"gom","gon":"גונדי","gor":"גורונטאלו","got":"גותית","grb":"גרבו","grc":"יוונית עתיקה","gsw":"גרמנית שוויצרית","gu":"גוג׳ראטית","guc":"guc","gur":"gur","guz":"גוסי","gv":"מאנית","gwi":"גוויצ׳ין","ha":"האוסה","hai":"האידה","hak":"hak","haw":"הוואית","he":"עברית","hi":"הינדי","hif":"hif","hil":"היליגאינון","hit":"חיתית","hmn":"מונג","ho":"הארי מוטו","hr":"קרואטית","hsb":"סורבית גבוהה","hsn":"hsn","ht":"האיטית","hu":"הונגרית","hup":"הופה","hy":"ארמנית","hz":"הררו","ia":"‏אינטרלינגואה","iba":"איבאן","ibb":"איביביו","id":"אינדונזית","ie":"אינטרלינגה","ig":"איגבו","ii":"סיצ׳ואן יי","ik":"אינופיאק","ilo":"אילוקו","inh":"אינגושית","io":"אידו","is":"איסלנדית","it":"איטלקית","iu":"אינוקטיטוט","izh":"izh","ja":"יפנית","jam":"jam","jbo":"לויבאן","jgo":"נגומה","jmc":"מצ׳אמה","jpr":"פרסית יהודית","jrb":"ערבית יהודית","jut":"jut","jv":"יאוונית","ka":"גאורגית","kaa":"קארא-קלפאק","kab":"קבילה","kac":"קצ׳ין","kaj":"ג׳יו","kam":"קמבה","kaw":"קאווי","kbd":"קברדית","kbl":"קנמבו","kcg":"טיאפ","kde":"מקונדה","kea":"קאבוורדיאנו","ken":"ken","kfo":"קורו","kg":"קונגו","kgp":"kgp","kha":"קאסי","kho":"קוטאנזית","khq":"קוירה צ׳יני","khw":"khw","ki":"קיקויו","kiu":"kiu","kj":"קואניאמה","kk":"קזחית","kkj":"קאקו","kl":"קאלאליסוטית","kln":"קאלנג׳ין","km":"קמרית","kmb":"קימבונדו","kn":"קנאדה","ko":"קוריאנית","koi":"קומי-פרמיאקית","kok":"קונקאני","kos":"קוסראיאן","kpe":"קפלה","kr":"קאנורי","krc":"קראצ׳י-בלקר","kri":"kri","krj":"krj","krl":"קארלית","kru":"קורוק","ks":"קשמירית","ksb":"שמבאלה","ksf":"באפיה","ksh":"קולוניאן","ku":"כורדית","kum":"קומיק","kut":"קוטנאי","kv":"קומי","kw":"קורנית","ky":"קירגיזית","la":"לטינית","lad":"לדינו","lag":"לאנגי","lah":"לנדה","lam":"למבה","lb":"לוקסמבורגית","lez":"לזגית","lfn":"lfn","lg":"גאנדה","li":"לימבורגיש","lij":"lij","liv":"liv","lkt":"לקוטה","lmo":"lmo","ln":"לינגלה","lo":"לאית","lol":"מונגו","loz":"לוזי","lt":"ליטאית","ltg":"ltg","lu":"לובה-קטנגה","lua":"לובה, לולואה","lui":"לואיסנו","lun":"לונדה","luo":"לואו","lus":"לושאי","luy":"לויה","lv":"לטבית","lzh":"lzh","lzz":"lzz","mad":"מדורסה","maf":"מאפא","mag":"מאגאהית","mai":"מאיטילית","mak":"מקסאר","man":"מנדינגו","mas":"מאסאית","mde":"מאבא","mdf":"מוקשה","mdr":"מנדאר","men":"מנדה","mer":"מרו","mfe":"מוריסיין","mg":"מלגשית","mga":"אירית תיכונה","mgh":"מקואה-מיטו","mgo":"מטא","mh":"מרשאלס","mi":"מאורית","mic":"מיקמק","min":"מיננגקבאו","mk":"מקדונית","ml":"מלאיאלם","mn":"מונגולית","mnc":"מנצ׳ו","mni":"מניפורית","moh":"מוהוק","mos":"מוסי","mr":"מרטהי","mrj":"mrj","ms":"מלאית","mt":"מלטית","mua":"מונדאנג","mul":"מספר שפות","mus":"קריק","mwl":"מירנדזית","mwr":"מרווארי","mwv":"mwv","my":"בורמזית","mye":"מאיין","myv":"ארזיה","mzn":"mzn","na":"נאורית","nan":"nan","nap":"נפוליטנית","naq":"נאמה","nb":"‏נורבגית ספרותית","nd":"צפון נדבלה","nds":"גרמנית תחתית","ne":"נפאלית","new":"נווארי","ng":"נדונגה","nia":"ניאס","niu":"ניואיאן","njo":"njo","nl":"הולנדית","nl-BE":"פלמית","nmg":"קוואסיו","nn":"נורבגית חדשה","nnh":"נגיאמבון","no":"נורבגית","nog":"נוגאי","non":"‏נורדית עתיקה","nov":"nov","nqo":"נ׳קו","nr":"דרום נדבלה","nso":"סוטו הצפונית","nus":"נואר","nv":"נבחו","nwc":"נווארית קלאסית","ny":"ניאנג׳ה","nym":"ניאמווזי","nyn":"ניאנקולה","nyo":"ניורו","nzi":"נזימה","oc":"אוקסיטנית","oj":"אוג׳יבווה","om":"אורומו","or":"אוריה","os":"אוסטית","osa":"אוסג׳ה","ota":"טורקית עותומנית","pa":"פנג׳אבית","pag":"פנגסינאן","pal":"פלאבי","pam":"פמפאניה","pap":"פפיאמנטו","pau":"פלוואן","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"פרסית עתיקה","pfl":"pfl","phn":"פניקית","pi":"פאלי","pl":"פולנית","pms":"pms","pnt":"pnt","pon":"פונפיאן","prg":"prg","pro":"פרובנסאל עתיקה","ps":"פאשטו","ps-alt-variant":"פושטו","pt":"פורטוגלית","pt-BR":"פורטוגלית ברזילאית","pt-PT":"פורטוגלית אירופאית","qu":"קצ׳ואה","quc":"קיצ׳ה","qug":"qug","raj":"ראג׳סטן","rap":"רפאנוי","rar":"ררוטונגאן","rgn":"rgn","rif":"rif","rm":"רומאנש","rn":"קירונדי","ro":"רומנית","ro-MD":"מולדבית","rof":"רומבו","rom":"רומאנית","root":"רוט","rtm":"rtm","ru":"רוסית","rue":"rue","rug":"rug","rup":"ארומנית","rw":"קינירואנדה","rwk":"רווא","sa":"סנסקריט","sad":"סנדאווה","sah":"סאחה","sam":"ארמית שומרונית","saq":"סמבורו","sas":"ססאק","sat":"סאנטלי","saz":"saz","sba":"נגמבאי","sbp":"סאנגו","sc":"סרדינית","scn":"סיציליאנית","sco":"סקוטית","sd":"סינדהית","sdc":"sdc","se":"לאפית צפונית","see":"סנקה","seh":"סנה","sei":"sei","sel":"סלקופ","ses":"קויראבורו סני","sg":"סנגו","sga":"אירית עתיקה","sgs":"sgs","sh":"סרבו-קרואטית","shi":"טצ׳להיט","shn":"שאן","shu":"ערבית צ׳אדית","si":"סינהלה","sid":"סידמו","sk":"סלובקית","sl":"סלובנית","sli":"sli","sly":"sly","sm":"סמואית","sma":"סאמי דרומית","smj":"לולה סאמי","smn":"אינארי סאמי","sms":"סקולט סאמי","sn":"שונה","snk":"סונינקה","so":"סומלית","sog":"סוגדיאן","sq":"אלבנית","sr":"סרבית","srn":"סרנאן טונגו","srr":"סרר","ss":"סיסוואטי","ssy":"סאהו","st":"ססות׳ו","stq":"stq","su":"סונדנית","suk":"סוקומה","sus":"סוסו","sux":"שומרית","sv":"שוודית","sw":"סווהילית","swb":"קומורו","swc":"סווהילי קונגולטזית","syc":"סירית קלאסית","syr":"סורית","szl":"szl","ta":"טמילית","tcy":"tcy","te":"טלוגו","tem":"טימנה","teo":"טסו","ter":"טרנו","tet":"טטום","tg":"טג׳יקית","th":"תאית","ti":"טיגרינאית","tig":"טיגרית","tiv":"טיב","tk":"טורקמנית","tkl":"טוקלאו","tkr":"tkr","tl":"טגלוג","tlh":"קלינגון","tli":"טלינגיט","tly":"tly","tmh":"טמאשק","tn":"טוניסיה","to":"טונגן","tog":"ניאסה טונגה","tpi":"טוק פיסין","tr":"טורקית","tru":"tru","trv":"טרוקו","ts":"טסונגה","tsd":"tsd","tsi":"טסימשיאן","tt":"טטרית","ttt":"ttt","tum":"טומבוקה","tvl":"טובאלו","tw":"טווי","twq":"טסוואק","ty":"טהיטית","tyv":"טובינית","tzm":"טמזייט של מרכז מרוקו","udm":"אודמורט","ug":"אויגהור","ug-alt-variant":"אויגור","uga":"אוגריתית","uk":"אוקראינית","umb":"אומבונדו","und":"שפה לא ידועה","ur":"אורדו","uz":"אוזבקית","vai":"ואי","ve":"וונדה","vec":"vec","vep":"vep","vi":"ויאטנמית","vls":"vls","vmf":"vmf","vo":"‏וולאפיק","vot":"ווטיק","vro":"vro","vun":"וונג׳ו","wa":"וואלון","wae":"וואלסר","wal":"וולאמו","war":"ווראי","was":"וואשו","wo":"ג׳ולוף","wuu":"wuu","xal":"קלמיק","xh":"קסוסה","xmf":"xmf","xog":"סוגה","yao":"יאו","yap":"יאפזית","yav":"יאנגבן","ybb":"ימבה","yi":"יידיש","yo":"יורובה","yrl":"yrl","yue":"קנטונזית","za":"ז׳ואנג","zap":"זאפוטק","zbl":"בליסימבולס","zea":"zea","zen":"זנאגה","zgh":"תמזיע׳ת מרוקאית תקנית","zh":"סינית","zh-Hans":"סינית מפושטת","zh-Hant":"סינית מסורתית","zu":"זולו","zun":"זוני","zxx":"ללא תוכן לשוני","zza":"זאזא"} \ No newline at end of file diff --git a/Punic/data/he/listPatterns.json b/Punic/data/he/listPatterns.json new file mode 100644 index 0000000..bf18ef2 --- /dev/null +++ b/Punic/data/he/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ו%2$s","2":"%1$s ו%2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ו%2$s","2":"%1$s ו%2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ו%2$s","2":"%1$s ו%2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ו%2$s","2":"%1$s ו%2$s"}} \ No newline at end of file diff --git a/Punic/data/he/localeDisplayNames.json b/Punic/data/he/localeDisplayNames.json new file mode 100644 index 0000000..3ba1053 --- /dev/null +++ b/Punic/data/he/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s:‏ %2$s"},"keys":{"calendar":"לוח שנה","colAlternate":"התעלם מסמלים במיון","colBackwards":"מיון לפי הטעמות בסדר הפוך","colCaseFirst":"סידור לפי אותיות רישיות/קטנות","colCaseLevel":"מיון תלוי רישיות","colHiraganaQuaternary":"מיון קאנה","colNormalization":"מיון מנורמל","colNumeric":"מיון לפי מספרים","colStrength":"עוצמת המיון","collation":"סדר מיון","currency":"מטבע","numbers":"מספרים","timezone":"אזור זמן","va":"משתנה אזור","variableTop":"מיין כסמלים","x":"שימוש פרטי"},"types":{"numbers":{"vaii":"ספרות ואי"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"לוח השנה הסיני Minguo"},"colStrength":{"tertiary":"מיין הטעמות/רישיות/רוחב"},"colCaseFirst":{"upper":"מיין תחילה לפי אותיות רישיות"},"colBackwards":{"yes":"מיין לפי הטעמות בסדר הפוך"},"colCaseLevel":{"yes":"מיין באופן תלוי רישיות"},"colHiraganaQuaternary":{"yes":"מיין קאנה אחרת"},"colNormalization":{"yes":"מיין לפי Unicode מנורמל"},"colNumeric":{"yes":"מיין ספרות לפי סדר מספרי"},"colAlternate":{"shifted":"מיין תוך התעלמות מסמלים"}},"codePatterns":{"language":"שפה:‏ %1$s","script":"כתב: %1$s","territory":"אזור: %1$s"}} \ No newline at end of file diff --git a/Punic/data/he/numbers.json b/Punic/data/he/numbers.json new file mode 100644 index 0000000..01e5597 --- /dev/null +++ b/Punic/data/he/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"‎+","minusSign":"‎-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/he/territories.json b/Punic/data/he/territories.json new file mode 100644 index 0000000..18ab654 --- /dev/null +++ b/Punic/data/he/territories.json @@ -0,0 +1 @@ +{"001":"העולם","002":"אפריקה","003":"צפון אמריקה","005":"דרום אמריקה","009":"אוקיאניה","011":"מערב אפריקה","013":"מרכז אמריקה","014":"מזרח אפריקה","015":"צפון אפריקה","017":"מרכז אפריקה","018":"דרום יבשת אפריקה","019":"אמריקה","021":"אמריקה הצפונית","029":"האיים הקריביים","030":"מזרח אסיה","034":"דרום אסיה","035":"דרום־מזרח אסיה","039":"דרום אירופה","053":"אוסטרלאסיה","054":"מלנזיה","057":"אזור מיקרונזיה","061":"פולינזיה","142":"אסיה","143":"מרכז אסיה","145":"מערב אסיה","150":"אירופה","151":"מזרח אירופה","154":"צפון אירופה","155":"מערב אירופה","419":"אמריקה הלטינית","AC":"האי אסנשן","AD":"אנדורה","AE":"איחוד האמירויות הערביות","AF":"אפגניסטן","AG":"אנטיגואה וברבודה","AI":"אנגילה","AL":"אלבניה","AM":"ארמניה","AN":"אנטילים הולנדיים","AO":"אנגולה","AQ":"אנטארקטיקה","AR":"ארגנטינה","AS":"סמואה האמריקנית","AT":"אוסטריה","AU":"אוסטרליה","AW":"ארובה","AX":"איי אולנד","AZ":"אזרבייג׳ן","BA":"בוסניה והרצגובינה","BB":"ברבדוס","BD":"בנגלדש","BE":"בלגיה","BF":"בורקינה פאסו","BG":"בולגריה","BH":"בחריין","BI":"בורונדי","BJ":"בנין","BL":"סנט ברתולומיאו","BM":"ברמודה","BN":"ברוניי","BO":"בוליביה","BQ":"האיים הקריביים ההולנדיים","BR":"ברזיל","BS":"איי בהאמה","BT":"בהוטן","BV":"איי בובה","BW":"בוטסוואנה","BY":"בלארוס","BZ":"בליז","CA":"קנדה","CC":"איי קוקוס (קילינג)","CD":"קונגו - קינשאסה","CD-alt-variant":"קונגו (הרפובליקה הדמוקרטית של קונגו)","CF":"הרפובליקה של מרכז אפריקה","CG":"קונגו - ברזאויל","CG-alt-variant":"קונגו (רפובליקה)","CH":"שווייץ","CI":"חוף השנהב","CI-alt-variant":"CI","CK":"איי קוק","CL":"צ׳ילה","CM":"קמרון","CN":"סין","CO":"קולומביה","CP":"האי קליפרטון","CR":"קוסטה ריקה","CU":"קובה","CV":"כף ורדה","CW":"קוראסאו","CX":"אי חג המולד","CY":"קפריסין","CZ":"צ׳כיה","DE":"גרמניה","DG":"דייגו גרסיה","DJ":"ג׳יבוטי","DK":"דנמרק","DM":"דומיניקה","DO":"הרפובליקה הדומיניקנית","DZ":"אלג׳יריה","EA":"סאוטה ומלייה","EC":"אקוודור","EE":"אסטוניה","EG":"מצרים","EH":"סהרה המערבית","ER":"אריתריאה","ES":"ספרד","ET":"אתיופיה","EU":"האיחוד האירופי","FI":"פינלנד","FJ":"פיג׳י","FK":"איי פוקלנד","FK-alt-variant":"איי פוקלנד (איי מלווינס)","FM":"מיקרונזיה","FO":"איי פארו","FR":"צרפת","GA":"גאבון","GB":"הממלכה המאוחדת","GB-alt-short":"בריטניה","GD":"גרנדה","GE":"גאורגיה","GF":"גיאנה הצרפתית","GG":"גרנסי","GH":"גאנה","GI":"גיברלטר","GL":"גרינלנד","GM":"גמביה","GN":"גיניאה","GP":"גוואדלופ","GQ":"גיניאה המשוונית","GR":"יוון","GS":"ג׳ורג׳יה הדרומית ואיי סנדוויץ׳ הדרומיים","GT":"גואטמלה","GU":"גואם","GW":"גיניאה-ביסאו","GY":"גיאנה","HK":"הונג קונג - מחוז מנהלי מיוחד של סין","HK-alt-short":"הונג קונג","HM":"איי הרד ואיי מקדונלד","HN":"הונדורס","HR":"קרואטיה","HT":"האיטי","HU":"הונגריה","IC":"האיים הקנריים","ID":"אינדונזיה","IE":"אירלנד","IL":"ישראל","IM":"האי מאן","IN":"הודו","IO":"טריטוריה בריטית באוקיאנוס ההודי","IQ":"עיראק","IR":"איראן","IS":"איסלנד","IT":"איטליה","JE":"ג׳רסי","JM":"ג׳מייקה","JO":"ירדן","JP":"יפן","KE":"קניה","KG":"קירגיזסטן","KH":"קמבודיה","KI":"קיריבאטי","KM":"קומורוס","KN":"סנט קיטס ונוויס","KP":"קוריאה הצפונית","KR":"קוריאה הדרומית","KW":"כווית","KY":"איי קיימן","KZ":"קזחסטן","LA":"לאוס","LB":"לבנון","LC":"סנט לוסיה","LI":"ליכטנשטיין","LK":"סרי לנקה","LR":"ליבריה","LS":"לסוטו","LT":"ליטא","LU":"לוקסמבורג","LV":"לטביה","LY":"לוב","MA":"מרוקו","MC":"מונקו","MD":"מולדובה","ME":"מונטנגרו","MF":"סנט מרטין","MG":"מדגסקר","MH":"איי מרשל","MK":"מקדוניה","MK-alt-variant":"מקדוניה (הרפובליקה היוגוסלבית לשעבר מקדוניה)","ML":"מאלי","MM":"מיאנמאר (בורמה)‎","MN":"מונגוליה","MO":"מקאו - מחוז מנהלי מיוחד של סין","MO-alt-short":"מקאו","MP":"איי מריאנה הצפוניים","MQ":"מרטיניק","MR":"מאוריטניה","MS":"מונסראט","MT":"מלטה","MU":"מאוריציוס","MV":"האיים המלדיביים","MW":"מלאווי","MX":"מקסיקו","MY":"מלזיה","MZ":"מוזמביק","NA":"נמיביה","NC":"קלדוניה החדשה","NE":"ניז׳ר","NF":"איי נורפוק","NG":"ניגריה","NI":"ניקרגואה","NL":"הולנד","NO":"נורווגיה","NP":"נפאל","NR":"נאורו","NU":"ניווה","NZ":"ניו זילנד","OM":"עומאן","PA":"פנמה","PE":"פרו","PF":"פולינזיה הצרפתית","PG":"פפואה גיניאה החדשה","PH":"פיליפינים","PK":"פקיסטן","PL":"פולין","PM":"סנט פייר ומיקלון","PN":"איי פיטקרן","PR":"פורטו ריקו","PS":"השטחים הפלסטיניים","PS-alt-short":"פלסטין","PT":"פורטוגל","PW":"פאלאו","PY":"פרגוואי","QA":"קטאר","QO":"אוקיאניה חיצונית","RE":"ראוניון","RO":"רומניה","RS":"סרביה","RU":"רוסיה","RW":"רואנדה","SA":"ערב הסעודית","SB":"איי שלמה","SC":"איי סיישל","SD":"סודן","SE":"שוודיה","SG":"סינגפור","SH":"סנט הלנה","SI":"סלובניה","SJ":"סוולבארד ויאן מאיין","SK":"סלובקיה","SL":"סיירה לאונה","SM":"סן מרינו","SN":"סנגל","SO":"סומליה","SR":"סורינם","SS":"דרום סודן","ST":"סאו טומה ופרינסיפה","SV":"אל סלבדור","SX":"סינט מארטן","SY":"סוריה","SZ":"סווזילנד","TA":"טריסטן דה קונה","TC":"איי טורקס וקאיקוס","TD":"צ׳אד","TF":"טריטוריות דרומיות של צרפת","TG":"טוגו","TH":"תאילנד","TJ":"טג׳יקיסטן","TK":"טוקלאו","TL":"טימור לסטה","TL-alt-variant":"מזרח טימור","TM":"טורקמניסטן","TN":"תוניסיה","TO":"טונגה","TR":"טורקיה","TT":"טרינידד וטובגו","TV":"טובלו","TW":"טייוואן","TZ":"טנזניה","UA":"אוקראינה","UG":"אוגנדה","UM":"איים לחוף ארצות הברית","US":"ארצות הברית","US-alt-short":"ארה״ב","UY":"אורוגוואי","UZ":"אוזבקיסטן","VA":"הוותיקן","VC":"סנט וינסנט והגרנדינים","VE":"ונצואלה","VG":"איי הבתולה הבריטיים","VI":"איי הבתולה האמריקניים","VN":"וייטנאם","VU":"ונואטו","WF":"איי ווליס ופוטונה","WS":"סמואה","XK":"קוסובו","YE":"תימן","YT":"מאיוט","ZA":"דרום אפריקה","ZM":"זמביה","ZW":"זימבאבווה","ZZ":"אזור לא ידוע"} \ No newline at end of file diff --git a/Punic/data/he/timeZoneNames.json b/Punic/data/he/timeZoneNames.json new file mode 100644 index 0000000..b1726e5 --- /dev/null +++ b/Punic/data/he/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"שעון %1$s","regionFormat-type-standard":"שעון %1$s (חורף)","regionFormat-type-daylight":"שעון %1$s (קיץ)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"אדאק"},"Anchorage":{"exemplarCity":"אנקורג׳"},"Anguilla":{"exemplarCity":"אנגווילה"},"Antigua":{"exemplarCity":"אנטיגואה"},"Araguaina":{"exemplarCity":"אראגואינה"},"Argentina":{"La_Rioja":{"exemplarCity":"לה ריוחה"},"Rio_Gallegos":{"exemplarCity":"ריו גאייגוס"},"Salta":{"exemplarCity":"סלטה"},"San_Juan":{"exemplarCity":"סן חואן"},"San_Luis":{"exemplarCity":"סן לואיס"},"Tucuman":{"exemplarCity":"טוקומן"},"Ushuaia":{"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":"אל סלבדור"},"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":{"Knox":{"exemplarCity":"נוקס, אינדיאנה"},"Marengo":{"exemplarCity":"מרנגו, אינדיאנה"},"Petersburg":{"exemplarCity":"פיטרסבורג, אינדיאנה"},"Tell_City":{"exemplarCity":"טל סיטי, אינדיאנה"},"Vevay":{"exemplarCity":"ויוואיי, אינדיאנה"},"Vincennes":{"exemplarCity":"וינסנס, אינדיאנה"},"Winamac":{"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":"ביולה, צפון דקוטה"},"Center":{"exemplarCity":"סנטר, צפון דקוטה"},"New_Salem":{"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":"אנדורה"},"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":"קייב"},"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":"טיראנה"},"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":"בנגקוק"},"Beirut":{"exemplarCity":"ביירות"},"Bishkek":{"exemplarCity":"בישקק"},"Brunei":{"exemplarCity":"ברוניי"},"Calcutta":{"exemplarCity":"קולקטה"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"צ׳ואיבלסאן"},"Chongqing":{"exemplarCity":"צ׳ונגקינג"},"Colombo":{"exemplarCity":"קולומבו"},"Damascus":{"exemplarCity":"דמשק"},"Dhaka":{"exemplarCity":"דאקה"},"Dili":{"exemplarCity":"דילי"},"Dubai":{"exemplarCity":"דובאי"},"Dushanbe":{"exemplarCity":"דושנבה"},"Gaza":{"exemplarCity":"עזה"},"Harbin":{"exemplarCity":"חרבין"},"Hebron":{"exemplarCity":"חברון"},"Hong_Kong":{"exemplarCity":"הונג קונג"},"Hovd":{"exemplarCity":"חובד"},"Irkutsk":{"exemplarCity":"אירקוטסק"},"Jakarta":{"exemplarCity":"ג׳קרטה"},"Jayapura":{"exemplarCity":"ג׳איאפורה"},"Jerusalem":{"exemplarCity":"ירושלים"},"Kabul":{"exemplarCity":"קאבול"},"Kamchatka":{"exemplarCity":"קמצ׳טקה"},"Karachi":{"exemplarCity":"קרצ׳י"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"טאיפיי"},"Tashkent":{"exemplarCity":"טשקנט"},"Tbilisi":{"exemplarCity":"טביליסי"},"Tehran":{"exemplarCity":"טהרן"},"Thimphu":{"exemplarCity":"ת׳ימפו"},"Tokyo":{"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":"אוקלנד"},"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":"שעון דרום צרפת ואנטארקטיקה"}},"GMT":{"long":{"standard":"שעון גריניץ׳‏"}},"Galapagos":{"long":{"standard":"שעון איי גלאפגוס"}},"Gambier":{"long":{"standard":"שעון גאמבייר"}},"Georgia":{"long":{"generic":"שעון גאורגיה","standard":"שעון גאורגיה (חורף)","daylight":"שעון גאורגיה (קיץ)"}},"Gilbert_Islands":{"long":{"standard":"שעון איי גילברט"}},"Greenland_Eastern":{"long":{"generic":"שעון מזרח גרינלנד","standard":"שעון מזרח גרינלנד (חורף)","daylight":"שעון מזרח גרינלנד (קיץ)"}},"Greenland_Western":{"long":{"generic":"שעון מערב גרינלנד","standard":"שעון מערב גרינלנד (חורף)","daylight":"שעון מערב גרינלנד (קיץ)"}},"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":"שעון אי הלורד האו (קיץ)"}},"Macau":{"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":"שעון פרננדו די נורוניה (קיץ)"}},"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":"שעון פונאפי"}},"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":"שעון יקטרינבורג (קיץ)"}}}} \ No newline at end of file diff --git a/Punic/data/he/units.json b/Punic/data/he/units.json new file mode 100644 index 0000000..bdab3af --- /dev/null +++ b/Punic/data/he/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s לכל %2$s","acceleration":{"g-force":{"_name":"כוח ג׳י","one":"כוח ג׳י אחד","two":"שני כוחות ג׳י","many":"%1$s כוחות ג׳י","other":"%1$s כוחות ג׳י"},"meter-per-second-squared":{"_name":"מטר לשנייה בריבוע","one":"%1$s מטר לשנייה בריבוע","two":"%1$s מטר לשנייה בריבוע","many":"%1$s מטר לשנייה בריבוע","other":"%1$s מטר לשנייה בריבוע"}},"angle":{"arc-minute":{"_name":"דקות קשת","one":"דקה %1$s","two":"%1$s דקות","many":"%1$s דקות","other":"%1$s דקות"},"arc-second":{"_name":"שניות קשת","one":"שנייה %1$s","two":"%1$s שניות","many":"%1$s שניות","other":"%1$s שניות"},"degree":{"_name":"מעלות","one":"מעלה אחת","two":"שתי מעלות","many":"%1$s מעלות","other":"%1$s מעלות"},"radian":{"_name":"רדיאנים","one":"רדיאן אחד","two":"שני רדיאנים","many":"%1$s רדיאנים","other":"%1$s רדיאנים"}},"area":{"acre":{"_name":"אקר","one":"אקר %1$s","two":"%1$s אקר","many":"%1$s אקר","other":"%1$s אקר"},"hectare":{"_name":"הקטאר","one":"הקטאר %1$s","two":"%1$s הקטאר","many":"%1$s הקטאר","other":"%1$s הקטאר"},"square-centimeter":{"_name":"סנטימטר רבוע","one":"%1$s סנטימטר רבוע","two":"%1$s סנטימטר רבוע","many":"%1$s סנטימטר רבוע","other":"%1$s סנטימטר רבוע"},"square-foot":{"_name":"רגל רבועה","one":"רגל רבועה %1$s","two":"%1$s רגל רבועה","many":"%1$s רגל רבועה","other":"%1$s רגל רבועה"},"square-inch":{"_name":"אינצ׳ רבוע","one":"%1$s אינצ׳ רבוע","two":"%1$s אינצ׳ רבוע","many":"%1$s אינצ׳ רבוע","other":"%1$s אינצ׳ רבוע"},"square-kilometer":{"_name":"קילומטר רבוע","one":"קילומטר רבוע %1$s","two":"%1$s קילומטר רבוע","many":"%1$s קילומטר רבוע","other":"%1$s קילומטר רבוע"},"square-meter":{"_name":"מטר רבוע","one":"מטר רבוע %1$s","two":"%1$s מטר רבוע","many":"%1$s מטר רבוע","other":"%1$s מטר רבוע"},"square-mile":{"_name":"מייל רבוע","one":"מייל רבוע %1$s","two":"%1$s מייל רבוע","many":"%1$s מייל רבוע","other":"%1$s מייל רבוע"},"square-yard":{"_name":"יארד רבוע","one":"%1$s יארד רבוע","two":"%1$s יארד רבוע","many":"%1$s יארד רבוע","other":"%1$s יארד רבוע"}},"consumption":{"liter-per-kilometer":{"_name":"ליטרים/קילומטר","one":"%1$s ליטר/קילומטר","two":"%1$s ליטרים/קילומטר","many":"%1$s ליטרים/קילומטר","other":"%1$s ליטרים/קילומטר"},"mile-per-gallon":{"_name":"מייל/גלון","one":"%1$s מייל/גלון","two":"%1$s מייל/גלון","many":"%1$s מייל/גלון","other":"%1$s מייל/גלון"}},"digital":{"bit":{"_name":"סיביות","one":"%1$s סיבית","two":"%1$s סיביות","many":"%1$s סיביות","other":"%1$s סיביות"},"byte":{"_name":"בתים","one":"%1$s בית","two":"%1$s בתים","many":"%1$s בתים","other":"%1$s בתים"},"gigabit":{"_name":"גיגהסיביות","one":"%1$s גיגהסיבית","two":"%1$s גיגהסיביות","many":"%1$s גיגהסיביות","other":"%1$s גיגהסיביות"},"gigabyte":{"_name":"ג׳יגה-בייט","one":"%1$s ג׳יגה-בייט","two":"%1$s ג׳יגה-בייט","many":"%1$s ג׳יגה-בייט","other":"%1$s ג׳יגה-בייט"},"kilobit":{"_name":"קילוסיביות","one":"%1$s קילוסיבית","two":"%1$s קילוסיביות","many":"%1$s קילוסיביות","other":"%1$s קילוסיביות"},"kilobyte":{"_name":"קילו-בייט","one":"%1$s קילו-בייט","two":"%1$s קילו-בייט","many":"%1$s קילו-בייט","other":"%1$s קילו-בייט"},"megabit":{"_name":"מגהסיביות","one":"%1$s מגהסיבית","two":"%1$s מגהסיביות","many":"%1$s מגהסיביות","other":"%1$s מגהסיביות"},"megabyte":{"_name":"מגה-בייט","one":"%1$s מגה-בייט","two":"%1$s מגה-בייט","many":"%1$s מגה-בייט","other":"%1$s מגה-בייט"},"terabit":{"_name":"טרהסיביות","one":"%1$s טרהסיבית","two":"%1$s טרהסיביות","many":"%1$s טרהסיביות","other":"%1$s טרהסיביות"},"terabyte":{"_name":"טרה-בייט","one":"%1$s טרה-בייט","two":"%1$s טרה-בייט","many":"%1$s טרה-בייט","other":"%1$s טרה-בייט"}},"duration":{"day":{"_name":"ימים","one":"יום","two":"יומיים","many":"%1$s יום","other":"%1$s ימים"},"hour":{"_name":"שעות","one":"שעה","two":"שעתיים","many":"%1$s שעות","other":"%1$s שעות","_per":"%1$s לשעה"},"microsecond":{"_name":"מיליוניות שנייה","one":"%1$s מיליונית שנייה","two":"%1$s מיליוניות שנייה","many":"%1$s מיליוניות שנייה","other":"%1$s מיליוניות שנייה"},"millisecond":{"_name":"אלפיות השניה","one":"אלפית שנייה %1$s","two":"%1$s אלפיות שנייה","many":"%1$s אלפיות שנייה","other":"%1$s אלפיות שנייה"},"minute":{"_name":"דקות","one":"דקה","two":"שתי דקות","many":"%1$s דקות","other":"%1$s דקות"},"month":{"_name":"חודשים","one":"חודש","two":"חודשיים","many":"%1$s חודשים","other":"%1$s חודשים"},"nanosecond":{"_name":"ננו שניות","one":"%1$s ננו שנייה","two":"%1$s ננו שניות","many":"%1$s ננו שניות","other":"%1$s ננו שניות"},"second":{"_name":"שניות","one":"שניה","two":"שתי שניות","many":"‏%1$s שניות","other":"%1$s שניות","_per":"%1$s לשניה"},"week":{"_name":"שבועות","one":"שבוע","two":"שבועיים","many":"%1$s שבועות","other":"%1$s שבועות"},"year":{"_name":"שנים","one":"שנה","two":"שנתיים","many":"%1$s שנה","other":"%1$s שנים"}},"electric":{"ampere":{"_name":"אמפר","one":"%1$s אמפר","two":"%1$s אמפר","many":"%1$s אמפר","other":"%1$s אמפר"},"milliampere":{"_name":"מיליאמפר","one":"%1$s מיליאמפר","two":"%1$s מיליאמפר","many":"%1$s מיליאמפר","other":"%1$s מיליאמפר"},"ohm":{"_name":"ohms","one":"%1$s ohm","two":"%1$s ohms","many":"%1$s ohms","other":"%1$s ohms"},"volt":{"_name":"וולט","one":"%1$s וולט","two":"%1$s וולט","many":"%1$s וולט","other":"%1$s וולט"}},"energy":{"calorie":{"_name":"קלוריות","one":"%1$s קלוריה","two":"%1$s קלוריות","many":"%1$s קלוריות","other":"%1$s קלוריות"},"foodcalorie":{"_name":"קלוריות","one":"%1$s קלוריה","two":"%1$s קלוריות","many":"%1$s קלוריות","other":"%1$s קלוריות"},"joule":{"_name":"ג׳אול","one":"%1$s ג׳אול","two":"%1$s ג׳אול","many":"%1$s ג׳אול","other":"%1$s ג׳אול"},"kilocalorie":{"_name":"קילו קלוריות","one":"%1$s קילו קלוריה","two":"%1$s קילו קלוריות","many":"%1$s קילו קלוריות","other":"%1$s קילו קלוריות"},"kilojoule":{"_name":"קילו ג׳אול","one":"%1$s קילו ג׳אול","two":"%1$s קילו ג׳אול","many":"%1$s קילו ג׳אול","other":"%1$s קילו ג׳אול"},"kilowatt-hour":{"_name":"קילוואט־שעה","one":"%1$s קילוואט־שעה","two":"%1$s קילוואט-שעה","many":"%1$s קילוואט-שעה","other":"%1$s קילוואט-שעה"}},"frequency":{"gigahertz":{"_name":"גיגהרץ","one":"%1$s גיגהרץ","two":"%1$s גיגהרץ","many":"%1$s גיגהרץ","other":"%1$s גיגהרץ"},"hertz":{"_name":"הרץ","one":"%1$s הרץ","two":"%1$s הרץ","many":"%1$s הרץ","other":"%1$s הרץ"},"kilohertz":{"_name":"קילוהרץ","one":"%1$s קילוהרץ","two":"%1$s קילוהרץ","many":"%1$s קילוהרץ","other":"%1$s קילוהרץ"},"megahertz":{"_name":"מגהרץ","one":"%1$s מגהרץ","two":"%1$s מגהרץ","many":"%1$s מגהרץ","other":"%1$s מגהרץ"}},"length":{"astronomical-unit":{"_name":"יחידות אסטרונומיות","one":"יחידה אסטרונומית אחת","two":"שתי יחידת אסטרונומיות","many":"%1$s יחידות אסטרונומיות","other":"%1$s יחידות אסטרונומיות"},"centimeter":{"_name":"סנטימטרים","one":"סנטימטר אחד","two":"שני סנטימטרים","many":"%1$s סנטימטר","other":"%1$s סנטימטרים"},"decimeter":{"_name":"דצימטר","one":"דצימטר אחד","two":"שני דצימטרים","many":"%1$s דצימטר","other":"%1$s דצימטרים"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"רגל","one":"רגל %1$s","two":"%1$s רגל","many":"%1$s רגל","other":"%1$s רגל"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"אינץ׳","one":"אינץ׳ %1$s","two":"%1$s אינץ׳","many":"%1$s אינץ׳","other":"%1$s אינץ׳"},"kilometer":{"_name":"קילומטרים","one":"קילומטר %1$s","two":"%1$s קילומטר","many":"%1$s קילומטר","other":"%1$s קילומטר"},"light-year":{"_name":"שנות אור","one":"שנת אור %1$s","two":"%1$s שנות אור","many":"%1$s שנות אור","other":"%1$s שנות אור"},"meter":{"_name":"מטרים","one":"מטר אחד","two":"שני מטר","many":"%1$s מטר","other":"%1$s מטרים"},"micrometer":{"_name":"מיקרומטר","one":"מיקרומטר אחד","two":"שני מיקרומטרים","many":"%1$s מיקרומטר","other":"%1$s מיקרומטרים"},"mile":{"_name":"מייל","one":"%1$s מייל","two":"%1$s מייל","many":"%1$s מייל","other":"%1$s מייל"},"millimeter":{"_name":"מילימטר","one":"%1$s מילימטר","two":"%1$s מילימטר","many":"%1$s מילימטר","other":"%1$s מילימטר"},"nanometer":{"_name":"ננומטר","one":"%1$s ננומטר","two":"%1$s ננומטר","many":"%1$s ננומטר","other":"%1$s ננומטר"},"nautical-mile":{"_name":"מייל ימי","one":"%1$s מייל ימי","two":"%1$s מייל ימי","many":"%1$s מייל ימי","other":"%1$s מייל ימי"},"parsec":{"_name":"פארסק","one":"%1$s פארסק","two":"%1$s פארסק","many":"%1$s פארסק","other":"%1$s פארסק"},"picometer":{"_name":"פיקומטר","one":"פיקומטר %1$s","two":"%1$s פיקומטר","many":"%1$s פיקומטר","other":"%1$s פיקומטר"},"yard":{"_name":"יארד","one":"יארד %1$s","two":"%1$s יארד","many":"%1$s יארד","other":"%1$s יארד"}},"light":{"lux":{"_name":"לוקס","one":"לוקס אחד","two":"שני לוקס","many":"%1$s לוקס","other":"%1$s לוקס"}},"mass":{"carat":{"_name":"קרט","one":"קרט אחד","two":"שני קרט","many":"%1$s קרט","other":"%1$s קרט"},"gram":{"_name":"גרם","one":"גרם %1$s","two":"%1$s גרם","many":"%1$s גרם","other":"%1$s גרם"},"kilogram":{"_name":"קילוגרם","one":"קילוגרם %1$s","two":"%1$s קילוגרם","many":"%1$s קילוגרם","other":"%1$s קילוגרם"},"metric-ton":{"_name":"טון מטרי","one":"טון מטרי אחד","two":"שני טון מטרי","many":"%1$s טון מטרי","other":"%1$s טון מטרי"},"microgram":{"_name":"מיקרוגרם","one":"מיקרוגרם אחד","two":"שני מיקרוגרם","many":"%1$s מיקרוגרם","other":"%1$s מיקרוגרם"},"milligram":{"_name":"מיליגרם","one":"מיליגרם אחד","two":"שני מיליגרם","many":"%1$s מיליגרם","other":"%1$s מיליגרם"},"ounce":{"_name":"אונקיות","one":"אונקיה %1$s","two":"%1$s אונקיות","many":"%1$s אונקיות","other":"%1$s אונקיות"},"ounce-troy":{"_name":"אונקיות טרוי","one":"אונקיית טרוי אחת","two":"שתי אונקיות טרוי","many":"%1$s אונקיות טרוי","other":"%1$s אונקיות טרוי"},"pound":{"_name":"ליבראות","one":"ליברה %1$s","two":"%1$s ליבראות","many":"%1$s ליבראות","other":"%1$s ליבראות"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"טונות","one":"טון אחד","two":"שני טונות","many":"%1$s טונות","other":"%1$s טונות"}},"power":{"gigawatt":{"_name":"ג׳יגה ואט","one":"%1$s ג׳יגה ואט","two":"%1$s ג׳יגה ואט","many":"%1$s ג׳יגה ואט","other":"%1$s ג׳יגה ואט"},"horsepower":{"_name":"כוח סוס","one":"כוח סוס %1$s","two":"%1$s כוח סוס","many":"%1$s כוח סוס","other":"%1$s כוח סוס"},"kilowatt":{"_name":"קילוואט","one":"קילוואט %1$s","two":"%1$s קילוואט","many":"%1$s קילוואט","other":"%1$s קילוואט"},"megawatt":{"_name":"מגה ואט","one":"%1$s מגה ואט","two":"%1$s מגה ואט","many":"%1$s מגה ואט","other":"%1$s מגה ואט"},"milliwatt":{"_name":"מיליוואט","one":"%1$s מיליוואט","two":"%1$s מיליוואט","many":"%1$s מיליוואט","other":"%1$s מיליוואט"},"watt":{"_name":"ואט","one":"ואט %1$s","two":"%1$s ואט","many":"%1$s ואט","other":"%1$s ואט"}},"pressure":{"hectopascal":{"_name":"הקטופסקל","one":"הקטופסקל %1$s","two":"%1$s הקטופסקל","many":"%1$s הקטופסקל","other":"%1$s הקטופסקל"},"inch-hg":{"_name":"אינץ׳ כספית","one":"אינץ׳ כספית %1$s","two":"%1$s אינץ׳ כספית","many":"%1$s אינץ׳ כספית","other":"%1$s אינץ׳ כספית"},"millibar":{"_name":"מיליבר","one":"%1$s מיליבר","two":"%1$s מיליבר","many":"%1$s מיליבר","other":"%1$s מיליבר"},"millimeter-of-mercury":{"_name":"מילימטר כספית","one":"מילימטר כספית אחד","two":"שני מילימטר כספית","many":"%1$s מילימטר כספית","other":"%1$s מילימטר כספית"},"pound-per-square-inch":{"_name":"פאונד לאינץ׳ רבוע","one":"פאונד אחד לאינץ׳ רבוע","two":"שני פאונד לאינץ׳ רבוע","many":"%1$s פאונד לאינץ׳ רבוע","other":"%1$s פאונד לאינץ׳ רבוע"}},"proportion":{"karat":{"_name":"קראט","one":"קראט אחד","two":"שני קראט","many":"%1$s קראט","other":"%1$s קראט"}},"speed":{"kilometer-per-hour":{"_name":"קילומטר לשעה","one":"%1$s קילומטר לשעה","two":"%1$s קילומטר לשעה","many":"%1$s קילומטר לשעה","other":"%1$s קילומטר לשעה"},"meter-per-second":{"_name":"מטר לשנייה","one":"%1$s מטר לשנייה","two":"%1$s מטר לשנייה","many":"%1$s מטר לשנייה","other":"%1$s מטר לשנייה"},"mile-per-hour":{"_name":"מייל לשעה","one":"%1$s מייל לשעה","two":"%1$s מייל לשעה","many":"%1$s מייל לשעה","other":"%1$s מייל לשעה"}},"temperature":{"celsius":{"_name":"מעלות צלזיוס","one":"מעלת צלזיוס %1$s","two":"%1$s מעלות צלזיוס","many":"%1$s מעלות צלזיוס","other":"%1$s מעלות צלזיוס"},"fahrenheit":{"_name":"מעלות פרנהייט","one":"מעלת פרנהייט %1$s","two":"%1$s מעלות פרנהייט","many":"%1$s מעלות פרנהייט","other":"%1$s מעלות פרנהייט"},"kelvin":{"_name":"מעלות קלווין","one":"קלווין אחד","two":"שני קלווין","many":"%1$s קלווין","other":"%1$s קלווין"}},"volume":{"acre-foot":{"_name":"אקר-רגל","one":"%1$s אקר-רגל","two":"%1$s אקר-רגל","many":"%1$s אקר-רגל","other":"%1$s אקר-רגל"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"סנטיליטר","one":"%1$s סנטיליטר","two":"%1$s סנטיליטר","many":"%1$s סנטיליטר","other":"%1$s סנטיליטר"},"cubic-centimeter":{"_name":"סנטימטר מעוקב","one":"%1$s סנטימטר מעוקב","two":"%1$s סנטימטר מעוקב","many":"%1$s סנטימטר מעוקב","other":"%1$s סנטימטר מעוקב"},"cubic-foot":{"_name":"רגל מעוקב","one":"%1$s רגל מעוקב","two":"%1$s רגל מעוקב","many":"%1$s רגל מעוקב","other":"%1$s רגל מעוקב"},"cubic-inch":{"_name":"אינצ׳ מעוקב","one":"%1$s אינצ׳ מעוקב","two":"%1$s אינצ׳ מעוקב","many":"%1$s אינצ׳ מעוקב","other":"%1$s אינצ׳ מעוקב"},"cubic-kilometer":{"_name":"קילומטר מעוקב","one":"%1$s קילומטר מעוקב","two":"%1$s קילומטר מעוקב","many":"%1$s קילומטר מעוקב","other":"%1$s קילומטר מעוקב"},"cubic-meter":{"_name":"מטר מעוקב","one":"%1$s מטר מעוקב","two":"%1$s מטר מעוקב","many":"%1$s מטר מעוקב","other":"%1$s מטר מעוקב"},"cubic-mile":{"_name":"מייל מעוקב","one":"%1$s מייל מעוקב","two":"%1$s מייל מעוקב","many":"%1$s מייל מעוקב","other":"%1$s מייל מעוקב"},"cubic-yard":{"_name":"יארד מעוקב","one":"%1$s יארד מעוקב","two":"%1$s יארד מעוקב","many":"%1$s יארד מעוקב","other":"%1$s יארד מעוקב"},"cup":{"_name":"ספל","one":"%1$s ספל","two":"%1$s ספלים","many":"%1$s ספלים","other":"%1$s ספלים"},"deciliter":{"_name":"דציליטר","one":"%1$s דציליטר","two":"%1$s דציליטר","many":"%1$s דציליטר","other":"%1$s דציליטר"},"fluid-ounce":{"_name":"אונקיות נוזלים","one":"%1$s אונקיית נוזלים","two":"%1$s אונקיות נוזלים","many":"%1$s אונקיות נוזלים","other":"%1$s אונקיות נוזלים"},"gallon":{"_name":"גלונים","one":"%1$s גלון","two":"%1$s גלונים","many":"%1$s גלונים","other":"%1$s גלונים"},"hectoliter":{"_name":"הקטוליטר","one":"%1$s הקטוליטר","two":"%1$s הקטוליטר","many":"%1$s הקטוליטר","other":"%1$s הקטוליטר"},"liter":{"_name":"ליטרים","one":"%1$s ליטר","two":"%1$s ליטר","many":"%1$s ליטר","other":"%1$s ליטר"},"megaliter":{"_name":"מגה ליטר","one":"%1$s מגה ליטר","two":"%1$s מגה ליטר","many":"%1$s מגה ליטר","other":"%1$s מגה ליטר"},"milliliter":{"_name":"מיליליטר","one":"%1$s מיליליטר","two":"%1$s מיליליטר","many":"%1$s מיליליטר","other":"%1$s מיליליטר"},"pint":{"_name":"פינטות","one":"%1$s פינט","two":"%1$s פינטות","many":"%1$s פינטות","other":"%1$s פינטות"},"quart":{"_name":"קווארטות","one":"%1$s קווארטה","two":"%1$s קווארטות","many":"%1$s קווארטות","other":"%1$s קווארטות"},"tablespoon":{"_name":"כפות","one":"כף אחת","two":"שתי כפות","many":"%1$s כפות","other":"%1$s כפות"},"teaspoon":{"_name":"כפיות","one":"%1$s כפית","two":"%1$s כפיות","many":"%1$s כפיות","other":"%1$s כפיות"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"כוח ג׳י","one":"%1$s G","two":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","two":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"דק׳ קשת","one":"דקה %1$s","two":"%1$s דקות","many":"%1$s דקות","other":"%1$s דקות"},"arc-second":{"_name":"שנ׳ קשת","one":"שנייה %1$s","two":"%1$s שניות","many":"%1$s שניות","other":"%1$s שניות"},"degree":{"_name":"מעלות","one":"%1$s°","two":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"רדיאנים","one":"%1$s π","two":"%1$s π","many":"%1$s π","other":"%1$s π"}},"area":{"acre":{"_name":"אקר","one":"אקר %1$s","two":"%1$s אקר","many":"%1$s אקר","other":"%1$s אקר"},"hectare":{"_name":"הקטאר","one":"הקטאר %1$s","two":"%1$s הקטאר","many":"%1$s הקטאר","other":"%1$s הקטאר"},"square-centimeter":{"_name":"סמ״ר","one":"%1$s סמ״ר","two":"%1$s סמ״ר","many":"%1$s סמ״ר","other":"%1$s סמ״ר"},"square-foot":{"_name":"ft²","one":"רגל רבועה %1$s","two":"%1$s רגל רבועה","many":"%1$s רגל רבועה","other":"%1$s רגל רבועה"},"square-inch":{"_name":"in²","one":"%1$s in²","two":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"קמ״ר","one":"%1$s קמ״ר","two":"%1$s קמ״ר","many":"%1$s קמ״ר","other":"%1$s קמ״ר"},"square-meter":{"_name":"מ״ר","one":"מ״ר %1$s","two":"%1$s מ״ר","many":"%1$s מ״ר","other":"%1$s מ״ר"},"square-mile":{"_name":"mi²","one":"מייל רבוע %1$s","two":"%1$s מייל רבוע","many":"%1$s מייל רבוע","other":"%1$s מייל רבוע"},"square-yard":{"_name":"yd²","one":"%1$s yd²","two":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"ליטרים/ק״מ","one":"%1$s L/km","two":"%1$s L/km","many":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"מייל/גלון","one":"%1$s מייל/גלון","two":"%1$s מייל/גלון","many":"%1$s מייל/גלון","other":"%1$s מייל/גלון"}},"digital":{"bit":{"_name":"ביט","one":"%1$s ביט","two":"%1$s ביט","many":"%1$s ביט","other":"%1$s ביט"},"byte":{"_name":"בייט","one":"%1$s בייט","two":"%1$s בייט","many":"%1$s בייט","other":"%1$s בייט"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","two":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","two":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","two":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","two":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","two":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","two":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","two":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","two":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"ימים","one":"יום","two":"יומיים","many":"%1$s ימ׳","other":"%1$s ימ׳"},"hour":{"_name":"שע׳","one":"שעה","two":"שעתיים","many":"%1$s שע׳","other":"%1$s שע׳","_per":"%1$s/שעה"},"microsecond":{"_name":"μsecs","one":"%1$s μs","two":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","two":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"דק׳","one":"דקה","two":"שתי דק׳","many":"%1$s דק׳","other":"%1$s דק׳"},"month":{"_name":"חודשים","one":"חודש","two":"חודשיים","many":"%1$s ח׳","other":"%1$s ח׳"},"nanosecond":{"_name":"ננו שניות","one":"%1$s ns","two":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"שנ׳","one":"שנ׳","two":"שתי שנ׳","many":"%1$s שנ׳","other":"%1$s שנ׳","_per":"%1$s/שנ׳"},"week":{"_name":"שבועות","one":"שבוע %1$s","two":"%1$s שבועות","many":"%1$s שבועות","other":"%1$s שבועות"},"year":{"_name":"שנים","one":"שנה","two":"שנתיים","many":"%1$s שנה","other":"%1$s שנים"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","two":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","two":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","two":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"וולט","one":"%1$s V","two":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","two":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","two":"%1$s Cal","many":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"ג׳אול","one":"%1$s J","two":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","two":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"קילו ג׳אול","one":"%1$s kJ","two":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"קוט״ש","one":"%1$s קוט״ש","two":"%1$s קוט״ש","many":"%1$s קוט״ש","other":"%1$s קוט״ש"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","two":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","two":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","two":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","two":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"י״א","one":"י״א אחת","two":"שתי י״א","many":"%1$s י״א","other":"%1$s י״א"},"centimeter":{"_name":"ס״מ","one":"ס״מ אחד","two":"שני ס״מ","many":"%1$s ס״מ","other":"%1$s ס״מ"},"decimeter":{"_name":"ד״מ","one":"ד״מ אחד","two":"שני ד״מ","many":"%1$s ד״מ","other":"%1$s ד״מ"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"רגל","one":"רגל %1$s","two":"%1$s רגל","many":"%1$s רגל","other":"%1$s רגל"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"אינץ׳","one":"אינץ׳ %1$s","two":"%1$s אינץ׳","many":"%1$s אינץ׳","other":"%1$s אינץ׳"},"kilometer":{"_name":"ק״מ","one":"ק״מ %1$s","two":"%1$s ק״מ","many":"%1$s ק״מ","other":"%1$s ק״מ"},"light-year":{"_name":"שנות אור","one":"שנת אור %1$s","two":"%1$s שנות אור","many":"%1$s שנות אור","other":"%1$s שנות אור"},"meter":{"_name":"מטרים","one":"מ׳ אחד","two":"שני מ׳","many":"%1$s מ׳","other":"%1$s מ׳"},"micrometer":{"_name":"µm","one":"%1$s µm","two":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"מייל","one":"%1$s מייל","two":"%1$s מייל","many":"%1$s מייל","other":"%1$s מייל"},"millimeter":{"_name":"מ״מ","one":"%1$s מ״מ","two":"%1$s מ״מ","many":"%1$s מ״מ","other":"%1$s מ״מ"},"nanometer":{"_name":"nm","one":"%1$s nm","two":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"מ״י","one":"מ״י אחד","two":"שני מ״י","many":"%1$s מ״י","other":"%1$s מ״י"},"parsec":{"_name":"pc","one":"%1$s pc","two":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"פיקומטר %1$s","two":"%1$s פיקומטר","many":"%1$s פיקומטר","other":"%1$s פיקומטר"},"yard":{"_name":"יארד","one":"יארד %1$s","two":"%1$s יארד","many":"%1$s יארד","other":"%1$s יארד"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","two":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"קרט","one":"%1$s CD","two":"%1$s CD","many":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"גרם","one":"גר׳ %1$s","two":"%1$s גר׳","many":"%1$s גר׳","other":"%1$s גר׳"},"kilogram":{"_name":"ק״ג","one":"ק״ג %1$s","two":"%1$s ק״ג","many":"%1$s ק״ג","other":"%1$s ק״ג"},"metric-ton":{"_name":"t","one":"%1$s t","two":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"מק״ג","one":"%1$s מק״ג","two":"%1$s מק״ג","many":"%1$s מק״ג","other":"%1$s מק״ג"},"milligram":{"_name":"מ״ג","one":"%1$s מ״ג","two":"%1$s מ״ג","many":"%1$s מ״ג","other":"%1$s מ״ג"},"ounce":{"_name":"אונק׳","one":"אונקיה %1$s","two":"%1$s אונקיות","many":"%1$s אונקיות","other":"%1$s אונקיות"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","two":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"ליבראות","one":"ליברה %1$s","two":"%1$s ליבראות","many":"%1$s ליבראות","other":"%1$s ליבראות"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"טון","one":"%1$s ט","two":"%1$s ט","many":"%1$s ט","other":"%1$s ט"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","two":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"כ״ס","one":"כ״ס %1$s","two":"%1$s כ״ס","many":"%1$s כ״ס","other":"%1$s כ״ס"},"kilowatt":{"_name":"kW","one":"%1$s kW","two":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","two":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","two":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"ואט","one":"%1$s W","two":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","two":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","two":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"מ״ב","one":"מיליבר %1$s","two":"%1$s מיליבר","many":"%1$s מ״ב","other":"%1$s מ״ב"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","two":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","two":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","two":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"קמ״ש","one":"%1$s קמ״ש","two":"%1$s קמ״ש","many":"%1$s קמ״ש","other":"%1$s קמ״ש"},"meter-per-second":{"_name":"מ/ש","one":"%1$s מ/ש","two":"%1$s מ/ש","many":"%1$s מ/ש","other":"%1$s מ/ש"},"mile-per-hour":{"_name":"mph","one":"%1$s mph","two":"%1$s mph","many":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","two":"%1$s°C","many":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","two":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"°K","one":"%1$s°K","two":"%1$s°K","many":"%1$s°K","other":"%1$s°K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","two":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","two":"%1$s cL","many":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","two":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","two":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","two":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"קמ״ק","one":"%1$s קמ״ק","two":"%1$s קמ״ק","many":"%1$s קמ״ק","other":"%1$s קמ״ק"},"cubic-meter":{"_name":"מ״ק","one":"%1$s מ״ק","two":"%1$s מ״ק","many":"%1$s מ״ק","other":"%1$s מ״ק"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","two":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","two":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"ספלים","one":"%1$s ספ׳","two":"%1$s ספ׳","many":"%1$s ספ׳","other":"%1$s ספ׳"},"deciliter":{"_name":"דצ״ל","one":"%1$s דצ״ל","two":"%1$s דצ״ל","many":"%1$s דצ״ל","other":"%1$s דצ״ל"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","two":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"גלון","one":"%1$s גל׳","two":"%1$s גל׳","many":"%1$s גל׳","other":"%1$s גל׳"},"hectoliter":{"_name":"hL","one":"%1$s hL","two":"%1$s hL","many":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"ליטר","one":"%1$s ל׳","two":"%1$s ל׳","many":"%1$s ל׳","other":"%1$s ל׳"},"megaliter":{"_name":"ML","one":"%1$s ML","two":"%1$s ML","many":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"מ״ל","one":"%1$s מ״ל","two":"%1$s מ״ל","many":"%1$s מ״ל","other":"%1$s מ״ל"},"pint":{"_name":"פינט","one":"%1$s pt","two":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","two":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"כפות","one":"%1$s כפ׳","two":"%1$s כפ׳","many":"%1$s כפ׳","other":"%1$s כפ׳"},"teaspoon":{"_name":"כפית","one":"%1$s כפי׳","two":"%1$s כפי׳","many":"%1$s כפי׳","other":"%1$s כפי׳"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"כוח ג׳י","one":"%1$s G","two":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","two":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"דק׳ קשת","one":"דקה %1$s","two":"%1$s דקות","many":"%1$s דקות","other":"%1$s דקות"},"arc-second":{"_name":"שנ׳ קשת","one":"שנ׳ %1$s","two":"%1$s שנ׳","many":"%1$s שנ׳","other":"%1$s שנ׳"},"degree":{"_name":"מעלות","one":"%1$s°","two":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"רדיאנים","one":"%1$s π","two":"%1$s π","many":"%1$s π","other":"%1$s π"}},"area":{"acre":{"_name":"אקר","one":"אקר %1$s","two":"%1$s אקר","many":"%1$s אקר","other":"%1$s אקר"},"hectare":{"_name":"הקטאר","one":"הקטאר %1$s","two":"%1$s הקטאר","many":"%1$s הקטאר","other":"%1$s הקטאר"},"square-centimeter":{"_name":"סמ״ר","one":"%1$s סמ״ר","two":"%1$s סמ״ר","many":"%1$s סמ״ר","other":"%1$s סמ״ר"},"square-foot":{"_name":"ft²","one":"רגל רבועה %1$s","two":"%1$s רגל רבועה","many":"%1$s רגל רבועה","other":"%1$s רגל רבועה"},"square-inch":{"_name":"in²","one":"%1$s in²","two":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"קמ״ר","one":"קמ״ר %1$s","two":"%1$s קמ״ר","many":"%1$s קמ״ר","other":"%1$s קמ״ר"},"square-meter":{"_name":"מ״ר","one":"מ״ר %1$s","two":"%1$s מ״ר","many":"%1$s מ״ר","other":"%1$s מ״ר"},"square-mile":{"_name":"mi²","one":"מייל רבוע %1$s","two":"%1$s מייל רבוע","many":"%1$s מייל רבוע","other":"%1$s מייל רבוע"},"square-yard":{"_name":"yd²","one":"%1$s yd²","two":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"ליטרים/ק״מ","one":"%1$s L/km","two":"%1$s L/km","many":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"מייל/גלון","one":"%1$s מייל/גלון","two":"%1$s מייל/גלון","many":"%1$s מייל/גלון","other":"%1$s מייל/גלון"}},"digital":{"bit":{"_name":"ביט","one":"%1$s ביט","two":"%1$s ביט","many":"%1$s ביט","other":"%1$s ביט"},"byte":{"_name":"בייט","one":"%1$s בייט","two":"%1$s בייט","many":"%1$s בייט","other":"%1$s בייט"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","two":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","two":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","two":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","two":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","two":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","two":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","two":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","two":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"יום","one":"י׳","two":"יומיים","many":"%1$s י׳","other":"%1$s י׳"},"hour":{"_name":"שע׳","one":"שעה","two":"שעתיים","many":"%1$s שע׳","other":"%1$s שע׳","_per":"%1$s/שעה"},"microsecond":{"_name":"μsecs","one":"%1$s μs","two":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","two":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"דק׳","one":"דקה","two":"שתי דק׳","many":"%1$s דק׳","other":"%1$s דק׳"},"month":{"_name":"ח׳","one":"חודש %1$s","two":"%1$s ח׳","many":"%1$s ח׳","other":"%1$s ח׳"},"nanosecond":{"_name":"ננו שניות","one":"%1$s ns","two":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"שנ׳","one":"שניה","two":"שתי שנ׳","many":"%1$s שנ׳","other":"%1$s שנ׳","_per":"%1$s/שנ׳"},"week":{"_name":"שב׳","one":"שבוע %1$s","two":"%1$s שבועות","many":"%1$s שבועות","other":"%1$s שבועות"},"year":{"_name":"ש׳","one":"שנה %1$s","two":"%1$s שנים","many":"%1$s שנים","other":"%1$s שנים"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","two":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","two":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","two":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"וולט","one":"%1$s V","two":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","two":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","two":"%1$s Cal","many":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"ג׳אול","one":"%1$s J","two":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","two":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"קילו ג׳אול","one":"%1$s kJ","two":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"קוט״ש","one":"%1$s קוט״ש","two":"%1$s קוט״ש","many":"%1$s קוט״ש","other":"%1$s קוט״ש"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","two":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","two":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","two":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","two":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"י״א","one":"%1$s י״א","two":"%1$s י״א","many":"%1$s י״א","other":"%1$s י״א"},"centimeter":{"_name":"ס״מ","one":"ס״מ אחד","two":"שני ס״מ","many":"%1$s ס״מ","other":"%1$s ס״מ"},"decimeter":{"_name":"ד״מ","one":"%1$s ד״מ","two":"%1$s ד״מ","many":"%1$s ד״מ","other":"%1$s ד״מ"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"רגל","one":"רגל %1$s","two":"%1$s רגל","many":"%1$s רגל","other":"%1$s רגל"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"אינץ׳","one":"אינץ׳ %1$s","two":"%1$s אינץ׳","many":"%1$s אינץ׳","other":"%1$s אינץ׳"},"kilometer":{"_name":"ק״מ","one":"ק״מ %1$s","two":"%1$s ק״מ","many":"%1$s ק״מ","other":"%1$s ק״מ"},"light-year":{"_name":"שנות אור","one":"שנת אור %1$s","two":"%1$s שנות אור","many":"%1$s שנות אור","other":"%1$s שנות אור"},"meter":{"_name":"מטר","one":"מ׳ אחד","two":"שני מ׳","many":"%1$sמ׳","other":"%1$sמ׳"},"micrometer":{"_name":"µm","one":"%1$s µm","two":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"מייל","one":"מייל %1$s","two":"%1$s מייל","many":"%1$s מייל","other":"%1$s מייל"},"millimeter":{"_name":"מ״מ","one":"מ״מ %1$s","two":"%1$s מ״מ","many":"%1$s מ״מ","other":"%1$s מ״מ"},"nanometer":{"_name":"nm","one":"%1$s nm","two":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"מ״י","one":"%1$s מ״י","two":"%1$s מ״י","many":"%1$s מ״י","other":"%1$s מ״י"},"parsec":{"_name":"pc","one":"%1$s pc","two":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"פיקומטר %1$s","two":"%1$s פיקומטר","many":"%1$s פיקומטר","other":"%1$s פיקומטר"},"yard":{"_name":"יארד","one":"יארד %1$s","two":"%1$s יארד","many":"%1$s יארד","other":"%1$s יארד"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","two":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"קרט","one":"%1$s CD","two":"%1$s CD","many":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"גרם","one":"גר׳ %1$s","two":"%1$s גר׳","many":"%1$s גר׳","other":"%1$s גר׳"},"kilogram":{"_name":"ק״ג","one":"%1$s ק״ג","two":"%1$s ק״ג","many":"%1$s ק״ג","other":"%1$s ק״ג"},"metric-ton":{"_name":"t","one":"%1$s t","two":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"מק״ג","one":"%1$s מק״ג","two":"%1$s מק״ג","many":"%1$s מק״ג","other":"%1$s מק״ג"},"milligram":{"_name":"מ״ג","one":"%1$s מ״ג","two":"%1$s מ״ג","many":"%1$s מ״ג","other":"%1$s מ״ג"},"ounce":{"_name":"אונק׳","one":"אונקיה %1$s","two":"%1$s אונקיות","many":"%1$s אונקיות","other":"%1$s אונקיות"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","two":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"ליבראות","one":"ליברה %1$s","two":"%1$s ליבראות","many":"%1$s ליבראות","other":"%1$s ליבראות"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"טון","one":"%1$s ט","two":"%1$s ט","many":"%1$s ט","other":"%1$s ט"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","two":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"כ״ס","one":"כ״ס %1$s","two":"%1$s כ״ס","many":"%1$s כ״ס","other":"%1$s כ״ס"},"kilowatt":{"_name":"kW","one":"%1$s kW","two":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","two":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","two":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"ואט","one":"%1$s W","two":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","two":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","two":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"מ״ב","one":"מיליבר %1$s","two":"%1$s מיליבר","many":"%1$s מיליבר","other":"%1$s מיליבר"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","two":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","two":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","two":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"קמ״ש","one":"%1$s קמ״ש","two":"%1$s קמ״ש","many":"%1$s קמ״ש","other":"%1$s קמ״ש"},"meter-per-second":{"_name":"מ/ש","one":"%1$s מ/ש","two":"%1$s מ/ש","many":"%1$s מ/ש","other":"%1$s מ/ש"},"mile-per-hour":{"_name":"mph","one":"%1$s mph","two":"%1$s mph","many":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","two":"%1$s°","many":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","two":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"°K","one":"%1$s°K","two":"%1$s°K","many":"%1$s°K","other":"%1$s°K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","two":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","two":"%1$s cL","many":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","two":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","two":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","two":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"קמ״ק","one":"%1$s קמ״ק","two":"%1$s קמ״ק","many":"%1$s קמ״ק","other":"%1$s קמ״ק"},"cubic-meter":{"_name":"מ״ק","one":"%1$s מ״ק","two":"%1$s מ״ק","many":"%1$s מ״ק","other":"%1$s מ״ק"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","two":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","two":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"ספלים","one":"%1$s ספ׳","two":"%1$s ספ׳","many":"%1$s ספ׳","other":"%1$s ספ׳"},"deciliter":{"_name":"דצ״ל","one":"%1$s דצ״ל","two":"%1$s דצ״ל","many":"%1$s דצ״ל","other":"%1$s דצ״ל"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","two":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"גלון","one":"%1$s גל׳","two":"%1$s גל׳","many":"%1$s גל׳","other":"%1$s גל׳"},"hectoliter":{"_name":"hL","one":"%1$s hL","two":"%1$s hL","many":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"ליטר","one":"%1$s ל׳","two":"%1$s ל׳","many":"%1$s ל׳","other":"%1$s ל׳"},"megaliter":{"_name":"ML","one":"%1$s ML","two":"%1$s ML","many":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"מ״ל","one":"%1$s מ״ל","two":"%1$s מ״ל","many":"%1$s מ״ל","other":"%1$s מ״ל"},"pint":{"_name":"פינט","one":"%1$s pt","two":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","two":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"כפות","one":"%1$s כפ׳","two":"%1$s כפ׳","many":"%1$s כפ׳","other":"%1$s כפ׳"},"teaspoon":{"_name":"כפית","one":"%1$s כפי׳","two":"%1$s כפי׳","many":"%1$s כפי׳","other":"%1$s כפי׳"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/hi/calendar.json b/Punic/data/hi/calendar.json new file mode 100644 index 0000000..da5c812 --- /dev/null +++ b/Punic/data/hi/calendar.json @@ -0,0 +1 @@ +{"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":"ति1","2":"ति2","3":"ति3","4":"ति4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"पहली तिमाही","2":"दूसरी तिमाही","3":"तीसरी तिमाही","4":"चौथी तिमाही"}},"stand-alone":{"abbreviated":{"1":"ति1","2":"ति2","3":"ति3","4":"ति4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"पहली तिमाही","2":"दूसरी तिमाही","3":"तीसरी तिमाही","4":"चौथी तिमाही"}}},"dayPeriods":{"format":{"abbreviated":{"am":"पूर्व","noon":"दोपहर","pm":"अपर"},"narrow":{"am":"पू","noon":"दोप","pm":"अ"},"wide":{"am":"पूर्वाह्न","noon":"दोपहर","pm":"अपराह्न"}},"stand-alone":{"abbreviated":{"am":"पूर्व","noon":"दोपहर","pm":"अपर"},"narrow":{"am":"पू","noon":"दोप","pm":"अ"},"wide":{"am":"पूर्वाह्न","noon":"दोपहर","pm":"अपराह्न"}}},"eras":{"wide":{"0":"ईसा-पूर्व","0-alt-variant":"ईसवी पूर्व","1":"ईसवी सन","1-alt-variant":"ईसवी"},"abbreviated":{"0":"ईसा-पूर्व","0-alt-variant":"ईसवी पूर्व","1":"ईस्वी","1-alt-variant":"ईसवी"},"narrow":{"0":"ईसा-पूर्व","0-alt-variant":"ईसवी पूर्व","1":"ईस्वी","1-alt-variant":"ईसवी"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"dd/MM/y","short":"d/M/yy"},"timeFormats":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormats":{"full":"%2$s को %1$s","long":"%2$s को %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/hi/dateFields.json b/Punic/data/hi/dateFields.json new file mode 100644 index 0000000..837d04f --- /dev/null +++ b/Punic/data/hi/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"युग"},"year":{"displayName":"वर्ष","relative-type--1":"पिछला वर्ष","relative-type-0":"इस वर्ष","relative-type-1":"अगला वर्ष","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} वर्ष में","relativeTimePattern-count-other":"{0} वर्ष में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} वर्ष पहले","relativeTimePattern-count-other":"{0} वर्ष पहले"}},"year-short":{"displayName":"वर्ष","relative-type--1":"पिछला वर्ष","relative-type-0":"इस वर्ष","relative-type-1":"अगला वर्ष","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} वर्ष में","relativeTimePattern-count-other":"{0} वर्ष में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} वर्ष पहले","relativeTimePattern-count-other":"{0} वर्ष पहले"}},"year-narrow":{"displayName":"वर्ष","relative-type--1":"पिछला वर्ष","relative-type-0":"इस वर्ष","relative-type-1":"अगला वर्ष","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} वर्ष में","relativeTimePattern-count-other":"{0} वर्ष में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} वर्ष पहले","relativeTimePattern-count-other":"{0} वर्ष पहले"}},"quarter":{"displayName":"तिमाही","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} तिमाही में","relativeTimePattern-count-other":"{0} तिमाहियों में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} तिमाही पहले","relativeTimePattern-count-other":"{0} तिमाही पहले"}},"quarter-short":{"displayName":"तिमाही","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} तिमाही में","relativeTimePattern-count-other":"{0} तिमाहियों में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} तिमाही पहले","relativeTimePattern-count-other":"{0} तिमाहियों पहले"}},"quarter-narrow":{"displayName":"तिमाही","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} ति. में","relativeTimePattern-count-other":"{0} ति. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ति. पहले","relativeTimePattern-count-other":"{0} ति. पहले"}},"month":{"displayName":"माह","relative-type--1":"पिछला माह","relative-type-0":"इस माह","relative-type-1":"अगला माह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} माह में","relativeTimePattern-count-other":"{0} माह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} माह पहले","relativeTimePattern-count-other":"{0} माह पहले"}},"month-short":{"displayName":"माह","relative-type--1":"पिछला माह","relative-type-0":"इस माह","relative-type-1":"अगला माह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} माह में","relativeTimePattern-count-other":"{0} माह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} माह पहले","relativeTimePattern-count-other":"{0} माह पहले"}},"month-narrow":{"displayName":"माह","relative-type--1":"पिछला माह","relative-type-0":"इस माह","relative-type-1":"अगला माह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} माह में","relativeTimePattern-count-other":"{0} माह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} माह पहले","relativeTimePattern-count-other":"{0} माह पहले"}},"week":{"displayName":"सप्ताह","relative-type--1":"पिछला सप्ताह","relative-type-0":"इस सप्ताह","relative-type-1":"अगला सप्ताह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} सप्ताह में","relativeTimePattern-count-other":"{0} सप्ताह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} सप्ताह पहले","relativeTimePattern-count-other":"{0} सप्ताह पहले"}},"week-short":{"displayName":"सप्ताह","relative-type--1":"पिछला सप्ताह","relative-type-0":"इस सप्ताह","relative-type-1":"अगला सप्ताह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} सप्ताह में","relativeTimePattern-count-other":"{0} सप्ताह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} सप्ताह पहले","relativeTimePattern-count-other":"{0} सप्ताह पहले"}},"week-narrow":{"displayName":"सप्ताह","relative-type--1":"पिछला सप्ताह","relative-type-0":"इस सप्ताह","relative-type-1":"अगला सप्ताह","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} सप्ताह में","relativeTimePattern-count-other":"{0} सप्ताह में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} सप्ताह पहले","relativeTimePattern-count-other":"{0} सप्ताह पहले"}},"day":{"displayName":"दिन","relative-type--1":"कल","relative-type--2":"बीता परसों","relative-type-0":"आज","relative-type-1":"कल","relative-type-2":"परसों","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} दिन में","relativeTimePattern-count-other":"{0} दिन में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} दिन पहले","relativeTimePattern-count-other":"{0} दिन पहले"}},"day-short":{"displayName":"दिन","relative-type--1":"कल","relative-type--2":"बीता परसों","relative-type-0":"आज","relative-type-1":"कल","relative-type-2":"परसों","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} दिन में","relativeTimePattern-count-other":"{0} दिन में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} दिन पहले","relativeTimePattern-count-other":"{0} दिन पहले"}},"day-narrow":{"displayName":"दिन","relative-type--1":"कल","relative-type--2":"बीता परसों","relative-type-0":"आज","relative-type-1":"कल","relative-type-2":"परसों","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} दिन में","relativeTimePattern-count-other":"{0} दिन में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} दिन पहले","relativeTimePattern-count-other":"{0} दिन पहले"}},"weekday":{"displayName":"सप्ताह का दिन"},"sun":{"relative-type--1":"पिछला रविवार","relative-type-0":"इस रविवार","relative-type-1":"अगला रविवार"},"sun-short":{"relative-type--1":"पिछला रवि.","relative-type-0":"इस रवि.","relative-type-1":"अगला रवि."},"sun-narrow":{"relative-type--1":"पिछला रवि.","relative-type-0":"इस रवि.","relative-type-1":"अगला रवि."},"mon":{"relative-type--1":"पिछला सोमवार","relative-type-0":"इस सोमवार","relative-type-1":"अगला सोमवार"},"mon-short":{"relative-type--1":"पिछला सोम.","relative-type-0":"इस सोम.","relative-type-1":"अगला सोम."},"mon-narrow":{"relative-type--1":"पिछला सोम.","relative-type-0":"इस सोम.","relative-type-1":"अगला सोम."},"tue":{"relative-type--1":"पिछला मंगलवार","relative-type-0":"इस मंगलवार","relative-type-1":"अगला मंगलवार"},"tue-short":{"relative-type--1":"पिछला मंगल.","relative-type-0":"इस मंगल.","relative-type-1":"अगला मंगल."},"tue-narrow":{"relative-type--1":"पिछला मंगल.","relative-type-0":"इस मंगल.","relative-type-1":"अगला मंगल."},"wed":{"relative-type--1":"पिछला बुधवार","relative-type-0":"इस बुधवार","relative-type-1":"अगला बुधवार"},"wed-short":{"relative-type--1":"पिछला बुध.","relative-type-0":"इस बुध.","relative-type-1":"अगला बुध."},"wed-narrow":{"relative-type--1":"पिछला बुध.","relative-type-0":"इस बुध.","relative-type-1":"अगला बुध."},"thu":{"relative-type--1":"पिछला गुरुवार","relative-type-0":"इस गुरुवार","relative-type-1":"अगला गुरुवार"},"thu-short":{"relative-type--1":"पिछला गुरु.","relative-type-0":"इस गुरु.","relative-type-1":"अगला गुरु."},"thu-narrow":{"relative-type--1":"पिछला गुरु.","relative-type-0":"इस गुरु.","relative-type-1":"अगला गुरु."},"fri":{"relative-type--1":"पिछला शुक्रवार","relative-type-0":"इस शुक्रवार","relative-type-1":"अगला शुक्रवार"},"fri-short":{"relative-type--1":"पिछला शुक्र.","relative-type-0":"इस शुक्र.","relative-type-1":"अगला शुक्र."},"fri-narrow":{"relative-type--1":"पिछला शुक्र.","relative-type-0":"इस शुक्र.","relative-type-1":"अगला शुक्र."},"sat":{"relative-type--1":"पिछला शनिवार","relative-type-0":"इस शनिवार","relative-type-1":"अगला शनिवार"},"sat-short":{"relative-type--1":"पिछला शनि.","relative-type-0":"इस शनि.","relative-type-1":"अगला शनि."},"sat-narrow":{"relative-type--1":"पिछला शनि.","relative-type-0":"इस शनि.","relative-type-1":"अगला शनि."},"dayperiod":{"displayName":"पूर्वाह्न/अपराह्न"},"hour":{"displayName":"घंटा","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} घंटे में","relativeTimePattern-count-other":"{0} घंटे में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} घंटे पहले","relativeTimePattern-count-other":"{0} घंटे पहले"}},"hour-short":{"displayName":"घं.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} घं. में","relativeTimePattern-count-other":"{0} घं. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} घं. पहले","relativeTimePattern-count-other":"{0} घं. पहले"}},"hour-narrow":{"displayName":"घं.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} घं. में","relativeTimePattern-count-other":"{0} घं. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} घं. पहले","relativeTimePattern-count-other":"{0} घं. पहले"}},"minute":{"displayName":"मिनट","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} मिनट में","relativeTimePattern-count-other":"{0} मिनट में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} मिनट पहले","relativeTimePattern-count-other":"{0} मिनट पहले"}},"minute-short":{"displayName":"मि.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} मि. में","relativeTimePattern-count-other":"{0} मि. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} मि. पहले","relativeTimePattern-count-other":"{0} मि. पहले"}},"minute-narrow":{"displayName":"मि.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} मि. में","relativeTimePattern-count-other":"{0} मि. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} मि. पहले","relativeTimePattern-count-other":"{0} मि. पहले"}},"second":{"displayName":"सेकंड","relative-type-0":"अब","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} सेकंड में","relativeTimePattern-count-other":"{0} सेकंड में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} सेकंड पहले","relativeTimePattern-count-other":"{0} सेकंड पहले"}},"second-short":{"displayName":"से.","relative-type-0":"अब","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} से. में","relativeTimePattern-count-other":"{0} से. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} से. पहले","relativeTimePattern-count-other":"{0} से. पहले"}},"second-narrow":{"displayName":"से.","relative-type-0":"अब","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} से. में","relativeTimePattern-count-other":"{0} से. में"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} से. पहले","relativeTimePattern-count-other":"{0} से. पहले"}},"zone":{"displayName":"समय क्षेत्र"}} \ No newline at end of file diff --git a/Punic/data/hi/languages.json b/Punic/data/hi/languages.json new file mode 100644 index 0000000..de1d453 --- /dev/null +++ b/Punic/data/hi/languages.json @@ -0,0 +1 @@ +{"aa":"अफ़ार","ab":"अब्ख़ाज़ियन","ace":"अचाइनीस","ach":"अकोली","ada":"अदान्गमे","ady":"अदिघे","ae":"अवस्ताई","aeb":"aeb","af":"अफ़्रीकी","afh":"अफ्रिहिली","agq":"अग्हेम","ain":"ऐनू","ak":"अकन","akk":"अक्कादी","akz":"akz","ale":"अलेउत","aln":"aln","alt":"दक्षिणी अल्ताई","am":"अम्हेरी","an":"अर्गोनी","ang":"पुरानी अंग्रेज़ी","anp":"अंगिका","ar":"अरबी","ar-001":"आधुनिक मानक अरबी","arc":"ऐरेमेक","arn":"मापूचे","aro":"aro","arp":"अराफाओ","arq":"arq","arw":"अरावक","ary":"ary","arz":"arz","as":"असमिया","asa":"असु","ase":"ase","ast":"अस्तुरियन","av":"अवेरिक","avk":"avk","awa":"अवधी","ay":"आयमारा","az":"अज़रबैजानी","az-alt-short":"अज़ेरी","azb":"azb","ba":"बशख़िर","bal":"बलूची","ban":"बालिनीस","bar":"bar","bas":"बसा","bax":"bax","bbc":"bbc","bbj":"bbj","be":"बेलारूसी","bej":"बेजा","bem":"बेम्बा","bew":"bew","bez":"बेना","bfd":"bfd","bfq":"bfq","bg":"बुल्गारियाई","bho":"भोजपुरी","bi":"बिस्लामा","bik":"बिकोल","bin":"बिनी","bjn":"bjn","bkm":"bkm","bla":"सिक्सिका","bm":"बाम्बारा","bn":"बंगाली","bo":"तिब्बती","bpy":"bpy","bqi":"bqi","br":"ब्रेटन","bra":"ब्रज","brh":"brh","brx":"बोडो","bs":"बोस्नियाई","bss":"bss","bua":"बुरियात","bug":"बगिनीस","bum":"bum","byn":"ब्लिन","byv":"byv","ca":"कातालान","cad":"कैड्डो","car":"कैरिब","cay":"cay","cch":"अत्सम","ce":"चेचन","ceb":"सिबुआनो","cgg":"शिगा","ch":"कमोरो","chb":"चिब्चा","chg":"छगाताई","chk":"चूकीस","chm":"मारी","chn":"चिनूक जारगॉन","cho":"चोक्तौ","chp":"शिपेव्यान","chr":"शेरोकी","chy":"शेयेन्न","ckb":"सोरानी कुर्दिश","co":"कोर्सीकन","cop":"कॉप्टिक","cps":"cps","cr":"क्री","crh":"क्रीमीन तुर्की","cs":"चेक","csb":"काशुबियन","cu":"चर्च साल्विक","cv":"चूवाश","cy":"वेल्श","da":"डेनिश","dak":"दाकोता","dar":"दार्गवा","dav":"तैता","de":"जर्मन","de-AT":"ऑस्ट्रियाई जर्मन","de-CH":"स्विस उच्च जर्मन","del":"डिलैवेयर","den":"स्लेव","dgr":"डोग्रिब","din":"दिन्का","dje":"झार्मा","doi":"डोग्री","dsb":"निचला सॉर्बियन","dtp":"dtp","dua":"दुआला","dum":"मध्य पुर्तगाली","dv":"दिवेही","dyo":"जोला-फोंई","dyu":"ड्युला","dz":"ज़ोन्गखा","dzg":"dzg","ebu":"एम्बु","ee":"ईवे","efi":"एफिक","egl":"egl","egy":"प्राचीन मिस्री","eka":"एकाजुक","el":"यूनानी","elx":"एलामाइट","en":"अंग्रेज़ी","en-AU":"ऑस्ट्रेलियाई अंग्रेज़ी","en-CA":"कनाडाई अंग्रेज़ी","en-GB":"ब्रिटिश अंग्रेज़ी","en-GB-alt-short":"यू.के. अंग्रेज़ी","en-US":"अमेरिकी अंग्रेज़ी","en-US-alt-short":"अमेरिकी अंग्रेज़ी","enm":"मध्यकालीन अंग्रेज़ी","eo":"एस्पेरेंतो","es":"स्पेनी","es-419":"लैटिन अमेरिकी स्पेनी","es-ES":"यूरोपीय स्पेनी","es-MX":"मैक्सिकन स्पेनिश","esu":"esu","et":"एस्टोनियाई","eu":"बास्क","ewo":"इवोन्डो","ext":"ext","fa":"फ़ारसी","fan":"फैन्ग","fat":"फन्टी","ff":"फुलाह","fi":"फ़िनिश","fil":"फ़िलिपीनो","fit":"fit","fj":"फ़ीजी","fo":"फ़ैरोइज़","fon":"फॉन","fr":"फ़्रेंच","fr-CA":"कनाडाई फ़्रेंच","fr-CH":"स्विस फ़्रेंच","frc":"frc","frm":"मध्यकालीन फ़्रांसीसी","fro":"पुरातन फ़्रांसीसी","frp":"frp","frr":"उत्तरी फ्रीसीयन","frs":"पूर्वी फ्रीसीयन","fur":"फ्रीयुलीयान","fy":"पश्चिमी फ़्रिसियाई","ga":"आइरिश","gaa":"गा","gag":"गागौज़","gan":"gan","gay":"गायो","gba":"ग्बाया","gbz":"gbz","gd":"स्काट्स् गायेलिक्","gez":"गीज़","gil":"गिल्बरतीस","gl":"गैलिशियन","glk":"glk","gmh":"मध्यकालीन हाइ जर्मन","gn":"गुआरानी","goh":"पुरातन हाइ जर्मन","gom":"gom","gon":"गाँडी","gor":"गोरोन्तालो","got":"गॉथिक","grb":"ग्रेबो","grc":"प्राचीन यूनानी","gsw":"स्विस जर्मन","gu":"गुजराती","guc":"guc","gur":"gur","guz":"गुसी","gv":"मैंक्स","gwi":"ग्विच’इन","ha":"हौसा","hai":"हैडा","hak":"hak","haw":"हवाई","he":"हिब्रू","hi":"हिंदी","hif":"hif","hil":"हिलिगेनन","hit":"हिताइत","hmn":"ह्मॉंग","ho":"हिरी मोटू","hr":"क्रोएशियाई","hsb":"ऊपरी सॉर्बियन","hsn":"hsn","ht":"हैतियाई","hu":"हंगेरियाई","hup":"हूपा","hy":"आर्मेनियाई","hz":"हरैरो","ia":"ईन्टरलिंगुआ","iba":"इबान","ibb":"ibb","id":"इंडोनेशियाई","ie":"ईन्टरलिंगुइ","ig":"ईग्बो","ii":"सिचुआन यी","ik":"इनुपियाक्","ilo":"इलोको","inh":"इंगुश","io":"इडौ","is":"आइसलैंडी","it":"इतालवी","iu":"इनूकीटूत्","izh":"izh","ja":"जापानी","jam":"jam","jbo":"लोज्बान","jgo":"नगोंबा","jmc":"मैकहैमे","jpr":"जुदेओ-पर्शियन","jrb":"जुदेओ-अरेबिक","jut":"jut","jv":"जावानीज़","ka":"जॉर्जियाई","kaa":"कारा-कल्पक","kab":"कबाइल","kac":"काचिन","kaj":"ज्जु","kam":"कम्बा","kaw":"कावी","kbd":"कबार्डियन","kbl":"kbl","kcg":"त्याप","kde":"मैकोंड","kea":"काबुवेर्दियानु","ken":"ken","kfo":"कोरो","kg":"कोंगो","kgp":"kgp","kha":"खासी","kho":"खोतानीस","khq":"कोयरा चीनी","khw":"khw","ki":"किकुयू","kiu":"kiu","kj":"क्वान्यामा","kk":"कज़ाख़","kkj":"kkj","kl":"ग्रीनलैंडिक","kln":"कलेंजिन","km":"खमेर","kmb":"किम्बन्दु","kn":"कन्नड़","ko":"कोरियाई","koi":"कोमी-पर्मयाक","kok":"कोंकणी","kos":"कोसरैन","kpe":"क्पेल्लै","kr":"कनुरी","krc":"कराचय-बल्कार","kri":"kri","krj":"krj","krl":"करेलियन","kru":"कुरूख","ks":"कश्मीरी","ksb":"शम्बाला","ksf":"बफिआ","ksh":"ksh","ku":"कुर्दिश","kum":"कुमीक","kut":"कुतेनाई","kv":"कोमी","kw":"कोर्निश","ky":"किर्गीज़","la":"लैटिन","lad":"लादीनो","lag":"लांगि","lah":"लाह्न्डा","lam":"लाम्बा","lb":"लग्ज़मबर्गी","lez":"लेज़्घीयन","lfn":"lfn","lg":"गांडा","li":"लिंबर्गिश","lij":"lij","liv":"liv","lkt":"लैकोटा","lmo":"lmo","ln":"लिंगाला","lo":"लाओ","lol":"मोंगो","loz":"लोज़ी","lt":"लिथुआनियाई","ltg":"ltg","lu":"ल्यूबा-कटांगा","lua":"ल्यूबा-लुलुआ","lui":"लुइसेनो","lun":"लुन्डा","luo":"ल्युओ","lus":"लुशाई","luy":"ल्युईआ","lv":"लातवियाई","lzh":"lzh","lzz":"lzz","mad":"मादुरीस","maf":"maf","mag":"मगाही","mai":"मैथिली","mak":"मकासर","man":"मन्डिन्गो","mas":"मसाई","mde":"mde","mdf":"मोक्ष","mdr":"मंधार","men":"मेन्डे","mer":"मेरु","mfe":"मोरीस्येन","mg":"मालागासी","mga":"मध्यकाल आइरिश","mgh":"मैखुवा-मीट्टो","mgo":"मेटा","mh":"मार्शलीज़","mi":"माओरी","mic":"मिकमैक","min":"मिनांग्काबाउ","mk":"मैसिडोनियाई","ml":"मलयालम","mn":"मंगोलीयाई","mnc":"मन्चु","mni":"मणिपूरी","moh":"मोहौक","mos":"मोस्सी","mr":"मराठी","mrj":"mrj","ms":"मलय","mt":"माल्टीज़","mua":"मुंडैंग","mul":"विविध भाषाएँ","mus":"क्रीक","mwl":"मिरांडी","mwr":"मारवाड़ी","mwv":"mwv","my":"बर्मीज़","mye":"mye","myv":"एर्ज़या","mzn":"mzn","na":"नाउरू","nan":"nan","nap":"नीपोलिटन","naq":"नामा","nb":"नॉर्वेजियाई बोकमाल","nd":"उत्तरी देबेल","nds":"निचला जर्मन","ne":"नेपाली","new":"नेवाड़ी","ng":"डोन्गा","nia":"नियास","niu":"नियुआन","njo":"njo","nl":"डच","nl-BE":"फ़्लेमिश","nmg":"क्वासिओ","nn":"नॉर्वेजियाई नॉयनॉर्स्क","nnh":"nnh","no":"नॉर्वेजियाई","nog":"नोगाई","non":"पुराना नॉर्स","nov":"nov","nqo":"एन्को","nr":"दक्षिण देबेल","nso":"उत्तरी सोथो","nus":"नुएर","nv":"नावाजो","nwc":"पारम्परिक नेवारी","ny":"न्यानजा","nym":"न्यामवेज़ी","nyn":"न्यानकोल","nyo":"न्योरो","nzi":"न्ज़ीमा","oc":"ओसीटान","oj":"ओजिब्वा","om":"ओरोमो","or":"उड़िया","os":"ओस्सेटिक","osa":"ओसेज","ota":"ओटोमान तुर्किश","pa":"पंजाबी","pag":"पंगासीनान","pal":"पाह्लावी","pam":"पाम्पान्गा","pap":"पापियामेन्टो","pau":"पलोउआन","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"पुरानी फारसी","pfl":"pfl","phn":"फोएनिशियन","pi":"पाली","pl":"पोलिश","pms":"pms","pnt":"pnt","pon":"पोह्नपिएन","prg":"prg","pro":"पुरानी प्रोवेन्सल","ps":"पश्तो","ps-alt-variant":"पुश्तो","pt":"पुर्तगाली","pt-BR":"ब्राज़ीली पुर्तगाली","pt-PT":"यूरोपीय पुर्तगाली","qu":"क्वेचुआ","quc":"किश","qug":"qug","raj":"राजस्थानी","rap":"रापानुई","rar":"रारोतोंगन","rgn":"rgn","rif":"rif","rm":"रोमान्श","rn":"रुन्दी","ro":"रोमानियाई","ro-MD":"मोलडावियन","rof":"रोम्बो","rom":"रोमानी","root":"रूट","rtm":"rtm","ru":"रूसी","rue":"rue","rug":"rug","rup":"अरोमानियन","rw":"किन्यारवांडा","rwk":"रवा","sa":"संस्कृत","sad":"सन्डावे","sah":"याकूत","sam":"सामैरिटन अरैमिक","saq":"सैम्बुरु","sas":"सासाक","sat":"संताली","saz":"saz","sba":"sba","sbp":"सैंगु","sc":"सार्दिनियन","scn":"सिसिलियन","sco":"स्कॉट्स","sd":"सिंधी","sdc":"sdc","se":"नॉर्दन सामी","see":"see","seh":"सेना","sei":"sei","sel":"सेल्कप","ses":"कोयराबोरो सेन्नी","sg":"सांगो","sga":"पुरानी आइरिश","sgs":"sgs","sh":"सेर्बो-क्रोएशन्","shi":"तैचेल्हित","shn":"शैन","shu":"shu","si":"सिंहली","sid":"सिदामो","sk":"स्लोवाक","sl":"स्लोवेनियाई","sli":"sli","sly":"sly","sm":"सामोन","sma":"दक्षिण सामी","smj":"ल्युल सामी","smn":"इनारी सामी","sms":"स्कोल्ट सामी","sn":"शोणा","snk":"सोनिन्के","so":"सोमाली","sog":"सोग्डिएन","sq":"अल्बानियाई","sr":"सर्बियाई","srn":"स्रानान टॉन्गो","srr":"सेरेर","ss":"स्वाती","ssy":"ssy","st":"सेसोथो","stq":"stq","su":"सुंडानी","suk":"सुकुमा","sus":"सुसु","sux":"सुमेरियन","sv":"स्वीडिश","sw":"स्वाहिली","swb":"कोमोरियन","swc":"कांगो स्वाहिली","syc":"क्लासिकल सिरिएक","syr":"सिरिएक","szl":"szl","ta":"तमिल","tcy":"tcy","te":"तेलुगू","tem":"टिम्ने","teo":"टेसो","ter":"तेरेनो","tet":"तेतुम","tg":"ताजिक","th":"थाई","ti":"तिग्रीन्या","tig":"टाइग्रे","tiv":"तिव","tk":"तुर्कमेन","tkl":"तोकेलाऊ","tkr":"tkr","tl":"तागालोग","tlh":"क्लिंगन","tli":"त्लिंगित","tly":"tly","tmh":"तामाशेक","tn":"सेत्स्वाना","to":"टोंगन","tog":"न्यासा टोन्गा","tpi":"टोक पिसिन","tr":"तुर्की","tru":"tru","trv":"trv","ts":"सोंगा","tsd":"tsd","tsi":"त्सिमीशियन","tt":"तातार","ttt":"ttt","tum":"तम्बूका","tvl":"तुवालु","tw":"ट्वी","twq":"टासवाक","ty":"ताहितियन","tyv":"तुवीनियन","tzm":"मध्य एटलस तमाज़ित","udm":"उदमुर्त","ug":"विघुर","uga":"युगैरिटिक","uk":"यूक्रेनियाई","umb":"उम्बुन्डु","und":"अज्ञात भाषा","ur":"उर्दू","uz":"उज़्बेक","vai":"वाई","ve":"वेन्दा","vec":"vec","vep":"vep","vi":"वियतनामी","vls":"vls","vmf":"vmf","vo":"वोलापुक","vot":"वॉटिक","vro":"vro","vun":"वुंजो","wa":"वाल्लून","wae":"wae","wal":"वलामो","war":"वारै","was":"वाशो","wo":"वोलोफ़","wuu":"wuu","xal":"काल्मिक","xh":"ख़ोसा","xmf":"xmf","xog":"सोगा","yao":"याओ","yap":"यापीस","yav":"yav","ybb":"ybb","yi":"येहुदी","yo":"योरूबा","yrl":"yrl","yue":"कैंटोनीज़","za":"ज़ुआंग","zap":"ज़ेपोटेक","zbl":"ब्लिसिम्बॉल्स","zea":"zea","zen":"ज़ेनान्गा","zgh":"मानक मोरक्कन तामाज़ाइट","zh":"चीनी","zh-Hans":"सरलीकृत चीनी","zh-Hant":"पारंपरिक चीनी","zu":"ज़ुलू","zun":"ज़ूनी","zxx":"कोई भाषा सामग्री नहीं","zza":"ज़ाज़ा"} \ No newline at end of file diff --git a/Punic/data/hi/listPatterns.json b/Punic/data/hi/listPatterns.json new file mode 100644 index 0000000..9ae8577 --- /dev/null +++ b/Punic/data/hi/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, और %2$s","2":"%1$s और %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, और %2$s","2":"%1$s और %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/hi/localeDisplayNames.json b/Punic/data/hi/localeDisplayNames.json new file mode 100644 index 0000000..5fff040 --- /dev/null +++ b/Punic/data/hi/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"कैलेंडर","colAlternate":"चिह्न वर्गीकरण पर ध्यान न दें","colBackwards":"विपरीत उच्‍चारण वर्गीकरण","colCaseFirst":"अपरकेस/लोअरकेस क्रमांकन","colCaseLevel":"केस संवेदी वर्गीकरण","colHiraganaQuaternary":"काना वर्गीकरण","colNormalization":"सामान्यीकृत वर्गीकरण","colNumeric":"संख्यात्मक वर्गीकरण","colStrength":"वर्गीकरण सशक्तता","collation":"सॉर्ट क्रम","currency":"मुद्रा","numbers":"संख्याएँ","timezone":"समय क्षेत्र","va":"स्थानीय प्रकार","variableTop":"चिह्न के रूप में क्रमित करें","x":"निजी-उपयोग"},"types":{"numbers":{"vaii":"वाई अंक"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"चीनी गणतंत्र पंचांग"},"colStrength":{"tertiary":"उच्‍चारणों/केस/चौड़ाई क्रमित करें"},"colCaseFirst":{"upper":"पहले अपरकेस क्रमित करें"},"colBackwards":{"yes":"उच्‍चारण के उलट क्रमित करें"},"colCaseLevel":{"yes":"केस संवेदी को क्रमित करें"},"colHiraganaQuaternary":{"yes":"काना को भिन्‍न रूप में क्रमित करें"},"colNormalization":{"yes":"यूनिकोड सामान्‍यीकृत क्रमित करें"},"colNumeric":{"yes":"अंकों को अंकीय रूप से क्रमित करें"},"colAlternate":{"shifted":"प्रतीकों पर ध्यान न देकर क्रमित करें"}},"codePatterns":{"language":"भाषा: %1$s","script":"लिपि: %1$s","territory":"क्षेत्र: %1$s"}} \ No newline at end of file diff --git a/Punic/data/hi/numbers.json b/Punic/data/hi/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/hi/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/hi/territories.json b/Punic/data/hi/territories.json new file mode 100644 index 0000000..34d5558 --- /dev/null +++ b/Punic/data/hi/territories.json @@ -0,0 +1 @@ +{"001":"विश्व","002":"अफ़्रीका","003":"उत्तर अमेरिका","005":"दक्षिण अमेरिका","009":"ओशिआनिया","011":"पश्चिमी अफ़्रीका","013":"मध्य अमेरिका","014":"पूर्वी अफ़्रीका","015":"उत्तरी अफ़्रीका","017":"मध्य अफ़्रीका","018":"दक्षिणी अफ़्रीका","019":"अमेरिकाज़","021":"उत्तरी अमेरिका","029":"कैरिबियन","030":"पूर्वी एशिया","034":"दक्षिणी एशिया","035":"दक्षिण-पूर्व एशिया","039":"दक्षिणी यूरोप","053":"ऑस्ट्रेलेशिया","054":"मेलानेशिया","057":"माइक्रोनेशियाई क्षेत्र","061":"पोलीनेशिया","142":"एशिया","143":"मध्य एशिया","145":"पश्चिमी एशिया","150":"यूरोप","151":"पूर्वी यूरोप","154":"उत्तरी यूरोप","155":"पश्चिमी यूरोप","419":"लैटिन अमेरिका","AC":"असेंशन द्वीप","AD":"एंडोरा","AE":"संयुक्त अरब अमीरात","AF":"अफ़गानिस्तान","AG":"एंटिगुआ और बरबुडा","AI":"एंग्विला","AL":"अल्बानिया","AM":"आर्मेनिया","AN":"नीदरलैंडी ऐंटील","AO":"अंगोला","AQ":"अंटार्कटिका","AR":"अर्जेंटीना","AS":"अमेरिकी समोआ","AT":"ऑस्ट्रिया","AU":"ऑस्ट्रेलिया","AW":"अरूबा","AX":"एलैंड द्वीपसमूह","AZ":"अज़रबैजान","BA":"बोस्निया और हर्ज़ेगोविना","BB":"बारबाडोस","BD":"बांग्लादेश","BE":"बेल्जियम","BF":"बुर्किना फ़ासो","BG":"बुल्गारिया","BH":"बहरीन","BI":"बुरुंडी","BJ":"बेनिन","BL":"सेंट बार्थेलेमी","BM":"बरमूडा","BN":"ब्रूनेई","BO":"बोलीविया","BQ":"कैरिबियन नीदरलैंड","BR":"ब्राज़ील","BS":"बहामास","BT":"भूटान","BV":"बोवेत द्वीप","BW":"बोत्स्वाना","BY":"बेलारूस","BZ":"बेलीज़","CA":"कनाडा","CC":"कोकोस (कीलिंग) द्वीपसमूह","CD":"कांगो - किंशासा","CD-alt-variant":"कांगो (डीआरसी)","CF":"मध्य अफ़्रीकी गणराज्य","CG":"कांगो – ब्राज़ाविल","CG-alt-variant":"कांगो (गणराज्य)","CH":"स्विट्ज़रलैंड","CI":"कोट डी आइवर","CI-alt-variant":"आइवरी कोस्ट","CK":"कुक द्वीपसमूह","CL":"चिली","CM":"कैमरून","CN":"चीन","CO":"कोलंबिया","CP":"क्लिपर्टन द्वीप","CR":"कोस्टारिका","CU":"क्यूबा","CV":"केप वर्ड","CW":"क्यूरासाओ","CX":"क्रिसमस द्वीप","CY":"साइप्रस","CZ":"चेक गणराज्य","DE":"जर्मनी","DG":"डिएगो गार्सिया","DJ":"जिबूती","DK":"डेनमार्क","DM":"डोमिनिका","DO":"डोमिनिकन गणराज्य","DZ":"अल्जीरिया","EA":"सेउटा और मेलिला","EC":"इक्वाडोर","EE":"एस्टोनिया","EG":"मिस्र","EH":"पश्चिमी सहारा","ER":"इरिट्रिया","ES":"स्पेन","ET":"इथियोपिया","EU":"यूरोपीय संघ","FI":"फ़िनलैंड","FJ":"फ़िजी","FK":"फ़ॉकलैंड द्वीपसमूह","FK-alt-variant":"फ़ॉकलैंड द्वीपसमूह (इज़्लास माल्विनास)","FM":"माइक्रोनेशिया","FO":"फ़ेरो द्वीपसमूह","FR":"फ़्रांस","GA":"गैबॉन","GB":"यूनाइटेड किंगडम","GB-alt-short":"यू.के.","GD":"ग्रेनाडा","GE":"जॉर्जिया","GF":"फ़्रेंच गयाना","GG":"गर्नसी","GH":"घाना","GI":"जिब्राल्टर","GL":"ग्रीनलैंड","GM":"गाम्बिया","GN":"गिनी","GP":"ग्वाडेलूप","GQ":"इक्वेटोरियल गिनी","GR":"यूनान","GS":"दक्षिण जॉर्जिया और दक्षिण सैंडविच द्वीपसमूह","GT":"ग्वाटेमाला","GU":"गुआम","GW":"गिनी-बिसाउ","GY":"गयाना","HK":"हाँग काँग (चीन विशेष प्रशासनिक क्षेत्र)","HK-alt-short":"हाँग काँग","HM":"हर्ड द्वीप और मैकडोनॉल्ड द्वीपसमूह","HN":"होंडूरास","HR":"क्रोएशिया","HT":"हैती","HU":"हंगरी","IC":"कैनेरी द्वीपसमूह","ID":"इंडोनेशिया","IE":"आयरलैंड","IL":"इसराइल","IM":"आइल ऑफ़ मैन","IN":"भारत","IO":"ब्रिटिश हिंद महासागरीय क्षेत्र","IQ":"इराक","IR":"ईरान","IS":"आइसलैंड","IT":"इटली","JE":"जर्सी","JM":"जमैका","JO":"जॉर्डन","JP":"जापान","KE":"केन्या","KG":"किर्गिज़स्तान","KH":"कंबोडिया","KI":"किरिबाती","KM":"कोमोरोस","KN":"सेंट किट्स और नेविस","KP":"उत्तर कोरिया","KR":"दक्षिण कोरिया","KW":"कुवैत","KY":"केमैन द्वीपसमूह","KZ":"कज़ाखस्तान","LA":"लाओस","LB":"लेबनान","LC":"सेंट लूसिया","LI":"लिचेंस्टीन","LK":"श्रीलंका","LR":"लाइबेरिया","LS":"लेसोथो","LT":"लिथुआनिया","LU":"लग्ज़मबर्ग","LV":"लातविया","LY":"लीबिया","MA":"मोरक्को","MC":"मोनाको","MD":"मॉल्डोवा","ME":"मोंटेनेग्रो","MF":"सेंट मार्टिन","MG":"मेडागास्कर","MH":"मार्शल द्वीपसमूह","MK":"मैसिडोनिया","MK-alt-variant":"मैसिडोनिया (FYROM)","ML":"माली","MM":"म्यांमार (बर्मा)","MN":"मंगोलिया","MO":"मकाऊ (विशेष प्रशासनिक क्षेत्र चीन)","MO-alt-short":"मकाऊ","MP":"उत्तरी मारियाना द्वीपसमूह","MQ":"मार्टीनिक","MR":"मॉरिटानिया","MS":"मोंटसेरात","MT":"माल्टा","MU":"मॉरिशस","MV":"मालदीव","MW":"मलावी","MX":"मैक्सिको","MY":"मलेशिया","MZ":"मोज़ांबिक","NA":"नामीबिया","NC":"न्यू कैलेडोनिया","NE":"नाइजर","NF":"नॉरफ़ॉक द्वीप","NG":"नाइजीरिया","NI":"निकारागुआ","NL":"नीदरलैंड","NO":"नॉर्वे","NP":"नेपाल","NR":"नाउरु","NU":"नीयू","NZ":"न्यूज़ीलैंड","OM":"ओमान","PA":"पनामा","PE":"पेरू","PF":"फ़्रेंच पोलिनेशिया","PG":"पापुआ न्यू गिनी","PH":"फ़िलिपींस","PK":"पाकिस्तान","PL":"पोलैंड","PM":"सेंट पिएरे और मिक्वेलान","PN":"पिटकैर्न द्वीपसमूह","PR":"पोर्टो रिको","PS":"फ़िलिस्तीनी क्षेत्र","PS-alt-short":"फ़िलिस्तीन","PT":"पुर्तगाल","PW":"पलाऊ","PY":"पेराग्वे","QA":"क़तर","QO":"आउटलाइंग ओशिनिया","RE":"रियूनियन","RO":"रोमानिया","RS":"सर्बिया","RU":"रूस","RW":"रवांडा","SA":"सऊदी अरब","SB":"सोलोमन द्वीपसमूह","SC":"सेशेल्स","SD":"सूडान","SE":"स्वीडन","SG":"सिंगापुर","SH":"सेंट हेलेना","SI":"स्लोवेनिया","SJ":"स्वालबार्ड और जान मायेन","SK":"स्लोवाकिया","SL":"सिएरा लियोन","SM":"सैन मेरीनो","SN":"सेनेगल","SO":"सोमालिया","SR":"सूरीनाम","SS":"दक्षिण सूडान","ST":"साओ टोम और प्रिंसिपे","SV":"अल सल्वाडोर","SX":"सिंट मार्टिन","SY":"सीरिया","SZ":"स्वाज़ीलैंड","TA":"त्रिस्टान डा कुना","TC":"तुर्क और कैकोज़ द्वीपसमूह","TD":"चाड","TF":"फ़्रांसीसी दक्षिणी क्षेत्र","TG":"टोगो","TH":"थाईलैंड","TJ":"ताजिकिस्तान","TK":"तोकेलाउ","TL":"तिमोर-लेस्त","TL-alt-variant":"पूर्वी तिमोर","TM":"तुर्कमेनिस्तान","TN":"ट्यूनीशिया","TO":"टोंगा","TR":"तुर्की","TT":"त्रिनिदाद और टोबैगो","TV":"तुवालू","TW":"ताइवान","TZ":"तंज़ानिया","UA":"यूक्रेन","UG":"युगांडा","UM":"यू.एस. आउटलाइंग द्वीपसमूह","US":"संयुक्त राज्य","US-alt-short":"अमेरिका","UY":"उरूग्वे","UZ":"उज़्बेकिस्तान","VA":"वेटिकन सिटी","VC":"सेंट विंसेंट और ग्रेनाडाइंस","VE":"वेनेज़ुएला","VG":"ब्रिटिश वर्जिन द्वीपसमूह","VI":"यू.एस. वर्जिन द्वीपसमूह","VN":"वियतनाम","VU":"वनुआतू","WF":"वालिस और फ़्यूचूना","WS":"समोआ","XK":"कोसोवो","YE":"यमन","YT":"मायोते","ZA":"दक्षिण अफ़्रीका","ZM":"ज़ाम्बिया","ZW":"ज़िम्बाब्वे","ZZ":"अज्ञात क्षेत्र"} \ No newline at end of file diff --git a/Punic/data/hi/timeZoneNames.json b/Punic/data/hi/timeZoneNames.json new file mode 100644 index 0000000..d2314d5 --- /dev/null +++ b/Punic/data/hi/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s समय","regionFormat-type-standard":"%1$s मानक समय","regionFormat-type-daylight":"%1$s डेलाइट समय","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"अडक"},"Anchorage":{"exemplarCity":"एंकरेज"},"Anguilla":{"exemplarCity":"एंग्विला"},"Antigua":{"exemplarCity":"एंटीगुआ"},"Araguaina":{"exemplarCity":"आराग्वेना"},"Argentina":{"La_Rioja":{"exemplarCity":"ला रिओजा"},"Rio_Gallegos":{"exemplarCity":"रियो गालेगोस"},"Salta":{"exemplarCity":"साल्टा"},"San_Juan":{"exemplarCity":"सान जुआन"},"San_Luis":{"exemplarCity":"सान लुईस"},"Tucuman":{"exemplarCity":"टोकूमन"},"Ushuaia":{"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":"अल सल्वाडोर"},"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":{"Knox":{"exemplarCity":"नौक्स, इंडियाना"},"Marengo":{"exemplarCity":"मारेंगो, इंडियाना"},"Petersburg":{"exemplarCity":"पीटर्सबर्ग, इंडियाना"},"Tell_City":{"exemplarCity":"टेल सिटी, इंडियाना"},"Vevay":{"exemplarCity":"वेवे, इंडियाना"},"Vincennes":{"exemplarCity":"विंसेनेस, इंडियाना"},"Winamac":{"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":"ब्यूला, उत्तरी डकोटा"},"Center":{"exemplarCity":"मध्य, उत्तरी दाकोता"},"New_Salem":{"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":"अंडोरा"},"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":"कीव"},"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":"टाइरेन"},"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":"बैंकॉक"},"Beirut":{"exemplarCity":"बेरुत"},"Bishkek":{"exemplarCity":"बिश्केक"},"Brunei":{"exemplarCity":"ब्रूनेई"},"Calcutta":{"exemplarCity":"कोलकाता"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"चोइबालसन"},"Chongqing":{"exemplarCity":"चोंगकिंग"},"Colombo":{"exemplarCity":"कोलंबो"},"Damascus":{"exemplarCity":"दमास्कस"},"Dhaka":{"exemplarCity":"ढाका"},"Dili":{"exemplarCity":"डिलि"},"Dubai":{"exemplarCity":"दुबई"},"Dushanbe":{"exemplarCity":"दुशांबे"},"Gaza":{"exemplarCity":"गाज़ा"},"Harbin":{"exemplarCity":"हर्बिन"},"Hebron":{"exemplarCity":"हेब्रोन"},"Hong_Kong":{"exemplarCity":"हाँग काँग"},"Hovd":{"exemplarCity":"होव्ड"},"Irkutsk":{"exemplarCity":"इर्कुत्स्क"},"Jakarta":{"exemplarCity":"जकार्ता"},"Jayapura":{"exemplarCity":"जयापुरा"},"Jerusalem":{"exemplarCity":"यरूशलम"},"Kabul":{"exemplarCity":"काबुल"},"Kamchatka":{"exemplarCity":"कमचत्का"},"Karachi":{"exemplarCity":"कराची"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"ताईपेई"},"Tashkent":{"exemplarCity":"ताशकंद"},"Tbilisi":{"exemplarCity":"टबिलिसी"},"Tehran":{"exemplarCity":"तेहरान"},"Thimphu":{"exemplarCity":"थिंपू"},"Tokyo":{"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":"ऑकलैंड"},"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":"दक्षिणी फ़्रांस और अंटार्कटिक समय"}},"GMT":{"long":{"standard":"ग्रीनविच मीन टाइम"}},"Galapagos":{"long":{"standard":"गैलापेगोस का समय"}},"Gambier":{"long":{"standard":"गैंबियर समय"}},"Georgia":{"long":{"generic":"जॉर्जिया समय","standard":"जॉर्जिया मानक समय","daylight":"जॉर्जिया ग्रीष्मकालीन समय"}},"Gilbert_Islands":{"long":{"standard":"गिल्बर्ट द्वीपसमूह समय"}},"Greenland_Eastern":{"long":{"generic":"पूर्वी ग्रीनलैंड समय","standard":"पूर्वी ग्रीनलैंड मानक समय","daylight":"पूर्वी ग्रीनलैंड ग्रीष्मकालीन समय"}},"Greenland_Western":{"long":{"generic":"पश्चिमी ग्रीनलैंड समय","standard":"पश्चिमी ग्रीनलैंड मानक समय","daylight":"पश्चिमी ग्रीनलैंड ग्रीष्मकालीन समय"}},"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":"भारतीय मानक समय"},"short":{"standard":"IST"}},"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":"फ़र्नांर्डो डे नोरोन्हा ग्रीष्मकालीन समय"}},"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":"पोनापे समय"}},"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":"येकातेरिनबर्ग ग्रीष्मकालीन समय"}}}} \ No newline at end of file diff --git a/Punic/data/hi/units.json b/Punic/data/hi/units.json new file mode 100644 index 0000000..42f8510 --- /dev/null +++ b/Punic/data/hi/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s प्रति %2$s","acceleration":{"g-force":{"_name":"गुरुत्व बल","one":"%1$s गु–बल","other":"%1$s गु–बल"},"meter-per-second-squared":{"_name":"मीटर प्रति सेकंड वर्ग","one":"%1$s मीटर प्रति सेकंड वर्ग","other":"%1$s मीटर प्रति सेकंड वर्ग"}},"angle":{"arc-minute":{"_name":"आर्क मिनट","one":"%1$s आर्क मिनट","other":"%1$s आर्क मिनट"},"arc-second":{"_name":"आर्क सेकंड","one":"%1$s आर्क सेकंड","other":"%1$s आर्क सेकंड"},"degree":{"_name":"अंश","one":"%1$s अंश","other":"%1$s अंश"},"radian":{"_name":"रेडियन","one":"%1$s रेडियन","other":"%1$s रेडियन"}},"area":{"acre":{"_name":"एकड़","one":"%1$s एकड़","other":"%1$s एकड़"},"hectare":{"_name":"हेक्टेयर","one":"%1$s हेक्टेयर","other":"%1$s हेक्टेयर"},"square-centimeter":{"_name":"वर्ग सेंटीमीटर","one":"%1$s वर्ग सेंटीमीटर","other":"%1$s वर्ग सेंटीमीटर"},"square-foot":{"_name":"वर्गफ़ीट","one":"%1$s वर्गफ़ुट","other":"%1$s वर्गफ़ीट"},"square-inch":{"_name":"वर्ग इंच","one":"%1$s वर्ग इंच","other":"%1$s वर्ग इंच"},"square-kilometer":{"_name":"वर्ग किलोमीटर","one":"%1$s वर्ग किलोमीटर","other":"%1$s वर्ग किलोमीटर"},"square-meter":{"_name":"वर्ग मीटर","one":"%1$s वर्ग मीटर","other":"%1$s वर्ग मीटर"},"square-mile":{"_name":"वर्ग मील","one":"%1$s वर्ग मील","other":"%1$s वर्ग मील"},"square-yard":{"_name":"वर्ग यार्ड","one":"%1$s वर्ग यार्ड","other":"%1$s वर्ग यार्ड"}},"consumption":{"liter-per-kilometer":{"_name":"लीटर प्रति किलोमीटर","one":"%1$s लीटर प्रति किलोमीटर","other":"%1$s लीटर प्रति किलोमीटर"},"mile-per-gallon":{"_name":"मील प्रति गैलन","one":"%1$s मील प्रति गैलन","other":"%1$s मील प्रति गैलन"}},"digital":{"bit":{"_name":"बिट","one":"%1$s बिट","other":"%1$s बिट"},"byte":{"_name":"बाइट","one":"%1$s बाइट","other":"%1$s बाइट"},"gigabit":{"_name":"गीगाबिट","one":"%1$s गीगाबिट","other":"%1$s गीगाबिट"},"gigabyte":{"_name":"गीगाबाइट","one":"%1$s गीगाबाइट","other":"%1$s गीगाबाइट"},"kilobit":{"_name":"किलोबिट","one":"%1$s किलोबिट","other":"%1$s किलोबिट"},"kilobyte":{"_name":"किलोबाइट","one":"%1$s किलोबाइट","other":"%1$s किलोबाइट"},"megabit":{"_name":"मेगाबिट","one":"%1$s मेगाबिट","other":"%1$s मेगाबिट"},"megabyte":{"_name":"मेगाबाइट","one":"%1$s मेगाबाइट","other":"%1$s मेगाबाइट"},"terabit":{"_name":"टेराबिट","one":"%1$s टेराबिट","other":"%1$s टेराबिट"},"terabyte":{"_name":"टेराबाइट","one":"%1$s टेराबाइट","other":"%1$s टेराबाइट"}},"duration":{"day":{"_name":"दिन","one":"%1$s दिन","other":"%1$s दिन"},"hour":{"_name":"घंटे","one":"%1$s घंटा","other":"%1$s घंटे","_per":"%1$s प्रति घंटा"},"microsecond":{"_name":"माइक्रोसेकंड","one":"%1$s माइक्रोसेकंड","other":"%1$s माइक्रोसेकंड"},"millisecond":{"_name":"मिलीसेकंड","one":"%1$s मिलीसेकंड","other":"%1$s मिलीसेकंड"},"minute":{"_name":"मिनट","one":"%1$s मिनट","other":"%1$s मिनट"},"month":{"_name":"माह","one":"%1$s माह","other":"%1$s माह"},"nanosecond":{"_name":"नैनो सेकंड","one":"%1$s नैनो सेकंड","other":"%1$s नैनो सेकंड"},"second":{"_name":"सेकंड","one":"%1$s सेकंड","other":"%1$s सेकंड","_per":"%1$s प्रति सेकंड"},"week":{"_name":"सप्ताह","one":"%1$s सप्ताह","other":"%1$s सप्ताह"},"year":{"_name":"वर्ष","one":"%1$s वर्ष","other":"%1$s वर्ष"}},"electric":{"ampere":{"_name":"एम्पीयर","one":"%1$s एम्पीयर","other":"%1$s एम्पीयर"},"milliampere":{"_name":"मिली एम्‍पीयर","one":"%1$s मिली एम्‍पीयर","other":"%1$s मिली एम्‍पीयर"},"ohm":{"_name":"ओम","one":"%1$s ओम","other":"%1$s ओम"},"volt":{"_name":"वोल्ट्स","one":"%1$s वोल्ट","other":"%1$s वोल्ट्स"}},"energy":{"calorie":{"_name":"कैलोरी","one":"%1$s कैलोरी","other":"%1$s कैलोरी"},"foodcalorie":{"_name":"कैलोरी","one":"%1$s कैलोरी","other":"%1$s कैलोरी"},"joule":{"_name":"जूल","one":"%1$s जूल","other":"%1$s जूल"},"kilocalorie":{"_name":"किलो कैलोरी","one":"%1$s किलो कैलोरी","other":"%1$s किलो कैलोरी"},"kilojoule":{"_name":"किलो जूल","one":"%1$s किलो जूल","other":"%1$s किलो जूल"},"kilowatt-hour":{"_name":"किलोवॉट घंटे","one":"%1$s किलोवॉट घंटा","other":"%1$s किलोवॉट घंटे"}},"frequency":{"gigahertz":{"_name":"गीगाहर्ट्ज़","one":"%1$s गीगाहर्ट्ज़","other":"%1$s गीगाहर्ट्ज़"},"hertz":{"_name":"हर्ट्ज़","one":"%1$s हर्ट्ज़","other":"%1$s हर्ट्ज़"},"kilohertz":{"_name":"किलोहर्ट्ज़","one":"%1$s किलोहर्ट्ज़","other":"%1$s किलोहर्ट्ज़"},"megahertz":{"_name":"मेगाहर्ट्ज़","one":"%1$s मेगाहर्ट्ज़","other":"%1$s मेगाहर्ट्ज़"}},"length":{"astronomical-unit":{"_name":"खगोलीय इकाईयां","one":"%1$s खगोलीय इकाई","other":"%1$s खगोलीय इकाईयां"},"centimeter":{"_name":"सेंटीमीटर","one":"%1$s सेंटीमीटर","other":"%1$s सेंटीमीटर"},"decimeter":{"_name":"डेसीमीटर","one":"%1$s डेसीमीटर","other":"%1$s डेसीमीटर"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"फ़ीट","one":"%1$s फ़ुट","other":"%1$s फ़ीट"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"इंच","one":"%1$s इंच","other":"%1$s इंच"},"kilometer":{"_name":"किलोमीटर","one":"%1$s किलोमीटर","other":"%1$s किलोमीटर"},"light-year":{"_name":"प्रकाश वर्ष","one":"%1$s प्रकाश वर्ष","other":"%1$s प्रकाश वर्ष"},"meter":{"_name":"मीटर","one":"%1$s मीटर","other":"%1$s मीटर"},"micrometer":{"_name":"माइक्रोमीटर","one":"%1$s माइक्रोमीटर","other":"%1$s माइक्रोमीटर"},"mile":{"_name":"मील","one":"%1$s मील","other":"%1$s मील"},"millimeter":{"_name":"मिलीमीटर","one":"%1$s मिलीमीटर","other":"%1$s मिलीमीटर"},"nanometer":{"_name":"नैनोमीटर","one":"%1$s नैनोमीटर","other":"%1$s नैनोमीटर"},"nautical-mile":{"_name":"नॉटिकल मील","one":"%1$s नॉटिकल मील","other":"%1$s नॉटिकल मील"},"parsec":{"_name":"पार्सेक","one":"%1$s पार्सेक","other":"%1$s पार्सेक"},"picometer":{"_name":"पिकोमीटर","one":"%1$s पिकोमीटर","other":"%1$s पिकोमीटर"},"yard":{"_name":"यार्ड","one":"%1$s यार्ड","other":"%1$s यार्ड"}},"light":{"lux":{"_name":"लक्स","one":"%1$s लक्स","other":"%1$s लक्स"}},"mass":{"carat":{"_name":"कैरेट","one":"%1$s कैरेट","other":"%1$s कैरेट"},"gram":{"_name":"ग्राम","one":"%1$s ग्राम","other":"%1$s ग्राम"},"kilogram":{"_name":"किलोग्राम","one":"%1$s किलोग्राम","other":"%1$s किलोग्राम"},"metric-ton":{"_name":"मीट्रिक टन","one":"%1$s मीट्रिक टन","other":"%1$s मीट्रिक टन"},"microgram":{"_name":"माइक्रोग्राम","one":"%1$s माइक्रोग्राम","other":"%1$s माइक्रोग्राम"},"milligram":{"_name":"मिलीग्राम","one":"%1$s मिलीग्राम","other":"%1$s मिलीग्राम"},"ounce":{"_name":"औंस","one":"%1$s औंस","other":"%1$s औंस"},"ounce-troy":{"_name":"ट्राई औंस","one":"%1$s ट्राई औंस","other":"%1$s ट्राई औंस"},"pound":{"_name":"पौंड","one":"%1$s पौंड","other":"%1$s पौंड"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"टन","one":"%1$s टन","other":"%1$s टन"}},"power":{"gigawatt":{"_name":"गिगावॉट","one":"%1$s गिगावॉट","other":"%1$s गिगावॉट"},"horsepower":{"_name":"अश्वशक्ति","one":"%1$s अश्वशक्ति","other":"%1$s अश्वशक्ति"},"kilowatt":{"_name":"किलोवॉट","one":"%1$s किलोवॉट","other":"%1$s किलोवॉट"},"megawatt":{"_name":"मेगावॉट","one":"%1$s मेगावॉट","other":"%1$s मेगावॉट"},"milliwatt":{"_name":"मिलीवॉट","one":"%1$s मिलीवॉट","other":"%1$s मिलीवॉट"},"watt":{"_name":"वॉट","one":"%1$s वॉट","other":"%1$s वॉट"}},"pressure":{"hectopascal":{"_name":"हैक्टोपास्कल","one":"%1$s हैक्टोपास्कल","other":"%1$s हैक्टोपास्कल"},"inch-hg":{"_name":"मर्करी इंच","one":"%1$s मर्करी इंच","other":"%1$s मर्करी इंच"},"millibar":{"_name":"मिलीबार","one":"%1$s मिलीबार","other":"%1$s मिलीबार"},"millimeter-of-mercury":{"_name":"मर्क्यूरी मिलीमीटर","one":"%1$s मर्क्यूरी मिलीमीटर","other":"%1$s मर्क्यूरी मिलीमीटर"},"pound-per-square-inch":{"_name":"पाउंड प्रति वर्ग इंच","one":"%1$s पाउंड प्रति वर्ग इंच","other":"%1$s पाउंड प्रति वर्ग इंच"}},"proportion":{"karat":{"_name":"कैरट","one":"%1$s कैरट","other":"%1$s कैरट"}},"speed":{"kilometer-per-hour":{"_name":"किलोमीटर प्रति घंटा","one":"%1$s किलोमीटर प्रति घंटा","other":"%1$s किलोमीटर प्रति घंटा"},"meter-per-second":{"_name":"मीटर प्रति सेकंड","one":"%1$s मीटर प्रति सेकंड","other":"%1$s मीटर प्रति सेकंड"},"mile-per-hour":{"_name":"मील प्रति घंटा","one":"%1$s मील प्रति घंटा","other":"%1$s मील प्रति घंटा"}},"temperature":{"celsius":{"_name":"डिग्री सेल्सियस","one":"%1$s डिग्री सेल्सियस","other":"%1$s डिग्री सेल्सियस"},"fahrenheit":{"_name":"डिग्री फ़ेरनहाइट","one":"%1$s डिग्री फ़ेरनहाइट","other":"%1$s डिग्री फ़ेरनहाइट"},"kelvin":{"_name":"केल्विन","one":"%1$s केल्विन","other":"%1$s केल्विन"}},"volume":{"acre-foot":{"_name":"एकड़ फ़ीट","one":"%1$s एकड़ फ़ूट","other":"%1$s एकड़ फ़ीट"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"सेंटीलीटर","one":"%1$s सेंटीलीटर","other":"%1$s सेंटीलीटर"},"cubic-centimeter":{"_name":"घन सेंटीमीटर","one":"%1$s घन सेंटीमीटर","other":"%1$s घन सेंटीमीटर"},"cubic-foot":{"_name":"घन फ़ीट","one":"%1$s घन फ़ीट","other":"%1$s घन फ़ीट"},"cubic-inch":{"_name":"घन इंच","one":"%1$s घन इंच","other":"%1$s घन इंच"},"cubic-kilometer":{"_name":"घन किलोमीटर","one":"%1$s घन किलोमीटर","other":"%1$s घन किलोमीटर"},"cubic-meter":{"_name":"घन मीटर","one":"%1$s घन मीटर","other":"%1$s घन मीटर"},"cubic-mile":{"_name":"घन मील","one":"%1$s घन मील","other":"%1$s घन मील"},"cubic-yard":{"_name":"घन यार्ड","one":"%1$s घन यार्ड","other":"%1$s घन यार्ड"},"cup":{"_name":"कप","one":"%1$s कप","other":"%1$s कप"},"deciliter":{"_name":"डेसीलीटर","one":"%1$s डेसीलीटर","other":"%1$s डेसीलीटर"},"fluid-ounce":{"_name":"फ़्लुड आउंस","one":"%1$s फ़्लुड आउंस","other":"%1$s फ़्लुड आउंस"},"gallon":{"_name":"गैलन","one":"%1$s गैलन","other":"%1$s गैलन"},"hectoliter":{"_name":"हैक्टोलीटर","one":"%1$s हैक्टोलीटर","other":"%1$s हैक्टोलीटर"},"liter":{"_name":"लीटर","one":"%1$s लीटर","other":"%1$s लीटर"},"megaliter":{"_name":"मेगालीटर","one":"%1$s मेगालीटर","other":"%1$s मेगालीटर"},"milliliter":{"_name":"मिलीलीटर","one":"%1$s मिलीलीटर","other":"%1$s मिलीलीटर"},"pint":{"_name":"पिंट","one":"%1$s पिंट","other":"%1$s पिंट"},"quart":{"_name":"क्वार्ट","one":"%1$s क्वार्ट","other":"%1$s क्वार्ट"},"tablespoon":{"_name":"टेबलस्पून","one":"%1$s टेबलस्पून","other":"%1$s टेबलस्पून"},"teaspoon":{"_name":"टी स्पून","one":"%1$s टी स्पून","other":"%1$s टी स्पून"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"गु–बल","one":"%1$s गु.","other":"%1$s गु."},"meter-per-second-squared":{"_name":"मीटर/से²","one":"%1$s मीटर/से²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"आर्क मिनट","one":"%1$s आर्क मिनट","other":"%1$s आर्क मिनट"},"arc-second":{"_name":"आर्क सेकंड","one":"%1$s आर्क से.","other":"%1$s आर्क से."},"degree":{"_name":"अंश","one":"%1$s अंश","other":"%1$s अंश"},"radian":{"_name":"रेडियन","one":"%1$s रेडियन","other":"%1$s रेडियन"}},"area":{"acre":{"_name":"एकड़","one":"%1$s एकड़","other":"%1$s एकड़"},"hectare":{"_name":"हेक्टेयर","one":"%1$s हे.","other":"%1$s हे."},"square-centimeter":{"_name":"वर्ग सें.","one":"%1$s व. सें.","other":"%1$s व. सें."},"square-foot":{"_name":"व.फ़ी.","one":"%1$s व.फ़ी.","other":"%1$s व.फ़ी."},"square-inch":{"_name":"व. इं.","one":"%1$s व. इं.","other":"%1$s व. इं."},"square-kilometer":{"_name":"वर्ग कि.मी.","one":"%1$s वर्ग कि.मी.","other":"%1$s वर्ग कि.मी."},"square-meter":{"_name":"वर्ग मीटर","one":"%1$s वर्ग मी.","other":"%1$s वर्ग मी."},"square-mile":{"_name":"वर्ग मील","one":"%1$s वर्ग मील","other":"%1$s वर्ग मील"},"square-yard":{"_name":"व. या.","one":"%1$s व. या.","other":"%1$s व. या."}},"consumption":{"liter-per-kilometer":{"_name":"लीटर/किमी","one":"%1$s ली/किमी","other":"%1$s ली/किमी"},"mile-per-gallon":{"_name":"मील/गैलन","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"बिट","one":"%1$s बिट","other":"%1$s बिट"},"byte":{"_name":"बाइट","one":"%1$s बाइट","other":"%1$s बाइट"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"दिन","one":"%1$s दिन","other":"%1$s दिन"},"hour":{"_name":"घंटे","one":"%1$s घं.","other":"%1$s घं.","_per":"%1$s प्र. घं."},"microsecond":{"_name":"मा॰ सेक॰","one":"%1$s मा॰ से॰","other":"%1$s मा॰ से॰"},"millisecond":{"_name":"मिलीसेकंड","one":"%1$s मि.से.","other":"%1$s मि.से."},"minute":{"_name":"मिनट","one":"%1$s मि.","other":"%1$s मि."},"month":{"_name":"माह","one":"%1$s माह","other":"%1$s माह"},"nanosecond":{"_name":"नैनो से.","one":"%1$s नैनो से.","other":"%1$s नैनो से."},"second":{"_name":"सेकंड","one":"%1$s सेक.","other":"%1$s सेक.","_per":"%1$s प्र. से."},"week":{"_name":"सप्ताह","one":"%1$s सप्ताह","other":"%1$s सप्ताह"},"year":{"_name":"वर्ष","one":"%1$s वर्ष","other":"%1$s वर्ष"}},"electric":{"ampere":{"_name":"एम्पी॰","one":"%1$s ए॰","other":"%1$s ए॰"},"milliampere":{"_name":"मि॰ ए॰","one":"%1$s मि॰ ए॰","other":"%1$s मि॰ ए॰"},"ohm":{"_name":"ओम","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"वोल्ट्स","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"जूल","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"किलो जूल","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"खगो. इका.","one":"%1$s खगो. इका.","other":"%1$s खगो. इका."},"centimeter":{"_name":"सें.मी.","one":"%1$s सें.मी.","other":"%1$s सें.मी."},"decimeter":{"_name":"डे.मी.","one":"%1$s डे.मी.","other":"%1$s डे.मी."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"फ़ीट","one":"%1$s फ़ीट","other":"%1$s फ़ीट"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"इंच","one":"%1$s इंच","other":"%1$s इंच"},"kilometer":{"_name":"कि.मी.","one":"%1$s कि.मी.","other":"%1$s कि.मी."},"light-year":{"_name":"प्रकाश वर्ष","one":"%1$s प्र.व.","other":"%1$s प्र.व."},"meter":{"_name":"मीटर","one":"%1$s मी","other":"%1$s मी"},"micrometer":{"_name":"µ मा.मी.","one":"%1$s µ मा.मी.","other":"%1$s µ मा.मी."},"mile":{"_name":"मील","one":"%1$s मील","other":"%1$s मील"},"millimeter":{"_name":"मि.मी.","one":"%1$s मि.मी.","other":"%1$s मि.मी."},"nanometer":{"_name":"नै.मी.","one":"%1$s नै.मी.","other":"%1$s नै.मी."},"nautical-mile":{"_name":"नॉ. मी.","one":"%1$s नॉ. मी.","other":"%1$s नॉ. मी."},"parsec":{"_name":"पार्सेक","one":"%1$s पार्सेक","other":"%1$s पार्सेक"},"picometer":{"_name":"पि.मी.","one":"%1$s पि.मी.","other":"%1$s पि.मी."},"yard":{"_name":"यार्ड","one":"%1$s यार्ड","other":"%1$s यार्ड"}},"light":{"lux":{"_name":"लक्स","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"कै॰","one":"%1$s कै.","other":"%1$s कै."},"gram":{"_name":"ग्राम","one":"%1$s ग्रा.","other":"%1$s ग्रा."},"kilogram":{"_name":"कि.ग्रा.","one":"%1$s कि.ग्रा.","other":"%1$s कि.ग्रा."},"metric-ton":{"_name":"मीट्रिक टन","one":"%1$s मीट्रिक टन","other":"%1$s मीट्रिक टन"},"microgram":{"_name":"मा॰ग्रा॰","one":"%1$s मा॰ग्रा॰","other":"%1$s मा॰ग्रा॰"},"milligram":{"_name":"मि.ग्रा.","one":"%1$s मि.ग्रा.","other":"%1$s मि.ग्रा."},"ounce":{"_name":"औंस","one":"%1$s औं.","other":"%1$s औं."},"ounce-troy":{"_name":"ट्राई औंस","one":"%1$s ट्राई औंस","other":"%1$s ट्राई औंस"},"pound":{"_name":"पौंड","one":"%1$s पौंड","other":"%1$s पौंड"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"टन","one":"%1$s टन","other":"%1$s टन"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"वॉट","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"कैरट","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"कि.मी./घं.","one":"%1$s कि.मी. प्रति घं.","other":"%1$s कि.मी. प्रति घं."},"meter-per-second":{"_name":"मी./से.","one":"%1$s मी./से.","other":"%1$s मी./से."},"mile-per-hour":{"_name":"मील/घं.","one":"%1$s मी.प्र.घं.","other":"%1$s मी.प्र.घं."}},"temperature":{"celsius":{"_name":"डिग्री सेल्सियस","one":"%1$s°से.","other":"%1$s°से."},"fahrenheit":{"_name":"डिग्री फ़ेरनहाइट","one":"%1$s°फेरन.","other":"%1$s°फेरन."},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"एकड़ फ़ीट","one":"%1$s ए.फ़ी.","other":"%1$s ए.फ़ी."},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"सें.ली.","one":"%1$s सें.ली.","other":"%1$s सें.ली."},"cubic-centimeter":{"_name":"घन सें. मी.","one":"%1$s घन सें. मी.","other":"%1$s घन सें. मी."},"cubic-foot":{"_name":"घ. फ़ी.","one":"%1$s घ. फ़ी.","other":"%1$s घ. फ़ी."},"cubic-inch":{"_name":"घन इंच","one":"%1$s घन इंच","other":"%1$s घन इंच"},"cubic-kilometer":{"_name":"घन कि.मी.","one":"%1$s घन कि.मी.","other":"%1$s घन कि.मी."},"cubic-meter":{"_name":"घन मी.","one":"%1$s घन मी.","other":"%1$s घन मी."},"cubic-mile":{"_name":"घन मील","one":"%1$s घन मील","other":"%1$s घन मील"},"cubic-yard":{"_name":"घन या.","one":"%1$s घन या.","other":"%1$s घन या."},"cup":{"_name":"कप","one":"%1$s कप","other":"%1$s कप"},"deciliter":{"_name":"डे.ली.","one":"%1$s डे.ली.","other":"%1$s डे.ली."},"fluid-ounce":{"_name":"फ़्लुड आउंस","one":"%1$s फ़्लुड आउंस","other":"%1$s फ़्लुड आउंस"},"gallon":{"_name":"गैलन","one":"%1$s गैलन","other":"%1$s गैलन"},"hectoliter":{"_name":"है.ली.","one":"%1$s है.ली.","other":"%1$s है.ली."},"liter":{"_name":"लीटर","one":"%1$s ली.","other":"%1$s ली."},"megaliter":{"_name":"मे. ली.","one":"%1$s मे. ली.","other":"%1$s मे. ली."},"milliliter":{"_name":"मि. ली.","one":"%1$s मि. ली.","other":"%1$s मि. ली."},"pint":{"_name":"पिंट","one":"%1$s पिंट","other":"%1$s पिंट"},"quart":{"_name":"क्वार्ट","one":"%1$s क्वार्ट","other":"%1$s क्वार्ट"},"tablespoon":{"_name":"टे. स्पून","one":"%1$s टे. स्पून","other":"%1$s टे. स्पून"},"teaspoon":{"_name":"टी स्पून","one":"%1$s टी स्पून","other":"%1$s टी स्पून"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"गु–बल","one":"%1$sगु.","other":"%1$sगु."},"meter-per-second-squared":{"_name":"मीटर/से²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"आर्क मिनट","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"आर्क सेकंड","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"अंश","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"रेडियन","one":"%1$s रेडियन","other":"%1$s रेडियन"}},"area":{"acre":{"_name":"एकड़","one":"%1$sएकड़","other":"%1$sएकड़"},"hectare":{"_name":"हेक्टेयर","one":"%1$sहे.","other":"%1$sहे."},"square-centimeter":{"_name":"वर्ग सें.","one":"%1$s व. सें.","other":"%1$s व. सें."},"square-foot":{"_name":"व.फ़ी.","one":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"व. इं.","one":"%1$s व. इं.","other":"%1$s व. इं."},"square-kilometer":{"_name":"वर्ग कि.मी.","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"वर्ग मीटर","one":"%1$s वर्ग मी.","other":"%1$s वर्ग मी."},"square-mile":{"_name":"वर्ग मील","one":"%1$sवर्ग मील","other":"%1$sवर्ग मील"},"square-yard":{"_name":"व. या.","one":"%1$s व. या.","other":"%1$s व. या."}},"consumption":{"liter-per-kilometer":{"_name":"लीटर/किमी","one":"%1$s ली/किमी","other":"%1$s ली/किमी"},"mile-per-gallon":{"_name":"मील/गैलन","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"बिट","one":"%1$s बिट","other":"%1$s बिट"},"byte":{"_name":"बाइट","one":"%1$s बाइट","other":"%1$s बाइट"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"दिन","one":"%1$sदिन","other":"%1$sदिन"},"hour":{"_name":"घंटा","one":"%1$sघं.","other":"%1$sघं.","_per":"%1$s प्र. घं."},"microsecond":{"_name":"मा॰ सेक॰","one":"%1$s मा॰ से॰","other":"%1$s मा॰ से॰"},"millisecond":{"_name":"मि.से.","one":"%1$s मि.से.","other":"%1$s मि.से."},"minute":{"_name":"मिनट","one":"%1$sमि.","other":"%1$sमि."},"month":{"_name":"माह","one":"%1$sमाह","other":"%1$sमाह"},"nanosecond":{"_name":"नैनो से.","one":"%1$s नैनो से.","other":"%1$s नैनो से."},"second":{"_name":"सेकंड","one":"%1$sसे.","other":"%1$sसे.","_per":"%1$s प्र. से."},"week":{"_name":"सप्ताह","one":"%1$s सप्ताह","other":"%1$s सप्ताह"},"year":{"_name":"वर्ष","one":"%1$sवर्ष","other":"%1$sवर्ष"}},"electric":{"ampere":{"_name":"एम्पी॰","one":"%1$s ए॰","other":"%1$s ए॰"},"milliampere":{"_name":"मि॰ ए॰","one":"%1$s मि॰ ए॰","other":"%1$s मि॰ ए॰"},"ohm":{"_name":"ओम","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"वोल्ट्स","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"जूल","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"किलो जूल","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"खगो. इका.","one":"%1$s खगो. इका.","other":"%1$s खगो. इका."},"centimeter":{"_name":"सें.मी.","one":"%1$s सें.मी.","other":"%1$s सें.मी."},"decimeter":{"_name":"डे.मी.","one":"%1$s डे.मी.","other":"%1$s डे.मी."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"फ़ीट","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"इंच","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"कि.मी.","one":"%1$s कि.मी.","other":"%1$s कि.मी."},"light-year":{"_name":"प्रकाश वर्ष","one":"%1$sप्र.व.","other":"%1$sप्र.व."},"meter":{"_name":"मीटर","one":"%1$sमी","other":"%1$sमी"},"micrometer":{"_name":"µ मा.मी.","one":"%1$s µ मा.मी.","other":"%1$s µ मा.मी."},"mile":{"_name":"मील","one":"%1$sमील","other":"%1$sमील"},"millimeter":{"_name":"मि.मी.","one":"%1$s मि.मी.","other":"%1$s मि.मी."},"nanometer":{"_name":"नै.मी.","one":"%1$s नै.मी.","other":"%1$s नै.मी."},"nautical-mile":{"_name":"नॉ. मी.","one":"%1$s नॉ. मी.","other":"%1$s नॉ. मी."},"parsec":{"_name":"पार्सेक","one":"%1$s पार्सेक","other":"%1$s पार्सेक"},"picometer":{"_name":"पि.मी.","one":"%1$sपि.मी.","other":"%1$sपि.मी."},"yard":{"_name":"यार्ड","one":"%1$sगज","other":"%1$sगज"}},"light":{"lux":{"_name":"लक्स","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"कै॰","one":"%1$s कै.","other":"%1$s कै."},"gram":{"_name":"ग्राम","one":"%1$s ग्रा.","other":"%1$s ग्रा."},"kilogram":{"_name":"कि.ग्रा.","one":"%1$s कि.ग्रा.","other":"%1$s कि.ग्रा."},"metric-ton":{"_name":"मीट्रिक टन","one":"%1$s मीट्रिक टन","other":"%1$s मीट्रिक टन"},"microgram":{"_name":"मा॰ग्रा॰","one":"%1$s मा॰ग्रा॰","other":"%1$s मा॰ग्रा॰"},"milligram":{"_name":"मि.ग्रा.","one":"%1$s मि.ग्रा.","other":"%1$s मि.ग्रा."},"ounce":{"_name":"औंस","one":"%1$sऔं.","other":"%1$sऔं."},"ounce-troy":{"_name":"ट्राई औंस","one":"%1$s ट्राई औंस","other":"%1$s ट्राई औंस"},"pound":{"_name":"पौंड","one":"%1$s#","other":"%1$s#"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"टन","one":"%1$s टन","other":"%1$s टन"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$sएचपी","other":"%1$sएचपी"},"kilowatt":{"_name":"kW","one":"%1$sकि.वॉ.","other":"%1$sकि.वॉ."},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"वॉट","one":"%1$sवॉ","other":"%1$sवॉ"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"कैरट","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"कि.मी./घं.","one":"%1$sकि॰/घं॰","other":"%1$sकि॰/घं॰"},"meter-per-second":{"_name":"मी./से.","one":"%1$sमी./से.","other":"%1$sमी./से."},"mile-per-hour":{"_name":"मील/घं.","one":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°से.","one":"%1$s°से.","other":"%1$s°से."},"fahrenheit":{"_name":"डिग्री फ़ेरनहाइट","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"एकड़ फ़ीट","one":"%1$s ए.फ़ी.","other":"%1$s ए.फ़ी."},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"सें.ली.","one":"%1$s सें.ली.","other":"%1$s सें.ली."},"cubic-centimeter":{"_name":"घन सें. मी.","one":"%1$s घन सें. मी.","other":"%1$s घन सें. मी."},"cubic-foot":{"_name":"घ. फ़ी.","one":"%1$s घ. फ़ी.","other":"%1$s घ. फ़ी."},"cubic-inch":{"_name":"घन इंच","one":"%1$s घन इंच","other":"%1$s घन इंच"},"cubic-kilometer":{"_name":"घन कि.मी.","one":"%1$sघन किमी","other":"%1$sघन किमी"},"cubic-meter":{"_name":"घन मी.","one":"%1$s घन मी.","other":"%1$s घन मी."},"cubic-mile":{"_name":"घन मील","one":"%1$sघन मील","other":"%1$sघन मील"},"cubic-yard":{"_name":"घन या.","one":"%1$s घन या.","other":"%1$s घन या."},"cup":{"_name":"कप","one":"%1$s कप","other":"%1$s कप"},"deciliter":{"_name":"डे.ली.","one":"%1$s डे.ली.","other":"%1$s डे.ली."},"fluid-ounce":{"_name":"फ़्लुड आउंस","one":"%1$s फ़्लुड आउंस","other":"%1$s फ़्लुड आउंस"},"gallon":{"_name":"गैलन","one":"%1$s गैलन","other":"%1$s गैलन"},"hectoliter":{"_name":"है.ली.","one":"%1$s है.ली.","other":"%1$s है.ली."},"liter":{"_name":"लीटर","one":"%1$sली.","other":"%1$sली."},"megaliter":{"_name":"मे. ली.","one":"%1$s मे. ली.","other":"%1$s मे. ली."},"milliliter":{"_name":"मि. ली.","one":"%1$s मि. ली.","other":"%1$s मि. ली."},"pint":{"_name":"पिंट","one":"%1$s पिंट","other":"%1$s पिंट"},"quart":{"_name":"क्वार्ट","one":"%1$s क्वार्ट","other":"%1$s क्वार्ट"},"tablespoon":{"_name":"टे. स्पून","one":"%1$s टे. स्पून","other":"%1$s टे. स्पून"},"teaspoon":{"_name":"टी स्पून","one":"%1$s टी स्पून","other":"%1$s टी स्पून"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/hr/calendar.json b/Punic/data/hr/calendar.json new file mode 100644 index 0000000..48c5d4a --- /dev/null +++ b/Punic/data/hr/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"sij","2":"velj","3":"ožu","4":"tra","5":"svi","6":"lip","7":"srp","8":"kol","9":"ruj","10":"lis","11":"stu","12":"pro"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4.","5":"5.","6":"6.","7":"7.","8":"8.","9":"9.","10":"10.","11":"11.","12":"12."},"wide":{"1":"siječnja","2":"veljače","3":"ožujka","4":"travnja","5":"svibnja","6":"lipnja","7":"srpnja","8":"kolovoza","9":"rujna","10":"listopada","11":"studenoga","12":"prosinca"}},"stand-alone":{"abbreviated":{"1":"sij","2":"velj","3":"ožu","4":"tra","5":"svi","6":"lip","7":"srp","8":"kol","9":"ruj","10":"lis","11":"stu","12":"pro"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4.","5":"5.","6":"6.","7":"7.","8":"8.","9":"9.","10":"10.","11":"11.","12":"12."},"wide":{"1":"siječanj","2":"veljača","3":"ožujak","4":"travanj","5":"svibanj","6":"lipanj","7":"srpanj","8":"kolovoz","9":"rujan","10":"listopad","11":"studeni","12":"prosinac"}}},"days":{"format":{"abbreviated":{"sun":"ned","mon":"pon","tue":"uto","wed":"sri","thu":"čet","fri":"pet","sat":"sub"},"narrow":{"sun":"N","mon":"P","tue":"U","wed":"S","thu":"Č","fri":"P","sat":"S"},"short":{"sun":"ned","mon":"pon","tue":"uto","wed":"sri","thu":"čet","fri":"pet","sat":"sub"},"wide":{"sun":"nedjelja","mon":"ponedjeljak","tue":"utorak","wed":"srijeda","thu":"četvrtak","fri":"petak","sat":"subota"}},"stand-alone":{"abbreviated":{"sun":"ned","mon":"pon","tue":"uto","wed":"sri","thu":"čet","fri":"pet","sat":"sub"},"narrow":{"sun":"n","mon":"p","tue":"u","wed":"s","thu":"č","fri":"p","sat":"s"},"short":{"sun":"ned","mon":"pon","tue":"uto","wed":"sri","thu":"čet","fri":"pet","sat":"sub"},"wide":{"sun":"nedjelja","mon":"ponedjeljak","tue":"utorak","wed":"srijeda","thu":"četvrtak","fri":"petak","sat":"subota"}}},"quarters":{"format":{"abbreviated":{"1":"1kv","2":"2kv","3":"3kv","4":"4kv"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}},"stand-alone":{"abbreviated":{"1":"1kv","2":"2kv","3":"3kv","4":"4kv"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"popodne","am":"AM","earlyMorning":"ujutro","evening":"navečer","morning":"prijepodne","night":"noću","noon":"podne","pm":"PM"},"narrow":{"afternoon":"popodne","am":"AM","earlyMorning":"ujutro","evening":"navečer","morning":"prijepodne","night":"noću","noon":"P","pm":"PM"},"wide":{"am":"AM","noon":"podne","pm":"PM"}},"stand-alone":{"abbreviated":{"afternoon":"popodne","am":"AM","earlyMorning":"ujutro","evening":"navečer","morning":"prijepodne","night":"noću","noon":"podne","pm":"PM"},"narrow":{"afternoon":"popodne","am":"AM","earlyMorning":"ujutro","evening":"navečer","morning":"prijepodne","night":"noću","noon":"P","pm":"PM"},"wide":{"am":"AM","noon":"podne","pm":"PM"}}},"eras":{"wide":{"0":"Prije Krista","0-alt-variant":"pr. n. e.","1":"Poslije Krista","1-alt-variant":"n.e."},"abbreviated":{"0":"pr. Kr.","0-alt-variant":"pr. n. e.","1":"p. Kr.","1-alt-variant":"n.e."},"narrow":{"0":"pr.n.e.","0-alt-variant":"pr. n. e.","1":"AD","1-alt-variant":"n.e."}},"dateFormats":{"full":"EEEE, d. MMMM y.","long":"d. MMMM y.","medium":"d. MMM y.","short":"dd.MM.y."},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s 'u' %1$s","long":"%2$s 'u' %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/hr/dateFields.json b/Punic/data/hr/dateFields.json new file mode 100644 index 0000000..aaf4921 --- /dev/null +++ b/Punic/data/hr/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Godina","relative-type--1":"prošle godine","relative-type-0":"ove godine","relative-type-1":"sljedeće godine","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} godinu","relativeTimePattern-count-few":"za {0} godine","relativeTimePattern-count-other":"za {0} godina"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} godinu","relativeTimePattern-count-few":"prije {0} godine","relativeTimePattern-count-other":"prije {0} godina"}},"year-short":{"displayName":"g.","relative-type--1":"prošle godine","relative-type-0":"ove godine","relative-type-1":"sljedeće godine","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} g.","relativeTimePattern-count-few":"za {0} g.","relativeTimePattern-count-other":"za {0} g."},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} g.","relativeTimePattern-count-few":"prije {0} g.","relativeTimePattern-count-other":"prije {0} g."}},"year-narrow":{"displayName":"g.","relative-type--1":"prošle godine","relative-type-0":"ove godine","relative-type-1":"sljedeće godine","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} g.","relativeTimePattern-count-few":"+{0} g.","relativeTimePattern-count-other":"+{0} g."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} g.","relativeTimePattern-count-few":"-{0} g.","relativeTimePattern-count-other":"-{0} g."}},"quarter":{"displayName":"Kvartal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} kvartal","relativeTimePattern-count-few":"za {0} kvartala","relativeTimePattern-count-other":"za {0} kvartala"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} kvartal","relativeTimePattern-count-few":"prije {0} kvartala","relativeTimePattern-count-other":"prije {0} kvartala"}},"quarter-short":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} kv.","relativeTimePattern-count-few":"za {0} kv.","relativeTimePattern-count-other":"za {0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} kv.","relativeTimePattern-count-few":"prije {0} kv.","relativeTimePattern-count-other":"prije {0} kv."}},"quarter-narrow":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} kv.","relativeTimePattern-count-few":"+{0} kv.","relativeTimePattern-count-other":"+{0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} kv.","relativeTimePattern-count-few":"-{0} kv.","relativeTimePattern-count-other":"-{0} kv."}},"month":{"displayName":"Mjesec","relative-type--1":"prošli mjesec","relative-type-0":"ovaj mjesec","relative-type-1":"sljedeći mjesec","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} mjesec","relativeTimePattern-count-few":"za {0} mjeseca","relativeTimePattern-count-other":"za {0} mjeseci"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} mjesec","relativeTimePattern-count-few":"prije {0} mjeseca","relativeTimePattern-count-other":"prije {0} mjeseci"}},"month-short":{"displayName":"mj.","relative-type--1":"prošli mjesec","relative-type-0":"ovaj mjesec","relative-type-1":"sljedeći mjesec","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} mj.","relativeTimePattern-count-few":"za {0} mj.","relativeTimePattern-count-other":"za {0} mj."},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} mj.","relativeTimePattern-count-few":"prije {0} mj.","relativeTimePattern-count-other":"prije {0} mj."}},"month-narrow":{"displayName":"m.","relative-type--1":"prošli mjesec","relative-type-0":"ovaj mjesec","relative-type-1":"sljedeći mjesec","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mj.","relativeTimePattern-count-few":"+{0} mj.","relativeTimePattern-count-other":"+{0} mj."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mj.","relativeTimePattern-count-few":"-{0} mj.","relativeTimePattern-count-other":"-{0} mj."}},"week":{"displayName":"Tjedan","relative-type--1":"prošli tjedan","relative-type-0":"ovaj tjedan","relative-type-1":"sljedeći tjedan","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} tjedan","relativeTimePattern-count-few":"za {0} tjedna","relativeTimePattern-count-other":"za {0} tjedana"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} tjedan","relativeTimePattern-count-few":"prije {0} tjedna","relativeTimePattern-count-other":"prije {0} tjedana"}},"week-short":{"displayName":"tj.","relative-type--1":"prošli tjedan","relative-type-0":"ovaj tjedan","relative-type-1":"sljedeći tjedan","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} tj.","relativeTimePattern-count-few":"za {0} tj.","relativeTimePattern-count-other":"za {0} tj."},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} tj.","relativeTimePattern-count-few":"prije {0} tj.","relativeTimePattern-count-other":"prije {0} tj."}},"week-narrow":{"displayName":"tj.","relative-type--1":"prošli tjedan","relative-type-0":"ovaj tjedan","relative-type-1":"sljedeći tjedan","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} tj.","relativeTimePattern-count-few":"+{0} tj.","relativeTimePattern-count-other":"+{0} tj."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} tj.","relativeTimePattern-count-few":"-{0} tj.","relativeTimePattern-count-other":"-{0} tj."}},"day":{"displayName":"Dan","relative-type--1":"jučer","relative-type--2":"prekjučer","relative-type-0":"danas","relative-type-1":"sutra","relative-type-2":"prekosutra","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} dan","relativeTimePattern-count-few":"za {0} dana","relativeTimePattern-count-other":"za {0} dana"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} dan","relativeTimePattern-count-few":"prije {0} dana","relativeTimePattern-count-other":"prije {0} dana"}},"day-short":{"displayName":"d.","relative-type--1":"jučer","relative-type--2":"prekjučer","relative-type-0":"danas","relative-type-1":"sutra","relative-type-2":"prekosutra","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} dan","relativeTimePattern-count-few":"za {0} dana","relativeTimePattern-count-other":"za {0} dana"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} dan","relativeTimePattern-count-few":"prije {0} dana","relativeTimePattern-count-other":"prije {0} dana"}},"day-narrow":{"displayName":"d.","relative-type--1":"jučer","relative-type--2":"prekjučer","relative-type-0":"danas","relative-type-1":"sutra","relative-type-2":"prekosutra","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} d","relativeTimePattern-count-few":"za {0} d","relativeTimePattern-count-other":"za {0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} d","relativeTimePattern-count-few":"prije {0} d","relativeTimePattern-count-other":"prije {0} d"}},"weekday":{"displayName":"Dan u tjednu"},"sun":{"relative-type--1":"prošla nedjelja","relative-type-0":"ova nedjelja","relative-type-1":"sljedeća nedjelja"},"sun-short":{"relative-type--1":"prošla ned.","relative-type-0":"ova ned.","relative-type-1":"sljedeća ned."},"sun-narrow":{"relative-type--1":"prošla ned.","relative-type-0":"ova ned.","relative-type-1":"sljedeća ned."},"mon":{"relative-type--1":"prošli ponedjeljak","relative-type-0":"ovaj ponedjeljak","relative-type-1":"sljedeći ponedjeljak"},"mon-short":{"relative-type--1":"prošli pon.","relative-type-0":"ovaj pon.","relative-type-1":"sljedeći pon."},"mon-narrow":{"relative-type--1":"prošli pon.","relative-type-0":"ovaj pon.","relative-type-1":"sljedeći pon."},"tue":{"relative-type--1":"prošli utorak","relative-type-0":"ovaj utorak","relative-type-1":"sljedeći utorak"},"tue-short":{"relative-type--1":"prošli uto.","relative-type-0":"ovaj uto.","relative-type-1":"sljedeći uto."},"tue-narrow":{"relative-type--1":"prošli uto.","relative-type-0":"ovaj uto.","relative-type-1":"sljedeći uto."},"wed":{"relative-type--1":"prošla srijeda","relative-type-0":"ova srijeda","relative-type-1":"sljedeća srijeda"},"wed-short":{"relative-type--1":"prošla sri.","relative-type-0":"ova sri.","relative-type-1":"sljedeća sri."},"wed-narrow":{"relative-type--1":"prošla sri.","relative-type-0":"ova sri.","relative-type-1":"sljedeća sri."},"thu":{"relative-type--1":"prošli četvrtak","relative-type-0":"ovaj četvrtak","relative-type-1":"sljedeći četvrtak"},"thu-short":{"relative-type--1":"prošli čet.","relative-type-0":"ovaj čet.","relative-type-1":"sljedeći čet."},"thu-narrow":{"relative-type--1":"prošli čet.","relative-type-0":"ovaj čet.","relative-type-1":"sljedeći čet."},"fri":{"relative-type--1":"prošli petak","relative-type-0":"ovaj petak","relative-type-1":"sljedeći petak"},"fri-short":{"relative-type--1":"prošli pet.","relative-type-0":"ovaj pet.","relative-type-1":"sljedeći pet."},"fri-narrow":{"relative-type--1":"prošli pet.","relative-type-0":"ovaj pet.","relative-type-1":"sljedeći pet."},"sat":{"relative-type--1":"prošla subota","relative-type-0":"ova subota","relative-type-1":"sljedeća subota"},"sat-short":{"relative-type--1":"prošla sub.","relative-type-0":"ova sub.","relative-type-1":"sljedeća sub."},"sat-narrow":{"relative-type--1":"prošla sub.","relative-type-0":"ova sub.","relative-type-1":"sljedeća sub."},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Sat","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} sat","relativeTimePattern-count-few":"za {0} sata","relativeTimePattern-count-other":"za {0} sati"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} sat","relativeTimePattern-count-few":"prije {0} sata","relativeTimePattern-count-other":"prije {0} sati"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} h","relativeTimePattern-count-few":"za {0} h","relativeTimePattern-count-other":"za {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} h","relativeTimePattern-count-few":"prije {0} h","relativeTimePattern-count-other":"prije {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-few":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-few":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minuta","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} minutu","relativeTimePattern-count-few":"za {0} minute","relativeTimePattern-count-other":"za {0} minuta"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} minutu","relativeTimePattern-count-few":"prije {0} minute","relativeTimePattern-count-other":"prije {0} minuta"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} min","relativeTimePattern-count-few":"za {0} min","relativeTimePattern-count-other":"za {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} min","relativeTimePattern-count-few":"prije {0} min","relativeTimePattern-count-other":"prije {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} min","relativeTimePattern-count-few":"+{0} min","relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} min","relativeTimePattern-count-few":"-{0} min","relativeTimePattern-count-other":"-{0} min"}},"second":{"displayName":"Sekunda","relative-type-0":"sada","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} sekundu","relativeTimePattern-count-few":"za {0} sekunde","relativeTimePattern-count-other":"za {0} sekundi"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} sekundu","relativeTimePattern-count-few":"prije {0} sekunde","relativeTimePattern-count-other":"prije {0} sekundi"}},"second-short":{"displayName":"s","relative-type-0":"sada","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} s","relativeTimePattern-count-few":"za {0} s","relativeTimePattern-count-other":"za {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"prije {0} s","relativeTimePattern-count-few":"prije {0} s","relativeTimePattern-count-other":"prije {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"sada","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-few":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-few":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Vremenska zona"}} \ No newline at end of file diff --git a/Punic/data/hr/languages.json b/Punic/data/hr/languages.json new file mode 100644 index 0000000..5e850f0 --- /dev/null +++ b/Punic/data/hr/languages.json @@ -0,0 +1 @@ +{"aa":"afarski","ab":"abhaski","ace":"achinese","ach":"acoli","ada":"adangme","ady":"adigejski","ae":"avestan","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akanski","akk":"akkadian","akz":"akz","ale":"aleutski","aln":"aln","alt":"južni altai","am":"amharski","an":"aragonski","ang":"staroengleski","anp":"angika","ar":"arapski","ar-001":"moderni standardni arapski","arc":"aramejski","arn":"araukanski","aro":"aro","arp":"arapaho","arq":"arq","arw":"arawak","ary":"ary","arz":"arz","as":"asamski","asa":"asu","ase":"ase","ast":"asturijski","av":"avarski","avk":"avk","awa":"awadhi","ay":"aymara","az":"azerbajdžanski","az-alt-short":"azerski","azb":"azb","ba":"baškirski","bal":"baluchi","ban":"balinezijski","bar":"bar","bas":"basa","bax":"bamunski","bbc":"bbc","bbj":"ghomala","be":"bjeloruski","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bugarski","bho":"bhojpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengalski","bo":"tibetanski","bpy":"bpy","bqi":"bqi","br":"bretonski","bra":"braj","brh":"brh","brx":"bodo","bs":"bosanski","bss":"akoose","bua":"buriat","bug":"buginski","bum":"bulu","byn":"blin","byv":"medumba","ca":"katalonski","cad":"caddo","car":"karipski","cay":"cayuga","cch":"atsam","ce":"čečenski","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukese","chm":"mari","chn":"chinook žargon","cho":"choctaw","chp":"chipewyan","chr":"čeroki","chy":"čejenski","ckb":"soranski kurdski","co":"korzički","cop":"koptski","cps":"cps","cr":"cree","crh":"krimski turski","cs":"češki","csb":"kašupski","cu":"crkvenoslavenski","cv":"chuvash","cy":"velški","da":"danski","dak":"dakota jezik","dar":"dargwa","dav":"taita","de":"njemački","de-AT":"austrijski njemački","de-CH":"gornjonjemački (švicarski)","del":"delavarski","den":"slave","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"lužičkosrpski","dtp":"dtp","dua":"duala","dum":"nizozemski, srednji","dv":"divehi","dyo":"jola-fonyi","dyu":"dyula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"egl","egy":"staroegipatski","eka":"ekajuk","el":"grčki","elx":"elamitski","en":"engleski","en-AU":"australski engleski","en-CA":"kanadski engleski","en-GB":"britanski engleski","en-GB-alt-short":"engleski (UK)","en-US":"američki engleski","en-US-alt-short":"engleski (SAD)","enm":"engleski, srednji","eo":"esperanto","es":"španjolski","es-419":"latinoamerički španjolski","es-ES":"europski španjolski","es-MX":"meksički španjolski","esu":"esu","et":"estonski","eu":"baskijski","ewo":"ewondo","ext":"ext","fa":"perzijski","fan":"fang","fat":"fanti","ff":"fulah","fi":"finski","fil":"filipino","fit":"fit","fj":"fidžijski","fo":"ferojski","fon":"fon","fr":"francuski","fr-CA":"kanadski francuski","fr-CH":"švicarski francuski","frc":"frc","frm":"francuski, srednji","fro":"starofrancuski","frp":"frp","frr":"sjevernofrizijski","frs":"istočnofrizijski","fur":"friulski","fy":"zapadnofrizijski","ga":"irski","gaa":"ga","gag":"gagauski","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"škotski-galski","gez":"staroetiopski","gil":"gilbertski","gl":"galicijski","glk":"glk","gmh":"njemački, srednji visoki","gn":"guarani","goh":"staronjemački, visoki","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gothic","grb":"grebo","grc":"starogrčki","gsw":"švicarski njemački","gu":"gudžaratski","guc":"guc","gur":"gur","guz":"gusii","gv":"manski","gwi":"gwich’in","ha":"hausa","hai":"haidi","hak":"hak","haw":"havajski","he":"hebrejski","hi":"hindski","hif":"hif","hil":"hiligaynon","hit":"hetitski","hmn":"hmong","ho":"hiri motu","hr":"hrvatski","hsb":"gornjolužički","hsn":"hsn","ht":"kreolski","hu":"mađarski","hup":"hupa","hy":"armenski","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonezijski","ie":"interligua","ig":"igbo","ii":"sichuan yi","ik":"inupiaq","ilo":"iloko","inh":"ingušetski","io":"ido","is":"islandski","it":"talijanski","iu":"inuktitut","izh":"izh","ja":"japanski","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"judejsko-perzijski","jrb":"judejsko-arapski","jut":"jut","jv":"javanski","ka":"gruzijski","kaa":"kara-kalpak","kab":"kabilski","kac":"kachin","kaj":"kaje","kam":"kamba","kaw":"kawi","kbd":"kabardian","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"zelenortski","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kgp","kha":"khasi","kho":"khotanese","khq":"koyra chiini","khw":"khw","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kazaški","kkj":"kako","kl":"kalaallisut","kln":"kalenjin","km":"kmerski","kmb":"kimbundu","kn":"kannadski","ko":"korejski","koi":"komski ili permski","kok":"konkani","kos":"naurski","kpe":"kpelle","kr":"kanuri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"karelijski","kru":"kuruški","ks":"kašmirski","ksb":"shambala","ksf":"bafia","ksh":"kelnski","ku":"kurdski","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"kornski","ky":"kirgiški","la":"latinski","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luksemburški","lez":"lezgiški","lfn":"lfn","lg":"ganda","li":"limburgish","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laoski","lol":"mongo","loz":"lozi","lt":"litavski","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyia","lv":"latvijski","lzh":"lzh","lzz":"lzz","mad":"madurski","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masajski","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauricijski kreolski","mg":"malgaški","mga":"irski, srednji","mgh":"makhuwa-meetto","mgo":"meta’","mh":"maršalski","mi":"maorski","mic":"micmac","min":"minangkabau","mk":"makedonski","ml":"malajalamski","mn":"mongolski","mnc":"mandžurski","mni":"manipurski","moh":"mohawk","mos":"mossi","mr":"marathski","mrj":"mrj","ms":"malajski","mt":"malteški","mua":"mundang","mul":"više jezika","mus":"creek","mwl":"mirandski","mwr":"marwari","mwv":"mwv","my":"burmanski","mye":"myene","myv":"mordvinski","mzn":"mzn","na":"nauru","nan":"nan","nap":"napolitanski","naq":"nama","nb":"književni norveški","nd":"sjeverni ndebele","nds":"donjonjemački","ne":"nepalski","new":"newari","ng":"ndonga","nia":"nias","niu":"niujski","njo":"njo","nl":"nizozemski","nl-BE":"flamanski","nmg":"kwasio","nn":"novonorveški","nnh":"ngiemboon","no":"norveški","nog":"nogajski","non":"staronorveški","nov":"nov","nqo":"n’ko","nr":"južni ndebele","nso":"sjeverni sotho","nus":"nuer","nv":"navajo","nwc":"klasični newari","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"okcitanski","oj":"ojibwa","om":"oromski","or":"orijski","os":"osetski","osa":"osage","ota":"turski - otomanski","pa":"pandžapski","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palauanski","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"staroperzijski","pfl":"pfl","phn":"fenički","pi":"pali","pl":"poljski","pms":"pms","pnt":"pnt","pon":"pohnpeian","prg":"prg","pro":"staroprovansalski","ps":"paštu","ps-alt-variant":"puštu","pt":"portugalski","pt-BR":"brazilski portugalski","pt-PT":"europski portugalski","qu":"kečua","quc":"kiče","qug":"qug","raj":"rajasthani","rap":"rapa nui","rar":"rarotonški","rgn":"rgn","rif":"rif","rm":"romanš","rn":"rundi","ro":"rumunjski","ro-MD":"moldavski","rof":"rombo","rom":"romski","root":"korijenski","rtm":"rtm","ru":"ruski","rue":"rue","rug":"rug","rup":"aromunski","rw":"kinyarwanda","rwk":"rwa","sa":"sanskrtski","sad":"sandawe","sah":"jakutski","sam":"samarijanski aramejski","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardski","scn":"sicilijski","sco":"škotski","sd":"sindhi","sdc":"sdc","se":"južni sami","see":"seneca","seh":"sena","sei":"sei","sel":"selkupski","ses":"koyraboro senni","sg":"sango","sga":"staroirski","sgs":"sgs","sh":"srpsko-hrvatski","shi":"tachelhit","shn":"shan","shu":"čadski arapski","si":"sinhaleški","sid":"sidamo","sk":"slovački","sl":"slovenski","sli":"sli","sly":"sly","sm":"samoanski","sma":"sjeverni sami","smj":"lule sami","smn":"inari sami","sms":"skolt sami","sn":"shona","snk":"soninke","so":"somalski","sog":"sogdien","sq":"albanski","sr":"srpski","srn":"sranan tongo","srr":"serer","ss":"svati","ssy":"saho","st":"sesotski","stq":"stq","su":"sundanski","suk":"sukuma","sus":"susu","sux":"sumerski","sv":"švedski","sw":"svahili","swb":"komorski","swc":"kongoanski swahili","syc":"klasični sirski","syr":"sirijski","szl":"szl","ta":"tamilski","tcy":"tcy","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadžički","th":"tajlandski","ti":"tigrinja","tig":"tigriški","tiv":"tiv","tk":"turkmenski","tkl":"tokelaunski","tkr":"tkr","tl":"tagalog","tlh":"klingonski","tli":"tlingit","tly":"tly","tmh":"tamashek","tn":"cvana","to":"tonganski","tog":"nyasa tonga","tpi":"tok pisin","tr":"turski","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshian","tt":"tatarski","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluanski","tw":"twi","twq":"tasawaq","ty":"tahićanski","tyv":"tuvinian","tzm":"marokanski tamazight","udm":"udmurtski","ug":"ujgurski","uga":"ugaritski","uk":"ukrajinski","umb":"umbundu","und":"nepoznati jezik","ur":"urdski","uz":"uzbečki","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vijetnamski","vls":"vls","vmf":"vmf","vo":"volapük","vot":"votic","vro":"vro","vun":"vunjo","wa":"valonski","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wuu","xal":"kalmyk","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"japski","yav":"yangben","ybb":"yemba","yi":"jidiš","yo":"joruba","yrl":"yrl","yue":"kantonski","za":"zhuang","zap":"zapotec","zbl":"blissymbols","zea":"zea","zen":"zenaga","zgh":"standardni marokanski tamazight","zh":"kineski","zh-Hans":"kineski (pojednostavljeni)","zh-Hant":"kineski (tradicionalni)","zu":"zulu","zun":"zuni","zxx":"bez jezičnog sadržaja","zza":"zazaki"} \ No newline at end of file diff --git a/Punic/data/hr/listPatterns.json b/Punic/data/hr/listPatterns.json new file mode 100644 index 0000000..edda6e1 --- /dev/null +++ b/Punic/data/hr/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/hr/localeDisplayNames.json b/Punic/data/hr/localeDisplayNames.json new file mode 100644 index 0000000..1910930 --- /dev/null +++ b/Punic/data/hr/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalendar","colAlternate":"Zanemarivanje poredavanja simbola","colBackwards":"Obrnuto poredavanje po naglasku","colCaseFirst":"Poredavanje po velikim/malim slovima","colCaseLevel":"Poredavanje u skladu s veličinom slova","colHiraganaQuaternary":"Poredavanje po pismu kana","colNormalization":"Normalizirano poredavanje","colNumeric":"Numeričko poredavanje","colStrength":"Jačina poredavanja","collation":"Redoslijed razvrstavanja","currency":"valuta","numbers":"brojevi","timezone":"Vremenska zona","va":"Varijanta zemlje/jezika","variableTop":"Poredaj kao simbole","x":"Privatna upotreba"},"types":{"numbers":{"vaii":"Vai znamenke"},"collation":{"zhuyin":"zhuyin razvrstavanje"},"calendar":{"roc":"kalendar Republike Kine"},"colStrength":{"tertiary":"Poredaj po naglascima/veličini/širini"},"colCaseFirst":{"upper":"Poredaj prvo velika slova"},"colBackwards":{"yes":"Poredaj naglaske obrnuto"},"colCaseLevel":{"yes":"Poredaj u skladu s veličinom slova"},"colHiraganaQuaternary":{"yes":"Poredaj pismo kana drugačije"},"colNormalization":{"yes":"Poredaj unikod normalizirano"},"colNumeric":{"yes":"Poredaj znamenke numerički"},"colAlternate":{"shifted":"Poredaj zanemarujući simbole"}},"codePatterns":{"language":"Jezik: %1$s","script":"Pismo: %1$s","territory":"Regija: %1$s"}} \ No newline at end of file diff --git a/Punic/data/hr/numbers.json b/Punic/data/hr/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/hr/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/hr/territories.json b/Punic/data/hr/territories.json new file mode 100644 index 0000000..df1f027 --- /dev/null +++ b/Punic/data/hr/territories.json @@ -0,0 +1 @@ +{"001":"Svijet","002":"Afrika","003":"Sjevernoamerički kontinent","005":"Južna Amerika","009":"Oceanija","011":"Zapadna Afrika","013":"Centralna Amerika","014":"Istočna Afrika","015":"Sjeverna Afrika","017":"Središnja Afrika","018":"Južna Afrika","019":"Amerike","021":"Sjeverna Amerika","029":"Karibi","030":"Istočna Azija","034":"Južna Azija","035":"Jugoistočna Azija","039":"Južna Europa","053":"Australazija","054":"Melanezija","057":"Mikronezijsko područje","061":"Polinezija","142":"Azija","143":"Srednja Azija","145":"Zapadna Azija","150":"Europa","151":"Istočna Europa","154":"Sjeverna Europa","155":"Zapadna Europa","419":"Latinska Amerika","AC":"Otok Ascension","AD":"Andora","AE":"Ujedinjeni Arapski Emirati","AF":"Afganistan","AG":"Antigua i Barbuda","AI":"Angvila","AL":"Albanija","AM":"Armenija","AN":"Nizozemski Antili","AO":"Angola","AQ":"Antarktika","AR":"Argentina","AS":"Američka Samoa","AT":"Austrija","AU":"Australija","AW":"Aruba","AX":"Otoci Aland","AZ":"Azerbajdžan","BA":"Bosna i Hercegovina","BB":"Barbados","BD":"Bangladeš","BE":"Belgija","BF":"Burkina Faso","BG":"Bugarska","BH":"Bahrein","BI":"Burundi","BJ":"Benin","BL":"Sveti Bartolomej","BM":"Bermuda","BN":"Brunej","BO":"Bolivija","BQ":"Karipski otoci Nizozemske","BR":"Brazil","BS":"Bahami","BT":"Butan","BV":"Otok Bouvet","BW":"Bocvana","BY":"Bjelorusija","BZ":"Belize","CA":"Kanada","CC":"Kokosovi (Keeling) Otoci","CD":"Kongo - Kinshasa","CD-alt-variant":"Kongo (DRK)","CF":"Srednjoafrička Republika","CG":"Kongo - Brazzaville","CG-alt-variant":"Kongo (RK)","CH":"Švicarska","CI":"Obala Bjelokosti","CI-alt-variant":"Bjelokosna Obala","CK":"Cookovi Otoci","CL":"Čile","CM":"Kamerun","CN":"Kina","CO":"Kolumbija","CP":"Otok Clipperton","CR":"Kostarika","CU":"Kuba","CV":"Zelenortska Republika","CW":"Curaçao","CX":"Božićni Otok","CY":"Cipar","CZ":"Češka Republika","DE":"Njemačka","DG":"Diego Garcia","DJ":"Džibuti","DK":"Danska","DM":"Dominika","DO":"Dominikanska Republika","DZ":"Alžir","EA":"Ceuta i Melilla","EC":"Ekvador","EE":"Estonija","EG":"Egipat","EH":"Zapadna Sahara","ER":"Eritreja","ES":"Španjolska","ET":"Etiopija","EU":"Europska unija","FI":"Finska","FJ":"Fidži","FK":"Falklandski Otoci","FK-alt-variant":"Falklandski Otoci (Malvini)","FM":"Mikronezija","FO":"Farski Otoci","FR":"Francuska","GA":"Gabon","GB":"Velika Britanija","GB-alt-short":"UK","GD":"Grenada","GE":"Gruzija","GF":"Francuska Gvajana","GG":"Guernsey","GH":"Gana","GI":"Gibraltar","GL":"Grenland","GM":"Gambija","GN":"Gvineja","GP":"Guadalupa","GQ":"Ekvatorska Gvineja","GR":"Grčka","GS":"Južna Georgija i Južni Sendvički Otoci","GT":"Gvatemala","GU":"Guam","GW":"Gvineja Bisau","GY":"Gvajana","HK":"Hong Kong PUP Kina","HK-alt-short":"Hong Kong","HM":"Otoci Heard i McDonald","HN":"Honduras","HR":"Hrvatska","HT":"Haiti","HU":"Mađarska","IC":"Kanarski Otoci","ID":"Indonezija","IE":"Irska","IL":"Izrael","IM":"Otok Man","IN":"Indija","IO":"Britanski Indijskooceanski Teritorij","IQ":"Irak","IR":"Iran","IS":"Island","IT":"Italija","JE":"Jersey","JM":"Jamajka","JO":"Jordan","JP":"Japan","KE":"Kenija","KG":"Kirgistan","KH":"Kambodža","KI":"Kiribati","KM":"Komori","KN":"Sveti Kristofor i Nevis","KP":"Sjeverna Koreja","KR":"Južna Koreja","KW":"Kuvajt","KY":"Kajmanski Otoci","KZ":"Kazahstan","LA":"Laos","LB":"Libanon","LC":"Sveta Lucija","LI":"Lihtenštajn","LK":"Šri Lanka","LR":"Liberija","LS":"Lesoto","LT":"Litva","LU":"Luksemburg","LV":"Latvija","LY":"Libija","MA":"Maroko","MC":"Monako","MD":"Moldavija","ME":"Crna Gora","MF":"Sveti Martin","MG":"Madagaskar","MH":"Maršalovi Otoci","MK":"Makedonija","MK-alt-variant":"Makedonija (BJRM)","ML":"Mali","MM":"Mijanmar (Burma)","MN":"Mongolija","MO":"Makao PUP Kina","MO-alt-short":"Makao","MP":"Sjeverni Marijanski Otoci","MQ":"Martinique","MR":"Mauritanija","MS":"Montserrat","MT":"Malta","MU":"Mauricijus","MV":"Maldivi","MW":"Malavi","MX":"Meksiko","MY":"Malezija","MZ":"Mozambik","NA":"Namibija","NC":"Nova Kaledonija","NE":"Niger","NF":"Otok Norfolk","NG":"Nigerija","NI":"Nikaragva","NL":"Nizozemska","NO":"Norveška","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Novi Zeland","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Francuska Polinezija","PG":"Papua Nova Gvineja","PH":"Filipini","PK":"Pakistan","PL":"Poljska","PM":"Sveti Petar i Mikelon","PN":"Otoci Pitcairn","PR":"Portoriko","PS":"Palestinsko Područje","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paragvaj","QA":"Katar","QO":"Ostala oceanija","RE":"Reunion","RO":"Rumunjska","RS":"Srbija","RU":"Rusija","RW":"Ruanda","SA":"Saudijska Arabija","SB":"Salomonski Otoci","SC":"Sejšeli","SD":"Sudan","SE":"Švedska","SG":"Singapur","SH":"Sveta Helena","SI":"Slovenija","SJ":"Svalbard i Jan Mayen","SK":"Slovačka","SL":"Sijera Leone","SM":"San Marino","SN":"Senegal","SO":"Somalija","SR":"Surinam","SS":"Južni Sudan","ST":"Sveti Toma i Princip","SV":"Salvador","SX":"Sint Maarten","SY":"Sirija","SZ":"Svazi","TA":"Tristan da Cunha","TC":"Otoci Turks i Caicos","TD":"Čad","TF":"Francuske Južne i Antarktičke Zemlje","TG":"Togo","TH":"Tajland","TJ":"Tadžikistan","TK":"Tokelau","TL":"Istočni Timor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunis","TO":"Tonga","TR":"Turska","TT":"Trinidad i Tobago","TV":"Tuvalu","TW":"Tajvan","TZ":"Tanzanija","UA":"Ukrajina","UG":"Uganda","UM":"Mali udaljeni otoci SAD-a","US":"Sjedinjene Američke Države","US-alt-short":"SAD","UY":"Urugvaj","UZ":"Uzbekistan","VA":"Sveta Stolica","VC":"Sveti Vincent i Grenadini","VE":"Venezuela","VG":"Britanski Djevičanski Otoci","VI":"Američki Djevičanski Otoci","VN":"Vijetnam","VU":"Vanuatu","WF":"Wallis i Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Južnoafrička Republika","ZM":"Zambija","ZW":"Zimbabve","ZZ":"nepoznato područje"} \ No newline at end of file diff --git a/Punic/data/hr/timeZoneNames.json b/Punic/data/hr/timeZoneNames.json new file mode 100644 index 0000000..31d48a4 --- /dev/null +++ b/Punic/data/hr/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm; -HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s","regionFormat-type-standard":"%1$s, standardno vrijeme","regionFormat-type-daylight":"%1$s, ljetno vrijeme","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Angvila"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Kajman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"Costa_Rica":{"exemplarCity":"Kostarika"},"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":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepe"},"El_Salvador":{"exemplarCity":"El Salvador"},"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":"Guadalupa"},"Guatemala":{"exemplarCity":"Gvatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Gvajana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamajka"},"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":"Martinik"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Merida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciudad de México"},"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, Sjeverna Dakota"},"Center":{"exemplarCity":"Center, Sjeverna Dakota"},"New_Salem":{"exemplarCity":"New Salem, Sjeverna 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":"Portoriko"},"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":"Sao 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":"Azorski otoci"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanari"},"Cape_Verde":{"exemplarCity":"Zelenortski Otoci"},"Faeroe":{"exemplarCity":"Ferojski otoci"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Južna Georgija"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andora"},"Athens":{"exemplarCity":"Atena"},"Belgrade":{"exemplarCity":"Beograd"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelles"},"Bucharest":{"exemplarCity":"Bukurešt"},"Budapest":{"exemplarCity":"Budimpešta"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Kopenhagen"},"Dublin":{"long":{"daylight":"irsko standardno vrijeme"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Otok Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kalinjingrad"},"Kiev":{"exemplarCity":"Kijev"},"Lisbon":{"exemplarCity":"Lisabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"britansko ljetno vrijeme"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luksemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Pariz"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prag"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rim"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofija"},"Stockholm":{"exemplarCity":"Stockholm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Uzgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikan"},"Vienna":{"exemplarCity":"Beč"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varšava"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporožje"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alžir"},"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":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Džibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Kartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinšasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbaši"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Alma Ata"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadir"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrein"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Biškek"},"Brunei":{"exemplarCity":"Brunej"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damask"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dušanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Džakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamčatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Handiga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuvajt"},"Macau":{"exemplarCity":"Makao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nikozija"},"Novokuznetsk":{"exemplarCity":"Novokuznjeck"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pjongjang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kizilorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Rijad"},"Saigon":{"exemplarCity":"Ho Ši Min"},"Sakhalin":{"exemplarCity":"Sahalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Šangaj"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Taškent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Ekaterinburg"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Božićni otok"},"Cocos":{"exemplarCity":"Kokosovi otoci"},"Comoro":{"exemplarCity":"Komori"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldivi"},"Mauritius":{"exemplarCity":"Mauricijus"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Uskrsni Otok"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidži"},"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":"Markižansko otočje"},"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":"Vostok"}},"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":"Nepoznati grad"}}},"metazone":{"Acre":{"long":{"generic":"Acre vrijeme","standard":"Acre standardno vrijeme","daylight":"Acre ljetno vrijeme"}},"Afghanistan":{"long":{"standard":"afganistansko vrijeme"}},"Africa_Central":{"long":{"standard":"srednjoafričko vrijeme"}},"Africa_Eastern":{"long":{"standard":"istočnoafričko vrijeme"}},"Africa_Southern":{"long":{"standard":"južnoafričko vrijeme"}},"Africa_Western":{"long":{"generic":"zapadnoafričko vrijeme","standard":"zapadnoafričko standardno vrijeme","daylight":"zapadnoafričko ljetno vrijeme"}},"Alaska":{"long":{"generic":"aljaško vrijeme","standard":"aljaško standardno vrijeme","daylight":"aljaško ljetno vrijeme"}},"Almaty":{"long":{"generic":"altmajsko vrijeme","standard":"altmajsko standardno vrijeme","daylight":"altmajsko ljetno vrijeme"}},"Amazon":{"long":{"generic":"amazonsko vrijeme","standard":"amazonsko standardno vrijeme","daylight":"amazonsko ljetno vrijeme"}},"America_Central":{"long":{"generic":"središnje vrijeme","standard":"središnje standardno vrijeme","daylight":"središnje ljetno vrijeme"}},"America_Eastern":{"long":{"generic":"istočno vrijeme","standard":"istočno standardno vrijeme","daylight":"istočno ljetno vrijeme"}},"America_Mountain":{"long":{"generic":"planinsko vrijeme","standard":"planinsko standardno vrijeme","daylight":"planinsko ljetno vrijeme"}},"America_Pacific":{"long":{"generic":"pacifičko vrijeme","standard":"pacifičko standardno vrijeme","daylight":"pacifičko ljetno vrijeme"}},"Anadyr":{"long":{"generic":"anadirsko vrijeme","standard":"anadirsko standardno vrijeme","daylight":"anadirsko ljetno vrijeme"}},"Apia":{"long":{"generic":"vrijeme Apije","standard":"standardno vrijeme Apije","daylight":"ljetno vrijeme Apije"}},"Aqtau":{"long":{"generic":"vrijeme grada Aktau","standard":"standardno vrijeme grada Aktau","daylight":"ljetno vrijeme grada Aktau"}},"Aqtobe":{"long":{"generic":"vrijeme grada Aktobe","standard":"standardno vrijeme grada Aktobe","daylight":"ljetno vrijeme grada Aktobe"}},"Arabian":{"long":{"generic":"arapsko vrijeme","standard":"arapsko standardno vrijeme","daylight":"arapsko ljetno vrijeme"}},"Argentina":{"long":{"generic":"argentinsko vrijeme","standard":"argentinsko standardno vrijeme","daylight":"argentinsko ljetno vrijeme"}},"Argentina_Western":{"long":{"generic":"zapadno-argentinsko vrijeme","standard":"zapadno-argentinsko standardno vrijeme","daylight":"zapadno-argentinsko ljetno vrijeme"}},"Armenia":{"long":{"generic":"armensko vrijeme","standard":"armensko standardno vrijeme","daylight":"armensko ljetno vrijeme"}},"Atlantic":{"long":{"generic":"atlantsko vrijeme","standard":"atlantsko standardno vrijeme","daylight":"atlantsko ljetno vrijeme"}},"Australia_Central":{"long":{"generic":"srednjoaustralsko vrijeme","standard":"srednjoaustralsko standardno vrijeme","daylight":"srednjoaustralsko ljetno vrijeme"}},"Australia_CentralWestern":{"long":{"generic":"australsko središnje zapadno vrijeme","standard":"australsko središnje zapadno standardno vrijeme","daylight":"australsko središnje zapadno ljetno vrijeme"}},"Australia_Eastern":{"long":{"generic":"istočnoaustralsko vrijeme","standard":"istočnoaustralsko standardno vrijeme","daylight":"istočnoaustralsko ljetno vrijeme"}},"Australia_Western":{"long":{"generic":"zapadnoaustralsko vrijeme","standard":"zapadnoaustralsko standardno vrijeme","daylight":"zapadnoaustralsko ljetno vrijeme"}},"Azerbaijan":{"long":{"generic":"azerbajdžansko vrijeme","standard":"azerbajdžansko standardno vrijeme","daylight":"azerbajdžansko ljetno vrijeme"}},"Azores":{"long":{"generic":"azorsko vrijeme","standard":"azorsko standardno vrijeme","daylight":"azorsko ljetno vrijeme"}},"Bangladesh":{"long":{"generic":"bangladeško vrijeme","standard":"bangladeško standardno vrijeme","daylight":"bangladeško ljetno vrijeme"}},"Bhutan":{"long":{"standard":"butansko vrijeme"}},"Bolivia":{"long":{"standard":"bolivijsko vrijeme"}},"Brasilia":{"long":{"generic":"brazilijsko vrijeme","standard":"brazilijsko standardno vrijeme","daylight":"brazilijsko ljetno vrijeme"}},"Brunei":{"long":{"standard":"vrijeme za Brunej Darussalam"}},"Cape_Verde":{"long":{"generic":"vrijeme Zelenortskog otočja","standard":"standardno vrijeme Zelenortskog otočja","daylight":"ljetno vrijeme Zelenortskog otočja"}},"Casey":{"long":{"standard":"vrijeme Caseyja"}},"Chamorro":{"long":{"standard":"standardno vrijeme Chamorra"}},"Chatham":{"long":{"generic":"vrijeme Chathama","standard":"standardno vrijeme Chathama","daylight":"ljetno vrijeme Chathama"}},"Chile":{"long":{"generic":"čileansko vrijeme","standard":"čileansko standardno vrijeme","daylight":"čileansko ljetno vrijeme"}},"China":{"long":{"generic":"kinesko vrijeme","standard":"kinesko standardno vrijeme","daylight":"kinesko ljetno vrijeme"}},"Choibalsan":{"long":{"generic":"choibalsansko vrijeme","standard":"choibalsansko standardno vrijeme","daylight":"choibalsansko ljetno vrijeme"}},"Christmas":{"long":{"standard":"vrijeme Božićnog otoka"}},"Cocos":{"long":{"standard":"vrijeme Kokosovih Otoka"}},"Colombia":{"long":{"generic":"kolumbijsko vrijeme","standard":"kolumbijsko standardno vrijeme","daylight":"kolumbijsko ljetno vrijeme"}},"Cook":{"long":{"generic":"vrijeme Cookovih Otoka","standard":"standardno vrijeme Cookovih Otoka","daylight":"Cookovo otočje, polusatni pomak, ljetno vrijeme"}},"Cuba":{"long":{"generic":"kubansko vrijeme","standard":"kubansko standardno vrijeme","daylight":"kubansko ljetno vrijeme"}},"Davis":{"long":{"standard":"vrijeme Davisa"}},"DumontDUrville":{"long":{"standard":"vrijeme Dumont-d’Urvillea"}},"East_Timor":{"long":{"standard":"istočnotimorsko vrijeme"}},"Easter":{"long":{"generic":"vrijeme Uskršnjeg otoka","standard":"standardno vrijeme Uskršnjeg otoka","daylight":"ljetno vrijeme Uskršnjeg otoka"}},"Ecuador":{"long":{"standard":"ekvadorsko vrijeme"}},"Europe_Central":{"long":{"generic":"srednjoeuropsko vrijeme","standard":"srednjoeuropsko standardno vrijeme","daylight":"srednjoeuropsko ljetno vrijeme"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"istočnoeuropsko vrijeme","standard":"istočnoeuropsko standardno vrijeme","daylight":"istočnoeuropsko ljetno vrijeme"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"daljeistočno europsko vrijeme"}},"Europe_Western":{"long":{"generic":"zapadnoeuropsko vrijeme","standard":"zapadnoeuropsko standardno vrijeme","daylight":"zapadnoeuropsko ljetno vrijeme"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"falklandsko vrijeme","standard":"falklandsko standardno vrijeme","daylight":"falklandsko ljetno vrijeme"}},"Fiji":{"long":{"generic":"vrijeme Fidžija","standard":"standardno vrijeme Fidžija","daylight":"ljetno vrijeme Fidžija"}},"French_Guiana":{"long":{"standard":"vrijeme Francuske Gvajane"}},"French_Southern":{"long":{"standard":"južnofrancusko i antarktičko vrijeme"}},"GMT":{"long":{"standard":"univerzalno vrijeme"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"vrijeme Galapagosa"}},"Gambier":{"long":{"standard":"vrijeme Gambiera"}},"Georgia":{"long":{"generic":"gruzijsko vrijeme","standard":"gruzijsko standardno vrijeme","daylight":"gruzijsko ljetno vrijeme"}},"Gilbert_Islands":{"long":{"standard":"vrijeme Gilbertovih Otoka"}},"Greenland_Eastern":{"long":{"generic":"istočnogrenlandsko vrijeme","standard":"istočnogrenlandsko standardno vrijeme","daylight":"istočnogrenlandsko ljetno vrijeme"}},"Greenland_Western":{"long":{"generic":"zapadnogrenlandsko vrijeme","standard":"zapadnogrenlandsko standardno vrijeme","daylight":"zapadnogrenlandsko ljetno vrijeme"}},"Guam":{"long":{"standard":"guamsko standardno vrijeme"}},"Gulf":{"long":{"standard":"zaljevsko standardno vrijeme"}},"Guyana":{"long":{"standard":"gvajansko vrijeme"}},"Hawaii_Aleutian":{"long":{"generic":"havajsko-aleutsko vrijeme","standard":"havajsko-aleutsko standardno vrijeme","daylight":"havajsko-aleutsko ljetno vrijeme"}},"Hong_Kong":{"long":{"generic":"hongkonško vrijeme","standard":"hongkonško standardno vrijeme","daylight":"hongkonško ljetno vrijeme"}},"Hovd":{"long":{"generic":"hovdsko vrijeme","standard":"hovdsko standardno vrijeme","daylight":"hovdsko ljetno vrijeme"}},"India":{"long":{"standard":"indijsko vrijeme"}},"Indian_Ocean":{"long":{"standard":"vrijeme Indijskog oceana"}},"Indochina":{"long":{"standard":"indokinesko vrijeme"}},"Indonesia_Central":{"long":{"standard":"srednjoindonezijsko vrijeme"}},"Indonesia_Eastern":{"long":{"standard":"istočnoindonezijsko vrijeme"}},"Indonesia_Western":{"long":{"standard":"zapadnoindonezijsko vrijeme"}},"Iran":{"long":{"generic":"iransko vrijeme","standard":"iransko standardno vrijeme","daylight":"iransko ljetno vrijeme"}},"Irkutsk":{"long":{"generic":"irkutsko vrijeme","standard":"irkutsko standardno vrijeme","daylight":"irkutsko ljetno vrijeme"}},"Israel":{"long":{"generic":"izraelsko vrijeme","standard":"izraelsko standardno vrijeme","daylight":"izraelsko ljetno vrijeme"}},"Japan":{"long":{"generic":"japansko vrijeme","standard":"japansko standardno vrijeme","daylight":"japansko ljetno vrijeme"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-kamčatsko vrijeme","standard":"Petropavlovsk-kamčatsko standardno vrijeme","daylight":"Petropavlovsk-kamčatsko ljetno vrijeme"}},"Kazakhstan_Eastern":{"long":{"standard":"istočnokazahstansko vrijeme"}},"Kazakhstan_Western":{"long":{"standard":"zapadnokazahstansko vrijeme"}},"Korea":{"long":{"generic":"korejsko vrijeme","standard":"korejsko standardno vrijeme","daylight":"korejsko ljetno vrijeme"}},"Kosrae":{"long":{"standard":"vrijeme Kosrae"}},"Krasnoyarsk":{"long":{"generic":"krasnojarsko vrijeme","standard":"krasnojarsko standardno vrijeme","daylight":"krasnojarsko ljetno vrijeme"}},"Kyrgystan":{"long":{"standard":"kirgistansko vrijeme"}},"Lanka":{"long":{"standard":"lankansko vrijeme"}},"Line_Islands":{"long":{"standard":"vrijeme Otoka Line"}},"Lord_Howe":{"long":{"generic":"vrijeme otoka Lord Howe","standard":"standardno vrijeme otoka Lord Howe","daylight":"ljetno vrijeme otoka Lord Howe"}},"Macau":{"long":{"generic":"makaosko vrijeme","standard":"standardno makaosko vrijeme","daylight":"ljetno makaosko vrijeme"}},"Macquarie":{"long":{"standard":"vrijeme otoka Macquarie"}},"Magadan":{"long":{"generic":"magadansko vrijeme","standard":"magadansko standardno vrijeme","daylight":"magadansko ljetno vrijeme"}},"Malaysia":{"long":{"standard":"malezijsko vrijeme"}},"Maldives":{"long":{"standard":"maldivsko vrijeme"}},"Marquesas":{"long":{"standard":"markižansko vrijeme"}},"Marshall_Islands":{"long":{"standard":"vrijeme Maršalovih Otoka"}},"Mauritius":{"long":{"generic":"vrijeme Mauricijusa","standard":"standardno vrijeme Mauricijusa","daylight":"ljetno vrijeme Mauricijusa"}},"Mawson":{"long":{"standard":"mawsonsko vrijeme"}},"Mexico_Northwest":{"long":{"generic":"sjeverozapadno meksičko vrijeme","standard":"sjeverozapadno meksičko standardno vrijeme","daylight":"sjeverozapadno meksičko ljetno vrijeme"}},"Mexico_Pacific":{"long":{"generic":"meksičko pacifičko vrijeme","standard":"meksičko pacifičko standardno vrijeme","daylight":"meksičko pacifičko ljetno vrijeme"}},"Mongolia":{"long":{"generic":"ulan-batorsko vrijeme","standard":"ulan-batorsko standardno vrijeme","daylight":"ulan-batorsko ljetno vrijeme"}},"Moscow":{"long":{"generic":"moskovsko vrijeme","standard":"moskovsko standardno vrijeme","daylight":"moskovsko ljetno vrijeme"}},"Myanmar":{"long":{"standard":"mianmarsko vrijeme"}},"Nauru":{"long":{"standard":"vrijeme Naurua"}},"Nepal":{"long":{"standard":"nepalsko vrijeme"}},"New_Caledonia":{"long":{"generic":"vrijeme Nove Kaledonije","standard":"standardno vrijeme Nove Kaledonije","daylight":"ljetno vrijeme Nove Kaledonije"}},"New_Zealand":{"long":{"generic":"novozelandsko vrijeme","standard":"novozelandsko standardno vrijeme","daylight":"novozelandsko ljetno vrijeme"}},"Newfoundland":{"long":{"generic":"newfoundlandsko vrijeme","standard":"newfoundlandsko standardno vrijeme","daylight":"newfoundlandsko ljetno vrijeme"}},"Niue":{"long":{"standard":"vrijeme Niuea"}},"Norfolk":{"long":{"standard":"vrijeme Otoka Norfolk"}},"Noronha":{"long":{"generic":"vrijeme grada Fernando de Noronha","standard":"standardno vrijeme grada Fernando de Noronha","daylight":"ljetno vrijeme grada Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"vrijeme Sjevernomarijanskih Otoka"}},"Novosibirsk":{"long":{"generic":"novosibirsko vrijeme","standard":"novosibirsko standardno vrijeme","daylight":"novosibirsko ljetno vrijeme"}},"Omsk":{"long":{"generic":"omsko vrijeme","standard":"omsko standardno vrijeme","daylight":"omsko ljetno vrijeme"}},"Pakistan":{"long":{"generic":"pakistansko vrijeme","standard":"pakistansko standardno vrijeme","daylight":"pakistansko ljetno vrijeme"}},"Palau":{"long":{"standard":"vrijeme Palaua"}},"Papua_New_Guinea":{"long":{"standard":"vrijeme Papue Nove Gvineje"}},"Paraguay":{"long":{"generic":"paragvajsko vrijeme","standard":"paragvajsko standardno vrijeme","daylight":"paragvajsko ljetno vrijeme"}},"Peru":{"long":{"generic":"peruansko vrijeme","standard":"peruansko standardno vrijeme","daylight":"peruansko ljetno vrijeme"}},"Philippines":{"long":{"generic":"filipinsko vrijeme","standard":"filipinsko standardno vrijeme","daylight":"filipinsko ljetno vrijeme"}},"Phoenix_Islands":{"long":{"standard":"vrijeme Otoka Phoenix"}},"Pierre_Miquelon":{"long":{"generic":"vrijeme za Sveti Petar i Mikelon","standard":"standardno vrijeme za Sveti Petar i Mikelon","daylight":"ljetno vrijeme za Sveti Petar i Mikelon"}},"Pitcairn":{"long":{"standard":"vrijeme Pitcairna"}},"Ponape":{"long":{"standard":"vrijeme Ponapea"}},"Qyzylorda":{"long":{"generic":"vrijeme grada Kizilorde","standard":"standardno vrijeme grada Kizilorde","daylight":"ljetno vrijeme grada Kizilorde"}},"Reunion":{"long":{"standard":"vrijeme Reuniona"}},"Rothera":{"long":{"standard":"vrijeme Rothere"}},"Sakhalin":{"long":{"generic":"sahalinsko vrijeme","standard":"sahalinsko standardno vrijeme","daylight":"sahalinsko ljetno vrijeme"}},"Samara":{"long":{"generic":"samarsko vrijeme","standard":"samarsko standardno vrijeme","daylight":"samarsko ljetno vrijeme"}},"Samoa":{"long":{"generic":"samoansko vrijeme","standard":"samoansko standardno vrijeme","daylight":"samoansko ljetno vrijeme"}},"Seychelles":{"long":{"standard":"sejšelsko vrijeme"}},"Singapore":{"long":{"standard":"singapursko vrijeme"}},"Solomon":{"long":{"standard":"vrijeme Salomonskih Otoka"}},"South_Georgia":{"long":{"standard":"vrijeme Južne Georgije"}},"Suriname":{"long":{"standard":"surinamsko vrijeme"}},"Syowa":{"long":{"standard":"vrijeme Syowe"}},"Tahiti":{"long":{"standard":"vrijeme Tahitija"}},"Taipei":{"long":{"generic":"tajpeško vrijeme","standard":"tajpeško standardno vrijeme","daylight":"tajpeško ljetno vrijeme"}},"Tajikistan":{"long":{"standard":"tadžikistansko vrijeme"}},"Tokelau":{"long":{"standard":"vrijeme Tokelaua"}},"Tonga":{"long":{"generic":"vrijeme Tonge","standard":"standardno vrijeme Tonge","daylight":"ljetno vrijeme Tonge"}},"Truk":{"long":{"standard":"vrijeme Chuuka"}},"Turkmenistan":{"long":{"generic":"turkmenistansko vrijeme","standard":"turkmenistansko standardno vrijeme","daylight":"turkmenistansko ljetno vrijeme"}},"Tuvalu":{"long":{"standard":"vrijeme Tuvalua"}},"Uruguay":{"long":{"generic":"urugvajsko vrijeme","standard":"urugvajsko standardno vrijeme","daylight":"urugvajsko ljetno vrijeme"}},"Uzbekistan":{"long":{"generic":"uzbekistansko vrijeme","standard":"uzbekistansko standardno vrijeme","daylight":"uzbekistansko ljetno vrijeme"}},"Vanuatu":{"long":{"generic":"vrijeme Vanuatua","standard":"standardno vrijeme Vanuatua","daylight":"ljetno vrijeme Vanuatua"}},"Venezuela":{"long":{"standard":"venezuelsko vrijeme"}},"Vladivostok":{"long":{"generic":"vladivostočko vrijeme","standard":"vladivostočko standardno vrijeme","daylight":"vladivostočko ljetno vrijeme"}},"Volgograd":{"long":{"generic":"volgogradsko vrijeme","standard":"volgogradsko standardno vrijeme","daylight":"volgogradsko ljetno vrijeme"}},"Vostok":{"long":{"standard":"vostočko vrijeme"}},"Wake":{"long":{"standard":"vrijeme Otoka Wake"}},"Wallis":{"long":{"standard":"vrijeme Otoka Wallis i Futuna"}},"Yakutsk":{"long":{"generic":"jakutsko vrijeme","standard":"jakutsko standardno vrijeme","daylight":"jakutsko ljetno vrijeme"}},"Yekaterinburg":{"long":{"generic":"ekaterinburško vrijeme","standard":"ekaterinburško standardno vrijeme","daylight":"ekaterinburško ljetno vrijeme"}}}} \ No newline at end of file diff --git a/Punic/data/hr/units.json b/Punic/data/hr/units.json new file mode 100644 index 0000000..6c32c63 --- /dev/null +++ b/Punic/data/hr/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metri u sekundi na kvadrat","one":"%1$s metar u sekundi na kvadrat","few":"%1$s metra u sekundi na kvadrat","other":"%1$s metara u sekundi na kvadrat"}},"angle":{"arc-minute":{"_name":"minute","one":"%1$s minuta","few":"%1$s minute","other":"%1$s minuta"},"arc-second":{"_name":"sekunde","one":"%1$s sekunda","few":"%1$s sekunde","other":"%1$s sekundi"},"degree":{"_name":"stupnjevi","one":"%1$s stupanj","few":"%1$s stupnja","other":"%1$s stupnjeva"},"radian":{"_name":"radijani","one":"%1$s radijan","few":"%1$s radijana","other":"%1$s radijana"}},"area":{"acre":{"_name":"katastarska jutra","one":"%1$s katastarsko jutro","few":"%1$s katastarska jutra","other":"%1$s katastarskih jutara"},"hectare":{"_name":"hektari","one":"%1$s hektar","few":"%1$s hektara","other":"%1$s hektara"},"square-centimeter":{"_name":"kvadratni centimetri","one":"%1$s kvadratni centimetar","few":"%1$s kvadratna centimetra","other":"%1$s kvadratnih centimetara"},"square-foot":{"_name":"kvadratne stope","one":"%1$s kvadratna stopa","few":"%1$s kvadratne stope","other":"%1$s kvadratnih stopa"},"square-inch":{"_name":"kvadratni inči","one":"%1$s kvadratni inč","few":"%1$s kvadratna inča","other":"%1$s kvadratnih inča"},"square-kilometer":{"_name":"kvadratni kilometri","one":"%1$s kvadratni kilometar","few":"%1$s kvadratna kilometra","other":"%1$s kvadratnih kilometara"},"square-meter":{"_name":"kvadratni metri","one":"%1$s kvadratni metar","few":"%1$s kvadratna metra","other":"%1$s kvadratnih metara"},"square-mile":{"_name":"kvadratne milje","one":"%1$s kvadratna milja","few":"%1$s kvadratne milje","other":"%1$s kvadratnih milja"},"square-yard":{"_name":"kvadratni jardi","one":"%1$s kvadratni jard","few":"%1$s kvadratna jarda","other":"%1$s kvadratnih jardi"}},"consumption":{"liter-per-kilometer":{"_name":"litre po kilometru","one":"%1$s litra po kilometru","few":"%1$s litre po kilometru","other":"%1$s litara po kilometru"},"mile-per-gallon":{"_name":"milje po galonu","one":"%1$s milja po galonu","few":"%1$s milje po galonu","other":"%1$s milja po galonu"}},"digital":{"bit":{"_name":"bitovi","one":"%1$s bit","few":"%1$s bita","other":"%1$s bitova"},"byte":{"_name":"bajtovi","one":"%1$s bajt","few":"%1$s bajta","other":"%1$s bajtova"},"gigabit":{"_name":"gigabiti","one":"%1$s gigabit","few":"%1$s gigabita","other":"%1$s gigabita"},"gigabyte":{"_name":"gigabajti","one":"%1$s gigabajt","few":"%1$s gigabajta","other":"%1$s gigabajta"},"kilobit":{"_name":"kilobiti","one":"%1$s kilobit","few":"%1$s kilobita","other":"%1$s kilobita"},"kilobyte":{"_name":"kilobajti","one":"%1$s kilobajt","few":"%1$s kilobajta","other":"%1$s kilobajta"},"megabit":{"_name":"megabiti","one":"%1$s megabit","few":"%1$s megabita","other":"%1$s megabita"},"megabyte":{"_name":"megabajti","one":"%1$s megabajt","few":"%1$s megabajta","other":"%1$s megabajta"},"terabit":{"_name":"terabiti","one":"%1$s terabit","few":"%1$s terabita","other":"%1$s terabita"},"terabyte":{"_name":"terabajti","one":"%1$s terabajt","few":"%1$s terabajta","other":"%1$s terabajta"}},"duration":{"day":{"_name":"dani","one":"%1$s dan","few":"%1$s dana","other":"%1$s dana"},"hour":{"_name":"sati","one":"%1$s sat","few":"%1$s sata","other":"%1$s sati","_per":"%1$s/h"},"microsecond":{"_name":"mikrosekunde","one":"%1$s mikrosekunda","few":"%1$s mikrosekunde","other":"%1$s mikrosekundi"},"millisecond":{"_name":"milisekunde","one":"%1$s milisekunda","few":"%1$s milisekunde","other":"%1$s milisekundi"},"minute":{"_name":"minute","one":"%1$s minuta","few":"%1$s minute","other":"%1$s minuta"},"month":{"_name":"mjeseci","one":"%1$s mjesec","few":"%1$s mjeseca","other":"%1$s mjeseci"},"nanosecond":{"_name":"nanosekunde","one":"%1$s nanosekunda","few":"%1$s nanosekunde","other":"%1$s nanosekundi"},"second":{"_name":"sekunde","one":"%1$s sekunda","few":"%1$s sekunde","other":"%1$s sekundi","_per":"%1$s/s"},"week":{"_name":"tjedni","one":"%1$s tjedan","few":"%1$s tjedna","other":"%1$s tjedana"},"year":{"_name":"godine","one":"%1$s godina","few":"%1$s godine","other":"%1$s godina"}},"electric":{"ampere":{"_name":"amperi","one":"%1$s amper","few":"%1$s ampera","other":"%1$s ampera"},"milliampere":{"_name":"miliamperi","one":"%1$s miliamper","few":"%1$s miliampera","other":"%1$s miliampera"},"ohm":{"_name":"omi","one":"%1$s om","few":"%1$s oma","other":"%1$s oma"},"volt":{"_name":"volti","one":"%1$s volt","few":"%1$s volta","other":"%1$s volti"}},"energy":{"calorie":{"_name":"kalorije","one":"%1$s kalorija","few":"%1$s kalorije","other":"%1$s kalorija"},"foodcalorie":{"_name":"kilokalorije","one":"%1$s kilokalorija","few":"%1$s kilokalorije","other":"%1$s kilokalorija"},"joule":{"_name":"džuli","one":"%1$s džul","few":"%1$s džula","other":"%1$s džula"},"kilocalorie":{"_name":"kilokalorije","one":"%1$s kilokalorija","few":"%1$s kilokalorije","other":"%1$s kilokalorija"},"kilojoule":{"_name":"kilodžuli","one":"%1$s kilodžul","few":"%1$s kilodžula","other":"%1$s kilodžula"},"kilowatt-hour":{"_name":"kilovatsati","one":"%1$s kilovatsat","few":"%1$s kilovatsata","other":"%1$s kilovatsati"}},"frequency":{"gigahertz":{"_name":"gigaherci","one":"%1$s gigaherc","few":"%1$s gigaherca","other":"%1$s gigaherca"},"hertz":{"_name":"herci","one":"%1$s herc","few":"%1$s herca","other":"%1$s herca"},"kilohertz":{"_name":"kiloherci","one":"%1$s kiloherc","few":"%1$s kiloherca","other":"%1$s kiloherca"},"megahertz":{"_name":"megaherci","one":"%1$s megaherc","few":"%1$s megaherca","other":"%1$s megaherca"}},"length":{"astronomical-unit":{"_name":"astronomske jedinice","one":"%1$s astronomska jedinica","few":"%1$s astronomske jedinice","other":"%1$s astronomskih jedinica"},"centimeter":{"_name":"centimetri","one":"%1$s centimetar","few":"%1$s centimetra","other":"%1$s centimetara"},"decimeter":{"_name":"decimetri","one":"%1$s decimetar","few":"%1$s decimetra","other":"%1$s decimetara"},"fathom":{"_name":"hvati","one":"%1$s hvat","few":"%1$s hvata","other":"%1$s hvati"},"foot":{"_name":"stope","one":"%1$s stopa","few":"%1$s stope","other":"%1$s stopa"},"furlong":{"_name":"furlonzi","one":"%1$s furlong","few":"%1$s furlonga","other":"%1$s furlonga"},"inch":{"_name":"inči","one":"%1$s inč","few":"%1$s inča","other":"%1$s inča"},"kilometer":{"_name":"kilometri","one":"%1$s kilometar","few":"%1$s kilometra","other":"%1$s kilometara"},"light-year":{"_name":"svjetlosne godine","one":"%1$s svjetlosna godina","few":"%1$s svjetlosne godine","other":"%1$s svjetlosnih godina"},"meter":{"_name":"metri","one":"%1$s metar","few":"%1$s metra","other":"%1$s metara"},"micrometer":{"_name":"mikrometri","one":"%1$s mikrometar","few":"%1$s mikrometra","other":"%1$s mikrometara"},"mile":{"_name":"milje","one":"%1$s milja","few":"%1$s milje","other":"%1$s milja"},"millimeter":{"_name":"milimetri","one":"%1$s milimetar","few":"%1$s milimetra","other":"%1$s milimetara"},"nanometer":{"_name":"nanometri","one":"%1$s nanometar","few":"%1$s nanometra","other":"%1$s nanometara"},"nautical-mile":{"_name":"nautičke milje","one":"%1$s nautička milja","few":"%1$s nautičke milje","other":"%1$s nautičkih milja"},"parsec":{"_name":"parseci","one":"%1$s parsek","few":"%1$s parseka","other":"%1$s parseka"},"picometer":{"_name":"pikometri","one":"%1$s pikometar","few":"%1$s pikometra","other":"%1$s pikometara"},"yard":{"_name":"jardi","one":"%1$s jard","few":"%1$s jarda","other":"%1$s jardi"}},"light":{"lux":{"_name":"luksi","one":"%1$s luks","few":"%1$s luksa","other":"%1$s luksa"}},"mass":{"carat":{"_name":"karati","one":"%1$s karat","few":"%1$s karata","other":"%1$s karata"},"gram":{"_name":"grami","one":"%1$s gram","few":"%1$s grama","other":"%1$s grama"},"kilogram":{"_name":"kilogrami","one":"%1$s kilogram","few":"%1$s kilograma","other":"%1$s kilograma"},"metric-ton":{"_name":"tone","one":"%1$s tona","few":"%1$s tone","other":"%1$s tona"},"microgram":{"_name":"mikrogrami","one":"%1$s mikrogram","few":"%1$s mikrograma","other":"%1$s mikrograma"},"milligram":{"_name":"miligrami","one":"%1$s miligram","few":"%1$s miligrama","other":"%1$s miligrama"},"ounce":{"_name":"unce","one":"%1$s unca","few":"%1$s unce","other":"%1$s unci"},"ounce-troy":{"_name":"troy unce","one":"%1$s troy unca","few":"%1$s troy unce","other":"%1$s troy unci"},"pound":{"_name":"funte","one":"%1$s funta","few":"%1$s funte","other":"%1$s funti"},"stone":{"_name":"kameni","one":"%1$s kamen","few":"%1$s kamena","other":"%1$s kamena"},"ton":{"_name":"kratke tone","one":"%1$s kratka tona","few":"%1$s kratke tone","other":"%1$s kratkih tona"}},"power":{"gigawatt":{"_name":"gigavati","one":"%1$s gigavat","few":"%1$s gigavata","other":"%1$s gigavata"},"horsepower":{"_name":"konjske snage","one":"%1$s konjska snaga","few":"%1$s konjske snage","other":"%1$s konjskih snaga"},"kilowatt":{"_name":"kilovati","one":"%1$s kilovat","few":"%1$s kilovata","other":"%1$s kilovata"},"megawatt":{"_name":"megavati","one":"%1$s megavat","few":"%1$s megavata","other":"%1$s megavata"},"milliwatt":{"_name":"milivati","one":"%1$s milivat","few":"%1$s milivata","other":"%1$s milivata"},"watt":{"_name":"vati","one":"%1$s vat","few":"%1$s vata","other":"%1$s vati"}},"pressure":{"hectopascal":{"_name":"hektopaskali","one":"%1$s hektopaskal","few":"%1$s hektopaskala","other":"%1$s hektopaskala"},"inch-hg":{"_name":"inči žive","one":"%1$s inč žive","few":"%1$s inča žive","other":"%1$s inča žive"},"millibar":{"_name":"milibari","one":"%1$s milibar","few":"%1$s milibara","other":"%1$s milibara"},"millimeter-of-mercury":{"_name":"milimetri živina stupca","one":"%1$s milimetar živina stupca","few":"%1$s milimetra živina stupca","other":"%1$s milimetara živina stupca"},"pound-per-square-inch":{"_name":"funte po kvadratnom inču","one":"%1$s funta po kvadratnom inču","few":"%1$s funte po kvadratnom inču","other":"%1$s funti po kvadratnom inču"}},"proportion":{"karat":{"_name":"karati","one":"%1$s karat","few":"%1$s karata","other":"%1$s karata"}},"speed":{"kilometer-per-hour":{"_name":"kilometri na sat","one":"%1$s kilometar na sat","few":"%1$s kilometra na sat","other":"%1$s kilometara na sat"},"meter-per-second":{"_name":"metri u sekundi","one":"%1$s metar u sekundi","few":"%1$s metra u sekundi","other":"%1$s metara u sekundi"},"mile-per-hour":{"_name":"milje na sat","one":"%1$s milja na sat","few":"%1$s milje na sat","other":"%1$s milja na sat"}},"temperature":{"celsius":{"_name":"Celzijevi stupnjevi","one":"%1$s Celzijev stupanj","few":"%1$s Celzijeva stupnja","other":"%1$s Celzijevih stupnjeva"},"fahrenheit":{"_name":"Fahrenheitovi stupnjevi","one":"%1$s Fahrenheitov stupanj","few":"%1$s Fahrenheitova stupnja","other":"%1$s Fahrenheitovih stupnjeva"},"kelvin":{"_name":"kelvini","one":"%1$s kelvin","few":"%1$s kelvina","other":"%1$s kelvina"}},"volume":{"acre-foot":{"_name":"aker-stope","one":"%1$s aker-stopa","few":"%1$s aker-stope","other":"%1$s aker-stopi"},"bushel":{"_name":"bušeli","one":"%1$s bušel","few":"%1$s bušela","other":"%1$s bušela"},"centiliter":{"_name":"centilitri","one":"%1$s centilitar","few":"%1$s centilitra","other":"%1$s centilitara"},"cubic-centimeter":{"_name":"kubni centimetri","one":"%1$s kubni centimetar","few":"%1$s kubna centimetra","other":"%1$s kubnih centimetara"},"cubic-foot":{"_name":"kubne stope","one":"%1$s kubna stopa","few":"%1$s kubne stope","other":"%1$s kubnih stopa"},"cubic-inch":{"_name":"kubni inči","one":"%1$s kubni inč","few":"%1$s kubna inča","other":"%1$s kubnih inča"},"cubic-kilometer":{"_name":"kubni kilometri","one":"%1$s kubni kilometar","few":"%1$s kubna kilometra","other":"%1$s kubnih kilometara"},"cubic-meter":{"_name":"kubni metri","one":"%1$s kubni metar","few":"%1$s kubna metra","other":"%1$s kubnih metara"},"cubic-mile":{"_name":"kubne milje","one":"%1$s kubna milja","few":"%1$s kubne milje","other":"%1$s kubnih milja"},"cubic-yard":{"_name":"kubni jardi","one":"%1$s kubni jard","few":"%1$s kubna jarda","other":"%1$s kubnih jardi"},"cup":{"_name":"šalice","one":"%1$s šalica","few":"%1$s šalice","other":"%1$s šalica"},"deciliter":{"_name":"decilitri","one":"%1$s decilitar","few":"%1$s decilitra","other":"%1$s decilitara"},"fluid-ounce":{"_name":"tekuće unce","one":"%1$s tekuća unca","few":"%1$s tekuće unce","other":"%1$s tekućih unci"},"gallon":{"_name":"galoni","one":"%1$s galon","few":"%1$s galona","other":"%1$s galona"},"hectoliter":{"_name":"hektolitri","one":"%1$s hektolitar","few":"%1$s hektolitra","other":"%1$s hektolitara"},"liter":{"_name":"litre","one":"%1$s litra","few":"%1$s litre","other":"%1$s litara"},"megaliter":{"_name":"megalitri","one":"%1$s megalitar","few":"%1$s megalitra","other":"%1$s megalitara"},"milliliter":{"_name":"mililitri","one":"%1$s mililitar","few":"%1$s mililitra","other":"%1$s mililitara"},"pint":{"_name":"pinte","one":"%1$s pinta","few":"%1$s pinte","other":"%1$s pinti"},"quart":{"_name":"četvrtine","one":"%1$s četvrtina","few":"%1$s četvrtine","other":"%1$s četvrtina"},"tablespoon":{"_name":"žlice","one":"%1$s žlica","few":"%1$s žlice","other":"%1$s žlica"},"teaspoon":{"_name":"žličice","one":"%1$s žličica","few":"%1$s žličice","other":"%1$s žličica"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"min","one":"%1$s min","few":"%1$s min","other":"%1$s min"},"arc-second":{"_name":"s","one":"%1$s s","few":"%1$s s","other":"%1$s s"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"kj","one":"%1$s kj","few":"%1$s kj","other":"%1$s kj"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","few":"%1$s bita","other":"%1$s bitova"},"byte":{"_name":"bajt","one":"%1$s bajt","few":"%1$s bajta","other":"%1$s bajtova"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dani","one":"%1$s dan","few":"%1$s dana","other":"%1$s dana"},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","few":"%1$s min","other":"%1$s min"},"month":{"_name":"mj.","one":"%1$s mj.","few":"%1$s mj.","other":"%1$s mj."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"tj.","one":"%1$s tj.","few":"%1$s tj.","other":"%1$s tj."},"year":{"_name":"g.","one":"%1$s g.","few":"%1$s g.","other":"%1$s g."}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"hv","one":"%1$s hv","few":"%1$s hv","other":"%1$s hv"},"foot":{"_name":"stope","one":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"furlonzi","one":"%1$s fur","few":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inči","one":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"svjetlosne g.","one":"%1$s ly","few":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardi","one":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$s ct","few":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","few":"%1$s st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KS","one":"%1$s KS","few":"%1$s KS","other":"%1$s KS"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","few":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","one":"%1$s bu","few":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"šalice","one":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"min","one":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"s","one":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"kj","one":"%1$s kj","few":"%1$s kj","other":"%1$s kj"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","few":"%1$s bita","other":"%1$s bitova"},"byte":{"_name":"bajt","one":"%1$s bajt","few":"%1$s bajta","other":"%1$s bajtova"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d.","one":"%1$s d.","few":"%1$s d.","other":"%1$s d."},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"month":{"_name":"mj.","one":"%1$s mj.","few":"%1$s mj.","other":"%1$s mj."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"tj.","one":"%1$s tj.","few":"%1$s tj.","other":"%1$s tj."},"year":{"_name":"g.","one":"%1$s g.","few":"%1$s g.","other":"%1$s g."}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"hv","one":"%1$s hv","few":"%1$s hv","other":"%1$s hv"},"foot":{"_name":"stope","one":"%1$s′","few":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","one":"%1$s fur","few":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inči","one":"%1$s″","few":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"svjetlosne g.","one":"%1$s ly","few":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardi","one":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$s ct","few":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","few":"%1$s st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KS","one":"%1$s KS","few":"%1$s KS","other":"%1$s KS"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","few":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","few":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","one":"%1$s bu","few":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"šalice","one":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/hu/calendar.json b/Punic/data/hu/calendar.json new file mode 100644 index 0000000..7dbadd4 --- /dev/null +++ b/Punic/data/hu/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"febr.","3":"márc.","4":"ápr.","5":"máj.","6":"jún.","7":"júl.","8":"aug.","9":"szept.","10":"okt.","11":"nov.","12":"dec."},"narrow":{"1":"J","2":"F","3":"M","4":"Á","5":"M","6":"J","7":"J","8":"A","9":"Sz","10":"O","11":"N","12":"D"},"wide":{"1":"január","2":"február","3":"március","4":"április","5":"május","6":"június","7":"július","8":"augusztus","9":"szeptember","10":"október","11":"november","12":"december"}},"stand-alone":{"abbreviated":{"1":"jan.","2":"febr.","3":"márc.","4":"ápr.","5":"máj.","6":"jún.","7":"júl.","8":"aug.","9":"szept.","10":"okt.","11":"nov.","12":"dec."},"narrow":{"1":"J","2":"F","3":"M","4":"Á","5":"M","6":"J","7":"J","8":"A","9":"Sz","10":"O","11":"N","12":"D"},"wide":{"1":"január","2":"február","3":"március","4":"április","5":"május","6":"június","7":"július","8":"augusztus","9":"szeptember","10":"október","11":"november","12":"december"}}},"days":{"format":{"abbreviated":{"sun":"V","mon":"H","tue":"K","wed":"Sze","thu":"Cs","fri":"P","sat":"Szo"},"narrow":{"sun":"V","mon":"H","tue":"K","wed":"Sz","thu":"Cs","fri":"P","sat":"Sz"},"short":{"sun":"V","mon":"H","tue":"K","wed":"Sze","thu":"Cs","fri":"P","sat":"Szo"},"wide":{"sun":"vasárnap","mon":"hétfő","tue":"kedd","wed":"szerda","thu":"csütörtök","fri":"péntek","sat":"szombat"}},"stand-alone":{"abbreviated":{"sun":"V","mon":"H","tue":"K","wed":"Sze","thu":"Cs","fri":"P","sat":"Szo"},"narrow":{"sun":"V","mon":"H","tue":"K","wed":"Sz","thu":"Cs","fri":"P","sat":"Sz"},"short":{"sun":"V","mon":"H","tue":"K","wed":"Sze","thu":"Cs","fri":"P","sat":"Szo"},"wide":{"sun":"vasárnap","mon":"hétfő","tue":"kedd","wed":"szerda","thu":"csütörtök","fri":"péntek","sat":"szombat"}}},"quarters":{"format":{"abbreviated":{"1":"N1","2":"N2","3":"N3","4":"N4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"I. negyedév","2":"II. negyedév","3":"III. negyedév","4":"IV. negyedév"}},"stand-alone":{"abbreviated":{"1":"N1","2":"N2","3":"N3","4":"N4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"1. negyedév","2":"2. negyedév","3":"3. negyedév","4":"4. negyedév"}}},"dayPeriods":{"format":{"abbreviated":{"am":"de.","noon":"dél","pm":"du."},"narrow":{"am":"de.","noon":"dél","pm":"du."},"wide":{"am":"de.","noon":"dél","pm":"du."}},"stand-alone":{"abbreviated":{"am":"de.","noon":"dél","pm":"du."},"narrow":{"am":"de.","noon":"dél","pm":"du."},"wide":{"am":"de.","noon":"dél","pm":"du."}}},"eras":{"wide":{"0":"időszámításunk előtt","0-alt-variant":"i. e.","1":"időszámításunk szerint","1-alt-variant":"i. sz."},"abbreviated":{"0":"i. e.","0-alt-variant":"BCE","1":"i. sz.","1-alt-variant":"CE"},"narrow":{"0":"ie.","0-alt-variant":"BCE","1":"isz.","1-alt-variant":"CE"}},"dateFormats":{"full":"y. MMMM d., EEEE","long":"y. MMMM d.","medium":"y. MMM d.","short":"y. MM. dd."},"timeFormats":{"full":"H:mm:ss zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/hu/dateFields.json b/Punic/data/hu/dateFields.json new file mode 100644 index 0000000..6cab979 --- /dev/null +++ b/Punic/data/hu/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"éra"},"year":{"displayName":"év","relative-type--1":"előző év","relative-type-0":"ez az év","relative-type-1":"következő év","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} év múlva","relativeTimePattern-count-other":"{0} év múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} évvel ezelőtt","relativeTimePattern-count-other":"{0} évvel ezelőtt"}},"year-short":{"displayName":"év","relative-type--1":"előző év","relative-type-0":"ez az év","relative-type-1":"következő év","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} év múlva","relativeTimePattern-count-other":"{0} év múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} évvel ezelőtt","relativeTimePattern-count-other":"{0} évvel ezelőtt"}},"year-narrow":{"displayName":"év","relative-type--1":"előző év","relative-type-0":"ez az év","relative-type-1":"következő év","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} év múlva","relativeTimePattern-count-other":"{0} év múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} évvel ezelőtt","relativeTimePattern-count-other":"{0} évvel ezelőtt"}},"quarter":{"displayName":"negyedév","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} negyedév múlva","relativeTimePattern-count-other":"{0} negyedév múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} negyedévvel ezelőtt","relativeTimePattern-count-other":"{0} negyedévvel ezelőtt"}},"quarter-short":{"displayName":"negyedév","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} negyedév múlva","relativeTimePattern-count-other":"{0} negyedév múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} negyedévvel ezelőtt","relativeTimePattern-count-other":"{0} negyedévvel ezelőtt"}},"quarter-narrow":{"displayName":"negyedév","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} negyedév múlva","relativeTimePattern-count-other":"{0} negyedév múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} negyedévvel ezelőtt","relativeTimePattern-count-other":"{0} negyedévvel ezelőtt"}},"month":{"displayName":"hónap","relative-type--1":"előző hónap","relative-type-0":"ez a hónap","relative-type-1":"következő hónap","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hónap múlva","relativeTimePattern-count-other":"{0} hónap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hónappal ezelőtt","relativeTimePattern-count-other":"{0} hónappal ezelőtt"}},"month-short":{"displayName":"hónap","relative-type--1":"előző hónap","relative-type-0":"ez a hónap","relative-type-1":"következő hónap","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hónap múlva","relativeTimePattern-count-other":"{0} hónap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hónappal ezelőtt","relativeTimePattern-count-other":"{0} hónappal ezelőtt"}},"month-narrow":{"displayName":"hónap","relative-type--1":"előző hónap","relative-type-0":"ez a hónap","relative-type-1":"következő hónap","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hónap múlva","relativeTimePattern-count-other":"{0} hónap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hónappal ezelőtt","relativeTimePattern-count-other":"{0} hónappal ezelőtt"}},"week":{"displayName":"hét","relative-type--1":"előző hét","relative-type-0":"ez a hét","relative-type-1":"következő hét","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hét múlva","relativeTimePattern-count-other":"{0} hét múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} héttel ezelőtt","relativeTimePattern-count-other":"{0} héttel ezelőtt"}},"week-short":{"displayName":"hét","relative-type--1":"előző hét","relative-type-0":"ez a hét","relative-type-1":"következő hét","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hét múlva","relativeTimePattern-count-other":"{0} hét múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} héttel ezelőtt","relativeTimePattern-count-other":"{0} héttel ezelőtt"}},"week-narrow":{"displayName":"hét","relative-type--1":"előző hét","relative-type-0":"ez a hét","relative-type-1":"következő hét","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hét múlva","relativeTimePattern-count-other":"{0} hét múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} héttel ezelőtt","relativeTimePattern-count-other":"{0} héttel ezelőtt"}},"day":{"displayName":"nap","relative-type--1":"tegnap","relative-type--2":"tegnapelőtt","relative-type-0":"ma","relative-type-1":"holnap","relative-type-2":"holnapután","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} nap múlva","relativeTimePattern-count-other":"{0} nap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} nappal ezelőtt","relativeTimePattern-count-other":"{0} nappal ezelőtt"}},"day-short":{"displayName":"nap","relative-type--1":"tegnap","relative-type--2":"tegnapelőtt","relative-type-0":"ma","relative-type-1":"holnap","relative-type-2":"holnapután","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} nap múlva","relativeTimePattern-count-other":"{0} nap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} napja","relativeTimePattern-count-other":"{0} napja"}},"day-narrow":{"displayName":"nap","relative-type--1":"tegnap","relative-type--2":"tegnapelőtt","relative-type-0":"ma","relative-type-1":"holnap","relative-type-2":"holnapután","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} nap múlva","relativeTimePattern-count-other":"{0} nap múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} napja","relativeTimePattern-count-other":"{0} napja"}},"weekday":{"displayName":"hét napja"},"sun":{"relative-type--1":"előző vasárnap","relative-type-0":"ez a vasárnap","relative-type-1":"következő vasárnap"},"sun-short":{"relative-type--1":"előző vasárnap","relative-type-0":"ez a vasárnap","relative-type-1":"következő vasárnap"},"sun-narrow":{"relative-type--1":"előző vasárnap","relative-type-0":"ez a vasárnap","relative-type-1":"következő vasárnap"},"mon":{"relative-type--1":"előző hétfő","relative-type-0":"ez a hétfő","relative-type-1":"következő hétfő"},"mon-short":{"relative-type--1":"előző hétfő","relative-type-0":"ez a hétfő","relative-type-1":"következő hétfő"},"mon-narrow":{"relative-type--1":"előző hétfő","relative-type-0":"ez a hétfő","relative-type-1":"következő hétfő"},"tue":{"relative-type--1":"előző kedd","relative-type-0":"ez a kedd","relative-type-1":"következő kedd"},"tue-short":{"relative-type--1":"előző kedd","relative-type-0":"ez a kedd","relative-type-1":"következő kedd"},"tue-narrow":{"relative-type--1":"előző kedd","relative-type-0":"ez a kedd","relative-type-1":"következő kedd"},"wed":{"relative-type--1":"előző szerda","relative-type-0":"ez a szerda","relative-type-1":"következő szerda"},"wed-short":{"relative-type--1":"előző szerda","relative-type-0":"ez a szerda","relative-type-1":"következő szerda"},"wed-narrow":{"relative-type--1":"előző szerda","relative-type-0":"ez a szerda","relative-type-1":"következő szerda"},"thu":{"relative-type--1":"előző csütörtök","relative-type-0":"ez a csütörtök","relative-type-1":"következő csütörtök"},"thu-short":{"relative-type--1":"előző csütörtök","relative-type-0":"ez a csütörtök","relative-type-1":"következő csütörtök"},"thu-narrow":{"relative-type--1":"előző csütörtök","relative-type-0":"ez a csütörtök","relative-type-1":"következő csütörtök"},"fri":{"relative-type--1":"előző péntek","relative-type-0":"ez a péntek","relative-type-1":"következő péntek"},"fri-short":{"relative-type--1":"előző péntek","relative-type-0":"ez a péntek","relative-type-1":"következő péntek"},"fri-narrow":{"relative-type--1":"előző péntek","relative-type-0":"ez a péntek","relative-type-1":"következő péntek"},"sat":{"relative-type--1":"előző szombat","relative-type-0":"ez a szombat","relative-type-1":"következő szombat"},"sat-short":{"relative-type--1":"előző szombat","relative-type-0":"ez a szombat","relative-type-1":"következő szombat"},"sat-narrow":{"relative-type--1":"előző szombat","relative-type-0":"ez a szombat","relative-type-1":"következő szombat"},"dayperiod":{"displayName":"napszak"},"hour":{"displayName":"óra","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} óra múlva","relativeTimePattern-count-other":"{0} óra múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} órával ezelőtt","relativeTimePattern-count-other":"{0} órával ezelőtt"}},"hour-short":{"displayName":"óra","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} óra múlva","relativeTimePattern-count-other":"{0} óra múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} órával ezelőtt","relativeTimePattern-count-other":"{0} órával ezelőtt"}},"hour-narrow":{"displayName":"óra","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} óra múlva","relativeTimePattern-count-other":"{0} óra múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} órával ezelőtt","relativeTimePattern-count-other":"{0} órával ezelőtt"}},"minute":{"displayName":"perc","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} perc múlva","relativeTimePattern-count-other":"{0} perc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} perccel ezelőtt","relativeTimePattern-count-other":"{0} perccel ezelőtt"}},"minute-short":{"displayName":"perc","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} perc múlva","relativeTimePattern-count-other":"{0} perc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} perccel ezelőtt","relativeTimePattern-count-other":"{0} perccel ezelőtt"}},"minute-narrow":{"displayName":"perc","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} perc múlva","relativeTimePattern-count-other":"{0} perc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} perccel ezelőtt","relativeTimePattern-count-other":"{0} perccel ezelőtt"}},"second":{"displayName":"másodperc","relative-type-0":"most","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} másodperc múlva","relativeTimePattern-count-other":"{0} másodperc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} másodperccel ezelőtt","relativeTimePattern-count-other":"{0} másodperccel ezelőtt"}},"second-short":{"displayName":"másodperc","relative-type-0":"most","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} másodperc múlva","relativeTimePattern-count-other":"{0} másodperc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} másodperccel ezelőtt","relativeTimePattern-count-other":"{0} másodperccel ezelőtt"}},"second-narrow":{"displayName":"másodperc","relative-type-0":"most","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} másodperc múlva","relativeTimePattern-count-other":"{0} másodperc múlva"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} másodperccel ezelőtt","relativeTimePattern-count-other":"{0} másodperccel ezelőtt"}},"zone":{"displayName":"időzóna"}} \ No newline at end of file diff --git a/Punic/data/hu/languages.json b/Punic/data/hu/languages.json new file mode 100644 index 0000000..0c16a7c --- /dev/null +++ b/Punic/data/hu/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abház","ace":"achinéz","ach":"akoli","ada":"adangme","ady":"adyghe","ae":"avesztán","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"agem","ain":"ainu","ak":"akan","akk":"akkád","akz":"akz","ale":"aleut","aln":"aln","alt":"dél-altaji","am":"amhara","an":"aragonéz","ang":"óangol","anp":"angika","ar":"arab","ar-001":"modern szabányos arab","arc":"arámi","arn":"araucani","aro":"aro","arp":"arapaho","arq":"arq","arw":"aravak","ary":"ary","arz":"arz","as":"asszámi","asa":"asu","ase":"ase","ast":"asztúr","av":"avar","avk":"avk","awa":"awádi","ay":"ajmara","az":"azerbajdzsáni","az-alt-short":"azeri","azb":"azb","ba":"baskír","bal":"balucsi","ban":"balinéz","bar":"bar","bas":"basza","bax":"bamun","bbc":"bbc","bbj":"gomala","be":"belorusz","bej":"bedzsa","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bolgár","bho":"bodzspuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengáli","bo":"tibeti","bpy":"bpy","bqi":"bqi","br":"breton","bra":"braj","brh":"brh","brx":"bodo","bs":"bosnyák","bss":"koszi","bua":"burját","bug":"buginéz","bum":"bulu","byn":"blin","byv":"medumba","ca":"katalán","cad":"caddo","car":"karib","cay":"kajuga","cch":"atszam","ce":"csecsen","ceb":"cebui","cgg":"kiga","ch":"csamoró","chb":"csibcsa","chg":"csagatáj","chk":"csukéz","chm":"mari","chn":"csinuk zsargon","cho":"csoktó","chp":"csipevé","chr":"cseroki","chy":"csejen","ckb":"szoráni kurd","co":"korzikai","cop":"kopt","cps":"cps","cr":"krí","crh":"krími tatár","cs":"cseh","csb":"kasub","cu":"egyházi szláv","cv":"csuvas","cy":"walesi","da":"dán","dak":"dakota","dar":"dargva","dav":"taita","de":"német","de-AT":"osztrák német","de-CH":"svájci felnémet","del":"delavár","den":"szlevi","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"alsó szorb","dtp":"dtp","dua":"duala","dum":"közép holland","dv":"divehi","dyo":"jola-fonyi","dyu":"diula","dz":"butáni","dzg":"dazaga","ebu":"embu","ee":"eve","efi":"efik","egl":"egl","egy":"óegyiptomi","eka":"ekadzsuk","el":"görög","elx":"elamit","en":"angol","en-AU":"ausztrál angol","en-CA":"kanadai angol","en-GB":"brit angol","en-GB-alt-short":"angol (UK)","en-US":"amerikai angol","en-US-alt-short":"angol (USA)","enm":"közép angol","eo":"eszperantó","es":"spanyol","es-419":"latin-amerikai spanyol","es-ES":"európai spanyol","es-MX":"spanyol (mexikói)","esu":"esu","et":"észt","eu":"baszk","ewo":"evondo","ext":"ext","fa":"perzsa","fan":"fang","fat":"fanti","ff":"fulani","fi":"finn","fil":"filippínó","fit":"fit","fj":"fidzsi","fo":"feröeri","fon":"fon","fr":"francia","fr-CA":"kanadai francia","fr-CH":"svájci francia","frc":"frc","frm":"közép francia","fro":"ófrancia","frp":"frp","frr":"északi fríz","frs":"keleti fríz","fur":"friuli","fy":"fríz","ga":"ír","gaa":"ga","gag":"gagauz","gan":"gan","gay":"gajo","gba":"gbaja","gbz":"gbz","gd":"skót gael","gez":"geez","gil":"ikiribati","gl":"galíciai","glk":"glk","gmh":"közép felső német","gn":"guarani","goh":"ófelső német","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gót","grb":"grebó","grc":"ógörög","gsw":"svájci német","gu":"gudzsarati","guc":"guc","gur":"gur","guz":"guszii","gv":"man-szigeti","gwi":"gvicsin","ha":"hausza","hai":"haida","hak":"hak","haw":"hawaii","he":"héber","hi":"hindi","hif":"hif","hil":"hiligajnon","hit":"hittite","hmn":"hmong","ho":"hiri motu","hr":"horvát","hsb":"felső szorb","hsn":"hsn","ht":"haiti","hu":"magyar","hup":"hupa","hy":"örmény","hz":"herero","ia":"interlingva","iba":"iban","ibb":"ibibió","id":"indonéz","ie":"interlingue","ig":"igbó","ii":"szecsuán ji","ik":"inupiak","ilo":"ilokó","inh":"ingus","io":"idó","is":"izlandi","it":"olasz","iu":"inuktitut","izh":"izh","ja":"japán","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"zsidó-perzsa","jrb":"zsidó-arab","jut":"jut","jv":"jávai","ka":"grúz","kaa":"kara-kalpak","kab":"kabije","kac":"kacsin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardi","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kabuverdianu","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kgp","kha":"kaszi","kho":"kotanéz","khq":"kojra-csíni","khw":"khw","ki":"kikuju","kiu":"kiu","kj":"kuanyama","kk":"kazah","kkj":"kakó","kl":"grönlandi","kln":"kalendzsin","km":"kambodzsai","kmb":"kimbundu","kn":"kannada","ko":"koreai","koi":"komi-permják","kok":"konkani","kos":"kosrei","kpe":"kpelle","kr":"kanuri","krc":"karacsáj-balkár","kri":"kri","krj":"krj","krl":"karelai","kru":"kuruh","ks":"kásmíri","ksb":"sambala","ksf":"bafia","ksh":"kölsch","ku":"kurd","kum":"kumük","kut":"kutenai","kv":"komi","kw":"korni","ky":"kirgiz","la":"latin","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburgi","lez":"lezg","lfn":"lfn","lg":"ganda","li":"limburgi","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laoszi","lol":"mongó","loz":"lozi","lt":"litván","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"lujia","lv":"lett","lzh":"lzh","lzz":"lzz","mad":"madurai","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makaszar","man":"mandingó","mas":"masai","mde":"maba","mdf":"moksán","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauritiusi kreol","mg":"málgas","mga":"közép ír","mgh":"makua-metó","mgo":"meta’","mh":"marshalli","mi":"maori","mic":"mikmak","min":"minangkabau","mk":"macedón","ml":"malajálam","mn":"mongol","mnc":"mandzsu","mni":"manipuri","moh":"mohawk","mos":"moszi","mr":"marathi","mrj":"mrj","ms":"maláj","mt":"máltai","mua":"mundang","mul":"többszörös nyelvek","mus":"krík","mwl":"mirandéz","mwr":"marvari","mwv":"mwv","my":"burmai","mye":"myene","myv":"erzjány","mzn":"mzn","na":"naurui","nan":"nan","nap":"nápolyi","naq":"nama","nb":"norvég bokmal","nd":"északi ndebele","nds":"alsónémet","ne":"nepáli","new":"nevari","ng":"ndonga","nia":"nias","niu":"niui","njo":"njo","nl":"holland","nl-BE":"flamand","nmg":"ngumba","nn":"norvég nynorsk","nnh":"ngiemboon","no":"norvég","nog":"nogaj","non":"óskandináv","nov":"nov","nqo":"n’kó","nr":"déli ndebele","nso":"északi szotó","nus":"nuer","nv":"navahó","nwc":"klasszikus newari","ny":"nyanja","nym":"nyamvézi","nyn":"nyankole","nyo":"nyoró","nzi":"nzima","oc":"okszitán","oj":"ojibva","om":"oromói","or":"orija","os":"oszét","osa":"osage","ota":"ottomán török","pa":"pandzsábi","pag":"pangaszinan","pal":"pahlavi","pam":"pampangan","pap":"papiamentó","pau":"palaui","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"óperzsa","pfl":"pfl","phn":"főniciai","pi":"pali","pl":"lengyel","pms":"pms","pnt":"pnt","pon":"pohnpei","prg":"prg","pro":"óprovánszi","ps":"pastu","pt":"portugál","pt-BR":"brazíliai portugál","pt-PT":"európai portugál","qu":"kecsua","quc":"kicse","qug":"qug","raj":"radzsasztáni","rap":"rapanui","rar":"rarotongai","rgn":"rgn","rif":"rif","rm":"réto-román","rn":"kirundi","ro":"román","ro-MD":"moldvai","rof":"rombo","rom":"roma","root":"ősi","rtm":"rtm","ru":"orosz","rue":"rue","rug":"rug","rup":"aromán","rw":"kiruanda","rwk":"rwo","sa":"szanszkrit","sad":"szandave","sah":"jakut","sam":"szamaritánus arámi","saq":"szamburu","sas":"sasak","sat":"szantáli","saz":"saz","sba":"ngambay","sbp":"szangu","sc":"szardíniai","scn":"szicíliai","sco":"skót","sd":"szindhi","sdc":"sdc","se":"északi számi","see":"szeneka","seh":"szena","sei":"sei","sel":"szölkup","ses":"kojra-szenni","sg":"szangó","sga":"óír","sgs":"sgs","sh":"szerbhorvát","shi":"tachelhit","shn":"san","shu":"csádi arab","si":"szingaléz","sid":"szidamó","sk":"szlovák","sl":"szlovén","sli":"sli","sly":"sly","sm":"szamoai","sma":"déli számi","smj":"lule számi","smn":"inar sami","sms":"koltta lapp","sn":"sona","snk":"szoninke","so":"szomáliai","sog":"sogdien","sq":"albán","sr":"szerb","srn":"szranai tongó","srr":"szerer","ss":"sziszuati","ssy":"szahó","st":"szeszotó","stq":"stq","su":"szundanéz","suk":"szukuma","sus":"szuszu","sux":"sumér","sv":"svéd","sw":"szuahéli","swb":"comorei","swc":"kongói szuahéli","syc":"klasszikus szír","syr":"szíriai","szl":"szl","ta":"tamil","tcy":"tcy","te":"telugu","tem":"temne","teo":"teszó","ter":"terenó","tet":"tetum","tg":"tadzsik","th":"thai","ti":"tigrinja","tig":"tigré","tiv":"tiv","tk":"türkmén","tkl":"tokelaui","tkr":"tkr","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"tly","tmh":"tamasek","tn":"szecsuáni","to":"tonga","tog":"nyasa tonga","tpi":"tok pisin","tr":"török","tru":"tru","trv":"tarokó","ts":"conga","tsd":"tsd","tsi":"csimsiáni","tt":"tatár","ttt":"ttt","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"szavák","ty":"tahiti","tyv":"tuvai","tzm":"közép-marokkói tamazigt","udm":"udmurt","ug":"ujgur","uga":"ugariti","uk":"ukrán","umb":"umbundu","und":"ismeretlen nyelv","ur":"urdu","uz":"üzbég","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnami","vls":"vls","vmf":"vmf","vo":"volapük","vot":"votják","vro":"vro","vun":"vunjo","wa":"vallon","wae":"walser","wal":"valamo","war":"varaó","was":"vasó","wo":"volof","wuu":"wuu","xal":"kalmük","xh":"hosza","xmf":"xmf","xog":"szoga","yao":"jaó","yap":"japi","yav":"jangben","ybb":"jemba","yi":"jiddis","yo":"joruba","yrl":"yrl","yue":"kantoni","za":"zsuang","zap":"zapoték","zbl":"Bliss jelképrendszer","zea":"zea","zen":"zenaga","zgh":"marokkói tamazight","zh":"kínai","zh-Hans":"egyszerűsített kínai","zh-Hant":"hagyományos kínai","zu":"zulu","zun":"zuni","zxx":"nincs nyelvészeti tartalom","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/hu/listPatterns.json b/Punic/data/hu/listPatterns.json new file mode 100644 index 0000000..6652d70 --- /dev/null +++ b/Punic/data/hu/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s és %2$s","2":"%1$s és %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s és %2$s","2":"%1$s és %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s és %2$s","2":"%1$s és %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s és %2$s","2":"%1$s és %2$s"}} \ No newline at end of file diff --git a/Punic/data/hu/localeDisplayNames.json b/Punic/data/hu/localeDisplayNames.json new file mode 100644 index 0000000..9ff9bb9 --- /dev/null +++ b/Punic/data/hu/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Naptár","colAlternate":"Szimbólumokat figyelmen kívül hagyó rendezés","colBackwards":"Ékezetek fordított rendezése","colCaseFirst":"Rendezés nagy- vagy kisbetűk szerint","colCaseLevel":"Kisbetű-nagybetű érzékeny rendezés","colHiraganaQuaternary":"Kanák szerinti rendezés","colNormalization":"Normalizált rendezés","colNumeric":"Numerikus rendezés","colStrength":"Rendezés erőssége","collation":"Rendezési sorrend","currency":"Pénznem","numbers":"Számok","timezone":"Időzóna","va":"Földrajzi helyvariáns","variableTop":"Rendezés szimbólumok szerint","x":"Privát használatra"},"types":{"numbers":{"vaii":"Vai számjegyek"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"Kínai köztársasági naptár"},"colStrength":{"tertiary":"Ékezetek/kisbetű-nagybetű/szélesség rendezése"},"colCaseFirst":{"upper":"Nagybetűs szavak rendezése előre"},"colBackwards":{"yes":"Ékezetek szerinti fordított rendezés"},"colCaseLevel":{"yes":"Rendezés kisbetű-nagybetű szerint"},"colHiraganaQuaternary":{"yes":"Kanák megkülönböztető rendezése"},"colNormalization":{"yes":"Unicode szerinti normalizált rendezés"},"colNumeric":{"yes":"Számjegyek numerikus rendezése"},"colAlternate":{"shifted":"Rendezés szimbólumok figyelmen kívül hagyásával"}},"codePatterns":{"language":"Nyelv: %1$s","script":"Írásrendszer: %1$s","territory":"Régió: %1$s"}} \ No newline at end of file diff --git a/Punic/data/hu/numbers.json b/Punic/data/hu/numbers.json new file mode 100644 index 0000000..af8a5c6 --- /dev/null +++ b/Punic/data/hu/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/hu/territories.json b/Punic/data/hu/territories.json new file mode 100644 index 0000000..da6a125 --- /dev/null +++ b/Punic/data/hu/territories.json @@ -0,0 +1 @@ +{"001":"Világ","002":"Afrika","003":"Észak-Amerika","005":"Dél-Amerika","009":"Óceánia","011":"Nyugat-Afrika","013":"Közép-Amerika","014":"Kelet-Afrika","015":"Észak-Afrika","017":"Közép-Afrika","018":"Afrika déli része","019":"Amerika","021":"Amerika északi része","029":"Karib-térség","030":"Kelet-Ázsia","034":"Dél-Ázsia","035":"Délkelet-Ázsia","039":"Dél-Európa","053":"Ausztrálázsia","054":"Melanézia","057":"Mikronéziai régió","061":"Polinézia","142":"Ázsia","143":"Közép-Ázsia","145":"Nyugat-Ázsia","150":"Európa","151":"Kelet-Európa","154":"Észak-Európa","155":"Nyugat-Európa","419":"Latin-Amerika","AC":"Ascension-sziget","AD":"Andorra","AE":"Egyesült Arab Emirátus","AF":"Afganisztán","AG":"Antigua és Barbuda","AI":"Anguilla","AL":"Albánia","AM":"Örményország","AN":"Holland Antillák","AO":"Angola","AQ":"Antarktisz","AR":"Argentína","AS":"Amerikai Szamoa","AT":"Ausztria","AU":"Ausztrália","AW":"Aruba","AX":"Åland-szigetek","AZ":"Azerbajdzsán","BA":"Bosznia-Hercegovina","BB":"Barbados","BD":"Banglades","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgária","BH":"Bahrein","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolívia","BQ":"Holland Karib-térség","BR":"Brazília","BS":"Bahama-szigetek","BT":"Bhután","BV":"Bouvet-sziget","BW":"Botswana","BY":"Fehéroroszország","BZ":"Belize","CA":"Kanada","CC":"Kókusz-szigetek","CD":"Kongó - Kinshasa","CD-alt-variant":"Kongó (KDK)","CF":"Közép-afrikai Köztársaság","CG":"Kongó - Brazzaville","CG-alt-variant":"Kongó (Köztársaság)","CH":"Svájc","CI":"Elefántcsontpart","CI-alt-variant":"CI","CK":"Cook-szigetek","CL":"Chile","CM":"Kamerun","CN":"Kína","CO":"Kolumbia","CP":"Clipperton-sziget","CR":"Costa Rica","CU":"Kuba","CV":"Zöld-foki Köztársaság","CW":"Curaçao","CX":"Karácsony-sziget","CY":"Ciprus","CZ":"Csehország","DE":"Németország","DG":"Diego Garcia","DJ":"Dzsibuti","DK":"Dánia","DM":"Dominika","DO":"Dominikai Köztársaság","DZ":"Algéria","EA":"Ceuta és Melilla","EC":"Ecuador","EE":"Észtország","EG":"Egyiptom","EH":"Nyugat-Szahara","ER":"Eritrea","ES":"Spanyolország","ET":"Etiópia","EU":"Európai Unió","FI":"Finnország","FJ":"Fidzsi-szigetek","FK":"Falkland-szigetek","FK-alt-variant":"Falkland-szigetek (Malvin-szigetek)","FM":"Mikronézia","FO":"Feröer-szigetek","FR":"Franciaország","GA":"Gabon","GB":"Egyesült Királyság","GB-alt-short":"UK","GD":"Grenada","GE":"Grúzia","GF":"Francia Guyana","GG":"Guernsey","GH":"Ghána","GI":"Gibraltár","GL":"Grönland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Egyenlítői-Guinea","GR":"Görögország","GS":"Déli-Georgia és Déli-Sandwich-szigetek","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong SAR Kína","HK-alt-short":"Hongkong","HM":"Heard-sziget és McDonald-szigetek","HN":"Honduras","HR":"Horvátország","HT":"Haiti","HU":"Magyarország","IC":"Kanári-szigetek","ID":"Indonézia","IE":"Írország","IL":"Izrael","IM":"Man-sziget","IN":"India","IO":"Brit Indiai-óceáni Terület","IQ":"Irak","IR":"Irán","IS":"Izland","IT":"Olaszország","JE":"Jersey","JM":"Jamaica","JO":"Jordánia","JP":"Japán","KE":"Kenya","KG":"Kirgizisztán","KH":"Kambodzsa","KI":"Kiribati","KM":"Comore-szigetek","KN":"Saint Kitts és Nevis","KP":"Észak-Korea","KR":"Dél-Korea","KW":"Kuvait","KY":"Kajmán-szigetek","KZ":"Kazahsztán","LA":"Laosz","LB":"Libanon","LC":"Santa Lucia","LI":"Liechtenstein","LK":"Srí Lanka","LR":"Libéria","LS":"Lesotho","LT":"Litvánia","LU":"Luxemburg","LV":"Lettország","LY":"Líbia","MA":"Marokkó","MC":"Monaco","MD":"Moldova","ME":"Montenegró","MF":"Saint Martin","MG":"Madagaszkár","MH":"Marshall-szigetek","MK":"Macedónia","MK-alt-variant":"Macedónia (MVJK)","ML":"Mali","MM":"Mianmar (Burma)","MN":"Mongólia","MO":"Makaó SAR Kína","MO-alt-short":"Makaó","MP":"Északi Mariana-szigetek","MQ":"Martinique","MR":"Mauritánia","MS":"Montserrat","MT":"Málta","MU":"Mauritius","MV":"Maldív-szigetek","MW":"Malawi","MX":"Mexikó","MY":"Malajzia","MZ":"Mozambik","NA":"Namíbia","NC":"Új-Kaledónia","NE":"Niger","NF":"Norfolk-sziget","NG":"Nigéria","NI":"Nicaragua","NL":"Hollandia","NO":"Norvégia","NP":"Nepál","NR":"Nauru","NU":"Niue","NZ":"Új-Zéland","OM":"Omán","PA":"Panama","PE":"Peru","PF":"Francia Polinézia","PG":"Pápua Új-Guinea","PH":"Fülöp-szigetek","PK":"Pakisztán","PL":"Lengyelország","PM":"Saint Pierre és Miquelon","PN":"Pitcairn-szigetek","PR":"Puerto Rico","PS":"Palesztin Terület","PS-alt-short":"Palesztina","PT":"Portugália","PW":"Palau","PY":"Paraguay","QA":"Katar","QO":"Külső-Óceánia","RE":"Reunion","RO":"Románia","RS":"Szerbia","RU":"Oroszország","RW":"Ruanda","SA":"Szaúd-Arábia","SB":"Salamon-szigetek","SC":"Seychelle-szigetek","SD":"Szudán","SE":"Svédország","SG":"Szingapúr","SH":"Szent Ilona","SI":"Szlovénia","SJ":"Spitzbergák és Jan Mayen-szigetek","SK":"Szlovákia","SL":"Sierra Leone","SM":"San Marino","SN":"Szenegál","SO":"Szomália","SR":"Suriname","SS":"Dél-Szudán","ST":"Sao Tomé és Príncipe","SV":"Salvador","SX":"Sint Maarten","SY":"Szíria","SZ":"Szváziföld","TA":"Tristan da Cunha","TC":"Turks- és Caicos-szigetek","TD":"Csád","TF":"Francia Déli Területek","TG":"Togo","TH":"Thaiföld","TJ":"Tádzsikisztán","TK":"Tokelau","TL":"Kelet-Timor","TL-alt-variant":"TL","TM":"Türkmenisztán","TN":"Tunézia","TO":"Tonga","TR":"Törökország","TT":"Trinidad és Tobago","TV":"Tuvalu","TW":"Tajvan","TZ":"Tanzánia","UA":"Ukrajna","UG":"Uganda","UM":"Amerikai Csendes-óceáni Szigetek","US":"Egyesült Államok","US-alt-short":"USA","UY":"Uruguay","UZ":"Üzbegisztán","VA":"Vatikán","VC":"Saint Vincent és a Grenadine-szigetek","VE":"Venezuela","VG":"Brit Virgin-szigetek","VI":"Amerikai Virgin-szigetek","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis- és Futuna-szigetek","WS":"Szamoa","XK":"Koszovó","YE":"Jemen","YT":"Mayotte","ZA":"Dél-afrikai Köztársaság","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Ismeretlen körzet"} \ No newline at end of file diff --git a/Punic/data/hu/timeZoneNames.json b/Punic/data/hu/timeZoneNames.json new file mode 100644 index 0000000..57610d8 --- /dev/null +++ b/Punic/data/hu/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s idő","regionFormat-type-standard":"%1$s zónaidő","regionFormat-type-daylight":"%1$s nyári idő","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Kajmán-szigetek"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curacao"},"Danmarkshavn":{"exemplarCity":"Danmarkshavn"},"Dawson":{"exemplarCity":"Dawson"},"Dawson_Creek":{"exemplarCity":"Dawson Creek"},"Denver":{"exemplarCity":"Denver"},"Detroit":{"exemplarCity":"Detroit"},"Dominica":{"exemplarCity":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepé"},"El_Salvador":{"exemplarCity":"Salvador"},"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":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinique"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexikóváros"},"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, Észak-Dakota"},"Center":{"exemplarCity":"Középső, Észak-Dakota"},"New_Salem":{"exemplarCity":"New Salem, Észak-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":"Río 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":"Azori-szigetek"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanári-szigetek"},"Cape_Verde":{"exemplarCity":"Zöld-Foki Szigetek"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavík"},"South_Georgia":{"exemplarCity":"Déli-Georgia"},"St_Helena":{"exemplarCity":"Szent Ilona"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amszterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athén"},"Belgrade":{"exemplarCity":"Belgrád"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Pozsony"},"Brussels":{"exemplarCity":"Brüsszel"},"Bucharest":{"exemplarCity":"Bukarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Koppenhága"},"Dublin":{"long":{"daylight":"ír nyári idő"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltár"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Man-sziget"},"Istanbul":{"exemplarCity":"Isztanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kalinyingrád"},"Kiev":{"exemplarCity":"Kijev"},"Lisbon":{"exemplarCity":"Lisszabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"brit nyári idő"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Málta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minszk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moszkva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Párizs"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prága"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Róma"},"Samara":{"exemplarCity":"Szamara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Szarajevó"},"Simferopol":{"exemplarCity":"Szimferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Szófia"},"Stockholm":{"exemplarCity":"Stockholm"},"Tallinn":{"exemplarCity":"Tallin"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Ungvár"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikán"},"Vienna":{"exemplarCity":"Bécs"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgográd"},"Warsaw":{"exemplarCity":"Varsó"},"Zagreb":{"exemplarCity":"Zágráb"},"Zaporozhye":{"exemplarCity":"Zaporozsje"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addisz-Abeba"},"Algiers":{"exemplarCity":"Algír"},"Asmera":{"exemplarCity":"Asmera"},"Bamako":{"exemplarCity":"Bamako"},"Bangui":{"exemplarCity":"Bangui"},"Banjul":{"exemplarCity":"Banjul"},"Bissau":{"exemplarCity":"Bissau"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzaville"},"Bujumbura":{"exemplarCity":"Bujumbura"},"Cairo":{"exemplarCity":"Kairó"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es-Salaam"},"Djibouti":{"exemplarCity":"Dzsibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El-Ajún"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Kartúm"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabó"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunisz"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Áden"},"Almaty":{"exemplarCity":"Alma-Ata"},"Amman":{"exemplarCity":"Ammán"},"Anadyr":{"exemplarCity":"Anadir"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktöbe"},"Ashgabat":{"exemplarCity":"Asgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrein"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Bejrút"},"Bishkek":{"exemplarCity":"Biskek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kalkutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Csojbalszan"},"Chongqing":{"exemplarCity":"Csungking"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaszkusz"},"Dhaka":{"exemplarCity":"Dháka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gáza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutszk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzsálem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamcsatka"},"Karachi":{"exemplarCity":"Karacsi"},"Kashgar":{"exemplarCity":"Kasgár"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Handiga"},"Krasnoyarsk":{"exemplarCity":"Krasznojarszk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kucseng"},"Kuwait":{"exemplarCity":"Kuvait"},"Macau":{"exemplarCity":"Makaó"},"Magadan":{"exemplarCity":"Magadán"},"Makassar":{"exemplarCity":"Makasar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznyeck"},"Novosibirsk":{"exemplarCity":"Novoszibirszk"},"Omsk":{"exemplarCity":"Omszk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Phenjan"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kizilorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Rijád"},"Saigon":{"exemplarCity":"Ho Si Minh-város"},"Sakhalin":{"exemplarCity":"Szahalin"},"Samarkand":{"exemplarCity":"Szamarkand"},"Seoul":{"exemplarCity":"Szöul"},"Shanghai":{"exemplarCity":"Sanghaj"},"Singapore":{"exemplarCity":"Szingapúr"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Tajpej"},"Tashkent":{"exemplarCity":"Taskent"},"Tbilisi":{"exemplarCity":"Tbiliszi"},"Tehran":{"exemplarCity":"Teherán"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokió"},"Ulaanbaatar":{"exemplarCity":"Ulánbátor"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Uszty-Nyera"},"Vientiane":{"exemplarCity":"Vientián"},"Vladivostok":{"exemplarCity":"Vlagyivosztok"},"Yakutsk":{"exemplarCity":"Jakutszk"},"Yekaterinburg":{"exemplarCity":"Jekatyerinburg"},"Yerevan":{"exemplarCity":"Jereván"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Karácsony-sziget"},"Cocos":{"exemplarCity":"Kókusz-sziget"},"Comoro":{"exemplarCity":"Komoró"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldív-szigetek"},"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"},"Chatham":{"exemplarCity":"Chatham-szigetek"},"Easter":{"exemplarCity":"Húsvét-szigetek"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidzsi"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapagos-szigetek"},"Gambier":{"exemplarCity":"Gambier-szigetek"},"Guadalcanal":{"exemplarCity":"Guadalcanal"},"Guam":{"exemplarCity":"Guam"},"Honolulu":{"exemplarCity":"Honolulu"},"Johnston":{"exemplarCity":"Johnston"},"Kiritimati":{"exemplarCity":"Kiritimati-sziget"},"Kosrae":{"exemplarCity":"Kosrae-szigetek"},"Kwajalein":{"exemplarCity":"Kwajalein-zátony"},"Majuro":{"exemplarCity":"Majuro-zátony"},"Marquesas":{"exemplarCity":"Marquesas-szigetek"},"Midway":{"exemplarCity":"Midway-szigetek"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Noumea"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palau"},"Pitcairn":{"exemplarCity":"Pitcairn-szigetek"},"Ponape":{"exemplarCity":"Ponape-szigetek"},"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-sziget"},"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":"Vosztok"}},"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":"Ismeretlen város"}}},"metazone":{"Acre":{"long":{"generic":"Acre idő","standard":"Acre zónaidő","daylight":"Acre nyári idő"}},"Afghanistan":{"long":{"standard":"afganisztáni idő"}},"Africa_Central":{"long":{"standard":"közép-afrikai téli idő"}},"Africa_Eastern":{"long":{"standard":"kelet-afrikai téli idő"}},"Africa_Southern":{"long":{"standard":"dél-afrikai téli idő"}},"Africa_Western":{"long":{"generic":"nyugat-afrikai időzóna","standard":"nyugat-afrikai téli idő","daylight":"nyugat-afrikai nyári idő"}},"Alaska":{"long":{"generic":"alaszkai idő","standard":"alaszkai zónaidő","daylight":"alaszkai nyári idő"}},"Almaty":{"long":{"generic":"Almati idő","standard":"Almati zónaidő","daylight":"Almati nyári idő"}},"Amazon":{"long":{"generic":"amazóniai idő","standard":"amazóniai téli idő","daylight":"amazóniai nyári idő"}},"America_Central":{"long":{"generic":"középső államokbeli idő","standard":"középső államokbeli zónaidő","daylight":"középső államokbeli nyári idő"}},"America_Eastern":{"long":{"generic":"keleti államokbeli idő","standard":"keleti államokbeli zónaidő","daylight":"keleti államokbeli nyári idő"}},"America_Mountain":{"long":{"generic":"hegyvidéki idő","standard":"hegyvidéki zónaidő","daylight":"hegyvidéki nyári idő"}},"America_Pacific":{"long":{"generic":"csendes-óceáni idő","standard":"csendes-óceáni zónaidő","daylight":"csendes-óceáni nyári idő"}},"Anadyr":{"long":{"generic":"Anadiri idő","standard":"Anadíri zónaidő","daylight":"Anadíri nyári idő"}},"Apia":{"long":{"generic":"apiai idő","standard":"apiai téli idő","daylight":"apiai nyári idő"}},"Aqtau":{"long":{"generic":"Aqtaui idő","standard":"Aqtaui zónaidő","daylight":"Aqtaui nyári idő"}},"Aqtobe":{"long":{"generic":"Aqtobei idő","standard":"Aqtobei zónaidő","daylight":"Aqtobei nyári idő"}},"Arabian":{"long":{"generic":"arab idő","standard":"arab téli idő","daylight":"arab nyári idő"}},"Argentina":{"long":{"generic":"argentínai idő","standard":"argentínai téli idő","daylight":"Argentínai nyári idő"}},"Argentina_Western":{"long":{"generic":"nyugat-argentínai időzóna","standard":"nyugat-argentínai téli idő","daylight":"nyugat-argentínai nyári idő"}},"Armenia":{"long":{"generic":"örményországi idő","standard":"örményországi téli idő","daylight":"örményországi nyári idő"}},"Atlantic":{"long":{"generic":"atlanti-óceáni idő","standard":"atlanti-óceáni zónaidő","daylight":"atlanti-óceáni nyári idő"}},"Australia_Central":{"long":{"generic":"közép-ausztráliai idő","standard":"közép-ausztráliai téli idő","daylight":"közép-ausztráliai nyári idő"}},"Australia_CentralWestern":{"long":{"generic":"közép-nyugat-ausztráliai idő","standard":"közép-nyugat-ausztráliai téli idő","daylight":"közép-nyugat-ausztráliai nyári idő"}},"Australia_Eastern":{"long":{"generic":"kelet-ausztráliai idő","standard":"kelet-ausztráliai téli idő","daylight":"kelet-ausztráliai nyári idő"}},"Australia_Western":{"long":{"generic":"nyugat-ausztráliai idő","standard":"nyugat-ausztráliai téli idő","daylight":"nyugat-ausztráliai nyári idő"}},"Azerbaijan":{"long":{"generic":"Azerbajdzsáni idő","standard":"azerbajdzsáni téli idő","daylight":"azerbajdzsáni nyári idő"}},"Azores":{"long":{"generic":"azori időzóna","standard":"azori téli idő","daylight":"azori nyári idő"}},"Bangladesh":{"long":{"generic":"bangladesi idő","standard":"bangladesi téli idő","daylight":"bangladesi nyári idő"}},"Bhutan":{"long":{"standard":"butáni idő"}},"Bolivia":{"long":{"standard":"bolíviai téli idő"}},"Brasilia":{"long":{"generic":"brazíliai idő","standard":"brazíliai téli idő","daylight":"brazíliai nyári idő"}},"Brunei":{"long":{"standard":"Brunei Darussalam-i idő"}},"Cape_Verde":{"long":{"generic":"zöld-foki-szigeteki időzóna","standard":"zöld-foki-szigeteki téli idő","daylight":"zöld-foki-szigeteki nyári idő"}},"Chamorro":{"long":{"standard":"chamorrói téli idő"}},"Chatham":{"long":{"generic":"chathami idő","standard":"chathami téli idő","daylight":"chathami nyári idő"}},"Chile":{"long":{"generic":"chilei időzóna","standard":"chilei téli idő","daylight":"chilei nyári idő"}},"China":{"long":{"generic":"kínai idő","standard":"kínai téli idő","daylight":"kínai nyári idő"}},"Choibalsan":{"long":{"generic":"csojbalszani idő","standard":"csojbalszani téli idő","daylight":"csojbalszani nyári idő"}},"Christmas":{"long":{"standard":"karácsony-szigeti téli idő"}},"Cocos":{"long":{"standard":"kókusz-szigeteki téli idő"}},"Colombia":{"long":{"generic":"kolumbiai idő","standard":"kolumbiai téli idő","daylight":"kolumbiai nyári idő"}},"Cook":{"long":{"generic":"cook-szigeteki idő","standard":"cook-szigeteki téli idő","daylight":"cook-szigeteki fél nyári idő"}},"Cuba":{"long":{"generic":"kubai időzóna","standard":"kubai téli idő","daylight":"kubai nyári idő"}},"Davis":{"long":{"standard":"davisi idő"}},"DumontDUrville":{"long":{"standard":"dumont-d’Urville-i idő"}},"East_Timor":{"long":{"standard":"kelet-timori téli idő"}},"Easter":{"long":{"generic":"húsvét-szigeti időzóna","standard":"húsvét-szigeti téli idő","daylight":"húsvét-szigeti nyári idő"}},"Ecuador":{"long":{"standard":"ecuadori téli idő"}},"Europe_Central":{"long":{"generic":"közép-európai időzóna","standard":"közép-európai téli idő","daylight":"közép-európai nyári idő"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"kelet-európai időzóna","standard":"kelet-európai téli idő","daylight":"kelet-európai nyári idő"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"kalinyingrádi idő"}},"Europe_Western":{"long":{"generic":"nyugat-európai időzóna","standard":"nyugat-európai téli idő","daylight":"nyugat-európai nyári idő"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"falkland-szigeteki idő","standard":"falkland-szigeteki téli idő","daylight":"falkland-szigeteki nyári idő"}},"Fiji":{"long":{"generic":"fidzsi idő","standard":"fidzsi téli idő","daylight":"fidzsi nyári idő"}},"French_Guiana":{"long":{"standard":"francia-guianai idő"}},"French_Southern":{"long":{"standard":"francia déli és antarktiszi idő"}},"GMT":{"long":{"standard":"greenwichi középidő, téli idő"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"galápagosi téli idő"}},"Gambier":{"long":{"standard":"gambieri idő"}},"Georgia":{"long":{"generic":"grúziai idő","standard":"grúziai téli idő","daylight":"grúziai nyári idő"}},"Gilbert_Islands":{"long":{"standard":"gilbert-szigeteki idő"}},"Greenland_Eastern":{"long":{"generic":"kelet-grönlandi időzóna","standard":"kelet-grönlandi téli idő","daylight":"kelet-grönlandi nyári idő"}},"Greenland_Western":{"long":{"generic":"nyugat-grönlandi időzóna","standard":"nyugat-grönlandi téli idő","daylight":"nyugat-grönlandi nyári idő"}},"Guam":{"long":{"standard":"Guami zónaidő"}},"Gulf":{"long":{"standard":"öbölbeli téli idő"}},"Guyana":{"long":{"standard":"guyanai téli idő"}},"Hawaii_Aleutian":{"long":{"generic":"hawaii-aleut időzóna","standard":"hawaii-aleuti téli idő","daylight":"hawaii-aleuti nyári idő"}},"Hong_Kong":{"long":{"generic":"hongkongi időzóna","standard":"hongkongi téli idő","daylight":"hongkongi nyári idő"}},"Hovd":{"long":{"generic":"hovdi idő","standard":"hovdi téli idő","daylight":"hovdi nyári idő"}},"India":{"long":{"standard":"indiai téli idő"}},"Indian_Ocean":{"long":{"standard":"indiai-óceáni idő"}},"Indochina":{"long":{"standard":"indokínai idő"}},"Indonesia_Central":{"long":{"standard":"közép-indonéziai idő"}},"Indonesia_Eastern":{"long":{"standard":"kelet-indonéziai idő"}},"Indonesia_Western":{"long":{"standard":"nyugat-indonéziai téli idő"}},"Iran":{"long":{"generic":"iráni idő","standard":"iráni téli idő","daylight":"iráni nyári idő"}},"Irkutsk":{"long":{"generic":"irkutszki idő","standard":"irkutszki téli idő","daylight":"irkutszki nyári idő"}},"Israel":{"long":{"generic":"izraeli idő","standard":"izraeli téli idő","daylight":"izraeli nyári idő"}},"Japan":{"long":{"generic":"japán idő","standard":"japán téli idő","daylight":"japán nyári idő"}},"Kamchatka":{"long":{"generic":"Petropavlovszk-kamcsatkai idő","standard":"Petropavlovszk-kamcsatkai zónaidő","daylight":"Petropavlovszk-kamcsatkai nyári idő"}},"Kazakhstan_Eastern":{"long":{"standard":"kelet-kazahsztáni idő"}},"Kazakhstan_Western":{"long":{"standard":"nyugat-kazahsztáni idő"}},"Korea":{"long":{"generic":"koreai idő","standard":"koreai téli idő","daylight":"koreai nyári idő"}},"Kosrae":{"long":{"standard":"kosraei idő"}},"Krasnoyarsk":{"long":{"generic":"krasznojarszki idő","standard":"krasznojarszki téli idő","daylight":"krasznojarszki nyári idő"}},"Kyrgystan":{"long":{"standard":"kirgizisztáni idő"}},"Lanka":{"long":{"standard":"Lankai idő"}},"Line_Islands":{"long":{"standard":"sor-szigeteki idő"}},"Lord_Howe":{"long":{"generic":"Lord Howe-szigeti idő","standard":"Lord Howe-szigeti téli idő","daylight":"Lord Howe-szigeti nyári idő"}},"Macau":{"long":{"generic":"Macaui idő","standard":"Macaui zónaidő","daylight":"Macaui nyári idő"}},"Macquarie":{"long":{"standard":"macquarie-szigeti téli idő"}},"Magadan":{"long":{"generic":"magadáni idő","standard":"magadani téli idő","daylight":"magadáni nyári idő"}},"Malaysia":{"long":{"standard":"malajziai idő"}},"Maldives":{"long":{"standard":"maldív-szigeteki idő"}},"Marquesas":{"long":{"standard":"marquises-szigeteki idő"}},"Marshall_Islands":{"long":{"standard":"marshall-szigeteki idő"}},"Mauritius":{"long":{"generic":"mauritiusi időzóna","standard":"mauritiusi téli idő","daylight":"mauritiusi nyári idő"}},"Mawson":{"long":{"standard":"mawsoni idő"}},"Mexico_Northwest":{"long":{"generic":"északnyugat-mexikói idő","standard":"északnyugat-mexikói zónaidő","daylight":"északnyugat-mexikói nyári idő"}},"Mexico_Pacific":{"long":{"generic":"mexikói csendes-óceáni idő","standard":"mexikói csendes-óceáni zónaidő","daylight":"mexikói csendes-óceáni nyári idő"}},"Mongolia":{"long":{"generic":"ulánbátori idő","standard":"ulánbátori téli idő","daylight":"ulánbátori nyári idő"}},"Moscow":{"long":{"generic":"moszkvai idő","standard":"moszkvai téli idő","daylight":"moszkvai nyári idő"}},"Myanmar":{"long":{"standard":"mianmari idő"}},"Nauru":{"long":{"standard":"naurui idő"}},"Nepal":{"long":{"standard":"nepáli idő"}},"New_Caledonia":{"long":{"generic":"új-kaledóniai idő","standard":"új-kaledóniai téli idő","daylight":"új-kaledóniai nyári idő"}},"New_Zealand":{"long":{"generic":"új-zélandi idő","standard":"új-zélandi téli idő","daylight":"új-zélandi nyári idő"}},"Newfoundland":{"long":{"generic":"új-fundlandi idő","standard":"új-fundlandi zónaidő","daylight":"új-fundlandi nyári idő"}},"Niue":{"long":{"standard":"niuei idő"}},"Norfolk":{"long":{"standard":"norfolk-szigeteki idő"}},"Noronha":{"long":{"generic":"Fernando de Noronha-i idő","standard":"Fernando de Noronha-i téli idő","daylight":"Fernando de Noronha-i nyári idő"}},"North_Mariana":{"long":{"standard":"Észak-mariana-szigeteki idő"}},"Novosibirsk":{"long":{"generic":"novoszibirszki idő","standard":"novoszibirszki téli idő","daylight":"novoszibirszki nyári idő"}},"Omsk":{"long":{"generic":"omszki idő","standard":"omszki téli idő","daylight":"omszki nyári idő"}},"Pakistan":{"long":{"generic":"pakisztáni idő","standard":"pakisztáni téli idő","daylight":"pakisztáni nyári idő"}},"Palau":{"long":{"standard":"palaui idő"}},"Papua_New_Guinea":{"long":{"standard":"pápua új-guineai idő"}},"Paraguay":{"long":{"generic":"paraguayi idő","standard":"paraguayi téli idő","daylight":"paraguayi nyári idő"}},"Peru":{"long":{"generic":"perui idő","standard":"perui téli idő","daylight":"perui nyári idő"}},"Philippines":{"long":{"generic":"fülöp-szigeteki idő","standard":"fülöp-szigeteki téli idő","daylight":"fülöp-szigeteki nyári idő"}},"Phoenix_Islands":{"long":{"standard":"phoenix-szigeteki téli idő"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre és Miquelon-i idő","standard":"Saint Pierre és Miquelon-i zónaidő","daylight":"Saint Pierre és Miquelon-i nyári idő"}},"Pitcairn":{"long":{"standard":"pitcairn-szigeteki idő"}},"Ponape":{"long":{"standard":"ponape-szigeti idő"}},"Qyzylorda":{"long":{"generic":"Qyzylordai idő","standard":"Qyzylordai zónaidő","daylight":"Qyzylordai nyári idő"}},"Reunion":{"long":{"standard":"réunioni idő"}},"Rothera":{"long":{"standard":"rotherai idő"}},"Sakhalin":{"long":{"generic":"szahalini idő","standard":"szahalini téli idő","daylight":"szahalini nyári idő"}},"Samara":{"long":{"generic":"Szamarai idő","standard":"Szamarai zónaidő","daylight":"Szamarai nyári idő"}},"Samoa":{"long":{"generic":"szamoai idő","standard":"szamoai téli idő","daylight":"szamoai nyári idő"}},"Seychelles":{"long":{"standard":"seychelle-szigeteki idő"}},"Singapore":{"long":{"standard":"szingapúri téli idő"}},"Solomon":{"long":{"standard":"salamon-szigeteki idő"}},"South_Georgia":{"long":{"standard":"déli-georgiai idő"}},"Suriname":{"long":{"standard":"szurinámi idő"}},"Syowa":{"long":{"standard":"syowai idő"}},"Tahiti":{"long":{"standard":"tahiti idő"}},"Taipei":{"long":{"generic":"taipei idő","standard":"taipei téli idő","daylight":"taipei nyári idő"}},"Tajikistan":{"long":{"standard":"tádzsikisztáni idő"}},"Tokelau":{"long":{"standard":"tokelaui idő"}},"Tonga":{"long":{"generic":"tongai idő","standard":"tongai téli idő","daylight":"tongai nyári idő"}},"Truk":{"long":{"standard":"truki idő"}},"Turkmenistan":{"long":{"generic":"türkmenisztáni idő","standard":"türkmenisztáni téli idő","daylight":"türkmenisztáni nyári idő"}},"Tuvalu":{"long":{"standard":"tuvalui idő"}},"Uruguay":{"long":{"generic":"uruguayi idő","standard":"uruguayi téli idő","daylight":"uruguayi nyári idő"}},"Uzbekistan":{"long":{"generic":"üzbegisztáni idő","standard":"üzbegisztáni téli idő","daylight":"üzbegisztáni nyári idő"}},"Vanuatu":{"long":{"generic":"vanuatui idő","standard":"vanuatui téli idő","daylight":"vanuatui nyári idő"}},"Venezuela":{"long":{"standard":"venezuelai idő"}},"Vladivostok":{"long":{"generic":"vlagyivosztoki idő","standard":"vlagyivosztoki téli idő","daylight":"vlagyivosztoki nyári idő"}},"Volgograd":{"long":{"generic":"volgográdi idő","standard":"volgográdi téli idő","daylight":"volgográdi nyári idő"}},"Vostok":{"long":{"standard":"vosztoki idő"}},"Wake":{"long":{"standard":"wake-szigeti idő"}},"Wallis":{"long":{"standard":"Wallis és Futuna-i idő"}},"Yakutsk":{"long":{"generic":"jakutszki idő","standard":"jakutszki téli idő","daylight":"Jakutszki nyári idő"}},"Yekaterinburg":{"long":{"generic":"Jekatyerinburgi idő","standard":"jekatyerinburgi téli idő","daylight":"Jekatyerinburgi nyári idő"}}}} \ No newline at end of file diff --git a/Punic/data/hu/units.json b/Punic/data/hu/units.json new file mode 100644 index 0000000..ea4ff5a --- /dev/null +++ b/Punic/data/hu/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"G gyorsulás","one":"%1$s G gyorsulás","other":"%1$s G gyorsulás"},"meter-per-second-squared":{"_name":"méter per másodpercnégyzet","one":"%1$s méter per másodpercnégyzet","other":"%1$s méter per másodpercnégyzet"}},"angle":{"arc-minute":{"_name":"ívperc","one":"%1$s ívperc","other":"%1$s ívperc"},"arc-second":{"_name":"ívmásodperc","one":"%1$s ívmásodperc","other":"%1$s ívmásodperc"},"degree":{"_name":"fok","one":"%1$s fok","other":"%1$s fok"},"radian":{"_name":"radián","one":"%1$s radián","other":"%1$s radián"}},"area":{"acre":{"_name":"hold","one":"%1$s hold","other":"%1$s hold"},"hectare":{"_name":"hektár","one":"%1$s hektár","other":"%1$s hektár"},"square-centimeter":{"_name":"négyzetcentiméter","one":"%1$s négyzetcentiméter","other":"%1$s négyzetcentiméter"},"square-foot":{"_name":"négyzetláb","one":"%1$s négyzetláb","other":"%1$s négyzetláb"},"square-inch":{"_name":"négyzethüvelyk","one":"%1$s négyzethüvelyk","other":"%1$s négyzethüvelyk"},"square-kilometer":{"_name":"négyzetkilométer","one":"%1$s négyzetkilométer","other":"%1$s négyzetkilométer"},"square-meter":{"_name":"négyzetméter","one":"%1$s négyzetméter","other":"%1$s négyzetméter"},"square-mile":{"_name":"négyzetmérföld","one":"%1$s négyzetmérföld","other":"%1$s négyzetmérföld"},"square-yard":{"_name":"négyzetyard","one":"%1$s négyzetyard","other":"%1$s négyzetyard"}},"consumption":{"liter-per-kilometer":{"_name":"liter per kilométer","one":"%1$s liter per kilométer","other":"%1$s liter per kilométer"},"mile-per-gallon":{"_name":"mérföld per gallon","one":"%1$s mérföld per gallon","other":"%1$s mérföld per gallon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bájt","one":"%1$s bájt","other":"%1$s bájt"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabájt","one":"%1$s gigabájt","other":"%1$s gigabájt"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobájt","one":"%1$s kilobájt","other":"%1$s kilobájt"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabájt","one":"%1$s megabájt","other":"%1$s megabájt"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabájt","one":"%1$s terabájt","other":"%1$s terabájt"}},"duration":{"day":{"_name":"nap","one":"%1$s nap","other":"%1$s nap"},"hour":{"_name":"óra","one":"%1$s óra","other":"%1$s óra","_per":"%1$s/óra"},"microsecond":{"_name":"mikroszekundum","one":"%1$s mikroszekundum","other":"%1$s mikroszekundum"},"millisecond":{"_name":"ezredmásodperc","one":"%1$s ezredmásodperc","other":"%1$s ezredmásodperc"},"minute":{"_name":"perc","one":"%1$s perc","other":"%1$s perc"},"month":{"_name":"hónap","one":"%1$s hónap","other":"%1$s hónap"},"nanosecond":{"_name":"nanoszekundum","one":"%1$s nanoszekundum","other":"%1$s nanoszekundum"},"second":{"_name":"másodperc","one":"%1$s másodperc","other":"%1$s másodperc","_per":"%1$s/másodperc"},"week":{"_name":"hét","one":"%1$s hét","other":"%1$s hét"},"year":{"_name":"év","one":"%1$s év","other":"%1$s év"}},"electric":{"ampere":{"_name":"amper","one":"%1$s amper","other":"%1$s amper"},"milliampere":{"_name":"milliamper","one":"%1$s milliamper","other":"%1$s milliamper"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"kalória","one":"%1$s kalória","other":"%1$s kalória"},"foodcalorie":{"_name":"kalória","one":"%1$s kalória","other":"%1$s kalória"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joule"},"kilocalorie":{"_name":"kilokalória","one":"%1$s kilokalória","other":"%1$s kilokalória"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoule"},"kilowatt-hour":{"_name":"kilowattóra","one":"%1$s kilowattóra","other":"%1$s kilowattóra"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"csillagászati egység","one":"%1$s csillagászati egység","other":"%1$s csillagászati egység"},"centimeter":{"_name":"centiméter","one":"%1$s centiméter","other":"%1$s centiméter"},"decimeter":{"_name":"deciméter","one":"%1$s deciméter","other":"%1$s deciméter"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"láb","one":"%1$s láb","other":"%1$s láb"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"hüvelyk","one":"%1$s hüvelyk","other":"%1$s hüvelyk"},"kilometer":{"_name":"kilométer","one":"%1$s kilométer","other":"%1$s kilométer"},"light-year":{"_name":"fényév","one":"%1$s fényév","other":"%1$s fényév"},"meter":{"_name":"méter","one":"%1$s méter","other":"%1$s méter"},"micrometer":{"_name":"mikrométer","one":"%1$s mikrométer","other":"%1$s mikrométer"},"mile":{"_name":"mérföld","one":"%1$s mérföld","other":"%1$s mérföld"},"millimeter":{"_name":"milliméter","one":"%1$s milliméter","other":"%1$s milliméter"},"nanometer":{"_name":"nanométer","one":"%1$s nanométer","other":"%1$s nanométer"},"nautical-mile":{"_name":"tengeri mérföld","one":"%1$s tengeri mérföld","other":"%1$s tengeri mérföld"},"parsec":{"_name":"parszek","one":"%1$s parszek","other":"%1$s parszek"},"picometer":{"_name":"pikométer","one":"%1$s pikométer","other":"%1$s pikométer"},"yard":{"_name":"yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karát","one":"%1$s karát","other":"%1$s karát"},"gram":{"_name":"gramm","one":"%1$s gramm","other":"%1$s gramm"},"kilogram":{"_name":"kilogramm","one":"%1$s kilogramm","other":"%1$s kilogramm"},"metric-ton":{"_name":"metrikus tonna","one":"%1$s metrikus tonna","other":"%1$s metrikus tonna"},"microgram":{"_name":"mikrogramm","one":"%1$s mikrogramm","other":"%1$s mikrogramm"},"milligram":{"_name":"milligramm","one":"%1$s milligramm","other":"%1$s milligramm"},"ounce":{"_name":"uncia","one":"%1$s uncia","other":"%1$s uncia"},"ounce-troy":{"_name":"troy uncia","one":"%1$s troy uncia","other":"%1$s troy uncia"},"pound":{"_name":"font","one":"%1$s font","other":"%1$s font"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tonna","one":"%1$s tonna","other":"%1$s tonna"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"lóerő","one":"%1$s lóerő","other":"%1$s lóerő"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"hektopascal","one":"%1$s hektopascal","other":"%1$s hektopascal"},"inch-hg":{"_name":"higanyhüvelyk","one":"%1$s higanyhüvelyk","other":"%1$s higanyhüvelyk"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s higanymilliméter","other":"%1$s higanymilliméter"},"pound-per-square-inch":{"_name":"font per négyzethüvelyk","one":"%1$s font per négyzethüvelyk","other":"%1$s font per négyzethüvelyk"}},"proportion":{"karat":{"_name":"karát","one":"%1$s karát","other":"%1$s karát"}},"speed":{"kilometer-per-hour":{"_name":"kilométer per óra","one":"%1$s kilométer per óra","other":"%1$s kilométer per óra"},"meter-per-second":{"_name":"méter per másodperc","one":"%1$s méter per másodperc","other":"%1$s méter per másodperc"},"mile-per-hour":{"_name":"mérföld per óra","one":"%1$s mérföld per óra","other":"%1$s mérföld per óra"}},"temperature":{"celsius":{"_name":"Celsius-fok","one":"%1$s Celsius-fok","other":"%1$s Celsius-fok"},"fahrenheit":{"_name":"Fahrenheit-fok","one":"%1$s Fahrenheit-fok","other":"%1$s Fahrenheit-fok"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"hold-láb","one":"%1$s hold-láb","other":"%1$s hold-láb"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centiliter","one":"%1$s centiliter","other":"%1$s centiliter"},"cubic-centimeter":{"_name":"köbcentiméter","one":"%1$s köbcentiméter","other":"%1$s köbcentiméter"},"cubic-foot":{"_name":"köbláb","one":"%1$s köbláb","other":"%1$s köbláb"},"cubic-inch":{"_name":"köbhüvelyk","one":"%1$s köbhüvelyk","other":"%1$s köbhüvelyk"},"cubic-kilometer":{"_name":"köbkilométer","one":"%1$s köbkilométer","other":"%1$s köbkilométer"},"cubic-meter":{"_name":"köbméter","one":"%1$s köbméter","other":"%1$s köbméter"},"cubic-mile":{"_name":"köbmérföld","one":"%1$s köbmérföld","other":"%1$s köbmérföld"},"cubic-yard":{"_name":"köbyard","one":"%1$s köbyard","other":"%1$s köbyard"},"cup":{"_name":"csésze","one":"%1$s csésze","other":"%1$s csésze"},"deciliter":{"_name":"deciliter","one":"%1$s deciliter","other":"%1$s deciliter"},"fluid-ounce":{"_name":"folyadékuncia","one":"%1$s folyadékuncia","other":"%1$s folyadékuncia"},"gallon":{"_name":"gallon","one":"%1$s gallon","other":"%1$s gallon"},"hectoliter":{"_name":"hektoliter","one":"%1$s hektoliter","other":"%1$s hektoliter"},"liter":{"_name":"liter","one":"%1$s liter","other":"%1$s liter"},"megaliter":{"_name":"megaliter","one":"%1$s megaliter","other":"%1$s megaliter"},"milliliter":{"_name":"milliliter","one":"%1$s milliliter","other":"%1$s milliliter"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"evőkanál","one":"%1$s evőkanál","other":"%1$s evőkanál"},"teaspoon":{"_name":"kávéskanál","one":"%1$s kávéskanál","other":"%1$s kávéskanál"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G gyorsulás","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"ívperc","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"ívmásodperc","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"fok","one":"%1$s fok","other":"%1$s fok"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"kh","one":"%1$s kh","other":"%1$s kh"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mf²","one":"%1$s mf²","other":"%1$s mf²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bájt","one":"%1$s bájt","other":"%1$s bájt"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"nap","one":"%1$s nap","other":"%1$s nap"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"hónap","one":"%1$s hónap","other":"%1$s hónap"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"hét","one":"%1$s hét","other":"%1$s hét"},"year":{"_name":"év","one":"%1$s év","other":"%1$s év"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"CsE","one":"%1$s CsE","other":"%1$s CsE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"láb","one":"%1$s láb","other":"%1$s láb"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"hüvelyk","one":"%1$s hüvelyk","other":"%1$s hüvelyk"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"fényév","one":"%1$s fényév","other":"%1$s fényév"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mf","one":"%1$s mf","other":"%1$s mf"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"Kt","one":"%1$s Kt","other":"%1$s Kt"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"LE","one":"%1$s LE","other":"%1$s LE"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mph","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cs.","one":"%1$s cs.","other":"%1$s cs."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ek.","one":"%1$s ek.","other":"%1$s ek."},"teaspoon":{"_name":"kk.","one":"%1$s kk.","other":"%1$s kk."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G gyorsulás","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"ívperc","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"ívmásodperc","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"fok","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"kh","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mf²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bájt","one":"%1$s bájt","other":"%1$s bájt"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"nap","one":"%1$s nap","other":"%1$s nap"},"hour":{"_name":"h","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"hónap","one":"%1$s h.","other":"%1$s h."},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"hét","one":"%1$s hét","other":"%1$s hét"},"year":{"_name":"év","one":"%1$s év","other":"%1$s év"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"CsE","one":"%1$s CsE","other":"%1$s CsE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"láb","one":"%1$s láb","other":"%1$s láb"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"hüvelyk","one":"%1$s hüvelyk","other":"%1$s hüvelyk"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"fényév","one":"%1$s fényév","other":"%1$s fényév"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mf","one":"%1$s mf","other":"%1$s mf"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"Kt","one":"%1$s Kt","other":"%1$s Kt"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s uncia","other":"%1$s uncia"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s font","other":"%1$s font"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"LE","one":"%1$s LE","other":"%1$s LE"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mph","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"cs.","one":"%1$s cs.","other":"%1$s cs."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ek.","one":"%1$s ek.","other":"%1$s ek."},"teaspoon":{"_name":"kk.","one":"%1$s kk.","other":"%1$s kk."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/it/calendar.json b/Punic/data/it/calendar.json new file mode 100644 index 0000000..d5f2d32 --- /dev/null +++ b/Punic/data/it/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"gen","2":"feb","3":"mar","4":"apr","5":"mag","6":"giu","7":"lug","8":"ago","9":"set","10":"ott","11":"nov","12":"dic"},"narrow":{"1":"G","2":"F","3":"M","4":"A","5":"M","6":"G","7":"L","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"gennaio","2":"febbraio","3":"marzo","4":"aprile","5":"maggio","6":"giugno","7":"luglio","8":"agosto","9":"settembre","10":"ottobre","11":"novembre","12":"dicembre"}},"stand-alone":{"abbreviated":{"1":"gen","2":"feb","3":"mar","4":"apr","5":"mag","6":"giu","7":"lug","8":"ago","9":"set","10":"ott","11":"nov","12":"dic"},"narrow":{"1":"G","2":"F","3":"M","4":"A","5":"M","6":"G","7":"L","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"Gennaio","2":"Febbraio","3":"Marzo","4":"Aprile","5":"Maggio","6":"Giugno","7":"Luglio","8":"Agosto","9":"Settembre","10":"Ottobre","11":"Novembre","12":"Dicembre"}}},"days":{"format":{"abbreviated":{"sun":"dom","mon":"lun","tue":"mar","wed":"mer","thu":"gio","fri":"ven","sat":"sab"},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"G","fri":"V","sat":"S"},"short":{"sun":"dom","mon":"lun","tue":"mar","wed":"mer","thu":"gio","fri":"ven","sat":"sab"},"wide":{"sun":"domenica","mon":"lunedì","tue":"martedì","wed":"mercoledì","thu":"giovedì","fri":"venerdì","sat":"sabato"}},"stand-alone":{"abbreviated":{"sun":"dom","mon":"lun","tue":"mar","wed":"mer","thu":"gio","fri":"ven","sat":"sab"},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"G","fri":"V","sat":"S"},"short":{"sun":"dom","mon":"lun","tue":"mar","wed":"mer","thu":"gio","fri":"ven","sat":"sab"},"wide":{"sun":"Domenica","mon":"Lunedì","tue":"Martedì","wed":"Mercoledì","thu":"Giovedì","fri":"Venerdì","sat":"Sabato"}}},"quarters":{"format":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1º trimestre","2":"2º trimestre","3":"3º trimestre","4":"4º trimestre"}},"stand-alone":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1º trimestre","2":"2º trimestre","3":"3º trimestre","4":"4º trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","noon":"mezzogiorno","pm":"PM"},"narrow":{"am":"m.","noon":"n","pm":"p."},"wide":{"am":"AM","noon":"mezzogiorno","pm":"PM"}},"stand-alone":{"abbreviated":{"am":"AM","noon":"mezzogiorno","pm":"PM"},"narrow":{"am":"m.","noon":"n","pm":"p."},"wide":{"am":"AM","noon":"mezzogiorno","pm":"PM"}}},"eras":{"wide":{"0":"a.C.","0-alt-variant":"BCE","1":"d.C.","1-alt-variant":"CE"},"abbreviated":{"0":"aC","0-alt-variant":"BCE","1":"dC","1-alt-variant":"CE"},"narrow":{"0":"aC","0-alt-variant":"BCE","1":"dC","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"dd MMM 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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/it/dateFields.json b/Punic/data/it/dateFields.json new file mode 100644 index 0000000..2e85387 --- /dev/null +++ b/Punic/data/it/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Anno","relative-type--1":"anno scorso","relative-type-0":"quest’anno","relative-type-1":"anno prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} anno","relativeTimePattern-count-other":"tra {0} anni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} anno fa","relativeTimePattern-count-other":"{0} anni fa"}},"year-short":{"displayName":"anno","relative-type--1":"anno scorso","relative-type-0":"quest’anno","relative-type-1":"anno prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} anno","relativeTimePattern-count-other":"tra {0} anni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} anno fa","relativeTimePattern-count-other":"{0} anni fa"}},"year-narrow":{"displayName":"anno","relative-type--1":"anno scorso","relative-type-0":"quest’anno","relative-type-1":"anno prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} anno","relativeTimePattern-count-other":"tra {0} anni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} anno fa","relativeTimePattern-count-other":"{0} anni fa"}},"quarter":{"displayName":"Trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} trimestre","relativeTimePattern-count-other":"tra {0} trimestri"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} trimestre fa","relativeTimePattern-count-other":"{0} trimestri fa"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} trim.","relativeTimePattern-count-other":"tra {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} trim. fa","relativeTimePattern-count-other":"{0} trim. fa"}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} trim.","relativeTimePattern-count-other":"tra {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} trim. fa","relativeTimePattern-count-other":"{0} trim. fa"}},"month":{"displayName":"Mese","relative-type--1":"mese scorso","relative-type-0":"questo mese","relative-type-1":"mese prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} mese","relativeTimePattern-count-other":"tra {0} mesi"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mese fa","relativeTimePattern-count-other":"{0} mesi fa"}},"month-short":{"displayName":"mese","relative-type--1":"mese scorso","relative-type-0":"questo mese","relative-type-1":"mese prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} mese","relativeTimePattern-count-other":"tra {0} mesi"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mese fa","relativeTimePattern-count-other":"{0} mesi fa"}},"month-narrow":{"displayName":"mese","relative-type--1":"mese scorso","relative-type-0":"questo mese","relative-type-1":"mese prossimo","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} mese","relativeTimePattern-count-other":"tra {0} mesi"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mese fa","relativeTimePattern-count-other":"{0} mesi fa"}},"week":{"displayName":"Settimana","relative-type--1":"settimana scorsa","relative-type-0":"questa settimana","relative-type-1":"settimana prossima","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} settimana","relativeTimePattern-count-other":"tra {0} settimane"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} settimana fa","relativeTimePattern-count-other":"{0} settimane fa"}},"week-short":{"displayName":"sett.","relative-type--1":"settimana scorsa","relative-type-0":"questa settimana","relative-type-1":"settimana prossima","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} sett.","relativeTimePattern-count-other":"tra {0} sett."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sett. fa","relativeTimePattern-count-other":"{0} sett. fa"}},"week-narrow":{"displayName":"sett.","relative-type--1":"settimana scorsa","relative-type-0":"questa settimana","relative-type-1":"settimana prossima","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} sett.","relativeTimePattern-count-other":"tra {0} sett."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sett. fa","relativeTimePattern-count-other":"{0} sett. fa"}},"day":{"displayName":"Giorno","relative-type--1":"ieri","relative-type--2":"l’altro ieri","relative-type-0":"oggi","relative-type-1":"domani","relative-type-2":"dopodomani","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} giorno","relativeTimePattern-count-other":"tra {0} giorni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} giorno fa","relativeTimePattern-count-other":"{0} giorni fa"}},"day-short":{"displayName":"g","relative-type--1":"ieri","relative-type--2":"l’altro ieri","relative-type-0":"oggi","relative-type-1":"domani","relative-type-2":"dopodomani","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} g","relativeTimePattern-count-other":"tra {0} gg"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} g fa","relativeTimePattern-count-other":"{0} gg fa"}},"day-narrow":{"displayName":"g","relative-type--1":"ieri","relative-type--2":"l’altro ieri","relative-type-0":"oggi","relative-type-1":"domani","relative-type-2":"dopodomani","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} g","relativeTimePattern-count-other":"tra {0} gg"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} g fa","relativeTimePattern-count-other":"{0} gg fa"}},"weekday":{"displayName":"Giorno della settimana"},"sun":{"relative-type--1":"domenica scorsa","relative-type-0":"questa domenica","relative-type-1":"domenica prossima"},"sun-short":{"relative-type--1":"dom. scorsa","relative-type-0":"questa dom.","relative-type-1":"dom. prossima"},"sun-narrow":{"relative-type--1":"do scorsa","relative-type-0":"questa do","relative-type-1":"do prossima"},"mon":{"relative-type--1":"lunedì scorso","relative-type-0":"questo lunedì","relative-type-1":"lunedì prossimo"},"mon-short":{"relative-type--1":"lun. scorso","relative-type-0":"questo lun.","relative-type-1":"lun. prossimo"},"mon-narrow":{"relative-type--1":"lu scorso","relative-type-0":"questo lu","relative-type-1":"lu prossimo"},"tue":{"relative-type--1":"martedì scorso","relative-type-0":"questo martedì","relative-type-1":"martedì prossimo"},"tue-short":{"relative-type--1":"mar. scorso","relative-type-0":"questo mar.","relative-type-1":"mar. prossimo"},"tue-narrow":{"relative-type--1":"ma scorso","relative-type-0":"questo ma","relative-type-1":"ma prossimo"},"wed":{"relative-type--1":"mercoledì scorso","relative-type-0":"questo mercoledì","relative-type-1":"mercoledì prossimo"},"wed-short":{"relative-type--1":"mer. scorso","relative-type-0":"questo mer.","relative-type-1":"mer. prossimo"},"wed-narrow":{"relative-type--1":"me scorso","relative-type-0":"questo me","relative-type-1":"me prossimo"},"thu":{"relative-type--1":"giovedì scorso","relative-type-0":"questo giovedì","relative-type-1":"giovedì prossimo"},"thu-short":{"relative-type--1":"gio. scorso","relative-type-0":"questo gio.","relative-type-1":"gio. prossimo"},"thu-narrow":{"relative-type--1":"gi scorso","relative-type-0":"questo gi","relative-type-1":"gi prossimo"},"fri":{"relative-type--1":"venerdì scorso","relative-type-0":"questo venerdì","relative-type-1":"venerdì prossimo"},"fri-short":{"relative-type--1":"ven. scorso","relative-type-0":"questo ven.","relative-type-1":"ven. prossimo"},"fri-narrow":{"relative-type--1":"ve scorso","relative-type-0":"questo ve","relative-type-1":"ve prossimo"},"sat":{"relative-type--1":"sabato scorso","relative-type-0":"questo sabato","relative-type-1":"sabato prossimo"},"sat-short":{"relative-type--1":"sab. scorso","relative-type-0":"questo sab.","relative-type-1":"sab. prossimo"},"sat-narrow":{"relative-type--1":"sa scorso","relative-type-0":"questo sa","relative-type-1":"sa prossimo"},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Ora","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} ora","relativeTimePattern-count-other":"tra {0} ore"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ora fa","relativeTimePattern-count-other":"{0} ore fa"}},"hour-short":{"displayName":"h.","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} h.","relativeTimePattern-count-other":"tra {0} h."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} h. fa","relativeTimePattern-count-other":"{0} h. fa"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} h","relativeTimePattern-count-other":"tra {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} h fa","relativeTimePattern-count-other":"{0} h fa"}},"minute":{"displayName":"Minuto","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} minuto","relativeTimePattern-count-other":"tra {0} minuti"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minuto fa","relativeTimePattern-count-other":"{0} minuti fa"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} min.","relativeTimePattern-count-other":"tra {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. fa","relativeTimePattern-count-other":"{0} min. fa"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} min","relativeTimePattern-count-other":"tra {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min fa","relativeTimePattern-count-other":"{0} min fa"}},"second":{"displayName":"Secondo","relative-type-0":"ora","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} secondo","relativeTimePattern-count-other":"tra {0} secondi"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} secondo fa","relativeTimePattern-count-other":"{0} secondi fa"}},"second-short":{"displayName":"sec.","relative-type-0":"ora","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} sec.","relativeTimePattern-count-other":"tra {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. fa","relativeTimePattern-count-other":"{0} sec. fa"}},"second-narrow":{"displayName":"s","relative-type-0":"ora","relativeTime-type-future":{"relativeTimePattern-count-one":"tra {0} s","relativeTimePattern-count-other":"tra {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} s fa","relativeTimePattern-count-other":"{0} s fa"}},"zone":{"displayName":"Fuso orario"}} \ No newline at end of file diff --git a/Punic/data/it/languages.json b/Punic/data/it/languages.json new file mode 100644 index 0000000..cdf19ca --- /dev/null +++ b/Punic/data/it/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abcaso","ace":"accinese","ach":"acioli","ada":"adangme","ady":"adyghe","ae":"avestan","aeb":"arabo tunisino","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"accado","akz":"alabama","ale":"aleuto","aln":"albanese ghego","alt":"altai meridionale","am":"amarico","an":"aragonese","ang":"inglese antico","anp":"angika","ar":"arabo","ar-001":"arabo moderno standard","arc":"aramaico","arn":"araucano","aro":"araona","arp":"arapaho","arq":"arabo algerino","arw":"aruaco","ary":"arabo marocchino","arz":"arabo egiziano","as":"assamese","asa":"asu","ase":"lingua dei segni americana","ast":"asturiano","av":"avaro","avk":"kotava","awa":"awadhi","ay":"aymara","az":"azerbaigiano","az-alt-short":"azero","azb":"azero meridionale","ba":"baschiro","bal":"beluci","ban":"balinese","bar":"bavarese","bas":"basa","bax":"bamun","bbc":"batak toba","bbj":"ghomala","be":"bielorusso","bej":"begia","bem":"wemba","bew":"betawi","bez":"bena","bfd":"bafut","bfq":"badaga","bg":"bulgaro","bho":"bhojpuri","bi":"bislama","bik":"bicol","bin":"bini","bjn":"banjar","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengalese","bo":"tibetano","bpy":"bishnupriya","bqi":"bakhtiari","br":"bretone","bra":"braj","brh":"brahui","brx":"bodo","bs":"bosniaco","bss":"akoose","bua":"buriat","bug":"bugi","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalano","cad":"caddo","car":"caribico","cay":"cayuga","cch":"atsam","ce":"ceceno","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"ciagataico","chk":"chuukese","chm":"mari","chn":"gergo chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheyenne","ckb":"curdo sorani","co":"corso","cop":"copto","cps":"capiznon","cr":"cree","crh":"turco crimeo","cs":"ceco","csb":"kashubian","cu":"slavo della Chiesa","cv":"chuvash","cy":"gallese","da":"danese","dak":"dakota","dar":"dargwa","dav":"taita","de":"tedesco","de-AT":"tedesco austriaco","de-CH":"alto tedesco svizzero","del":"delaware","den":"slave","dgr":"dogrib","din":"dinca","dje":"zarma","doi":"dogri","dsb":"basso sorabo","dtp":"dusun centrale","dua":"duala","dum":"olandese medio","dv":"divehi","dyo":"jola-fony","dyu":"diula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"emiliano","egy":"egiziano antico","eka":"ekajuka","el":"greco","elx":"elamitico","en":"inglese","en-AU":"inglese australiano","en-CA":"inglese canadese","en-GB":"inglese britannico","en-GB-alt-short":"inglese (GB)","en-US":"inglese americano","en-US-alt-short":"inglese (USA)","enm":"inglese medio","eo":"esperanto","es":"spagnolo","es-419":"spagnolo latinoamericano","es-ES":"spagnolo europeo","es-MX":"spagnolo messicano","esu":"yupik centrale","et":"estone","eu":"basco","ewo":"ewondo","ext":"estremegno","fa":"persiano","fan":"fang","fat":"fanti","ff":"fulah","fi":"finlandese","fil":"filippino","fit":"finlandese del Tornedalen","fj":"figiano","fo":"faroese","fon":"fon","fr":"francese","fr-CA":"francese canadese","fr-CH":"francese svizzero","frc":"francese cajun","frm":"francese medio","fro":"francese antico","frp":"francoprovenzale","frr":"frisone settentrionale","frs":"frisone orientale","fur":"friulano","fy":"frisone occidentale","ga":"irlandese","gaa":"ga","gag":"gagauzo","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"dari zoroastriano","gd":"gaelico scozzese","gez":"geez","gil":"gilbertese","gl":"galiziano","glk":"gilaki","gmh":"tedesco medio alto","gn":"guaraní","goh":"tedesco antico alto","gom":"konkani goano","gon":"gondi","gor":"gorontalo","got":"gotico","grb":"gerbo","grc":"greco antico","gsw":"tedesco svizzero","gu":"gujarati","guc":"wayuu","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"hausa","hai":"haida","hak":"hakka","haw":"hawaiano","he":"ebraico","hi":"hindi","hif":"hindi figiano","hil":"hiligayna","hit":"hittite","hmn":"hmong","ho":"hiri motu","hr":"croato","hsb":"alto sorabo","hsn":"xiang","ht":"haitiano","hu":"ungherese","hup":"hupa","hy":"armeno","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesiano","ie":"interlingue","ig":"igbo","ii":"sichuan yi","ik":"inupiak","ilo":"ilocano","inh":"ingush","io":"ido","is":"islandese","it":"italiano","iu":"inuktitut","izh":"ingrico","ja":"giapponese","jam":"creolo giamaicano","jbo":"lojban","jgo":"ngamambo","jmc":"machame","jpr":"giudeo persiano","jrb":"giudeo arabo","jut":"jutlandico","jv":"giavanese","ka":"georgiano","kaa":"kara-kalpak","kab":"cabilo","kac":"kachin","kaj":"kai","kam":"kamba","kaw":"kawi","kbd":"kabardia","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"capoverdiano","ken":"ken","kfo":"koro","kg":"kongo","kgp":"kaingang","kha":"khasi","kho":"khotanese","khq":"koyra chiini","khw":"khowar","ki":"kikuyu","kiu":"kirmanjki","kj":"kuanyama","kk":"kazako","kkj":"kako","kl":"kalaallisut","kln":"kalenjin","km":"khmer","kmb":"kimbundu","kn":"kannada","ko":"coreano","koi":"permiaco","kok":"konkani","kos":"kosraean","kpe":"kpelle","kr":"kanuri","krc":"karachay-Balkar","kri":"kri","krj":"krj","krl":"careliano","kru":"kurukh","ks":"kashmiri","ksb":"shambala","ksf":"bafia","ksh":"coloniese","ku":"curdo","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"cornico","ky":"chirghiso","la":"latino","lad":"giudeo-spagnolo","lag":"langi","lah":"lahnda","lam":"lamba","lb":"lussemburghese","lez":"lezghian","lfn":"Lingua Franca Nova","lg":"ganda","li":"limburgese","lij":"ligure","liv":"livone","lkt":"lakota","lmo":"lombardo","ln":"lingala","lo":"lao","lol":"lolo bantu","loz":"lozi","lt":"lituano","ltg":"letgallo","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyia","lv":"lettone","lzh":"cinese classico","lzz":"laz","mad":"madurese","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masai","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"creolo mauriziano","mg":"malgascio","mga":"irlandese medio","mgh":"makhuwa-meetto","mgo":"meta’","mh":"marshallese","mi":"maori","mic":"micmac","min":"menangkabau","mk":"macedone","ml":"malayalam","mn":"mongolo","mnc":"manchu","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"mari occidentale","ms":"malese","mt":"maltese","mua":"mundang","mul":"multilingua","mus":"creek","mwl":"mirandese","mwr":"marwari","mwv":"mentawai","my":"birmano","mye":"myene","myv":"erzya","mzn":"mazandarani","na":"nauru","nan":"min nan","nap":"napoletano","naq":"nama","nb":"norvegese bokmål","nd":"ndebele del nord","nds":"basso tedesco","ne":"nepalese","new":"newari","ng":"ndonga","nia":"nias","niu":"niue","njo":"ao","nl":"olandese","nl-BE":"fiammingo","nmg":"kwasio","nn":"norvegese nynorsk","nnh":"ngiemboon","no":"norvegese","nog":"nogai","non":"norse antico","nov":"novial","nqo":"n’ko","nr":"ndebele del sud","nso":"sotho del nord","nus":"nuer","nv":"navajo","nwc":"newari classico","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"occitano","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossetico","osa":"osage","ota":"turco ottomano","pa":"punjabi","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palau","pcd":"piccardo","pdc":"tedesco della Pennsylvania","pdt":"pdt","peo":"persiano antico","pfl":"tedesco palatino","phn":"fenicio","pi":"pali","pl":"polacco","pms":"piemontese","pnt":"pontico","pon":"ponape","prg":"prussiano","pro":"provenzale antico","ps":"pashto","pt":"portoghese","pt-BR":"portoghese brasiliano","pt-PT":"portoghese europeo","qu":"quechua","quc":"k’iche’","qug":"quechua dell’altopiano del Chimborazo","raj":"rajasthani","rap":"rapanui","rar":"rarotonga","rgn":"romagnolo","rif":"tarifit","rm":"romancio","rn":"rundi","ro":"rumeno","ro-MD":"moldavo","rof":"rombo","rom":"romani","root":"root","rtm":"rotumano","ru":"russo","rue":"ruteno","rug":"roviana","rup":"arumeno","rw":"kinyarwanda","rwk":"rwa","sa":"sanscrito","sad":"sandawe","sah":"yakut","sam":"aramaico samaritano","saq":"samburu","sas":"sasak","sat":"santali","saz":"saurashtra","sba":"ngambay","sbp":"sangu","sc":"sardo","scn":"siciliano","sco":"scozzese","sd":"sindhi","sdc":"sassarese","se":"sami del nord","see":"seneca","seh":"sena","sei":"seri","sel":"selkup","ses":"koyraboro senni","sg":"sango","sga":"irlandese antico","sgs":"samogitico","sh":"serbo-croato","shi":"tashelhit","shn":"shan","shu":"chadian arabic","si":"singalese","sid":"sidamo","sk":"slovacco","sl":"sloveno","sli":"tedesco slesiano","sly":"selayar","sm":"samoano","sma":"sami del sud","smj":"sami di Lule","smn":"sami di Inari","sms":"sami skolt","sn":"shona","snk":"soninke","so":"somalo","sog":"sogdiano","sq":"albanese","sr":"serbo","srn":"sranan tongo","srr":"serer","ss":"swati","ssy":"saho","st":"sotho del sud","stq":"saterfriesisch","su":"sundanese","suk":"sukuma","sus":"susu","sux":"sumero","sv":"svedese","sw":"swahili","swb":"comoriano","swc":"congo swahili","syc":"siriaco classico","syr":"siriaco","szl":"slesiano","ta":"tamil","tcy":"tulu","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tagico","th":"thai","ti":"tigrino","tig":"tigre","tiv":"tiv","tk":"turcomanno","tkl":"tokelau","tkr":"tsakhur","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"taliscio","tmh":"tamashek","tn":"tswana","to":"tongano","tog":"nyasa del Tonga","tpi":"tok pisin","tr":"turco","tru":"turoyo","trv":"taroko","ts":"tsonga","tsd":"zaconico","tsi":"tsimshian","tt":"tataro","ttt":"tat islamico","tum":"tumbuka","tvl":"tuvalu","tw":"ci","twq":"tasawaq","ty":"taitiano","tyv":"tuvinian","tzm":"tamazight","udm":"udmurt","ug":"uiguro","uga":"ugaritico","uk":"ucraino","umb":"mbundu","und":"lingua imprecisata","ur":"urdu","uz":"usbeco","vai":"vai","ve":"venda","vec":"veneto","vep":"vepso","vi":"vietnamita","vls":"fiammingo occidentale","vmf":"vmf","vo":"volapük","vot":"voto","vro":"võro","vun":"vunjo","wa":"vallone","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wu","xal":"kalmyk","xh":"xhosa","xmf":"mengrelio","xog":"soga","yao":"yao (bantu)","yap":"yapese","yav":"yangben","ybb":"yemba","yi":"yiddish","yo":"yoruba","yrl":"nheengatu","yue":"cantonese","za":"zhuang","zap":"zapotec","zbl":"blissymbol","zea":"zelandese","zen":"zenaga","zgh":"tamazight del Marocco standard","zh":"cinese","zh-Hans":"cinese semplificato","zh-Hant":"cinese tradizionale","zu":"zulu","zun":"zuni","zxx":"nessun contenuto linguistico","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/it/listPatterns.json b/Punic/data/it/listPatterns.json new file mode 100644 index 0000000..ee49ee6 --- /dev/null +++ b/Punic/data/it/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"}} \ No newline at end of file diff --git a/Punic/data/it/localeDisplayNames.json b/Punic/data/it/localeDisplayNames.json new file mode 100644 index 0000000..a27bf94 --- /dev/null +++ b/Punic/data/it/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendario","colAlternate":"Ordinamento Ignora simboli","colBackwards":"Ordinamento Accento capovolto","colCaseFirst":"Ordinamento Maiuscole/Minuscole","colCaseLevel":"Ordinamento Distinzione fra maiuscole e minuscole","colHiraganaQuaternary":"Ordinamento Kana","colNormalization":"Ordinamento normalizzato","colNumeric":"Ordinamento numerico","colStrength":"Sicurezza ordinamento","collation":"Ordinamento","currency":"Valuta","numbers":"Numeri","timezone":"Fuso orario","va":"Variante lingua","variableTop":"Ordina come simboli","x":"Uso privato"},"types":{"numbers":{"vaii":"Cifre Vai"},"collation":{"zhuyin":"Ordinamento Zhuyin"},"calendar":{"roc":"Calendario Minguo"},"colStrength":{"tertiary":"Ordina accenti/lettere/larghezza"},"colCaseFirst":{"upper":"Ordina prima lettere minuscole"},"colBackwards":{"yes":"Ordina accenti capovolti"},"colCaseLevel":{"yes":"Ordina distinzione tra maiuscole e minuscole"},"colHiraganaQuaternary":{"yes":"Ordina Kana diversamente"},"colNormalization":{"yes":"Ordina Unicode normalizzato"},"colNumeric":{"yes":"Ordina cifre numericamente"},"colAlternate":{"shifted":"Ordina ignorando i simboli"}},"codePatterns":{"language":"Lingua: %1$s","script":"Scrittura: %1$s","territory":"Regione: %1$s"}} \ No newline at end of file diff --git a/Punic/data/it/numbers.json b/Punic/data/it/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/it/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/it/territories.json b/Punic/data/it/territories.json new file mode 100644 index 0000000..9e8dc57 --- /dev/null +++ b/Punic/data/it/territories.json @@ -0,0 +1 @@ +{"001":"Mondo","002":"Africa","003":"Nord America","005":"America del Sud","009":"Oceania","011":"Africa occidentale","013":"America Centrale","014":"Africa orientale","015":"Africa del Nord","017":"Africa centrale","018":"Africa del Sud","019":"Americhe","021":"America del Nord","029":"Caraibi","030":"Asia orientale","034":"Asia del Sud","035":"Sud-est asiatico","039":"Europa meridionale","053":"Australasia","054":"Melanesia","057":"Regione Micronesiana","061":"Polinesia","142":"Asia","143":"Asia centrale","145":"Asia occidentale","150":"Europa","151":"Europa orientale","154":"Europa settentrionale","155":"Europa occidentale","419":"America Latina","AC":"Isola di Ascensione","AD":"Andorra","AE":"Emirati Arabi Uniti","AF":"Afghanistan","AG":"Antigua e Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Antille Olandesi","AO":"Angola","AQ":"Antartide","AR":"Argentina","AS":"Samoa Americane","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Isole Aland","AZ":"Azerbaigian","BA":"Bosnia-Erzegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgio","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrein","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caraibi Olandesi","BR":"Brasile","BS":"Bahamas","BT":"Bhutan","BV":"Isola Bouvet","BW":"Botswana","BY":"Bielorussia","BZ":"Belize","CA":"Canada","CC":"Isole Cocos","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (RDC)","CF":"Repubblica Centrafricana","CG":"Congo-Brazzaville","CG-alt-variant":"Congo (repubblica)","CH":"Svizzera","CI":"Costa d’Avorio","CI-alt-variant":"CI","CK":"Isole Cook","CL":"Cile","CM":"Camerun","CN":"Cina","CO":"Colombia","CP":"Isola di Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Capo Verde","CW":"Curaçao","CX":"Isola di Christmas","CY":"Cipro","CZ":"Repubblica Ceca","DE":"Germania","DG":"Diego Garcia","DJ":"Gibuti","DK":"Danimarca","DM":"Dominica","DO":"Repubblica Dominicana","DZ":"Algeria","EA":"Ceuta e Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egitto","EH":"Sahara Occidentale","ER":"Eritrea","ES":"Spagna","ET":"Etiopia","EU":"Unione Europea","FI":"Finlandia","FJ":"Figi","FK":"Isole Falkland","FK-alt-variant":"Isole Falkland (isole Malvine)","FM":"Micronesia","FO":"Isole Faroe","FR":"Francia","GA":"Gabon","GB":"Regno Unito","GB-alt-short":"GB","GD":"Grenada","GE":"Georgia","GF":"Guiana Francese","GG":"Guernsey","GH":"Ghana","GI":"Gibilterra","GL":"Groenlandia","GM":"Gambia","GN":"Guinea","GP":"Guadalupa","GQ":"Guinea Equatoriale","GR":"Grecia","GS":"Georgia del Sud e isole Sandwich meridionali","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"RAS di Hong Kong","HK-alt-short":"Hong-Kong","HM":"Isole Heard ed Isole McDonald","HN":"Honduras","HR":"Croazia","HT":"Haiti","HU":"Ungheria","IC":"Isole Canarie","ID":"Indonesia","IE":"Irlanda","IL":"Israele","IM":"Isola di Man","IN":"India","IO":"Territorio Britannico dell’Oceano Indiano","IQ":"Iraq","IR":"Iran","IS":"Islanda","IT":"Italia","JE":"Jersey","JM":"Giamaica","JO":"Giordania","JP":"Giappone","KE":"Kenya","KG":"Kirghizistan","KH":"Cambogia","KI":"Kiribati","KM":"Comore","KN":"Saint Kitts e Nevis","KP":"Corea del Nord","KR":"Corea del Sud","KW":"Kuwait","KY":"Isole Cayman","KZ":"Kazakistan","LA":"Laos","LB":"Libano","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lituania","LU":"Lussemburgo","LV":"Lettonia","LY":"Libia","MA":"Marocco","MC":"Monaco","MD":"Moldavia","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Isole Marshall","MK":"Repubblica di Macedonia","MK-alt-variant":"Repubblica ex Jugoslava di Macedonia","ML":"Mali","MM":"Myanmar (Birmania)","MN":"Mongolia","MO":"RAS di Macao","MO-alt-short":"Macao","MP":"Isole Marianne Settentrionali","MQ":"Martinica","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldive","MW":"Malawi","MX":"Messico","MY":"Malesia","MZ":"Mozambico","NA":"Namibia","NC":"Nuova Caledonia","NE":"Niger","NF":"Isola Norfolk","NG":"Nigeria","NI":"Nicaragua","NL":"Paesi Bassi","NO":"Norvegia","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nuova Zelanda","OM":"Oman","PA":"Panamá","PE":"Perù","PF":"Polinesia Francese","PG":"Papua Nuova Guinea","PH":"Filippine","PK":"Pakistan","PL":"Polonia","PM":"Saint Pierre e Miquelon","PN":"Isole Pitcairn","PR":"Portorico","PS":"Territori palestinesi","PS-alt-short":"Palestina","PT":"Portogallo","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Oceania lontana","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Federazione Russa","RW":"Ruanda","SA":"Arabia Saudita","SB":"Isole Solomon","SC":"Seychelles","SD":"Sudan","SE":"Svezia","SG":"Singapore","SH":"Sant’Elena","SI":"Slovenia","SJ":"Svalbard e Jan Mayen","SK":"Slovacchia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"Sudan del Sud","ST":"São Tomé e Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Siria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Isole Turks e Caicos","TD":"Ciad","TF":"Territori australi francesi","TG":"Togo","TH":"Tailandia","TJ":"Tagikistan","TK":"Tokelau","TL":"Timor Est","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turchia","TT":"Trinidad e Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ucraina","UG":"Uganda","UM":"Isole minori lontane dagli USA","US":"Stati Uniti","US-alt-short":"USA","UY":"Uruguay","UZ":"Uzbekistan","VA":"Città del Vaticano","VC":"Saint Vincent e Grenadines","VE":"Venezuela","VG":"Isole Vergini Britanniche","VI":"Isole Vergini Americane","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis e Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"Sudafrica","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Regione non valida o sconosciuta"} \ No newline at end of file diff --git a/Punic/data/it/timeZoneNames.json b/Punic/data/it/timeZoneNames.json new file mode 100644 index 0000000..bbdcb1b --- /dev/null +++ b/Punic/data/it/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Ora %1$s","regionFormat-type-standard":"Ora standard: %1$s","regionFormat-type-daylight":"Ora legale: %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Fuso orario Alaska"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahía de 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":"Caienna"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Guadalupa"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Guyana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"L’Avana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Giamaica"},"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":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Città del Messico"},"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, Dakota del nord"},"Center":{"exemplarCity":"Center, Dakota del nord"},"New_Salem":{"exemplarCity":"New Salem, Dakota del nord"}},"Ojinaga":{"exemplarCity":"Ojinaga"},"Panama":{"exemplarCity":"Panamá"},"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":"Portorico"},"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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"San Paolo"},"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":"Santa Lucia"},"St_Thomas":{"exemplarCity":"Saint Thomas"},"St_Vincent":{"exemplarCity":"Saint 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":"Azzorre"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canarie"},"Cape_Verde":{"exemplarCity":"Capo Verde"},"Faeroe":{"exemplarCity":"Isole Faeroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavík"},"South_Georgia":{"exemplarCity":"Georgia del Sud"},"St_Helena":{"exemplarCity":"Sant’Elena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atene"},"Belgrade":{"exemplarCity":"Belgrado"},"Berlin":{"exemplarCity":"Berlino"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelles"},"Bucharest":{"exemplarCity":"Bucarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenaghen"},"Dublin":{"long":{"daylight":"Ora legale Irlanda"},"exemplarCity":"Dublino"},"Gibraltar":{"exemplarCity":"Gibilterra"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Isola di Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisbona"},"Ljubljana":{"exemplarCity":"Lubiana"},"London":{"long":{"daylight":"Ora legale Regno Unito"},"exemplarCity":"Londra"},"Luxembourg":{"exemplarCity":"Lussemburgo"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Mosca"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Parigi"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Sinferopoli"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Stoccolma"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Užhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Città del Vaticano"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varsavia"},"Zagreb":{"exemplarCity":"Zagabria"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurigo"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Algeri"},"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":"Il Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Gibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Ayun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Giuba"},"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":"Mogadiscio"},"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":"Tripoli"},"Tunis":{"exemplarCity":"Tunisi"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr’"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrein"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasco"},"Dhaka":{"exemplarCity":"Dacca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Giacarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Gerusalemme"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"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":"Mascate"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuzneck"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyad"},"Saigon":{"exemplarCity":"Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarcanda"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust’-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Ekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Natale"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comore"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldive"},"Mauritius":{"exemplarCity":"Mauritius"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"La Riunione"}},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Pasqua"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Figi"},"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":"Marchesi"},"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":"Vostok"}},"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":"Città sconosciuta"}}},"metazone":{"Afghanistan":{"long":{"standard":"Ora dell’Afghanistan"}},"Africa_Central":{"long":{"standard":"Ora dell’Africa centrale"}},"Africa_Eastern":{"long":{"standard":"Ora dell’Africa orientale"}},"Africa_Southern":{"long":{"standard":"Ora dell’Africa meridionale"}},"Africa_Western":{"long":{"generic":"Ora dell’Africa occidentale","standard":"Ora standard dell’Africa occidentale","daylight":"Ora legale dell’Africa occidentale"}},"Alaska":{"long":{"generic":"Ora dell’Alaska","standard":"Ora standard Alaska","daylight":"Ora legale Alaska"}},"Amazon":{"long":{"generic":"Ora dell’Amazzonia","standard":"Ora standard dell’Amazzonia","daylight":"Ora legale dell’Amazzonia"}},"America_Central":{"long":{"generic":"Ora centrale USA","standard":"Ora standard centrale USA","daylight":"Ora legale centrale USA"}},"America_Eastern":{"long":{"generic":"Ora orientale USA","standard":"Ora standard orientale USA","daylight":"Ora legale orientale USA"}},"America_Mountain":{"long":{"generic":"Ora Montagne Rocciose USA","standard":"Ora standard Montagne Rocciose USA","daylight":"Ora legale Montagne Rocciose USA"}},"America_Pacific":{"long":{"generic":"Ora del Pacifico USA","standard":"Ora standard del Pacifico USA","daylight":"Ora legale del Pacifico USA"}},"Anadyr":{"long":{"generic":"Ora di Anadyr","standard":"Ora standard di Anadyr","daylight":"Ora legale di Anadyr"}},"Apia":{"long":{"generic":"Ora di Apia","standard":"Ora standard di Apia","daylight":"Ora legale di Apia"}},"Arabian":{"long":{"generic":"Ora araba","standard":"Ora standard araba","daylight":"Ora legale araba"}},"Argentina":{"long":{"generic":"Ora dell’Argentina","standard":"Ora standard dell’Argentina","daylight":"Ora legale dell’Argentina"}},"Argentina_Western":{"long":{"generic":"Ora dell’Argentina occidentale","standard":"Ora standard dell’Argentina occidentale","daylight":"Ora legale dell’Argentina occidentale"}},"Armenia":{"long":{"generic":"Ora dell’Armenia","standard":"Ora standard dell’Armenia","daylight":"Ora legale dell’Armenia"}},"Atlantic":{"long":{"generic":"Ora dell’Atlantico","standard":"Ora standard dell’Atlantico","daylight":"Ora legale dell’Atlantico"}},"Australia_Central":{"long":{"generic":"Ora dell’Australia centrale","standard":"Ora standard dell’Australia centrale","daylight":"Ora legale dell’Australia centrale"}},"Australia_CentralWestern":{"long":{"generic":"Ora dell’Australia centroccidentale","standard":"Ora standard dell’Australia centroccidentale","daylight":"Ora legale dell’Australia centroccidentale"}},"Australia_Eastern":{"long":{"generic":"Ora dell’Australia orientale","standard":"Ora standard dell’Australia orientale","daylight":"Ora legale dell’Australia orientale"}},"Australia_Western":{"long":{"generic":"Ora dell’Australia occidentale","standard":"Ora standard dell’Australia occidentale","daylight":"Ora legale dell’Australia occidentale"}},"Azerbaijan":{"long":{"generic":"Ora dell’Azerbaigian","standard":"Ora standard dell’Azerbaigian","daylight":"Ora legale dell’Azerbaigian"}},"Azores":{"long":{"generic":"Ora delle Azzorre","standard":"Ora standard delle Azzorre","daylight":"Ora legale delle Azzorre"}},"Bangladesh":{"long":{"generic":"Ora del Bangladesh","standard":"Ora standard del Bangladesh","daylight":"Ora legale del Bangladesh"}},"Bhutan":{"long":{"standard":"Ora del Bhutan"}},"Bolivia":{"long":{"standard":"Ora della Bolivia"}},"Brasilia":{"long":{"generic":"Ora di Brasilia","standard":"Ora standard di Brasilia","daylight":"Ora legale di Brasilia"}},"Brunei":{"long":{"standard":"Ora del Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Ora di Capo Verde","standard":"Ora standard di Capo Verde","daylight":"Ora legale di Capo Verde"}},"Chamorro":{"long":{"standard":"Ora Chamorro"}},"Chatham":{"long":{"generic":"Ora delle Chatham","standard":"Ora standard delle Chatham","daylight":"Ora legale delle Chatham"}},"Chile":{"long":{"generic":"Ora del Cile","standard":"Ora standard del Cile","daylight":"Ora legale del Cile"}},"China":{"long":{"generic":"Ora della Cina","standard":"Ora standard della Cina","daylight":"Ora legale della Cina"}},"Choibalsan":{"long":{"generic":"Ora di Choibalsan","standard":"Ora standard di Choibalsan","daylight":"Ora legale di Choibalsan"}},"Christmas":{"long":{"standard":"Ora dell’Isola di Natale"}},"Cocos":{"long":{"standard":"Ora delle Isole Cocos"}},"Colombia":{"long":{"generic":"Ora della Colombia","standard":"Ora standard della Colombia","daylight":"Ora legale della Colombia"}},"Cook":{"long":{"generic":"Ora delle isole Cook","standard":"Ora standard delle isole Cook","daylight":"Ora legale media delle isole Cook"}},"Cuba":{"long":{"generic":"Ora di Cuba","standard":"Ora standard di Cuba","daylight":"Ora legale di Cuba"}},"Davis":{"long":{"standard":"Ora di Davis"}},"DumontDUrville":{"long":{"standard":"Ora di Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Ora di Timor Est"}},"Easter":{"long":{"generic":"Ora dell’Isola di Pasqua","standard":"Ora standard dell’Isola di Pasqua","daylight":"Ora legale dell’Isola di Pasqua"}},"Ecuador":{"long":{"standard":"Ora dell’Ecuador"}},"Europe_Central":{"long":{"generic":"Ora dell’Europa centrale","standard":"Ora standard dell’Europa centrale","daylight":"Ora legale dell’Europa centrale"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Ora dell’Europa orientale","standard":"Ora standard dell’Europa orientale","daylight":"Ora legale dell’Europa orientale"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Ora dell’Europa orientale (Kaliningrad)"}},"Europe_Western":{"long":{"generic":"Ora dell’Europa occidentale","standard":"Ora standard dell’Europa occidentale","daylight":"Ora legale dell’Europa occidentale"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Ora delle Isole Falkland","standard":"Ora standard delle Isole Falkland","daylight":"Ora legale delle Isole Falkland"}},"Fiji":{"long":{"generic":"Ora delle Figi","standard":"Ora standard delle Figi","daylight":"Ora legale delle Figi"}},"French_Guiana":{"long":{"standard":"Ora della Guiana francese"}},"French_Southern":{"long":{"standard":"Ora delle Terre australi e antartiche francesi"}},"GMT":{"long":{"standard":"Ora del meridiano di Greenwich"}},"Galapagos":{"long":{"standard":"Ora delle Galapagos"}},"Gambier":{"long":{"standard":"Ora di Gambier"}},"Georgia":{"long":{"generic":"Ora della Georgia","standard":"Ora standard della Georgia","daylight":"Ora legale della Georgia"}},"Gilbert_Islands":{"long":{"standard":"Ora delle isole Gilbert"}},"Greenland_Eastern":{"long":{"generic":"Ora della Groenlandia orientale","standard":"Ora standard della Groenlandia orientale","daylight":"Ora legale della Groenlandia orientale"}},"Greenland_Western":{"long":{"generic":"Ora della Groenlandia occidentale","standard":"Ora standard della Groenlandia occidentale","daylight":"Ora legale della Groenlandia occidentale"}},"Gulf":{"long":{"standard":"Ora del Golfo"}},"Guyana":{"long":{"standard":"Ora della Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"Ora delle isole Hawaii-Aleutine","standard":"Ora standard delle Isole Hawaii-Aleutine","daylight":"Ora legale delle Isole Hawaii-Aleutine"}},"Hong_Kong":{"long":{"generic":"Ora di Hong Kong","standard":"Ora standard di Hong Kong","daylight":"Ora legale di Hong Kong"}},"Hovd":{"long":{"generic":"Ora di Hovd","standard":"Ora standard di Hovd","daylight":"Ora legale di Hovd"}},"India":{"long":{"standard":"Ora standard dell’India"}},"Indian_Ocean":{"long":{"standard":"Ora dell’Oceano Indiano"}},"Indochina":{"long":{"standard":"Ora dell’Indocina"}},"Indonesia_Central":{"long":{"standard":"Ora dell’Indonesia centrale"}},"Indonesia_Eastern":{"long":{"standard":"Ora dell’Indonesia orientale"}},"Indonesia_Western":{"long":{"standard":"Ora dell’Indonesia occidentale"}},"Iran":{"long":{"generic":"Ora dell’Iran","standard":"Ora standard dell’Iran","daylight":"Ora legale dell’Iran"}},"Irkutsk":{"long":{"generic":"Ora di Irkutsk","standard":"Ora standard di Irkutsk","daylight":"Ora legale di Irkutsk"}},"Israel":{"long":{"generic":"Ora di Israele","standard":"Ora standard di Israele","daylight":"Ora legale di Israele"}},"Japan":{"long":{"generic":"Ora del Giappone","standard":"Ora standard del Giappone","daylight":"Ora legale del Giappone"}},"Kamchatka":{"long":{"generic":"Ora di Petropavlovsk-Kamchatski","standard":"Ora standard di Petropavlovsk-Kamchatski","daylight":"Ora legale di Petropavlovsk-Kamchatski"}},"Kazakhstan_Eastern":{"long":{"standard":"Ora del Kazakistan orientale"}},"Kazakhstan_Western":{"long":{"standard":"Ora del Kazakistan occidentale"}},"Korea":{"long":{"generic":"Ora coreana","standard":"Ora standard coreana","daylight":"Ora legale coreana"}},"Kosrae":{"long":{"standard":"Ora del Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Ora di Krasnoyarsk","standard":"Ora standard di Krasnoyarsk","daylight":"Ora legale di Krasnoyarsk"}},"Kyrgystan":{"long":{"standard":"Ora del Kirghizistan"}},"Line_Islands":{"long":{"standard":"Ora delle Sporadi equatoriali"}},"Lord_Howe":{"long":{"generic":"Ora di Lord Howe","standard":"Ora standard di Lord Howe","daylight":"Ora legale di Lord Howe"}},"Macquarie":{"long":{"standard":"Ora dell’Isola Macquarie"}},"Magadan":{"long":{"generic":"Ora di Magadan","standard":"Ora standard di Magadan","daylight":"Ora legale di Magadan"}},"Malaysia":{"long":{"standard":"Ora della Malesia"}},"Maldives":{"long":{"standard":"Ora delle Maldive"}},"Marquesas":{"long":{"standard":"Ora delle Marchesi"}},"Marshall_Islands":{"long":{"standard":"Ora delle Isole Marshall"}},"Mauritius":{"long":{"generic":"Ora delle Mauritius","standard":"Ora standard delle Mauritius","daylight":"Ora legale delle Mauritius"}},"Mawson":{"long":{"standard":"Ora di Mawson"}},"Mexico_Northwest":{"long":{"generic":"Ora del Messico nord-occidentale","standard":"Ora standard del Messico nord-occidentale","daylight":"Ora legale del Messico nord-occidentale"}},"Mexico_Pacific":{"long":{"generic":"Ora del Pacifico (Messico)","standard":"Ora standard del Pacifico (Messico)","daylight":"Ora legale del Pacifico (Messico)"}},"Mongolia":{"long":{"generic":"Ora di Ulan Bator","standard":"Ora standard di Ulan Bator","daylight":"Ora legale di Ulan Bator"}},"Moscow":{"long":{"generic":"Ora di Mosca","standard":"Ora standard di Mosca","daylight":"Ora legale di Mosca"}},"Myanmar":{"long":{"standard":"Ora della Birmania"}},"Nauru":{"long":{"standard":"Ora di Nauru"}},"Nepal":{"long":{"standard":"Ora del Nepal"}},"New_Caledonia":{"long":{"generic":"Ora della Nuova Caledonia","standard":"Ora standard della Nuova Caledonia","daylight":"Ora legale della Nuova Caledonia"}},"New_Zealand":{"long":{"generic":"Ora della Nuova Zelanda","standard":"Ora standard della Nuova Zelanda","daylight":"Ora legale della Nuova Zelanda"}},"Newfoundland":{"long":{"generic":"Ora di Terranova","standard":"Ora standard di Terranova","daylight":"Ora legale di Terranova"}},"Niue":{"long":{"standard":"Ora di Niue"}},"Norfolk":{"long":{"standard":"Ora delle Isole Norfolk"}},"Noronha":{"long":{"generic":"Ora di Fernando de Noronha","standard":"Ora standard di Fernando de Noronha","daylight":"Ora legale di Fernando de Noronha"}},"Novosibirsk":{"long":{"generic":"Ora di Novosibirsk","standard":"Ora standard di Novosibirsk","daylight":"Ora legale di Novosibirsk"}},"Omsk":{"long":{"generic":"Ora di Omsk","standard":"Ora standard di Omsk","daylight":"Ora legale di Omsk"}},"Pakistan":{"long":{"generic":"Ora del Pakistan","standard":"Ora standard del Pakistan","daylight":"Ora legale del Pakistan"}},"Palau":{"long":{"standard":"Ora di Palau"}},"Papua_New_Guinea":{"long":{"standard":"Ora della Papua Nuova Guinea"}},"Paraguay":{"long":{"generic":"Ora del Paraguay","standard":"Ora standard del Paraguay","daylight":"Ora legale del Paraguay"}},"Peru":{"long":{"generic":"Ora del Perù","standard":"Ora standard del Perù","daylight":"Ora legale del Perù"}},"Philippines":{"long":{"generic":"Ora delle Filippine","standard":"Ora standard delle Filippine","daylight":"Ora legale delle Filippine"}},"Phoenix_Islands":{"long":{"standard":"Ora delle Isole della Fenice"}},"Pierre_Miquelon":{"long":{"generic":"Ora di Saint-Pierre e Miquelon","standard":"Ora standard di Saint-Pierre e Miquelon","daylight":"Ora legale di Saint-Pierre e Miquelon"}},"Pitcairn":{"long":{"standard":"Ora delle Pitcairn"}},"Ponape":{"long":{"standard":"Ora di Pohnpei"}},"Reunion":{"long":{"standard":"Ora di Riunione"}},"Rothera":{"long":{"standard":"Ora di Rothera"}},"Sakhalin":{"long":{"generic":"Ora di Sakhalin","standard":"Ora standard di Sakhalin","daylight":"Ora legale di Sakhalin"}},"Samara":{"long":{"generic":"Ora di Samara","standard":"Ora standard di Samara","daylight":"Ora legale di Samara"}},"Samoa":{"long":{"generic":"Ora di Samoa","standard":"Ora standard di Samoa","daylight":"Ora legale di Samoa"}},"Seychelles":{"long":{"standard":"Ora delle Seychelles"}},"Singapore":{"long":{"standard":"Ora Singapore"}},"Solomon":{"long":{"standard":"Ora delle Isole Salomone"}},"South_Georgia":{"long":{"standard":"Ora della Georgia del Sud"}},"Suriname":{"long":{"standard":"Ora del Suriname"}},"Syowa":{"long":{"standard":"Ora di Syowa"}},"Tahiti":{"long":{"standard":"Ora di Tahiti"}},"Taipei":{"long":{"generic":"Ora di Taipei","standard":"Ora standard di Taipei","daylight":"Ora legale di Taipei"}},"Tajikistan":{"long":{"standard":"Ora del Tagikistan"}},"Tokelau":{"long":{"standard":"Ora di Tokelau"}},"Tonga":{"long":{"generic":"Ora di Tonga","standard":"Ora standard di Tonga","daylight":"Ora legale di Tonga"}},"Truk":{"long":{"standard":"Ora del Chuuk"}},"Turkmenistan":{"long":{"generic":"Ora del Turkmenistan","standard":"Ora standard del Turkmenistan","daylight":"Ora legale del Turkmenistan"}},"Tuvalu":{"long":{"standard":"Ora di Tuvalu"}},"Uruguay":{"long":{"generic":"Ora dell’Uruguay","standard":"Ora standard dell’Uruguay","daylight":"Ora legale dell’Uruguay"}},"Uzbekistan":{"long":{"generic":"Ora dell’Uzbekistan","standard":"Ora standard dell’Uzbekistan","daylight":"Ora legale dell’Uzbekistan"}},"Vanuatu":{"long":{"generic":"Ora del Vanuatu","standard":"Ora standard del Vanuatu","daylight":"Ora legale del Vanuatu"}},"Venezuela":{"long":{"standard":"Ora del Venezuela"}},"Vladivostok":{"long":{"generic":"Ora di Vladivostok","standard":"Ora standard di Vladivostok","daylight":"Ora legale di Vladivostok"}},"Volgograd":{"long":{"generic":"Ora di Volgograd","standard":"Ora standard di Volgograd","daylight":"Ora legale di Volgograd"}},"Vostok":{"long":{"standard":"Ora di Vostok"}},"Wake":{"long":{"standard":"Ora dell’Isola di Wake"}},"Wallis":{"long":{"standard":"Ora di Wallis e Futuna"}},"Yakutsk":{"long":{"generic":"Ora di Yakutsk","standard":"Ora standard di Yakutsk","daylight":"Ora legale di Yakutsk"}},"Yekaterinburg":{"long":{"generic":"Ora di Ekaterinburg","standard":"Ora standard di Ekaterinburg","daylight":"Ora legale di Ekaterinburg"}}}} \ No newline at end of file diff --git a/Punic/data/it/units.json b/Punic/data/it/units.json new file mode 100644 index 0000000..f20184c --- /dev/null +++ b/Punic/data/it/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s al %2$s","acceleration":{"g-force":{"_name":"forza g","one":"%1$s forza g","other":"%1$s forza g"},"meter-per-second-squared":{"_name":"metri al secondo quadrato","one":"%1$s metro al secondo quadrato","other":"%1$s metri al secondo quadrato"}},"angle":{"arc-minute":{"_name":"primi d’arco","one":"%1$s primo d'arco","other":"%1$s primi d'arco"},"arc-second":{"_name":"secondi d’arco","one":"%1$s secondo d'arco","other":"%1$s secondi d'arco"},"degree":{"_name":"gradi","one":"%1$s grado","other":"%1$s gradi"},"radian":{"_name":"radianti","one":"%1$s radiante","other":"%1$s radianti"}},"area":{"acre":{"_name":"acri","one":"%1$s acro","other":"%1$s acri"},"hectare":{"_name":"ettari","one":"%1$s ettaro","other":"%1$s ettari"},"square-centimeter":{"_name":"centimetri quadrati","one":"%1$s centimetro quadrato","other":"%1$s centimetri quadrati"},"square-foot":{"_name":"piedi quadrati","one":"%1$s piede quadrato","other":"%1$s piedi quadrati"},"square-inch":{"_name":"pollici quadrati","one":"%1$s pollice quadrato","other":"%1$s pollici quadrati"},"square-kilometer":{"_name":"chilometri quadrati","one":"%1$s chilometro quadrato","other":"%1$s chilometri quadrati"},"square-meter":{"_name":"metri quadrati","one":"%1$s metro quadrato","other":"%1$s metri quadrati"},"square-mile":{"_name":"miglia quadrate","one":"%1$s miglio quadrato","other":"%1$s miglia quadrate"},"square-yard":{"_name":"iarde quadrate","one":"%1$s iarda quadrata","other":"%1$s iarde quadrate"}},"consumption":{"liter-per-kilometer":{"_name":"litri per chilometro","one":"%1$s litro per chilometro","other":"%1$s litri per chilometro"},"mile-per-gallon":{"_name":"miglia per gallone","one":"%1$s miglio per gallone","other":"%1$s miglia per gallone"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabyte","one":"%1$s gigabyte","other":"%1$s gigabyte"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobyte","one":"%1$s kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"giorni","one":"%1$s giorno","other":"%1$s giorni"},"hour":{"_name":"ore","one":"%1$s ora","other":"%1$s ore","_per":"%1$s/h"},"microsecond":{"_name":"microsecondi","one":"%1$s microsecondo","other":"%1$s microsecondi"},"millisecond":{"_name":"millisecondi","one":"%1$s millisecondo","other":"%1$s millisecondi"},"minute":{"_name":"minuti","one":"%1$s minuto","other":"%1$s minuti"},"month":{"_name":"mesi","one":"%1$s mese","other":"%1$s mesi"},"nanosecond":{"_name":"nanosecondi","one":"%1$s nanosecondo","other":"%1$s nanosecondi"},"second":{"_name":"secondi","one":"%1$s secondo","other":"%1$s secondi","_per":"%1$s/s"},"week":{"_name":"settimane","one":"%1$s settimana","other":"%1$s settimane"},"year":{"_name":"anni","one":"%1$s anno","other":"%1$s anni"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s ampere","other":"%1$s ampere"},"milliampere":{"_name":"milliampere","one":"%1$s milliampere","other":"%1$s milliampere"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"calorie","one":"%1$s caloria","other":"%1$s calorie"},"foodcalorie":{"_name":"Calorie","one":"%1$s caloria","other":"%1$s calorie"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joule"},"kilocalorie":{"_name":"chilocalorie","one":"%1$s chilocaloria","other":"%1$s chilocalorie"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoule"},"kilowatt-hour":{"_name":"chilowattora","one":"%1$s chilowattora","other":"%1$s chilowattora"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"unità astronomiche","one":"%1$s unità astronomica","other":"%1$s unità astronomiche"},"centimeter":{"_name":"centimetri","one":"%1$s centimetro","other":"%1$s centimetri"},"decimeter":{"_name":"decimetri","one":"%1$s decimetro","other":"%1$s decimetri"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"piedi","one":"%1$s piede","other":"%1$s piedi"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pollici","one":"%1$s pollice","other":"%1$s pollici"},"kilometer":{"_name":"chilometri","one":"%1$s chilometro","other":"%1$s chilometri"},"light-year":{"_name":"anni luce","one":"%1$s anno luce","other":"%1$s anni luce"},"meter":{"_name":"metri","one":"%1$s metro","other":"%1$s metri"},"micrometer":{"_name":"micrometri","one":"%1$s micrometro","other":"%1$s micrometri"},"mile":{"_name":"miglia","one":"%1$s miglio","other":"%1$s miglia"},"millimeter":{"_name":"millimetri","one":"%1$s millimetro","other":"%1$s millimetri"},"nanometer":{"_name":"nanometri","one":"%1$s nanometro","other":"%1$s nanometri"},"nautical-mile":{"_name":"miglia nautiche","one":"%1$s miglio nautico","other":"%1$s miglia nautiche"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsec"},"picometer":{"_name":"picometri","one":"%1$s picometro","other":"%1$s picometri"},"yard":{"_name":"iarde","one":"%1$s iarda","other":"%1$s iarde"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carati","one":"%1$s carato","other":"%1$s carati"},"gram":{"_name":"grammi","one":"%1$s grammo","other":"%1$s grammi"},"kilogram":{"_name":"chilogrammi","one":"%1$s chilogrammo","other":"%1$s chilogrammi"},"metric-ton":{"_name":"tonnellate metriche","one":"%1$s tonnellata metrica","other":"%1$s tonnellate metriche"},"microgram":{"_name":"microgrammi","one":"%1$s microgrammo","other":"%1$s microgrammi"},"milligram":{"_name":"milligrammi","one":"%1$s milligrammo","other":"%1$s milligrammi"},"ounce":{"_name":"once","one":"%1$s oncia","other":"%1$s once"},"ounce-troy":{"_name":"once troy","one":"%1$s oncia troy","other":"%1$s once troy"},"pound":{"_name":"libbre","one":"%1$s libbra","other":"%1$s libbre"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tonnellate","one":"%1$s tonnellata","other":"%1$s tonnellate"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"cavalli vapore","one":"%1$s cavallo vapore","other":"%1$s cavalli vapore"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"ettopascal","one":"%1$s ettopascal","other":"%1$s ettopascal"},"inch-hg":{"_name":"pollici di mercurio","one":"%1$s pollice di mercurio","other":"%1$s pollici di mercurio"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"millimetri di mercurio","one":"%1$s millimetro di mercurio","other":"%1$s millimetri di mercurio"},"pound-per-square-inch":{"_name":"libbre per pollice quadrato","one":"%1$s libbra per pollice quadrato","other":"%1$s libbre per pollice quadrato"}},"proportion":{"karat":{"_name":"carati","one":"%1$s carato","other":"%1$s carati"}},"speed":{"kilometer-per-hour":{"_name":"chilometri orari","one":"%1$s chilometro orario","other":"%1$s chilometri orari"},"meter-per-second":{"_name":"metri al secondo","one":"%1$s metro al secondo","other":"%1$s metri al secondo"},"mile-per-hour":{"_name":"miglia all’ora","one":"%1$s miglio all’ora","other":"%1$s miglia all’ora"}},"temperature":{"celsius":{"_name":"gradi Celsius","one":"%1$s grado Celsius","other":"%1$s gradi Celsius"},"fahrenheit":{"_name":"gradi Fahrenheit","one":"%1$s grado Fahrenheit","other":"%1$s gradi Fahrenheit"},"kelvin":{"_name":"Kelvin","one":"%1$s Kelvin","other":"%1$s Kelvin"}},"volume":{"acre-foot":{"_name":"acre-feet","one":"%1$s acre-foot","other":"%1$s acre-feet"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitri","one":"%1$s centilitro","other":"%1$s centilitri"},"cubic-centimeter":{"_name":"centimetri cubi","one":"%1$s centimetro cubo","other":"%1$s centimetri cubi"},"cubic-foot":{"_name":"piedi cubi","one":"%1$s piede cubo","other":"%1$s piedi cubi"},"cubic-inch":{"_name":"pollici cubi","one":"%1$s pollice cubo","other":"%1$s pollici cubi"},"cubic-kilometer":{"_name":"chilometri cubi","one":"%1$s chilometro cubo","other":"%1$s chilometri cubi"},"cubic-meter":{"_name":"metri cubi","one":"%1$s metro cubo","other":"%1$s metri cubi"},"cubic-mile":{"_name":"miglia cube","one":"%1$s miglio cubo","other":"%1$s miglia cube"},"cubic-yard":{"_name":"iarde cubiche","one":"%1$s iarda cubica","other":"%1$s iarde cubiche"},"cup":{"_name":"tazze","one":"%1$s tazza","other":"%1$s tazze"},"deciliter":{"_name":"decilitri","one":"%1$s decilitro","other":"%1$s decilitri"},"fluid-ounce":{"_name":"once fluide","one":"%1$s oncia fluida","other":"%1$s once fluide"},"gallon":{"_name":"galloni","one":"%1$s gallone","other":"%1$s galloni"},"hectoliter":{"_name":"ettolitri","one":"%1$s ettolitro","other":"%1$s ettolitri"},"liter":{"_name":"litri","one":"%1$s litro","other":"%1$s litri"},"megaliter":{"_name":"megalitri","one":"%1$s megalitro","other":"%1$s megalitri"},"milliliter":{"_name":"millilitri","one":"%1$s millilitro","other":"%1$s millilitri"},"pint":{"_name":"pinte","one":"%1$s pinta","other":"%1$s pinte"},"quart":{"_name":"quarti","one":"%1$s quarto","other":"%1$s quarti"},"tablespoon":{"_name":"cucchiai da tavola","one":"%1$s cucchiaio da tavola","other":"%1$s cucchiai da tavola"},"teaspoon":{"_name":"cucchiai da tè","one":"%1$s cucchiaio da tè","other":"%1$s cucchiai da tè"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"forza g","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acri","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ettari","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"piedi quadrati","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"giorni","one":"%1$s giorno","other":"%1$s giorni"},"hour":{"_name":"ore","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mesi","one":"%1$s mese","other":"%1$s mesi"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sec","one":"%1$s sec","other":"%1$s sec","_per":"%1$s/s"},"week":{"_name":"settimane","one":"%1$s settimana","other":"%1$s settimane"},"year":{"_name":"anni","one":"%1$s anno","other":"%1$s anni"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"piedi","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pollici","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anni luce","one":"%1$s al","other":"%1$s al"},"meter":{"_name":"metri","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miglia","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"iarde","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carati","one":"%1$s kt","other":"%1$s kt"},"gram":{"_name":"grammi","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ozt","one":"%1$s ozt","other":"%1$s ozt"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litri","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"forza g","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s min","other":"%1$s min"},"arc-second":{"_name":"″","one":"%1$s s","other":"%1$s s"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acri","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ettari","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"piedi quadrati","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"giorno","one":"%1$s gg","other":"%1$s gg"},"hour":{"_name":"ora","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s m","other":"%1$s m"},"month":{"_name":"mese","one":"%1$s mesi","other":"%1$s mesi"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sett.","one":"%1$s sett.","other":"%1$s sett."},"year":{"_name":"anno","one":"%1$s anno","other":"%1$s anni"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"piedi","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pollici","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"al","one":"%1$s al","other":"%1$s al"},"meter":{"_name":"metro","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"miglia","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"iarde","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carati","one":"%1$s kt","other":"%1$s kt"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"ozt","one":"%1$s ozt","other":"%1$s ozt"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/ja/calendar.json b/Punic/data/ja/calendar.json new file mode 100644 index 0000000..82438b6 --- /dev/null +++ b/Punic/data/ja/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"}},"stand-alone":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"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":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第1四半期","2":"第2四半期","3":"第3四半期","4":"第4四半期"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第1四半期","2":"第2四半期","3":"第3四半期","4":"第4四半期"}}},"dayPeriods":{"format":{"abbreviated":{"am":"午前","noon":"正午","pm":"午後"},"narrow":{"am":"午前","noon":"正午","pm":"午後"},"wide":{"am":"午前","noon":"正午","pm":"午後"}},"stand-alone":{"abbreviated":{"am":"午前","noon":"正午","pm":"午後"},"narrow":{"am":"午前","noon":"正午","pm":"午後"},"wide":{"am":"午前","noon":"正午","pm":"午後"}}},"eras":{"wide":{"0":"紀元前","0-alt-variant":"西暦紀元前","1":"西暦","1-alt-variant":"西暦紀元"},"abbreviated":{"0":"紀元前","0-alt-variant":"西暦紀元前","1":"西暦","1-alt-variant":"西暦紀元"},"narrow":{"0":"BC","0-alt-variant":"BCE","1":"AD","1-alt-variant":"CE"}},"dateFormats":{"full":"y年M月d日EEEE","long":"y年M月d日","medium":"y/MM/dd","short":"y/MM/dd"},"timeFormats":{"full":"H時mm分ss秒 zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/ja/dateFields.json b/Punic/data/ja/dateFields.json new file mode 100644 index 0000000..c023677 --- /dev/null +++ b/Punic/data/ja/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"時代"},"year":{"displayName":"年","relative-type--1":"昨年","relative-type-0":"今年","relative-type-1":"翌年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"year-short":{"displayName":"年","relative-type--1":"昨年","relative-type-0":"今年","relative-type-1":"翌年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"year-narrow":{"displayName":"年","relative-type--1":"昨年","relative-type-0":"今年","relative-type-1":"翌年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"quarter":{"displayName":"四半期","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 四半期後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 四半期前"}},"quarter-short":{"displayName":"四半期","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 四半期後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 四半期前"}},"quarter-narrow":{"displayName":"四半期","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 四半期後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 四半期前"}},"month":{"displayName":"月","relative-type--1":"先月","relative-type-0":"今月","relative-type-1":"翌月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} か月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} か月前"}},"month-short":{"displayName":"月","relative-type--1":"先月","relative-type-0":"今月","relative-type-1":"翌月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} か月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} か月前"}},"month-narrow":{"displayName":"月","relative-type--1":"先月","relative-type-0":"今月","relative-type-1":"翌月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} か月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} か月前"}},"week":{"displayName":"週","relative-type--1":"先週","relative-type-0":"今週","relative-type-1":"翌週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週間前"}},"week-short":{"displayName":"週","relative-type--1":"先週","relative-type-0":"今週","relative-type-1":"翌週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週間前"}},"week-narrow":{"displayName":"週","relative-type--1":"先週","relative-type-0":"今週","relative-type-1":"翌週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週間前"}},"day":{"displayName":"日","relative-type--1":"昨日","relative-type--2":"一昨日","relative-type-0":"今日","relative-type-1":"明日","relative-type-2":"明後日","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 日後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 日前"}},"day-short":{"displayName":"日","relative-type--1":"昨日","relative-type--2":"一昨日","relative-type-0":"今日","relative-type-1":"明日","relative-type-2":"明後日","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 日後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 日前"}},"day-narrow":{"displayName":"日","relative-type--1":"昨日","relative-type--2":"一昨日","relative-type-0":"今日","relative-type-1":"明日","relative-type-2":"明後日","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 日後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 日前"}},"weekday":{"displayName":"曜日"},"sun":{"relative-type--1":"先週の日曜日","relative-type-0":"今週の日曜日","relative-type-1":"来週の日曜日"},"sun-short":{"relative-type--1":"先週の日曜","relative-type-0":"今週の日曜","relative-type-1":"来週の日曜"},"sun-narrow":{"relative-type--1":"先週の日曜","relative-type-0":"今週の日曜","relative-type-1":"来週の日曜"},"mon":{"relative-type--1":"先週の月曜日","relative-type-0":"今週の月曜日","relative-type-1":"来週の月曜日"},"mon-short":{"relative-type--1":"先週の月曜","relative-type-0":"今週の月曜","relative-type-1":"来週の月曜"},"mon-narrow":{"relative-type--1":"先週の月曜","relative-type-0":"今週の月曜","relative-type-1":"来週の月曜"},"tue":{"relative-type--1":"先週の火曜日","relative-type-0":"今週の火曜日","relative-type-1":"来週の火曜日"},"tue-short":{"relative-type--1":"先週の火曜","relative-type-0":"今週の火曜","relative-type-1":"来週の火曜"},"tue-narrow":{"relative-type--1":"先週の火曜","relative-type-0":"今週の火曜","relative-type-1":"来週の火曜"},"wed":{"relative-type--1":"先週の水曜日","relative-type-0":"今週の水曜日","relative-type-1":"来週の水曜日"},"wed-short":{"relative-type--1":"先週の水曜","relative-type-0":"今週の水曜","relative-type-1":"来週の水曜"},"wed-narrow":{"relative-type--1":"先週の水曜","relative-type-0":"今週の水曜","relative-type-1":"来週の水曜"},"thu":{"relative-type--1":"先週の木曜日","relative-type-0":"今週の木曜日","relative-type-1":"来週の木曜日"},"thu-short":{"relative-type--1":"先週の木曜","relative-type-0":"今週の木曜","relative-type-1":"来週の木曜"},"thu-narrow":{"relative-type--1":"先週の木曜","relative-type-0":"今週の木曜","relative-type-1":"来週の木曜"},"fri":{"relative-type--1":"先週の金曜日","relative-type-0":"今週の金曜日","relative-type-1":"来週の金曜日"},"fri-short":{"relative-type--1":"先週の金曜","relative-type-0":"今週の金曜","relative-type-1":"来週の金曜"},"fri-narrow":{"relative-type--1":"先週の金曜","relative-type-0":"今週の金曜","relative-type-1":"来週の金曜"},"sat":{"relative-type--1":"先週の土曜日","relative-type-0":"今週の土曜日","relative-type-1":"来週の土曜日"},"sat-short":{"relative-type--1":"先週の土曜","relative-type-0":"今週の土曜","relative-type-1":"来週の土曜"},"sat-narrow":{"relative-type--1":"先週の土曜","relative-type-0":"今週の土曜","relative-type-1":"来週の土曜"},"dayperiod":{"displayName":"午前/午後"},"hour":{"displayName":"時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 時間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 時間前"}},"hour-short":{"displayName":"時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 時間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 時間前"}},"hour-narrow":{"displayName":"時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 時間後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 時間前"}},"minute":{"displayName":"分","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分前"}},"minute-short":{"displayName":"分","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分前"}},"minute-narrow":{"displayName":"分","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分前"}},"second":{"displayName":"秒","relative-type-0":"今すぐ","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"second-short":{"displayName":"秒","relative-type-0":"今すぐ","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"second-narrow":{"displayName":"秒","relative-type-0":"今すぐ","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"zone":{"displayName":"タイムゾーン"}} \ No newline at end of file diff --git a/Punic/data/ja/languages.json b/Punic/data/ja/languages.json new file mode 100644 index 0000000..19a7c59 --- /dev/null +++ b/Punic/data/ja/languages.json @@ -0,0 +1 @@ +{"aa":"アファル語","ab":"アブハズ語","ace":"アチェ語","ach":"アチョリ語","ada":"アダングメ語","ady":"アディゲ語","ae":"アヴェスタ語","aeb":"チュニジア・アラビア語","af":"アフリカーンス語","afh":"アフリヒリ語","agq":"アゲム語","ain":"アイヌ語","ak":"アカン語","akk":"アッカド語","akz":"アラバマ語","ale":"アレウト語","aln":"ゲグ・アルバニア語","alt":"南アルタイ語","am":"アムハラ語","an":"アラゴン語","ang":"古英語","anp":"アンギカ語","ar":"アラビア語","ar-001":"現代標準アラビア語","arc":"アラム語","arn":"アラウカン語","aro":"アラオナ語","arp":"アラパホー語","arq":"アルジェリア・アラビア語","arw":"アラワク語","ary":"モロッコ・アラビア語","arz":"エジプト・アラビア語","as":"アッサム語","asa":"アス語","ase":"アメリカ手話","ast":"アストゥリアス語","av":"アヴァル語","avk":"コタヴァ","awa":"アワディー語","ay":"アイマラ語","az":"アゼルバイジャン語","az-alt-short":"アゼリー語","azb":"南アゼルバイジャン語","ba":"バシキール語","bal":"バルーチー語","ban":"バリ語","bar":"バイエルン・オーストリア語","bas":"バサ語","bax":"バムン語","bbc":"トバ・バタク語","bbj":"ゴーマラ語","be":"ベラルーシ語","bej":"ベジャ語","bem":"ベンバ語","bew":"ベタウィ語","bez":"ベナ語","bfd":"バフット語","bfq":"バダガ語","bg":"ブルガリア語","bho":"ボージュプリー語","bi":"ビスラマ語","bik":"ビコル語","bin":"ビニ語","bjn":"バンジャル語","bkm":"コム語","bla":"シクシカ語","bm":"バンバラ語","bn":"ベンガル語","bo":"チベット語","bpy":"ビシュヌプリヤ・マニプリ語","bqi":"バフティヤーリー語","br":"ブルトン語","bra":"ブラジ語","brh":"ブラフイ語","brx":"ボド語","bs":"ボスニア語","bss":"アコース語","bua":"ブリヤート語","bug":"ブギ語","bum":"ブル語","byn":"ビリン語","byv":"メドゥンバ語","ca":"カタロニア語","cad":"カドー語","car":"カリブ語","cay":"カユーガ語","cch":"チャワイ語","ce":"チェチェン語","ceb":"セブアノ語","cgg":"チガ語","ch":"チャモロ語","chb":"チブチャ語","chg":"チャガタイ語","chk":"チューク語","chm":"マリ語","chn":"チヌーク混成語","cho":"チョクトー語","chp":"チペワイアン語","chr":"チェロキー語","chy":"シャイアン語","ckb":"クルド語(ソラニー)","co":"コルシカ語","cop":"コプト語","cps":"カピス語","cr":"クリー語","crh":"クリミア・タタール語","cs":"チェコ語","csb":"カシューブ語","cu":"教会スラブ語","cv":"チュヴァシ語","cy":"ウェールズ語","da":"デンマーク語","dak":"ダコタ語","dar":"ダルガン語","dav":"タイタ語","de":"ドイツ語","de-AT":"de_AT","de-CH":"標準ドイツ語(スイス)","del":"デラウェア語","den":"スレイビー語","dgr":"ドグリブ語","din":"ディンカ語","dje":"ザルマ語","doi":"ドーグリー語","dsb":"低ソルビア語","dtp":"中央ドゥスン語","dua":"ドゥアラ語","dum":"中世オランダ語","dv":"ディベヒ語","dyo":"ジョラ=フォニィ語","dyu":"ジュラ語","dz":"ゾンカ語","dzg":"ダザガ語","ebu":"エンブ語","ee":"エウェ語","efi":"エフィク語","egl":"エミリア語","egy":"古代エジプト語","eka":"エカジュク語","el":"ギリシャ語","elx":"エラム語","en":"英語","en-AU":"オーストラリア英語","en-CA":"カナダ英語","en-GB":"イギリス英語","en-GB-alt-short":"英語(英国)","en-US":"アメリカ英語","en-US-alt-short":"英語(米国)","enm":"中英語","eo":"エスペラント語","es":"スペイン語","es-419":"es_419","es-ES":"スペイン語(イベリア半島)","es-MX":"es_MX","esu":"中央アラスカ・ユピック語","et":"エストニア語","eu":"バスク語","ewo":"エウォンド語","ext":"エストレマドゥーラ語","fa":"ペルシア語","fan":"ファング語","fat":"ファンティー語","ff":"フラニ語","fi":"フィンランド語","fil":"フィリピノ語","fit":"トルネダール・フィンランド語","fj":"フィジー語","fo":"フェロー語","fon":"フォン語","fr":"フランス語","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"ケイジャン・フランス語","frm":"中期フランス語","fro":"古フランス語","frp":"アルピタン語","frr":"北フリジア語","frs":"東フリジア語","fur":"フリウリ語","fy":"西フリジア語","ga":"アイルランド語","gaa":"ガ語","gag":"ガガウズ語","gan":"贛語","gay":"ガヨ語","gba":"バヤ語","gbz":"ダリー語(ゾロアスター教)","gd":"スコットランド・ゲール語","gez":"ゲエズ語","gil":"キリバス語","gl":"ガリシア語","glk":"ギラキ語","gmh":"中高ドイツ語","gn":"グアラニー語","goh":"古高ドイツ語","gom":"ゴア・コンカニ語","gon":"ゴーンディー語","gor":"ゴロンタロ語","got":"ゴート語","grb":"グレボ語","grc":"古代ギリシャ語","gsw":"スイスドイツ語","gu":"グジャラート語","guc":"ワユ語","gur":"フラフラ語","guz":"グシイ語","gv":"マン島語","gwi":"グウィッチン語","ha":"ハウサ語","hai":"ハイダ語","hak":"客家語","haw":"ハワイ語","he":"ヘブライ語","hi":"ヒンディー語","hif":"フィジー・ヒンディー語","hil":"ヒリガイノン語","hit":"ヒッタイト語","hmn":"フモン語","ho":"ヒリモツ語","hr":"クロアチア語","hsb":"上ソルビア語","hsn":"湘語","ht":"ハイチ語","hu":"ハンガリー語","hup":"アタパスカ語","hy":"アルメニア語","hz":"ヘレロ語","ia":"インターリングア","iba":"イバン語","ibb":"イビビオ語","id":"インドネシア語","ie":"インターリング","ig":"イボ語","ii":"四川イ語","ik":"イヌピアック語","ilo":"イロカノ語","inh":"イングーシ語","io":"イド語","is":"アイスランド語","it":"イタリア語","iu":"イヌクウティトット語","izh":"イングリア語","ja":"日本語","jam":"ジャマイカ・クレオール語","jbo":"ロジバン語","jgo":"ンゴンバ語","jmc":"マチャメ語","jpr":"ユダヤ・ペルシア語","jrb":"ユダヤ・アラビア語","jut":"ユトランド語","jv":"ジャワ語","ka":"グルジア語","kaa":"カラカルパク語","kab":"カビル語","kac":"カチン語","kaj":"カジェ語","kam":"カンバ語","kaw":"カウィ語","kbd":"カバルド語","kbl":"カネンブ語","kcg":"カタブ語","kde":"マコンデ語","kea":"カーボベルデ・クレオール語","ken":"ニャン語","kfo":"コロ語","kg":"コンゴ語","kgp":"カインガング語","kha":"カシ語","kho":"コータン語","khq":"コイラ・チーニ語","khw":"コワール語","ki":"キクユ語","kiu":"キルマンジュキ語","kj":"クワニャマ語","kk":"カザフ語","kkj":"カコ語","kl":"グリーンランド語","kln":"カレンジン語","km":"クメール語","kmb":"キンブンド語","kn":"カンナダ語","ko":"韓国語","koi":"コミ・ペルミャク語","kok":"コンカニ語","kos":"コスラエ語","kpe":"クペレ語","kr":"カヌリ語","krc":"カラチャイ語","kri":"クリオ語","krj":"キナライア語","krl":"カレリア語","kru":"クルク語","ks":"カシミール語","ksb":"サンバー語","ksf":"バフィア語","ksh":"ケルン語","ku":"クルド語","kum":"クムク語","kut":"クテナイ語","kv":"コミ語","kw":"コーンウォール語","ky":"キルギス語","la":"ラテン語","lad":"ラディノ語","lag":"ランギ語","lah":"ラフンダー語","lam":"ランバ語","lb":"ルクセンブルク語","lez":"レズギ語","lfn":"リングア・フランカ・ノバ","lg":"ガンダ語","li":"リンブルフ語","lij":"リグリア語","liv":"リヴォニア語","lkt":"ラコタ語","lmo":"ロンバルド語","ln":"リンガラ語","lo":"ラオ語","lol":"モンゴ語","loz":"ロジ語","lt":"リトアニア語","ltg":"ラトガリア語","lu":"ルバ・カタンガ語","lua":"ルバ・ルルア語","lui":"ルイセーニョ語","lun":"ルンダ語","luo":"ルオ語","lus":"ルシャイ語","luy":"ルヒヤ語","lv":"ラトビア語","lzh":"漢文","lzz":"ラズ語","mad":"マドゥラ語","maf":"マファ語","mag":"マガヒー語","mai":"マイティリー語","mak":"マカッサル語","man":"マンディンゴ語","mas":"マサイ語","mde":"マバ語","mdf":"モクシャ語","mdr":"マンダル語","men":"メンデ語","mer":"メル語","mfe":"モーリシャス・クレオール語","mg":"マダガスカル語","mga":"中期アイルランド語","mgh":"マクア・ミート語","mgo":"メタ語","mh":"マーシャル語","mi":"マオリ語","mic":"ミクマク語","min":"ミナンカバウ語","mk":"マケドニア語","ml":"マラヤーラム語","mn":"モンゴル語","mnc":"満州語","mni":"マニプリ語","moh":"モーホーク語","mos":"モシ語","mr":"マラーティー語","mrj":"山地マリ語","ms":"マレー語","mt":"マルタ語","mua":"ムンダン語","mul":"複数言語","mus":"クリーク語","mwl":"ミランダ語","mwr":"マールワーリー語","mwv":"メンタワイ語","my":"ビルマ語","mye":"ミエネ語","myv":"エルジャ語","mzn":"マーザンダラーン語","na":"ナウル語","nan":"閩南語","nap":"ナポリ語","naq":"ナマ語","nb":"ノルウェー語(ブークモール)","nd":"北ンデベレ語","nds":"低地ドイツ語","ne":"ネパール語","new":"ネワール語","ng":"ンドンガ語","nia":"ニアス語","niu":"ニウーエイ語","njo":"アオ・ナガ語","nl":"オランダ語","nl-BE":"フレミッシュ語","nmg":"クワシオ語","nn":"ノルウェー語(ニーノシュク)","nnh":"ンジエムブーン語","no":"ノルウェー語","nog":"ノガイ語","non":"古ノルド語","nov":"ノヴィアル","nqo":"ンコ語","nr":"南ンデベレ語","nso":"北部ソト語","nus":"ヌエル語","nv":"ナバホ語","nwc":"古典ネワール語","ny":"ニャンジャ語","nym":"ニャムウェジ語","nyn":"ニャンコレ語","nyo":"ニョロ語","nzi":"ンゼマ語","oc":"オック語","oj":"オジブウェー語","om":"オロモ語","or":"オリヤー語","os":"オセット語","osa":"オセージ語","ota":"オスマントルコ語","pa":"パンジャブ語","pag":"パンガシナン語","pal":"パフラヴィー語","pam":"パンパンガ語","pap":"パピアメント語","pau":"パラオ語","pcd":"ピカルディ語","pdc":"ペンシルベニア・ドイツ語","pdt":"メノナイト低地ドイツ語","peo":"古代ペルシア語","pfl":"プファルツ語","phn":"フェニキア語","pi":"パーリ語","pl":"ポーランド語","pms":"ピエモンテ語","pnt":"ポントス・ギリシャ語","pon":"ポンペイ語","prg":"プロシア語","pro":"古期プロバンス語","ps":"パシュトゥー語","ps-alt-variant":"パシュトゥ語","pt":"ポルトガル語","pt-BR":"pt_BR","pt-PT":"ポルトガル語(イベリア半島)","qu":"ケチュア語","quc":"キチェ語","qug":"チンボラソ高地ケチュア語","raj":"ラージャスターン語","rap":"ラパヌイ語","rar":"ラロトンガ語","rgn":"ロマーニャ語","rif":"リーフ語","rm":"ロマンシュ語","rn":"ルンディ語","ro":"ルーマニア語","ro-MD":"モルダビア語","rof":"ロンボ語","rom":"ロマーニー語","root":"ルート","rtm":"ロツマ語","ru":"ロシア語","rue":"ルシン語","rug":"ロヴィアナ語","rup":"アルーマニア語","rw":"ルワンダ語","rwk":"ルワ語","sa":"サンスクリット語","sad":"サンダウェ語","sah":"ヤクート語","sam":"サマリア・アラム語","saq":"サンブル語","sas":"ササク語","sat":"サンターリー語","saz":"サウラーシュトラ語","sba":"ンガムバイ語","sbp":"サング語","sc":"サルデーニャ語","scn":"シチリア語","sco":"スコットランド語","sd":"シンド語","sdc":"サッサリ・サルデーニャ語","se":"北サーミ語","see":"セネカ語","seh":"セナ語","sei":"セリ語","sel":"セリクプ語","ses":"コイラボロ・センニ語","sg":"サンゴ語","sga":"古期アイルランド語","sgs":"サモギティア語)","sh":"セルボ・クロアチア語","shi":"タシルハイト語","shn":"シャン語","shu":"チャド・アラビア語","si":"シンハラ語","sid":"シダモ語","sk":"スロバキア語","sl":"スロベニア語","sli":"低シレジア語","sly":"スラヤール語","sm":"サモア語","sma":"南サーミ語","smj":"ルレ・サーミ語","smn":"イナリ・サーミ語","sms":"スコルト・サーミ語","sn":"ショナ語","snk":"ソニンケ語","so":"ソマリ語","sog":"ソグド語","sq":"アルバニア語","sr":"セルビア語","srn":"スリナム語","srr":"セレル語","ss":"スワジ語","ssy":"サホ語","st":"南部ソト語","stq":"ザーターフリジア語","su":"スンダ語","suk":"スクマ語","sus":"スス語","sux":"シュメール語","sv":"スウェーデン語","sw":"スワヒリ語","swb":"コモロ語","swc":"コンゴ・スワヒリ語","syc":"古典シリア語","syr":"シリア語","szl":"シレジア語","ta":"タミル語","tcy":"トゥル語","te":"テルグ語","tem":"テムネ語","teo":"テソ語","ter":"テレーノ語","tet":"テトゥン語","tg":"タジク語","th":"タイ語","ti":"ティグリニア語","tig":"ティグレ語","tiv":"ティブ語","tk":"トルクメン語","tkl":"トケラウ語","tkr":"ツァフル語","tl":"タガログ語","tlh":"クリンゴン語","tli":"トリンギット語","tly":"タリシュ語","tmh":"タマシェク語","tn":"ツワナ語","to":"トンガ語","tog":"トンガ語(ニアサ)","tpi":"トク・ピシン語","tr":"トルコ語","tru":"トゥロヨ語","trv":"タロコ語","ts":"ツォンガ語","tsd":"ツァコン語","tsi":"チムシュ語","tt":"タタール語","ttt":"ムスリム・タタール語","tum":"トゥンブカ語","tvl":"ツバル語","tw":"トウィ語","twq":"タサワク語","ty":"タヒチ語","tyv":"トゥヴァ語","tzm":"中央アトラス・タマジクト語","udm":"ウドムルト語","ug":"ウイグル語","ug-alt-variant":"ウィグル語","uga":"ウガリト語","uk":"ウクライナ語","umb":"ムブンドゥ語","und":"言語不明","ur":"ウルドゥー語","uz":"ウズベク語","vai":"ヴァイ語","ve":"ベンダ語","vec":"ヴェネト語","vep":"ヴェプス語","vi":"ベトナム語","vls":"西フラマン語","vmf":"マインフランク語","vo":"ヴォラピュク語","vot":"ヴォート語","vro":"ヴォロ語","vun":"ヴンジョ語","wa":"ワロン語","wae":"ヴァリス語","wal":"ウォライタ語","war":"ワライ語","was":"ワショ語","wo":"ウォロフ語","wuu":"呉語","xal":"カルムイク語","xh":"コサ語","xmf":"メグレル語","xog":"ソガ語","yao":"ヤオ語","yap":"ヤップ語","yav":"ヤンベン語","ybb":"イエンバ語","yi":"イディッシュ語","yo":"ヨルバ語","yrl":"ニェエンガトゥ語","yue":"広東語","za":"チワン語","zap":"サポテカ語","zbl":"ブリスシンボル","zea":"ゼーラント語","zen":"ゼナガ語","zgh":"タマージク語(モロッコ公用語)","zh":"中国語","zh-Hans":"簡体中国語","zh-Hant":"繁体中国語","zu":"ズールー語","zun":"ズニ語","zxx":"言語的内容なし","zza":"ザザ語"} \ No newline at end of file diff --git a/Punic/data/ja/listPatterns.json b/Punic/data/ja/listPatterns.json new file mode 100644 index 0000000..fdd4f13 --- /dev/null +++ b/Punic/data/ja/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s、%2$s","middle":"%1$s、%2$s","end":"%1$s、%2$s","2":"%1$s、%2$s"},"unit":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-narrow":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"},"unit-short":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"}} \ No newline at end of file diff --git a/Punic/data/ja/localeDisplayNames.json b/Punic/data/ja/localeDisplayNames.json new file mode 100644 index 0000000..5d0c4f3 --- /dev/null +++ b/Punic/data/ja/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s、%2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"暦法","colAlternate":"記号を無視した並べ替え","colBackwards":"アクセント(逆方向)による並べ替え","colCaseFirst":"大文字順/小文字順による並べ替え","colCaseLevel":"大文字小文字を区別した並べ替え","colHiraganaQuaternary":"仮名による並べ替え","colNormalization":"正規化による並べ替え","colNumeric":"数値による並べ替え","colStrength":"強度による並べ替え","collation":"並べ替え順序","currency":"通貨","numbers":"数値書式","timezone":"タイムゾーン","va":"ロケールのバリアント","variableTop":"記号として並べ替え","x":"私用"},"types":{"numbers":{"vaii":"ヴァイ文字の記数法"},"collation":{"zhuyin":"注音順"},"calendar":{"roc":"中華民国暦"},"colStrength":{"tertiary":"アクセント/大文字小文字/全角半角で並べ替え"},"colCaseFirst":{"upper":"大文字優先で並べ替え"},"colBackwards":{"yes":"アクセント(逆方向)で並べ替え"},"colCaseLevel":{"yes":"大文字小文字を区別して並べ替え"},"colHiraganaQuaternary":{"yes":"仮名を区別して並べ替え"},"colNormalization":{"yes":"Unicode 正規化で並べ替え"},"colNumeric":{"yes":"数値を数値として並べ替え"},"colAlternate":{"shifted":"記号を無視して並べ替え"}},"codePatterns":{"language":"言語: %1$s","script":"文字: %1$s","territory":"地域: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ja/numbers.json b/Punic/data/ja/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/ja/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ja/territories.json b/Punic/data/ja/territories.json new file mode 100644 index 0000000..90339bf --- /dev/null +++ b/Punic/data/ja/territories.json @@ -0,0 +1 @@ +{"001":"世界","002":"アフリカ","003":"北アメリカ大陸","005":"南アメリカ","009":"オセアニア","011":"西アフリカ","013":"中央アメリカ","014":"東アフリカ","015":"北アフリカ","017":"中部アフリカ","018":"南部アフリカ","019":"アメリカ大陸","021":"北アメリカ","029":"カリブ","030":"東アジア","034":"南アジア","035":"東南アジア","039":"南ヨーロッパ","053":"オーストララシア","054":"メラネシア","057":"ミクロネシア","061":"ポリネシア","142":"アジア","143":"中央アジア","145":"西アジア","150":"ヨーロッパ","151":"東ヨーロッパ","154":"北ヨーロッパ","155":"西ヨーロッパ","419":"ラテンアメリカ","AC":"アセンション島","AD":"アンドラ","AE":"アラブ首長国連邦","AF":"アフガニスタン","AG":"アンティグア・バーブーダ","AI":"アンギラ","AL":"アルバニア","AM":"アルメニア","AN":"オランダ領アンティル","AO":"アンゴラ","AQ":"南極","AR":"アルゼンチン","AS":"米領サモア","AT":"オーストリア","AU":"オーストラリア","AW":"アルバ","AX":"オーランド諸島","AZ":"アゼルバイジャン","BA":"ボスニア・ヘルツェゴビナ","BB":"バルバドス","BD":"バングラデシュ","BE":"ベルギー","BF":"ブルキナファソ","BG":"ブルガリア","BH":"バーレーン","BI":"ブルンジ","BJ":"ベナン","BL":"サン・バルテルミー島","BM":"バミューダ","BN":"ブルネイ","BO":"ボリビア","BQ":"オランダ領カリブ","BR":"ブラジル","BS":"バハマ","BT":"ブータン","BV":"ブーベ島","BW":"ボツワナ","BY":"ベラルーシ","BZ":"ベリーズ","CA":"カナダ","CC":"ココス(キーリング)諸島","CD":"コンゴ民主共和国(キンシャサ)","CD-alt-variant":"コンゴ民主共和国","CF":"中央アフリカ共和国","CG":"コンゴ共和国(ブラザビル)","CG-alt-variant":"コンゴ共和国","CH":"スイス","CI":"コートジボワール","CI-alt-variant":"象牙海岸","CK":"クック諸島","CL":"チリ","CM":"カメルーン","CN":"中国","CO":"コロンビア","CP":"クリッパートン島","CR":"コスタリカ","CU":"キューバ","CV":"カーボベルデ","CW":"キュラソー","CX":"クリスマス島","CY":"キプロス","CZ":"チェコ共和国","DE":"ドイツ","DG":"ディエゴガルシア島","DJ":"ジブチ","DK":"デンマーク","DM":"ドミニカ国","DO":"ドミニカ共和国","DZ":"アルジェリア","EA":"セウタ・メリリャ","EC":"エクアドル","EE":"エストニア","EG":"エジプト","EH":"西サハラ","ER":"エリトリア","ES":"スペイン","ET":"エチオピア","EU":"欧州連合","FI":"フィンランド","FJ":"フィジー","FK":"フォークランド諸島","FK-alt-variant":"フォークランド諸島(マルビナス諸島)","FM":"ミクロネシア連邦","FO":"フェロー諸島","FR":"フランス","GA":"ガボン","GB":"イギリス","GB-alt-short":"英国","GD":"グレナダ","GE":"グルジア","GF":"仏領ギアナ","GG":"ガーンジー","GH":"ガーナ","GI":"ジブラルタル","GL":"グリーンランド","GM":"ガンビア","GN":"ギニア","GP":"グアドループ","GQ":"赤道ギニア","GR":"ギリシャ","GS":"南ジョージア島・南サンドイッチ諸島","GT":"グアテマラ","GU":"グアム","GW":"ギニアビサウ","GY":"ガイアナ","HK":"中華人民共和国香港特別行政区","HK-alt-short":"香港","HM":"ハード島・マクドナルド諸島","HN":"ホンジュラス","HR":"クロアチア","HT":"ハイチ","HU":"ハンガリー","IC":"カナリア諸島","ID":"インドネシア","IE":"アイルランド","IL":"イスラエル","IM":"マン島","IN":"インド","IO":"英領インド洋地域","IQ":"イラク","IR":"イラン","IS":"アイスランド","IT":"イタリア","JE":"ジャージー","JM":"ジャマイカ","JO":"ヨルダン","JP":"日本","KE":"ケニア","KG":"キルギス","KH":"カンボジア","KI":"キリバス","KM":"コモロ","KN":"セントクリストファー・ネイビス","KP":"朝鮮民主主義人民共和国","KR":"大韓民国","KW":"クウェート","KY":"ケイマン諸島","KZ":"カザフスタン","LA":"ラオス","LB":"レバノン","LC":"セントルシア","LI":"リヒテンシュタイン","LK":"スリランカ","LR":"リベリア","LS":"レソト","LT":"リトアニア","LU":"ルクセンブルグ","LV":"ラトビア","LY":"リビア","MA":"モロッコ","MC":"モナコ","MD":"モルドバ","ME":"モンテネグロ","MF":"サン・マルタン","MG":"マダガスカル","MH":"マーシャル諸島","MK":"マケドニア","MK-alt-variant":"マケドニア(旧ユーゴスラビア共和国)","ML":"マリ","MM":"ミャンマー","MN":"モンゴル","MO":"中華人民共和国マカオ特別行政区","MO-alt-short":"マカオ","MP":"北マリアナ諸島","MQ":"マルティニーク","MR":"モーリタニア","MS":"モントセラト","MT":"マルタ","MU":"モーリシャス","MV":"モルディブ","MW":"マラウイ","MX":"メキシコ","MY":"マレーシア","MZ":"モザンビーク","NA":"ナミビア","NC":"ニューカレドニア","NE":"ニジェール","NF":"ノーフォーク島","NG":"ナイジェリア","NI":"ニカラグア","NL":"オランダ","NO":"ノルウェー","NP":"ネパール","NR":"ナウル","NU":"ニウエ島","NZ":"ニュージーランド","OM":"オマーン","PA":"パナマ","PE":"ペルー","PF":"仏領ポリネシア","PG":"パプアニューギニア","PH":"フィリピン","PK":"パキスタン","PL":"ポーランド","PM":"サンピエール島・ミクロン島","PN":"ピトケアン諸島","PR":"プエルトリコ","PS":"パレスチナ","PS-alt-short":"パレスチナ","PT":"ポルトガル","PW":"パラオ","PY":"パラグアイ","QA":"カタール","QO":"オセアニア周辺地域","RE":"レユニオン島","RO":"ルーマニア","RS":"セルビア","RU":"ロシア","RW":"ルワンダ","SA":"サウジアラビア","SB":"ソロモン諸島","SC":"セーシェル","SD":"スーダン","SE":"スウェーデン","SG":"シンガポール","SH":"セントヘレナ","SI":"スロベニア","SJ":"スバールバル諸島・ヤンマイエン島","SK":"スロバキア","SL":"シエラレオネ","SM":"サンマリノ","SN":"セネガル","SO":"ソマリア","SR":"スリナム","SS":"南スーダン","ST":"サントメ・プリンシペ","SV":"エルサルバドル","SX":"シント・マールテン","SY":"シリア","SZ":"スワジランド","TA":"トリスタン・ダ・クーニャ","TC":"タークス・カイコス諸島","TD":"チャド","TF":"仏領極南諸島","TG":"トーゴ","TH":"タイ","TJ":"タジキスタン","TK":"トケラウ","TL":"東ティモール","TL-alt-variant":"東チモール","TM":"トルクメニスタン","TN":"チュニジア","TO":"トンガ","TR":"トルコ","TT":"トリニダード・トバゴ","TV":"ツバル","TW":"台湾","TZ":"タンザニア","UA":"ウクライナ","UG":"ウガンダ","UM":"米領太平洋諸島","US":"アメリカ合衆国","US-alt-short":"アメリカ","UY":"ウルグアイ","UZ":"ウズベキスタン","VA":"バチカン市国","VC":"セントビンセント・グレナディーン諸島","VE":"ベネズエラ","VG":"英領ヴァージン諸島","VI":"米領ヴァージン諸島","VN":"ベトナム","VU":"バヌアツ","WF":"ウォリス・フツナ","WS":"サモア","XK":"コソボ","YE":"イエメン","YT":"マヨット島","ZA":"南アフリカ","ZM":"ザンビア","ZW":"ジンバブエ","ZZ":"不明な地域"} \ No newline at end of file diff --git a/Punic/data/ja/timeZoneNames.json b/Punic/data/ja/timeZoneNames.json new file mode 100644 index 0000000..1820320 --- /dev/null +++ b/Punic/data/ja/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s時間","regionFormat-type-standard":"%1$s標準時","regionFormat-type-daylight":"%1$s夏時間","fallbackFormat":"%2$s(%1$s)","zone":{"America":{"Adak":{"exemplarCity":"アダック"},"Anchorage":{"exemplarCity":"アンカレッジ"},"Anguilla":{"exemplarCity":"アンギラ"},"Antigua":{"exemplarCity":"アンティグア"},"Araguaina":{"exemplarCity":"アラグァイナ"},"Argentina":{"La_Rioja":{"exemplarCity":"ラリオハ"},"Rio_Gallegos":{"exemplarCity":"リオガジェゴス"},"Salta":{"exemplarCity":"サルタ"},"San_Juan":{"exemplarCity":"サンファン"},"San_Luis":{"exemplarCity":"サンルイス"},"Tucuman":{"exemplarCity":"トゥクマン"},"Ushuaia":{"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":"エルサルバドル"},"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":{"Knox":{"exemplarCity":"インディアナ州ノックス"},"Marengo":{"exemplarCity":"インディアナ州マレンゴ"},"Petersburg":{"exemplarCity":"インディアナ州ピーターズバーグ"},"Tell_City":{"exemplarCity":"インディアナ州テルシティ"},"Vevay":{"exemplarCity":"インディアナ州ビベー"},"Vincennes":{"exemplarCity":"インディアナ州ビンセンス"},"Winamac":{"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":"ノースダコタ州ビューラー"},"Center":{"exemplarCity":"ノースダコタ州センター"},"New_Salem":{"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":"アンドラ"},"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":"キエフ"},"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":"ティラナ"},"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":"バンコク"},"Beirut":{"exemplarCity":"ベイルート"},"Bishkek":{"exemplarCity":"ビシュケク"},"Brunei":{"exemplarCity":"ブルネイ"},"Calcutta":{"exemplarCity":"コルカタ"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"チョイバルサン"},"Chongqing":{"exemplarCity":"重慶"},"Colombo":{"exemplarCity":"コロンボ"},"Damascus":{"exemplarCity":"ダマスカス"},"Dhaka":{"exemplarCity":"ダッカ"},"Dili":{"exemplarCity":"ディリ"},"Dubai":{"exemplarCity":"ドバイ"},"Dushanbe":{"exemplarCity":"ドゥシャンベ"},"Gaza":{"exemplarCity":"ガザ"},"Harbin":{"exemplarCity":"ハルビン"},"Hebron":{"exemplarCity":"ヘブロン"},"Hong_Kong":{"exemplarCity":"香港"},"Hovd":{"exemplarCity":"ホブド"},"Irkutsk":{"exemplarCity":"イルクーツク"},"Jakarta":{"exemplarCity":"ジャカルタ"},"Jayapura":{"exemplarCity":"ジャヤプラ"},"Jerusalem":{"exemplarCity":"エルサレム"},"Kabul":{"exemplarCity":"カブール"},"Kamchatka":{"exemplarCity":"カムチャッカ"},"Karachi":{"exemplarCity":"カラチ"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"台北"},"Tashkent":{"exemplarCity":"タシケント"},"Tbilisi":{"exemplarCity":"トビリシ"},"Tehran":{"exemplarCity":"テヘラン"},"Thimphu":{"exemplarCity":"ティンプー"},"Tokyo":{"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":"オークランド"},"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":{"Acre":{"long":{"generic":"アクレ時間","standard":"アクレ標準時","daylight":"アクレ夏時間"}},"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":"アラスカ夏時間"}},"Almaty":{"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":"アピーア夏時間"}},"Aqtau":{"long":{"generic":"アクタウ時間","standard":"アクタウ標準時","daylight":"アクタウ夏時間"}},"Aqtobe":{"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":"カーボベルデ夏時間"}},"Casey":{"long":{"standard":"ケイシー基地時間"}},"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":"仏領南方南極時間"}},"GMT":{"long":{"standard":"グリニッジ標準時"}},"Galapagos":{"long":{"standard":"ガラパゴス時間"}},"Gambier":{"long":{"standard":"ガンビエ諸島時間"}},"Georgia":{"long":{"generic":"グルジア時間","standard":"グルジア標準時","daylight":"グルジア夏時間"}},"Gilbert_Islands":{"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":"日本夏時間"},"short":{"standard":"JST","daylight":"JDT"}},"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":"キルギスタン時間"}},"Lanka":{"long":{"standard":"ランカ時間"}},"Line_Islands":{"long":{"standard":"ライン諸島時間"}},"Lord_Howe":{"long":{"generic":"ロードハウ時間","standard":"ロードハウ標準時","daylight":"ロードハウ夏時間"}},"Macau":{"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":"ポナペ時間"}},"Qyzylorda":{"long":{"generic":"クズロルダ時間","standard":"クズロルダ標準時","daylight":"クズロルダ夏時間"}},"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":"エカテリンブルグ夏時間"}}}} \ No newline at end of file diff --git a/Punic/data/ja/units.json b/Punic/data/ja/units.json new file mode 100644 index 0000000..c60445a --- /dev/null +++ b/Punic/data/ja/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"毎%2$s %1$s","acceleration":{"g-force":{"_name":"G フォース","other":"%1$s G フォース"},"meter-per-second-squared":{"_name":"メートル毎秒毎秒","other":"%1$s メートル毎秒毎秒"}},"angle":{"arc-minute":{"_name":"分","other":"%1$s 分"},"arc-second":{"_name":"秒","other":"%1$s 秒"},"degree":{"_name":"度","other":"%1$s 度"},"radian":{"_name":"ラジアン","other":"%1$s ラジアン"}},"area":{"acre":{"_name":"エーカー","other":"%1$s エーカー"},"hectare":{"_name":"ヘクタール","other":"%1$s ヘクタール"},"square-centimeter":{"_name":"平方センチメートル","other":"%1$s 平方センチメートル"},"square-foot":{"_name":"平方フィート","other":"%1$s 平方フィート"},"square-inch":{"_name":"平方インチ","other":"%1$s 平方インチ"},"square-kilometer":{"_name":"平方キロメートル","other":"%1$s 平方キロメートル"},"square-meter":{"_name":"平方メートル","other":"%1$s 平方メートル"},"square-mile":{"_name":"平方マイル","other":"%1$s 平方マイル"},"square-yard":{"_name":"平方ヤード","other":"%1$s 平方ヤード"}},"consumption":{"liter-per-kilometer":{"_name":"リットル毎キロメートル","other":"%1$s リットル毎キロメートル"},"mile-per-gallon":{"_name":"マイル毎ガロン","other":"%1$s マイル毎ガロン"}},"digital":{"bit":{"_name":"ビット","other":"%1$s ビット"},"byte":{"_name":"バイト","other":"%1$s バイト"},"gigabit":{"_name":"ギガビット","other":"%1$s ギガビット"},"gigabyte":{"_name":"ギガバイト","other":"%1$s ギガバイト"},"kilobit":{"_name":"キロビット","other":"%1$s キロビット"},"kilobyte":{"_name":"キロバイト","other":"%1$s キロバイト"},"megabit":{"_name":"メガビット","other":"%1$s メガビット"},"megabyte":{"_name":"メガバイト","other":"%1$s メガバイト"},"terabit":{"_name":"テラビット","other":"%1$s テラビット"},"terabyte":{"_name":"テラバイト","other":"%1$s テラバイト"}},"duration":{"day":{"_name":"日","other":"%1$s 日"},"hour":{"_name":"時間","other":"%1$s 時間","_per":"%1$s/時間"},"microsecond":{"_name":"マイクロ秒","other":"%1$s マイクロ秒"},"millisecond":{"_name":"ミリ秒","other":"%1$s ミリ秒"},"minute":{"_name":"分","other":"%1$s 分"},"month":{"_name":"か月","other":"%1$s か月"},"nanosecond":{"_name":"ナノ秒","other":"%1$s ナノ秒"},"second":{"_name":"秒","other":"%1$s 秒","_per":"%1$s/秒"},"week":{"_name":"週間","other":"%1$s 週間"},"year":{"_name":"年","other":"%1$s 年"}},"electric":{"ampere":{"_name":"アンペア","other":"%1$s アンペア"},"milliampere":{"_name":"ミリアンペア","other":"%1$s ミリアンペア"},"ohm":{"_name":"オーム","other":"%1$s オーム"},"volt":{"_name":"ボルト","other":"%1$s ボルト"}},"energy":{"calorie":{"_name":"熱力学カロリー","other":"%1$s 熱力学カロリー"},"foodcalorie":{"_name":"カロリー","other":"%1$s カロリー"},"joule":{"_name":"ジュール","other":"%1$s ジュール"},"kilocalorie":{"_name":"キロカロリー","other":"%1$s キロカロリー"},"kilojoule":{"_name":"キロジュール","other":"%1$s キロジュール"},"kilowatt-hour":{"_name":"キロワット時","other":"%1$s キロワット時"}},"frequency":{"gigahertz":{"_name":"ギガヘルツ","other":"%1$s ギガヘルツ"},"hertz":{"_name":"ヘルツ","other":"%1$s ヘルツ"},"kilohertz":{"_name":"キロヘルツ","other":"%1$s キロヘルツ"},"megahertz":{"_name":"メガヘルツ","other":"%1$s メガヘルツ"}},"length":{"astronomical-unit":{"_name":"天文単位","other":"%1$s 天文単位"},"centimeter":{"_name":"センチメートル","other":"%1$s センチメートル"},"decimeter":{"_name":"デシメートル","other":"%1$s デシメートル"},"fathom":{"_name":"ファゾム","other":"%1$s ファゾム"},"foot":{"_name":"フィート","other":"%1$s フィート"},"furlong":{"_name":"ハロン","other":"%1$s ハロン"},"inch":{"_name":"インチ","other":"%1$s インチ"},"kilometer":{"_name":"キロメートル","other":"%1$s キロメートル"},"light-year":{"_name":"光年","other":"%1$s 光年"},"meter":{"_name":"メートル","other":"%1$s メートル"},"micrometer":{"_name":"マイクロメートル","other":"%1$s マイクロメートル"},"mile":{"_name":"マイル","other":"%1$s マイル"},"millimeter":{"_name":"ミリメートル","other":"%1$s ミリメートル"},"nanometer":{"_name":"ナノメートル","other":"%1$s ナノメートル"},"nautical-mile":{"_name":"海里","other":"%1$s 海里"},"parsec":{"_name":"パーセク","other":"%1$s パーセク"},"picometer":{"_name":"ピコメートル","other":"%1$s ピコメートル"},"yard":{"_name":"ヤード","other":"%1$s ヤード"}},"light":{"lux":{"_name":"ルクス","other":"%1$s ルクス"}},"mass":{"carat":{"_name":"カラット","other":"%1$s カラット"},"gram":{"_name":"グラム","other":"%1$s グラム"},"kilogram":{"_name":"キログラム","other":"%1$s キログラム"},"metric-ton":{"_name":"メトリックトン","other":"%1$s メトリックトン"},"microgram":{"_name":"マイクログラム","other":"%1$s マイクログラム"},"milligram":{"_name":"ミリグラム","other":"%1$s ミリグラム"},"ounce":{"_name":"オンス","other":"%1$s オンス"},"ounce-troy":{"_name":"トロイオンス","other":"%1$s トロイオンス"},"pound":{"_name":"ポンド","other":"%1$s ポンド"},"stone":{"_name":"ストーン","other":"%1$s ストーン"},"ton":{"_name":"トン","other":"%1$s トン"}},"power":{"gigawatt":{"_name":"ギガワット","other":"%1$s ギガワット"},"horsepower":{"_name":"馬力","other":"%1$s 馬力"},"kilowatt":{"_name":"キロワット","other":"%1$s キロワット"},"megawatt":{"_name":"メガワット","other":"%1$s メガワット"},"milliwatt":{"_name":"ミリワット","other":"%1$s ミリワット"},"watt":{"_name":"ワット","other":"%1$s ワット"}},"pressure":{"hectopascal":{"_name":"ヘクトパスカル","other":"%1$s ヘクトパスカル"},"inch-hg":{"_name":"水銀柱インチ","other":"%1$s 水銀柱インチ"},"millibar":{"_name":"ミリバール","other":"%1$s ミリバール"},"millimeter-of-mercury":{"_name":"水銀柱ミリメートル","other":"%1$s 水銀柱ミリメートル"},"pound-per-square-inch":{"_name":"重量ポンド毎平方インチ","other":"%1$s 重量ポンド毎平方インチ"}},"proportion":{"karat":{"_name":"金","other":"%1$s 金"}},"speed":{"kilometer-per-hour":{"_name":"キロメートル毎時","other":"時速 %1$s キロメートル"},"meter-per-second":{"_name":"メートル毎秒","other":"秒速 %1$s メートル"},"mile-per-hour":{"_name":"マイル毎時","other":"時速 %1$s マイル"}},"temperature":{"celsius":{"_name":"摂氏","other":"摂氏 %1$s 度"},"fahrenheit":{"_name":"華氏","other":"華氏 %1$s 度"},"kelvin":{"_name":"ケルビン","other":"%1$s ケルビン"}},"volume":{"acre-foot":{"_name":"エーカーフィート","other":"%1$s エーカーフィート"},"bushel":{"_name":"ブッシェル","other":"%1$s ブッシェル"},"centiliter":{"_name":"センチリットル","other":"%1$s センチリットル"},"cubic-centimeter":{"_name":"立方センチメートル","other":"%1$s 立方センチメートル"},"cubic-foot":{"_name":"立方フィート","other":"%1$s 立方フィート"},"cubic-inch":{"_name":"立方インチ","other":"%1$s 立方インチ"},"cubic-kilometer":{"_name":"立方キロメートル","other":"%1$s 立方キロメートル"},"cubic-meter":{"_name":"立方メートル","other":"%1$s 立方メートル"},"cubic-mile":{"_name":"立方マイル","other":"%1$s 立方マイル"},"cubic-yard":{"_name":"立方ヤード","other":"%1$s 立方ヤード"},"cup":{"_name":"カップ","other":"%1$s カップ"},"deciliter":{"_name":"デシリットル","other":"%1$s デシリットル"},"fluid-ounce":{"_name":"液量オンス","other":"%1$s 液量オンス"},"gallon":{"_name":"ガロン","other":"%1$s ガロン"},"hectoliter":{"_name":"ヘクトリットル","other":"%1$s ヘクトリットル"},"liter":{"_name":"リットル","other":"%1$s リットル"},"megaliter":{"_name":"メガリットル","other":"%1$s メガリットル"},"milliliter":{"_name":"ミリリットル","other":"%1$s ミリリットル"},"pint":{"_name":"パイント","other":"%1$s パイント"},"quart":{"_name":"クォート","other":"%1$s クォート"},"tablespoon":{"_name":"大さじ","other":"大さじ %1$s"},"teaspoon":{"_name":"小さじ","other":"小さじ %1$s"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G フォース","other":"%1$s G"},"meter-per-second-squared":{"_name":"メートル毎秒毎秒","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"分","other":"%1$s 分"},"arc-second":{"_name":"秒","other":"%1$s 秒"},"degree":{"_name":"度","other":"%1$s 度"},"radian":{"_name":"ラジアン","other":"%1$s rad"}},"area":{"acre":{"_name":"エーカー","other":"%1$s ac"},"hectare":{"_name":"ヘクタール","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"平方フィート","other":"%1$s ft²"},"square-inch":{"_name":"平方インチ","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"平方マイル","other":"%1$s mi²"},"square-yard":{"_name":"平方ヤード","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"リットル毎キロメートル","other":"%1$s L/km"},"mile-per-gallon":{"_name":"マイル毎ガロン","other":"%1$s mpg"}},"digital":{"bit":{"_name":"ビット","other":"%1$s bit"},"byte":{"_name":"バイト","other":"%1$s byte"},"gigabit":{"_name":"ギガビット","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"キロビット","other":"%1$s kb"},"kilobyte":{"_name":"KB","other":"%1$s KB"},"megabit":{"_name":"メガビット","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"テラビット","other":"%1$s Tb"},"terabyte":{"_name":"テラバイト","other":"%1$s TB"}},"duration":{"day":{"_name":"日","other":"%1$s 日"},"hour":{"_name":"時間","other":"%1$s 時間","_per":"%1$s/時間"},"microsecond":{"_name":"マイクロ秒","other":"%1$s μs"},"millisecond":{"_name":"ミリ秒","other":"%1$s ms"},"minute":{"_name":"分","other":"%1$s 分"},"month":{"_name":"か月","other":"%1$s か月"},"nanosecond":{"_name":"ナノ秒","other":"%1$s ns"},"second":{"_name":"秒","other":"%1$s 秒","_per":"%1$s/秒"},"week":{"_name":"週間","other":"%1$s 週間"},"year":{"_name":"年","other":"%1$s 年"}},"electric":{"ampere":{"_name":"アンペア","other":"%1$s A"},"milliampere":{"_name":"ミリアンペア","other":"%1$s mA"},"ohm":{"_name":"オーム","other":"%1$s Ω"},"volt":{"_name":"ボルト","other":"%1$s V"}},"energy":{"calorie":{"_name":"熱力学カロリー","other":"%1$s calth"},"foodcalorie":{"_name":"cal","other":"%1$s cal"},"joule":{"_name":"ジュール","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"キロジュール","other":"%1$s kJ"},"kilowatt-hour":{"_name":"キロワット時","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"ギガヘルツ","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"メガヘルツ","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"天文単位","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$s cm"},"decimeter":{"_name":"デシメートル","other":"%1$s dm"},"fathom":{"_name":"ファゾム","other":"%1$s fm"},"foot":{"_name":"フィート","other":"%1$s ft"},"furlong":{"_name":"ハロン","other":"%1$s fur"},"inch":{"_name":"インチ","other":"%1$s in"},"kilometer":{"_name":"km","other":"%1$s km"},"light-year":{"_name":"光年","other":"%1$s 光年"},"meter":{"_name":"m","other":"%1$s m"},"micrometer":{"_name":"マイクロメートル","other":"%1$s µm"},"mile":{"_name":"マイル","other":"%1$s mi"},"millimeter":{"_name":"mm","other":"%1$s mm"},"nanometer":{"_name":"ナノメートル","other":"%1$s nm"},"nautical-mile":{"_name":"海里","other":"%1$s 海里"},"parsec":{"_name":"パーセク","other":"%1$s pc"},"picometer":{"_name":"ピコメートル","other":"%1$s pm"},"yard":{"_name":"ヤード","other":"%1$s yd"}},"light":{"lux":{"_name":"ルクス","other":"%1$s lx"}},"mass":{"carat":{"_name":"カラット","other":"%1$s ct"},"gram":{"_name":"グラム","other":"%1$s g"},"kilogram":{"_name":"kg","other":"%1$s kg"},"metric-ton":{"_name":"メトリックトン","other":"%1$s MT"},"microgram":{"_name":"マイクログラム","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"オンス","other":"%1$s oz"},"ounce-troy":{"_name":"トロイオンス","other":"%1$s oz t"},"pound":{"_name":"ポンド","other":"%1$s lb"},"stone":{"_name":"ストーン","other":"%1$s st"},"ton":{"_name":"トン","other":"%1$s t"}},"power":{"gigawatt":{"_name":"ギガワット","other":"%1$s GW"},"horsepower":{"_name":"馬力","other":"%1$s 馬力"},"kilowatt":{"_name":"キロワット","other":"%1$s kW"},"megawatt":{"_name":"メガワット","other":"%1$s MW"},"milliwatt":{"_name":"ミリワット","other":"%1$s mW"},"watt":{"_name":"ワット","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$s hPa"},"inch-hg":{"_name":"水銀柱インチ","other":"%1$s inHg"},"millibar":{"_name":"ミリバール","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"水銀柱ミリメートル","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"重量ポンド毎平方インチ","other":"%1$s psi"}},"proportion":{"karat":{"_name":"金","other":"%1$s 金"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"マイル毎時","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"華氏","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"エーカーフィート","other":"%1$s ac ft"},"bushel":{"_name":"ブッシェル","other":"%1$s bu"},"centiliter":{"_name":"センチリットル","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"立方フィート","other":"%1$s ft³"},"cubic-inch":{"_name":"立方インチ","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"立方マイル","other":"%1$s mi³"},"cubic-yard":{"_name":"立方ヤード","other":"%1$s yd³"},"cup":{"_name":"カップ","other":"%1$s カップ"},"deciliter":{"_name":"デシリットル","other":"%1$s dL"},"fluid-ounce":{"_name":"液量オンス","other":"%1$s fl oz"},"gallon":{"_name":"ガロン","other":"%1$s gal"},"hectoliter":{"_name":"ヘクトリットル","other":"%1$s hL"},"liter":{"_name":"リットル","other":"%1$s l"},"megaliter":{"_name":"メガリットル","other":"%1$s ML"},"milliliter":{"_name":"ml","other":"%1$s ml"},"pint":{"_name":"パイント","other":"%1$s pt"},"quart":{"_name":"クォート","other":"%1$s qt"},"tablespoon":{"_name":"大さじ","other":"大さじ %1$s"},"teaspoon":{"_name":"小さじ","other":"小さじ %1$s"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G フォース","other":"%1$sG"},"meter-per-second-squared":{"_name":"メートル毎秒毎秒","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"分","other":"%1$s′"},"arc-second":{"_name":"秒","other":"%1$s″"},"degree":{"_name":"度","other":"%1$s°"},"radian":{"_name":"ラジアン","other":"%1$srad"}},"area":{"acre":{"_name":"エーカー","other":"%1$sac"},"hectare":{"_name":"ヘクタール","other":"%1$sha"},"square-centimeter":{"_name":"cm²","other":"%1$scm²"},"square-foot":{"_name":"平方フィート","other":"%1$sft²"},"square-inch":{"_name":"平方インチ","other":"%1$sin²"},"square-kilometer":{"_name":"km²","other":"%1$skm²"},"square-meter":{"_name":"m²","other":"%1$sm²"},"square-mile":{"_name":"平方マイル","other":"%1$smi²"},"square-yard":{"_name":"平方ヤード","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"リットル毎キロメートル","other":"%1$sL/km"},"mile-per-gallon":{"_name":"マイル毎ガロン","other":"%1$smpg"}},"digital":{"bit":{"_name":"ビット","other":"%1$sb"},"byte":{"_name":"バイト","other":"%1$sB"},"gigabit":{"_name":"ギガビット","other":"%1$sGb"},"gigabyte":{"_name":"GB","other":"%1$sGB"},"kilobit":{"_name":"キロビット","other":"%1$skb"},"kilobyte":{"_name":"KB","other":"%1$sKB"},"megabit":{"_name":"メガビット","other":"%1$sMb"},"megabyte":{"_name":"MB","other":"%1$sMB"},"terabit":{"_name":"テラビット","other":"%1$sTb"},"terabyte":{"_name":"テラバイト","other":"%1$sTB"}},"duration":{"day":{"_name":"日","other":"%1$s日"},"hour":{"_name":"時間","other":"%1$s時間","_per":"%1$s/時間"},"microsecond":{"_name":"µs","other":"%1$sμs"},"millisecond":{"_name":"ms","other":"%1$sms"},"minute":{"_name":"分","other":"%1$s分"},"month":{"_name":"か月","other":"%1$sか月"},"nanosecond":{"_name":"ns","other":"%1$sns"},"second":{"_name":"秒","other":"%1$s秒","_per":"%1$s/秒"},"week":{"_name":"週間","other":"%1$s週間"},"year":{"_name":"年","other":"%1$s年"}},"electric":{"ampere":{"_name":"アンペア","other":"%1$sA"},"milliampere":{"_name":"ミリアンペア","other":"%1$smA"},"ohm":{"_name":"オーム","other":"%1$sΩ"},"volt":{"_name":"ボルト","other":"%1$sV"}},"energy":{"calorie":{"_name":"熱力学カロリー","other":"%1$scalth"},"foodcalorie":{"_name":"cal","other":"%1$scal"},"joule":{"_name":"ジュール","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","other":"%1$skcal"},"kilojoule":{"_name":"キロジュール","other":"%1$skJ"},"kilowatt-hour":{"_name":"キロワット時","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"ギガヘルツ","other":"%1$sGHz"},"hertz":{"_name":"Hz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","other":"%1$skHz"},"megahertz":{"_name":"メガヘルツ","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"天文単位","other":"%1$sau"},"centimeter":{"_name":"cm","other":"%1$scm"},"decimeter":{"_name":"デシメートル","other":"%1$sdm"},"fathom":{"_name":"fm","other":"%1$sfm"},"foot":{"_name":"フィート","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$sfur"},"inch":{"_name":"インチ","other":"%1$s″"},"kilometer":{"_name":"km","other":"%1$skm"},"light-year":{"_name":"光年","other":"%1$s光年"},"meter":{"_name":"m","other":"%1$sm"},"micrometer":{"_name":"マイクロメートル","other":"%1$sµm"},"mile":{"_name":"マイル","other":"%1$sマイル"},"millimeter":{"_name":"mm","other":"%1$smm"},"nanometer":{"_name":"ナノメートル","other":"%1$snm"},"nautical-mile":{"_name":"海里","other":"%1$s海里"},"parsec":{"_name":"パーセク","other":"%1$spc"},"picometer":{"_name":"ピコメートル","other":"%1$spm"},"yard":{"_name":"ヤード","other":"%1$sヤード"}},"light":{"lux":{"_name":"ルクス","other":"%1$slx"}},"mass":{"carat":{"_name":"カラット","other":"%1$sct"},"gram":{"_name":"g","other":"%1$sg"},"kilogram":{"_name":"kg","other":"%1$skg"},"metric-ton":{"_name":"メトリックトン","other":"%1$sMT"},"microgram":{"_name":"マイクログラム","other":"%1$sµg"},"milligram":{"_name":"mg","other":"%1$smg"},"ounce":{"_name":"オンス","other":"%1$soz"},"ounce-troy":{"_name":"トロイオンス","other":"%1$soz t"},"pound":{"_name":"ポンド","other":"%1$slb"},"stone":{"_name":"st","other":"%1$sst"},"ton":{"_name":"トン","other":"%1$st"}},"power":{"gigawatt":{"_name":"ギガワット","other":"%1$sGW"},"horsepower":{"_name":"馬力","other":"%1$shp"},"kilowatt":{"_name":"キロワット","other":"%1$skW"},"megawatt":{"_name":"メガワット","other":"%1$sMW"},"milliwatt":{"_name":"ミリワット","other":"%1$smW"},"watt":{"_name":"ワット","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$shPa"},"inch-hg":{"_name":"水銀柱インチ","other":"%1$s\" Hg"},"millibar":{"_name":"ミリバール","other":"%1$smb"},"millimeter-of-mercury":{"_name":"水銀柱ミリメートル","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"重量ポンド毎平方インチ","other":"%1$spsi"}},"proportion":{"karat":{"_name":"金","other":"%1$sK"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"マイル毎時","other":"%1$smi/h"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°"},"fahrenheit":{"_name":"華氏","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"エーカーフィート","other":"%1$sac ft"},"bushel":{"_name":"bu","other":"%1$sbu"},"centiliter":{"_name":"センチリットル","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","other":"%1$scm³"},"cubic-foot":{"_name":"立方フィート","other":"%1$sft³"},"cubic-inch":{"_name":"立方インチ","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","other":"%1$sm³"},"cubic-mile":{"_name":"立方マイル","other":"%1$smi³"},"cubic-yard":{"_name":"立方ヤード","other":"%1$syd³"},"cup":{"_name":"カップ","other":"%1$sカップ"},"deciliter":{"_name":"デシリットル","other":"%1$sdL"},"fluid-ounce":{"_name":"液量オンス","other":"%1$sfl oz"},"gallon":{"_name":"ガロン","other":"%1$sgal"},"hectoliter":{"_name":"ヘクトリットル","other":"%1$shL"},"liter":{"_name":"l","other":"%1$sl"},"megaliter":{"_name":"メガリットル","other":"%1$sML"},"milliliter":{"_name":"ml","other":"%1$sml"},"pint":{"_name":"パイント","other":"%1$spt"},"quart":{"_name":"クォート","other":"%1$sqt"},"tablespoon":{"_name":"大さじ","other":"大さじ%1$s"},"teaspoon":{"_name":"小さじ","other":"小さじ%1$s"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/ko/calendar.json b/Punic/data/ko/calendar.json new file mode 100644 index 0000000..ebeb080 --- /dev/null +++ b/Punic/data/ko/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"12월"},"narrow":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"12월"},"wide":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"12월"}},"stand-alone":{"abbreviated":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"12월"},"narrow":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"12월"},"wide":{"1":"1월","2":"2월","3":"3월","4":"4월","5":"5월","6":"6월","7":"7월","8":"8월","9":"9월","10":"10월","11":"11월","12":"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":"1분기","2":"2분기","3":"3분기","4":"4분기"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"제 1/4분기","2":"제 2/4분기","3":"제 3/4분기","4":"제 4/4분기"}},"stand-alone":{"abbreviated":{"1":"1분기","2":"2분기","3":"3분기","4":"4분기"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"제 1/4분기","2":"제 2/4분기","3":"제 3/4분기","4":"제 4/4분기"}}},"dayPeriods":{"format":{"abbreviated":{"am":"오전","noon":"정오","pm":"오후"},"narrow":{"am":"오전","noon":"정오","pm":"오후"},"wide":{"am":"오전","noon":"정오","pm":"오후"}},"stand-alone":{"abbreviated":{"am":"오전","noon":"정오","pm":"오후"},"narrow":{"am":"오전","noon":"정오","pm":"오후"},"wide":{"am":"오전","noon":"정오","pm":"오후"}}},"eras":{"wide":{"0":"기원전","0-alt-variant":"BCE","1":"서기","1-alt-variant":"CE"},"abbreviated":{"0":"기원전","0-alt-variant":"BCE","1":"서기","1-alt-variant":"CE"},"narrow":{"0":"기원전","0-alt-variant":"BCE","1":"서기","1-alt-variant":"CE"}},"dateFormats":{"full":"y년 M월 d일 EEEE","long":"y년 M월 d일","medium":"y. M. d.","short":"yy. M. d."},"timeFormats":{"full":"a h시 m분 s초 zzzz","long":"a h시 m분 s초 z","medium":"a h:mm:ss","short":"a h:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/ko/dateFields.json b/Punic/data/ko/dateFields.json new file mode 100644 index 0000000..e8296a4 --- /dev/null +++ b/Punic/data/ko/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"연호"},"year":{"displayName":"년","relative-type--1":"작년","relative-type-0":"올해","relative-type-1":"내년","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}년 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}년 전"}},"year-short":{"displayName":"년","relative-type--1":"작년","relative-type-0":"올해","relative-type-1":"내년","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}년 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}년 전"}},"year-narrow":{"displayName":"년","relative-type--1":"작년","relative-type-0":"올해","relative-type-1":"내년","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}년 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}년 전"}},"quarter":{"displayName":"분기","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분기 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분기 전"}},"quarter-short":{"displayName":"분기","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분기 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분기 전"}},"quarter-narrow":{"displayName":"분기","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분기 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분기 전"}},"month":{"displayName":"월","relative-type--1":"지난달","relative-type-0":"이번 달","relative-type-1":"다음 달","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}개월 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}개월 전"}},"month-short":{"displayName":"월","relative-type--1":"지난달","relative-type-0":"이번 달","relative-type-1":"다음 달","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}개월 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}개월 전"}},"month-narrow":{"displayName":"월","relative-type--1":"지난달","relative-type-0":"이번 달","relative-type-1":"다음 달","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}개월 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}개월 전"}},"week":{"displayName":"주","relative-type--1":"지난주","relative-type-0":"이번 주","relative-type-1":"다음 주","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}주 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}주 전"}},"week-short":{"displayName":"주","relative-type--1":"지난주","relative-type-0":"이번 주","relative-type-1":"다음 주","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}주 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}주 전"}},"week-narrow":{"displayName":"주","relative-type--1":"지난주","relative-type-0":"이번 주","relative-type-1":"다음 주","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}주 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}주 전"}},"day":{"displayName":"일","relative-type--1":"어제","relative-type--2":"그저께","relative-type-0":"오늘","relative-type-1":"내일","relative-type-2":"모레","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}일 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}일 전"}},"day-short":{"displayName":"일","relative-type--1":"어제","relative-type--2":"그저께","relative-type-0":"오늘","relative-type-1":"내일","relative-type-2":"모레","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}일 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}일 전"}},"day-narrow":{"displayName":"일","relative-type--1":"어제","relative-type--2":"그저께","relative-type-0":"오늘","relative-type-1":"내일","relative-type-2":"모레","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}일 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}일 전"}},"weekday":{"displayName":"요일"},"sun":{"relative-type--1":"지난 일요일","relative-type-0":"이번 일요일","relative-type-1":"다음 일요일"},"sun-short":{"relative-type--1":"지난 일요일","relative-type-0":"이번 일요일","relative-type-1":"다음 일요일"},"sun-narrow":{"relative-type--1":"지난 일요일","relative-type-0":"이번 일요일","relative-type-1":"다음 일요일"},"mon":{"relative-type--1":"지난 월요일","relative-type-0":"이번 월요일","relative-type-1":"다음 월요일"},"mon-short":{"relative-type--1":"지난 월요일","relative-type-0":"이번 월요일","relative-type-1":"다음 월요일"},"mon-narrow":{"relative-type--1":"지난 월요일","relative-type-0":"이번 월요일","relative-type-1":"다음 월요일"},"tue":{"relative-type--1":"지난 화요일","relative-type-0":"이번 화요일","relative-type-1":"다음 화요일"},"tue-short":{"relative-type--1":"지난 화요일","relative-type-0":"이번 화요일","relative-type-1":"다음 화요일"},"tue-narrow":{"relative-type--1":"지난 화요일","relative-type-0":"이번 화요일","relative-type-1":"다음 화요일"},"wed":{"relative-type--1":"지난 수요일","relative-type-0":"이번 수요일","relative-type-1":"다음 수요일"},"wed-short":{"relative-type--1":"지난 수요일","relative-type-0":"이번 수요일","relative-type-1":"다음 수요일"},"wed-narrow":{"relative-type--1":"지난 수요일","relative-type-0":"이번 수요일","relative-type-1":"다음 수요일"},"thu":{"relative-type--1":"지난 목요일","relative-type-0":"이번 목요일","relative-type-1":"다음 목요일"},"thu-short":{"relative-type--1":"지난 목요일","relative-type-0":"이번 목요일","relative-type-1":"다음 목요일"},"thu-narrow":{"relative-type--1":"지난 목요일","relative-type-0":"이번 목요일","relative-type-1":"다음 목요일"},"fri":{"relative-type--1":"지난 금요일","relative-type-0":"이번 금요일","relative-type-1":"다음 금요일"},"fri-short":{"relative-type--1":"지난 금요일","relative-type-0":"이번 금요일","relative-type-1":"다음 금요일"},"fri-narrow":{"relative-type--1":"지난 금요일","relative-type-0":"이번 금요일","relative-type-1":"다음 금요일"},"sat":{"relative-type--1":"지난 토요일","relative-type-0":"이번 토요일","relative-type-1":"다음 토요일"},"sat-short":{"relative-type--1":"지난 토요일","relative-type-0":"이번 토요일","relative-type-1":"다음 토요일"},"sat-narrow":{"relative-type--1":"지난 토요일","relative-type-0":"이번 토요일","relative-type-1":"다음 토요일"},"dayperiod":{"displayName":"오전/오후"},"hour":{"displayName":"시","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}시간 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}시간 전"}},"hour-short":{"displayName":"시","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}시간 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}시간 전"}},"hour-narrow":{"displayName":"시","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}시간 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}시간 전"}},"minute":{"displayName":"분","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분 전"}},"minute-short":{"displayName":"분","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분 전"}},"minute-narrow":{"displayName":"분","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}분 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}분 전"}},"second":{"displayName":"초","relative-type-0":"지금","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}초 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}초 전"}},"second-short":{"displayName":"초","relative-type-0":"지금","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}초 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}초 전"}},"second-narrow":{"displayName":"초","relative-type-0":"지금","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}초 후"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}초 전"}},"zone":{"displayName":"시간대"}} \ No newline at end of file diff --git a/Punic/data/ko/languages.json b/Punic/data/ko/languages.json new file mode 100644 index 0000000..d4e1a30 --- /dev/null +++ b/Punic/data/ko/languages.json @@ -0,0 +1 @@ +{"aa":"아파르어","ab":"압카즈어","ace":"아체어","ach":"아콜리어","ada":"아당메어","ady":"아닥헤어","ae":"아베스타어","aeb":"튀니지 아랍어","af":"아프리칸스어","afh":"아프리히리어","agq":"아그햄어","ain":"아이누어","ak":"아칸어","akk":"아카드어","akz":"akz","ale":"알류트어","aln":"aln","alt":"남부 알타이어","am":"암하라어","an":"아라곤어","ang":"고대 영어","anp":"앙가어","ar":"아랍어","ar-001":"현대 표준 아랍어","arc":"아람어","arn":"아라우칸어","aro":"aro","arp":"아라파호어","arq":"알제리 아랍어","arw":"아라와크어","ary":"모로코 아랍어","arz":"이집트 아랍어","as":"아샘어","asa":"아수어","ase":"ase","ast":"아스투리아어","av":"아바릭어","avk":"avk","awa":"아와히어","ay":"아이마라어","az":"아제르바이잔어","az-alt-short":"아제리어","azb":"남아제르바이잔어","ba":"바슈키르어","bal":"발루치어","ban":"발리어","bar":"bar","bas":"바사어","bax":"바문어","bbc":"bbc","bbj":"고말라어","be":"벨라루스어","bej":"베자어","bem":"벰바어","bew":"bew","bez":"베나어","bfd":"바푸트어","bfq":"bfq","bg":"불가리아어","bho":"호즈푸리어","bi":"비슬라마어","bik":"비콜어","bin":"비니어","bjn":"bjn","bkm":"콤어","bla":"식시카어","bm":"밤바라어","bn":"벵골어","bo":"티베트어","bpy":"bpy","bqi":"bqi","br":"브르타뉴어","bra":"브라지어","brh":"브라후이어","brx":"보도어","bs":"보스니아어","bss":"아쿠즈어","bua":"부리아타","bug":"부기어","bum":"불루어","byn":"브린어","byv":"메둠바어","ca":"카탈로니아어","cad":"카도어","car":"카리브어","cay":"카유가어","cch":"아삼어","ce":"체첸어","ceb":"세부아노어","cgg":"치가어","ch":"차모로어","chb":"치브차어","chg":"차가타이어","chk":"추크어","chm":"마리어","chn":"치누크어와 영어 프랑스어의 혼성어","cho":"촉토어","chp":"치페우얀","chr":"체로키어","chy":"샤이엔어","ckb":"소라니 쿠르드어","co":"코르시카어","cop":"콥트어","cps":"cps","cr":"크리어","crh":"크리민 터키어; 크리민 타타르어","cs":"체코어","csb":"카슈비아어","cu":"교회 슬라브어","cv":"추바시어","cy":"웨일스어","da":"덴마크어","dak":"다코타어","dar":"다르그와어","dav":"타이타어","de":"독일어","de-AT":"de_AT","de-CH":"고지 독일어 (스위스)","del":"델라웨어어","den":"슬라브어","dgr":"도그리브어","din":"딩카어","dje":"자르마어","doi":"도그리어","dsb":"저지 소르비아어","dtp":"dtp","dua":"드와라어","dum":"중세 네덜란드어","dv":"디베히어","dyo":"졸라 포니어","dyu":"드율라어","dz":"종카어","dzg":"다장가어","ebu":"엠부어","ee":"에웨어","efi":"이픽어","egl":"egl","egy":"이집트어 (고대)","eka":"이카죽어","el":"그리스어","elx":"엘람어","en":"영어","en-AU":"영어(호주)","en-CA":"영어 (캐나다)","en-GB":"영어 (영국식)","en-GB-alt-short":"en_GB","en-US":"en_US","en-US-alt-short":"en_US","enm":"영어, 중세","eo":"에스페란토어","es":"스페인어","es-419":"중남미 스페인어","es-ES":"유럽식 스페인어","es-MX":"es_MX","esu":"esu","et":"에스토니아어","eu":"바스크어","ewo":"이원도어","ext":"ext","fa":"페르시아어","fan":"팡그어","fat":"판티어","ff":"풀라어","fi":"핀란드어","fil":"필리핀어","fit":"fit","fj":"피지어","fo":"페로어","fon":"폰어","fr":"프랑스어","fr-CA":"프랑스어 (캐나다)","fr-CH":"프랑스어 (스위스)","frc":"frc","frm":"중세 프랑스어","fro":"고대 프랑스어","frp":"frp","frr":"북부 프리슬란드어","frs":"동부 프리슬란드어","fur":"프리우리안어","fy":"프리지아어","ga":"아일랜드어","gaa":"가어","gag":"가가우스어","gan":"gan","gay":"가요어","gba":"그바야어","gbz":"조로아스터 다리어","gd":"스코틀랜드 게일어","gez":"게이즈어","gil":"키리바시어","gl":"갈리시아어","glk":"길라키어","gmh":"중세 고지 독일어","gn":"과라니어","goh":"고대 고지 독일어","gom":"고아 콘칸어","gon":"곤디어","gor":"고론탈로어","got":"고트어","grb":"게르보어","grc":"그리스어, 고대","gsw":"독일어(스위스)","gu":"구자라트어","guc":"guc","gur":"gur","guz":"구시어","gv":"맹크스어","gwi":"그위친어","ha":"하우사어","hai":"하이다어","hak":"hak","haw":"하와이어","he":"히브리어","hi":"힌디어","hif":"피지 힌디어","hil":"헤리가뇬어","hit":"하타이트어","hmn":"히몸어","ho":"히리 모투어","hr":"크로아티아어","hsb":"고지 소르비아어","hsn":"hsn","ht":"아이티어","hu":"헝가리어","hup":"후파어","hy":"아르메니아어","hz":"헤레로어","ia":"인테르링구아 (국제보조어협회)","iba":"이반어","ibb":"이비비오어","id":"인도네시아어","ie":"인테르링구에","ig":"이그보어","ii":"쓰촨 이어","ik":"이누피아크어","ilo":"이로코어","inh":"인귀시어","io":"이도어","is":"아이슬란드어","it":"이탈리아어","iu":"이눅티투트어","izh":"izh","ja":"일본어","jam":"jam","jbo":"로반어","jgo":"응곰바어","jmc":"마차메어","jpr":"유대-페르시아어","jrb":"유대-아라비아어","jut":"jut","jv":"자바어","ka":"조지아어","kaa":"카라칼파크어","kab":"커바일어","kac":"카친어","kaj":"까꼬토끄어","kam":"캄바어","kaw":"카위어","kbd":"카바르디어","kbl":"카넴부어","kcg":"티얍어","kde":"마콘데어","kea":"크리올어","ken":"ken","kfo":"코로어","kg":"콩고어","kgp":"kgp","kha":"카시어","kho":"호탄어","khq":"코이라 친니어","khw":"코와르어","ki":"키쿠유어","kiu":"kiu","kj":"쿠안야마어","kk":"카자흐어","kkj":"카코어","kl":"그린란드어","kln":"칼렌진어","km":"캄보디아어","kmb":"킴분두어","kn":"칸나다어","ko":"한국어","koi":"코미페르먀크어","kok":"코카니어","kos":"코스라이엔어","kpe":"크펠레어","kr":"칸누리어","krc":"카라챠이-발카르어","kri":"kri","krj":"krj","krl":"카렐리야어","kru":"쿠르크어","ks":"카슈미르어","ksb":"샴발라어","ksf":"바피아어","ksh":"콜로그니안어","ku":"쿠르드어","kum":"쿠믹어","kut":"쿠테네어","kv":"코미어","kw":"콘월어","ky":"키르기스어","la":"라틴어","lad":"라디노어","lag":"랑기어","lah":"라한다어","lam":"람바어","lb":"룩셈부르크어","lez":"레즈기안어","lfn":"링구아 프랑카 노바","lg":"간다어","li":"림버거어","lij":"lij","liv":"liv","lkt":"라코타어","lmo":"lmo","ln":"링갈라어","lo":"라오어","lol":"몽구어","loz":"로지어","lt":"리투아니아어","ltg":"ltg","lu":"루바-카탄가어","lua":"루바-룰루아어","lui":"루이세노어","lun":"룬다어","luo":"루오어","lus":"루샤이어","luy":"루야어","lv":"라트비아어","lzh":"lzh","lzz":"lzz","mad":"마두라어","maf":"마파어","mag":"마가히","mai":"마이틸리","mak":"마카사어","man":"만딩고어","mas":"마사이어","mde":"마바어","mdf":"모크샤어","mdr":"만다르어","men":"멘데어","mer":"메루어","mfe":"모리스얀어","mg":"말라가시어","mga":"아일랜드어, 중세","mgh":"마크후와-메토어","mgo":"메타어","mh":"마셜제도어","mi":"마오리어","mic":"미크맥어","min":"미낭카바우","mk":"마케도니아어","ml":"말라얄람어","mn":"몽고어","mnc":"만주어","mni":"마니푸리어","moh":"모호크어","mos":"모시어","mr":"마라티어","mrj":"서부 마리어","ms":"말레이어","mt":"몰타어","mua":"문당어","mul":"다중 언어","mus":"크리크어","mwl":"미란데어","mwr":"마르와리어","mwv":"mwv","my":"버마어","mye":"미예네어","myv":"엘즈야어","mzn":"마잔데라니어","na":"나우루어","nan":"nan","nap":"나폴리어","naq":"나마어","nb":"노르웨이어(보크말)","nd":"북부 은데벨레어","nds":"저지 독일어","ne":"네팔어","new":"네와르어","ng":"느동가어","nia":"니아스어","niu":"니웨언어","njo":"njo","nl":"네덜란드어","nl-BE":"플라망어","nmg":"크와시오어","nn":"노르웨이어(니노르스크)","nnh":"느기엠본어","no":"노르웨이어","nog":"노가이어","non":"노르웨이, 고대","nov":"nov","nqo":"응코어","nr":"남부 은데벨레어","nso":"소토어 (북부)","nus":"누에르어","nv":"나바호어","nwc":"네와르어 (고전)","ny":"니안자어; 치츄어; 츄어","nym":"니암웨지어","nyn":"니안콜어","nyo":"뉴로어","nzi":"느지마어","oc":"오크어","oj":"오지브웨이어","om":"오로모어","or":"오리야어","os":"오세트어","osa":"오세이지어","ota":"터키어, 오스만","pa":"펀잡어","pag":"판가시난어","pal":"팔레비어","pam":"팜팡가어","pap":"파피아먼토어","pau":"파라우안어","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"고대 페르시아어","pfl":"pfl","phn":"페니키아어","pi":"팔리어","pl":"폴란드어","pms":"pms","pnt":"폰틱어","pon":"폼페이어","prg":"prg","pro":"고대 프로방스어","ps":"파슈토어","pt":"포르투갈어","pt-BR":"포르투갈어 (브라질)","pt-PT":"유럽식 포르투갈어","qu":"케추아어","quc":"키체어","qug":"qug","raj":"라자스탄어","rap":"라파뉴이","rar":"라로통가어","rgn":"rgn","rif":"rif","rm":"레토로만어","rn":"룬디어","ro":"루마니아어","ro-MD":"몰도바어","rof":"롬보어","rom":"집시어","root":"어근","rtm":"rtm","ru":"러시아어","rue":"루신어","rug":"rug","rup":"아로마니아어","rw":"르완다어","rwk":"르와어","sa":"산스크리트어","sad":"산다웨어","sah":"야큐트어","sam":"사마리아 아랍어","saq":"삼부루어","sas":"사사크어","sat":"산탈리어","saz":"saz","sba":"느감바이어","sbp":"상구어","sc":"사르디니아어","scn":"시칠리아어","sco":"스코틀랜드어","sd":"신디어","sdc":"sdc","se":"북부 사미어","see":"세네카어","seh":"세나어","sei":"sei","sel":"셀쿠프어","ses":"코이야보로 세니어","sg":"산고어","sga":"아일랜드, 고대","sgs":"sgs","sh":"세르비아-크로아티아어","shi":"타셸히트어","shn":"샨어","shu":"차디언 아라비아어","si":"스리랑카어","sid":"시다모어","sk":"슬로바키아어","sl":"슬로베니아어","sli":"sli","sly":"sly","sm":"사모아어","sma":"남부 사미어","smj":"룰레 사미어","smn":"이나리 사미어","sms":"스콜트 사미어","sn":"쇼나어","snk":"소닌케어","so":"소말리아어","sog":"소그디엔어","sq":"알바니아어","sr":"세르비아어","srn":"스라난 통가어","srr":"세레르어","ss":"시스와티어","ssy":"사호어","st":"소토어 (남부)","stq":"stq","su":"순다어","suk":"수쿠마족어","sus":"수수어","sux":"수메르어","sv":"스웨덴어","sw":"스와힐리어","swb":"코모로어","swc":"콩고 스와힐리어","syc":"시리아어 (고전)","syr":"시리아어","szl":"szl","ta":"타밀어","tcy":"tcy","te":"텔루구어","tem":"팀니어","teo":"테조어","ter":"테레노어","tet":"테툼어","tg":"타지크어","th":"태국어","ti":"티그리냐어","tig":"티그레어","tiv":"티비어","tk":"투르크멘어","tkl":"토켈라우제도어","tkr":"차후르어","tl":"타갈로그어","tlh":"클링온어","tli":"틀링깃족어","tly":"탈리쉬어","tmh":"타마섹어","tn":"세츠와나어","to":"통가어","tog":"통가어 (니아살랜드)","tpi":"토크 피신어","tr":"터키어","tru":"tru","trv":"타로코어","ts":"총가어","tsd":"tsd","tsi":"트심시안어","tt":"타타르어","ttt":"ttt","tum":"툼부카어","tvl":"투발루어","tw":"트위어","twq":"타사와크어","ty":"타히티어","tyv":"투비니안어","tzm":"중앙모로코 타마지트어","udm":"우드말트어","ug":"위구르어","uga":"유가리틱어","uk":"우크라이나어","umb":"윤번두어","und":"알 수 없는 언어","ur":"우르두어","uz":"우즈베크어","vai":"바이어","ve":"벤다어","vec":"vec","vep":"vep","vi":"베트남어","vls":"vls","vmf":"vmf","vo":"볼라퓌크어","vot":"보틱어","vro":"vro","vun":"분조어","wa":"왈론어","wae":"월저어","wal":"와라모어","war":"와라이어","was":"와쇼어","wo":"올로프어","wuu":"wuu","xal":"칼미크어","xh":"코사어","xmf":"xmf","xog":"소가어","yao":"야오족어","yap":"얍페세어","yav":"양본어","ybb":"옘바어","yi":"이디시어","yo":"요루바어","yrl":"yrl","yue":"광둥어","za":"주앙어","zap":"사포테크어","zbl":"블리스 심볼","zea":"zea","zen":"제나가어","zgh":"표준 모로코 타마제크어","zh":"중국어","zh-Hans":"중국어(간체)","zh-Hant":"중국어(번체)","zu":"줄루어","zun":"주니어","zxx":"언어 관련 내용 없음","zza":"자자어"} \ No newline at end of file diff --git a/Punic/data/ko/listPatterns.json b/Punic/data/ko/listPatterns.json new file mode 100644 index 0000000..5e2b1d2 --- /dev/null +++ b/Punic/data/ko/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s 및 %2$s","2":"%1$s 및 %2$s"},"unit":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"}} \ No newline at end of file diff --git a/Punic/data/ko/localeDisplayNames.json b/Punic/data/ko/localeDisplayNames.json new file mode 100644 index 0000000..7eb402a --- /dev/null +++ b/Punic/data/ko/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s(%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"달력","colAlternate":"기호 정렬 무시","colBackwards":"악센트 역순 정렬","colCaseFirst":"대문자/소문자 순서","colCaseLevel":"대/소문자 구분 정렬","colHiraganaQuaternary":"가나 정렬","colNormalization":"표준 정렬","colNumeric":"숫자 정렬","colStrength":"정렬 강도","collation":"정렬 순서","currency":"통화","numbers":"숫자","timezone":"시간대","va":"방언","variableTop":"기호로 정렬","x":"공개 여부"},"types":{"numbers":{"vaii":"바이 숫자"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"대만력"},"colStrength":{"tertiary":"악센트/대소문자/전반각 정렬"},"colCaseFirst":{"upper":"대문자 우선 정렬"},"colBackwards":{"yes":"악센트 역순 정렬"},"colCaseLevel":{"yes":"대/소문자 구분 정렬"},"colHiraganaQuaternary":{"yes":"가나를 다르게 정렬"},"colNormalization":{"yes":"유니코드 표준화 정렬"},"colNumeric":{"yes":"숫자 정렬"},"colAlternate":{"shifted":"기호 무시 정렬"}},"codePatterns":{"language":"언어: %1$s","script":"스크립트: %1$s","territory":"지역: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ko/numbers.json b/Punic/data/ko/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/ko/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ko/territories.json b/Punic/data/ko/territories.json new file mode 100644 index 0000000..6d0baac --- /dev/null +++ b/Punic/data/ko/territories.json @@ -0,0 +1 @@ +{"001":"세계","002":"아프리카","003":"북아메리카","005":"남아메리카(남미)","009":"오세아니아","011":"서아프리카","013":"중앙 아메리카","014":"동부 아프리카","015":"북부 아프리카","017":"중부 아프리카","018":"남부 아프리카","019":"아메리카 대륙","021":"북부 아메리카","029":"카리브 제도","030":"동아시아","034":"남아시아","035":"동남아시아","039":"남유럽","053":"오스트랄라시아","054":"멜라네시아","057":"미크로네시아 지역","061":"폴리네시아","142":"아시아","143":"중앙 아시아","145":"서아시아","150":"유럽","151":"동유럽","154":"북유럽","155":"서유럽","419":"라틴 아메리카","AC":"어센션 섬","AD":"안도라","AE":"아랍에미리트 연합","AF":"아프가니스탄","AG":"앤티가 바부다","AI":"안길라","AL":"알바니아","AM":"아르메니아","AN":"네덜란드령 안틸레스","AO":"앙골라","AQ":"남극 대륙","AR":"아르헨티나","AS":"아메리칸 사모아","AT":"오스트리아","AU":"오스트레일리아","AW":"아루바","AX":"올란드 제도","AZ":"아제르바이잔","BA":"보스니아 헤르체고비나","BB":"바베이도스","BD":"방글라데시","BE":"벨기에","BF":"부르키나파소","BG":"불가리아","BH":"바레인","BI":"부룬디","BJ":"베냉","BL":"생 바르텔르미","BM":"버뮤다","BN":"브루나이","BO":"볼리비아","BQ":"네덜란드령 카리브","BR":"브라질","BS":"바하마","BT":"부탄","BV":"부베","BW":"보츠와나","BY":"벨라루스","BZ":"벨리즈","CA":"캐나다","CC":"코코스제도","CD":"콩고-킨샤사","CD-alt-variant":"콩고민주공화국","CF":"중앙 아프리카 공화국","CG":"콩고","CG-alt-variant":"콩고 공화국","CH":"스위스","CI":"코트디부아르","CI-alt-variant":"CI","CK":"쿡제도","CL":"칠레","CM":"카메룬","CN":"중국","CO":"콜롬비아","CP":"클립퍼튼 섬","CR":"코스타리카","CU":"쿠바","CV":"까뽀베르데","CW":"퀴라소","CX":"크리스마스섬","CY":"사이프러스","CZ":"체코","DE":"독일","DG":"디에고 가르시아","DJ":"지부티","DK":"덴마크","DM":"도미니카","DO":"도미니카 공화국","DZ":"알제리","EA":"세우타 및 멜리야","EC":"에콰도르","EE":"에스토니아","EG":"이집트","EH":"서사하라","ER":"에리트리아","ES":"스페인","ET":"이디오피아","EU":"유럽 연합","FI":"핀란드","FJ":"피지","FK":"포클랜드 제도","FK-alt-variant":"포클랜드 제도(말비나스 군도)","FM":"미크로네시아","FO":"페로제도","FR":"프랑스","GA":"가봉","GB":"영국","GB-alt-short":"영국","GD":"그레나다","GE":"조지아","GF":"프랑스령 기아나","GG":"건지","GH":"가나","GI":"지브롤터","GL":"그린란드","GM":"감비아","GN":"기니","GP":"과들루프","GQ":"적도 기니","GR":"그리스","GS":"사우스조지아 사우스샌드위치 제도","GT":"과테말라","GU":"괌","GW":"기네비쏘","GY":"가이아나","HK":"홍콩, 중국 특별행정구","HK-alt-short":"홍콩","HM":"허드섬-맥도널드제도","HN":"온두라스","HR":"크로아티아","HT":"아이티","HU":"헝가리","IC":"카나리아 제도","ID":"인도네시아","IE":"아일랜드","IL":"이스라엘","IM":"맨 섬","IN":"인도","IO":"영국령인도양식민지","IQ":"이라크","IR":"이란","IS":"아이슬란드","IT":"이탈리아","JE":"저지","JM":"자메이카","JO":"요르단","JP":"일본","KE":"케냐","KG":"키르기스스탄","KH":"캄보디아","KI":"키리바시","KM":"코모로스","KN":"세인트 키츠 네비스","KP":"조선 민주주의 인민 공화국","KR":"대한민국","KW":"쿠웨이트","KY":"케이맨제도","KZ":"카자흐스탄","LA":"라오스","LB":"레바논","LC":"세인트루시아","LI":"리히텐슈타인","LK":"스리랑카","LR":"라이베리아","LS":"레소토","LT":"리투아니아","LU":"룩셈부르크","LV":"라트비아","LY":"리비아","MA":"모로코","MC":"모나코","MD":"몰도바","ME":"몬테네그로","MF":"생 마르탱","MG":"마다가스카르","MH":"마샬 군도","MK":"마케도니아","MK-alt-variant":"마케도니아(FYROM)","ML":"말리","MM":"미얀마","MN":"몽골","MO":"마카오, 중국 특별행정구","MO-alt-short":"마카오","MP":"북마리아나제도","MQ":"말티니크","MR":"모리타니","MS":"몬트세라트","MT":"몰타","MU":"모리셔스","MV":"몰디브","MW":"말라위","MX":"멕시코","MY":"말레이시아","MZ":"모잠비크","NA":"나미비아","NC":"뉴 칼레도니아","NE":"니제르","NF":"노퍽섬","NG":"나이지리아","NI":"니카라과","NL":"네덜란드","NO":"노르웨이","NP":"네팔","NR":"나우루","NU":"니우에","NZ":"뉴질랜드","OM":"오만","PA":"파나마","PE":"페루","PF":"프랑스령 폴리네시아","PG":"파푸아뉴기니","PH":"필리핀","PK":"파키스탄","PL":"폴란드","PM":"생피에르 미클롱","PN":"핏케언 섬","PR":"푸에르토리코","PS":"팔레스타인 지구","PS-alt-short":"팔레스타인","PT":"포르투갈","PW":"팔라우","PY":"파라과이","QA":"카타르","QO":"오세아니아 외곽","RE":"리유니온","RO":"루마니아","RS":"세르비아","RU":"러시아","RW":"르완다","SA":"사우디아라비아","SB":"솔로몬 제도","SC":"쉐이쉘","SD":"수단","SE":"스웨덴","SG":"싱가포르","SH":"세인트헬레나","SI":"슬로베니아","SJ":"스발바르제도-얀마웬섬","SK":"슬로바키아","SL":"시에라리온","SM":"산마리노","SN":"세네갈","SO":"소말리아","SR":"수리남","SS":"남수단","ST":"상투메 프린시페","SV":"엘살바도르","SX":"신트마르턴","SY":"시리아","SZ":"스와질랜드","TA":"트리스탄다쿠나","TC":"터크스케이커스제도","TD":"차드","TF":"프랑스 남부 지방","TG":"토고","TH":"태국","TJ":"타지키스탄","TK":"토켈라우","TL":"동티모르","TL-alt-variant":"TL","TM":"투르크메니스탄","TN":"튀니지","TO":"통가","TR":"터키","TT":"트리니다드 토바고","TV":"투발루","TW":"대만","TZ":"탄자니아","UA":"우크라이나","UG":"우간다","UM":"미국령 해외 제도","US":"미국","US-alt-short":"미국","UY":"우루과이","UZ":"우즈베키스탄","VA":"바티칸","VC":"세인트빈센트그레나딘","VE":"베네수엘라","VG":"영국령 버진 아일랜드","VI":"미국령 버진 아일랜드","VN":"베트남","VU":"바누아투","WF":"왈리스-푸투나 제도","WS":"사모아","XK":"코소보","YE":"예멘","YT":"마요티","ZA":"남아프리카","ZM":"잠비아","ZW":"짐바브웨","ZZ":"알려지지 않은 지역"} \ No newline at end of file diff --git a/Punic/data/ko/timeZoneNames.json b/Punic/data/ko/timeZoneNames.json new file mode 100644 index 0000000..fc74138 --- /dev/null +++ b/Punic/data/ko/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s 시간","regionFormat-type-standard":"%1$s 표준시","regionFormat-type-daylight":"%1$s 하계 표준시","fallbackFormat":"%2$s(%1$s)","zone":{"America":{"Adak":{"exemplarCity":"에이닥"},"Anchorage":{"exemplarCity":"앵커리지"},"Anguilla":{"exemplarCity":"앙귈라"},"Antigua":{"exemplarCity":"안티과"},"Araguaina":{"exemplarCity":"아라과이나"},"Argentina":{"La_Rioja":{"exemplarCity":"라 리오하"},"Rio_Gallegos":{"exemplarCity":"리오 가예고스"},"Salta":{"exemplarCity":"살타"},"San_Juan":{"exemplarCity":"산후안"},"San_Luis":{"exemplarCity":"산루이스"},"Tucuman":{"exemplarCity":"뚜꾸만"},"Ushuaia":{"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":"엘살바도르"},"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":{"Knox":{"exemplarCity":"인디애나주 녹스"},"Marengo":{"exemplarCity":"인디애나주, 마렝고"},"Petersburg":{"exemplarCity":"인디애나주, 피츠버그"},"Tell_City":{"exemplarCity":"인디아나주, 텔시티"},"Vevay":{"exemplarCity":"비비"},"Vincennes":{"exemplarCity":"인디아나주, 뱅센"},"Winamac":{"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":"노스다코타주, 베라"},"Center":{"exemplarCity":"중부, 노스다코타"},"New_Salem":{"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":"안도라"},"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":"키예프"},"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":"티라나"},"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":"방콕"},"Beirut":{"exemplarCity":"베이루트"},"Bishkek":{"exemplarCity":"비슈케크"},"Brunei":{"exemplarCity":"브루나이"},"Calcutta":{"exemplarCity":"콜카타"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"초이발산"},"Chongqing":{"exemplarCity":"충칭"},"Colombo":{"exemplarCity":"콜롬보"},"Damascus":{"exemplarCity":"다마스쿠스"},"Dhaka":{"exemplarCity":"다카"},"Dili":{"exemplarCity":"딜리"},"Dubai":{"exemplarCity":"두바이"},"Dushanbe":{"exemplarCity":"두샨베"},"Gaza":{"exemplarCity":"가자"},"Harbin":{"exemplarCity":"하얼빈"},"Hebron":{"exemplarCity":"헤브론"},"Hong_Kong":{"exemplarCity":"홍콩"},"Hovd":{"exemplarCity":"호브드"},"Irkutsk":{"exemplarCity":"이르쿠츠크"},"Jakarta":{"exemplarCity":"자카르타"},"Jayapura":{"exemplarCity":"자야푸라"},"Jerusalem":{"exemplarCity":"예루살렘"},"Kabul":{"exemplarCity":"카불"},"Kamchatka":{"exemplarCity":"캄차카"},"Karachi":{"exemplarCity":"카라치"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"타이베이"},"Tashkent":{"exemplarCity":"타슈켄트"},"Tbilisi":{"exemplarCity":"트빌리시"},"Tehran":{"exemplarCity":"테헤란"},"Thimphu":{"exemplarCity":"팀부"},"Tokyo":{"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":"오클랜드"},"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":{"Acre":{"long":{"generic":"아크레 시간","standard":"아크레 표준시","daylight":"아크레 하계 표준시"}},"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":"알래스카 하계 표준시"}},"Almaty":{"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":"아피아 하계 표준시"}},"Aqtau":{"long":{"generic":"악타우 표준 시간","standard":"악타우 표준 표준시","daylight":"악타우 서머 타임"}},"Aqtobe":{"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":"카보 베르데 하계 표준시"}},"Casey":{"long":{"standard":"케이시 시간"}},"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":"프랑스령 남부 식민지 및 남극 시간"}},"GMT":{"long":{"standard":"그리니치 표준시"}},"Galapagos":{"long":{"standard":"갈라파고스 시간"}},"Gambier":{"long":{"standard":"감비에 시간"}},"Georgia":{"long":{"generic":"그루지아 시간","standard":"그루지아 표준시","daylight":"그루지아 하계 표준시"}},"Gilbert_Islands":{"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":"키르기스스탄 시간"}},"Lanka":{"long":{"standard":"랑카 표준 시간"}},"Line_Islands":{"long":{"standard":"라인 제도 시간"}},"Lord_Howe":{"long":{"generic":"로드 하우 시간","standard":"로드 하우 표준시","daylight":"로드 하우 하계 표준시"}},"Macau":{"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":"포나페 시간"}},"Qyzylorda":{"long":{"generic":"키질로르다 시간","standard":"키질로르다 표준 시간","daylight":"키질로르다 서머 타임"}},"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":"예카테린부르크 하계 표준시"}}}} \ No newline at end of file diff --git a/Punic/data/ko/units.json b/Punic/data/ko/units.json new file mode 100644 index 0000000..d4b126f --- /dev/null +++ b/Punic/data/ko/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%2$s당 %1$s","acceleration":{"g-force":{"_name":"중력가속도","other":"%1$s 중력가속도"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"분각","other":"%1$s분각"},"arc-second":{"_name":"각초","other":"%1$s각초"},"degree":{"_name":"도","other":"%1$s도"},"radian":{"_name":"라디안","other":"%1$s라디안"}},"area":{"acre":{"_name":"에이커","other":"%1$s에이커"},"hectare":{"_name":"헥타르","other":"%1$s헥타르"},"square-centimeter":{"_name":"제곱센티미터","other":"%1$s제곱센티미터"},"square-foot":{"_name":"제곱피트","other":"%1$s제곱피트"},"square-inch":{"_name":"제곱인치","other":"%1$s제곱인치"},"square-kilometer":{"_name":"제곱킬로미터","other":"%1$s제곱킬로미터"},"square-meter":{"_name":"제곱미터","other":"%1$s제곱미터"},"square-mile":{"_name":"제곱마일","other":"%1$s제곱마일"},"square-yard":{"_name":"제곱야드","other":"%1$s제곱야드"}},"consumption":{"liter-per-kilometer":{"_name":"킬로미터당 리터","other":"킬로미터당 %1$s리터"},"mile-per-gallon":{"_name":"갤런당 마일","other":"갤런당 %1$s마일"}},"digital":{"bit":{"_name":"비트","other":"%1$s비트"},"byte":{"_name":"바이트","other":"%1$s바이트"},"gigabit":{"_name":"기가비트","other":"%1$s기가비트"},"gigabyte":{"_name":"기가바이트","other":"%1$s기가바이트"},"kilobit":{"_name":"킬로비트","other":"%1$s킬로비트"},"kilobyte":{"_name":"킬로바이트","other":"%1$s킬로바이트"},"megabit":{"_name":"메가비트","other":"%1$s메가비트"},"megabyte":{"_name":"메가바이트","other":"%1$s메가바이트"},"terabit":{"_name":"테라비트","other":"%1$s테라비트"},"terabyte":{"_name":"테라바이트","other":"%1$s테라바이트"}},"duration":{"day":{"_name":"일","other":"%1$s일"},"hour":{"_name":"시간","other":"%1$s시간","_per":"%1$s/h"},"microsecond":{"_name":"마이크로초","other":"%1$s마이크로초"},"millisecond":{"_name":"밀리초","other":"%1$s밀리초"},"minute":{"_name":"분","other":"%1$s분"},"month":{"_name":"개월","other":"%1$s개월"},"nanosecond":{"_name":"나노초","other":"%1$s나노초"},"second":{"_name":"초","other":"%1$s초","_per":"%1$s/s"},"week":{"_name":"주","other":"%1$s주"},"year":{"_name":"년","other":"%1$s년"}},"electric":{"ampere":{"_name":"암페어","other":"%1$s암페어"},"milliampere":{"_name":"밀리암페어","other":"%1$s밀리암페어"},"ohm":{"_name":"옴","other":"%1$s옴"},"volt":{"_name":"볼트","other":"%1$s볼트"}},"energy":{"calorie":{"_name":"칼로리","other":"%1$s칼로리"},"foodcalorie":{"_name":"칼로리","other":"%1$s칼로리"},"joule":{"_name":"줄","other":"%1$s줄"},"kilocalorie":{"_name":"킬로칼로리","other":"%1$s킬로칼로리"},"kilojoule":{"_name":"킬로줄","other":"%1$s킬로줄"},"kilowatt-hour":{"_name":"킬로와트시","other":"%1$s킬로와트시"}},"frequency":{"gigahertz":{"_name":"기가헤르츠","other":"%1$s기가헤르츠"},"hertz":{"_name":"헤르츠","other":"%1$s헤르츠"},"kilohertz":{"_name":"킬로헤르츠","other":"%1$s킬로헤르츠"},"megahertz":{"_name":"메가헤르츠","other":"%1$s메가헤르츠"}},"length":{"astronomical-unit":{"_name":"천문 단위","other":"%1$s 천문 단위"},"centimeter":{"_name":"센티미터","other":"%1$s센티미터"},"decimeter":{"_name":"데시미터","other":"%1$s데시미터"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"피트","other":"%1$s피트"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"인치","other":"%1$s인치"},"kilometer":{"_name":"킬로미터","other":"%1$s킬로미터"},"light-year":{"_name":"광년","other":"%1$s광년"},"meter":{"_name":"미터","other":"%1$s미터"},"micrometer":{"_name":"마이크로미터","other":"%1$s마이크로미터"},"mile":{"_name":"마일","other":"%1$s마일"},"millimeter":{"_name":"밀리미터","other":"%1$s밀리미터"},"nanometer":{"_name":"나노미터","other":"%1$s나노미터"},"nautical-mile":{"_name":"해리","other":"%1$s해리"},"parsec":{"_name":"파섹","other":"%1$s파섹"},"picometer":{"_name":"피코미터","other":"%1$s피코미터"},"yard":{"_name":"야드","other":"%1$s야드"}},"light":{"lux":{"_name":"룩스","other":"%1$s룩스"}},"mass":{"carat":{"_name":"캐럿","other":"%1$s캐럿"},"gram":{"_name":"그램","other":"%1$s그램"},"kilogram":{"_name":"킬로그램","other":"%1$s킬로그램"},"metric-ton":{"_name":"메트릭 톤","other":"%1$s메트릭 톤"},"microgram":{"_name":"마이크로그램","other":"%1$s마이크로그램"},"milligram":{"_name":"밀리그램","other":"%1$s밀리그램"},"ounce":{"_name":"온스","other":"%1$s온스"},"ounce-troy":{"_name":"트로이 온스","other":"%1$s트로이 온스"},"pound":{"_name":"파운드","other":"%1$s파운드"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"톤","other":"%1$s톤"}},"power":{"gigawatt":{"_name":"기가와트","other":"%1$s기가와트"},"horsepower":{"_name":"마력","other":"%1$s마력"},"kilowatt":{"_name":"킬로와트","other":"%1$s킬로와트"},"megawatt":{"_name":"메가와트","other":"%1$s메가와트"},"milliwatt":{"_name":"밀리와트","other":"%1$s밀리와트"},"watt":{"_name":"와트","other":"%1$s와트"}},"pressure":{"hectopascal":{"_name":"헥토파스칼","other":"%1$s헥토파스칼"},"inch-hg":{"_name":"수은주인치","other":"%1$s수은주인치"},"millibar":{"_name":"밀리바","other":"%1$s밀리바"},"millimeter-of-mercury":{"_name":"수은주밀리미터","other":"%1$s수은주밀리미터"},"pound-per-square-inch":{"_name":"제곱인치당 파운드","other":"%1$s제곱인치당 파운드"}},"proportion":{"karat":{"_name":"캐럿","other":"%1$s캐럿"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"시속 %1$s킬로미터"},"meter-per-second":{"_name":"m/s","other":"초속 %1$s미터"},"mile-per-hour":{"_name":"mi/h","other":"시속 %1$s마일"}},"temperature":{"celsius":{"_name":"°C","other":"섭씨 %1$s도"},"fahrenheit":{"_name":"°F","other":"화씨 %1$s도"},"kelvin":{"_name":"켈빈","other":"%1$s켈빈"}},"volume":{"acre-foot":{"_name":"에이커 피트","other":"%1$s에이커 피트"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"센티리터","other":"%1$s센티리터"},"cubic-centimeter":{"_name":"세제곱센티미터","other":"%1$s세제곱센티미터"},"cubic-foot":{"_name":"세제곱피트","other":"%1$s세제곱피트"},"cubic-inch":{"_name":"세제곱인치","other":"%1$s세제곱인치"},"cubic-kilometer":{"_name":"세제곱킬로미터","other":"%1$s세제곱킬로미터"},"cubic-meter":{"_name":"세제곱미터","other":"%1$s세제곱미터"},"cubic-mile":{"_name":"세제곱마일","other":"%1$s세제곱마일"},"cubic-yard":{"_name":"세제곱야드","other":"%1$s세제곱야드"},"cup":{"_name":"컵","other":"%1$s컵"},"deciliter":{"_name":"데시리터","other":"%1$s데시리터"},"fluid-ounce":{"_name":"액량 온스","other":"%1$s액량 온스"},"gallon":{"_name":"갤런","other":"%1$s갤런"},"hectoliter":{"_name":"헥토리터","other":"%1$s헥토리터"},"liter":{"_name":"리터","other":"%1$s리터"},"megaliter":{"_name":"메가리터","other":"%1$s메가리터"},"milliliter":{"_name":"밀리리터","other":"%1$s밀리리터"},"pint":{"_name":"파인트","other":"%1$s파인트"},"quart":{"_name":"쿼트","other":"%1$s쿼트"},"tablespoon":{"_name":"테이블스푼","other":"%1$s테이블스푼"},"teaspoon":{"_name":"티스푼","other":"%1$s티스푼"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"중력가속도","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"′","other":"%1$s′"},"arc-second":{"_name":"″","other":"%1$s″"},"degree":{"_name":"°","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$srad"}},"area":{"acre":{"_name":"에이커","other":"%1$s에이커"},"hectare":{"_name":"헥타르","other":"%1$sha"},"square-centimeter":{"_name":"cm²","other":"%1$scm²"},"square-foot":{"_name":"제곱피트","other":"%1$sft²"},"square-inch":{"_name":"in²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","other":"%1$skm²"},"square-meter":{"_name":"m²","other":"%1$sm²"},"square-mile":{"_name":"mi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","other":"%1$sbit"},"byte":{"_name":"byte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","other":"%1$sGb"},"gigabyte":{"_name":"GByte","other":"%1$sGB"},"kilobit":{"_name":"kbit","other":"%1$skb"},"kilobyte":{"_name":"kB","other":"%1$skB"},"megabit":{"_name":"Mbit","other":"%1$sMb"},"megabyte":{"_name":"MB","other":"%1$sMB"},"terabit":{"_name":"Tbit","other":"%1$sTb"},"terabyte":{"_name":"TByte","other":"%1$sTB"}},"duration":{"day":{"_name":"일","other":"%1$s일"},"hour":{"_name":"시간","other":"%1$s시간","_per":"%1$s/h"},"microsecond":{"_name":"μs","other":"%1$sμs"},"millisecond":{"_name":"밀리초","other":"%1$sms"},"minute":{"_name":"분","other":"%1$s분"},"month":{"_name":"개월","other":"%1$s개월"},"nanosecond":{"_name":"ns","other":"%1$sns"},"second":{"_name":"초","other":"%1$s초","_per":"%1$s/s"},"week":{"_name":"주","other":"%1$s주"},"year":{"_name":"년","other":"%1$s년"}},"electric":{"ampere":{"_name":"amp","other":"%1$sA"},"milliampere":{"_name":"mA","other":"%1$smA"},"ohm":{"_name":"ohm","other":"%1$sΩ"},"volt":{"_name":"volt","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","other":"%1$sCal"},"joule":{"_name":"줄","other":"%1$s줄"},"kilocalorie":{"_name":"kcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$sau"},"centimeter":{"_name":"cm","other":"%1$scm"},"decimeter":{"_name":"dm","other":"%1$sdm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"피트","other":"%1$sft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","other":"%1$sin"},"kilometer":{"_name":"km","other":"%1$skm"},"light-year":{"_name":"ly","other":"%1$sly"},"meter":{"_name":"미터","other":"%1$sm"},"micrometer":{"_name":"µm","other":"%1$sµm"},"mile":{"_name":"마일","other":"%1$smil"},"millimeter":{"_name":"mm","other":"%1$smm"},"nanometer":{"_name":"nm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","other":"%1$snmi"},"parsec":{"_name":"파섹","other":"%1$spc"},"picometer":{"_name":"pm","other":"%1$spm"},"yard":{"_name":"야드","other":"%1$s야드"}},"light":{"lux":{"_name":"lx","other":"%1$slx"}},"mass":{"carat":{"_name":"CD","other":"%1$sCD"},"gram":{"_name":"그램","other":"%1$sg"},"kilogram":{"_name":"kg","other":"%1$skg"},"metric-ton":{"_name":"t","other":"%1$st"},"microgram":{"_name":"µg","other":"%1$sµg"},"milligram":{"_name":"mg","other":"%1$smg"},"ounce":{"_name":"oz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","other":"%1$soz t"},"pound":{"_name":"lb","other":"%1$slb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$sGW"},"horsepower":{"_name":"hp","other":"%1$sHP"},"kilowatt":{"_name":"kW","other":"%1$skW"},"megawatt":{"_name":"MW","other":"%1$sMW"},"milliwatt":{"_name":"mW","other":"%1$smW"},"watt":{"_name":"w","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","other":"%1$sinHg"},"millibar":{"_name":"mbar","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"kt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"시속 %1$skm"},"meter-per-second":{"_name":"m/s","other":"초속 %1$sm"},"mile-per-hour":{"_name":"mi/h","other":"시속 %1$smi"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$sac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","other":"%1$syd³"},"cup":{"_name":"컵","other":"%1$s컵"},"deciliter":{"_name":"dL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","other":"%1$sgal"},"hectoliter":{"_name":"hL","other":"%1$shL"},"liter":{"_name":"리터","other":"%1$sL"},"megaliter":{"_name":"ML","other":"%1$sML"},"milliliter":{"_name":"mL","other":"%1$smL"},"pint":{"_name":"pt","other":"%1$spt"},"quart":{"_name":"qt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","other":"%1$stsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"중력가속도","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"′","other":"%1$s′"},"arc-second":{"_name":"″","other":"%1$s″"},"degree":{"_name":"°","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$srad"}},"area":{"acre":{"_name":"에이커","other":"%1$sac"},"hectare":{"_name":"헥타르","other":"%1$sha"},"square-centimeter":{"_name":"cm²","other":"%1$scm²"},"square-foot":{"_name":"제곱피트","other":"%1$sft²"},"square-inch":{"_name":"in²","other":"%1$sin²"},"square-kilometer":{"_name":"km²","other":"%1$skm²"},"square-meter":{"_name":"m²","other":"%1$sm²"},"square-mile":{"_name":"mi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","other":"%1$syd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$smpg"}},"digital":{"bit":{"_name":"bit","other":"%1$sbit"},"byte":{"_name":"byte","other":"%1$sbyte"},"gigabit":{"_name":"Gbit","other":"%1$sGb"},"gigabyte":{"_name":"GByte","other":"%1$sGB"},"kilobit":{"_name":"kbit","other":"%1$skb"},"kilobyte":{"_name":"kB","other":"%1$skB"},"megabit":{"_name":"Mbit","other":"%1$sMb"},"megabyte":{"_name":"MB","other":"%1$sMB"},"terabit":{"_name":"Tbit","other":"%1$sTb"},"terabyte":{"_name":"TByte","other":"%1$sTB"}},"duration":{"day":{"_name":"일","other":"%1$s일"},"hour":{"_name":"시간","other":"%1$s시간","_per":"%1$s/h"},"microsecond":{"_name":"μs","other":"%1$sμs"},"millisecond":{"_name":"ms","other":"%1$sms"},"minute":{"_name":"분","other":"%1$s분"},"month":{"_name":"개월","other":"%1$s개월"},"nanosecond":{"_name":"ns","other":"%1$sns"},"second":{"_name":"초","other":"%1$s초","_per":"%1$s/s"},"week":{"_name":"주","other":"%1$s주"},"year":{"_name":"년","other":"%1$s년"}},"electric":{"ampere":{"_name":"amp","other":"%1$sA"},"milliampere":{"_name":"mA","other":"%1$smA"},"ohm":{"_name":"ohm","other":"%1$sΩ"},"volt":{"_name":"volt","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","other":"%1$scal"},"foodcalorie":{"_name":"Cal","other":"%1$sCal"},"joule":{"_name":"줄","other":"%1$s줄"},"kilocalorie":{"_name":"kcal","other":"%1$skcal"},"kilojoule":{"_name":"kJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$sau"},"centimeter":{"_name":"cm","other":"%1$scm"},"decimeter":{"_name":"dm","other":"%1$sdm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"피트","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","other":"%1$s″"},"kilometer":{"_name":"km","other":"%1$skm"},"light-year":{"_name":"ly","other":"%1$sly"},"meter":{"_name":"미터","other":"%1$sm"},"micrometer":{"_name":"µm","other":"%1$sµm"},"mile":{"_name":"마일","other":"%1$smi"},"millimeter":{"_name":"mm","other":"%1$smm"},"nanometer":{"_name":"nm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","other":"%1$snmi"},"parsec":{"_name":"파섹","other":"%1$spc"},"picometer":{"_name":"pm","other":"%1$spm"},"yard":{"_name":"야드","other":"%1$syd"}},"light":{"lux":{"_name":"lx","other":"%1$slx"}},"mass":{"carat":{"_name":"CD","other":"%1$sCD"},"gram":{"_name":"그램","other":"%1$sg"},"kilogram":{"_name":"kg","other":"%1$skg"},"metric-ton":{"_name":"t","other":"%1$st"},"microgram":{"_name":"µg","other":"%1$sµg"},"milligram":{"_name":"mg","other":"%1$smg"},"ounce":{"_name":"oz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","other":"%1$soz t"},"pound":{"_name":"lb","other":"%1$slb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$stn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$sGW"},"horsepower":{"_name":"hp","other":"%1$sHP"},"kilowatt":{"_name":"kW","other":"%1$skW"},"megawatt":{"_name":"MW","other":"%1$sMW"},"milliwatt":{"_name":"mW","other":"%1$smW"},"watt":{"_name":"w","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","other":"%1$s\"Hg"},"millibar":{"_name":"mbar","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$spsi"}},"proportion":{"karat":{"_name":"kt","other":"%1$skt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$sac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","other":"%1$scm³"},"cubic-foot":{"_name":"ft³","other":"%1$sft³"},"cubic-inch":{"_name":"in³","other":"%1$sin³"},"cubic-kilometer":{"_name":"km³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","other":"%1$sm³"},"cubic-mile":{"_name":"mi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","other":"%1$syd³"},"cup":{"_name":"컵","other":"%1$s컵"},"deciliter":{"_name":"dL","other":"%1$sdL"},"fluid-ounce":{"_name":"fl oz","other":"%1$sfl oz"},"gallon":{"_name":"gal","other":"%1$sgal"},"hectoliter":{"_name":"hL","other":"%1$shL"},"liter":{"_name":"리터","other":"%1$sℓ"},"megaliter":{"_name":"ML","other":"%1$sML"},"milliliter":{"_name":"mL","other":"%1$smL"},"pint":{"_name":"pt","other":"%1$spt"},"quart":{"_name":"qt","other":"%1$sqt"},"tablespoon":{"_name":"tbsp","other":"%1$stbsp"},"teaspoon":{"_name":"tsp","other":"%1$stsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/likelySubtags.json b/Punic/data/likelySubtags.json new file mode 100644 index 0000000..f9b2e88 --- /dev/null +++ b/Punic/data/likelySubtags.json @@ -0,0 +1 @@ +{"aa":"aa-Latn-ET","ab":"ab-Cyrl-GE","abr":"abr-Latn-GH","ace":"ace-Latn-ID","ach":"ach-Latn-UG","ady":"ady-Cyrl-RU","ae":"ae-Avst-IR","aeb":"aeb-Arab-TN","af":"af-Latn-ZA","agq":"agq-Latn-CM","ak":"ak-Latn-GH","akk":"akk-Xsux-IQ","aln":"aln-Latn-XK","alt":"alt-Cyrl-RU","am":"am-Ethi-ET","amo":"amo-Latn-NG","aoz":"aoz-Latn-ID","ar":"ar-Arab-EG","arc":"arc-Armi-IR","arc-Nbat":"arc-Nbat-JO","arc-Palm":"arc-Palm-SY","arn":"arn-Latn-CL","aro":"aro-Latn-BO","arq":"arq-Arab-DZ","ary":"ary-Arab-MA","arz":"arz-Arab-EG","as":"as-Beng-IN","asa":"asa-Latn-TZ","ast":"ast-Latn-ES","atj":"atj-Latn-CA","av":"av-Cyrl-RU","awa":"awa-Deva-IN","ay":"ay-Latn-BO","az":"az-Latn-AZ","az-Arab":"az-Arab-IR","az-IR":"az-Arab-IR","az-RU":"az-Cyrl-RU","azb":"azb-Arab-IR","ba":"ba-Cyrl-RU","bal":"bal-Arab-PK","ban":"ban-Latn-ID","bap":"bap-Deva-NP","bar":"bar-Latn-AT","bas":"bas-Latn-CM","bax":"bax-Bamu-CM","bbc":"bbc-Latn-ID","bbj":"bbj-Latn-CM","bci":"bci-Latn-CI","be":"be-Cyrl-BY","bem":"bem-Latn-ZM","bew":"bew-Latn-ID","bez":"bez-Latn-TZ","bfd":"bfd-Latn-CM","bfq":"bfq-Taml-IN","bft":"bft-Arab-PK","bfy":"bfy-Deva-IN","bg":"bg-Cyrl-BG","bgc":"bgc-Deva-IN","bgx":"bgx-Grek-TR","bh":"bh-Kthi-IN","bhb":"bhb-Deva-IN","bhi":"bhi-Deva-IN","bhk":"bhk-Latn-PH","bho":"bho-Deva-IN","bi":"bi-Latn-VU","bik":"bik-Latn-PH","bin":"bin-Latn-NG","bjj":"bjj-Deva-IN","bjn":"bjn-Latn-ID","bkm":"bkm-Latn-CM","bku":"bku-Latn-PH","blt":"blt-Tavt-VN","bm":"bm-Latn-ML","bmq":"bmq-Latn-ML","bn":"bn-Beng-BD","bo":"bo-Tibt-CN","bpy":"bpy-Beng-IN","bqi":"bqi-Arab-IR","bqv":"bqv-Latn-CI","br":"br-Latn-FR","bra":"bra-Deva-IN","brh":"brh-Arab-PK","brx":"brx-Deva-IN","bs":"bs-Latn-BA","bsq":"bsq-Bass-LR","bss":"bss-Latn-CM","bto":"bto-Latn-PH","btv":"btv-Deva-PK","bua":"bua-Cyrl-RU","buc":"buc-Latn-YT","bug":"bug-Latn-ID","bum":"bum-Latn-CM","bvb":"bvb-Latn-GQ","byn":"byn-Ethi-ER","byv":"byv-Latn-CM","bze":"bze-Latn-ML","ca":"ca-Latn-ES","cch":"cch-Latn-NG","ccp":"ccp-Beng-IN","ccp-Cakm":"ccp-Cakm-BD","ce":"ce-Cyrl-RU","ceb":"ceb-Latn-PH","cgg":"cgg-Latn-UG","ch":"ch-Latn-GU","chk":"chk-Latn-FM","chm":"chm-Cyrl-RU","chp":"chp-Latn-CA","chr":"chr-Cher-US","cja":"cja-Arab-KH","cjm":"cjm-Cham-VN","ckb":"ckb-Arab-IQ","co":"co-Latn-FR","cop":"cop-Copt-EG","cps":"cps-Latn-PH","cr":"cr-Cans-CA","crj":"crj-Cans-CA","crk":"crk-Cans-CA","crl":"crl-Cans-CA","crm":"crm-Cans-CA","crs":"crs-Latn-SC","cs":"cs-Latn-CZ","csb":"csb-Latn-PL","csw":"csw-Cans-CA","ctd":"ctd-Pauc-MM","cu":"cu-Cyrl-RU","cu-Glag":"cu-Glag-BG","cv":"cv-Cyrl-RU","cy":"cy-Latn-GB","da":"da-Latn-DK","dar":"dar-Cyrl-RU","dav":"dav-Latn-KE","dcc":"dcc-Arab-IN","de":"de-Latn-DE","den":"den-Latn-CA","dgr":"dgr-Latn-CA","dje":"dje-Latn-NE","dnj":"dnj-Latn-CI","doi":"doi-Arab-IN","dsb":"dsb-Latn-DE","dtm":"dtm-Latn-ML","dtp":"dtp-Latn-MY","dua":"dua-Latn-CM","dv":"dv-Thaa-MV","dyo":"dyo-Latn-SN","dyu":"dyu-Latn-BF","dz":"dz-Tibt-BT","ebu":"ebu-Latn-KE","ee":"ee-Latn-GH","efi":"efi-Latn-NG","egl":"egl-Latn-IT","egy":"egy-Egyp-EG","eky":"eky-Kali-MM","el":"el-Grek-GR","en":"en-Latn-US","en-Shaw":"en-Shaw-GB","eo":"eo-Latn-001","es":"es-Latn-ES","esu":"esu-Latn-US","et":"et-Latn-EE","ett":"ett-Ital-IT","eu":"eu-Latn-ES","ewo":"ewo-Latn-CM","ext":"ext-Latn-ES","fa":"fa-Arab-IR","fan":"fan-Latn-GQ","ff":"ff-Latn-SN","ffm":"ffm-Latn-ML","fi":"fi-Latn-FI","fil":"fil-Latn-PH","fit":"fit-Latn-SE","fj":"fj-Latn-FJ","fo":"fo-Latn-FO","fon":"fon-Latn-BJ","fr":"fr-Latn-FR","frc":"frc-Latn-US","frp":"frp-Latn-FR","frr":"frr-Latn-DE","frs":"frs-Latn-DE","fud":"fud-Latn-WF","fuq":"fuq-Latn-NE","fur":"fur-Latn-IT","fuv":"fuv-Latn-NG","fy":"fy-Latn-NL","ga":"ga-Latn-IE","gaa":"gaa-Latn-GH","gag":"gag-Latn-MD","gan":"gan-Hans-CN","gbm":"gbm-Deva-IN","gbz":"gbz-Arab-IR","gcr":"gcr-Latn-GF","gd":"gd-Latn-GB","gez":"gez-Ethi-ET","ggn":"ggn-Deva-NP","gil":"gil-Latn-KI","gjk":"gjk-Arab-PK","gju":"gju-Arab-PK","gl":"gl-Latn-ES","glk":"glk-Arab-IR","gn":"gn-Latn-PY","gom":"gom-Deva-IN","gon":"gon-Telu-IN","gor":"gor-Latn-ID","gos":"gos-Latn-NL","got":"got-Goth-UA","grc":"grc-Cprt-CY","grc-Linb":"grc-Linb-GR","grt":"grt-Beng-IN","gsw":"gsw-Latn-CH","gu":"gu-Gujr-IN","gub":"gub-Latn-BR","guc":"guc-Latn-CO","gur":"gur-Latn-GH","guz":"guz-Latn-KE","gv":"gv-Latn-IM","gvr":"gvr-Deva-NP","gwi":"gwi-Latn-CA","ha":"ha-Latn-NG","ha-CM":"ha-Arab-CM","ha-SD":"ha-Arab-SD","hak":"hak-Hans-CN","haw":"haw-Latn-US","haz":"haz-Arab-AF","he":"he-Hebr-IL","hi":"hi-Deva-IN","hif":"hif-Deva-FJ","hil":"hil-Latn-PH","hmd":"hmd-Plrd-CN","hnd":"hnd-Arab-PK","hne":"hne-Deva-IN","hnj":"hnj-Hmng-LA","hnn":"hnn-Latn-PH","hno":"hno-Arab-PK","ho":"ho-Latn-PG","hoc":"hoc-Deva-IN","hoj":"hoj-Deva-IN","hr":"hr-Latn-HR","hsb":"hsb-Latn-DE","hsn":"hsn-Hans-CN","ht":"ht-Latn-HT","hu":"hu-Latn-HU","hy":"hy-Armn-AM","ia":"ia-Latn-FR","ibb":"ibb-Latn-NG","id":"id-Latn-ID","ig":"ig-Latn-NG","ii":"ii-Yiii-CN","ik":"ik-Latn-US","ikt":"ikt-Latn-CA","ilo":"ilo-Latn-PH","in":"in-Latn-ID","inh":"inh-Cyrl-RU","is":"is-Latn-IS","it":"it-Latn-IT","iu":"iu-Cans-CA","iw":"iw-Hebr-IL","izh":"izh-Latn-RU","ja":"ja-Jpan-JP","jam":"jam-Latn-JM","jgo":"jgo-Latn-CM","ji":"ji-Hebr-UA","jmc":"jmc-Latn-TZ","jml":"jml-Deva-NP","jut":"jut-Latn-DK","jv":"jv-Latn-ID","jw":"jw-Latn-ID","ka":"ka-Geor-GE","kaa":"kaa-Cyrl-UZ","kab":"kab-Latn-DZ","kaj":"kaj-Latn-NG","kam":"kam-Latn-KE","kao":"kao-Latn-ML","kbd":"kbd-Cyrl-RU","kcg":"kcg-Latn-NG","kck":"kck-Latn-ZW","kde":"kde-Latn-TZ","kdt":"kdt-Thai-TH","kea":"kea-Latn-CV","ken":"ken-Latn-CM","kfo":"kfo-Latn-CI","kfr":"kfr-Deva-IN","kfy":"kfy-Deva-IN","kg":"kg-Latn-CD","kge":"kge-Latn-ID","kgp":"kgp-Latn-BR","kha":"kha-Latn-IN","khb":"khb-Talu-CN","khn":"khn-Deva-IN","khq":"khq-Latn-ML","kht":"kht-Mymr-IN","khw":"khw-Arab-PK","ki":"ki-Latn-KE","kiu":"kiu-Latn-TR","kj":"kj-Latn-NA","kjg":"kjg-Laoo-LA","kk":"kk-Cyrl-KZ","kk-AF":"kk-Arab-AF","kk-Arab":"kk-Arab-CN","kk-CN":"kk-Arab-CN","kk-IR":"kk-Arab-IR","kk-MN":"kk-Arab-MN","kkj":"kkj-Latn-CM","kl":"kl-Latn-GL","kln":"kln-Latn-KE","km":"km-Khmr-KH","kmb":"kmb-Latn-AO","kn":"kn-Knda-IN","ko":"ko-Kore-KR","koi":"koi-Cyrl-RU","kok":"kok-Deva-IN","kos":"kos-Latn-FM","kpe":"kpe-Latn-LR","krc":"krc-Cyrl-RU","kri":"kri-Latn-SL","krj":"krj-Latn-PH","krl":"krl-Latn-RU","kru":"kru-Deva-IN","ks":"ks-Arab-IN","ksb":"ksb-Latn-TZ","ksf":"ksf-Latn-CM","ksh":"ksh-Latn-DE","ku":"ku-Latn-TR","ku-Arab":"ku-Arab-IQ","ku-LB":"ku-Arab-LB","kum":"kum-Cyrl-RU","kv":"kv-Cyrl-RU","kvr":"kvr-Latn-ID","kvx":"kvx-Arab-PK","kw":"kw-Latn-GB","kxm":"kxm-Thai-TH","kxp":"kxp-Arab-PK","ky":"ky-Cyrl-KG","ky-Arab":"ky-Arab-CN","ky-CN":"ky-Arab-CN","ky-Latn":"ky-Latn-TR","ky-TR":"ky-Latn-TR","la":"la-Latn-VA","lab":"lab-Lina-GR","lad":"lad-Hebr-IL","lag":"lag-Latn-TZ","lah":"lah-Arab-PK","laj":"laj-Latn-UG","lb":"lb-Latn-LU","lbe":"lbe-Cyrl-RU","lbw":"lbw-Latn-ID","lcp":"lcp-Thai-CN","lep":"lep-Lepc-IN","lez":"lez-Cyrl-RU","lg":"lg-Latn-UG","li":"li-Latn-NL","lif":"lif-Deva-NP","lif-Limb":"lif-Limb-IN","lij":"lij-Latn-IT","lis":"lis-Lisu-CN","ljp":"ljp-Latn-ID","lki":"lki-Arab-IR","lkt":"lkt-Latn-US","lmn":"lmn-Telu-IN","lmo":"lmo-Latn-IT","ln":"ln-Latn-CD","lo":"lo-Laoo-LA","lol":"lol-Latn-CD","loz":"loz-Latn-ZM","lrc":"lrc-Arab-IR","lt":"lt-Latn-LT","ltg":"ltg-Latn-LV","lu":"lu-Latn-CD","lua":"lua-Latn-CD","luo":"luo-Latn-KE","luy":"luy-Latn-KE","luz":"luz-Arab-IR","lv":"lv-Latn-LV","lwl":"lwl-Thai-TH","lzh":"lzh-Hans-CN","lzz":"lzz-Latn-TR","mad":"mad-Latn-ID","maf":"maf-Latn-CM","mag":"mag-Deva-IN","mai":"mai-Deva-IN","mak":"mak-Latn-ID","man":"man-Latn-GM","man-GN":"man-Nkoo-GN","man-Nkoo":"man-Nkoo-GN","mas":"mas-Latn-KE","maz":"maz-Latn-MX","mdf":"mdf-Cyrl-RU","mdh":"mdh-Latn-PH","mdr":"mdr-Latn-ID","men":"men-Latn-SL","mer":"mer-Latn-KE","mfa":"mfa-Arab-TH","mfe":"mfe-Latn-MU","mg":"mg-Latn-MG","mgh":"mgh-Latn-MZ","mgo":"mgo-Latn-CM","mgp":"mgp-Deva-NP","mgy":"mgy-Latn-TZ","mh":"mh-Latn-MH","mi":"mi-Latn-NZ","min":"min-Latn-ID","mk":"mk-Cyrl-MK","ml":"ml-Mlym-IN","mn":"mn-Cyrl-MN","mn-CN":"mn-Mong-CN","mn-Mong":"mn-Mong-CN","mni":"mni-Beng-IN","mnw":"mnw-Mymr-MM","moe":"moe-Latn-CA","moh":"moh-Latn-CA","mos":"mos-Latn-BF","mr":"mr-Deva-IN","mrd":"mrd-Deva-NP","mrj":"mrj-Cyrl-RU","mru":"mru-Mroo-BD","ms":"ms-Latn-MY","ms-CC":"ms-Arab-CC","ms-ID":"ms-Arab-ID","mt":"mt-Latn-MT","mtr":"mtr-Deva-IN","mua":"mua-Latn-CM","mvy":"mvy-Arab-PK","mwk":"mwk-Latn-ML","mwr":"mwr-Deva-IN","mwv":"mwv-Latn-ID","mxc":"mxc-Latn-ZW","my":"my-Mymr-MM","myv":"myv-Cyrl-RU","myx":"myx-Latn-UG","myz":"myz-Mand-IR","mzn":"mzn-Arab-IR","na":"na-Latn-NR","nan":"nan-Hans-CN","nap":"nap-Latn-IT","naq":"naq-Latn-NA","nb":"nb-Latn-NO","nch":"nch-Latn-MX","nd":"nd-Latn-ZW","ndc":"ndc-Latn-MZ","nds":"nds-Latn-DE","ne":"ne-Deva-NP","new":"new-Deva-NP","ng":"ng-Latn-NA","ngl":"ngl-Latn-MZ","nhe":"nhe-Latn-MX","nhw":"nhw-Latn-MX","nij":"nij-Latn-ID","niu":"niu-Latn-NU","njo":"njo-Latn-IN","nl":"nl-Latn-NL","nmg":"nmg-Latn-CM","nn":"nn-Latn-NO","nnh":"nnh-Latn-CM","no":"no-Latn-NO","nod":"nod-Lana-TH","noe":"noe-Deva-IN","non":"non-Runr-SE","nqo":"nqo-Nkoo-GN","nr":"nr-Latn-ZA","nsk":"nsk-Cans-CA","nso":"nso-Latn-ZA","nus":"nus-Latn-SD","nv":"nv-Latn-US","nxq":"nxq-Latn-CN","ny":"ny-Latn-MW","nym":"nym-Latn-TZ","nyn":"nyn-Latn-UG","oc":"oc-Latn-FR","om":"om-Latn-ET","or":"or-Orya-IN","os":"os-Cyrl-GE","otk":"otk-Orkh-MN","pa":"pa-Guru-IN","pa-Arab":"pa-Arab-PK","pa-PK":"pa-Arab-PK","pag":"pag-Latn-PH","pal":"pal-Phli-IR","pal-Phlp":"pal-Phlp-CN","pam":"pam-Latn-PH","pap":"pap-Latn-AW","pau":"pau-Latn-PW","pcd":"pcd-Latn-FR","pcm":"pcm-Latn-NG","pdc":"pdc-Latn-US","pdt":"pdt-Latn-CA","peo":"peo-Xpeo-IR","pfl":"pfl-Latn-DE","phn":"phn-Phnx-LB","pka":"pka-Brah-IN","pko":"pko-Latn-KE","pl":"pl-Latn-PL","pms":"pms-Latn-IT","pnt":"pnt-Grek-GR","pon":"pon-Latn-FM","pra":"pra-Khar-PK","prd":"prd-Arab-IR","prg":"prg-Latn-001","ps":"ps-Arab-AF","pt":"pt-Latn-BR","puu":"puu-Latn-GA","qu":"qu-Latn-PE","quc":"quc-Latn-GT","qug":"qug-Latn-EC","raj":"raj-Latn-IN","rcf":"rcf-Latn-RE","rej":"rej-Latn-ID","rgn":"rgn-Latn-IT","ria":"ria-Latn-IN","rif":"rif-Tfng-MA","rif-NL":"rif-Latn-NL","rjs":"rjs-Deva-NP","rkt":"rkt-Beng-BD","rm":"rm-Latn-CH","rmf":"rmf-Latn-FI","rmo":"rmo-Latn-CH","rmt":"rmt-Arab-IR","rmu":"rmu-Latn-SE","rn":"rn-Latn-BI","rng":"rng-Latn-MZ","ro":"ro-Latn-RO","rob":"rob-Latn-ID","rof":"rof-Latn-TZ","rtm":"rtm-Latn-FJ","ru":"ru-Cyrl-RU","rue":"rue-Cyrl-UA","rug":"rug-Latn-SB","rw":"rw-Latn-RW","rwk":"rwk-Latn-TZ","ryu":"ryu-Kana-JP","sa":"sa-Deva-IN","saf":"saf-Latn-GH","sah":"sah-Cyrl-RU","saq":"saq-Latn-KE","sas":"sas-Latn-ID","sat":"sat-Latn-IN","saz":"saz-Saur-IN","sbp":"sbp-Latn-TZ","sc":"sc-Latn-IT","sck":"sck-Deva-IN","scn":"scn-Latn-IT","sco":"sco-Latn-GB","scs":"scs-Latn-CA","sd":"sd-Arab-PK","sd-Deva":"sd-Deva-IN","sd-Khoj":"sd-Khoj-IN","sd-Sind":"sd-Sind-IN","sdc":"sdc-Latn-IT","se":"se-Latn-NO","sef":"sef-Latn-CI","seh":"seh-Latn-MZ","sei":"sei-Latn-MX","ses":"ses-Latn-ML","sg":"sg-Latn-CF","sga":"sga-Ogam-IE","sgs":"sgs-Latn-LT","shi":"shi-Tfng-MA","shn":"shn-Mymr-MM","si":"si-Sinh-LK","sid":"sid-Latn-ET","sk":"sk-Latn-SK","skr":"skr-Arab-PK","sl":"sl-Latn-SI","sli":"sli-Latn-PL","sly":"sly-Latn-ID","sm":"sm-Latn-WS","sma":"sma-Latn-SE","smj":"smj-Latn-SE","smn":"smn-Latn-FI","smp":"smp-Samr-IL","sms":"sms-Latn-FI","sn":"sn-Latn-ZW","snk":"snk-Latn-ML","so":"so-Latn-SO","sou":"sou-Thai-TH","sq":"sq-Latn-AL","sr":"sr-Cyrl-RS","sr-ME":"sr-Latn-ME","sr-RO":"sr-Latn-RO","sr-RU":"sr-Latn-RU","sr-TR":"sr-Latn-TR","srb":"srb-Sora-IN","srn":"srn-Latn-SR","srr":"srr-Latn-SN","srx":"srx-Deva-IN","ss":"ss-Latn-ZA","ssy":"ssy-Latn-ER","st":"st-Latn-ZA","stq":"stq-Latn-DE","su":"su-Latn-ID","suk":"suk-Latn-TZ","sus":"sus-Latn-GN","sv":"sv-Latn-SE","sw":"sw-Latn-TZ","swb":"swb-Arab-YT","swc":"swc-Latn-CD","swv":"swv-Deva-IN","sxn":"sxn-Latn-ID","syl":"syl-Beng-BD","syr":"syr-Syrc-IQ","szl":"szl-Latn-PL","ta":"ta-Taml-IN","taj":"taj-Deva-NP","tbw":"tbw-Latn-PH","tcy":"tcy-Knda-IN","tdd":"tdd-Tale-CN","tdg":"tdg-Deva-NP","tdh":"tdh-Deva-NP","te":"te-Telu-IN","tem":"tem-Latn-SL","teo":"teo-Latn-UG","tet":"tet-Latn-TL","tg":"tg-Cyrl-TJ","tg-Arab":"tg-Arab-PK","tg-PK":"tg-Arab-PK","th":"th-Thai-TH","thl":"thl-Deva-NP","thq":"thq-Deva-NP","thr":"thr-Deva-NP","ti":"ti-Ethi-ET","tig":"tig-Ethi-ER","tiv":"tiv-Latn-NG","tk":"tk-Latn-TM","tkl":"tkl-Latn-TK","tkr":"tkr-Latn-AZ","tkt":"tkt-Deva-NP","tl":"tl-Latn-PH","tly":"tly-Latn-AZ","tmh":"tmh-Latn-NE","tn":"tn-Latn-ZA","to":"to-Latn-TO","tpi":"tpi-Latn-PG","tr":"tr-Latn-TR","tru":"tru-Latn-TR","trv":"trv-Latn-TW","ts":"ts-Latn-ZA","tsd":"tsd-Grek-GR","tsf":"tsf-Deva-NP","tsg":"tsg-Latn-PH","tsj":"tsj-Tibt-BT","tt":"tt-Cyrl-RU","ttj":"ttj-Latn-UG","tts":"tts-Thai-TH","ttt":"ttt-Latn-AZ","tum":"tum-Latn-MW","tvl":"tvl-Latn-TV","twq":"twq-Latn-NE","ty":"ty-Latn-PF","tyv":"tyv-Cyrl-RU","tzm":"tzm-Latn-MA","udm":"udm-Cyrl-RU","ug":"ug-Arab-CN","ug-Cyrl":"ug-Cyrl-KZ","ug-KZ":"ug-Cyrl-KZ","ug-MN":"ug-Cyrl-MN","uga":"uga-Ugar-SY","uk":"uk-Cyrl-UA","uli":"uli-Latn-FM","umb":"umb-Latn-AO","und":"en-Latn-US","und-002":"en-Latn-NG","und-003":"en-Latn-US","und-005":"pt-Latn-BR","und-009":"en-Latn-AU","und-011":"en-Latn-NG","und-013":"es-Latn-MX","und-014":"en-Latn-KE","und-015":"ar-Arab-EG","und-017":"sw-Latn-CD","und-018":"en-Latn-ZA","und-019":"en-Latn-US","und-021":"en-Latn-US","und-029":"es-Latn-CU","und-030":"zh-Hans-CN","und-034":"hi-Deva-IN","und-035":"id-Latn-ID","und-039":"it-Latn-IT","und-053":"en-Latn-AU","und-054":"en-Latn-PG","und-057":"en-Latn-KI","und-061":"sm-Latn-WS","und-142":"zh-Hans-CN","und-143":"uz-Latn-UZ","und-145":"ar-Arab-SA","und-150":"ru-Cyrl-RU","und-151":"ru-Cyrl-RU","und-154":"en-Latn-GB","und-155":"de-Latn-DE","und-419":"es-Latn-419","und-AD":"ca-Latn-AD","und-AE":"ar-Arab-AE","und-AF":"fa-Arab-AF","und-AL":"sq-Latn-AL","und-AM":"hy-Armn-AM","und-AO":"pt-Latn-AO","und-AQ":"und-Latn-AQ","und-AR":"es-Latn-AR","und-AS":"sm-Latn-AS","und-AT":"de-Latn-AT","und-AW":"nl-Latn-AW","und-AX":"sv-Latn-AX","und-AZ":"az-Latn-AZ","und-Aghb":"lez-Aghb-RU","und-Arab":"ar-Arab-EG","und-Arab-CC":"ms-Arab-CC","und-Arab-CN":"ug-Arab-CN","und-Arab-GB":"ks-Arab-GB","und-Arab-ID":"ms-Arab-ID","und-Arab-IN":"ur-Arab-IN","und-Arab-KH":"cja-Arab-KH","und-Arab-MN":"kk-Arab-MN","und-Arab-MU":"ur-Arab-MU","und-Arab-NG":"ha-Arab-NG","und-Arab-PK":"ur-Arab-PK","und-Arab-TH":"mfa-Arab-TH","und-Arab-TJ":"fa-Arab-TJ","und-Arab-YT":"swb-Arab-YT","und-Armi":"arc-Armi-IR","und-Armn":"hy-Armn-AM","und-Avst":"ae-Avst-IR","und-BA":"bs-Latn-BA","und-BD":"bn-Beng-BD","und-BE":"nl-Latn-BE","und-BF":"fr-Latn-BF","und-BG":"bg-Cyrl-BG","und-BH":"ar-Arab-BH","und-BI":"rn-Latn-BI","und-BJ":"fr-Latn-BJ","und-BL":"fr-Latn-BL","und-BN":"ms-Latn-BN","und-BO":"es-Latn-BO","und-BQ":"pap-Latn-BQ","und-BR":"pt-Latn-BR","und-BT":"dz-Tibt-BT","und-BV":"und-Latn-BV","und-BY":"be-Cyrl-BY","und-Bali":"ban-Bali-ID","und-Bamu":"bax-Bamu-CM","und-Bass":"bsq-Bass-LR","und-Batk":"bbc-Batk-ID","und-Beng":"bn-Beng-BD","und-Bopo":"zh-Bopo-TW","und-Brah":"pka-Brah-IN","und-Brai":"fr-Brai-FR","und-Bugi":"bug-Bugi-ID","und-Buhd":"bku-Buhd-PH","und-CD":"sw-Latn-CD","und-CF":"fr-Latn-CF","und-CG":"fr-Latn-CG","und-CH":"de-Latn-CH","und-CI":"fr-Latn-CI","und-CL":"es-Latn-CL","und-CM":"fr-Latn-CM","und-CN":"zh-Hans-CN","und-CO":"es-Latn-CO","und-CP":"und-Latn-CP","und-CR":"es-Latn-CR","und-CU":"es-Latn-CU","und-CV":"pt-Latn-CV","und-CW":"pap-Latn-CW","und-CY":"el-Grek-CY","und-CZ":"cs-Latn-CZ","und-Cakm":"ccp-Cakm-BD","und-Cans":"cr-Cans-CA","und-Cari":"xcr-Cari-TR","und-Cham":"cjm-Cham-VN","und-Cher":"chr-Cher-US","und-Copt":"cop-Copt-EG","und-Cprt":"grc-Cprt-CY","und-Cyrl":"ru-Cyrl-RU","und-Cyrl-AL":"mk-Cyrl-AL","und-Cyrl-BA":"sr-Cyrl-BA","und-Cyrl-GE":"ab-Cyrl-GE","und-Cyrl-GR":"mk-Cyrl-GR","und-Cyrl-MD":"uk-Cyrl-MD","und-Cyrl-PL":"be-Cyrl-PL","und-Cyrl-RO":"bg-Cyrl-RO","und-Cyrl-SK":"uk-Cyrl-SK","und-Cyrl-TR":"kbd-Cyrl-TR","und-Cyrl-XK":"sr-Cyrl-XK","und-DE":"de-Latn-DE","und-DJ":"aa-Latn-DJ","und-DK":"da-Latn-DK","und-DO":"es-Latn-DO","und-DZ":"ar-Arab-DZ","und-Deva":"hi-Deva-IN","und-Deva-BT":"ne-Deva-BT","und-Deva-FJ":"hif-Deva-FJ","und-Deva-MU":"bho-Deva-MU","und-Deva-PK":"btv-Deva-PK","und-Dupl":"fr-Dupl-FR","und-EA":"es-Latn-EA","und-EC":"es-Latn-EC","und-EE":"et-Latn-EE","und-EG":"ar-Arab-EG","und-EH":"ar-Arab-EH","und-ER":"ti-Ethi-ER","und-ES":"es-Latn-ES","und-ET":"am-Ethi-ET","und-EU":"en-Latn-GB","und-Egyp":"egy-Egyp-EG","und-Elba":"sq-Elba-AL","und-Ethi":"am-Ethi-ET","und-FI":"fi-Latn-FI","und-FM":"chk-Latn-FM","und-FO":"fo-Latn-FO","und-FR":"fr-Latn-FR","und-GA":"fr-Latn-GA","und-GE":"ka-Geor-GE","und-GF":"fr-Latn-GF","und-GH":"ak-Latn-GH","und-GL":"kl-Latn-GL","und-GN":"fr-Latn-GN","und-GP":"fr-Latn-GP","und-GQ":"es-Latn-GQ","und-GR":"el-Grek-GR","und-GS":"und-Latn-GS","und-GT":"es-Latn-GT","und-GW":"pt-Latn-GW","und-Geor":"ka-Geor-GE","und-Glag":"cu-Glag-BG","und-Goth":"got-Goth-UA","und-Gran":"sa-Gran-IN","und-Grek":"el-Grek-GR","und-Grek-TR":"bgx-Grek-TR","und-Gujr":"gu-Gujr-IN","und-Guru":"pa-Guru-IN","und-HK":"zh-Hant-HK","und-HM":"und-Latn-HM","und-HN":"es-Latn-HN","und-HR":"hr-Latn-HR","und-HT":"ht-Latn-HT","und-HU":"hu-Latn-HU","und-Hang":"ko-Hang-KR","und-Hani":"zh-Hani-CN","und-Hano":"hnn-Hano-PH","und-Hans":"zh-Hans-CN","und-Hant":"zh-Hant-TW","und-Hebr":"he-Hebr-IL","und-Hebr-CA":"yi-Hebr-CA","und-Hebr-GB":"yi-Hebr-GB","und-Hebr-SE":"yi-Hebr-SE","und-Hebr-UA":"yi-Hebr-UA","und-Hebr-US":"yi-Hebr-US","und-Hira":"ja-Hira-JP","und-Hmng":"hnj-Hmng-LA","und-IC":"es-Latn-IC","und-ID":"id-Latn-ID","und-IL":"he-Hebr-IL","und-IN":"hi-Deva-IN","und-IQ":"ar-Arab-IQ","und-IR":"fa-Arab-IR","und-IS":"is-Latn-IS","und-IT":"it-Latn-IT","und-Ital":"ett-Ital-IT","und-JO":"ar-Arab-JO","und-JP":"ja-Jpan-JP","und-Java":"jv-Java-ID","und-Jpan":"ja-Jpan-JP","und-KG":"ky-Cyrl-KG","und-KH":"km-Khmr-KH","und-KM":"ar-Arab-KM","und-KP":"ko-Kore-KP","und-KR":"ko-Kore-KR","und-KW":"ar-Arab-KW","und-KZ":"ru-Cyrl-KZ","und-Kali":"eky-Kali-MM","und-Kana":"ja-Kana-JP","und-Khar":"pra-Khar-PK","und-Khmr":"km-Khmr-KH","und-Khoj":"sd-Khoj-IN","und-Knda":"kn-Knda-IN","und-Kore":"ko-Kore-KR","und-Kthi":"bh-Kthi-IN","und-LA":"lo-Laoo-LA","und-LB":"ar-Arab-LB","und-LI":"de-Latn-LI","und-LK":"si-Sinh-LK","und-LS":"st-Latn-LS","und-LT":"lt-Latn-LT","und-LU":"fr-Latn-LU","und-LV":"lv-Latn-LV","und-LY":"ar-Arab-LY","und-Lana":"nod-Lana-TH","und-Laoo":"lo-Laoo-LA","und-Latn-AF":"tk-Latn-AF","und-Latn-AM":"ku-Latn-AM","und-Latn-BG":"tr-Latn-BG","und-Latn-CN":"za-Latn-CN","und-Latn-CY":"tr-Latn-CY","und-Latn-DZ":"fr-Latn-DZ","und-Latn-ET":"en-Latn-ET","und-Latn-GE":"ku-Latn-GE","und-Latn-GR":"tr-Latn-GR","und-Latn-IL":"ro-Latn-IL","und-Latn-IR":"tk-Latn-IR","und-Latn-KM":"fr-Latn-KM","und-Latn-KZ":"de-Latn-KZ","und-Latn-LB":"fr-Latn-LB","und-Latn-MA":"fr-Latn-MA","und-Latn-MK":"sq-Latn-MK","und-Latn-MO":"pt-Latn-MO","und-Latn-MR":"fr-Latn-MR","und-Latn-RU":"krl-Latn-RU","und-Latn-SY":"fr-Latn-SY","und-Latn-TN":"fr-Latn-TN","und-Latn-TW":"trv-Latn-TW","und-Latn-UA":"pl-Latn-UA","und-Lepc":"lep-Lepc-IN","und-Limb":"lif-Limb-IN","und-Lina":"lab-Lina-GR","und-Linb":"grc-Linb-GR","und-Lisu":"lis-Lisu-CN","und-Lyci":"xlc-Lyci-TR","und-Lydi":"xld-Lydi-TR","und-MA":"ar-Arab-MA","und-MC":"fr-Latn-MC","und-MD":"ro-Latn-MD","und-ME":"sr-Latn-ME","und-MF":"fr-Latn-MF","und-MG":"mg-Latn-MG","und-MK":"mk-Cyrl-MK","und-ML":"bm-Latn-ML","und-MM":"my-Mymr-MM","und-MN":"mn-Cyrl-MN","und-MO":"zh-Hant-MO","und-MQ":"fr-Latn-MQ","und-MR":"ar-Arab-MR","und-MT":"mt-Latn-MT","und-MU":"mfe-Latn-MU","und-MV":"dv-Thaa-MV","und-MX":"es-Latn-MX","und-MY":"ms-Latn-MY","und-MZ":"pt-Latn-MZ","und-Mahj":"hi-Mahj-IN","und-Mand":"myz-Mand-IR","und-Mani":"xmn-Mani-CN","und-Mend":"men-Mend-SL","und-Merc":"xmr-Merc-SD","und-Mero":"xmr-Mero-SD","und-Mlym":"ml-Mlym-IN","und-Modi":"mr-Modi-IN","und-Mong":"mn-Mong-CN","und-Mroo":"mru-Mroo-BD","und-Mtei":"mni-Mtei-IN","und-Mymr":"my-Mymr-MM","und-Mymr-IN":"kht-Mymr-IN","und-Mymr-TH":"mnw-Mymr-TH","und-NA":"af-Latn-NA","und-NC":"fr-Latn-NC","und-NE":"ha-Latn-NE","und-NI":"es-Latn-NI","und-NL":"nl-Latn-NL","und-NO":"nb-Latn-NO","und-NP":"ne-Deva-NP","und-Narb":"xna-Narb-SA","und-Nbat":"arc-Nbat-JO","und-Nkoo":"man-Nkoo-GN","und-OM":"ar-Arab-OM","und-Ogam":"sga-Ogam-IE","und-Olck":"sat-Olck-IN","und-Orkh":"otk-Orkh-MN","und-Orya":"or-Orya-IN","und-Osma":"so-Osma-SO","und-PA":"es-Latn-PA","und-PE":"es-Latn-PE","und-PF":"fr-Latn-PF","und-PG":"tpi-Latn-PG","und-PH":"fil-Latn-PH","und-PK":"ur-Arab-PK","und-PL":"pl-Latn-PL","und-PM":"fr-Latn-PM","und-PR":"es-Latn-PR","und-PS":"ar-Arab-PS","und-PT":"pt-Latn-PT","und-PW":"pau-Latn-PW","und-PY":"gn-Latn-PY","und-Palm":"arc-Palm-SY","und-Pauc":"ctd-Pauc-MM","und-Perm":"kv-Perm-RU","und-Phag":"lzh-Phag-CN","und-Phli":"pal-Phli-IR","und-Phlp":"pal-Phlp-CN","und-Phnx":"phn-Phnx-LB","und-Plrd":"hmd-Plrd-CN","und-Prti":"xpr-Prti-IR","und-QA":"ar-Arab-QA","und-QO":"en-Latn-IO","und-RE":"fr-Latn-RE","und-RO":"ro-Latn-RO","und-RS":"sr-Cyrl-RS","und-RU":"ru-Cyrl-RU","und-RW":"rw-Latn-RW","und-Rjng":"rej-Rjng-ID","und-Runr":"non-Runr-SE","und-SA":"ar-Arab-SA","und-SC":"fr-Latn-SC","und-SD":"ar-Arab-SD","und-SE":"sv-Latn-SE","und-SI":"sl-Latn-SI","und-SJ":"nb-Latn-SJ","und-SK":"sk-Latn-SK","und-SM":"it-Latn-SM","und-SN":"fr-Latn-SN","und-SO":"so-Latn-SO","und-SR":"nl-Latn-SR","und-ST":"pt-Latn-ST","und-SV":"es-Latn-SV","und-SY":"ar-Arab-SY","und-Samr":"smp-Samr-IL","und-Sarb":"xsa-Sarb-YE","und-Saur":"saz-Saur-IN","und-Shaw":"en-Shaw-GB","und-Shrd":"sa-Shrd-IN","und-Sidd":"sa-Sidd-IN","und-Sind":"sd-Sind-IN","und-Sinh":"si-Sinh-LK","und-Sora":"srb-Sora-IN","und-Sund":"su-Sund-ID","und-Sylo":"syl-Sylo-BD","und-Syrc":"syr-Syrc-IQ","und-TD":"fr-Latn-TD","und-TF":"fr-Latn-TF","und-TG":"fr-Latn-TG","und-TH":"th-Thai-TH","und-TJ":"tg-Cyrl-TJ","und-TK":"tkl-Latn-TK","und-TL":"pt-Latn-TL","und-TM":"tk-Latn-TM","und-TN":"ar-Arab-TN","und-TO":"to-Latn-TO","und-TR":"tr-Latn-TR","und-TV":"tvl-Latn-TV","und-TW":"zh-Hant-TW","und-TZ":"sw-Latn-TZ","und-Tagb":"tbw-Tagb-PH","und-Takr":"doi-Takr-IN","und-Tale":"tdd-Tale-CN","und-Talu":"khb-Talu-CN","und-Taml":"ta-Taml-IN","und-Tavt":"blt-Tavt-VN","und-Telu":"te-Telu-IN","und-Tfng":"zgh-Tfng-MA","und-Tglg":"fil-Tglg-PH","und-Thaa":"dv-Thaa-MV","und-Thai":"th-Thai-TH","und-Thai-CN":"lcp-Thai-CN","und-Thai-KH":"kdt-Thai-KH","und-Thai-LA":"kdt-Thai-LA","und-Tibt":"bo-Tibt-CN","und-Tirh":"mai-Tirh-IN","und-UA":"uk-Cyrl-UA","und-UG":"sw-Latn-UG","und-UY":"es-Latn-UY","und-UZ":"uz-Latn-UZ","und-Ugar":"uga-Ugar-SY","und-VA":"it-Latn-VA","und-VE":"es-Latn-VE","und-VN":"vi-Latn-VN","und-VU":"bi-Latn-VU","und-Vaii":"vai-Vaii-LR","und-WF":"fr-Latn-WF","und-WS":"sm-Latn-WS","und-Wara":"hoc-Wara-IN","und-XK":"sq-Latn-XK","und-Xpeo":"peo-Xpeo-IR","und-Xsux":"akk-Xsux-IQ","und-YE":"ar-Arab-YE","und-YT":"fr-Latn-YT","und-Yiii":"ii-Yiii-CN","unr":"unr-Beng-IN","unr-Deva":"unr-Deva-NP","unr-NP":"unr-Deva-NP","unx":"unx-Beng-IN","ur":"ur-Arab-PK","uz":"uz-Latn-UZ","uz-AF":"uz-Arab-AF","uz-Arab":"uz-Arab-AF","uz-CN":"uz-Cyrl-CN","vai":"vai-Vaii-LR","ve":"ve-Latn-ZA","vec":"vec-Latn-IT","vep":"vep-Latn-RU","vi":"vi-Latn-VN","vic":"vic-Latn-SX","vls":"vls-Latn-BE","vmf":"vmf-Latn-DE","vmw":"vmw-Latn-MZ","vo":"vo-Latn-001","vro":"vro-Latn-EE","vun":"vun-Latn-TZ","wa":"wa-Latn-BE","wae":"wae-Latn-CH","wal":"wal-Ethi-ET","war":"war-Latn-PH","wbq":"wbq-Telu-IN","wbr":"wbr-Deva-IN","wls":"wls-Latn-WF","wo":"wo-Latn-SN","wtm":"wtm-Deva-IN","wuu":"wuu-Hans-CN","xav":"xav-Latn-BR","xcr":"xcr-Cari-TR","xh":"xh-Latn-ZA","xlc":"xlc-Lyci-TR","xld":"xld-Lydi-TR","xmf":"xmf-Geor-GE","xmn":"xmn-Mani-CN","xmr":"xmr-Merc-SD","xna":"xna-Narb-SA","xnr":"xnr-Deva-IN","xog":"xog-Latn-UG","xpr":"xpr-Prti-IR","xsa":"xsa-Sarb-YE","xsr":"xsr-Deva-NP","yao":"yao-Latn-MZ","yap":"yap-Latn-FM","yav":"yav-Latn-CM","ybb":"ybb-Latn-CM","yi":"yi-Hebr-001","yo":"yo-Latn-NG","yrl":"yrl-Latn-BR","yua":"yua-Latn-MX","za":"za-Latn-CN","zdj":"zdj-Arab-KM","zea":"zea-Latn-NL","zgh":"zgh-Tfng-MA","zh":"zh-Hans-CN","zh-AU":"zh-Hant-AU","zh-BN":"zh-Hant-BN","zh-Bopo":"zh-Bopo-TW","zh-GB":"zh-Hant-GB","zh-GF":"zh-Hant-GF","zh-HK":"zh-Hant-HK","zh-Hant":"zh-Hant-TW","zh-ID":"zh-Hant-ID","zh-MO":"zh-Hant-MO","zh-MY":"zh-Hant-MY","zh-PA":"zh-Hant-PA","zh-PF":"zh-Hant-PF","zh-PH":"zh-Hant-PH","zh-SR":"zh-Hant-SR","zh-TH":"zh-Hant-TH","zh-TW":"zh-Hant-TW","zh-US":"zh-Hant-US","zh-VN":"zh-Hant-VN","zmi":"zmi-Latn-MY","zu":"zu-Latn-ZA","zza":"zza-Latn-TR"} \ No newline at end of file diff --git a/Punic/data/metaZones.json b/Punic/data/metaZones.json new file mode 100644 index 0000000..192fca3 --- /dev/null +++ b/Punic/data/metaZones.json @@ -0,0 +1 @@ +{"metazoneInfo":{"Africa":{"Abidjan":[{"mzone":"GMT"}],"Accra":[{"mzone":"GMT"}],"Addis_Ababa":[{"mzone":"Africa_Eastern"}],"Algiers":[{"mzone":"Europe_Central","from":"1981-05-01 00:00"},{"to":"1977-10-20 23:00","mzone":"Europe_Western"},{"to":"1979-10-25 23:00","mzone":"Europe_Central","from":"1977-10-20 23:00"},{"to":"1981-05-01 00:00","mzone":"Europe_Western","from":"1979-10-25 23:00"}],"Asmera":[{"mzone":"Africa_Eastern"}],"Bamako":[{"mzone":"GMT"}],"Bangui":[{"mzone":"Africa_Western"}],"Banjul":[{"mzone":"GMT"}],"Bissau":[{"mzone":"GMT","from":"1975-01-01 01:00"},{"to":"1975-01-01 01:00","mzone":"Africa_FarWestern"}],"Blantyre":[{"mzone":"Africa_Central"}],"Brazzaville":[{"mzone":"Africa_Western"}],"Bujumbura":[{"mzone":"Africa_Central"}],"Cairo":[{"mzone":"Europe_Eastern"}],"Casablanca":[{"mzone":"Europe_Western","from":"1985-12-31 23:00"},{"to":"1984-03-16 00:00","mzone":"Europe_Western"},{"to":"1985-12-31 23:00","mzone":"Europe_Central","from":"1984-03-16 00:00"}],"Ceuta":[{"mzone":"Europe_Central","from":"1984-03-16 00:00"},{"to":"1984-03-16 00:00","mzone":"Europe_Western"}],"Conakry":[{"mzone":"GMT"}],"Dakar":[{"mzone":"GMT"}],"Dar_es_Salaam":[{"mzone":"Africa_Eastern"}],"Djibouti":[{"mzone":"Africa_Eastern"}],"Douala":[{"mzone":"Africa_Western"}],"El_Aaiun":[{"mzone":"Europe_Western","from":"1976-04-14 01:00"},{"to":"1976-04-14 01:00","mzone":"Africa_FarWestern"}],"Freetown":[{"mzone":"GMT"}],"Gaborone":[{"mzone":"Africa_Central"}],"Harare":[{"mzone":"Africa_Central"}],"Johannesburg":[{"mzone":"Africa_Southern"}],"Juba":[{"mzone":"Africa_Eastern","from":"2000-01-15 10:00"},{"to":"2000-01-15 10:00","mzone":"Africa_Central"}],"Kampala":[{"mzone":"Africa_Eastern"}],"Khartoum":[{"mzone":"Africa_Eastern","from":"2000-01-15 10:00"},{"to":"2000-01-15 10:00","mzone":"Africa_Central"}],"Kigali":[{"mzone":"Africa_Central"}],"Kinshasa":[{"mzone":"Africa_Western"}],"Lagos":[{"mzone":"Africa_Western"}],"Libreville":[{"mzone":"Africa_Western"}],"Lome":[{"mzone":"GMT"}],"Luanda":[{"mzone":"Africa_Western"}],"Lubumbashi":[{"mzone":"Africa_Central"}],"Lusaka":[{"mzone":"Africa_Central"}],"Malabo":[{"mzone":"Africa_Western"}],"Maputo":[{"mzone":"Africa_Central"}],"Maseru":[{"mzone":"Africa_Southern"}],"Mbabane":[{"mzone":"Africa_Southern"}],"Mogadishu":[{"mzone":"Africa_Eastern"}],"Monrovia":[{"mzone":"GMT","from":"1972-05-01 00:45"},{"to":"1972-05-01 00:45","mzone":"Liberia"}],"Nairobi":[{"mzone":"Africa_Eastern"}],"Ndjamena":[{"mzone":"Africa_Western"}],"Niamey":[{"mzone":"Africa_Western"}],"Nouakchott":[{"mzone":"GMT"}],"Ouagadougou":[{"mzone":"GMT"}],"Porto-Novo":[{"mzone":"Africa_Western"}],"Sao_Tome":[{"mzone":"GMT"}],"Tripoli":[{"mzone":"Europe_Eastern","from":"2013-10-25 00:00"},{"to":"1981-12-31 22:00","mzone":"Europe_Eastern"},{"to":"1990-05-03 23:00","mzone":"Europe_Central","from":"1981-12-31 22:00"},{"to":"1996-09-29 22:00","mzone":"Europe_Eastern","from":"1990-05-03 23:00"},{"to":"1997-10-03 22:00","mzone":"Europe_Central","from":"1996-09-29 22:00"},{"to":"2012-11-10 00:00","mzone":"Europe_Eastern","from":"1997-10-03 22:00"},{"to":"2013-10-25 00:00","mzone":"Europe_Central","from":"2012-11-10 00:00"}],"Tunis":[{"mzone":"Europe_Central"}],"Windhoek":[{"mzone":"Africa_Western","from":"1994-04-02 22:00"},{"to":"1990-03-20 22:00","mzone":"Africa_Southern"},{"to":"1994-04-02 22:00","mzone":"Africa_Central","from":"1990-03-20 22:00"}]},"America":{"Adak":[{"mzone":"Hawaii_Aleutian","from":"1983-11-30 10:00"},{"to":"1983-10-30 12:00","mzone":"Bering"}],"Anchorage":[{"mzone":"Alaska","from":"1983-11-30 09:00"},{"to":"1983-10-30 11:00","mzone":"Alaska_Hawaii"},{"to":"1983-11-30 09:00","mzone":"Yukon","from":"1983-10-30 11:00"}],"Anguilla":[{"mzone":"Atlantic"}],"Antigua":[{"mzone":"Atlantic"}],"Araguaina":[{"mzone":"Brasilia"}],"Argentina":{"La_Rioja":[{"mzone":"Argentina","from":"2004-06-20 04:00"},{"to":"1991-03-01 02:00","mzone":"Argentina"},{"to":"1991-05-07 04:00","mzone":"Argentina_Western","from":"1991-03-01 02:00"},{"to":"2004-06-01 03:00","mzone":"Argentina","from":"1991-05-07 04:00"},{"to":"2004-06-20 04:00","mzone":"Argentina_Western","from":"2004-06-01 03:00"}],"Rio_Gallegos":[{"mzone":"Argentina","from":"2004-06-20 04:00"},{"to":"2004-06-01 03:00","mzone":"Argentina"},{"to":"2004-06-20 04:00","mzone":"Argentina_Western","from":"2004-06-01 03:00"}],"Salta":[{"mzone":"Argentina","from":"1991-10-20 04:00"},{"to":"1991-03-03 02:00","mzone":"Argentina"}],"San_Juan":[{"mzone":"Argentina","from":"2004-07-25 04:00"},{"to":"1991-03-01 02:00","mzone":"Argentina"},{"to":"1991-05-07 04:00","mzone":"Argentina_Western","from":"1991-03-01 02:00"},{"to":"2004-05-31 03:00","mzone":"Argentina","from":"1991-05-07 04:00"},{"to":"2004-07-25 04:00","mzone":"Argentina_Western","from":"2004-05-31 03:00"}],"San_Luis":[{"mzone":"Argentina_Western","from":"2008-01-21 02:00"},{"to":"1990-03-14 02:00","mzone":"Argentina"},{"to":"1991-06-01 04:00","mzone":"Argentina_Western","from":"1990-03-14 02:00"},{"to":"1999-10-03 03:00","mzone":"Argentina","from":"1991-06-01 04:00"},{"to":"2000-03-03 03:00","mzone":"Argentina_Western","from":"1999-10-03 03:00"},{"to":"2004-05-31 03:00","mzone":"Argentina","from":"2000-03-03 03:00"},{"to":"2004-07-25 04:00","mzone":"Argentina_Western","from":"2004-05-31 03:00"},{"to":"2008-01-21 02:00","mzone":"Argentina","from":"2004-07-25 04:00"}],"Tucuman":[{"mzone":"Argentina","from":"2004-06-13 04:00"},{"to":"1991-03-03 02:00","mzone":"Argentina"},{"to":"2004-06-01 03:00","mzone":"Argentina","from":"1991-10-20 04:00"},{"to":"2004-06-13 04:00","mzone":"Argentina_Western","from":"2004-06-01 03:00"}],"Ushuaia":[{"mzone":"Argentina","from":"2004-06-20 04:00"},{"to":"2004-05-30 03:00","mzone":"Argentina"}]},"Aruba":[{"mzone":"Atlantic"}],"Asuncion":[{"mzone":"Paraguay"}],"Bahia":[{"mzone":"Brasilia"}],"Bahia_Banderas":[{"mzone":"America_Central","from":"2010-04-04 09:00"},{"to":"1970-01-01 08:00","mzone":"America_Pacific"},{"to":"2010-04-04 09:00","mzone":"America_Mountain","from":"1970-01-01 08:00"}],"Barbados":[{"mzone":"Atlantic"}],"Belem":[{"mzone":"Brasilia"}],"Belize":[{"mzone":"America_Central"}],"Blanc-Sablon":[{"mzone":"Atlantic"}],"Boa_Vista":[{"mzone":"Amazon"}],"Bogota":[{"mzone":"Colombia"}],"Boise":[{"mzone":"America_Mountain"}],"Buenos_Aires":[{"mzone":"Argentina"}],"Cambridge_Bay":[{"mzone":"America_Mountain","from":"2001-04-01 09:00"},{"to":"1999-10-31 08:00","mzone":"America_Mountain"},{"to":"2000-10-29 07:00","mzone":"America_Central","from":"1999-10-31 08:00"},{"to":"2000-11-05 05:00","mzone":"America_Eastern","from":"2000-10-29 07:00"},{"to":"2001-04-01 09:00","mzone":"America_Central","from":"2000-11-05 05:00"}],"Campo_Grande":[{"mzone":"Amazon"}],"Cancun":[{"mzone":"America_Central","from":"1998-08-02 06:00"},{"to":"1981-12-23 06:00","mzone":"America_Central"},{"to":"1998-08-02 06:00","mzone":"America_Eastern","from":"1981-12-23 06:00"}],"Caracas":[{"mzone":"Venezuela"}],"Catamarca":[{"mzone":"Argentina","from":"2004-06-20 04:00"},{"to":"1991-03-03 02:00","mzone":"Argentina"},{"to":"2004-06-01 03:00","mzone":"Argentina","from":"1991-10-20 04:00"},{"to":"2004-06-20 04:00","mzone":"Argentina_Western","from":"2004-06-01 03:00"}],"Cayenne":[{"mzone":"French_Guiana"}],"Cayman":[{"mzone":"America_Eastern"}],"Chicago":[{"mzone":"America_Central"}],"Chihuahua":[{"mzone":"Mexico_Pacific","from":"1998-04-05 09:00"},{"to":"1998-04-05 09:00","mzone":"America_Central"}],"Coral_Harbour":[{"mzone":"America_Eastern"}],"Cordoba":[{"mzone":"Argentina","from":"1991-10-20 04:00"},{"to":"1991-03-03 02:00","mzone":"Argentina"}],"Costa_Rica":[{"mzone":"America_Central"}],"Creston":[{"mzone":"America_Mountain"}],"Cuiaba":[{"mzone":"Amazon"}],"Curacao":[{"mzone":"Atlantic"}],"Danmarkshavn":[{"mzone":"GMT","from":"1996-01-01 03:00"},{"to":"1996-01-01 03:00","mzone":"Greenland_Western"}],"Dawson":[{"mzone":"America_Pacific","from":"1973-10-28 09:00"},{"to":"1973-10-28 09:00","mzone":"Yukon"}],"Dawson_Creek":[{"mzone":"America_Mountain","from":"1972-08-30 09:00"},{"to":"1972-08-30 09:00","mzone":"America_Pacific"}],"Denver":[{"mzone":"America_Mountain"}],"Detroit":[{"mzone":"America_Eastern"}],"Dominica":[{"mzone":"Atlantic"}],"Edmonton":[{"mzone":"America_Mountain"}],"Eirunepe":[{"mzone":"Acre","from":"2013-11-10 04:00"},{"to":"2008-06-24 05:00","mzone":"Acre"},{"to":"2013-11-10 04:00","mzone":"Amazon","from":"2008-06-24 05:00"}],"El_Salvador":[{"mzone":"America_Central"}],"Fortaleza":[{"mzone":"Brasilia"}],"Glace_Bay":[{"mzone":"Atlantic"}],"Godthab":[{"mzone":"Greenland_Western"}],"Goose_Bay":[{"mzone":"Atlantic","from":"1988-10-30 02:01"},{"to":"1988-04-03 04:01","mzone":"Atlantic"},{"to":"1988-10-30 02:01","mzone":"Goose_Bay","from":"1988-04-03 04:01"}],"Grand_Turk":[{"mzone":"Atlantic","from":"2014-11-02 06:00"},{"to":"2014-11-02 06:00","mzone":"America_Eastern"}],"Grenada":[{"mzone":"Atlantic"}],"Guadeloupe":[{"mzone":"Atlantic"}],"Guatemala":[{"mzone":"America_Central"}],"Guayaquil":[{"mzone":"Ecuador"}],"Guyana":[{"mzone":"Guyana"}],"Halifax":[{"mzone":"Atlantic"}],"Havana":[{"mzone":"Cuba"}],"Hermosillo":[{"mzone":"Mexico_Pacific","from":"1970-01-01 08:00"},{"to":"1970-01-01 08:00","mzone":"America_Pacific"}],"Indiana":{"Knox":[{"mzone":"America_Central","from":"2006-04-02 07:00"},{"to":"1991-10-27 07:00","mzone":"America_Central"},{"to":"2006-04-02 07:00","mzone":"America_Eastern","from":"1991-10-27 07:00"}],"Marengo":[{"mzone":"America_Eastern","from":"1974-10-27 07:00"},{"to":"1974-01-06 07:00","mzone":"America_Eastern"},{"to":"1974-10-27 07:00","mzone":"America_Central","from":"1974-01-06 07:00"}],"Petersburg":[{"mzone":"America_Eastern","from":"2007-11-04 07:00"},{"to":"1977-10-30 07:00","mzone":"America_Central"},{"to":"2006-04-02 07:00","mzone":"America_Eastern","from":"1977-10-30 07:00"},{"to":"2007-11-04 07:00","mzone":"America_Central","from":"2006-04-02 07:00"}],"Tell_City":[{"mzone":"America_Central","from":"2006-04-02 07:00"},{"to":"2006-04-02 07:00","mzone":"America_Eastern"}],"Vevay":[{"mzone":"America_Eastern"}],"Vincennes":[{"mzone":"America_Eastern","from":"2007-11-04 07:00"},{"to":"2006-04-02 07:00","mzone":"America_Eastern"},{"to":"2007-11-04 07:00","mzone":"America_Central","from":"2006-04-02 07:00"}],"Winamac":[{"mzone":"America_Eastern","from":"2007-03-11 08:00"},{"to":"2006-04-02 07:00","mzone":"America_Eastern"},{"to":"2007-03-11 08:00","mzone":"America_Central","from":"2006-04-02 07:00"}]},"Indianapolis":[{"mzone":"America_Eastern"}],"Inuvik":[{"mzone":"America_Mountain","from":"1979-04-29 10:00"},{"to":"1979-04-29 10:00","mzone":"America_Pacific"}],"Iqaluit":[{"mzone":"America_Eastern","from":"2000-10-29 07:00"},{"to":"1999-10-31 06:00","mzone":"America_Eastern"},{"to":"2000-10-29 07:00","mzone":"America_Central","from":"1999-10-31 06:00"}],"Jamaica":[{"mzone":"America_Eastern"}],"Jujuy":[{"mzone":"Argentina","from":"1991-10-06 04:00"},{"to":"1990-03-04 02:00","mzone":"Argentina"}],"Juneau":[{"mzone":"Alaska","from":"1983-11-30 09:00"},{"to":"1980-04-27 10:00","mzone":"America_Pacific"},{"to":"1980-10-26 10:00","mzone":"Yukon","from":"1980-04-27 10:00"},{"to":"1983-10-30 09:00","mzone":"America_Pacific","from":"1980-10-26 10:00"},{"to":"1983-11-30 09:00","mzone":"Yukon","from":"1983-10-30 09:00"}],"Kentucky":{"Monticello":[{"mzone":"America_Eastern","from":"2000-10-29 07:00"},{"to":"2000-10-29 07:00","mzone":"America_Central"}]},"Kralendijk":[{"mzone":"Atlantic"}],"La_Paz":[{"mzone":"Bolivia"}],"Lima":[{"mzone":"Peru"}],"Los_Angeles":[{"mzone":"America_Pacific"}],"Louisville":[{"mzone":"America_Eastern","from":"1974-10-27 07:00"},{"to":"1974-01-06 07:00","mzone":"America_Eastern"},{"to":"1974-10-27 07:00","mzone":"America_Central","from":"1974-01-06 07:00"}],"Lower_Princes":[{"mzone":"Atlantic"}],"Maceio":[{"mzone":"Brasilia"}],"Managua":[{"mzone":"America_Central","from":"1997-01-01 05:00"},{"to":"1973-05-01 06:00","mzone":"America_Central"},{"to":"1975-02-16 05:00","mzone":"America_Eastern","from":"1973-05-01 06:00"},{"to":"1992-01-01 10:00","mzone":"America_Central","from":"1975-02-16 05:00"},{"to":"1992-09-24 05:00","mzone":"America_Eastern","from":"1992-01-01 10:00"},{"to":"1993-01-01 06:00","mzone":"America_Central","from":"1992-09-24 05:00"},{"to":"1997-01-01 05:00","mzone":"America_Eastern","from":"1993-01-01 06:00"}],"Manaus":[{"mzone":"Amazon"}],"Marigot":[{"mzone":"Atlantic"}],"Martinique":[{"mzone":"Atlantic"}],"Matamoros":[{"mzone":"America_Central"}],"Mazatlan":[{"mzone":"Mexico_Pacific","from":"1970-01-01 08:00"},{"to":"1970-01-01 08:00","mzone":"America_Pacific"}],"Mendoza":[{"mzone":"Argentina","from":"2004-09-26 04:00"},{"to":"1990-03-04 02:00","mzone":"Argentina"},{"to":"2004-05-23 03:00","mzone":"Argentina","from":"1992-10-18 04:00"}],"Menominee":[{"mzone":"America_Central","from":"1973-04-29 07:00"},{"to":"1973-04-29 07:00","mzone":"America_Eastern"}],"Merida":[{"mzone":"America_Central","from":"1982-12-02 05:00"},{"to":"1981-12-23 06:00","mzone":"America_Central"},{"to":"1982-12-02 05:00","mzone":"America_Eastern","from":"1981-12-23 06:00"}],"Metlakatla":[{"mzone":"America_Pacific"}],"Mexico_City":[{"mzone":"America_Central"}],"Miquelon":[{"mzone":"Pierre_Miquelon","from":"1980-05-01 04:00"},{"to":"1980-05-01 04:00","mzone":"Atlantic"}],"Moncton":[{"mzone":"Atlantic"}],"Monterrey":[{"mzone":"America_Central"}],"Montevideo":[{"mzone":"Uruguay"}],"Montserrat":[{"mzone":"Atlantic"}],"Nassau":[{"mzone":"America_Eastern"}],"New_York":[{"mzone":"America_Eastern"}],"Nipigon":[{"mzone":"America_Eastern"}],"Nome":[{"mzone":"Alaska","from":"1983-11-30 09:00"},{"to":"1983-10-30 12:00","mzone":"Bering"},{"to":"1983-11-30 09:00","mzone":"Yukon","from":"1983-10-30 12:00"}],"Noronha":[{"mzone":"Noronha"}],"North_Dakota":{"Beulah":[{"mzone":"America_Central","from":"2010-11-07 08:00"},{"to":"2010-11-07 08:00","mzone":"America_Mountain"}],"Center":[{"mzone":"America_Central","from":"1992-10-25 08:00"},{"to":"1992-10-25 08:00","mzone":"America_Mountain"}],"New_Salem":[{"mzone":"America_Central","from":"2003-10-26 08:00"},{"to":"2003-10-26 08:00","mzone":"America_Mountain"}]},"Ojinaga":[{"mzone":"America_Mountain","from":"1998-04-05 09:00"},{"to":"1998-04-05 09:00","mzone":"America_Central"}],"Panama":[{"mzone":"America_Eastern"}],"Pangnirtung":[{"mzone":"America_Eastern","from":"2000-10-29 07:00"},{"to":"1995-04-02 06:00","mzone":"Atlantic"},{"to":"1999-10-31 06:00","mzone":"America_Eastern","from":"1995-04-02 06:00"},{"to":"2000-10-29 07:00","mzone":"America_Central","from":"1999-10-31 06:00"}],"Paramaribo":[{"mzone":"Suriname","from":"1975-11-20 03:30"},{"to":"1975-11-20 03:30","mzone":"Dutch_Guiana"}],"Phoenix":[{"mzone":"America_Mountain"}],"Port-au-Prince":[{"mzone":"America_Eastern"}],"Port_of_Spain":[{"mzone":"Atlantic"}],"Porto_Velho":[{"mzone":"Amazon"}],"Puerto_Rico":[{"mzone":"Atlantic"}],"Rainy_River":[{"mzone":"America_Central"}],"Rankin_Inlet":[{"mzone":"America_Central","from":"2001-04-01 08:00"},{"to":"2000-10-29 07:00","mzone":"America_Central"},{"to":"2001-04-01 08:00","mzone":"America_Eastern","from":"2000-10-29 07:00"}],"Recife":[{"mzone":"Brasilia"}],"Regina":[{"mzone":"America_Central"}],"Resolute":[{"mzone":"America_Central","from":"2007-03-11 08:00"},{"to":"2000-10-29 07:00","mzone":"America_Central"},{"to":"2001-04-01 08:00","mzone":"America_Eastern","from":"2000-10-29 07:00"},{"to":"2006-10-29 07:00","mzone":"America_Central","from":"2001-04-01 08:00"},{"to":"2007-03-11 08:00","mzone":"America_Eastern","from":"2006-10-29 07:00"}],"Rio_Branco":[{"mzone":"Acre","from":"2013-11-10 04:00"},{"to":"2008-06-24 05:00","mzone":"Acre"},{"to":"2013-11-10 04:00","mzone":"Amazon","from":"2008-06-24 05:00"}],"Santa_Isabel":[{"mzone":"Mexico_Northwest"}],"Santarem":[{"mzone":"Brasilia","from":"2008-06-24 04:00"},{"to":"2008-06-24 04:00","mzone":"Amazon"}],"Santiago":[{"mzone":"Chile"}],"Santo_Domingo":[{"mzone":"Atlantic","from":"2000-12-03 06:00"},{"to":"1974-10-27 05:00","mzone":"Dominican"},{"to":"2000-10-29 06:00","mzone":"Atlantic","from":"1974-10-27 05:00"},{"to":"2000-12-03 06:00","mzone":"America_Eastern","from":"2000-10-29 06:00"}],"Sao_Paulo":[{"mzone":"Brasilia"}],"Scoresbysund":[{"mzone":"Greenland_Eastern","from":"1981-03-29 02:00"},{"to":"1981-03-29 02:00","mzone":"Greenland_Central"}],"Sitka":[{"mzone":"Alaska","from":"1983-11-30 09:00"},{"to":"1983-10-30 09:00","mzone":"America_Pacific"},{"to":"1983-11-30 09:00","mzone":"Yukon","from":"1983-10-30 09:00"}],"St_Barthelemy":[{"mzone":"Atlantic"}],"St_Johns":[{"mzone":"Newfoundland"}],"St_Kitts":[{"mzone":"Atlantic"}],"St_Lucia":[{"mzone":"Atlantic"}],"St_Thomas":[{"mzone":"Atlantic"}],"St_Vincent":[{"mzone":"Atlantic"}],"Swift_Current":[{"mzone":"America_Central","from":"1972-04-30 09:00"},{"to":"1972-04-30 09:00","mzone":"America_Mountain"}],"Tegucigalpa":[{"mzone":"America_Central"}],"Thule":[{"mzone":"Atlantic"}],"Thunder_Bay":[{"mzone":"America_Eastern"}],"Tijuana":[{"mzone":"America_Pacific"}],"Toronto":[{"mzone":"America_Eastern"}],"Tortola":[{"mzone":"Atlantic"}],"Vancouver":[{"mzone":"America_Pacific"}],"Whitehorse":[{"mzone":"America_Pacific"}],"Winnipeg":[{"mzone":"America_Central"}],"Yakutat":[{"mzone":"Alaska","from":"1983-11-30 09:00"},{"to":"1983-11-30 09:00","mzone":"Yukon"}],"Yellowknife":[{"mzone":"America_Mountain"}]},"Antarctica":{"Casey":[{"mzone":"Australia_Western","from":"2012-02-21 17:00"},{"to":"2009-10-17 18:00","mzone":"Australia_Western"},{"to":"2010-03-04 15:00","mzone":"Casey","from":"2009-10-17 18:00"},{"to":"2011-10-27 18:00","mzone":"Australia_Western","from":"2010-03-04 15:00"},{"to":"2012-02-21 17:00","mzone":"Casey","from":"2011-10-27 18:00"}],"Davis":[{"mzone":"Davis"}],"DumontDUrville":[{"mzone":"DumontDUrville"}],"Macquarie":[{"mzone":"Macquarie","from":"2010-04-03 16:00"},{"to":"2010-04-03 16:00","mzone":"Australia_Eastern"}],"Mawson":[{"mzone":"Mawson"}],"McMurdo":[{"mzone":"New_Zealand"}],"Palmer":[{"mzone":"Chile","from":"1982-05-01 03:00"},{"to":"1982-05-01 03:00","mzone":"Argentina"}],"Rothera":[{"mzone":"Rothera"}],"Syowa":[{"mzone":"Syowa"}],"Troll":[{"mzone":"GMT"}],"Vostok":[{"mzone":"Vostok"}]},"Arctic":{"Longyearbyen":[{"mzone":"Europe_Central"}]},"Asia":{"Aden":[{"mzone":"Arabian"}],"Almaty":[{"mzone":"Kazakhstan_Eastern","from":"2005-03-14 18:00"},{"to":"2005-03-14 18:00","mzone":"Almaty"}],"Amman":[{"mzone":"Europe_Eastern"}],"Anadyr":[{"mzone":"Magadan","from":"2010-03-27 14:00"},{"to":"2010-03-27 14:00","mzone":"Anadyr"}],"Aqtau":[{"mzone":"Kazakhstan_Western","from":"2005-03-14 20:00"},{"to":"1991-12-15 19:00","mzone":"Shevchenko"},{"to":"2005-03-14 20:00","mzone":"Aqtau","from":"1991-12-15 19:00"}],"Aqtobe":[{"mzone":"Kazakhstan_Western","from":"2005-03-14 19:00"},{"to":"1991-12-15 19:00","mzone":"Aktyubinsk"},{"to":"2005-03-14 19:00","mzone":"Aqtobe","from":"1991-12-15 19:00"}],"Ashgabat":[{"mzone":"Turkmenistan","from":"1991-10-26 20:00"},{"to":"1991-10-26 20:00","mzone":"Ashkhabad"}],"Baghdad":[{"mzone":"Arabian"}],"Bahrain":[{"mzone":"Arabian","from":"1972-05-31 20:00"},{"to":"1972-05-31 20:00","mzone":"Gulf"}],"Baku":[{"mzone":"Azerbaijan","from":"1991-08-29 20:00"},{"to":"1991-08-29 20:00","mzone":"Baku"}],"Bangkok":[{"mzone":"Indochina"}],"Beirut":[{"mzone":"Europe_Eastern"}],"Bishkek":[{"mzone":"Kyrgystan","from":"1991-08-30 20:00"},{"to":"1991-08-30 20:00","mzone":"Frunze"}],"Brunei":[{"mzone":"Brunei"}],"Calcutta":[{"mzone":"India"}],"Chita":[{"mzone":"Irkutsk","from":"2014-10-25 16:00"},{"to":"2014-10-25 16:00","mzone":"Yakutsk"}],"Choibalsan":[{"mzone":"Choibalsan","from":"1983-03-31 16:00"},{"to":"1983-03-31 16:00","mzone":"Mongolia"}],"Colombo":[{"mzone":"India","from":"2006-04-14 18:30"},{"to":"1996-05-24 18:30","mzone":"India"},{"to":"2006-04-14 18:30","mzone":"Lanka","from":"1996-05-24 18:30"}],"Damascus":[{"mzone":"Europe_Eastern"}],"Dhaka":[{"mzone":"Bangladesh","from":"1971-03-25 18:00"},{"to":"1971-03-25 18:00","mzone":"Dacca"}],"Dili":[{"mzone":"East_Timor","from":"2000-09-16 16:00"},{"to":"1976-05-02 15:00","mzone":"East_Timor"},{"to":"2000-09-16 16:00","mzone":"Indonesia_Central","from":"1976-05-02 15:00"}],"Dubai":[{"mzone":"Gulf"}],"Dushanbe":[{"mzone":"Tajikistan","from":"1991-09-08 21:00"},{"to":"1991-09-08 21:00","mzone":"Dushanbe"}],"Gaza":[{"mzone":"Europe_Eastern","from":"1995-12-31 22:00"},{"to":"1995-12-31 22:00","mzone":"Israel"}],"Hebron":[{"mzone":"Europe_Eastern","from":"1995-12-31 22:00"},{"to":"1995-12-31 22:00","mzone":"Israel"}],"Hong_Kong":[{"mzone":"Hong_Kong"}],"Hovd":[{"mzone":"Hovd"}],"Irkutsk":[{"mzone":"Irkutsk"}],"Jakarta":[{"mzone":"Indonesia_Western"}],"Jayapura":[{"mzone":"Indonesia_Eastern"}],"Jerusalem":[{"mzone":"Israel"}],"Kabul":[{"mzone":"Afghanistan"}],"Kamchatka":[{"mzone":"Magadan","from":"2010-03-27 14:00"},{"to":"2010-03-27 14:00","mzone":"Kamchatka"}],"Karachi":[{"mzone":"Pakistan","from":"1971-03-25 19:00"},{"to":"1971-03-25 19:00","mzone":"Karachi"}],"Katmandu":[{"mzone":"Nepal"}],"Khandyga":[{"mzone":"Yakutsk","from":"2011-09-12 13:00"},{"to":"2003-12-31 15:00","mzone":"Yakutsk"},{"to":"2011-09-12 13:00","mzone":"Vladivostok","from":"2003-12-31 15:00"}],"Krasnoyarsk":[{"mzone":"Krasnoyarsk"}],"Kuala_Lumpur":[{"mzone":"Malaysia","from":"1981-12-31 16:30"},{"to":"1981-12-31 16:30","mzone":"Malaya"}],"Kuching":[{"mzone":"Malaysia","from":"1981-12-31 16:00"},{"to":"1981-12-31 16:00","mzone":"Borneo"}],"Kuwait":[{"mzone":"Arabian"}],"Macau":[{"mzone":"China","from":"1999-12-19 16:00"},{"to":"1999-12-19 16:00","mzone":"Macau"}],"Magadan":[{"mzone":"Magadan"}],"Makassar":[{"mzone":"Indonesia_Central"}],"Manila":[{"mzone":"Philippines"}],"Muscat":[{"mzone":"Gulf"}],"Nicosia":[{"mzone":"Europe_Eastern"}],"Novokuznetsk":[{"mzone":"Krasnoyarsk","from":"2014-10-25 19:00"},{"to":"2010-03-27 19:00","mzone":"Krasnoyarsk"},{"to":"2014-10-25 19:00","mzone":"Novosibirsk","from":"2010-03-27 19:00"}],"Novosibirsk":[{"mzone":"Novosibirsk"}],"Omsk":[{"mzone":"Omsk"}],"Oral":[{"mzone":"Kazakhstan_Western","from":"2005-03-14 20:00"},{"to":"1991-12-15 20:00","mzone":"Uralsk"},{"to":"2005-03-14 20:00","mzone":"Oral","from":"1991-12-15 20:00"}],"Phnom_Penh":[{"mzone":"Indochina"}],"Pontianak":[{"mzone":"Indonesia_Western","from":"1987-12-31 16:00"},{"to":"1987-12-31 16:00","mzone":"Indonesia_Central"}],"Pyongyang":[{"mzone":"Korea"}],"Qatar":[{"mzone":"Arabian","from":"1972-05-31 20:00"},{"to":"1972-05-31 20:00","mzone":"Gulf"}],"Qyzylorda":[{"mzone":"Kazakhstan_Eastern","from":"2005-03-14 18:00"},{"to":"1991-12-15 19:00","mzone":"Kizilorda"},{"to":"2005-03-14 18:00","mzone":"Qyzylorda","from":"1991-12-15 19:00"}],"Rangoon":[{"mzone":"Myanmar"}],"Riyadh":[{"mzone":"Arabian"}],"Saigon":[{"mzone":"Indochina"}],"Sakhalin":[{"mzone":"Sakhalin"}],"Samarkand":[{"mzone":"Uzbekistan","from":"1991-08-31 18:00"},{"to":"1981-09-30 18:00","mzone":"Samarkand"},{"to":"1982-03-31 18:00","mzone":"Tashkent","from":"1981-09-30 18:00"},{"to":"1991-08-31 18:00","mzone":"Samarkand","from":"1982-03-31 18:00"}],"Seoul":[{"mzone":"Korea"}],"Shanghai":[{"mzone":"China"}],"Singapore":[{"mzone":"Singapore"}],"Srednekolymsk":[{"to":"2014-10-25 14:00","mzone":"Magadan"}],"Taipei":[{"mzone":"Taipei"}],"Tashkent":[{"mzone":"Uzbekistan","from":"1991-08-31 18:00"},{"to":"1991-08-31 18:00","mzone":"Tashkent"}],"Tbilisi":[{"mzone":"Georgia","from":"1991-04-08 20:00"},{"to":"1991-04-08 20:00","mzone":"Tbilisi"}],"Tehran":[{"mzone":"Iran"}],"Thimphu":[{"mzone":"Bhutan","from":"1987-09-30 18:30"},{"to":"1987-09-30 18:30","mzone":"India"}],"Tokyo":[{"mzone":"Japan"}],"Ulaanbaatar":[{"mzone":"Mongolia"}],"Urumqi":[{"mzone":"Urumqi"}],"Ust-Nera":[{"mzone":"Vladivostok","from":"2011-09-12 12:00"},{"to":"1981-03-31 15:00","mzone":"Yakutsk"},{"to":"2011-09-12 12:00","mzone":"Magadan","from":"1981-03-31 15:00"}],"Vientiane":[{"mzone":"Indochina"}],"Vladivostok":[{"mzone":"Vladivostok"}],"Yakutsk":[{"mzone":"Yakutsk"}],"Yekaterinburg":[{"mzone":"Yekaterinburg","from":"1992-01-18 22:00"},{"to":"1992-01-18 22:00","mzone":"Sverdlovsk"}],"Yerevan":[{"mzone":"Armenia","from":"1991-09-22 20:00"},{"to":"1991-09-22 20:00","mzone":"Yerevan"}]},"Atlantic":{"Azores":[{"mzone":"Azores","from":"1993-03-28 01:00"},{"to":"1992-09-27 02:00","mzone":"Azores"},{"to":"1993-03-28 01:00","mzone":"Europe_Western","from":"1992-09-27 02:00"}],"Bermuda":[{"mzone":"Atlantic"}],"Canary":[{"mzone":"Europe_Western"}],"Cape_Verde":[{"mzone":"Cape_Verde"}],"Faeroe":[{"mzone":"Europe_Western"}],"Madeira":[{"mzone":"Europe_Western"}],"Reykjavik":[{"mzone":"GMT"}],"South_Georgia":[{"mzone":"South_Georgia"}],"St_Helena":[{"mzone":"GMT"}],"Stanley":[{"mzone":"Falkland"}]},"Australia":{"Adelaide":[{"mzone":"Australia_Central"}],"Brisbane":[{"mzone":"Australia_Eastern"}],"Broken_Hill":[{"mzone":"Australia_Central"}],"Currie":[{"mzone":"Australia_Eastern"}],"Darwin":[{"mzone":"Australia_Central"}],"Eucla":[{"mzone":"Australia_CentralWestern"}],"Hobart":[{"mzone":"Australia_Eastern"}],"Lindeman":[{"mzone":"Australia_Eastern"}],"Lord_Howe":[{"mzone":"Lord_Howe","from":"1981-02-28 14:00"},{"to":"1981-02-28 14:00","mzone":"Australia_Eastern"}],"Melbourne":[{"mzone":"Australia_Eastern"}],"Perth":[{"mzone":"Australia_Western"}],"Sydney":[{"mzone":"Australia_Eastern"}]},"CST6CDT":[{"mzone":"America_Central"}],"EST5EDT":[{"mzone":"America_Eastern"}],"Europe":{"Amsterdam":[{"mzone":"Europe_Central"}],"Andorra":[{"mzone":"Europe_Central"}],"Athens":[{"mzone":"Europe_Eastern"}],"Belgrade":[{"mzone":"Europe_Central"}],"Berlin":[{"mzone":"Europe_Central"}],"Bratislava":[{"mzone":"Europe_Central"}],"Brussels":[{"mzone":"Europe_Central"}],"Bucharest":[{"mzone":"Europe_Eastern"}],"Budapest":[{"mzone":"Europe_Central"}],"Busingen":[{"mzone":"Europe_Central"}],"Chisinau":[{"mzone":"Europe_Eastern","from":"1990-05-05 21:00"},{"to":"1990-05-05 21:00","mzone":"Moscow"}],"Copenhagen":[{"mzone":"Europe_Central"}],"Dublin":[{"mzone":"GMT","from":"1971-10-31 02:00"},{"to":"1971-10-31 02:00","mzone":"Irish"}],"Gibraltar":[{"mzone":"Europe_Central"}],"Guernsey":[{"mzone":"GMT","from":"1971-10-31 02:00"},{"to":"1971-10-31 02:00","mzone":"British"}],"Helsinki":[{"mzone":"Europe_Eastern"}],"Isle_of_Man":[{"mzone":"GMT","from":"1971-10-31 02:00"},{"to":"1971-10-31 02:00","mzone":"British"}],"Istanbul":[{"mzone":"Europe_Eastern","from":"1985-04-19 21:00"},{"to":"1978-10-14 21:00","mzone":"Europe_Eastern"},{"to":"1985-04-19 21:00","mzone":"Turkey","from":"1978-10-14 21:00"}],"Jersey":[{"mzone":"GMT","from":"1971-10-31 02:00"},{"to":"1971-10-31 02:00","mzone":"British"}],"Kaliningrad":[{"mzone":"Europe_Eastern","from":"2014-10-25 23:00"},{"to":"1991-03-30 23:00","mzone":"Moscow"},{"to":"2011-03-27 00:00","mzone":"Europe_Eastern","from":"1991-03-30 23:00"},{"to":"2014-10-25 23:00","mzone":"Europe_Further_Eastern","from":"2011-03-27 00:00"}],"Kiev":[{"mzone":"Europe_Eastern","from":"1990-06-30 22:00"},{"to":"1990-06-30 22:00","mzone":"Moscow"}],"Lisbon":[{"mzone":"Europe_Western","from":"1996-03-31 01:00"},{"to":"1976-09-26 00:00","mzone":"Europe_Central"},{"to":"1992-09-27 01:00","mzone":"Europe_Western","from":"1976-09-26 00:00"},{"to":"1996-03-31 01:00","mzone":"Europe_Central","from":"1992-09-27 01:00"}],"Ljubljana":[{"mzone":"Europe_Central"}],"London":[{"mzone":"GMT","from":"1971-10-31 02:00"},{"to":"1971-10-31 02:00","mzone":"British"}],"Luxembourg":[{"mzone":"Europe_Central"}],"Madrid":[{"mzone":"Europe_Central"}],"Malta":[{"mzone":"Europe_Central"}],"Mariehamn":[{"mzone":"Europe_Eastern"}],"Minsk":[{"mzone":"Europe_Further_Eastern","from":"2011-03-27 00:00"},{"to":"1991-03-30 23:00","mzone":"Moscow"},{"to":"2011-03-27 00:00","mzone":"Europe_Eastern","from":"1991-03-30 23:00"}],"Monaco":[{"mzone":"Europe_Central"}],"Moscow":[{"mzone":"Moscow","from":"1992-01-19 00:00"},{"to":"1991-03-30 23:00","mzone":"Moscow"},{"to":"1992-01-19 00:00","mzone":"Europe_Eastern","from":"1991-03-30 23:00"}],"Oslo":[{"mzone":"Europe_Central"}],"Paris":[{"mzone":"Europe_Central"}],"Podgorica":[{"mzone":"Europe_Central"}],"Prague":[{"mzone":"Europe_Central"}],"Riga":[{"mzone":"Europe_Eastern","from":"1989-03-25 23:00"},{"to":"1989-03-25 23:00","mzone":"Moscow"}],"Rome":[{"mzone":"Europe_Central"}],"Samara":[{"mzone":"Moscow","from":"2010-03-27 22:00"},{"to":"1989-03-25 22:00","mzone":"Kuybyshev"},{"to":"1991-03-30 23:00","mzone":"Moscow","from":"1989-03-25 22:00"},{"to":"1991-09-29 00:00","mzone":"Europe_Eastern","from":"1991-03-30 23:00"},{"to":"1991-10-20 00:00","mzone":"Kuybyshev","from":"1991-09-29 00:00"},{"to":"2010-03-27 22:00","mzone":"Samara","from":"1991-10-20 00:00"}],"San_Marino":[{"mzone":"Europe_Central"}],"Sarajevo":[{"mzone":"Europe_Central"}],"Simferopol":[{"mzone":"Moscow","from":"2014-03-30 00:00"},{"to":"1990-06-30 23:00","mzone":"Moscow"},{"to":"1994-04-30 21:00","mzone":"Europe_Eastern","from":"1990-06-30 23:00"},{"to":"1997-03-30 01:00","mzone":"Moscow","from":"1994-04-30 21:00"},{"to":"2014-03-30 00:00","mzone":"Europe_Eastern","from":"1997-03-30 01:00"}],"Skopje":[{"mzone":"Europe_Central"}],"Sofia":[{"mzone":"Europe_Eastern"}],"Stockholm":[{"mzone":"Europe_Central"}],"Tallinn":[{"mzone":"Europe_Eastern","from":"1989-03-25 23:00"},{"to":"1989-03-25 23:00","mzone":"Moscow"}],"Tirane":[{"mzone":"Europe_Central"}],"Uzhgorod":[{"mzone":"Europe_Eastern","from":"1991-03-31 02:00"},{"to":"1990-06-30 23:00","mzone":"Moscow"},{"to":"1991-03-31 02:00","mzone":"Europe_Central","from":"1990-06-30 23:00"}],"Vaduz":[{"mzone":"Europe_Central"}],"Vatican":[{"mzone":"Europe_Central"}],"Vienna":[{"mzone":"Europe_Central"}],"Vilnius":[{"mzone":"Europe_Eastern","from":"1999-10-31 01:00"},{"to":"1991-03-30 23:00","mzone":"Moscow"},{"to":"1998-03-29 01:00","mzone":"Europe_Eastern","from":"1991-03-30 23:00"},{"to":"1999-10-31 01:00","mzone":"Europe_Central","from":"1998-03-29 01:00"}],"Volgograd":[{"mzone":"Moscow","from":"1992-03-28 22:00"},{"to":"1992-03-28 22:00","mzone":"Volgograd"}],"Warsaw":[{"mzone":"Europe_Central"}],"Zagreb":[{"mzone":"Europe_Central"}],"Zaporozhye":[{"mzone":"Europe_Eastern","from":"1991-03-30 23:00"},{"to":"1991-03-30 23:00","mzone":"Moscow"}],"Zurich":[{"mzone":"Europe_Central"}]},"Indian":{"Antananarivo":[{"mzone":"Africa_Eastern"}],"Chagos":[{"mzone":"Indian_Ocean"}],"Christmas":[{"mzone":"Christmas"}],"Cocos":[{"mzone":"Cocos"}],"Comoro":[{"mzone":"Africa_Eastern"}],"Kerguelen":[{"mzone":"French_Southern"}],"Mahe":[{"mzone":"Seychelles"}],"Maldives":[{"mzone":"Maldives"}],"Mauritius":[{"mzone":"Mauritius"}],"Mayotte":[{"mzone":"Africa_Eastern"}],"Reunion":[{"mzone":"Reunion"}]},"MST7MDT":[{"mzone":"America_Mountain"}],"PST8PDT":[{"mzone":"America_Pacific"}],"Pacific":{"Apia":[{"mzone":"Apia"}],"Auckland":[{"mzone":"New_Zealand"}],"Chatham":[{"mzone":"Chatham"}],"Easter":[{"mzone":"Easter"}],"Efate":[{"mzone":"Vanuatu"}],"Enderbury":[{"mzone":"Phoenix_Islands"}],"Fakaofo":[{"mzone":"Tokelau"}],"Fiji":[{"mzone":"Fiji"}],"Funafuti":[{"mzone":"Tuvalu"}],"Galapagos":[{"mzone":"Galapagos","from":"1986-01-01 05:00"},{"to":"1986-01-01 05:00","mzone":"Ecuador"}],"Gambier":[{"mzone":"Gambier"}],"Guadalcanal":[{"mzone":"Solomon"}],"Guam":[{"mzone":"Chamorro","from":"2000-12-22 14:00"},{"to":"2000-12-22 14:00","mzone":"Guam"}],"Honolulu":[{"mzone":"Hawaii_Aleutian","from":"1983-10-30 11:00"},{"to":"1983-10-30 11:00","mzone":"Alaska_Hawaii"}],"Johnston":[{"mzone":"Hawaii_Aleutian","from":"1983-10-30 11:00"},{"to":"1983-10-30 11:00","mzone":"Alaska_Hawaii"}],"Kiritimati":[{"mzone":"Line_Islands"}],"Kosrae":[{"mzone":"Kosrae"}],"Kwajalein":[{"mzone":"Marshall_Islands","from":"1993-08-20 12:00"},{"to":"1993-08-20 12:00","mzone":"Kwajalein"}],"Majuro":[{"mzone":"Marshall_Islands"}],"Marquesas":[{"mzone":"Marquesas"}],"Midway":[{"mzone":"Samoa","from":"1983-10-30 12:00"},{"to":"1983-10-30 12:00","mzone":"Bering"}],"Nauru":[{"mzone":"Nauru"}],"Niue":[{"mzone":"Niue"}],"Norfolk":[{"mzone":"Norfolk"}],"Noumea":[{"mzone":"New_Caledonia"}],"Pago_Pago":[{"mzone":"Samoa","from":"1983-10-30 12:00"},{"to":"1983-10-30 12:00","mzone":"Bering"}],"Palau":[{"mzone":"Palau"}],"Pitcairn":[{"mzone":"Pitcairn"}],"Ponape":[{"mzone":"Ponape"}],"Port_Moresby":[{"mzone":"Papua_New_Guinea"}],"Rarotonga":[{"mzone":"Cook"}],"Saipan":[{"mzone":"Chamorro","from":"2000-12-22 14:00"},{"to":"2000-12-22 14:00","mzone":"North_Mariana"}],"Tahiti":[{"mzone":"Tahiti"}],"Tarawa":[{"mzone":"Gilbert_Islands"}],"Tongatapu":[{"mzone":"Tonga"}],"Truk":[{"mzone":"Truk"}],"Wake":[{"mzone":"Wake"}],"Wallis":[{"mzone":"Wallis"}]}},"metazones":[{"other":"GMT","territory":"CI","type":"Africa/Abidjan"},{"other":"GMT","territory":"GH","type":"Africa/Accra"},{"other":"Africa_Eastern","territory":"ET","type":"Africa/Addis_Ababa"},{"other":"Africa_Eastern","territory":"ER","type":"Africa/Asmera"},{"other":"GMT","territory":"ML","type":"Africa/Bamako"},{"other":"Africa_Western","territory":"CF","type":"Africa/Bangui"},{"other":"GMT","territory":"GM","type":"Africa/Banjul"},{"other":"Africa_Central","territory":"MW","type":"Africa/Blantyre"},{"other":"Africa_Western","territory":"CG","type":"Africa/Brazzaville"},{"other":"Africa_Central","territory":"BI","type":"Africa/Bujumbura"},{"other":"Europe_Eastern","territory":"EG","type":"Africa/Cairo"},{"other":"GMT","territory":"GN","type":"Africa/Conakry"},{"other":"GMT","territory":"SN","type":"Africa/Dakar"},{"other":"Africa_Eastern","territory":"TZ","type":"Africa/Dar_es_Salaam"},{"other":"Africa_Eastern","territory":"DJ","type":"Africa/Djibouti"},{"other":"Africa_Western","territory":"CM","type":"Africa/Douala"},{"other":"Africa_FarWestern","territory":"001","type":"Africa/El_Aaiun"},{"other":"GMT","territory":"SL","type":"Africa/Freetown"},{"other":"Africa_Central","territory":"BW","type":"Africa/Gaborone"},{"other":"Africa_Central","territory":"ZW","type":"Africa/Harare"},{"other":"Africa_Southern","territory":"001","type":"Africa/Johannesburg"},{"other":"Africa_Eastern","territory":"UG","type":"Africa/Kampala"},{"other":"Africa_Central","territory":"RW","type":"Africa/Kigali"},{"other":"Africa_Western","territory":"CD","type":"Africa/Kinshasa"},{"other":"Africa_Western","territory":"001","type":"Africa/Lagos"},{"other":"Africa_Western","territory":"GA","type":"Africa/Libreville"},{"other":"GMT","territory":"TG","type":"Africa/Lome"},{"other":"Africa_Western","territory":"AO","type":"Africa/Luanda"},{"other":"Africa_Central","territory":"CD","type":"Africa/Lubumbashi"},{"other":"Africa_Central","territory":"ZM","type":"Africa/Lusaka"},{"other":"Africa_Western","territory":"GQ","type":"Africa/Malabo"},{"other":"Africa_Central","territory":"001","type":"Africa/Maputo"},{"other":"Africa_Southern","territory":"LS","type":"Africa/Maseru"},{"other":"Africa_Southern","territory":"SZ","type":"Africa/Mbabane"},{"other":"Africa_Eastern","territory":"SO","type":"Africa/Mogadishu"},{"other":"Liberia","territory":"001","type":"Africa/Monrovia"},{"other":"Africa_Eastern","territory":"001","type":"Africa/Nairobi"},{"other":"Africa_Western","territory":"TD","type":"Africa/Ndjamena"},{"other":"Africa_Western","territory":"NE","type":"Africa/Niamey"},{"other":"GMT","territory":"MR","type":"Africa/Nouakchott"},{"other":"GMT","territory":"BF","type":"Africa/Ouagadougou"},{"other":"Africa_Western","territory":"BJ","type":"Africa/Porto-Novo"},{"other":"GMT","territory":"ST","type":"Africa/Sao_Tome"},{"other":"Europe_Central","territory":"TN","type":"Africa/Tunis"},{"other":"Bering","territory":"001","type":"America/Adak"},{"other":"Alaska_Hawaii","territory":"001","type":"America/Anchorage"},{"other":"Atlantic","territory":"AI","type":"America/Anguilla"},{"other":"Atlantic","territory":"AG","type":"America/Antigua"},{"other":"Argentina_Western","territory":"001","type":"America/Argentina/San_Luis"},{"other":"Atlantic","territory":"AW","type":"America/Aruba"},{"other":"Paraguay","territory":"001","type":"America/Asuncion"},{"other":"Atlantic","territory":"BB","type":"America/Barbados"},{"other":"America_Central","territory":"BZ","type":"America/Belize"},{"other":"Colombia","territory":"001","type":"America/Bogota"},{"other":"Argentina","territory":"001","type":"America/Buenos_Aires"},{"other":"Venezuela","territory":"001","type":"America/Caracas"},{"other":"French_Guiana","territory":"001","type":"America/Cayenne"},{"other":"America_Eastern","territory":"KY","type":"America/Cayman"},{"other":"America_Central","territory":"001","type":"America/Chicago"},{"other":"America_Central","territory":"CR","type":"America/Costa_Rica"},{"other":"Atlantic","territory":"AN","type":"America/Curacao"},{"other":"America_Mountain","territory":"001","type":"America/Denver"},{"other":"Atlantic","territory":"DM","type":"America/Dominica"},{"other":"America_Mountain","territory":"CA","type":"America/Edmonton"},{"other":"America_Central","territory":"SV","type":"America/El_Salvador"},{"other":"Greenland_Western","territory":"001","type":"America/Godthab"},{"other":"Goose_Bay","territory":"001","type":"America/Goose_Bay"},{"other":"Atlantic","territory":"GD","type":"America/Grenada"},{"other":"Atlantic","territory":"GP","type":"America/Guadeloupe"},{"other":"America_Central","territory":"GT","type":"America/Guatemala"},{"other":"Ecuador","territory":"001","type":"America/Guayaquil"},{"other":"Guyana","territory":"001","type":"America/Guyana"},{"other":"Atlantic","territory":"001","type":"America/Halifax"},{"other":"Cuba","territory":"001","type":"America/Havana"},{"other":"America_Mountain","territory":"MX","type":"America/Hermosillo"},{"other":"America_Eastern","territory":"JM","type":"America/Jamaica"},{"other":"Alaska","territory":"001","type":"America/Juneau"},{"other":"Atlantic","territory":"BQ","type":"America/Kralendijk"},{"other":"Bolivia","territory":"001","type":"America/La_Paz"},{"other":"Peru","territory":"001","type":"America/Lima"},{"other":"America_Pacific","territory":"001","type":"America/Los_Angeles"},{"other":"Atlantic","territory":"SX","type":"America/Lower_Princes"},{"other":"Amazon","territory":"001","type":"America/Manaus"},{"other":"Atlantic","territory":"MF","type":"America/Marigot"},{"other":"Atlantic","territory":"MQ","type":"America/Martinique"},{"other":"Mexico_Pacific","territory":"001","type":"America/Mazatlan"},{"other":"America_Central","territory":"MX","type":"America/Mexico_City"},{"other":"Pierre_Miquelon","territory":"001","type":"America/Miquelon"},{"other":"Uruguay","territory":"001","type":"America/Montevideo"},{"other":"Atlantic","territory":"MS","type":"America/Montserrat"},{"other":"America_Eastern","territory":"BS","type":"America/Nassau"},{"other":"America_Eastern","territory":"001","type":"America/New_York"},{"other":"Noronha","territory":"001","type":"America/Noronha"},{"other":"America_Eastern","territory":"PA","type":"America/Panama"},{"other":"Dutch_Guiana","territory":"001","type":"America/Paramaribo"},{"other":"Suriname","territory":"001","type":"America/Paramaribo"},{"other":"America_Eastern","territory":"HT","type":"America/Port-au-Prince"},{"other":"Atlantic","territory":"TT","type":"America/Port_of_Spain"},{"other":"Atlantic","territory":"PR","type":"America/Puerto_Rico"},{"other":"Acre","territory":"001","type":"America/Rio_Branco"},{"other":"Mexico_Northwest","territory":"001","type":"America/Santa_Isabel"},{"other":"Chile","territory":"001","type":"America/Santiago"},{"other":"Dominican","territory":"001","type":"America/Santo_Domingo"},{"other":"Brasilia","territory":"001","type":"America/Sao_Paulo"},{"other":"Greenland_Central","territory":"001","type":"America/Scoresbysund"},{"other":"Greenland_Eastern","territory":"001","type":"America/Scoresbysund"},{"other":"Newfoundland","territory":"001","type":"America/St_Johns"},{"other":"Atlantic","territory":"KN","type":"America/St_Kitts"},{"other":"Atlantic","territory":"LC","type":"America/St_Lucia"},{"other":"Atlantic","territory":"VI","type":"America/St_Thomas"},{"other":"Atlantic","territory":"VC","type":"America/St_Vincent"},{"other":"America_Central","territory":"HN","type":"America/Tegucigalpa"},{"other":"Atlantic","territory":"GL","type":"America/Thule"},{"other":"America_Pacific","territory":"MX","type":"America/Tijuana"},{"other":"America_Eastern","territory":"CA","type":"America/Toronto"},{"other":"Atlantic","territory":"VG","type":"America/Tortola"},{"other":"America_Pacific","territory":"CA","type":"America/Vancouver"},{"other":"America_Central","territory":"CA","type":"America/Winnipeg"},{"other":"Yukon","territory":"001","type":"America/Yakutat"},{"other":"Casey","territory":"001","type":"Antarctica/Casey"},{"other":"Davis","territory":"001","type":"Antarctica/Davis"},{"other":"DumontDUrville","territory":"001","type":"Antarctica/DumontDUrville"},{"other":"Macquarie","territory":"001","type":"Antarctica/Macquarie"},{"other":"Mawson","territory":"001","type":"Antarctica/Mawson"},{"other":"New_Zealand","territory":"AQ","type":"Antarctica/McMurdo"},{"other":"Chile","territory":"AQ","type":"Antarctica/Palmer"},{"other":"Rothera","territory":"001","type":"Antarctica/Rothera"},{"other":"Syowa","territory":"001","type":"Antarctica/Syowa"},{"other":"Vostok","territory":"001","type":"Antarctica/Vostok"},{"other":"Arabian","territory":"YE","type":"Asia/Aden"},{"other":"Almaty","territory":"001","type":"Asia/Almaty"},{"other":"Kazakhstan_Eastern","territory":"001","type":"Asia/Almaty"},{"other":"Europe_Eastern","territory":"JO","type":"Asia/Amman"},{"other":"Anadyr","territory":"001","type":"Asia/Anadyr"},{"other":"Aqtau","territory":"001","type":"Asia/Aqtau"},{"other":"Shevchenko","territory":"001","type":"Asia/Aqtau"},{"other":"Aktyubinsk","territory":"001","type":"Asia/Aqtobe"},{"other":"Aqtobe","territory":"001","type":"Asia/Aqtobe"},{"other":"Kazakhstan_Western","territory":"001","type":"Asia/Aqtobe"},{"other":"Ashkhabad","territory":"001","type":"Asia/Ashgabat"},{"other":"Turkmenistan","territory":"001","type":"Asia/Ashgabat"},{"other":"Arabian","territory":"IQ","type":"Asia/Baghdad"},{"other":"Arabian","territory":"BH","type":"Asia/Bahrain"},{"other":"Azerbaijan","territory":"001","type":"Asia/Baku"},{"other":"Baku","territory":"001","type":"Asia/Baku"},{"other":"Indochina","territory":"TH","type":"Asia/Bangkok"},{"other":"Europe_Eastern","territory":"LB","type":"Asia/Beirut"},{"other":"Frunze","territory":"001","type":"Asia/Bishkek"},{"other":"Kyrgystan","territory":"001","type":"Asia/Bishkek"},{"other":"Brunei","territory":"001","type":"Asia/Brunei"},{"other":"India","territory":"001","type":"Asia/Calcutta"},{"other":"Choibalsan","territory":"001","type":"Asia/Choibalsan"},{"other":"India","territory":"LK","type":"Asia/Colombo"},{"other":"Lanka","territory":"001","type":"Asia/Colombo"},{"other":"Europe_Eastern","territory":"SY","type":"Asia/Damascus"},{"other":"Bangladesh","territory":"001","type":"Asia/Dhaka"},{"other":"Dacca","territory":"001","type":"Asia/Dhaka"},{"other":"East_Timor","territory":"001","type":"Asia/Dili"},{"other":"Gulf","territory":"001","type":"Asia/Dubai"},{"other":"Dushanbe","territory":"001","type":"Asia/Dushanbe"},{"other":"Tajikistan","territory":"001","type":"Asia/Dushanbe"},{"other":"Hong_Kong","territory":"001","type":"Asia/Hong_Kong"},{"other":"Hovd","territory":"001","type":"Asia/Hovd"},{"other":"Irkutsk","territory":"001","type":"Asia/Irkutsk"},{"other":"Indonesia_Western","territory":"001","type":"Asia/Jakarta"},{"other":"Indonesia_Eastern","territory":"001","type":"Asia/Jayapura"},{"other":"Israel","territory":"001","type":"Asia/Jerusalem"},{"other":"Afghanistan","territory":"001","type":"Asia/Kabul"},{"other":"Kamchatka","territory":"001","type":"Asia/Kamchatka"},{"other":"Karachi","territory":"001","type":"Asia/Karachi"},{"other":"Pakistan","territory":"001","type":"Asia/Karachi"},{"other":"Nepal","territory":"001","type":"Asia/Katmandu"},{"other":"Krasnoyarsk","territory":"001","type":"Asia/Krasnoyarsk"},{"other":"Malaya","territory":"001","type":"Asia/Kuala_Lumpur"},{"other":"Borneo","territory":"001","type":"Asia/Kuching"},{"other":"Malaysia","territory":"001","type":"Asia/Kuching"},{"other":"Arabian","territory":"KW","type":"Asia/Kuwait"},{"other":"Macau","territory":"001","type":"Asia/Macau"},{"other":"Magadan","territory":"001","type":"Asia/Magadan"},{"other":"Indonesia_Central","territory":"001","type":"Asia/Makassar"},{"other":"Philippines","territory":"001","type":"Asia/Manila"},{"other":"Gulf","territory":"OM","type":"Asia/Muscat"},{"other":"Europe_Eastern","territory":"CY","type":"Asia/Nicosia"},{"other":"Novosibirsk","territory":"001","type":"Asia/Novosibirsk"},{"other":"Omsk","territory":"001","type":"Asia/Omsk"},{"other":"Oral","territory":"001","type":"Asia/Oral"},{"other":"Uralsk","territory":"001","type":"Asia/Oral"},{"other":"Indochina","territory":"KH","type":"Asia/Phnom_Penh"},{"other":"Korea","territory":"KP","type":"Asia/Pyongyang"},{"other":"Arabian","territory":"QA","type":"Asia/Qatar"},{"other":"Kizilorda","territory":"001","type":"Asia/Qyzylorda"},{"other":"Qyzylorda","territory":"001","type":"Asia/Qyzylorda"},{"other":"Myanmar","territory":"001","type":"Asia/Rangoon"},{"other":"Arabian","territory":"001","type":"Asia/Riyadh"},{"other":"Indochina","territory":"001","type":"Asia/Saigon"},{"other":"Sakhalin","territory":"001","type":"Asia/Sakhalin"},{"other":"Samarkand","territory":"001","type":"Asia/Samarkand"},{"other":"Korea","territory":"001","type":"Asia/Seoul"},{"other":"China","territory":"001","type":"Asia/Shanghai"},{"other":"Singapore","territory":"001","type":"Asia/Singapore"},{"other":"Taipei","territory":"001","type":"Asia/Taipei"},{"other":"Tashkent","territory":"001","type":"Asia/Tashkent"},{"other":"Uzbekistan","territory":"001","type":"Asia/Tashkent"},{"other":"Georgia","territory":"001","type":"Asia/Tbilisi"},{"other":"Tbilisi","territory":"001","type":"Asia/Tbilisi"},{"other":"Iran","territory":"001","type":"Asia/Tehran"},{"other":"Bhutan","territory":"001","type":"Asia/Thimphu"},{"other":"Japan","territory":"001","type":"Asia/Tokyo"},{"other":"Mongolia","territory":"001","type":"Asia/Ulaanbaatar"},{"other":"Urumqi","territory":"001","type":"Asia/Urumqi"},{"other":"Indochina","territory":"LA","type":"Asia/Vientiane"},{"other":"Vladivostok","territory":"001","type":"Asia/Vladivostok"},{"other":"Yakutsk","territory":"001","type":"Asia/Yakutsk"},{"other":"Sverdlovsk","territory":"001","type":"Asia/Yekaterinburg"},{"other":"Yekaterinburg","territory":"001","type":"Asia/Yekaterinburg"},{"other":"Armenia","territory":"001","type":"Asia/Yerevan"},{"other":"Yerevan","territory":"001","type":"Asia/Yerevan"},{"other":"Azores","territory":"001","type":"Atlantic/Azores"},{"other":"Atlantic","territory":"BM","type":"Atlantic/Bermuda"},{"other":"Europe_Western","territory":"001","type":"Atlantic/Canary"},{"other":"Cape_Verde","territory":"001","type":"Atlantic/Cape_Verde"},{"other":"Europe_Western","territory":"FO","type":"Atlantic/Faeroe"},{"other":"GMT","territory":"001","type":"Atlantic/Reykjavik"},{"other":"South_Georgia","territory":"001","type":"Atlantic/South_Georgia"},{"other":"GMT","territory":"SH","type":"Atlantic/St_Helena"},{"other":"Falkland","territory":"001","type":"Atlantic/Stanley"},{"other":"Australia_Central","territory":"001","type":"Australia/Adelaide"},{"other":"Australia_CentralWestern","territory":"001","type":"Australia/Eucla"},{"other":"Lord_Howe","territory":"001","type":"Australia/Lord_Howe"},{"other":"Australia_Western","territory":"001","type":"Australia/Perth"},{"other":"Australia_Eastern","territory":"001","type":"Australia/Sydney"},{"other":"Europe_Central","territory":"NL","type":"Europe/Amsterdam"},{"other":"Europe_Central","territory":"AD","type":"Europe/Andorra"},{"other":"Europe_Eastern","territory":"GR","type":"Europe/Athens"},{"other":"Europe_Central","territory":"RS","type":"Europe/Belgrade"},{"other":"Europe_Central","territory":"XK","type":"Europe/Belgrade"},{"other":"Europe_Central","territory":"DE","type":"Europe/Berlin"},{"other":"Europe_Central","territory":"SK","type":"Europe/Bratislava"},{"other":"Europe_Central","territory":"BE","type":"Europe/Brussels"},{"other":"Europe_Eastern","territory":"001","type":"Europe/Bucharest"},{"other":"Europe_Central","territory":"HU","type":"Europe/Budapest"},{"other":"Europe_Central","territory":"DK","type":"Europe/Copenhagen"},{"other":"GMT","territory":"IE","type":"Europe/Dublin"},{"other":"Irish","territory":"001","type":"Europe/Dublin"},{"other":"Europe_Central","territory":"GI","type":"Europe/Gibraltar"},{"other":"Europe_Eastern","territory":"FI","type":"Europe/Helsinki"},{"other":"Turkey","territory":"001","type":"Europe/Istanbul"},{"other":"Europe_Further_Eastern","territory":"RU","type":"Europe/Kaliningrad"},{"other":"Europe_Central","territory":"SI","type":"Europe/Ljubljana"},{"other":"British","territory":"001","type":"Europe/London"},{"other":"GMT","territory":"GB","type":"Europe/London"},{"other":"Europe_Central","territory":"LU","type":"Europe/Luxembourg"},{"other":"Europe_Central","territory":"ES","type":"Europe/Madrid"},{"other":"Europe_Central","territory":"MT","type":"Europe/Malta"},{"other":"Europe_Eastern","territory":"AX","type":"Europe/Mariehamn"},{"other":"Europe_Further_Eastern","territory":"001","type":"Europe/Minsk"},{"other":"Europe_Central","territory":"MC","type":"Europe/Monaco"},{"other":"Moscow","territory":"001","type":"Europe/Moscow"},{"other":"Europe_Central","territory":"NO","type":"Europe/Oslo"},{"other":"Europe_Central","territory":"001","type":"Europe/Paris"},{"other":"Europe_Central","territory":"ME","type":"Europe/Podgorica"},{"other":"Europe_Central","territory":"CZ","type":"Europe/Prague"},{"other":"Europe_Central","territory":"IT","type":"Europe/Rome"},{"other":"Kuybyshev","territory":"001","type":"Europe/Samara"},{"other":"Samara","territory":"001","type":"Europe/Samara"},{"other":"Europe_Central","territory":"SM","type":"Europe/San_Marino"},{"other":"Europe_Central","territory":"BA","type":"Europe/Sarajevo"},{"other":"Europe_Central","territory":"MK","type":"Europe/Skopje"},{"other":"Europe_Eastern","territory":"BG","type":"Europe/Sofia"},{"other":"Europe_Central","territory":"SE","type":"Europe/Stockholm"},{"other":"Europe_Central","territory":"AL","type":"Europe/Tirane"},{"other":"Europe_Central","territory":"LI","type":"Europe/Vaduz"},{"other":"Europe_Central","territory":"VA","type":"Europe/Vatican"},{"other":"Europe_Central","territory":"AT","type":"Europe/Vienna"},{"other":"Volgograd","territory":"001","type":"Europe/Volgograd"},{"other":"Europe_Central","territory":"PL","type":"Europe/Warsaw"},{"other":"Europe_Central","territory":"HR","type":"Europe/Zagreb"},{"other":"Europe_Central","territory":"CH","type":"Europe/Zurich"},{"other":"Africa_Eastern","territory":"MG","type":"Indian/Antananarivo"},{"other":"Indian_Ocean","territory":"001","type":"Indian/Chagos"},{"other":"Christmas","territory":"001","type":"Indian/Christmas"},{"other":"Cocos","territory":"001","type":"Indian/Cocos"},{"other":"Africa_Eastern","territory":"KM","type":"Indian/Comoro"},{"other":"French_Southern","territory":"001","type":"Indian/Kerguelen"},{"other":"Seychelles","territory":"001","type":"Indian/Mahe"},{"other":"Maldives","territory":"001","type":"Indian/Maldives"},{"other":"Mauritius","territory":"001","type":"Indian/Mauritius"},{"other":"Africa_Eastern","territory":"YT","type":"Indian/Mayotte"},{"other":"Reunion","territory":"001","type":"Indian/Reunion"},{"other":"Apia","territory":"001","type":"Pacific/Apia"},{"other":"New_Zealand","territory":"001","type":"Pacific/Auckland"},{"other":"Chatham","territory":"001","type":"Pacific/Chatham"},{"other":"Easter","territory":"001","type":"Pacific/Easter"},{"other":"Vanuatu","territory":"001","type":"Pacific/Efate"},{"other":"Phoenix_Islands","territory":"001","type":"Pacific/Enderbury"},{"other":"Tokelau","territory":"001","type":"Pacific/Fakaofo"},{"other":"Fiji","territory":"001","type":"Pacific/Fiji"},{"other":"Tuvalu","territory":"001","type":"Pacific/Funafuti"},{"other":"Galapagos","territory":"001","type":"Pacific/Galapagos"},{"other":"Gambier","territory":"001","type":"Pacific/Gambier"},{"other":"Solomon","territory":"001","type":"Pacific/Guadalcanal"},{"other":"Chamorro","territory":"GU","type":"Pacific/Guam"},{"other":"Guam","territory":"001","type":"Pacific/Guam"},{"other":"Hawaii_Aleutian","territory":"001","type":"Pacific/Honolulu"},{"other":"Line_Islands","territory":"001","type":"Pacific/Kiritimati"},{"other":"Kosrae","territory":"001","type":"Pacific/Kosrae"},{"other":"Kwajalein","territory":"001","type":"Pacific/Kwajalein"},{"other":"Marshall_Islands","territory":"001","type":"Pacific/Majuro"},{"other":"Marquesas","territory":"001","type":"Pacific/Marquesas"},{"other":"Nauru","territory":"001","type":"Pacific/Nauru"},{"other":"Niue","territory":"001","type":"Pacific/Niue"},{"other":"Norfolk","territory":"001","type":"Pacific/Norfolk"},{"other":"New_Caledonia","territory":"001","type":"Pacific/Noumea"},{"other":"Samoa","territory":"001","type":"Pacific/Pago_Pago"},{"other":"Palau","territory":"001","type":"Pacific/Palau"},{"other":"Pitcairn","territory":"001","type":"Pacific/Pitcairn"},{"other":"Ponape","territory":"001","type":"Pacific/Ponape"},{"other":"Papua_New_Guinea","territory":"001","type":"Pacific/Port_Moresby"},{"other":"Cook","territory":"001","type":"Pacific/Rarotonga"},{"other":"Chamorro","territory":"001","type":"Pacific/Saipan"},{"other":"North_Mariana","territory":"001","type":"Pacific/Saipan"},{"other":"Tahiti","territory":"001","type":"Pacific/Tahiti"},{"other":"Gilbert_Islands","territory":"001","type":"Pacific/Tarawa"},{"other":"Tonga","territory":"001","type":"Pacific/Tongatapu"},{"other":"Truk","territory":"001","type":"Pacific/Truk"},{"other":"Wake","territory":"001","type":"Pacific/Wake"},{"other":"Wallis","territory":"001","type":"Pacific/Wallis"}]} \ No newline at end of file diff --git a/Punic/data/nb/calendar.json b/Punic/data/nb/calendar.json new file mode 100644 index 0000000..299ff8d --- /dev/null +++ b/Punic/data/nb/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"feb.","3":"mar.","4":"apr.","5":"mai","6":"jun.","7":"jul.","8":"aug.","9":"sep.","10":"okt.","11":"nov.","12":"des."},"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":"mars","4":"april","5":"mai","6":"juni","7":"juli","8":"august","9":"september","10":"oktober","11":"november","12":"desember"}},"stand-alone":{"abbreviated":{"1":"jan","2":"feb","3":"mar","4":"apr","5":"mai","6":"jun","7":"jul","8":"aug","9":"sep","10":"okt","11":"nov","12":"des"},"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":"mars","4":"april","5":"mai","6":"juni","7":"juli","8":"august","9":"september","10":"oktober","11":"november","12":"desember"}}},"days":{"format":{"abbreviated":{"sun":"søn.","mon":"man.","tue":"tir.","wed":"ons.","thu":"tor.","fri":"fre.","sat":"lør."},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"sø.","mon":"ma.","tue":"ti.","wed":"on.","thu":"to.","fri":"fr.","sat":"lø."},"wide":{"sun":"søndag","mon":"mandag","tue":"tirsdag","wed":"onsdag","thu":"torsdag","fri":"fredag","sat":"lørdag"}},"stand-alone":{"abbreviated":{"sun":"sø.","mon":"ma.","tue":"ti.","wed":"on.","thu":"to.","fri":"fr.","sat":"lø."},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"sø.","mon":"ma.","tue":"ti.","wed":"on.","thu":"to.","fri":"fr.","sat":"lø."},"wide":{"sun":"søndag","mon":"mandag","tue":"tirsdag","wed":"onsdag","thu":"torsdag","fri":"fredag","sat":"lørdag"}}},"quarters":{"format":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}},"stand-alone":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. kvartal","2":"2. kvartal","3":"3. kvartal","4":"4. kvartal"}}},"dayPeriods":{"format":{"abbreviated":{"am":"a.m.","noon":"kl. 12","pm":"p.m."},"narrow":{"am":"a","noon":"12","pm":"p"},"wide":{"am":"a.m.","noon":"kl. 12","pm":"p.m."}},"stand-alone":{"abbreviated":{"am":"a.m.","noon":"kl. 12","pm":"p.m."},"narrow":{"am":"a","noon":"12","pm":"p"},"wide":{"am":"AM","noon":"kl. 12","pm":"PM"}}},"eras":{"wide":{"0":"f.Kr.","0-alt-variant":"før vår tidsregning","1":"e.Kr.","1-alt-variant":"vår tidsregning"},"abbreviated":{"0":"f.Kr.","0-alt-variant":"fvt.","1":"e.Kr.","1-alt-variant":"vt."},"narrow":{"0":"f.Kr.","0-alt-variant":"fvt.","1":"e.Kr.","1-alt-variant":"vt"}},"dateFormats":{"full":"EEEE d. MMMM y","long":"d. MMMM y","medium":"d. MMM y","short":"dd.MM.y"},"timeFormats":{"full":"HH.mm.ss zzzz","long":"HH.mm.ss z","medium":"HH.mm.ss","short":"HH.mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s 'kl.' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/nb/dateFields.json b/Punic/data/nb/dateFields.json new file mode 100644 index 0000000..c19c3d0 --- /dev/null +++ b/Punic/data/nb/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Tidsalder"},"year":{"displayName":"År","relative-type--1":"i fjor","relative-type-0":"i år","relative-type-1":"neste år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} år siden","relativeTimePattern-count-other":"for {0} år siden"}},"year-short":{"displayName":"år","relative-type--1":"i fjor","relative-type-0":"i år","relative-type-1":"neste år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} år siden","relativeTimePattern-count-other":"for {0} år siden"}},"year-narrow":{"displayName":"år","relative-type--1":"i fjor","relative-type-0":"i år","relative-type-1":"neste år","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} år","relativeTimePattern-count-other":"+{0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"–{0} år","relativeTimePattern-count-other":"–{0} år"}},"quarter":{"displayName":"Kvartal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kvartal","relativeTimePattern-count-other":"om {0} kvartaler"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} kvartal siden","relativeTimePattern-count-other":"for {0} kvartaler siden"}},"quarter-short":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kv.","relativeTimePattern-count-other":"om {0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} kv. siden","relativeTimePattern-count-other":"for {0} kv. siden"}},"quarter-narrow":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} kv.","relativeTimePattern-count-other":"+{0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"–{0} kv.","relativeTimePattern-count-other":"–{0} kv."}},"month":{"displayName":"Måned","relative-type--1":"forrige måned","relative-type-0":"denne måneden","relative-type-1":"neste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} måned","relativeTimePattern-count-other":"om {0} måneder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} måned siden","relativeTimePattern-count-other":"for {0} måneder siden"}},"month-short":{"displayName":"mnd.","relative-type--1":"forrige måned","relative-type-0":"denne måneden","relative-type-1":"neste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} måneder","relativeTimePattern-count-other":"om {0} måneder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} måneder siden","relativeTimePattern-count-other":"for {0} måneder siden"}},"month-narrow":{"displayName":"md.","relative-type--1":"forrige måned","relative-type-0":"denne måneden","relative-type-1":"neste måned","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} md.","relativeTimePattern-count-other":"+{0} md."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} md.","relativeTimePattern-count-other":"-{0} md."}},"week":{"displayName":"Uke","relative-type--1":"forrige uke","relative-type-0":"denne uken","relative-type-1":"neste uke","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} uke","relativeTimePattern-count-other":"om {0} uker"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} uke siden","relativeTimePattern-count-other":"for {0} uker siden"}},"week-short":{"displayName":"uke","relative-type--1":"forrige uke","relative-type-0":"denne uken","relative-type-1":"neste uke","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} uke","relativeTimePattern-count-other":"om {0} uker"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} uke siden","relativeTimePattern-count-other":"for {0} uker siden"}},"week-narrow":{"displayName":"uke","relative-type--1":"forrige uke","relative-type-0":"denne uken","relative-type-1":"neste uke","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} u.","relativeTimePattern-count-other":"+{0} u."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} u.","relativeTimePattern-count-other":"-{0} u."}},"day":{"displayName":"Dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} døgn","relativeTimePattern-count-other":"om {0} døgn"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} døgn siden","relativeTimePattern-count-other":"for {0} døgn siden"}},"day-short":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} døgn","relativeTimePattern-count-other":"om {0} døgn"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} døgn siden","relativeTimePattern-count-other":"for {0} døgn siden"}},"day-narrow":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i forgårs","relative-type-0":"i dag","relative-type-1":"i morgen","relative-type-2":"i overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} d.","relativeTimePattern-count-other":"+{0} d."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} d.","relativeTimePattern-count-other":"-{0} d."}},"weekday":{"displayName":"Ukedag"},"sun":{"relative-type--1":"søndag sist uke","relative-type-0":"søndag denne uken","relative-type-1":"søndag neste uke"},"sun-short":{"relative-type--1":"forrige søn.","relative-type-0":"denne søn.","relative-type-1":"kommende søn."},"sun-narrow":{"relative-type--1":"forrige sø.","relative-type-0":"denne sø.","relative-type-1":"kommende sø."},"mon":{"relative-type--1":"mandag sist uke","relative-type-0":"mandag denne uken","relative-type-1":"mandag neste uke"},"mon-short":{"relative-type--1":"forrige man.","relative-type-0":"denne man.","relative-type-1":"kommende man."},"mon-narrow":{"relative-type--1":"forrige ma.","relative-type-0":"denne ma.","relative-type-1":"kommende ma."},"tue":{"relative-type--1":"tirsdag sist uke","relative-type-0":"tirsdag denne uken","relative-type-1":"tirsdag neste uke"},"tue-short":{"relative-type--1":"forrige tir.","relative-type-0":"denne tir.","relative-type-1":"kommende tir."},"tue-narrow":{"relative-type--1":"forrige ti.","relative-type-0":"denne ti.","relative-type-1":"kommende ti."},"wed":{"relative-type--1":"onsdag sist uke","relative-type-0":"onsdag denne uken","relative-type-1":"onsdag neste uke"},"wed-short":{"relative-type--1":"forrige ons.","relative-type-0":"denne ons.","relative-type-1":"kommende ons."},"wed-narrow":{"relative-type--1":"forrige on.","relative-type-0":"denne on.","relative-type-1":"kommende on."},"thu":{"relative-type--1":"torsdag sist uke","relative-type-0":"torsdag denne uken","relative-type-1":"torsdag neste uke"},"thu-short":{"relative-type--1":"forrige tor.","relative-type-0":"denne tor.","relative-type-1":"kommende tor."},"thu-narrow":{"relative-type--1":"forrige to.","relative-type-0":"denne to.","relative-type-1":"kommende to."},"fri":{"relative-type--1":"fredag sist uke","relative-type-0":"fredag denne uken","relative-type-1":"fredag neste uke"},"fri-short":{"relative-type--1":"forrige fre.","relative-type-0":"denne fre.","relative-type-1":"kommende fre."},"fri-narrow":{"relative-type--1":"forrige fr.","relative-type-0":"denne fr.","relative-type-1":"kommende fr."},"sat":{"relative-type--1":"lørdag sist uke","relative-type-0":"lørdag denne uken","relative-type-1":"lørdag neste uke"},"sat-short":{"relative-type--1":"forrige lør.","relative-type-0":"denne lør.","relative-type-1":"kommende lør."},"sat-narrow":{"relative-type--1":"forrige lø.","relative-type-0":"denne lø.","relative-type-1":"kommende lø."},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Time","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} time","relativeTimePattern-count-other":"om {0} timer"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} time siden","relativeTimePattern-count-other":"for {0} timer siden"}},"hour-short":{"displayName":"t","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} t","relativeTimePattern-count-other":"om {0} t"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} t siden","relativeTimePattern-count-other":"for {0} t siden"}},"hour-narrow":{"displayName":"t","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} t","relativeTimePattern-count-other":"+{0} t"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} t","relativeTimePattern-count-other":"-{0} t"}},"minute":{"displayName":"Minutt","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} minutt","relativeTimePattern-count-other":"om {0} minutter"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} minutt siden","relativeTimePattern-count-other":"for {0} minutter siden"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} min","relativeTimePattern-count-other":"om {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} min siden","relativeTimePattern-count-other":"for {0} min siden"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} min","relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} min","relativeTimePattern-count-other":"-{0} min"}},"second":{"displayName":"Sekund","relative-type-0":"nå","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sekund","relativeTimePattern-count-other":"om {0} sekunder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} sekund siden","relativeTimePattern-count-other":"for {0} sekunder siden"}},"second-short":{"displayName":"sek","relative-type-0":"nå","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sek","relativeTimePattern-count-other":"om {0} sek"},"relativeTime-type-past":{"relativeTimePattern-count-one":"for {0} sek siden","relativeTimePattern-count-other":"for {0} sek siden"}},"second-narrow":{"displayName":"s","relative-type-0":"nå","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Tidssone"}} \ No newline at end of file diff --git a/Punic/data/nb/languages.json b/Punic/data/nb/languages.json new file mode 100644 index 0000000..360c167 --- /dev/null +++ b/Punic/data/nb/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abkhasisk","ace":"achinesisk","ach":"acoli","ada":"adangme","ady":"adyghe","ae":"avestisk","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"akkadisk","akz":"akz","ale":"aleutisk","aln":"aln","alt":"søraltaisk","am":"amharisk","an":"aragonsk","ang":"gammelengelsk","anp":"angika","ar":"arabisk","ar-001":"moderne standard arabisk","arc":"arameisk","arn":"araukansk","aro":"aro","arp":"arapaho","arq":"arq","arw":"arawak","ary":"ary","arz":"arz","as":"assamisk","asa":"asu","ase":"ase","ast":"asturisk","av":"avarisk","avk":"avk","awa":"awadhi","ay":"aymara","az":"aserbajdsjansk","az-alt-short":"azeri","azb":"azb","ba":"basjkirsk","bal":"baluchi","ban":"balinesisk","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"hviterussisk","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bulgarsk","bho":"bhojpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibetansk","bpy":"bpy","bqi":"bqi","br":"bretonsk","bra":"braj","brh":"brh","brx":"bodo","bs":"bosnisk","bss":"akose","bua":"buriat","bug":"buginesisk","bum":"bulu","byn":"blin","byv":"medumba","ca":"katalansk","cad":"caddo","car":"karibisk","cay":"cayuga","cch":"atsam","ce":"tsjetsjensk","ceb":"cebuansk","cgg":"kiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukesisk","chm":"mari","chn":"chinook","cho":"choctaw","chp":"chipewiansk","chr":"cherokesisk","chy":"cheyenne","ckb":"kurdisk (sorani)","co":"korsikansk","cop":"koptisk","cps":"cps","cr":"cree","crh":"krimtatarisk","cs":"tsjekkisk","csb":"kasjubisk","cu":"kirkeslavisk","cv":"tsjuvansk","cy":"walisisk","da":"dansk","dak":"dakota","dar":"dargwa","dav":"taita","de":"tysk","de-AT":"østerriksk tysk","de-CH":"sveitsisk høytysk","del":"delaware","den":"slavisk","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"lavsorbisk","dtp":"dtp","dua":"duala","dum":"mellomnederlandsk","dv":"divehi","dyo":"jola-fonyi","dyu":"dyula","dz":"dzongkha","dzg":"dazaga","ebu":"kiembu","ee":"ewe","efi":"efik","egl":"egl","egy":"gammelegyptisk","eka":"ekajuk","el":"gresk","elx":"elamittisk","en":"engelsk","en-AU":"australsk engelsk","en-CA":"canadisk engelsk","en-GB":"britisk engelsk","en-GB-alt-short":"engelsk – britisk","en-US":"amerikansk engelsk","en-US-alt-short":"engelsk – USA","enm":"mellomengelsk","eo":"esperanto","es":"spansk","es-419":"latinamerikansk spansk","es-ES":"europeisk spansk","es-MX":"meksikansk spansk","esu":"esu","et":"estisk","eu":"baskisk","ewo":"ewondo","ext":"ext","fa":"persisk","fan":"fang","fat":"fanti","ff":"fulani","fi":"finsk","fil":"filippinsk","fit":"fit","fj":"fijiansk","fo":"færøysk","fon":"fon","fr":"fransk","fr-CA":"canadisk fransk","fr-CH":"sveitsisk fransk","frc":"frc","frm":"mellomfransk","fro":"gammelfransk","frp":"frp","frr":"nordfrisisk","frs":"østfrisisk","fur":"friuliansk","fy":"vestfrisisk","ga":"irsk","gaa":"ga","gag":"gagausisk","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"skotsk gælisk","gez":"ges","gil":"kiribatisk","gl":"galisisk","glk":"glk","gmh":"mellomhøytysk","gn":"guarani","goh":"gammelhøytysk","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gotisk","grb":"grebo","grc":"gammelgresk","gsw":"sveitsertysk","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusii","gv":"mansk","gwi":"gwichin","ha":"hausa","hai":"haida","hak":"hak","haw":"hawaiisk","he":"hebraisk","hi":"hindi","hif":"hif","hil":"hiligaynon","hit":"hettittisk","hmn":"hmong","ho":"hiri motu","hr":"kroatisk","hsb":"høysorbisk","hsn":"hsn","ht":"haitisk","hu":"ungarsk","hup":"hupa","hy":"armensk","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indonesisk","ie":"interlingue","ig":"ibo","ii":"sichuan-yi","ik":"inupiak","ilo":"iloko","inh":"ingusjisk","io":"ido","is":"islandsk","it":"italiensk","iu":"inuktitut","izh":"izh","ja":"japansk","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"jødepersisk","jrb":"jødearabisk","jut":"jut","jv":"javanesisk","ka":"georgisk","kaa":"karakalpakisk","kab":"kabylsk","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardisk","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kappverdisk","ken":"ken","kfo":"koro","kg":"kikongo","kgp":"kgp","kha":"khasi","kho":"khotanesisk","khq":"koyra chiini","khw":"khw","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kasakhisk","kkj":"kako","kl":"grønlandsk","kln":"kalenjin","km":"khmer","kmb":"kimbundu","kn":"kannada","ko":"koreansk","koi":"komipermjakisk","kok":"konkani","kos":"kosraeansk","kpe":"kpelle","kr":"kanuri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"karelsk","kru":"kurukh","ks":"kasjmiri","ksb":"shambala","ksf":"bafia","ksh":"kølnsk","ku":"kurdisk","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"kornisk","ky":"kirgisisk","la":"latin","lad":"ladinsk","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburgsk","lez":"lezghian","lfn":"lfn","lg":"ganda","li":"limburgisk","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laotisk","lol":"mongo","loz":"lozi","lt":"litauisk","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luhya","lv":"latvisk","lzh":"lzh","lzz":"lzz","mad":"maduresisk","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masai","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauritisk-kreolsk","mg":"madagassisk","mga":"mellomirsk","mgh":"makhuwa-meetto","mgo":"meta’","mh":"marshallesisk","mi":"maori","mic":"micmac","min":"minangkabau","mk":"makedonsk","ml":"malayalam","mn":"mongolsk","mnc":"mandsju","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"mrj","ms":"malayisk","mt":"maltesisk","mua":"mundang","mul":"flere språk","mus":"creek","mwl":"mirandesisk","mwr":"marwari","mwv":"mwv","my":"burmesisk","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauru","nan":"nan","nap":"napolitansk","naq":"nama","nb":"norsk bokmål","nd":"nord-ndebele","nds":"lavtysk","ne":"nepali","new":"newari","ng":"ndonga","nia":"nias","niu":"niueansk","njo":"njo","nl":"nederlandsk","nl-BE":"flamsk","nmg":"kwasio","nn":"norsk nynorsk","nnh":"ngiemboon","no":"norsk","nog":"nogai","non":"gammelnorsk","nov":"nov","nqo":"nkå","nr":"sør-ndebele","nso":"nord-sotho","nus":"nuer","nv":"navajo","nwc":"klassisk newari","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"oksitansk","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossetisk","osa":"osage","ota":"ottomansk tyrkisk","pa":"punjabi","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palauisk","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"gammelpersisk","pfl":"pfl","phn":"fønikisk","pi":"pali","pl":"polsk","pms":"pms","pnt":"pnt","pon":"ponapisk","prg":"prg","pro":"gammelprovençalsk","ps":"pashto","ps-alt-variant":"pushto","pt":"portugisisk","pt-BR":"brasiliansk portugisisk","pt-PT":"europeisk portugisisk","qu":"quechua","quc":"quiché","qug":"qug","raj":"rajasthani","rap":"rapanui","rar":"rarotongansk","rgn":"rgn","rif":"rif","rm":"retoromansk","rn":"rundi","ro":"rumensk","ro-MD":"moldovsk","rof":"rombo","rom":"romani","root":"rot","rtm":"rtm","ru":"russisk","rue":"rue","rug":"rug","rup":"aromansk","rw":"kinyarwanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"jakutsk","sam":"samaritansk arameisk","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardinsk","scn":"siciliansk","sco":"skotsk","sd":"sindhi","sdc":"sdc","se":"nordsamisk","see":"seneca","seh":"sena","sei":"sei","sel":"selkupisk","ses":"koyraboro senni","sg":"sango","sga":"gammelirsk","sgs":"sgs","sh":"serbokroatisk","shi":"tachelhit","shn":"shan","shu":"Tsjad-arabisk","si":"singalesisk","sid":"sidamo","sk":"slovakisk","sl":"slovensk","sli":"sli","sly":"sly","sm":"samoansk","sma":"sørsamisk","smj":"lulesamisk","smn":"enaresamisk","sms":"skoltesamisk","sn":"shona","snk":"soninke","so":"somali","sog":"sogdisk","sq":"albansk","sr":"serbisk","srn":"sranan tongo","srr":"serer","ss":"swati","ssy":"saho","st":"sør-sotho","stq":"stq","su":"sundanesisk","suk":"sukuma","sus":"susu","sux":"sumerisk","sv":"svensk","sw":"swahili","swb":"komorisk","swc":"kongolesisk swahili","syc":"klassisk syrisk","syr":"syrisk","szl":"szl","ta":"tamilsk","tcy":"tcy","te":"telugu","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadsjikisk","th":"thai","ti":"tigrinja","tig":"tigré","tiv":"tiv","tk":"turkmensk","tkl":"tokelau","tkr":"tkr","tl":"tagalog","tlh":"klingon","tli":"tlingit","tly":"tly","tmh":"tamasjek","tn":"setswana","to":"tongansk","tog":"nyasa-tongansk","tpi":"tok pisin","tr":"tyrkisk","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshian","tt":"tatarisk","ttt":"ttt","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahitisk","tyv":"tuvinisk","tzm":"sentralmarokkansk tamazight","udm":"udmurt","ug":"uigurisk","uga":"ugaritisk","uk":"ukrainsk","umb":"umbundu","und":"ukjent språk","ur":"urdu","uz":"usbekisk","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamesisk","vls":"vls","vmf":"vmf","vo":"volapyk","vot":"votisk","vro":"vro","vun":"vunjo","wa":"vallonsk","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wuu","xal":"kalmyk","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapesisk","yav":"yangben","ybb":"yemba","yi":"jiddisk","yo":"joruba","yrl":"yrl","yue":"kantonesisk","za":"zhuang","zap":"zapotec","zbl":"blissymboler","zea":"zea","zen":"zenaga","zgh":"standard marrokansk tamazight","zh":"kinesisk","zh-Hans":"forenklet kinesisk","zh-Hant":"tradisjonell kinesisk","zu":"zulu","zun":"zuni","zxx":"uten språklig innhold","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/nb/listPatterns.json b/Punic/data/nb/listPatterns.json new file mode 100644 index 0000000..cb8c879 --- /dev/null +++ b/Punic/data/nb/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s og %2$s","2":"%1$s og %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/nb/localeDisplayNames.json b/Punic/data/nb/localeDisplayNames.json new file mode 100644 index 0000000..782bd0e --- /dev/null +++ b/Punic/data/nb/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalender","colAlternate":"Ignorer sortering etter symboler","colBackwards":"Omvendt sortering etter aksent","colCaseFirst":"Organisering av store og små bokstaver","colCaseLevel":"Sortering av store og små bokstaver","colHiraganaQuaternary":"Sortering av kana","colNormalization":"Normalisert sortering","colNumeric":"Numerisk sortering","colStrength":"Sorteringsstyrke","collation":"sorteringsrekkefølge","currency":"valuta","numbers":"tall","timezone":"tidssone","va":"Språkvariant","variableTop":"Sortér som symboler","x":"privat bruk"},"types":{"numbers":{"vaii":"vai-sifre"},"collation":{"zhuyin":"zhuyin-sortering"},"calendar":{"roc":"kalender for Republikken Kina"},"colStrength":{"tertiary":"Sortér aksenttegn / små og store bokstaver / bredde"},"colCaseFirst":{"upper":"Sortér store bokstaver først"},"colBackwards":{"yes":"Sortér aksenttegn i motsatt rekkefølge"},"colCaseLevel":{"yes":"Sortér med skille mellom små og store bokstaver"},"colHiraganaQuaternary":{"yes":"Sortér med skille mellom forskjellige varianter av kana"},"colNormalization":{"yes":"Sortér Unicode normalisert"},"colNumeric":{"yes":"Sortér sifre numerisk"},"colAlternate":{"shifted":"Ignorer symboler under sortering"}},"codePatterns":{"language":"Språk: %1$s","script":"Skrift: %1$s","territory":"Område: %1$s"}} \ No newline at end of file diff --git a/Punic/data/nb/numbers.json b/Punic/data/nb/numbers.json new file mode 100644 index 0000000..239d6c9 --- /dev/null +++ b/Punic/data/nb/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"−","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":"."}} \ No newline at end of file diff --git a/Punic/data/nb/territories.json b/Punic/data/nb/territories.json new file mode 100644 index 0000000..1bfa31f --- /dev/null +++ b/Punic/data/nb/territories.json @@ -0,0 +1 @@ +{"001":"verden","002":"Afrika","003":"Nord-Amerika","005":"Sør-Amerika","009":"Oseania","011":"Vest-Afrika","013":"Mellom-Amerika","014":"Øst-Afrika","015":"Nord-Afrika","017":"Sentral-Afrika","018":"Sørlige Afrika","019":"Amerika","021":"Nordlige Amerika","029":"Karibia","030":"Øst-Asia","034":"Sør-Asia","035":"Sørøst-Asia","039":"Sør-Europa","053":"Australasia","054":"Melanesia","057":"Mikronesia","061":"Polynesia","142":"Asia","143":"Sentral-Asia","145":"Vest-Asia","150":"Europa","151":"Øst-Europa","154":"Nord-Europa","155":"Vest-Europa","419":"Latin-Amerika","AC":"Ascension","AD":"Andorra","AE":"De forente arabiske emirater","AF":"Afghanistan","AG":"Antigua og Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"De nederlandske antiller","AO":"Angola","AQ":"Antarktis","AR":"Argentina","AS":"Amerikansk Samoa","AT":"Østerrike","AU":"Australia","AW":"Aruba","AX":"Åland","AZ":"Aserbajdsjan","BA":"Bosnia-Hercegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgia","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Karibisk Nederland","BR":"Brasil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvetøya","BW":"Botswana","BY":"Hviterussland","BZ":"Belize","CA":"Canada","CC":"Kokosøyene","CD":"Kongo-Kinshasa","CD-alt-variant":"Den demokratiske republikken Kongo","CF":"Den sentralafrikanske republikk","CG":"Kongo-Brazzaville","CG-alt-variant":"Republikken Kongo","CH":"Sveits","CI":"Elfenbenskysten","CI-alt-variant":"CI","CK":"Cookøyene","CL":"Chile","CM":"Kamerun","CN":"Kina","CO":"Colombia","CP":"Clippertonøya","CR":"Costa Rica","CU":"Cuba","CV":"Kapp Verde","CW":"Curaçao","CX":"Christmasøya","CY":"Kypros","CZ":"Tsjekkia","DE":"Tyskland","DG":"Diego Garcia","DJ":"Djibouti","DK":"Danmark","DM":"Dominica","DO":"Den dominikanske republikk","DZ":"Algerie","EA":"Ceuta og Melilla","EC":"Ecuador","EE":"Estland","EG":"Egypt","EH":"Vest-Sahara","ER":"Eritrea","ES":"Spania","ET":"Etiopia","EU":"EU","FI":"Finland","FJ":"Fiji","FK":"Falklandsøyene","FK-alt-variant":"Falklandsøyene (Islas Malvinas)","FM":"Mikronesiaføderasjonen","FO":"Færøyene","FR":"Frankrike","GA":"Gabon","GB":"Storbritannia","GB-alt-short":"Storbritannia","GD":"Grenada","GE":"Georgia","GF":"Fransk Guyana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grønland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Ekvatorial-Guinea","GR":"Hellas","GS":"Sør-Georgia og Sør-Sandwichøyene","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong S.A.R. Kina","HK-alt-short":"Hongkong","HM":"Heard- og McDonaldøyene","HN":"Honduras","HR":"Kroatia","HT":"Haiti","HU":"Ungarn","IC":"Kanariøyene","ID":"Indonesia","IE":"Irland","IL":"Israel","IM":"Man","IN":"India","IO":"Britiske territorier i Indiahavet","IQ":"Irak","IR":"Iran","IS":"Island","IT":"Italia","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kirgisistan","KH":"Kambodsja","KI":"Kiribati","KM":"Komorene","KN":"St. Kitts og Nevis","KP":"Nord-Korea","KR":"Sør-Korea","KW":"Kuwait","KY":"Caymanøyene","KZ":"Kasakhstan","LA":"Laos","LB":"Libanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litauen","LU":"Luxemburg","LV":"Latvia","LY":"Libya","MA":"Marokko","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint-Martin","MG":"Madagaskar","MH":"Marshalløyene","MK":"Makedonia","MK-alt-variant":"Makedonia (FYROM)","ML":"Mali","MM":"Myanmar (Burma)","MN":"Mongolia","MO":"Macao S.A.R. Kina","MO-alt-short":"Macao","MP":"Nord-Marianene","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldivene","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mosambik","NA":"Namibia","NC":"Ny-Caledonia","NE":"Niger","NF":"Norfolkøya","NG":"Nigeria","NI":"Nicaragua","NL":"Nederland","NO":"Norge","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Fransk Polynesia","PG":"Papua Ny-Guinea","PH":"Filippinene","PK":"Pakistan","PL":"Polen","PM":"St. Pierre og Miquelon","PN":"Pitcairn","PR":"Puerto Rico","PS":"Det palestinske området","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"ytre Oseania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russland","RW":"Rwanda","SA":"Saudi-Arabia","SB":"Salomonøyene","SC":"Seychellene","SD":"Sudan","SE":"Sverige","SG":"Singapore","SH":"St. Helena","SI":"Slovenia","SJ":"Svalbard og Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sør-Sudan","ST":"São Tomé og Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks- og Caicosøyene","TD":"Tsjad","TF":"De franske sørterritorier","TG":"Togo","TH":"Thailand","TJ":"Tadsjikistan","TK":"Tokelau","TL":"Øst-Timor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Tyrkia","TT":"Trinidad og Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraina","UG":"Uganda","UM":"USAs ytre øyer","US":"USA","US-alt-short":"USA","UY":"Uruguay","UZ":"Usbekistan","VA":"Vatikanstaten","VC":"St. Vincent og Grenadinene","VE":"Venezuela","VG":"De britiske jomfruøyene","VI":"De amerikanske jomfruøyene","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis og Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Sør-Afrika","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"ukjent område"} \ No newline at end of file diff --git a/Punic/data/nb/timeZoneNames.json b/Punic/data/nb/timeZoneNames.json new file mode 100644 index 0000000..aba101c --- /dev/null +++ b/Punic/data/nb/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH.mm;-HH.mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"tidssone for %1$s","regionFormat-type-standard":"normaltid – %1$s","regionFormat-type-daylight":"sommertid – %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahía Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Caymanøyene"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Godthåb"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Maceió"},"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":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexico by"},"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, Nord-Dakota"},"Center":{"exemplarCity":"Center, Nord-Dakota"},"New_Salem":{"exemplarCity":"New Salem, Nord-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":"Santarém"},"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":"Azorene"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanariøyene"},"Cape_Verde":{"exemplarCity":"Kapp Verde"},"Faeroe":{"exemplarCity":"Færøyene"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Sør-Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athen"},"Belgrade":{"exemplarCity":"Beograd"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussel"},"Bucharest":{"exemplarCity":"Bucuresti"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Chișinău"},"Copenhagen":{"exemplarCity":"København"},"Dublin":{"long":{"daylight":"irsk sommertid"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsingfors"},"Isle_of_Man":{"exemplarCity":"Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisboa"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"britisk sommertid"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moskva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praha"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"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"},"Uzhgorod":{"exemplarCity":"Uzjhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikanstaten"},"Vienna":{"exemplarCity":"Wien"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warszawa"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozje"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Dar-es-Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"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":"Khartoum"},"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":"Mogadishu"},"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":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Asjkhabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bisjkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choybalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaskus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dusjanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jajapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamtsjatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"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":"Muskat"},"Nicosia":{"exemplarCity":"Nikosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Kyzylorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh-byen"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tasjkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimpu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmasøya"},"Cocos":{"exemplarCity":"Kokosøyene"},"Comoro":{"exemplarCity":"Komorene"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldivene"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Påskeøya"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagosøyene"},"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":"Nouméa"},"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":"Vostok"}},"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":"ukjent by"}}},"metazone":{"Acre":{"long":{"generic":"Acre-tid","standard":"Acre normaltid","daylight":"Acre sommertid"}},"Afghanistan":{"long":{"standard":"afghansk tid"}},"Africa_Central":{"long":{"standard":"sentralafrikansk tid"}},"Africa_Eastern":{"long":{"standard":"østafrikansk tid"}},"Africa_Southern":{"long":{"standard":"sørafrikansk tid"}},"Africa_Western":{"long":{"generic":"vestafrikansk tid","standard":"vestafrikansk normaltid","daylight":"vestafrikansk sommertid"}},"Alaska":{"long":{"generic":"alaskisk tid","standard":"alaskisk normaltid","daylight":"alaskisk sommertid"}},"Almaty":{"long":{"generic":"Almaty-tid","standard":"Almaty, standardtid","daylight":"Almaty, sommertid"}},"Amazon":{"long":{"generic":"tidssone for Amazonas","standard":"normaltid for Amazonas","daylight":"sommertid for Amazonas"}},"America_Central":{"long":{"generic":"tidssone for det sentrale Nord-Amerika","standard":"normaltid for det sentrale Nord-Amerika","daylight":"sommertid for det sentrale Nord-Amerika"}},"America_Eastern":{"long":{"generic":"tidssone for den nordamerikanske østkysten","standard":"normaltid for den nordamerikanske østkysten","daylight":"sommertid for den nordamerikanske østkysten"}},"America_Mountain":{"long":{"generic":"tidssone for Rocky Mountains (USA)","standard":"normaltid for Rocky Mountains (USA)","daylight":"sommertid for Rocky Mountains (USA)"}},"America_Pacific":{"long":{"generic":"tidssone for den nordamerikanske Stillehavskysten","standard":"normaltid for den nordamerikanske Stillehavskysten","daylight":"sommertid for den nordamerikanske Stillehavskysten"}},"Anadyr":{"long":{"generic":"Russisk (Anadyr) tid","standard":"Russisk (Anadyr) normaltid","daylight":"Russisk (Anadyr) sommertid"}},"Apia":{"long":{"generic":"tidssone for Apia","standard":"normaltid for Apia","daylight":"sommetid for Apia"}},"Aqtau":{"long":{"generic":"Aqtau-tid","standard":"Aqtau, standardtid","daylight":"Aqtau, sommertid"}},"Aqtobe":{"long":{"generic":"Aqtobe-tid","standard":"Aqtobe, standardtid","daylight":"Aqtobe, sommertid"}},"Arabian":{"long":{"generic":"arabisk tid","standard":"arabisk standardtid","daylight":"arabisk sommertid"}},"Argentina":{"long":{"generic":"argentinsk tid","standard":"argentinsk normaltid","daylight":"argentinsk sommertid"}},"Argentina_Western":{"long":{"generic":"vestargentinsk tid","standard":"vestargentinsk normaltid","daylight":"vestargentinsk sommertid"}},"Armenia":{"long":{"generic":"armensk tid","standard":"armensk normaltid","daylight":"armensk sommertid"}},"Atlantic":{"long":{"generic":"atlanterhavskystlig tid","standard":"atlanterhavskystlig standardtid","daylight":"atlanterhavskystlig sommertid"}},"Australia_Central":{"long":{"generic":"sentralaustralsk tid","standard":"sentralaustralsk normaltid","daylight":"sentralaustralsk sommertid"}},"Australia_CentralWestern":{"long":{"generic":"vest-sentralaustralsk tid","standard":"vest-sentralaustralsk normaltid","daylight":"vest-sentralaustralsk sommertid"}},"Australia_Eastern":{"long":{"generic":"østaustralsk tid","standard":"østaustralsk normaltid","daylight":"østaustralsk sommertid"}},"Australia_Western":{"long":{"generic":"vestaustralsk tid","standard":"vestaustralsk normaltid","daylight":"vestaustralsk sommertid"}},"Azerbaijan":{"long":{"generic":"aserbajdsjansk tid","standard":"aserbajdsjansk normaltid","daylight":"aserbajdsjansk sommertid"}},"Azores":{"long":{"generic":"asorisk tid","standard":"asorisk normaltid","daylight":"asorisk sommertid"}},"Bangladesh":{"long":{"generic":"bangladeshisk tid","standard":"bangladeshisk normaltid","daylight":"bangladeshisk sommertid"}},"Bhutan":{"long":{"standard":"bhutansk tid"}},"Bolivia":{"long":{"standard":"boliviansk tid"}},"Brasilia":{"long":{"generic":"tidssone for Brasilia","standard":"normaltid for Brasilia","daylight":"sommertid for Brasilia"}},"Brunei":{"long":{"standard":"tidssone for Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"tidssone for Kapp Verde","standard":"normaltid for Kapp Verde","daylight":"sommertid for Kapp Verde"}},"Casey":{"long":{"standard":"Casey-tid"}},"Chamorro":{"long":{"standard":"tidssone for Chamorro"}},"Chatham":{"long":{"generic":"tidssone for Chatham","standard":"normaltid for Chatham","daylight":"sommertid for Chatham"}},"Chile":{"long":{"generic":"chilensk tid","standard":"chilensk normaltid","daylight":"chilensk sommertid"}},"China":{"long":{"generic":"kinesisk tid","standard":"kinesisk standardtid","daylight":"kinesisk sommertid"}},"Choibalsan":{"long":{"generic":"tidssone for Tsjojbalsan","standard":"normaltid for Tsjojbalsan","daylight":"sommertid for Tsjojbalsan"}},"Christmas":{"long":{"standard":"tidssone for Christmasøya"}},"Cocos":{"long":{"standard":"tidssone for Kokosøyene"}},"Colombia":{"long":{"generic":"colombiansk tid","standard":"colombiansk normaltid","daylight":"colombiansk sommertid"}},"Cook":{"long":{"generic":"tidssone for Cookøyene","standard":"normaltid for Cookøyene","daylight":"halv sommertid for Cookøyene"}},"Cuba":{"long":{"generic":"cubansk tid","standard":"cubansk normaltid","daylight":"cubansk sommertid"}},"Davis":{"long":{"standard":"tidssone for Davis"}},"DumontDUrville":{"long":{"standard":"tidssone for Dumont d’Urville"}},"East_Timor":{"long":{"standard":"østtimoresisk tid"}},"Easter":{"long":{"generic":"tidssone for Påskeøya","standard":"normaltid for Påskeøya","daylight":"sommertid for Påskeøya"}},"Ecuador":{"long":{"standard":"ecuadoriansk tid"}},"Europe_Central":{"long":{"generic":"sentraleuropeisk tid","standard":"sentraleuropeisk normaltid","daylight":"sentraleuropeisk sommertid"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"østeuropeisk tid","standard":"østeuropeisk normaltid","daylight":"østeuropeisk sommertid"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"fjern-østeuropeisk tid"}},"Europe_Western":{"long":{"generic":"vesteuropeisk tid","standard":"vesteuropeisk normaltid","daylight":"vesteuropeisk sommertid"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"tidssone for Falklandsøyene","standard":"normaltid for Falklandsøyene","daylight":"sommertid for Falklandsøyene"}},"Fiji":{"long":{"generic":"fijiansk tid","standard":"fijiansk normaltid","daylight":"fijiansk sommertid"}},"French_Guiana":{"long":{"standard":"tidssone for Fransk Guyana"}},"French_Southern":{"long":{"standard":"tidssone for De franske sørterritorier"}},"GMT":{"long":{"standard":"Greenwich middeltid"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"tidssone for Galápagosøyene"}},"Gambier":{"long":{"standard":"tidssone for Gambier"}},"Georgia":{"long":{"generic":"georgisk tid","standard":"georgisk normaltid","daylight":"georgisk sommertid"}},"Gilbert_Islands":{"long":{"standard":"tidssone for Gilbertøyene"}},"Greenland_Eastern":{"long":{"generic":"østgrønlandsk tid","standard":"østgrønlandsk normaltid","daylight":"østgrønlandsk sommertid"}},"Greenland_Western":{"long":{"generic":"vestgrønlandsk tid","standard":"vestgrønlandsk normaltid","daylight":"vestgrønlandsk sommertid"}},"Guam":{"long":{"standard":"Guam-tid"}},"Gulf":{"long":{"standard":"tidssone for Persiabukta"}},"Guyana":{"long":{"standard":"guyansk tid"}},"Hawaii_Aleutian":{"long":{"generic":"tidssone for Hawaii og Aleutene","standard":"normaltid for Hawaii og Aleutene","daylight":"sommertid for Hawaii og Aleutene"}},"Hong_Kong":{"long":{"generic":"tidssone for Hongkong","standard":"normaltid for Hongkong","daylight":"sommertid for Hongkong"}},"Hovd":{"long":{"generic":"tidssone for Khovd","standard":"normaltid for Khovd","daylight":"sommertid for Khovd"}},"India":{"long":{"standard":"indisk tid"}},"Indian_Ocean":{"long":{"standard":"tidssone for Indiahavet"}},"Indochina":{"long":{"standard":"indokinesisk tid"}},"Indonesia_Central":{"long":{"standard":"sentralindonesisk tid"}},"Indonesia_Eastern":{"long":{"standard":"østindonesisk tid"}},"Indonesia_Western":{"long":{"standard":"vestindonesisk tid"}},"Iran":{"long":{"generic":"iransk tid","standard":"iransk normaltid","daylight":"iransk sommertid"}},"Irkutsk":{"long":{"generic":"tidssone for Irkutsk","standard":"normaltid for Irkutsk","daylight":"sommertid for Irkutsk"}},"Israel":{"long":{"generic":"israelsk tid","standard":"israelsk normaltid","daylight":"israelsk sommertid"}},"Japan":{"long":{"generic":"japansk tid","standard":"japansk normaltid","daylight":"japansk sommertid"}},"Kamchatka":{"long":{"generic":"Russisk (Petropavlovsk-Kamtsjatskij) tid","standard":"Russisk (Petropavlovsk-Kamtsjatskij) normaltid","daylight":"Russisk (Petropavlovsk-Kamtsjatskij) sommertid"}},"Kazakhstan_Eastern":{"long":{"standard":"østkasakhstansk tid"}},"Kazakhstan_Western":{"long":{"standard":"vestkasakhstansk tid"}},"Korea":{"long":{"generic":"koreansk tid","standard":"koreansk normaltid","daylight":"koreansk sommertid"}},"Kosrae":{"long":{"standard":"tidssone for Kosrae"}},"Krasnoyarsk":{"long":{"generic":"tidssone for Krasnojarsk","standard":"normaltid for Krasnojarsk","daylight":"sommertid for Krasnojarsk"}},"Kyrgystan":{"long":{"standard":"kirgisisk tid"}},"Lanka":{"long":{"standard":"Lanka-tid"}},"Line_Islands":{"long":{"standard":"tidssone for Linjeøyene"}},"Lord_Howe":{"long":{"generic":"tidssone for Lord Howe-øya","standard":"normaltid for Lord Howe-øya","daylight":"sommertid for Lord Howe-øya"}},"Macau":{"long":{"generic":"Macau-tid","standard":"Macau, standardtid","daylight":"Macau, sommertid"}},"Macquarie":{"long":{"standard":"tidssone for Macquarieøya"}},"Magadan":{"long":{"generic":"tidssone for Magadan","standard":"normaltid for Magadan","daylight":"sommertid for Magadan"}},"Malaysia":{"long":{"standard":"malaysisk tid"}},"Maldives":{"long":{"standard":"maldivisk tid"}},"Marquesas":{"long":{"standard":"tidssone for Marquesasøyene"}},"Marshall_Islands":{"long":{"standard":"tidssone for Marshalløyene"}},"Mauritius":{"long":{"generic":"mauritisk tid","standard":"mauritisk normaltid","daylight":"mauritisk sommertid"}},"Mawson":{"long":{"standard":"tidssone for Mawson"}},"Mexico_Northwest":{"long":{"generic":"tidssone for nordvestlige Mexico","standard":"normaltid for nordvestlige Mexico","daylight":"sommertid for nordvestlige Mexico"}},"Mexico_Pacific":{"long":{"generic":"tidssone for den meksikanske Stillehavskysten","standard":"normaltid for den meksikanske Stillehavskysten","daylight":"sommertid for den meksikanske Stillehavskysten"}},"Mongolia":{"long":{"generic":"tidssone for Ulan Bator","standard":"normaltid for Ulan Bator","daylight":"sommertid for Ulan Bator"}},"Moscow":{"long":{"generic":"tidssone for Moskva","standard":"normaltid for Moskva","daylight":"sommertid for Moskva"}},"Myanmar":{"long":{"standard":"myanmarsk tid"}},"Nauru":{"long":{"standard":"naurisk tid"}},"Nepal":{"long":{"standard":"nepalsk tid"}},"New_Caledonia":{"long":{"generic":"kaledonsk tid","standard":"kaledonsk normaltid","daylight":"kaledonsk sommertid"}},"New_Zealand":{"long":{"generic":"newzealandsk tid","standard":"newzealandsk normaltid","daylight":"newzealandsk sommertid"}},"Newfoundland":{"long":{"generic":"tidssone for Newfoundland","standard":"normaltid for Newfoundland","daylight":"sommertid for Newfoundland"}},"Niue":{"long":{"standard":"tidssone for Niue"}},"Norfolk":{"long":{"standard":"tidssone for Norfolkøya"}},"Noronha":{"long":{"generic":"tidssone for Fernando de Noronha","standard":"normaltid for Fernando de Noronha","daylight":"sommertid for Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Nord-Marianene-tid"}},"Novosibirsk":{"long":{"generic":"tidssone for Novosibirsk","standard":"normaltid for Novosibirsk","daylight":"sommertid for Novosibirsk"}},"Omsk":{"long":{"generic":"tidssone for Omsk","standard":"normaltid for Omsk","daylight":"sommertid for Omsk"}},"Pakistan":{"long":{"generic":"pakistansk tid","standard":"pakistansk normaltid","daylight":"pakistansk sommertid"}},"Palau":{"long":{"standard":"palauisk tid"}},"Papua_New_Guinea":{"long":{"standard":"papuansk tid"}},"Paraguay":{"long":{"generic":"paraguayansk tid","standard":"paraguayansk normaltid","daylight":"paraguayansk sommertid"}},"Peru":{"long":{"generic":"peruansk tid","standard":"peruansk normaltid","daylight":"peruansk sommertid"}},"Philippines":{"long":{"generic":"filippinsk tid","standard":"filippinsk normaltid","daylight":"filippinsk sommertid"}},"Phoenix_Islands":{"long":{"standard":"tidssone for Phoenixøyene"}},"Pierre_Miquelon":{"long":{"generic":"tidssone for Saint-Pierre-et-Miquelon","standard":"normaltid for Saint-Pierre-et-Miquelon","daylight":"sommertid for Saint-Pierre-et-Miquelon"}},"Pitcairn":{"long":{"standard":"tidssone for Pitcairn"}},"Ponape":{"long":{"standard":"tidssone for Pohnpei"}},"Qyzylorda":{"long":{"generic":"Qyzylorda-tid","standard":"Qyzylorda, standardtid","daylight":"Qyzylorda, sommertid"}},"Reunion":{"long":{"standard":"tidssone for Réunion"}},"Rothera":{"long":{"standard":"tidssone for Rothera"}},"Sakhalin":{"long":{"generic":"tidssone for Sakhalin","standard":"normaltid for Sakhalin","daylight":"sommertid for Sakhalin"}},"Samara":{"long":{"generic":"Russisk (Samara) tid","standard":"Russisk (Samara) normaltid","daylight":"Russisk (Samara) sommertid"}},"Samoa":{"long":{"generic":"samoansk tid","standard":"samoansk normaltid","daylight":"samoansk sommertid"}},"Seychelles":{"long":{"standard":"seychellisk tid"}},"Singapore":{"long":{"standard":"singaporsk tid"}},"Solomon":{"long":{"standard":"tidssone for Salomonøyene"}},"South_Georgia":{"long":{"standard":"tidssone for Sør-Georgia"}},"Suriname":{"long":{"standard":"surinamsk tid"}},"Syowa":{"long":{"standard":"tidssone for Syowa"}},"Tahiti":{"long":{"standard":"tahitisk tid"}},"Taipei":{"long":{"generic":"tidssone for Taipei","standard":"normaltid for Taipei","daylight":"sommertid for Taipei"}},"Tajikistan":{"long":{"standard":"tadsjikisk tid"}},"Tokelau":{"long":{"standard":"tidssone for Tokelau"}},"Tonga":{"long":{"generic":"tongansk tid","standard":"tongansk normaltid","daylight":"tongansk sommertid"}},"Truk":{"long":{"standard":"tidssone for Chuukøyene"}},"Turkmenistan":{"long":{"generic":"turkmensk tid","standard":"turkmensk normaltid","daylight":"turkmensk sommertid"}},"Tuvalu":{"long":{"standard":"tuvalsk tid"}},"Uruguay":{"long":{"generic":"uruguayansk tid","standard":"uruguayansk normaltid","daylight":"uruguayansk sommertid"}},"Uzbekistan":{"long":{"generic":"usbekisk tid","standard":"usbekisk normaltid","daylight":"usbekisk sommertid"}},"Vanuatu":{"long":{"generic":"vanuatisk tid","standard":"vanuatisk normaltid","daylight":"vanuatisk sommertid"}},"Venezuela":{"long":{"standard":"venezuelansk tid"}},"Vladivostok":{"long":{"generic":"tidssone for Vladivostok","standard":"normaltid for Vladivostok","daylight":"sommertid for Vladivostok"}},"Volgograd":{"long":{"generic":"tidssone for Volgograd","standard":"normaltid for Volgograd","daylight":"sommertid for Volgograd"}},"Vostok":{"long":{"standard":"tidssone for Vostok"}},"Wake":{"long":{"standard":"tidssone for Wake Island"}},"Wallis":{"long":{"standard":"tidssone for Wallis- og Futunaøyene"}},"Yakutsk":{"long":{"generic":"tidssone for Jakutsk","standard":"normaltid for Jakutsk","daylight":"sommertid for Jakutsk"}},"Yekaterinburg":{"long":{"generic":"tidssone for Jekaterinburg","standard":"normaltid for Jekaterinburg","daylight":"sommertid for Jekaterinburg"}}}} \ No newline at end of file diff --git a/Punic/data/nb/units.json b/Punic/data/nb/units.json new file mode 100644 index 0000000..1647433 --- /dev/null +++ b/Punic/data/nb/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"g-kraft","one":"%1$s g-kraft","other":"%1$s g-kraft"},"meter-per-second-squared":{"_name":"meter per sekund²","one":"%1$s meter per sekund²","other":"%1$s meter per sekund²"}},"angle":{"arc-minute":{"_name":"bueminutter","one":"%1$s bueminutt","other":"%1$s bueminutter"},"arc-second":{"_name":"buesekunder","one":"%1$s buesekund","other":"%1$s buesekunder"},"degree":{"_name":"grader","one":"%1$s grad","other":"%1$s grader"},"radian":{"_name":"radianer","one":"%1$s radian","other":"%1$s radianer"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hektar","one":"%1$s hektar","other":"%1$s hektar"},"square-centimeter":{"_name":"kvadratcentimeter","one":"%1$s kvadratcentimeter","other":"%1$s kvadratcentimeter"},"square-foot":{"_name":"kvadratfot","one":"%1$s kvadratfot","other":"%1$s kvadratfot"},"square-inch":{"_name":"kvadrattommer","one":"%1$s kvadrattomme","other":"%1$s kvadrattommer"},"square-kilometer":{"_name":"kvadratkilometer","one":"%1$s kvadratkilometer","other":"%1$s kvadratkilometer"},"square-meter":{"_name":"kvadratmeter","one":"%1$s kvadratmeter","other":"%1$s kvadratmeter"},"square-mile":{"_name":"engelske kvadratmil","one":"%1$s engelsk kvadratmil","other":"%1$s engelske kvadratmil"},"square-yard":{"_name":"kvadratyard","one":"%1$s kvadratyard","other":"%1$s kvadratyard"}},"consumption":{"liter-per-kilometer":{"_name":"liter per kilometer","one":"%1$s liter per kilometer","other":"%1$s liter per kilometer"},"mile-per-gallon":{"_name":"engelske mil per gallon","one":"%1$s engelsk mil per gallon","other":"%1$s engelske mil per gallon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabyte","one":"%1$s gigabyte","other":"%1$s gigabyte"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobyte","one":"%1$s kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"døgn","one":"%1$s døgn","other":"%1$s døgn"},"hour":{"_name":"timer","one":"%1$s time","other":"%1$s timer","_per":"%1$s per time"},"microsecond":{"_name":"mikrosekunder","one":"%1$s mikrosekund","other":"%1$s mikrosekunder"},"millisecond":{"_name":"millisekunder","one":"%1$s millisekund","other":"%1$s millisekunder"},"minute":{"_name":"minutter","one":"%1$s minutt","other":"%1$s minutter"},"month":{"_name":"måneder","one":"%1$s måned","other":"%1$s måneder"},"nanosecond":{"_name":"nanosekunder","one":"%1$s nanosekund","other":"%1$s nanosekunder"},"second":{"_name":"sekunder","one":"%1$s sekund","other":"%1$s sekunder","_per":"%1$s per sekund"},"week":{"_name":"uker","one":"%1$s uke","other":"%1$s uker"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s ampere","other":"%1$s ampere"},"milliampere":{"_name":"milliampere","one":"%1$s milliampere","other":"%1$s milliampere"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"kalorier","one":"%1$s kalori","other":"%1$s kalorier"},"foodcalorie":{"_name":"kalorier","one":"%1$s kalori","other":"%1$s kalorier"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joule"},"kilocalorie":{"_name":"kilokalorier","one":"%1$s kilokalori","other":"%1$s kilokalorier"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoule"},"kilowatt-hour":{"_name":"kilowattimer","one":"%1$s kilowattime","other":"%1$s kilowattimer"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomiske enheter","one":"%1$s astronomisk enhet","other":"%1$s astronomiske enheter"},"centimeter":{"_name":"centimeter","one":"%1$s centimeter","other":"%1$s centimeter"},"decimeter":{"_name":"desimeter","one":"%1$s desimeter","other":"%1$s desimeter"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tommer","one":"%1$s tomme","other":"%1$s tommer"},"kilometer":{"_name":"kilometer","one":"%1$s kilometer","other":"%1$s kilometer"},"light-year":{"_name":"lysår","one":"%1$s lysår","other":"%1$s lysår"},"meter":{"_name":"meter","one":"%1$s meter","other":"%1$s meter"},"micrometer":{"_name":"mikrometer","one":"%1$s mikrometer","other":"%1$s mikrometer"},"mile":{"_name":"engelske mil","one":"%1$s engelsk mil","other":"%1$s engelske mil"},"millimeter":{"_name":"millimeter","one":"%1$s millimeter","other":"%1$s millimeter"},"nanometer":{"_name":"nanometer","one":"%1$s nanometer","other":"%1$s nanometer"},"nautical-mile":{"_name":"nautiske mil","one":"%1$s nautisk mil","other":"%1$s nautiske mil"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsec"},"picometer":{"_name":"pikometer","one":"%1$s pikometer","other":"%1$s pikometer"},"yard":{"_name":"yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s gram"},"kilogram":{"_name":"kilogram","one":"%1$s kilogram","other":"%1$s kilogram"},"metric-ton":{"_name":"tonn","one":"%1$s tonn","other":"%1$s tonn"},"microgram":{"_name":"mikrogram","one":"%1$s mikrogram","other":"%1$s mikrogram"},"milligram":{"_name":"milligram","one":"%1$s milligram","other":"%1$s milligram"},"ounce":{"_name":"unser","one":"%1$s unse","other":"%1$s unser"},"ounce-troy":{"_name":"troy ounce","one":"%1$s troy ounce","other":"%1$s troy ounce"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"engelske steiner","one":"%1$s engelsk stein","other":"%1$s engelske steiner"},"ton":{"_name":"amerikanske tonn","one":"%1$s amerikansk tonn","other":"%1$s amerikanske tonn"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"hestekrefter","one":"%1$s hestekraft","other":"%1$s hestekrefter"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"hektopascal","one":"%1$s hektopascal","other":"%1$s hektopascal"},"inch-hg":{"_name":"tommer kvikksølv","one":"%1$s tomme kvikksølv","other":"%1$s tommer kvikksølv"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"millimeter kvikksølv","one":"%1$s millimeter kvikksølv","other":"%1$s millimeter kvikksølv"},"pound-per-square-inch":{"_name":"pund per kvadrattomme","one":"%1$s pund per kvadrattomme","other":"%1$s pund per kvadrattomme"}},"proportion":{"karat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"}},"speed":{"kilometer-per-hour":{"_name":"kilometer per time","one":"%1$s kilometer per time","other":"%1$s kilometer per time"},"meter-per-second":{"_name":"meter per sekund","one":"%1$s meter per sekund","other":"%1$s meter per sekund"},"mile-per-hour":{"_name":"engelske mil per time","one":"%1$s engelsk mil per time","other":"%1$s engelske mil per time"}},"temperature":{"celsius":{"_name":"grader celsius","one":"%1$s grad celsius","other":"%1$s grader celsius"},"fahrenheit":{"_name":"grader fahrenheit","one":"%1$s grad fahrenheit","other":"%1$s grader fahrenheit"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"acre-fot","one":"%1$s acre-fot","other":"%1$s acre-fot"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centiliter","one":"%1$s centiliter","other":"%1$s centiliter"},"cubic-centimeter":{"_name":"kubikkcentimeter","one":"%1$s kubikkcentimeter","other":"%1$s kubikkcentimeter"},"cubic-foot":{"_name":"kubikkfot","one":"%1$s kubikkfot","other":"%1$s kubikkfot"},"cubic-inch":{"_name":"kubikktommer","one":"%1$s kubikktomme","other":"%1$s kubikktommer"},"cubic-kilometer":{"_name":"kubikkilometer","one":"%1$s kubikkilometer","other":"%1$s kubikkilometer"},"cubic-meter":{"_name":"kubikkmeter","one":"%1$s kubikkmeter","other":"%1$s kubikkmeter"},"cubic-mile":{"_name":"engelske kubikkmil","one":"%1$s engelsk kubikkmil","other":"%1$s engelske kubikkmil"},"cubic-yard":{"_name":"kubikkyard","one":"%1$s kubikkyard","other":"%1$s kubikkyard"},"cup":{"_name":"kopper","one":"%1$s kopp","other":"%1$s kopper"},"deciliter":{"_name":"desiliter","one":"%1$s desiliter","other":"%1$s desiliter"},"fluid-ounce":{"_name":"væskeunser","one":"%1$s væskeunse","other":"%1$s væskeunser"},"gallon":{"_name":"gallon","one":"%1$s gallon","other":"%1$s gallon"},"hectoliter":{"_name":"hektoliter","one":"%1$s hektoliter","other":"%1$s hektoliter"},"liter":{"_name":"liter","one":"%1$s liter","other":"%1$s liter"},"megaliter":{"_name":"megaliter","one":"%1$s megaliter","other":"%1$s megaliter"},"milliliter":{"_name":"milliliter","one":"%1$s milliliter","other":"%1$s milliliter"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"spiseskjeer","one":"%1$s spiseskje","other":"%1$s spiseskjeer"},"teaspoon":{"_name":"teskjeer","one":"%1$s teskje","other":"%1$s teskjeer"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-kraft","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"meter/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"bueminutter","one":"%1$s bmin","other":"%1$s bmin"},"arc-second":{"_name":"buesekunder","one":"%1$s bsek","other":"%1$s bsek"},"degree":{"_name":"grader","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianer","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"kvadratfot","one":"%1$s fot²","other":"%1$s fot²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"engelske kvadratmil","one":"%1$s mile²","other":"%1$s mile²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"liter/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"eng. mil/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"døgn","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"timer","one":"%1$s t","other":"%1$s t","_per":"%1$s/t"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"måneder","one":"%1$s mnd","other":"%1$s mnd"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sek","one":"%1$s sek","other":"%1$s sek","_per":"%1$s/s"},"week":{"_name":"uker","one":"%1$s u","other":"%1$s u"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliampere","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tommer","one":"%1$s tomme","other":"%1$s tommer"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lysår","one":"%1$s lysår","other":"%1$s lysår"},"meter":{"_name":"meter","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"engelske mil","one":"%1$s mile","other":"%1$s mile"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsec","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"karat","one":"%1$s c","other":"%1$s c"},"gram":{"_name":"gram","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"tonn","one":"%1$s tonn","other":"%1$s tonn"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"unser","one":"%1$s unse","other":"%1$s unser"},"ounce-troy":{"_name":"oz tr","one":"%1$s oz tr","other":"%1$s oz tr"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"eng. steiner","one":"%1$s eng. stein","other":"%1$s eng. stein"},"ton":{"_name":"amerikanske tonn","one":"%1$s am. tonn","other":"%1$s am. tonn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hk","one":"%1$s hk","other":"%1$s hk"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watt","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/time","one":"%1$s km/t","other":"%1$s km/t"},"meter-per-second":{"_name":"meter/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"engelske mil/t","one":"%1$s mile/t","other":"%1$s mile/t"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre-fot","one":"%1$s ac-fot","other":"%1$s ac-fot"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"fot³","one":"%1$s fot³","other":"%1$s fot³"},"cubic-inch":{"_name":"tommer³","one":"%1$s tommer³","other":"%1$s tommer³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"engelske kubikkmil","one":"%1$s mile³","other":"%1$s mile³"},"cubic-yard":{"_name":"yard³","one":"%1$s yard³","other":"%1$s yard³"},"cup":{"_name":"kopper","one":"%1$s kopp","other":"%1$s kopper"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"væskeunse","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pint","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ss","one":"%1$s ss","other":"%1$s ss"},"teaspoon":{"_name":"ts","one":"%1$s ts","other":"%1$s ts"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"buemin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"buesek","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"grader","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"kvadratfot","one":"%1$sfot²","other":"%1$sfot²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"engelske kvadratmil","one":"%1$s eng mil²","other":"%1$s eng mil²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"eng. mil/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"døgn","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"time","one":"%1$st","other":"%1$st","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"ms","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"min","one":"%1$sm","other":"%1$sm"},"month":{"_name":"måned","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sek","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"uke","one":"%1$su","other":"%1$su"},"year":{"_name":"år","one":"%1$så","other":"%1$så"}},"electric":{"ampere":{"_name":"ampere","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"milliampere","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"joule","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ae","one":"%1$sae","other":"%1$sae"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"tom","one":"%1$s tomme","other":"%1$s tommer"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"lysår","one":"%1$s lysår","other":"%1$s lysår"},"meter":{"_name":"meter","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"µm","one":"%1$sµm","other":"%1$sµm"},"mile":{"_name":"eng.mil","one":"%1$s eng mil","other":"%1$s eng mil"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsec","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"yard","one":"%1$s yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lux","one":"%1$slx","other":"%1$slx"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"gram","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"tonn","one":"%1$st","other":"%1$st"},"microgram":{"_name":"µg","one":"%1$sµg","other":"%1$sµg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"unser","one":"%1$s unse","other":"%1$s unser"},"ounce-troy":{"_name":"troyunser","one":"%1$s tr.uns","other":"%1$s tr.uns"},"pound":{"_name":"skålpund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"eng. steiner","one":"%1$sen.stein","other":"%1$sen.stein"},"ton":{"_name":"eng. k. tonn","one":"%1$sen.k.ton","other":"%1$sen.k.ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hk","one":"%1$shk","other":"%1$shk"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watt","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","one":"%1$sʹʹ Hg","other":"%1$sʹʹ Hg"},"millibar":{"_name":"mbar","one":"%1$smbar","other":"%1$smbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/t","one":"%1$skm/t","other":"%1$skm/t"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"eng.mil/h","one":"%1$s eng mil/t","other":"%1$s eng mil/t"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"acre-fot","one":"%1$s ac-fot","other":"%1$s ac-fot"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"fot³","one":"%1$s fot³","other":"%1$s fot³"},"cubic-inch":{"_name":"tommer³","one":"%1$s tom³","other":"%1$s tom³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$sm³"},"cubic-mile":{"_name":"engelske kubikkmil","one":"%1$s eng mil³","other":"%1$s eng mil³"},"cubic-yard":{"_name":"yard³","one":"%1$s yard³","other":"%1$s yard³"},"cup":{"_name":"kopper","one":"%1$s kopper","other":"%1$s kopper"},"deciliter":{"_name":"dl","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"væskeunse","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$sl","other":"%1$sl"},"megaliter":{"_name":"Ml","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"ml","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"pint","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ss","one":"%1$s ss","other":"%1$s ss"},"teaspoon":{"_name":"ts","one":"%1$s ts","other":"%1$s ts"}}},"_durationPattern":{"hm":"h.mm","hms":"h.mm.ss","ms":"m.ss"}} \ No newline at end of file diff --git a/Punic/data/nl/calendar.json b/Punic/data/nl/calendar.json new file mode 100644 index 0000000..974e9ff --- /dev/null +++ b/Punic/data/nl/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"feb.","3":"mrt.","4":"apr.","5":"mei","6":"jun.","7":"jul.","8":"aug.","9":"sep.","10":"okt.","11":"nov.","12":"dec."},"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":"januari","2":"februari","3":"maart","4":"april","5":"mei","6":"juni","7":"juli","8":"augustus","9":"september","10":"oktober","11":"november","12":"december"}},"stand-alone":{"abbreviated":{"1":"Jan.","2":"Feb.","3":"Mrt.","4":"Apr.","5":"Mei","6":"Jun.","7":"Jul.","8":"Aug.","9":"Sep.","10":"Okt.","11":"Nov.","12":"Dec."},"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":"Januari","2":"Februari","3":"Maart","4":"April","5":"Mei","6":"Juni","7":"Juli","8":"Augustus","9":"September","10":"Oktober","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"zo","mon":"ma","tue":"di","wed":"wo","thu":"do","fri":"vr","sat":"za"},"narrow":{"sun":"Z","mon":"M","tue":"D","wed":"W","thu":"D","fri":"V","sat":"Z"},"short":{"sun":"zo","mon":"ma","tue":"di","wed":"wo","thu":"do","fri":"vr","sat":"za"},"wide":{"sun":"zondag","mon":"maandag","tue":"dinsdag","wed":"woensdag","thu":"donderdag","fri":"vrijdag","sat":"zaterdag"}},"stand-alone":{"abbreviated":{"sun":"Zo","mon":"Ma","tue":"Di","wed":"Wo","thu":"Do","fri":"Vr","sat":"Za"},"narrow":{"sun":"Z","mon":"M","tue":"D","wed":"W","thu":"D","fri":"V","sat":"Z"},"short":{"sun":"zo","mon":"ma","tue":"di","wed":"wo","thu":"do","fri":"vr","sat":"za"},"wide":{"sun":"Zondag","mon":"Maandag","tue":"Dinsdag","wed":"Woensdag","thu":"Donderdag","fri":"Vrijdag","sat":"Zaterdag"}}},"quarters":{"format":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1e kwartaal","2":"2e kwartaal","3":"3e kwartaal","4":"4e kwartaal"}},"stand-alone":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1e kwartaal","2":"2e kwartaal","3":"3e kwartaal","4":"4e kwartaal"}}},"dayPeriods":{"format":{"abbreviated":{"am":"a.m.","noon":"12 uur ‘s middags","pm":"p.m."},"narrow":{"am":"a.m.","noon":"n","pm":"p.m."},"wide":{"am":"a.m.","noon":"12 uur ‘s middags","pm":"p.m."}},"stand-alone":{"abbreviated":{"am":"a.m.","noon":"12 uur ‘s middags","pm":"p.m."},"narrow":{"am":"a.m.","noon":"n","pm":"p.m."},"wide":{"am":"voormiddag","noon":"12 uur ‘s middags","pm":"p.m."}}},"eras":{"wide":{"0":"voor Christus","0-alt-variant":"vóór gewone jaartelling","1":"na Christus","1-alt-variant":"gewone jaartelling"},"abbreviated":{"0":"v.Chr.","0-alt-variant":"v.g.j.","1":"n.Chr.","1-alt-variant":"g.j."},"narrow":{"0":"v.C.","0-alt-variant":"vgj","1":"n.C.","1-alt-variant":"gj"}},"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"d MMM 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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/nl/dateFields.json b/Punic/data/nl/dateFields.json new file mode 100644 index 0000000..bd69913 --- /dev/null +++ b/Punic/data/nl/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Tijdperk"},"year":{"displayName":"Jaar","relative-type--1":"vorig jaar","relative-type-0":"dit jaar","relative-type-1":"volgend jaar","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} jaar","relativeTimePattern-count-other":"over {0} jaar"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} jaar geleden","relativeTimePattern-count-other":"{0} jaar geleden"}},"year-short":{"displayName":"jr.","relative-type--1":"vorig jaar","relative-type-0":"dit jaar","relative-type-1":"volgend jaar","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} jaar","relativeTimePattern-count-other":"over {0} jaar"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} jaar geleden","relativeTimePattern-count-other":"{0} jaar geleden"}},"year-narrow":{"displayName":"jr.","relative-type--1":"vorig jaar","relative-type-0":"dit jaar","relative-type-1":"volgend jaar","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} jaar","relativeTimePattern-count-other":"over {0} jaar"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} jaar geleden","relativeTimePattern-count-other":"{0} jaar geleden"}},"quarter":{"displayName":"Kwartaal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} kwartaal","relativeTimePattern-count-other":"over {0} kwartalen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kwartaal geleden","relativeTimePattern-count-other":"{0} kwartalen geleden"}},"quarter-short":{"displayName":"kwartaal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} kwartaal","relativeTimePattern-count-other":"over {0} kwartalen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kwartaal geleden","relativeTimePattern-count-other":"{0} kwartalen geleden"}},"quarter-narrow":{"displayName":"kwartaal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} kwartaal","relativeTimePattern-count-other":"over {0} kwartalen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kwartaal geleden","relativeTimePattern-count-other":"{0} kwartalen geleden"}},"month":{"displayName":"Maand","relative-type--1":"vorige maand","relative-type-0":"deze maand","relative-type-1":"volgende maand","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} maand","relativeTimePattern-count-other":"over {0} maanden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} maand geleden","relativeTimePattern-count-other":"{0} maanden geleden"}},"month-short":{"displayName":"mnd","relative-type--1":"vorige maand","relative-type-0":"deze maand","relative-type-1":"volgende maand","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} maand","relativeTimePattern-count-other":"over {0} maanden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} maand geleden","relativeTimePattern-count-other":"{0} maanden geleden"}},"month-narrow":{"displayName":"mnd","relative-type--1":"vorige maand","relative-type-0":"deze maand","relative-type-1":"volgende maand","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} maand","relativeTimePattern-count-other":"over {0} maanden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} maand geleden","relativeTimePattern-count-other":"{0} maanden geleden"}},"week":{"displayName":"Week","relative-type--1":"vorige week","relative-type-0":"deze week","relative-type-1":"volgende week","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} week","relativeTimePattern-count-other":"over {0} weken"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week geleden","relativeTimePattern-count-other":"{0} weken geleden"}},"week-short":{"displayName":"wk","relative-type--1":"vorige week","relative-type-0":"deze week","relative-type-1":"volgende week","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} week","relativeTimePattern-count-other":"over {0} weken"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week geleden","relativeTimePattern-count-other":"{0} weken geleden"}},"week-narrow":{"displayName":"wk","relative-type--1":"vorige week","relative-type-0":"deze week","relative-type-1":"volgende week","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} week","relativeTimePattern-count-other":"over {0} weken"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week geleden","relativeTimePattern-count-other":"{0} weken geleden"}},"day":{"displayName":"Dag","relative-type--1":"gisteren","relative-type--2":"eergisteren","relative-type-0":"vandaag","relative-type-1":"morgen","relative-type-2":"overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} dag","relativeTimePattern-count-other":"over {0} dagen"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dag geleden","relativeTimePattern-count-other":"{0} dagen geleden"}},"day-short":{"displayName":"dag","relative-type--1":"gisteren","relative-type--2":"eergisteren","relative-type-0":"vandaag","relative-type-1":"morgen","relative-type-2":"overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} dag","relativeTimePattern-count-other":"over {0} dgn"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dag geleden","relativeTimePattern-count-other":"{0} dgn geleden"}},"day-narrow":{"displayName":"dag","relative-type--1":"gisteren","relative-type--2":"eergisteren","relative-type-0":"vandaag","relative-type-1":"morgen","relative-type-2":"overmorgen","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} dag","relativeTimePattern-count-other":"over {0} dgn"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dag geleden","relativeTimePattern-count-other":"{0} dgn geleden"}},"weekday":{"displayName":"Dag van de week"},"sun":{"relative-type--1":"afgelopen zondag","relative-type-0":"deze zondag","relative-type-1":"volgende week zondag"},"sun-short":{"relative-type--1":"afgelopen zon.","relative-type-0":"deze zon.","relative-type-1":"volgende week zon."},"sun-narrow":{"relative-type--1":"afgelopen zo","relative-type-0":"deze zo","relative-type-1":"volgende week zo"},"mon":{"relative-type--1":"afgelopen maandag","relative-type-0":"deze maandag","relative-type-1":"volgende week maandag"},"mon-short":{"relative-type--1":"afgelopen maan.","relative-type-0":"deze maan.","relative-type-1":"volgende week maan."},"mon-narrow":{"relative-type--1":"afgelopen ma","relative-type-0":"deze ma","relative-type-1":"volgende week ma"},"tue":{"relative-type--1":"afgelopen dinsdag","relative-type-0":"deze dinsdag","relative-type-1":"volgende week dinsdag"},"tue-short":{"relative-type--1":"afgelopen dins.","relative-type-0":"deze dins.","relative-type-1":"volgende week dins."},"tue-narrow":{"relative-type--1":"afgelopen di","relative-type-0":"deze di","relative-type-1":"volgende week di"},"wed":{"relative-type--1":"afgelopen woensdag","relative-type-0":"deze woensdag","relative-type-1":"volgende week woensdag"},"wed-short":{"relative-type--1":"afgelopen woens.","relative-type-0":"deze woens.","relative-type-1":"volgende week woens."},"wed-narrow":{"relative-type--1":"afgelopen wo","relative-type-0":"deze wo","relative-type-1":"volgende week wo"},"thu":{"relative-type--1":"afgelopen donderdag","relative-type-0":"deze donderdag","relative-type-1":"volgende week donderdag"},"thu-short":{"relative-type--1":"afgelopen donder.","relative-type-0":"deze donder.","relative-type-1":"volgende week donder."},"thu-narrow":{"relative-type--1":"afgelopen do","relative-type-0":"deze do","relative-type-1":"volgende week do"},"fri":{"relative-type--1":"afgelopen vrijdag","relative-type-0":"deze vrijdag","relative-type-1":"volgende week vrijdag"},"fri-short":{"relative-type--1":"afgelopen vrij.","relative-type-0":"deze vrij.","relative-type-1":"volgende week vrij."},"fri-narrow":{"relative-type--1":"afgelopen vr","relative-type-0":"deze vr","relative-type-1":"volgende week vr"},"sat":{"relative-type--1":"afgelopen zaterdag","relative-type-0":"deze zaterdag","relative-type-1":"volgende week zaterdag"},"sat-short":{"relative-type--1":"afgelopen zater.","relative-type-0":"deze zater.","relative-type-1":"volgende week zater."},"sat-narrow":{"relative-type--1":"afgelopen za","relative-type-0":"deze za","relative-type-1":"volgende week za"},"dayperiod":{"displayName":"a.m./p.m."},"hour":{"displayName":"Uur","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} uur","relativeTimePattern-count-other":"over {0} uur"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} uur geleden","relativeTimePattern-count-other":"{0} uur geleden"}},"hour-short":{"displayName":"uur","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} uur","relativeTimePattern-count-other":"over {0} uur"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} uur geleden","relativeTimePattern-count-other":"{0} uur geleden"}},"hour-narrow":{"displayName":"u","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} uur","relativeTimePattern-count-other":"over {0} uur"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} uur geleden","relativeTimePattern-count-other":"{0} uur geleden"}},"minute":{"displayName":"Minuut","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} minuut","relativeTimePattern-count-other":"over {0} minuten"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minuut geleden","relativeTimePattern-count-other":"{0} minuten geleden"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} min.","relativeTimePattern-count-other":"over {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. geleden","relativeTimePattern-count-other":"{0} min. geleden"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} min.","relativeTimePattern-count-other":"over {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. geleden","relativeTimePattern-count-other":"{0} min. geleden"}},"second":{"displayName":"Seconde","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} seconde","relativeTimePattern-count-other":"over {0} seconden"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} seconde geleden","relativeTimePattern-count-other":"{0} seconden geleden"}},"second-short":{"displayName":"sec.","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} sec.","relativeTimePattern-count-other":"over {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. geleden","relativeTimePattern-count-other":"{0} sec. geleden"}},"second-narrow":{"displayName":"s","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"over {0} sec.","relativeTimePattern-count-other":"over {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. geleden","relativeTimePattern-count-other":"{0} sec. geleden"}},"zone":{"displayName":"Zone"}} \ No newline at end of file diff --git a/Punic/data/nl/languages.json b/Punic/data/nl/languages.json new file mode 100644 index 0000000..c73b5ee --- /dev/null +++ b/Punic/data/nl/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abchazisch","ace":"Atjehs","ach":"Akoli","ada":"Adangme","ady":"Adygees","ae":"Avestisch","aeb":"Tunesisch Arabisch","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadisch","akz":"Alabama","ale":"Aleoetisch","aln":"Gegisch","alt":"Zuid-Altaïsch","am":"Amhaars","an":"Aragonees","ang":"Oudengels","anp":"Angika","ar":"Arabisch","ar-001":"modern standaard Arabisch","arc":"Aramees","arn":"Mapudungun","aro":"Araona","arp":"Arapaho","arq":"Algerijns Arabisch","arw":"Arawak","ary":"Marokkaans Arabisch","arz":"Egyptisch Arabisch","as":"Assamees","asa":"Asu","ase":"Amerikaanse Gebarentaal","ast":"Asturisch","av":"Avarisch","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbeidzjaans","az-alt-short":"Azeri","azb":"Zuid-Azerbeidzjaans Arabisch","ba":"Basjkiers","bal":"Beloetsji","ban":"Balinees","bar":"Beiers","bas":"Basa","bax":"Bamoun","bbc":"Batak Toba","bbj":"Ghomala’","be":"Wit-Russisch","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgaars","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengaals","bo":"Tibetaans","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Bretons","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnisch","bss":"Akoose","bua":"Boerjatisch","bug":"Buginees","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalaans","cad":"Caddo","car":"Caribisch","cay":"Cayuga","cch":"Atsam","ce":"Tsjetsjeens","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukees","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","ckb":"Soranî","co":"Corsicaans","cop":"Koptisch","cps":"Capiznon","cr":"Cree","crh":"Krim-Tataars","cs":"Tsjechisch","csb":"Kasjoebisch","cu":"Kerkslavisch","cv":"Tsjoevasjisch","cy":"Welsh","da":"Deens","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"Duits","de-AT":"Oostenrijks Duits","de-CH":"Zwitsers Hoogduits","del":"Delaware","den":"Slavey","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Nedersorbisch","dtp":"Dusun","dua":"Duala","dum":"Middelnederlands","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emiliano","egy":"Oudegyptisch","eka":"Ekajuk","el":"Grieks","elx":"Elamitisch","en":"Engels","en-AU":"Australisch Engels","en-CA":"Canadees Engels","en-GB":"Brits Engels","en-GB-alt-short":"en_GB","en-US":"Amerikaans Engels","en-US-alt-short":"en_US","enm":"Middelengels","eo":"Esperanto","es":"Spaans","es-419":"Latijns-Amerikaans Spaans","es-ES":"Europees Spaans","es-MX":"Mexicaans Spaans","esu":"Yupik","et":"Estisch","eu":"Baskisch","ewo":"Ewondo","ext":"Extremeens","fa":"Perzisch","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Fins","fil":"Filipijns","fit":"Tornedal-Fins","fj":"Fijisch","fo":"Faeröers","fon":"Fon","fr":"Frans","fr-CA":"Canadees Frans","fr-CH":"Zwitsers Frans","frc":"Cajun-Frans","frm":"Middelfrans","fro":"Oudfrans","frp":"Arpitaans","frr":"Noord-Fries","frs":"Oost-Fries","fur":"Friulisch","fy":"Fries","ga":"Iers","gaa":"Ga","gag":"Gagaoezisch","gan":"Gan","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrisch Dari","gd":"Schots-Gaelisch","gez":"Ge’ez","gil":"Gilbertees","gl":"Galicisch","glk":"Gilaki","gmh":"Middelhoogduits","gn":"Guaraní","goh":"Oudhoogduits","gom":"Goa Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothisch","grb":"Grebo","grc":"Oudgrieks","gsw":"Zwitserduits","gu":"Gujarati","guc":"Wayuu","gur":"Gurune","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka","haw":"Hawaïaans","he":"Hebreeuws","hi":"Hindi","hif":"Fijisch Hindi","hil":"Hiligaynon","hit":"Hettitisch","hmn":"Hmong","ho":"Hiri Motu","hr":"Kroatisch","hsb":"Oppersorbisch","hsn":"Xiangyu","ht":"Haïtiaans Creools","hu":"Hongaars","hup":"Hupa","hy":"Armeens","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesisch","ie":"Interlingue","ig":"Igbo","ii":"Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingoesjetisch","io":"Ido","is":"IJslands","it":"Italiaans","iu":"Inuktitut","izh":"Ingrisch","ja":"Japans","jam":"Jamaicaans Creools","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Perzisch","jrb":"Judeo-Arabisch","jut":"Jutlands","jv":"Javaans","ka":"Georgisch","kaa":"Karakalpaks","kab":"Kabylisch","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardisch","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kaapverdisch Creools","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanees","khq":"Koyra Chiini","khw":"Khowar","ki":"Gikuyu","kiu":"Kirmanckî","kj":"Kuanyama","kk":"Kazachs","kkj":"Kako","kl":"Groenlands","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Koreaans","koi":"Komi-Permjaaks","kok":"Konkani","kos":"Kosraeaans","kpe":"Kpelle","kr":"Kanuri","krc":"Karatsjaj-Balkarisch","kri":"Krio","krj":"Kinaray-a","krl":"Karelisch","kru":"Kurukh","ks":"Kasjmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Kölsch","ku":"Koerdisch","kum":"Koemuks","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kirgizisch","la":"Latijn","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxemburgs","lez":"Lezgisch","lfn":"Lingua Franca Nova","lg":"Luganda","li":"Limburgs","lij":"Ligurisch","liv":"Lijfs","lkt":"Lakota","lmo":"Lombardisch","ln":"Lingala","lo":"Laotiaans","lol":"Mongo","loz":"Lozi","lt":"Litouws","ltg":"Letgaals","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Lets","lzh":"Klassiek Chinees","lzz":"Lazisch","mad":"Madoerees","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makassaars","man":"Mandingo","mas":"Maa","mde":"Maba","mdf":"Moksja","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagassisch","mga":"Middeliers","mgh":"Makhuwa-Meetto","mgo":"Meta’","mh":"Marshallees","mi":"Maori","mic":"Mi’kmaq","min":"Minangkabau","mk":"Macedonisch","ml":"Malayalam","mn":"Mongools","mnc":"Mantsjoe","mni":"Meitei","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"West-Mari","ms":"Maleis","mt":"Maltees","mua":"Mundang","mul":"Meerdere talen","mus":"Creek","mwl":"Mirandees","mwr":"Marwari","mwv":"Mentawai","my":"Birmaans","mye":"Myene","myv":"Erzja","mzn":"Mazanderani","na":"Nauruaans","nan":"Minnanyu","nap":"Napolitaans","naq":"Nama","nb":"Noors - Bokmål","nd":"Noord-Ndebele","nds":"Nedersaksisch","ne":"Nepalees","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niueaans","njo":"Ao Naga","nl":"Nederlands","nl-BE":"Vlaams","nmg":"Ngumba","nn":"Noors - Nynorsk","nnh":"Ngiemboon","no":"Noors","nog":"Nogai","non":"Oudnoors","nov":"Novial","nqo":"N’Ko","nr":"Zuid-Ndbele","nso":"Noord-Sotho","nus":"Nuer","nv":"Navajo","nwc":"Klassiek Nepalbhasa","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitaans","oj":"Ojibwa","om":"Afaan Oromo","or":"Odia","os":"Ossetisch","osa":"Osage","ota":"Ottomaans-Turks","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiaments","pau":"Palaus","pcd":"Picardisch","pdc":"Pennsylvania-Duits","pdt":"Plautdietsch","peo":"Oudperzisch","pfl":"Paltsisch","phn":"Foenicisch","pi":"Pali","pl":"Pools","pms":"Piëmontees","pnt":"Pontisch","pon":"Pohnpeiaans","prg":"Oudpruisisch","pro":"Oudprovençaals","ps":"Pasjtoe","ps-alt-variant":"Pashto","pt":"Portugees","pt-BR":"Braziliaans Portugees","pt-PT":"Europees Portugees","qu":"Quechua","quc":"K’iche’","qug":"Kichwa","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffijns","rm":"Reto-Romaans","rn":"Kirundi","ro":"Roemeens","ro-MD":"ro_MD","rof":"Rombo","rom":"Romani","root":"Root","rtm":"Rotumaans","ru":"Russisch","rue":"Roetheens","rug":"Roviana","rup":"Aroemeens","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskriet","sad":"Sandawe","sah":"Jakoets","sam":"Samaritaans-Aramees","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardijns","scn":"Siciliaans","sco":"Schots","sd":"Sindhi","sdc":"Sassarees","se":"Noord-Samisch","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkoeps","ses":"Koyraboro Senni","sg":"Sango","sga":"Oudiers","sgs":"Samogitisch","sh":"Servokroatisch","shi":"Tashelhiyt","shn":"Shan","shu":"Tsjadisch Arabisch","si":"Singalees","sid":"Sidamo","sk":"Slowaaks","sl":"Sloveens","sli":"Silezisch Duits","sly":"Selayar","sm":"Samoaans","sma":"Zuid-Samisch","smj":"Lule-Samisch","smn":"Inari-Samisch","sms":"Skolt-Samisch","sn":"Shona","snk":"Soninke","so":"Somalisch","sog":"Sogdisch","sq":"Albanees","sr":"Servisch","srn":"Sranantongo","srr":"Serer","ss":"Swazi","ssy":"Saho","st":"Zuid-Sotho","stq":"Saterfries","su":"Soendanees","suk":"Sukuma","sus":"Soesoe","sux":"Soemerisch","sv":"Zweeds","sw":"Swahili","swb":"Shimaore","swc":"Congo Swahili","syc":"Klassiek Syrisch","syr":"Syrisch","szl":"Silezisch","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetun","tg":"Tadzjieks","th":"Thais","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmeens","tkl":"Tokelaus","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talisch","tmh":"Tamashek","tn":"Tswana","to":"Tongaans","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turks","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonisch","tsi":"Tsimshian","tt":"Tataars","ttt":"Moslim Tat","tum":"Toemboeka","tvl":"Tuvaluaans","tw":"Twi","twq":"Tasawaq","ty":"Tahitiaans","tyv":"Toevaans","tzm":"Tamazight (Centraal-Marokko)","udm":"Oedmoerts","ug":"Oeigoers","uga":"Oegaritisch","uk":"Oekraïens","umb":"Umbundu","und":"onbekende taal","ur":"Urdu","uz":"Oezbeeks","vai":"Vai","ve":"Venda","vec":"Venetiaans","vep":"Wepsisch","vi":"Vietnamees","vls":"West-Vlaams","vmf":"Mainfränkisch","vo":"Volapük","vot":"Votisch","vro":"Võro","vun":"Vunjo","wa":"Waals","wae":"Walser","wal":"Wolaytta","war":"Waray","was":"Washo","wo":"Wolof","wuu":"Wuyu","xal":"Kalmuks","xh":"Xhosa","xmf":"Mingreels","xog":"Soga","yao":"Yao","yap":"Yapees","yav":"Yangben","ybb":"Yemba","yi":"Jiddisch","yo":"Yoruba","yrl":"Nheengatu","yue":"Kantonees","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbolen","zea":"Zeeuws","zen":"Zenaga","zgh":"Standaard Marokkaanse Tamazight","zh":"Chinees","zh-Hans":"vereenvoudigd Chinees","zh-Hant":"traditioneel Chinees","zu":"Zoeloe","zun":"Zuni","zxx":"geen linguïstische inhoud","zza":"Zaza"} \ No newline at end of file diff --git a/Punic/data/nl/listPatterns.json b/Punic/data/nl/listPatterns.json new file mode 100644 index 0000000..b8fcc0c --- /dev/null +++ b/Punic/data/nl/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s en %2$s","2":"%1$s en %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s en %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/nl/localeDisplayNames.json b/Punic/data/nl/localeDisplayNames.json new file mode 100644 index 0000000..f9a354c --- /dev/null +++ b/Punic/data/nl/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalender","colAlternate":"Sorteren van symbolen negeren","colBackwards":"Omgekeerd sorteren op accenten","colCaseFirst":"Indelen op hoofdletters/kleine letters","colCaseLevel":"Hoofdlettergevoelig sorteren","colHiraganaQuaternary":"Kana sorteren","colNormalization":"Genormaliseerd sorteren","colNumeric":"Numeriek sorteren","colStrength":"Sorteervoorrang","collation":"sorteervolgorde","currency":"valuta","numbers":"cijfers","timezone":"Tijdzone","va":"Landvariant","variableTop":"Sorteren als symbolen","x":"Privégebruik"},"types":{"numbers":{"vaii":"Vai-cijfers"},"collation":{"zhuyin":"Zhuyinvolgorde"},"calendar":{"roc":"Kalender van de Chinese Republiek"},"colStrength":{"tertiary":"Sorteren op accenten/hoofdlettergebruik/breedte"},"colCaseFirst":{"upper":"Eerst sorteren op hoofdletters"},"colBackwards":{"yes":"Omgekeerd sorteren op accenten"},"colCaseLevel":{"yes":"Hoofdlettergevoelig sorteren"},"colHiraganaQuaternary":{"yes":"Kana anders sorteren"},"colNormalization":{"yes":"Unicode genormaliseerd sorteren"},"colNumeric":{"yes":"Cijfers numeriek sorteren"},"colAlternate":{"shifted":"Sorteren zonder symbolen"}},"codePatterns":{"language":"Taal: %1$s","script":"Schrift: %1$s","territory":"Regio: %1$s"}} \ No newline at end of file diff --git a/Punic/data/nl/numbers.json b/Punic/data/nl/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/nl/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/nl/territories.json b/Punic/data/nl/territories.json new file mode 100644 index 0000000..27ea3f1 --- /dev/null +++ b/Punic/data/nl/territories.json @@ -0,0 +1 @@ +{"001":"wereld","002":"Afrika","003":"Noord-Amerika","005":"Zuid-Amerika","009":"Oceanië","011":"West-Afrika","013":"Midden-Amerika","014":"Oost-Afrika","015":"Noord-Afrika","017":"Centraal-Afrika","018":"Zuidelijk Afrika","019":"Amerika","021":"Noordelijk Amerika","029":"Caribisch gebied","030":"Oost-Azië","034":"Zuid-Azië","035":"Zuidoost-Azië","039":"Zuid-Europa","053":"Australazië","054":"Melanesië","057":"Micronesische regio","061":"Polynesië","142":"Azië","143":"Centraal-Azië","145":"West-Azië","150":"Europa","151":"Oost-Europa","154":"Noord-Europa","155":"West-Europa","419":"Latijns-Amerika","AC":"Ascension","AD":"Andorra","AE":"Verenigde Arabische Emiraten","AF":"Afghanistan","AG":"Antigua en Barbuda","AI":"Anguilla","AL":"Albanië","AM":"Armenië","AN":"Nederlandse Antillen","AO":"Angola","AQ":"Antarctica","AR":"Argentinië","AS":"Amerikaans-Samoa","AT":"Oostenrijk","AU":"Australië","AW":"Aruba","AX":"Åland","AZ":"Azerbeidzjan","BA":"Bosnië en Herzegovina","BB":"Barbados","BD":"Bangladesh","BE":"België","BF":"Burkina Faso","BG":"Bulgarije","BH":"Bahrein","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribisch Nederland","BR":"Brazilië","BS":"Bahama’s","BT":"Bhutan","BV":"Bouveteiland","BW":"Botswana","BY":"Wit-Rusland","BZ":"Belize","CA":"Canada","CC":"Cocoseilanden","CD":"Congo-Kinshasa","CD-alt-variant":"Congo (DRC)","CF":"Centraal-Afrikaanse Republiek","CG":"Congo-Brazzaville","CG-alt-variant":"Congo (Republiek)","CH":"Zwitserland","CI":"Ivoorkust","CI-alt-variant":"CI","CK":"Cookeilanden","CL":"Chili","CM":"Kameroen","CN":"China","CO":"Colombia","CP":"Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Kaapverdië","CW":"Curaçao","CX":"Christmaseiland","CY":"Cyprus","CZ":"Tsjechië","DE":"Duitsland","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denemarken","DM":"Dominica","DO":"Dominicaanse Republiek","DZ":"Algerije","EA":"Ceuta en Melilla","EC":"Ecuador","EE":"Estland","EG":"Egypte","EH":"Westelijke Sahara","ER":"Eritrea","ES":"Spanje","ET":"Ethiopië","EU":"Europese Unie","FI":"Finland","FJ":"Fiji","FK":"Falklandeilanden","FK-alt-variant":"Falklandeilanden (Islas Malvinas)","FM":"Micronesia","FO":"Faeröer","FR":"Frankrijk","GA":"Gabon","GB":"Verenigd Koninkrijk","GB-alt-short":"VK","GD":"Grenada","GE":"Georgië","GF":"Frans-Guyana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Groenland","GM":"Gambia","GN":"Guinee","GP":"Guadeloupe","GQ":"Equatoriaal-Guinea","GR":"Griekenland","GS":"Zuid-Georgia en Zuidelijke Sandwicheilanden","GT":"Guatemala","GU":"Guam","GW":"Guinee-Bissau","GY":"Guyana","HK":"Hongkong SAR van China","HK-alt-short":"Hongkong","HM":"Heard en McDonaldeilanden","HN":"Honduras","HR":"Kroatië","HT":"Haïti","HU":"Hongarije","IC":"Canarische Eilanden","ID":"Indonesië","IE":"Ierland","IL":"Israël","IM":"Isle of Man","IN":"India","IO":"Britse Gebieden in de Indische Oceaan","IQ":"Irak","IR":"Iran","IS":"IJsland","IT":"Italië","JE":"Jersey","JM":"Jamaica","JO":"Jordanië","JP":"Japan","KE":"Kenia","KG":"Kirgizië","KH":"Cambodja","KI":"Kiribati","KM":"Comoren","KN":"Saint Kitts en Nevis","KP":"Noord-Korea","KR":"Zuid-Korea","KW":"Koeweit","KY":"Caymaneilanden","KZ":"Kazachstan","LA":"Laos","LB":"Libanon","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litouwen","LU":"Luxemburg","LV":"Letland","LY":"Libië","MA":"Marokko","MC":"Monaco","MD":"Moldavië","ME":"Montenegro","MF":"Saint-Martin","MG":"Madagaskar","MH":"Marshalleilanden","MK":"Macedonië","MK-alt-variant":"Macedonië (FYROM)","ML":"Mali","MM":"Myanmar (Birma)","MN":"Mongolië","MO":"Macau SAR van China","MO-alt-short":"Macau","MP":"Noordelijke Marianen","MQ":"Martinique","MR":"Mauritanië","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldiven","MW":"Malawi","MX":"Mexico","MY":"Maleisië","MZ":"Mozambique","NA":"Namibië","NC":"Nieuw-Caledonië","NE":"Niger","NF":"Norfolk","NG":"Nigeria","NI":"Nicaragua","NL":"Nederland","NO":"Noorwegen","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nieuw-Zeeland","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Frans-Polynesië","PG":"Papoea-Nieuw-Guinea","PH":"Filipijnen","PK":"Pakistan","PL":"Polen","PM":"Saint-Pierre en Miquelon","PN":"Pitcairneilanden","PR":"Puerto Rico","PS":"Palestijnse gebieden","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"overig Oceanië","RE":"Réunion","RO":"Roemenië","RS":"Servië","RU":"Rusland","RW":"Rwanda","SA":"Saoedi-Arabië","SB":"Salomonseilanden","SC":"Seychellen","SD":"Soedan","SE":"Zweden","SG":"Singapore","SH":"Sint-Helena","SI":"Slovenië","SJ":"Spitsbergen en Jan Mayen","SK":"Slowakije","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalië","SR":"Suriname","SS":"Zuid-Soedan","ST":"Sao Tomé en Principe","SV":"El Salvador","SX":"Sint-Maarten","SY":"Syrië","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks- en Caicoseilanden","TD":"Tsjaad","TF":"Franse Gebieden in de zuidelijke Indische Oceaan","TG":"Togo","TH":"Thailand","TJ":"Tadzjikistan","TK":"Tokelau","TL":"Oost-Timor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunesië","TO":"Tonga","TR":"Turkije","TT":"Trinidad en Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Oekraïne","UG":"Oeganda","UM":"Kleine afgelegen eilanden van de Verenigde Staten","US":"Verenigde Staten","US-alt-short":"VS","UY":"Uruguay","UZ":"Oezbekistan","VA":"Vaticaanstad","VC":"Saint Vincent en de Grenadines","VE":"Venezuela","VG":"Britse Maagdeneilanden","VI":"Amerikaanse Maagdeneilanden","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis en Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Zuid-Afrika","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"onbekend gebied"} \ No newline at end of file diff --git a/Punic/data/nl/timeZoneNames.json b/Punic/data/nl/timeZoneNames.json new file mode 100644 index 0000000..2a6639e --- /dev/null +++ b/Punic/data/nl/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s-tijd","regionFormat-type-standard":"standaardtijd %1$s","regionFormat-type-daylight":"zomertijd %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahía de Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"Belize":{"exemplarCity":"Belize"},"Blanc-Sablon":{"exemplarCity":"Blanc-Sablon"},"Boa_Vista":{"exemplarCity":"Boa Vista"},"Bogota":{"exemplarCity":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Beneden Prinsen Kwartier"},"Maceio":{"exemplarCity":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinique"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexico-Stad"},"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, Noord-Dakota"},"Center":{"exemplarCity":"Center, Noord-Dakota"},"New_Salem":{"exemplarCity":"New Salem, Noord-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":"Bermuda"},"Canary":{"exemplarCity":"Canarische Eilanden"},"Cape_Verde":{"exemplarCity":"Kaapverdië"},"Faeroe":{"exemplarCity":"Faeröer"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Zuid-Georgia"},"St_Helena":{"exemplarCity":"Sint-Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athene"},"Belgrade":{"exemplarCity":"Belgrado"},"Berlin":{"exemplarCity":"Berlijn"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussel"},"Bucharest":{"exemplarCity":"Boekarest"},"Budapest":{"exemplarCity":"Boedapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Kopenhagen"},"Dublin":{"long":{"daylight":"Ierse zomertijd"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Isle of Man"},"Istanbul":{"exemplarCity":"Istanboel"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lissabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Britse zomertijd"},"exemplarCity":"Londen"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moskou"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Parijs"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praag"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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"},"Uzhgorod":{"exemplarCity":"Oezjhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vaticaanstad"},"Vienna":{"exemplarCity":"Wenen"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Wolgograd"},"Warsaw":{"exemplarCity":"Warschau"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizja"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Algiers"},"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":"Caïro"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoem"},"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":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"Sao Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Alma-Ata"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Asjchabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrein"},"Baku":{"exemplarCity":"Bakoe"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beiroet"},"Bishkek":{"exemplarCity":"Bisjkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Doesjanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkoetsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamtsjatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Koeweit"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manilla"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom-Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyad"},"Saigon":{"exemplarCity":"Ho Chi Minhstad"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Sjanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tasjkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakoetsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinenburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagosarchipel"},"Christmas":{"exemplarCity":"Christmaseiland"},"Cocos":{"exemplarCity":"Cocoseilanden"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldiven"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Paaseiland"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapagos"},"Gambier":{"exemplarCity":"Îles 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":"Marquesaseilanden"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"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":"Vostok"}},"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":"onbekende stad"}}},"metazone":{"Acre":{"long":{"generic":"Acre-tijd","standard":"Acre-standaardtijd","daylight":"Acre-zomertijd"}},"Afghanistan":{"long":{"standard":"Afghaanse tijd"}},"Africa_Central":{"long":{"standard":"Centraal-Afrikaanse tijd"}},"Africa_Eastern":{"long":{"standard":"Oost-Afrikaanse tijd"}},"Africa_Southern":{"long":{"standard":"Zuid-Afrikaanse tijd"}},"Africa_Western":{"long":{"generic":"West-Afrikaanse tijd","standard":"West-Afrikaanse standaardtijd","daylight":"West-Afrikaanse zomertijd"}},"Alaska":{"long":{"generic":"Alaska-tijd","standard":"Alaska-standaardtijd","daylight":"Alaska-zomertijd"}},"Almaty":{"long":{"generic":"Alma-Ata-tijd","standard":"Alma-Ata-standaardtijd","daylight":"Alma-Ata-zomertijd"}},"Amazon":{"long":{"generic":"Amazone-tijd","standard":"Amazone-standaardtijd","daylight":"Amazone-zomertijd"}},"America_Central":{"long":{"generic":"Central-tijd","standard":"Central-standaardtijd","daylight":"Central-zomertijd"}},"America_Eastern":{"long":{"generic":"Eastern-tijd","standard":"Eastern-standaardtijd","daylight":"Eastern-zomertijd"}},"America_Mountain":{"long":{"generic":"Mountain-tijd","standard":"Mountain-standaardtijd","daylight":"Mountain-zomertijd"}},"America_Pacific":{"long":{"generic":"Pacific-tijd","standard":"Pacific-standaardtijd","daylight":"Pacific-zomertijd"}},"Anadyr":{"long":{"generic":"Anadyr-tijd","standard":"Anadyr-standaardtijd","daylight":"Anadyr-zomertijd"}},"Apia":{"long":{"generic":"Apia-tijd","standard":"Apia-standaardtijd","daylight":"Apia-zomertijd"}},"Aqtau":{"long":{"generic":"Aqtau-tijd","standard":"Aqtau-standaardtijd","daylight":"Aqtau-zomertijd"}},"Aqtobe":{"long":{"generic":"Aqtöbe-tijd","standard":"Aqtöbe-standaardtijd","daylight":"Aqtöbe-zomertijd"}},"Arabian":{"long":{"generic":"Arabische tijd","standard":"Arabische standaardtijd","daylight":"Arabische zomertijd"}},"Argentina":{"long":{"generic":"Argentijnse tijd","standard":"Argentijnse standaardtijd","daylight":"Argentijnse zomertijd"}},"Argentina_Western":{"long":{"generic":"West-Argentijnse tijd","standard":"West-Argentijnse standaardtijd","daylight":"West-Argentijnse zomertijd"}},"Armenia":{"long":{"generic":"Armeense tijd","standard":"Armeense standaardtijd","daylight":"Armeense zomertijd"}},"Atlantic":{"long":{"generic":"Atlantic-tijd","standard":"Atlantic-standaardtijd","daylight":"Atlantic-zomertijd"}},"Australia_Central":{"long":{"generic":"Midden-Australische tijd","standard":"Midden-Australische standaardtijd","daylight":"Midden-Australische zomertijd"}},"Australia_CentralWestern":{"long":{"generic":"Midden-Australische westelijke tijd","standard":"Midden-Australische westelijke standaardtijd","daylight":"Midden-Australische westelijke zomertijd"}},"Australia_Eastern":{"long":{"generic":"Oost-Australische tijd","standard":"Oost-Australische standaardtijd","daylight":"Oost-Australische zomertijd"}},"Australia_Western":{"long":{"generic":"West-Australische tijd","standard":"West-Australische standaardtijd","daylight":"West-Australische zomertijd"}},"Azerbaijan":{"long":{"generic":"Azerbeidzjaanse tijd","standard":"Azerbeidzjaanse standaardtijd","daylight":"Azerbeidzjaanse zomertijd"}},"Azores":{"long":{"generic":"Azoren-tijd","standard":"Azoren-standaardtijd","daylight":"Azoren-zomertijd"}},"Bangladesh":{"long":{"generic":"Bengalese tijd","standard":"Bengalese standaardtijd","daylight":"Bengalese zomertijd"}},"Bhutan":{"long":{"standard":"Bhutaanse tijd"}},"Bolivia":{"long":{"standard":"Boliviaanse tijd"}},"Brasilia":{"long":{"generic":"Braziliaanse tijd","standard":"Braziliaanse standaardtijd","daylight":"Braziliaanse zomertijd"}},"Brunei":{"long":{"standard":"Bruneise tijd"}},"Cape_Verde":{"long":{"generic":"Kaapverdische tijd","standard":"Kaapverdische standaardtijd","daylight":"Kaapverdische zomertijd"}},"Casey":{"long":{"standard":"Casey tijd"}},"Chamorro":{"long":{"standard":"Chamorro-tijd"}},"Chatham":{"long":{"generic":"Chatham tijd","standard":"Chatham standaardtijd","daylight":"Chatham zomertijd"}},"Chile":{"long":{"generic":"Chileense tijd","standard":"Chileense standaardtijd","daylight":"Chileense zomertijd"}},"China":{"long":{"generic":"Chinese tijd","standard":"Chinese standaardtijd","daylight":"Chinese zomertijd"}},"Choibalsan":{"long":{"generic":"Tsjojbalsan tijd","standard":"Tsjojbalsan standaardtijd","daylight":"Tsjojbalsan zomertijd"}},"Christmas":{"long":{"standard":"Christmaseilandse tijd"}},"Cocos":{"long":{"standard":"Cocoseilandse tijd"}},"Colombia":{"long":{"generic":"Colombiaanse tijd","standard":"Colombiaanse standaardtijd","daylight":"Colombiaanse zomertijd"}},"Cook":{"long":{"generic":"Cookeilandse tijd","standard":"Cookeilandse standaardtijd","daylight":"Cookeilandse halve zomertijd"}},"Cuba":{"long":{"generic":"Cubaanse tijd","standard":"Cubaanse standaardtijd","daylight":"Cubaanse zomertijd"}},"Davis":{"long":{"standard":"Davis tijd"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville tijd"}},"East_Timor":{"long":{"standard":"Oost-Timorese tijd"}},"Easter":{"long":{"generic":"Paaseilandse tijd","standard":"Paaseilandse standaardtijd","daylight":"Paaseilandse zomertijd"}},"Ecuador":{"long":{"standard":"Ecuadoraanse tijd"}},"Europe_Central":{"long":{"generic":"Midden-Europese tijd","standard":"Midden-Europese standaardtijd","daylight":"Midden-Europese zomertijd"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Oost-Europese tijd","standard":"Oost-Europese standaardtijd","daylight":"Oost-Europese zomertijd"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Verder-oostelijk-Europese tijd"}},"Europe_Western":{"long":{"generic":"West-Europese tijd","standard":"West-Europese standaardtijd","daylight":"West-Europese zomertijd"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Falklandeilandse tijd","standard":"Falklandeilandse standaardtijd","daylight":"Falklandeilandse zomertijd"}},"Fiji":{"long":{"generic":"Fijische tijd","standard":"Fijische standaardtijd","daylight":"Fijische zomertijd"}},"French_Guiana":{"long":{"standard":"Frans-Guyaanse tijd"}},"French_Southern":{"long":{"standard":"Franse zuidelijke en Antarctische tijd"}},"GMT":{"long":{"standard":"Greenwich Mean Time"}},"Galapagos":{"long":{"standard":"Galapagoseilandse tijd"}},"Gambier":{"long":{"standard":"Gambiereilandse tijd"}},"Georgia":{"long":{"generic":"Georgische tijd","standard":"Georgische standaardtijd","daylight":"Georgische zomertijd"}},"Gilbert_Islands":{"long":{"standard":"Gilberteilandse tijd"}},"Greenland_Eastern":{"long":{"generic":"Oost-Groenlandse tijd","standard":"Oost-Groenlandse standaardtijd","daylight":"Oost-Groenlandse zomertijd"}},"Greenland_Western":{"long":{"generic":"West-Groenlandse tijd","standard":"West-Groenlandse standaardtijd","daylight":"West-Groenlandse zomertijd"}},"Guam":{"long":{"standard":"Guamese standaardtijd"}},"Gulf":{"long":{"standard":"Golf standaardtijd"}},"Guyana":{"long":{"standard":"Guyaanse tijd"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleoetische tijd","standard":"Hawaii-Aleoetische standaardtijd","daylight":"Hawaii-Aleoetische zomertijd"}},"Hong_Kong":{"long":{"generic":"Hongkongse tijd","standard":"Hongkongse standaardtijd","daylight":"Hongkongse zomertijd"}},"Hovd":{"long":{"generic":"Hovd tijd","standard":"Hovd standaardtijd","daylight":"Hovd zomertijd"}},"India":{"long":{"standard":"Indiase tijd"}},"Indian_Ocean":{"long":{"standard":"Indische Oceaan-tijd"}},"Indochina":{"long":{"standard":"Indochinese tijd"}},"Indonesia_Central":{"long":{"standard":"Centraal-Indonesische tijd"}},"Indonesia_Eastern":{"long":{"standard":"Oost-Indonesische tijd"}},"Indonesia_Western":{"long":{"standard":"West-Indonesische tijd"}},"Iran":{"long":{"generic":"Iraanse tijd","standard":"Iraanse standaardtijd","daylight":"Iraanse zomertijd"}},"Irkutsk":{"long":{"generic":"Irkoetsk-tijd","standard":"Irkoetsk-standaardtijd","daylight":"Irkoetsk-zomertijd"}},"Israel":{"long":{"generic":"Israëlische tijd","standard":"Israëlische standaardtijd","daylight":"Israëlische zomertijd"}},"Japan":{"long":{"generic":"Japanse tijd","standard":"Japanse standaardtijd","daylight":"Japanse zomertijd"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamtsjatski-tijd","standard":"Petropavlovsk-Kamtsjatski-standaardtijd","daylight":"Petropavlovsk-Kamtsjatski-zomertijd"}},"Kazakhstan_Eastern":{"long":{"standard":"Oost-Kazachse tijd"}},"Kazakhstan_Western":{"long":{"standard":"West-Kazachse tijd"}},"Korea":{"long":{"generic":"Koreaanse tijd","standard":"Koreaanse standaardtijd","daylight":"Koreaanse zomertijd"}},"Kosrae":{"long":{"standard":"Kosraese tijd"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarsk-tijd","standard":"Krasnojarsk-standaardtijd","daylight":"Krasnojarsk-zomertijd"}},"Kyrgystan":{"long":{"standard":"Kirgizische tijd"}},"Lanka":{"long":{"standard":"Lanka-tijd"}},"Line_Islands":{"long":{"standard":"Line-eilandse tijd"}},"Lord_Howe":{"long":{"generic":"Lord Howe-eilandse tijd","standard":"Lord Howe-eilandse standaardtijd","daylight":"Lord Howe-eilandse zomertijd"}},"Macau":{"long":{"generic":"Macause tijd","standard":"Macause standaardtijd","daylight":"Macause zomertijd"}},"Macquarie":{"long":{"standard":"Macquarie-eilandse tijd"}},"Magadan":{"long":{"generic":"Magadan-tijd","standard":"Magadan-standaardtijd","daylight":"Magadan-zomertijd"}},"Malaysia":{"long":{"standard":"Maleisische tijd"}},"Maldives":{"long":{"standard":"Maldivische tijd"}},"Marquesas":{"long":{"standard":"Marquesaseilandse tijd"}},"Marshall_Islands":{"long":{"standard":"Marshalleilandse tijd"}},"Mauritius":{"long":{"generic":"Mauritiaanse tijd","standard":"Mauritiaanse standaardtijd","daylight":"Mauritiaanse zomertijd"}},"Mawson":{"long":{"standard":"Mawson tijd"}},"Mexico_Northwest":{"long":{"generic":"Noordwest-Mexicaanse tijd","standard":"Noordwest-Mexicaanse standaardtijd","daylight":"Noordwest-Mexicaanse zomertijd"}},"Mexico_Pacific":{"long":{"generic":"Mexicaanse Pacific-tijd","standard":"Mexicaanse Pacific-standaardtijd","daylight":"Mexicaanse Pacific-zomertijd"}},"Mongolia":{"long":{"generic":"Ulaanbaatar tijd","standard":"Ulaanbaatar standaardtijd","daylight":"Ulaanbaatar zomertijd"}},"Moscow":{"long":{"generic":"Moskou-tijd","standard":"Moskou-standaardtijd","daylight":"Moskou-zomertijd"}},"Myanmar":{"long":{"standard":"Myanmarese tijd"}},"Nauru":{"long":{"standard":"Nauruaanse tijd"}},"Nepal":{"long":{"standard":"Nepalese tijd"}},"New_Caledonia":{"long":{"generic":"Nieuw-Caledonische tijd","standard":"Nieuw-Caledonische standaardtijd","daylight":"Nieuw-Caledonische zomertijd"}},"New_Zealand":{"long":{"generic":"Nieuw-Zeelandse tijd","standard":"Nieuw-Zeelandse standaardtijd","daylight":"Nieuw-Zeelandse zomertijd"}},"Newfoundland":{"long":{"generic":"Newfoundland-tijd","standard":"Newfoundland-standaardtijd","daylight":"Newfoundland-zomertijd"}},"Niue":{"long":{"standard":"Niuese tijd"}},"Norfolk":{"long":{"standard":"Norfolkeilandse tijd"}},"Noronha":{"long":{"generic":"Fernando de Noronha-tijd","standard":"Fernando de Noronha-standaardtijd","daylight":"Fernando de Noronha-zomertijd"}},"North_Mariana":{"long":{"standard":"Noordelijk Mariaanse tijd"}},"Novosibirsk":{"long":{"generic":"Novosibirsk-tijd","standard":"Novosibirsk-standaardtijd","daylight":"Novosibirsk-zomertijd"}},"Omsk":{"long":{"generic":"Omsk-tijd","standard":"Omsk-standaardtijd","daylight":"Omsk-zomertijd"}},"Pakistan":{"long":{"generic":"Pakistaanse tijd","standard":"Pakistaanse standaardtijd","daylight":"Pakistaanse zomertijd"}},"Palau":{"long":{"standard":"Belause tijd"}},"Papua_New_Guinea":{"long":{"standard":"Papoea-Nieuw-Guineese tijd"}},"Paraguay":{"long":{"generic":"Paraguayaanse tijd","standard":"Paraguayaanse standaardtijd","daylight":"Paraguayaanse zomertijd"}},"Peru":{"long":{"generic":"Peruaanse tijd","standard":"Peruaanse standaardtijd","daylight":"Peruaanse zomertijd"}},"Philippines":{"long":{"generic":"Filipijnse tijd","standard":"Filipijnse standaardtijd","daylight":"Filipijnse zomertijd"}},"Phoenix_Islands":{"long":{"standard":"Phoenixeilandse tijd"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre en Miquelon-tijd","standard":"Saint Pierre en Miquelon-standaardtijd","daylight":"Saint Pierre en Miquelon-zomertijd"}},"Pitcairn":{"long":{"standard":"Pitcairneilandse tijd"}},"Ponape":{"long":{"standard":"Pohnpei tijd"}},"Qyzylorda":{"long":{"generic":"Qyzylorda-tijd","standard":"Qyzylorda-standaardtijd","daylight":"Qyzylorda-zomertijd"}},"Reunion":{"long":{"standard":"Réunionse tijd"}},"Rothera":{"long":{"standard":"Rothera tijd"}},"Sakhalin":{"long":{"generic":"Sachalin-tijd","standard":"Sachalin-standaardtijd","daylight":"Sachalin-zomertijd"}},"Samara":{"long":{"generic":"Samara-tijd","standard":"Samara-standaardtijd","daylight":"Samara-zomertijd"}},"Samoa":{"long":{"generic":"Samoaanse tijd","standard":"Samoaanse standaardtijd","daylight":"Samoaanse zomertijd"}},"Seychelles":{"long":{"standard":"Seychelse tijd"}},"Singapore":{"long":{"standard":"Singaporese standaardtijd"}},"Solomon":{"long":{"standard":"Salomonseilandse tijd"}},"South_Georgia":{"long":{"standard":"Zuid-Georgische tijd"}},"Suriname":{"long":{"standard":"Surinaamse tijd"}},"Syowa":{"long":{"standard":"Syowa tijd"}},"Tahiti":{"long":{"standard":"Tahitiaanse tijd"}},"Taipei":{"long":{"generic":"Taipei tijd","standard":"Taipei standaardtijd","daylight":"Taipei zomertijd"}},"Tajikistan":{"long":{"standard":"Tadzjiekse tijd"}},"Tokelau":{"long":{"standard":"Tokelau-eilandse tijd"}},"Tonga":{"long":{"generic":"Tongaanse tijd","standard":"Tongaanse standaardtijd","daylight":"Tongaanse zomertijd"}},"Truk":{"long":{"standard":"Chuukse tijd"}},"Turkmenistan":{"long":{"generic":"Turkmeense tijd","standard":"Turkmeense standaardtijd","daylight":"Turkmeense zomertijd"}},"Tuvalu":{"long":{"standard":"Tuvaluaanse tijd"}},"Uruguay":{"long":{"generic":"Uruguayaanse tijd","standard":"Uruguayaanse standaardtijd","daylight":"Uruguayaanse zomertijd"}},"Uzbekistan":{"long":{"generic":"Oezbeekse tijd","standard":"Oezbeekse standaardtijd","daylight":"Oezbeekse zomertijd"}},"Vanuatu":{"long":{"generic":"Vanuatuaanse tijd","standard":"Vanuatuaanse standaardtijd","daylight":"Vanuatuaanse zomertijd"}},"Venezuela":{"long":{"standard":"Venezolaanse tijd"}},"Vladivostok":{"long":{"generic":"Vladivostok-tijd","standard":"Vladivostok-standaardtijd","daylight":"Vladivostok-zomertijd"}},"Volgograd":{"long":{"generic":"Wolgograd-tijd","standard":"Wolgograd-standaardtijd","daylight":"Wolgograd-zomertijd"}},"Vostok":{"long":{"standard":"Vostok tijd"}},"Wake":{"long":{"standard":"Wake-eilandse tijd"}},"Wallis":{"long":{"standard":"Wallis en Futunase tijd"}},"Yakutsk":{"long":{"generic":"Jakoetsk-tijd","standard":"Jakoetsk-standaardtijd","daylight":"Jakoetsk-zomertijd"}},"Yekaterinburg":{"long":{"generic":"Jekaterinenburg-tijd","standard":"Jekaterinenburg-standaardtijd","daylight":"Jekaterinenburg-zomertijd"}}}} \ No newline at end of file diff --git a/Punic/data/nl/units.json b/Punic/data/nl/units.json new file mode 100644 index 0000000..0b6cbaf --- /dev/null +++ b/Punic/data/nl/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"G-krachten","one":"%1$s G-kracht","other":"%1$s G-krachten"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"boogminuten","one":"%1$s boogminuut","other":"%1$s boogminuten"},"arc-second":{"_name":"boogseconden","one":"%1$s boogseconde","other":"%1$s boogseconden"},"degree":{"_name":"booggraden","one":"%1$s booggraad","other":"%1$s booggraden"},"radian":{"_name":"radiaal","one":"%1$s radiaal","other":"%1$s radialen"}},"area":{"acre":{"_name":"acre","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectare","one":"%1$s hectare","other":"%1$s hectare"},"square-centimeter":{"_name":"vierkante centimeter","one":"%1$s vierkante centimeter","other":"%1$s vierkante centimeter"},"square-foot":{"_name":"vierkante voet","one":"%1$s vierkante voet","other":"%1$s vierkante voet"},"square-inch":{"_name":"vierkante inch","one":"%1$s vierkante inch","other":"%1$s vierkante inch"},"square-kilometer":{"_name":"vierkante kilometer","one":"%1$s vierkante kilometer","other":"%1$s vierkante kilometer"},"square-meter":{"_name":"vierkante meter","one":"%1$s vierkante meter","other":"%1$s vierkante meter"},"square-mile":{"_name":"vierkante mijl","one":"%1$s vierkante mijl","other":"%1$s vierkante mijl"},"square-yard":{"_name":"vierkante yard","one":"%1$s vierkante yard","other":"%1$s vierkante yard"}},"consumption":{"liter-per-kilometer":{"_name":"liter per kilometer","one":"%1$s liter per kilometer","other":"%1$s liter per kilometer"},"mile-per-gallon":{"_name":"mijl per gallon","one":"%1$s mijl per gallon","other":"%1$s mijl per gallon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabyte","one":"%1$s gigabyte","other":"%1$s gigabyte"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobyte","one":"%1$s kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabyte","one":"%1$s megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"dagen","one":"%1$s dag","other":"%1$s dagen"},"hour":{"_name":"uur","one":"%1$s uur","other":"%1$s uur","_per":"%1$s per uur"},"microsecond":{"_name":"microseconde","one":"%1$s microseconde","other":"%1$s microseconden"},"millisecond":{"_name":"milliseconde","one":"%1$s milliseconde","other":"%1$s milliseconden"},"minute":{"_name":"minuten","one":"%1$s minuut","other":"%1$s minuten"},"month":{"_name":"maanden","one":"%1$s maand","other":"%1$s maanden"},"nanosecond":{"_name":"nanoseconde","one":"%1$s nanoseconde","other":"%1$s nanoseconden"},"second":{"_name":"seconden","one":"%1$s seconde","other":"%1$s seconden","_per":"%1$s per seconde"},"week":{"_name":"weken","one":"%1$s week","other":"%1$s weken"},"year":{"_name":"jaar","one":"%1$s jaar","other":"%1$s jaar"}},"electric":{"ampere":{"_name":"ampère","one":"%1$s ampère","other":"%1$s ampère"},"milliampere":{"_name":"milliampère","one":"%1$s milliampère","other":"%1$s milliampère"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"calorie","one":"%1$s calorie","other":"%1$s calorieën"},"foodcalorie":{"_name":"kilocalorie","one":"%1$s kilocalorie","other":"%1$s kilocalorieën"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"kilocalorie","one":"%1$s kilocalorie","other":"%1$s kilocalorieën"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoules"},"kilowatt-hour":{"_name":"kilowattuur","one":"%1$s kilowattuur","other":"%1$s kilowattuur"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomische eenheid","one":"%1$s astronomische eenheid","other":"%1$s astronomische eenheden"},"centimeter":{"_name":"centimeter","one":"%1$s centimeter","other":"%1$s centimeter"},"decimeter":{"_name":"decimeter","one":"%1$s decimeter","other":"%1$s decimeter"},"fathom":{"_name":"vadem","one":"%1$s vadem","other":"%1$s vadems"},"foot":{"_name":"voet","one":"%1$s voet","other":"%1$s voet"},"furlong":{"_name":"furlong","one":"%1$s furlong","other":"%1$s furlong"},"inch":{"_name":"inches","one":"%1$s inch","other":"%1$s inches"},"kilometer":{"_name":"kilometer","one":"%1$s kilometer","other":"%1$s kilometer"},"light-year":{"_name":"lichtjaar","one":"%1$s lichtjaar","other":"%1$s lichtjaar"},"meter":{"_name":"meter","one":"%1$s meter","other":"%1$s meter"},"micrometer":{"_name":"micrometer","one":"%1$s micrometer","other":"%1$s micrometer"},"mile":{"_name":"mijl","one":"%1$s mijl","other":"%1$s mijl"},"millimeter":{"_name":"millimeter","one":"%1$s millimeter","other":"%1$s millimeter"},"nanometer":{"_name":"nanometer","one":"%1$s nanometer","other":"%1$s nanometer"},"nautical-mile":{"_name":"zeemijl","one":"%1$s zeemijl","other":"%1$s zeemijl"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picometer","one":"%1$s picometer","other":"%1$s picometer"},"yard":{"_name":"yards","one":"%1$s yard","other":"%1$s yards"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karaat","one":"%1$s karaat","other":"%1$s karaat"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s gram"},"kilogram":{"_name":"kilogram","one":"%1$s kilogram","other":"%1$s kilogram"},"metric-ton":{"_name":"tonne","one":"%1$s tonne","other":"%1$s tonnes"},"microgram":{"_name":"microgram","one":"%1$s microgram","other":"%1$s microgram"},"milligram":{"_name":"milligram","one":"%1$s milligram","other":"%1$s milligram"},"ounce":{"_name":"ons","one":"%1$s ons","other":"%1$s ons"},"ounce-troy":{"_name":"troy ounce","one":"%1$s troy ounce","other":"%1$s troy ounce"},"pound":{"_name":"pond","one":"%1$s pond","other":"%1$s pond"},"stone":{"_name":"stone","one":"%1$s stone","other":"%1$s stone"},"ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"paardenkrachten","one":"%1$s paardenkracht","other":"%1$s paardenkrachten"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"hectopascal","one":"%1$s hectopascal","other":"%1$s hectopascal"},"inch-hg":{"_name":"inch-kwikdruk","one":"%1$s inch-kwikdruk","other":"%1$s inch-kwikdruk"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"millimeter-kwikdruk","one":"%1$s millimeter-kwikdruk","other":"%1$s millimeter-kwikdruk"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karaat","one":"%1$s karaat","other":"%1$s karaat"}},"speed":{"kilometer-per-hour":{"_name":"kilometer per uur","one":"%1$s kilometer per uur","other":"%1$s kilometer per uur"},"meter-per-second":{"_name":"meter per seconde","one":"%1$s meter per seconde","other":"%1$s meter per seconde"},"mile-per-hour":{"_name":"mijl per uur","one":"%1$s mijl per uur","other":"%1$s mijl per uur"}},"temperature":{"celsius":{"_name":"graden Celsius","one":"%1$s graad Celsius","other":"%1$s graden Celsius"},"fahrenheit":{"_name":"graden Fahrenheit","one":"%1$s graad Fahrenheit","other":"%1$s graden Fahrenheit"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"liter per vierkante meter","one":"%1$s liter per vierkante meter","other":"%1$s liter per vierkante meter"},"bushel":{"_name":"bushel","one":"%1$s bushel","other":"%1$s bushels"},"centiliter":{"_name":"centiliter","one":"%1$s centiliter","other":"%1$s centiliter"},"cubic-centimeter":{"_name":"kubieke centimeter","one":"%1$s kubieke centimeter","other":"%1$s kubieke centimeter"},"cubic-foot":{"_name":"kubieke voet","one":"%1$s kubieke voet","other":"%1$s kubieke voet"},"cubic-inch":{"_name":"kubieke inch","one":"%1$s kubieke inch","other":"%1$s kubieke inch"},"cubic-kilometer":{"_name":"kubieke kilometer","one":"%1$s kubieke kilometer","other":"%1$s kubieke kilometer"},"cubic-meter":{"_name":"kubieke meter","one":"%1$s kubieke meter","other":"%1$s kubieke meter"},"cubic-mile":{"_name":"kubieke mijl","one":"%1$s kubieke mijl","other":"%1$s kubieke mijl"},"cubic-yard":{"_name":"kubieke yard","one":"%1$s kubieke yard","other":"%1$s kubieke yard"},"cup":{"_name":"kopje","one":"%1$s kopje","other":"%1$s kopjes"},"deciliter":{"_name":"deciliter","one":"%1$s deciliter","other":"%1$s deciliter"},"fluid-ounce":{"_name":"fluid ounce","one":"%1$s fluid ounce","other":"%1$s fluid ounce"},"gallon":{"_name":"gallon","one":"%1$s gallon","other":"%1$s gallon"},"hectoliter":{"_name":"hectoliter","one":"%1$s hectoliter","other":"%1$s hectoliter"},"liter":{"_name":"liter","one":"%1$s liter","other":"%1$s liter"},"megaliter":{"_name":"megaliter","one":"%1$s megaliter","other":"%1$s megaliter"},"milliliter":{"_name":"milliliter","one":"%1$s milliliter","other":"%1$s milliliter"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quarts"},"tablespoon":{"_name":"eetlepel","one":"%1$s eetlepel","other":"%1$s eetlepels"},"teaspoon":{"_name":"theelepel","one":"%1$s theelepel","other":"%1$s theelepels"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acre","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dagen","one":"%1$s dag","other":"%1$s dagen"},"hour":{"_name":"uur","one":"%1$s uur","other":"%1$s uur","_per":"%1$s/uur"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mnd","one":"%1$s mnd","other":"%1$s mnd"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sec","one":"%1$s sec","other":"%1$s sec","_per":"%1$s sec"},"week":{"_name":"wk","one":"%1$s wk","other":"%1$s wkn"},"year":{"_name":"jr","one":"%1$s jr","other":"%1$s jr"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AE","one":"%1$s AE","other":"%1$s AE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lj","one":"%1$s lj","other":"%1$s lj"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"pk","one":"%1$s pk","other":"%1$s pk"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"CD","one":"%1$s CD","other":"%1$s CD"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"l/m²","one":"%1$s l/m²","other":"%1$s l/m²"},"bushel":{"_name":"bu","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acre","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"ha","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"u","one":"%1$s u","other":"%1$s u","_per":"%1$s/uur"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"m","one":"%1$s m","other":"%1$s m"},"month":{"_name":"m","one":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s sec"},"week":{"_name":"w","one":"%1$s w","other":"%1$s w"},"year":{"_name":"jr","one":"%1$s jr","other":"%1$s jr"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AE","one":"%1$s AE","other":"%1$s AE"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inches","one":"%1$s\"","other":"%1$s\""},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lj","one":"%1$s lj","other":"%1$s lj"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yards","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"pk","one":"%1$s pk","other":"%1$s pk"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mmHg","one":"%1$s mmHg","other":"%1$s mmHg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"CD","one":"%1$s K","other":"%1$s K"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°","one":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"l/m²","one":"%1$s l/m²","other":"%1$s l/m²"},"bushel":{"_name":"bu","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/parentLocales.json b/Punic/data/parentLocales.json new file mode 100644 index 0000000..12e1059 --- /dev/null +++ b/Punic/data/parentLocales.json @@ -0,0 +1 @@ +{"en-AG":"en-001","en-AI":"en-001","en-BB":"en-001","en-BM":"en-001","en-BS":"en-001","en-BW":"en-001","en-BZ":"en-001","en-CC":"en-001","en-CK":"en-001","en-CM":"en-001","en-CX":"en-001","en-DM":"en-001","en-ER":"en-001","en-FJ":"en-001","en-FM":"en-001","en-GB":"en-001","en-GD":"en-001","en-GH":"en-001","en-GM":"en-001","en-GY":"en-001","en-JM":"en-001","en-KE":"en-001","en-KI":"en-001","en-KN":"en-001","en-KY":"en-001","en-LC":"en-001","en-LR":"en-001","en-LS":"en-001","en-MG":"en-001","en-MS":"en-001","en-MU":"en-001","en-MW":"en-001","en-MY":"en-001","en-NA":"en-001","en-NF":"en-001","en-NG":"en-001","en-NR":"en-001","en-NU":"en-001","en-PG":"en-001","en-PH":"en-001","en-PN":"en-001","en-PW":"en-001","en-RW":"en-001","en-SB":"en-001","en-SC":"en-001","en-SD":"en-001","en-SL":"en-001","en-SS":"en-001","en-SX":"en-001","en-SZ":"en-001","en-TC":"en-001","en-TK":"en-001","en-TO":"en-001","en-TT":"en-001","en-TV":"en-001","en-TZ":"en-001","en-UG":"en-001","en-VC":"en-001","en-VU":"en-001","en-WS":"en-001","en-ZA":"en-001","en-ZM":"en-001","en-ZW":"en-001","en-150":"en-GB","en-AU":"en-GB","en-BE":"en-GB","en-DG":"en-GB","en-FK":"en-GB","en-GG":"en-GB","en-GI":"en-GB","en-HK":"en-GB","en-IE":"en-GB","en-IM":"en-GB","en-IN":"en-GB","en-IO":"en-GB","en-JE":"en-GB","en-MO":"en-GB","en-MT":"en-GB","en-NZ":"en-GB","en-PK":"en-GB","en-SG":"en-GB","en-SH":"en-GB","en-VG":"en-GB","es-AR":"es-419","es-BO":"es-419","es-CL":"es-419","es-CO":"es-419","es-CR":"es-419","es-CU":"es-419","es-DO":"es-419","es-EC":"es-419","es-GT":"es-419","es-HN":"es-419","es-MX":"es-419","es-NI":"es-419","es-PA":"es-419","es-PE":"es-419","es-PR":"es-419","es-PY":"es-419","es-SV":"es-419","es-US":"es-419","es-UY":"es-419","es-VE":"es-419","pt-AO":"pt-PT","pt-CV":"pt-PT","pt-GW":"pt-PT","pt-MO":"pt-PT","pt-MZ":"pt-PT","pt-ST":"pt-PT","pt-TL":"pt-PT","az-Cyrl":"root","bm-Nkoo":"root","bs-Cyrl":"root","en-Dsrt":"root","ha-Arab":"root","mn-Mong":"root","ms-Arab":"root","pa-Arab":"root","shi-Latn":"root","sr-Latn":"root","uz-Arab":"root","uz-Cyrl":"root","vai-Latn":"root","zh-Hant":"root","zh-Hant-MO":"zh-Hant-HK"} \ No newline at end of file diff --git a/Punic/data/pl/calendar.json b/Punic/data/pl/calendar.json new file mode 100644 index 0000000..384065f --- /dev/null +++ b/Punic/data/pl/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"sty","2":"lut","3":"mar","4":"kwi","5":"maj","6":"cze","7":"lip","8":"sie","9":"wrz","10":"paź","11":"lis","12":"gru"},"narrow":{"1":"s","2":"l","3":"m","4":"k","5":"m","6":"c","7":"l","8":"s","9":"w","10":"p","11":"l","12":"g"},"wide":{"1":"stycznia","2":"lutego","3":"marca","4":"kwietnia","5":"maja","6":"czerwca","7":"lipca","8":"sierpnia","9":"września","10":"października","11":"listopada","12":"grudnia"}},"stand-alone":{"abbreviated":{"1":"sty","2":"lut","3":"mar","4":"kwi","5":"maj","6":"cze","7":"lip","8":"sie","9":"wrz","10":"paź","11":"lis","12":"gru"},"narrow":{"1":"s","2":"l","3":"m","4":"k","5":"m","6":"c","7":"l","8":"s","9":"w","10":"p","11":"l","12":"g"},"wide":{"1":"styczeń","2":"luty","3":"marzec","4":"kwiecień","5":"maj","6":"czerwiec","7":"lipiec","8":"sierpień","9":"wrzesień","10":"październik","11":"listopad","12":"grudzień"}}},"days":{"format":{"abbreviated":{"sun":"niedz.","mon":"pon.","tue":"wt.","wed":"śr.","thu":"czw.","fri":"pt.","sat":"sob."},"narrow":{"sun":"N","mon":"P","tue":"W","wed":"Ś","thu":"C","fri":"P","sat":"S"},"short":{"sun":"niedz.","mon":"pon.","tue":"wt.","wed":"śr.","thu":"czw.","fri":"pt.","sat":"sob."},"wide":{"sun":"niedziela","mon":"poniedziałek","tue":"wtorek","wed":"środa","thu":"czwartek","fri":"piątek","sat":"sobota"}},"stand-alone":{"abbreviated":{"sun":"niedz.","mon":"pon.","tue":"wt.","wed":"śr.","thu":"czw.","fri":"pt.","sat":"sob."},"narrow":{"sun":"N","mon":"P","tue":"W","wed":"Ś","thu":"C","fri":"P","sat":"S"},"short":{"sun":"niedz.","mon":"pon.","tue":"wt.","wed":"śr.","thu":"czw.","fri":"pt.","sat":"sob."},"wide":{"sun":"niedziela","mon":"poniedziałek","tue":"wtorek","wed":"środa","thu":"czwartek","fri":"piątek","sat":"sobota"}}},"quarters":{"format":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"I kwartał","2":"II kwartał","3":"III kwartał","4":"IV kwartał"}},"stand-alone":{"abbreviated":{"1":"1 kw.","2":"2 kw.","3":"3 kw.","4":"4 kw."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"I kwartał","2":"II kwartał","3":"III kwartał","4":"IV kwartał"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"po południu","am":"AM","earlyMorning":"nad ranem","evening":"wieczorem","lateMorning":"przed południem","morning":"rano","night":"w nocy","noon":"w południe","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"afternoon":"po południu","am":"AM","earlyMorning":"nad ranem","evening":"wieczorem","lateMorning":"przed południem","morning":"rano","night":"w nocy","noon":"w południe","pm":"PM"}},"stand-alone":{"abbreviated":{"afternoon":"po południu","am":"AM","earlyMorning":"nad ranem","evening":"wieczorem","lateMorning":"przed południem","morning":"rano","night":"w nocy","noon":"w południe","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"afternoon":"po południu","am":"AM","earlyMorning":"nad ranem","evening":"wieczorem","lateMorning":"przed południem","morning":"rano","night":"w nocy","noon":"w południe","pm":"PM"}}},"eras":{"wide":{"0":"p.n.e.","0-alt-variant":"BCE","1":"n.e.","1-alt-variant":"CE"},"abbreviated":{"0":"p.n.e.","0-alt-variant":"BCE","1":"n.e.","1-alt-variant":"CE"},"narrow":{"0":"p.n.e.","0-alt-variant":"BCE","1":"n.e.","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd.MM.y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/pl/dateFields.json b/Punic/data/pl/dateFields.json new file mode 100644 index 0000000..d80fb55 --- /dev/null +++ b/Punic/data/pl/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"era"},"year":{"displayName":"rok","relative-type--1":"w zeszłym roku","relative-type-0":"w tym roku","relative-type-1":"w przyszłym roku","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} rok","relativeTimePattern-count-few":"za {0} lata","relativeTimePattern-count-many":"za {0} lat","relativeTimePattern-count-other":"za {0} roku"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} rok temu","relativeTimePattern-count-few":"{0} lata temu","relativeTimePattern-count-many":"{0} lat temu","relativeTimePattern-count-other":"{0} roku temu"}},"year-short":{"displayName":"r.","relative-type--1":"w zeszłym roku","relative-type-0":"w tym roku","relative-type-1":"w przyszłym roku","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} rok","relativeTimePattern-count-few":"za {0} lata","relativeTimePattern-count-many":"za {0} lat","relativeTimePattern-count-other":"za {0} roku"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} rok temu","relativeTimePattern-count-few":"{0} lata temu","relativeTimePattern-count-many":"{0} lat temu","relativeTimePattern-count-other":"{0} roku temu"}},"year-narrow":{"displayName":"r.","relative-type--1":"w zeszłym roku","relative-type-0":"w tym roku","relative-type-1":"w przyszłym roku","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} rok","relativeTimePattern-count-few":"za {0} lata","relativeTimePattern-count-many":"za {0} lat","relativeTimePattern-count-other":"za {0} roku"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} rok temu","relativeTimePattern-count-few":"{0} lata temu","relativeTimePattern-count-many":"{0} lat temu","relativeTimePattern-count-other":"{0} roku temu"}},"quarter":{"displayName":"kwartał","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} kwartał","relativeTimePattern-count-few":"za {0} kwartały","relativeTimePattern-count-many":"za {0} kwartałów","relativeTimePattern-count-other":"za {0} kwartału"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kwartał temu","relativeTimePattern-count-few":"{0} kwartały temu","relativeTimePattern-count-many":"{0} kwartałów temu","relativeTimePattern-count-other":"{0} kwartału temu"}},"quarter-short":{"displayName":"kw.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} kw.","relativeTimePattern-count-few":"za {0} kw.","relativeTimePattern-count-many":"za {0} kw.","relativeTimePattern-count-other":"za {0} kw."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} kw. temu","relativeTimePattern-count-few":"{0} kw. temu","relativeTimePattern-count-many":"{0} kw. temu","relativeTimePattern-count-other":"{0} kw. temu"}},"quarter-narrow":{"displayName":"kw.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} kw.","relativeTimePattern-count-few":"+{0} kw.","relativeTimePattern-count-many":"+{0} kw.","relativeTimePattern-count-other":"+{0} kw."},"relativeTime-type-past":{"relativeTimePattern-count-one":"–{0} kw.","relativeTimePattern-count-few":"–{0} kw.","relativeTimePattern-count-many":"–{0} kw.","relativeTimePattern-count-other":"–{0} kw."}},"month":{"displayName":"miesiąc","relative-type--1":"w zeszłym miesiącu","relative-type-0":"w tym miesiącu","relative-type-1":"w przyszłym miesiącu","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} miesiąc","relativeTimePattern-count-few":"za {0} miesiące","relativeTimePattern-count-many":"za {0} miesięcy","relativeTimePattern-count-other":"za {0} miesiąca"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} miesiąc temu","relativeTimePattern-count-few":"{0} miesiące temu","relativeTimePattern-count-many":"{0} miesięcy temu","relativeTimePattern-count-other":"{0} miesiąca temu"}},"month-short":{"displayName":"mies.","relative-type--1":"w zeszłym miesiącu","relative-type-0":"w tym miesiącu","relative-type-1":"w przyszłym miesiącu","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} mies.","relativeTimePattern-count-few":"za {0} mies.","relativeTimePattern-count-many":"za {0} mies.","relativeTimePattern-count-other":"za {0} mies."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mies. temu","relativeTimePattern-count-few":"{0} mies. temu","relativeTimePattern-count-many":"{0} mies. temu","relativeTimePattern-count-other":"{0} mies. temu"}},"month-narrow":{"displayName":"mc","relative-type--1":"w zeszłym miesiącu","relative-type-0":"w tym miesiącu","relative-type-1":"w przyszłym miesiącu","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mies.","relativeTimePattern-count-few":"+{0} mies.","relativeTimePattern-count-many":"+{0} mies.","relativeTimePattern-count-other":"+{0} mies."},"relativeTime-type-past":{"relativeTimePattern-count-one":"–{0} mies.","relativeTimePattern-count-few":"–{0} mies.","relativeTimePattern-count-many":"–{0} mies.","relativeTimePattern-count-other":"–{0} mies."}},"week":{"displayName":"tydzień","relative-type--1":"w zeszłym tygodniu","relative-type-0":"w tym tygodniu","relative-type-1":"w przyszłym tygodniu","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} tydzień","relativeTimePattern-count-few":"za {0} tygodnie","relativeTimePattern-count-many":"za {0} tygodni","relativeTimePattern-count-other":"za {0} tygodnia"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} tydzień temu","relativeTimePattern-count-few":"{0} tygodnie temu","relativeTimePattern-count-many":"{0} tygodni temu","relativeTimePattern-count-other":"{0} tygodnia temu"}},"week-short":{"displayName":"tydz.","relative-type--1":"w zeszłym tygodniu","relative-type-0":"w tym tygodniu","relative-type-1":"w przyszłym tygodniu","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} tydz.","relativeTimePattern-count-few":"za {0} tyg.","relativeTimePattern-count-many":"za {0} tyg.","relativeTimePattern-count-other":"za {0} tyg."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} tydz. temu","relativeTimePattern-count-few":"{0} tyg. temu","relativeTimePattern-count-many":"{0} tyg. temu","relativeTimePattern-count-other":"{0} tyg. temu"}},"week-narrow":{"displayName":"tydz.","relative-type--1":"w zeszłym tygodniu","relative-type-0":"w tym tygodniu","relative-type-1":"w przyszłym tygodniu","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} tydz.","relativeTimePattern-count-few":"za {0} tyg.","relativeTimePattern-count-many":"za {0} tyg.","relativeTimePattern-count-other":"za {0} tyg."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} tydz. temu","relativeTimePattern-count-few":"{0} tyg. temu","relativeTimePattern-count-many":"{0} tyg. temu","relativeTimePattern-count-other":"{0} tyg. temu"}},"day":{"displayName":"dzień","relative-type--1":"wczoraj","relative-type--2":"przedwczoraj","relative-type-0":"dzisiaj","relative-type-1":"jutro","relative-type-2":"pojutrze","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} dzień","relativeTimePattern-count-few":"za {0} dni","relativeTimePattern-count-many":"za {0} dni","relativeTimePattern-count-other":"za {0} dnia"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dzień temu","relativeTimePattern-count-few":"{0} dni temu","relativeTimePattern-count-many":"{0} dni temu","relativeTimePattern-count-other":"{0} dnia temu"}},"day-short":{"displayName":"dzień","relative-type--1":"wczoraj","relative-type--2":"przedwczoraj","relative-type-0":"dzisiaj","relative-type-1":"jutro","relative-type-2":"pojutrze","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} dzień","relativeTimePattern-count-few":"za {0} dni","relativeTimePattern-count-many":"za {0} dni","relativeTimePattern-count-other":"za {0} dnia"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dzień temu","relativeTimePattern-count-few":"{0} dni temu","relativeTimePattern-count-many":"{0} dni temu","relativeTimePattern-count-other":"{0} dnia temu"}},"day-narrow":{"displayName":"dzień","relative-type--1":"wczoraj","relative-type--2":"przedwczoraj","relative-type-0":"dzisiaj","relative-type-1":"jutro","relative-type-2":"pojutrze","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} dzień","relativeTimePattern-count-few":"za {0} dni","relativeTimePattern-count-many":"za {0} dni","relativeTimePattern-count-other":"za {0} dnia"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dzień temu","relativeTimePattern-count-few":"{0} dni temu","relativeTimePattern-count-many":"{0} dni temu","relativeTimePattern-count-other":"{0} dnia temu"}},"weekday":{"displayName":"dzień tygodnia"},"sun":{"relative-type--1":"w zeszłą niedzielę","relative-type-0":"w tę niedzielę","relative-type-1":"w przyszłą niedzielę"},"sun-short":{"relative-type--1":"w zeszłą niedzielę","relative-type-0":"w tę niedzielę","relative-type-1":"w przyszłą niedzielę"},"sun-narrow":{"relative-type--1":"w zeszłą niedzielę","relative-type-0":"w tę niedzielę","relative-type-1":"w przyszłą niedzielę"},"mon":{"relative-type--1":"w zeszły poniedziałek","relative-type-0":"w ten poniedziałek","relative-type-1":"w przyszły poniedziałek"},"mon-short":{"relative-type--1":"w zeszły poniedziałek","relative-type-0":"w ten poniedziałek","relative-type-1":"w przyszły poniedziałek"},"mon-narrow":{"relative-type--1":"w zeszły poniedziałek","relative-type-0":"w ten poniedziałek","relative-type-1":"w przyszły poniedziałek"},"tue":{"relative-type--1":"w zeszły wtorek","relative-type-0":"w ten wtorek","relative-type-1":"w przyszły wtorek"},"tue-short":{"relative-type--1":"w zeszły wtorek","relative-type-0":"w ten wtorek","relative-type-1":"w przyszły wtorek"},"tue-narrow":{"relative-type--1":"w zeszły wtorek","relative-type-0":"w ten wtorek","relative-type-1":"w przyszły wtorek"},"wed":{"relative-type--1":"w zeszłą środę","relative-type-0":"w tę środę","relative-type-1":"w przyszłą środę"},"wed-short":{"relative-type--1":"w zeszłą środę","relative-type-0":"w tę środę","relative-type-1":"w przyszłą środę"},"wed-narrow":{"relative-type--1":"w zeszłą środę","relative-type-0":"w tę środę","relative-type-1":"w przyszłą środę"},"thu":{"relative-type--1":"w zeszły czwartek","relative-type-0":"w ten czwartek","relative-type-1":"w przyszły czwartek"},"thu-short":{"relative-type--1":"w zeszły czwartek","relative-type-0":"w ten czwartek","relative-type-1":"w przyszły czwartek"},"thu-narrow":{"relative-type--1":"w zeszły czwartek","relative-type-0":"w ten czwartek","relative-type-1":"w przyszły czwartek"},"fri":{"relative-type--1":"w zeszły piątek","relative-type-0":"w ten piątek","relative-type-1":"w przyszły piątek"},"fri-short":{"relative-type--1":"w zeszły piątek","relative-type-0":"w ten piątek","relative-type-1":"w przyszły piątek"},"fri-narrow":{"relative-type--1":"w zeszły piątek","relative-type-0":"w ten piątek","relative-type-1":"w przyszły piątek"},"sat":{"relative-type--1":"w zeszłą sobotę","relative-type-0":"w tę sobotę","relative-type-1":"w przyszłą sobotę"},"sat-short":{"relative-type--1":"w zeszłą sobotę","relative-type-0":"w tę sobotę","relative-type-1":"w przyszłą sobotę"},"sat-narrow":{"relative-type--1":"w zeszłą sobotę","relative-type-0":"w tę sobotę","relative-type-1":"w przyszłą sobotę"},"dayperiod":{"displayName":"rano / po południu / wieczorem"},"hour":{"displayName":"godzina","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} godzinę","relativeTimePattern-count-few":"za {0} godziny","relativeTimePattern-count-many":"za {0} godzin","relativeTimePattern-count-other":"za {0} godziny"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} godzinę temu","relativeTimePattern-count-few":"{0} godziny temu","relativeTimePattern-count-many":"{0} godzin temu","relativeTimePattern-count-other":"{0} godziny temu"}},"hour-short":{"displayName":"godz.","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} godz.","relativeTimePattern-count-few":"za {0} godz.","relativeTimePattern-count-many":"za {0} godz.","relativeTimePattern-count-other":"za {0} godz."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} godz. temu","relativeTimePattern-count-few":"{0} godz. temu","relativeTimePattern-count-many":"{0} godz. temu","relativeTimePattern-count-other":"{0} godz. temu"}},"hour-narrow":{"displayName":"g.","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} g.","relativeTimePattern-count-few":"za {0} g.","relativeTimePattern-count-many":"za {0} g.","relativeTimePattern-count-other":"za {0} g."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} g. temu","relativeTimePattern-count-few":"{0} g. temu","relativeTimePattern-count-many":"{0} g. temu","relativeTimePattern-count-other":"{0} g. temu"}},"minute":{"displayName":"minuta","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} minutę","relativeTimePattern-count-few":"za {0} minuty","relativeTimePattern-count-many":"za {0} minut","relativeTimePattern-count-other":"za {0} minuty"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minutę temu","relativeTimePattern-count-few":"{0} minuty temu","relativeTimePattern-count-many":"{0} minut temu","relativeTimePattern-count-other":"{0} minuty temu"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} min","relativeTimePattern-count-few":"za {0} min","relativeTimePattern-count-many":"za {0} min","relativeTimePattern-count-other":"za {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min temu","relativeTimePattern-count-few":"{0} min temu","relativeTimePattern-count-many":"{0} min temu","relativeTimePattern-count-other":"{0} min temu"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} min","relativeTimePattern-count-few":"za {0} min","relativeTimePattern-count-many":"za {0} min","relativeTimePattern-count-other":"za {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min temu","relativeTimePattern-count-few":"{0} min temu","relativeTimePattern-count-many":"{0} min temu","relativeTimePattern-count-other":"{0} min temu"}},"second":{"displayName":"sekunda","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} sekundę","relativeTimePattern-count-few":"za {0} sekundy","relativeTimePattern-count-many":"za {0} sekund","relativeTimePattern-count-other":"za {0} sekundy"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sekundę temu","relativeTimePattern-count-few":"{0} sekundy temu","relativeTimePattern-count-many":"{0} sekund temu","relativeTimePattern-count-other":"{0} sekundy temu"}},"second-short":{"displayName":"sek.","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} sek.","relativeTimePattern-count-few":"za {0} sek.","relativeTimePattern-count-many":"za {0} sek.","relativeTimePattern-count-other":"za {0} sek."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sek. temu","relativeTimePattern-count-few":"{0} sek. temu","relativeTimePattern-count-many":"{0} sek. temu","relativeTimePattern-count-other":"{0} sek. temu"}},"second-narrow":{"displayName":"s","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"za {0} s","relativeTimePattern-count-few":"za {0} s","relativeTimePattern-count-many":"za {0} s","relativeTimePattern-count-other":"za {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} s temu","relativeTimePattern-count-few":"{0} s temu","relativeTimePattern-count-many":"{0} s temu","relativeTimePattern-count-other":"{0} s temu"}},"zone":{"displayName":"strefa czasowa"}} \ No newline at end of file diff --git a/Punic/data/pl/languages.json b/Punic/data/pl/languages.json new file mode 100644 index 0000000..d78619e --- /dev/null +++ b/Punic/data/pl/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abchaski","ace":"aceh","ach":"aczoli","ada":"adangme","ady":"adygejski","ae":"awestyjski","aeb":"tunezyjski arabski","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ajnu","ak":"akan","akk":"akadyjski","akz":"alabama","ale":"aleucki","aln":"albański gegijski","alt":"południowoałtajski","am":"amharski","an":"aragoński","ang":"staroangielski","anp":"angika","ar":"arabski","ar-001":"współczesny arabski","arc":"aramejski","arn":"araukański","aro":"araona","arp":"arapaho","arq":"algierski arabski","arw":"arawak","ary":"marokański arabski","arz":"egipski arabski","as":"asamski","asa":"asu","ase":"amerykański język migowy","ast":"asturyjski","av":"awarski","avk":"kotava","awa":"awadhi","ay":"ajmara","az":"azerski","az-alt-short":"azerski","azb":"południowoazerski","ba":"baszkirski","bal":"beludżi","ban":"balijski","bar":"bawarski","bas":"basa","bax":"bamum","bbc":"batak toba","bbj":"ghomala","be":"białoruski","bej":"bedża","bem":"bemba","bew":"betawi","bez":"bena","bfd":"bafut","bfq":"badaga","bg":"bułgarski","bho":"bhodźpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"banjar","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengalski","bo":"tybetański","bpy":"bisznuprija-manipuri","bqi":"bachtiarski","br":"bretoński","bra":"bradź","brh":"brahui","brx":"bodo","bs":"bośniacki","bss":"akose","bua":"buriacki","bug":"bugiński","bum":"bulu","byn":"blin","byv":"medumba","ca":"kataloński","cad":"kaddo","car":"karibi","cay":"kajuga","cch":"atsam","ce":"czeczeński","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"czibcza","chg":"czagatajski","chk":"truk","chm":"maryjski","chn":"żargon Chinook","cho":"choctaw","chp":"chipewyan","chr":"czirokeski","chy":"język Czejenów","ckb":"sorani","co":"korsykański","cop":"koptyjski","cps":"capiznon","cr":"kri","crh":"krymski turecki","cs":"czeski","csb":"kaszubski","cu":"staro-cerkiewno-słowiański","cv":"czuwaski","cy":"walijski","da":"duński","dak":"dakota","dar":"dargwijski","dav":"taita","de":"niemiecki","de-AT":"austriacki niemiecki","de-CH":"wysokoniemiecki (Szwajcaria)","del":"delaware","den":"slave","dgr":"dogrib","din":"dinka","dje":"dżerma","doi":"dogri","dsb":"dolnołużycki","dtp":"dusun centralny","dua":"duala","dum":"średniowieczny niderlandzki","dv":"malediwski","dyo":"diola","dyu":"dyula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"emilijski","egy":"starożytny egipski","eka":"ekajuk","el":"grecki","elx":"elamicki","en":"angielski","en-AU":"australijski angielski","en-CA":"kanadyjski angielski","en-GB":"brytyjski angielski","en-GB-alt-short":"angielski (GB)","en-US":"amerykański angielski","en-US-alt-short":"angielski (USA)","enm":"średnioangielski","eo":"esperanto","es":"hiszpański","es-419":"amerykański hiszpański","es-ES":"europejski hiszpański","es-MX":"meksykański hiszpański","esu":"yupik środkowosyberyjski","et":"estoński","eu":"baskijski","ewo":"ewondo","ext":"estremadurski","fa":"perski","fan":"fang","fat":"fanti","ff":"fulani","fi":"fiński","fil":"filipino","fit":"meänkieli","fj":"fidżijski","fo":"farerski","fon":"fon","fr":"francuski","fr-CA":"kanadyjski francuski","fr-CH":"szwajcarski francuski","frc":"cajun","frm":"średniofrancuski","fro":"starofrancuski","frp":"franko-prowansalski","frr":"północnofryzyjski","frs":"fryzyjski wschodni","fur":"friulijski","fy":"zachodniofryzyjski","ga":"irlandzki","gaa":"ga","gag":"gagauski","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"zaratusztriański dari","gd":"szkocki gaelicki","gez":"gyyz","gil":"gilbertański","gl":"galicyjski","glk":"giliański","gmh":"średnio-wysoko-niemiecki","gn":"guarani","goh":"staro-wysoko-niemiecki","gom":"konkani (Goa)","gon":"gondi","gor":"gorontalo","got":"gocki","grb":"grebo","grc":"starogrecki","gsw":"szwajcarski niemiecki","gu":"gudźaracki","guc":"wayúu","gur":"frafra","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"hausa","hai":"haida","hak":"hakka","haw":"hawajski","he":"hebrajski","hi":"hindi","hif":"hindi fidżyjskie","hil":"hiligajnon","hit":"hetycki","hmn":"hmongijski","ho":"hiri motu","hr":"chorwacki","hsb":"górnołużycki","hsn":"xiang","ht":"haitański","hu":"węgierski","hup":"hupa","hy":"ormiański","hz":"herero","ia":"interlingua","iba":"ibanag","ibb":"ibibio","id":"indonezyjski","ie":"interlingue","ig":"igbo","ii":"syczuański","ik":"inupiak","ilo":"ilokano","inh":"inguski","io":"ido","is":"islandzki","it":"włoski","iu":"inuktitut","izh":"ingryjski","ja":"japoński","jam":"jamajski","jbo":"lojban","jgo":"ngombe","jmc":"machame","jpr":"judeoperski","jrb":"judeoarabski","jut":"jutlandzki","jv":"jawajski","ka":"gruziński","kaa":"karakałpacki","kab":"kabylski","kac":"kaczin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardyjski","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kreolski Wysp Zielonego Przylądka","ken":"kenyang","kfo":"koro","kg":"kongo","kgp":"kaingang","kha":"khasi","kho":"chotański","khq":"koyra chini","khw":"khowar","ki":"kikuju","kiu":"kirmandżki","kj":"kwanyama","kk":"kazachski","kkj":"kako","kl":"grenlandzki","kln":"kalenjin","km":"khmerski","kmb":"kimbundu","kn":"kannada","ko":"koreański","koi":"komi-permiacki","kok":"konkani","kos":"kosrae","kpe":"kpelle","kr":"kanuri","krc":"karaczajsko-bałkarski","kri":"krio","krj":"kinaraya","krl":"karelski","kru":"kurukh","ks":"kaszmirski","ksb":"sambala","ksf":"bafia","ksh":"gwara kolońska","ku":"kurdyjski","kum":"kumycki","kut":"kutenai","kv":"komi","kw":"kornijski","ky":"kirgiski","la":"łaciński","lad":"ladyński","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luksemburski","lez":"lezgijski","lfn":"Lingua Franca Nova","lg":"ganda","li":"limburgijski","lij":"liguryjski","liv":"liwski","lkt":"lakota","lmo":"lombardzki","ln":"lingala","lo":"laotański","lol":"mongo","loz":"lozi","lt":"litewski","ltg":"łatgalski","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luhya","lv":"łotewski","lzh":"chiński klasyczny","lzz":"lazyjski","mad":"madurajski","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masajski","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"kreolski Mauritiusa","mg":"malgaski","mga":"średnioirlandzki","mgh":"makua","mgo":"meta","mh":"marshall","mi":"maoryjski","mic":"micmac","min":"minangkabu","mk":"macedoński","ml":"malajalam","mn":"mongolski","mnc":"manchu","mni":"manipuryjski","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"zachodniomaryjski","ms":"malajski","mt":"maltański","mua":"mundang","mul":"wiele języków","mus":"creek","mwl":"mirandese","mwr":"marwari","mwv":"mentawai","my":"birmański","mye":"myene","myv":"erzya","mzn":"mazanderański","na":"nauru","nan":"minnański","nap":"neapolitański","naq":"nama","nb":"norweski (bokmål)","nd":"ndebele północny","nds":"dolnosaksoński","ne":"nepalski","new":"newarski","ng":"ndonga","nia":"nias","niu":"niue","njo":"ao","nl":"niderlandzki","nl-BE":"flamandzki (Belgia)","nmg":"ngumba","nn":"norweski (nynorsk)","nnh":"ngiemboon","no":"norweski","nog":"nogajski","non":"staronordyjski","nov":"novial","nqo":"n’ko","nr":"ndebele południowy","nso":"sotho północny","nus":"nuer","nv":"nawaho","nwc":"newarski klasyczny","ny":"njandża","nym":"niamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzema","oc":"prowansalski","oj":"odżibwa","om":"oromski","or":"orija","os":"osetyjski","osa":"osage","ota":"osmańsko-turecki","pa":"pendżabski","pag":"pangasino","pal":"pahlavi","pam":"pampango","pap":"papiamento","pau":"palau","pcd":"pikardyjski","pdc":"pensylwański","pdt":"plautdietsch","peo":"staroperski","pfl":"palatynacki","phn":"fenicki","pi":"palijski","pl":"polski","pms":"piemoncki","pnt":"pontyjski","pon":"ponpejski","prg":"pruski","pro":"staroprowansalski","ps":"paszto","ps-alt-variant":"pasztuński","pt":"portugalski","pt-BR":"brazylijski portugalski","pt-PT":"europejski portugalski","qu":"keczua","quc":"kicze","qug":"chimborazo górski keczua","raj":"radźasthani","rap":"rapanui","rar":"rarotonga","rgn":"romagnol","rif":"tarifit","rm":"retoromański","rn":"rundi","ro":"rumuński","ro-MD":"mołdawski","rof":"rombo","rom":"cygański","root":"język rdzenny","rtm":"rotumański","ru":"rosyjski","rue":"rusiński","rug":"roviana","rup":"arumuński","rw":"kinya-ruanda","rwk":"rwa","sa":"sanskryt","sad":"sandawe","sah":"jakucki","sam":"samarytański aramejski","saq":"samburu","sas":"sasak","sat":"santali","saz":"saurasztryjski","sba":"ngambay","sbp":"sangu","sc":"sardyński","scn":"sycylijski","sco":"szkocki","sd":"sindhi","sdc":"sassarski","se":"lapoński północny","see":"seneka","seh":"sena","sei":"seri","sel":"selkupski","ses":"koyraboro senni","sg":"sango","sga":"staroirlandzki","sgs":"żmudzki","sh":"serbsko-chorwacki","shi":"tashelhiyt","shn":"shan","shu":"arabski (Czad)","si":"syngaleski","sid":"sidamo","sk":"słowacki","sl":"słoweński","sli":"dolnośląski","sly":"selayar","sm":"samoański","sma":"lapoński południowy","smj":"lapoński Lule","smn":"lapoński Inari","sms":"lapoński Skolt","sn":"szona","snk":"soninke","so":"somalijski","sog":"sogdyjski","sq":"albański","sr":"serbski","srn":"sranan tongo","srr":"serer","ss":"siswati","ssy":"saho","st":"sotho południowy","stq":"fryzyjski saterlandzki","su":"sundajski","suk":"sukuma","sus":"susu","sux":"sumeryjski","sv":"szwedzki","sw":"suahili","swb":"komoryjski","swc":"kongijski suahili","syc":"syriacki","syr":"syryjski","szl":"śląski","ta":"tamilski","tcy":"tulu","te":"telugu","tem":"temne","teo":"ateso","ter":"tereno","tet":"tetum","tg":"tadżycki","th":"tajski","ti":"tigrinia","tig":"tigre","tiv":"tiw","tk":"turkmeński","tkl":"tokelau","tkr":"cachurski","tl":"tagalski","tlh":"klingoński","tli":"tlingit","tly":"tałyski","tmh":"tamaszek","tn":"setswana","to":"tonga","tog":"tonga (Niasa)","tpi":"tok pisin","tr":"turecki","tru":"turoyo","trv":"taroko","ts":"tsonga","tsd":"cakoński","tsi":"tsimshian","tt":"tatarski","ttt":"tacki","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahitański","tyv":"tuwiński","tzm":"centralnomarokański tamazight","udm":"udmurcki","ug":"ujgurski","uga":"ugarycki","uk":"ukraiński","umb":"umbundu","und":"nieznany język","ur":"urdu","uz":"uzbecki","vai":"wai","ve":"venda","vec":"wenecki","vep":"wepski","vi":"wietnamski","vls":"zachodnioflamandzki","vmf":"meński frankoński","vo":"volapuk","vot":"wotiacki","vro":"võro","vun":"vunjo","wa":"waloński","wae":"walser","wal":"walamo","war":"waraj","was":"washo","wo":"wolof","wuu":"wu","xal":"kałmucki","xh":"khosa","xmf":"megrelski","xog":"soga","yao":"yao","yap":"japski","yav":"yangben","ybb":"yemba","yi":"jidysz","yo":"joruba","yrl":"nhengatu","yue":"kantoński","za":"czuang","zap":"zapotecki","zbl":"bliss","zea":"zelandzki","zen":"zenaga","zgh":"zgh","zh":"chiński","zh-Hans":"chiński (uproszczony)","zh-Hant":"chiński (tradycyjny)","zu":"zulu","zun":"zuni","zxx":"brak treści o charakterze językowym","zza":"zazaki"} \ No newline at end of file diff --git a/Punic/data/pl/listPatterns.json b/Punic/data/pl/listPatterns.json new file mode 100644 index 0000000..b858af5 --- /dev/null +++ b/Punic/data/pl/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s i %2$s","2":"%1$s i %2$s"}} \ No newline at end of file diff --git a/Punic/data/pl/localeDisplayNames.json b/Punic/data/pl/localeDisplayNames.json new file mode 100644 index 0000000..28a0451 --- /dev/null +++ b/Punic/data/pl/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalendarz","colAlternate":"Sortowanie ignorujące symbole","colBackwards":"Odwrotne sortowanie ze znakami akcentowanymi","colCaseFirst":"Porządek wielkie/małe litery","colCaseLevel":"Sortowanie uwzględniające wielkość liter","colHiraganaQuaternary":"Sortowanie Kana","colNormalization":"Sortowanie znormalizowane","colNumeric":"Sortowanie numeryczne","colStrength":"Siła sortowania","collation":"Porządek sortowania","currency":"waluta","numbers":"cyfry","timezone":"Strefa czasowa","va":"Wariant regionalny","variableTop":"Sortuj jak symbole","x":"Do prywatnego użytku"},"types":{"numbers":{"vaii":"Cyfry vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"kalendarz Republiki Chińskiej"},"colStrength":{"tertiary":"Sortowanie znaków akcentowanych/wielkości liter/szerokości"},"colCaseFirst":{"upper":"Sortowanie od wielkich liter"},"colBackwards":{"yes":"Sortowanie znaków akcentowanych w odwróconej kolejności"},"colCaseLevel":{"yes":"Sortowanie z rozróżnianiem wielkości liter"},"colHiraganaQuaternary":{"yes":"Inne sortowanie kana"},"colNormalization":{"yes":"Sortowanie z normalizacją unicode"},"colNumeric":{"yes":"Numeryczne sortowanie cyfr"},"colAlternate":{"shifted":"Sortowanie ignorujące symbole"}},"codePatterns":{"language":"Język: %1$s","script":"Pismo: %1$s","territory":"Region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/pl/numbers.json b/Punic/data/pl/numbers.json new file mode 100644 index 0000000..fdc7081 --- /dev/null +++ b/Punic/data/pl/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":2,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/pl/territories.json b/Punic/data/pl/territories.json new file mode 100644 index 0000000..4cd70bb --- /dev/null +++ b/Punic/data/pl/territories.json @@ -0,0 +1 @@ +{"001":"świat","002":"Afryka","003":"Ameryka Północna","005":"Ameryka Południowa","009":"Oceania","011":"Afryka Zachodnia","013":"Ameryka Środkowa","014":"Afryka Wschodnia","015":"Afryka Północna","017":"Afryka Środkowa","018":"Afryka Południowa","019":"Ameryka","021":"Ameryka Północna (USA, Kanada)","029":"Karaiby","030":"Azja Wschodnia","034":"Azja Południowa","035":"Azja Południowo-Wschodnia","039":"Europa Południowa","053":"Australazja","054":"Melanezja","057":"Region Mikronezji","061":"Polinezja","142":"Azja","143":"Azja Środkowa","145":"Azja Zachodnia","150":"Europa","151":"Europa Wschodnia","154":"Europa Północna","155":"Europa Zachodnia","419":"Ameryka Łacińska","AC":"Wyspa Wniebowstąpienia","AD":"Andora","AE":"Zjednoczone Emiraty Arabskie","AF":"Afganistan","AG":"Antigua i Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Antyle Holenderskie","AO":"Angola","AQ":"Antarktyka","AR":"Argentyna","AS":"Samoa Amerykańskie","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Wyspy Alandzkie","AZ":"Azerbejdżan","BA":"Bośnia i Hercegowina","BB":"Barbados","BD":"Bangladesz","BE":"Belgia","BF":"Burkina Faso","BG":"Bułgaria","BH":"Bahrajn","BI":"Burundi","BJ":"Benin","BL":"Saint-Barthélemy","BM":"Bermudy","BN":"Brunei Darussalam","BO":"Boliwia","BQ":"Niderlandy Karaibskie","BR":"Brazylia","BS":"Bahamy","BT":"Bhutan","BV":"Wyspa Bouveta","BW":"Botswana","BY":"Białoruś","BZ":"Belize","CA":"Kanada","CC":"Wyspy Kokosowe","CD":"Demokratyczna Republika Konga","CD-alt-variant":"CD","CF":"Republika Środkowoafrykańska","CG":"Kongo","CG-alt-variant":"Republika Konga","CH":"Szwajcaria","CI":"Côte d’Ivoire","CI-alt-variant":"Wybrzeże Kości Słoniowej","CK":"Wyspy Cooka","CL":"Chile","CM":"Kamerun","CN":"Chiny","CO":"Kolumbia","CP":"Clipperton","CR":"Kostaryka","CU":"Kuba","CV":"Republika Zielonego Przylądka","CW":"Curaçao","CX":"Wyspa Bożego Narodzenia","CY":"Cypr","CZ":"Czechy","DE":"Niemcy","DG":"Diego Garcia","DJ":"Dżibuti","DK":"Dania","DM":"Dominika","DO":"Dominikana","DZ":"Algieria","EA":"Ceuta i Melilla","EC":"Ekwador","EE":"Estonia","EG":"Egipt","EH":"Sahara Zachodnia","ER":"Erytrea","ES":"Hiszpania","ET":"Etiopia","EU":"Unia Europejska","FI":"Finlandia","FJ":"Fidżi","FK":"Falklandy","FK-alt-variant":"Falklandy (Malwiny)","FM":"Mikronezja","FO":"Wyspy Owcze","FR":"Francja","GA":"Gabon","GB":"Wielka Brytania","GB-alt-short":"GB","GD":"Grenada","GE":"Gruzja","GF":"Gujana Francuska","GG":"Wyspa Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grenlandia","GM":"Gambia","GN":"Gwinea","GP":"Gwadelupa","GQ":"Gwinea Równikowa","GR":"Grecja","GS":"Georgia Południowa i Sandwich Południowy","GT":"Gwatemala","GU":"Guam","GW":"Gwinea Bissau","GY":"Gujana","HK":"SRA Hongkong (Chiny)","HK-alt-short":"Hongkong","HM":"Wyspy Heard i McDonalda","HN":"Honduras","HR":"Chorwacja","HT":"Haiti","HU":"Węgry","IC":"Wyspy Kanaryjskie","ID":"Indonezja","IE":"Irlandia","IL":"Izrael","IM":"Wyspa Man","IN":"Indie","IO":"Brytyjskie Terytorium Oceanu Indyjskiego","IQ":"Irak","IR":"Iran","IS":"Islandia","IT":"Włochy","JE":"Wyspa Jersey","JM":"Jamajka","JO":"Jordania","JP":"Japonia","KE":"Kenia","KG":"Kirgistan","KH":"Kambodża","KI":"Kiribati","KM":"Komory","KN":"Saint Kitts i Nevis","KP":"Korea Północna","KR":"Korea Południowa","KW":"Kuwejt","KY":"Kajmany","KZ":"Kazachstan","LA":"Laos","LB":"Liban","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litwa","LU":"Luksemburg","LV":"Łotwa","LY":"Libia","MA":"Maroko","MC":"Monako","MD":"Mołdawia","ME":"Czarnogóra","MF":"Saint-Martin","MG":"Madagaskar","MH":"Wyspy Marshalla","MK":"Macedonia","MK-alt-variant":"MK","ML":"Mali","MM":"Mjanma (Birma)","MN":"Mongolia","MO":"SRA Makau (Chiny)","MO-alt-short":"Makau","MP":"Mariany Północne","MQ":"Martynika","MR":"Mauretania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Malediwy","MW":"Malawi","MX":"Meksyk","MY":"Malezja","MZ":"Mozambik","NA":"Namibia","NC":"Nowa Kaledonia","NE":"Niger","NF":"Norfolk","NG":"Nigeria","NI":"Nikaragua","NL":"Holandia","NO":"Norwegia","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nowa Zelandia","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Polinezja Francuska","PG":"Papua-Nowa Gwinea","PH":"Filipiny","PK":"Pakistan","PL":"Polska","PM":"Saint-Pierre i Miquelon","PN":"Pitcairn","PR":"Portoryko","PS":"Terytoria Palestyńskie","PS-alt-short":"Palestyna","PT":"Portugalia","PW":"Palau","PY":"Paragwaj","QA":"Katar","QO":"Oceania inne","RE":"Reunion","RO":"Rumunia","RS":"Serbia","RU":"Rosja","RW":"Rwanda","SA":"Arabia Saudyjska","SB":"Wyspy Salomona","SC":"Seszele","SD":"Sudan","SE":"Szwecja","SG":"Singapur","SH":"Wyspa Świętej Heleny","SI":"Słowenia","SJ":"Svalbard i Jan Mayen","SK":"Słowacja","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sudan Południowy","ST":"Wyspy Świętego Tomasza i Książęca","SV":"Salwador","SX":"Sint Maarten","SY":"Syria","SZ":"Suazi","TA":"Tristan da Cunha","TC":"Turks i Caicos","TD":"Czad","TF":"Francuskie Terytoria Południowe","TG":"Togo","TH":"Tajlandia","TJ":"Tadżykistan","TK":"Tokelau","TL":"Timor Wschodni","TL-alt-variant":"Timor-Leste","TM":"Turkmenistan","TN":"Tunezja","TO":"Tonga","TR":"Turcja","TT":"Trynidad i Tobago","TV":"Tuvalu","TW":"Tajwan","TZ":"Tanzania","UA":"Ukraina","UG":"Uganda","UM":"Dalekie Wyspy Mniejsze Stanów Zjednoczonych","US":"Stany Zjednoczone","US-alt-short":"USA","UY":"Urugwaj","UZ":"Uzbekistan","VA":"Watykan","VC":"Saint Vincent i Grenadyny","VE":"Wenezuela","VG":"Brytyjskie Wyspy Dziewicze","VI":"Wyspy Dziewicze Stanów Zjednoczonych","VN":"Wietnam","VU":"Vanuatu","WF":"Wallis i Futuna","WS":"Samoa","XK":"Kosowo","YE":"Jemen","YT":"Majotta","ZA":"Republika Południowej Afryki","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Nieznany region"} \ No newline at end of file diff --git a/Punic/data/pl/timeZoneNames.json b/Punic/data/pl/timeZoneNames.json new file mode 100644 index 0000000..a9474a7 --- /dev/null +++ b/Punic/data/pl/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Czas: %1$s","regionFormat-type-standard":"%1$s (czas standardowy)","regionFormat-type-daylight":"%1$s (czas letni)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Salvador"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"Belize":{"exemplarCity":"Belize"},"Blanc-Sablon":{"exemplarCity":"Blanc-Sablon"},"Boa_Vista":{"exemplarCity":"Boa Vista"},"Bogota":{"exemplarCity":"Bogota"},"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":"Kajenna"},"Cayman":{"exemplarCity":"Kajmany"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Kordoba"},"Costa_Rica":{"exemplarCity":"Kostaryka"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curaçao"},"Danmarkshavn":{"exemplarCity":"Danmarkshavn"},"Dawson":{"exemplarCity":"Dawson"},"Dawson_Creek":{"exemplarCity":"Dawson Creek"},"Denver":{"exemplarCity":"Denver"},"Detroit":{"exemplarCity":"Detroit"},"Dominica":{"exemplarCity":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepe"},"El_Salvador":{"exemplarCity":"Salwador"},"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":"Gwadelupa"},"Guatemala":{"exemplarCity":"Gwatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Gujana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Hawana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox"},"Marengo":{"exemplarCity":"Marengo"},"Petersburg":{"exemplarCity":"Petersburg"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay"},"Vincennes":{"exemplarCity":"Vincennes"},"Winamac":{"exemplarCity":"Winamac"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamajka"},"Jujuy":{"exemplarCity":"Jujuy"},"Juneau":{"exemplarCity":"Juneau"},"Kentucky":{"Monticello":{"exemplarCity":"Monticello"}},"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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martynika"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Merida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Meksyk (miasto)"},"Miquelon":{"exemplarCity":"Miquelon"},"Moncton":{"exemplarCity":"Moncton"},"Monterrey":{"exemplarCity":"Monterrey"},"Montevideo":{"exemplarCity":"Montevideo"},"Montserrat":{"exemplarCity":"Montserrat"},"Nassau":{"exemplarCity":"Nassau"},"New_York":{"exemplarCity":"Nowy Jork"},"Nipigon":{"exemplarCity":"Nipigon"},"Nome":{"exemplarCity":"Nome"},"Noronha":{"exemplarCity":"Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, Dakota Północna"},"Center":{"exemplarCity":"Center, Dakota Północna"},"New_Salem":{"exemplarCity":"New Salem, Dakota Północna"}},"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":"Portoryko"},"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":"Sao Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Saint-Barthélemy"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"Saint Kitts"},"St_Lucia":{"exemplarCity":"Saint Lucia"},"St_Thomas":{"exemplarCity":"Saint Thomas"},"St_Vincent":{"exemplarCity":"Saint Vincent"},"Swift_Current":{"exemplarCity":"Swift Current"},"Tegucigalpa":{"exemplarCity":"Tegucigalpa"},"Thule":{"exemplarCity":"Qaanaaq"},"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":"Azory"},"Bermuda":{"exemplarCity":"Bermudy"},"Canary":{"exemplarCity":"Wyspy Kanaryjskie"},"Cape_Verde":{"exemplarCity":"Zielony Przylądek"},"Faeroe":{"exemplarCity":"Wyspy Owcze"},"Madeira":{"exemplarCity":"Madera"},"Reykjavik":{"exemplarCity":"Rejkiawik"},"South_Georgia":{"exemplarCity":"Georgia Południowa"},"St_Helena":{"exemplarCity":"Święta Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andora"},"Athens":{"exemplarCity":"Ateny"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratysława"},"Brussels":{"exemplarCity":"Bruksela"},"Bucharest":{"exemplarCity":"Bukareszt"},"Budapest":{"exemplarCity":"Budapeszt"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Kiszyniów"},"Copenhagen":{"exemplarCity":"Kopenhaga"},"Dublin":{"long":{"daylight":"Irlandia (czas letni)"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Wyspa Man"},"Istanbul":{"exemplarCity":"Stambuł"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kijów"},"Lisbon":{"exemplarCity":"Lizbona"},"Ljubljana":{"exemplarCity":"Lublana"},"London":{"long":{"daylight":"Brytyjski czas letni"},"exemplarCity":"Londyn"},"Luxembourg":{"exemplarCity":"Luksemburg"},"Madrid":{"exemplarCity":"Madryt"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Maarianhamina"},"Minsk":{"exemplarCity":"Mińsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskwa"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paryż"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Ryga"},"Rome":{"exemplarCity":"Rzym"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajewo"},"Simferopol":{"exemplarCity":"Symferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Sztokholm"},"Tallinn":{"exemplarCity":"Tallin"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Użgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Watykan"},"Vienna":{"exemplarCity":"Wiedeń"},"Vilnius":{"exemplarCity":"Wilno"},"Volgograd":{"exemplarCity":"Wołgograd"},"Warsaw":{"exemplarCity":"Warszawa"},"Zagreb":{"exemplarCity":"Zagrzeb"},"Zaporozhye":{"exemplarCity":"Zaporoże"},"Zurich":{"exemplarCity":"Zurych"}},"Africa":{"Abidjan":{"exemplarCity":"Abidżan"},"Accra":{"exemplarCity":"Akra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Algier"},"Asmera":{"exemplarCity":"Asmara"},"Bamako":{"exemplarCity":"Bamako"},"Bangui":{"exemplarCity":"Bangi"},"Banjul":{"exemplarCity":"Bandżul"},"Bissau":{"exemplarCity":"Bissau"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzaville"},"Bujumbura":{"exemplarCity":"Bużumbura"},"Cairo":{"exemplarCity":"Kair"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Konakri"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es-Salaam"},"Djibouti":{"exemplarCity":"Dżibuti"},"Douala":{"exemplarCity":"Duala"},"El_Aaiun":{"exemplarCity":"Ujun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Chartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinszasa"},"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":"Mogadiszu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndżamena"},"Niamey":{"exemplarCity":"Niamej"},"Nouakchott":{"exemplarCity":"Nawakszut"},"Ouagadougou":{"exemplarCity":"Wagadugu"},"Porto-Novo":{"exemplarCity":"Porto Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Trypolis"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhuk"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Ałma Ata"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktiubińsk"},"Ashgabat":{"exemplarCity":"Aszchabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrajn"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Bejrut"},"Bishkek":{"exemplarCity":"Biszkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kalkuta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Czojbalsan"},"Chongqing":{"exemplarCity":"Czunking"},"Colombo":{"exemplarCity":"Kolombo"},"Damascus":{"exemplarCity":"Damaszek"},"Dhaka":{"exemplarCity":"Dakka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubaj"},"Dushanbe":{"exemplarCity":"Duszanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Howd"},"Irkutsk":{"exemplarCity":"Irkuck"},"Jakarta":{"exemplarCity":"Dżakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerozolima"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamczatka"},"Karachi":{"exemplarCity":"Karaczi"},"Kashgar":{"exemplarCity":"Kaszgar"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Chandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuczing"},"Kuwait":{"exemplarCity":"Kuwejt"},"Macau":{"exemplarCity":"Makau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Maskat"},"Nicosia":{"exemplarCity":"Nikozja"},"Novokuznetsk":{"exemplarCity":"Nowokuźnieck"},"Novosibirsk":{"exemplarCity":"Nowosybirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pjongjang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kyzył Orda"},"Rangoon":{"exemplarCity":"Rangun"},"Riyadh":{"exemplarCity":"Rijad"},"Saigon":{"exemplarCity":"Ho Chi Minh (miasto)"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarkanda"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Szanghaj"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Tajpej"},"Tashkent":{"exemplarCity":"Taszkient"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ułan Bator"},"Urumqi":{"exemplarCity":"Urumczi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Wientian"},"Vladivostok":{"exemplarCity":"Władywostok"},"Yakutsk":{"exemplarCity":"Jakuck"},"Yekaterinburg":{"exemplarCity":"Jekaterynburg"},"Yerevan":{"exemplarCity":"Erywań"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarywa"},"Chagos":{"exemplarCity":"Czagos"},"Christmas":{"exemplarCity":"Wyspa Bożego Narodzenia"},"Cocos":{"exemplarCity":"Wyspy Kokosowe"},"Comoro":{"exemplarCity":"Komory"},"Kerguelen":{"exemplarCity":"Wyspy Kerguelena"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Malediwy"},"Mauritius":{"exemplarCity":"Mauritius"},"Mayotte":{"exemplarCity":"Majotta"},"Reunion":{"exemplarCity":"Réunion"}},"Australia":{"Adelaide":{"exemplarCity":"Adelajda"},"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":"Wyspa Lord Howe"},"Melbourne":{"exemplarCity":"Melbourne"},"Perth":{"exemplarCity":"Perth"},"Sydney":{"exemplarCity":"Sydney"}},"Pacific":{"Apia":{"exemplarCity":"Apia"},"Auckland":{"exemplarCity":"Auckland"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Wyspa Wielkanocna"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidżi"},"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":"Markizy"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Numea"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palau"},"Pitcairn":{"exemplarCity":"Wyspy 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":"Stacja Casey"},"Davis":{"exemplarCity":"Stacja Davis"},"DumontDUrville":{"exemplarCity":"Dumont d’Urville"},"Macquarie":{"exemplarCity":"Macquarie"},"Mawson":{"exemplarCity":"Wybrzeże Mawsona"},"McMurdo":{"exemplarCity":"Mc Murdo"},"Palmer":{"exemplarCity":"Archipelag Palmera"},"Rothera":{"exemplarCity":"Stacja Naukowa Rothera"},"Syowa":{"exemplarCity":"Stacja Syowa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Stacja 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":"Nieznane"}}},"metazone":{"Afghanistan":{"long":{"standard":"Afganistan"}},"Africa_Central":{"long":{"standard":"Czas środkowoafrykański"}},"Africa_Eastern":{"long":{"standard":"Czas wschodnioafrykański"}},"Africa_Southern":{"long":{"standard":"Czas południowoafrykański"}},"Africa_Western":{"long":{"generic":"Czas zachodnioafrykański","standard":"Czas zachodnioafrykański standardowy","daylight":"Czas zachodnioafrykański letni"}},"Alaska":{"long":{"generic":"Czas Alaska","standard":"Alaska (czas standardowy)","daylight":"Alaska (czas letni)"}},"Amazon":{"long":{"generic":"Czas amazoński","standard":"Czas amazoński standardowy","daylight":"Czas amazoński letni"}},"America_Central":{"long":{"generic":"Czas środkowoamerykański","standard":"Czas środkowoamerykański standardowy","daylight":"Czas środkowoamerykański letni"}},"America_Eastern":{"long":{"generic":"Czas wschodnioamerykański","standard":"Czas wschodnioamerykański standardowy","daylight":"Czas wschodnioamerykański letni"}},"America_Mountain":{"long":{"generic":"Czas górski","standard":"Czas górski standardowy","daylight":"Czas górski letni"}},"America_Pacific":{"long":{"generic":"Czas pacyficzny","standard":"Czas pacyficzny standardowy","daylight":"Czas pacyficzny letni"}},"Anadyr":{"long":{"generic":"Czas Anadyr","standard":"Czas standardowy Anadyr","daylight":"Czas Anadyr letni"}},"Apia":{"long":{"generic":"Apia","standard":"Apia (czas standardowy)","daylight":"Apia (czas letni)"}},"Arabian":{"long":{"generic":"Półwysep Arabski","standard":"Półwysep Arabski (czas standardowy)","daylight":"Półwysep Arabski (czas letni)"}},"Argentina":{"long":{"generic":"Czas argentyński","standard":"Argentyna (czas standardowy)","daylight":"Argentyna (czas letni)"}},"Argentina_Western":{"long":{"generic":"Argentyna Zachodnia","standard":"Argentyna Zachodnia (czas standardowy)","daylight":"Argentyna Zachodnia (czas letni)"}},"Armenia":{"long":{"generic":"Armenia","standard":"Armenia (czas standardowy)","daylight":"Armenia (czas letni)"}},"Atlantic":{"long":{"generic":"Czas atlantycki","standard":"Czas standardowy atlantycki","daylight":"Czas atlantycki letni"}},"Australia_Central":{"long":{"generic":"Czas środkowoaustralijski","standard":"Czas środkowoaustralijski standardowy","daylight":"Czas środkowoaustralijski letni"}},"Australia_CentralWestern":{"long":{"generic":"Czas środkowo-zachodnioaustralijski","standard":"Czas środkowo-zachodnioaustralijski standardowy","daylight":"Czas środkowo-zachodnioaustralijski letni"}},"Australia_Eastern":{"long":{"generic":"Czas wschodnioaustraliski","standard":"Czas standardowy wschodnioaustraliski","daylight":"Czas wschodnioaustraliski letni"}},"Australia_Western":{"long":{"generic":"Czas zachodnioaustralijski","standard":"Czas zachodnioaustralijski standardowy","daylight":"Czas zachodnioaustralijski letni"}},"Azerbaijan":{"long":{"generic":"Azerbejdżan","standard":"Azerbejdżan (czas standardowy)","daylight":"Azerbejdżan (czas letni)"}},"Azores":{"long":{"generic":"Azory","standard":"Azory (czas standardowy)","daylight":"Azory (czas letni)"}},"Bangladesh":{"long":{"generic":"Bangladesz","standard":"Bangladesz (czas standardowy)","daylight":"Bangladesz (czas letni)"}},"Bhutan":{"long":{"standard":"Bhutan"}},"Bolivia":{"long":{"standard":"Boliwia"}},"Brasilia":{"long":{"generic":"Brasília","standard":"Brasília (czas standardowy)","daylight":"Brasília (czas letni)"}},"Brunei":{"long":{"standard":"Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Republika Zielonego Przylądka","standard":"Republika Zielonego Przylądka (czas standardowy)","daylight":"Republika Zielonego Przylądka (czas letni)"}},"Chamorro":{"long":{"standard":"Czamorro"}},"Chatham":{"long":{"generic":"Chatham","standard":"Chatham (czas standardowy)","daylight":"Chatham (czas letni)"}},"Chile":{"long":{"generic":"Chile","standard":"Chile (czas standardowy)","daylight":"Chile (czas letni)"}},"China":{"long":{"generic":"Chiny","standard":"Chiny (czas standardowy)","daylight":"Chiny (czas letni)"}},"Choibalsan":{"long":{"generic":"Czojbalsan","standard":"Czojbalsan (czas standardowy)","daylight":"Czojbalsan (czas letni)"}},"Christmas":{"long":{"standard":"Wyspa Bożego Narodzenia"}},"Cocos":{"long":{"standard":"Wyspy Kokosowe"}},"Colombia":{"long":{"generic":"Kolumbia","standard":"Kolumbia (czas standardowy)","daylight":"Kolumbia (czas letni)"}},"Cook":{"long":{"generic":"Wyspy Cooka","standard":"Wyspy Cooka (czas standardowy)","daylight":"Wyspy Cooka (czas letni)"}},"Cuba":{"long":{"generic":"Kuba","standard":"Kuba (czas standardowy)","daylight":"Kuba (czas letni)"}},"Davis":{"long":{"standard":"Davis"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Timor Wschodni"}},"Easter":{"long":{"generic":"Wyspa Wielkanocna","standard":"Wyspa Wielkanocna (czas standardowy)","daylight":"Wyspa Wielkanocna (czas letni)"}},"Ecuador":{"long":{"standard":"Ekwador"}},"Europe_Central":{"long":{"generic":"Czas środkowoeuropejski","standard":"Czas środkowoeuropejski standardowy","daylight":"Czas środkowoeuropejski letni"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Czas wschodnioeuropejski","standard":"Czas wschodnioeuropejski standardowy","daylight":"Czas wschodnioeuropejski letni"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Czas wschodnioeuropejski dalszy"}},"Europe_Western":{"long":{"generic":"Czas zachodnioeuropejski","standard":"Czas zachodnioeuropejski standardowy","daylight":"Czas zachodnioeuropejski letni"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Falklandy","standard":"Falklandy (czas standardowy)","daylight":"Falklandy (czas letni)"}},"Fiji":{"long":{"generic":"Fidżi","standard":"Fidżi (czas standardowy)","daylight":"Fidżi (czas letni)"}},"French_Guiana":{"long":{"standard":"Gujana Francuska"}},"French_Southern":{"long":{"standard":"Francuskie Terytoria Południowe i Antarktyczne"}},"GMT":{"long":{"standard":"Czas uniwersalny"}},"Galapagos":{"long":{"standard":"Galapagos"}},"Gambier":{"long":{"standard":"Gambier"}},"Georgia":{"long":{"generic":"Gruzja","standard":"Gruzja (czas standardowy)","daylight":"Gruzja (czas letni)"}},"Gilbert_Islands":{"long":{"standard":"Wyspy Gilberta"}},"Greenland_Eastern":{"long":{"generic":"Grenlandia Wschodnia","standard":"Grenlandia Wschodnia (czas standardowy)","daylight":"Grenlandia Wschodnia (czas letni)"}},"Greenland_Western":{"long":{"generic":"Grenlandia Zachodnia","standard":"Grenlandia Zachodnia (czas standardowy)","daylight":"Grenlandia Zachodnia (czas letni)"}},"Gulf":{"long":{"standard":"Zatoka Perska"}},"Guyana":{"long":{"standard":"Gujana"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaje-Aleuty","standard":"Hawaje-Aleuty (czas standardowy)","daylight":"Hawaje-Aleuty (czas letni)"}},"Hong_Kong":{"long":{"generic":"Hongkong","standard":"Hongkong (czas standardowy)","daylight":"Hongkong (czas letni)"}},"Hovd":{"long":{"generic":"Kobdo","standard":"Kobdo (czas standardowy)","daylight":"Kobdo (czas letni)"}},"India":{"long":{"standard":"Czas indyjski"}},"Indian_Ocean":{"long":{"standard":"Ocean Indyjski"}},"Indochina":{"long":{"standard":"Czas indochiński"}},"Indonesia_Central":{"long":{"standard":"Indonezja Środkowa"}},"Indonesia_Eastern":{"long":{"standard":"Indonezja Wschodnia"}},"Indonesia_Western":{"long":{"standard":"Indonezja Zachodnia"}},"Iran":{"long":{"generic":"Iran","standard":"Iran (czas standardowy)","daylight":"Iran (czas letni)"}},"Irkutsk":{"long":{"generic":"Irkuck","standard":"Irkuck (czas standardowy)","daylight":"Irkuck (czas letni)"}},"Israel":{"long":{"generic":"Izrael","standard":"Izrael (czas standardowy)","daylight":"Izrael (czas letni)"}},"Japan":{"long":{"generic":"Japonia","standard":"Japonia (czas standardowy)","daylight":"Japonia (czas letni)"}},"Kamchatka":{"long":{"generic":"Czas Pietropawłowsk Kamczacki","standard":"Czas standardowy Pietropawłowsk Kamczacki","daylight":"Czas Pietropawłowsk Kamczacki letni"}},"Kazakhstan_Eastern":{"long":{"standard":"Kazachstan Wschodni"}},"Kazakhstan_Western":{"long":{"standard":"Kazachstan Zachodni"}},"Korea":{"long":{"generic":"Korea","standard":"Korea (czas standardowy)","daylight":"Korea (czas letni)"}},"Kosrae":{"long":{"standard":"Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarsk","standard":"Krasnojarsk (czas standardowy)","daylight":"Krasnojarsk (czas letni)"}},"Kyrgystan":{"long":{"standard":"Kirgistan"}},"Line_Islands":{"long":{"standard":"Sporady Środkowopolinezyjskie"}},"Lord_Howe":{"long":{"generic":"Lord Howe","standard":"Lord Howe (czas standardowy)","daylight":"Lord Howe (czas letni)"}},"Macquarie":{"long":{"standard":"Macquarie"}},"Magadan":{"long":{"generic":"Magadan","standard":"Magadan (czas standardowy)","daylight":"Magadan (czas letni)"}},"Malaysia":{"long":{"standard":"Malezja"}},"Maldives":{"long":{"standard":"Malediwy"}},"Marquesas":{"long":{"standard":"Markizy"}},"Marshall_Islands":{"long":{"standard":"Wyspy Marshalla"}},"Mauritius":{"long":{"generic":"Mauritius","standard":"Mauritius (czas standardowy)","daylight":"Mauritius (czas letni)"}},"Mawson":{"long":{"standard":"Mawson"}},"Mexico_Northwest":{"long":{"generic":"Meksyk Północno-Zachodni","standard":"Meksyk Północno-Zachodni (czas standardowy)","daylight":"Meksyk Północno-Zachodni (czas letni)"}},"Mexico_Pacific":{"long":{"generic":"Meksyk (czas pacyficzny)","standard":"Meksyk (czas pacyficzny standardowy)","daylight":"Meksyk (czas pacyficzny letni)"}},"Mongolia":{"long":{"generic":"Ułan Bator","standard":"Ułan Bator (czas standardowy)","daylight":"Ułan Bator (czas letni)"}},"Moscow":{"long":{"generic":"Czas moskiewski","standard":"Czas moskiewski standardowy","daylight":"Czas moskiewski letni"}},"Myanmar":{"long":{"standard":"Mjanma"}},"Nauru":{"long":{"standard":"Nauru"}},"Nepal":{"long":{"standard":"Nepal"}},"New_Caledonia":{"long":{"generic":"Nowa Kaledonia","standard":"Nowa Kaledonia (czas standardowy)","daylight":"Nowa Kaledonia (czas letni)"}},"New_Zealand":{"long":{"generic":"Nowa Zelandia","standard":"Nowa Zelandia (czas standardowy)","daylight":"Nowa Zelandia (czas letni)"}},"Newfoundland":{"long":{"generic":"Czas nowofunlandzki","standard":"Nowa Fundlandia (czas standardowy)","daylight":"Nowa Fundlandia (czas letni)"}},"Niue":{"long":{"standard":"Niue"}},"Norfolk":{"long":{"standard":"Norfolk"}},"Noronha":{"long":{"generic":"Fernando de Noronha","standard":"Fernando de Noronha (czas standardowy)","daylight":"Fernando de Noronha (czas letni)"}},"Novosibirsk":{"long":{"generic":"Nowosybirsk","standard":"Nowosybirsk (czas standardowy)","daylight":"Nowosybirsk (czas letni)"}},"Omsk":{"long":{"generic":"Omsk","standard":"Omsk (czas standardowy)","daylight":"Omsk (czas letni)"}},"Pakistan":{"long":{"generic":"Pakistan","standard":"Pakistan (czas standardowy)","daylight":"Pakistan (czas letni)"}},"Palau":{"long":{"standard":"Palau"}},"Papua_New_Guinea":{"long":{"standard":"Papua-Nowa Gwinea"}},"Paraguay":{"long":{"generic":"Paragwaj","standard":"Paragwaj (czas standardowy)","daylight":"Paragwaj (czas letni)"}},"Peru":{"long":{"generic":"Peru","standard":"Peru (czas standardowy)","daylight":"Peru (czas letni)"}},"Philippines":{"long":{"generic":"Filipiny","standard":"Filipiny (czas standardowy)","daylight":"Filipiny (czas letni)"}},"Phoenix_Islands":{"long":{"standard":"Feniks"}},"Pierre_Miquelon":{"long":{"generic":"Saint-Pierre i Miquelon","standard":"Saint-Pierre i Miquelon (czas standardowy)","daylight":"Saint-Pierre i Miquelon (czas letni)"}},"Pitcairn":{"long":{"standard":"Pitcairn"}},"Ponape":{"long":{"standard":"Pohnpei"}},"Reunion":{"long":{"standard":"Reunion"}},"Rothera":{"long":{"standard":"Rothera"}},"Sakhalin":{"long":{"generic":"Sachalin","standard":"Sachalin (czas standardowy)","daylight":"Sachalin (czas letni)"}},"Samara":{"long":{"generic":"Czas Samara","standard":"Czas standardowy Samara","daylight":"Czas Samara letni"}},"Samoa":{"long":{"generic":"Samoa","standard":"Samoa (czas standardowy)","daylight":"Samoa (czas letni)"}},"Seychelles":{"long":{"standard":"Seszele"}},"Singapore":{"long":{"standard":"Singapur"}},"Solomon":{"long":{"standard":"Wyspy Salomona"}},"South_Georgia":{"long":{"standard":"Georgia Południowa"}},"Suriname":{"long":{"standard":"Surinam"}},"Syowa":{"long":{"standard":"Syowa"}},"Tahiti":{"long":{"standard":"Tahiti"}},"Taipei":{"long":{"generic":"Tajpej","standard":"Tajpej (czas standardowy)","daylight":"Tajpej (czas letni)"}},"Tajikistan":{"long":{"standard":"Tadżykistan"}},"Tokelau":{"long":{"standard":"Tokelau"}},"Tonga":{"long":{"generic":"Tonga","standard":"Tonga (czas standardowy)","daylight":"Tonga (czas letni)"}},"Truk":{"long":{"standard":"Chuuk"}},"Turkmenistan":{"long":{"generic":"Turkmenistan","standard":"Turkmenistan (czas standardowy)","daylight":"Turkmenistan (czas letni)"}},"Tuvalu":{"long":{"standard":"Tuvalu"}},"Uruguay":{"long":{"generic":"Urugwaj","standard":"Urugwaj (czas standardowy)","daylight":"Urugwaj (czas letni)"}},"Uzbekistan":{"long":{"generic":"Uzbekistan","standard":"Uzbekistan (czas standardowy)","daylight":"Uzbekistan (czas letni)"}},"Vanuatu":{"long":{"generic":"Vanuatu","standard":"Vanuatu (czas standardowy)","daylight":"Vanuatu (czas letni)"}},"Venezuela":{"long":{"standard":"Wenezuela"}},"Vladivostok":{"long":{"generic":"Władywostok","standard":"Władywostok (czas standardowy)","daylight":"Władywostok (czas letni)"}},"Volgograd":{"long":{"generic":"Wołgograd","standard":"Wołgograd (czas standardowy)","daylight":"Wołgograd (czas letni)"}},"Vostok":{"long":{"standard":"Wostok"}},"Wake":{"long":{"standard":"Wake"}},"Wallis":{"long":{"standard":"Wallis i Futuna"}},"Yakutsk":{"long":{"generic":"Jakuck","standard":"Jakuck (czas standardowy)","daylight":"Jakuck (czas letni)"}},"Yekaterinburg":{"long":{"generic":"Jekaterynburg","standard":"Jekaterynburg (czas standardowy)","daylight":"Jekaterynburg (czas letni)"}}}} \ No newline at end of file diff --git a/Punic/data/pl/units.json b/Punic/data/pl/units.json new file mode 100644 index 0000000..996f124 --- /dev/null +++ b/Punic/data/pl/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s na %2$s","acceleration":{"g-force":{"_name":"stała grawitacji","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metry na sekundę do kwadratu","one":"%1$s metr na sekundę do kwadratu","few":"%1$s metry na sekundę do kwadratu","many":"%1$s metrów na sekundę do kwadratu","other":"%1$s metra na sekundę do kwadratu"}},"angle":{"arc-minute":{"_name":"minuty kątowe","one":"%1$s minuta","few":"%1$s minuty","many":"%1$s minut","other":"%1$s minuty"},"arc-second":{"_name":"sekundy kątowe","one":"%1$s sekunda","few":"%1$s sekundy","many":"%1$s sekund","other":"%1$s sekundy"},"degree":{"_name":"stopnie","one":"%1$s stopień","few":"%1$s stopnie","many":"%1$s stopni","other":"%1$s stopnia"},"radian":{"_name":"radiany","one":"%1$s radian","few":"%1$s radiany","many":"%1$s radianów","other":"%1$s radiana"}},"area":{"acre":{"_name":"akry","one":"%1$s akr","few":"%1$s akry","many":"%1$s akrów","other":"%1$s akra"},"hectare":{"_name":"hektary","one":"%1$s hektar","few":"%1$s hektary","many":"%1$s hektarów","other":"%1$s hektara"},"square-centimeter":{"_name":"centymetry kwadratowe","one":"%1$s centymetr kwadratowy","few":"%1$s centymetry kwadratowe","many":"%1$s centymetrów kwadratowych","other":"%1$s centymetra kwadratowego"},"square-foot":{"_name":"stopy kwadratowe","one":"%1$s stopa kwadratowa","few":"%1$s stopy kwadratowe","many":"%1$s stóp kwadratowych","other":"%1$s stopy kwadratowej"},"square-inch":{"_name":"cale kwadratowe","one":"%1$s cal kwadratowy","few":"%1$s cale kwadratowe","many":"%1$s cali kwadratowych","other":"%1$s cala kwadratowego"},"square-kilometer":{"_name":"kilometry kwadratowe","one":"%1$s kilometr kwadratowy","few":"%1$s kilometry kwadratowe","many":"%1$s kilometrów kwadratowych","other":"%1$s kilometra kwadratowego"},"square-meter":{"_name":"metry kwadratowe","one":"%1$s metr kwadratowy","few":"%1$s metry kwadratowe","many":"%1$s metrów kwadratowych","other":"%1$s metra kwadratowego"},"square-mile":{"_name":"mile kwadratowe","one":"%1$s mila kwadratowa","few":"%1$s mile kwadratowe","many":"%1$s mil kwadratowych","other":"%1$s mili kwadratowej"},"square-yard":{"_name":"jardy kwadratowe","one":"%1$s jard kwadratowy","few":"%1$s jardy kwadratowe","many":"%1$s jardów kwadratowych","other":"%1$s jarda kwadratowego"}},"consumption":{"liter-per-kilometer":{"_name":"litry na kilometr","one":"%1$s litr na kilometr","few":"%1$s litry na kilometr","many":"%1$s litrów na kilometr","other":"%1$s litra na kilometr"},"mile-per-gallon":{"_name":"mile na galon","one":"%1$s mila na galon","few":"%1$s mile na galon","many":"%1$s mili na galon","other":"%1$s mili na galon"}},"digital":{"bit":{"_name":"bity","one":"%1$s bit","few":"%1$s bity","many":"%1$s bitów","other":"%1$s bitu"},"byte":{"_name":"bajty","one":"%1$s bajt","few":"%1$s bajty","many":"%1$s bajtów","other":"%1$s bajta"},"gigabit":{"_name":"gigabity","one":"%1$s gigabit","few":"%1$s gigabity","many":"%1$s gigabitów","other":"%1$s gigabitu"},"gigabyte":{"_name":"gigabajty","one":"%1$s gigabajt","few":"%1$s gigabajty","many":"%1$s gigabajtów","other":"%1$s gigabajta"},"kilobit":{"_name":"kilobity","one":"%1$s kilobit","few":"%1$s kilobity","many":"%1$s kilobitów","other":"%1$s kilobitu"},"kilobyte":{"_name":"kilobajty","one":"%1$s kilobajt","few":"%1$s kilobajty","many":"%1$s kilobajtów","other":"%1$s kilobajta"},"megabit":{"_name":"megabity","one":"%1$s megabit","few":"%1$s megabity","many":"%1$s megabitów","other":"%1$s megabitu"},"megabyte":{"_name":"megabajty","one":"%1$s megabajt","few":"%1$s megabajty","many":"%1$s megabajtów","other":"%1$s megabajta"},"terabit":{"_name":"terabity","one":"%1$s terabit","few":"%1$s terabity","many":"%1$s terabitów","other":"%1$s terabitu"},"terabyte":{"_name":"terabajty","one":"%1$s terabajt","few":"%1$s terabajty","many":"%1$s terabajtów","other":"%1$s terabajta"}},"duration":{"day":{"_name":"dni","one":"%1$s dzień","few":"%1$s dni","many":"%1$s dni","other":"%1$s dnia"},"hour":{"_name":"godziny","one":"%1$s godzina","few":"%1$s godziny","many":"%1$s godzin","other":"%1$s godzin","_per":"%1$s na godzinę"},"microsecond":{"_name":"mikrosekundy","one":"%1$s mikrosekunda","few":"%1$s mikrosekundy","many":"%1$s mikrosekund","other":"%1$s mikrosekundy"},"millisecond":{"_name":"milisekundy","one":"%1$s milisekunda","few":"%1$s milisekundy","many":"%1$s milisekund","other":"%1$s milisekundy"},"minute":{"_name":"minuty","one":"%1$s minuta","few":"%1$s minuty","many":"%1$s minut","other":"%1$s minuty"},"month":{"_name":"miesiące","one":"%1$s miesiąc","few":"%1$s miesiące","many":"%1$s miesięcy","other":"%1$s miesiąca"},"nanosecond":{"_name":"nanosekundy","one":"%1$s nanosekunda","few":"%1$s nanosekundy","many":"%1$s nanosekund","other":"%1$s nanosekundy"},"second":{"_name":"sekundy","one":"%1$s sekunda","few":"%1$s sekundy","many":"%1$s sekund","other":"%1$s sekundy","_per":"%1$s na sekundę"},"week":{"_name":"tygodnie","one":"%1$s tydzień","few":"%1$s tygodnie","many":"%1$s tygodni","other":"%1$s tygodnia"},"year":{"_name":"lata","one":"%1$s rok","few":"%1$s lata","many":"%1$s lat","other":"%1$s roku"}},"electric":{"ampere":{"_name":"ampery","one":"%1$s amper","few":"%1$s ampery","many":"%1$s amperów","other":"%1$s ampera"},"milliampere":{"_name":"miliampery","one":"%1$s miliamper","few":"%1$s miliampery","many":"%1$s miliamperów","other":"%1$s miliampera"},"ohm":{"_name":"omy","one":"%1$s om","few":"%1$s omy","many":"%1$s omów","other":"%1$s oma"},"volt":{"_name":"wolty","one":"%1$s wolt","few":"%1$s wolty","many":"%1$s woltów","other":"%1$s wolta"}},"energy":{"calorie":{"_name":"kalorie","one":"%1$s kaloria","few":"%1$s kalorie","many":"%1$s kalorii","other":"%1$s kalorii"},"foodcalorie":{"_name":"kalorie","one":"%1$s kaloria","few":"%1$s kalorie","many":"%1$s kalorii","other":"%1$s kalorii"},"joule":{"_name":"dżule","one":"%1$s dżul","few":"%1$s dżule","many":"%1$s dżuli","other":"%1$s dżula"},"kilocalorie":{"_name":"kilokalorie","one":"%1$s kilokaloria","few":"%1$s kilokalorie","many":"%1$s kilokalorii","other":"%1$s kilokalorii"},"kilojoule":{"_name":"kilodżule","one":"%1$s kilodżul","few":"%1$s kilodżule","many":"%1$s kilodżuli","other":"%1$s kilodżula"},"kilowatt-hour":{"_name":"kilowatogodziny","one":"%1$s kilowatogodzina","few":"%1$s kilowatogodziny","many":"%1$s kilowatogodzin","other":"%1$s kilowatogodziny"}},"frequency":{"gigahertz":{"_name":"gigaherce","one":"%1$s gigaherc","few":"%1$s gigaherce","many":"%1$s gigaherców","other":"%1$s gigaherca"},"hertz":{"_name":"herce","one":"%1$s herc","few":"%1$s herce","many":"%1$s herców","other":"%1$s herca"},"kilohertz":{"_name":"kiloherce","one":"%1$s kiloherc","few":"%1$s kiloherce","many":"%1$s kiloherców","other":"%1$s kiloherca"},"megahertz":{"_name":"megaherce","one":"%1$s megaherc","few":"%1$s megaherce","many":"%1$s megaherców","other":"%1$s megaherca"}},"length":{"astronomical-unit":{"_name":"jednostki astronomiczne","one":"%1$s jednostka astronomiczna","few":"%1$s jednostki astronomiczne","many":"%1$s jednostek astronomicznych","other":"%1$s jednostki astronomicznej"},"centimeter":{"_name":"centymetry","one":"%1$s centymetr","few":"%1$s centymetry","many":"%1$s centymetrów","other":"%1$s centymetra"},"decimeter":{"_name":"decymetry","one":"%1$s decymetr","few":"%1$s decymetry","many":"%1$s decymetrów","other":"%1$s decymetra"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"stopy","one":"%1$s stopa","few":"%1$s stopy","many":"%1$s stóp","other":"%1$s stopy"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"cale","one":"%1$s cal","few":"%1$s cale","many":"%1$s cali","other":"%1$s cala"},"kilometer":{"_name":"kilometry","one":"%1$s kilometr","few":"%1$s kilometry","many":"%1$s kilometrów","other":"%1$s kilometra"},"light-year":{"_name":"lata świetlne","one":"%1$s rok świetlny","few":"%1$s lata świetlne","many":"%1$s lat świetlnych","other":"%1$s roku świetlnego"},"meter":{"_name":"metry","one":"%1$s metr","few":"%1$s metry","many":"%1$s metrów","other":"%1$s metra"},"micrometer":{"_name":"mikrometry","one":"%1$s mikrometr","few":"%1$s mikrometry","many":"%1$s mikrometrów","other":"%1$s mikrometra"},"mile":{"_name":"mile","one":"%1$s mila","few":"%1$s mile","many":"%1$s mil","other":"%1$s mili"},"millimeter":{"_name":"milimetry","one":"%1$s milimetr","few":"%1$s milimetry","many":"%1$s milimetrów","other":"%1$s milimetra"},"nanometer":{"_name":"nanometry","one":"%1$s nanometr","few":"%1$s nanometry","many":"%1$s nanometrów","other":"%1$s nanometra"},"nautical-mile":{"_name":"mile morskie","one":"%1$s mila morska","few":"%1$s mile morskie","many":"%1$s mil morskich","other":"%1$s mili morskiej"},"parsec":{"_name":"parseki","one":"%1$s parsek","few":"%1$s parseki","many":"%1$s parseków","other":"%1$s parseka"},"picometer":{"_name":"pikometry","one":"%1$s pikometr","few":"%1$s pikometry","many":"%1$s pikometrów","other":"%1$s pikometra"},"yard":{"_name":"jardy","one":"%1$s jard","few":"%1$s jardy","many":"%1$s jardów","other":"%1$s jarda"}},"light":{"lux":{"_name":"luksy","one":"%1$s luks","few":"%1$s luksy","many":"%1$s luksów","other":"%1$s luksu"}},"mass":{"carat":{"_name":"karaty","one":"%1$s karat","few":"%1$s karaty","many":"%1$s karatów","other":"%1$s karata"},"gram":{"_name":"gramy","one":"%1$s gram","few":"%1$s gramy","many":"%1$s gramów","other":"%1$s grama"},"kilogram":{"_name":"kilogramy","one":"%1$s kilogram","few":"%1$s kilogramy","many":"%1$s kilogramów","other":"%1$s kilograma"},"metric-ton":{"_name":"tony","one":"%1$s tona","few":"%1$s tony","many":"%1$s ton","other":"%1$s tony"},"microgram":{"_name":"mikrogramy","one":"%1$s mikrogram","few":"%1$s mikrogramy","many":"%1$s mikrogramów","other":"%1$s mikrograma"},"milligram":{"_name":"miligramy","one":"%1$s miligram","few":"%1$s miligramy","many":"%1$s miligramów","other":"%1$s miligrama"},"ounce":{"_name":"uncje","one":"%1$s uncja","few":"%1$s uncje","many":"%1$s uncji","other":"%1$s uncji"},"ounce-troy":{"_name":"uncja trojańska","one":"%1$s uncja trojańska","few":"%1$s uncje trojańskie","many":"%1$s uncji trojańskich","other":"%1$s uncji trojańskiej"},"pound":{"_name":"funty","one":"%1$s funt","few":"%1$s funty","many":"%1$s funtów","other":"%1$s funta"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"krótkie tony","one":"%1$s krótka tona","few":"%1$s krótkie tony","many":"%1$s krótkich ton","other":"%1$s krótkiej tony"}},"power":{"gigawatt":{"_name":"gigawaty","one":"%1$s gigawat","few":"%1$s gigawaty","many":"%1$s gigawatów","other":"%1$s gigawata"},"horsepower":{"_name":"konie mechaniczne","one":"%1$s koń mechaniczny","few":"%1$s konie mechaniczne","many":"%1$s koni mechanicznych","other":"%1$s konia mechanicznego"},"kilowatt":{"_name":"kilowaty","one":"%1$s kilowat","few":"%1$s kilowaty","many":"%1$s kilowatów","other":"%1$s kilowata"},"megawatt":{"_name":"megawaty","one":"%1$s megawat","few":"%1$s megawaty","many":"%1$s megawatów","other":"%1$s megawata"},"milliwatt":{"_name":"miliwaty","one":"%1$s miliwat","few":"%1$s miliwaty","many":"%1$s miliwatów","other":"%1$s miliwata"},"watt":{"_name":"waty","one":"%1$s wat","few":"%1$s waty","many":"%1$s watów","other":"%1$s wata"}},"pressure":{"hectopascal":{"_name":"hektopaskale","one":"%1$s hektopaskal","few":"%1$s hektopaskale","many":"%1$s hektopaskali","other":"%1$s hektopaskala"},"inch-hg":{"_name":"cale słupa rtęci","one":"%1$s cal słupa rtęci","few":"%1$s cale słupa rtęci","many":"%1$s cali słupa rtęci","other":"%1$s cala słupa rtęci"},"millibar":{"_name":"milibary","one":"%1$s millibar","few":"%1$s millibary","many":"%1$s millibarów","other":"%1$s millibara"},"millimeter-of-mercury":{"_name":"milimetry słupa rtęci","one":"%1$s milimetr słupa rtęci","few":"%1$s milimetry słupa rtęci","many":"%1$s milimetrów słupa rtęci","other":"%1$s milimetra słupa rtęci"},"pound-per-square-inch":{"_name":"funty na cal kwadratowy","one":"%1$s funt na cal kwadratowy","few":"%1$s funty na cal kwadratowy","many":"%1$s funtów na cal kwadratowy","other":"%1$s funta na cal kwadratowy"}},"proportion":{"karat":{"_name":"karaty","one":"%1$s karat","few":"%1$s karaty","many":"%1$s karatów","other":"%1$s karata"}},"speed":{"kilometer-per-hour":{"_name":"kilometry na godzinę","one":"%1$s kilometr na godzinę","few":"%1$s kilometry na godzinę","many":"%1$s kilometrów na godzinę","other":"%1$s kilometra na godzinę"},"meter-per-second":{"_name":"metry na sekundę","one":"%1$s metr na sekundę","few":"%1$s metry na sekundę","many":"%1$s metrów na sekundę","other":"%1$s metra na sekundę"},"mile-per-hour":{"_name":"mile na godzinę","one":"%1$s mila na godzinę","few":"%1$s mile na godzinę","many":"%1$s mil na godzinę","other":"%1$s mili na godzinę"}},"temperature":{"celsius":{"_name":"stopnie Celsjusza","one":"%1$s stopień Celsjusza","few":"%1$s stopnie Celsjusza","many":"%1$s stopni Celsjusza","other":"%1$s stopnia Celsjusza"},"fahrenheit":{"_name":"stopnie Fahrenheita","one":"%1$s stopień Fahrenheita","few":"%1$s stopnie Fahrenheita","many":"%1$s stopni Fahrenheita","other":"%1$s stopnia Fahrenheita"},"kelvin":{"_name":"kelwiny","one":"%1$s kelwin","few":"%1$s kelwiny","many":"%1$s kelwinów","other":"%1$s kelwina"}},"volume":{"acre-foot":{"_name":"akro-stopy","one":"%1$s akro-stopa","few":"%1$s akro-stopy","many":"%1$s akro-stóp","other":"%1$s akro-stopy"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centylitry","one":"%1$s centylitr","few":"%1$s centylitry","many":"%1$s centylitrów","other":"%1$s centylitra"},"cubic-centimeter":{"_name":"centymetry sześcienne","one":"%1$s centymetr sześcienny","few":"%1$s centymetry sześcienne","many":"%1$s centymetrów sześciennych","other":"%1$s centymetra sześciennego"},"cubic-foot":{"_name":"stopy sześcienne","one":"%1$s stopa sześcienna","few":"%1$s stopy sześcienne","many":"%1$s stóp sześciennych","other":"%1$s stopy sześciennej"},"cubic-inch":{"_name":"cale sześcienne","one":"%1$s cal sześcienny","few":"%1$s cale sześcienne","many":"%1$s cali sześciennych","other":"%1$s cala sześciennego"},"cubic-kilometer":{"_name":"kilometry sześcienne","one":"%1$s kilometr sześcienny","few":"%1$s kilometry sześcienne","many":"%1$s kilometrów sześciennych","other":"%1$s kilometra sześciennego"},"cubic-meter":{"_name":"metry sześcienne","one":"%1$s metr sześcienny","few":"%1$s metry sześcienne","many":"%1$s metrów sześciennych","other":"%1$s metra sześciennego"},"cubic-mile":{"_name":"mile sześcienne","one":"%1$s mila sześcienna","few":"%1$s mile sześcienne","many":"%1$s mil sześciennych","other":"%1$s mili sześciennej"},"cubic-yard":{"_name":"jardy sześcienne","one":"%1$s jard sześcienny","few":"%1$s jardy sześcienne","many":"%1$s jardów sześciennych","other":"%1$s jarda sześciennego"},"cup":{"_name":"ćwierćkwarty","one":"%1$s ćwierćkwarta","few":"%1$s ćwierćkwarty","many":"%1$s ćwierćkwart","other":"%1$s ćwierćkwarty"},"deciliter":{"_name":"decylitry","one":"%1$s decylitr","few":"%1$s decylitry","many":"%1$s decylitrów","other":"%1$s decylitra"},"fluid-ounce":{"_name":"uncje płynu","one":"%1$s uncja płynu","few":"%1$s uncje płynu","many":"%1$s uncji płynu","other":"%1$s uncji płynu"},"gallon":{"_name":"galony","one":"%1$s galon","few":"%1$s galony","many":"%1$s galonów","other":"%1$s galona"},"hectoliter":{"_name":"hektolitry","one":"%1$s hektolitr","few":"%1$s hektolitry","many":"%1$s hektolitrów","other":"%1$s hektolitra"},"liter":{"_name":"litry","one":"%1$s litr","few":"%1$s litry","many":"%1$s litrów","other":"%1$s litra"},"megaliter":{"_name":"megalitry","one":"%1$s megalitr","few":"%1$s megalitry","many":"%1$s megalitrów","other":"%1$s megalitra"},"milliliter":{"_name":"mililitry","one":"%1$s mililitr","few":"%1$s mililitry","many":"%1$s mililitrów","other":"%1$s mililitra"},"pint":{"_name":"półkwarty","one":"%1$s półkwarta","few":"%1$s półkwarty","many":"%1$s półkwart","other":"%1$s półkwarty"},"quart":{"_name":"kwarty","one":"%1$s kwarta","few":"%1$s kwarty","many":"%1$s kwart","other":"%1$s kwarty"},"tablespoon":{"_name":"łyżki stołowe","one":"%1$s łyżka stołowa","few":"%1$s łyżki stołowe","many":"%1$s łyżek stołowych","other":"%1$s łyżki stołowej"},"teaspoon":{"_name":"łyżeczki","one":"%1$s łyżeczka","few":"%1$s łyżeczki","many":"%1$s łyżeczek","other":"%1$s łyżeczki"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"minuty","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"arc-second":{"_name":"sekundy","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s"},"degree":{"_name":"stopnie","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akry","one":"%1$s ac","few":"%1$s ac","many":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","many":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","many":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","many":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bity","one":"%1$s b","few":"%1$s b","many":"%1$s b","other":"%1$s b"},"byte":{"_name":"bajty","one":"%1$s B","few":"%1$s B","many":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dni","one":"%1$s dzień","few":"%1$s dni","many":"%1$s dni","other":"%1$s dnia"},"hour":{"_name":"godziny","one":"%1$s godz.","few":"%1$s godz.","many":"%1$s godz.","other":"%1$s godz.","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"milisekundy","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minuty","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"month":{"_name":"miesiące","one":"%1$s mies.","few":"%1$s mies.","many":"%1$s mies.","other":"%1$s mies."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekundy","one":"%1$s sek.","few":"%1$s sek.","many":"%1$s sek.","other":"%1$s sek.","_per":"%1$s/s"},"week":{"_name":"tygodnie","one":"%1$s tydz.","few":"%1$s tyg.","many":"%1$s tyg.","other":"%1$s tyg."},"year":{"_name":"lata","one":"%1$s rok","few":"%1$s lata","many":"%1$s lat","other":"%1$s roku"}},"electric":{"ampere":{"_name":"ampery","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"omy","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"wolty","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"kal","one":"%1$s kal","few":"%1$s kal","many":"%1$s kal","other":"%1$s kal"},"foodcalorie":{"_name":"kal","one":"%1$s kal","few":"%1$s kal","many":"%1$s kal","other":"%1$s kal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"j.a.","one":"%1$s j.a.","few":"%1$s j.a.","many":"%1$s j.a.","other":"%1$s j.a."},"centimeter":{"_name":"centymetry","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"stopy","one":"%1$s ft","few":"%1$s ft","many":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"cale","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lata świetlne","one":"%1$s ly","few":"%1$s ly","many":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metry","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mile","one":"%1$s mila","few":"%1$s mile","many":"%1$s mil","other":"%1$s mili"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"Mm","one":"%1$s Mm","few":"%1$s Mm","many":"%1$s Mm","other":"%1$s Mm"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","many":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"karaty","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"funty","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","many":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KM","one":"%1$s KM","few":"%1$s KM","many":"%1$s KM","other":"%1$s KM"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"waty","one":"%1$s W","few":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","many":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","many":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","many":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","few":"%1$s°C","many":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","many":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"ćwierćkwarty","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litry","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"półkwarty","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ł. stoł.","one":"%1$s ł. stoł.","few":"%1$s ł. stoł.","many":"%1$s ł. stoł.","other":"%1$s ł. stoł."},"teaspoon":{"_name":"łyżeczki","one":"%1$s łyżeczka","few":"%1$s łyżeczki","many":"%1$s łyżeczek","other":"%1$s łyżeczki"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"minuty","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"sekundy","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"stopnie","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akry","one":"%1$s ac","few":"%1$s ac","many":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","many":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","many":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","many":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bity","one":"%1$s b","few":"%1$s b","many":"%1$s b","other":"%1$s b"},"byte":{"_name":"bajty","one":"%1$s B","few":"%1$s B","many":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dzień","one":"%1$s d.","few":"%1$s dn.","many":"%1$s dn.","other":"%1$s dn."},"hour":{"_name":"godzina","one":"%1$s godz.","few":"%1$s godz.","many":"%1$s godz.","other":"%1$s godz.","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minuty","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"month":{"_name":"miesiąc","one":"%1$s m-c","few":"%1$s m-ce","many":"%1$s m-cy","other":"%1$s m-ca"},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekundy","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"tydzień","one":"%1$s tydz.","few":"%1$s tyg.","many":"%1$s tyg.","other":"%1$s tyg."},"year":{"_name":"rok","one":"%1$s r.","few":"%1$s l.","many":"%1$s l.","other":"%1$s r."}},"electric":{"ampere":{"_name":"ampery","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"omy","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"wolty","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"kal","one":"%1$s kal","few":"%1$s kal","many":"%1$s kal","other":"%1$s kal"},"foodcalorie":{"_name":"kal","one":"%1$s kal","few":"%1$s kal","many":"%1$s kal","other":"%1$s kal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"j.a.","one":"%1$s j.a.","few":"%1$s j.a.","many":"%1$s j.a.","other":"%1$s j.a."},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"stopy","one":"%1$s ft","few":"%1$s ft","many":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"cale","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"lata świetlne","one":"%1$s ly","few":"%1$s ly","many":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"metr","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mile","one":"%1$s mi","few":"%1$s mi","many":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"Mm","one":"%1$s Mm","few":"%1$s Mm","many":"%1$s Mm","other":"%1$s Mm"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","many":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"karaty","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"},"gram":{"_name":"gram","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"funty","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","many":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KM","one":"%1$s KM","few":"%1$s KM","many":"%1$s KM","other":"%1$s KM"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"waty","one":"%1$s W","few":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","many":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","many":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","many":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","many":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"ćwierćkwarty","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litr","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"półkwarty","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"ł. stoł.","one":"%1$s ł. stoł.","few":"%1$s ł. stoł.","many":"%1$s ł. stoł.","other":"%1$s ł. stoł."},"teaspoon":{"_name":"łyżeczki","one":"%1$s łyżeczki","few":"%1$s łyżeczki","many":"%1$s łyżeczki","other":"%1$s łyżeczki"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/plurals.json b/Punic/data/plurals.json new file mode 100644 index 0000000..cf3d4e2 --- /dev/null +++ b/Punic/data/plurals.json @@ -0,0 +1 @@ +{"af":{"one":"%1$s == 1"},"ak":{"one":"static::inRange(%1$s, true, array(0, 1))"},"am":{"one":"%2$s == 0 or %1$s == 1"},"ar":{"zero":"%1$s == 0","one":"%1$s == 1","two":"%1$s == 2","few":"static::inRange(%1$s %% 100, true, array(3, 10))","many":"static::inRange(%1$s %% 100, true, array(11, 99))"},"asa":{"one":"%1$s == 1"},"ast":{"one":"%2$s == 1 and %3$s == 0"},"az":{"one":"%1$s == 1"},"be":{"one":"%1$s %% 10 == 1 and %1$s %% 100 != 11","few":"static::inRange(%1$s %% 10, true, array(2, 4)) and static::inRange(%1$s %% 100, false, array(12, 14))","many":"%1$s %% 10 == 0 or static::inRange(%1$s %% 10, true, array(5, 9)) or static::inRange(%1$s %% 100, true, array(11, 14))"},"bem":{"one":"%1$s == 1"},"bez":{"one":"%1$s == 1"},"bg":{"one":"%1$s == 1"},"bh":{"one":"static::inRange(%1$s, true, array(0, 1))"},"bm":[],"bn":{"one":"%2$s == 0 or %1$s == 1"},"bo":[],"br":{"one":"%1$s %% 10 == 1 and static::inRange(%1$s %% 100, false, 11, 71, 91)","two":"%1$s %% 10 == 2 and static::inRange(%1$s %% 100, false, 12, 72, 92)","few":"static::inRange(%1$s %% 10, true, array(3, 4), 9) and static::inRange(%1$s %% 100, false, array(10, 19), array(70, 79), array(90, 99))","many":"%1$s != 0 and %1$s %% 1000000 == 0"},"brx":{"one":"%1$s == 1"},"bs":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11 or %5$s %% 10 == 1 and %5$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14)) or static::inRange(%5$s %% 10, true, array(2, 4)) and static::inRange(%5$s %% 100, false, array(12, 14))"},"ca":{"one":"%2$s == 1 and %3$s == 0"},"cgg":{"one":"%1$s == 1"},"chr":{"one":"%1$s == 1"},"ckb":{"one":"%1$s == 1"},"cs":{"one":"%2$s == 1 and %3$s == 0","few":"static::inRange(%2$s, true, array(2, 4)) and %3$s == 0","many":"%3$s != 0"},"cy":{"zero":"%1$s == 0","one":"%1$s == 1","two":"%1$s == 2","few":"%1$s == 3","many":"%1$s == 6"},"da":{"one":"%1$s == 1 or %6$s != 0 and static::inRange(%2$s, true, 0, 1)"},"de":{"one":"%2$s == 1 and %3$s == 0"},"dsb":{"one":"%3$s == 0 and %2$s %% 100 == 1 or %5$s %% 100 == 1","two":"%3$s == 0 and %2$s %% 100 == 2 or %5$s %% 100 == 2","few":"%3$s == 0 and static::inRange(%2$s %% 100, true, array(3, 4)) or static::inRange(%5$s %% 100, true, array(3, 4))"},"dv":{"one":"%1$s == 1"},"dz":[],"ee":{"one":"%1$s == 1"},"el":{"one":"%1$s == 1"},"en":{"one":"%2$s == 1 and %3$s == 0"},"eo":{"one":"%1$s == 1"},"es":{"one":"%1$s == 1"},"et":{"one":"%2$s == 1 and %3$s == 0"},"eu":{"one":"%1$s == 1"},"fa":{"one":"%2$s == 0 or %1$s == 1"},"ff":{"one":"static::inRange(%2$s, true, 0, 1)"},"fi":{"one":"%2$s == 1 and %3$s == 0"},"fil":{"one":"%3$s == 0 and static::inRange(%2$s, true, 1, 2, 3) or %3$s == 0 and static::inRange(%2$s %% 10, false, 4, 6, 9) or %3$s != 0 and static::inRange(%5$s %% 10, false, 4, 6, 9)"},"fo":{"one":"%1$s == 1"},"fr":{"one":"static::inRange(%2$s, true, 0, 1)"},"fur":{"one":"%1$s == 1"},"fy":{"one":"%2$s == 1 and %3$s == 0"},"ga":{"one":"%1$s == 1","two":"%1$s == 2","few":"static::inRange(%1$s, true, array(3, 6))","many":"static::inRange(%1$s, true, array(7, 10))"},"gd":{"one":"static::inRange(%1$s, true, 1, 11)","two":"static::inRange(%1$s, true, 2, 12)","few":"static::inRange(%1$s, true, array(3, 10), array(13, 19))"},"gl":{"one":"%2$s == 1 and %3$s == 0"},"gsw":{"one":"%1$s == 1"},"gu":{"one":"%2$s == 0 or %1$s == 1"},"guw":{"one":"static::inRange(%1$s, true, array(0, 1))"},"gv":{"one":"%3$s == 0 and %2$s %% 10 == 1","two":"%3$s == 0 and %2$s %% 10 == 2","few":"%3$s == 0 and static::inRange(%2$s %% 100, true, 0, 20, 40, 60, 80)","many":"%3$s != 0"},"ha":{"one":"%1$s == 1"},"haw":{"one":"%1$s == 1"},"he":{"one":"%2$s == 1 and %3$s == 0","two":"%2$s == 2 and %3$s == 0","many":"%3$s == 0 and static::inRange(%1$s, false, array(0, 10)) and %1$s %% 10 == 0"},"hi":{"one":"%2$s == 0 or %1$s == 1"},"hr":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11 or %5$s %% 10 == 1 and %5$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14)) or static::inRange(%5$s %% 10, true, array(2, 4)) and static::inRange(%5$s %% 100, false, array(12, 14))"},"hsb":{"one":"%3$s == 0 and %2$s %% 100 == 1 or %5$s %% 100 == 1","two":"%3$s == 0 and %2$s %% 100 == 2 or %5$s %% 100 == 2","few":"%3$s == 0 and static::inRange(%2$s %% 100, true, array(3, 4)) or static::inRange(%5$s %% 100, true, array(3, 4))"},"hu":{"one":"%1$s == 1"},"hy":{"one":"static::inRange(%2$s, true, 0, 1)"},"id":[],"ig":[],"ii":[],"in":[],"is":{"one":"%6$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11 or %6$s != 0"},"it":{"one":"%2$s == 1 and %3$s == 0"},"iu":{"one":"%1$s == 1","two":"%1$s == 2"},"iw":{"one":"%2$s == 1 and %3$s == 0","two":"%2$s == 2 and %3$s == 0","many":"%3$s == 0 and static::inRange(%1$s, false, array(0, 10)) and %1$s %% 10 == 0"},"ja":[],"jbo":[],"jgo":{"one":"%1$s == 1"},"ji":{"one":"%2$s == 1 and %3$s == 0"},"jmc":{"one":"%1$s == 1"},"jv":[],"jw":[],"ka":{"one":"%1$s == 1"},"kab":{"one":"static::inRange(%2$s, true, 0, 1)"},"kaj":{"one":"%1$s == 1"},"kcg":{"one":"%1$s == 1"},"kde":[],"kea":[],"kk":{"one":"%1$s == 1"},"kkj":{"one":"%1$s == 1"},"kl":{"one":"%1$s == 1"},"km":[],"kn":{"one":"%2$s == 0 or %1$s == 1"},"ko":[],"ks":{"one":"%1$s == 1"},"ksb":{"one":"%1$s == 1"},"ksh":{"zero":"%1$s == 0","one":"%1$s == 1"},"ku":{"one":"%1$s == 1"},"kw":{"one":"%1$s == 1","two":"%1$s == 2"},"ky":{"one":"%1$s == 1"},"lag":{"zero":"%1$s == 0","one":"static::inRange(%2$s, true, 0, 1) and %1$s != 0"},"lb":{"one":"%1$s == 1"},"lg":{"one":"%1$s == 1"},"lkt":[],"ln":{"one":"static::inRange(%1$s, true, array(0, 1))"},"lo":[],"lt":{"one":"%1$s %% 10 == 1 and static::inRange(%1$s %% 100, false, array(11, 19))","few":"static::inRange(%1$s %% 10, true, array(2, 9)) and static::inRange(%1$s %% 100, false, array(11, 19))","many":"%5$s != 0"},"lv":{"zero":"%1$s %% 10 == 0 or static::inRange(%1$s %% 100, true, array(11, 19)) or %3$s == 2 and static::inRange(%5$s %% 100, true, array(11, 19))","one":"%1$s %% 10 == 1 and %1$s %% 100 != 11 or %3$s == 2 and %5$s %% 10 == 1 and %5$s %% 100 != 11 or %3$s != 2 and %5$s %% 10 == 1"},"mas":{"one":"%1$s == 1"},"mg":{"one":"static::inRange(%1$s, true, array(0, 1))"},"mgo":{"one":"%1$s == 1"},"mk":{"one":"%3$s == 0 and %2$s %% 10 == 1 or %5$s %% 10 == 1"},"ml":{"one":"%1$s == 1"},"mn":{"one":"%1$s == 1"},"mo":{"one":"%2$s == 1 and %3$s == 0","few":"%3$s != 0 or %1$s == 0 or %1$s != 1 and static::inRange(%1$s %% 100, true, array(1, 19))"},"mr":{"one":"%2$s == 0 or %1$s == 1"},"ms":[],"mt":{"one":"%1$s == 1","few":"%1$s == 0 or static::inRange(%1$s %% 100, true, array(2, 10))","many":"static::inRange(%1$s %% 100, true, array(11, 19))"},"my":[],"nah":{"one":"%1$s == 1"},"naq":{"one":"%1$s == 1","two":"%1$s == 2"},"nb":{"one":"%1$s == 1"},"nd":{"one":"%1$s == 1"},"ne":{"one":"%1$s == 1"},"nl":{"one":"%2$s == 1 and %3$s == 0"},"nn":{"one":"%1$s == 1"},"nnh":{"one":"%1$s == 1"},"no":{"one":"%1$s == 1"},"nqo":[],"nr":{"one":"%1$s == 1"},"nso":{"one":"static::inRange(%1$s, true, array(0, 1))"},"ny":{"one":"%1$s == 1"},"nyn":{"one":"%1$s == 1"},"om":{"one":"%1$s == 1"},"or":{"one":"%1$s == 1"},"os":{"one":"%1$s == 1"},"pa":{"one":"static::inRange(%1$s, true, array(0, 1))"},"pap":{"one":"%1$s == 1"},"pl":{"one":"%2$s == 1 and %3$s == 0","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14))","many":"%3$s == 0 and %2$s != 1 and static::inRange(%2$s %% 10, true, array(0, 1)) or %3$s == 0 and static::inRange(%2$s %% 10, true, array(5, 9)) or %3$s == 0 and static::inRange(%2$s %% 100, true, array(12, 14))"},"prg":{"zero":"%1$s %% 10 == 0 or static::inRange(%1$s %% 100, true, array(11, 19)) or %3$s == 2 and static::inRange(%5$s %% 100, true, array(11, 19))","one":"%1$s %% 10 == 1 and %1$s %% 100 != 11 or %3$s == 2 and %5$s %% 10 == 1 and %5$s %% 100 != 11 or %3$s != 2 and %5$s %% 10 == 1"},"ps":{"one":"%1$s == 1"},"pt":{"one":"static::inRange(%1$s, true, array(0, 2)) and %1$s != 2"},"pt-PT":{"one":"%1$s == 1 and %3$s == 0"},"rm":{"one":"%1$s == 1"},"ro":{"one":"%2$s == 1 and %3$s == 0","few":"%3$s != 0 or %1$s == 0 or %1$s != 1 and static::inRange(%1$s %% 100, true, array(1, 19))"},"rof":{"one":"%1$s == 1"},"root":[],"ru":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14))","many":"%3$s == 0 and %2$s %% 10 == 0 or %3$s == 0 and static::inRange(%2$s %% 10, true, array(5, 9)) or %3$s == 0 and static::inRange(%2$s %% 100, true, array(11, 14))"},"rwk":{"one":"%1$s == 1"},"sah":[],"saq":{"one":"%1$s == 1"},"se":{"one":"%1$s == 1","two":"%1$s == 2"},"seh":{"one":"%1$s == 1"},"ses":[],"sg":[],"sh":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11 or %5$s %% 10 == 1 and %5$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14)) or static::inRange(%5$s %% 10, true, array(2, 4)) and static::inRange(%5$s %% 100, false, array(12, 14))"},"shi":{"one":"%2$s == 0 or %1$s == 1","few":"static::inRange(%1$s, true, array(2, 10))"},"si":{"one":"static::inRange(%1$s, true, 0, 1) or %2$s == 0 and %5$s == 1"},"sk":{"one":"%2$s == 1 and %3$s == 0","few":"static::inRange(%2$s, true, array(2, 4)) and %3$s == 0","many":"%3$s != 0"},"sl":{"one":"%3$s == 0 and %2$s %% 100 == 1","two":"%3$s == 0 and %2$s %% 100 == 2","few":"%3$s == 0 and static::inRange(%2$s %% 100, true, array(3, 4)) or %3$s != 0"},"sma":{"one":"%1$s == 1","two":"%1$s == 2"},"smi":{"one":"%1$s == 1","two":"%1$s == 2"},"smj":{"one":"%1$s == 1","two":"%1$s == 2"},"smn":{"one":"%1$s == 1","two":"%1$s == 2"},"sms":{"one":"%1$s == 1","two":"%1$s == 2"},"sn":{"one":"%1$s == 1"},"so":{"one":"%1$s == 1"},"sq":{"one":"%1$s == 1"},"sr":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11 or %5$s %% 10 == 1 and %5$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14)) or static::inRange(%5$s %% 10, true, array(2, 4)) and static::inRange(%5$s %% 100, false, array(12, 14))"},"ss":{"one":"%1$s == 1"},"ssy":{"one":"%1$s == 1"},"st":{"one":"%1$s == 1"},"sv":{"one":"%2$s == 1 and %3$s == 0"},"sw":{"one":"%2$s == 1 and %3$s == 0"},"syr":{"one":"%1$s == 1"},"ta":{"one":"%1$s == 1"},"te":{"one":"%1$s == 1"},"teo":{"one":"%1$s == 1"},"th":[],"ti":{"one":"static::inRange(%1$s, true, array(0, 1))"},"tig":{"one":"%1$s == 1"},"tk":{"one":"%1$s == 1"},"tl":{"one":"%3$s == 0 and static::inRange(%2$s, true, 1, 2, 3) or %3$s == 0 and static::inRange(%2$s %% 10, false, 4, 6, 9) or %3$s != 0 and static::inRange(%5$s %% 10, false, 4, 6, 9)"},"tn":{"one":"%1$s == 1"},"to":[],"tr":{"one":"%1$s == 1"},"ts":{"one":"%1$s == 1"},"tzm":{"one":"static::inRange(%1$s, true, array(0, 1)) or static::inRange(%1$s, true, array(11, 99))"},"ug":{"one":"%1$s == 1"},"uk":{"one":"%3$s == 0 and %2$s %% 10 == 1 and %2$s %% 100 != 11","few":"%3$s == 0 and static::inRange(%2$s %% 10, true, array(2, 4)) and static::inRange(%2$s %% 100, false, array(12, 14))","many":"%3$s == 0 and %2$s %% 10 == 0 or %3$s == 0 and static::inRange(%2$s %% 10, true, array(5, 9)) or %3$s == 0 and static::inRange(%2$s %% 100, true, array(11, 14))"},"ur":{"one":"%2$s == 1 and %3$s == 0"},"uz":{"one":"%1$s == 1"},"ve":{"one":"%1$s == 1"},"vi":[],"vo":{"one":"%1$s == 1"},"vun":{"one":"%1$s == 1"},"wa":{"one":"static::inRange(%1$s, true, array(0, 1))"},"wae":{"one":"%1$s == 1"},"wo":[],"xh":{"one":"%1$s == 1"},"xog":{"one":"%1$s == 1"},"yi":{"one":"%2$s == 1 and %3$s == 0"},"yo":[],"zh":[],"zu":{"one":"%2$s == 0 or %1$s == 1"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/calendar.json b/Punic/data/pt-PT/calendar.json new file mode 100644 index 0000000..595363a --- /dev/null +++ b/Punic/data/pt-PT/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan","2":"fev","3":"mar","4":"abr","5":"mai","6":"jun","7":"jul","8":"ago","9":"set","10":"out","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":"janeiro","2":"fevereiro","3":"março","4":"abril","5":"maio","6":"junho","7":"julho","8":"agosto","9":"setembro","10":"outubro","11":"novembro","12":"dezembro"}},"stand-alone":{"abbreviated":{"1":"Jan","2":"Fev","3":"Mar","4":"Abr","5":"Mai","6":"Jun","7":"Jul","8":"Ago","9":"Set","10":"Out","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":"Janeiro","2":"Fevereiro","3":"Março","4":"Abril","5":"Maio","6":"Junho","7":"Julho","8":"Agosto","9":"Setembro","10":"Outubro","11":"Novembro","12":"Dezembro"}}},"days":{"format":{"abbreviated":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"narrow":{"sun":"D","mon":"S","tue":"T","wed":"Q","thu":"Q","fri":"S","sat":"S"},"short":{"sun":"do","mon":"sg","tue":"te","wed":"qu","thu":"qi","fri":"sx","sat":"sb"},"wide":{"sun":"domingo","mon":"segunda-feira","tue":"terça-feira","wed":"quarta-feira","thu":"quinta-feira","fri":"sexta-feira","sat":"sábado"}},"stand-alone":{"abbreviated":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"narrow":{"sun":"D","mon":"S","tue":"T","wed":"Q","thu":"Q","fri":"S","sat":"S"},"short":{"sun":"do","mon":"sg","tue":"te","wed":"qu","thu":"qi","fri":"sx","sat":"sb"},"wide":{"sun":"domingo","mon":"segunda-feira","tue":"terça-feira","wed":"quarta-feira","thu":"quinta-feira","fri":"sexta-feira","sat":"sábado"}}},"quarters":{"format":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1.º trimestre","2":"2.º trimestre","3":"3.º trimestre","4":"4.º trimestre"}},"stand-alone":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1.º trimestre","2":"2.º trimestre","3":"3.º trimestre","4":"4.º trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"tarde","am":"a.m.","morning":"manhã","night":"noite","noon":"meio-dia","pm":"p.m."},"narrow":{"am":"a.m.","noon":"m.d.","pm":"p.m."},"wide":{"afternoon":"tarde","am":"da manhã","morning":"manhã","night":"noite","noon":"meio-dia","pm":"da tarde"}},"stand-alone":{"abbreviated":{"afternoon":"tarde","am":"a.m.","morning":"manhã","night":"noite","noon":"meia-noite","pm":"p.m."},"narrow":{"am":"a.m.","noon":"m.d.","pm":"p.m."},"wide":{"afternoon":"tarde","am":"a.m.","morning":"manhã","night":"noite","noon":"meio-dia","pm":"p.m."}}},"eras":{"wide":{"0":"antes de Cristo","0-alt-variant":"antes da Era Comum","1":"depois de Cristo","1-alt-variant":"Era Comum"},"abbreviated":{"0":"a.C.","0-alt-variant":"a.E.C.","1":"d.C.","1-alt-variant":"E.C."},"narrow":{"0":"a.C.","0-alt-variant":"a.E.C.","1":"d.C.","1-alt-variant":"E.C."}},"dateFormats":{"full":"EEEE, d 'de' MMMM 'de' y","long":"d 'de' MMMM 'de' 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":"%2$s 'às' %1$s","long":"%2$s 'às' %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/dateFields.json b/Punic/data/pt-PT/dateFields.json new file mode 100644 index 0000000..8fd7c24 --- /dev/null +++ b/Punic/data/pt-PT/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} ano","relativeTimePattern-count-other":"dentro de {0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} ano","relativeTimePattern-count-other":"há {0} anos"}},"year-short":{"displayName":"ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} ano","relativeTimePattern-count-other":"dentro de {0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} ano","relativeTimePattern-count-other":"há {0} anos"}},"year-narrow":{"displayName":"ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} ano","relativeTimePattern-count-other":"+{0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} ano","relativeTimePattern-count-other":"-{0} anos"}},"quarter":{"displayName":"Trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} trimestre","relativeTimePattern-count-other":"dentro de {0} trimestres"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} trimestre","relativeTimePattern-count-other":"há {0} trimestres"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} trim.","relativeTimePattern-count-other":"dentro de {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} trim.","relativeTimePattern-count-other":"há {0} trim."}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} trim.","relativeTimePattern-count-other":"+{0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} trim.","relativeTimePattern-count-other":"-{0} trim."}},"month":{"displayName":"Mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} mês","relativeTimePattern-count-other":"dentro de {0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} mês","relativeTimePattern-count-other":"há {0} meses"}},"month-short":{"displayName":"mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} mês","relativeTimePattern-count-other":"dentro de {0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} mês","relativeTimePattern-count-other":"há {0} meses"}},"month-narrow":{"displayName":"mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mês","relativeTimePattern-count-other":"+{0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mês","relativeTimePattern-count-other":"-{0} meses"}},"week":{"displayName":"Semana","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} semana","relativeTimePattern-count-other":"dentro de {0} semanas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} semana","relativeTimePattern-count-other":"há {0} semanas"}},"week-short":{"displayName":"sem.","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} sem.","relativeTimePattern-count-other":"dentro de {0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} sem.","relativeTimePattern-count-other":"há {0} sem."}},"week-narrow":{"displayName":"sem.","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} sem.","relativeTimePattern-count-other":"+{0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} sem.","relativeTimePattern-count-other":"-{0} sem."}},"day":{"displayName":"Dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} dia","relativeTimePattern-count-other":"dentro de {0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} dia","relativeTimePattern-count-other":"há {0} dias"}},"day-short":{"displayName":"dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} dia","relativeTimePattern-count-other":"dentro de {0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} dia","relativeTimePattern-count-other":"há {0} dias"}},"day-narrow":{"displayName":"dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} dia","relativeTimePattern-count-other":"+{0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} dia","relativeTimePattern-count-other":"-{0} dias"}},"weekday":{"displayName":"Dia da semana"},"sun":{"relative-type--1":"domingo passado","relative-type-0":"este domingo","relative-type-1":"próximo domingo"},"sun-short":{"relative-type--1":"dom. passado","relative-type-0":"este dom.","relative-type-1":"próximo dom."},"sun-narrow":{"relative-type--1":"dom. passado","relative-type-0":"este dom.","relative-type-1":"próximo dom."},"mon":{"relative-type--1":"segunda-feira passada","relative-type-0":"esta segunda-feira","relative-type-1":"próxima segunda-feira"},"mon-short":{"relative-type--1":"seg. passada","relative-type-0":"esta seg.","relative-type-1":"próxima seg."},"mon-narrow":{"relative-type--1":"seg. passada","relative-type-0":"esta seg.","relative-type-1":"próxima seg."},"tue":{"relative-type--1":"terça-feira passada","relative-type-0":"esta terça-feira","relative-type-1":"próxima terça-feira"},"tue-short":{"relative-type--1":"ter. passada","relative-type-0":"esta ter.","relative-type-1":"próxima ter."},"tue-narrow":{"relative-type--1":"ter. passada","relative-type-0":"esta ter.","relative-type-1":"próxima ter."},"wed":{"relative-type--1":"quarta-feira passada","relative-type-0":"esta quarta-feira","relative-type-1":"próxima quarta-feira"},"wed-short":{"relative-type--1":"qua. passada","relative-type-0":"esta qua.","relative-type-1":"próxima qua."},"wed-narrow":{"relative-type--1":"qua. passada","relative-type-0":"esta qua.","relative-type-1":"próxima qua."},"thu":{"relative-type--1":"quinta-feira passada","relative-type-0":"esta quinta-feira","relative-type-1":"próxima quinta-feira"},"thu-short":{"relative-type--1":"qui. passada","relative-type-0":"esta qui.","relative-type-1":"próxima qui."},"thu-narrow":{"relative-type--1":"qui. passada","relative-type-0":"esta qui.","relative-type-1":"próxima qui."},"fri":{"relative-type--1":"sexta-feira passada","relative-type-0":"esta sexta-feira","relative-type-1":"próxima sexta-feira"},"fri-short":{"relative-type--1":"sex. passada","relative-type-0":"esta sex.","relative-type-1":"próxima sex."},"fri-narrow":{"relative-type--1":"sex. passada","relative-type-0":"esta sex.","relative-type-1":"próxima sex."},"sat":{"relative-type--1":"sábado passado","relative-type-0":"este sábado","relative-type-1":"próximo sábado"},"sat-short":{"relative-type--1":"sáb. passado","relative-type-0":"este sáb.","relative-type-1":"próximo sáb."},"sat-narrow":{"relative-type--1":"sáb. passado","relative-type-0":"este sáb.","relative-type-1":"próximo sáb."},"dayperiod":{"displayName":"Da manhã/da tarde"},"hour":{"displayName":"Hora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} hora","relativeTimePattern-count-other":"dentro de {0} horas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} hora","relativeTimePattern-count-other":"há {0} horas"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} h","relativeTimePattern-count-other":"dentro de {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} h","relativeTimePattern-count-other":"há {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minuto","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} minuto","relativeTimePattern-count-other":"dentro de {0} minutos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} minuto","relativeTimePattern-count-other":"há {0} minutos"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} min","relativeTimePattern-count-other":"dentro de {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} min","relativeTimePattern-count-other":"há {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} min","relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} min","relativeTimePattern-count-other":"-{0} min"}},"second":{"displayName":"Segundo","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} segundo","relativeTimePattern-count-other":"dentro de {0} segundos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} segundo","relativeTimePattern-count-other":"há {0} segundos"}},"second-short":{"displayName":"s","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"dentro de {0} s","relativeTimePattern-count-other":"dentro de {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"há {0} s","relativeTimePattern-count-other":"há {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Fuso horário"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/languages.json b/Punic/data/pt-PT/languages.json new file mode 100644 index 0000000..3de8b5b --- /dev/null +++ b/Punic/data/pt-PT/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abcázio","ace":"achém","ach":"acoli","ada":"adangme","ady":"adigue","ae":"avéstico","aeb":"aeb","af":"africânder","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"acadiano","akz":"akz","ale":"aleúte","aln":"aln","alt":"altai do sul","am":"amárico","an":"aragonês","ang":"inglês arcaico","anp":"angika","ar":"árabe","ar-001":"árabe moderno padrão","arc":"aramaico","arn":"mapuche","aro":"aro","arp":"arapaho","arq":"arq","arw":"arauaqui","ary":"ary","arz":"arz","as":"assamês","asa":"asu","ase":"ase","ast":"asturiano","av":"avaric","avk":"avk","awa":"awadhi","ay":"aimara","az":"azerbaijano","az-alt-short":"azeri","azb":"azb","ba":"bashkir","bal":"balúchi","ban":"balinês","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"bielorrusso","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"búlgaro","bho":"bhojpuri","bi":"bislamá","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibetano","bpy":"bpy","bqi":"bqi","br":"bretão","bra":"braj","brh":"brh","brx":"bodo","bs":"bósnio","bss":"akoose","bua":"buriat","bug":"buginese","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalão","cad":"caddo","car":"caribe","cay":"cayuga","cch":"atsam","ce":"chechene","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukese","chm":"mari","chn":"jargão chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheiene","ckb":"sorani curdo","co":"córsico","cop":"copta","cps":"cps","cr":"cree","crh":"turco da Crimeia","cs":"checo","csb":"kashubian","cu":"eslavo eclesiástico","cv":"chuvash","cy":"galês","da":"dinamarquês","dak":"dacota","dar":"dargwa","dav":"taita","de":"alemão","de-AT":"alemão austríaco","de-CH":"alto alemão suíço","del":"delaware","den":"slave","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"baixo sórabio","dtp":"dtp","dua":"duala","dum":"holandês médio","dv":"divehi","dyo":"jola-fonyi","dyu":"diula","dz":"dzonga","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efique","egl":"egl","egy":"egípcio clássico","eka":"ekajuk","el":"grego","elx":"elamite","en":"inglês","en-AU":"inglês australiano","en-CA":"inglês canadiano","en-GB":"inglês britânico","en-GB-alt-short":"inglês (RU)","en-US":"inglês americano","en-US-alt-short":"inglês (EUA)","enm":"inglês medieval","eo":"esperanto","es":"espanhol","es-419":"espanhol latino-americano","es-ES":"espanhol europeu","es-MX":"espanhol do México","esu":"esu","et":"estónio","eu":"basco","ewo":"ewondo","ext":"ext","fa":"persa","fan":"fangue","fat":"fanti","ff":"fula","fi":"finlandês","fil":"filipino","fit":"fit","fj":"fijiano","fo":"feroês","fon":"fom","fr":"francês","fr-CA":"francês canadiano","fr-CH":"francês suíço","frc":"frc","frm":"francês medieval","fro":"francês arcaico","frp":"frp","frr":"frísio setentrional","frs":"frísio oriental","fur":"friulano","fy":"frísico ocidental","ga":"irlandês","gaa":"ga","gag":"gagauz","gan":"gan","gay":"gayo","gba":"gbaia","gbz":"gbz","gd":"gaélico escocês","gez":"geez","gil":"gilbertês","gl":"galego","glk":"glk","gmh":"alemão medieval alto","gn":"guarani","goh":"alemão arcaico alto","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gótico","grb":"grebo","grc":"grego clássico","gsw":"alemão suíço","gu":"guzerate","guc":"guc","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"haúça","hai":"haida","hak":"hak","haw":"havaiano","he":"hebraico","hi":"hindi","hif":"hif","hil":"hiligaynon","hit":"hitita","hmn":"hmong","ho":"hiri motu","hr":"croata","hsb":"alto sórabio","hsn":"hsn","ht":"haitiano","hu":"húngaro","hup":"hupa","hy":"arménio","hz":"herero","ia":"interlíngua","iba":"iban","ibb":"ibibio","id":"indonésio","ie":"interlingue","ig":"igbo","ii":"sichuan yi","ik":"inupiaq","ilo":"ilocano","inh":"inguche","io":"ido","is":"islandês","it":"italiano","iu":"inuktitut","izh":"izh","ja":"japonês","jam":"jam","jbo":"lojban","jgo":"nguemba","jmc":"machame","jpr":"judaico-persa","jrb":"judaico-arábico","jut":"jut","jv":"javanês","ka":"georgiano","kaa":"kara-kalpak","kab":"kabyle","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardiano","kbl":"kanembu","kcg":"tyap","kde":"maconde","kea":"cabo-verdiano","ken":"ken","kfo":"koro","kg":"conguês","kgp":"kgp","kha":"khasi","kho":"khotanês","khq":"koyra chiini","khw":"khw","ki":"quicuio","kiu":"kiu","kj":"kuanyama","kk":"cazaque","kkj":"kako","kl":"groenlandês","kln":"kalenjin","km":"cmer","kmb":"quimbundo","kn":"canarim","ko":"coreano","koi":"komi-permyak","kok":"concani","kos":"kosraean","kpe":"kpelle","kr":"canúri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"idioma carélio","kru":"kurukh","ks":"caxemira","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"curdo","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"córnico","ky":"quirguiz","la":"latim","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburguês","lez":"lezghiano","lfn":"lfn","lg":"ganda","li":"limburguês","lij":"lij","liv":"liv","lkt":"lacota","lmo":"lmo","ln":"lingala","lo":"laosiano","lol":"mongo","loz":"lozi","lt":"lituano","ltg":"ltg","lu":"luba-catanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyia","lv":"letão","lzh":"lzh","lzz":"lzz","mad":"madurês","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandinga","mas":"massai","mde":"maba","mdf":"mocsa","mdr":"mandar","men":"mende","mer":"meru","mfe":"morisyen","mg":"malgaxe","mga":"irlandês, medieval","mgh":"macua","mgo":"meta’","mh":"marshalês","mi":"maori","mic":"miquemaque","min":"minangkabau","mk":"macedónio","ml":"malaiala","mn":"mongol","mnc":"manchu","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marata","mrj":"mrj","ms":"malaio","mt":"maltês","mua":"mundang","mul":"idiomas múltiplos","mus":"creek","mwl":"mirandês","mwr":"marwari","mwv":"mwv","my":"birmanês","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauruano","nan":"nan","nap":"napolitano","naq":"nama","nb":"norueguês bokmål","nd":"ndebele do norte","nds":"baixo alemão","ne":"nepali","new":"newari","ng":"dongo","nia":"nias","niu":"niueano","njo":"njo","nl":"holandês","nl-BE":"flamengo","nmg":"kwasio","nn":"norueguês nynorsk","nnh":"ngiemboon","no":"norueguês","nog":"nogai","non":"norse, old","nov":"nov","nqo":"n’ko","nr":"ndebele do sul","nso":"soto setentrional","nus":"nuer","nv":"navajo","nwc":"newari clássico","ny":"nianja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"provençal","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossético","osa":"osage","ota":"turco otomano","pa":"panjabi","pag":"pangasinã","pal":"pálavi","pam":"pampanga","pap":"papiamento","pau":"palauano","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"persa arcaico","pfl":"pfl","phn":"fenício","pi":"páli","pl":"polaco","pms":"pms","pnt":"pnt","pon":"pohnpeian","prg":"prg","pro":"provençal, arcaico","ps":"pastó","ps-alt-variant":"pushto","pt":"português","pt-BR":"português do Brasil","pt-PT":"português europeu","qu":"quíchua","quc":"quiché","qug":"qug","raj":"rajastani","rap":"rapanui","rar":"rarotongano","rgn":"rgn","rif":"rif","rm":"romanche","rn":"rundi","ro":"romeno","ro-MD":"moldávio","rof":"rombo","rom":"romanês","root":"root","rtm":"rtm","ru":"russo","rue":"rue","rug":"rug","rup":"aromeno","rw":"kinyarwanda","rwk":"rwa","sa":"sânscrito","sad":"sandawe","sah":"sakha","sam":"aramaico samaritano","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardo","scn":"siciliano","sco":"escocês","sd":"sindi","sdc":"sdc","se":"sami do norte","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"koyraboro senni","sg":"sango","sga":"irlandês arcaico","sgs":"sgs","sh":"servo-croata","shi":"tachelhit","shn":"shan","shu":"árabe do Chade","si":"cingalês","sid":"sidamo","sk":"eslovaco","sl":"esloveno","sli":"sli","sly":"sly","sm":"samoano","sma":"sami do sul","smj":"lule sami","smn":"inari sami","sms":"skolt sami","sn":"shona","snk":"soninquê","so":"somali","sog":"sogdiano","sq":"albanês","sr":"sérvio","srn":"idioma surinamês","srr":"serere","ss":"swati","ssy":"saho","st":"soto do sul","stq":"stq","su":"sundanês","suk":"sukuma","sus":"sosso","sux":"sumério","sv":"sueco","sw":"suaíli","swb":"língua comoriana","swc":"suaíli do Congo","syc":"siríaco clássico","syr":"siríaco","szl":"szl","ta":"tâmil","tcy":"tcy","te":"telugu","tem":"timne","teo":"teso","ter":"tereno","tet":"tétum","tg":"tajique","th":"tailandês","ti":"tigrínia","tig":"tigré","tiv":"tiv","tk":"turcomano","tkl":"toquelauano","tkr":"tkr","tl":"tagalogue","tlh":"klingon","tli":"tlinguite","tly":"tly","tmh":"tamaxeque","tn":"tswana","to":"tonga","tog":"toganês","tpi":"tok pisin","tr":"turco","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshian","tt":"tatar","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluano","tw":"twi","twq":"tasawaq","ty":"taitiano","tyv":"tuviniano","tzm":"tamazight do Atlas Central","udm":"udmurt","ug":"uigur","uga":"ugarítico","uk":"ucraniano","umb":"umbundu","und":"idioma desconhecido","ur":"urdu","uz":"usbeque","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamita","vls":"vls","vmf":"vmf","vo":"volapuque","vot":"votic","vro":"vro","vun":"vunjo","wa":"valão","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"uólofe","wuu":"wuu","xal":"kalmyk","xh":"xosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapese","yav":"yangben","ybb":"yemba","yi":"iídiche","yo":"ioruba","yrl":"yrl","yue":"cantonês","za":"zhuang","zap":"zapoteca","zbl":"símbolos blis","zea":"zea","zen":"zenaga","zgh":"tamazight padrão de Marrocos","zh":"chinês","zh-Hans":"chinês simplificado","zh-Hant":"chinês tradicional","zu":"zulu","zun":"zunhi","zxx":"sem conteúdo linguístico","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/pt-PT/listPatterns.json b/Punic/data/pt-PT/listPatterns.json new file mode 100644 index 0000000..ee49ee6 --- /dev/null +++ b/Punic/data/pt-PT/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/localeDisplayNames.json b/Punic/data/pt-PT/localeDisplayNames.json new file mode 100644 index 0000000..41d1374 --- /dev/null +++ b/Punic/data/pt-PT/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendário","colAlternate":"Ignorar Ordenação de Símbolos","colBackwards":"Ordenação de Acentos Invertida","colCaseFirst":"Disposição de Maiúsculas/Minúsculas","colCaseLevel":"Ordenação Sensível a Maiúsculas e Minúsculas","colHiraganaQuaternary":"Ordenação Kana","colNormalization":"Ordenação Normalizada","colNumeric":"Ordenação Numérica","colStrength":"Força da Ordenação","collation":"Ordenação","currency":"Moeda","numbers":"Números","timezone":"Fuso Horário","va":"Variante Local","variableTop":"Ordenar Como Símbolos","x":"Utilização Privada"},"types":{"numbers":{"vaii":"Dígitos Vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"Calendário da República da China"},"colStrength":{"tertiary":"Ordenar Acentos/Tipo de Letra/Largura"},"colCaseFirst":{"upper":"Ordenar Maiúsculas Primeiro"},"colBackwards":{"yes":"Ordenar Acentos Inversamente"},"colCaseLevel":{"yes":"Ordenar Sensível a Maiúsculas/Minúsculas"},"colHiraganaQuaternary":{"yes":"Ordenar Kana Diferentemente"},"colNormalization":{"yes":"Ordenar Unicode Normalizado"},"colNumeric":{"yes":"Ordenar Dígitos Numericamente"},"colAlternate":{"shifted":"Ordenar Símbolos Ignorados"}},"codePatterns":{"language":"Idioma: %1$s","script":"Escrita: %1$s","territory":"Região: %1$s"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/numbers.json b/Punic/data/pt-PT/numbers.json new file mode 100644 index 0000000..af8a5c6 --- /dev/null +++ b/Punic/data/pt-PT/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/pt-PT/territories.json b/Punic/data/pt-PT/territories.json new file mode 100644 index 0000000..4bb82e9 --- /dev/null +++ b/Punic/data/pt-PT/territories.json @@ -0,0 +1 @@ +{"001":"Mundo","002":"África","003":"América do Norte","005":"América do Sul","009":"Oceânia","011":"África Ocidental","013":"América Central","014":"África Oriental","015":"Norte de África","017":"África Central","018":"África Austral","019":"Américas","021":"América Setentrional","029":"Caraíbas","030":"Ásia Oriental","034":"Ásia do Sul","035":"Sudeste Asiático","039":"Europa do Sul","053":"Australásia","054":"Melanésia","057":"Região da Micronésia","061":"Polinésia","142":"Ásia","143":"Ásia Central","145":"Ásia Ocidental","150":"Europa","151":"Europa Oriental","154":"Europa do Norte","155":"Europa Ocidental","419":"América Latina","AC":"Ilha de Ascensão","AD":"Andorra","AE":"Emirados Árabes Unidos","AF":"Afeganistão","AG":"Antígua e Barbuda","AI":"Anguila","AL":"Albânia","AM":"Arménia","AN":"Antilhas Holandesas","AO":"Angola","AQ":"Antártida","AR":"Argentina","AS":"Samoa Americana","AT":"Áustria","AU":"Austrália","AW":"Aruba","AX":"Ilhas Åland","AZ":"Azerbaijão","BA":"Bósnia e Herzegovina","BB":"Barbados","BD":"Bangladesh","BE":"Bélgica","BF":"Burquina Faso","BG":"Bulgária","BH":"Barém","BI":"Burundi","BJ":"Benim","BL":"São Bartolomeu","BM":"Bermudas","BN":"Brunei","BO":"Bolívia","BQ":"Países Baixos Caribenhos","BR":"Brasil","BS":"Bahamas","BT":"Butão","BV":"Ilha Bouvet","BW":"Botswana","BY":"Bielorrússia","BZ":"Belize","CA":"Canadá","CC":"Ilhas Cocos","CD":"Congo-Kinshasa","CD-alt-variant":"República Democrática do Congo","CF":"República Centro-Africana","CG":"Congo-Brazzaville","CG-alt-variant":"República do Congo","CH":"Suíça","CI":"Costa do Marfim","CI-alt-variant":"CI","CK":"Ilhas Cook","CL":"Chile","CM":"Camarões","CN":"China","CO":"Colômbia","CP":"Ilha de Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cabo Verde","CW":"Curaçau","CX":"Ilha do Natal","CY":"Chipre","CZ":"República Checa","DE":"Alemanha","DG":"Diego Garcia","DJ":"Jibuti","DK":"Dinamarca","DM":"Domínica","DO":"República Dominicana","DZ":"Argélia","EA":"Ceuta e Melilha","EC":"Equador","EE":"Estónia","EG":"Egipto","EH":"Saara Ocidental","ER":"Eritreia","ES":"Espanha","ET":"Etiópia","EU":"União Europeia","FI":"Finlândia","FJ":"Fiji","FK":"Ilhas Falkland","FK-alt-variant":"Ilhas Malvinas","FM":"Micronésia","FO":"Ilhas Faroé","FR":"França","GA":"Gabão","GB":"Reino Unido","GB-alt-short":"RU","GD":"Granada","GE":"Geórgia","GF":"Guiana Francesa","GG":"Guernsey","GH":"Gana","GI":"Gibraltar","GL":"Gronelândia","GM":"Gâmbia","GN":"Guiné","GP":"Guadalupe","GQ":"Guiné Equatorial","GR":"Grécia","GS":"Ilhas Geórgia do Sul e Sandwich do Sul","GT":"Guatemala","GU":"Guame","GW":"Guiné-Bissau","GY":"Guiana","HK":"Hong Kong, RAE da China","HK-alt-short":"Hong Kong","HM":"Ilhas Heard e McDonald","HN":"Honduras","HR":"Croácia","HT":"Haiti","HU":"Hungria","IC":"Ilhas Canárias","ID":"Indonésia","IE":"Irlanda","IL":"Israel","IM":"Ilha de Man","IN":"Índia","IO":"Território Britânico do Oceano Índico","IQ":"Iraque","IR":"Irão","IS":"Islândia","IT":"Itália","JE":"Jersey","JM":"Jamaica","JO":"Jordânia","JP":"Japão","KE":"Quénia","KG":"Quirguistão","KH":"Camboja","KI":"Quiribati","KM":"Comores","KN":"São Cristóvão e Nevis","KP":"Coreia do Norte","KR":"Coreia do Sul","KW":"Kuwait","KY":"Ilhas Caimão","KZ":"Cazaquistão","LA":"Laos","LB":"Líbano","LC":"Santa Lúcia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Libéria","LS":"Lesoto","LT":"Lituânia","LU":"Luxemburgo","LV":"Letónia","LY":"Líbia","MA":"Marrocos","MC":"Mónaco","MD":"Moldávia","ME":"Montenegro","MF":"São Martinho","MG":"Madagáscar","MH":"Ilhas Marshall","MK":"Macedónia","MK-alt-variant":"Antiga República Jugoslava da Macedónia","ML":"Mali","MM":"Mianmar (Birmânia)","MN":"Mongólia","MO":"Macau, RAE da China","MO-alt-short":"Macau","MP":"Ilhas Marianas do Norte","MQ":"Martinica","MR":"Mauritânia","MS":"Monserrate","MT":"Malta","MU":"Maurícia","MV":"Maldivas","MW":"Malawi","MX":"México","MY":"Malásia","MZ":"Moçambique","NA":"Namíbia","NC":"Nova Caledónia","NE":"Níger","NF":"Ilha Norfolk","NG":"Nigéria","NI":"Nicarágua","NL":"Países Baixos","NO":"Noruega","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nova Zelândia","OM":"Omã","PA":"Panamá","PE":"Peru","PF":"Polinésia Francesa","PG":"Papua-Nova Guiné","PH":"Filipinas","PK":"Paquistão","PL":"Polónia","PM":"Saint Pierre e Miquelon","PN":"Pitcairn","PR":"Porto Rico","PS":"Território Palestiniano","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguai","QA":"Catar","QO":"Oceânia Insular","RE":"Reunião","RO":"Roménia","RS":"Sérvia","RU":"Rússia","RW":"Ruanda","SA":"Arábia Saudita","SB":"Ilhas Salomão","SC":"Seicheles","SD":"Sudão","SE":"Suécia","SG":"Singapura","SH":"Santa Helena","SI":"Eslovénia","SJ":"Svalbard e Jan Mayen","SK":"Eslováquia","SL":"Serra Leoa","SM":"São Marino","SN":"Senegal","SO":"Somália","SR":"Suriname","SS":"Sudão do Sul","ST":"São Tomé e Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Síria","SZ":"Suazilândia","TA":"Tristão da Cunha","TC":"Ilhas Turcas e Caicos","TD":"Chade","TF":"Territórios Franceses do Sul","TG":"Togo","TH":"Tailândia","TJ":"Tajiquistão","TK":"Toquelau","TL":"Timor-Leste","TL-alt-variant":"República Democrática de Timor-Leste","TM":"Turquemenistão","TN":"Tunísia","TO":"Tonga","TR":"Turquia","TT":"Trindade e Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzânia","UA":"Ucrânia","UG":"Uganda","UM":"Ilhas Distantes dos EUA","US":"Estados Unidos","US-alt-short":"EUA","UY":"Uruguai","UZ":"Uzbequistão","VA":"Cidade do Vaticano","VC":"São Vicente e Granadinas","VE":"Venezuela","VG":"Ilhas Virgens Britânicas","VI":"Ilhas Virgens dos EUA","VN":"Vietname","VU":"Vanuatu","WF":"Wallis e Futuna","WS":"Samoa","XK":"Kosovo","YE":"Iémen","YT":"Maiote","ZA":"África do Sul","ZM":"Zâmbia","ZW":"Zimbabué","ZZ":"Região desconhecida"} \ No newline at end of file diff --git a/Punic/data/pt-PT/timeZoneNames.json b/Punic/data/pt-PT/timeZoneNames.json new file mode 100644 index 0000000..74dcf83 --- /dev/null +++ b/Punic/data/pt-PT/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Hora de %1$s","regionFormat-type-standard":"Hora padrão de %1$s","regionFormat-type-daylight":"Hora de Verão de %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguila"},"Antigua":{"exemplarCity":"Antígua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Assunção"},"Bahia":{"exemplarCity":"Baía"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Caiena"},"Cayman":{"exemplarCity":"Caimão"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curaçau"},"Danmarkshavn":{"exemplarCity":"Danmarkshavn"},"Dawson":{"exemplarCity":"Dawson"},"Dawson_Creek":{"exemplarCity":"Dawson Creek"},"Denver":{"exemplarCity":"Denver"},"Detroit":{"exemplarCity":"Detroit"},"Dominica":{"exemplarCity":"Domínica"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Nuuk"},"Goose_Bay":{"exemplarCity":"Goose Bay"},"Grand_Turk":{"exemplarCity":"Grand Turk"},"Grenada":{"exemplarCity":"Granada"},"Guadeloupe":{"exemplarCity":"Guadalupe"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guaiaquil"},"Guyana":{"exemplarCity":"Guiana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianápolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Maceió"},"Managua":{"exemplarCity":"Manágua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Cidade do México"},"Miquelon":{"exemplarCity":"Miquelon"},"Moncton":{"exemplarCity":"Moncton"},"Monterrey":{"exemplarCity":"Monterrey"},"Montevideo":{"exemplarCity":"Montevideu"},"Montserrat":{"exemplarCity":"Montserrat"},"Nassau":{"exemplarCity":"Nassau"},"New_York":{"exemplarCity":"Nova Iorque"},"Nipigon":{"exemplarCity":"Nipigon"},"Nome":{"exemplarCity":"Nome"},"Noronha":{"exemplarCity":"Fernando de Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, Dakota do Norte"},"Center":{"exemplarCity":"Center, Dakota do Norte"},"New_Salem":{"exemplarCity":"New Salen, Dakota do Norte"}},"Ojinaga":{"exemplarCity":"Ojinaga"},"Panama":{"exemplarCity":"Panamá"},"Pangnirtung":{"exemplarCity":"Pangnirtung"},"Paramaribo":{"exemplarCity":"Paramaribo"},"Phoenix":{"exemplarCity":"Phoenix"},"Port-au-Prince":{"exemplarCity":"Port-au-Prince"},"Port_of_Spain":{"exemplarCity":"Porto de Espanha"},"Porto_Velho":{"exemplarCity":"Porto Velho"},"Puerto_Rico":{"exemplarCity":"Porto 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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"São Bartolomeu"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"São Cristóvão"},"St_Lucia":{"exemplarCity":"Santa Lúcia"},"St_Thomas":{"exemplarCity":"St. Thomas"},"St_Vincent":{"exemplarCity":"São Vicente"},"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":"Açores"},"Bermuda":{"exemplarCity":"Bermudas"},"Canary":{"exemplarCity":"Canárias"},"Cape_Verde":{"exemplarCity":"Cabo Verde"},"Faeroe":{"exemplarCity":"Faroé"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reiquiavique"},"South_Georgia":{"exemplarCity":"Geórgia do Sul"},"St_Helena":{"exemplarCity":"Santa Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amesterdão"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atenas"},"Belgrade":{"exemplarCity":"Belgrado"},"Berlin":{"exemplarCity":"Berlim"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelas"},"Bucharest":{"exemplarCity":"Bucareste"},"Budapest":{"exemplarCity":"Budapeste"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhaga"},"Dublin":{"long":{"daylight":"Hora de Verão da Irlanda"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsínquia"},"Isle_of_Man":{"exemplarCity":"Ilha de Man"},"Istanbul":{"exemplarCity":"Istambul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Caliningrado"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisboa"},"Ljubljana":{"exemplarCity":"Liubliana"},"London":{"long":{"daylight":"Hora de Verão Britânica"},"exemplarCity":"Londres"},"Luxembourg":{"exemplarCity":"Luxemburgo"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Mónaco"},"Moscow":{"exemplarCity":"Moscovo"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"São Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sófia"},"Stockholm":{"exemplarCity":"Estocolmo"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vaticano"},"Vienna":{"exemplarCity":"Viena"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgogrado"},"Warsaw":{"exemplarCity":"Varsóvia"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizhia"},"Zurich":{"exemplarCity":"Zurique"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Acra"},"Addis_Ababa":{"exemplarCity":"Adis-Abeba"},"Algiers":{"exemplarCity":"Argel"},"Asmera":{"exemplarCity":"Asmara"},"Bamako":{"exemplarCity":"Bamaco"},"Bangui":{"exemplarCity":"Bangui"},"Banjul":{"exemplarCity":"Banjul"},"Bissau":{"exemplarCity":"Bissau"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzaville"},"Bujumbura":{"exemplarCity":"Bujumbura"},"Cairo":{"exemplarCity":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conacri"},"Dakar":{"exemplarCity":"Dacar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Jibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiún"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Joanesburgo"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Campala"},"Khartoum":{"exemplarCity":"Cartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lomé"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaca"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadíscio"},"Monrovia":{"exemplarCity":"Monróvia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamei"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunes"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Adem"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amã"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Asgabate"},"Baghdad":{"exemplarCity":"Bagdade"},"Bahrain":{"exemplarCity":"Barém"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Banguecoque"},"Beirut":{"exemplarCity":"Beirute"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcutá"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasco"},"Dhaka":{"exemplarCity":"Daca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Duchambe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jacarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalém"},"Kabul":{"exemplarCity":"Cabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Carachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Catmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Macassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Mascate"},"Nicosia":{"exemplarCity":"Nicósia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riade"},"Saigon":{"exemplarCity":"Cidade de Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sacalina"},"Samarkand":{"exemplarCity":"Samarcanda"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Xangai"},"Singapore":{"exemplarCity":"Singapura"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipé"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teerão"},"Thimphu":{"exemplarCity":"Timphu"},"Tokyo":{"exemplarCity":"Tóquio"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Ecaterimburgo"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Ilha do Natal"},"Cocos":{"exemplarCity":"Ilhas Cocos"},"Comoro":{"exemplarCity":"Comores"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldivas"},"Mauritius":{"exemplarCity":"Maurícia"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunião"}},"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":"Ilha de Lord Howe"},"Melbourne":{"exemplarCity":"Melbourne"},"Perth":{"exemplarCity":"Perth"},"Sydney":{"exemplarCity":"Sydney"}},"Pacific":{"Apia":{"exemplarCity":"Ápia"},"Auckland":{"exemplarCity":"Auckland"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Ilha da Páscoa"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"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":"Nouméa"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palau"},"Pitcairn":{"exemplarCity":"Ilhas Pitcairn"},"Ponape":{"exemplarCity":"Pohnpei"},"Port_Moresby":{"exemplarCity":"Port Moresby"},"Rarotonga":{"exemplarCity":"Rarotonga"},"Saipan":{"exemplarCity":"Saipan"},"Tahiti":{"exemplarCity":"Taiti"},"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":"Vostok"}},"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":"Cidade desconhecida"}}},"metazone":{"Acre":{"long":{"generic":"Hora do Acre","standard":"Hora Padrão do Acre","daylight":"Hora de Verão do Acre"}},"Afghanistan":{"long":{"standard":"Hora do Afeganistão"}},"Africa_Central":{"long":{"standard":"Hora da África Central"}},"Africa_Eastern":{"long":{"standard":"Hora da África Oriental"}},"Africa_Southern":{"long":{"standard":"Hora da África do Sul"}},"Africa_Western":{"long":{"generic":"Hora da África Ocidental","standard":"Hora Padrão da África Ocidental","daylight":"Hora de Verão da África Ocidental"}},"Alaska":{"long":{"generic":"Hora do Alasca","standard":"Hora Padrão do Alasca","daylight":"Hora de Verão do Alasca"}},"Almaty":{"long":{"generic":"Hora de Almaty","standard":"Hora Padrão de Almaty","daylight":"Hora de Verão de Almaty"}},"Amazon":{"long":{"generic":"Hora do Amazonas","standard":"Hora Padrão do Amazonas","daylight":"Hora de Verão do Amazonas"}},"America_Central":{"long":{"generic":"Hora Central","standard":"Hora Padrão Central","daylight":"Hora de Verão Central"}},"America_Eastern":{"long":{"generic":"Hora Oriental","standard":"Hora Padrão Oriental","daylight":"Hora de Verão Oriental"}},"America_Mountain":{"long":{"generic":"Hora da Montanha","standard":"Hora Padrão da Montanha","daylight":"Hora de Verão da Montanha"}},"America_Pacific":{"long":{"generic":"Hora do Pacífico","standard":"Hora Padrão do Pacífico","daylight":"Hora de Verão do Pacífico"}},"Anadyr":{"long":{"generic":"Hora de Anadyr","standard":"Hora Padrão de Anadyr","daylight":"Hora de Verão de Anadyr"}},"Apia":{"long":{"generic":"Horário de Apia","standard":"Horário Padrão de Apia","daylight":"Horário de Verão de Apia"}},"Aqtau":{"long":{"generic":"Hora de Aqtau","standard":"Hora Padrão de Aqtau","daylight":"Hora de Verão de Aqtau"}},"Aqtobe":{"long":{"generic":"Hora de Aqtobe","standard":"Hora Padrão de Aqtobe","daylight":"Hora de Verão de Aqtobe"}},"Arabian":{"long":{"generic":"Hora da Arábia","standard":"Hora Padrão da Arábia","daylight":"Hora de Verão da Arábia"}},"Argentina":{"long":{"generic":"Hora da Argentina","standard":"Hora Padrão da Argentina","daylight":"Hora de Verão da Argentina"}},"Argentina_Western":{"long":{"generic":"Hora da Argentina Ocidental","standard":"Hora Padrão da Argentina Ocidental","daylight":"Hora de Verão da Argentina Ocidental"}},"Armenia":{"long":{"generic":"Hora da Arménia","standard":"Hora Padrão da Arménia","daylight":"Hora de Verão da Arménia"}},"Atlantic":{"long":{"generic":"Hora do Atlântico","standard":"Hora Padrão do Atlântico","daylight":"Hora de Verão do Atlântico"}},"Australia_Central":{"long":{"generic":"Hora da Austrália Central","standard":"Hora Padrão da Austrália Central","daylight":"Hora de Verão da Austrália Central"}},"Australia_CentralWestern":{"long":{"generic":"Hora da Austrália Central Ocidental","standard":"Hora Padrão da Austrália Central Ocidental","daylight":"Hora de Verão da Austrália Central Ocidental"}},"Australia_Eastern":{"long":{"generic":"Hora da Austrália Oriental","standard":"Hora Padrão da Austrália Oriental","daylight":"Hora de Verão da Austrália Oriental"}},"Australia_Western":{"long":{"generic":"Hora da Austrália Ocidental","standard":"Hora Padrão da Austrália Ocidental","daylight":"Hora de Verão da Austrália Ocidental"}},"Azerbaijan":{"long":{"generic":"Hora do Azerbaijão","standard":"Hora Padrão do Azerbaijão","daylight":"Hora de Verão do Azerbaijão"}},"Azores":{"long":{"generic":"Hora dos Açores","standard":"Hora Padrão dos Açores","daylight":"Hora de Verão dos Açores"},"short":{"generic":"AZOT","standard":"AZOT","daylight":"AZOST"}},"Bangladesh":{"long":{"generic":"Hora do Bangladesh","standard":"Hora Padrão do Bangladesh","daylight":"Hora de Verão do Bangladesh"}},"Bhutan":{"long":{"standard":"Hora do Butão"}},"Bolivia":{"long":{"standard":"Hora da Bolívia"}},"Brasilia":{"long":{"generic":"Hora de Brasília","standard":"Hora Padrão de Brasília","daylight":"Hora de Verão de Brasília"}},"Brunei":{"long":{"standard":"Hora do Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Hora de Cabo Verde","standard":"Hora Padrão de Cabo Verde","daylight":"Hora de Verão de Cabo Verde"}},"Chamorro":{"long":{"standard":"Hora Padrão do Chamorro"}},"Chatham":{"long":{"generic":"Hora do Chatham","standard":"Hora Padrão do Chatham","daylight":"Hora de Verão do Chatham"}},"Chile":{"long":{"generic":"Hora do Chile","standard":"Hora Padrão do Chile","daylight":"Hora de Verão do Chile"}},"China":{"long":{"generic":"Hora da China","standard":"Hora Padrão da China","daylight":"Hora de Verão da China"}},"Choibalsan":{"long":{"generic":"Hora de Choibalsan","standard":"Hora Padrão de Choibalsan","daylight":"Hora de Verão de Choibalsan"}},"Christmas":{"long":{"standard":"Hora da Ilha do Natal"}},"Cocos":{"long":{"standard":"Hora das Ilhas Cocos"}},"Colombia":{"long":{"generic":"Hora da Colômbia","standard":"Hora Padrão da Colômbia","daylight":"Hora de Verão da Colômbia"}},"Cook":{"long":{"generic":"Hora das Ilhas Cook","standard":"Hora Padrão das Ilhas Cook","daylight":"Hora de Verão das Ilhas Cook"}},"Cuba":{"long":{"generic":"Hora de Cuba","standard":"Hora Padrão de Cuba","daylight":"Hora de Verão de Cuba"}},"Davis":{"long":{"standard":"Hora de Davis"}},"DumontDUrville":{"long":{"standard":"Hora de Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Hora de Timor Leste"}},"Easter":{"long":{"generic":"Hora da Ilha da Páscoa","standard":"Hora Padrão da Ilha da Páscoa","daylight":"Hora de Verão da Ilha da Páscoa"}},"Ecuador":{"long":{"standard":"Hora do Equador"}},"Europe_Central":{"long":{"generic":"Hora da Europa Central","standard":"Hora Padrão da Europa Central","daylight":"Hora de Verão da Europa Central"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Hora da Europa Oriental","standard":"Hora Padrão da Europa Oriental","daylight":"Hora de Verão da Europa Oriental"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Hora do Extremo Leste da Europa"}},"Europe_Western":{"long":{"generic":"Hora da Europa Ocidental","standard":"Hora Padrão da Europa Ocidental","daylight":"Hora de Verão da Europa Ocidental"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Hora das Ilhas Falkland","standard":"Hora Padrão das Ilhas Falkland","daylight":"Hora de Verão das Ilhas Falkland"}},"Fiji":{"long":{"generic":"Hora de Fiji","standard":"Hora Padrão de Fiji","daylight":"Hora de Verão de Fiji"}},"French_Guiana":{"long":{"standard":"Hora da Guiana Francesa"}},"French_Southern":{"long":{"standard":"Hora das Terras Austrais e Antárcticas Francesas"}},"GMT":{"long":{"standard":"Hora de Greenwich"}},"Galapagos":{"long":{"standard":"Hora das Galápagos"}},"Gambier":{"long":{"standard":"Hora de Gambier"}},"Georgia":{"long":{"generic":"Hora da Geórgia","standard":"Hora Padrão da Geórgia","daylight":"Hora de Verão da Geórgia"}},"Gilbert_Islands":{"long":{"standard":"Hora das Ilhas Gilbert"}},"Greenland_Eastern":{"long":{"generic":"Hora da Gronelândia Oriental","standard":"Hora Padrão da Gronelândia Oriental","daylight":"Hora de Verão da Gronelândia Oriental"}},"Greenland_Western":{"long":{"generic":"Hora da Gronelândia Ocidental","standard":"Hora Padrão da Gronelândia Ocidental","daylight":"Hora de Verão da Gronelândia Ocidental"}},"Guam":{"long":{"standard":"Hora Padrão de Guam"}},"Gulf":{"long":{"standard":"Hora Padrão do Golfo"}},"Guyana":{"long":{"standard":"Hora da Guiana"}},"Hawaii_Aleutian":{"long":{"generic":"Hora do Havai e Aleutas","standard":"Hora Padrão do Havai e Aleutas","daylight":"Hora de Verão do Havai e Aleutas"}},"Hong_Kong":{"long":{"generic":"Hora de Hong Kong","standard":"Hora Padrão de Hong Kong","daylight":"Hora de Verão de Hong Kong"}},"Hovd":{"long":{"generic":"Hora de Hovd","standard":"Hora Padrão de Hovd","daylight":"Hora de Verão de Hovd"}},"India":{"long":{"standard":"Hora Padrão da Índia"}},"Indian_Ocean":{"long":{"standard":"Hora do Oceano Índico"}},"Indochina":{"long":{"standard":"Hora da Indochina"}},"Indonesia_Central":{"long":{"standard":"Hora da Indonésia Central"}},"Indonesia_Eastern":{"long":{"standard":"Hora da Indonésia Oriental"}},"Indonesia_Western":{"long":{"standard":"Hora da Indonésia Ocidental"}},"Iran":{"long":{"generic":"Hora do Irão","standard":"Hora Padrão do Irão","daylight":"Hora de Verão do Irão"}},"Irkutsk":{"long":{"generic":"Hora de Irkutsk","standard":"Hora Padrão de Irkutsk","daylight":"Hora de Verão de Irkutsk"}},"Israel":{"long":{"generic":"Hora de Israel","standard":"Hora Padrão de Israel","daylight":"Hora de Verão de Israel"}},"Japan":{"long":{"generic":"Hora do Japão","standard":"Hora Padrão do Japão","daylight":"Hora de Verão do Japão"}},"Kamchatka":{"long":{"generic":"Hora de Petropavlovsk-Kamchatski","standard":"Hora Padrão de Petropavlovsk-Kamchatski","daylight":"Hora de Verão de Petropavlovsk-Kamchatski"}},"Kazakhstan_Eastern":{"long":{"standard":"Hora do Cazaquistão Oriental"}},"Kazakhstan_Western":{"long":{"standard":"Hora do Cazaquistão Ocidental"}},"Korea":{"long":{"generic":"Hora da Coreia","standard":"Hora Padrão da Coreia","daylight":"Hora de Verão da Coreia"}},"Kosrae":{"long":{"standard":"Hora de Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Hora de Krasnoyarsk","standard":"Hora Padrão de Krasnoyarsk","daylight":"Hora de Verão de Krasnoyarsk"}},"Kyrgystan":{"long":{"standard":"Hora do Quirguistão"}},"Lanka":{"long":{"standard":"Hora do Sri Lanka"}},"Line_Islands":{"long":{"standard":"Hora das Ilhas Line"}},"Lord_Howe":{"long":{"generic":"Hora de Lord Howe","standard":"Hora Padrão de Lord Howe","daylight":"Hora de Verão de Lord Howe"}},"Macau":{"long":{"generic":"Hora de Macau","standard":"Hora Padrão de Macau","daylight":"Hora de Verão de Macau"}},"Macquarie":{"long":{"standard":"Hora da Ilha Macquarie"}},"Magadan":{"long":{"generic":"Hora de Magadan","standard":"Hora Padrão de Magadan","daylight":"Hora de Verão de Magadan"}},"Malaysia":{"long":{"standard":"Hora da Malásia"}},"Maldives":{"long":{"standard":"Hora das Maldivas"}},"Marquesas":{"long":{"standard":"Hora das Ilhas Marquesas"}},"Marshall_Islands":{"long":{"standard":"Hora das Ilhas Marshall"}},"Mauritius":{"long":{"generic":"Hora da Maurícia","standard":"Hora Padrão da Maurícia","daylight":"Hora de Verão da Maurícia"}},"Mawson":{"long":{"standard":"Hora de Mawson"}},"Mexico_Northwest":{"long":{"generic":"Hora do Noroeste do México","standard":"Hora Padrão do Noroeste do México","daylight":"Hora de Verão do Noroeste do México"}},"Mexico_Pacific":{"long":{"generic":"Hora do Pacífico Mexicano","standard":"Hora Padrão do Pacífico Mexicano","daylight":"Hora de Verão do Pacífico Mexicano"}},"Mongolia":{"long":{"generic":"Hora de Ulan Bator","standard":"Hora Padrão de Ulan Bator","daylight":"Hora de Verão de Ulan Bator"}},"Moscow":{"long":{"generic":"Hora de Moscovo","standard":"Hora Padrão de Moscovo","daylight":"Hora de Verão de Moscovo"}},"Myanmar":{"long":{"standard":"Hora de Mianmar"}},"Nauru":{"long":{"standard":"Hora de Nauru"}},"Nepal":{"long":{"standard":"Hora do Nepal"}},"New_Caledonia":{"long":{"generic":"Hora da Nova Caledónia","standard":"Hora Padrão da Nova Caledónia","daylight":"Hora de Verão da Nova Caledónia"}},"New_Zealand":{"long":{"generic":"Hora da Nova Zelândia","standard":"Hora Padrão da Nova Zelândia","daylight":"Hora de Verão da Nova Zelândia"}},"Newfoundland":{"long":{"generic":"Hora da Terra Nova","standard":"Hora Padrão da Terra Nova","daylight":"Hora de Verão da Terra Nova"}},"Niue":{"long":{"standard":"Hora de Niue"}},"Norfolk":{"long":{"standard":"Hora da Ilha Norfolk"}},"Noronha":{"long":{"generic":"Hora de Fernando de Noronha","standard":"Hora Padrão de Fernando de Noronha","daylight":"Hora de Verão de Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Hora das Ilhas Mariana do Norte"}},"Novosibirsk":{"long":{"generic":"Hora de Novosibirsk","standard":"Hora Padrão de Novosibirsk","daylight":"Hora de Verão de Novosibirsk"}},"Omsk":{"long":{"generic":"Hora de Omsk","standard":"Hora Padrão de Omsk","daylight":"Hora de Verão de Omsk"}},"Pakistan":{"long":{"generic":"Hora do Paquistão","standard":"Hora Padrão do Paquistão","daylight":"Hora de Verão do Paquistão"}},"Palau":{"long":{"standard":"Hora de Palau"}},"Papua_New_Guinea":{"long":{"standard":"Hora de Papua Nova Guiné"}},"Paraguay":{"long":{"generic":"Hora do Paraguai","standard":"Hora Padrão do Paraguai","daylight":"Hora de Verão do Paraguai"}},"Peru":{"long":{"generic":"Hora do Peru","standard":"Hora Padrão do Peru","daylight":"Hora de Verão do Peru"}},"Philippines":{"long":{"generic":"Hora das Filipinas","standard":"Hora Padrão das Filipinas","daylight":"Hora de Verão das Filipinas"}},"Phoenix_Islands":{"long":{"standard":"Hora das Ilhas Fénix"}},"Pierre_Miquelon":{"long":{"generic":"Hora de São Pedro e Miquelão","standard":"Hora Padrão de São Pedro e Miquelão","daylight":"Hora de Verão de São Pedro e Miquelão"}},"Pitcairn":{"long":{"standard":"Hora de Pitcairn"}},"Ponape":{"long":{"standard":"Hora de Ponape"}},"Qyzylorda":{"long":{"generic":"Hora de Qyzylorda","standard":"Hora Padrão de Qyzylorda","daylight":"Hora de Verão de Qyzylorda"}},"Reunion":{"long":{"standard":"Hora de Reunião"}},"Rothera":{"long":{"standard":"Hora de Rothera"}},"Sakhalin":{"long":{"generic":"Hora de Sacalina","standard":"Hora Padrão de Sacalina","daylight":"Hora de Verão de Sacalina"}},"Samara":{"long":{"generic":"Hora de Samara","standard":"Hora Padrão de Samara","daylight":"Hora de Verão de Samara"}},"Samoa":{"long":{"generic":"Hora de Samoa","standard":"Hora Padrão de Samoa","daylight":"Hora de Verão de Samoa"}},"Seychelles":{"long":{"standard":"Hora das Seicheles"}},"Singapore":{"long":{"standard":"Hora Padrão de Singapura"}},"Solomon":{"long":{"standard":"Hora das Ilhas Salomão"}},"South_Georgia":{"long":{"standard":"Hora da Geórgia do Sul"}},"Suriname":{"long":{"standard":"Hora do Suriname"}},"Syowa":{"long":{"standard":"Hora de Syowa"}},"Tahiti":{"long":{"standard":"Hora do Taiti"}},"Taipei":{"long":{"generic":"Hora de Taipé","standard":"Hora Padrão de Taipé","daylight":"Hora de Verão de Taipé"}},"Tajikistan":{"long":{"standard":"Hora do Tajiquistão"}},"Tokelau":{"long":{"standard":"Hora de Tokelau"}},"Tonga":{"long":{"generic":"Hora de Tonga","standard":"Hora Padrão de Tonga","daylight":"Hora de Verão de Tonga"}},"Truk":{"long":{"standard":"Hora de Chuuk"}},"Turkmenistan":{"long":{"generic":"Hora do Turquemenistão","standard":"Hora Padrão do Turquemenistão","daylight":"Hora de Verão do Turquemenistão"}},"Tuvalu":{"long":{"standard":"Hora de Tuvalu"}},"Uruguay":{"long":{"generic":"Hora do Uruguai","standard":"Hora Padrão do Uruguai","daylight":"Hora de Verão do Uruguai"}},"Uzbekistan":{"long":{"generic":"Hora do Uzbequistão","standard":"Hora Padrão do Uzbequistão","daylight":"Hora de Verão do Uzbequistão"}},"Vanuatu":{"long":{"generic":"Hora do Vanuatu","standard":"Hora Padrão do Vanuatu","daylight":"Hora de Verão do Vanuatu"}},"Venezuela":{"long":{"standard":"Hora da Venezuela"}},"Vladivostok":{"long":{"generic":"Hora de Vladivostok","standard":"Hora Padrão de Vladivostok","daylight":"Hora de Verão de Vladivostok"}},"Volgograd":{"long":{"generic":"Hora de Volgogrado","standard":"Hora Padrão de Volgogrado","daylight":"Hora de Verão de Volgogrado"}},"Vostok":{"long":{"standard":"Hora de Vostok"}},"Wake":{"long":{"standard":"Hora da Ilha Wake"}},"Wallis":{"long":{"standard":"Hora de Wallis e Futuna"}},"Yakutsk":{"long":{"generic":"Hora de Yakutsk","standard":"Hora Padrão de Yakutsk","daylight":"Hora de Verão de Yakutsk"}},"Yekaterinburg":{"long":{"generic":"Hora de Ecaterimburgo","standard":"Hora Padrão de Ecaterimburgo","daylight":"Hora de Verão de Ecaterimburgo"}}}} \ No newline at end of file diff --git a/Punic/data/pt-PT/units.json b/Punic/data/pt-PT/units.json new file mode 100644 index 0000000..c517402 --- /dev/null +++ b/Punic/data/pt-PT/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s por %2$s","acceleration":{"g-force":{"_name":"força G","one":"%1$s força G","other":"%1$s força G"},"meter-per-second-squared":{"_name":"metros por segundo quadrado","one":"%1$s metro por segundo quadrado","other":"%1$s metros por segundo quadrado"}},"angle":{"arc-minute":{"_name":"minutos de arco","one":"%1$s minuto de arco","other":"%1$s minutos de arco"},"arc-second":{"_name":"segundos de arco","one":"%1$s segundo de arco","other":"%1$s segundos de arco"},"degree":{"_name":"graus","one":"%1$s grau","other":"%1$s graus"},"radian":{"_name":"radianos","one":"%1$s radiano","other":"%1$s radianos"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"centímetros quadrados","one":"%1$s centímetro quadrado","other":"%1$s centímetros quadrados"},"square-foot":{"_name":"pés quadrados","one":"%1$s pé quadrado","other":"%1$s pés quadrados"},"square-inch":{"_name":"polegadas quadradas","one":"%1$s polegada quadrada","other":"%1$s polegadas quadradas"},"square-kilometer":{"_name":"quilómetros quadrados","one":"%1$s quilómetro quadrado","other":"%1$s quilómetros quadrados"},"square-meter":{"_name":"metros quadrados","one":"%1$s metro quadrado","other":"%1$s metros quadrados"},"square-mile":{"_name":"milhas quadradas","one":"%1$s milha quadrada","other":"%1$s milhas quadradas"},"square-yard":{"_name":"jardas quadradas","one":"%1$s jarda quadrada","other":"%1$s jardas quadradas"}},"consumption":{"liter-per-kilometer":{"_name":"litros por quilómetro","one":"%1$s litro por quilómetro","other":"%1$s litros por quilómetro"},"mile-per-gallon":{"_name":"milhas por galão","one":"%1$s milha por galão","other":"%1$s milhas por galão"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"dias","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"horas","one":"%1$s hora","other":"%1$s horas","_per":"%1$s/h"},"microsecond":{"_name":"microssegundos","one":"%1$s microssegundo","other":"%1$s microssegundos"},"millisecond":{"_name":"milissegundos","one":"%1$s milissegundo","other":"%1$s milissegundos"},"minute":{"_name":"minutos","one":"%1$s minuto","other":"%1$s minutos"},"month":{"_name":"meses","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"nanossegundos","one":"%1$s nanossegundo","other":"%1$s nanossegundos"},"second":{"_name":"segundos","one":"%1$s segundo","other":"%1$s segundos","_per":"%1$s/s"},"week":{"_name":"semanas","one":"%1$s semana","other":"%1$s semanas"},"year":{"_name":"anos","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"miliamperes","one":"%1$s miliampere","other":"%1$s miliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calorias","one":"%1$s caloria","other":"%1$s calorias"},"foodcalorie":{"_name":"quilocalorias","one":"%1$s quilocaloria","other":"%1$s quilocalorias"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"quilocalorias","one":"%1$s quilocaloria","other":"%1$s quilocalorias"},"kilojoule":{"_name":"quilojoules","one":"%1$s quilojoule","other":"%1$s quilojoules"},"kilowatt-hour":{"_name":"quilowatts-hora","one":"%1$s quilowatt-hora","other":"%1$s quilowatts-hora"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"unidades astronómicas","one":"%1$s unidade astronómica","other":"%1$s unidades astronómicas"},"centimeter":{"_name":"centímetros","one":"%1$s centímetro","other":"%1$s centímetros"},"decimeter":{"_name":"decímetros","one":"%1$s decímetro","other":"%1$s decímetros"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s pé","other":"%1$s pés"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polegadas","one":"%1$s polegada","other":"%1$s polegadas"},"kilometer":{"_name":"quilómetros","one":"%1$s quilómetro","other":"%1$s quilómetros"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metros","one":"%1$s metro","other":"%1$s metros"},"micrometer":{"_name":"micrómetros","one":"%1$s micrómetro","other":"%1$s micrómetros"},"mile":{"_name":"milhas","one":"%1$s milha","other":"%1$s milhas"},"millimeter":{"_name":"milímetros","one":"%1$s milímetro","other":"%1$s milímetros"},"nanometer":{"_name":"nanómetros","one":"%1$s nanómetro","other":"%1$s nanómetros"},"nautical-mile":{"_name":"milhas náuticas","one":"%1$s milha náutica","other":"%1$s milhas náuticas"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picómetros","one":"%1$s picómetro","other":"%1$s picómetros"},"yard":{"_name":"jardas","one":"%1$s jarda","other":"%1$s jardas"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"quilates","one":"%1$s quilate","other":"%1$s quilates"},"gram":{"_name":"gramas","one":"%1$s grama","other":"%1$s gramas"},"kilogram":{"_name":"quilogramas","one":"%1$s quilograma","other":"%1$s quilogramas"},"metric-ton":{"_name":"toneladas métricas","one":"%1$s tonelada métrica","other":"%1$s toneladas métricas"},"microgram":{"_name":"microgramas","one":"%1$s micrograma","other":"%1$s microgramas"},"milligram":{"_name":"miligramas","one":"%1$s miligrama","other":"%1$s miligramas"},"ounce":{"_name":"onças","one":"%1$s onça","other":"%1$s onças"},"ounce-troy":{"_name":"onças troy","one":"%1$s onça troy","other":"%1$s onças troy"},"pound":{"_name":"libras","one":"%1$s libra","other":"%1$s libras"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s tonelada","other":"%1$s toneladas"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"cavalos-vapor","one":"%1$s cavalo-vapor","other":"%1$s cavalos-vapor"},"kilowatt":{"_name":"quilowatts","one":"%1$s quilowatt","other":"%1$s quilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"miliwatts","one":"%1$s miliwatt","other":"%1$s miliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascais","one":"%1$s hectopascal","other":"%1$s hectopascais"},"inch-hg":{"_name":"polegadas de mercúrio","one":"%1$s polegada de mercúrio","other":"%1$s polegadas de mercúrio"},"millibar":{"_name":"milibares","one":"%1$s milibar","other":"%1$s milibares"},"millimeter-of-mercury":{"_name":"milímetros de mercúrio","one":"%1$s milímetro de mercúrio","other":"%1$s milímetros de mercúrio"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"quilates","one":"%1$s quilate","other":"%1$s quilates"}},"speed":{"kilometer-per-hour":{"_name":"quilómetros por hora","one":"%1$s quilómetro por hora","other":"%1$s quilómetros por hora"},"meter-per-second":{"_name":"metros por segundo","one":"%1$s metro por segundo","other":"%1$s metros por segundo"},"mile-per-hour":{"_name":"milhas por hora","one":"%1$s milha por hora","other":"%1$s milhas por hora"}},"temperature":{"celsius":{"_name":"graus Celsius","one":"%1$s grau Celsius","other":"%1$s graus Celsius"},"fahrenheit":{"_name":"graus Fahrenheit","one":"%1$s grau Fahrenheit","other":"%1$s graus Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-pés","one":"%1$s acre-pé","other":"%1$s acre-pés"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitros","one":"%1$s centilitro","other":"%1$s centilitros"},"cubic-centimeter":{"_name":"centímetros cúbicos","one":"%1$s centímetro cúbico","other":"%1$s centímetros cúbicos"},"cubic-foot":{"_name":"pés cúbicos","one":"%1$s pé cúbico","other":"%1$s pés cúbicos"},"cubic-inch":{"_name":"polegadas cúbicas","one":"%1$s polegada cúbica","other":"%1$s polegadas cúbicas"},"cubic-kilometer":{"_name":"quilómetros cúbicos","one":"%1$s quilómetro cúbico","other":"%1$s quilómetros cúbicos"},"cubic-meter":{"_name":"metros cúbicos","one":"%1$s metro cúbico","other":"%1$s metros cúbicos"},"cubic-mile":{"_name":"milhas cúbicas","one":"%1$s milha cúbica","other":"%1$s milhas cúbicas"},"cubic-yard":{"_name":"jardas cúbicas","one":"%1$s jarda cúbica","other":"%1$s jardas cúbicas"},"cup":{"_name":"xícaras","one":"%1$s xícara","other":"%1$s xícaras"},"deciliter":{"_name":"decilitros","one":"%1$s decilitro","other":"%1$s decilitros"},"fluid-ounce":{"_name":"onças fluidas","one":"%1$s onça fluida","other":"%1$s onças fluidas"},"gallon":{"_name":"galões","one":"%1$s galão","other":"%1$s galões"},"hectoliter":{"_name":"hectolitros","one":"%1$s hectolitro","other":"%1$s hectolitros"},"liter":{"_name":"litros","one":"%1$s litro","other":"%1$s litros"},"megaliter":{"_name":"megalitros","one":"%1$s megalitro","other":"%1$s megalitros"},"milliliter":{"_name":"mililitros","one":"%1$s mililitro","other":"%1$s mililitros"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quartos","one":"%1$s quarto","other":"%1$s quartos"},"tablespoon":{"_name":"colheres de sopa","one":"%1$s colher de sopa","other":"%1$s colheres de sopa"},"teaspoon":{"_name":"colheres de chá","one":"%1$s colher de chá","other":"%1$s colheres de chá"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"força G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"minutos de arco","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"segundos de arco","one":"%1$s arcseg","other":"%1$s arcsegs"},"degree":{"_name":"graus","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianos","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pés quadrados","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litros/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"milhas/galão","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dias","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"horas","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"milissegundos","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minutos","one":"%1$s min","other":"%1$s min"},"month":{"_name":"meses","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"segundos","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"semanas","one":"%1$s sem.","other":"%1$s sem."},"year":{"_name":"anos","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"quilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hora","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s pé","other":"%1$s pés"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polegadas","one":"%1$s pol.","other":"%1$s pol."},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metros","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milhas","one":"%1$s milha","other":"%1$s milhas"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardas","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quilates","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"gramas","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libras","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"cv","one":"%1$s cv","other":"%1$s cv"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"quilates","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"graus Celsius","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"graus Fahrenheit","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"xícaras","one":"%1$s xíc.","other":"%1$s xíc."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litros","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cs","one":"%1$s cs","other":"%1$s cs"},"teaspoon":{"_name":"cc","one":"%1$s cc","other":"%1$s cc"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"força G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"minutos de arco","one":"%1$s'","other":"%1$s'"},"arc-second":{"_name":"segundos de arco","one":"%1$s\"","other":"%1$s\""},"degree":{"_name":"graus","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianos","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pés quadrados","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litros/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"milhas/galão","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dia","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"hora","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mês","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sem.","one":"%1$s sem.","other":"%1$s sem."},"year":{"_name":"ano","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"quilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hora","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polegadas","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metro","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milhas","one":"%1$s milha","other":"%1$s milhas"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardas","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quilates","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"grama","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libras","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s ton","other":"%1$s ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"cv","one":"%1$s cv","other":"%1$s cv"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"quilates","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"graus Fahrenheit","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"xícaras","one":"%1$s xíc.","other":"%1$s xíc."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litro","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"cs","one":"%1$s cs","other":"%1$s cs"},"teaspoon":{"_name":"cc","one":"%1$s cc","other":"%1$s cc"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/pt/calendar.json b/Punic/data/pt/calendar.json new file mode 100644 index 0000000..6ca36a2 --- /dev/null +++ b/Punic/data/pt/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan","2":"fev","3":"mar","4":"abr","5":"mai","6":"jun","7":"jul","8":"ago","9":"set","10":"out","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":"janeiro","2":"fevereiro","3":"março","4":"abril","5":"maio","6":"junho","7":"julho","8":"agosto","9":"setembro","10":"outubro","11":"novembro","12":"dezembro"}},"stand-alone":{"abbreviated":{"1":"jan","2":"fev","3":"mar","4":"abr","5":"mai","6":"jun","7":"jul","8":"ago","9":"set","10":"out","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":"janeiro","2":"fevereiro","3":"março","4":"abril","5":"maio","6":"junho","7":"julho","8":"agosto","9":"setembro","10":"outubro","11":"novembro","12":"dezembro"}}},"days":{"format":{"abbreviated":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"narrow":{"sun":"D","mon":"S","tue":"T","wed":"Q","thu":"Q","fri":"S","sat":"S"},"short":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"wide":{"sun":"domingo","mon":"segunda-feira","tue":"terça-feira","wed":"quarta-feira","thu":"quinta-feira","fri":"sexta-feira","sat":"sábado"}},"stand-alone":{"abbreviated":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"narrow":{"sun":"D","mon":"S","tue":"T","wed":"Q","thu":"Q","fri":"S","sat":"S"},"short":{"sun":"dom","mon":"seg","tue":"ter","wed":"qua","thu":"qui","fri":"sex","sat":"sáb"},"wide":{"sun":"domingo","mon":"segunda-feira","tue":"terça-feira","wed":"quarta-feira","thu":"quinta-feira","fri":"sexta-feira","sat":"sábado"}}},"quarters":{"format":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1º trimestre","2":"2º trimestre","3":"3º trimestre","4":"4º trimestre"}},"stand-alone":{"abbreviated":{"1":"T1","2":"T2","3":"T3","4":"T4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1º trimestre","2":"2º trimestre","3":"3º trimestre","4":"4º trimestre"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"tarde","am":"AM","morning":"manhã","night":"noite","noon":"meio-dia","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"afternoon":"tarde","am":"AM","morning":"manhã","night":"noite","noon":"meio-dia","pm":"PM"}},"stand-alone":{"abbreviated":{"afternoon":"tarde","am":"AM","morning":"manhã","night":"noite","noon":"meia-noite","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"afternoon":"tarde","am":"AM","morning":"manhã","night":"noite","noon":"meio-dia","pm":"PM"}}},"eras":{"wide":{"0":"Antes de Cristo","0-alt-variant":"Antes da Era Comum","1":"Ano do Senhor","1-alt-variant":"Era Comum"},"abbreviated":{"0":"a.C.","0-alt-variant":"AEC","1":"d.C.","1-alt-variant":"EC"},"narrow":{"0":"a.C.","0-alt-variant":"AEC","1":"d.C.","1-alt-variant":"EC"}},"dateFormats":{"full":"EEEE, d 'de' MMMM 'de' y","long":"d 'de' MMMM 'de' y","medium":"d 'de' MMM 'de' 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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/pt/dateFields.json b/Punic/data/pt/dateFields.json new file mode 100644 index 0000000..d198371 --- /dev/null +++ b/Punic/data/pt/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} ano","relativeTimePattern-count-other":"Dentro de {0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} ano","relativeTimePattern-count-other":"Há {0} anos"}},"year-short":{"displayName":"ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} ano","relativeTimePattern-count-other":"Dentro de {0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} ano","relativeTimePattern-count-other":"Há {0} anos"}},"year-narrow":{"displayName":"ano","relative-type--1":"ano passado","relative-type-0":"este ano","relative-type-1":"próximo ano","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} ano","relativeTimePattern-count-other":"+{0} anos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} ano","relativeTimePattern-count-other":"-{0} anos"}},"quarter":{"displayName":"Trimestre","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} trimestre","relativeTimePattern-count-other":"Dentro de {0} trimestres"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} trimestre","relativeTimePattern-count-other":"Há {0} trimestres"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} trim.","relativeTimePattern-count-other":"Dentro de {0} trims."},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} trim.","relativeTimePattern-count-other":"Há {0} trims."}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} trim.","relativeTimePattern-count-other":"+{0} trims."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} trim.","relativeTimePattern-count-other":"-{0} trims."}},"month":{"displayName":"Mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} mês","relativeTimePattern-count-other":"Dentro de {0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} mês","relativeTimePattern-count-other":"Há {0} meses"}},"month-short":{"displayName":"mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} mês","relativeTimePattern-count-other":"Dentro de {0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} mês","relativeTimePattern-count-other":"Há {0} meses"}},"month-narrow":{"displayName":"mês","relative-type--1":"mês passado","relative-type-0":"este mês","relative-type-1":"próximo mês","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mês","relativeTimePattern-count-other":"+{0} meses"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mês","relativeTimePattern-count-other":"-{0} meses"}},"week":{"displayName":"Semana","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} semana","relativeTimePattern-count-other":"Dentro de {0} semanas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} semana","relativeTimePattern-count-other":"Há {0} semanas"}},"week-short":{"displayName":"sem.","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} sem.","relativeTimePattern-count-other":"Dentro de {0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} sem.","relativeTimePattern-count-other":"Há {0} sem."}},"week-narrow":{"displayName":"sem.","relative-type--1":"semana passada","relative-type-0":"esta semana","relative-type-1":"próxima semana","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} sem.","relativeTimePattern-count-other":"+{0} sem."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} sem.","relativeTimePattern-count-other":"-{0} sem."}},"day":{"displayName":"Dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} dia","relativeTimePattern-count-other":"Dentro de {0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} dia","relativeTimePattern-count-other":"Há {0} dias"}},"day-short":{"displayName":"dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} dia","relativeTimePattern-count-other":"Dentro de {0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} dia","relativeTimePattern-count-other":"Há {0} dias"}},"day-narrow":{"displayName":"dia","relative-type--1":"ontem","relative-type--2":"anteontem","relative-type-0":"hoje","relative-type-1":"amanhã","relative-type-2":"depois de amanhã","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} dia","relativeTimePattern-count-other":"+{0} dias"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} dia","relativeTimePattern-count-other":"-{0} dias"}},"weekday":{"displayName":"Dia da semana"},"sun":{"relative-type--1":"domingo passado","relative-type-0":"este domingo","relative-type-1":"próximo domingo"},"sun-short":{"relative-type--1":"dom. passado","relative-type-0":"este dom.","relative-type-1":"próximo dom."},"sun-narrow":{"relative-type--1":"dom. passado","relative-type-0":"este dom.","relative-type-1":"próximo dom."},"mon":{"relative-type--1":"segunda-feira passada","relative-type-0":"esta segunda-feira","relative-type-1":"próxima segunda-feira"},"mon-short":{"relative-type--1":"seg. passada","relative-type-0":"esta seg.","relative-type-1":"próxima seg."},"mon-narrow":{"relative-type--1":"seg. passada","relative-type-0":"esta seg.","relative-type-1":"próxima seg."},"tue":{"relative-type--1":"terça-feira passada","relative-type-0":"esta terça-feira","relative-type-1":"próxima terça-feira"},"tue-short":{"relative-type--1":"ter. passada","relative-type-0":"esta ter.","relative-type-1":"próxima ter."},"tue-narrow":{"relative-type--1":"ter. passada","relative-type-0":"esta ter.","relative-type-1":"próxima ter."},"wed":{"relative-type--1":"quarta-feira passada","relative-type-0":"esta quarta-feira","relative-type-1":"próxima quarta-feira"},"wed-short":{"relative-type--1":"qua. passada","relative-type-0":"esta qua.","relative-type-1":"próxima qua."},"wed-narrow":{"relative-type--1":"qua. passada","relative-type-0":"esta qua.","relative-type-1":"próxima qua."},"thu":{"relative-type--1":"quinta-feira passada","relative-type-0":"esta quinta-feira","relative-type-1":"próxima quinta-feira"},"thu-short":{"relative-type--1":"qui. passada","relative-type-0":"esta qui.","relative-type-1":"próx. qui"},"thu-narrow":{"relative-type--1":"qui. passada","relative-type-0":"esta qui.","relative-type-1":"próx. qui"},"fri":{"relative-type--1":"sexta-feira passada","relative-type-0":"esta sexta-feira","relative-type-1":"próxima sexta-feira"},"fri-short":{"relative-type--1":"sex. passada","relative-type-0":"esta sex.","relative-type-1":"próxima sex."},"fri-narrow":{"relative-type--1":"sex. passada","relative-type-0":"esta sex.","relative-type-1":"próxima sex."},"sat":{"relative-type--1":"sábado passado","relative-type-0":"este sábado","relative-type-1":"próximo sábado"},"sat-short":{"relative-type--1":"sáb. passado","relative-type-0":"este sáb.","relative-type-1":"próximo sáb."},"sat-narrow":{"relative-type--1":"sáb. passado","relative-type-0":"este sáb.","relative-type-1":"próximo sáb."},"dayperiod":{"displayName":"AM/PM"},"hour":{"displayName":"Hora","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} hora","relativeTimePattern-count-other":"Dentro de {0} horas"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} hora","relativeTimePattern-count-other":"Há {0} horas"}},"hour-short":{"displayName":"hr.","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} h","relativeTimePattern-count-other":"Dentro de {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} h","relativeTimePattern-count-other":"Há {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minuto","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} minuto","relativeTimePattern-count-other":"Dentro de {0} minutos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} minuto","relativeTimePattern-count-other":"Há {0} minutos"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} min.","relativeTimePattern-count-other":"Dentro de {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} min.","relativeTimePattern-count-other":"Há {0} min"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Segundo","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} segundo","relativeTimePattern-count-other":"Dentro de {0} segundos"},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} segundo","relativeTimePattern-count-other":"Há {0} segundos"}},"second-short":{"displayName":"seg.","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"Dentro de {0} seg.","relativeTimePattern-count-other":"Dentro de {0} seg."},"relativeTime-type-past":{"relativeTimePattern-count-one":"Há {0} seg.","relativeTimePattern-count-other":"Há {0} seg."}},"second-narrow":{"displayName":"s","relative-type-0":"agora","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Fuso horário"}} \ No newline at end of file diff --git a/Punic/data/pt/languages.json b/Punic/data/pt/languages.json new file mode 100644 index 0000000..6ce8787 --- /dev/null +++ b/Punic/data/pt/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abcázio","ace":"achém","ach":"acoli","ada":"adangme","ady":"adigue","ae":"avéstico","aeb":"aeb","af":"africâner","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"acadiano","akz":"akz","ale":"aleúte","aln":"aln","alt":"altai do sul","am":"amárico","an":"aragonês","ang":"inglês arcaico","anp":"angika","ar":"árabe","ar-001":"árabe moderno","arc":"aramaico","arn":"araucano","aro":"aro","arp":"arapaho","arq":"arq","arw":"arauaqui","ary":"ary","arz":"arz","as":"assamês","asa":"asu","ase":"ase","ast":"asturiano","av":"avaric","avk":"avk","awa":"awadhi","ay":"aimara","az":"azerbaijano","az-alt-short":"azeri","azb":"azb","ba":"bashkir","bal":"balúchi","ban":"balinês","bar":"bar","bas":"basa","bax":"bamum","bbc":"bbc","bbj":"ghomala’","be":"bielorrusso","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"búlgaro","bho":"bhojpuri","bi":"bislamá","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibetano","bpy":"bpy","bqi":"bqi","br":"bretão","bra":"braj","brh":"brh","brx":"bodo","bs":"bósnio","bss":"akoose","bua":"buriat","bug":"buguinês","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalão","cad":"caddo","car":"caribe","cay":"cayuga","cch":"atsam","ce":"checheno","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukese","chm":"mari","chn":"chinook jargon","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheiene","ckb":"sorâni curdo","co":"córsico","cop":"copta","cps":"cps","cr":"cree","crh":"turco da Crimeia","cs":"tcheco","csb":"kashubian","cu":"eslavo eclesiástico","cv":"chuvash","cy":"galês","da":"dinamarquês","dak":"dacota","dar":"dargwa","dav":"taita","de":"alemão","de-AT":"alemão austríaco","de-CH":"alto alemão suíço","del":"delaware","den":"slave","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"sérvio baixo","dtp":"dtp","dua":"duala","dum":"holandês médio","dv":"divehi","dyo":"jola-fonyi","dyu":"diúla","dz":"dzonga","dzg":"dazaga","ebu":"embu","ee":"eve","efi":"efique","egl":"egl","egy":"egípcio arcaico","eka":"ekajuk","el":"grego","elx":"elamite","en":"inglês","en-AU":"inglês australiano","en-CA":"inglês canadense","en-GB":"inglês britânico","en-GB-alt-short":"inglês do Reino Unido","en-US":"inglês americano","en-US-alt-short":"inglês dos Estados Unidos","enm":"inglês médio","eo":"esperanto","es":"espanhol","es-419":"espanhol latino-americano","es-ES":"espanhol europeu","es-MX":"espanhol mexicano","esu":"esu","et":"estoniano","eu":"basco","ewo":"ewondo","ext":"ext","fa":"persa","fan":"fangue","fat":"fanti","ff":"fula","fi":"finlandês","fil":"filipino","fit":"fit","fj":"fijiano","fo":"feroês","fon":"fom","fr":"francês","fr-CA":"francês canadense","fr-CH":"francês suíço","frc":"frc","frm":"francês médio","fro":"francês arcaico","frp":"frp","frr":"frísio setentrional","frs":"frisão oriental","fur":"friulano","fy":"frísio ocidental","ga":"irlandês","gaa":"ga","gag":"gagauz","gan":"gan","gay":"gayo","gba":"gbaia","gbz":"gbz","gd":"gaélico escocês","gez":"geez","gil":"gilbertês","gl":"galego","glk":"glk","gmh":"alemão médio-alto","gn":"guarani","goh":"alemão arcaico alto","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gótico","grb":"grebo","grc":"grego arcaico","gsw":"alemão suíço","gu":"guzerate","guc":"guc","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"hauçá","hai":"haida","hak":"hak","haw":"havaiano","he":"hebraico","hi":"híndi","hif":"hif","hil":"hiligaynon","hit":"hitita","hmn":"hmong","ho":"hiri motu","hr":"croata","hsb":"sorábio superior","hsn":"hsn","ht":"haitiano","hu":"húngaro","hup":"hupa","hy":"armênio","hz":"herero","ia":"interlíngua","iba":"iban","ibb":"ibibio","id":"indonésio","ie":"interlingue","ig":"ibo","ii":"sichuan yi","ik":"inupiaque","ilo":"ilocano","inh":"inguche","io":"ido","is":"islandês","it":"italiano","iu":"inuktitut","izh":"izh","ja":"japonês","jam":"jam","jbo":"lojban","jgo":"nguemba","jmc":"machame","jpr":"judaico-persa","jrb":"judaico-arábico","jut":"jut","jv":"javanês","ka":"georgiano","kaa":"kara-kalpak","kab":"kabyle","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardiano","kbl":"kanembu","kcg":"tyap","kde":"maconde","kea":"kabuverdianu","ken":"ken","kfo":"koro","kg":"congolês","kgp":"kgp","kha":"khasi","kho":"khotanês","khq":"koyra chiini","khw":"khw","ki":"quicuio","kiu":"kiu","kj":"kuanyama","kk":"cazaque","kkj":"kako","kl":"groenlandês","kln":"kalenjin","km":"khmer","kmb":"quimbundo","kn":"canarês","ko":"coreano","koi":"komi-permyak","kok":"concani","kos":"kosraean","kpe":"kpelle","kr":"canúri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"idioma carélio","kru":"kurukh","ks":"caxemira","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"curdo","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"córnico","ky":"quirguiz","la":"latim","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburguês","lez":"lezghian","lfn":"lfn","lg":"luganda","li":"limburguês","lij":"lij","liv":"liv","lkt":"lacota","lmo":"lmo","ln":"lingala","lo":"laosiano","lol":"mongo","loz":"lozi","lt":"lituano","ltg":"ltg","lu":"luba-catanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lushai","luy":"luyia","lv":"letão","lzh":"lzh","lzz":"lzz","mad":"madurês","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandinga","mas":"massai","mde":"maba","mdf":"mocsa","mdr":"mandar","men":"mende","mer":"meru","mfe":"morisyen","mg":"malgaxe","mga":"irlandês médio","mgh":"macua","mgo":"meta’","mh":"marshalês","mi":"maori","mic":"miquemaque","min":"minangkabau","mk":"macedônio","ml":"malaiala","mn":"mongol","mnc":"manchu","mni":"manipuri","moh":"moicano","mos":"mossi","mr":"marata","mrj":"mrj","ms":"malaio","mt":"maltês","mua":"mundang","mul":"idiomas múltiplos","mus":"creek","mwl":"mirandês","mwr":"marwari","mwv":"mwv","my":"birmanês","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauruano","nan":"nan","nap":"napolitano","naq":"nama","nb":"bokmål norueguês","nd":"ndebele do norte","nds":"baixo-alemão","ne":"nepali","new":"newari","ng":"dongo","nia":"nias","niu":"niueano","njo":"njo","nl":"holandês","nl-BE":"flamengo","nmg":"kwasio","nn":"nynorsk norueguês","nnh":"ngiemboon","no":"norueguês","nog":"nogai","non":"nórdico arcaico","nov":"nov","nqo":"n’ko","nr":"ndebele do sul","nso":"soto setentrional","nus":"nuer","nv":"navajo","nwc":"newari clássico","ny":"nianja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"occitânico","oj":"ojibwa","om":"oromo","or":"oriya","os":"ossetic","osa":"osage","ota":"turco otomano","pa":"panjabi","pag":"pangasinã","pal":"pálavi","pam":"pampanga","pap":"papiamento","pau":"palauano","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"persa arcaico","pfl":"pfl","phn":"fenício","pi":"páli","pl":"polonês","pms":"pms","pnt":"pnt","pon":"pohnpeian","prg":"prg","pro":"provençal arcaico","ps":"pashto","ps-alt-variant":"pushto","pt":"português","pt-BR":"português do Brasil","pt-PT":"português europeu","qu":"quíchua","quc":"quiché","qug":"qug","raj":"rajastani","rap":"rapanui","rar":"rarotongano","rgn":"rgn","rif":"rif","rm":"romanche","rn":"rundi","ro":"romeno","ro-MD":"moldávio","rof":"rombo","rom":"romani","root":"root","rtm":"rtm","ru":"russo","rue":"rue","rug":"rug","rup":"aromeno","rw":"ruanda","rwk":"rwa","sa":"sânscrito","sad":"sandawe","sah":"iacuto","sam":"aramaico samaritano","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardo","scn":"siciliano","sco":"escocês","sd":"sindi","sdc":"sdc","se":"sami do norte","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"koyraboro senni","sg":"sango","sga":"irlandês arcaico","sgs":"sgs","sh":"servo-croata","shi":"tachelhit","shn":"shan","shu":"árabe chadiano","si":"cingalês","sid":"sidamo","sk":"eslovaco","sl":"esloveno","sli":"sli","sly":"sly","sm":"samoano","sma":"sami do sul","smj":"lule sami","smn":"inari sami","sms":"skolt sami","sn":"shona","snk":"soninquê","so":"somali","sog":"sogdiano","sq":"albanês","sr":"sérvio","srn":"idioma surinamês","srr":"serere","ss":"swati","ssy":"saho","st":"soto do sul","stq":"stq","su":"sundanês","suk":"sukuma","sus":"sosso","sux":"sumério","sv":"sueco","sw":"suaíli","swb":"comoriano","swc":"suaíli do Congo","syc":"siríaco clássico","syr":"siríaco","szl":"szl","ta":"tâmil","tcy":"tcy","te":"telugu","tem":"timne","teo":"teso","ter":"tereno","tet":"tétum","tg":"tajique","th":"tailandês","ti":"tigrínia","tig":"tigré","tiv":"tiv","tk":"turcomeno","tkl":"toquelauano","tkr":"tkr","tl":"tagalo","tlh":"klingon","tli":"tlinguite","tly":"tly","tmh":"tamaxeque","tn":"tswana","to":"tonganês","tog":"tonganês de Nyasa","tpi":"tok pisin","tr":"turco","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshian","tt":"tatar","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluano","tw":"twi","twq":"tasawaq","ty":"taitiano","tyv":"tuvinian","tzm":"tamazight","udm":"udmurt","ug":"uigur","uga":"ugarítico","uk":"ucraniano","umb":"umbundu","und":"idioma desconhecido","ur":"urdu","uz":"usbeque","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamita","vls":"vls","vmf":"vmf","vo":"volapuque","vot":"votic","vro":"vro","vun":"vunjo","wa":"valão","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"uólofe","wuu":"wuu","xal":"kalmyk","xh":"xosa","xmf":"xmf","xog":"lusoga","yao":"yao","yap":"yapese","yav":"yangben","ybb":"yemba","yi":"iídiche","yo":"ioruba","yrl":"yrl","yue":"cantonês","za":"zhuang","zap":"zapoteca","zbl":"símbolos blis","zea":"zea","zen":"zenaga","zgh":"tamazight marroquino padrão","zh":"chinês","zh-Hans":"chinês simplificado","zh-Hant":"chinês tradicional","zu":"zulu","zun":"zunhi","zxx":"sem conteúdo linguístico","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/pt/listPatterns.json b/Punic/data/pt/listPatterns.json new file mode 100644 index 0000000..ee49ee6 --- /dev/null +++ b/Punic/data/pt/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s e %2$s","2":"%1$s e %2$s"}} \ No newline at end of file diff --git a/Punic/data/pt/localeDisplayNames.json b/Punic/data/pt/localeDisplayNames.json new file mode 100644 index 0000000..2964965 --- /dev/null +++ b/Punic/data/pt/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Calendário","colAlternate":"Ignorar classificação de símbolos","colBackwards":"Classificação reversa de acentos","colCaseFirst":"Ordem de maiúsculas/minúsculas","colCaseLevel":"Ordem com diferenciação de maiúsculas e minúsculas","colHiraganaQuaternary":"Classificação kana","colNormalization":"Classificação normalizada","colNumeric":"Classificação numérica","colStrength":"Intensidade da classificação","collation":"Ordenação","currency":"Moeda","numbers":"Números","timezone":"Fuso horário","va":"Variante de localidade","variableTop":"Classificar como símbolos","x":"Uso privado"},"types":{"numbers":{"vaii":"Dígitos vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"Calendário da República da China"},"colStrength":{"tertiary":"Classificar acentos/maiúsculas e minúsculas/largura"},"colCaseFirst":{"upper":"Classificar por maiúsculas"},"colBackwards":{"yes":"Classificação reversa de acentos"},"colCaseLevel":{"yes":"Classificação com diferenciação de maiúsculas e minúsculas"},"colHiraganaQuaternary":{"yes":"Classificar kana diferentemente"},"colNormalization":{"yes":"Classificar Unicode normalizado"},"colNumeric":{"yes":"Classificar dígitos numericamente"},"colAlternate":{"shifted":"Classificar ignorando símbolos"}},"codePatterns":{"language":"Idioma: %1$s","script":"Alfabeto: %1$s","territory":"Região: %1$s"}} \ No newline at end of file diff --git a/Punic/data/pt/numbers.json b/Punic/data/pt/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/pt/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/pt/territories.json b/Punic/data/pt/territories.json new file mode 100644 index 0000000..d81cae3 --- /dev/null +++ b/Punic/data/pt/territories.json @@ -0,0 +1 @@ +{"001":"Mundo","002":"África","003":"América do Norte","005":"América do Sul","009":"Oceania","011":"África Ocidental","013":"América Central","014":"África Oriental","015":"África do Norte","017":"África Central","018":"África Austral","019":"Américas","021":"América Setentrional","029":"Caribe","030":"Ásia Oriental","034":"Ásia do Sul","035":"Sudeste Asiático","039":"Europa do Sul","053":"Australásia","054":"Melanésia","057":"Região da Micronésia","061":"Polinésia","142":"Ásia","143":"Ásia Central","145":"Ásia Ocidental","150":"Europa","151":"Europa Oriental","154":"Europa Setentrional","155":"Europa Ocidental","419":"América Latina","AC":"Ilha de Ascensão","AD":"Andorra","AE":"Emirados Árabes Unidos","AF":"Afeganistão","AG":"Antígua e Barbuda","AI":"Anguilla","AL":"Albânia","AM":"Armênia","AN":"Antilhas Holandesas","AO":"Angola","AQ":"Antártida","AR":"Argentina","AS":"Samoa Americana","AT":"Áustria","AU":"Austrália","AW":"Aruba","AX":"Ilhas Åland","AZ":"Azerbaijão","BA":"Bósnia e Herzegovina","BB":"Barbados","BD":"Bangladesh","BE":"Bélgica","BF":"Burquina Faso","BG":"Bulgária","BH":"Bahrein","BI":"Burundi","BJ":"Benin","BL":"São Bartolomeu","BM":"Bermudas","BN":"Brunei","BO":"Bolívia","BQ":"Países Baixos Caribenhos","BR":"Brasil","BS":"Bahamas","BT":"Butão","BV":"Ilha Bouvet","BW":"Botsuana","BY":"Bielorrússia","BZ":"Belize","CA":"Canadá","CC":"Ilhas Cocos (Keeling)","CD":"Congo - Kinshasa","CD-alt-variant":"República Democrática do Congo","CF":"República Centro-Africana","CG":"Congo - Brazzaville","CG-alt-variant":"Congo","CH":"Suíça","CI":"Costa do Marfim","CI-alt-variant":"CI","CK":"Ilhas Cook","CL":"Chile","CM":"República dos Camarões","CN":"China","CO":"Colômbia","CP":"Ilha de Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cabo Verde","CW":"Curaçao","CX":"Ilha Christmas","CY":"Chipre","CZ":"República Tcheca","DE":"Alemanha","DG":"Diego Garcia","DJ":"Djibuti","DK":"Dinamarca","DM":"Dominica","DO":"República Dominicana","DZ":"Argélia","EA":"Ceuta e Melilha","EC":"Equador","EE":"Estônia","EG":"Egito","EH":"Saara Ocidental","ER":"Eritreia","ES":"Espanha","ET":"Etiópia","EU":"União Europeia","FI":"Finlândia","FJ":"Fiji","FK":"Ilhas Malvinas","FK-alt-variant":"Ilhas Falkland (Ilhas Malvinas)","FM":"Micronésia","FO":"Ilhas Faroe","FR":"França","GA":"Gabão","GB":"Reino Unido","GB-alt-short":"Reino Unido","GD":"Granada","GE":"Geórgia","GF":"Guiana Francesa","GG":"Guernsey","GH":"Gana","GI":"Gibraltar","GL":"Groenlândia","GM":"Gâmbia","GN":"Guiné","GP":"Guadalupe","GQ":"Guiné Equatorial","GR":"Grécia","GS":"Geórgia do Sul e Ilhas Sandwich do Sul","GT":"Guatemala","GU":"Guam","GW":"Guiné Bissau","GY":"Guiana","HK":"Hong Kong, RAE da China","HK-alt-short":"Hong Kong","HM":"Ilhas Heard e McDonald","HN":"Honduras","HR":"Croácia","HT":"Haiti","HU":"Hungria","IC":"Ilhas Canárias","ID":"Indonésia","IE":"Irlanda","IL":"Israel","IM":"Ilha de Man","IN":"Índia","IO":"Território Britânico do Oceano Índico","IQ":"Iraque","IR":"Irã","IS":"Islândia","IT":"Itália","JE":"Jersey","JM":"Jamaica","JO":"Jordânia","JP":"Japão","KE":"Quênia","KG":"Quirguistão","KH":"Camboja","KI":"Quiribati","KM":"Comores","KN":"São Cristóvão e Nevis","KP":"Coreia do Norte","KR":"Coreia do Sul","KW":"Kuwait","KY":"Ilhas Caiman","KZ":"Cazaquistão","LA":"Laos","LB":"Líbano","LC":"Santa Lúcia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Libéria","LS":"Lesoto","LT":"Lituânia","LU":"Luxemburgo","LV":"Letônia","LY":"Líbia","MA":"Marrocos","MC":"Mônaco","MD":"Moldávia","ME":"Montenegro","MF":"São Martinho","MG":"Madagascar","MH":"Ilhas Marshall","MK":"Macedônia","MK-alt-variant":"Macedônia (Antiga República Iugoslava da Macedônia - ARIM)","ML":"Mali","MM":"Mianmar (Birmânia)","MN":"Mongólia","MO":"Macau, RAE da China","MO-alt-short":"Macau","MP":"Ilhas Marianas do Norte","MQ":"Martinica","MR":"Mauritânia","MS":"Montserrat","MT":"Malta","MU":"Maurício","MV":"Maldivas","MW":"Malawi","MX":"México","MY":"Malásia","MZ":"Moçambique","NA":"Namíbia","NC":"Nova Caledônia","NE":"Níger","NF":"Ilha Norfolk","NG":"Nigéria","NI":"Nicarágua","NL":"Holanda","NO":"Noruega","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nova Zelândia","OM":"Omã","PA":"Panamá","PE":"Peru","PF":"Polinésia Francesa","PG":"Papua-Nova Guiné","PH":"Filipinas","PK":"Paquistão","PL":"Polônia","PM":"Saint Pierre e Miquelon","PN":"Ilhas Pitcairn","PR":"Porto Rico","PS":"Territórios palestinos","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguai","QA":"Catar","QO":"Oceania Remota","RE":"Reunião","RO":"Romênia","RS":"Sérvia","RU":"Rússia","RW":"Ruanda","SA":"Arábia Saudita","SB":"Ilhas Salomão","SC":"Seychelles","SD":"Sudão","SE":"Suécia","SG":"Cingapura","SH":"Santa Helena","SI":"Eslovênia","SJ":"Svalbard e Jan Mayen","SK":"Eslováquia","SL":"Serra Leoa","SM":"San Marino","SN":"Senegal","SO":"Somália","SR":"Suriname","SS":"Sudão do Sul","ST":"São Tomé e Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Síria","SZ":"Suazilândia","TA":"Tristão da Cunha","TC":"Ilhas Turks e Caicos","TD":"Chade","TF":"Territórios Franceses do Sul","TG":"Togo","TH":"Tailândia","TJ":"Tajiquistão","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"República Democrática de Timor-Leste","TM":"Turcomenistão","TN":"Tunísia","TO":"Tonga","TR":"Turquia","TT":"Trinidad e Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzânia","UA":"Ucrânia","UG":"Uganda","UM":"Ilhas Distantes dos EUA","US":"Estados Unidos","US-alt-short":"EUA","UY":"Uruguai","UZ":"Uzbequistão","VA":"Cidade do Vaticano","VC":"São Vicente e Granadinas","VE":"Venezuela","VG":"Ilhas Virgens Britânicas","VI":"Ilhas Virgens dos EUA","VN":"Vietnã","VU":"Vanuatu","WF":"Wallis e Futuna","WS":"Samoa","XK":"Kosovo","YE":"Iêmen","YT":"Mayotte","ZA":"África do Sul","ZM":"Zâmbia","ZW":"Zimbábue","ZZ":"Região desconhecida"} \ No newline at end of file diff --git a/Punic/data/pt/timeZoneNames.json b/Punic/data/pt/timeZoneNames.json new file mode 100644 index 0000000..347a7fe --- /dev/null +++ b/Punic/data/pt/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Horário %1$s","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antígua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumã"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Assunção"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Caiena"},"Cayman":{"exemplarCity":"Caimã"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"Fortaleza":{"exemplarCity":"Fortaleza"},"Glace_Bay":{"exemplarCity":"Glace Bay"},"Godthab":{"exemplarCity":"Nuuk"},"Goose_Bay":{"exemplarCity":"Goose Bay"},"Grand_Turk":{"exemplarCity":"Grand Turk"},"Grenada":{"exemplarCity":"Granada"},"Guadeloupe":{"exemplarCity":"Guadalupe"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guaiaquil"},"Guyana":{"exemplarCity":"Guiana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianápolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Maceió"},"Managua":{"exemplarCity":"Manágua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Cidade do México"},"Miquelon":{"exemplarCity":"Miquelon"},"Moncton":{"exemplarCity":"Moncton"},"Monterrey":{"exemplarCity":"Monterrei"},"Montevideo":{"exemplarCity":"Montevidéu"},"Montserrat":{"exemplarCity":"Montserrat"},"Nassau":{"exemplarCity":"Nassau"},"New_York":{"exemplarCity":"Nova York"},"Nipigon":{"exemplarCity":"Nipigon"},"Nome":{"exemplarCity":"Nome"},"Noronha":{"exemplarCity":"Fernando de Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, Dakota do Norte"},"Center":{"exemplarCity":"Central, Dakota do Norte"},"New_Salem":{"exemplarCity":"New Salen, Dakota do Norte"}},"Ojinaga":{"exemplarCity":"Ojinaga"},"Panama":{"exemplarCity":"Panamá"},"Pangnirtung":{"exemplarCity":"Pangnirtung"},"Paramaribo":{"exemplarCity":"Paramaribo"},"Phoenix":{"exemplarCity":"Phoenix"},"Port-au-Prince":{"exemplarCity":"Porto Príncipe"},"Port_of_Spain":{"exemplarCity":"Porto Espanha"},"Porto_Velho":{"exemplarCity":"Porto Velho"},"Puerto_Rico":{"exemplarCity":"Porto 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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"São Bartolomeu"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"São Cristóvão"},"St_Lucia":{"exemplarCity":"Santa Lúcia"},"St_Thomas":{"exemplarCity":"St. Thomas"},"St_Vincent":{"exemplarCity":"São Vicente"},"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":"Açores"},"Bermuda":{"exemplarCity":"Bermudas"},"Canary":{"exemplarCity":"Canárias"},"Cape_Verde":{"exemplarCity":"Cabo Verde"},"Faeroe":{"exemplarCity":"Ilhas Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Geórgia do Sul"},"St_Helena":{"exemplarCity":"Santa Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdã"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atenas"},"Belgrade":{"exemplarCity":"Belgrado"},"Berlin":{"exemplarCity":"Berlim"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelas"},"Bucharest":{"exemplarCity":"Bucareste"},"Budapest":{"exemplarCity":"Budapeste"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhague"},"Dublin":{"long":{"daylight":"Horário Padrão da Irlanda"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinque"},"Isle_of_Man":{"exemplarCity":"Ilha de Man"},"Istanbul":{"exemplarCity":"Istambul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrado"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisboa"},"Ljubljana":{"exemplarCity":"Liubliana"},"London":{"long":{"daylight":"Horário de Verão Britânico"},"exemplarCity":"Londres"},"Luxembourg":{"exemplarCity":"Luxemburgo"},"Madrid":{"exemplarCity":"Madri"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Mônaco"},"Moscow":{"exemplarCity":"Moscou"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgóritza"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sófia"},"Stockholm":{"exemplarCity":"Estocolmo"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vaticano"},"Vienna":{"exemplarCity":"Viena"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgogrado"},"Warsaw":{"exemplarCity":"Varsóvia"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizhia"},"Zurich":{"exemplarCity":"Zurique"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Acra"},"Addis_Ababa":{"exemplarCity":"Adis-Abeba"},"Algiers":{"exemplarCity":"Argel"},"Asmera":{"exemplarCity":"Asmara"},"Bamako":{"exemplarCity":"Bamaco"},"Bangui":{"exemplarCity":"Bangui"},"Banjul":{"exemplarCity":"Banjul"},"Bissau":{"exemplarCity":"Bissau"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzaville"},"Bujumbura":{"exemplarCity":"Bujumbura"},"Cairo":{"exemplarCity":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conacri"},"Dakar":{"exemplarCity":"Dacar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiún"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburgo"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Campala"},"Khartoum":{"exemplarCity":"Cartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lomé"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaca"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadíscio"},"Monrovia":{"exemplarCity":"Monróvia"},"Nairobi":{"exemplarCity":"Nairóbi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamei"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Trípoli"},"Tunis":{"exemplarCity":"Túnis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Adem"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amã"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Asgabate"},"Baghdad":{"exemplarCity":"Bagdá"},"Bahrain":{"exemplarCity":"Barein"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirute"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasco"},"Dhaka":{"exemplarCity":"Dacca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Duchambe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jacarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalém"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Carachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Catmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lampur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Macassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Mascate"},"Nicosia":{"exemplarCity":"Nicósia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riadi"},"Saigon":{"exemplarCity":"Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sacalina"},"Samarkand":{"exemplarCity":"Samarcanda"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Xangai"},"Singapore":{"exemplarCity":"Cingapura"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teerã"},"Thimphu":{"exemplarCity":"Timphu"},"Tokyo":{"exemplarCity":"Tóquio"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Ecaterimburgo"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comores"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldivas"},"Mauritius":{"exemplarCity":"Maurício"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunião"}},"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":"Ápia"},"Auckland":{"exemplarCity":"Auckland"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Ilha de Páscoa"},"Efate":{"exemplarCity":"Éfaté"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"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":"Nouméa"},"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":"Taiti"},"Tarawa":{"exemplarCity":"Taraua"},"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":"Showa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Vostok"}},"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":"Cidade desconhecida"}}},"metazone":{"Acre":{"long":{"generic":"Horário do Acre","standard":"Horário Padrão do Acre","daylight":"Horário de Verão do Acre"},"short":{"generic":"ACT","standard":"ACT","daylight":"ACST"}},"Afghanistan":{"long":{"standard":"Horário do Afeganistão"}},"Africa_Central":{"long":{"standard":"Horário da África Central"}},"Africa_Eastern":{"long":{"standard":"Horário da África Oriental"}},"Africa_Southern":{"long":{"standard":"Horário da África do Sul"}},"Africa_Western":{"long":{"generic":"Horário da África Ocidental","standard":"Horário Padrão da África Ocidental","daylight":"Horário de Verão da África Ocidental"}},"Alaska":{"long":{"generic":"Horário do Alasca","standard":"Horário Padrão do Alasca","daylight":"Horário de Verão do Alasca"}},"Almaty":{"long":{"generic":"Horário do Almaty","standard":"Horário Padrão do Almaty","daylight":"Horário de Verão do Almaty"}},"Amazon":{"long":{"generic":"Horário do Amazonas","standard":"Horário Padrão do Amazonas","daylight":"Horário de Verão do Amazonas"},"short":{"generic":"AMT","standard":"AMT","daylight":"AMST"}},"America_Central":{"long":{"generic":"Horário Central","standard":"Horário Padrão Central","daylight":"Horário de Verão Central"}},"America_Eastern":{"long":{"generic":"Horário Oriental","standard":"Horário Padrão Oriental","daylight":"Horário de Verão Oriental"}},"America_Mountain":{"long":{"generic":"Horário da Montanha","standard":"Horário Padrão da Montanha","daylight":"Horário de Verão da Montanha"}},"America_Pacific":{"long":{"generic":"Horário do Pacífico","standard":"Horário Padrão do Pacífico","daylight":"Horário de Verão do Pacífico"}},"Anadyr":{"long":{"generic":"Horário de Anadyr","standard":"Horário Padrão do Anadyr","daylight":"Horário de Verão do Anadyr"}},"Apia":{"long":{"generic":"Horário de Apia","standard":"Horário Padrão de Apia","daylight":"Horário de Verão de Apia"}},"Aqtau":{"long":{"generic":"Horário do Aqtau","standard":"Horário Padrão do Aqtau","daylight":"Horário de Verão do Aqtau"}},"Aqtobe":{"long":{"generic":"Horário do Aqtobe","standard":"Horário Padrão do Aqtobe","daylight":"Horário de Verão do Aqtobe"}},"Arabian":{"long":{"generic":"Horário da Arábia","standard":"Horário Padrão da Arábia","daylight":"Horário de Verão da Arábia"}},"Argentina":{"long":{"generic":"Horário da Argentina","standard":"Horário Padrão da Argentina","daylight":"Horário de Verão da Argentina"}},"Argentina_Western":{"long":{"generic":"Horário da Argentina Ocidental","standard":"Horário Padrão da Argentina Ocidental","daylight":"Horário de Verão da Argentina Ocidental"}},"Armenia":{"long":{"generic":"Horário da Armênia","standard":"Horário Padrão da Armênia","daylight":"Horário de Verão da Armênia"}},"Atlantic":{"long":{"generic":"Horário do Atlântico","standard":"Horário Padrão do Atlântico","daylight":"Horário de Verão do Atlântico"}},"Australia_Central":{"long":{"generic":"Horário da Austrália Central","standard":"Horário Padrão da Austrália Central","daylight":"Horário de Verão da Austrália Central"}},"Australia_CentralWestern":{"long":{"generic":"Horário da Austrália Centro-Ocidental","standard":"Horário Padrão da Austrália Centro-Ocidental","daylight":"Horário de Verão da Austrália Centro-Ocidental"}},"Australia_Eastern":{"long":{"generic":"Horário da Austrália Oriental","standard":"Horário Padrão da Austrália Oriental","daylight":"Horário de Verão da Austrália Oriental"}},"Australia_Western":{"long":{"generic":"Horário da Austrália Ocidental","standard":"Horário Padrão da Austrália Ocidental","daylight":"Horário de Verão da Austrália Ocidental"}},"Azerbaijan":{"long":{"generic":"Horário do Arzeibaijão","standard":"Horário Padrão do Arzeibaijão","daylight":"Horário de Verão do Arzeibaijão"}},"Azores":{"long":{"generic":"Horário dos Açores","standard":"Horário Padrão dos Açores","daylight":"Horário de Verão dos Açores"}},"Bangladesh":{"long":{"generic":"Horário de Bangladesh","standard":"Horário Padrão de Bangladesh","daylight":"Horário de Verão de Bangladesh"}},"Bhutan":{"long":{"standard":"Horário do Butão"}},"Bolivia":{"long":{"standard":"Horário da Bolívia"}},"Brasilia":{"long":{"generic":"Horário de Brasília","standard":"Horário Padrão de Brasília","daylight":"Horário de Verão de Brasília"},"short":{"generic":"BRT","standard":"BRT","daylight":"BRST"}},"Brunei":{"long":{"standard":"Horário de Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Horário do Cabo Verde","standard":"Horário Padrão do Cabo Verde","daylight":"Horário de Verão do Cabo Verde"}},"Chamorro":{"long":{"standard":"Horário de Chamorro"}},"Chatham":{"long":{"generic":"Horário de Chatham","standard":"Horário Padrão de Chatham","daylight":"Horário de Verão de Chatham"}},"Chile":{"long":{"generic":"Horário do Chile","standard":"Horário Padrão do Chile","daylight":"Horário de Verão do Chile"}},"China":{"long":{"generic":"Horário da China","standard":"Horário Padrão da China","daylight":"Horário de Verão da China"}},"Choibalsan":{"long":{"generic":"Horário de Choibalsan","standard":"Horário Padrão de Choibalsan","daylight":"Horário de Verão de Choibalsan"}},"Christmas":{"long":{"standard":"Horário das Ilhas Natal"}},"Cocos":{"long":{"standard":"Horário das Ilhas Coco"}},"Colombia":{"long":{"generic":"Horário da Colômbia","standard":"Horário Padrão da Colômbia","daylight":"Horário de Verão da Colômbia"}},"Cook":{"long":{"generic":"Horário das Ilhas Cook","standard":"Horário Padrão das Ilhas Cook","daylight":"Meio Horário de Verão das Ilhas Cook"}},"Cuba":{"long":{"generic":"Horário de Cuba","standard":"Horário Padrão de Cuba","daylight":"Horário de Verão de Cuba"}},"Davis":{"long":{"standard":"Horário de Davis"}},"DumontDUrville":{"long":{"standard":"Horário de Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Horário do Timor-Leste"}},"Easter":{"long":{"generic":"Horário da Ilha de Páscoa","standard":"Horário Padrão da Ilha de Páscoa","daylight":"Horário de Verão da Ilha de Páscoa"}},"Ecuador":{"long":{"standard":"Horário do Equador"}},"Europe_Central":{"long":{"generic":"Horário da Europa Central","standard":"Horário Padrão da Europa Central","daylight":"Horário de Verão da Europa Central"}},"Europe_Eastern":{"long":{"generic":"Horário da Europa Oriental","standard":"Horário Padrão da Europa Oriental","daylight":"Horário de Verão da Europa Oriental"}},"Europe_Further_Eastern":{"long":{"standard":"Horário de Kaliningrado"}},"Europe_Western":{"long":{"generic":"Horário da Europa Ocidental","standard":"Horário Padrão da Europa Ocidental","daylight":"Horário de Verão da Europa Ocidental"}},"Falkland":{"long":{"generic":"Horário das Ilhas Falkland","standard":"Horário Padrão das Ilhas Falkland","daylight":"Horário de Verão das Ilhas Falkland"}},"Fiji":{"long":{"generic":"Horário de Fiji","standard":"Horário Padrão de Fiji","daylight":"Horário de Verão de Fiji"}},"French_Guiana":{"long":{"standard":"Horário da Guiana Francesa"}},"French_Southern":{"long":{"standard":"Horário da Antártida e do Sul da França"}},"GMT":{"long":{"standard":"Horário do Meridiano de Greenwich"}},"Galapagos":{"long":{"standard":"Horário de Galápagos"}},"Gambier":{"long":{"standard":"Horário de Gambier"}},"Georgia":{"long":{"generic":"Horário da Geórgia","standard":"Horário Padrão da Geórgia","daylight":"Horário de Verão da Geórgia"}},"Gilbert_Islands":{"long":{"standard":"Horário das Ilhas Gilberto"}},"Greenland_Eastern":{"long":{"generic":"Horário da Groelândia Oriental","standard":"Horário Padrão da Groelândia Oriental","daylight":"Horário de Verão da Groelândia Oriental"}},"Greenland_Western":{"long":{"generic":"Horário da Groenlândia Ocidental","standard":"Horário Padrão da Groenlândia Ocidental","daylight":"Horário de Verão da Groenlândia Ocidental"}},"Guam":{"long":{"standard":"Horário Padrão de Guam"}},"Gulf":{"long":{"standard":"Horário do Golfo"}},"Guyana":{"long":{"standard":"Horário da Guiana"}},"Hawaii_Aleutian":{"long":{"generic":"Horário do Havaí e Ilhas Aleutas","standard":"Horário Padrão do Havaí e Ilhas Aleutas","daylight":"Horário de Verão do Havaí e Ilhas Aleutas"}},"Hong_Kong":{"long":{"generic":"Horário de Hong Kong","standard":"Horário Padrão de Hong Kong","daylight":"Horário de Verão de Hong Kong"}},"Hovd":{"long":{"generic":"Horário de Hovd","standard":"Horário Padrão de Hovd","daylight":"Horário de Verão de Hovd"}},"India":{"long":{"standard":"Horário Padrão da Índia"}},"Indian_Ocean":{"long":{"standard":"Horário do Oceano Índico"}},"Indochina":{"long":{"standard":"Horário da Indochina"}},"Indonesia_Central":{"long":{"standard":"Horário da Indonésia Central"}},"Indonesia_Eastern":{"long":{"standard":"Horário da Indonésia Oriental"}},"Indonesia_Western":{"long":{"standard":"Horário da Indonésia Ocidental"}},"Iran":{"long":{"generic":"Horário do Irã","standard":"Horário Padrão do Irã","daylight":"Horário de Verão do Irã"}},"Irkutsk":{"long":{"generic":"Horário de Irkutsk","standard":"Horário Padrão de Irkutsk","daylight":"Horário de Verão de Irkutsk"}},"Israel":{"long":{"generic":"Horário de Israel","standard":"Horário Padrão de Israel","daylight":"Horário de Verão de Israel"}},"Japan":{"long":{"generic":"Horário do Japão","standard":"Horário Padrão do Japão","daylight":"Horário de Verão do Japão"}},"Kamchatka":{"long":{"generic":"Horário de Petropavlovsk-Kamchatski","standard":"Horário Padrão de Petropavlovsk-Kamchatski","daylight":"Horário de Verão de Petropavlovsk-Kamchatski"}},"Kazakhstan_Eastern":{"long":{"standard":"Horário do Casaquistão Oriental"}},"Kazakhstan_Western":{"long":{"standard":"Horário do Casaquistão Ocidental"}},"Korea":{"long":{"generic":"Horário da Coreia","standard":"Horário Padrão da Coreia","daylight":"Horário de Verão da Coreia"}},"Kosrae":{"long":{"standard":"Horário de Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Horário de Krasnoyarsk","standard":"Horário Padrão de Krasnoyarsk","daylight":"Horário de Verão de Krasnoyarsk"}},"Kyrgystan":{"long":{"standard":"Horário do Quirguistão"}},"Lanka":{"long":{"standard":"Horário de Lanka"}},"Line_Islands":{"long":{"standard":"Horário das Ilhas Line"}},"Lord_Howe":{"long":{"generic":"Horário de Lord Howe","standard":"Horário Padrão de Lord Howe","daylight":"Horário de Verão de Lord Howe"}},"Macau":{"long":{"generic":"Horário de Macau","standard":"Horário Padrão de Macau","daylight":"Horário de Verão de Macau"}},"Macquarie":{"long":{"standard":"Horário da Ilha Macquarie"}},"Magadan":{"long":{"generic":"Horário de Magadan","standard":"Horário Padrão de Magadan","daylight":"Horário de Verão de Magadan"}},"Malaysia":{"long":{"standard":"Horário da Malásia"}},"Maldives":{"long":{"standard":"Horário das Ilhas Maldivas"}},"Marquesas":{"long":{"standard":"Horário das Marquesas"}},"Marshall_Islands":{"long":{"standard":"Horário das Ilhas Marshall"}},"Mauritius":{"long":{"generic":"Horário das Ilhas Maurício","standard":"Horário Padrão das Ilhas Maurício","daylight":"Horário de Verão das Ilhas Maurício"}},"Mawson":{"long":{"standard":"Horário de Mawson"}},"Mexico_Northwest":{"long":{"generic":"Horário do Noroeste do México","standard":"Horário Padrão do Noroeste do México","daylight":"Horário de Verão do Noroeste do México"}},"Mexico_Pacific":{"long":{"generic":"Horário do Pacífico do México","standard":"Horário Padrão do Pacífico do México","daylight":"Horário de Verão do Pacífico do México"}},"Mongolia":{"long":{"generic":"Horário de Ulan Bator","standard":"Horário Padrão de Ulan Bator","daylight":"Horário de Verão de Ulan Bator"}},"Moscow":{"long":{"generic":"Horário de Moscou","standard":"Horário Padrão de Moscou","daylight":"Horário de Verão de Moscou"}},"Myanmar":{"long":{"standard":"Horário de Mianmar"}},"Nauru":{"long":{"standard":"Horário de Nauru"}},"Nepal":{"long":{"standard":"Horário do Nepal"}},"New_Caledonia":{"long":{"generic":"Horário da Nova Caledônia","standard":"Horário Padrão da Nova Caledônia","daylight":"Horário de Verão da Nova Caledônia"}},"New_Zealand":{"long":{"generic":"Horário da Nova Zelândia","standard":"Horário Padrão da Nova Zelândia","daylight":"Horário de Verão da Nova Zelândia"}},"Newfoundland":{"long":{"generic":"Horário de Terra Nova","standard":"Horário Padrão de Terra Nova","daylight":"Horário de Verão de Terra Nova"}},"Niue":{"long":{"standard":"Horário de Niue"}},"Norfolk":{"long":{"standard":"Horário da Ilha Norfolk"}},"Noronha":{"long":{"generic":"Horário de Fernando de Noronha","standard":"Horário Padrão de Fernando de Noronha","daylight":"Horário de Verão de Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Horário das Ilhas Mariana do Norte"}},"Novosibirsk":{"long":{"generic":"Horário de Novosibirsk","standard":"Horário Padrão de Novosibirsk","daylight":"Horário de Verão de Novosibirsk"}},"Omsk":{"long":{"generic":"Horário de Omsk","standard":"Horário Padrão de Omsk","daylight":"Horário de Verão de Omsk"}},"Pakistan":{"long":{"generic":"Horário do Paquistão","standard":"Horário Padrão do Paquistão","daylight":"Horário de Verão do Paquistão"}},"Palau":{"long":{"standard":"Horário de Palau"}},"Papua_New_Guinea":{"long":{"standard":"Horário de Papua Nova Guiné"}},"Paraguay":{"long":{"generic":"Horário do Paraguai","standard":"Horário Padrão do Paraguai","daylight":"Horário de Verão do Paraguai"}},"Peru":{"long":{"generic":"Horário do Peru","standard":"Horário Padrão do Peru","daylight":"Horário de Verão do Peru"}},"Philippines":{"long":{"generic":"Horário das Filipinas","standard":"Horário Padrão das Filipinas","daylight":"Horário de Verão das Filipinas"}},"Phoenix_Islands":{"long":{"standard":"Horário das Ilhas Fênix"}},"Pierre_Miquelon":{"long":{"generic":"Horário de Saint Pierre e Miquelon","standard":"Horário Padrão de Saint Pierre e Miquelon","daylight":"Horário de Verão de Saint Pierre e Miquelon"}},"Pitcairn":{"long":{"standard":"Horário de Pitcairn"}},"Ponape":{"long":{"standard":"Horário de Ponape"}},"Qyzylorda":{"long":{"generic":"Horário de Qyzylorda","standard":"Horário Padrão de Qyzylorda","daylight":"Horário de Verão de Qyzylorda"}},"Reunion":{"long":{"standard":"Horário das Ilhas Reunião"}},"Rothera":{"long":{"standard":"Horário de Rothera"}},"Sakhalin":{"long":{"generic":"Horário de Sacalina","standard":"Horário Padrão de Sacalina","daylight":"Horário de Verão de Sacalina"}},"Samara":{"long":{"generic":"Horário de Samara","standard":"Horário Padrão de Samara","daylight":"Horário de Verão de Samara"}},"Samoa":{"long":{"generic":"Horário de Samoa","standard":"Horário Padrão de Samoa","daylight":"Horário de Verão de Samoa"}},"Seychelles":{"long":{"standard":"Horário das Ilhas Seychelles"}},"Singapore":{"long":{"standard":"Horário Padrão de Cingapura"}},"Solomon":{"long":{"standard":"Horário das Ilhas Salomão"}},"South_Georgia":{"long":{"standard":"Horário da Geórgia do Sul"}},"Suriname":{"long":{"standard":"Horário do Suriname"}},"Syowa":{"long":{"standard":"Horário de Syowa"}},"Tahiti":{"long":{"standard":"Horário do Taiti"}},"Taipei":{"long":{"generic":"Horário de Taipei","standard":"Horário Padrão de Taipei","daylight":"Horário de Verão de Taipei"}},"Tajikistan":{"long":{"standard":"Horário do Tajiquistão"}},"Tokelau":{"long":{"standard":"Horário de Tokelau"}},"Tonga":{"long":{"generic":"Horário de Tonga","standard":"Horário Padrão de Tonga","daylight":"Horário de Verão de Tonga"}},"Truk":{"long":{"standard":"Horário de Chuuk"}},"Turkmenistan":{"long":{"generic":"Horário do Turcomenistão","standard":"Horário Padrão do Turcomenistão","daylight":"Horário de Verão do Turcomenistão"}},"Tuvalu":{"long":{"standard":"Horário de Tuvalu"}},"Uruguay":{"long":{"generic":"Horário do Uruguai","standard":"Horário Padrão do Uruguai","daylight":"Horário de Verão do Uruguai"}},"Uzbekistan":{"long":{"generic":"Horário do Uzbequistão","standard":"Horário Padrão do Uzbequistão","daylight":"Horário de Verão do Uzbequistão"}},"Vanuatu":{"long":{"generic":"Horário de Vanuatu","standard":"Horário Padrão de Vanuatu","daylight":"Horário de Verão de Vanuatu"}},"Venezuela":{"long":{"standard":"Horário da Venezuela"}},"Vladivostok":{"long":{"generic":"Horário de Vladivostok","standard":"Horário Padrão de Vladivostok","daylight":"Horário de Verão de Vladivostok"}},"Volgograd":{"long":{"generic":"Horário de Volgogrado","standard":"Horário Padrão de Volgogrado","daylight":"Horário de Verão de Volgogrado"}},"Vostok":{"long":{"standard":"Horário de Vostok"}},"Wake":{"long":{"standard":"Horário das Ilhas Wake"}},"Wallis":{"long":{"standard":"Horário de Wallis e Futuna"}},"Yakutsk":{"long":{"generic":"Horário de Yakutsk","standard":"Horário Padrão de Yakutsk","daylight":"Horário de Verão de Yakutsk"}},"Yekaterinburg":{"long":{"generic":"Horário de Ecaterimburgo","standard":"Horário Padrão de Ecaterimburgo","daylight":"Horário de Verão de Ecaterimburgo"}}}} \ No newline at end of file diff --git a/Punic/data/pt/units.json b/Punic/data/pt/units.json new file mode 100644 index 0000000..f450149 --- /dev/null +++ b/Punic/data/pt/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s por %2$s","acceleration":{"g-force":{"_name":"força g","one":"%1$s força g","other":"%1$s força g"},"meter-per-second-squared":{"_name":"metros por segundo ao quadrado","one":"%1$s metro por segundo ao quadrado","other":"%1$s metros por segundo ao quadrado"}},"angle":{"arc-minute":{"_name":"minutos de arco","one":"%1$s minuto de arco","other":"%1$s minutos de arco"},"arc-second":{"_name":"segundos de arco","one":"%1$s segundo de arco","other":"%1$s segundos de arco"},"degree":{"_name":"graus","one":"%1$s grau","other":"%1$s graus"},"radian":{"_name":"radianos","one":"%1$s radiano","other":"%1$s radianos"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s hectare","other":"%1$s hectares"},"square-centimeter":{"_name":"centímetros quadrados","one":"%1$s centímetro quadrado","other":"%1$s centímetros quadrados"},"square-foot":{"_name":"pés quadrados","one":"%1$s pé quadrado","other":"%1$s pés quadrados"},"square-inch":{"_name":"polegadas quadradas","one":"%1$s polegada quadrada","other":"%1$s polegadas quadradas"},"square-kilometer":{"_name":"quilômetros quadrados","one":"%1$s quilômetro quadrado","other":"%1$s quilômetros quadrados"},"square-meter":{"_name":"metros quadrados","one":"%1$s metro quadrado","other":"%1$s metros quadrados"},"square-mile":{"_name":"milhas quadradas","one":"%1$s milha quadrada","other":"%1$s milhas quadradas"},"square-yard":{"_name":"jardas quadradas","one":"%1$s jarda quadrada","other":"%1$s jardas quadradas"}},"consumption":{"liter-per-kilometer":{"_name":"litros por quilômetro","one":"%1$s litro por quilômetro","other":"%1$s litros por quilômetro"},"mile-per-gallon":{"_name":"milhas por galão","one":"%1$s milha por galão","other":"%1$s milhas por galão"}},"digital":{"bit":{"_name":"bits","one":"%1$s bit","other":"%1$s bits"},"byte":{"_name":"bytes","one":"%1$s byte","other":"%1$s bytes"},"gigabit":{"_name":"gigabits","one":"%1$s gigabit","other":"%1$s gigabits"},"gigabyte":{"_name":"gigabytes","one":"%1$s gigabyte","other":"%1$s gigabytes"},"kilobit":{"_name":"kilobits","one":"%1$s kilobit","other":"%1$s kilobits"},"kilobyte":{"_name":"kilobytes","one":"%1$s kilobyte","other":"%1$s kilobytes"},"megabit":{"_name":"megabits","one":"%1$s megabit","other":"%1$s megabits"},"megabyte":{"_name":"megabytes","one":"%1$s megabyte","other":"%1$s megabytes"},"terabit":{"_name":"terabits","one":"%1$s terabit","other":"%1$s terabits"},"terabyte":{"_name":"terabytes","one":"%1$s terabyte","other":"%1$s terabytes"}},"duration":{"day":{"_name":"dias","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"horas","one":"%1$s hora","other":"%1$s horas","_per":"%1$s por hora"},"microsecond":{"_name":"microssegundos","one":"%1$s microssegundo","other":"%1$s microssegundos"},"millisecond":{"_name":"milissegundos","one":"%1$s milissegundo","other":"%1$s milissegundos"},"minute":{"_name":"minutos","one":"%1$s minuto","other":"%1$s minutos"},"month":{"_name":"meses","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"nanossegundos","one":"%1$s nanossegundo","other":"%1$s nanossegundos"},"second":{"_name":"segundos","one":"%1$s segundo","other":"%1$s segundos","_per":"%1$s por segundo"},"week":{"_name":"semanas","one":"%1$s semana","other":"%1$s semanas"},"year":{"_name":"anos","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amperes","one":"%1$s ampere","other":"%1$s amperes"},"milliampere":{"_name":"miliamperes","one":"%1$s miliampere","other":"%1$s miliamperes"},"ohm":{"_name":"ohms","one":"%1$s ohm","other":"%1$s ohms"},"volt":{"_name":"volts","one":"%1$s volt","other":"%1$s volts"}},"energy":{"calorie":{"_name":"calorias","one":"%1$s caloria","other":"%1$s calorias"},"foodcalorie":{"_name":"Calorias","one":"%1$s Caloria","other":"%1$s Calorias"},"joule":{"_name":"joules","one":"%1$s joule","other":"%1$s joules"},"kilocalorie":{"_name":"quilocalorias","one":"%1$s quilocaloria","other":"%1$s quilocalorias"},"kilojoule":{"_name":"quilojoules","one":"%1$s quilojoule","other":"%1$s quilojoules"},"kilowatt-hour":{"_name":"quilowatts-hora","one":"%1$s quilowatt-hora","other":"%1$s quilowatts-hora"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"unidades astronômicas","one":"%1$s unidade astronômica","other":"%1$s unidades astronômicas"},"centimeter":{"_name":"centímetros","one":"%1$s centímetro","other":"%1$s centímetros"},"decimeter":{"_name":"decímetros","one":"%1$s decímetro","other":"%1$s decímetros"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s pé","other":"%1$s pés"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"polegadas","one":"%1$s polegada","other":"%1$s polegadas"},"kilometer":{"_name":"quilômetros","one":"%1$s quilômetro","other":"%1$s quilômetros"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metros","one":"%1$s metro","other":"%1$s metros"},"micrometer":{"_name":"micrômetros","one":"%1$s micrômetro","other":"%1$s micrômetros"},"mile":{"_name":"milhas","one":"%1$s milha","other":"%1$s milhas"},"millimeter":{"_name":"milímetros","one":"%1$s milímetro","other":"%1$s milímetros"},"nanometer":{"_name":"nanômetros","one":"%1$s nanômetro","other":"%1$s nanômetros"},"nautical-mile":{"_name":"milhas náuticas","one":"%1$s milha náutica","other":"%1$s milhas náuticas"},"parsec":{"_name":"parsecs","one":"%1$s parsec","other":"%1$s parsecs"},"picometer":{"_name":"picômetros","one":"%1$s picômetro","other":"%1$s picômetros"},"yard":{"_name":"jardas","one":"%1$s jarda","other":"%1$s jardas"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"quilates","one":"%1$s quilate","other":"%1$s quilates"},"gram":{"_name":"gramas","one":"%1$s grama","other":"%1$s gramas"},"kilogram":{"_name":"quilogramas","one":"%1$s quilograma","other":"%1$s quilogramas"},"metric-ton":{"_name":"toneladas métricas","one":"%1$s tonelada métrica","other":"%1$s toneladas métricas"},"microgram":{"_name":"microgramas","one":"%1$s micrograma","other":"%1$s microgramas"},"milligram":{"_name":"miligramas","one":"%1$s miligrama","other":"%1$s miligramas"},"ounce":{"_name":"onças","one":"%1$s onça","other":"%1$s onças"},"ounce-troy":{"_name":"onças troy","one":"%1$s onça troy","other":"%1$s onças troy"},"pound":{"_name":"libras","one":"%1$s libra","other":"%1$s libras"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s tonelada","other":"%1$s toneladas"}},"power":{"gigawatt":{"_name":"gigawatts","one":"%1$s gigawatt","other":"%1$s gigawatts"},"horsepower":{"_name":"cavalos-vapor","one":"%1$s cavalo-vapor","other":"%1$s cavalos-vapor"},"kilowatt":{"_name":"quilowatts","one":"%1$s quilowatt","other":"%1$s quilowatts"},"megawatt":{"_name":"megawatts","one":"%1$s megawatt","other":"%1$s megawatts"},"milliwatt":{"_name":"miliwatts","one":"%1$s miliwatt","other":"%1$s miliwatts"},"watt":{"_name":"watts","one":"%1$s watt","other":"%1$s watts"}},"pressure":{"hectopascal":{"_name":"hectopascais","one":"%1$s hectopascal","other":"%1$s hectopascais"},"inch-hg":{"_name":"polegadas de mercúrio","one":"%1$s polegada de mercúrio","other":"%1$s polegadas de mercúrio"},"millibar":{"_name":"milibares","one":"%1$s milibar","other":"%1$s milibares"},"millimeter-of-mercury":{"_name":"milímetros de mercúrio","one":"%1$s milímetro de mercúrio","other":"%1$s milímetros de mercúrio"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kilates","one":"%1$s kilate","other":"%1$s kilates"}},"speed":{"kilometer-per-hour":{"_name":"quilômetros por hora","one":"%1$s quilômetro por hora","other":"%1$s quilômetros por hora"},"meter-per-second":{"_name":"metros por segundo","one":"%1$s metro por segundo","other":"%1$s metros por segundo"},"mile-per-hour":{"_name":"milhas por hora","one":"%1$s milha por hora","other":"%1$s milhas por hora"}},"temperature":{"celsius":{"_name":"graus Celsius","one":"%1$s grau Celsius","other":"%1$s graus Celsius"},"fahrenheit":{"_name":"graus Fahrenheit","one":"%1$s grau Fahrenheit","other":"%1$s graus Fahrenheit"},"kelvin":{"_name":"kelvins","one":"%1$s kelvin","other":"%1$s kelvins"}},"volume":{"acre-foot":{"_name":"acre-pés","one":"%1$s acre-pé","other":"%1$s acre-pés"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitros","one":"%1$s centilitro","other":"%1$s centilitros"},"cubic-centimeter":{"_name":"centímetros cúbicos","one":"%1$s centímetro cúbico","other":"%1$s centímetros cúbicos"},"cubic-foot":{"_name":"pés cúbicos","one":"%1$s pé cúbico","other":"%1$s pés cúbicos"},"cubic-inch":{"_name":"polegadas cúbicas","one":"%1$s polegada cúbica","other":"%1$s polegadas cúbicas"},"cubic-kilometer":{"_name":"quilômetros cúbicos","one":"%1$s quilômetro cúbico","other":"%1$s quilômetros cúbicos"},"cubic-meter":{"_name":"metros cúbicos","one":"%1$s metro cúbico","other":"%1$s metros cúbicos"},"cubic-mile":{"_name":"milhas cúbicas","one":"%1$s milha cúbica","other":"%1$s milhas cúbicas"},"cubic-yard":{"_name":"jardas cúbicas","one":"%1$s jarda cúbica","other":"%1$s jardas cúbicas"},"cup":{"_name":"xícaras","one":"%1$s xícara","other":"%1$s xícaras"},"deciliter":{"_name":"decilitros","one":"%1$s decilitro","other":"%1$s decilitros"},"fluid-ounce":{"_name":"onças fluidas","one":"%1$s onça fluida","other":"%1$s onças fluidas"},"gallon":{"_name":"galões","one":"%1$s galão","other":"%1$s galões"},"hectoliter":{"_name":"hectolitros","one":"%1$s hectolitro","other":"%1$s hectolitros"},"liter":{"_name":"litros","one":"%1$s litro","other":"%1$s litros"},"megaliter":{"_name":"megalitros","one":"%1$s megalitro","other":"%1$s megalitros"},"milliliter":{"_name":"mililitros","one":"%1$s mililitro","other":"%1$s mililitros"},"pint":{"_name":"pints","one":"%1$s pint","other":"%1$s pints"},"quart":{"_name":"quartos","one":"%1$s quarto","other":"%1$s quartos"},"tablespoon":{"_name":"colheres de sopa","one":"%1$s colher de sopa","other":"%1$s colheres de sopa"},"teaspoon":{"_name":"colheres de chá","one":"%1$s colher de chá","other":"%1$s colheres de chá"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"força g","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metros/seg²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s arcmin","other":"%1$s arcmins"},"arc-second":{"_name":"arcsegs","one":"%1$s arcseg","other":"%1$s arcsegs"},"degree":{"_name":"graus","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianos","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pés²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"polegadas²","one":"%1$s pol²","other":"%1$s pol²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"metros²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"milhas²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"jardas²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litros/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"milhas/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dias","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"horas","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"milissegundos","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"mins","one":"%1$s min","other":"%1$s min"},"month":{"_name":"meses","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"segs","one":"%1$s seg","other":"%1$s seg","_per":"%1$s/s"},"week":{"_name":"semanas","one":"%1$s sem.","other":"%1$s sem."},"year":{"_name":"anos","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"quilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hora","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s pé","other":"%1$s pés"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pol.","one":"%1$s pol.","other":"%1$s pol."},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metros","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milhas","one":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"mn","one":"%1$s mn","other":"%1$s mn"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardas","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quilates","one":"%1$s ql","other":"%1$s ql"},"gram":{"_name":"gramas","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libras","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"cv","one":"%1$s cv","other":"%1$s cv"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"pol Hg","one":"%1$s pol Hg","other":"%1$s pol Hg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kilates","one":"%1$s k","other":"%1$s k"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"metros/seg","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"milhas/hora","one":"%1$s mph","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"graus C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"graus F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre-pés","one":"%1$s acre-pé","other":"%1$s acre-pés"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"pés³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"polegadas³","one":"%1$s pol³","other":"%1$s pol³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"jardas³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"xícaras","one":"%1$s xíc.","other":"%1$s xíc."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litros","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"CS","one":"%1$s CS","other":"%1$s CS"},"teaspoon":{"_name":"cc","one":"%1$s cc","other":"%1$s cc"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"força g","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metros/seg²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmins","one":"%1$s'","other":"%1$s'"},"arc-second":{"_name":"arcsegs","one":"%1$s\"","other":"%1$s\""},"degree":{"_name":"graus","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianos","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acres","one":"%1$s acre","other":"%1$s acres"},"hectare":{"_name":"hectares","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"pés²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"polegadas²","one":"%1$s pol²","other":"%1$s pol²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"metros²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"milhas²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"jardas²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litros/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"milhas/gal","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GByte","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kByte","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MByte","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TByte","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dia","one":"%1$s dia","other":"%1$s dias"},"hour":{"_name":"hora","one":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mês","one":"%1$s mês","other":"%1$s meses"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"seg","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"sem.","one":"%1$s sem.","other":"%1$s sem."},"year":{"_name":"ano","one":"%1$s ano","other":"%1$s anos"}},"electric":{"ampere":{"_name":"amps","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamps","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohms","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volts","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joules","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"quilojoule","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kW-hora","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"pés","one":"%1$s pé","other":"%1$s pés"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"pol.","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"anos-luz","one":"%1$s ano-luz","other":"%1$s anos-luz"},"meter":{"_name":"metro","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"milhas","one":"%1$s milha","other":"%1$s milhas"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"mn","one":"%1$s mn","other":"%1$s mn"},"parsec":{"_name":"parsecs","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"jardas","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lux","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"quilates","one":"%1$s ql","other":"%1$s ql"},"gram":{"_name":"grama","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz troy","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libras","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"toneladas","one":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"cv","one":"%1$s cv","other":"%1$s cv"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"watts","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"pol Hg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kilates","one":"%1$s k","other":"%1$s k"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"metros/seg","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"milhas/hora","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"graus F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"acre-pés","one":"%1$s acre-pés","other":"%1$s acre-pés"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"pés³","one":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"polegadas³","one":"%1$s pol³","other":"%1$s pol³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"jardas³","one":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"xícaras","one":"%1$s xíc.","other":"%1$s xíc."},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litro","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pints","one":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qts","one":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"CS","one":"%1$s CS","other":"%1$s CS"},"teaspoon":{"_name":"cc","one":"%1$s cc","other":"%1$s cc"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/ro/calendar.json b/Punic/data/ro/calendar.json new file mode 100644 index 0000000..86a9a3d --- /dev/null +++ b/Punic/data/ro/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"ian.","2":"feb.","3":"mar.","4":"apr.","5":"mai","6":"iun.","7":"iul.","8":"aug.","9":"sept.","10":"oct.","11":"nov.","12":"dec."},"narrow":{"1":"I","2":"F","3":"M","4":"A","5":"M","6":"I","7":"I","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"ianuarie","2":"februarie","3":"martie","4":"aprilie","5":"mai","6":"iunie","7":"iulie","8":"august","9":"septembrie","10":"octombrie","11":"noiembrie","12":"decembrie"}},"stand-alone":{"abbreviated":{"1":"ian.","2":"feb.","3":"mar.","4":"apr.","5":"mai","6":"iun.","7":"iul.","8":"aug.","9":"sept.","10":"oct.","11":"nov.","12":"dec."},"narrow":{"1":"I","2":"F","3":"M","4":"A","5":"M","6":"I","7":"I","8":"A","9":"S","10":"O","11":"N","12":"D"},"wide":{"1":"Ianuarie","2":"Februarie","3":"Martie","4":"Aprilie","5":"Mai","6":"Iunie","7":"Iulie","8":"August","9":"Septembrie","10":"Octombrie","11":"Noiembrie","12":"Decembrie"}}},"days":{"format":{"abbreviated":{"sun":"Dum","mon":"Lun","tue":"Mar","wed":"Mie","thu":"Joi","fri":"Vin","sat":"Sâm"},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"J","fri":"V","sat":"S"},"short":{"sun":"Du","mon":"Lu","tue":"Ma","wed":"Mi","thu":"Jo","fri":"Vi","sat":"Sâ"},"wide":{"sun":"duminică","mon":"luni","tue":"marți","wed":"miercuri","thu":"joi","fri":"vineri","sat":"sâmbătă"}},"stand-alone":{"abbreviated":{"sun":"Dum","mon":"Lun","tue":"Mar","wed":"Mie","thu":"Joi","fri":"Vin","sat":"Sâm"},"narrow":{"sun":"D","mon":"L","tue":"M","wed":"M","thu":"J","fri":"V","sat":"S"},"short":{"sun":"Du","mon":"Lu","tue":"Ma","wed":"Mi","thu":"Jo","fri":"Vi","sat":"Sâ"},"wide":{"sun":"Duminică","mon":"Luni","tue":"Marți","wed":"Miercuri","thu":"Joi","fri":"Vineri","sat":"Sâmbătă"}}},"quarters":{"format":{"abbreviated":{"1":"trim. I","2":"trim. II","3":"trim. III","4":"trim. IV"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"trimestrul I","2":"trimestrul al II-lea","3":"trimestrul al III-lea","4":"trimestrul al IV-lea"}},"stand-alone":{"abbreviated":{"1":"Trim. I","2":"Trim. II","3":"Trim. III","4":"Trim. IV"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"Trimestrul I","2":"Trimestrul al II-lea","3":"Trimestrul al III-lea","4":"Trimestrul al IV-lea"}}},"dayPeriods":{"format":{"abbreviated":{"am":"a.m.","noon":"la prânz","pm":"p.m."},"narrow":{"am":"a.m.","noon":"prânz","pm":"p.m."},"wide":{"am":"a.m.","noon":"la prânz","pm":"p.m."}},"stand-alone":{"abbreviated":{"am":"a.m.","noon":"la prânz","pm":"p.m."},"narrow":{"am":"a.m.","noon":"prânz","pm":"p.m."},"wide":{"am":"a.m.","noon":"la prânz","pm":"p.m."}}},"eras":{"wide":{"0":"înainte de Hristos","0-alt-variant":"înaintea erei noastre","1":"după Hristos","1-alt-variant":"era noastră"},"abbreviated":{"0":"î.Hr.","0-alt-variant":"î.e.n","1":"d.Hr.","1-alt-variant":"e.n."},"narrow":{"0":"î.Hr.","0-alt-variant":"î.e.n","1":"d.Hr.","1-alt-variant":"e.n."}},"dateFormats":{"full":"EEEE, d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"dd.MM.y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s, %1$s","long":"%2$s, %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/ro/dateFields.json b/Punic/data/ro/dateFields.json new file mode 100644 index 0000000..d433ec5 --- /dev/null +++ b/Punic/data/ro/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Eră"},"year":{"displayName":"An","relative-type--1":"anul trecut","relative-type-0":"anul acesta","relative-type-1":"anul viitor","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} an","relativeTimePattern-count-few":"peste {0} ani","relativeTimePattern-count-other":"peste {0} de ani"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} an","relativeTimePattern-count-few":"acum {0} ani","relativeTimePattern-count-other":"acum {0} de ani"}},"year-short":{"displayName":"an","relative-type--1":"anul trecut","relative-type-0":"anul acesta","relative-type-1":"anul viitor","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} an","relativeTimePattern-count-few":"peste {0} ani","relativeTimePattern-count-other":"peste {0} ani"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} an","relativeTimePattern-count-few":"acum {0} ani","relativeTimePattern-count-other":"acum {0} de ani"}},"year-narrow":{"displayName":"an","relative-type--1":"anul trecut","relative-type-0":"anul acesta","relative-type-1":"anul viitor","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} an","relativeTimePattern-count-few":"+{0} ani","relativeTimePattern-count-other":"+{0} ani"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} an","relativeTimePattern-count-few":"-{0} ani","relativeTimePattern-count-other":"-{0} ani"}},"quarter":{"displayName":"Trimestru","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} trimestru","relativeTimePattern-count-few":"peste {0} trimestre","relativeTimePattern-count-other":"peste {0} de trimestre"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} trimestru","relativeTimePattern-count-few":"acum {0} trimestre","relativeTimePattern-count-other":"acum {0} de trimestre"}},"quarter-short":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} trim.","relativeTimePattern-count-few":"peste {0} trim.","relativeTimePattern-count-other":"peste {0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} trim.","relativeTimePattern-count-few":"acum {0} trim.","relativeTimePattern-count-other":"acum {0} trim."}},"quarter-narrow":{"displayName":"trim.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} trim.","relativeTimePattern-count-few":"+{0} trim.","relativeTimePattern-count-other":"+{0} trim."},"relativeTime-type-past":{"relativeTimePattern-count-one":"+{0} trim.","relativeTimePattern-count-few":"+{0} trim.","relativeTimePattern-count-other":"+{0} trim."}},"month":{"displayName":"Lună","relative-type--1":"luna trecută","relative-type-0":"luna aceasta","relative-type-1":"luna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} lună","relativeTimePattern-count-few":"peste {0} luni","relativeTimePattern-count-other":"peste {0} de luni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} lună","relativeTimePattern-count-few":"acum {0} luni","relativeTimePattern-count-other":"acum {0} de luni"}},"month-short":{"displayName":"lună","relative-type--1":"luna trecută","relative-type-0":"luna aceasta","relative-type-1":"luna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} lună","relativeTimePattern-count-few":"peste {0} luni","relativeTimePattern-count-other":"peste {0} luni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} lună","relativeTimePattern-count-few":"acum {0} luni","relativeTimePattern-count-other":"acum {0} luni"}},"month-narrow":{"displayName":"lună","relative-type--1":"luna trecută","relative-type-0":"luna aceasta","relative-type-1":"luna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} lună","relativeTimePattern-count-few":"+{0} luni","relativeTimePattern-count-other":"+{0} luni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} lună","relativeTimePattern-count-few":"-{0} luni","relativeTimePattern-count-other":"-{0} luni"}},"week":{"displayName":"Săptămână","relative-type--1":"săptămâna trecută","relative-type-0":"săptămâna aceasta","relative-type-1":"săptămâna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} săptămână","relativeTimePattern-count-few":"peste {0} săptămâni","relativeTimePattern-count-other":"peste {0} de săptămâni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} săptămână","relativeTimePattern-count-few":"acum {0} săptămâni","relativeTimePattern-count-other":"acum {0} de săptămâni"}},"week-short":{"displayName":"săpt.","relative-type--1":"săptămâna trecută","relative-type-0":"săptămâna aceasta","relative-type-1":"săptămâna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} săpt.","relativeTimePattern-count-few":"peste {0} săpt.","relativeTimePattern-count-other":"peste {0} săpt."},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} săpt.","relativeTimePattern-count-few":"acum {0} săpt.","relativeTimePattern-count-other":"acum {0} săpt."}},"week-narrow":{"displayName":"săpt.","relative-type--1":"săptămâna trecută","relative-type-0":"săptămâna aceasta","relative-type-1":"săptămâna viitoare","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} săpt.","relativeTimePattern-count-few":"+{0} săpt.","relativeTimePattern-count-other":"+{0} săpt."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} săpt.","relativeTimePattern-count-few":"-{0} săpt.","relativeTimePattern-count-other":"-{0} săpt."}},"day":{"displayName":"Zi","relative-type--1":"ieri","relative-type--2":"alaltăieri","relative-type-0":"azi","relative-type-1":"mâine","relative-type-2":"poimâine","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} zi","relativeTimePattern-count-few":"peste {0} zile","relativeTimePattern-count-other":"peste {0} de zile"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} zi","relativeTimePattern-count-few":"acum {0} zile","relativeTimePattern-count-other":"acum {0} de zile"}},"day-short":{"displayName":"zi","relative-type--1":"ieri","relative-type--2":"alaltăieri","relative-type-0":"azi","relative-type-1":"mâine","relative-type-2":"poimâine","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} zi","relativeTimePattern-count-few":"peste {0} zile","relativeTimePattern-count-other":"peste {0} zile"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} zi","relativeTimePattern-count-few":"acum {0} zile","relativeTimePattern-count-other":"acum {0} zile"}},"day-narrow":{"displayName":"zi","relative-type--1":"ieri","relative-type--2":"alaltăieri","relative-type-0":"azi","relative-type-1":"mâine","relative-type-2":"poimâine","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} zi","relativeTimePattern-count-few":"+{0} zile","relativeTimePattern-count-other":"+{0} zile"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} zi","relativeTimePattern-count-few":"-{0} zile","relativeTimePattern-count-other":"-{0} zile"}},"weekday":{"displayName":"Zi a săptămânii"},"sun":{"relative-type--1":"duminica trecută","relative-type-0":"duminica aceasta","relative-type-1":"duminica viitoare"},"sun-short":{"relative-type--1":"dum. trecută","relative-type-0":"dum. aceasta","relative-type-1":"dum. viitoare"},"sun-narrow":{"relative-type--1":"D (trecută)","relative-type-0":"D (aceasta)","relative-type-1":"D (viitoare)"},"mon":{"relative-type--1":"lunea trecută","relative-type-0":"lunea aceasta","relative-type-1":"lunea viitoare"},"mon-short":{"relative-type--1":"lun. trecută","relative-type-0":"lun. aceasta","relative-type-1":"lun. viitoare"},"mon-narrow":{"relative-type--1":"L (trecută)","relative-type-0":"L (aceasta)","relative-type-1":"L (viitoare)"},"tue":{"relative-type--1":"marțea trecută","relative-type-0":"marțea aceasta","relative-type-1":"marțea viitoare"},"tue-short":{"relative-type--1":"mar. trecută","relative-type-0":"mar. aceasta","relative-type-1":"mar. viitoare"},"tue-narrow":{"relative-type--1":"Ma (trecută)","relative-type-0":"Ma (aceasta)","relative-type-1":"Ma (viitoare)"},"wed":{"relative-type--1":"miercurea trecută","relative-type-0":"miercurea aceasta","relative-type-1":"miercurea viitoare"},"wed-short":{"relative-type--1":"mie. trecută","relative-type-0":"mie. aceasta","relative-type-1":"mie. viitoare"},"wed-narrow":{"relative-type--1":"Mi (trecută)","relative-type-0":"Mi (aceasta)","relative-type-1":"Mi (viitoare)"},"thu":{"relative-type--1":"joia trecută","relative-type-0":"joia aceasta","relative-type-1":"joia viitoare"},"thu-short":{"relative-type--1":"joia trecută","relative-type-0":"joia aceasta","relative-type-1":"joia viitoare"},"thu-narrow":{"relative-type--1":"J (trecută)","relative-type-0":"J (aceasta)","relative-type-1":"J (viitoare)"},"fri":{"relative-type--1":"vinerea trecută","relative-type-0":"vinerea aceasta","relative-type-1":"vinerea viitoare"},"fri-short":{"relative-type--1":"vin. trecută","relative-type-0":"vin. aceasta","relative-type-1":"vin. viitoare"},"fri-narrow":{"relative-type--1":"V (trecută)","relative-type-0":"V (aceasta)","relative-type-1":"V (viitoare)"},"sat":{"relative-type--1":"sâmbăta trecută","relative-type-0":"sâmbăta aceasta","relative-type-1":"sâmbăta viitoare"},"sat-short":{"relative-type--1":"sâm. trecută","relative-type-0":"sâm. aceasta","relative-type-1":"sâm. viitoare"},"sat-narrow":{"relative-type--1":"S (trecută)","relative-type-0":"S (aceasta)","relative-type-1":"S (viitoare)"},"dayperiod":{"displayName":"a.m/p.m."},"hour":{"displayName":"Oră","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} oră","relativeTimePattern-count-few":"peste {0} ore","relativeTimePattern-count-other":"peste {0} de ore"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} oră","relativeTimePattern-count-few":"acum {0} ore","relativeTimePattern-count-other":"acum {0} de ore"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} h","relativeTimePattern-count-few":"peste {0} h","relativeTimePattern-count-other":"peste {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} h","relativeTimePattern-count-few":"acum {0} h","relativeTimePattern-count-other":"acum {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-few":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} h","relativeTimePattern-count-few":"-{0} h","relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minut","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} minut","relativeTimePattern-count-few":"peste {0} minute","relativeTimePattern-count-other":"peste {0} de minute"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} minut","relativeTimePattern-count-few":"acum {0} minute","relativeTimePattern-count-other":"acum {0} de minute"}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} min.","relativeTimePattern-count-few":"peste {0} min.","relativeTimePattern-count-other":"peste {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} min.","relativeTimePattern-count-few":"acum {0} min.","relativeTimePattern-count-other":"acum {0} min."}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-few":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} m","relativeTimePattern-count-few":"-{0} m","relativeTimePattern-count-other":"-{0} m"}},"second":{"displayName":"Secundă","relative-type-0":"acum","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} secundă","relativeTimePattern-count-few":"peste {0} secunde","relativeTimePattern-count-other":"peste {0} de secunde"},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} secundă","relativeTimePattern-count-few":"acum {0} secunde","relativeTimePattern-count-other":"acum {0} de secunde"}},"second-short":{"displayName":"sec.","relative-type-0":"acum","relativeTime-type-future":{"relativeTimePattern-count-one":"peste {0} sec.","relativeTimePattern-count-few":"peste {0} sec.","relativeTimePattern-count-other":"peste {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"acum {0} sec.","relativeTimePattern-count-few":"acum {0} sec.","relativeTimePattern-count-other":"acum {0} sec."}},"second-narrow":{"displayName":"s","relative-type-0":"acum","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-few":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} s","relativeTimePattern-count-few":"-{0} s","relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Fus orar"}} \ No newline at end of file diff --git a/Punic/data/ro/languages.json b/Punic/data/ro/languages.json new file mode 100644 index 0000000..445e67e --- /dev/null +++ b/Punic/data/ro/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abhază","ace":"aceh","ach":"acoli","ada":"adangme","ady":"adyghe","ae":"avestană","aeb":"aeb","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"akkadiană","akz":"akz","ale":"aleută","aln":"aln","alt":"altaică meridională","am":"amharică","an":"aragoneză","ang":"engleză veche","anp":"angika","ar":"arabă","ar-001":"arabă standard modernă","arc":"aramaică","arn":"araucaniană","aro":"aro","arp":"arapaho","arq":"arq","arw":"arawak","ary":"ary","arz":"arz","as":"asameză","asa":"asu","ase":"ase","ast":"asturiană","av":"avară","avk":"avk","awa":"awadhi","ay":"aymara","az":"azeră","az-alt-short":"azeră","azb":"azb","ba":"bașkiră","bal":"baluchi","ban":"balineză","bar":"bar","bas":"basaa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"bielorusă","bej":"beja","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bulgară","bho":"bhojpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambara","bn":"bengaleză","bo":"tibetană","bpy":"bpy","bqi":"bqi","br":"bretonă","bra":"braj","brh":"brh","brx":"bodo","bs":"bosniacă","bss":"akoose","bua":"buriat","bug":"bugineză","bum":"bulu","byn":"blin","byv":"medumba","ca":"catalană","cad":"caddo","car":"carib","cay":"cayuga","cch":"atsam","ce":"cecenă","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukese","chm":"mari","chn":"jargon chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokee","chy":"cheyenne","ckb":"kurdă sorani","co":"corsicană","cop":"coptă","cps":"cps","cr":"cree","crh":"turcă crimeeană","cs":"cehă","csb":"cașubiană","cu":"slavonă","cv":"ciuvașă","cy":"galeză","da":"daneză","dak":"dakota","dar":"dargwa","dav":"taita","de":"germană","de-AT":"germană austriacă","de-CH":"germană standard elvețiană","del":"delaware","den":"slave","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"sorabă de jos","dtp":"dtp","dua":"duala","dum":"olandeză mijlocie","dv":"divehi","dyo":"jola-fonyi","dyu":"dyula","dz":"dzongkha","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"egl","egy":"egipteană veche","eka":"ekajuk","el":"greacă","elx":"elamită","en":"engleză","en-AU":"engleză australiană","en-CA":"engleză canadiană","en-GB":"engleză britanică","en-GB-alt-short":"engleză britanică","en-US":"engleză americană","en-US-alt-short":"engleză (S.U.A)","enm":"engleză mijlocie","eo":"esperanto","es":"spaniolă","es-419":"spaniolă latino-americană","es-ES":"spaniolă europeană","es-MX":"spaniolă mexicană","esu":"esu","et":"estoniană","eu":"bască","ewo":"ewondo","ext":"ext","fa":"persană","fan":"fang","fat":"fanti","ff":"fulah","fi":"finlandeză","fil":"filipineză","fit":"fit","fj":"fijiană","fo":"faroeză","fon":"fon","fr":"franceză","fr-CA":"franceză canadiană","fr-CH":"franceză elvețiană","frc":"frc","frm":"franceză mijlocie","fro":"franceză veche","frp":"frp","frr":"frizonă nordică","frs":"frizonă orientală","fur":"friulană","fy":"frizonă occidentală","ga":"irlandeză","gaa":"ga","gag":"găgăuză","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"gbz","gd":"gaelică scoțiană","gez":"geez","gil":"gilbertină","gl":"galiciană","glk":"glk","gmh":"germană mijlocie înaltă","gn":"guarani","goh":"germană veche înaltă","gom":"gom","gon":"gondi","gor":"gorontalo","got":"gotică","grb":"grebo","grc":"greacă veche","gsw":"germană elvețiană","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichʼin","ha":"hausa","hai":"haida","hak":"hak","haw":"hawaiiană","he":"ebraică","hi":"hindi","hif":"hif","hil":"hiligaynon","hit":"hitită","hmn":"hmong","ho":"hiri motu","hr":"croată","hsb":"sorabă de sus","hsn":"hsn","ht":"haitiană","hu":"maghiară","hup":"hupa","hy":"armeană","hz":"herero","ia":"interlingua","iba":"iban","ibb":"ibibio","id":"indoneziană","ie":"interlingue","ig":"igbo","ii":"sichuan yi","ik":"inupiak","ilo":"iloko","inh":"ingușă","io":"ido","is":"islandeză","it":"italiană","iu":"inuktitut","izh":"izh","ja":"japoneză","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"machame","jpr":"iudeo-persană","jrb":"iudeo-arabă","jut":"jut","jv":"javaneză","ka":"georgiană","kaa":"karakalpak","kab":"kabyle","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardian","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kabuverdianu","ken":"ken","kfo":"koro","kg":"congoleză","kgp":"kgp","kha":"khasi","kho":"limbp khotaneză","khq":"koyra chiini","khw":"khw","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kazahă","kkj":"kako","kl":"kalaallisut","kln":"kalenjin","km":"khmeră","kmb":"kimbundu","kn":"kannada","ko":"coreeană","koi":"komi-permiak","kok":"konkani","kos":"kosrae","kpe":"kpelle","kr":"kanuri","krc":"karaceai-balkar","kri":"kri","krj":"krj","krl":"kareliană","kru":"kurukh","ks":"cașmiră","ksb":"shambala","ksf":"bafia","ksh":"kölsch","ku":"kurdă","kum":"kumyk","kut":"kutenai","kv":"komi","kw":"cornică","ky":"kârgâză","la":"latină","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburgheză","lez":"lezghian","lfn":"lfn","lg":"ganda","li":"limburgheză","lij":"lij","liv":"liv","lkt":"lakota","lmo":"lmo","ln":"lingala","lo":"laoțiană","lol":"mongo","loz":"lozi","lt":"lituaniană","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseno","lun":"lunda","luo":"luo","lus":"lusahi","luy":"luyia","lv":"letonă","lzh":"lzh","lzz":"lzz","mad":"madureză","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mandingo","mas":"masai","mde":"maba","mdf":"moksha","mdr":"mandar","men":"mende","mer":"meru","mfe":"morisyen","mg":"malgașă","mga":"irlandeză mijlocie","mgh":"makhuwa-meetto","mgo":"meta’","mh":"marshalleză","mi":"maori","mic":"micmac","min":"minangkabau","mk":"macedoneană","ml":"malayalam","mn":"mongolă","mnc":"manciuriană","mni":"manipur","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"mrj","ms":"malaeză","mt":"malteză","mua":"mundang","mul":"limbi multiple","mus":"creek","mwl":"mirandeză","mwr":"marwari","mwv":"mwv","my":"birmaneză","mye":"myene","myv":"erzya","mzn":"mzn","na":"nauru","nan":"nan","nap":"napolitană","naq":"nama","nb":"norvegiană bokmål","nd":"ndebele de nord","nds":"germana de jos","ne":"nepaleză","new":"newari","ng":"ndonga","nia":"nias","niu":"niueană","njo":"njo","nl":"olandeză","nl-BE":"flamandă","nmg":"kwasio","nn":"norvegiană nynorsk","nnh":"ngiemboon","no":"norvegiană","nog":"nogai","non":"nordică veche","nov":"nov","nqo":"n’ko","nr":"ndebele de sud","nso":"sotho de nord","nus":"nuer","nv":"navajo","nwc":"newari clasică","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"occitană","oj":"ojibwa","om":"oromo","or":"oriya","os":"osetă","osa":"osage","ota":"turcă otomană","pa":"punjabi","pag":"pangasinan","pal":"pahlavi","pam":"pampanga","pap":"papiamento","pau":"palauană","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"persană veche","pfl":"pfl","phn":"feniciană","pi":"pali","pl":"poloneză","pms":"pms","pnt":"pnt","pon":"pohnpeiană","prg":"prg","pro":"provensală veche","ps":"paștună","ps-alt-variant":"pushto","pt":"portugheză","pt-BR":"portugheză braziliană","pt-PT":"portugheză europeană","qu":"quechua","quc":"kʼicheʼ","qug":"qug","raj":"rajasthani","rap":"rapanui","rar":"rarotongan","rgn":"rgn","rif":"rif","rm":"romanșă","rn":"kirundi","ro":"română","ro-MD":"moldovenească","rof":"rombo","rom":"romani","root":"root","rtm":"rtm","ru":"rusă","rue":"rue","rug":"rug","rup":"aromână","rw":"kinyarwanda","rwk":"rwa","sa":"sanscrită","sad":"sandawe","sah":"sakha","sam":"aramaică samariteană","saq":"samburu","sas":"sasak","sat":"santali","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardiniană","scn":"siciliană","sco":"scots","sd":"sindhi","sdc":"sdc","se":"sami de nord","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"koyraboro Senni","sg":"sango","sga":"irlandeză veche","sgs":"sgs","sh":"sârbo-croată","shi":"tachelhit","shn":"shan","shu":"arabă ciadiană","si":"singhaleză","sid":"sidamo","sk":"slovacă","sl":"slovenă","sli":"sli","sly":"sly","sm":"samoană","sma":"sami de sud","smj":"lule sami","smn":"inari sami","sms":"skolt sami","sn":"shona","snk":"soninke","so":"somaleză","sog":"sogdien","sq":"albaneză","sr":"sârbă","srn":"sranan tongo","srr":"serer","ss":"swati","ssy":"saho","st":"sesotho","stq":"stq","su":"sundaneză","suk":"sukuma","sus":"susu","sux":"sumeriană","sv":"suedeză","sw":"swahili","swb":"comoreză","swc":"swahili Congo","syc":"siriacă clasică","syr":"siriacă","szl":"szl","ta":"tamilă","tcy":"tcy","te":"telugu","tem":"timne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadjică","th":"thailandeză","ti":"tigrină","tig":"tigre","tiv":"tiv","tk":"turkmenă","tkl":"tokelau","tkr":"tkr","tl":"tagalog","tlh":"klingoniană","tli":"tlingit","tly":"tly","tmh":"tamashek","tn":"setswana","to":"tonga","tog":"nyasa tonga","tpi":"tok pisin","tr":"turcă","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshian","tt":"tătară","ttt":"ttt","tum":"tumbuka","tvl":"tuvalu","tw":"twi","twq":"tasawaq","ty":"tahitiană","tyv":"tuvană","tzm":"tamazight central marocană","udm":"udmurt","ug":"uigură","uga":"ugaritică","uk":"ucraineană","umb":"umbundu","und":"limbă necunoscută","ur":"urdu","uz":"uzbecă","vai":"vai","ve":"venda","vec":"vec","vep":"vep","vi":"vietnameză","vls":"vls","vmf":"vmf","vo":"volapuk","vot":"votic","vro":"vro","vun":"vunjo","wa":"valonă","wae":"walser","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wuu","xal":"calmucă","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"yao","yap":"yapeză","yav":"yangben","ybb":"yemba","yi":"idiș","yo":"yoruba","yrl":"yrl","yue":"cantoneză","za":"zhuang","zap":"zapotecă","zbl":"simboluri Bilss","zea":"zea","zen":"zenaga","zgh":"tamazight standard marocană","zh":"chineză","zh-Hans":"chineză simplificată","zh-Hant":"chineză tradițională","zu":"zulu","zun":"zuni","zxx":"fară conținut lingvistic","zza":"zaza"} \ No newline at end of file diff --git a/Punic/data/ro/listPatterns.json b/Punic/data/ro/listPatterns.json new file mode 100644 index 0000000..fe3427f --- /dev/null +++ b/Punic/data/ro/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s și %2$s","2":"%1$s și %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s și %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/ro/localeDisplayNames.json b/Punic/data/ro/localeDisplayNames.json new file mode 100644 index 0000000..6c093f9 --- /dev/null +++ b/Punic/data/ro/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"calendar","colAlternate":"Ordonare cu simbolurile ignorate","colBackwards":"Ordonare inversă după accent","colCaseFirst":"Ordonare după majuscule/minuscule","colCaseLevel":"Ordonare care ține seama de majuscule/minuscule","colHiraganaQuaternary":"Ordonare după kana","colNormalization":"Ordonare normalizată","colNumeric":"Ordonare numerică","colStrength":"Puterea ordonării","collation":"ordine de sortare","currency":"monedă","numbers":"numere","timezone":"Fusul orar","va":"Varianta locală","variableTop":"Ordonați ca simboluri","x":"Utilizare privată"},"types":{"numbers":{"vaii":"Cifre Vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"calendarul Republicii Chineze"},"colStrength":{"tertiary":"Ordonați după accente/dimensiunea literei/lățime"},"colCaseFirst":{"upper":"Ordonați mai întâi majusculele"},"colBackwards":{"yes":"Ordonați după accente în ordine inversă"},"colCaseLevel":{"yes":"Ordonați ținând seama de diferența dintre majuscule/minuscule"},"colHiraganaQuaternary":{"yes":"Ordonați kana diferențiat"},"colNormalization":{"yes":"Ordonați caracterele unicode normalizat"},"colNumeric":{"yes":"Ordonați cifrele în ordine numerică"},"colAlternate":{"shifted":"Ordonați ignorând simbolurile"}},"codePatterns":{"language":"Limbă: %1$s","script":"Scriere: %1$s","territory":"Regiune: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ro/numbers.json b/Punic/data/ro/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/ro/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ro/territories.json b/Punic/data/ro/territories.json new file mode 100644 index 0000000..168f3ce --- /dev/null +++ b/Punic/data/ro/territories.json @@ -0,0 +1 @@ +{"001":"Lume","002":"Africa","003":"America de Nord","005":"America de Sud","009":"Oceania","011":"Africa Occidentală","013":"America Centrală","014":"Africa Orientală","015":"Africa Septentrională","017":"Africa Centrală","018":"Africa Meridională","019":"Americi","021":"America Septentrională","029":"Caraibe","030":"Asia Orientală","034":"Asia Meridională","035":"Asia de Sud-Est","039":"Europa Meridională","053":"Australasia","054":"Melanezia","057":"Regiunea Micronezia","061":"Polinezia","142":"Asia","143":"Asia Centrală","145":"Asia Occidentală","150":"Europa","151":"Europa Orientală","154":"Europa Septentrională","155":"Europa Occidentală","419":"America Latină","AC":"Insula Ascension","AD":"Andorra","AE":"Emiratele Arabe Unite","AF":"Afganistan","AG":"Antigua și Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AN":"Antilele Olandeze","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"Samoa Americană","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Insulele Åland","AZ":"Azerbaidjan","BA":"Bosnia și Herțegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgia","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Sfântul Bartolomeu","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Insulele Caraibe Olandeze","BR":"Brazilia","BS":"Bahamas","BT":"Bhutan","BV":"Insula Bouvet","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Insulele Cocos (Keeling)","CD":"Congo - Kinshasa","CD-alt-variant":"Congo (Republica Democrată Congo)","CF":"Republica Centrafricană","CG":"Congo - Brazzaville","CG-alt-variant":"Congo (Republica)","CH":"Elveția","CI":"Côte d’Ivoire","CI-alt-variant":"Coasta de Fildeș","CK":"Insulele Cook","CL":"Chile","CM":"Camerun","CN":"China","CO":"Columbia","CP":"Insula Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Capul Verde","CW":"Curaçao","CX":"Insula Christmas","CY":"Cipru","CZ":"Republica Cehă","DE":"Germania","DG":"Diego Garcia","DJ":"Djibouti","DK":"Danemarca","DM":"Dominica","DO":"Republica Dominicană","DZ":"Algeria","EA":"Ceuta și Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egipt","EH":"Sahara Occidentală","ER":"Eritreea","ES":"Spania","ET":"Etiopia","EU":"Uniunea Europeană","FI":"Finlanda","FJ":"Fiji","FK":"Insulele Falkland","FK-alt-variant":"Insulele Falkland (Insulele Malvine)","FM":"Micronezia","FO":"Insulele Feroe","FR":"Franța","GA":"Gabon","GB":"Regatul Unit","GB-alt-short":"Regatul Unit","GD":"Grenada","GE":"Georgia","GF":"Guyana Franceză","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Groenlanda","GM":"Gambia","GN":"Guineea","GP":"Guadelupa","GQ":"Guineea Ecuatorială","GR":"Grecia","GS":"Georgia de Sud și Insulele Sandwich de Sud","GT":"Guatemala","GU":"Guam","GW":"Guineea-Bissau","GY":"Guyana","HK":"R.A.S. Hong Kong a Chinei","HK-alt-short":"Hong Kong","HM":"Insula Heard și Insulele McDonald","HN":"Honduras","HR":"Croația","HT":"Haiti","HU":"Ungaria","IC":"Insulele Canare","ID":"Indonezia","IE":"Irlanda","IL":"Israel","IM":"Insula Man","IN":"India","IO":"Teritoriul Britanic din Oceanul Indian","IQ":"Irak","IR":"Iran","IS":"Islanda","IT":"Italia","JE":"Jersey","JM":"Jamaica","JO":"Iordania","JP":"Japonia","KE":"Kenya","KG":"Kârgâzstan","KH":"Cambodgia","KI":"Kiribati","KM":"Comore","KN":"Saint Kitts și Nevis","KP":"Coreea de Nord","KR":"Coreea de Sud","KW":"Kuweit","KY":"Insulele Cayman","KZ":"Kazahstan","LA":"Laos","LB":"Liban","LC":"Sfânta Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lituania","LU":"Luxemburg","LV":"Letonia","LY":"Libia","MA":"Maroc","MC":"Monaco","MD":"Republica Moldova","ME":"Muntenegru","MF":"Sfântul Martin","MG":"Madagascar","MH":"Insulele Marshall","MK":"Macedonia","MK-alt-variant":"Macedonia (FRIM)","ML":"Mali","MM":"Myanmar (Birmania)","MN":"Mongolia","MO":"R.A.S. Macao a Chinei","MO-alt-short":"Macao","MP":"Insulele Mariane de Nord","MQ":"Martinica","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldive","MW":"Malawi","MX":"Mexic","MY":"Malaezia","MZ":"Mozambic","NA":"Namibia","NC":"Noua Caledonie","NE":"Niger","NF":"Insulele Norfolk","NG":"Nigeria","NI":"Nicaragua","NL":"Țările de Jos","NO":"Norvegia","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Noua Zeelandă","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Polinezia Franceză","PG":"Papua-Noua Guinee","PH":"Filipine","PK":"Pakistan","PL":"Polonia","PM":"Saint-Pierre și Miquelon","PN":"Insulele Pitcairn","PR":"Puerto Rico","PS":"Teritoriile Palestiniene","PS-alt-short":"Palestina","PT":"Portugalia","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Oceania Periferică","RE":"Réunion","RO":"România","RS":"Serbia","RU":"Rusia","RW":"Rwanda","SA":"Arabia Saudită","SB":"Insulele Solomon","SC":"Seychelles","SD":"Sudan","SE":"Suedia","SG":"Singapore","SH":"Sfânta Elena","SI":"Slovenia","SJ":"Svalbard și Jan Mayen","SK":"Slovacia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sudanul de Sud","ST":"Sao Tome și Principe","SV":"El Salvador","SX":"Sint-Maarten","SY":"Siria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Insulele Turks și Caicos","TD":"Ciad","TF":"Teritoriile Australe și Antarctice Franceze","TG":"Togo","TH":"Thailanda","TJ":"Tadjikistan","TK":"Tokelau","TL":"Timorul de Est","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turcia","TT":"Trinidad și Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ucraina","UG":"Uganda","UM":"Insulele Îndepărtate ale S.U.A.","US":"Statele Unite ale Americii","US-alt-short":"S.U.A.","UY":"Uruguay","UZ":"Uzbekistan","VA":"Statul Cetății Vaticanului","VC":"Saint Vincent și Grenadine","VE":"Venezuela","VG":"Insulele Virgine Britanice","VI":"Insulele Virgine S.U.A.","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis și Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"Africa de Sud","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Regiune necunoscută"} \ No newline at end of file diff --git a/Punic/data/ro/timeZoneNames.json b/Punic/data/ro/timeZoneNames.json new file mode 100644 index 0000000..64b631a --- /dev/null +++ b/Punic/data/ro/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Ora din %1$s","regionFormat-type-standard":"Ora standard din %1$s","regionFormat-type-daylight":"Ora de vară din %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Guadelupa"},"Guatemala":{"exemplarCity":"Guatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Guyana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Martinica"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Merida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciudad de Mexico"},"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, Dakota de Nord"},"Center":{"exemplarCity":"Centru, Dakota de Nord"},"New_Salem":{"exemplarCity":"New Salem, Dakota de Nord"}},"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":"Sao 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":"Azore"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canare"},"Cape_Verde":{"exemplarCity":"Capul Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Georgia de Sud"},"St_Helena":{"exemplarCity":"Sf. Elena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atena"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruxelles"},"Bucharest":{"exemplarCity":"București"},"Budapest":{"exemplarCity":"Budapesta"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chișinău"},"Copenhagen":{"exemplarCity":"Copenhaga"},"Dublin":{"long":{"daylight":"Ora de vară a Irlandei"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Insula Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisabona"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Ora de vară britanică"},"exemplarCity":"Londra"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscova"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"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"},"Uzhgorod":{"exemplarCity":"Ujhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Viena"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varșovia"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporoje"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"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":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almatî"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadir"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Așgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bișkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Calcutta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damasc"},"Dhaka":{"exemplarCity":"Dacca"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dușanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkuțk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Ierusalim"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamciatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kaxgar"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoiarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuweit"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznețk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Phenian"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Kyzylorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riad"},"Saigon":{"exemplarCity":"Ho Și Min"},"Sakhalin":{"exemplarCity":"Sahalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tașkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakuțk"},"Yekaterinburg":{"exemplarCity":"Ekaterinburg"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Insula Crăciunului"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comore"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldive"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Insula Paștelui"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Marchize"},"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":"Insula 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":"Showa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Vostok"}},"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":"Oraș necunoscut"}}},"metazone":{"Acre":{"long":{"generic":"Ora Acre","standard":"Ora standard Acre","daylight":"Ora de vară Acre"}},"Afghanistan":{"long":{"standard":"Ora Afganistanului"}},"Africa_Central":{"long":{"standard":"Ora Africii Centrale"}},"Africa_Eastern":{"long":{"standard":"Ora Africii Orientale"}},"Africa_Southern":{"long":{"standard":"Ora Africii Meridionale"}},"Africa_Western":{"long":{"generic":"Ora Africii Occidentale","standard":"Ora standard a Africii Occidentale","daylight":"Ora de vară a Africii Occidentale"}},"Alaska":{"long":{"generic":"Ora din Alaska","standard":"Ora standard din Alaska","daylight":"Ora de vară din Alaska"}},"Almaty":{"long":{"generic":"Ora Almaty","standard":"Ora standard Almaty","daylight":"Ora de vară Almaty"}},"Amazon":{"long":{"generic":"Ora Amazonului","standard":"Ora standard a Amazonului","daylight":"Ora de vară a Amazonului"}},"America_Central":{"long":{"generic":"Ora centrală nord-americană","standard":"Ora standard centrală nord-americană","daylight":"Ora de vară centrală nord-americană"}},"America_Eastern":{"long":{"generic":"Ora orientală nord-americană","standard":"Ora standard orientală nord-americană","daylight":"Ora de vară orientală nord-americană"}},"America_Mountain":{"long":{"generic":"Ora zonei montane nord-americane","standard":"Ora standard în zona montană nord-americană","daylight":"Ora de vară în zona montană nord-americană"}},"America_Pacific":{"long":{"generic":"Ora zonei Pacific nord-americane","standard":"Ora standard în zona Pacific nord-americană","daylight":"Ora de vară în zona Pacific nord-americană"}},"Anadyr":{"long":{"generic":"Ora din Anadyr","standard":"Ora standard din Anadyr","daylight":"Ora de vară din Anadyr"}},"Apia":{"long":{"generic":"Ora din Apia","standard":"Ora standard din Apia","daylight":"Ora de vară din Apia"}},"Aqtau":{"long":{"generic":"Ora Aqtau","standard":"Ora standard Aqtau","daylight":"Ora de vară a zonei Aqtau"}},"Aqtobe":{"long":{"generic":"Ora Aqtobe","standard":"Ora standard Aqtobe","daylight":"Ora de vară a zonei Aqtobe"}},"Arabian":{"long":{"generic":"Ora arabă","standard":"Ora standard arabă","daylight":"Ora de vară arabă"}},"Argentina":{"long":{"generic":"Ora Argentinei","standard":"Ora standard a Argentinei","daylight":"Ora de vară a Argentinei"}},"Argentina_Western":{"long":{"generic":"Ora Argentinei Occidentale","standard":"Ora standard a Argentinei Occidentale","daylight":"Ora de vară a Argentinei Occidentale"}},"Armenia":{"long":{"generic":"Ora Armeniei","standard":"Ora standard a Armeniei","daylight":"Ora de vară a Armeniei"}},"Atlantic":{"long":{"generic":"Ora zonei Atlantic nord-americane","standard":"Ora standard în zona Atlantic nord-americană","daylight":"Ora de vară în zona Atlantic nord-americană"}},"Australia_Central":{"long":{"generic":"Ora Australiei Centrale","standard":"Ora standard a Australiei Centrale","daylight":"Ora de vară a Australiei Centrale"}},"Australia_CentralWestern":{"long":{"generic":"Ora Australiei Central Occidentale","standard":"Ora standard a Australiei Central Occidentale","daylight":"Ora de vară a Australiei Central Occidentale"}},"Australia_Eastern":{"long":{"generic":"Ora Australiei Orientale","standard":"Ora standard a Australiei Orientale","daylight":"Ora de vară a Australiei Orientale"}},"Australia_Western":{"long":{"generic":"Ora Australiei Occidentale","standard":"Ora standard a Australiei Occidentale","daylight":"Ora de vară a Australiei Occidentale"}},"Azerbaijan":{"long":{"generic":"Ora Azerbaidjanului","standard":"Ora standard a Azerbaidjanului","daylight":"Ora de vară a Azerbaidjanului"}},"Azores":{"long":{"generic":"Ora din Azore","standard":"Ora standard din Azore","daylight":"Ora de vară din Azore"}},"Bangladesh":{"long":{"generic":"Ora din Bangladesh","standard":"Ora standard din Bangladesh","daylight":"Ora de vară din Bangladesh"}},"Bhutan":{"long":{"standard":"Ora Bhutanului"}},"Bolivia":{"long":{"standard":"Ora Boliviei"}},"Brasilia":{"long":{"generic":"Ora Brasiliei","standard":"Ora standard a Brasiliei","daylight":"Ora de vară a Brasiliei"}},"Brunei":{"long":{"standard":"Ora din Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Ora din Capul Verde","standard":"Ora standard din Capul Verde","daylight":"Ora de vară din Capul Verde"}},"Chamorro":{"long":{"standard":"Ora din Chamorro"}},"Chatham":{"long":{"generic":"Ora din Chatham","standard":"Ora standard din Chatham","daylight":"Ora de vară din Chatham"}},"Chile":{"long":{"generic":"Ora din Chile","standard":"Ora standard din Chile","daylight":"Ora de vară din Chile"}},"China":{"long":{"generic":"Ora Chinei","standard":"Ora standard a Chinei","daylight":"Ora de vară a Chinei"}},"Choibalsan":{"long":{"generic":"Ora din Choibalsan","standard":"Ora standard din Choibalsan","daylight":"Ora de vară din Choibalsan"}},"Christmas":{"long":{"standard":"Ora din Insula Christmas"}},"Cocos":{"long":{"standard":"Ora Insulelor Cocos"}},"Colombia":{"long":{"generic":"Ora Columbiei","standard":"Ora standard a Columbiei","daylight":"Ora de vară a Columbiei"}},"Cook":{"long":{"generic":"Ora Insulelor Cook","standard":"Ora standard a Insulelor Cook","daylight":"Ora de vară a Insulelor Cook"}},"Cuba":{"long":{"generic":"Ora Cubei","standard":"Ora standard a Cubei","daylight":"Ora de vară a Cubei"}},"Davis":{"long":{"standard":"Ora din Davis"}},"DumontDUrville":{"long":{"standard":"Ora din Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Ora Timorului de Est"}},"Easter":{"long":{"generic":"Ora din Insula Paștelui","standard":"Ora standard din Insula Paștelui","daylight":"Ora de vară din Insula Paștelui"}},"Ecuador":{"long":{"standard":"Ora Ecuadorului"}},"Europe_Central":{"long":{"generic":"Ora Europei Centrale","standard":"Ora standard a Europei Centrale","daylight":"Ora de vară a Europei Centrale"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Ora Europei de Est","standard":"Ora standard a Europei de Est","daylight":"Ora de vară a Europei de Est"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Ora Europei de Est îndepărtate"}},"Europe_Western":{"long":{"generic":"Ora Europei de Vest","standard":"Ora standard a Europei de Vest","daylight":"Ora de vară a Europei de Vest"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Ora din Insulele Falkland","standard":"Ora standard din Insulele Falkland","daylight":"Ora de vară din Insulele Falkland"}},"Fiji":{"long":{"generic":"Ora din Fiji","standard":"Ora standard din Fiji","daylight":"Ora de vară din Fiji"}},"French_Guiana":{"long":{"standard":"Ora Guianei Franceze"}},"French_Southern":{"long":{"standard":"Ora din Teritoriile Australe și Antarctice Franceze"}},"GMT":{"long":{"standard":"Ora de Greenwhich"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Ora din Galapagos"}},"Gambier":{"long":{"standard":"Ora din Gambier"}},"Georgia":{"long":{"generic":"Ora Georgiei","standard":"Ora standard a Georgiei","daylight":"Ora de vară a Georgiei"}},"Gilbert_Islands":{"long":{"standard":"Ora Insulelor Gilbert"}},"Greenland_Eastern":{"long":{"generic":"Ora Groenlandei orientale","standard":"Ora standard a Groenlandei orientale","daylight":"Ora de vară a Groenlandei orientale"}},"Greenland_Western":{"long":{"generic":"Ora Groenlandei occidentale","standard":"Ora standard a Groenlandei occidentale","daylight":"Ora de vară a Groenlandei occidentale"}},"Gulf":{"long":{"standard":"Ora standard a Golfului"}},"Guyana":{"long":{"standard":"Ora din Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"Ora din Hawaii-Aleutine","standard":"Ora standard din Hawaii-Aleutine","daylight":"Ora de vară din Hawaii-Aleutine"}},"Hong_Kong":{"long":{"generic":"Ora din Hong Kong","standard":"Ora standard din Hong Kong","daylight":"Ora de vară din Hong Kong"}},"Hovd":{"long":{"generic":"Ora din Hovd","standard":"Ora standard din Hovd","daylight":"Ora de vară din Hovd"}},"India":{"long":{"standard":"Ora Indiei"}},"Indian_Ocean":{"long":{"standard":"Ora Oceanului Indian"}},"Indochina":{"long":{"standard":"Ora Indochinei"}},"Indonesia_Central":{"long":{"standard":"Ora Indoneziei Centrale"}},"Indonesia_Eastern":{"long":{"standard":"Ora Indoneziei de Est"}},"Indonesia_Western":{"long":{"standard":"Ora Indoneziei de Vest"}},"Iran":{"long":{"generic":"Ora Iranului","standard":"Ora standard a Iranului","daylight":"Ora de vară a Iranului"}},"Irkutsk":{"long":{"generic":"Ora din Irkuțk","standard":"Ora standard din Irkuțk","daylight":"Ora de vară din Irkuțk"}},"Israel":{"long":{"generic":"Ora Israelului","standard":"Ora standard a Israelului","daylight":"Ora de vară a Israelului"}},"Japan":{"long":{"generic":"Ora Japoniei","standard":"Ora standard a Japoniei","daylight":"Ora de vară a Japoniei"}},"Kamchatka":{"long":{"generic":"Ora din Petropavlovsk-Kamciațki","standard":"Ora standard din Petropavlovsk-Kamciațki","daylight":"Ora de vară din Petropavlovsk-Kamciațki"}},"Kazakhstan_Eastern":{"long":{"standard":"Ora din Kazahstanul de Est"}},"Kazakhstan_Western":{"long":{"standard":"Ora din Kazahstanul de Vest"}},"Korea":{"long":{"generic":"Ora Coreei","standard":"Ora standard a Coreei","daylight":"Ora de vară a Coreei"}},"Kosrae":{"long":{"standard":"Ora din Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Ora din Krasnoiarsk","standard":"Ora standard din Krasnoiarsk","daylight":"Ora de vară din Krasnoiarsk"}},"Kyrgystan":{"long":{"standard":"Ora din Kârgâzstan"}},"Line_Islands":{"long":{"standard":"Ora din Insulele Line"}},"Lord_Howe":{"long":{"generic":"Ora din Lord Howe","standard":"Ora standard din Lord Howe","daylight":"Ora de vară din Lord Howe"}},"Macquarie":{"long":{"standard":"Ora din Macquarie"}},"Magadan":{"long":{"generic":"Ora din Magadan","standard":"Ora standard din Magadan","daylight":"Ora de vară din Magadan"}},"Malaysia":{"long":{"standard":"Ora din Malaysia"}},"Maldives":{"long":{"standard":"Ora din Maldive"}},"Marquesas":{"long":{"standard":"Ora Insulelor Marchize"}},"Marshall_Islands":{"long":{"standard":"Ora Insulelor Marshall"}},"Mauritius":{"long":{"generic":"Ora din Mauritius","standard":"Ora standard din Mauritius","daylight":"Ora de vară din Mauritius"}},"Mawson":{"long":{"standard":"Ora din Mawson"}},"Mexico_Northwest":{"long":{"generic":"Ora Mexicului de nord-vest","standard":"Ora standard a Mexicului de nord-vest","daylight":"Ora de vară a Mexicului de nord-vest"}},"Mexico_Pacific":{"long":{"generic":"Ora zonei Pacific mexicane","standard":"Ora standard a zonei Pacific mexicane","daylight":"Ora de vară a zonei Pacific mexicane"}},"Mongolia":{"long":{"generic":"Ora din Ulan Bator","standard":"Ora standard din Ulan Bator","daylight":"Ora de vară din Ulan Bator"}},"Moscow":{"long":{"generic":"Ora Moscovei","standard":"Ora standard a Moscovei","daylight":"Ora de vară a Moscovei"}},"Myanmar":{"long":{"standard":"Ora Myanmarului"}},"Nauru":{"long":{"standard":"Ora din Nauru"}},"Nepal":{"long":{"standard":"Ora Nepalului"}},"New_Caledonia":{"long":{"generic":"Ora Noii Caledonii","standard":"Ora standard a Noii Caledonii","daylight":"Ora de vară a Noii Caledonii"}},"New_Zealand":{"long":{"generic":"Ora Noii Zeelande","standard":"Ora standard a Noii Zeelande","daylight":"Ora de vară a Noii Zeelande"}},"Newfoundland":{"long":{"generic":"Ora din Newfoundland","standard":"Ora standard din Newfoundland","daylight":"Ora de vară din Newfoundland"}},"Niue":{"long":{"standard":"Ora din Niue"}},"Norfolk":{"long":{"standard":"Ora Insulelor Norfolk"}},"Noronha":{"long":{"generic":"Ora din Fernando de Noronha","standard":"Ora standard din Fernando de Noronha","daylight":"Ora de vară din Fernando de Noronha"}},"Novosibirsk":{"long":{"generic":"Ora din Novosibirsk","standard":"Ora standard din Novosibirsk","daylight":"Ora de vară din Novosibirsk"}},"Omsk":{"long":{"generic":"Ora din Omsk","standard":"Ora standard din Omsk","daylight":"Ora de vară din Omsk"}},"Pakistan":{"long":{"generic":"Ora Pakistanului","standard":"Ora standard a Pakistanului","daylight":"Ora de vară a Pakistanului"}},"Palau":{"long":{"standard":"Ora din Palau"}},"Papua_New_Guinea":{"long":{"standard":"Ora din Papua Noua Guinee"}},"Paraguay":{"long":{"generic":"Ora din Paraguay","standard":"Ora standard din Paraguay","daylight":"Ora de vară din Paraguay"}},"Peru":{"long":{"generic":"Ora din Peru","standard":"Ora standard din Peru","daylight":"Ora de vară din Peru"}},"Philippines":{"long":{"generic":"Ora din Filipine","standard":"Ora standard din Filipine","daylight":"Ora de vară din Filipine"}},"Phoenix_Islands":{"long":{"standard":"Ora Insulelor Phoenix"}},"Pierre_Miquelon":{"long":{"generic":"Ora din Saint-Pierre și Miquelon","standard":"Ora standard din Saint-Pierre și Miquelon","daylight":"Ora de vară din Saint-Pierre și Miquelon"}},"Pitcairn":{"long":{"standard":"Ora din Pitcairn"}},"Ponape":{"long":{"standard":"Ora din Ponape"}},"Reunion":{"long":{"standard":"Ora din Reunion"}},"Rothera":{"long":{"standard":"Ora din Rothera"}},"Sakhalin":{"long":{"generic":"Ora din Sahalin","standard":"Ora standard din Sahalin","daylight":"Ora de vară din Sahalin"}},"Samara":{"long":{"generic":"Ora din Samara","standard":"Ora standard din Samara","daylight":"Ora de vară din Samara"}},"Samoa":{"long":{"generic":"Ora din Samoa","standard":"Ora standard din Samoa","daylight":"Ora de vară din Samoa"}},"Seychelles":{"long":{"standard":"Ora din Seychelles"}},"Singapore":{"long":{"standard":"Ora din Singapore"}},"Solomon":{"long":{"standard":"Ora Insulelor Solomon"}},"South_Georgia":{"long":{"standard":"Ora Georgiei de Sud"}},"Suriname":{"long":{"standard":"Ora Surinamului"}},"Syowa":{"long":{"standard":"Ora din Syowa"}},"Tahiti":{"long":{"standard":"Ora din Tahiti"}},"Taipei":{"long":{"generic":"Ora din Taipei","standard":"Ora standard din Taipei","daylight":"Ora de vară din Taipei"}},"Tajikistan":{"long":{"standard":"Ora din Tadjikistan"}},"Tokelau":{"long":{"standard":"Ora din Tokelau"}},"Tonga":{"long":{"generic":"Ora din Tonga","standard":"Ora standard din Tonga","daylight":"Ora de vară din Tonga"}},"Truk":{"long":{"standard":"Ora din Chuuk"}},"Turkmenistan":{"long":{"generic":"Ora din Turkmenistan","standard":"Ora standard din Turkmenistan","daylight":"Ora de vară din Turkmenistan"}},"Tuvalu":{"long":{"standard":"Ora din Tuvalu"}},"Uruguay":{"long":{"generic":"Ora Uruguayului","standard":"Ora standard a Uruguayului","daylight":"Ora de vară a Uruguayului"}},"Uzbekistan":{"long":{"generic":"Ora din Uzbekistan","standard":"Ora standard din Uzbekistan","daylight":"Ora de vară din Uzbekistan"}},"Vanuatu":{"long":{"generic":"Ora din Vanuatu","standard":"Ora standard din Vanuatu","daylight":"Ora de vară din Vanuatu"}},"Venezuela":{"long":{"standard":"Ora Venezuelei"}},"Vladivostok":{"long":{"generic":"Ora din Vladivostok","standard":"Ora standard din Vladivostok","daylight":"Ora de vară din Vladivostok"}},"Volgograd":{"long":{"generic":"Ora din Volgograd","standard":"Ora standard din Volgograd","daylight":"Ora de vară din Volgograd"}},"Vostok":{"long":{"standard":"Ora din Vostok"}},"Wake":{"long":{"standard":"Ora Insulei Wake"}},"Wallis":{"long":{"standard":"Ora din Wallis și Futuna"}},"Yakutsk":{"long":{"generic":"Ora din Yakuțk","standard":"Ora standard din Yakuțk","daylight":"Ora de vară din Yakuțk"}},"Yekaterinburg":{"long":{"generic":"Ora din Ekaterinburg","standard":"Ora standard din Ekaterinburg","daylight":"Ora de vară din Ekaterinburg"}}}} \ No newline at end of file diff --git a/Punic/data/ro/units.json b/Punic/data/ro/units.json new file mode 100644 index 0000000..c67b752 --- /dev/null +++ b/Punic/data/ro/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s pe %2$s","acceleration":{"g-force":{"_name":"forță g","one":"%1$s forță g","few":"%1$s forță g","other":"%1$s forță g"},"meter-per-second-squared":{"_name":"metri pe secundă la pătrat","one":"%1$s metru pe secundă la pătrat","few":"%1$s metri pe secundă la pătrat","other":"%1$s de metri pe secundă la pătrat"}},"angle":{"arc-minute":{"_name":"minute de arc","one":"%1$s minut","few":"%1$s minute","other":"%1$s de minute"},"arc-second":{"_name":"secunde de arc","one":"%1$s secundă","few":"%1$s secunde","other":"%1$s de secunde"},"degree":{"_name":"grade","one":"%1$s grad","few":"%1$s grade","other":"%1$s de grade"},"radian":{"_name":"radiani","one":"%1$s radian","few":"%1$s radiani","other":"%1$s de radiani"}},"area":{"acre":{"_name":"acri","one":"%1$s acru","few":"%1$s acri","other":"%1$s de acri"},"hectare":{"_name":"hectare","one":"%1$s hectar","few":"%1$s hectare","other":"%1$s de hectare"},"square-centimeter":{"_name":"centimetri pătrați","one":"%1$s centimetru pătrat","few":"%1$s centimetri pătrați","other":"%1$s de centimetri pătrați"},"square-foot":{"_name":"picioare pătrate","one":"%1$s picior pătrat","few":"%1$s picioare pătrate","other":"%1$s picioare pătrate"},"square-inch":{"_name":"inchi pătrați","one":"%1$s inch pătrat","few":"%1$s inchi pătrați","other":"%1$s de inchi pătrați"},"square-kilometer":{"_name":"kilometri pătrați","one":"%1$s kilometru pătrat","few":"%1$s kilometri pătrați","other":"%1$s de kilometri pătrați"},"square-meter":{"_name":"metri pătrați","one":"%1$s metru pătrat","few":"%1$s metri pătrați","other":"%1$s de metri pătrați"},"square-mile":{"_name":"mile pătrate","one":"%1$s milă pătrată","few":"%1$s mile pătrate","other":"%1$s de mile pătrate"},"square-yard":{"_name":"iarzi pătrați","one":"%1$s iard pătrat","few":"%1$s iarzi pătrați","other":"%1$s de iarzi pătrați"}},"consumption":{"liter-per-kilometer":{"_name":"litri pe kilometru","one":"%1$s litru pe kilometru","few":"%1$s litri pe kilometru","other":"%1$s de litri pe kilometru"},"mile-per-gallon":{"_name":"mile pe galon","one":"%1$s milă pe galon","few":"%1$s mile pe galon","other":"%1$s de mile pe galon"}},"digital":{"bit":{"_name":"biți","one":"%1$s bit","few":"%1$s biți","other":"%1$s de biți"},"byte":{"_name":"byți","one":"%1$s byte","few":"%1$s byți","other":"%1$s de byți"},"gigabit":{"_name":"gigabiți","one":"%1$s gigabit","few":"%1$s gigabiți","other":"%1$s de gigabiți"},"gigabyte":{"_name":"gigabyți","one":"%1$s gigabyte","few":"%1$s gigabyți","other":"%1$s de gigabyți"},"kilobit":{"_name":"kilobiți","one":"%1$s kilobit","few":"%1$s kilobiți","other":"%1$s de kilobiți"},"kilobyte":{"_name":"kilobyți","one":"%1$s kilobyte","few":"%1$s kilobyți","other":"%1$s de kilobyți"},"megabit":{"_name":"megabiți","one":"%1$s megabit","few":"%1$s megabiți","other":"%1$s de megabiți"},"megabyte":{"_name":"megabyți","one":"%1$s megabyte","few":"%1$s megabyți","other":"%1$s de megabyți"},"terabit":{"_name":"terabiți","one":"%1$s terabit","few":"%1$s terabiți","other":"%1$s de terabiți"},"terabyte":{"_name":"terabyți","one":"%1$s terabyte","few":"%1$s terabyți","other":"%1$s de terabyți"}},"duration":{"day":{"_name":"zile","one":"%1$s zi","few":"%1$s zile","other":"%1$s de zile"},"hour":{"_name":"ore","one":"%1$s oră","few":"%1$s ore","other":"%1$s de ore","_per":"%1$s pe oră"},"microsecond":{"_name":"microsecunde","one":"%1$s microsecundă","few":"%1$s microsecunde","other":"%1$s de microsecunde"},"millisecond":{"_name":"milisecunde","one":"%1$s milisecundă","few":"%1$s milisecunde","other":"%1$s de milisecunde"},"minute":{"_name":"minute","one":"%1$s minut","few":"%1$s minute","other":"%1$s de minute"},"month":{"_name":"luni","one":"%1$s lună","few":"%1$s luni","other":"%1$s de luni"},"nanosecond":{"_name":"nanosecunde","one":"%1$s nanosecundă","few":"%1$s nanosecunde","other":"%1$s de nanosecunde"},"second":{"_name":"secunde","one":"%1$s secundă","few":"%1$s secunde","other":"%1$s de secunde","_per":"%1$s pe secundă"},"week":{"_name":"săptămâni","one":"%1$s săptămână","few":"%1$s săptămâni","other":"%1$s de săptămâni"},"year":{"_name":"ani","one":"%1$s an","few":"%1$s ani","other":"%1$s de ani"}},"electric":{"ampere":{"_name":"amperi","one":"%1$s amper","few":"%1$s amperi","other":"%1$s de amperi"},"milliampere":{"_name":"miliamperi","one":"%1$s miliamper","few":"%1$s miliamperi","other":"%1$s de miliamperi"},"ohm":{"_name":"ohmi","one":"%1$s ohm","few":"%1$s ohmi","other":"%1$s de ohmi"},"volt":{"_name":"volți","one":"%1$s volt","few":"%1$s volți","other":"%1$s de volți"}},"energy":{"calorie":{"_name":"calorii","one":"%1$s calorie","few":"%1$s calorii","other":"%1$s de calorii"},"foodcalorie":{"_name":"kilocalorii","one":"%1$s kilocalorie","few":"%1$s kilocalorii","other":"%1$s de kilocalorii"},"joule":{"_name":"jouli","one":"%1$s joule","few":"%1$s jouli","other":"%1$s de jouli"},"kilocalorie":{"_name":"kilocalorii","one":"%1$s kilocalorie","few":"%1$s kilocalorii","other":"%1$s de kilocalorii"},"kilojoule":{"_name":"kilojouli","one":"%1$s kilojoule","few":"%1$s kilojouli","other":"%1$s de kilojouli"},"kilowatt-hour":{"_name":"kilowați-oră","one":"kilowatt-oră","few":"%1$s kilowați-oră","other":"%1$s de kilowați-oră"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","few":"%1$s gigahertzi","other":"%1$s de gigahertzi"},"hertz":{"_name":"hertz","one":"%1$s hertz","few":"%1$s hertzi","other":"%1$s de hertzi"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","few":"%1$s kilohertzi","other":"%1$s de kilohertzi"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","few":"%1$s megahertzi","other":"%1$s de megahertzi"}},"length":{"astronomical-unit":{"_name":"unități astronomice","one":"%1$s unitate astronomică","few":"%1$s unități astronomice","other":"%1$s de unități astronomice"},"centimeter":{"_name":"centimetri","one":"%1$s centimetru","few":"%1$s centimetri","other":"%1$s de centimetri"},"decimeter":{"_name":"decimetri","one":"%1$s decimetru","few":"%1$s decimetri","other":"%1$s de decimetri"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"picioare","one":"%1$s picior","few":"%1$s picioare","other":"%1$s de picioare"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"inchi","one":"%1$s inch","few":"%1$s inchi","other":"%1$s de inchi"},"kilometer":{"_name":"kilometri","one":"%1$s kilometru","few":"%1$s kilometri","other":"%1$s de kilometri"},"light-year":{"_name":"ani lumină","one":"%1$s an lumină","few":"%1$s ani lumină","other":"%1$s de ani lumină"},"meter":{"_name":"metri","one":"%1$s metru","few":"%1$s metri","other":"%1$s de metri"},"micrometer":{"_name":"micrometri","one":"%1$s micrometru","few":"%1$s micrometri","other":"%1$s de micrometri"},"mile":{"_name":"mile","one":"%1$s milă","few":"%1$s mile","other":"%1$s de mile"},"millimeter":{"_name":"milimetri","one":"%1$s milimetru","few":"%1$s milimetri","other":"%1$s de milimetri"},"nanometer":{"_name":"nanometri","one":"%1$s nanometru","few":"%1$s nanometri","other":"%1$s de nanometri"},"nautical-mile":{"_name":"mile nautice","one":"%1$s milă nautică","few":"%1$s mile nautice","other":"%1$s de mile nautice"},"parsec":{"_name":"parseci","one":"%1$s parsec","few":"%1$s parseci","other":"%1$s de parseci"},"picometer":{"_name":"picometri","one":"%1$s picometru","few":"%1$s picometri","other":"%1$s de picometri"},"yard":{"_name":"iarzi","one":"%1$s iard","few":"%1$s iarzi","other":"%1$s de iarzi"}},"light":{"lux":{"_name":"lucși","one":"%1$s lux","few":"%1$s lucși","other":"%1$s de lucși"}},"mass":{"carat":{"_name":"carate","one":"%1$s carat","few":"%1$s carate","other":"%1$s de carate"},"gram":{"_name":"grame","one":"%1$s gram","few":"%1$s grame","other":"%1$s de grame"},"kilogram":{"_name":"kilograme","one":"%1$s kilogram","few":"%1$s kilograme","other":"%1$s de kilograme"},"metric-ton":{"_name":"tone","one":"%1$s tonă","few":"%1$s tone","other":"%1$s de tone"},"microgram":{"_name":"micrograme","one":"%1$s microgram","few":"%1$s micrograme","other":"%1$s de micrograme"},"milligram":{"_name":"miligrame","one":"%1$s miligram","few":"%1$s miligrame","other":"%1$s de miligrame"},"ounce":{"_name":"uncii","one":"%1$s uncie","few":"%1$s uncii","other":"%1$s de uncii"},"ounce-troy":{"_name":"uncii monetare","one":"%1$s uncie monetară","few":"%1$s uncii monetare","other":"%1$s de uncii monetare"},"pound":{"_name":"livre","one":"%1$s livră","few":"%1$s livre","other":"%1$s de livre"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tone scurte","one":"%1$s tonă scurtă","few":"%1$s tone scurte","other":"%1$s de tone scurte"}},"power":{"gigawatt":{"_name":"gigawați","one":"%1$s gigawatt","few":"%1$s gigawați","other":"%1$s de gigawați"},"horsepower":{"_name":"cai putere","one":"%1$s cal putere","few":"%1$s cai putere","other":"%1$s de cai putere"},"kilowatt":{"_name":"kilowați","one":"%1$s kilowatt","few":"%1$s kilowați","other":"%1$s de kilowați"},"megawatt":{"_name":"megawați","one":"%1$s megawatt","few":"%1$s megawați","other":"%1$s de megawați"},"milliwatt":{"_name":"miliwați","one":"%1$s miliwatt","few":"%1$s miliwați","other":"%1$s de miliwați"},"watt":{"_name":"wați","one":"%1$s watt","few":"%1$s wați","other":"%1$s de wați"}},"pressure":{"hectopascal":{"_name":"hectopascali","one":"%1$s hectopascal","few":"%1$s hectopascali","other":"%1$s de hectopascali"},"inch-hg":{"_name":"inchi coloană de mercur","one":"%1$s inch coloană de mercur","few":"%1$s inchi coloană de mercur","other":"%1$s de inchi coloană de mercur"},"millibar":{"_name":"milibari","one":"%1$s milibar","few":"%1$s milibari","other":"%1$s de milibari"},"millimeter-of-mercury":{"_name":"milimetri coloană de mercur","one":"%1$s milimetru coloană de mercur","few":"%1$s milimetri coloană de mercur","other":"%1$s de milimetri coloană de mercur"},"pound-per-square-inch":{"_name":"livre pe inch pătrat","one":"%1$s livră pe inch pătrat","few":"%1$s livre pe inch pătrat","other":"%1$s de livre pe inch pătrat"}},"proportion":{"karat":{"_name":"karate","one":"%1$s karată","few":"%1$s karate","other":"%1$s de karate"}},"speed":{"kilometer-per-hour":{"_name":"kilometri pe oră","one":"%1$s kilometru pe oră","few":"%1$s kilometri pe oră","other":"%1$s de kilometri pe oră"},"meter-per-second":{"_name":"metri pe secundă","one":"%1$s metru pe secundă","few":"%1$s metri pe secundă","other":"%1$s de metri pe secundă"},"mile-per-hour":{"_name":"mile pe oră","one":"%1$s milă pe oră","few":"%1$s mile pe oră","other":"%1$s de mile pe oră"}},"temperature":{"celsius":{"_name":"grade Celsius","one":"%1$s grad Celsius","few":"%1$s grade Celsius","other":"%1$s de grade Celsius"},"fahrenheit":{"_name":"grade Fahrenheit","one":"%1$s grad Fahrenheit","few":"%1$s grade Fahrenheit","other":"%1$s de grade Fahrenheit"},"kelvin":{"_name":"kelvini","one":"%1$s kelvin","few":"%1$s kelvini","other":"%1$s de kelvini"}},"volume":{"acre-foot":{"_name":"acru-picioare","one":"%1$s acru-picior","few":"%1$s acru-picioare","other":"%1$s de acru-picioare"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitri","one":"%1$s centilitru","few":"%1$s centilitri","other":"%1$s de centilitri"},"cubic-centimeter":{"_name":"centimetri cubi","one":"%1$s centimetru cub","few":"%1$s centimetri cubi","other":"%1$s de centimetri cubi"},"cubic-foot":{"_name":"picioare cubice","one":"%1$s picior cubic","few":"%1$s picioare cubice","other":"%1$s de picioare cubice"},"cubic-inch":{"_name":"inchi cubici","one":"%1$s inch cubic","few":"%1$s inchi cubici","other":"%1$s de inchi cubici"},"cubic-kilometer":{"_name":"kilometri cubi","one":"%1$s kilometru cub","few":"%1$s kilometri cubi","other":"%1$s de kilometri cubi"},"cubic-meter":{"_name":"metri cubi","one":"%1$s metru cub","few":"%1$s metri cubi","other":"%1$s de metri cubi"},"cubic-mile":{"_name":"mile cubice","one":"%1$s milă cubică","few":"%1$s mile cubice","other":"%1$s de mile cubice"},"cubic-yard":{"_name":"iarzi cubici","one":"%1$s iard cubic","few":"%1$s iarzi cubici","other":"%1$s de iarzi cubici"},"cup":{"_name":"căni","one":"%1$s cană","few":"%1$s căni","other":"%1$s de căni"},"deciliter":{"_name":"decilitri","one":"%1$s decilitru","few":"%1$s decilitri","other":"%1$s de decilitri"},"fluid-ounce":{"_name":"uncii lichide","one":"%1$s uncie lichidă","few":"%1$s uncii lichide","other":"%1$s de uncii lichide"},"gallon":{"_name":"galoane","one":"%1$s galon","few":"%1$s galoane","other":"%1$s de galoane"},"hectoliter":{"_name":"hectolitri","one":"%1$s hectolitru","few":"%1$s hectolitri","other":"%1$s de hectolitri"},"liter":{"_name":"litri","one":"%1$s litru","few":"%1$s litri","other":"%1$s de litri"},"megaliter":{"_name":"megalitri","one":"%1$s megalitru","few":"%1$s megalitri","other":"%1$s megalitri"},"milliliter":{"_name":"mililitri","one":"%1$s mililitru","few":"%1$s mililitri","other":"%1$s de mililitri"},"pint":{"_name":"pinte","one":"%1$s pintă","few":"%1$s pinte","other":"%1$s de pinte"},"quart":{"_name":"quarte","one":"%1$s quart","few":"%1$s quarte","other":"%1$s de quarte"},"tablespoon":{"_name":"linguri","one":"%1$s lingură","few":"%1$s linguri","other":"%1$s de linguri"},"teaspoon":{"_name":"lingurițe","one":"%1$s linguriță","few":"%1$s lingurițe","other":"%1$s de lingurițe"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"forță g","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s arcmin","few":"%1$s arcmin","other":"%1$s arcmin"},"arc-second":{"_name":"arcsec","one":"%1$s sec.","few":"%1$s sec.","other":"%1$s sec."},"degree":{"_name":"grade","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acri","one":"%1$s ac.","few":"%1$s ac.","other":"%1$s ac."},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mile/gal.","one":"%1$s milă/gal.","few":"%1$s mile/gal.","other":"%1$s mile/gal."}},"digital":{"bit":{"_name":"b","one":"%1$s b","few":"%1$s b","other":"%1$s b"},"byte":{"_name":"B","one":"%1$s B","few":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"zile","one":"%1$s zi","few":"%1$s zile","other":"%1$s zile"},"hour":{"_name":"ore","one":"%1$s oră","few":"%1$s ore","other":"%1$s ore","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min.","one":"%1$s min.","few":"%1$s min.","other":"%1$s min."},"month":{"_name":"luni","one":"%1$s lună","few":"%1$s luni","other":"%1$s luni"},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sec.","one":"%1$s sec.","few":"%1$s sec.","other":"%1$s sec.","_per":"%1$s/s"},"week":{"_name":"săptămâni","one":"%1$s săpt.","few":"%1$s săpt.","other":"%1$s săpt."},"year":{"_name":"ani","one":"%1$s an","few":"%1$s ani","other":"%1$s ani"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","few":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"a.l.","one":"%1$s a.l.","few":"%1$s a.l.","other":"%1$s a.l."},"meter":{"_name":"metri","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"mn","one":"%1$s mn","few":"%1$s mn","other":"%1$s mn"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carate","one":"%1$s ct","few":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"grame","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"t.s.","one":"%1$s t.s.","few":"%1$s t.s.","other":"%1$s t.s."}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CP","one":"%1$s CP","few":"%1$s CP","other":"%1$s CP"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s in Hg","few":"%1$s in Hg","other":"%1$s in Hg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","few":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"căni","one":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litri","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pinte","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"forță g","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","one":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"arcsec","one":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"grade","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acri","one":"%1$s ac.","few":"%1$s ac.","other":"%1$s ac."},"hectare":{"_name":"ha","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mile/gal.","one":"%1$s mile/gal.","few":"%1$s mile/gal.","other":"%1$s mile/gal."}},"digital":{"bit":{"_name":"b","one":"%1$s b","few":"%1$s b","other":"%1$s b"},"byte":{"_name":"B","one":"%1$s B","few":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"zi","one":"%1$s z","few":"%1$s z","other":"%1$s z"},"hour":{"_name":"oră","one":"%1$s h","few":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"m","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"month":{"_name":"l","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"săpt.","one":"%1$s săpt.","few":"%1$s săpt.","other":"%1$s săpt."},"year":{"_name":"a","one":"%1$s a","few":"%1$s a","other":"%1$s a"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ua","one":"%1$s ua","few":"%1$s ua","other":"%1$s ua"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"a.l.","one":"%1$s a.l.","few":"%1$s a.l.","other":"%1$s a.l."},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"mn","one":"%1$s mn","few":"%1$s mn","other":"%1$s mn"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"carate","one":"%1$s ct","few":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"t.s.","one":"%1$s t.s.","few":"%1$s t.s.","other":"%1$s t.s."}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"CP","one":"%1$s CP","few":"%1$s CP","other":"%1$s CP"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"in Hg","one":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mb","few":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"căni","one":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pinte","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/root/calendar.json b/Punic/data/root/calendar.json new file mode 100644 index 0000000..7fbfba0 --- /dev/null +++ b/Punic/data/root/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}},"stand-alone":{"abbreviated":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"M01","2":"M02","3":"M03","4":"M04","5":"M05","6":"M06","7":"M07","8":"M08","9":"M09","10":"M10","11":"M11","12":"M12"}}},"days":{"format":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"wide":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"}},"stand-alone":{"abbreviated":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"},"short":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"},"wide":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","noon":"noon","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","noon":"noon","pm":"PM"}},"stand-alone":{"abbreviated":{"am":"AM","noon":"noon","pm":"PM"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"AM","noon":"noon","pm":"PM"}}},"eras":{"wide":{"0":"BCE","0-alt-variant":"BCE","1":"CE","1-alt-variant":"CE"},"abbreviated":{"0":"BCE","0-alt-variant":"BCE","1":"CE","1-alt-variant":"CE"},"narrow":{"0":"BCE","0-alt-variant":"BCE","1":"CE","1-alt-variant":"CE"}},"dateFormats":{"full":"y MMMM d, EEEE","long":"y MMMM d","medium":"y MMM d","short":"y-MM-dd"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/root/dateFields.json b/Punic/data/root/dateFields.json new file mode 100644 index 0000000..b8ef67a --- /dev/null +++ b/Punic/data/root/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} y"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} y"}},"year-short":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} y"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} y"}},"year-narrow":{"displayName":"Year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} y"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} y"}},"quarter":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} Q"}},"quarter-short":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} Q"}},"quarter-narrow":{"displayName":"Quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} Q"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} Q"}},"month":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} m"}},"month-short":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} m"}},"month-narrow":{"displayName":"Month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} m"}},"week":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} w"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} w"}},"week-short":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} w"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} w"}},"week-narrow":{"displayName":"Week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} w"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} w"}},"day":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} d"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} d"}},"day-short":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} d"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} d"}},"day-narrow":{"displayName":"Day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} d"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} d"}},"weekday":{"displayName":"Day of the Week"},"sun":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-short":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"sun-narrow":{"relative-type--1":"last Sunday","relative-type-0":"this Sunday","relative-type-1":"next Sunday"},"mon":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-short":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"mon-narrow":{"relative-type--1":"last Monday","relative-type-0":"this Monday","relative-type-1":"next Monday"},"tue":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-short":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"tue-narrow":{"relative-type--1":"last Tuesday","relative-type-0":"this Tuesday","relative-type-1":"next Tuesday"},"wed":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-short":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"wed-narrow":{"relative-type--1":"last Wednesday","relative-type-0":"this Wednesday","relative-type-1":"next Wednesday"},"thu":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-short":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"thu-narrow":{"relative-type--1":"last Thursday","relative-type-0":"this Thursday","relative-type-1":"next Thursday"},"fri":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-short":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"fri-narrow":{"relative-type--1":"last Friday","relative-type-0":"this Friday","relative-type-1":"next Friday"},"sat":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-short":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"sat-narrow":{"relative-type--1":"last Saturday","relative-type-0":"this Saturday","relative-type-1":"next Saturday"},"dayperiod":{"displayName":"Dayperiod"},"hour":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} h"}},"hour-short":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} h"}},"hour-narrow":{"displayName":"Hour","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} h"}},"minute":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} min"}},"minute-short":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} min"}},"minute-narrow":{"displayName":"Minute","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} min"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} min"}},"second":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} s"}},"second-short":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} s"}},"second-narrow":{"displayName":"Second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-other":"-{0} s"}},"zone":{"displayName":"Zone"}} \ No newline at end of file diff --git a/Punic/data/root/languages.json b/Punic/data/root/languages.json new file mode 100644 index 0000000..1ff3008 --- /dev/null +++ b/Punic/data/root/languages.json @@ -0,0 +1 @@ +{"aa":"aa","ab":"ab","ace":"ace","ach":"ach","ada":"ada","ady":"ady","ae":"ae","aeb":"aeb","af":"af","afh":"afh","agq":"agq","ain":"ain","ak":"ak","akk":"akk","akz":"akz","ale":"ale","aln":"aln","alt":"alt","am":"am","an":"an","ang":"ang","anp":"anp","ar":"ar","ar-001":"ar_001","arc":"arc","arn":"arn","aro":"aro","arp":"arp","arq":"arq","arw":"arw","ary":"ary","arz":"arz","as":"as","asa":"asa","ase":"ase","ast":"ast","av":"av","avk":"avk","awa":"awa","ay":"ay","az":"az","az-alt-short":"az","azb":"azb","ba":"ba","bal":"bal","ban":"ban","bar":"bar","bas":"bas","bax":"bax","bbc":"bbc","bbj":"bbj","be":"be","bej":"bej","bem":"bem","bew":"bew","bez":"bez","bfd":"bfd","bfq":"bfq","bg":"bg","bho":"bho","bi":"bi","bik":"bik","bin":"bin","bjn":"bjn","bkm":"bkm","bla":"bla","bm":"bm","bn":"bn","bo":"bo","bpy":"bpy","bqi":"bqi","br":"br","bra":"bra","brh":"brh","brx":"brx","bs":"bs","bss":"bss","bua":"bua","bug":"bug","bum":"bum","byn":"byn","byv":"byv","ca":"ca","cad":"cad","car":"car","cay":"cay","cch":"cch","ce":"ce","ceb":"ceb","cgg":"cgg","ch":"ch","chb":"chb","chg":"chg","chk":"chk","chm":"chm","chn":"chn","cho":"cho","chp":"chp","chr":"chr","chy":"chy","ckb":"ckb","co":"co","cop":"cop","cps":"cps","cr":"cr","crh":"crh","cs":"cs","csb":"csb","cu":"cu","cv":"cv","cy":"cy","da":"da","dak":"dak","dar":"dar","dav":"dav","de":"de","de-AT":"de_AT","de-CH":"de_CH","del":"del","den":"den","dgr":"dgr","din":"din","dje":"dje","doi":"doi","dsb":"dsb","dtp":"dtp","dua":"dua","dum":"dum","dv":"dv","dyo":"dyo","dyu":"dyu","dz":"dz","dzg":"dzg","ebu":"ebu","ee":"ee","efi":"efi","egl":"egl","egy":"egy","eka":"eka","el":"el","elx":"elx","en":"en","en-AU":"en_AU","en-CA":"en_CA","en-GB":"en_GB","en-GB-alt-short":"en_GB","en-US":"en_US","en-US-alt-short":"en_US","enm":"enm","eo":"eo","es":"es","es-419":"es_419","es-ES":"es_ES","es-MX":"es_MX","esu":"esu","et":"et","eu":"eu","ewo":"ewo","ext":"ext","fa":"fa","fan":"fan","fat":"fat","ff":"ff","fi":"fi","fil":"fil","fit":"fit","fj":"fj","fo":"fo","fon":"fon","fr":"fr","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"frc","frm":"frm","fro":"fro","frp":"frp","frr":"frr","frs":"frs","fur":"fur","fy":"fy","ga":"ga","gaa":"gaa","gag":"gag","gan":"gan","gay":"gay","gba":"gba","gbz":"gbz","gd":"gd","gez":"gez","gil":"gil","gl":"gl","glk":"glk","gmh":"gmh","gn":"gn","goh":"goh","gom":"gom","gon":"gon","gor":"gor","got":"got","grb":"grb","grc":"grc","gsw":"gsw","gu":"gu","guc":"guc","gur":"gur","guz":"guz","gv":"gv","gwi":"gwi","ha":"ha","hai":"hai","hak":"hak","haw":"haw","he":"he","hi":"hi","hif":"hif","hil":"hil","hit":"hit","hmn":"hmn","ho":"ho","hr":"hr","hsb":"hsb","hsn":"hsn","ht":"ht","hu":"hu","hup":"hup","hy":"hy","hz":"hz","ia":"ia","iba":"iba","ibb":"ibb","id":"id","ie":"ie","ig":"ig","ii":"ii","ik":"ik","ilo":"ilo","inh":"inh","io":"io","is":"is","it":"it","iu":"iu","izh":"izh","ja":"ja","jam":"jam","jbo":"jbo","jgo":"jgo","jmc":"jmc","jpr":"jpr","jrb":"jrb","jut":"jut","jv":"jv","ka":"ka","kaa":"kaa","kab":"kab","kac":"kac","kaj":"kaj","kam":"kam","kaw":"kaw","kbd":"kbd","kbl":"kbl","kcg":"kcg","kde":"kde","kea":"kea","ken":"ken","kfo":"kfo","kg":"kg","kgp":"kgp","kha":"kha","kho":"kho","khq":"khq","khw":"khw","ki":"ki","kiu":"kiu","kj":"kj","kk":"kk","kkj":"kkj","kl":"kl","kln":"kln","km":"km","kmb":"kmb","kn":"kn","ko":"ko","koi":"koi","kok":"kok","kos":"kos","kpe":"kpe","kr":"kr","krc":"krc","kri":"kri","krj":"krj","krl":"krl","kru":"kru","ks":"ks","ksb":"ksb","ksf":"ksf","ksh":"ksh","ku":"ku","kum":"kum","kut":"kut","kv":"kv","kw":"kw","ky":"ky","la":"la","lad":"lad","lag":"lag","lah":"lah","lam":"lam","lb":"lb","lez":"lez","lfn":"lfn","lg":"lg","li":"li","lij":"lij","liv":"liv","lkt":"lkt","lmo":"lmo","ln":"ln","lo":"lo","lol":"lol","loz":"loz","lt":"lt","ltg":"ltg","lu":"lu","lua":"lua","lui":"lui","lun":"lun","luo":"luo","lus":"lus","luy":"luy","lv":"lv","lzh":"lzh","lzz":"lzz","mad":"mad","maf":"maf","mag":"mag","mai":"mai","mak":"mak","man":"man","mas":"mas","mde":"mde","mdf":"mdf","mdr":"mdr","men":"men","mer":"mer","mfe":"mfe","mg":"mg","mga":"mga","mgh":"mgh","mgo":"mgo","mh":"mh","mi":"mi","mic":"mic","min":"min","mk":"mk","ml":"ml","mn":"mn","mnc":"mnc","mni":"mni","moh":"moh","mos":"mos","mr":"mr","mrj":"mrj","ms":"ms","mt":"mt","mua":"mua","mul":"mul","mus":"mus","mwl":"mwl","mwr":"mwr","mwv":"mwv","my":"my","mye":"mye","myv":"myv","mzn":"mzn","na":"na","nan":"nan","nap":"nap","naq":"naq","nb":"nb","nd":"nd","nds":"nds","ne":"ne","new":"new","ng":"ng","nia":"nia","niu":"niu","njo":"njo","nl":"nl","nl-BE":"nl_BE","nmg":"nmg","nn":"nn","nnh":"nnh","no":"no","nog":"nog","non":"non","nov":"nov","nqo":"nqo","nr":"nr","nso":"nso","nus":"nus","nv":"nv","nwc":"nwc","ny":"ny","nym":"nym","nyn":"nyn","nyo":"nyo","nzi":"nzi","oc":"oc","oj":"oj","om":"om","or":"or","os":"os","osa":"osa","ota":"ota","pa":"pa","pag":"pag","pal":"pal","pam":"pam","pap":"pap","pau":"pau","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"peo","pfl":"pfl","phn":"phn","pi":"pi","pl":"pl","pms":"pms","pnt":"pnt","pon":"pon","prg":"prg","pro":"pro","ps":"ps","pt":"pt","pt-BR":"pt_BR","pt-PT":"pt_PT","qu":"qu","quc":"quc","qug":"qug","raj":"raj","rap":"rap","rar":"rar","rgn":"rgn","rif":"rif","rm":"rm","rn":"rn","ro":"ro","ro-MD":"ro_MD","rof":"rof","rom":"rom","root":"root","rtm":"rtm","ru":"ru","rue":"rue","rug":"rug","rup":"rup","rw":"rw","rwk":"rwk","sa":"sa","sad":"sad","sah":"sah","sam":"sam","saq":"saq","sas":"sas","sat":"sat","saz":"saz","sba":"sba","sbp":"sbp","sc":"sc","scn":"scn","sco":"sco","sd":"sd","sdc":"sdc","se":"se","see":"see","seh":"seh","sei":"sei","sel":"sel","ses":"ses","sg":"sg","sga":"sga","sgs":"sgs","sh":"sh","shi":"shi","shn":"shn","shu":"shu","si":"si","sid":"sid","sk":"sk","sl":"sl","sli":"sli","sly":"sly","sm":"sm","sma":"sma","smj":"smj","smn":"smn","sms":"sms","sn":"sn","snk":"snk","so":"so","sog":"sog","sq":"sq","sr":"sr","srn":"srn","srr":"srr","ss":"ss","ssy":"ssy","st":"st","stq":"stq","su":"su","suk":"suk","sus":"sus","sux":"sux","sv":"sv","sw":"sw","swb":"swb","swc":"swc","syc":"syc","syr":"syr","szl":"szl","ta":"ta","tcy":"tcy","te":"te","tem":"tem","teo":"teo","ter":"ter","tet":"tet","tg":"tg","th":"th","ti":"ti","tig":"tig","tiv":"tiv","tk":"tk","tkl":"tkl","tkr":"tkr","tl":"tl","tlh":"tlh","tli":"tli","tly":"tly","tmh":"tmh","tn":"tn","to":"to","tog":"tog","tpi":"tpi","tr":"tr","tru":"tru","trv":"trv","ts":"ts","tsd":"tsd","tsi":"tsi","tt":"tt","ttt":"ttt","tum":"tum","tvl":"tvl","tw":"tw","twq":"twq","ty":"ty","tyv":"tyv","tzm":"tzm","udm":"udm","ug":"ug","uga":"uga","uk":"uk","umb":"umb","und":"und","ur":"ur","uz":"uz","vai":"vai","ve":"ve","vec":"vec","vep":"vep","vi":"vi","vls":"vls","vmf":"vmf","vo":"vo","vot":"vot","vro":"vro","vun":"vun","wa":"wa","wae":"wae","wal":"wal","war":"war","was":"was","wo":"wo","wuu":"wuu","xal":"xal","xh":"xh","xmf":"xmf","xog":"xog","yao":"yao","yap":"yap","yav":"yav","ybb":"ybb","yi":"yi","yo":"yo","yrl":"yrl","yue":"yue","za":"za","zap":"zap","zbl":"zbl","zea":"zea","zen":"zen","zgh":"zgh","zh":"zh","zh-Hans":"zh_Hans","zh-Hant":"zh_Hant","zu":"zu","zun":"zun","zxx":"zxx","zza":"zza"} \ No newline at end of file diff --git a/Punic/data/root/listPatterns.json b/Punic/data/root/listPatterns.json new file mode 100644 index 0000000..cbf3227 --- /dev/null +++ b/Punic/data/root/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/root/localeDisplayNames.json b/Punic/data/root/localeDisplayNames.json new file mode 100644 index 0000000..f8e7946 --- /dev/null +++ b/Punic/data/root/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"calendar","collation":"collation","currency":"currency","numbers":"numbers"},"types":{"numbers":{"vaii":"vaii"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"roc"}},"codePatterns":{"language":"%1$s","script":"%1$s","territory":"%1$s"}} \ No newline at end of file diff --git a/Punic/data/root/numbers.json b/Punic/data/root/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/root/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/root/territories.json b/Punic/data/root/territories.json new file mode 100644 index 0000000..c074bd6 --- /dev/null +++ b/Punic/data/root/territories.json @@ -0,0 +1 @@ +{"001":"001","002":"002","003":"003","005":"005","009":"009","011":"011","013":"013","014":"014","015":"015","017":"017","018":"018","019":"019","021":"021","029":"029","030":"030","034":"034","035":"035","039":"039","053":"053","054":"054","057":"057","061":"061","142":"142","143":"143","145":"145","150":"150","151":"151","154":"154","155":"155","419":"419","AC":"AC","AD":"AD","AE":"AE","AF":"AF","AG":"AG","AI":"AI","AL":"AL","AM":"AM","AO":"AO","AQ":"AQ","AR":"AR","AS":"AS","AT":"AT","AU":"AU","AW":"AW","AX":"AX","AZ":"AZ","BA":"BA","BB":"BB","BD":"BD","BE":"BE","BF":"BF","BG":"BG","BH":"BH","BI":"BI","BJ":"BJ","BL":"BL","BM":"BM","BN":"BN","BO":"BO","BQ":"BQ","BR":"BR","BS":"BS","BT":"BT","BV":"BV","BW":"BW","BY":"BY","BZ":"BZ","CA":"CA","CC":"CC","CD":"CD","CD-alt-variant":"CD","CF":"CF","CG":"CG","CG-alt-variant":"CG","CH":"CH","CI":"CI","CI-alt-variant":"CI","CK":"CK","CL":"CL","CM":"CM","CN":"CN","CO":"CO","CP":"CP","CR":"CR","CU":"CU","CV":"CV","CW":"CW","CX":"CX","CY":"CY","CZ":"CZ","DE":"DE","DG":"DG","DJ":"DJ","DK":"DK","DM":"DM","DO":"DO","DZ":"DZ","EA":"EA","EC":"EC","EE":"EE","EG":"EG","EH":"EH","ER":"ER","ES":"ES","ET":"ET","EU":"EU","FI":"FI","FJ":"FJ","FK":"FK","FK-alt-variant":"FK","FM":"FM","FO":"FO","FR":"FR","GA":"GA","GB":"GB","GB-alt-short":"GB","GD":"GD","GE":"GE","GF":"GF","GG":"GG","GH":"GH","GI":"GI","GL":"GL","GM":"GM","GN":"GN","GP":"GP","GQ":"GQ","GR":"GR","GS":"GS","GT":"GT","GU":"GU","GW":"GW","GY":"GY","HK":"HK","HK-alt-short":"HK","HM":"HM","HN":"HN","HR":"HR","HT":"HT","HU":"HU","IC":"IC","ID":"ID","IE":"IE","IL":"IL","IM":"IM","IN":"IN","IO":"IO","IQ":"IQ","IR":"IR","IS":"IS","IT":"IT","JE":"JE","JM":"JM","JO":"JO","JP":"JP","KE":"KE","KG":"KG","KH":"KH","KI":"KI","KM":"KM","KN":"KN","KP":"KP","KR":"KR","KW":"KW","KY":"KY","KZ":"KZ","LA":"LA","LB":"LB","LC":"LC","LI":"LI","LK":"LK","LR":"LR","LS":"LS","LT":"LT","LU":"LU","LV":"LV","LY":"LY","MA":"MA","MC":"MC","MD":"MD","ME":"ME","MF":"MF","MG":"MG","MH":"MH","MK":"MK","MK-alt-variant":"MK","ML":"ML","MM":"MM","MN":"MN","MO":"MO","MO-alt-short":"MO","MP":"MP","MQ":"MQ","MR":"MR","MS":"MS","MT":"MT","MU":"MU","MV":"MV","MW":"MW","MX":"MX","MY":"MY","MZ":"MZ","NA":"NA","NC":"NC","NE":"NE","NF":"NF","NG":"NG","NI":"NI","NL":"NL","NO":"NO","NP":"NP","NR":"NR","NU":"NU","NZ":"NZ","OM":"OM","PA":"PA","PE":"PE","PF":"PF","PG":"PG","PH":"PH","PK":"PK","PL":"PL","PM":"PM","PN":"PN","PR":"PR","PS":"PS","PS-alt-short":"PS","PT":"PT","PW":"PW","PY":"PY","QA":"QA","QO":"QO","RE":"RE","RO":"RO","RS":"RS","RU":"RU","RW":"RW","SA":"SA","SB":"SB","SC":"SC","SD":"SD","SE":"SE","SG":"SG","SH":"SH","SI":"SI","SJ":"SJ","SK":"SK","SL":"SL","SM":"SM","SN":"SN","SO":"SO","SR":"SR","SS":"SS","ST":"ST","SV":"SV","SX":"SX","SY":"SY","SZ":"SZ","TA":"TA","TC":"TC","TD":"TD","TF":"TF","TG":"TG","TH":"TH","TJ":"TJ","TK":"TK","TL":"TL","TL-alt-variant":"TL","TM":"TM","TN":"TN","TO":"TO","TR":"TR","TT":"TT","TV":"TV","TW":"TW","TZ":"TZ","UA":"UA","UG":"UG","UM":"UM","US":"US","US-alt-short":"US","UY":"UY","UZ":"UZ","VA":"VA","VC":"VC","VE":"VE","VG":"VG","VI":"VI","VN":"VN","VU":"VU","WF":"WF","WS":"WS","XK":"XK","YE":"YE","YT":"YT","ZA":"ZA","ZM":"ZM","ZW":"ZW","ZZ":"ZZ"} \ No newline at end of file diff --git a/Punic/data/root/timeZoneNames.json b/Punic/data/root/timeZoneNames.json new file mode 100644 index 0000000..704e2c0 --- /dev/null +++ b/Punic/data/root/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asuncion"},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiaba"},"Curacao":{"exemplarCity":"Curacao"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Sao Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"St. Barthelemy"},"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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"South Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"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":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moscow"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prague"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Vienna"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"Sao Tome"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Macau"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Urumqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"Mauritius":{"exemplarCity":"Mauritius"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunion"}},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Unknown"}}}} \ No newline at end of file diff --git a/Punic/data/root/units.json b/Punic/data/root/units.json new file mode 100644 index 0000000..a6a4a7f --- /dev/null +++ b/Punic/data/root/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","other":"%1$s′"},"arc-second":{"_name":"arcsec","other":"%1$s″"},"degree":{"_name":"deg","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acre","other":"%1$s ac"},"hectare":{"_name":"hectare","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"day","other":"%1$s d"},"hour":{"_name":"hr","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","other":"%1$s μs"},"millisecond":{"_name":"ms","other":"%1$s ms"},"minute":{"_name":"min","other":"%1$s min"},"month":{"_name":"mon","other":"%1$s m"},"nanosecond":{"_name":"ns","other":"%1$s ns"},"second":{"_name":"sec","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"wk","other":"%1$s w"},"year":{"_name":"yr","other":"%1$s y"}},"electric":{"ampere":{"_name":"amp","other":"%1$s A"},"milliampere":{"_name":"mA","other":"%1$s mA"},"ohm":{"_name":"ohm","other":"%1$s Ω"},"volt":{"_name":"volt","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","other":"%1$s Cal"},"joule":{"_name":"joule","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$s cm"},"decimeter":{"_name":"dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","other":"%1$s in"},"kilometer":{"_name":"km","other":"%1$s km"},"light-year":{"_name":"ly","other":"%1$s ly"},"meter":{"_name":"meter","other":"%1$s m"},"micrometer":{"_name":"µm","other":"%1$s µm"},"mile":{"_name":"mi","other":"%1$s mi"},"millimeter":{"_name":"mm","other":"%1$s mm"},"nanometer":{"_name":"nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","other":"%1$s pc"},"picometer":{"_name":"pm","other":"%1$s pm"},"yard":{"_name":"yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","other":"%1$s CD"},"gram":{"_name":"gram","other":"%1$s g"},"kilogram":{"_name":"kg","other":"%1$s kg"},"metric-ton":{"_name":"t","other":"%1$s t"},"microgram":{"_name":"µg","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$s GW"},"horsepower":{"_name":"hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","other":"%1$s kW"},"megawatt":{"_name":"MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","other":"%1$s mW"},"watt":{"_name":"watt","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","other":"%1$s yd³"},"cup":{"_name":"cup","other":"%1$s c"},"deciliter":{"_name":"dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","other":"%1$s hL"},"liter":{"_name":"liter","other":"%1$s l"},"megaliter":{"_name":"ML","other":"%1$s ML"},"milliliter":{"_name":"mL","other":"%1$s mL"},"pint":{"_name":"pt","other":"%1$s pt"},"quart":{"_name":"qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","other":"%1$s tsp"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","other":"%1$s′"},"arc-second":{"_name":"arcsec","other":"%1$s″"},"degree":{"_name":"deg","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acre","other":"%1$s ac"},"hectare":{"_name":"hectare","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"day","other":"%1$s d"},"hour":{"_name":"hr","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","other":"%1$s μs"},"millisecond":{"_name":"ms","other":"%1$s ms"},"minute":{"_name":"min","other":"%1$s min"},"month":{"_name":"mon","other":"%1$s m"},"nanosecond":{"_name":"ns","other":"%1$s ns"},"second":{"_name":"sec","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"wk","other":"%1$s w"},"year":{"_name":"yr","other":"%1$s y"}},"electric":{"ampere":{"_name":"amp","other":"%1$s A"},"milliampere":{"_name":"mA","other":"%1$s mA"},"ohm":{"_name":"ohm","other":"%1$s Ω"},"volt":{"_name":"volt","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","other":"%1$s Cal"},"joule":{"_name":"joule","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$s cm"},"decimeter":{"_name":"dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","other":"%1$s in"},"kilometer":{"_name":"km","other":"%1$s km"},"light-year":{"_name":"ly","other":"%1$s ly"},"meter":{"_name":"meter","other":"%1$s m"},"micrometer":{"_name":"µm","other":"%1$s µm"},"mile":{"_name":"mi","other":"%1$s mi"},"millimeter":{"_name":"mm","other":"%1$s mm"},"nanometer":{"_name":"nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","other":"%1$s pc"},"picometer":{"_name":"pm","other":"%1$s pm"},"yard":{"_name":"yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","other":"%1$s CD"},"gram":{"_name":"gram","other":"%1$s g"},"kilogram":{"_name":"kg","other":"%1$s kg"},"metric-ton":{"_name":"t","other":"%1$s t"},"microgram":{"_name":"µg","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$s GW"},"horsepower":{"_name":"hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","other":"%1$s kW"},"megawatt":{"_name":"MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","other":"%1$s mW"},"watt":{"_name":"watt","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","other":"%1$s yd³"},"cup":{"_name":"cup","other":"%1$s c"},"deciliter":{"_name":"dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","other":"%1$s hL"},"liter":{"_name":"liter","other":"%1$s l"},"megaliter":{"_name":"ML","other":"%1$s ML"},"milliliter":{"_name":"mL","other":"%1$s mL"},"pint":{"_name":"pt","other":"%1$s pt"},"quart":{"_name":"qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g-force","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"arcmin","other":"%1$s′"},"arc-second":{"_name":"arcsec","other":"%1$s″"},"degree":{"_name":"deg","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$s rad"}},"area":{"acre":{"_name":"acre","other":"%1$s ac"},"hectare":{"_name":"hectare","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"day","other":"%1$s d"},"hour":{"_name":"hr","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","other":"%1$s μs"},"millisecond":{"_name":"ms","other":"%1$s ms"},"minute":{"_name":"min","other":"%1$s min"},"month":{"_name":"mon","other":"%1$s m"},"nanosecond":{"_name":"ns","other":"%1$s ns"},"second":{"_name":"sec","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"wk","other":"%1$s w"},"year":{"_name":"yr","other":"%1$s y"}},"electric":{"ampere":{"_name":"amp","other":"%1$s A"},"milliampere":{"_name":"mA","other":"%1$s mA"},"ohm":{"_name":"ohm","other":"%1$s Ω"},"volt":{"_name":"volt","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","other":"%1$s Cal"},"joule":{"_name":"joule","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$s cm"},"decimeter":{"_name":"dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","other":"%1$s in"},"kilometer":{"_name":"km","other":"%1$s km"},"light-year":{"_name":"ly","other":"%1$s ly"},"meter":{"_name":"meter","other":"%1$s m"},"micrometer":{"_name":"µm","other":"%1$s µm"},"mile":{"_name":"mi","other":"%1$s mi"},"millimeter":{"_name":"mm","other":"%1$s mm"},"nanometer":{"_name":"nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","other":"%1$s pc"},"picometer":{"_name":"pm","other":"%1$s pm"},"yard":{"_name":"yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","other":"%1$s CD"},"gram":{"_name":"gram","other":"%1$s g"},"kilogram":{"_name":"kg","other":"%1$s kg"},"metric-ton":{"_name":"t","other":"%1$s t"},"microgram":{"_name":"µg","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$s GW"},"horsepower":{"_name":"hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","other":"%1$s kW"},"megawatt":{"_name":"MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","other":"%1$s mW"},"watt":{"_name":"watt","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","other":"%1$s yd³"},"cup":{"_name":"cup","other":"%1$s c"},"deciliter":{"_name":"dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","other":"%1$s hL"},"liter":{"_name":"liter","other":"%1$s l"},"megaliter":{"_name":"ML","other":"%1$s ML"},"milliliter":{"_name":"mL","other":"%1$s mL"},"pint":{"_name":"pt","other":"%1$s pt"},"quart":{"_name":"qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/ru/calendar.json b/Punic/data/ru/calendar.json new file mode 100644 index 0000000..ef75eaf --- /dev/null +++ b/Punic/data/ru/calendar.json @@ -0,0 +1 @@ +{"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":"1-й кв.","2":"2-й кв.","3":"3-й кв.","4":"4-й кв."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1-й квартал","2":"2-й квартал","3":"3-й квартал","4":"4-й квартал"}},"stand-alone":{"abbreviated":{"1":"1-й кв.","2":"2-й кв.","3":"3-й кв.","4":"4-й кв."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1-й квартал","2":"2-й квартал","3":"3-й квартал","4":"4-й квартал"}}},"dayPeriods":{"format":{"abbreviated":{"am":"AM","noon":"полдень","pm":"PM"},"narrow":{"am":"AM","noon":"полдень","pm":"PM"},"wide":{"am":"AM","noon":"полдень","pm":"PM"}},"stand-alone":{"abbreviated":{"am":"AM","noon":"полдень","pm":"PM"},"narrow":{"am":"AM","noon":"полдень","pm":"PM"},"wide":{"am":"AM","noon":"полдень","pm":"PM"}}},"eras":{"wide":{"0":"до н. э.","0-alt-variant":"BCE","1":"н. э.","1-alt-variant":"CE"},"abbreviated":{"0":"до н. э.","0-alt-variant":"BCE","1":"н. э.","1-alt-variant":"CE"},"narrow":{"0":"до н.э.","0-alt-variant":"BCE","1":"н.э.","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, d MMMM y 'г'.","long":"d MMMM y 'г'.","medium":"d MMM y 'г'.","short":"dd.MM.yy"},"timeFormats":{"full":"H:mm:ss zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s, %1$s","long":"%2$s, %1$s","medium":"%2$s, %1$s","short":"%2$s, %1$s"}} \ No newline at end of file diff --git a/Punic/data/ru/dateFields.json b/Punic/data/ru/dateFields.json new file mode 100644 index 0000000..1b71c16 --- /dev/null +++ b/Punic/data/ru/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Эра"},"year":{"displayName":"Год","relative-type--1":"в прошлом году","relative-type-0":"в этому году","relative-type-1":"в следующем году","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} год","relativeTimePattern-count-few":"через {0} года","relativeTimePattern-count-many":"через {0} лет","relativeTimePattern-count-other":"через {0} года"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} год назад","relativeTimePattern-count-few":"{0} года назад","relativeTimePattern-count-many":"{0} лет назад","relativeTimePattern-count-other":"{0} года назад"}},"year-short":{"displayName":"г.","relative-type--1":"в прошлом году","relative-type-0":"в этому году","relative-type-1":"в следующем году","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} г.","relativeTimePattern-count-few":"через {0} г.","relativeTimePattern-count-many":"через {0} л.","relativeTimePattern-count-other":"через {0} г."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} г. назад","relativeTimePattern-count-few":"{0} г. назад","relativeTimePattern-count-many":"{0} л. назад","relativeTimePattern-count-other":"{0} г. назад"}},"year-narrow":{"displayName":"г.","relative-type--1":"в прошлом году","relative-type-0":"в этому году","relative-type-1":"в следующем году","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} г.","relativeTimePattern-count-few":"+{0} г.","relativeTimePattern-count-many":"+{0} л.","relativeTimePattern-count-other":"+{0} г."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} г.","relativeTimePattern-count-few":"-{0} г.","relativeTimePattern-count-many":"-{0} л.","relativeTimePattern-count-other":"-{0} г."}},"quarter":{"displayName":"Квартал","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} квартал","relativeTimePattern-count-few":"через {0} квартала","relativeTimePattern-count-many":"через {0} кварталов","relativeTimePattern-count-other":"через {0} квартала"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} квартал назад","relativeTimePattern-count-few":"{0} квартала назад","relativeTimePattern-count-many":"{0} кварталов назад","relativeTimePattern-count-other":"{0} квартала назад"}},"quarter-short":{"displayName":"кв.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} кв.","relativeTimePattern-count-few":"через {0} кв.","relativeTimePattern-count-many":"через {0} кв.","relativeTimePattern-count-other":"через {0} кв."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} кв. назад","relativeTimePattern-count-few":"{0} кв. назад","relativeTimePattern-count-many":"{0} кв. назад","relativeTimePattern-count-other":"{0} кв. назад"}},"quarter-narrow":{"displayName":"кв.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} кв.","relativeTimePattern-count-few":"+{0} кв.","relativeTimePattern-count-many":"+{0} кв.","relativeTimePattern-count-other":"+{0} кв."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} кв.","relativeTimePattern-count-few":"-{0} кв.","relativeTimePattern-count-many":"-{0} кв.","relativeTimePattern-count-other":"-{0} кв."}},"month":{"displayName":"Месяц","relative-type--1":"в прошлом месяце","relative-type-0":"в этом месяце","relative-type-1":"в следующем месяце","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} месяц","relativeTimePattern-count-few":"через {0} месяца","relativeTimePattern-count-many":"через {0} месяцев","relativeTimePattern-count-other":"через {0} месяца"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} месяц назад","relativeTimePattern-count-few":"{0} месяца назад","relativeTimePattern-count-many":"{0} месяцев назад","relativeTimePattern-count-other":"{0} месяца назад"}},"month-short":{"displayName":"мес.","relative-type--1":"в прошлом месяце","relative-type-0":"в этом месяце","relative-type-1":"в следующем месяце","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} мес.","relativeTimePattern-count-few":"через {0} мес.","relativeTimePattern-count-many":"через {0} мес.","relativeTimePattern-count-other":"через {0} мес."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} мес. назад","relativeTimePattern-count-few":"{0} мес. назад","relativeTimePattern-count-many":"{0} мес. назад","relativeTimePattern-count-other":"{0} мес. назад"}},"month-narrow":{"displayName":"мес.","relative-type--1":"в прошлом месяце","relative-type-0":"в этом месяце","relative-type-1":"в следующем месяце","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} мес.","relativeTimePattern-count-few":"+{0} мес.","relativeTimePattern-count-many":"+{0} мес.","relativeTimePattern-count-other":"+{0} мес."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} мес.","relativeTimePattern-count-few":"-{0} мес.","relativeTimePattern-count-many":"-{0} мес.","relativeTimePattern-count-other":"-{0} мес."}},"week":{"displayName":"Неделя","relative-type--1":"на прошлой неделе","relative-type-0":"на этой неделе","relative-type-1":"на следующей неделе","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} неделю","relativeTimePattern-count-few":"через {0} недели","relativeTimePattern-count-many":"через {0} недель","relativeTimePattern-count-other":"через {0} недели"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} неделю назад","relativeTimePattern-count-few":"{0} недели назад","relativeTimePattern-count-many":"{0} недель назад","relativeTimePattern-count-other":"{0} недели назад"}},"week-short":{"displayName":"нед.","relative-type--1":"на прошлой неделе","relative-type-0":"на этой неделе","relative-type-1":"на следующей неделе","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} нед.","relativeTimePattern-count-few":"через {0} нед.","relativeTimePattern-count-many":"через {0} нед.","relativeTimePattern-count-other":"через {0} нед."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} нед. назад","relativeTimePattern-count-few":"{0} нед. назад","relativeTimePattern-count-many":"{0} нед. назад","relativeTimePattern-count-other":"{0} нед. назад"}},"week-narrow":{"displayName":"нед.","relative-type--1":"на прошлой неделе","relative-type-0":"на этой неделе","relative-type-1":"на следующей неделе","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} нед.","relativeTimePattern-count-few":"+{0} нед.","relativeTimePattern-count-many":"+{0} нед.","relativeTimePattern-count-other":"+{0} нед."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} нед. назад","relativeTimePattern-count-few":"{0} нед. назад","relativeTimePattern-count-many":"{0} нед. назад","relativeTimePattern-count-other":"{0} нед. назад"}},"day":{"displayName":"День","relative-type--1":"вчера","relative-type--2":"позавчера","relative-type-0":"сегодня","relative-type-1":"завтра","relative-type-2":"послезавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} день","relativeTimePattern-count-few":"через {0} дня","relativeTimePattern-count-many":"через {0} дней","relativeTimePattern-count-other":"через {0} дней"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} день назад","relativeTimePattern-count-few":"{0} дня назад","relativeTimePattern-count-many":"{0} дней назад","relativeTimePattern-count-other":"{0} дня назад"}},"day-short":{"displayName":"дн.","relative-type--1":"вчера","relative-type--2":"позавчера","relative-type-0":"сегодня","relative-type-1":"завтра","relative-type-2":"послезавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} д.","relativeTimePattern-count-few":"через {0} д.","relativeTimePattern-count-many":"через {0} д.","relativeTimePattern-count-other":"через {0} д."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} д. назад","relativeTimePattern-count-few":"{0} д. назад","relativeTimePattern-count-many":"{0} д. назад","relativeTimePattern-count-other":"{0} д. назад"}},"day-narrow":{"displayName":"дн.","relative-type--1":"вчера","relative-type--2":"позавчера","relative-type-0":"сегодня","relative-type-1":"завтра","relative-type-2":"послезавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} д.","relativeTimePattern-count-few":"+{0} д.","relativeTimePattern-count-many":"+{0} д.","relativeTimePattern-count-other":"+{0} д."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} д.","relativeTimePattern-count-few":"-{0} д.","relativeTimePattern-count-many":"-{0} д.","relativeTimePattern-count-other":"-{0} д."}},"weekday":{"displayName":"День недели"},"sun":{"relative-type--1":"в прошлое воскресенье","relative-type-0":"в это воскресенье","relative-type-1":"в следующее воскресенье"},"sun-short":{"relative-type--1":"в прош. вс.","relative-type-0":"в это вс.","relative-type-1":"в след. вс."},"sun-narrow":{"relative-type--1":"в прош. вс.","relative-type-0":"в это вс.","relative-type-1":"в след. вс."},"mon":{"relative-type--1":"в прошлый понедельник","relative-type-0":"в этот понедельник","relative-type-1":"в следующий понедельник"},"mon-short":{"relative-type--1":"в прош. пн.","relative-type-0":"в этот пн.","relative-type-1":"в след. пн."},"mon-narrow":{"relative-type--1":"в прош. пн.","relative-type-0":"в этот пн.","relative-type-1":"в след. пн."},"tue":{"relative-type--1":"в прошлый вторник","relative-type-0":"в этот вторник","relative-type-1":"в следующий вторник"},"tue-short":{"relative-type--1":"в прош. вт.","relative-type-0":"в этот вт.","relative-type-1":"в след. вт."},"tue-narrow":{"relative-type--1":"в прош. вт.","relative-type-0":"в этот вт.","relative-type-1":"в след. вт."},"wed":{"relative-type--1":"в прошлую среду","relative-type-0":"в эту среду","relative-type-1":"в следующую среду"},"wed-short":{"relative-type--1":"в прош. ср.","relative-type-0":"в эту ср.","relative-type-1":"в след. ср."},"wed-narrow":{"relative-type--1":"в прош. ср.","relative-type-0":"в эту ср.","relative-type-1":"в след. ср."},"thu":{"relative-type--1":"в прошлый четверг","relative-type-0":"в этот четверг","relative-type-1":"в следующий четверг"},"thu-short":{"relative-type--1":"в прош. чт.","relative-type-0":"в этот чт.","relative-type-1":"в след. чт."},"thu-narrow":{"relative-type--1":"в прош. чт.","relative-type-0":"в этот чт.","relative-type-1":"в след. чт."},"fri":{"relative-type--1":"в прошлую пятницу","relative-type-0":"в эту пятницу","relative-type-1":"в следующую пятницу"},"fri-short":{"relative-type--1":"в прош. пт.","relative-type-0":"в эту пт.","relative-type-1":"в след. пт."},"fri-narrow":{"relative-type--1":"в прош. пт.","relative-type-0":"в эту пт.","relative-type-1":"в след. пт."},"sat":{"relative-type--1":"в прошлую субботу","relative-type-0":"в эту субботу","relative-type-1":"в следующую субботу"},"sat-short":{"relative-type--1":"в прош. сб.","relative-type-0":"в эту сб.","relative-type-1":"в след. сб."},"sat-narrow":{"relative-type--1":"в прош. сб.","relative-type-0":"в эту сб.","relative-type-1":"в след. сб."},"dayperiod":{"displayName":"ДП/ПП"},"hour":{"displayName":"Час","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} час","relativeTimePattern-count-few":"через {0} часа","relativeTimePattern-count-many":"через {0} часов","relativeTimePattern-count-other":"через {0} часа"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} час назад","relativeTimePattern-count-few":"{0} часа назад","relativeTimePattern-count-many":"{0} часов назад","relativeTimePattern-count-other":"{0} часа назад"}},"hour-short":{"displayName":"ч.","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} ч.","relativeTimePattern-count-few":"через {0} ч.","relativeTimePattern-count-many":"через {0} ч.","relativeTimePattern-count-other":"через {0} ч."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ч. назад","relativeTimePattern-count-few":"{0} ч. назад","relativeTimePattern-count-many":"{0} ч. назад","relativeTimePattern-count-other":"{0} ч. назад"}},"hour-narrow":{"displayName":"ч.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} ч.","relativeTimePattern-count-few":"+{0} ч.","relativeTimePattern-count-many":"+{0} ч.","relativeTimePattern-count-other":"+{0} ч."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} ч.","relativeTimePattern-count-few":"-{0} ч.","relativeTimePattern-count-many":"-{0} ч.","relativeTimePattern-count-other":"-{0} ч."}},"minute":{"displayName":"Минута","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} минуту","relativeTimePattern-count-few":"через {0} минуты","relativeTimePattern-count-many":"через {0} минут","relativeTimePattern-count-other":"через {0} минуты"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} минуту назад","relativeTimePattern-count-few":"{0} минуты назад","relativeTimePattern-count-many":"{0} минут назад","relativeTimePattern-count-other":"{0} минуты назад"}},"minute-short":{"displayName":"мин.","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} мин.","relativeTimePattern-count-few":"через {0} мин.","relativeTimePattern-count-many":"через {0} мин.","relativeTimePattern-count-other":"через {0} мин."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} мин. назад","relativeTimePattern-count-few":"{0} мин. назад","relativeTimePattern-count-many":"{0} мин. назад","relativeTimePattern-count-other":"{0} мин. назад"}},"minute-narrow":{"displayName":"мин.","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} мин.","relativeTimePattern-count-few":"+{0} мин.","relativeTimePattern-count-many":"+{0} мин.","relativeTimePattern-count-other":"+{0} мин."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} мин.","relativeTimePattern-count-few":"-{0} мин.","relativeTimePattern-count-many":"-{0} мин.","relativeTimePattern-count-other":"-{0} мин."}},"second":{"displayName":"Секунда","relative-type-0":"сейчас","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} секунду","relativeTimePattern-count-few":"через {0} секунды","relativeTimePattern-count-many":"через {0} секунд","relativeTimePattern-count-other":"через {0} секунды"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} секунду назад","relativeTimePattern-count-few":"{0} секунды назад","relativeTimePattern-count-many":"{0} секунд назад","relativeTimePattern-count-other":"{0} секунды назад"}},"second-short":{"displayName":"сек.","relative-type-0":"сейчас","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} сек.","relativeTimePattern-count-few":"через {0} сек.","relativeTimePattern-count-many":"через {0} сек.","relativeTimePattern-count-other":"через {0} сек."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} сек. назад","relativeTimePattern-count-few":"{0} сек. назад","relativeTimePattern-count-many":"{0} сек. назад","relativeTimePattern-count-other":"{0} сек. назад"}},"second-narrow":{"displayName":"с","relative-type-0":"сейчас","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} с","relativeTimePattern-count-few":"через {0} с","relativeTimePattern-count-many":"через {0} с","relativeTimePattern-count-other":"через {0} с"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} с назад","relativeTimePattern-count-few":"{0} с назад","relativeTimePattern-count-many":"{0} с назад","relativeTimePattern-count-other":"{0} с назад"}},"zone":{"displayName":"Часовой пояс"}} \ No newline at end of file diff --git a/Punic/data/ru/languages.json b/Punic/data/ru/languages.json new file mode 100644 index 0000000..ec84c82 --- /dev/null +++ b/Punic/data/ru/languages.json @@ -0,0 +1 @@ +{"aa":"афар","ab":"абхазский","ace":"ачехский","ach":"ачоли","ada":"адангме","ady":"адыгейский","ae":"авестийский","aeb":"aeb","af":"африкаанс","afh":"африхили","agq":"агхем","ain":"айну","ak":"акан","akk":"аккадский","akz":"akz","ale":"алеутский","aln":"aln","alt":"южноалтайский","am":"амхарский","an":"арагонский","ang":"староанглийский","anp":"ангика","ar":"арабский","ar-001":"арабский литературный","arc":"арамейский","arn":"арауканский","aro":"aro","arp":"арапахо","arq":"arq","arw":"аравакский","ary":"ary","arz":"arz","as":"ассамский","asa":"аса","ase":"ase","ast":"астурийский","av":"аварский","avk":"avk","awa":"авадхи","ay":"аймара","az":"азербайджанский","az-alt-short":"азербайджанский","azb":"azb","ba":"башкирский","bal":"белуджский","ban":"балийский","bar":"bar","bas":"баса","bax":"бамум","bbc":"bbc","bbj":"гхомала","be":"белорусский","bej":"беджа","bem":"бемба","bew":"bew","bez":"бена","bfd":"бафут","bfq":"bfq","bg":"болгарский","bho":"бходжпури","bi":"бислама","bik":"бикольский","bin":"бини","bjn":"bjn","bkm":"ком","bla":"сиксика","bm":"бамбарийский","bn":"бенгальский","bo":"тибетский","bpy":"bpy","bqi":"bqi","br":"бретонский","bra":"брауи","brh":"brh","brx":"бодо","bs":"боснийский","bss":"акоосе","bua":"бурятский","bug":"бугийский","bum":"булу","byn":"билин (блин)","byv":"медумба","ca":"каталанский","cad":"каддо","car":"кариб","cay":"кайюга","cch":"атсам","ce":"чеченский","ceb":"кебуано","cgg":"чига","ch":"чаморро","chb":"чибча","chg":"чагатайский","chk":"чукотский","chm":"марийский (черемисский)","chn":"чинук жаргон","cho":"чоктав","chp":"чипевайян","chr":"чероки","chy":"чейенн","ckb":"сорани курдский","co":"корсиканский","cop":"коптский","cps":"cps","cr":"криийский","crh":"крымско-татарский","cs":"чешский","csb":"кашубианский","cu":"церковнославянский","cv":"чувашский","cy":"валлийский","da":"датский","dak":"дакота","dar":"даргва","dav":"таита","de":"немецкий","de-AT":"австрийский немецкий","de-CH":"швейцарский верхненемецкий","del":"делаварский","den":"славянский","dgr":"догриб","din":"динка","dje":"зарма","doi":"догри","dsb":"нижнелужицкий","dtp":"dtp","dua":"дуала","dum":"средненидерландский","dv":"мальдивский","dyo":"дьола-фоньи","dyu":"диула (дьюла)","dz":"дзонг-кэ","dzg":"дазагский","ebu":"эмбу","ee":"эве","efi":"эфик","egl":"egl","egy":"древнеегипетский","eka":"экаджук","el":"греческий","elx":"эламский","en":"английский","en-AU":"австралийский английский","en-CA":"канадский английский","en-GB":"британский английский","en-GB-alt-short":"en_GB","en-US":"американский английский","en-US-alt-short":"английский (США)","enm":"среднеанглийский","eo":"эсперанто","es":"испанский","es-419":"латиноамериканский испанский","es-ES":"европейский испанский","es-MX":"es_MX","esu":"esu","et":"эстонский","eu":"баскский","ewo":"эвондо","ext":"ext","fa":"персидский","fan":"фанг","fat":"фанти","ff":"фулах","fi":"финский","fil":"филиппинский","fit":"fit","fj":"фиджи","fo":"фарерский","fon":"фон","fr":"французский","fr-CA":"канадский французский","fr-CH":"швейцарский французский","frc":"frc","frm":"среднефранцузский","fro":"старофранцузский","frp":"frp","frr":"фризский северный","frs":"восточный фризский","fur":"фриульский","fy":"западно-фризский","ga":"ирландский","gaa":"га","gag":"гагаузский","gan":"gan","gay":"гайо","gba":"гбая","gbz":"gbz","gd":"гэльский","gez":"геэз","gil":"гильбертский","gl":"галисийский","glk":"glk","gmh":"средневерхненемецкий","gn":"гуарани","goh":"древневерхненемецкий","gom":"gom","gon":"гонди","gor":"горонтало","got":"готский","grb":"гребо","grc":"древнегреческий","gsw":"швейцарский немецкий","gu":"гуджарати","guc":"guc","gur":"gur","guz":"гусии","gv":"мэнский","gwi":"гвичин","ha":"хауса","hai":"хайда","hak":"hak","haw":"гавайский","he":"иврит","hi":"хинди","hif":"hif","hil":"хилигайнон","hit":"хеттский","hmn":"хмонг","ho":"хиримоту","hr":"хорватский","hsb":"верхнелужицкий","hsn":"hsn","ht":"гаитянский","hu":"венгерский","hup":"хупа","hy":"армянский","hz":"гереро","ia":"интерлингва","iba":"ибанский","ibb":"ибибио","id":"индонезийский","ie":"интерлингве","ig":"игбо","ii":"сычуань","ik":"инупиак","ilo":"илоко","inh":"ингушский","io":"идо","is":"исландский","it":"итальянский","iu":"инуктитут","izh":"izh","ja":"японский","jam":"jam","jbo":"ложбан","jgo":"нгомба","jmc":"мачаме","jpr":"еврейско-персидский","jrb":"еврейско-арабский","jut":"jut","jv":"яванский","ka":"грузинский","kaa":"каракалпакский","kab":"кабильский","kac":"качинский","kaj":"каджи","kam":"камба","kaw":"кави","kbd":"кабардинский","kbl":"канембу","kcg":"тьяп","kde":"маконде","kea":"кабувердьяну","ken":"ken","kfo":"коро","kg":"конго","kgp":"kgp","kha":"кхаси","kho":"хотанский","khq":"койра чиини","khw":"khw","ki":"кикуйю","kiu":"kiu","kj":"кунама","kk":"казахский","kkj":"како","kl":"гренландский","kln":"календжин","km":"кхмерский","kmb":"кимбундийский","kn":"каннада","ko":"корейский","koi":"коми-пермяцкий","kok":"конкани","kos":"косраенский","kpe":"кпелле","kr":"канури","krc":"карачаево-балкарский","kri":"kri","krj":"krj","krl":"карельский","kru":"курух","ks":"кашмири","ksb":"шамбала","ksf":"бафия","ksh":"кёльш","ku":"курдский","kum":"кумыкский","kut":"кутенаи","kv":"коми","kw":"корнийский","ky":"киргизский","la":"латинский","lad":"ладино","lag":"ланги","lah":"лахнда","lam":"ламба","lb":"люксембургский","lez":"лезгинский","lfn":"lfn","lg":"ганда","li":"лимбургский","lij":"lij","liv":"liv","lkt":"лакота","lmo":"lmo","ln":"лингала","lo":"лаосский","lol":"монго","loz":"лози","lt":"литовский","ltg":"ltg","lu":"луба-катанга","lua":"луба-лулуа","lui":"луисеньо","lun":"лунда","luo":"луо (Кения и Танзания)","lus":"лушай","luy":"лухья","lv":"латышский","lzh":"lzh","lzz":"lzz","mad":"мадурский","maf":"мафа","mag":"магахи","mai":"майтхили","mak":"макассарский","man":"мандинго","mas":"масаи","mde":"мабанский","mdf":"мокшанский","mdr":"мандарский","men":"менде","mer":"меру","mfe":"маврикийский креольский","mg":"малагасийский","mga":"среднеирландский","mgh":"макуа-меетто","mgo":"мета","mh":"маршалльский","mi":"маори","mic":"микмак","min":"минангкабау","mk":"македонский","ml":"малаялам","mn":"монгольский","mnc":"маньчжурский","mni":"манипурский","moh":"мохаук","mos":"моси","mr":"маратхи","mrj":"mrj","ms":"малайский","mt":"мальтийский","mua":"мунданг","mul":"несколько языков","mus":"крик","mwl":"мирандийский","mwr":"марвари","mwv":"mwv","my":"бирманский","mye":"миене","myv":"эрзя","mzn":"mzn","na":"науру","nan":"nan","nap":"неаполитанский","naq":"нама","nb":"норвежский букмол","nd":"северный ндебели","nds":"нижнегерманский","ne":"непальский","new":"неварский","ng":"ндонга","nia":"ниас","niu":"ниуэ","njo":"njo","nl":"голландский","nl-BE":"фламандский","nmg":"квасио","nn":"норвежский нюнорск","nnh":"нгиембунд","no":"норвежский","nog":"ногайский","non":"старонорвежский","nov":"nov","nqo":"нко","nr":"ндебели южный","nso":"сото северный","nus":"нуэр","nv":"навахо","nwc":"невари (классический)","ny":"ньянджа","nym":"ньямвези","nyn":"ньянколе","nyo":"ньоро","nzi":"нзима","oc":"окситанский","oj":"оджибва","om":"оромо","or":"ория","os":"осетинский","osa":"оседжи","ota":"старотурецкий","pa":"панджаби","pag":"пангасинан","pal":"пехлевийский","pam":"пампанга","pap":"папьяменто","pau":"палау","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"староперсидский","pfl":"pfl","phn":"финикийский","pi":"пали","pl":"польский","pms":"pms","pnt":"pnt","pon":"понапе","prg":"prg","pro":"старопровансальский","ps":"пушту","pt":"португальский","pt-BR":"бразильский португальский","pt-PT":"европейский португальский","qu":"кечуа","quc":"киче","qug":"qug","raj":"раджастхани","rap":"рапануи","rar":"раротонганский","rgn":"rgn","rif":"rif","rm":"романшский","rn":"рунди","ro":"румынский","ro-MD":"молдавский","rof":"ромбо","rom":"цыганский","root":"корневой язык","rtm":"rtm","ru":"русский","rue":"rue","rug":"rug","rup":"арумынский","rw":"киньяруанда","rwk":"руанда","sa":"санскрит","sad":"сандаве","sah":"якутский","sam":"самаритянский арамейский","saq":"самбуру","sas":"сасаки","sat":"сантали","saz":"saz","sba":"нгамбайский","sbp":"сангу","sc":"сардинский","scn":"сицилийский","sco":"шотландский","sd":"синдхи","sdc":"sdc","se":"северносаамский","see":"сенека","seh":"сена","sei":"sei","sel":"селькупский","ses":"койраборо сенни","sg":"санго","sga":"староирландский","sgs":"sgs","sh":"сербскохорватский","shi":"тахелхит","shn":"шанский","shu":"чадский арабс","si":"сингальский","sid":"сидама","sk":"словацкий","sl":"словенский","sli":"sli","sly":"sly","sm":"самоанский","sma":"саамский (южный)","smj":"луле-саамский","smn":"инари-саамский","sms":"скольт-саамский","sn":"шона","snk":"сонинке","so":"сомали","sog":"согдийский","sq":"албанский","sr":"сербский","srn":"сранан тонго","srr":"серер","ss":"свази","ssy":"сахо","st":"сото южный","stq":"stq","su":"сунданский","suk":"сукума","sus":"сусу","sux":"шумерский","sv":"шведский","sw":"суахили","swb":"коморский","swc":"конголезский суахили","syc":"классический сирийский","syr":"сирийский","szl":"szl","ta":"тамильский","tcy":"tcy","te":"телугу","tem":"темне","teo":"тесо","ter":"терено","tet":"тетум","tg":"таджикский","th":"тайский","ti":"тигринья","tig":"тигре","tiv":"тиви","tk":"туркменский","tkl":"токелайский","tkr":"tkr","tl":"тагалог","tlh":"клингонский","tli":"тлингит","tly":"tly","tmh":"тамашек","tn":"тсвана","to":"тонганский","tog":"ньяса (тонга)","tpi":"ток-писин","tr":"турецкий","tru":"туройо","trv":"тароко","ts":"тсонга","tsd":"tsd","tsi":"цимшиан","tt":"татарский","ttt":"ttt","tum":"тумбука","tvl":"тувалу","tw":"тви","twq":"тасавак","ty":"таитянский","tyv":"тувинский","tzm":"среднеатласский тамазигхтский","udm":"удмуртский","ug":"уйгурский","uga":"угаритский","uk":"украинский","umb":"умбунду","und":"неизвестный язык","ur":"урду","uz":"узбекский","vai":"ваи","ve":"венда","vec":"vec","vep":"vep","vi":"вьетнамский","vls":"vls","vmf":"vmf","vo":"волапюк","vot":"водский","vro":"vro","vun":"вунджо","wa":"валлонский","wae":"валисский","wal":"воламо","war":"варай","was":"вашо","wo":"волоф","wuu":"wuu","xal":"калмыцкий","xh":"коса","xmf":"xmf","xog":"сога","yao":"яо","yap":"яп","yav":"янбан","ybb":"йемба","yi":"идиш","yo":"йоруба","yrl":"yrl","yue":"кантонский","za":"чжуань","zap":"сапотекский","zbl":"блиссимволика","zea":"zea","zen":"зенагский","zgh":"тамазигхтский","zh":"китайский","zh-Hans":"упрощенный китайский","zh-Hant":"традиционный китайский","zu":"зулу","zun":"зуньи","zxx":"без языкового содержания","zza":"заза"} \ No newline at end of file diff --git a/Punic/data/ru/listPatterns.json b/Punic/data/ru/listPatterns.json new file mode 100644 index 0000000..ad38fa2 --- /dev/null +++ b/Punic/data/ru/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s и %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/ru/localeDisplayNames.json b/Punic/data/ru/localeDisplayNames.json new file mode 100644 index 0000000..85dc10c --- /dev/null +++ b/Punic/data/ru/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"календарь","colAlternate":"Игнорировать символы при сортировке","colBackwards":"Обратная сортировка по акценту","colCaseFirst":"Сортировка по верхнему или нижнему регистру","colCaseLevel":"Сортировка с учетом регистра","colHiraganaQuaternary":"Сортировка каны","colNormalization":"Нормализованная сортировка","colNumeric":"Сортировка чисел","colStrength":"Эффективность сортировки","collation":"порядок сортировки","currency":"валюта","numbers":"цифры","timezone":"Часовой пояс","va":"Вариант региональных настроек","variableTop":"Сортировать как символьный массив","x":"Частное"},"types":{"numbers":{"vaii":"Цифры языка вай"},"collation":{"zhuyin":"чжуинь"},"calendar":{"roc":"китайский календарь"},"colStrength":{"tertiary":"Сортировка по акцентам/регистру/длине строки"},"colCaseFirst":{"upper":"Приоритетная сортировка слов в верхнем регистре"},"colBackwards":{"yes":"Сортировка по акцентам в обратном порядке"},"colCaseLevel":{"yes":"Сортировка с учетом регистра"},"colHiraganaQuaternary":{"yes":"Сортировка каны другим способом"},"colNormalization":{"yes":"Сортировка нормализованных символов Unicode"},"colNumeric":{"yes":"Сортировка численных значений"},"colAlternate":{"shifted":"Сортировка без учета символов"}},"codePatterns":{"language":"Язык: %1$s","script":"Письменность: %1$s","territory":"Регион: %1$s"}} \ No newline at end of file diff --git a/Punic/data/ru/numbers.json b/Punic/data/ru/numbers.json new file mode 100644 index 0000000..213dedb --- /dev/null +++ b/Punic/data/ru/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"не число","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/ru/territories.json b/Punic/data/ru/territories.json new file mode 100644 index 0000000..703acee --- /dev/null +++ b/Punic/data/ru/territories.json @@ -0,0 +1 @@ +{"001":"Мир","002":"Африка","003":"Северная Америка","005":"Южная Америка","009":"Океания","011":"Западная Африка","013":"Центральная Америка","014":"Восточная Африка","015":"Северная Африка","017":"Центральная Африка","018":"Южная Африка","019":"Америка","021":"Северная Америка – США и Канада","029":"Карибы","030":"Восточная Азия","034":"Южная Азия","035":"Юго-Восточная Азия","039":"Южная Европа","053":"Австралазия","054":"Меланезия","057":"Микронезия","061":"Полинезия","142":"Азия","143":"Средняя Азия","145":"Ближний и Средний Восток","150":"Европа","151":"Восточная Европа","154":"Северная Европа","155":"Западная Европа","419":"Латинская Америка","AC":"о-в Вознесения","AD":"Андорра","AE":"ОАЭ","AF":"Афганистан","AG":"Антигуа и Барбуда","AI":"Ангилья","AL":"Албания","AM":"Армения","AN":"Нидерландские Антильские о-ва","AO":"Ангола","AQ":"Антарктида","AR":"Аргентина","AS":"Американское Самоа","AT":"Австрия","AU":"Австралия","AW":"Аруба","AX":"Аландские о-ва","AZ":"Азербайджан","BA":"Босния и Герцеговина","BB":"Барбадос","BD":"Бангладеш","BE":"Бельгия","BF":"Буркина-Фасо","BG":"Болгария","BH":"Бахрейн","BI":"Бурунди","BJ":"Бенин","BL":"Сен-Бартельми","BM":"Бермудские о-ва","BN":"Бруней-Даруссалам","BO":"Боливия","BQ":"Бонэйр, Синт-Эстатиус и Саба","BR":"Бразилия","BS":"Багамские о-ва","BT":"Бутан","BV":"о-в Буве","BW":"Ботсвана","BY":"Беларусь","BZ":"Белиз","CA":"Канада","CC":"Кокосовые о-ва","CD":"Конго - Киншаса","CD-alt-variant":"Конго (ДРК)","CF":"ЦАР","CG":"Конго - Браззавиль","CG-alt-variant":"Конго","CH":"Швейцария","CI":"Кот-д’Ивуар","CI-alt-variant":"Берег Слоновой Кости","CK":"о-ва Кука","CL":"Чили","CM":"Камерун","CN":"Китай","CO":"Колумбия","CP":"о-в Клиппертон","CR":"Коста-Рика","CU":"Куба","CV":"Кабо-Верде","CW":"Кюрасао","CX":"о-в Рождества","CY":"Кипр","CZ":"Чехия","DE":"Германия","DG":"Диего-Гарсия","DJ":"Джибути","DK":"Дания","DM":"Доминика","DO":"Доминиканская Республика","DZ":"Алжир","EA":"Сеута и Мелилья","EC":"Эквадор","EE":"Эстония","EG":"Египет","EH":"Западная Сахара","ER":"Эритрея","ES":"Испания","ET":"Эфиопия","EU":"Европейский союз","FI":"Финляндия","FJ":"Фиджи","FK":"Фолклендские о-ва","FK-alt-variant":"Фолклендские (Мальвинские) о-ва","FM":"Федеративные Штаты Микронезии","FO":"Фарерские о-ва","FR":"Франция","GA":"Габон","GB":"Великобритания","GB-alt-short":"Британия","GD":"Гренада","GE":"Грузия","GF":"Французская Гвиана","GG":"Гернси","GH":"Гана","GI":"Гибралтар","GL":"Гренландия","GM":"Гамбия","GN":"Гвинея","GP":"Гваделупа","GQ":"Экваториальная Гвинея","GR":"Греция","GS":"Южная Георгия и Южные Сандвичевы о-ва","GT":"Гватемала","GU":"Гуам","GW":"Гвинея-Бисау","GY":"Гайана","HK":"Гонконг (особый район)","HK-alt-short":"Гонконг","HM":"о-ва Херд и Макдональд","HN":"Гондурас","HR":"Хорватия","HT":"Гаити","HU":"Венгрия","IC":"Канарские о-ва","ID":"Индонезия","IE":"Ирландия","IL":"Израиль","IM":"О-в Мэн","IN":"Индия","IO":"Британская территория в Индийском океане","IQ":"Ирак","IR":"Иран","IS":"Исландия","IT":"Италия","JE":"Джерси","JM":"Ямайка","JO":"Иордания","JP":"Япония","KE":"Кения","KG":"Киргизия","KH":"Камбоджа","KI":"Кирибати","KM":"Коморские о-ва","KN":"Сент-Китс и Невис","KP":"КНДР","KR":"Республика Корея","KW":"Кувейт","KY":"Каймановы о-ва","KZ":"Казахстан","LA":"Лаос","LB":"Ливан","LC":"Сент-Люсия","LI":"Лихтенштейн","LK":"Шри-Ланка","LR":"Либерия","LS":"Лесото","LT":"Литва","LU":"Люксембург","LV":"Латвия","LY":"Ливия","MA":"Марокко","MC":"Монако","MD":"Молдова","ME":"Черногория","MF":"Сен-Мартен","MG":"Мадагаскар","MH":"Маршалловы о-ва","MK":"Македония","MK-alt-variant":"Македония (БЮРМ)","ML":"Мали","MM":"Мьянма (Бирма)","MN":"Монголия","MO":"Макао (особый район)","MO-alt-short":"Макао","MP":"Северные Марианские о-ва","MQ":"Мартиника","MR":"Мавритания","MS":"Монтсеррат","MT":"Мальта","MU":"Маврикий","MV":"Мальдивские о-ва","MW":"Малави","MX":"Мексика","MY":"Малайзия","MZ":"Мозамбик","NA":"Намибия","NC":"Новая Каледония","NE":"Нигер","NF":"о-в Норфолк","NG":"Нигерия","NI":"Никарагуа","NL":"Нидерланды","NO":"Норвегия","NP":"Непал","NR":"Науру","NU":"Ниуэ","NZ":"Новая Зеландия","OM":"Оман","PA":"Панама","PE":"Перу","PF":"Французская Полинезия","PG":"Папуа – Новая Гвинея","PH":"Филиппины","PK":"Пакистан","PL":"Польша","PM":"Сен-Пьер и Микелон","PN":"Питкэрн","PR":"Пуэрто-Рико","PS":"Палестинские территории","PS-alt-short":"Палестина","PT":"Португалия","PW":"Палау","PY":"Парагвай","QA":"Катар","QO":"Внешняя Океания","RE":"Реюньон","RO":"Румыния","RS":"Сербия","RU":"Россия","RW":"Руанда","SA":"Саудовская Аравия","SB":"Соломоновы о-ва","SC":"Сейшельские о-ва","SD":"Судан","SE":"Швеция","SG":"Сингапур","SH":"О-в Св. Елены","SI":"Словения","SJ":"Шпицберген и Ян-Майен","SK":"Словакия","SL":"Сьерра-Леоне","SM":"Сан-Марино","SN":"Сенегал","SO":"Сомали","SR":"Суринам","SS":"Южный Судан","ST":"Сан-Томе и Принсипи","SV":"Сальвадор","SX":"Синт-Мартен","SY":"Сирия","SZ":"Свазиленд","TA":"Тристан-да-Кунья","TC":"О-ва Тёркс и Кайкос","TD":"Чад","TF":"Французские Южные Территории","TG":"Того","TH":"Таиланд","TJ":"Таджикистан","TK":"Токелау","TL":"Восточный Тимор","TL-alt-variant":"TL","TM":"Туркменистан","TN":"Тунис","TO":"Тонга","TR":"Турция","TT":"Тринидад и Тобаго","TV":"Тувалу","TW":"Тайвань","TZ":"Танзания","UA":"Украина","UG":"Уганда","UM":"Внешние малые о-ва (США)","US":"Соединенные Штаты","US-alt-short":"США","UY":"Уругвай","UZ":"Узбекистан","VA":"Ватикан","VC":"Сент-Винсент и Гренадины","VE":"Венесуэла","VG":"Виргинские о-ва (Британские)","VI":"Виргинские о-ва (США)","VN":"Вьетнам","VU":"Вануату","WF":"Уоллис и Футуна","WS":"Самоа","XK":"Косово","YE":"Йемен","YT":"Майотта","ZA":"ЮАР","ZM":"Замбия","ZW":"Зимбабве","ZZ":"Неизвестный регион"} \ No newline at end of file diff --git a/Punic/data/ru/timeZoneNames.json b/Punic/data/ru/timeZoneNames.json new file mode 100644 index 0000000..171476c --- /dev/null +++ b/Punic/data/ru/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s, время","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Адак, о-в"},"Anchorage":{"exemplarCity":"Анкоридж"},"Anguilla":{"exemplarCity":"Ангилья"},"Antigua":{"exemplarCity":"Антигуа"},"Araguaina":{"exemplarCity":"Арагуаина"},"Argentina":{"La_Rioja":{"exemplarCity":"Ла-Риоха"},"Rio_Gallegos":{"exemplarCity":"Рио-Гальегос"},"Salta":{"exemplarCity":"Сальта"},"San_Juan":{"exemplarCity":"Сан-Хуан"},"San_Luis":{"exemplarCity":"Сан-Луис"},"Tucuman":{"exemplarCity":"Тукуман"},"Ushuaia":{"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":"Сальвадор"},"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":{"Knox":{"exemplarCity":"Нокс"},"Marengo":{"exemplarCity":"Маренго"},"Petersburg":{"exemplarCity":"Петерсбург"},"Tell_City":{"exemplarCity":"Телл-Сити"},"Vevay":{"exemplarCity":"Вивэй"},"Vincennes":{"exemplarCity":"Винсенс"},"Winamac":{"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":"Бойла, Северная Дакота"},"Center":{"exemplarCity":"Центр, Северная Дакота"},"New_Salem":{"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":"Андорра"},"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":"Киев"},"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":"Тирана"},"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":"Бангкок"},"Beirut":{"exemplarCity":"Бейрут"},"Bishkek":{"exemplarCity":"Бишкек"},"Brunei":{"exemplarCity":"Бруней"},"Calcutta":{"exemplarCity":"Калькутта"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Чойбалсан"},"Chongqing":{"exemplarCity":"Чунцин"},"Colombo":{"exemplarCity":"Коломбо"},"Damascus":{"exemplarCity":"Дамаск"},"Dhaka":{"exemplarCity":"Дакка"},"Dili":{"exemplarCity":"Дили"},"Dubai":{"exemplarCity":"Дубай"},"Dushanbe":{"exemplarCity":"Душанбе"},"Gaza":{"exemplarCity":"Газа"},"Harbin":{"exemplarCity":"Харбин"},"Hebron":{"exemplarCity":"Хеврон"},"Hong_Kong":{"exemplarCity":"Гонконг"},"Hovd":{"exemplarCity":"Ховд"},"Irkutsk":{"exemplarCity":"Иркутск"},"Jakarta":{"exemplarCity":"Джакарта"},"Jayapura":{"exemplarCity":"Джайпур"},"Jerusalem":{"exemplarCity":"Иерусалим"},"Kabul":{"exemplarCity":"Кабул"},"Kamchatka":{"exemplarCity":"Петропавловск-Камчатский"},"Karachi":{"exemplarCity":"Карачи"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"Тайбэй"},"Tashkent":{"exemplarCity":"Ташкент"},"Tbilisi":{"exemplarCity":"Тбилиси"},"Tehran":{"exemplarCity":"Тегеран"},"Thimphu":{"exemplarCity":"Тимпу"},"Tokyo":{"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":"Окленд"},"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":{"Acre":{"long":{"generic":"Акри время","standard":"Акри стандартное время","daylight":"Акри летнее время"}},"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":"Аляска, летнее время"}},"Almaty":{"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":"летнее время Апиа, Самоа"}},"Aqtau":{"long":{"generic":"Актау время","standard":"Актау стандартное время","daylight":"Актау летнее время"}},"Aqtobe":{"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":"Кабо-Верде, летнее время"}},"Casey":{"long":{"standard":"Кейси"}},"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":"Французское южное и антарктическое время"}},"GMT":{"long":{"standard":"Среднее время по Гринвичу"}},"Galapagos":{"long":{"standard":"Галапагосские о-ва"}},"Gambier":{"long":{"standard":"Гамбье"}},"Georgia":{"long":{"generic":"Грузия","standard":"Грузия, стандартное время","daylight":"Грузия, летнее время"}},"Gilbert_Islands":{"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":"Киргизия"}},"Lanka":{"long":{"standard":"Шри-Ланка"}},"Line_Islands":{"long":{"standard":"Лайн, о-ва"}},"Lord_Howe":{"long":{"generic":"Лорд-Хау","standard":"Лорд-Хау, стандартное время","daylight":"Лорд-Хау, летнее время"}},"Macau":{"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":"Понапе, о-ва"}},"Qyzylorda":{"long":{"generic":"Кызылорда*","standard":"Кызылорда, стандартное время*","daylight":"Кызылорда, летнее время*"}},"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":"Екатеринбург, летнее время"}}}} \ No newline at end of file diff --git a/Punic/data/ru/units.json b/Punic/data/ru/units.json new file mode 100644 index 0000000..99dd765 --- /dev/null +++ b/Punic/data/ru/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s на %2$s","acceleration":{"g-force":{"_name":"ускорение свободного падения","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"meter-per-second-squared":{"_name":"метры в секунду в квадрате","one":"%1$s метр в секунду в квадрате","few":"%1$s метра в секунду в квадрате","many":"%1$s метров в секунду в квадрате","other":"%1$s метра в секунду в квадрате"}},"angle":{"arc-minute":{"_name":"минуты","one":"%1$s минута","few":"%1$s минуты","many":"%1$s минут","other":"%1$s минуты"},"arc-second":{"_name":"секунды","one":"%1$s секунда","few":"%1$s секунды","many":"%1$s секунд","other":"%1$s секунды"},"degree":{"_name":"градусы","one":"%1$sградус","few":"%1$s градуса","many":"%1$s градусов","other":"%1$s градуса"},"radian":{"_name":"радианы","one":"%1$s радиан","few":"%1$s радиана","many":"%1$s радиан","other":"%1$s радиана"}},"area":{"acre":{"_name":"акры","one":"%1$s акр","few":"%1$s акра","many":"%1$s акров","other":"%1$s акра"},"hectare":{"_name":"гектары","one":"%1$s гектар","few":"%1$s гектара","many":"%1$s гектар","other":"%1$s гектара"},"square-centimeter":{"_name":"квадратные сантиметры","one":"%1$s квадратный сантиметр","few":"%1$s квадратных сантиметра","many":"%1$s квадратных сантиметров","other":"%1$s квадратного сантиметра"},"square-foot":{"_name":"квадратные футы","one":"%1$s квадратный фут","few":"%1$s квадратных фута","many":"%1$s квадратных футов","other":"%1$s квадратного фута"},"square-inch":{"_name":"квадратные дюймы","one":"%1$s квадратный дюйм","few":"%1$s квадратных дюйма","many":"%1$s квадратных дюймов","other":"%1$s квадратного дюйма"},"square-kilometer":{"_name":"квадратные километры","one":"%1$s квадратный километр","few":"%1$s квадратных километра","many":"%1$s квадратных километров","other":"%1$s квадратного километра"},"square-meter":{"_name":"квадратные метры","one":"%1$s квадратный метр","few":"%1$s квадратных метра","many":"%1$s квадратных метров","other":"%1$s квадратного метра"},"square-mile":{"_name":"квадратные мили","one":"%1$s квадратная миля","few":"%1$s квадратных мили","many":"%1$s квадратных миль","other":"%1$s квадратной мили"},"square-yard":{"_name":"квадратные ярды","one":"%1$s квадратный ярд","few":"%1$s квадратных ярда","many":"%1$s квадратных ярдов","other":"%1$s квадратного ярда"}},"consumption":{"liter-per-kilometer":{"_name":"литры на километр","one":"%1$s литр на километр","few":"%1$s литра на километр","many":"%1$s литров на километр","other":"%1$s литра на километр"},"mile-per-gallon":{"_name":"мили на галлон","one":"%1$s миля на галлон","few":"%1$s мили на галлон","many":"%1$s миль на галлон","other":"%1$s мили на галлон"}},"digital":{"bit":{"_name":"биты","one":"%1$s бит","few":"%1$s бита","many":"%1$s бит","other":"%1$s бита"},"byte":{"_name":"байты","one":"%1$s байт","few":"%1$s байта","many":"%1$s байт","other":"%1$s байта"},"gigabit":{"_name":"гигабиты","one":"%1$s гигабит","few":"%1$s гигабита","many":"%1$s гигабит","other":"%1$s гигабита"},"gigabyte":{"_name":"гигабайты","one":"%1$s гигабайт","few":"%1$s гигабайта","many":"%1$s гигабайт","other":"%1$s гигабайта"},"kilobit":{"_name":"килобиты","one":"%1$s килобит","few":"%1$s килобита","many":"%1$s килобит","other":"%1$s килобита"},"kilobyte":{"_name":"килобайты","one":"%1$s килобайт","few":"%1$s килобайта","many":"%1$s килобайт","other":"%1$s килобайта"},"megabit":{"_name":"мегабиты","one":"%1$s мегабит","few":"%1$s мегабита","many":"%1$s мегабит","other":"%1$s мегабита"},"megabyte":{"_name":"мегабайты","one":"%1$s мегабайт","few":"%1$s мегабайта","many":"%1$s мегабайт","other":"%1$s мегабайта"},"terabit":{"_name":"терабиты","one":"%1$s терабит","few":"%1$s терабита","many":"%1$s терабит","other":"%1$s терабита"},"terabyte":{"_name":"терабайты","one":"%1$s терабайт","few":"%1$s терабайта","many":"%1$s терабайт","other":"%1$s терабайта"}},"duration":{"day":{"_name":"дни","one":"%1$s день","few":"%1$s дня","many":"%1$s дней","other":"%1$s дня"},"hour":{"_name":"часы","one":"%1$s час","few":"%1$s часа","many":"%1$s часов","other":"%1$s часа","_per":"%1$s в час"},"microsecond":{"_name":"микросекунды","one":"%1$s микросекунда","few":"%1$s микросекунды","many":"%1$s микросекунд","other":"%1$s микросекунды"},"millisecond":{"_name":"миллисекунды","one":"%1$s миллисекунда","few":"%1$s миллисекунды","many":"%1$s миллисекунд","other":"%1$s миллисекунды"},"minute":{"_name":"минуты","one":"%1$s минута","few":"%1$s минуты","many":"%1$s минут","other":"%1$s минуты"},"month":{"_name":"месяцы","one":"%1$s месяц","few":"%1$s месяца","many":"%1$s месяцев","other":"%1$s месяца"},"nanosecond":{"_name":"наносекунды","one":"%1$s наносекунда","few":"%1$s наносекунды","many":"%1$s наносекунд","other":"%1$s наносекунды"},"second":{"_name":"секунды","one":"%1$s секунда","few":"%1$s секунды","many":"%1$s секунд","other":"%1$s секунды","_per":"%1$s в секунду"},"week":{"_name":"недели","one":"%1$s неделя","few":"%1$s недели","many":"%1$s недель","other":"%1$s недели"},"year":{"_name":"годы","one":"%1$s год","few":"%1$s года","many":"%1$s лет","other":"%1$s года"}},"electric":{"ampere":{"_name":"амперы","one":"%1$s ампер","few":"%1$s ампера","many":"%1$s ампер","other":"%1$s ампера"},"milliampere":{"_name":"миллиамперы","one":"%1$s миллиампер","few":"%1$s миллиампера","many":"%1$s миллиампер","other":"%1$s миллиампера"},"ohm":{"_name":"омы","one":"%1$s ом","few":"%1$s ома","many":"%1$s ом","other":"%1$s ома"},"volt":{"_name":"вольты","one":"%1$s вольт","few":"%1$s вольта","many":"%1$s вольт","other":"%1$s вольта"}},"energy":{"calorie":{"_name":"калории","one":"%1$s калория","few":"%1$s калории","many":"%1$s калорий","other":"%1$s калории"},"foodcalorie":{"_name":"калории","one":"%1$s калория","few":"%1$s калории","many":"%1$s калорий","other":"%1$s калории"},"joule":{"_name":"джоули","one":"%1$s джоуль","few":"%1$s джоуля","many":"%1$s джоулей","other":"%1$s джоуля"},"kilocalorie":{"_name":"килокалории","one":"%1$s килокалория","few":"%1$s килокалории","many":"%1$s килокалорий","other":"%1$s килокалории"},"kilojoule":{"_name":"килоджоули","one":"%1$s килоджоуль","few":"%1$s килоджоуля","many":"%1$s килоджоулей","other":"%1$s килоджоуля"},"kilowatt-hour":{"_name":"киловатт-часы","one":"%1$s киловатт-час","few":"%1$s киловатт-часа","many":"%1$s киловатт-часов","other":"%1$s киловатт-часа"}},"frequency":{"gigahertz":{"_name":"гигагерцы","one":"%1$s гигагерц","few":"%1$s гигагерца","many":"%1$s гигагерц","other":"%1$s гигагерца"},"hertz":{"_name":"герцы","one":"%1$s герц","few":"%1$s герца","many":"%1$s герц","other":"%1$s герца"},"kilohertz":{"_name":"килогерцы","one":"%1$s килогерц","few":"%1$s килогерца","many":"%1$s килогерц","other":"%1$s килогерца"},"megahertz":{"_name":"мегагерцы","one":"%1$s мегагерц","few":"%1$s мегагерца","many":"%1$s мегагерц","other":"%1$s мегагерца"}},"length":{"astronomical-unit":{"_name":"астрономические единицы","one":"%1$s астрономическая единица","few":"%1$s астрономические единицы","many":"%1$s астрономических единиц","other":"%1$s астрономической единицы"},"centimeter":{"_name":"сантиметры","one":"%1$s сантиметр","few":"%1$s сантиметра","many":"%1$s сантиметров","other":"%1$s сантиметра"},"decimeter":{"_name":"дециметры","one":"%1$s дециметр","few":"%1$s дециметра","many":"%1$s дециметров","other":"%1$s дециметра"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"футы","one":"%1$s фут","few":"%1$s фута","many":"%1$s футов","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюймы","one":"%1$s дюйм","few":"%1$s дюйма","many":"%1$s дюймов","other":"%1$s дюйма"},"kilometer":{"_name":"километры","one":"%1$s километр","few":"%1$s километра","many":"%1$s километров","other":"%1$s километра"},"light-year":{"_name":"световые годы","one":"%1$s световой год","few":"%1$s световых года","many":"%1$s световых лет","other":"%1$s световых года"},"meter":{"_name":"метры","one":"%1$s метр","few":"%1$s метра","many":"%1$s метров","other":"%1$s метра"},"micrometer":{"_name":"микрометры","one":"%1$s микрометр","few":"%1$s микрометра","many":"%1$s микрометров","other":"%1$s микрометра"},"mile":{"_name":"мили","one":"%1$s миля","few":"%1$s мили","many":"%1$s миль","other":"%1$s мили"},"millimeter":{"_name":"миллиметры","one":"%1$s миллиметр","few":"%1$s миллиметра","many":"%1$s миллиметров","other":"%1$s миллиметра"},"nanometer":{"_name":"нанометры","one":"%1$s нанометр","few":"%1$s нанометра","many":"%1$s нанометров","other":"%1$s нанометра"},"nautical-mile":{"_name":"морские мили","one":"%1$s морская миля","few":"%1$s морские мили","many":"%1$s морских миль","other":"%1$s морской мили"},"parsec":{"_name":"парсеки","one":"%1$s парсек","few":"%1$s парсека","many":"%1$s парсеков","other":"%1$s парсека"},"picometer":{"_name":"пикометры","one":"%1$s пикометр","few":"%1$s пикометра","many":"%1$s пикометров","other":"%1$s пикометра"},"yard":{"_name":"ярды","one":"%1$s ярд","few":"%1$s ярда","many":"%1$s ярдов","other":"%1$s ярда"}},"light":{"lux":{"_name":"люксы","one":"%1$s люкс","few":"%1$s люкса","many":"%1$s люкс","other":"%1$s люкса"}},"mass":{"carat":{"_name":"караты","one":"%1$s карат","few":"%1$s карата","many":"%1$s карат","other":"%1$s карата"},"gram":{"_name":"граммы","one":"%1$s грамм","few":"%1$s грамма","many":"%1$s грамм","other":"%1$s грамма"},"kilogram":{"_name":"килограммы","one":"%1$s килограмм","few":"%1$s килограмма","many":"%1$s килограмм","other":"%1$s килограмма"},"metric-ton":{"_name":"тонны","one":"%1$s тонна","few":"%1$s тонны","many":"%1$s тонн","other":"%1$s тонны"},"microgram":{"_name":"микрограммы","one":"%1$s микрограмм","few":"%1$s микрограмма","many":"%1$s микрограммов","other":"%1$s микрограмма"},"milligram":{"_name":"миллиграммы","one":"%1$s миллиграмм","few":"%1$s миллиграмма","many":"%1$s миллиграммов","other":"%1$s миллиграмма"},"ounce":{"_name":"унции","one":"%1$s унция","few":"%1$s унции","many":"%1$s унций","other":"%1$s унции"},"ounce-troy":{"_name":"тройские унции","one":"%1$s тройская унция","few":"%1$s тройские унции","many":"%1$s тройских унций","other":"%1$s тройской унции"},"pound":{"_name":"фунты","one":"%1$s фунт","few":"%1$s фунта","many":"%1$s фунтов","other":"%1$s фунта"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"американские тонны","one":"%1$s американская тонна","few":"%1$s американские тонны","many":"%1$s американских тонн","other":"%1$s американской тонны"}},"power":{"gigawatt":{"_name":"гигаватты","one":"%1$s гигаватт","few":"%1$s гигаватта","many":"%1$s гигаватт","other":"%1$s гигаватта"},"horsepower":{"_name":"лошадиные силы","one":"%1$s лошадиная сила","few":"%1$s лошадиных силы","many":"%1$s лошадиных сил","other":"%1$s лошадиной силы"},"kilowatt":{"_name":"киловатты","one":"%1$s киловатт","few":"%1$s киловатта","many":"%1$s киловатт","other":"%1$s киловатта"},"megawatt":{"_name":"мегаватты","one":"%1$s мегаватт","few":"%1$s мегаватта","many":"%1$s мегаватт","other":"%1$s мегаватта"},"milliwatt":{"_name":"милливатты","one":"%1$s милливатт","few":"%1$s милливатта","many":"%1$s милливатт","other":"%1$s милливатта"},"watt":{"_name":"ватты","one":"%1$s ватт","few":"%1$s ватта","many":"%1$s ватт","other":"%1$s ватта"}},"pressure":{"hectopascal":{"_name":"гектопаскали","one":"%1$s гектопаскаль","few":"%1$s гектопаскаля","many":"%1$s гектопаскалей","other":"%1$s гектопаскаля"},"inch-hg":{"_name":"дюймы ртутного столба","one":"%1$s дюйм ртутного столба","few":"%1$s дюйма ртутного столба","many":"%1$s дюймов ртутного столба","other":"%1$sдюйма ртутного столба"},"millibar":{"_name":"миллибары","one":"%1$s миллибар","few":"%1$s миллибара","many":"%1$s миллибар","other":"%1$s миллибара"},"millimeter-of-mercury":{"_name":"миллиметры ртутного столба","one":"%1$s миллиметр ртутного столба","few":"%1$s миллиметра ртутного столба","many":"%1$s миллиметров ртутного столба","other":"%1$s миллиметра ртутного столба"},"pound-per-square-inch":{"_name":"фунты на квадратный дюйм","one":"%1$s фунт на квадратный дюйм","few":"%1$s фунта на квадратный дюйм","many":"%1$s фунтов на квадратный дюйм","other":"%1$s фунта на квадратный дюйм"}},"proportion":{"karat":{"_name":"караты","one":"%1$s карат","few":"%1$s карата","many":"%1$s карат","other":"%1$s карата"}},"speed":{"kilometer-per-hour":{"_name":"километры в час","one":"%1$s километр в час","few":"%1$s километра в час","many":"%1$s километров в час","other":"%1$s километра в час"},"meter-per-second":{"_name":"метры в секунду","one":"%1$s метр в секунду","few":"%1$s метра в секундыу","many":"%1$s метров в секунду","other":"%1$s метра в секунду"},"mile-per-hour":{"_name":"мили в час","one":"%1$s миля в час","few":"%1$s мили в час","many":"%1$s миль в час","other":"%1$s мили в час"}},"temperature":{"celsius":{"_name":"градусы Цельсия","one":"%1$sградус Цельсия","few":"%1$s градуса Цельсия","many":"%1$sградусов Цельсия","other":"%1$sградуса Цельсия"},"fahrenheit":{"_name":"градусы по Фаренгейту","one":"%1$s градус по Фаренгейту","few":"%1$s градуса по Фаренгейту","many":"%1$s градусов по Фаренгейту","other":"%1$s градуса по Фаренгейту"},"kelvin":{"_name":"градусы по Кельвину","one":"%1$s градус по Кельвину","few":"%1$s градуса по Кельвину","many":"%1$s градусов по Кельвину","other":"%1$s градуса по Кельвину"}},"volume":{"acre-foot":{"_name":"акрофуты","one":"%1$s акрофут","few":"%1$s акрофута","many":"%1$s акрофутов","other":"%1$s акрофута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сантилитры","one":"%1$s сантилитр","few":"%1$s сантилитра","many":"%1$s сантилитров","other":"%1$s сантилитра"},"cubic-centimeter":{"_name":"кубические сантиметры","one":"%1$s кубический сантиметр","few":"%1$s кубических сантиметра","many":"%1$s кубических сантиметров","other":"%1$s кубического сантиметра"},"cubic-foot":{"_name":"кубические футы","one":"%1$s кубический фут","few":"%1$s кубических фута","many":"%1$s кубических футов","other":"%1$s кубического фута"},"cubic-inch":{"_name":"кубические дюймы","one":"%1$s кубический дюйм","few":"%1$s кубических дюйма","many":"%1$s кубических дюймов","other":"%1$s кубического дюйма"},"cubic-kilometer":{"_name":"кубические километры","one":"%1$s кубический километр","few":"%1$s кубических километра","many":"%1$s кубических километров","other":"%1$s кубического километра"},"cubic-meter":{"_name":"кубические метры","one":"%1$s кубический метр","few":"%1$s кубических метра","many":"%1$s кубических метров","other":"%1$s кубического метра"},"cubic-mile":{"_name":"кубические мили","one":"%1$s кубическая миля","few":"%1$s кубических мили","many":"%1$s кубических миль","other":"%1$s кубической мили"},"cubic-yard":{"_name":"кубические ярды","one":"%1$s кубический ярд","few":"%1$s кубических ярда","many":"%1$s кубических ярдов","other":"%1$s кубического ярда"},"cup":{"_name":"чашки","one":"%1$s чашка","few":"%1$s чашки","many":"%1$s чашек","other":"%1$s чашки"},"deciliter":{"_name":"децилитры","one":"%1$s децилитр","few":"%1$s децилитра","many":"%1$s децилитров","other":"%1$s децилитра"},"fluid-ounce":{"_name":"жидкие унции","one":"%1$s жидкая унция","few":"%1$s жидкие унции","many":"%1$s жидких унций","other":"%1$s жидкой унции"},"gallon":{"_name":"галлоны","one":"%1$s галлон","few":"%1$s галлона","many":"%1$s галлонов","other":"%1$s галлона"},"hectoliter":{"_name":"гектолитры","one":"%1$s гектолитр","few":"%1$s гектолитра","many":"%1$s гектолитров","other":"%1$s гектолитра"},"liter":{"_name":"литры","one":"%1$s литр","few":"%1$s литра","many":"%1$s литра","other":"%1$s литра"},"megaliter":{"_name":"мегалитры","one":"%1$s мегалитр","few":"%1$s мегалитра","many":"%1$s мегалитров","other":"%1$s мегалитра"},"milliliter":{"_name":"миллилитры","one":"%1$s миллилитр","few":"%1$s миллилитра","many":"%1$s миллилитров","other":"%1$s миллилитра"},"pint":{"_name":"пинты","one":"%1$s пинта","few":"%1$s пинты","many":"%1$s пинт","other":"%1$s пинты"},"quart":{"_name":"кварты","one":"%1$s кварта","few":"%1$s кварты","many":"%1$s кварт","other":"%1$s кварты"},"tablespoon":{"_name":"столовые ложки","one":"%1$s столовая ложка","few":"%1$s столовые ложки","many":"%1$s столовых ложек","other":"%1$s столовой ложки"},"teaspoon":{"_name":"чайные ложки","one":"%1$s чайная ложка","few":"%1$s чайные ложки","many":"%1$s чайных ложек","other":"%1$s чайной ложки"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"meter-per-second-squared":{"_name":"м/с²","one":"%1$s м/с²","few":"%1$s м/с²","many":"%1$s м/с²","other":"%1$s м/с²"}},"angle":{"arc-minute":{"_name":"минуты","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"секунды","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"градусы","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"рад","one":"%1$s рад","few":"%1$s рад","many":"%1$s рад","other":"%1$s рад"}},"area":{"acre":{"_name":"акры","one":"%1$s акр","few":"%1$s акра","many":"%1$s акров","other":"%1$s акра"},"hectare":{"_name":"гектары","one":"%1$s га","few":"%1$s га","many":"%1$s га","other":"%1$s га"},"square-centimeter":{"_name":"квадратные сантиметры","one":"%1$s см²","few":"%1$s см²","many":"%1$s см²","other":"%1$s см²"},"square-foot":{"_name":"квадратные футы","one":"%1$s кв. фут","few":"%1$s кв. фута","many":"%1$s кв. футов","other":"%1$s кв. фута"},"square-inch":{"_name":"квадратные дюймы","one":"%1$s кв. дюйм","few":"%1$s кв. дюйм.","many":"%1$s кв. дюйм.","other":"%1$s кв. дюйм."},"square-kilometer":{"_name":"квадратные километры","one":"%1$s км²","few":"%1$s км²","many":"%1$s км²","other":"%1$s км²"},"square-meter":{"_name":"квадратные метры","one":"%1$s м²","few":"%1$s м²","many":"%1$s м²","other":"%1$s м²"},"square-mile":{"_name":"квадратные мили","one":"%1$s кв. миля","few":"%1$s кв. мили","many":"%1$s кв. миль","other":"%1$s кв. мили"},"square-yard":{"_name":"квадратные ярды","one":"%1$s кв. ярд","few":"%1$s кв. ярда","many":"%1$s кв. ярдов","other":"%1$s кв. ярда"}},"consumption":{"liter-per-kilometer":{"_name":"л/км","one":"%1$s л/км","few":"%1$s л/км","many":"%1$s л/км","other":"%1$s л/км"},"mile-per-gallon":{"_name":"миль/галл.","one":"%1$s миля/галл.","few":"%1$s мили/галл.","many":"%1$s миль/галл.","other":"%1$s мили/галл."}},"digital":{"bit":{"_name":"бит","one":"%1$s бит","few":"%1$s бита","many":"%1$s бит","other":"%1$s бита"},"byte":{"_name":"Б","one":"%1$s Б","few":"%1$s Б","many":"%1$s Б","other":"%1$s Б"},"gigabit":{"_name":"Гбит","one":"%1$s Гбит","few":"%1$s Гбит","many":"%1$s Гбит","other":"%1$s Гбит"},"gigabyte":{"_name":"ГБ","one":"%1$s ГБ","few":"%1$s ГБ","many":"%1$s ГБ","other":"%1$s ГБ"},"kilobit":{"_name":"кбит","one":"%1$s кбит","few":"%1$s кбит","many":"%1$s кбит","other":"%1$s кбит"},"kilobyte":{"_name":"кБ","one":"%1$s кБ","few":"%1$s кБ","many":"%1$s кБ","other":"%1$s кБ"},"megabit":{"_name":"Мбит","one":"%1$s Мбит","few":"%1$s Мбит","many":"%1$s Мбит","other":"%1$s Мбит"},"megabyte":{"_name":"МБ","one":"%1$s МБ","few":"%1$s МБ","many":"%1$s МБ","other":"%1$s МБ"},"terabit":{"_name":"Тбит","one":"%1$s Тбит","few":"%1$s Тбит","many":"%1$s Тбит","other":"%1$s Тбит"},"terabyte":{"_name":"ТБ","one":"%1$s ТБ","few":"%1$s ТБ","many":"%1$s ТБ","other":"%1$s ТБ"}},"duration":{"day":{"_name":"дн","one":"%1$s дн","few":"%1$s дн","many":"%1$s дн","other":"%1$s дн"},"hour":{"_name":"ч","one":"%1$s ч","few":"%1$s ч","many":"%1$s ч","other":"%1$s ч","_per":"%1$s/ч"},"microsecond":{"_name":"мкс","one":"%1$s мкс","few":"%1$s мкс","many":"%1$s мкс","other":"%1$s мкс"},"millisecond":{"_name":"мс","one":"%1$s мс","few":"%1$s мс","many":"%1$s мс","other":"%1$s мс"},"minute":{"_name":"мин","one":"%1$s мин","few":"%1$s мин","many":"%1$s мин","other":"%1$s мин"},"month":{"_name":"мес","one":"%1$s мес","few":"%1$s мес","many":"%1$s мес","other":"%1$s мес"},"nanosecond":{"_name":"нс","one":"%1$s нс","few":"%1$s нс","many":"%1$s нс","other":"%1$s нс"},"second":{"_name":"сек","one":"%1$s сек","few":"%1$s сек","many":"%1$s сек","other":"%1$s сек","_per":"%1$s/c"},"week":{"_name":"нед","one":"%1$s нед","few":"%1$s нед","many":"%1$s нед","other":"%1$s нед"},"year":{"_name":"г.","one":"%1$s г.","few":"%1$s г.","many":"%1$s л.","other":"%1$s г."}},"electric":{"ampere":{"_name":"А","one":"%1$s А","few":"%1$s А","many":"%1$s А","other":"%1$s А"},"milliampere":{"_name":"мА","one":"%1$s мА","few":"%1$s мА","many":"%1$s мА","other":"%1$s мА"},"ohm":{"_name":"Ом","one":"%1$s Ом","few":"%1$s Ом","many":"%1$s Ом","other":"%1$s Ом"},"volt":{"_name":"В","one":"%1$s В","few":"%1$s В","many":"%1$s В","other":"%1$s В"}},"energy":{"calorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"foodcalorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"joule":{"_name":"Дж","one":"%1$s Дж","few":"%1$s Дж","many":"%1$s Дж","other":"%1$s Дж"},"kilocalorie":{"_name":"ккал","one":"%1$s ккал","few":"%1$s ккал","many":"%1$s ккал","other":"%1$s ккал"},"kilojoule":{"_name":"кДж","one":"%1$s кДж","few":"%1$s кДж","many":"%1$s кДж","other":"%1$s кДж"},"kilowatt-hour":{"_name":"кВт⋅ч","one":"%1$s кВт⋅ч","few":"%1$s кВт⋅ч","many":"%1$s кВт⋅ч","other":"%1$s кВт⋅ч"}},"frequency":{"gigahertz":{"_name":"ГГц","one":"%1$s ГГц","few":"%1$s ГГц","many":"%1$s ГГц","other":"%1$s ГГц"},"hertz":{"_name":"Гц","one":"%1$s Гц","few":"%1$s Гц","many":"%1$s Гц","other":"%1$s Гц"},"kilohertz":{"_name":"кГц","one":"%1$s кГц","few":"%1$s кГц","many":"%1$s кГц","other":"%1$s кГц"},"megahertz":{"_name":"МГц","one":"%1$s МГц","few":"%1$s МГц","many":"%1$s МГц","other":"%1$s МГц"}},"length":{"astronomical-unit":{"_name":"а. е.","one":"%1$s а. е.","few":"%1$s а. е.","many":"%1$s а. е.","other":"%1$s а. е."},"centimeter":{"_name":"см","one":"%1$s см","few":"%1$s см","many":"%1$s см","other":"%1$s см"},"decimeter":{"_name":"дм","one":"%1$s дм","few":"%1$s дм","many":"%1$s дм","other":"%1$s дм"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"футы","one":"%1$s фут","few":"%1$s фута","many":"%1$s футов","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюйм.","one":"%1$s дюйм","few":"%1$s дюйм.","many":"%1$s дюйм.","other":"%1$s дюйм."},"kilometer":{"_name":"км","one":"%1$s км","few":"%1$s км","many":"%1$s км","other":"%1$s км"},"light-year":{"_name":"св. годы","one":"%1$s св. г.","few":"%1$s св. г.","many":"%1$s св. л.","other":"%1$s св. г."},"meter":{"_name":"метры","one":"%1$s м","few":"%1$s м","many":"%1$s м","other":"%1$s м"},"micrometer":{"_name":"мкм","one":"%1$s мкм","few":"%1$s мкм","many":"%1$s мкм","other":"%1$s мкм"},"mile":{"_name":"мили","one":"%1$s миля","few":"%1$s мили","many":"%1$s миль","other":"%1$s мили"},"millimeter":{"_name":"мм","one":"%1$s мм","few":"%1$s мм","many":"%1$s мм","other":"%1$s мм"},"nanometer":{"_name":"нанометр","one":"%1$s нм","few":"%1$s нм","many":"%1$s нм","other":"%1$s нм"},"nautical-mile":{"_name":"мор. мили","one":"%1$s мор. миля","few":"%1$s мор. мили","many":"%1$s мор. миль","other":"%1$s мор. мили"},"parsec":{"_name":"парсеки","one":"%1$s пк","few":"%1$s пк","many":"%1$s пк","other":"%1$s пк"},"picometer":{"_name":"пм","one":"%1$s пм","few":"%1$s пм","many":"%1$s пм","other":"%1$s пм"},"yard":{"_name":"ярда","one":"%1$s ярд","few":"%1$s ярда","many":"%1$s ярдов","other":"%1$s ярда"}},"light":{"lux":{"_name":"лк","one":"%1$s лк","few":"%1$s лк","many":"%1$s лк","other":"%1$s лк"}},"mass":{"carat":{"_name":"кар","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"},"gram":{"_name":"граммы","one":"%1$s г","few":"%1$s г","many":"%1$s г","other":"%1$s г"},"kilogram":{"_name":"кг","one":"%1$s кг","few":"%1$s кг","many":"%1$s кг","other":"%1$s кг"},"metric-ton":{"_name":"т","one":"%1$s т","few":"%1$s т","many":"%1$s т","other":"%1$s т"},"microgram":{"_name":"мкг","one":"%1$s мкг","few":"%1$s мкг","many":"%1$s мкг","other":"%1$s мкг"},"milligram":{"_name":"мг","one":"%1$s мг","few":"%1$s мг","many":"%1$s мг","other":"%1$s мг"},"ounce":{"_name":"унц.","one":"%1$s унц.","few":"%1$s унц.","many":"%1$s унц.","other":"%1$s унц."},"ounce-troy":{"_name":"тр. унц.","one":"%1$s тр. унц.","few":"%1$s тр. унц.","many":"%1$s тр. унц.","other":"%1$s тр. унц."},"pound":{"_name":"фунт.","one":"%1$s фунт.","few":"%1$s фунт.","many":"%1$s фунт.","other":"%1$s фунт."},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"амер. т","one":"%1$s амер. т","few":"%1$s амер. т","many":"%1$s амер. т","other":"%1$s амер. т"}},"power":{"gigawatt":{"_name":"ГВт","one":"%1$s ГВт","few":"%1$s ГВт","many":"%1$s ГВт","other":"%1$s ГВт"},"horsepower":{"_name":"л.с.","one":"%1$s л.с.","few":"%1$s л.с.","many":"%1$s л.с.","other":"%1$s л.с."},"kilowatt":{"_name":"кВт","one":"%1$s кВт","few":"%1$s кВт","many":"%1$s кВт","other":"%1$s кВт"},"megawatt":{"_name":"МВт","one":"%1$s МВт","few":"%1$s МВт","many":"%1$s МВт","other":"%1$s МВт"},"milliwatt":{"_name":"мВт","one":"%1$s мВт","few":"%1$s мВт","many":"%1$s мВт","other":"%1$s мВт"},"watt":{"_name":"Вт","one":"%1$s Вт","few":"%1$s Вт","many":"%1$s Вт","other":"%1$s Вт"}},"pressure":{"hectopascal":{"_name":"гПа","one":"%1$s гПа","few":"%1$s гПа","many":"%1$s гПа","other":"%1$s гПа"},"inch-hg":{"_name":"дюймы рт. ст","one":"%1$s д. рт. ст.","few":"%1$s д. рт. ст.","many":"%1$s д. рт. ст.","other":"%1$s д. рт. ст."},"millibar":{"_name":"мбар","one":"%1$s мбар","few":"%1$s мбар","many":"%1$s мбар","other":"%1$s мбар"},"millimeter-of-mercury":{"_name":"мм рт. ст.","one":"%1$s мм рт. ст.","few":"%1$s мм рт. ст.","many":"%1$s мм рт. ст.","other":"%1$s мм рт. ст."},"pound-per-square-inch":{"_name":"ф. на кв. д.","one":"%1$s ф./кв. д.","few":"%1$s ф./кв. д.","many":"%1$s ф./кв. д.","other":"%1$s ф./кв. д."}},"proportion":{"karat":{"_name":"кар","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"}},"speed":{"kilometer-per-hour":{"_name":"км/ч","one":"%1$s км/ч","few":"%1$s км/ч","many":"%1$s км/ч","other":"%1$s км/ч"},"meter-per-second":{"_name":"м/с","one":"%1$s м/с","few":"%1$s м/с","many":"%1$s м/с","other":"%1$s м/с"},"mile-per-hour":{"_name":"мили/час","one":"%1$s миль/час","few":"%1$s мили/час","many":"%1$s миль/час","other":"%1$s мили/час"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"акрофуты","one":"%1$s акрофут","few":"%1$s акрофута","many":"%1$s акрофутов","other":"%1$s акрофута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сл","one":"%1$s сл","few":"%1$s сл","many":"%1$s сл","other":"%1$s сл"},"cubic-centimeter":{"_name":"см³","one":"%1$s см³","few":"%1$s см³","many":"%1$s см³","other":"%1$s см³"},"cubic-foot":{"_name":"куб. футы","one":"%1$s куб. фут","few":"%1$s куб. фута","many":"%1$s куб. футов","other":"%1$s куб. фута"},"cubic-inch":{"_name":"куб. дюймы","one":"%1$s куб. дюйм","few":"%1$s куб. дюйма","many":"%1$s куб. дюймов","other":"%1$s куб. дюйма"},"cubic-kilometer":{"_name":"км³","one":"%1$s км³","few":"%1$s км³","many":"%1$s км³","other":"%1$s км³"},"cubic-meter":{"_name":"м³","one":"%1$s м³","few":"%1$s м³","many":"%1$s м³","other":"%1$s м³"},"cubic-mile":{"_name":"куб. мили","one":"%1$s куб. миля","few":"%1$s куб. мили","many":"%1$s куб. мили","other":"%1$s куб. мили"},"cubic-yard":{"_name":"куб. ярды","one":"%1$s куб. ярд","few":"%1$s куб. ярда","many":"%1$s куб. ярдов","other":"%1$s куб. ярда"},"cup":{"_name":"чаш.","one":"%1$s чаш.","few":"%1$s чаш.","many":"%1$s чаш.","other":"%1$s чаш."},"deciliter":{"_name":"дл","one":"%1$s дл","few":"%1$s дл","many":"%1$s дл","other":"%1$s дл"},"fluid-ounce":{"_name":"жидк. унц.","one":"%1$s жидк. унц.","few":"%1$s жидк. унц.","many":"%1$s жидк. унц.","other":"%1$s жидк. унц."},"gallon":{"_name":"гал.","one":"%1$s гал.","few":"%1$s гал.","many":"%1$s гал.","other":"%1$s гал."},"hectoliter":{"_name":"гл","one":"%1$s гл","few":"%1$s гл","many":"%1$s гл","other":"%1$s гл"},"liter":{"_name":"л","one":"%1$s л","few":"%1$s л","many":"%1$s л","other":"%1$s л"},"megaliter":{"_name":"Мл","one":"%1$s Мл","few":"%1$s Мл","many":"%1$s Мл","other":"%1$s Мл"},"milliliter":{"_name":"мл","one":"%1$s мл","few":"%1$s мл","many":"%1$s мл","other":"%1$s мл"},"pint":{"_name":"пинт.","one":"%1$s пинт.","few":"%1$s пинт.","many":"%1$s пинт.","other":"%1$s пинт."},"quart":{"_name":"кварт.","one":"%1$s кварт.","few":"%1$s кварт.","many":"%1$s кварт.","other":"%1$s кварт."},"tablespoon":{"_name":"ст. л.","one":"%1$s ст. л.","few":"%1$s ст. л.","many":"%1$s ст. л.","other":"%1$s ст. л."},"teaspoon":{"_name":"ч.л.","one":"%1$s ч.л.","few":"%1$s ч.л.","many":"%1$s ч.л.","other":"%1$s ч.л."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"м/с²","one":"%1$s м/с²","few":"%1$s м/с²","many":"%1$s м/с²","other":"%1$s м/с²"}},"angle":{"arc-minute":{"_name":"минуты","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"секунды","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"градусы","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"рад","one":"%1$s рад","few":"%1$s рад","many":"%1$s рад","other":"%1$s рад"}},"area":{"acre":{"_name":"акры","one":"%1$s акр","few":"%1$s акра","many":"%1$s акров","other":"%1$s акра"},"hectare":{"_name":"гектары","one":"%1$s га","few":"%1$s га","many":"%1$s га","other":"%1$s га"},"square-centimeter":{"_name":"квадратные сантиметры","one":"%1$s см²","few":"%1$s см²","many":"%1$s см²","other":"%1$s см²"},"square-foot":{"_name":"квадратные футы","one":"%1$s кв. фут","few":"%1$s кв. фута","many":"%1$s кв. футов","other":"%1$s кв. фута"},"square-inch":{"_name":"квадратные дюймы","one":"%1$s кв. дюйм.","few":"%1$s кв. дюйм.","many":"%1$s кв. дюйм.","other":"%1$s кв. дюйм."},"square-kilometer":{"_name":"квадратные километры","one":"%1$s км²","few":"%1$s км²","many":"%1$s км²","other":"%1$s км²"},"square-meter":{"_name":"квадратные метры","one":"%1$s м²","few":"%1$s м²","many":"%1$s м²","other":"%1$s м²"},"square-mile":{"_name":"квадратные мили","one":"%1$s кв. миля","few":"%1$s кв. мили","many":"%1$s кв. миль","other":"%1$s кв. мили"},"square-yard":{"_name":"квадратные ярды","one":"%1$s кв. ярда","few":"%1$s кв. ярда","many":"%1$s кв. ярда","other":"%1$s кв. ярда"}},"consumption":{"liter-per-kilometer":{"_name":"л/км","one":"%1$s л/км","few":"%1$s л/км","many":"%1$s л/км","other":"%1$s л/км"},"mile-per-gallon":{"_name":"миль/галл.","one":"%1$s мили/галл.","few":"%1$s мили/галл.","many":"%1$s мили/галл.","other":"%1$s мили/галл."}},"digital":{"bit":{"_name":"бит","one":"%1$s бита","few":"%1$s бита","many":"%1$s бита","other":"%1$s бита"},"byte":{"_name":"Б","one":"%1$s Б","few":"%1$s Б","many":"%1$s Б","other":"%1$s Б"},"gigabit":{"_name":"Гбит","one":"%1$s Гбит","few":"%1$s Гбит","many":"%1$s Гбит","other":"%1$s Гбит"},"gigabyte":{"_name":"ГБ","one":"%1$s ГБ","few":"%1$s ГБ","many":"%1$s ГБ","other":"%1$s ГБ"},"kilobit":{"_name":"кбит","one":"%1$s кбит","few":"%1$s кбит","many":"%1$s кбит","other":"%1$s кбит"},"kilobyte":{"_name":"кБ","one":"%1$s кБ","few":"%1$s кБ","many":"%1$s кБ","other":"%1$s кБ"},"megabit":{"_name":"Мбит","one":"%1$s Мбит","few":"%1$s Мбит","many":"%1$s Мбит","other":"%1$s Мбит"},"megabyte":{"_name":"МБ","one":"%1$s МБ","few":"%1$s МБ","many":"%1$s МБ","other":"%1$s МБ"},"terabit":{"_name":"Тбит","one":"%1$s Тбит","few":"%1$s Тбит","many":"%1$s Тбит","other":"%1$s Тбит"},"terabyte":{"_name":"ТБ","one":"%1$s ТБ","few":"%1$s ТБ","many":"%1$s ТБ","other":"%1$s ТБ"}},"duration":{"day":{"_name":"д.","one":"%1$s д.","few":"%1$s д.","many":"%1$s д.","other":"%1$s д."},"hour":{"_name":"ч","one":"%1$s ч","few":"%1$s ч","many":"%1$s ч","other":"%1$s ч","_per":"%1$s/ч"},"microsecond":{"_name":"мкс","one":"%1$s мкс","few":"%1$s мкс","many":"%1$s мкс","other":"%1$s мкс"},"millisecond":{"_name":"мс","one":"%1$s мс","few":"%1$s мс","many":"%1$s мс","other":"%1$s мс"},"minute":{"_name":"мин.","one":"%1$s мин","few":"%1$s мин","many":"%1$s мин","other":"%1$s мин"},"month":{"_name":"мес","one":"%1$s м.","few":"%1$s м.","many":"%1$s м.","other":"%1$s м."},"nanosecond":{"_name":"нс","one":"%1$s нс","few":"%1$s нс","many":"%1$s нс","other":"%1$s нс"},"second":{"_name":"c","one":"%1$s с","few":"%1$s с","many":"%1$s с","other":"%1$s с","_per":"%1$s/c"},"week":{"_name":"нед","one":"%1$s н.","few":"%1$s н.","many":"%1$s н.","other":"%1$s н."},"year":{"_name":"г.","one":"%1$s г.","few":"%1$s л.","many":"%1$s л.","other":"%1$s г."}},"electric":{"ampere":{"_name":"А","one":"%1$s А","few":"%1$s А","many":"%1$s А","other":"%1$s А"},"milliampere":{"_name":"мА","one":"%1$s мА","few":"%1$s мА","many":"%1$s мА","other":"%1$s мА"},"ohm":{"_name":"Ом","one":"%1$s Ом","few":"%1$s Ом","many":"%1$s Ом","other":"%1$s Ом"},"volt":{"_name":"В","one":"%1$s В","few":"%1$s В","many":"%1$s В","other":"%1$s В"}},"energy":{"calorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"foodcalorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"joule":{"_name":"Дж","one":"%1$s Дж","few":"%1$s Дж","many":"%1$s Дж","other":"%1$s Дж"},"kilocalorie":{"_name":"ккал","one":"%1$s ккал","few":"%1$s ккал","many":"%1$s ккал","other":"%1$s ккал"},"kilojoule":{"_name":"кДж","one":"%1$s кДж","few":"%1$s кДж","many":"%1$s кДж","other":"%1$s кДж"},"kilowatt-hour":{"_name":"кВт⋅ч","one":"%1$s кВт⋅ч","few":"%1$s кВт⋅ч","many":"%1$s кВт⋅ч","other":"%1$s кВт⋅ч"}},"frequency":{"gigahertz":{"_name":"ГГц","one":"%1$s ГГц","few":"%1$s ГГц","many":"%1$s ГГц","other":"%1$s ГГц"},"hertz":{"_name":"Гц","one":"%1$s Гц","few":"%1$s Гц","many":"%1$s Гц","other":"%1$s Гц"},"kilohertz":{"_name":"кГц","one":"%1$s кГц","few":"%1$s кГц","many":"%1$s кГц","other":"%1$s кГц"},"megahertz":{"_name":"МГц","one":"%1$s МГц","few":"%1$s МГц","many":"%1$s МГц","other":"%1$s МГц"}},"length":{"astronomical-unit":{"_name":"а. е.","one":"%1$s а. е.","few":"%1$s а. е.","many":"%1$s а. е.","other":"%1$s а. е."},"centimeter":{"_name":"см","one":"%1$s см","few":"%1$s см","many":"%1$s см","other":"%1$s см"},"decimeter":{"_name":"дм","one":"%1$s дм","few":"%1$s дм","many":"%1$s дм","other":"%1$s дм"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"футы","one":"%1$s фут","few":"%1$s фута","many":"%1$s футов","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюйм.","one":"%1$s дюйм","few":"%1$s дюйма","many":"%1$s дюймов","other":"%1$s дюйма"},"kilometer":{"_name":"км","one":"%1$s км","few":"%1$s км","many":"%1$s км","other":"%1$s км"},"light-year":{"_name":"св. годы","one":"%1$s св. г.","few":"%1$s св. г.","many":"%1$s св. л.","other":"%1$s св. г."},"meter":{"_name":"метр","one":"%1$s м","few":"%1$s м","many":"%1$s м","other":"%1$s м"},"micrometer":{"_name":"мкм","one":"%1$s мкм","few":"%1$s мкм","many":"%1$s мкм","other":"%1$s мкм"},"mile":{"_name":"мили","one":"%1$s миля","few":"%1$s миль","many":"%1$s миль","other":"%1$s мили"},"millimeter":{"_name":"мм","one":"%1$s мм","few":"%1$s мм","many":"%1$s мм","other":"%1$s мм"},"nanometer":{"_name":"нанометр","one":"%1$s нм","few":"%1$s нм","many":"%1$s нм","other":"%1$s нм"},"nautical-mile":{"_name":"мор. мили","one":"%1$s мор. мили","few":"%1$s мор. мили","many":"%1$s мор. мили","other":"%1$s мор. мили"},"parsec":{"_name":"парсеки","one":"%1$s пк","few":"%1$s пк","many":"%1$s пк","other":"%1$s пк"},"picometer":{"_name":"пм","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"ярда","one":"%1$s ярд","few":"%1$s ярда","many":"%1$s ярдов","other":"%1$s ярда"}},"light":{"lux":{"_name":"лк","one":"%1$s лк","few":"%1$s лк","many":"%1$s лк","other":"%1$s лк"}},"mass":{"carat":{"_name":"кар","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"},"gram":{"_name":"г","one":"%1$s г","few":"%1$s г","many":"%1$s г","other":"%1$s г"},"kilogram":{"_name":"кг","one":"%1$s кг","few":"%1$s кг","many":"%1$s кг","other":"%1$s кг"},"metric-ton":{"_name":"т","one":"%1$s т","few":"%1$s т","many":"%1$s т","other":"%1$s т"},"microgram":{"_name":"мкг","one":"%1$s мкг","few":"%1$s мкг","many":"%1$s мкг","other":"%1$s мкг"},"milligram":{"_name":"мг","one":"%1$s мг","few":"%1$s мг","many":"%1$s мг","other":"%1$s мг"},"ounce":{"_name":"унц.","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"тр. унц.","one":"%1$s тр. унц.","few":"%1$s тр. унц.","many":"%1$s тр. унц.","other":"%1$s тр. унц."},"pound":{"_name":"фунт.","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"амер. т","one":"%1$s амер. т","few":"%1$s амер. т","many":"%1$s амер. т","other":"%1$s амер. т"}},"power":{"gigawatt":{"_name":"ГВт","one":"%1$s ГВт","few":"%1$s ГВт","many":"%1$s ГВт","other":"%1$s ГВт"},"horsepower":{"_name":"л.с.","one":"%1$s л.с.","few":"%1$s л.с.","many":"%1$s л.с.","other":"%1$s л.с."},"kilowatt":{"_name":"кВт","one":"%1$s кВт","few":"%1$s кВт","many":"%1$s кВт","other":"%1$s кВт"},"megawatt":{"_name":"МВт","one":"%1$s МВт","few":"%1$s МВт","many":"%1$s МВт","other":"%1$s МВт"},"milliwatt":{"_name":"мВт","one":"%1$s мВт","few":"%1$s мВт","many":"%1$s мВт","other":"%1$s мВт"},"watt":{"_name":"Вт","one":"%1$s Вт","few":"%1$s Вт","many":"%1$s Вт","other":"%1$s Вт"}},"pressure":{"hectopascal":{"_name":"гПа","one":"%1$s гПа","few":"%1$s гПа","many":"%1$s гПа","other":"%1$s гПа"},"inch-hg":{"_name":"дюймы рт. ст","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"мбар","one":"%1$s мбар","few":"%1$s мбар","many":"%1$s мбар","other":"%1$s мбар"},"millimeter-of-mercury":{"_name":"мм рт. ст.","one":"%1$s мм рт. ст.","few":"%1$s мм рт. ст.","many":"%1$s мм рт. ст.","other":"%1$s мм рт. ст."},"pound-per-square-inch":{"_name":"ф. на кв. д.","one":"%1$s ф./кв. д.","few":"%1$s ф./кв. д.","many":"%1$s ф./кв. д.","other":"%1$s ф./кв. д."}},"proportion":{"karat":{"_name":"кар","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"}},"speed":{"kilometer-per-hour":{"_name":"км/ч","one":"%1$s км/ч","few":"%1$s км/ч","many":"%1$s км/ч","other":"%1$s км/ч"},"meter-per-second":{"_name":"м/с","one":"%1$s м/с","few":"%1$s м/с","many":"%1$s м/с","other":"%1$s м/с"},"mile-per-hour":{"_name":"мили/час","one":"%1$s миль/ч","few":"%1$s миль/ч","many":"%1$s миль/ч","other":"%1$s миль/ч"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"акрофуты","one":"%1$s акрофута","few":"%1$s акрофута","many":"%1$s акрофута","other":"%1$s акрофута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сл","one":"%1$s сл","few":"%1$s сл","many":"%1$s сл","other":"%1$s сл"},"cubic-centimeter":{"_name":"см³","one":"%1$s см³","few":"%1$s см³","many":"%1$s см³","other":"%1$s см³"},"cubic-foot":{"_name":"куб. футы","one":"%1$s куб. фута","few":"%1$s куб. фута","many":"%1$s куб. фута","other":"%1$s куб. фута"},"cubic-inch":{"_name":"куб. дюймы","one":"%1$s куб. дюйма","few":"%1$s куб. дюйма","many":"%1$s куб. дюйма","other":"%1$s куб. дюйма"},"cubic-kilometer":{"_name":"км³","one":"%1$s км³","few":"%1$s км³","many":"%1$s км³","other":"%1$s км³"},"cubic-meter":{"_name":"м³","one":"%1$s м³","few":"%1$s м³","many":"%1$s м³","other":"%1$s м³"},"cubic-mile":{"_name":"куб. мили","one":"%1$s куб. миля","few":"%1$s куб. мили","many":"%1$s куб. мили","other":"%1$s куб. мили"},"cubic-yard":{"_name":"куб. ярды","one":"%1$s куб. ярда","few":"%1$s куб. ярда","many":"%1$s куб. ярда","other":"%1$s куб. ярда"},"cup":{"_name":"чаш.","one":"%1$s чаш.","few":"%1$s чаш.","many":"%1$s чаш.","other":"%1$s чаш."},"deciliter":{"_name":"дл","one":"%1$s дл","few":"%1$s дл","many":"%1$s дл","other":"%1$s дл"},"fluid-ounce":{"_name":"жидк. унц.","one":"%1$s жидк. унц.","few":"%1$s жидк. унц.","many":"%1$s жидк. унц.","other":"%1$s жидк. унц."},"gallon":{"_name":"гал.","one":"%1$s гал.","few":"%1$s гал.","many":"%1$s гал.","other":"%1$s гал."},"hectoliter":{"_name":"гл","one":"%1$s гл","few":"%1$s гл","many":"%1$s гл","other":"%1$s гл"},"liter":{"_name":"л","one":"%1$s л","few":"%1$s л","many":"%1$s л","other":"%1$s л"},"megaliter":{"_name":"Мл","one":"%1$s Мл","few":"%1$s Мл","many":"%1$s Мл","other":"%1$s Мл"},"milliliter":{"_name":"мл","one":"%1$s мл","few":"%1$s мл","many":"%1$s мл","other":"%1$s мл"},"pint":{"_name":"пинт.","one":"%1$s пинт.","few":"%1$s пинт.","many":"%1$s пинт.","other":"%1$s пинт."},"quart":{"_name":"кварт.","one":"%1$s кварт.","few":"%1$s кварт.","many":"%1$s кварт.","other":"%1$s кварт."},"tablespoon":{"_name":"ст. л.","one":"%1$s ст. л.","few":"%1$s ст. л.","many":"%1$s ст. л.","other":"%1$s ст. л."},"teaspoon":{"_name":"ч.л.","one":"%1$s ч.л.","few":"%1$s ч.л.","many":"%1$s ч.л.","other":"%1$s ч.л."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/sk/calendar.json b/Punic/data/sk/calendar.json new file mode 100644 index 0000000..1d73c9f --- /dev/null +++ b/Punic/data/sk/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan","2":"feb","3":"mar","4":"apr","5":"máj","6":"jún","7":"júl","8":"aug","9":"sep","10":"okt","11":"nov","12":"dec"},"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":"januára","2":"februára","3":"marca","4":"apríla","5":"mája","6":"júna","7":"júla","8":"augusta","9":"septembra","10":"októbra","11":"novembra","12":"decembra"}},"stand-alone":{"abbreviated":{"1":"jan","2":"feb","3":"mar","4":"apr","5":"máj","6":"jún","7":"júl","8":"aug","9":"sep","10":"okt","11":"nov","12":"dec"},"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":"január","2":"február","3":"marec","4":"apríl","5":"máj","6":"jún","7":"júl","8":"august","9":"september","10":"október","11":"november","12":"december"}}},"days":{"format":{"abbreviated":{"sun":"ne","mon":"po","tue":"ut","wed":"st","thu":"št","fri":"pi","sat":"so"},"narrow":{"sun":"N","mon":"P","tue":"U","wed":"S","thu":"Š","fri":"P","sat":"S"},"short":{"sun":"Ne","mon":"Po","tue":"Ut","wed":"St","thu":"Št","fri":"Pi","sat":"So"},"wide":{"sun":"nedeľa","mon":"pondelok","tue":"utorok","wed":"streda","thu":"štvrtok","fri":"piatok","sat":"sobota"}},"stand-alone":{"abbreviated":{"sun":"ne","mon":"po","tue":"ut","wed":"st","thu":"št","fri":"pi","sat":"so"},"narrow":{"sun":"N","mon":"P","tue":"U","wed":"S","thu":"Š","fri":"P","sat":"S"},"short":{"sun":"Ne","mon":"Po","tue":"Ut","wed":"St","thu":"Št","fri":"Pi","sat":"So"},"wide":{"sun":"nedeľa","mon":"pondelok","tue":"utorok","wed":"streda","thu":"štvrtok","fri":"piatok","sat":"sobota"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. štvrťrok","2":"2. štvrťrok","3":"3. štvrťrok","4":"4. štvrťrok"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. štvrťrok","2":"2. štvrťrok","3":"3. štvrťrok","4":"4. štvrťrok"}}},"dayPeriods":{"format":{"abbreviated":{"am":"dopoludnia","noon":"poludnie","pm":"odpoludnia"},"narrow":{"am":"dop.","noon":"pol.","pm":"odp."},"wide":{"am":"dopoludnia","noon":"poludnie","pm":"odpoludnia"}},"stand-alone":{"abbreviated":{"am":"dopoludnia","noon":"poludnie","pm":"odpoludnia"},"narrow":{"am":"dop.","noon":"pol.","pm":"odp."},"wide":{"am":"dopoludnia","noon":"poludnie","pm":"odpoludnia"}}},"eras":{"wide":{"0":"pred Kristom","0-alt-variant":"pred naším letopočtom","1":"po Kristovi","1-alt-variant":"nášho letopočtu"},"abbreviated":{"0":"pred Kr.","0-alt-variant":"pred n. l.","1":"po Kr.","1-alt-variant":"n. l."},"narrow":{"0":"pred Kr.","0-alt-variant":"pred n. l.","1":"po Kr.","1-alt-variant":"n. l."}},"dateFormats":{"full":"EEEE, d. MMMM y","long":"d. MMMM y","medium":"d. M. y","short":"dd.MM.yy"},"timeFormats":{"full":"H:mm:ss zzzz","long":"H:mm:ss z","medium":"H:mm:ss","short":"H:mm"},"dateTimeFormats":{"full":"%2$s, %1$s","long":"%2$s, %1$s","medium":"%2$s, %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/sk/dateFields.json b/Punic/data/sk/dateFields.json new file mode 100644 index 0000000..a01e714 --- /dev/null +++ b/Punic/data/sk/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"letopočet"},"year":{"displayName":"rok","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"budúci rok","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} rok","relativeTimePattern-count-few":"o {0} roky","relativeTimePattern-count-many":"o {0} roka","relativeTimePattern-count-other":"o {0} rokov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} rokom","relativeTimePattern-count-few":"pred {0} rokmi","relativeTimePattern-count-many":"pred {0} rokom","relativeTimePattern-count-other":"pred {0} rokmi"}},"year-short":{"displayName":"r.","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"budúci rok","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} r.","relativeTimePattern-count-few":"o {0} r.","relativeTimePattern-count-many":"o {0} r.","relativeTimePattern-count-other":"o {0} r."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} r.","relativeTimePattern-count-few":"pred {0} r.","relativeTimePattern-count-many":"pred {0} r.","relativeTimePattern-count-other":"pred {0} r."}},"year-narrow":{"displayName":"r.","relative-type--1":"minulý rok","relative-type-0":"tento rok","relative-type-1":"budúci rok","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} r.","relativeTimePattern-count-few":"o {0} r.","relativeTimePattern-count-many":"o {0} r.","relativeTimePattern-count-other":"o {0} r."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} r.","relativeTimePattern-count-few":"pred {0} r.","relativeTimePattern-count-many":"pred {0} r.","relativeTimePattern-count-other":"pred {0} r."}},"quarter":{"displayName":"štvrťrok","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} štvrťrok","relativeTimePattern-count-few":"o {0} štvrťroky","relativeTimePattern-count-many":"o {0} štvrťroka","relativeTimePattern-count-other":"o {0} štvrťrokov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} štvrťrokom","relativeTimePattern-count-few":"pred {0} štvrťrokmi","relativeTimePattern-count-many":"pred {0} štvrťrokom","relativeTimePattern-count-other":"pred {0} štvrťrokmi"}},"quarter-short":{"displayName":"Q","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} štvrťr.","relativeTimePattern-count-few":"o {0} štvrťr.","relativeTimePattern-count-many":"o {0} štvrťr.","relativeTimePattern-count-other":"o {0} štvrťr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} štvrťr.","relativeTimePattern-count-few":"pred {0} štvrťr.","relativeTimePattern-count-many":"pred {0} štvrťr.","relativeTimePattern-count-other":"pred {0} štvrťr."}},"quarter-narrow":{"displayName":"Q","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} štvrťr.","relativeTimePattern-count-few":"o {0} štvrťr.","relativeTimePattern-count-many":"o {0} štvrťr.","relativeTimePattern-count-other":"o {0} štvrťr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} štvrťr.","relativeTimePattern-count-few":"pred {0} štvrťr.","relativeTimePattern-count-many":"pred {0} štvrťr.","relativeTimePattern-count-other":"pred {0} štvrťr."}},"month":{"displayName":"mesiac","relative-type--1":"minulý mesiac","relative-type-0":"tento mesiac","relative-type-1":"budúci mesiac","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} mesiac","relativeTimePattern-count-few":"o {0} mesiace","relativeTimePattern-count-many":"o {0} mesiaca","relativeTimePattern-count-other":"o {0} mesiacov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mesiacom","relativeTimePattern-count-few":"pred {0} mesiacmi","relativeTimePattern-count-many":"pred {0} mesiacom","relativeTimePattern-count-other":"pred {0} mesiacmi"}},"month-short":{"displayName":"mes.","relative-type--1":"minulý mesiac","relative-type-0":"tento mesiac","relative-type-1":"budúci mesiac","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} mes.","relativeTimePattern-count-few":"o {0} mes.","relativeTimePattern-count-many":"o {0} mes.","relativeTimePattern-count-other":"o {0} mes."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mes.","relativeTimePattern-count-few":"pred {0} mes.","relativeTimePattern-count-many":"pred {0} mes.","relativeTimePattern-count-other":"pred {0} mes."}},"month-narrow":{"displayName":"mes.","relative-type--1":"minulý mesiac","relative-type-0":"tento mesiac","relative-type-1":"budúci mesiac","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} mes.","relativeTimePattern-count-few":"o {0} mes.","relativeTimePattern-count-many":"o {0} mes.","relativeTimePattern-count-other":"o {0} mes."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mes.","relativeTimePattern-count-few":"pred {0} mes.","relativeTimePattern-count-many":"pred {0} mes.","relativeTimePattern-count-other":"pred {0} mes."}},"week":{"displayName":"týždeň","relative-type--1":"minulý týždeň","relative-type-0":"tento týždeň","relative-type-1":"budúci týždeň","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} týždeň","relativeTimePattern-count-few":"o {0} týždne","relativeTimePattern-count-many":"o {0} týždňa","relativeTimePattern-count-other":"o {0} týždňov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} týždňom","relativeTimePattern-count-few":"pred {0} týždňami","relativeTimePattern-count-many":"pred {0} týždňom","relativeTimePattern-count-other":"pred {0} týždňami"}},"week-short":{"displayName":"týž.","relative-type--1":"minulý týždeň","relative-type-0":"tento týždeň","relative-type-1":"budúci týždeň","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} týž.","relativeTimePattern-count-few":"o {0} týž.","relativeTimePattern-count-many":"o {0} týž.","relativeTimePattern-count-other":"o {0} týž."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} týž.","relativeTimePattern-count-few":"pred {0} týž.","relativeTimePattern-count-many":"pred {0} týž.","relativeTimePattern-count-other":"pred {0} týž."}},"week-narrow":{"displayName":"týž.","relative-type--1":"minulý týždeň","relative-type-0":"tento týždeň","relative-type-1":"budúci týždeň","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} týž.","relativeTimePattern-count-few":"o {0} týž.","relativeTimePattern-count-many":"o {0} týž.","relativeTimePattern-count-other":"o {0} týž."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} týž.","relativeTimePattern-count-few":"pred {0} týž.","relativeTimePattern-count-many":"pred {0} týž.","relativeTimePattern-count-other":"pred {0} týž."}},"day":{"displayName":"deň","relative-type--1":"včera","relative-type--2":"predvčerom","relative-type-0":"dnes","relative-type-1":"zajtra","relative-type-2":"pozajtra","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} deň","relativeTimePattern-count-few":"o {0} dni","relativeTimePattern-count-many":"o {0} dňa","relativeTimePattern-count-other":"o {0} dní"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} dňom","relativeTimePattern-count-few":"pred {0} dňami","relativeTimePattern-count-many":"pred {0} dňom","relativeTimePattern-count-other":"pred {0} dňami"}},"day-short":{"displayName":"d.","relative-type--1":"včera","relative-type--2":"predvčerom","relative-type-0":"dnes","relative-type-1":"zajtra","relative-type-2":"pozajtra","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} d.","relativeTimePattern-count-few":"o {0} d.","relativeTimePattern-count-many":"o {0} d.","relativeTimePattern-count-other":"o {0} d."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} d.","relativeTimePattern-count-few":"pred {0} d.","relativeTimePattern-count-many":"pred {0} d.","relativeTimePattern-count-other":"pred {0} d."}},"day-narrow":{"displayName":"d.","relative-type--1":"včera","relative-type--2":"predvčerom","relative-type-0":"dnes","relative-type-1":"zajtra","relative-type-2":"pozajtra","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} d","relativeTimePattern-count-few":"o {0} d","relativeTimePattern-count-many":"o {0} d","relativeTimePattern-count-other":"o {0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} d","relativeTimePattern-count-few":"pred {0} d","relativeTimePattern-count-many":"pred {0} d","relativeTimePattern-count-other":"pred {0} d"}},"weekday":{"displayName":"deň v týždni"},"sun":{"relative-type--1":"minulú nedeľu","relative-type-0":"túto nedeľu","relative-type-1":"budúcu nedeľu"},"sun-short":{"relative-type--1":"minulú ned.","relative-type-0":"túto ned.","relative-type-1":"budúcu ned."},"sun-narrow":{"relative-type--1":"minulú ne.","relative-type-0":"túto ne.","relative-type-1":"budúcu ne."},"mon":{"relative-type--1":"minulý pondelok","relative-type-0":"tento pondelok","relative-type-1":"budúci pondelok"},"mon-short":{"relative-type--1":"minulý pond.","relative-type-0":"tento pond.","relative-type-1":"budúci pond."},"mon-narrow":{"relative-type--1":"minulý po.","relative-type-0":"tento po.","relative-type-1":"budúci po."},"tue":{"relative-type--1":"minulý utorok","relative-type-0":"tento utorok","relative-type-1":"budúci utorok"},"tue-short":{"relative-type--1":"minulý ut.","relative-type-0":"tento ut.","relative-type-1":"budúci ut."},"tue-narrow":{"relative-type--1":"minulý ut.","relative-type-0":"tento ut.","relative-type-1":"budúci ut."},"wed":{"relative-type--1":"minulú stredu","relative-type-0":"túto stredu","relative-type-1":"budúcu stredu"},"wed-short":{"relative-type--1":"minulú str.","relative-type-0":"túto str.","relative-type-1":"budúcu str."},"wed-narrow":{"relative-type--1":"minulú st.","relative-type-0":"túto st.","relative-type-1":"budúcu st."},"thu":{"relative-type--1":"minulý štvrtok","relative-type-0":"tento štvrtok","relative-type-1":"budúci štvrtok"},"thu-short":{"relative-type--1":"minulý št.","relative-type-0":"tento št.","relative-type-1":"budúci št."},"thu-narrow":{"relative-type--1":"minulý št.","relative-type-0":"tento št.","relative-type-1":"budúci št."},"fri":{"relative-type--1":"minulý piatok","relative-type-0":"tento piatok","relative-type-1":"budúci piatok"},"fri-short":{"relative-type--1":"minulý pi.","relative-type-0":"tento pi.","relative-type-1":"budúci pi."},"fri-narrow":{"relative-type--1":"minulý pi.","relative-type-0":"tento pi.","relative-type-1":"budúci pi."},"sat":{"relative-type--1":"minulú sobotu","relative-type-0":"túto sobotu","relative-type-1":"budúcu sobotu"},"sat-short":{"relative-type--1":"minulú so.","relative-type-0":"túto so.","relative-type-1":"budúcu so."},"sat-narrow":{"relative-type--1":"minulú so.","relative-type-0":"túto so.","relative-type-1":"budúcu so."},"dayperiod":{"displayName":"časť dňa"},"hour":{"displayName":"hodina","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} hodinu","relativeTimePattern-count-few":"o {0} hodiny","relativeTimePattern-count-many":"o {0} hodiny","relativeTimePattern-count-other":"o {0} hodín"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} hodinou","relativeTimePattern-count-few":"pred {0} hodinami","relativeTimePattern-count-many":"pred {0} hodinou","relativeTimePattern-count-other":"pred {0} hodinami"}},"hour-short":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} h","relativeTimePattern-count-few":"o {0} h","relativeTimePattern-count-many":"o {0} h","relativeTimePattern-count-other":"o {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} h","relativeTimePattern-count-few":"pred {0} h","relativeTimePattern-count-many":"pred {0} h","relativeTimePattern-count-other":"pred {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} h","relativeTimePattern-count-few":"o {0} h","relativeTimePattern-count-many":"o {0} h","relativeTimePattern-count-other":"o {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} h","relativeTimePattern-count-few":"pred {0} h","relativeTimePattern-count-many":"pred {0} h","relativeTimePattern-count-other":"pred {0} h"}},"minute":{"displayName":"minúta","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} minútu","relativeTimePattern-count-few":"o {0} minúty","relativeTimePattern-count-many":"o {0} minúty","relativeTimePattern-count-other":"o {0} minút"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} minútou","relativeTimePattern-count-few":"pred {0} minútami","relativeTimePattern-count-many":"pred {0} minútou","relativeTimePattern-count-other":"pred {0} minútami"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} min","relativeTimePattern-count-few":"o {0} min","relativeTimePattern-count-many":"o {0} min","relativeTimePattern-count-other":"o {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} min","relativeTimePattern-count-few":"pred {0} min","relativeTimePattern-count-many":"pred {0} min","relativeTimePattern-count-other":"pred {0} min"}},"minute-narrow":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} min","relativeTimePattern-count-few":"o {0} min","relativeTimePattern-count-many":"o {0} min","relativeTimePattern-count-other":"o {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} min","relativeTimePattern-count-few":"pred {0} min","relativeTimePattern-count-many":"pred {0} min","relativeTimePattern-count-other":"pred {0} min"}},"second":{"displayName":"sekunda","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} sekundu","relativeTimePattern-count-few":"o {0} sekundy","relativeTimePattern-count-many":"o {0} sekundy","relativeTimePattern-count-other":"o {0} sekúnd"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} sekundou","relativeTimePattern-count-few":"pred {0} sekundami","relativeTimePattern-count-many":"Pred {0} sekundami","relativeTimePattern-count-other":"pred {0} sekundami"}},"second-short":{"displayName":"s","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} s","relativeTimePattern-count-few":"o {0} s","relativeTimePattern-count-many":"o {0} s","relativeTimePattern-count-other":"o {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} s","relativeTimePattern-count-few":"pred {0} s","relativeTimePattern-count-many":"pred {0} s","relativeTimePattern-count-other":"pred {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"teraz","relativeTime-type-future":{"relativeTimePattern-count-one":"o {0} s","relativeTimePattern-count-few":"o {0} s","relativeTimePattern-count-many":"o {0} s","relativeTimePattern-count-other":"o {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} s","relativeTimePattern-count-few":"pred {0} s","relativeTimePattern-count-many":"pred {0} s","relativeTimePattern-count-other":"pred {0} s"}},"zone":{"displayName":"časové pásmo"}} \ No newline at end of file diff --git a/Punic/data/sk/languages.json b/Punic/data/sk/languages.json new file mode 100644 index 0000000..97771e7 --- /dev/null +++ b/Punic/data/sk/languages.json @@ -0,0 +1 @@ +{"aa":"afarčina","ab":"abcházčina","ace":"acehčina","ach":"ačoli","ada":"adangme","ady":"adygčina","ae":"avestčina","aeb":"aeb","af":"afrikánčina","afh":"afrihili","agq":"aghem","ain":"ainčina","ak":"akančina","akk":"akkadčina","akz":"akz","ale":"aleutčina","aln":"aln","alt":"južná altajčina","am":"amharčina","an":"aragónčina","ang":"stará angličtina","anp":"angika","ar":"arabčina","ar-001":"arabčina (moderná štandardná)","arc":"aramejčina","arn":"araukánčina","aro":"aro","arp":"arapaho","arq":"arq","arw":"arawačtina","ary":"ary","arz":"arz","as":"ásamčina","asa":"asu","ase":"ase","ast":"astúrčina","av":"avarčina","avk":"avk","awa":"avadhčina","ay":"aymarčina","az":"azerbajdžančina","az-alt-short":"azerbajdžančina","azb":"azb","ba":"baškirčina","bal":"balúčtina","ban":"balijčina","bar":"bar","bas":"basa","bax":"bamun","bbc":"bbc","bbj":"ghomala","be":"bieloruština","bej":"bedža","bem":"bemba","bew":"bew","bez":"bena","bfd":"bafut","bfq":"bfq","bg":"bulharčina","bho":"bhódžpurčina","bi":"bislama","bik":"bikol","bin":"bini","bjn":"bjn","bkm":"kom","bla":"siksika","bm":"bambarčina","bn":"bengálčina","bo":"tibetčina","bpy":"bpy","bqi":"bqi","br":"bretónčina","bra":"bradžčina","brh":"brh","brx":"bodo","bs":"bosniačtina","bss":"akoose","bua":"buriatčina","bug":"bugiština","bum":"bulu","byn":"blin","byv":"medumba","ca":"katalánčina","cad":"kaddo","car":"karibský","cay":"cayuga","cch":"atsam","ce":"čečenčina","ceb":"cebuánčina","cgg":"kiga","ch":"čamorčina","chb":"čibča","chg":"čagatajčina","chk":"truk","chm":"marijčina","chn":"činucký žargón","cho":"čoktavčina","chp":"čipevajčina","chr":"čerokí","chy":"čejenčina","ckb":"kurdčina (sorání)","co":"korzičtina","cop":"koptčina","cps":"cps","cr":"krí","crh":"krymská turečtina","cs":"čeština","csb":"kašubčina","cu":"cirkevná slovančina","cv":"čuvaština","cy":"waleština","da":"dánčina","dak":"dakotčina","dar":"darginčina","dav":"taita","de":"nemčina","de-AT":"nemčina (rakúska)","de-CH":"nemčina (švajčiarska spisovná)","del":"delawarčina","den":"slovančina","dgr":"dogribčina","din":"dinka","dje":"zarma","doi":"dógrí","dsb":"dolnolužická srbčina","dtp":"dtp","dua":"duala","dum":"stredná holandčina","dv":"divehi","dyo":"jola-fonyi","dyu":"ďula","dz":"dzongkä","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"egl","egy":"staroegyptský","eka":"ekadžuk","el":"gréčtina","elx":"elamčina","en":"angličtina","en-AU":"angličtina (austrálska)","en-CA":"angličtina (kanadská)","en-GB":"angličtina (britská)","en-GB-alt-short":"angličtina (britská)","en-US":"angličtina (americká)","en-US-alt-short":"angličtina (americká)","enm":"stredná angličtina","eo":"esperanto","es":"španielčina","es-419":"španielčina (latinskoamerická)","es-ES":"španielčina (európska)","es-MX":"španielčina (mexická)","esu":"esu","et":"estónčina","eu":"baskičtina","ewo":"ewondo","ext":"ext","fa":"perzština","fan":"fangčina","fat":"fanti","ff":"fulbčina","fi":"fínčina","fil":"filipínčina","fit":"fit","fj":"fidžijčina","fo":"faerčina","fon":"fončina","fr":"francúzština","fr-CA":"francúzština (kanadská)","fr-CH":"francúzština (švajčiarska)","frc":"frc","frm":"stredná francúzština","fro":"stará francúzština","frp":"frp","frr":"severná frízština","frs":"východná frízština","fur":"friulčina","fy":"západná frízština","ga":"írčina","gaa":"ga","gag":"gagauzština","gan":"gan","gay":"gayo","gba":"gbaja","gbz":"gbz","gd":"škótska gaelčina","gez":"etiópčina","gil":"kiribatčina","gl":"galícijčina","glk":"glk","gmh":"stredná horná nemčina","gn":"guaraní","goh":"stará horná nemčina","gom":"gom","gon":"góndčina","gor":"gorontalo","got":"gótčina","grb":"grebo","grc":"starogréčtina","gsw":"nemčina (švajčiarska)","gu":"gudžarátčina","guc":"guc","gur":"gur","guz":"gusii","gv":"mančina","gwi":"gwichʼin","ha":"hauština","hai":"haida","hak":"hak","haw":"havajčina","he":"hebrejčina","hi":"hindčina","hif":"hif","hil":"hiligajnončina","hit":"chetitčina","hmn":"hmong","ho":"hiri motu","hr":"chorvátčina","hsb":"hornolužická srbčina","hsn":"hsn","ht":"haitčina","hu":"maďarčina","hup":"hupčina","hy":"arménčina","hz":"herero","ia":"interlingua","iba":"ibančina","ibb":"ibibio","id":"indonézština","ie":"interlingue","ig":"igboština","ii":"s’čchuanská ioština","ik":"inupiaq","ilo":"ilokánčina","inh":"inguština","io":"ido","is":"islandčina","it":"taliančina","iu":"inuktitut","izh":"izh","ja":"japončina","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"mašame","jpr":"židovská perzština","jrb":"židovská arabčina","jut":"jut","jv":"jávčina","ka":"gruzínčina","kaa":"karakalpačtina","kab":"kabylčina","kac":"kačjinčina","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardčina","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kapverdčina","ken":"ken","kfo":"koro","kg":"kongčina","kgp":"kgp","kha":"khasijčina","kho":"chotančina","khq":"západná songhajčina","khw":"khw","ki":"kikujčina","kiu":"kiu","kj":"kuaňama","kk":"kazaština","kkj":"kako","kl":"grónčina","kln":"kalendžin","km":"khmérčina","kmb":"kimbundu","kn":"kannadčina","ko":"kórejčina","koi":"komi-permiačtina","kok":"konkánčina","kos":"kusaie","kpe":"kpelle","kr":"kanurijčina","krc":"karačajevsko-balkarský jazyk","kri":"kri","krj":"krj","krl":"karelčina","kru":"kurukhčina","ks":"kašmírčina","ksb":"šambala","ksf":"bafia","ksh":"kolínčina","ku":"kurdčina","kum":"kumyčtina","kut":"kutenajčina","kv":"komijčina","kw":"kornčina","ky":"kirgizština","la":"latinčina","lad":"židovská španielčina","lag":"langi","lah":"lahandčina","lam":"lamba","lb":"luxemburčina","lez":"lezginčina","lfn":"lfn","lg":"gandčina","li":"limburčina","lij":"lij","liv":"liv","lkt":"lakotčina","lmo":"lmo","ln":"lingalčina","lo":"laoština","lol":"mongo","loz":"lozi","lt":"litovčina","ltg":"ltg","lu":"luba-katanga","lua":"luba-luluánčina","lui":"luiseňo","lun":"lunda","luo":"luo","lus":"mizorámčina","luy":"luhja","lv":"lotyština","lzh":"lzh","lzz":"lzz","mad":"madurčina","maf":"mafa","mag":"magadhčina","mai":"maithilčina","mak":"makasarčina","man":"mandingo","mas":"masajčina","mde":"maba","mdf":"mokšiančina","mdr":"mandarčina","men":"mendi","mer":"meru","mfe":"maurícijská kreolčina","mg":"malgaština","mga":"stredná írčina","mgh":"makua-meetto","mgo":"meta’","mh":"kajin-majol","mi":"maorijčina","mic":"mikmakčina","min":"minangkabaučina","mk":"macedónčina","ml":"malajálamčina","mn":"mongolčina","mnc":"mandžuština","mni":"manípurčina","moh":"mohawkčina","mos":"mossi","mr":"maráthčina","mrj":"mrj","ms":"malajčina","mt":"maltčina","mua":"mundang","mul":"viaceré jazyky","mus":"kríkčina","mwl":"mirandčina","mwr":"marawari","mwv":"mwv","my":"barmčina","mye":"myene","myv":"erzjančina","mzn":"mzn","na":"nauru","nan":"nan","nap":"neapolčina","naq":"nama","nb":"nórsky bokmål","nd":"severné ndebele","nds":"dolná nemčina","ne":"nepálčina","new":"nevárčina","ng":"ndonga","nia":"niasánčina","niu":"niueština","njo":"njo","nl":"holandčina","nl-BE":"flámčina","nmg":"kwasio","nn":"nórsky nynorsk","nnh":"ngiemboon","no":"nórčina","nog":"nogajčina","non":"stará nórčina","nov":"nov","nqo":"n’ko","nr":"južná ndebelčina","nso":"severná sothčina","nus":"nuer","nv":"navajo","nwc":"klasická nevárčina","ny":"čewa","nym":"ňamwezi","nyn":"ňankole","nyo":"ňoro","nzi":"nzima","oc":"okcitánčina","oj":"odžibva","om":"oromčina","or":"uríjčina","os":"osetčina","osa":"osagčina","ota":"osmanská turečtina","pa":"pandžábčina","pag":"pangasinančina","pal":"pahlaví","pam":"pampanga","pap":"papiamento","pau":"palaučina","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"stará perzština","pfl":"pfl","phn":"feničtina","pi":"pálí","pl":"poľština","pms":"pms","pnt":"pnt","pon":"pohnpeičina","prg":"prg","pro":"stará okcitánčina","ps":"paštčina","pt":"portugalčina","pt-BR":"portugalčina (brazílska)","pt-PT":"portugalčina (európska)","qu":"kečuánčina","quc":"kʼicheʼ","qug":"qug","raj":"radžastančina","rap":"rapanujčina","rar":"rarotongan","rgn":"rgn","rif":"rif","rm":"rétorománčina","rn":"kirundčina","ro":"rumunčina","ro-MD":"moldavčina","rof":"rombo","rom":"rómčina","root":"koreň","rtm":"rtm","ru":"ruština","rue":"rue","rug":"rug","rup":"arumunčina","rw":"kiňarwanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"jakutčina","sam":"samaritánska aramejčina","saq":"samburu","sas":"sasačtina","sat":"santalčina","saz":"saz","sba":"ngambay","sbp":"sangu","sc":"sardínčina","scn":"sicílčina","sco":"škótčina","sd":"sindhčina","sdc":"sdc","se":"severné sami","see":"seneca","seh":"sena","sei":"sei","sel":"selkupčina","ses":"koyraboro senni","sg":"sango","sga":"stará írčina","sgs":"sgs","sh":"srbochorvátčina","shi":"tachelhit","shn":"šančina","shu":"čadská arabčina","si":"sinhalčina","sid":"sidamo","sk":"slovenčina","sl":"slovinčina","sli":"sli","sly":"sly","sm":"samojčina","sma":"južné sami","smj":"sami (lule)","smn":"sami (inari)","sms":"sami (skolt)","sn":"šončina","snk":"soninke","so":"somálčina","sog":"sogdijčina","sq":"albánčina","sr":"srbčina","srn":"sranan","srr":"serer","ss":"svazijčina","ssy":"saho","st":"južná sothčina","stq":"stq","su":"sundčina","suk":"sukuma","sus":"susu","sux":"sumerčina","sv":"švédčina","sw":"svahilčina","swb":"komorčina","swc":"svahilčina (konžská)","syc":"klasická sýrčina","syr":"sýrčina","szl":"szl","ta":"tamilčina","tcy":"tcy","te":"telugčina","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadžičtina","th":"thajčina","ti":"tigriňa","tig":"tigrejčina","tiv":"tiv","tk":"turkménčina","tkl":"tokelaučina","tkr":"tkr","tl":"tagalčina","tlh":"klingónčina","tli":"tlingitčina","tly":"tly","tmh":"tamašek","tn":"tswančina","to":"tongčina","tog":"ňasa tonga","tpi":"tok pisin","tr":"turečtina","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsd","tsi":"tsimshijské jazyky","tt":"tatárčina","ttt":"ttt","tum":"tumbuka","tvl":"tuvalčina","tw":"twi","twq":"tasawaq","ty":"tahitčina","tyv":"tuviančina","tzm":"tamašek (stredomarocký)","udm":"udmurtčina","ug":"ujgurčina","uga":"ugaritčina","uk":"ukrajinčina","umb":"umbundu","und":"neznámy jazyk","ur":"urdčina","uz":"uzbečtina","vai":"vai","ve":"vendčina","vec":"vec","vep":"vep","vi":"vietnamčina","vls":"vls","vmf":"vmf","vo":"volapük","vot":"vodčina","vro":"vro","vun":"vunjo","wa":"valónčina","wae":"walserčina","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wuu","xal":"kalmyčtina","xh":"xhosa","xmf":"xmf","xog":"soga","yao":"jao","yap":"japčina","yav":"jangben","ybb":"yemba","yi":"jidiš","yo":"jorubčina","yrl":"yrl","yue":"kantončina","za":"čuangčina","zap":"zapotéčtina","zbl":"systém Bliss","zea":"zea","zen":"zenaga","zgh":"tamašek (štandardný marocký)","zh":"čínština","zh-Hans":"čínština (zjednodušená)","zh-Hant":"čínština (tradičná)","zu":"zuluština","zun":"zuniština","zxx":"bez jazykového obsahu","zza":"zázá"} \ No newline at end of file diff --git a/Punic/data/sk/listPatterns.json b/Punic/data/sk/listPatterns.json new file mode 100644 index 0000000..ccea57f --- /dev/null +++ b/Punic/data/sk/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s a %2$s","2":"%1$s a %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/sk/localeDisplayNames.json b/Punic/data/sk/localeDisplayNames.json new file mode 100644 index 0000000..cdeb9e8 --- /dev/null +++ b/Punic/data/sk/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalendár","colAlternate":"Ignorovať radenie symbolov","colBackwards":"Obrátené radenie akcentov","colCaseFirst":"Radenie veľkých a malých písmen","colCaseLevel":"Rozlišovanie veľkých a malých písmen pri radení","colHiraganaQuaternary":"Radenie podľa slabičných písiem (kana)","colNormalization":"Normalizované radenie","colNumeric":"Číselné radenie","colStrength":"Sila radenia","collation":"zoradenie","currency":"mena","numbers":"čísla","timezone":"Časové pásmo","va":"Variant miestneho nastavenia","variableTop":"Radiť ako symboly","x":"Súkromné použitie"},"types":{"numbers":{"vaii":"Vaiské číslice"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"čínsky republikánsky kalendár"},"colStrength":{"tertiary":"Radiť akcenty/veľké a malé písmená/šírku"},"colCaseFirst":{"upper":"Najprv radiť veľké písmená"},"colBackwards":{"yes":"Radiť akcenty opačne"},"colCaseLevel":{"yes":"Pri radení rozlišovať veľké a malé písmená"},"colHiraganaQuaternary":{"yes":"Radiť slabičné písma (kana) inak"},"colNormalization":{"yes":"Radenie podľa normalizovaného kódovania Unicode"},"colNumeric":{"yes":"Numerické radenie číslic"},"colAlternate":{"shifted":"Pri radení ignorovať symboly"}},"codePatterns":{"language":"Jazyk: %1$s","script":"Písmo: %1$s","territory":"Región: %1$s"}} \ No newline at end of file diff --git a/Punic/data/sk/numbers.json b/Punic/data/sk/numbers.json new file mode 100644 index 0000000..af8a5c6 --- /dev/null +++ b/Punic/data/sk/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/sk/territories.json b/Punic/data/sk/territories.json new file mode 100644 index 0000000..1a2dc66 --- /dev/null +++ b/Punic/data/sk/territories.json @@ -0,0 +1 @@ +{"001":"svet","002":"Afrika","003":"Severná Amerika","005":"Južná Amerika","009":"Oceánia","011":"západná Afrika","013":"Stredná Amerika","014":"východná Afrika","015":"severná Afrika","017":"stredná Afrika","018":"južné územia Afriky","019":"Amerika","021":"severné územia Ameriky","029":"Karibik","030":"východná Ázia","034":"južná Ázia","035":"juhovýchodná Ázia","039":"južná Európa","053":"Australázia","054":"Melanézia","057":"oblasť Mikronézie","061":"Polynézia","142":"Ázia","143":"stredná Ázia","145":"západná Ázia","150":"Európa","151":"východná Európa","154":"severná Európa","155":"západná Európa","419":"Latinská Amerika","AC":"Ascensión","AD":"Andorra","AE":"Spojené arabské emiráty","AF":"Afganistan","AG":"Antigua a Barbuda","AI":"Anguilla","AL":"Albánsko","AM":"Arménsko","AN":"Holandské Antily","AO":"Angola","AQ":"Antarktída","AR":"Argentína","AS":"Americká Samoa","AT":"Rakúsko","AU":"Austrália","AW":"Aruba","AX":"Ålandy","AZ":"Azerbajdžan","BA":"Bosna a Hercegovina","BB":"Barbados","BD":"Bangladéš","BE":"Belgicko","BF":"Burkina Faso","BG":"Bulharsko","BH":"Bahrajn","BI":"Burundi","BJ":"Benin","BL":"Svätý Bartolomej","BM":"Bermudy","BN":"Brunej","BO":"Bolívia","BQ":"Karibské Holandsko","BR":"Brazília","BS":"Bahamy","BT":"Bhután","BV":"Bouvetov ostrov","BW":"Botswana","BY":"Bielorusko","BZ":"Belize","CA":"Kanada","CC":"Kokosové ostrovy","CD":"Kongo - Kinshasa","CD-alt-variant":"Konžská demokratická republika","CF":"Stredoafrická republika","CG":"Kongo - Brazzaville","CG-alt-variant":"Konžská republika","CH":"Švajčiarsko","CI":"Pobrežie Slonoviny","CI-alt-variant":"CI","CK":"Cookove ostrovy","CL":"Čile","CM":"Kamerun","CN":"Čína","CO":"Kolumbia","CP":"Clipperton","CR":"Kostarika","CU":"Kuba","CV":"Kapverdy","CW":"Curaçao","CX":"Vianočný ostrov","CY":"Cyprus","CZ":"Česká republika","DE":"Nemecko","DG":"Diego García","DJ":"Džibutsko","DK":"Dánsko","DM":"Dominika","DO":"Dominikánska republika","DZ":"Alžírsko","EA":"Ceuta a Melilla","EC":"Ekvádor","EE":"Estónsko","EG":"Egypt","EH":"Západná Sahara","ER":"Eritrea","ES":"Španielsko","ET":"Etiópia","EU":"Európska únia","FI":"Fínsko","FJ":"Fidži","FK":"Falklandy","FK-alt-variant":"Malvíny","FM":"Mikronézia","FO":"Faerské ostrovy","FR":"Francúzsko","GA":"Gabon","GB":"Spojené kráľovstvo","GB-alt-short":"UK","GD":"Grenada","GE":"Gruzínsko","GF":"Francúzska Guayana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltár","GL":"Grónsko","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Rovníková Guinea","GR":"Grécko","GS":"Južná Georgia a Južné Sandwichove ostrovy","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guayana","HK":"Hongkong – OAO Číny","HK-alt-short":"Hongkong","HM":"Heardov ostrov a McDonaldove ostrovy","HN":"Honduras","HR":"Chorvátsko","HT":"Haiti","HU":"Maďarsko","IC":"Kanárske ostrovy","ID":"Indonézia","IE":"Írsko","IL":"Izrael","IM":"Ostrov Man","IN":"India","IO":"Britské indickooceánske územie","IQ":"Irak","IR":"Irán","IS":"Island","IT":"Taliansko","JE":"Jersey","JM":"Jamajka","JO":"Jordánsko","JP":"Japonsko","KE":"Keňa","KG":"Kirgizsko","KH":"Kambodža","KI":"Kiribati","KM":"Komory","KN":"Svätý Krištof a Nevis","KP":"Severná Kórea","KR":"Južná Kórea","KW":"Kuvajt","KY":"Kajmanie ostrovy","KZ":"Kazachstan","LA":"Laos","LB":"Libanon","LC":"Svätá Lucia","LI":"Lichtenštajnsko","LK":"Srí Lanka","LR":"Libéria","LS":"Lesotho","LT":"Litva","LU":"Luxembursko","LV":"Lotyšsko","LY":"Líbya","MA":"Maroko","MC":"Monako","MD":"Moldavsko","ME":"Čierna Hora","MF":"Svätý Martin","MG":"Madagaskar","MH":"Marshallove ostrovy","MK":"Macedónsko","MK-alt-variant":"Macedónsko (BJRM)","ML":"Mali","MM":"Mjanmarsko","MN":"Mongolsko","MO":"Macao – OAO Číny","MO-alt-short":"Macao","MP":"Severné Mariány","MQ":"Martinik","MR":"Mauritánia","MS":"Montserrat","MT":"Malta","MU":"Maurícius","MV":"Maldivy","MW":"Malawi","MX":"Mexiko","MY":"Malajzia","MZ":"Mozambik","NA":"Namíbia","NC":"Nová Kaledónia","NE":"Niger","NF":"Norfolk","NG":"Nigéria","NI":"Nikaragua","NL":"Holandsko","NO":"Nórsko","NP":"Nepál","NR":"Nauru","NU":"Niue","NZ":"Nový Zéland","OM":"Omán","PA":"Panama","PE":"Peru","PF":"Francúzska Polynézia","PG":"Papua Nová Guinea","PH":"Filipíny","PK":"Pakistan","PL":"Poľsko","PM":"Saint Pierre a Miquelon","PN":"Pitcairnove ostrovy","PR":"Portoriko","PS":"Palestínske územia","PS-alt-short":"Palestína","PT":"Portugalsko","PW":"Palau","PY":"Paraguaj","QA":"Katar","QO":"ostatné Tichomorie","RE":"Réunion","RO":"Rumunsko","RS":"Srbsko","RU":"Rusko","RW":"Rwanda","SA":"Saudská Arábia","SB":"Šalamúnove ostrovy","SC":"Seychely","SD":"Sudán","SE":"Švédsko","SG":"Singapur","SH":"Svätá Helena","SI":"Slovinsko","SJ":"Svalbard a Jan Mayen","SK":"Slovensko","SL":"Sierra Leone","SM":"San Maríno","SN":"Senegal","SO":"Somálsko","SR":"Surinam","SS":"Južný Sudán","ST":"Svätý Tomáš a Princov ostrov","SV":"Salvádor","SX":"Sint Maarten","SY":"Sýria","SZ":"Svazijsko","TA":"Tristan da Cunha","TC":"Turks a Caicos","TD":"Čad","TF":"Francúzske južné a antarktické územia","TG":"Togo","TH":"Thajsko","TJ":"Tadžikistan","TK":"Tokelau","TL":"Východný Timor","TL-alt-variant":"TL","TM":"Turkménsko","TN":"Tunisko","TO":"Tonga","TR":"Turecko","TT":"Trinidad a Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzánia","UA":"Ukrajina","UG":"Uganda","UM":"Menšie odľahlé ostrovy USA","US":"Spojené štáty","US-alt-short":"USA","UY":"Uruguaj","UZ":"Uzbekistan","VA":"Vatikán","VC":"Svätý Vincent a Grenadíny","VE":"Venezuela","VG":"Britské Panenské ostrovy","VI":"Americké Panenské ostrovy","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis a Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Južná Afrika","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"neznámy región"} \ No newline at end of file diff --git a/Punic/data/sk/timeZoneNames.json b/Punic/data/sk/timeZoneNames.json new file mode 100644 index 0000000..5bd1bb5 --- /dev/null +++ b/Punic/data/sk/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Časové pásmo %1$s","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahia Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"Belize":{"exemplarCity":"Belize"},"Blanc-Sablon":{"exemplarCity":"Blanc-Sablon"},"Boa_Vista":{"exemplarCity":"Boa Vista"},"Bogota":{"exemplarCity":"Bogota"},"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":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Kostarika"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"Curacao":{"exemplarCity":"Curaçao"},"Danmarkshavn":{"exemplarCity":"Danmarkshavn"},"Dawson":{"exemplarCity":"Dawson"},"Dawson_Creek":{"exemplarCity":"Dawson Creek"},"Denver":{"exemplarCity":"Denver"},"Detroit":{"exemplarCity":"Detroit"},"Dominica":{"exemplarCity":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepé"},"El_Salvador":{"exemplarCity":"Salvádor"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamajka"},"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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinik"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexiko (mesto)"},"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, Severná Dakota"},"Center":{"exemplarCity":"Center, Severná Dakota"},"New_Salem":{"exemplarCity":"New Salem, Severná 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":"Portoriko"},"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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"Svätý Bartolomej"},"St_Johns":{"exemplarCity":"St. John’s"},"St_Kitts":{"exemplarCity":"St. Kitts"},"St_Lucia":{"exemplarCity":"Svätá Lucia"},"St_Thomas":{"exemplarCity":"Sv. Tomáš"},"St_Vincent":{"exemplarCity":"Sv. 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":"Azorské ostrovy"},"Bermuda":{"exemplarCity":"Bermudy"},"Canary":{"exemplarCity":"Kanárske ostrovy"},"Cape_Verde":{"exemplarCity":"Kapverdy"},"Faeroe":{"exemplarCity":"Faerské ostrovy"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavík"},"South_Georgia":{"exemplarCity":"Južná Georgia"},"St_Helena":{"exemplarCity":"Sv. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atény"},"Belgrade":{"exemplarCity":"Belehrad"},"Berlin":{"exemplarCity":"Berlín"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brusel"},"Bucharest":{"exemplarCity":"Bukurešť"},"Budapest":{"exemplarCity":"Budapešť"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Kišiňov"},"Copenhagen":{"exemplarCity":"Kodaň"},"Dublin":{"long":{"daylight":"Írsky štandardný čas"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltár"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Ostrov Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kyjev"},"Lisbon":{"exemplarCity":"Lisabon"},"Ljubljana":{"exemplarCity":"Ľubľana"},"London":{"long":{"daylight":"Britský letný čas"},"exemplarCity":"Londýn"},"Luxembourg":{"exemplarCity":"Luxembursko"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paríž"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praha"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rím"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Maríno"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofia"},"Stockholm":{"exemplarCity":"Štokholm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Užhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikán"},"Vienna":{"exemplarCity":"Viedeň"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varšava"},"Zagreb":{"exemplarCity":"Záhreb"},"Zaporozhye":{"exemplarCity":"Záporožie"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alžír"},"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":"Káhira"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Džibutsko"},"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":"Chartúm"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadišo"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"Svätý Tomáš"},"Tripoli":{"exemplarCity":"Tripolis"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Alma-Ata"},"Amman":{"exemplarCity":"Ammán"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Ašchabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrajn"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Bejrút"},"Bishkek":{"exemplarCity":"Biškek"},"Brunei":{"exemplarCity":"Brunej"},"Calcutta":{"exemplarCity":"Kalkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Čojbalsan"},"Chongqing":{"exemplarCity":"Čchung-čching"},"Colombo":{"exemplarCity":"Kolombo"},"Damascus":{"exemplarCity":"Damask"},"Dhaka":{"exemplarCity":"Dháka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubaj"},"Dushanbe":{"exemplarCity":"Dušanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Charbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzalem"},"Kabul":{"exemplarCity":"Kábul"},"Kamchatka":{"exemplarCity":"Kamčatka"},"Karachi":{"exemplarCity":"Karáči"},"Kashgar":{"exemplarCity":"Kašgar"},"Katmandu":{"exemplarCity":"Káthmandu"},"Khandyga":{"exemplarCity":"Chandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kučing"},"Kuwait":{"exemplarCity":"Kuvajt"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Maskat"},"Nicosia":{"exemplarCity":"Nikózia"},"Novokuznetsk":{"exemplarCity":"Novokuzneck"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uraľsk"},"Phnom_Penh":{"exemplarCity":"Phnom Pénh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pchjongjang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kyzylorda"},"Rangoon":{"exemplarCity":"Rangún"},"Riyadh":{"exemplarCity":"Rijád"},"Saigon":{"exemplarCity":"Hočiminovo Mesto"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Soul"},"Shanghai":{"exemplarCity":"Šanghaj"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Tchaj-pej"},"Tashkent":{"exemplarCity":"Taškent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teherán"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulanbátar"},"Urumqi":{"exemplarCity":"Urumči"},"Ust-Nera":{"exemplarCity":"Usť-Nera"},"Vientiane":{"exemplarCity":"Vientian"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Vianočný ostrov"},"Cocos":{"exemplarCity":"Kokosové ostrovy"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kergueleny"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldivy"},"Mauritius":{"exemplarCity":"Maurícius"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Veľkonočný ostrov"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidži"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galapágy"},"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":"Markézy"},"Midway":{"exemplarCity":"Midway"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"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":"Vostok"}},"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":"Neznáme mesto"}}},"metazone":{"Afghanistan":{"long":{"standard":"Afganský čas"}},"Africa_Central":{"long":{"standard":"Stredoafrický čas"}},"Africa_Eastern":{"long":{"standard":"Východoafrický čas"}},"Africa_Southern":{"long":{"standard":"Juhoafrický čas"}},"Africa_Western":{"long":{"generic":"Západoafrický čas","standard":"Západoafrický štandardný čas","daylight":"Západoafrický letný čas"}},"Alaska":{"long":{"generic":"Aljašský čas","standard":"Aljašský štandardný čas","daylight":"Aljašský letný čas"}},"Amazon":{"long":{"generic":"Amazonský čas","standard":"Amazonský štandardný čas","daylight":"Amazonský letný čas"}},"America_Central":{"long":{"generic":"Centrálny čas","standard":"Centrálny štandardný čas","daylight":"Centrálny letný čas"}},"America_Eastern":{"long":{"generic":"Východný čas","standard":"Východný štandardný čas","daylight":"Východný letný čas"}},"America_Mountain":{"long":{"generic":"Horský čas","standard":"Horský štandardný čas","daylight":"Horský letný čas"}},"America_Pacific":{"long":{"generic":"Tichomorský čas","standard":"Tichomorský štandardný čas","daylight":"Tichomorský letný čas"}},"Anadyr":{"long":{"generic":"Anadyrský čas","standard":"Anadyrský štandardný čas","daylight":"Anadyrský letný čas"}},"Apia":{"long":{"generic":"Apijský čas","standard":"Apijský štandardný čas","daylight":"Apijský letný čas"}},"Arabian":{"long":{"generic":"Arabský čas","standard":"Arabský štandardný čas","daylight":"Arabský letný čas"}},"Argentina":{"long":{"generic":"Argentínsky čas","standard":"Argentínsky štandardný čas","daylight":"Argentínsky letný čas"}},"Argentina_Western":{"long":{"generic":"Západoargentínsky čas","standard":"Západoargentínsky štandardný čas","daylight":"Západoargentínsky letný čas"}},"Armenia":{"long":{"generic":"Arménsky čas","standard":"Arménsky štandardný čas","daylight":"Arménsky letný čas"}},"Atlantic":{"long":{"generic":"Atlantický čas","standard":"Atlantický štandardný čas","daylight":"Atlantický letný čas"}},"Australia_Central":{"long":{"generic":"Stredoaustrálsky čas","standard":"Stredoaustrálsky štandardný čas","daylight":"Stredoaustrálsky letný čas"}},"Australia_CentralWestern":{"long":{"generic":"Stredozápadný austrálsky čas","standard":"Stredozápadný austrálsky štandardný čas","daylight":"Stredozápadný austrálsky letný čas"}},"Australia_Eastern":{"long":{"generic":"Východoaustrálsky čas","standard":"Východoaustrálsky štandardný čas","daylight":"Východoaustrálsky letný čas"}},"Australia_Western":{"long":{"generic":"Západoaustrálsky čas","standard":"Západoaustrálsky štandardný čas","daylight":"Západoaustrálsky letný čas"}},"Azerbaijan":{"long":{"generic":"Azerbajdžanský čas","standard":"Azerbajdžanský štandardný čas","daylight":"Azerbajdžanský letný čas"}},"Azores":{"long":{"generic":"Azorský čas","standard":"Azorský štandardný čas","daylight":"Azorský letný čas"}},"Bangladesh":{"long":{"generic":"Bangladéšsky čas","standard":"Bangladéšsky štandardný čas","daylight":"Bangladéšsky letný čas"}},"Bhutan":{"long":{"standard":"Bhutánsky čas"}},"Bolivia":{"long":{"standard":"Bolívijský čas"}},"Brasilia":{"long":{"generic":"Brazílsky čas","standard":"Brazílsky štandardný čas","daylight":"Brazílsky letný čas"}},"Brunei":{"long":{"standard":"Brunejský čas"}},"Cape_Verde":{"long":{"generic":"Kapverdský čas","standard":"Kapverdský štandardný čas","daylight":"Kapverdský letný čas"}},"Chamorro":{"long":{"standard":"Chamorrský štandardný čas"}},"Chatham":{"long":{"generic":"Chathamský čas","standard":"Chathamský štandardný čas","daylight":"Chathamský letný čas"}},"Chile":{"long":{"generic":"Čilský čas","standard":"Čilský štandardný čas","daylight":"Čilský letný čas"}},"China":{"long":{"generic":"Čínsky čas","standard":"Čínsky štandardný čas","daylight":"Čínsky letný čas"}},"Choibalsan":{"long":{"generic":"Choibalsanský čas","standard":"Čojbalsanský štandardný čas","daylight":"Choibalsanský letný čas"}},"Christmas":{"long":{"standard":"Čas Vianočného ostrova"}},"Cocos":{"long":{"standard":"Čas Kokosových ostrovov"}},"Colombia":{"long":{"generic":"Kolumbijský čas","standard":"Kolumbijský štandardný čas","daylight":"Kolumbijský letný čas"}},"Cook":{"long":{"generic":"Čas Cookových ostrovov","standard":"Štandardný čas Cookových ostrovov","daylight":"Letný čas Cookových ostrovov"}},"Cuba":{"long":{"generic":"Kubánsky čas","standard":"Kubánsky štandardný čas","daylight":"Kubánsky letný čas"}},"Davis":{"long":{"standard":"Čas Davisovej stanice"}},"DumontDUrville":{"long":{"standard":"Čas stanice Dumonta d’Urvillea"}},"East_Timor":{"long":{"standard":"Východotimorský čas"}},"Easter":{"long":{"generic":"Čas Veľkonočného ostrova","standard":"Štandardný čas Veľkonočného ostrova","daylight":"Letný čas Veľkonočného ostrova"}},"Ecuador":{"long":{"standard":"Ekvádorský čas"}},"Europe_Central":{"long":{"generic":"Stredoeurópsky čas","standard":"Stredoeurópsky štandardný čas","daylight":"Stredoeurópsky letný čas"},"short":{"generic":"SEČ","standard":"SEČ","daylight":"SELČ"}},"Europe_Eastern":{"long":{"generic":"Východoeurópsky čas","standard":"Východoeurópsky štandardný čas","daylight":"Východoeurópsky letný čas"}},"Europe_Further_Eastern":{"long":{"standard":"Ďalší východoeurópsky čas"}},"Europe_Western":{"long":{"generic":"Západoeurópsky čas","standard":"Západoeurópsky štandardný čas","daylight":"Západoeurópsky letný čas"}},"Falkland":{"long":{"generic":"Čas Falklandských ostrovov","standard":"Štandardný čas Falklandských ostrovov","daylight":"Letný čas Falklandských ostrovov"}},"Fiji":{"long":{"generic":"Fidžijský čas","standard":"Fidžijský štandardný čas","daylight":"Fidžijský letný čas"}},"French_Guiana":{"long":{"standard":"Čas Francúzskej Guyany"}},"French_Southern":{"long":{"standard":"Francúzsky južný a antarktický čas"}},"GMT":{"long":{"standard":"Greenwichský čas"}},"Galapagos":{"long":{"standard":"Galapágsky čas"}},"Gambier":{"long":{"standard":"Gambierský čas"}},"Georgia":{"long":{"generic":"Gruzínsky čas","standard":"Gruzínsky štandardný čas","daylight":"Gruzínsky letný čas"}},"Gilbert_Islands":{"long":{"standard":"Čas Gilbertových ostrovov"}},"Greenland_Eastern":{"long":{"generic":"Východogrónsky čas","standard":"Východogrónsky štandardný čas","daylight":"Východogrónsky letný čas"}},"Greenland_Western":{"long":{"generic":"Západogrónsky čas","standard":"Západogrónsky štandardný čas","daylight":"Západogrónsky letný čas"}},"Gulf":{"long":{"standard":"Štandardný čas Perzského zálivu"}},"Guyana":{"long":{"standard":"Guyanský čas"}},"Hawaii_Aleutian":{"long":{"generic":"Havajsko-aleutský čas","standard":"Havajsko-aleutský štandardný čas","daylight":"Havajsko-aleutský letný čas"}},"Hong_Kong":{"long":{"generic":"Hongkongský čas","standard":"Hongkongský štandardný čas","daylight":"Hongkongský letný čas"}},"Hovd":{"long":{"generic":"Chovdský čas","standard":"Chovdský štandardný čas","daylight":"Chovdský letný čas"}},"India":{"long":{"standard":"Indický čas"}},"Indian_Ocean":{"long":{"standard":"Čas Indického oceánu"}},"Indochina":{"long":{"standard":"Indočínsky čas"}},"Indonesia_Central":{"long":{"standard":"Stredoindonézsky čas"}},"Indonesia_Eastern":{"long":{"standard":"Východoindonézsky čas"}},"Indonesia_Western":{"long":{"standard":"Západoindonézsky čas"}},"Iran":{"long":{"generic":"Iránsky čas","standard":"Iránsky štandardný čas","daylight":"Iránsky letný čas"}},"Irkutsk":{"long":{"generic":"Irkutský čas","standard":"Irkutský štandardný čas","daylight":"Irkutský letný čas"}},"Israel":{"long":{"generic":"Izraelský čas","standard":"Izraelský štandardný čas","daylight":"Izraelský letný čas"}},"Japan":{"long":{"generic":"Japonský čas","standard":"Japonský štandardný čas","daylight":"Japonský letný čas"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamčatský čas","standard":"Petropavlovsk-Kamčatský štandardný čas","daylight":"Petropavlovsk-Kamčatskijský letný čas"}},"Kazakhstan_Eastern":{"long":{"standard":"Východokazašský čas"}},"Kazakhstan_Western":{"long":{"standard":"Západokazašský čas"}},"Korea":{"long":{"generic":"Kórejský čas","standard":"Kórejský štandardný čas","daylight":"Kórejský letný čas"}},"Kosrae":{"long":{"standard":"Kosraeský čas"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarský čas","standard":"Krasnojarský štandardný čas","daylight":"Krasnojarský letný čas"}},"Kyrgystan":{"long":{"standard":"Kirgizský čas"}},"Line_Islands":{"long":{"standard":"Čas Rovníkových ostrovov"}},"Lord_Howe":{"long":{"generic":"Čas ostrova lorda Howa","standard":"Štandardný čas ostrova lorda Howa","daylight":"Letný čas ostrova lorda Howa"}},"Macquarie":{"long":{"standard":"Čas ostrova Macquarie"}},"Magadan":{"long":{"generic":"Magadanský čas","standard":"Magadanský štandardný čas","daylight":"Magadanský letný čas"}},"Malaysia":{"long":{"standard":"Malajzijský čas"}},"Maldives":{"long":{"standard":"Maldivský čas"}},"Marquesas":{"long":{"standard":"Markézsky čas"}},"Marshall_Islands":{"long":{"standard":"Čas Marshallových ostrovov"}},"Mauritius":{"long":{"generic":"Maurícijský čas","standard":"Maurícijský štandardný čas","daylight":"Maurícijský letný čas"}},"Mawson":{"long":{"standard":"Čas Mawsonovej stanice"}},"Mexico_Northwest":{"long":{"generic":"Severozápadný mexický čas","standard":"Severozápadný mexický štandardný čas","daylight":"Severozápadný mexický letný čas"}},"Mexico_Pacific":{"long":{"generic":"Mexický tichomorský čas","standard":"Mexický tichomorský štandardný čas","daylight":"Mexický tichomorský letný čas"}},"Mongolia":{"long":{"generic":"Ulanbátarský čas","standard":"Ulanbátarský štandardný čas","daylight":"Ulanbátarský letný čas"}},"Moscow":{"long":{"generic":"Moskovský čas","standard":"Moskovský štandardný čas","daylight":"Moskovský letný čas"}},"Myanmar":{"long":{"standard":"Mjanmarský čas"}},"Nauru":{"long":{"standard":"Čas ostrova Nauru"}},"Nepal":{"long":{"standard":"Nepálsky čas"}},"New_Caledonia":{"long":{"generic":"Novokaledónsky čas","standard":"Novokaledónsky štandardný čas","daylight":"Novokaledónsky letný čas"}},"New_Zealand":{"long":{"generic":"Novozélandský čas","standard":"Novozélandský štandardný čas","daylight":"Novozélandský letný čas"}},"Newfoundland":{"long":{"generic":"Newfoundlandský čas","standard":"Newfoundlandský štandardný čas","daylight":"Newfoundlandský letný čas"}},"Niue":{"long":{"standard":"Čas ostrova Niue"}},"Norfolk":{"long":{"standard":"Čas Norfolkských ostrovov"}},"Noronha":{"long":{"generic":"Čas ostrova Fernando de Noronha","standard":"Štandardný čas ostrova Fernando de Noronha","daylight":"Letný čas ostrovov Fernanda de Noronha"}},"Novosibirsk":{"long":{"generic":"Novosibírsky čas","standard":"Novosibirský štandardný čas","daylight":"Novosibírsky letný čas"}},"Omsk":{"long":{"generic":"Omský čas","standard":"Omský štandardný čas","daylight":"Omský letný čas"}},"Pakistan":{"long":{"generic":"Pakistanský čas","standard":"Pakistanský štandardný čas","daylight":"Pakistanský letný čas"}},"Palau":{"long":{"standard":"Palauský čas"}},"Papua_New_Guinea":{"long":{"standard":"Čas Papuy-Novej Guiney"}},"Paraguay":{"long":{"generic":"Paraguajský čas","standard":"Paraguajský štandardný čas","daylight":"Paraguajský letný čas"}},"Peru":{"long":{"generic":"Peruánsky čas","standard":"Peruánsky štandardný čas","daylight":"Peruánsky letný čas"}},"Philippines":{"long":{"generic":"Filipínsky čas","standard":"Filipínsky štandardný čas","daylight":"Filipínsky letný čas"}},"Phoenix_Islands":{"long":{"standard":"Čas Fénixových ostrovov"}},"Pierre_Miquelon":{"long":{"generic":"Čas ostrovov Saint-Pierre a Miquelon","standard":"Štandardný čas ostrovov Saint-Pierre a Miquelon","daylight":"Letný čas ostrovov Saint-Pierre a Miquelon"}},"Pitcairn":{"long":{"standard":"Čas Pitcairnovho ostrova"}},"Ponape":{"long":{"standard":"Ponapský čas"}},"Reunion":{"long":{"standard":"Réunionský čas"}},"Rothera":{"long":{"standard":"Čas Rotherovej stanice"}},"Sakhalin":{"long":{"generic":"Sachalinský čas","standard":"Sachalinský štandardný čas","daylight":"Sachalinský letný čas"}},"Samara":{"long":{"generic":"Samarský čas","standard":"Samarský štandardný čas","daylight":"Samarský letný čas"}},"Samoa":{"long":{"generic":"Samojský čas","standard":"Samojský štandardný čas","daylight":"Samojský letný čas"}},"Seychelles":{"long":{"standard":"Seychelský čas"}},"Singapore":{"long":{"standard":"Singapurský štandardný čas"}},"Solomon":{"long":{"standard":"Čas Šalamúnových ostrovov"}},"South_Georgia":{"long":{"standard":"Čas Južnej Georgie"}},"Suriname":{"long":{"standard":"Surinamský čas"}},"Syowa":{"long":{"standard":"Čas stanice Šówa"}},"Tahiti":{"long":{"standard":"Tahitský čas"}},"Taipei":{"long":{"generic":"Tchajpejský čas","standard":"Tchajpejský štandardný čas","daylight":"Tchajpejský letný čas"}},"Tajikistan":{"long":{"standard":"Tadžický čas"}},"Tokelau":{"long":{"standard":"Tokelauský čas"}},"Tonga":{"long":{"generic":"Tonžský čas","standard":"Tonžský štandardný čas","daylight":"Tonžský letný čas"}},"Truk":{"long":{"standard":"Chuukský čas"}},"Turkmenistan":{"long":{"generic":"Turkménsky čas","standard":"Turkménsky štandardný čas","daylight":"Turkménsky letný čas"}},"Tuvalu":{"long":{"standard":"Tuvalský čas"}},"Uruguay":{"long":{"generic":"Uruguajský čas","standard":"Uruguajský štandardný čas","daylight":"Uruguajský letný čas"}},"Uzbekistan":{"long":{"generic":"Uzbecký čas","standard":"Uzbecký štandardný čas","daylight":"Uzbecký letný čas"}},"Vanuatu":{"long":{"generic":"Vanuatský čas","standard":"Vanuatský štandardný čas","daylight":"Vanuatský letný čas"}},"Venezuela":{"long":{"standard":"Venezuelský čas"}},"Vladivostok":{"long":{"generic":"Vladivostocký čas","standard":"Vladivostocký štandardný čas","daylight":"Vladivostocký letný čas"}},"Volgograd":{"long":{"generic":"Volgogradský čas","standard":"Volgogradský štandardný čas","daylight":"Volgogradský letný čas"}},"Vostok":{"long":{"standard":"Čas stanice Vostok"}},"Wake":{"long":{"standard":"Čas ostrova Wake"}},"Wallis":{"long":{"standard":"Čas ostrovov Wallis a Futuna"}},"Yakutsk":{"long":{"generic":"Jakutský čas","standard":"Jakutský štandardný čas","daylight":"Jakutský letný čas"}},"Yekaterinburg":{"long":{"generic":"Jekaterinburgský čas","standard":"Jekaterinburgský štandardný čas","daylight":"Jekaterinburský letný čas"}}}} \ No newline at end of file diff --git a/Punic/data/sk/units.json b/Punic/data/sk/units.json new file mode 100644 index 0000000..0daa88c --- /dev/null +++ b/Punic/data/sk/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s za %2$s","acceleration":{"g-force":{"_name":"jednotky preťaženia","one":"%1$s jednotka preťaženia","few":"%1$s jednotky preťaženia","many":"%1$s jednotky preťaženia","other":"%1$s jednotiek preťaženia"},"meter-per-second-squared":{"_name":"metre za sekundu na druhú","one":"%1$s meter za sekundu na druhú","few":"%1$s metre za sekundu na druhú","many":"%1$s metra za sekundu na druhú","other":"%1$s metrov za sekundu na druhú"}},"angle":{"arc-minute":{"_name":"minúty","one":"%1$s minúta","few":"%1$s minúty","many":"%1$s minúty","other":"%1$s minút"},"arc-second":{"_name":"sekundy","one":"%1$s sekunda","few":"%1$s sekundy","many":"%1$s sekundy","other":"%1$s sekúnd"},"degree":{"_name":"stupne","one":"%1$s stupeň","few":"%1$s stupne","many":"%1$s stupňa","other":"%1$s stupňov"},"radian":{"_name":"radiány","one":"%1$s radián","few":"%1$s radiány","many":"%1$s radiánu","other":"%1$s radiánov"}},"area":{"acre":{"_name":"akre","one":"%1$s aker","few":"%1$s akre","many":"%1$s akra","other":"%1$s akrov"},"hectare":{"_name":"hektáre","one":"%1$s hektár","few":"%1$s hektáre","many":"%1$s hektára","other":"%1$s hektárov"},"square-centimeter":{"_name":"štvorcové centimetre","one":"%1$s štvorcový centimeter","few":"%1$s štvorcové centimetre","many":"%1$s štvorcového centimetra","other":"%1$s štvorcových centimetrov"},"square-foot":{"_name":"štvorcové stopy","one":"%1$s štvorcová stopa","few":"%1$s štvorcové stopy","many":"%1$s štvorcovej stopy","other":"%1$s štvorcových stôp"},"square-inch":{"_name":"štvorcové palce","one":"%1$s štvorcový palec","few":"%1$s štvorcové palce","many":"%1$s štvorcového palca","other":"%1$s štvorcových palcov"},"square-kilometer":{"_name":"štvorcové kilometre","one":"%1$s kilometer štvorcový","few":"%1$s kilometre štvorcové","many":"%1$s kilometra štvorcového","other":"%1$s kilometrov štvorcových"},"square-meter":{"_name":"štvorcové metre","one":"%1$s meter štvorcový","few":"%1$s metre štvorcové","many":"%1$s metra štvorcového","other":"%1$s metrov štvorcových"},"square-mile":{"_name":"štvorcové míle","one":"%1$s míľa štvorcová","few":"%1$s míle štvorcové","many":"%1$s míle štvorcovej","other":"%1$s míľ štvorcových"},"square-yard":{"_name":"štvorcové yardy","one":"%1$s štvorcový yard","few":"%1$s štvorcové yardy","many":"%1$s štvorcového yardu","other":"%1$s štvorcových yardov"}},"consumption":{"liter-per-kilometer":{"_name":"litre na kilometer","one":"%1$s liter na kilometer","few":"%1$s litre na kilometer","many":"%1$s litra na kilometer","other":"%1$s litrov na kilometer"},"mile-per-gallon":{"_name":"míle na galón","one":"%1$s míľa na galón","few":"%1$s míle na galón","many":"%1$s míle na galón","other":"%1$s míľ na galón"}},"digital":{"bit":{"_name":"bity","one":"%1$s bit","few":"%1$s bity","many":"%1$s bitu","other":"%1$s bitov"},"byte":{"_name":"bajty","one":"%1$s bajt","few":"%1$s bajty","many":"%1$s bajtu","other":"%1$s bajtov"},"gigabit":{"_name":"gigabity","one":"%1$s gigabit","few":"%1$s gigabity","many":"%1$s gigabitu","other":"%1$s gigabitov"},"gigabyte":{"_name":"gigabajty","one":"%1$s gigabajt","few":"%1$s gigabajty","many":"%1$s gigabajtu","other":"%1$s gigabajtov"},"kilobit":{"_name":"kilobity","one":"%1$s kilobit","few":"%1$s kilobity","many":"%1$s kilobitu","other":"%1$s kilobitov"},"kilobyte":{"_name":"kilobajty","one":"%1$s kilobajt","few":"%1$s kilobajty","many":"%1$s kilobajtu","other":"%1$s kilobajtov"},"megabit":{"_name":"megabity","one":"%1$s megabit","few":"%1$s megabity","many":"%1$s megabitu","other":"%1$s megabitov"},"megabyte":{"_name":"megabajty","one":"%1$s megabajt","few":"%1$s megabajty","many":"%1$s megabajtu","other":"%1$s megabajtov"},"terabit":{"_name":"terabity","one":"%1$s terabit","few":"%1$s terabity","many":"%1$s terabitu","other":"%1$s terabitov"},"terabyte":{"_name":"terabajty","one":"%1$s terabajt","few":"%1$s terabajty","many":"%1$s terabajtu","other":"%1$s terabajtov"}},"duration":{"day":{"_name":"dni","one":"%1$s deň","few":"%1$s dni","many":"%1$s dňa","other":"%1$s dní"},"hour":{"_name":"hodiny","one":"%1$s hodina","few":"%1$s hodiny","many":"%1$s hodiny","other":"%1$s hodín","_per":"%1$s za hodinu"},"microsecond":{"_name":"mikrosekundy","one":"%1$s mikrosekunda","few":"%1$s mikrosekundy","many":"%1$s mikrosekundy","other":"%1$s mikrosekúnd"},"millisecond":{"_name":"milisekundy","one":"%1$s milisekunda","few":"%1$s milisekundy","many":"%1$s milisekundy","other":"%1$s milisekúnd"},"minute":{"_name":"minúty","one":"%1$s minúta","few":"%1$s minúty","many":"%1$s minúty","other":"%1$s minút"},"month":{"_name":"mesiace","one":"%1$s mesiac","few":"%1$s mesiace","many":"%1$s mesiaca","other":"%1$s mesiacov"},"nanosecond":{"_name":"nanosekundy","one":"%1$s nanosekunda","few":"%1$s nanosekundy","many":"%1$s nanosekundy","other":"%1$s nanosekúnd"},"second":{"_name":"sekundy","one":"%1$s sekunda","few":"%1$s sekundy","many":"%1$s sekundy","other":"%1$s sekúnd","_per":"%1$s za sekundu"},"week":{"_name":"týždne","one":"%1$s týždeň","few":"%1$s týždne","many":"%1$s týždňa","other":"%1$s týždňov"},"year":{"_name":"roky","one":"%1$s rok","few":"%1$s roky","many":"%1$s roka","other":"%1$s rokov"}},"electric":{"ampere":{"_name":"ampéry","one":"%1$s ampér","few":"%1$s ampéry","many":"%1$s ampéra","other":"%1$s ampérov"},"milliampere":{"_name":"miliampéry","one":"%1$s miliampér","few":"%1$s miliampéry","many":"%1$s miliampéra","other":"%1$s miliampérov"},"ohm":{"_name":"ohmy","one":"%1$s ohm","few":"%1$s ohmy","many":"%1$s ohmu","other":"%1$s ohmov"},"volt":{"_name":"volty","one":"%1$s volt","few":"%1$s volty","many":"%1$s voltu","other":"%1$s voltov"}},"energy":{"calorie":{"_name":"kalórie","one":"%1$s kalória","few":"%1$s kalórie","many":"%1$s kalórie","other":"%1$s kalórií"},"foodcalorie":{"_name":"kalórie","one":"%1$s kalória","few":"%1$s kalórie","many":"%1$s kalórie","other":"%1$s kalórií"},"joule":{"_name":"jouly","one":"joule","few":"%1$s jouly","many":"%1$s joulu","other":"%1$s joulov"},"kilocalorie":{"_name":"kilokalórie","one":"%1$s kilokalória","few":"%1$s kilokalórie","many":"%1$s kilokalórie","other":"%1$s kilokalórií"},"kilojoule":{"_name":"kilojouly","one":"%1$s kilojoule","few":"%1$s kilojouly","many":"%1$s kilojoulu","other":"%1$s kilojoulov"},"kilowatt-hour":{"_name":"kilowatthodiny","one":"%1$s kilowatthodina","few":"%1$s kilowatthodiny","many":"%1$s kilowatthodiny","other":"%1$s kilowatthodín"}},"frequency":{"gigahertz":{"_name":"gigahertze","one":"%1$s gigahertz","few":"%1$s gigahertze","many":"%1$s gigahertza","other":"%1$s gigahertzov"},"hertz":{"_name":"hertze","one":"%1$s hertz","few":"%1$s hertze","many":"%1$s hertza","other":"%1$s hertzov"},"kilohertz":{"_name":"kilohertze","one":"%1$s kilohertz","few":"%1$s kilohertze","many":"%1$s kilohertza","other":"%1$s kilohertzov"},"megahertz":{"_name":"megahertze","one":"%1$s megahertz","few":"%1$s megahertze","many":"%1$s megahertza","other":"%1$s megahertzov"}},"length":{"astronomical-unit":{"_name":"astronomické jednotky","one":"%1$s astronomická jednotka","few":"%1$s astronomické jednotky","many":"%1$s astronomickej jednotky","other":"%1$s astronomických jednotiek"},"centimeter":{"_name":"centimetre","one":"%1$s centimeter","few":"%1$s centimetre","many":"%1$s centimetra","other":"%1$s centimetrov"},"decimeter":{"_name":"decimetre","one":"%1$s decimeter","few":"%1$s decimetre","many":"%1$s decimetra","other":"%1$s decimetrov"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"stopy","one":"%1$s stopa","few":"%1$s stopy","many":"%1$s stopy","other":"%1$s stôp"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"palce","one":"%1$s palec","few":"%1$s palce","many":"%1$s palca","other":"%1$s palcov"},"kilometer":{"_name":"kilometre","one":"%1$s kilometer","few":"%1$s kilometre","many":"%1$s kilometra","other":"%1$s kilometrov"},"light-year":{"_name":"svetelné roky","one":"%1$s svetelný rok","few":"%1$s svetelné roky","many":"%1$s svetelného roku","other":"%1$s svetelných rokov"},"meter":{"_name":"metre","one":"%1$s meter","few":"%1$s metre","many":"%1$s metra","other":"%1$s metrov"},"micrometer":{"_name":"mikrometre","one":"%1$s mikrometer","few":"%1$s mikrometre","many":"%1$s mikrometra","other":"%1$s mikrometrov"},"mile":{"_name":"míle","one":"%1$s míľa","few":"%1$s míle","many":"%1$s míle","other":"%1$s míľ"},"millimeter":{"_name":"milimetre","one":"%1$s milimeter","few":"%1$s milimetre","many":"%1$s milimetra","other":"%1$s milimetrov"},"nanometer":{"_name":"nanometre","one":"%1$s nanometer","few":"%1$s nanometre","many":"%1$s nanometra","other":"%1$s nanometrov"},"nautical-mile":{"_name":"námorné míle","one":"%1$s námorná míľa","few":"%1$s námorné míle","many":"%1$s námornej míle","other":"%1$s námorných míľ"},"parsec":{"_name":"parseky","one":"%1$s parsek","few":"%1$s parseky","many":"%1$s parseku","other":"%1$s parsekov"},"picometer":{"_name":"pikometre","one":"%1$s pikometer","few":"%1$s pikometre","many":"%1$s pikometra","other":"%1$s pikometrov"},"yard":{"_name":"yardy","one":"%1$s yard","few":"%1$s yardy","many":"%1$s yardu","other":"%1$s yardov"}},"light":{"lux":{"_name":"luxy","one":"%1$s lux","few":"%1$s luxy","many":"%1$s luxu","other":"%1$s luxov"}},"mass":{"carat":{"_name":"karáty","one":"%1$s karát","few":"%1$s karáty","many":"%1$s karátu","other":"%1$s karátov"},"gram":{"_name":"gramy","one":"%1$s gram","few":"%1$s gramy","many":"%1$s gramu","other":"%1$s gramov"},"kilogram":{"_name":"kilogramy","one":"%1$s kilogram","few":"%1$s kilogramy","many":"%1$s kilogramu","other":"%1$s kilogramov"},"metric-ton":{"_name":"tony","one":"%1$s tona","few":"%1$s tony","many":"%1$s tony","other":"%1$s ton"},"microgram":{"_name":"mikrogramy","one":"%1$s mikrogram","few":"%1$s mikrogramy","many":"%1$s mikrogramu","other":"%1$s mikrogramov"},"milligram":{"_name":"miligramy","one":"%1$s miligram","few":"%1$s miligramy","many":"%1$s miligramu","other":"%1$s miligramov"},"ounce":{"_name":"unce","one":"%1$s unca","few":"%1$s unce","many":"%1$s unce","other":"%1$s uncí"},"ounce-troy":{"_name":"trojské unce","one":"%1$s trojská unca","few":"%1$s trojské unce","many":"%1$s trojskej unce","other":"%1$s trojských uncí"},"pound":{"_name":"libry","one":"%1$s libra","few":"%1$s libry","many":"%1$s libry","other":"%1$s libier"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"americké tony","one":"%1$s americká tona","few":"%1$s americké tony","many":"%1$s americkej tony","other":"%1$s amerických ton"}},"power":{"gigawatt":{"_name":"gigawatty","one":"%1$s gigawatt","few":"%1$s gigawatty","many":"%1$s gigawattu","other":"%1$s gigawattov"},"horsepower":{"_name":"konské sily","one":"%1$s konská sila","few":"%1$s konské sily","many":"%1$s konskej sily","other":"%1$s konských síl"},"kilowatt":{"_name":"kilowatty","one":"%1$s kilowatt","few":"%1$s kilowatty","many":"%1$s kilowattu","other":"%1$s kilowattov"},"megawatt":{"_name":"megawatty","one":"%1$s megawatt","few":"%1$s megawatty","many":"%1$s megawattu","other":"%1$s megawattov"},"milliwatt":{"_name":"milliwatty","one":"%1$s milliwatt","few":"%1$s milliwatty","many":"%1$s milliwattu","other":"%1$s milliwattov"},"watt":{"_name":"watty","one":"%1$s watt","few":"%1$s watty","many":"%1$s wattu","other":"%1$s wattov"}},"pressure":{"hectopascal":{"_name":"hektopascaly","one":"%1$s hektopascal","few":"%1$s hektopascaly","many":"%1$s hektopascala","other":"%1$s hektopascalov"},"inch-hg":{"_name":"palce ortuťového stĺpca","one":"%1$s palec ortuťového stĺpca","few":"%1$s palce ortuťového stĺpca","many":"%1$s palca ortuťového stĺpca","other":"%1$s palcov ortuťového stĺpca"},"millibar":{"_name":"milibary","one":"%1$s milibar","few":"%1$s milibary","many":"%1$s milibaru","other":"%1$s milibarov"},"millimeter-of-mercury":{"_name":"milimetre ortuťového stĺpca","one":"%1$s milimeter ortuťového stĺpca","few":"%1$s milimetre ortuťového stĺpca","many":"%1$s milimetra ortuťového stĺpca","other":"%1$s milimetrov ortuťového stĺpca"},"pound-per-square-inch":{"_name":"libry sily na štvorcový palec","one":"%1$s libra sily na štvorcový palec","few":"%1$s libry sily na štvorcový palec","many":"%1$s libry sily na štvorcový palec","other":"%1$s libier sily na štvorcový palec"}},"proportion":{"karat":{"_name":"karáty","one":"%1$s karát","few":"%1$s karáty","many":"%1$s karátu","other":"%1$s karátov"}},"speed":{"kilometer-per-hour":{"_name":"kilometre za hodinu","one":"%1$s kilometer za hodinu","few":"%1$s kilometre za hodinu","many":"%1$s kilometra za hodinu","other":"%1$s kilometrov za hodinu"},"meter-per-second":{"_name":"metre za sekundu","one":"%1$s meter za sekundu","few":"%1$s metre za sekundu","many":"%1$s metra za sekundu","other":"%1$s metrov za sekundu"},"mile-per-hour":{"_name":"míle za hodinu","one":"%1$s míľa za hodinu","few":"%1$s míle za hodinu","many":"%1$s míle za hodinu","other":"%1$s míľ za hodinu"}},"temperature":{"celsius":{"_name":"stupne Celzia","one":"%1$s stupeň Celzia","few":"%1$s stupne Celzia","many":"%1$s stupňa Celzia","other":"%1$s stupňov Celzia"},"fahrenheit":{"_name":"stupne Fahrenheita","one":"%1$s stupeň Fahrenheita","few":"%1$s stupne Fahrenheita","many":"%1$s stupňa Fahrenheita","other":"%1$s stupňov Fahrenheita"},"kelvin":{"_name":"kelviny","one":"%1$s kelvin","few":"%1$s kelviny","many":"%1$s kelvina","other":"%1$s kelvinov"}},"volume":{"acre-foot":{"_name":"akrové stopy","one":"%1$s akrová stopa","few":"%1$s akrové stopy","many":"%1$s akrovej stopy","other":"%1$s akrových stôp"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitre","one":"%1$s centiliter","few":"%1$s centilitre","many":"%1$s centilitra","other":"%1$s centilitrov"},"cubic-centimeter":{"_name":"kubické centimetre","one":"%1$s kubický centimeter","few":"%1$s kubické centimetre","many":"%1$s kubického centimetra","other":"%1$s kubických centimetrov"},"cubic-foot":{"_name":"kubické stopy","one":"%1$s kubická stopa","few":"%1$s kubické stopy","many":"%1$s kubickej stopy","other":"%1$s kubických stôp"},"cubic-inch":{"_name":"kubické palce","one":"%1$s kubický palec","few":"%1$s kubické palce","many":"%1$s kubického palca","other":"%1$s kubických palcov"},"cubic-kilometer":{"_name":"kubické kilometre","one":"%1$s kubický kilometer","few":"%1$s kubické kilometre","many":"%1$s kubického kilometra","other":"%1$s kubických kilometrov"},"cubic-meter":{"_name":"kubické metre","one":"%1$s kubický meter","few":"%1$s kubické metre","many":"%1$s kubického metra","other":"%1$s kubických metrov"},"cubic-mile":{"_name":"kubické míle","one":"%1$s kubická míľa","few":"%1$s kubické míle","many":"%1$s kubickej míle","other":"%1$s kubických míľ"},"cubic-yard":{"_name":"kubické yardy","one":"%1$s kubický yard","few":"%1$s kubické yardy","many":"%1$s kubického yardu","other":"%1$s kubických yardov"},"cup":{"_name":"hrnčeky","one":"%1$s hrnček","few":"%1$s hrnčeky","many":"%1$s hrnčeka","other":"%1$s hrnčekov"},"deciliter":{"_name":"decilitre","one":"%1$s deciliter","few":"%1$s decilitre","many":"%1$s decilitra","other":"%1$s decilitrov"},"fluid-ounce":{"_name":"tekuté unce","one":"%1$s tekutá unca","few":"%1$s tekuté unce","many":"%1$s tekutej unce","other":"%1$s tekutých uncí"},"gallon":{"_name":"galóny","one":"%1$s galón","few":"%1$s galóny","many":"%1$s galónu","other":"%1$s galónov"},"hectoliter":{"_name":"hektolitre","one":"%1$s hektoliter","few":"%1$s hektolitre","many":"%1$s hektolitra","other":"%1$s hektolitrov"},"liter":{"_name":"litre","one":"%1$s liter","few":"%1$s litre","many":"%1$s litra","other":"%1$s litrov"},"megaliter":{"_name":"megalitre","one":"%1$s megaliter","few":"%1$s megalitre","many":"%1$s megalitra","other":"%1$s megalitrov"},"milliliter":{"_name":"mililitre","one":"%1$s mililiter","few":"%1$s mililitre","many":"%1$s mililitra","other":"%1$s mililitrov"},"pint":{"_name":"pinty","one":"%1$s pinta","few":"%1$s pinty","many":"%1$s pinty","other":"%1$s pínt"},"quart":{"_name":"quarty","one":"%1$s quart","few":"%1$s quarty","many":"%1$s quartu","other":"%1$s quartov"},"tablespoon":{"_name":"polievkové lyžice","one":"%1$s polievková lyžica","few":"%1$s polievkové lyžice","many":"%1$s polievkovej lyžice","other":"%1$s polievkových lyžíc"},"teaspoon":{"_name":"čajové lyžice","one":"%1$s čajová lyžica","few":"%1$s čajové lyžice","many":"%1$s čajovej lyžice","other":"%1$s čajových lyžíc"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"jednotka preťaženia","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akre","one":"%1$s ac","few":"%1$s ac","many":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektáre","one":"%1$s ha","few":"%1$s ha","many":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","few":"%1$s ft²","many":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","many":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s b","few":"%1$s b","many":"%1$s b","other":"%1$s b"},"byte":{"_name":"bajt","one":"%1$s B","few":"%1$s B","many":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dni","one":"%1$s deň","few":"%1$s dni","many":"%1$s dňa","other":"%1$s dní"},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","many":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"month":{"_name":"mes.","one":"%1$s mes.","few":"%1$s mes.","many":"%1$s mes.","other":"%1$s mes."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"týž.","one":"%1$s týž.","few":"%1$s týž.","many":"%1$s týž.","other":"%1$s týž."},"year":{"_name":"r.","one":"%1$s r.","few":"%1$s r.","many":"%1$s r.","other":"%1$s r."}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","many":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","many":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","few":"%1$s in","many":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ly","one":"%1$s ly","few":"%1$s ly","many":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","few":"%1$s mi","many":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"NM","one":"%1$s NM","few":"%1$s NM","many":"%1$s NM","other":"%1$s NM"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","few":"%1$s pm","many":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","few":"%1$s yd","many":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$s ct","few":"%1$s ct","many":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"gramy","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","few":"%1$s oz","many":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","many":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"to","one":"%1$s to","few":"%1$s to","many":"%1$s to","other":"%1$s to"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$s hp","few":"%1$s hp","many":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","many":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","few":"%1$s W","many":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","many":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","many":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","few":"%1$s m/s","many":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","few":"%1$s mi/h","many":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","few":"%1$s °F","many":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","many":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","many":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","many":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","many":"%1$s tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"jednotka preťaženia","one":"%1$sG","few":"%1$sG","many":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","many":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","many":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akre","one":"%1$sac","few":"%1$sac","many":"%1$sac","other":"%1$sac"},"hectare":{"_name":"hektáre","one":"%1$sha","few":"%1$sha","many":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","many":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$sft²","few":"%1$sft²","many":"%1$sft²","other":"%1$sft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","many":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","few":"%1$s km²","many":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","few":"%1$s m²","many":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$smi²","few":"%1$smi²","many":"%1$smi²","other":"%1$smi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","many":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","few":"%1$s l/km","many":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","many":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s b","few":"%1$s b","many":"%1$s b","other":"%1$s b"},"byte":{"_name":"bajt","one":"%1$s B","few":"%1$s B","many":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","many":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","many":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","many":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","many":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","many":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","many":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","many":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","many":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d.","one":"%1$s d.","few":"%1$s d.","many":"%1$s d.","other":"%1$s d."},"hour":{"_name":"h","one":"%1$s h","few":"%1$s h","many":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","many":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","many":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","few":"%1$s min","many":"%1$s min","other":"%1$s min"},"month":{"_name":"m.","one":"%1$s m.","few":"%1$s m.","many":"%1$s m.","other":"%1$s m."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","many":"%1$s ns","other":"%1$s ns"},"second":{"_name":"s","one":"%1$s s","few":"%1$s s","many":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"t.","one":"%1$s t.","few":"%1$s t.","many":"%1$s t.","other":"%1$s t."},"year":{"_name":"r.","one":"%1$s r.","few":"%1$s r.","many":"%1$s r.","other":"%1$s r."}},"electric":{"ampere":{"_name":"A","one":"%1$s A","few":"%1$s A","many":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","many":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"Ω","one":"%1$s Ω","few":"%1$s Ω","many":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","few":"%1$s V","many":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","many":"%1$s cal","other":"%1$s cal"},"joule":{"_name":"J","one":"%1$s J","few":"%1$s J","many":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","many":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","many":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","many":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","many":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","many":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","many":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","many":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","few":"%1$s au","many":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","many":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","many":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$sin","few":"%1$sin","many":"%1$sin","other":"%1$sin"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","many":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ly","one":"%1$sly","few":"%1$sly","many":"%1$sly","other":"%1$sly"},"meter":{"_name":"m","one":"%1$s m","few":"%1$s m","many":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","many":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$smi","few":"%1$smi","many":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","many":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","many":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"NM","one":"%1$s NM","few":"%1$s NM","many":"%1$s NM","other":"%1$s NM"},"parsec":{"_name":"pc","one":"%1$s pc","few":"%1$s pc","many":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$spm","few":"%1$spm","many":"%1$spm","other":"%1$spm"},"yard":{"_name":"yd","one":"%1$syd","few":"%1$syd","many":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","many":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"ct","one":"%1$s ct","few":"%1$s ct","many":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","many":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","many":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","many":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","many":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","many":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$soz","few":"%1$soz","many":"%1$soz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","many":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$slb","few":"%1$slb","many":"%1$slb","other":"%1$slb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"to","one":"%1$s to","few":"%1$s to","many":"%1$s to","other":"%1$s to"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","many":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hp","one":"%1$shp","few":"%1$shp","many":"%1$shp","other":"%1$shp"},"kilowatt":{"_name":"kW","one":"%1$skW","few":"%1$skW","many":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","many":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","many":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$sW","few":"%1$sW","many":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","few":"%1$shPa","many":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","one":"%1$s\" Hg","few":"%1$s\" Hg","many":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$smb","few":"%1$smb","many":"%1$smb","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","many":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","many":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","many":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","many":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","few":"%1$sm/s","many":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$smph","few":"%1$smph","many":"%1$smph","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","few":"%1$s °C","many":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","many":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","many":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","few":"%1$s cl","many":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","many":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","many":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","many":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","few":"%1$skm³","many":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","many":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$smi³","few":"%1$smi³","many":"%1$smi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","many":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","few":"%1$s c","many":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dl","one":"%1$s dl","few":"%1$s dl","many":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","many":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","many":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","few":"%1$s hl","many":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","many":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","few":"%1$s Ml","many":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","few":"%1$s ml","many":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","many":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","many":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","one":"%1$s tbsp","few":"%1$s tbsp","many":"%1$s tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","one":"%1$s tsp","few":"%1$s tsp","many":"%1$s tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/sl/calendar.json b/Punic/data/sl/calendar.json new file mode 100644 index 0000000..facfd94 --- /dev/null +++ b/Punic/data/sl/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"feb.","3":"mar.","4":"apr.","5":"maj","6":"jun.","7":"jul.","8":"avg.","9":"sep.","10":"okt.","11":"nov.","12":"dec."},"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":"marec","4":"april","5":"maj","6":"junij","7":"julij","8":"avgust","9":"september","10":"oktober","11":"november","12":"december"}},"stand-alone":{"abbreviated":{"1":"jan","2":"feb","3":"mar","4":"apr","5":"maj","6":"jun","7":"jul","8":"avg","9":"sep","10":"okt","11":"nov","12":"dec"},"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":"marec","4":"april","5":"maj","6":"junij","7":"julij","8":"avgust","9":"september","10":"oktober","11":"november","12":"december"}}},"days":{"format":{"abbreviated":{"sun":"ned.","mon":"pon.","tue":"tor.","wed":"sre.","thu":"čet.","fri":"pet.","sat":"sob."},"narrow":{"sun":"n","mon":"p","tue":"t","wed":"s","thu":"č","fri":"p","sat":"s"},"short":{"sun":"ned.","mon":"pon.","tue":"tor.","wed":"sre.","thu":"čet.","fri":"pet.","sat":"sob."},"wide":{"sun":"nedelja","mon":"ponedeljek","tue":"torek","wed":"sreda","thu":"četrtek","fri":"petek","sat":"sobota"}},"stand-alone":{"abbreviated":{"sun":"ned","mon":"pon","tue":"tor","wed":"sre","thu":"čet","fri":"pet","sat":"sob"},"narrow":{"sun":"n","mon":"p","tue":"t","wed":"s","thu":"č","fri":"p","sat":"s"},"short":{"sun":"ned.","mon":"pon.","tue":"tor.","wed":"sre.","thu":"čet.","fri":"pet.","sat":"sob."},"wide":{"sun":"nedelja","mon":"ponedeljek","tue":"torek","wed":"sreda","thu":"četrtek","fri":"petek","sat":"sobota"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. četrtletje","2":"2. četrtletje","3":"3. četrtletje","4":"4. četrtletje"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1. četrtletje","2":"2. četrtletje","3":"3. četrtletje","4":"4. četrtletje"}}},"dayPeriods":{"format":{"abbreviated":{"am":"dop.","noon":"poldne","pm":"pop."},"narrow":{"am":"d","noon":"n","pm":"p"},"wide":{"am":"dop.","noon":"poldne","pm":"pop."}},"stand-alone":{"abbreviated":{"am":"dop.","noon":"poldne","pm":"pop."},"narrow":{"am":"d","noon":"n","pm":"p"},"wide":{"am":"dop.","noon":"poldne","pm":"pop."}}},"eras":{"wide":{"0":"pred našim štetjem","0-alt-variant":"BCE","1":"naše štetje","1-alt-variant":"po n. št."},"abbreviated":{"0":"pr. n. št.","0-alt-variant":"BCE","1":"po Kr.","1-alt-variant":"po n. št."},"narrow":{"0":"pr. n. št.","0-alt-variant":"BCE","1":"po Kr.","1-alt-variant":"po n. št."}},"dateFormats":{"full":"EEEE, dd. MMMM y","long":"dd. MMMM y","medium":"d. MMM y","short":"d. MM. yy"},"timeFormats":{"full":"HH.mm.ss zzzz","long":"HH.mm.ss z","medium":"HH.mm.ss","short":"HH.mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/sl/dateFields.json b/Punic/data/sl/dateFields.json new file mode 100644 index 0000000..793478b --- /dev/null +++ b/Punic/data/sl/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Doba"},"year":{"displayName":"Leto","relative-type--1":"lani","relative-type-0":"letos","relative-type-1":"naslednje leto","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} leto","relativeTimePattern-count-two":"čez {0} leti","relativeTimePattern-count-few":"čez {0} leta","relativeTimePattern-count-other":"čez {0} let"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} letom","relativeTimePattern-count-two":"pred {0} letoma","relativeTimePattern-count-few":"pred {0} leti","relativeTimePattern-count-other":"pred {0} leti"}},"year-short":{"displayName":"leto","relative-type--1":"lani","relative-type-0":"letos","relative-type-1":"naslednje leto","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} leto","relativeTimePattern-count-two":"čez {0} leti","relativeTimePattern-count-few":"čez {0} leta","relativeTimePattern-count-other":"čez {0} let"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} letom","relativeTimePattern-count-two":"pred {0} letoma","relativeTimePattern-count-few":"pred {0} leti","relativeTimePattern-count-other":"pred {0} leti"}},"year-narrow":{"displayName":"leto","relative-type--1":"lani","relative-type-0":"letos","relative-type-1":"naslednje leto","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} leto","relativeTimePattern-count-two":"čez {0} leti","relativeTimePattern-count-few":"čez {0} leta","relativeTimePattern-count-other":"čez {0} let"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} letom","relativeTimePattern-count-two":"pred {0} letoma","relativeTimePattern-count-few":"pred {0} leti","relativeTimePattern-count-other":"pred {0} leti"}},"quarter":{"displayName":"Četrtletje","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} četrtletje","relativeTimePattern-count-two":"čez {0} četrtletji","relativeTimePattern-count-few":"čez {0} četrtletja","relativeTimePattern-count-other":"čez {0} četrtletij"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} četrtletjem","relativeTimePattern-count-two":"pred {0} četrtletjema","relativeTimePattern-count-few":"pred {0} četrtletji","relativeTimePattern-count-other":"pred {0} četrtletji"}},"quarter-short":{"displayName":"četrtl.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} četrtletje","relativeTimePattern-count-two":"čez {0} četrtletji","relativeTimePattern-count-few":"čez {0} četrtletja","relativeTimePattern-count-other":"čez {0} četrtletja"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} četrtletjem","relativeTimePattern-count-two":"pred {0} četrtletjema","relativeTimePattern-count-few":"pred {0} četrtletji","relativeTimePattern-count-other":"pred {0} četrtletji"}},"quarter-narrow":{"displayName":"čet.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} četrtletje","relativeTimePattern-count-two":"čez {0} četrtletji","relativeTimePattern-count-few":"čez {0} četrtletja","relativeTimePattern-count-other":"čez {0} četrtletij"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} četrtletjem","relativeTimePattern-count-two":"pred {0} četrtletjema","relativeTimePattern-count-few":"pred {0} četrtletji","relativeTimePattern-count-other":"pred {0} četrtletji"}},"month":{"displayName":"Mesec","relative-type--1":"prejšnji mesec","relative-type-0":"ta mesec","relative-type-1":"naslednji mesec","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} mesec","relativeTimePattern-count-two":"čez {0} meseca","relativeTimePattern-count-few":"čez {0} mesece","relativeTimePattern-count-other":"čez {0} mesecev"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mesecem","relativeTimePattern-count-two":"pred {0} mesecema","relativeTimePattern-count-few":"pred {0} meseci","relativeTimePattern-count-other":"pred {0} meseci"}},"month-short":{"displayName":"mes.","relative-type--1":"prejšnji mesec","relative-type-0":"ta mesec","relative-type-1":"naslednji mesec","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} mesec","relativeTimePattern-count-two":"čez {0} meseca","relativeTimePattern-count-few":"čez {0} mesece","relativeTimePattern-count-other":"čez {0} mesece"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mesecem","relativeTimePattern-count-two":"pred {0} mesecema","relativeTimePattern-count-few":"pred {0} meseci","relativeTimePattern-count-other":"pred {0} meseci"}},"month-narrow":{"displayName":"mes.","relative-type--1":"prejšnji mesec","relative-type-0":"ta mesec","relative-type-1":"naslednji mesec","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} mes.","relativeTimePattern-count-two":"čez {0} mes.","relativeTimePattern-count-few":"čez {0} mes.","relativeTimePattern-count-other":"čez {0} mes."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} mes.","relativeTimePattern-count-two":"pred {0} mes.","relativeTimePattern-count-few":"pred {0} mes.","relativeTimePattern-count-other":"pred {0} mes."}},"week":{"displayName":"Teden","relative-type--1":"prejšnji teden","relative-type-0":"ta teden","relative-type-1":"naslednji teden","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} teden","relativeTimePattern-count-two":"čez {0} tedna","relativeTimePattern-count-few":"čez {0} tedne","relativeTimePattern-count-other":"čez {0} tednov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} tednom","relativeTimePattern-count-two":"pred {0} tednoma","relativeTimePattern-count-few":"pred {0} tedni","relativeTimePattern-count-other":"pred {0} tedni"}},"week-short":{"displayName":"ted.","relative-type--1":"prejšnji teden","relative-type-0":"ta teden","relative-type-1":"naslednji teden","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} teden","relativeTimePattern-count-two":"čez {0} tedna","relativeTimePattern-count-few":"čez {0} tedne","relativeTimePattern-count-other":"čez {0} tednov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} tednom","relativeTimePattern-count-two":"pred {0} tednoma","relativeTimePattern-count-few":"pred {0} tedni","relativeTimePattern-count-other":"pred {0} tedni"}},"week-narrow":{"displayName":"ted.","relative-type--1":"prejšnji teden","relative-type-0":"ta teden","relative-type-1":"naslednji teden","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} teden","relativeTimePattern-count-two":"čez {0} tedna","relativeTimePattern-count-few":"čez {0} tedne","relativeTimePattern-count-other":"čez {0} tednov"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} tednom","relativeTimePattern-count-two":"pred {0} tednoma","relativeTimePattern-count-few":"pred {0} tedni","relativeTimePattern-count-other":"pred {0} tedni"}},"day":{"displayName":"Dan","relative-type--1":"včeraj","relative-type--2":"predvčerajšnjim","relative-type-0":"danes","relative-type-1":"jutri","relative-type-2":"pojutrišnjem","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} dan","relativeTimePattern-count-two":"čez {0} dneva","relativeTimePattern-count-few":"čez {0} dni","relativeTimePattern-count-other":"čez {0} dni"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} dnevom","relativeTimePattern-count-two":"pred {0} dnevoma","relativeTimePattern-count-few":"pred {0} dnevi","relativeTimePattern-count-other":"pred {0} dnevi"}},"day-short":{"displayName":"Dan","relative-type--1":"včeraj","relative-type--2":"predvčerajšnjim","relative-type-0":"danes","relative-type-1":"jutri","relative-type-2":"pojutrišnjem","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} d","relativeTimePattern-count-two":"čez {0} d","relativeTimePattern-count-few":"čez {0} d","relativeTimePattern-count-other":"čez {0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} d","relativeTimePattern-count-two":"pred {0} d","relativeTimePattern-count-few":"pred {0} d","relativeTimePattern-count-other":"pred {0} d"}},"day-narrow":{"displayName":"Dan","relative-type--1":"včeraj","relative-type--2":"predvčerajšnjim","relative-type-0":"danes","relative-type-1":"jutri","relative-type-2":"pojutrišnjem","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} dan","relativeTimePattern-count-two":"čez {0} d","relativeTimePattern-count-few":"čez {0} d","relativeTimePattern-count-other":"čez {0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} d","relativeTimePattern-count-two":"pred {0} d","relativeTimePattern-count-few":"pred {0} d","relativeTimePattern-count-other":"pred {0} d"}},"weekday":{"displayName":"Dan v tednu"},"sun":{"relative-type--1":"prejšnjo nedeljo","relative-type-0":"to nedeljo","relative-type-1":"naslednjo nedeljo"},"sun-short":{"relative-type--1":"prejšnjo ned.","relative-type-0":"to ned.","relative-type-1":"naslednjo ned."},"sun-narrow":{"relative-type--1":"prejš. ned.","relative-type-0":"to ned.","relative-type-1":"nasl. ned."},"mon":{"relative-type--1":"prejšnji ponedeljek","relative-type-0":"ta ponedeljek","relative-type-1":"naslednji ponedeljek"},"mon-short":{"relative-type--1":"prejšnji pon.","relative-type-0":"ta pon.","relative-type-1":"naslednji pon."},"mon-narrow":{"relative-type--1":"prejš. pon.","relative-type-0":"ta pon.","relative-type-1":"nasl. pon."},"tue":{"relative-type--1":"Prejšnji torek","relative-type-0":"Ta torek","relative-type-1":"Naslednji torek"},"tue-short":{"relative-type--1":"Prejšnji tor.","relative-type-0":"Ta tor.","relative-type-1":"Naslednji tor."},"tue-narrow":{"relative-type--1":"Prejš. tor.","relative-type-0":"Ta tor.","relative-type-1":"Nasl. tor."},"wed":{"relative-type--1":"Prejšnjo sredo","relative-type-0":"To sredo","relative-type-1":"Naslednjo sredo"},"wed-short":{"relative-type--1":"Prejšnjo sr.","relative-type-0":"To sr.","relative-type-1":"Naslednjo sr."},"wed-narrow":{"relative-type--1":"Prejš. sr.","relative-type-0":"To sr.","relative-type-1":"Nasl. sr."},"thu":{"relative-type--1":"Prejšnji četrtek","relative-type-0":"Ta četrtek","relative-type-1":"Naslednji četrtek"},"thu-short":{"relative-type--1":"Prejšnji čet.","relative-type-0":"Ta čet.","relative-type-1":"Naslednji čet."},"thu-narrow":{"relative-type--1":"Prejš. čet.","relative-type-0":"Ta čet.","relative-type-1":"Nasl. čet."},"fri":{"relative-type--1":"Prejšnji petek","relative-type-0":"Ta petek","relative-type-1":"Naslednji petek"},"fri-short":{"relative-type--1":"Prejšnji pet.","relative-type-0":"Ta pet.","relative-type-1":"Naslednji pet."},"fri-narrow":{"relative-type--1":"Prejš. pet.","relative-type-0":"Ta pet.","relative-type-1":"Nasl. pet."},"sat":{"relative-type--1":"Prejšnjo soboto","relative-type-0":"To soboto","relative-type-1":"Naslednjo soboto"},"sat-short":{"relative-type--1":"Prejšnjo sob.","relative-type-0":"To sob.","relative-type-1":"Naslednjo sob."},"sat-narrow":{"relative-type--1":"Prejš. sob.","relative-type-0":"To sob.","relative-type-1":"Nasl. sob."},"dayperiod":{"displayName":"Čas dneva"},"hour":{"displayName":"Ura","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} h","relativeTimePattern-count-two":"čez {0} h","relativeTimePattern-count-few":"čez {0} h","relativeTimePattern-count-other":"čez {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} h","relativeTimePattern-count-two":"pred {0} h","relativeTimePattern-count-few":"pred {0} h","relativeTimePattern-count-other":"pred {0} h"}},"hour-short":{"displayName":"ura","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} h","relativeTimePattern-count-two":"čez {0} h","relativeTimePattern-count-few":"čez {0} h","relativeTimePattern-count-other":"čez {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} h","relativeTimePattern-count-two":"pred {0} h","relativeTimePattern-count-few":"pred {0} h","relativeTimePattern-count-other":"pred {0} h"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} h","relativeTimePattern-count-two":"čez {0} h","relativeTimePattern-count-few":"čez {0} h","relativeTimePattern-count-other":"čez {0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} h","relativeTimePattern-count-two":"pred {0} h","relativeTimePattern-count-few":"pred {0} h","relativeTimePattern-count-other":"pred {0} h"}},"minute":{"displayName":"Minuta","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} min.","relativeTimePattern-count-two":"čez {0} min.","relativeTimePattern-count-few":"čez {0} min.","relativeTimePattern-count-other":"čez {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} min.","relativeTimePattern-count-two":"pred {0} min.","relativeTimePattern-count-few":"pred {0} min.","relativeTimePattern-count-other":"pred {0} min."}},"minute-short":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} min","relativeTimePattern-count-two":"čez {0} min","relativeTimePattern-count-few":"čez {0} min","relativeTimePattern-count-other":"čez {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} min","relativeTimePattern-count-two":"pred {0} min","relativeTimePattern-count-few":"pred {0} min","relativeTimePattern-count-other":"pred {0} min"}},"minute-narrow":{"displayName":"min.","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} min","relativeTimePattern-count-two":"čez {0} min","relativeTimePattern-count-few":"čez {0} min","relativeTimePattern-count-other":"čez {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} min","relativeTimePattern-count-two":"pred {0} min","relativeTimePattern-count-few":"pred {0} min","relativeTimePattern-count-other":"pred {0} min"}},"second":{"displayName":"Sekunda","relative-type-0":"zdaj","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} sekundo","relativeTimePattern-count-two":"čez {0} sekundi","relativeTimePattern-count-few":"čez {0} sekunde","relativeTimePattern-count-other":"čez {0} sekund"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} sekundo","relativeTimePattern-count-two":"pred {0} sekundama","relativeTimePattern-count-few":"pred {0} sekundami","relativeTimePattern-count-other":"pred {0} sekundami"}},"second-short":{"displayName":"sek.","relative-type-0":"zdaj","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} s","relativeTimePattern-count-two":"čez {0} s","relativeTimePattern-count-few":"čez {0} s","relativeTimePattern-count-other":"čez {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} s","relativeTimePattern-count-two":"pred {0} s","relativeTimePattern-count-few":"pred {0} s","relativeTimePattern-count-other":"pred {0} s"}},"second-narrow":{"displayName":"s","relative-type-0":"zdaj","relativeTime-type-future":{"relativeTimePattern-count-one":"čez {0} s","relativeTimePattern-count-two":"čez {0} s","relativeTimePattern-count-few":"čez {0} s","relativeTimePattern-count-other":"čez {0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"pred {0} s","relativeTimePattern-count-two":"pred {0} s","relativeTimePattern-count-few":"pred {0} s","relativeTimePattern-count-other":"pred {0} s"}},"zone":{"displayName":"Časovni pas"}} \ No newline at end of file diff --git a/Punic/data/sl/languages.json b/Punic/data/sl/languages.json new file mode 100644 index 0000000..29b3da6 --- /dev/null +++ b/Punic/data/sl/languages.json @@ -0,0 +1 @@ +{"aa":"afarščina","ab":"abhaščina","ace":"ačejščina","ach":"ačolijščina","ada":"adangmejščina","ady":"adigejščina","ae":"avestijščina","aeb":"aeb","af":"afrikanščina","afh":"afrihili","agq":"aghemščina","ain":"ainujščina","ak":"akanščina","akk":"akadščina","akz":"akz","ale":"aleutščina","aln":"aln","alt":"južna altajščina","am":"amharščina","an":"aragonščina","ang":"stara angleščina","anp":"angikaščina","ar":"arabščina","ar-001":"sodobna standardna arabščina","arc":"aramejščina","arn":"aravkanščina","aro":"aro","arp":"arapaščina","arq":"arq","arw":"aravaščina","ary":"ary","arz":"arz","as":"asamščina","asa":"asujščina","ase":"ase","ast":"asturijščina","av":"avarščina","avk":"avk","awa":"avadščina","ay":"ajmarščina","az":"azerbajdžanščina","az-alt-short":"azerščina","azb":"azb","ba":"baškirščina","bal":"beludžijščina","ban":"balijščina","bar":"bar","bas":"basa","bax":"bax","bbc":"bbc","bbj":"bbj","be":"beloruščina","bej":"bedža","bem":"bemba","bew":"bew","bez":"benajščina","bfd":"bfd","bfq":"bfq","bg":"bolgarščina","bho":"bodžpuri","bi":"bislamščina","bik":"bikolski jezik","bin":"edo","bjn":"bjn","bkm":"bkm","bla":"siksika","bm":"bambarščina","bn":"bengalščina","bo":"tibetanščina","bpy":"bpy","bqi":"bqi","br":"bretonščina","bra":"bradžbakanščina","brh":"brh","brx":"bodojščina","bs":"bosanščina","bss":"bss","bua":"burjatščina","bug":"buginščina","bum":"bum","byn":"blinščina","byv":"byv","ca":"katalonščina","cad":"kadoščina","car":"karibski jezik","cay":"cay","cch":"cch","ce":"čečenščina","ceb":"sebuanščina","cgg":"čigajščina","ch":"čamorščina","chb":"čibčevščina","chg":"čagatajščina","chk":"trukeščina","chm":"marijščina","chn":"činuški žargon","cho":"čoktavščina","chp":"čipevščina","chr":"čerokeščina","chy":"čejenščina","ckb":"soranska kurdščina","co":"korziščina","cop":"koptščina","cps":"cps","cr":"krijščina","crh":"krimska tatarščina","cs":"češčina","csb":"kašubščina","cu":"stara cerkvena slovanščina","cv":"čuvaščina","cy":"valižanščina","da":"danščina","dak":"dakotščina","dar":"darginščina","dav":"taitajščina","de":"nemščina","de-AT":"avstrijska nemščina","de-CH":"visoka nemščina (Švica)","del":"delavarščina","den":"slavejščina","dgr":"dogrib","din":"dinka","dje":"zarmajščina","doi":"dogri","dsb":"dolnja lužiška srbščina","dtp":"dtp","dua":"duala","dum":"srednja nizozemščina","dv":"diveščina","dyo":"jola-fonjiščina","dyu":"diula","dz":"dzonka","dzg":"dzg","ebu":"embujščina","ee":"evenščina","efi":"efiščina","egl":"egl","egy":"stara egipčanščina","eka":"ekajuk","el":"grščina","elx":"elamščina","en":"angleščina","en-AU":"avstralska angleščina","en-CA":"kanadska angleščina","en-GB":"angleščina (VB)","en-GB-alt-short":"angleščina (ZK)","en-US":"angleščina (ZDA)","en-US-alt-short":"angleščina (ZDA)","enm":"srednja angleščina","eo":"esperanto","es":"španščina","es-419":"latinskoameriška španščina","es-ES":"iberska španščina","es-MX":"es_MX","esu":"esu","et":"estonščina","eu":"baskovščina","ewo":"evondovščina","ext":"ext","fa":"perzijščina","fan":"fangijščina","fat":"fantijščina","ff":"fulščina","fi":"finščina","fil":"filipinščina","fit":"fit","fj":"fidžijščina","fo":"ferščina","fon":"fonščina","fr":"francoščina","fr-CA":"kanadska francoščina","fr-CH":"švicarska francoščina","frc":"frc","frm":"srednja francoščina","fro":"stara francoščina","frp":"frp","frr":"severna frizijščina","frs":"vzhodna frizijščina","fur":"furlanščina","fy":"frizijščina","ga":"irščina","gaa":"ga","gag":"gagavščina","gan":"gan","gay":"gajščina","gba":"gbajščina","gbz":"gbz","gd":"škotska gelščina","gez":"etiopščina","gil":"kiribatščina","gl":"galicijščina","glk":"glk","gmh":"srednja visoka nemščina","gn":"gvaranijščina","goh":"stara visoka nemščina","gom":"gom","gon":"gondi","gor":"gorontalščina","got":"gotščina","grb":"grebščina","grc":"stara grščina","gsw":"nemščina (Švica)","gu":"gudžaratščina","guc":"guc","gur":"gur","guz":"gusijščina","gv":"manščina","gwi":"gwi","ha":"havščina","hai":"haidščina","hak":"hak","haw":"havajščina","he":"hebrejščina","hi":"hindujščina","hif":"hif","hil":"hiligajnonščina","hit":"hetitščina","hmn":"hmonščina","ho":"hiri motu","hr":"hrvaščina","hsb":"gornja lužiška srbščina","hsn":"hsn","ht":"haitijska kreolščina","hu":"madžarščina","hup":"hupa","hy":"armenščina","hz":"herero","ia":"interlingva","iba":"ibanščina","ibb":"ibb","id":"indonezijščina","ie":"interlingve","ig":"igboščina","ii":"sečuanska jiščina","ik":"inupiaščina","ilo":"ilokanščina","inh":"inguščina","io":"ido","is":"islandščina","it":"italijanščina","iu":"inuktitutščina","izh":"izh","ja":"japonščina","jam":"jam","jbo":"lojban","jgo":"ngomba","jmc":"mačamejščina","jpr":"judovska perzijščina","jrb":"judovska arabščina","jut":"jut","jv":"javanščina","ka":"gruzinščina","kaa":"karakalpaščina","kab":"kabilščina","kac":"kačinščina","kaj":"kaj","kam":"kambaščina","kaw":"kavi","kbd":"kabardinščina","kbl":"kbl","kcg":"tjapska nigerijščina","kde":"makondščina","kea":"zelenortskootoška kreolščina","ken":"ken","kfo":"kfo","kg":"kongovščina","kgp":"kgp","kha":"kasi","kho":"kotanščina","khq":"koyra chiini","khw":"khw","ki":"kikujščina","kiu":"kiu","kj":"kvanjama","kk":"kazaščina","kkj":"kkj","kl":"grenlandščina","kln":"kalenjinščina","km":"kmerščina","kmb":"kimbundu","kn":"kanada","ko":"korejščina","koi":"komi-permjaščina","kok":"konkanščina","kos":"kosrajščina","kpe":"kpelejščina","kr":"kanurščina","krc":"karačaj-balkarščina","kri":"kri","krj":"krj","krl":"karelščina","kru":"kuruk","ks":"kašmirščina","ksb":"shambala","ksf":"bafia","ksh":"ksh","ku":"kurdščina","kum":"kumiščina","kut":"kutenajščina","kv":"komijščina","kw":"kornijščina","ky":"kirgiščina","la":"latinščina","lad":"ladinščina","lag":"langijščina","lah":"landa","lam":"lamba","lb":"luksemburščina","lez":"lezginščina","lfn":"lfn","lg":"ganda","li":"limburščina","lij":"lij","liv":"liv","lkt":"lakotščina","lmo":"lmo","ln":"lingala","lo":"laoščina","lol":"mongo","loz":"lozi","lt":"litovščina","ltg":"ltg","lu":"luba-katanga","lua":"luba-lulua","lui":"luisenščina","lun":"lunda","luo":"luo","lus":"lushai","luy":"luhijščina","lv":"latvijščina","lzh":"lzh","lzz":"lzz","mad":"madurščina","maf":"maf","mag":"magadščina","mai":"maitili","mak":"makasarščina","man":"mandingo","mas":"masajščina","mde":"mde","mdf":"mokšavščina","mdr":"mandarščina","men":"mende","mer":"meru","mfe":"morisjenščina","mg":"malagaščina","mga":"srednja irščina","mgh":"makuva-meto","mgo":"meta","mh":"marshallovščina","mi":"maorščina","mic":"mikmaščina","min":"minangkabau","mk":"makedonščina","ml":"malajalamščina","mn":"mongolščina","mnc":"mandžurščina","mni":"manipurščina","moh":"mohoščina","mos":"mosijščina","mr":"maratščina","mrj":"mrj","ms":"malajščina","mt":"malteščina","mua":"mundang","mul":"več jezikov","mus":"mus","mwl":"mirandeščina","mwr":"marvarščina","mwv":"mwv","my":"burmanščina","mye":"mye","myv":"erzjanščina","mzn":"mzn","na":"naurujščina","nan":"nan","nap":"napolitanščina","naq":"khoekhoe","nb":"knjižna norveščina","nd":"severna ndebelščina","nds":"nizka nemščina","ne":"nepalščina","new":"nevarščina","ng":"ng","nia":"niaščina","niu":"niuejščina","njo":"njo","nl":"nizozemščina","nl-BE":"flamščina","nmg":"kwasio","nn":"novonorveščina","nnh":"nnh","no":"norveščina","nog":"nogajščina","non":"stara nordijščina","nov":"nov","nqo":"n’ko","nr":"južna ndebelščina","nso":"severna sotščina","nus":"nuerščina","nv":"navajščina","nwc":"klasična nevarščina","ny":"njanščina","nym":"njamveščina","nyn":"njankole","nyo":"njoro","nzi":"nzima","oc":"okcitanščina","oj":"anašinabščina","om":"oromo","or":"orijščina","os":"osetinščina","osa":"osage","ota":"otomanska turščina","pa":"pandžabščina","pag":"pangasinanščina","pal":"pal","pam":"pampanščina","pap":"papiamentu","pau":"palavanščina","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"stara perzijščina","pfl":"pfl","phn":"feničanščina","pi":"palijščina","pl":"poljščina","pms":"pms","pnt":"pnt","pon":"ponpejščina","prg":"prg","pro":"stara provansalščina","ps":"paštunščina","pt":"portugalščina","pt-BR":"brazilska portugalščina","pt-PT":"iberska portugalščina","qu":"kečuanščina","quc":"quiche","qug":"qug","raj":"radžastanščina","rap":"rapanujščina","rar":"rarotongščina","rgn":"rgn","rif":"rif","rm":"retoromanščina","rn":"rundščina","ro":"romunščina","ro-MD":"moldavščina","rof":"rombo","rom":"romščina","root":"root","rtm":"rtm","ru":"ruščina","rue":"rue","rug":"rug","rup":"aromunščina","rw":"ruandščina","rwk":"rwa","sa":"sanskrt","sad":"sad","sah":"jakutščina","sam":"samaritanska aramejščina","saq":"samburščina","sas":"sasaščina","sat":"santalščina","saz":"saz","sba":"sba","sbp":"sangujščina","sc":"sardinščina","scn":"sicilijanščina","sco":"škotščina","sd":"sindščina","sdc":"sdc","se":"severna samijščina","see":"see","seh":"sena","sei":"sei","sel":"selkupščina","ses":"koyraboro senni","sg":"sango","sga":"stara irščina","sgs":"sgs","sh":"srbohrvaščina","shi":"tahelitska berberščina","shn":"šanščina","shu":"shu","si":"singalščina","sid":"sidamščina","sk":"slovaščina","sl":"slovenščina","sli":"sli","sly":"sly","sm":"samoanščina","sma":"južna samijščina","smj":"luleška samijščina","smn":"inarska samijščina","sms":"samijščina Skolt","sn":"šonščina","snk":"snk","so":"somalščina","sog":"sog","sq":"albanščina","sr":"srbščina","srn":"surinamska kreolščina","srr":"sererščina","ss":"svazijščina","ssy":"ssy","st":"sesoto","stq":"stq","su":"sundanščina","suk":"sukuma","sus":"susujščina","sux":"sumerščina","sv":"švedščina","sw":"svahili","swb":"šikomor","swc":"svahili (Kongo)","syc":"klasična sirščina","syr":"sirščina","szl":"szl","ta":"tamilščina","tcy":"tcy","te":"telugijščina","tem":"temnejščina","teo":"teso","ter":"ter","tet":"tetumščina","tg":"tadžiščina","th":"tajščina","ti":"tigrajščina","tig":"tigrejščina","tiv":"tivščina","tk":"turkmenščina","tkl":"tokelavščina","tkr":"tkr","tl":"tagalogščina","tlh":"klingonščina","tli":"tlingitščina","tly":"tly","tmh":"tamajaščina","tn":"cvanščina","to":"tongščina","tog":"malavijska tongščina","tpi":"tok pisin","tr":"turščina","tru":"tru","trv":"trv","ts":"tsonga","tsd":"tsd","tsi":"tsimščina","tt":"tatarščina","ttt":"ttt","tum":"tumbukščina","tvl":"tuvalujščina","tw":"tvi","twq":"tasawaq","ty":"tahitščina","tyv":"tuvinščina","tzm":"tamašek (srednji atlas)","udm":"udmurtščina","ug":"ujgurščina","uga":"ugaritski jezik","uk":"ukrajinščina","umb":"umbundščina","und":"neznan ali neveljaven jezik","ur":"urdujščina","uz":"uzbeščina","vai":"vajščina","ve":"venda","vec":"vec","vep":"vep","vi":"vietnamščina","vls":"vls","vmf":"vmf","vo":"volapuk","vot":"votjaščina","vro":"vro","vun":"vunjo","wa":"valonščina","wae":"wae","wal":"valamščina","war":"varajščina","was":"vašajščina","wo":"volofščina","wuu":"wuu","xal":"kalmiščina","xh":"xhosa","xmf":"xmf","xog":"sogščina","yao":"jaojščina","yap":"japščina","yav":"yav","ybb":"ybb","yi":"jidiš","yo":"jorubščina","yrl":"yrl","yue":"kantonščina","za":"za","zap":"zapoteščina","zbl":"znakovni jezik Bliss","zea":"zea","zen":"zenaščina","zgh":"standardni maroški tamazig","zh":"kitajščina","zh-Hans":"poenostavljena kitajščina","zh-Hant":"tradicionalna kitajščina","zu":"zulujščina","zun":"zunijščina","zxx":"brez jezikoslovne vsebine","zza":"zazajščina"} \ No newline at end of file diff --git a/Punic/data/sl/listPatterns.json b/Punic/data/sl/listPatterns.json new file mode 100644 index 0000000..0c622c2 --- /dev/null +++ b/Punic/data/sl/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s in %2$s","2":"%1$s in %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s in %2$s","2":"%1$s in %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s in %2$s","2":"%1$s in %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s in %2$s","2":"%1$s in %2$s"}} \ No newline at end of file diff --git a/Punic/data/sl/localeDisplayNames.json b/Punic/data/sl/localeDisplayNames.json new file mode 100644 index 0000000..c97fadb --- /dev/null +++ b/Punic/data/sl/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"koledar","colAlternate":"Razvrščanje s prezrtimi znaki","colBackwards":"Razvrščanje z obratnimi naglasi","colCaseFirst":"Razvrščanje velike črke/male črke","colCaseLevel":"Razvrščanje, občutljivo na velike/male črke","colHiraganaQuaternary":"Razvrščanje kana","colNormalization":"Normalizirano razvrščanje","colNumeric":"Številsko razvrščanje","colStrength":"Moč razvrščanja","collation":"razvrščanje","currency":"valuta","numbers":"Številke","timezone":"Časovni pas","va":"Različica območnih nastavitev","variableTop":"Razvrščanje kot simboli","x":"Private-Use"},"types":{"numbers":{"vaii":"Številke vai"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"kitajski državni koledar"},"colStrength":{"tertiary":"Razvrščanje po naglasih/velikih črkah/malih črkah/širini"},"colCaseFirst":{"upper":"Razvrščanje velikih črk najprej"},"colBackwards":{"yes":"Obratno razvrščanje naglasov"},"colCaseLevel":{"yes":"Razvrščanje ob upoštevanju velikih/malih črk"},"colHiraganaQuaternary":{"yes":"Razvrščanje kana različno"},"colNormalization":{"yes":"Normalizirano razvrščanje Unicode"},"colNumeric":{"yes":"Številsko razvrščanje števk"},"colAlternate":{"shifted":"Razvrščanje s prezrtjem simbolov"}},"codePatterns":{"language":"Jezik: %1$s","script":"%1$s","territory":"Regija: %1$s"}} \ No newline at end of file diff --git a/Punic/data/sl/numbers.json b/Punic/data/sl/numbers.json new file mode 100644 index 0000000..dfe4fe9 --- /dev/null +++ b/Punic/data/sl/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"e","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/sl/territories.json b/Punic/data/sl/territories.json new file mode 100644 index 0000000..5e048bc --- /dev/null +++ b/Punic/data/sl/territories.json @@ -0,0 +1 @@ +{"001":"Svet","002":"Afrika","003":"Severna Amerika","005":"Južna Amerika","009":"Oceanija","011":"Zahodna Afrika","013":"Srednja Amerika","014":"Vzhodna Afrika","015":"Severna Afrika","017":"Srednja Afrika","018":"Južna Afrika","019":"Amerike","021":"severnoameriška celina","029":"Karibi","030":"Vzhodna Azija","034":"Južna Azija","035":"Jugovzhodna Azija","039":"Južna Evropa","053":"Avstralija in Nova Zelandija","054":"Melanezija","057":"mikronezijska regija","061":"Polinezija","142":"Azija","143":"Osrednja Azija","145":"Zahodna Azija","150":"Evropa","151":"Vzhodna Evropa","154":"Severna Evropa","155":"Zahodna Evropa","419":"Latinska Amerika","AC":"Otok Ascension","AD":"Andora","AE":"Združeni arabski emirati","AF":"Afganistan","AG":"Antigva in Barbuda","AI":"Angvila","AL":"Albanija","AM":"Armenija","AN":"Nizozemski Antili","AO":"Angola","AQ":"Antarktika","AR":"Argentina","AS":"Ameriška Samoa","AT":"Avstrija","AU":"Avstralija","AW":"Aruba","AX":"Ålandski otoki","AZ":"Azerbajdžan","BA":"Bosna in Hercegovina","BB":"Barbados","BD":"Bangladeš","BE":"Belgija","BF":"Burkina Faso","BG":"Bolgarija","BH":"Bahrajn","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermudi","BN":"Brunej","BO":"Bolivija","BQ":"Nizozemski Karibi","BR":"Brazilija","BS":"Bahami","BT":"Butan","BV":"Bouvetov otok","BW":"Bocvana","BY":"Belorusija","BZ":"Belize","CA":"Kanada","CC":"Kokosovi otoki","CD":"Demokratična republika Kongo","CD-alt-variant":"Kongo (Demokratična republika Kongo)","CF":"Centralnoafriška republika","CG":"Kongo - Brazzaville","CG-alt-variant":"Kongo (Republika)","CH":"Švica","CI":"Slonokoščena obala","CI-alt-variant":"CI","CK":"Cookovi otoki","CL":"Čile","CM":"Kamerun","CN":"Kitajska","CO":"Kolumbija","CP":"Otok Clipperton","CR":"Kostarika","CU":"Kuba","CV":"Zelenortski otoki","CW":"Curaçao","CX":"Božični otok","CY":"Ciper","CZ":"Češka","DE":"Nemčija","DG":"Diego Garcia","DJ":"Džibuti","DK":"Danska","DM":"Dominika","DO":"Dominikanska republika","DZ":"Alžirija","EA":"Ceuta in Melilla","EC":"Ekvador","EE":"Estonija","EG":"Egipt","EH":"Zahodna Sahara","ER":"Eritreja","ES":"Španija","ET":"Etiopija","EU":"Evropska unija","FI":"Finska","FJ":"Fidži","FK":"Falklandski otoki","FK-alt-variant":"Falklandski otoki (Malvinski otoki)","FM":"Mikronezija","FO":"Ferski otoki","FR":"Francija","GA":"Gabon","GB":"Velika Britanija","GB-alt-short":"ZK","GD":"Grenada","GE":"Gruzija","GF":"Francoska Gvajana","GG":"Guernsey","GH":"Gana","GI":"Gibraltar","GL":"Grenlandija","GM":"Gambija","GN":"Gvineja","GP":"Gvadalupe","GQ":"Ekvatorialna Gvineja","GR":"Grčija","GS":"Južna Georgia in Južni Sandwichevi otoki","GT":"Gvatemala","GU":"Guam","GW":"Gvineja Bissau","GY":"Gvajana","HK":"Posebno administrativno območje LR Kitajske Hong Kong","HK-alt-short":"Hongkong","HM":"Heardov otok in McDonaldovi otoki","HN":"Honduras","HR":"Hrvaška","HT":"Haiti","HU":"Madžarska","IC":"Kanarski otoki","ID":"Indonezija","IE":"Irska","IL":"Izrael","IM":"Otok Man","IN":"Indija","IO":"Britansko ozemlje v Indijskem oceanu","IQ":"Irak","IR":"Iran","IS":"Islandija","IT":"Italija","JE":"Jersey","JM":"Jamajka","JO":"Jordanija","JP":"Japonska","KE":"Kenija","KG":"Kirgizistan","KH":"Kambodža","KI":"Kiribati","KM":"Komori","KN":"Saint Kitts in Nevis","KP":"Severna Koreja","KR":"Južna Koreja","KW":"Kuvajt","KY":"Kajmanski otoki","KZ":"Kazahstan","LA":"Laos","LB":"Libanon","LC":"Saint Lucia","LI":"Lihtenštajn","LK":"Šrilanka","LR":"Liberija","LS":"Lesoto","LT":"Litva","LU":"Luksemburg","LV":"Latvija","LY":"Libija","MA":"Maroko","MC":"Monako","MD":"Moldavija","ME":"Črna gora","MF":"Saint Martin","MG":"Madagaskar","MH":"Marshallovi otoki","MK":"Makedonija","MK-alt-variant":"Makedonija (FYROM)","ML":"Mali","MM":"Mjanmar (Burma)","MN":"Mongolija","MO":"Posebno administrativno območje LR Kitajske Macao","MO-alt-short":"Macao","MP":"Severni Marianski otoki","MQ":"Martinik","MR":"Mavretanija","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldivi","MW":"Malavi","MX":"Mehika","MY":"Malezija","MZ":"Mozambik","NA":"Namibija","NC":"Nova Kaledonija","NE":"Niger","NF":"Norfolški otok","NG":"Nigerija","NI":"Nikaragva","NL":"Nizozemska","NO":"Norveška","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nova Zelandija","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Francoska Polinezija","PG":"Papua Nova Gvineja","PH":"Filipini","PK":"Pakistan","PL":"Poljska","PM":"Saint Pierre in Miquelon","PN":"Pitcairn","PR":"Portoriko","PS":"Palestinsko ozemlje","PS-alt-short":"Palestina","PT":"Portugalska","PW":"Palau","PY":"Paragvaj","QA":"Katar","QO":"Ostala oceanija","RE":"Reunion","RO":"Romunija","RS":"Srbija","RU":"Rusija","RW":"Ruanda","SA":"Saudova Arabija","SB":"Salomonovi otoki","SC":"Sejšeli","SD":"Sudan","SE":"Švedska","SG":"Singapur","SH":"Sveta Helena","SI":"Slovenija","SJ":"Svalbard in Jan Mayen","SK":"Slovaška","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalija","SR":"Surinam","SS":"Južni Sudan","ST":"Sao Tome in Principe","SV":"Salvador","SX":"Sint Maarten","SY":"Sirija","SZ":"Svazi","TA":"Tristan da Cunha","TC":"Otočji Turks in Caicos","TD":"Čad","TF":"Francosko južno ozemlje","TG":"Togo","TH":"Tajska","TJ":"Tadžikistan","TK":"Tokelau","TL":"Vzhodni Timor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunizija","TO":"Tonga","TR":"Turčija","TT":"Trinidad in Tobago","TV":"Tuvalu","TW":"Tajvan","TZ":"Tanzanija","UA":"Ukrajina","UG":"Uganda","UM":"Druga ameriška ozemlja v Tihem oceanu","US":"Združene države Amerike","US-alt-short":"ZDA","UY":"Urugvaj","UZ":"Uzbekistan","VA":"Vatikan","VC":"Saint Vincent in Grenadine","VE":"Venezuela","VG":"Britanski Deviški otoki","VI":"Ameriški Deviški otoki","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis in Futuna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Južnoafriška republika","ZM":"Zambija","ZW":"Zimbabve","ZZ":"Neznano ali neveljavno območje"} \ No newline at end of file diff --git a/Punic/data/sl/timeZoneNames.json b/Punic/data/sl/timeZoneNames.json new file mode 100644 index 0000000..1d67c46 --- /dev/null +++ b/Punic/data/sl/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH.mm;-HH.mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s čas","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Kajman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Kordova"},"Costa_Rica":{"exemplarCity":"Kostarika"},"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":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepe"},"El_Salvador":{"exemplarCity":"Salvador"},"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":"Gvadelup"},"Guatemala":{"exemplarCity":"Gvatemala"},"Guayaquil":{"exemplarCity":"Guayaquil"},"Guyana":{"exemplarCity":"Gvajana"},"Halifax":{"exemplarCity":"Halifax"},"Havana":{"exemplarCity":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamajka"},"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":"Martinik"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlan"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Merida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Ciudad Mexico"},"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"},"Center":{"exemplarCity":"Center, Severna Dakota"},"New_Salem":{"exemplarCity":"New Salem, Severna 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":"Portoriko"},"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":"Sao 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":"Azori"},"Bermuda":{"exemplarCity":"Bermudi"},"Canary":{"exemplarCity":"Kanarski otoki"},"Cape_Verde":{"exemplarCity":"Zelenortski otoki"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Južna Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andora"},"Athens":{"exemplarCity":"Atene"},"Belgrade":{"exemplarCity":"Beograd"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bruselj"},"Bucharest":{"exemplarCity":"Bukarešta"},"Budapest":{"exemplarCity":"Budimpešta"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Kišinjev"},"Copenhagen":{"exemplarCity":"Köbenhavn"},"Dublin":{"long":{"daylight":"irski poletni čas"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Otok Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kijev"},"Lisbon":{"exemplarCity":"Lizbona"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"britanski poletni čas"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luksemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskva"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Pariz"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praga"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rim"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Sarajevo"},"Simferopol":{"exemplarCity":"Simferopol"},"Skopje":{"exemplarCity":"Skopje"},"Sofia":{"exemplarCity":"Sofija"},"Stockholm":{"exemplarCity":"Stockholm"},"Tallinn":{"exemplarCity":"Talin"},"Tirane":{"exemplarCity":"Tirana"},"Uzhgorod":{"exemplarCity":"Užgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikan"},"Vienna":{"exemplarCity":"Dunaj"},"Vilnius":{"exemplarCity":"Vilna"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varšava"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporožje"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidžan"},"Accra":{"exemplarCity":"Akra"},"Addis_Ababa":{"exemplarCity":"Adis Abeba"},"Algiers":{"exemplarCity":"Alžir"},"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":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Džibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Kartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinšasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbaši"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadišu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almati"},"Amman":{"exemplarCity":"Aman"},"Anadyr":{"exemplarCity":"Anadir"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aktobe"},"Ashgabat":{"exemplarCity":"Ašgabat"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrajn"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Bejrut"},"Bishkek":{"exemplarCity":"Biškek"},"Brunei":{"exemplarCity":"Brunej"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Čojbalsan"},"Chongqing":{"exemplarCity":"Čongčing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damask"},"Dhaka":{"exemplarCity":"Daka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubaj"},"Dushanbe":{"exemplarCity":"Dušanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Džakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jeruzalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamčatka"},"Karachi":{"exemplarCity":"Karači"},"Kashgar":{"exemplarCity":"Kašgar"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Handiga"},"Krasnoyarsk":{"exemplarCity":"Krasnojarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuvajt"},"Macau":{"exemplarCity":"Macao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makasar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muškat"},"Nicosia":{"exemplarCity":"Nikozija"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Uralsk"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pjongjang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kizlorda"},"Rangoon":{"exemplarCity":"Rangun"},"Riyadh":{"exemplarCity":"Rijad"},"Saigon":{"exemplarCity":"Hošiminh"},"Sakhalin":{"exemplarCity":"Sahalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Šangaj"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Tajpej"},"Tashkent":{"exemplarCity":"Taškent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokio"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Urumči"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Erevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Božični otok"},"Cocos":{"exemplarCity":"Kokosovi otoki"},"Comoro":{"exemplarCity":"Komori"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldivi"},"Mauritius":{"exemplarCity":"Mauritius"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunion"}},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Velikonočni otok"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fidži"},"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":"Vostok"}},"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":"neznano"}}},"metazone":{"Afghanistan":{"long":{"standard":"Afganistanski čas"}},"Africa_Central":{"long":{"standard":"Centralnoafriški čas"}},"Africa_Eastern":{"long":{"standard":"Vzhodnoafriški čas"}},"Africa_Southern":{"long":{"standard":"Južnoafriški čas"}},"Africa_Western":{"long":{"generic":"Zahodnoafriški čas","standard":"Zahodnoafriški standardni čas","daylight":"Zahodnoafriški poletni čas"}},"Alaska":{"long":{"generic":"Aljaški čas","standard":"Aljaški standardni čas","daylight":"Aljaški poletni čas"}},"Amazon":{"long":{"generic":"Amazonski čas","standard":"Amazonski standardni čas","daylight":"Amazonski poletni čas"}},"America_Central":{"long":{"generic":"Centralni čas","standard":"Centralni standardni čas","daylight":"Centralni poletni čas"}},"America_Eastern":{"long":{"generic":"Vzhodni čas","standard":"Vzhodni standardni čas","daylight":"Vzhodni poletni čas"}},"America_Mountain":{"long":{"generic":"Gorski čas","standard":"Gorski standardni čas","daylight":"Gorski poletni čas"}},"America_Pacific":{"long":{"generic":"Pacifiški čas","standard":"Pacifiški standardni čas","daylight":"Pacifiški poletni čas"}},"Anadyr":{"long":{"generic":"Anadirski čas","standard":"Anadirski standardni čas","daylight":"Anadirski poletni čas"}},"Apia":{"long":{"generic":"Čas: Apia","standard":"Standardni čas: Apia","daylight":"Poletni čas: Apia"}},"Arabian":{"long":{"generic":"Arabski čas","standard":"Arabski standardni čas","daylight":"Arabski poletni čas"}},"Argentina":{"long":{"generic":"Argentinski čas","standard":"Argentinski standardni čas","daylight":"Argentinski poletni čas"}},"Argentina_Western":{"long":{"generic":"Argentinski zahodni čas","standard":"Argentinski zahodni standardni čas","daylight":"Argentinski zahodni poletni čas"}},"Armenia":{"long":{"generic":"Armenski čas","standard":"Armenski standardni čas","daylight":"Armenski poletni čas"}},"Atlantic":{"long":{"generic":"Atlantski čas","standard":"Atlantski standardni čas","daylight":"Atlantski poletni čas"}},"Australia_Central":{"long":{"generic":"Avstralski centralni čas","standard":"Avstralski centralni standardni čas","daylight":"Avstralski centralni poletni čas"}},"Australia_CentralWestern":{"long":{"generic":"Avstralski centralni zahodni čas","standard":"Avstralski centralni zahodni standardni čas","daylight":"Avstralski centralni zahodni poletni čas"}},"Australia_Eastern":{"long":{"generic":"Avstralski vzhodni čas","standard":"Avstralski vzhodni standardni čas","daylight":"Avstralski vzhodni poletni čas"}},"Australia_Western":{"long":{"generic":"Avstralski zahodni čas","standard":"Avstralski zahodni standardni čas","daylight":"Avstralski zahodni poletni čas"}},"Azerbaijan":{"long":{"generic":"Azerbajdžanski čas","standard":"Azerbajdžanski standardni čas","daylight":"Azerbajdžanski poletni čas"}},"Azores":{"long":{"generic":"Azorski čas","standard":"Azorski standardni čas","daylight":"Azorski poletni čas"}},"Bangladesh":{"long":{"generic":"Bangladeški čas","standard":"Bangladeški standardni čas","daylight":"Bangladeški poletni čas"}},"Bhutan":{"long":{"standard":"Butanski čas"}},"Bolivia":{"long":{"standard":"Bolivijski čas"}},"Brasilia":{"long":{"generic":"Brasilski čas","standard":"Brasilski standardni čas","daylight":"Brasilski poletni čas"}},"Brunei":{"long":{"standard":"Brunejski čas"}},"Cape_Verde":{"long":{"generic":"Kapverdski čas","standard":"Kapverdski standardni čas","daylight":"Kapverdski poletni čas"}},"Chamorro":{"long":{"standard":"Čamorski standardni čas"}},"Chatham":{"long":{"generic":"Čatamski čas","standard":"Čatamski standardni čas","daylight":"Čatamski poletni čas"}},"Chile":{"long":{"generic":"Čilski čas","standard":"Čilski standardni čas","daylight":"Čilski poletni čas"}},"China":{"long":{"generic":"Kitajski čas","standard":"Kitajski standardni čas","daylight":"Kitajski poletni čas"}},"Choibalsan":{"long":{"generic":"Čojbalsanski čas","standard":"Čojbalsanski standardni čas","daylight":"Čojbalsanski poletni čas"}},"Christmas":{"long":{"standard":"Božičnootoški čas"}},"Cocos":{"long":{"standard":"Čas: Kokosovi otoki"}},"Colombia":{"long":{"generic":"Kolumbijski čas","standard":"Kolumbijski standardni čas","daylight":"Kolumbijski poletni čas"}},"Cook":{"long":{"generic":"Cookovootoški čas","standard":"Cookovootoški standardni čas","daylight":"Cookovootoški srednjepoletni čas"}},"Cuba":{"long":{"generic":"Kubanski čas","standard":"Kubanski standardni čas","daylight":"Kubanski poletni čas"}},"Davis":{"long":{"standard":"Čas: Davis"}},"DumontDUrville":{"long":{"standard":"Čas: Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Vzhodnotimorski čas"}},"Easter":{"long":{"generic":"Čas: Velikonočni otok","standard":"Standardni čas: Velikonočni otok","daylight":"Poletni čas: Velikonočni otok"}},"Ecuador":{"long":{"standard":"Ekvadorski čas"}},"Europe_Central":{"long":{"generic":"Srednjeevropski čas","standard":"Srednjeevropski standardni čas","daylight":"Srednjeevropski poletni čas"}},"Europe_Eastern":{"long":{"generic":"Vzhodnoevropski čas","standard":"Vzhodnoevropski standardni čas","daylight":"Vzhodnoevropski poletni čas"}},"Europe_Further_Eastern":{"long":{"standard":"Dodatni vzhodnoevropski čas"}},"Europe_Western":{"long":{"generic":"Zahodnoevropski čas","standard":"Zahodnoevropski standardni čas","daylight":"Zahodnoevropski poletni čas"}},"Falkland":{"long":{"generic":"Čas: Falklandsko otočje","standard":"Standardni čas: Falklandsko otočje","daylight":"Poletni čas: Falklandsko otočje"}},"Fiji":{"long":{"generic":"Fidžijski čas","standard":"Fidžijski standardni čas","daylight":"Fidžijski poletni čas"}},"French_Guiana":{"long":{"standard":"Čas: Francoska Gvajana"}},"French_Southern":{"long":{"standard":"Francoski južni in antarktični čas"}},"GMT":{"long":{"standard":"Greenwiški srednji čas"}},"Galapagos":{"long":{"standard":"Galapaški čas"}},"Gambier":{"long":{"standard":"Gambierski čas"}},"Georgia":{"long":{"generic":"Gruzijski čas","standard":"Gruzijski standardni čas","daylight":"Gruzijski poletni čas"}},"Gilbert_Islands":{"long":{"standard":"Čas: Gilbertovi otoki"}},"Greenland_Eastern":{"long":{"generic":"Vzhodnogrenlandski čas","standard":"Vzhodnogrenlandski standardni čas","daylight":"Vzhodnogrenlandski poletni čas"}},"Greenland_Western":{"long":{"generic":"Zahodnogrenlandski čas","standard":"Zahodnogrenlandski standardni čas","daylight":"Zahodnogrenlandski poletni čas"}},"Gulf":{"long":{"standard":"Zalivski standardni čas"}},"Guyana":{"long":{"standard":"Gvajanski čas"}},"Hawaii_Aleutian":{"long":{"generic":"Havajski aleutski čas","standard":"Havajski aleutski standardni čas","daylight":"Havajski aleutski poletni čas"}},"Hong_Kong":{"long":{"generic":"Hongkonški čas","standard":"Hongkonški standardni čas","daylight":"Hongkonški poletni čas"}},"Hovd":{"long":{"generic":"Hovdski čas","standard":"Hovdski standardni čas","daylight":"Hovdski poletni čas"}},"India":{"long":{"standard":"Indijski standardni čas"}},"Indian_Ocean":{"long":{"standard":"Indijskooceanski čas"}},"Indochina":{"long":{"standard":"Indokitajski čas"}},"Indonesia_Central":{"long":{"standard":"Indonezijski osrednji čas"}},"Indonesia_Eastern":{"long":{"standard":"Indonezijski vzhodni čas"}},"Indonesia_Western":{"long":{"standard":"Indonezijski zahodni čas"}},"Iran":{"long":{"generic":"Iranski čas","standard":"Iranski standardni čas","daylight":"Iranski poletni čas"}},"Irkutsk":{"long":{"generic":"Irkutški čas","standard":"Irkutški standardni čas","daylight":"Irkutški poletni čas"}},"Israel":{"long":{"generic":"Izraelski čas","standard":"Izraelski standardni čas","daylight":"Izraelski poletni čas"}},"Japan":{"long":{"generic":"Japonski čas","standard":"Japonski standardni čas","daylight":"Japonski poletni čas"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamčatski čas","standard":"Petropavlovsk-Kamčatski standardni čas","daylight":"Petropavlovsk-Kamčatski poletni čas"}},"Kazakhstan_Eastern":{"long":{"standard":"Vzhodni kazahstanski čas"}},"Kazakhstan_Western":{"long":{"standard":"Zahodni kazahstanski čas"}},"Korea":{"long":{"generic":"Korejski čas","standard":"Korejski standardni čas","daylight":"Korejski poletni čas"}},"Kosrae":{"long":{"standard":"Kosrajški čas"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarški čas","standard":"Krasnojarški standardni čas","daylight":"Krasnojarški poletni čas"}},"Kyrgystan":{"long":{"standard":"Kirgizistanski čas"}},"Line_Islands":{"long":{"standard":"Ekvatorski otoki: Čas"}},"Lord_Howe":{"long":{"generic":"Čas otoka Lord Howe","standard":"Standardni čas otoka Lord Howe","daylight":"Poletni čas otoka Lord Howe"}},"Macquarie":{"long":{"standard":"Macquarieski čas"}},"Magadan":{"long":{"generic":"Magadanski čas","standard":"Magadanski standardni čas","daylight":"Magadanski poletni čas"}},"Malaysia":{"long":{"standard":"Malezijski čas"}},"Maldives":{"long":{"standard":"Maldivski čas"}},"Marquesas":{"long":{"standard":"Čas: Markizni otoki"}},"Marshall_Islands":{"long":{"standard":"Čas: Marshallovi otoki"}},"Mauritius":{"long":{"generic":"Mauricijski čas","standard":"Mauricijski standardni čas","daylight":"Mauricijski poletni čas"}},"Mawson":{"long":{"standard":"Mawsonski čas"}},"Mexico_Northwest":{"long":{"generic":"Čas: severozahod Mehike","standard":"Standardni čas: severozahod Mehike","daylight":"Poletni čas: severozahod Mehike"}},"Mexico_Pacific":{"long":{"generic":"Čas: pacifiška obala Mehike","standard":"Standardni čas: pacifiška obala Mehike","daylight":"Poletni čas: pacifiška obala Mehike"}},"Mongolia":{"long":{"generic":"Ulanbatorski čas","standard":"Ulanbatorski standardni čas","daylight":"Ulanbatorski poletni čas"}},"Moscow":{"long":{"generic":"Moskovski čas","standard":"Moskovski standardni čas","daylight":"Moskovski poletni čas"}},"Myanmar":{"long":{"standard":"Mjanmarski čas"}},"Nauru":{"long":{"standard":"Naurujski čas"}},"Nepal":{"long":{"standard":"Nepalski čas"}},"New_Caledonia":{"long":{"generic":"Novokaledonijski čas","standard":"Novokaledonijski standardni čas","daylight":"Novokaledonijski poletni čas"}},"New_Zealand":{"long":{"generic":"Novozelandski čas","standard":"Novozelandski standardni čas","daylight":"Novozelandski poletni čas"}},"Newfoundland":{"long":{"generic":"Novofundlandski čas","standard":"Novofundlandski standardni čas","daylight":"Novofundlandski poletni čas"}},"Niue":{"long":{"standard":"Niuejski čas"}},"Norfolk":{"long":{"standard":"Čas: Norfolški otoki"}},"Noronha":{"long":{"generic":"Fernando de Noronški čas","standard":"Fernando de Noronški standardni čas","daylight":"Fernando de Noronški poletni čas"}},"Novosibirsk":{"long":{"generic":"Novosibirški čas","standard":"Novosibirški standardni čas","daylight":"Novosibirški poletni čas"}},"Omsk":{"long":{"generic":"Omški čas","standard":"Omški standardni čas","daylight":"Omški poletni čas"}},"Pakistan":{"long":{"generic":"Pakistanski čas","standard":"Pakistanski standardni čas","daylight":"Pakistanski poletni čas"}},"Palau":{"long":{"standard":"Palavski čas"}},"Papua_New_Guinea":{"long":{"standard":"Papuanski čas"}},"Paraguay":{"long":{"generic":"Paragvajski čas","standard":"Paragvajski standardni čas","daylight":"Paragvajski poletni čas"}},"Peru":{"long":{"generic":"Perujski čas","standard":"Perujski standardni čas","daylight":"Perujski poletni čas"}},"Philippines":{"long":{"generic":"Filipinski čas","standard":"Filipinski standardni čas","daylight":"Filipinski poletni čas"}},"Phoenix_Islands":{"long":{"standard":"Čas: Otočje Feniks"}},"Pierre_Miquelon":{"long":{"generic":"Čas: Saint Pierre in Miquelon","standard":"Standardni čas: Saint Pierre in Miquelon","daylight":"Poletni čas: Saint Pierre in Miquelon"}},"Pitcairn":{"long":{"standard":"Pitcairnski čas"}},"Ponape":{"long":{"standard":"Ponapski čas"}},"Reunion":{"long":{"standard":"Reunionski čas"}},"Rothera":{"long":{"standard":"Rotherski čas"}},"Sakhalin":{"long":{"generic":"Sahalinski čas","standard":"Sahalinski standardni čas","daylight":"Sahalinski poletni čas"}},"Samara":{"long":{"generic":"Samarski čas","standard":"Samarski standardni čas","daylight":"Samarski poletni čas"}},"Samoa":{"long":{"generic":"Samoanski čas","standard":"Samoanski standardni čas","daylight":"Samoanski poletni čas"}},"Seychelles":{"long":{"standard":"Sejšelski čas"}},"Singapore":{"long":{"standard":"Singapurski standardni čas"}},"Solomon":{"long":{"standard":"Salomonovootoški čas"}},"South_Georgia":{"long":{"standard":"Južnogeorgijski čas"}},"Suriname":{"long":{"standard":"Surinamski čas"}},"Syowa":{"long":{"standard":"Čas: Syowa"}},"Tahiti":{"long":{"standard":"Tahitijski čas"}},"Taipei":{"long":{"generic":"Tajpejski čas","standard":"Tajpejski standardni čas","daylight":"Tajpejski poletni čas"}},"Tajikistan":{"long":{"standard":"Tadžikistanski čas"}},"Tokelau":{"long":{"standard":"Tokelavski čas"}},"Tonga":{"long":{"generic":"Tongovski čas","standard":"Tongovski standardni čas","daylight":"Tongovski poletni čas"}},"Truk":{"long":{"standard":"Čas: Otok Chuuk"}},"Turkmenistan":{"long":{"generic":"Turkmenistanski čas","standard":"Turkmenistanski standardni čas","daylight":"Turkmenistanski poletni čas"}},"Tuvalu":{"long":{"standard":"Tuvalujski čas"}},"Uruguay":{"long":{"generic":"Urugvajski čas","standard":"Urugvajski standardni čas","daylight":"Urugvajski poletni čas"}},"Uzbekistan":{"long":{"generic":"Uzbekistanski čas","standard":"Uzbekistanski standardni čas","daylight":"Uzbekistanski poletni čas"}},"Vanuatu":{"long":{"generic":"Vanuatujski čas","standard":"Vanuatujski standardni čas","daylight":"Vanuatujski poletni čas"}},"Venezuela":{"long":{"standard":"Venezuelski čas"}},"Vladivostok":{"long":{"generic":"Vladivostoški čas","standard":"Vladivostoški standardni čas","daylight":"Vladivostoški poletni čas"}},"Volgograd":{"long":{"generic":"Volgograjski čas","standard":"Volgograjski standardni čas","daylight":"Volgograjski poletni čas"}},"Vostok":{"long":{"standard":"Čas: Vostok"}},"Wake":{"long":{"standard":"Čas: Otok Wake"}},"Wallis":{"long":{"standard":"Čas: Wallis in Futuna"}},"Yakutsk":{"long":{"generic":"Jakutski čas","standard":"Jakutski standardni čas","daylight":"Jakutski poletni čas"}},"Yekaterinburg":{"long":{"generic":"Jekaterinburški čas","standard":"Jekaterinburški standardni čas","daylight":"Jekaterinburški poletni čas"}}}} \ No newline at end of file diff --git a/Punic/data/sl/units.json b/Punic/data/sl/units.json new file mode 100644 index 0000000..db31bed --- /dev/null +++ b/Punic/data/sl/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","two":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"metri na sekundo kvadrat","one":"%1$s meter na sekundo kvadrat","two":"%1$s metra na sekundo kvadrat","few":"%1$s metri na sekundo kvadrat","other":"%1$s metrov na sekundo kvadrat"}},"angle":{"arc-minute":{"_name":"kotna minuta","one":"%1$s′","two":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"kotna sekunda","one":"%1$s″","two":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"stopinja","one":"%1$s °","two":"%1$s °","few":"%1$s °","other":"%1$s °"},"radian":{"_name":"radian","one":"%1$s radian","two":"%1$s radiana","few":"%1$s radianov","other":"%1$s radianov"}},"area":{"acre":{"_name":"juter","one":"%1$s jutro","two":"%1$s jutri","few":"%1$s jutra","other":"%1$s juter"},"hectare":{"_name":"ha","one":"%1$s ha","two":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"kvadratni centimetri","one":"%1$s kvadratni centimeter","two":"%1$s kvadratna centimetra","few":"%1$s kvadratni centimetri","other":"%1$s kvadratnih centimetrov"},"square-foot":{"_name":"ft²","one":"%1$s ft²","two":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","two":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"kvadratni kilometri","one":"%1$s km²","two":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"kvadratni metri","one":"%1$s m²","two":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","two":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","two":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"litrov na kilometer","one":"%1$s liter na kilometer","two":"%1$s litra na kilometer","few":"%1$s litrov na kilometer","other":"%1$s litrov na kilometer"},"mile-per-gallon":{"_name":"milj na galono","one":"%1$s milja na galono","two":"%1$s milji na galono","few":"%1$s milj na galono","other":"%1$s milj na galono"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","two":"%1$s bita","few":"%1$s bite","other":"%1$s bitov"},"byte":{"_name":"bajt","one":"%1$s bajt","two":"%1$s bajta","few":"%1$s bajti","other":"%1$s bajtov"},"gigabit":{"_name":"gigabiti","one":"%1$s gigabit","two":"%1$s gigabita","few":"%1$s gigabiti","other":"%1$s gigabitov"},"gigabyte":{"_name":"gigabajti","one":"%1$s gigabajt","two":"%1$s gigabajta","few":"%1$s gigabajti","other":"%1$s gigabajtov"},"kilobit":{"_name":"kilobiti","one":"%1$s kilobit","two":"%1$s kilobita","few":"%1$s kilobiti","other":"%1$s kilobitov"},"kilobyte":{"_name":"kilobajti","one":"%1$s kilobajt","two":"%1$s kilobajta","few":"%1$s kilobajti","other":"%1$s kilobajtov"},"megabit":{"_name":"megabiti","one":"%1$s megabit","two":"%1$s megabita","few":"%1$s megabiti","other":"%1$s megabitov"},"megabyte":{"_name":"megabajti","one":"%1$s megabajt","two":"%1$s megabajta","few":"%1$s megabajti","other":"%1$s megabajtov"},"terabit":{"_name":"terabiti","one":"%1$s terabit","two":"%1$s terabita","few":"%1$s terabiti","other":"%1$s terabitov"},"terabyte":{"_name":"terabajti","one":"%1$s terabajt","two":"%1$s terabajta","few":"%1$s terabajti","other":"%1$s terabajtov"}},"duration":{"day":{"_name":"dni","one":"%1$s dan","two":"%1$s dni","few":"%1$s dnevi","other":"%1$s dni"},"hour":{"_name":"ur","one":"%1$s ura","two":"%1$s uri","few":"%1$s ure","other":"%1$s ur","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","two":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","two":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minut","one":"%1$s minuta","two":"%1$s minuti","few":"%1$s minute","other":"%1$s minut"},"month":{"_name":"mesecev","one":"%1$s mesec","two":"%1$s meseca","few":"%1$s meseci","other":"%1$s mesecev"},"nanosecond":{"_name":"ns","one":"%1$s ns","two":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekund","one":"%1$s sekunda","two":"%1$s sekundi","few":"%1$s sekunde","other":"%1$s sekund","_per":"%1$s/s"},"week":{"_name":"tednov","one":"%1$s teden","two":"%1$s tedna","few":"%1$s tedni","other":"%1$s tednov"},"year":{"_name":"let","one":"%1$s leto","two":"%1$s leti","few":"%1$s leta","other":"%1$s let"}},"electric":{"ampere":{"_name":"amperi","one":"%1$s amper","two":"%1$s ampera","few":"%1$s amperov","other":"%1$s amperov"},"milliampere":{"_name":"miliamperi","one":"%1$s miliamper","two":"%1$s miliampera","few":"%1$s miliamperov","other":"%1$s miliamperov"},"ohm":{"_name":"ohm","one":"%1$s ohm","two":"%1$s ohma","few":"%1$s ohmov","other":"%1$s ohmov"},"volt":{"_name":"volt","one":"%1$s volt","two":"%1$s volta","few":"%1$s voltov","other":"%1$s voltov"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","two":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kalorije","one":"%1$s kalorija","two":"%1$s kaloriji","few":"%1$s kalorij","other":"%1$s kalorij"},"joule":{"_name":"joule","one":"%1$s J","two":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","two":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","two":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","two":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","two":"%1$s gigahertza","few":"%1$s gigahertzev","other":"%1$s gigahertzev"},"hertz":{"_name":"hertz","one":"%1$s hertz","two":"%1$s hertza","few":"%1$s hertzev","other":"%1$s hertzev"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","two":"%1$s kilohertza","few":"%1$s kilohertzev","other":"%1$s kilohertzev"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","two":"%1$s megahertza","few":"%1$s megahertzev","other":"%1$s megahertzev"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","two":"%1$s au","few":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"centimetri","one":"%1$s cm","two":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"decimetri","one":"%1$s decimeter","two":"%1$s decimetra","few":"%1$s decimetri","other":"%1$s decimetrov"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","two":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","two":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"kilometri","one":"%1$s km","two":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"svetlobnih let","one":"%1$s svetlobno leto","two":"%1$s svetlobni leti","few":"%1$s svetlobna leta","other":"%1$s svetlobnih let"},"meter":{"_name":"metri","one":"%1$s m","two":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"mikrometri","one":"%1$s mikrometer","two":"%1$s mikrometra","few":"%1$s mikrometri","other":"%1$s mikrometrov"},"mile":{"_name":"milje","one":"%1$s mi","two":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"milimetri","one":"%1$s mm","two":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nanometri","one":"%1$s nanometer","two":"%1$s nanometra","few":"%1$s nanometri","other":"%1$s nanometrov"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","two":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","two":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","two":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","two":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"luks","one":"%1$s luks","two":"%1$s luksa","few":"%1$s luksi","other":"%1$s luksov"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","two":"%1$s CD","few":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","two":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","two":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","two":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","two":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","two":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","two":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","two":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","two":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","two":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","two":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KM","one":"%1$s KM","two":"%1$s KM","few":"%1$s KM","other":"%1$s KM"},"kilowatt":{"_name":"kW","one":"%1$s kW","two":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","two":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","two":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","two":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","two":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","two":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","two":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","two":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","two":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s karat","two":"%1$s karata","few":"%1$s karati","other":"%1$s karatov"}},"speed":{"kilometer-per-hour":{"_name":"kilometri na uro","one":"%1$s km/h","two":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"metri na sekundo","one":"%1$s m/s","two":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"milje na uro","one":"%1$s mi/h","two":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","two":"%1$s °C","few":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","two":"%1$s °F","few":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"kelvini","one":"%1$s kelvin","two":"%1$s kelvina","few":"%1$s kelvini","other":"%1$s kelvinov"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","two":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"centilitrov","one":"%1$s centiliter","two":"%1$s centilitra","few":"%1$s centilitri","other":"%1$s centilitrov"},"cubic-centimeter":{"_name":"kubični centimeter","one":"%1$s kubični centimeter","two":"%1$s kubična centimetra","few":"%1$s kubični centimetri","other":"%1$s kubičnih centimetrov"},"cubic-foot":{"_name":"kubični čevlji","one":"%1$s kubični čevelj","two":"%1$s kubična čevlja","few":"%1$s kubični čevlji","other":"%1$s kubičnih čevljev"},"cubic-inch":{"_name":"kubičnih palcev","one":"%1$s kubični palec","two":"%1$s kubična palca","few":"%1$s kubični palci","other":"%1$s kubičnih palcev"},"cubic-kilometer":{"_name":"kubičnih kilometrov","one":"%1$s km³","two":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"kubičnih metrov","one":"%1$s kubični meter","two":"%1$s kubična metra","few":"%1$s kubični metri","other":"%1$s kubičnih metrov"},"cubic-mile":{"_name":"kubične milje","one":"%1$s mi³","two":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"kubični jard","one":"%1$s kubični jard","two":"%1$s kubična jarda","few":"%1$s kubični jardi","other":"%1$s kubičnih jardov"},"cup":{"_name":"skodelice","one":"%1$s skodelica","two":"%1$s skodelici","few":"%1$s skodelice","other":"%1$s skodelic"},"deciliter":{"_name":"decilitri","one":"%1$s deciliter","two":"%1$s decilitra","few":"%1$s decilitri","other":"%1$s decilitrov"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","two":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","two":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hektolitri","one":"%1$s hektoliter","two":"%1$s hektolitra","few":"%1$s hektolitri","other":"%1$s hektolitrov"},"liter":{"_name":"litrov","one":"%1$s l","two":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"megalitri","one":"%1$s megaliter","two":"%1$s megalitra","few":"%1$s megalitri","other":"%1$s megalitrov"},"milliliter":{"_name":"mililitri","one":"%1$s mililiter","two":"%1$s mililitra","few":"%1$s mililitri","other":"%1$s militrov"},"pint":{"_name":"pt","one":"%1$s pt","two":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","two":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"jedilne žlice","one":"%1$s jedilna žlica","two":"%1$s jedilni žlici","few":"%1$s jedilne žlice","other":"%1$s jedilnih žlic"},"teaspoon":{"_name":"čajne žličke","one":"%1$s čajna žlička","two":"%1$s čajni žlički","few":"%1$s čajne žličke","other":"%1$s čajnih žličk"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","two":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","two":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","two":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","two":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s °","two":"%1$s °","few":"%1$s °","other":"%1$s °"},"radian":{"_name":"rad","one":"%1$s rad","two":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"juter","one":"%1$s jut.","two":"%1$s jut.","few":"%1$s jut.","other":"%1$s jut."},"hectare":{"_name":"ha","one":"%1$s ha","two":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","two":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","two":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","two":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","two":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","two":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","two":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","two":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","two":"%1$s L/km","few":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","two":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","two":"%1$s bit","few":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bajt","one":"%1$s bajt","two":"%1$s bajta","few":"%1$s bajti","other":"%1$s bajtov"},"gigabit":{"_name":"Gb","one":"%1$s Gb","two":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","two":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","two":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","two":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","two":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","two":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","two":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","two":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dni","one":"%1$s d","two":"%1$s d","few":"%1$s d","other":"%1$s d"},"hour":{"_name":"ur","one":"%1$s h","two":"%1$s h","few":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","two":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","two":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minut","one":"%1$s min","two":"%1$s min","few":"%1$s min","other":"%1$s min"},"month":{"_name":"mesecev","one":"%1$s m","two":"%1$s m","few":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","two":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekund","one":"%1$s s","two":"%1$s s","few":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"tednov","one":"%1$s t","two":"%1$s t","few":"%1$s t","other":"%1$s t"},"year":{"_name":"let","one":"%1$s l","two":"%1$s l","few":"%1$s l","other":"%1$s l"}},"electric":{"ampere":{"_name":"amp","one":"%1$s A","two":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","two":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","two":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","two":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","two":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","two":"%1$s Cal","few":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joule","one":"%1$s J","two":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","two":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","two":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","two":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","two":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","two":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","two":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","two":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","two":"%1$s au","few":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","two":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","two":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","two":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","two":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","two":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"sv. let","one":"%1$s sv. let","two":"%1$s sv. leti","few":"%1$s sv. leta","other":"%1$s sv. let"},"meter":{"_name":"m","one":"%1$s m","two":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","two":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","two":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","two":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","two":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","two":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","two":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","two":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","two":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","two":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","two":"%1$s CD","few":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","two":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","two":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","two":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","two":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","two":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","two":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","two":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","two":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","two":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","two":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KM","one":"%1$s KM","two":"%1$s KM","few":"%1$s KM","other":"%1$s KM"},"kilowatt":{"_name":"kW","one":"%1$s kW","two":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","two":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","two":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","two":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","two":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","two":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","two":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","two":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","two":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","two":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","two":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","two":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","two":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","two":"%1$s °C","few":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","two":"%1$s °F","few":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","two":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","two":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","two":"%1$s cL","few":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","two":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","two":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","two":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","two":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","two":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","two":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","two":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","two":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","two":"%1$s dL","few":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","two":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","two":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","two":"%1$s hL","few":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"l","one":"%1$s l","two":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","two":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","two":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","two":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","two":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"žlica","one":"%1$s žlica","two":"%1$s žlici","few":"%1$s žlice","other":"%1$s žlic"},"teaspoon":{"_name":"žlička","one":"%1$s žlička","two":"%1$s žlički","few":"%1$s žličke","other":"%1$s žličk"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","two":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","two":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"′","one":"%1$s′","two":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"″","one":"%1$s″","two":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s °","two":"%1$s °","few":"%1$s °","other":"%1$s °"},"radian":{"_name":"rad","one":"%1$s rad","two":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"juter","one":"%1$s jut.","two":"%1$s jut.","few":"%1$s jut.","other":"%1$s jut."},"hectare":{"_name":"ha","one":"%1$s ha","two":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","two":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","two":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","two":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","two":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","two":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","two":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","two":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","two":"%1$s L/km","few":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","two":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","two":"%1$s bit","few":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bajt","one":"%1$s bajtov","two":"%1$s bajtov","few":"%1$s bajtov","other":"%1$s bajtov"},"gigabit":{"_name":"Gb","one":"%1$s Gb","two":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","two":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","two":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","two":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","two":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","two":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","two":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","two":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dni","one":"%1$s d","two":"%1$s d","few":"%1$s d","other":"%1$s d"},"hour":{"_name":"ur","one":"%1$s h","two":"%1$s h","few":"%1$s h","other":"%1$s h","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","two":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","two":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"minut","one":"%1$s min","two":"%1$s min","few":"%1$s min","other":"%1$s min"},"month":{"_name":"mesecev","one":"%1$s m","two":"%1$s m","few":"%1$s m","other":"%1$s m"},"nanosecond":{"_name":"ns","one":"%1$s ns","two":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sekund","one":"%1$s s","two":"%1$s s","few":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"tednov","one":"%1$s t","two":"%1$s t","few":"%1$s t","other":"%1$s t"},"year":{"_name":"let","one":"%1$s l","two":"%1$s l","few":"%1$s l","other":"%1$s l"}},"electric":{"ampere":{"_name":"amp","one":"%1$s A","two":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","two":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","two":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"V","one":"%1$s V","two":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","two":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","two":"%1$s Cal","few":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"joule","one":"%1$s J","two":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","two":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","two":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","two":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","two":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","two":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","two":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","two":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","one":"%1$s au","two":"%1$s au","few":"%1$s au","other":"%1$s au"},"centimeter":{"_name":"cm","one":"%1$s cm","two":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","two":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","two":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"in","one":"%1$s in","two":"%1$s in","few":"%1$s in","other":"%1$s in"},"kilometer":{"_name":"km","one":"%1$s km","two":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"sv. let","one":"%1$s ly","two":"%1$s sv. l.","few":"%1$s sv. l.","other":"%1$s sv. l."},"meter":{"_name":"m","one":"%1$s m","two":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","two":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mi","one":"%1$s mi","two":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","two":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","two":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","two":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"pc","one":"%1$s pc","two":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","two":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yd","one":"%1$s yd","two":"%1$s yd","few":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","two":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","one":"%1$s CD","two":"%1$s CD","few":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","two":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","two":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","two":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","two":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","two":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s oz","two":"%1$s oz","few":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","two":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","two":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","two":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","two":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"KM","one":"%1$s KM","two":"%1$s KM","few":"%1$s KM","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","two":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","two":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","two":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","two":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","two":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","two":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","two":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","two":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","two":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","two":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","two":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","two":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","one":"%1$s mi/h","two":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °","two":"%1$s °","few":"%1$s °","other":"%1$s °"},"fahrenheit":{"_name":"°F","one":"%1$s °F","two":"%1$s °F","few":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","two":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","two":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","two":"%1$s cL","few":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","two":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","two":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","two":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","two":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","two":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","two":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","two":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"c","one":"%1$s c","two":"%1$s c","few":"%1$s c","other":"%1$s c"},"deciliter":{"_name":"dL","one":"%1$s dL","two":"%1$s dL","few":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","two":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","two":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","two":"%1$s hL","few":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"l","one":"%1$s l","two":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","two":"%1$s Ml","few":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","two":"%1$s ml","few":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pt","one":"%1$s pt","two":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","two":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"žlica","one":"%1$s žlic","two":"%1$s žlic","few":"%1$s žlic","other":"%1$s žlic"},"teaspoon":{"_name":"žlička","one":"%1$s žličk","two":"%1$s žličk","few":"%1$s žličk","other":"%1$s žličk"}}},"_durationPattern":{"hm":"h.mm","hms":"h.mm.ss","ms":"m.ss"}} \ No newline at end of file diff --git a/Punic/data/sr/calendar.json b/Punic/data/sr/calendar.json new file mode 100644 index 0000000..4029fe9 --- /dev/null +++ b/Punic/data/sr/calendar.json @@ -0,0 +1 @@ +{"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":"К1","2":"К2","3":"К3","4":"К4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"Прво тромесечје","2":"Друго тромесечје","3":"Треће тромесечје","4":"Четврто тромесечје"}},"stand-alone":{"abbreviated":{"1":"К1","2":"К2","3":"К3","4":"К4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"Прво тромесечје","2":"Друго тромесечје","3":"Треће тромесечје","4":"Четврто тромесечје"}}},"dayPeriods":{"format":{"abbreviated":{"am":"пре подне","noon":"у подне","pm":"по подне"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"пре подне","noon":"у подне","pm":"по подне"}},"stand-alone":{"abbreviated":{"am":"пре подне","noon":"у подне","pm":"по подне"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"пре подне","noon":"у подне","pm":"по подне"}}},"eras":{"wide":{"0":"Пре нове ере","0-alt-variant":"п. н. е.","1":"Нове ере","1-alt-variant":"н. е."},"abbreviated":{"0":"п. н. е.","0-alt-variant":"BCE","1":"н. е.","1-alt-variant":"CE"},"narrow":{"0":"п.н.е.","0-alt-variant":"BCE","1":"н.е.","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, dd. MMMM y.","long":"dd. MMMM y.","medium":"dd.MM.y.","short":"d.M.yy."},"timeFormats":{"full":"HH.mm.ss zzzz","long":"HH.mm.ss z","medium":"HH.mm.ss","short":"HH.mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/sr/dateFields.json b/Punic/data/sr/dateFields.json new file mode 100644 index 0000000..649098d --- /dev/null +++ b/Punic/data/sr/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"ера"},"year":{"displayName":"година","relative-type--1":"прошле године","relative-type-0":"ове године","relative-type-1":"следеће године","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} годину","relativeTimePattern-count-few":"за {0} године","relativeTimePattern-count-other":"за {0} година"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} године","relativeTimePattern-count-few":"пре {0} године","relativeTimePattern-count-other":"пре {0} година"}},"year-short":{"displayName":"год.","relative-type--1":"прошле године","relative-type-0":"ове године","relative-type-1":"следеће године","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} год.","relativeTimePattern-count-few":"за {0} год.","relativeTimePattern-count-other":"за {0} год."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} год.","relativeTimePattern-count-few":"пре {0} год.","relativeTimePattern-count-other":"пре {0} год."}},"year-narrow":{"displayName":"г.","relative-type--1":"прошле године","relative-type-0":"ове године","relative-type-1":"следеће године","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} г.","relativeTimePattern-count-few":"за {0} г.","relativeTimePattern-count-other":"за {0} г."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} г.","relativeTimePattern-count-few":"пре {0} г.","relativeTimePattern-count-other":"пре {0} г."}},"quarter":{"displayName":"квартал","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} квартал","relativeTimePattern-count-few":"за {0} квартала","relativeTimePattern-count-other":"за {0} квартала"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} квартала","relativeTimePattern-count-few":"пре {0} квартала","relativeTimePattern-count-other":"пре {0} квартала"}},"quarter-short":{"displayName":"квартал","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} квартала","relativeTimePattern-count-few":"за {0} квартала","relativeTimePattern-count-other":"за {0} квартала"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} квартала","relativeTimePattern-count-few":"пре {0} квартала","relativeTimePattern-count-other":"пре {0} квартала"}},"quarter-narrow":{"displayName":"квартал","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} квартала","relativeTimePattern-count-few":"за {0} квартала","relativeTimePattern-count-other":"за {0} квартала"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} квартала","relativeTimePattern-count-few":"пре {0} квартала","relativeTimePattern-count-other":"пре {0} квартала"}},"month":{"displayName":"месец","relative-type--1":"прошлог месеца","relative-type-0":"овог месеца","relative-type-1":"следећег месеца","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} месец","relativeTimePattern-count-few":"за {0} месеца","relativeTimePattern-count-other":"за {0} месеци"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} месеца","relativeTimePattern-count-few":"пре {0} месеца","relativeTimePattern-count-other":"пре {0} месеци"}},"month-short":{"displayName":"мес.","relative-type--1":"прошлог месеца","relative-type-0":"овог месеца","relative-type-1":"следећег месеца","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} мес.","relativeTimePattern-count-few":"за {0} мес.","relativeTimePattern-count-other":"за {0} мес."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} мес.","relativeTimePattern-count-few":"пре {0} мес.","relativeTimePattern-count-other":"пре {0} мес."}},"month-narrow":{"displayName":"м.","relative-type--1":"прошлог месеца","relative-type-0":"овог месеца","relative-type-1":"следећег месеца","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} м.","relativeTimePattern-count-few":"за {0} м.","relativeTimePattern-count-other":"за {0} м."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} м.","relativeTimePattern-count-few":"пре {0} м.","relativeTimePattern-count-other":"пре {0} м."}},"week":{"displayName":"недеља","relative-type--1":"прошле недеље","relative-type-0":"ове недеље","relative-type-1":"следеће недеље","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} недељу","relativeTimePattern-count-few":"за {0} недеље","relativeTimePattern-count-other":"за {0} недеља"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} недеље","relativeTimePattern-count-few":"пре {0} недеље","relativeTimePattern-count-other":"пре {0} недеља"}},"week-short":{"displayName":"нед.","relative-type--1":"прошле недеље","relative-type-0":"ове недеље","relative-type-1":"следеће недеље","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} нед.","relativeTimePattern-count-few":"за {0} нед.","relativeTimePattern-count-other":"за {0} нед."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} нед.","relativeTimePattern-count-few":"пре {0} нед.","relativeTimePattern-count-other":"пре {0} нед."}},"week-narrow":{"displayName":"н.","relative-type--1":"прошле недеље","relative-type-0":"ове недеље","relative-type-1":"следеће недеље","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} н.","relativeTimePattern-count-few":"за {0} н.","relativeTimePattern-count-other":"за {0} н."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} н.","relativeTimePattern-count-few":"пре {0} н.","relativeTimePattern-count-other":"пре {0} н."}},"day":{"displayName":"дан","relative-type--1":"јуче","relative-type--2":"прекјуче","relative-type-0":"данас","relative-type-1":"сутра","relative-type-2":"прекосутра","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} дан","relativeTimePattern-count-few":"за {0} дана","relativeTimePattern-count-other":"за {0} дана"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} дана","relativeTimePattern-count-few":"пре {0} дана","relativeTimePattern-count-other":"пре {0} дана"}},"day-short":{"displayName":"д.","relative-type--1":"јуче","relative-type--2":"прекјуче","relative-type-0":"данас","relative-type-1":"сутра","relative-type-2":"прекосутра","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} д.","relativeTimePattern-count-few":"за {0} д.","relativeTimePattern-count-other":"за {0} д."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} д.","relativeTimePattern-count-few":"пре {0} д.","relativeTimePattern-count-other":"пре {0} д."}},"day-narrow":{"displayName":"д.","relative-type--1":"јуче","relative-type--2":"прекјуче","relative-type-0":"данас","relative-type-1":"сутра","relative-type-2":"прекосутра","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} д.","relativeTimePattern-count-few":"за {0} д.","relativeTimePattern-count-other":"за {0} д."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} д.","relativeTimePattern-count-few":"пре {0} д.","relativeTimePattern-count-other":"пре {0} д."}},"weekday":{"displayName":"дан у недељи"},"sun":{"relative-type--1":"прошле недеље","relative-type-0":"у недељу","relative-type-1":"следеће недеље"},"sun-short":{"relative-type--1":"прошле нед","relative-type-0":"у нед","relative-type-1":"следеће нед"},"sun-narrow":{"relative-type--1":"прошле нед","relative-type-0":"у нед","relative-type-1":"следеће нед"},"mon":{"relative-type--1":"прошлог понедељка","relative-type-0":"у понедељак","relative-type-1":"следећег понедељка"},"mon-short":{"relative-type--1":"прошлог пон","relative-type-0":"у пон","relative-type-1":"следећег пон"},"mon-narrow":{"relative-type--1":"прошлог пон","relative-type-0":"у пон","relative-type-1":"следећег пон"},"tue":{"relative-type--1":"прошлог уторка","relative-type-0":"у уторак","relative-type-1":"следећег уторка"},"tue-short":{"relative-type--1":"прошлог уто","relative-type-0":"у уто","relative-type-1":"следећег уто"},"tue-narrow":{"relative-type--1":"прошлог уто","relative-type-0":"у уто","relative-type-1":"следећег уто"},"wed":{"relative-type--1":"прошле среде","relative-type-0":"у среду","relative-type-1":"следеће среде"},"wed-short":{"relative-type--1":"прошле сре","relative-type-0":"у сре","relative-type-1":"следеће сре"},"wed-narrow":{"relative-type--1":"прошле сре","relative-type-0":"у сре","relative-type-1":"следеће сре"},"thu":{"relative-type--1":"прошлог четвртка","relative-type-0":"у четвртак","relative-type-1":"следећег четвртка"},"thu-short":{"relative-type--1":"прошлог чет","relative-type-0":"у чет","relative-type-1":"следећег чет"},"thu-narrow":{"relative-type--1":"прошлог чет","relative-type-0":"у чет","relative-type-1":"следећег чет"},"fri":{"relative-type--1":"прошлог петка","relative-type-0":"у петак","relative-type-1":"следећег петка"},"fri-short":{"relative-type--1":"прошлог пет","relative-type-0":"у пет","relative-type-1":"следећег пет"},"fri-narrow":{"relative-type--1":"прошлог пет","relative-type-0":"у пет","relative-type-1":"следећег пет"},"sat":{"relative-type--1":"прошле суботе","relative-type-0":"у суботу","relative-type-1":"следеће суботе"},"sat-short":{"relative-type--1":"прошле суб","relative-type-0":"у суб","relative-type-1":"следеће суб"},"sat-narrow":{"relative-type--1":"прошле суб","relative-type-0":"у суб","relative-type-1":"следеће суб"},"dayperiod":{"displayName":"пре подне/по подне"},"hour":{"displayName":"сат","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} сат","relativeTimePattern-count-few":"за {0} сата","relativeTimePattern-count-other":"за {0} сати"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} сата","relativeTimePattern-count-few":"пре {0} сата","relativeTimePattern-count-other":"пре {0} сати"}},"hour-short":{"displayName":"ч.","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} ч.","relativeTimePattern-count-few":"за {0} ч.","relativeTimePattern-count-other":"за {0} ч."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} ч.","relativeTimePattern-count-few":"пре {0} ч.","relativeTimePattern-count-other":"пре {0} ч."}},"hour-narrow":{"displayName":"ч.","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} ч.","relativeTimePattern-count-few":"за {0} ч.","relativeTimePattern-count-other":"за {0} ч."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} ч.","relativeTimePattern-count-few":"пре {0} ч.","relativeTimePattern-count-other":"пре {0} ч."}},"minute":{"displayName":"минут","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} минут","relativeTimePattern-count-few":"за {0} минута","relativeTimePattern-count-other":"за {0} минута"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} минута","relativeTimePattern-count-few":"пре {0} минута","relativeTimePattern-count-other":"пре {0} минута"}},"minute-short":{"displayName":"мин.","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} мин.","relativeTimePattern-count-few":"за {0} мин.","relativeTimePattern-count-other":"за {0} мин."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} мин.","relativeTimePattern-count-few":"пре {0} мин.","relativeTimePattern-count-other":"пре {0} мин."}},"minute-narrow":{"displayName":"мин.","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} мин.","relativeTimePattern-count-few":"за {0} мин.","relativeTimePattern-count-other":"за {0} мин."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} мин.","relativeTimePattern-count-few":"пре {0} мин.","relativeTimePattern-count-other":"пре {0} мин."}},"second":{"displayName":"секунд","relative-type-0":"сада","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} секунду","relativeTimePattern-count-few":"за {0} секунде","relativeTimePattern-count-other":"за {0} секунди"},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} секунде","relativeTimePattern-count-few":"пре {0} секунде","relativeTimePattern-count-other":"пре {0} секунди"}},"second-short":{"displayName":"сек.","relative-type-0":"сада","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} сек.","relativeTimePattern-count-few":"за {0} сек.","relativeTimePattern-count-other":"за {0} сек."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} сек.","relativeTimePattern-count-few":"пре {0} сек.","relativeTimePattern-count-other":"пре {0} сек."}},"second-narrow":{"displayName":"с.","relative-type-0":"сада","relativeTime-type-future":{"relativeTimePattern-count-one":"за {0} с.","relativeTimePattern-count-few":"за {0} с.","relativeTimePattern-count-other":"за {0} с."},"relativeTime-type-past":{"relativeTimePattern-count-one":"пре {0} с.","relativeTimePattern-count-few":"пре {0} с.","relativeTimePattern-count-other":"пре {0} с."}},"zone":{"displayName":"временска зона"}} \ No newline at end of file diff --git a/Punic/data/sr/languages.json b/Punic/data/sr/languages.json new file mode 100644 index 0000000..ef9b2a4 --- /dev/null +++ b/Punic/data/sr/languages.json @@ -0,0 +1 @@ +{"aa":"Афарски","ab":"абхаски","ace":"Ачинески","ach":"Аколи","ada":"Адангмејски","ady":"Адигејски","ae":"Авестански","aeb":"aeb","af":"африканс","afh":"Африхили","agq":"агем","ain":"Аину","ak":"акан","akk":"Акадијски","akz":"akz","ale":"Аљут","aln":"aln","alt":"Јужни алтаи","am":"амхарски","an":"Арагонежански","ang":"Староенглески","anp":"Ангика","ar":"арапски","ar-001":"модеран стандардни арапски","arc":"Армајски","arn":"мапуче","aro":"aro","arp":"Арапахо","arq":"arq","arw":"Аравак","ary":"ary","arz":"arz","as":"асамски","asa":"асу","ase":"ase","ast":"Астуријски","av":"Аварски","avk":"avk","awa":"Авадхи","ay":"Ајмара","az":"азербејџански","az-alt-short":"азерски","azb":"azb","ba":"башкирски","bal":"Балучи","ban":"Балинезијски","bar":"bar","bas":"Баса","bax":"bax","bbc":"bbc","bbj":"bbj","be":"белоруски","bej":"Беја","bem":"бемба","bew":"bew","bez":"бена","bfd":"bfd","bfq":"bfq","bg":"бугарски","bho":"Бојпури","bi":"Бислама","bik":"Бикол","bin":"Бини","bjn":"bjn","bkm":"bkm","bla":"Сисика","bm":"бамбара","bn":"бенгалски","bo":"тибетански","bpy":"bpy","bqi":"bqi","br":"бретонски","bra":"Брај","brh":"brh","brx":"бодо","bs":"босански","bss":"bss","bua":"Буриат","bug":"Бугинежански","bum":"bum","byn":"Блин","byv":"byv","ca":"каталонски","cad":"Кадо","car":"Карипски","cay":"cay","cch":"Атсамски","ce":"Чеченски","ceb":"Цебуано","cgg":"чига","ch":"Чаморо","chb":"Чибча","chg":"Чагатаи","chk":"Чукески","chm":"Мари","chn":"Чинукски","cho":"Чоктавски","chp":"Чипвијански","chr":"чероки","chy":"Чејенски","ckb":"сорани курдски","co":"корзикански","cop":"Коптски","cps":"cps","cr":"Кри","crh":"Кримеански турски","cs":"чешки","csb":"Кашубијански","cu":"Старословенски","cv":"Чувашки","cy":"велшки","da":"дански","dak":"Дакота","dar":"Даргва","dav":"таита","de":"немачки","de-AT":"de_AT","de-CH":"швајцарски високи немачки","del":"Делавер","den":"Славски","dgr":"Догриб","din":"Динка","dje":"зарма","doi":"Догри","dsb":"доњи лужичкосрпски","dtp":"dtp","dua":"дуала","dum":"Средњи холандски","dv":"Дивехијски","dyo":"џола фоњи","dyu":"Ђула","dz":"џонга","dzg":"dzg","ebu":"ембу","ee":"еве","efi":"Ефикски","egl":"egl","egy":"Староегипатски","eka":"Екајук","el":"грчки","elx":"Еламитски","en":"енглески","en-AU":"en_AU","en-CA":"en_CA","en-GB":"en_GB","en-GB-alt-short":"енглески (УК)","en-US":"en_US","en-US-alt-short":"енглески (САД)","enm":"Средњи енглески","eo":"есперанто","es":"шпански","es-419":"es_419","es-ES":"es_ES","es-MX":"es_MX","esu":"esu","et":"естонски","eu":"баскијски","ewo":"Евондо","ext":"ext","fa":"персијски","fan":"Фанг","fat":"Фанти","ff":"Фулах","fi":"фински","fil":"филипински","fit":"fit","fj":"фиџијски","fo":"фарски","fon":"Фон","fr":"француски","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"frc","frm":"Средњи француски","fro":"Старофранцуски","frp":"frp","frr":"Северно-фризијски","frs":"Источни фризијски","fur":"Фриулијски","fy":"западни фризијски","ga":"ирски","gaa":"Га","gag":"гагауз","gan":"gan","gay":"Гајо","gba":"Гбаја","gbz":"gbz","gd":"Шкотски Галски","gez":"Џиз","gil":"Гилбертшки","gl":"галицијски","glk":"glk","gmh":"Средњи високи немачки","gn":"гварани","goh":"Старонемачки","gom":"gom","gon":"Гонди","gor":"Горонтало","got":"Готски","grb":"Гребо","grc":"Старогрчки","gsw":"Швајцарски немачки","gu":"гуџарати","guc":"guc","gur":"gur","guz":"гуси","gv":"Манкс","gwi":"Гвич’ин","ha":"хауса","hai":"Хаида","hak":"hak","haw":"хавајски","he":"хебрејски","hi":"хинди","hif":"hif","hil":"Хилигајнон","hit":"Хитите","hmn":"Хмонг","ho":"Хири Моту","hr":"хрватски","hsb":"горњи лужичкосрпски","hsn":"hsn","ht":"Хаитски","hu":"мађарски","hup":"Хупа","hy":"јерменски","hz":"Хереро","ia":"Интерлингва","iba":"Ибан","ibb":"ibb","id":"индонежански","ie":"Међујезички","ig":"игбо","ii":"сечуан ји","ik":"Унупиак","ilo":"Илоко","inh":"Ингвишки","io":"Идо","is":"исландски","it":"италијански","iu":"инуктитут","izh":"izh","ja":"јапански","jam":"jam","jbo":"Лојбан","jgo":"нгомба","jmc":"мачаме","jpr":"Јудео-персијски","jrb":"Јудео-арапски","jut":"jut","jv":"јавански","ka":"грузијски","kaa":"Кара-калпашки","kab":"кабиле","kac":"Качин","kaj":"Ђу","kam":"камба","kaw":"Кави","kbd":"Кабардијски","kbl":"kbl","kcg":"Тјап","kde":"маконде","kea":"зеленортски креолски","ken":"ken","kfo":"Коро","kg":"Конго","kgp":"kgp","kha":"Каси","kho":"Котанешки","khq":"којра чиини","khw":"khw","ki":"кикују","kiu":"kiu","kj":"Куањама","kk":"казашки","kkj":"kkj","kl":"калалисут","kln":"каленџин","km":"кмерски","kmb":"Кимбунду","kn":"канада","ko":"корејски","koi":"коми-пермски","kok":"конкани","kos":"Косреански","kpe":"Кпеле","kr":"Канури","krc":"Карачај-балкар","kri":"Крио","krj":"krj","krl":"Карелијски","kru":"Курукх","ks":"кашмирски","ksb":"шамбала","ksf":"бафија","ksh":"ksh","ku":"курдски","kum":"Кумик","kut":"Кутенаи","kv":"Коми","kw":"корнволски","ky":"киргиски","la":"латински","lad":"Ладино","lag":"ланги","lah":"Ланда","lam":"Ламба","lb":"луксембуршки","lez":"Лезгиан","lfn":"lfn","lg":"ганда","li":"Лимбургиш","lij":"lij","liv":"liv","lkt":"лакота","lmo":"lmo","ln":"лингала","lo":"лаошки","lol":"Монго","loz":"Лози","lt":"литвански","ltg":"ltg","lu":"луба-катанга","lua":"Луба-лулуа","lui":"Луисено","lun":"Лунда","luo":"луо","lus":"Лушаи","luy":"лујиа","lv":"летонски","lzh":"lzh","lzz":"lzz","mad":"Мадурешки","maf":"maf","mag":"Магахи","mai":"Маитили","mak":"Макасар","man":"Мандинго","mas":"масаи","mde":"mde","mdf":"Мокша","mdr":"Мандар","men":"Менде","mer":"меру","mfe":"морисјен","mg":"малгашки","mga":"Средњи ирски","mgh":"макува-меето","mgo":"мета","mh":"Маршалски","mi":"маорски","mic":"Микмак","min":"Минангкабау","mk":"македонски","ml":"малајалам","mn":"монголски","mnc":"Манчу","mni":"Манипури","moh":"мохок","mos":"Моси","mr":"марати","mrj":"mrj","ms":"малајски","mt":"малтешки","mua":"мунданг","mul":"Више језика","mus":"Кришки","mwl":"Мирандешки","mwr":"Марвари","mwv":"mwv","my":"бурмански","mye":"mye","myv":"Ерзија","mzn":"mzn","na":"Науру","nan":"nan","nap":"Неаполитански","naq":"нама","nb":"норвешки бокмал","nd":"северни ндебеле","nds":"Ниски немачки","ne":"непалски","new":"Невари","ng":"Ндонга","nia":"Ниас","niu":"Ниуеан","njo":"njo","nl":"холандски","nl-BE":"фламански","nmg":"квасио","nn":"норвешки нинорск","nnh":"nnh","no":"Норвешки","nog":"Ногаи","non":"Стари норски","nov":"nov","nqo":"Н’ко","nr":"Јужни ндебеле","nso":"Северни сото","nus":"нуер","nv":"Навахо","nwc":"Класични невари","ny":"Њања","nym":"Њамвези","nyn":"нјанколе","nyo":"Њоро","nzi":"Нзима","oc":"Провансалски","oj":"Ојибва","om":"оромо","or":"орија","os":"Осетски","osa":"Осаге","ota":"Отомански турски","pa":"панџаби","pag":"Пангасински","pal":"Пахлави","pam":"Пампанга","pap":"Папиаменто","pau":"Палауански","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"Староперсијски","pfl":"pfl","phn":"Феничански","pi":"Пали","pl":"пољски","pms":"pms","pnt":"pnt","pon":"Понпејски","prg":"prg","pro":"Старопровансалски","ps":"паштунски","ps-alt-variant":"пашто","pt":"португалски","pt-BR":"Бразилски португалски","pt-PT":"Иберијски португалски","qu":"кечуа","quc":"к’иче","qug":"qug","raj":"Рађастани","rap":"Рапануи","rar":"Раротонган","rgn":"rgn","rif":"rif","rm":"рето-романски","rn":"рунди","ro":"румунски","ro-MD":"молдавски","rof":"ромбо","rom":"Романи","root":"Рут","rtm":"rtm","ru":"руски","rue":"rue","rug":"rug","rup":"Ароманијски","rw":"кинјаруанда","rwk":"руа","sa":"санскрит","sad":"Сандаве","sah":"Јакут","sam":"Самаритански арамејски","saq":"самбуру","sas":"Сасак","sat":"Сантали","saz":"saz","sba":"sba","sbp":"сангу","sc":"Сардињаски","scn":"Сицилијански","sco":"Шкотски","sd":"синди","sdc":"sdc","se":"северни сами","see":"see","seh":"сена","sei":"sei","sel":"Селкап","ses":"којраборо сени","sg":"санго","sga":"Староирски","sgs":"sgs","sh":"Српскохрватски","shi":"ташелхит","shn":"Шан","shu":"shu","si":"синхалски","sid":"Сидамо","sk":"словачки","sl":"словеначки","sli":"sli","sly":"sly","sm":"Самоански","sma":"јужни сами","smj":"луле сами","smn":"инари сами","sms":"сколт сами","sn":"шона","snk":"Сонинке","so":"сомалски","sog":"Соџијенски","sq":"албански","sr":"српски","srn":"Сранански тонго","srr":"Серер","ss":"Свати","ssy":"ssy","st":"Сесото","stq":"stq","su":"судански","suk":"Сукума","sus":"Сусу","sux":"Сумерски","sv":"шведски","sw":"свахили","swb":"Коморски","swc":"конго свахили","syc":"Класични сиријски","syr":"Сиријски","szl":"szl","ta":"тамилски","tcy":"tcy","te":"телугу","tem":"Тимне","teo":"тесо","ter":"Терено","tet":"Тетум","tg":"Тађик","th":"тајландски","ti":"тигриња","tig":"Тигре","tiv":"Тив","tk":"туркменски","tkl":"Токелау","tkr":"tkr","tl":"Тагалски","tlh":"Клингонски","tli":"Тлингит","tly":"tly","tmh":"Тамашек","tn":"Тсвана","to":"тонга","tog":"Њаса тонга","tpi":"Ток Писин","tr":"турски","tru":"tru","trv":"trv","ts":"Тсонга","tsd":"tsd","tsi":"Тсимшиан","tt":"татарски","ttt":"ttt","tum":"Тумбука","tvl":"Тувалу","tw":"Тви","twq":"тасавак","ty":"Тахићански","tyv":"Тувинијски","tzm":"централноатласки тамазигт","udm":"Удмурт","ug":"ујгурски","uga":"Угаритски","uk":"украјински","umb":"Умбунду","und":"непознат језик","ur":"урду","uz":"узбечки","vai":"ваи","ve":"Венда","vec":"vec","vep":"vep","vi":"вијетнамски","vls":"vls","vmf":"vmf","vo":"Волапук","vot":"Вотски","vro":"vro","vun":"вунџо","wa":"Валун","wae":"wae","wal":"Валамо","war":"Варај","was":"Вашо","wo":"волоф","wuu":"wuu","xal":"Калмик","xh":"коса","xmf":"xmf","xog":"сога","yao":"Јао","yap":"Јапешки","yav":"yav","ybb":"ybb","yi":"Јидиш","yo":"јоруба","yrl":"yrl","yue":"Кантонски","za":"Жуанг","zap":"Запотечки","zbl":"Блисимболи","zea":"zea","zen":"Зенага","zgh":"стандардни марокански тамазигт","zh":"кинески","zh-Hans":"zh_Hans","zh-Hant":"zh_Hant","zu":"зулу","zun":"Зуни","zxx":"без лингвистичког садржаја","zza":"Заза"} \ No newline at end of file diff --git a/Punic/data/sr/listPatterns.json b/Punic/data/sr/listPatterns.json new file mode 100644 index 0000000..8e76a64 --- /dev/null +++ b/Punic/data/sr/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s и %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s и %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s и %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s и %2$s","2":"%1$s и %2$s"}} \ No newline at end of file diff --git a/Punic/data/sr/localeDisplayNames.json b/Punic/data/sr/localeDisplayNames.json new file mode 100644 index 0000000..2876145 --- /dev/null +++ b/Punic/data/sr/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"календар","colAlternate":"Сортирање уз игнорисање симбола","colBackwards":"Сортирање према обрнутим акцентима","colCaseFirst":"Ређање према малом/великом слову","colCaseLevel":"Сортирање према малом/великом слову","colHiraganaQuaternary":"Сортирање према кана симболима","colNormalization":"Нормализовано сортирање","colNumeric":"Нумеричко сортирање","colStrength":"Сортирање према јачини","collation":"Сортирање","currency":"валута","numbers":"бројеви","timezone":"Временска зона","va":"Варијанта локалитета","variableTop":"Сортирај као симболе","x":"Приватна употреба"},"types":{"numbers":{"vaii":"Ваи цифре"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"календар Републике Кине"},"colStrength":{"tertiary":"Сортирај акценте/мала и велика слова/ширину"},"colCaseFirst":{"upper":"Сортирај прво велика слова"},"colBackwards":{"yes":"Сортирај акценте обрнуто"},"colCaseLevel":{"yes":"Сортирај мала и велика слова"},"colHiraganaQuaternary":{"yes":"Сортирај кана симболе другачије"},"colNormalization":{"yes":"Сортирај Unicode нормализовано"},"colNumeric":{"yes":"Сортирај цифре нумерички"},"colAlternate":{"shifted":"Сортирање уз игнорисање симбола"}},"codePatterns":{"language":"Језик: %1$s","script":"писмо: %1$s","territory":"Регион: %1$s"}} \ No newline at end of file diff --git a/Punic/data/sr/numbers.json b/Punic/data/sr/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/sr/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/sr/territories.json b/Punic/data/sr/territories.json new file mode 100644 index 0000000..ffe045c --- /dev/null +++ b/Punic/data/sr/territories.json @@ -0,0 +1 @@ +{"001":"свет","002":"Африка","003":"Северноамерички континент","005":"Јужна Америка","009":"Океанија","011":"Западна Африка","013":"Централна Америка","014":"Источна Африка","015":"Северна Африка","017":"Централна Африка","018":"Јужна Африка","019":"Северна и Јужна Америка","021":"Северна Америка","029":"Кариби","030":"Источна Азија","034":"Јужна Азија","035":"Југоисточна Азија","039":"Јужна Европа","053":"Аустралија и Нови Зеланд","054":"Меланезија","057":"Микронезијски регион","061":"Полинезија","142":"Азија","143":"Централна Азија","145":"Западна Азија","150":"Европа","151":"Источна Европа","154":"Северна Европа","155":"Западна Европа","419":"Латинска Америка","AC":"Острво Асенсион","AD":"Андора","AE":"Уједињени Арапски Емирати","AF":"Авганистан","AG":"Антигва и Барбуда","AI":"Ангвила","AL":"Албанија","AM":"Јерменија","AN":"Холандски Антили","AO":"Ангола","AQ":"Антарктик","AR":"Аргентина","AS":"Америчка Самоа","AT":"Аустрија","AU":"Аустралија","AW":"Аруба","AX":"Оландска острва","AZ":"Азербејџан","BA":"Босна и Херцеговина","BB":"Барбадос","BD":"Бангладеш","BE":"Белгија","BF":"Буркина Фасо","BG":"Бугарска","BH":"Бахреин","BI":"Бурунди","BJ":"Бенин","BL":"Свети Бартоломеј","BM":"Бермуда","BN":"Брунеј","BO":"Боливија","BQ":"Карипска Холандија","BR":"Бразил","BS":"Бахами","BT":"Бутан","BV":"Острво Буве","BW":"Боцвана","BY":"Белорусија","BZ":"Белизе","CA":"Канада","CC":"Кокос (Келинг) Острва","CD":"Конго - Киншаса","CD-alt-variant":"Конго (ДРК)","CF":"Централноафричка Република","CG":"Конго - Бразавил","CG-alt-variant":"Конго (Република)","CH":"Швајцарска","CI":"Обала Слоноваче","CI-alt-variant":"CI","CK":"Кукова Острва","CL":"Чиле","CM":"Камерун","CN":"Кина","CO":"Колумбија","CP":"Острво Клипертон","CR":"Костарика","CU":"Куба","CV":"Зеленортска Острва","CW":"Курасао","CX":"Божићно острво","CY":"Кипар","CZ":"Чешка","DE":"Немачка","DG":"Дијего Гарсија","DJ":"Џибути","DK":"Данска","DM":"Доминика","DO":"Доминиканска Република","DZ":"Алжир","EA":"Сеута и Мелиља","EC":"Еквадор","EE":"Естонија","EG":"Египат","EH":"Западна Сахара","ER":"Еритреја","ES":"Шпанија","ET":"Етиопија","EU":"Европска Унија","FI":"Финска","FJ":"Фиџи","FK":"Фокландска острва","FK-alt-variant":"Фокландска (Малвинска) острва","FM":"Микронезија","FO":"Фарска Острва","FR":"Француска","GA":"Габон","GB":"Велика Британија","GB-alt-short":"УК","GD":"Гренада","GE":"Грузија","GF":"Француска Гвајана","GG":"Гурнси","GH":"Гана","GI":"Гибралтар","GL":"Гренланд","GM":"Гамбија","GN":"Гвинеја","GP":"Гваделупе","GQ":"Екваторијална Гвинеја","GR":"Грчка","GS":"Јужна Џорџија и Јужна Сендвич Острва","GT":"Гватемала","GU":"Гуам","GW":"Гвинеја-Бисао","GY":"Гвајана","HK":"Хонг Конг С. А. Р. Кина","HK-alt-short":"Хонг Конг","HM":"Острва Херд и Мекдоналд","HN":"Хондурас","HR":"Хрватска","HT":"Хаити","HU":"Мађарска","IC":"Канарска острва","ID":"Индонезија","IE":"Ирска","IL":"Израел","IM":"Острво Ман","IN":"Индија","IO":"Британска територија у Индијском океану","IQ":"Ирак","IR":"Иран","IS":"Исланд","IT":"Италија","JE":"Џерси","JM":"Јамајка","JO":"Јордан","JP":"Јапан","KE":"Кенија","KG":"Киргистан","KH":"Камбоџа","KI":"Кирибати","KM":"Коморска Острва","KN":"Сент Китс и Невис","KP":"Северна Кореја","KR":"Јужна Кореја","KW":"Кувајт","KY":"Кајманска Острва","KZ":"Казахстан","LA":"Лаос","LB":"Либан","LC":"Света Луција","LI":"Лихтенштајн","LK":"Шри Ланка","LR":"Либерија","LS":"Лесото","LT":"Литванија","LU":"Луксембург","LV":"Летонија","LY":"Либија","MA":"Мароко","MC":"Монако","MD":"Молдавија","ME":"Црна Гора","MF":"Сент Мартин","MG":"Мадагаскар","MH":"Маршалска Острва","MK":"Македонија","MK-alt-variant":"Македонија (БЈРМ)","ML":"Мали","MM":"Мијанмар (Бурма)","MN":"Монголија","MO":"САР Макао (Кина)","MO-alt-short":"Макао","MP":"Северна Маријанска Острва","MQ":"Мартиник","MR":"Мауританија","MS":"Монсерат","MT":"Малта","MU":"Маурицијус","MV":"Малдиви","MW":"Малави","MX":"Мексико","MY":"Малезија","MZ":"Мозамбик","NA":"Намибија","NC":"Нова Каледонија","NE":"Нигер","NF":"Норфолк Острво","NG":"Нигерија","NI":"Никарагва","NL":"Холандија","NO":"Норвешка","NP":"Непал","NR":"Науру","NU":"Ниуе","NZ":"Нови Зеланд","OM":"Оман","PA":"Панама","PE":"Перу","PF":"Француска Полинезија","PG":"Папуа Нова Гвинеја","PH":"Филипини","PK":"Пакистан","PL":"Пољска","PM":"Сен Пјер и Микелон","PN":"Питкерн","PR":"Порторико","PS":"Палестинске територије","PS-alt-short":"Палестина","PT":"Португал","PW":"Палау","PY":"Парагвај","QA":"Катар","QO":"Океанија (удаљена острва)","RE":"Реинион","RO":"Румунија","RS":"Србија","RU":"Русија","RW":"Руанда","SA":"Саудијска Арабија","SB":"Соломонска Острва","SC":"Сејшели","SD":"Судан","SE":"Шведска","SG":"Сингапур","SH":"Света Јелена","SI":"Словенија","SJ":"Свалбард и Јан Мајен","SK":"Словачка","SL":"Сијера Леоне","SM":"Сан Марино","SN":"Сенегал","SO":"Сомалија","SR":"Суринам","SS":"Јужни Судан","ST":"Сао Томе и Принципе","SV":"Салвадор","SX":"Свети Мартин","SY":"Сирија","SZ":"Свазиленд","TA":"Тристан да Куња","TC":"Острва Туркс и Каикос","TD":"Чад","TF":"Француске Јужне Територије","TG":"Того","TH":"Тајланд","TJ":"Таџикистан","TK":"Токелау","TL":"Источни Тимор","TL-alt-variant":"TL","TM":"Туркменистан","TN":"Тунис","TO":"Тонга","TR":"Турска","TT":"Тринидад и Тобаго","TV":"Тувалу","TW":"Тајван","TZ":"Танзанија","UA":"Украјина","UG":"Уганда","UM":"Удаљена острва САД","US":"Сједињене Америчке Државе","US-alt-short":"САД","UY":"Уругвај","UZ":"Узбекистан","VA":"Ватикан","VC":"Сент Винсент и Гренадини","VE":"Венецуела","VG":"Британска Девичанска Острва","VI":"Америчка Девичанска Острва","VN":"Вијетнам","VU":"Вануату","WF":"Валис и Футуна","WS":"Самоа","XK":"Косово","YE":"Јемен","YT":"Мајот","ZA":"Јужноафричка Република","ZM":"Замбија","ZW":"Зимбабве","ZZ":"Непознат регион"} \ No newline at end of file diff --git a/Punic/data/sr/timeZoneNames.json b/Punic/data/sr/timeZoneNames.json new file mode 100644 index 0000000..2e504b6 --- /dev/null +++ b/Punic/data/sr/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HHmm;-HHmm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Време у земљи: %1$s","regionFormat-type-standard":"%1$s, стандардно време","regionFormat-type-daylight":"%1$s, летње време","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Адак"},"Anchorage":{"exemplarCity":"Енкориџ"},"Anguilla":{"exemplarCity":"Ангвила"},"Antigua":{"exemplarCity":"Антигва"},"Araguaina":{"exemplarCity":"Арагвајана"},"Argentina":{"La_Rioja":{"exemplarCity":"Ла Риоха"},"Rio_Gallegos":{"exemplarCity":"Рио Гелегос"},"Salta":{"exemplarCity":"Салта"},"San_Juan":{"exemplarCity":"Сан Хуан"},"San_Luis":{"exemplarCity":"Сан Луи"},"Tucuman":{"exemplarCity":"Тукуман"},"Ushuaia":{"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":"Салвадор"},"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":{"Knox":{"exemplarCity":"Нокс, Индијана"},"Marengo":{"exemplarCity":"Маренго, Индијана"},"Petersburg":{"exemplarCity":"Питерсбург, Индијана"},"Tell_City":{"exemplarCity":"Тел Сити"},"Vevay":{"exemplarCity":"Вевај, Индијана"},"Vincennes":{"exemplarCity":"Винценес, Индијана"},"Winamac":{"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":"Бијула, Северна Дакота"},"Center":{"exemplarCity":"Центар, Северна Дакота"},"New_Salem":{"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":"Св. Бартоломeј"},"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":"Андора"},"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":"Кијев"},"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":"Тирана"},"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":"Банкок"},"Beirut":{"exemplarCity":"Бејрут"},"Bishkek":{"exemplarCity":"Бишкек"},"Brunei":{"exemplarCity":"Брунеји"},"Calcutta":{"exemplarCity":"Калкута"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Чојбалсан"},"Chongqing":{"exemplarCity":"Чонгкинг"},"Colombo":{"exemplarCity":"Коломбо"},"Damascus":{"exemplarCity":"Дамаск"},"Dhaka":{"exemplarCity":"Дака"},"Dili":{"exemplarCity":"Дили"},"Dubai":{"exemplarCity":"Дубаи"},"Dushanbe":{"exemplarCity":"Душанбе"},"Gaza":{"exemplarCity":"Газа"},"Harbin":{"exemplarCity":"Харбин"},"Hebron":{"exemplarCity":"Хеброн"},"Hong_Kong":{"exemplarCity":"Хонг Конг"},"Hovd":{"exemplarCity":"Ховд"},"Irkutsk":{"exemplarCity":"Иркуцк"},"Jakarta":{"exemplarCity":"Џакарта"},"Jayapura":{"exemplarCity":"Џајапура"},"Jerusalem":{"exemplarCity":"Јерусалим"},"Kabul":{"exemplarCity":"Кабул"},"Kamchatka":{"exemplarCity":"Камчатка"},"Karachi":{"exemplarCity":"Карачи"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"Тајпеј"},"Tashkent":{"exemplarCity":"Ташкент"},"Tbilisi":{"exemplarCity":"Тбилиси"},"Tehran":{"exemplarCity":"Техеран"},"Thimphu":{"exemplarCity":"Тимпу"},"Tokyo":{"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":"Окланд"},"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":{"Acre":{"long":{"generic":"Акре време","standard":"Акре стандардно време","daylight":"Акре летње рачунање времена"}},"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":"Аљашко летње време"}},"Almaty":{"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":"Апија летње рачунање времена"}},"Aqtau":{"long":{"generic":"Акватау време","standard":"Акватау стандардно време","daylight":"Акватау летње рачунање времена"}},"Aqtobe":{"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":"Средњеевропско летње рачунање времена"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"Источноевропско време","standard":"Источноевропско стандардно време","daylight":"Источноевропско летње рачунање времена"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"даљи исток Европе"}},"Europe_Western":{"long":{"generic":"Западноевропско време","standard":"Западноевропско стандардно време","daylight":"Западноевропско летње рачунање времена"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Фолкландска Острва време","standard":"Фолкландска Острва стандардно време","daylight":"Фолкландска Острва летње рачунање времена"}},"Fiji":{"long":{"generic":"Фиџи време","standard":"Фиџи стандардно време","daylight":"Фиџи летње рачунање времена"}},"French_Guiana":{"long":{"standard":"Француска Гвајана време"}},"French_Southern":{"long":{"standard":"Француско јужно и антарктичко време"}},"GMT":{"long":{"standard":"Средње време по Гриничу"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Галапагос време"}},"Gambier":{"long":{"standard":"Гамбијер време"}},"Georgia":{"long":{"generic":"Грузија време","standard":"Грузија стандардно време","daylight":"Грузија летње рачунање времена"}},"Gilbert_Islands":{"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":"Киргизстан време"}},"Lanka":{"long":{"standard":"Шри Ланка време"}},"Line_Islands":{"long":{"standard":"Лине Острва време"}},"Lord_Howe":{"long":{"generic":"Лорд Хов време","standard":"Лорд Хов стандардно време","daylight":"Лорд Хов летње рачунање времена"}},"Macau":{"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":"Понпеи време"}},"Qyzylorda":{"long":{"generic":"Кизилорда време","standard":"Кизилорда стандардно време","daylight":"Кизилорда летње рачунање времена"}},"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":"Јекатеринбург летње рачунање времена"}}}} \ No newline at end of file diff --git a/Punic/data/sr/units.json b/Punic/data/sr/units.json new file mode 100644 index 0000000..0de9e88 --- /dev/null +++ b/Punic/data/sr/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"ге сила","one":"%1$s ге сила","few":"%1$s ге сила","other":"%1$s ге сила"},"meter-per-second-squared":{"_name":"метри у секунди на квадрат","one":"%1$s метар у секунди на квадрат","few":"%1$s метра у секунди на квадрат","other":"%1$s метара у секунди на квадрат"}},"angle":{"arc-minute":{"_name":"минути","one":"%1$s минут","few":"%1$s минута","other":"%1$s минута"},"arc-second":{"_name":"секунде","one":"%1$s секунда","few":"%1$s секунде","other":"%1$s секунди"},"degree":{"_name":"степени","one":"%1$s степен","few":"%1$s степена","other":"%1$s степени"},"radian":{"_name":"радијани","one":"%1$s радијан","few":"%1$s радијана","other":"%1$s радијана"}},"area":{"acre":{"_name":"акери","one":"%1$s акер","few":"%1$s акера","other":"%1$s акера"},"hectare":{"_name":"хектари","one":"%1$s хектар","few":"%1$s хектара","other":"%1$s хектара"},"square-centimeter":{"_name":"квадратни центиметри","one":"%1$s квадратни центиметар","few":"%1$s квадратна центиметра","other":"%1$s квадратних центиметара"},"square-foot":{"_name":"квадратне стопе","one":"%1$s квадратна стопа","few":"%1$s квадратне стопе","other":"%1$s квадратних стопа"},"square-inch":{"_name":"квадратни инчи","one":"%1$s квадратни инч","few":"%1$s квадратна инча","other":"%1$s квадратних инча"},"square-kilometer":{"_name":"квадратни километри","one":"%1$s квадратни километар","few":"%1$s квадратна километра","other":"%1$s квадратних километара"},"square-meter":{"_name":"квадратни метри","one":"%1$s квадратни метар","few":"%1$s квадратна метра","other":"%1$s квадратних метара"},"square-mile":{"_name":"квадратне миље","one":"%1$s квадратна миља","few":"%1$s квадратне миље","other":"%1$s квадратних миља"},"square-yard":{"_name":"квадратни јарди","one":"%1$s квадратни јард","few":"%1$s квадратна јарда","other":"%1$s квадратних јарди"}},"consumption":{"liter-per-kilometer":{"_name":"литри по километру","one":"%1$s литар по километру","few":"%1$s литра по километру","other":"%1$s литара по километру"},"mile-per-gallon":{"_name":"миља по галону","one":"%1$s миља по галону","few":"%1$s миље по галону","other":"%1$s миља по галону"}},"digital":{"bit":{"_name":"битови","one":"%1$s бит","few":"%1$s бита","other":"%1$s битова"},"byte":{"_name":"бајтови","one":"%1$s бајт","few":"%1$s бајта","other":"%1$s бајтова"},"gigabit":{"_name":"гигабитови","one":"%1$s гигабит","few":"%1$s гигабита","other":"%1$s гигабита"},"gigabyte":{"_name":"гигабајти","one":"%1$s гигабајт","few":"%1$s гигабајта","other":"%1$s гигабајта"},"kilobit":{"_name":"килобитови","one":"%1$s килобит","few":"%1$s килобита","other":"%1$s килобита"},"kilobyte":{"_name":"килобајти","one":"%1$s килобајт","few":"%1$s килобајта","other":"%1$s килобајта"},"megabit":{"_name":"мегабитови","one":"%1$s мегабит","few":"%1$s мегабита","other":"%1$s мегабита"},"megabyte":{"_name":"мегабајти","one":"%1$s мегабајт","few":"%1$s мегабајта","other":"%1$s мегабајта"},"terabit":{"_name":"терабитови","one":"%1$s терабит","few":"%1$s терабита","other":"%1$s терабита"},"terabyte":{"_name":"терабајти","one":"%1$s терабајт","few":"%1$s терабајта","other":"%1$s терабајта"}},"duration":{"day":{"_name":"дани","one":"%1$s дан","few":"%1$s дана","other":"%1$s дана"},"hour":{"_name":"сати","one":"%1$s сат","few":"%1$s сата","other":"%1$s сати","_per":"%1$s/сат"},"microsecond":{"_name":"микросекунде","one":"%1$s микросекунда","few":"%1$s микросекунде","other":"%1$s микросекунди"},"millisecond":{"_name":"милисекунде","one":"%1$s милисекунда","few":"%1$s милисекунде","other":"%1$s милисекунди"},"minute":{"_name":"минути","one":"%1$s минут","few":"%1$s минута","other":"%1$s минута"},"month":{"_name":"месеци","one":"%1$s месец","few":"%1$s месеца","other":"%1$s месеци"},"nanosecond":{"_name":"наносекунде","one":"%1$s наносекунда","few":"%1$s наносекунде","other":"%1$s наносекунди"},"second":{"_name":"секунде","one":"%1$s секунда","few":"%1$s секунде","other":"%1$s секунди","_per":"%1$s/сек"},"week":{"_name":"недеље","one":"%1$s недеља","few":"%1$s недеље","other":"%1$s недеља"},"year":{"_name":"године","one":"%1$s година","few":"%1$s године","other":"%1$s година"}},"electric":{"ampere":{"_name":"ампери","one":"%1$s ампер","few":"%1$s ампера","other":"%1$s ампера"},"milliampere":{"_name":"милиампери","one":"%1$s милиампер","few":"%1$s милиампера","other":"%1$s милиампера"},"ohm":{"_name":"ом","one":"%1$s ом","few":"%1$s ома","other":"%1$s ома"},"volt":{"_name":"волти","one":"%1$s волт","few":"%1$s волта","other":"%1$s волти"}},"energy":{"calorie":{"_name":"калорије","one":"%1$s калорија","few":"%1$s калорије","other":"%1$s калорија"},"foodcalorie":{"_name":"Калорије","one":"%1$s калорија","few":"%1$s калорије","other":"%1$s калорија"},"joule":{"_name":"џули","one":"%1$s џул","few":"%1$s џула","other":"%1$s џула"},"kilocalorie":{"_name":"килокалорије","one":"%1$s килокалорија","few":"%1$s килокалорије","other":"%1$s килокалорија"},"kilojoule":{"_name":"килоџули","one":"%1$s килоџул","few":"%1$s килоџула","other":"%1$s килоџула"},"kilowatt-hour":{"_name":"киловат-сати","one":"%1$s киловат-сат","few":"%1$s киловат-сата","other":"%1$s киловат-сати"}},"frequency":{"gigahertz":{"_name":"гигахерци","one":"%1$s гигахерц","few":"%1$s гигахерца","other":"%1$s гигахерца"},"hertz":{"_name":"херци","one":"%1$s херц","few":"%1$s херца","other":"%1$s херца"},"kilohertz":{"_name":"килохерци","one":"%1$s килохерц","few":"%1$s килохерца","other":"%1$s килохерца"},"megahertz":{"_name":"мегахерци","one":"%1$s мегахерц","few":"%1$s мегахерца","other":"%1$s мегахерца"}},"length":{"astronomical-unit":{"_name":"астрономске јединице","one":"%1$s астрономска јединица","few":"%1$s астрономске јединице","other":"%1$s астрономских јединица"},"centimeter":{"_name":"центиметри","one":"%1$s центиметар","few":"%1$s центиментра","other":"%1$s центиметара"},"decimeter":{"_name":"дециметри","one":"%1$s дециметар","few":"%1$s дециметра","other":"%1$s дециметара"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"стопе","one":"%1$s стопа","few":"%1$s стопе","other":"%1$s стопа"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"инчи","one":"%1$s инч","few":"%1$s инча","other":"%1$s инча"},"kilometer":{"_name":"километри","one":"%1$s километар","few":"%1$s километра","other":"%1$s километара"},"light-year":{"_name":"светлосне године","one":"%1$s светлосна година","few":"%1$s светлосне године","other":"%1$s светлосних година"},"meter":{"_name":"метри","one":"%1$s метар","few":"%1$s метра","other":"%1$s метара"},"micrometer":{"_name":"микрометри","one":"%1$s микрометар","few":"%1$s микрометра","other":"%1$s микрометара"},"mile":{"_name":"миље","one":"%1$s миља","few":"%1$s миље","other":"%1$s миља"},"millimeter":{"_name":"милиметри","one":"%1$s милиметар","few":"%1$s милиметра","other":"%1$s милиметара"},"nanometer":{"_name":"нанометри","one":"%1$s нанометар","few":"%1$s нанометра","other":"%1$s нанометара"},"nautical-mile":{"_name":"наутичке миље","one":"%1$s наутичка миља","few":"%1$s наутичке миље","other":"%1$s наутичких миља"},"parsec":{"_name":"парсеци","one":"%1$s парсек","few":"%1$s парсека","other":"%1$s парсека"},"picometer":{"_name":"пикометри","one":"%1$s пикометар","few":"%1$s пикометра","other":"%1$s пикометара"},"yard":{"_name":"јарди","one":"%1$s јард","few":"%1$s јарда","other":"%1$s јарди"}},"light":{"lux":{"_name":"лукс","one":"%1$s лукс","few":"%1$s лукса","other":"%1$s лукса"}},"mass":{"carat":{"_name":"карати","one":"%1$s карат","few":"%1$s карата","other":"%1$s карата"},"gram":{"_name":"грами","one":"%1$s грам","few":"%1$s грама","other":"%1$s грама"},"kilogram":{"_name":"килограми","one":"%1$s килограм","few":"%1$s килограма","other":"%1$s килограма"},"metric-ton":{"_name":"метричке тоне","one":"%1$s метричка тона","few":"%1$s метричке тоне","other":"%1$s метричких тона"},"microgram":{"_name":"микрограми","one":"%1$s микрограм","few":"%1$s микрограма","other":"%1$s микрограма"},"milligram":{"_name":"милиграми","one":"%1$s милиграм","few":"%1$s милиграма","other":"%1$s милиграма"},"ounce":{"_name":"унце","one":"%1$s унца","few":"%1$s унце","other":"%1$s унци"},"ounce-troy":{"_name":"фине унце","one":"%1$s фина унца","few":"%1$s фине унце","other":"%1$s финих унци"},"pound":{"_name":"фунте","one":"%1$s фунта","few":"%1$s фунте","other":"%1$s фунти"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"тоне","one":"%1$s тона","few":"%1$s тоне","other":"%1$s тона"}},"power":{"gigawatt":{"_name":"гигавати","one":"%1$s гигават","few":"%1$s гигавата","other":"%1$s гигавати"},"horsepower":{"_name":"коњске снаге","one":"%1$s коњска снага","few":"%1$s коњске снаге","other":"%1$s коњских снага"},"kilowatt":{"_name":"киловати","one":"%1$s киловат","few":"%1$s киловата","other":"%1$s киловати"},"megawatt":{"_name":"мегавати","one":"%1$s мегават","few":"%1$s мегавата","other":"%1$s мегавати"},"milliwatt":{"_name":"миливати","one":"%1$s миливат","few":"%1$s миливата","other":"%1$s миливати"},"watt":{"_name":"вати","one":"%1$s ват","few":"%1$s вата","other":"%1$s вати"}},"pressure":{"hectopascal":{"_name":"хектопаскали","one":"%1$s хектопаскал","few":"%1$s хектопаскала","other":"%1$s хектопаскала"},"inch-hg":{"_name":"инчи живиног стуба","one":"%1$s инч живиног стуба","few":"%1$s инча живиног стуба","other":"%1$s инча живиног стуба"},"millibar":{"_name":"милибари","one":"%1$s милибар","few":"%1$s милибара","other":"%1$s милибара"},"millimeter-of-mercury":{"_name":"милиметри живиног стуба","one":"%1$s милиметар живиног стуба","few":"%1$s милиметра живиног стуба","other":"%1$s милиметара живиног стуба"},"pound-per-square-inch":{"_name":"фунте по квадратном инчу","one":"%1$s фунта по квадратном инчу","few":"%1$s фунте по квадратном инчу","other":"%1$s фунти по квадратном инчу"}},"proportion":{"karat":{"_name":"карати","one":"%1$s карат","few":"%1$s карата","other":"%1$s карата"}},"speed":{"kilometer-per-hour":{"_name":"километри на сат","one":"%1$s километар на сат","few":"%1$s километра на сат","other":"%1$s километара на сат"},"meter-per-second":{"_name":"метри у секунди","one":"%1$s метар у секунди","few":"%1$s метра у секунди","other":"%1$s метара у секунди"},"mile-per-hour":{"_name":"миље на сат","one":"%1$s миља на сат","few":"%1$s миље на сат","other":"%1$s миља на сат"}},"temperature":{"celsius":{"_name":"степени Целзијуса","one":"%1$s степен Целзијуса","few":"%1$s степена Целзијуса","other":"%1$s степени Целзијуса"},"fahrenheit":{"_name":"степени Фаренхајта","one":"%1$s степен Фаренхајта","few":"%1$s степена Фаренхајта","other":"%1$s степени Фаренхајта"},"kelvin":{"_name":"келвин","one":"%1$s келвин","few":"%1$s келвина","other":"%1$s келвина"}},"volume":{"acre-foot":{"_name":"акер стопе","one":"%1$s акер стопа","few":"%1$s акер стопе","other":"%1$s акер стопа"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"центилитри","one":"%1$s центилитар","few":"%1$s центилитра","other":"%1$s центилитара"},"cubic-centimeter":{"_name":"кубни центиметри","one":"%1$s кубни центиметар","few":"%1$s кубна центиметра","other":"%1$s кубних центиметара"},"cubic-foot":{"_name":"кубне стопе","one":"%1$s кубна стопа","few":"%1$s кубне стопе","other":"%1$s кубних стопа"},"cubic-inch":{"_name":"кубни инчи","one":"%1$s кубни инч","few":"%1$s кубна инча","other":"%1$s кубних инча"},"cubic-kilometer":{"_name":"кубни километри","one":"%1$s кубни километар","few":"%1$s кубна километра","other":"%1$s кубних километара"},"cubic-meter":{"_name":"кубни метри","one":"%1$s кубни метар","few":"%1$s кубна метра","other":"%1$s кубних метара"},"cubic-mile":{"_name":"кубне миље","one":"%1$s кубна миља","few":"%1$s кубне миље","other":"%1$s кубних миља"},"cubic-yard":{"_name":"кубни јарди","one":"%1$s кубни јард","few":"%1$s кубна јарда","other":"%1$s кубних јарди"},"cup":{"_name":"шоље","one":"%1$s шоља","few":"%1$s шоље","other":"%1$s шоља"},"deciliter":{"_name":"децилитри","one":"%1$s децилитар","few":"%1$s децилитра","other":"%1$s децилитара"},"fluid-ounce":{"_name":"унце течности","one":"%1$s унца течности","few":"%1$s унце течности","other":"%1$s унци течности"},"gallon":{"_name":"галони","one":"%1$s галон","few":"%1$s галона","other":"%1$s галона"},"hectoliter":{"_name":"хектолитри","one":"%1$s хектолитар","few":"%1$s хектолитра","other":"%1$s хектолитара"},"liter":{"_name":"литри","one":"%1$s литар","few":"%1$s литра","other":"%1$s литара"},"megaliter":{"_name":"мегалитри","one":"%1$s мегалитар","few":"%1$s мегалитра","other":"%1$s мегалитара"},"milliliter":{"_name":"милилитри","one":"%1$s милилитар","few":"%1$s милилитра","other":"%1$s милилитара"},"pint":{"_name":"пинте","one":"%1$s пинта","few":"%1$s пинте","other":"%1$s пинти"},"quart":{"_name":"кварти","one":"%1$s кварат","few":"%1$s кварта","other":"%1$s кварата"},"tablespoon":{"_name":"кашике","one":"%1$s кашика","few":"%1$s кашике","other":"%1$s кашика"},"teaspoon":{"_name":"кашичице","one":"%1$s кашичица","few":"%1$s кашичице","other":"%1$s кашичица"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"ге сила","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"минути","one":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"секунди","one":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"степени","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"акери","one":"%1$s ac","few":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"хектари","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"квадратне стопе","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"квадратни километри","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"квадратни метри","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","few":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"бит","one":"%1$s b","few":"%1$s b","other":"%1$s b"},"byte":{"_name":"бајт","one":"%1$s B","few":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"д.","one":"%1$s дан","few":"%1$s дана","other":"%1$s дана"},"hour":{"_name":"сати","one":"%1$s сат","few":"%1$s сата","other":"%1$s сати","_per":"%1$s/с"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"мин","one":"%1$s мин","few":"%1$s мин","other":"%1$s мин"},"month":{"_name":"месеци","one":"%1$s мес.","few":"%1$s мес.","other":"%1$s мес."},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"сек","one":"%1$s сек","few":"%1$s сек","other":"%1$s сек","_per":"%1$s/сек"},"week":{"_name":"нед.","one":"%1$s нед.","few":"%1$s нед.","other":"%1$s нед."},"year":{"_name":"год.","one":"%1$s год","few":"%1$s год.","other":"%1$s год."}},"electric":{"ampere":{"_name":"ампери","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"оми","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"волти","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","few":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"џули","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ај","one":"%1$s ај","few":"%1$s ај","other":"%1$s ај"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"инчи","one":"%1$s инч","few":"%1$s инча","other":"%1$s инча"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"светлосне год.","one":"%1$s сг","few":"%1$s сг","other":"%1$s сг"},"meter":{"_name":"метри","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"миље","one":"%1$s mi","few":"%1$s mi","other":"%1$s mi"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"парсеци","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"пикометри","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"јарди","one":"%1$s јрд","few":"%1$s јрд","other":"%1$s јрд"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"карати","one":"%1$s CD","few":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"грами","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s унца","few":"%1$s унце","other":"%1$s унци"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"кс","one":"%1$s кс","few":"%1$s кс","other":"%1$s кс"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"вати","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"километри на сат","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"метри у секунди","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"миље на сат","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","few":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"степени Фаренхајта","one":"%1$s°F","few":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","few":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"шоље","one":"%1$s ш.","few":"%1$s ш.","other":"%1$s ш."},"deciliter":{"_name":"dL","one":"%1$s dL","few":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","few":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"литри","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","few":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","few":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"каш.","one":"%1$s каш.","few":"%1$s каш.","other":"%1$s каш."},"teaspoon":{"_name":"кашич.","one":"%1$s кашич.","few":"%1$s кашич.","other":"%1$s кашич."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"ге сила","one":"%1$s G","few":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","few":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"минути","one":"%1$s′","few":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"секунди","one":"%1$s″","few":"%1$s″","other":"%1$s″"},"degree":{"_name":"степени","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$s rad","few":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"акери","one":"%1$s ac","few":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"хектари","one":"%1$s ha","few":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","few":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"квадратне стопе","one":"%1$s ft²","few":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","few":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"квадратни километри","one":"%1$s km²","few":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"квадратни метри","one":"%1$s m²","few":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","few":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","few":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$s L/km","few":"%1$s L/km","other":"%1$s L/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","few":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"бит","one":"%1$s b","few":"%1$s b","other":"%1$s b"},"byte":{"_name":"бајт","one":"%1$s B","few":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","few":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","few":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","few":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","few":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","few":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","few":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","few":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","few":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"д.","one":"%1$s д","few":"%1$s д","other":"%1$s д"},"hour":{"_name":"сати","one":"%1$s сат","few":"%1$s сата","other":"%1$s сати","_per":"%1$s/с"},"microsecond":{"_name":"μs","one":"%1$s μs","few":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","few":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"мин","one":"%1$s м","few":"%1$s м","other":"%1$s м"},"month":{"_name":"м.","one":"%1$s м","few":"%1$s м","other":"%1$s м"},"nanosecond":{"_name":"ns","one":"%1$s ns","few":"%1$s ns","other":"%1$s ns"},"second":{"_name":"сек","one":"%1$s сек","few":"%1$s сек","other":"%1$s сек","_per":"%1$s/сек"},"week":{"_name":"н.","one":"%1$s н","few":"%1$s н","other":"%1$s н"},"year":{"_name":"г.","one":"%1$s г","few":"%1$s г","other":"%1$s г"}},"electric":{"ampere":{"_name":"ампери","one":"%1$s A","few":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","few":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"оми","one":"%1$s Ω","few":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"волти","one":"%1$s V","few":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","few":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","one":"%1$s Cal","few":"%1$s Cal","other":"%1$s Cal"},"joule":{"_name":"џули","one":"%1$s J","few":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","few":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","few":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","few":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","few":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","few":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","few":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","few":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"ај","one":"%1$s ај","few":"%1$s ај","other":"%1$s ај"},"centimeter":{"_name":"cm","one":"%1$s cm","few":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","few":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","one":"%1$s ft","few":"%1$s ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"инчи","one":"%1$s инч","few":"%1$s инча","other":"%1$s инча"},"kilometer":{"_name":"km","one":"%1$s km","few":"%1$s km","other":"%1$s km"},"light-year":{"_name":"светлосне год.","one":"%1$s сг","few":"%1$s сг","other":"%1$s сг"},"meter":{"_name":"метар","one":"%1$s m","few":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"µm","one":"%1$s µm","few":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"миље","one":"%1$s миља","few":"%1$s миље","other":"%1$s миља"},"millimeter":{"_name":"mm","one":"%1$s mm","few":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","few":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","few":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"парсеци","one":"%1$s pc","few":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"пикометри","one":"%1$s pm","few":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"јарди","one":"%1$s јрд","few":"%1$s јрд","other":"%1$s јрд"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","few":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"карати","one":"%1$s CD","few":"%1$s CD","other":"%1$s CD"},"gram":{"_name":"g","one":"%1$s g","few":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","few":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","few":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","few":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","few":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"oz","one":"%1$s унца","few":"%1$s унце","other":"%1$s унци"},"ounce-troy":{"_name":"oz t","one":"%1$s oz t","few":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"lb","one":"%1$s lb","few":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","one":"%1$s tn","few":"%1$s tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","few":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"кс","one":"%1$s кс","few":"%1$s кс","other":"%1$s кс"},"kilowatt":{"_name":"kW","one":"%1$s kW","few":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","few":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","few":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"вати","one":"%1$s W","few":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","few":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","few":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","few":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","few":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","few":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","one":"%1$s kt","few":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","few":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"метри у секунди","one":"%1$s m/s","few":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"миље на сат","one":"%1$s mi/h","few":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°","few":"%1$s°","other":"%1$s°"},"fahrenheit":{"_name":"степени Фаренхајта","one":"%1$s°F","few":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s K","few":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","one":"%1$s ac ft","few":"%1$s ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","one":"%1$s cL","few":"%1$s cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","few":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","one":"%1$s ft³","few":"%1$s ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","one":"%1$s in³","few":"%1$s in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","few":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","few":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","one":"%1$s mi³","few":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","one":"%1$s yd³","few":"%1$s yd³","other":"%1$s yd³"},"cup":{"_name":"шоље","one":"%1$s ш.","few":"%1$s ш.","other":"%1$s ш."},"deciliter":{"_name":"dL","one":"%1$s dL","few":"%1$s dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","few":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","few":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","one":"%1$s hL","few":"%1$s hL","other":"%1$s hL"},"liter":{"_name":"l","one":"%1$s l","few":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$s ML","few":"%1$s ML","other":"%1$s ML"},"milliliter":{"_name":"mL","one":"%1$s mL","few":"%1$s mL","other":"%1$s mL"},"pint":{"_name":"pt","one":"%1$s pt","few":"%1$s pt","other":"%1$s pt"},"quart":{"_name":"qt","one":"%1$s qt","few":"%1$s qt","other":"%1$s qt"},"tablespoon":{"_name":"каш.","one":"%1$s каш.","few":"%1$s каш.","other":"%1$s каш."},"teaspoon":{"_name":"кашич.","one":"%1$s кашич.","few":"%1$s кашич.","other":"%1$s кашич."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/sv/calendar.json b/Punic/data/sv/calendar.json new file mode 100644 index 0000000..533a944 --- /dev/null +++ b/Punic/data/sv/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"jan.","2":"feb.","3":"mars","4":"apr.","5":"maj","6":"juni","7":"juli","8":"aug.","9":"sep.","10":"okt.","11":"nov.","12":"dec."},"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":"januari","2":"februari","3":"mars","4":"april","5":"maj","6":"juni","7":"juli","8":"augusti","9":"september","10":"oktober","11":"november","12":"december"}},"stand-alone":{"abbreviated":{"1":"Jan.","2":"Feb.","3":"Mars","4":"Apr.","5":"Maj","6":"Juni","7":"Juli","8":"Aug.","9":"Sep.","10":"Okt.","11":"Nov.","12":"Dec."},"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":"Januari","2":"Februari","3":"Mars","4":"April","5":"Maj","6":"Juni","7":"Juli","8":"Augusti","9":"September","10":"Oktober","11":"November","12":"December"}}},"days":{"format":{"abbreviated":{"sun":"sön","mon":"mån","tue":"tis","wed":"ons","thu":"tors","fri":"fre","sat":"lör"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"sö","mon":"må","tue":"ti","wed":"on","thu":"to","fri":"fr","sat":"lö"},"wide":{"sun":"söndag","mon":"måndag","tue":"tisdag","wed":"onsdag","thu":"torsdag","fri":"fredag","sat":"lördag"}},"stand-alone":{"abbreviated":{"sun":"Sön","mon":"Mån","tue":"Tis","wed":"Ons","thu":"Tor","fri":"Fre","sat":"Lör"},"narrow":{"sun":"S","mon":"M","tue":"T","wed":"O","thu":"T","fri":"F","sat":"L"},"short":{"sun":"Sö","mon":"Må","tue":"Ti","wed":"On","thu":"To","fri":"Fr","sat":"Lö"},"wide":{"sun":"Söndag","mon":"Måndag","tue":"Tisdag","wed":"Onsdag","thu":"Torsdag","fri":"Fredag","sat":"Lördag"}}},"quarters":{"format":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1:a kvartalet","2":"2:a kvartalet","3":"3:e kvartalet","4":"4:e kvartalet"}},"stand-alone":{"abbreviated":{"1":"K1","2":"K2","3":"K3","4":"K4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1:a kvartalet","2":"2:a kvartalet","3":"3:e kvartalet","4":"4:e kvartalet"}}},"dayPeriods":{"format":{"abbreviated":{"am":"FM","noon":"på dagen","pm":"EM"},"narrow":{"am":"f","noon":"p.d.","pm":"e"},"wide":{"am":"fm","noon":"på dagen","pm":"em"}},"stand-alone":{"abbreviated":{"am":"fm","noon":"på dagen","pm":"em"},"narrow":{"am":"f.m.","noon":"p.d.","pm":"e.m."},"wide":{"am":"förmiddag","noon":"på dagen","pm":"eftermiddag"}}},"eras":{"wide":{"0":"före Kristus","0-alt-variant":"före västerländsk tideräkning","1":"efter Kristus","1-alt-variant":"västerländsk tideräkning"},"abbreviated":{"0":"f.Kr.","0-alt-variant":"f.v.t.","1":"e.Kr.","1-alt-variant":"v.t."},"narrow":{"0":"f.Kr.","0-alt-variant":"fvt","1":"e.Kr.","1-alt-variant":"vt"}},"dateFormats":{"full":"EEEE d MMMM y","long":"d MMMM y","medium":"d MMM y","short":"y-MM-dd"},"timeFormats":{"full":"'kl'. HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/sv/dateFields.json b/Punic/data/sv/dateFields.json new file mode 100644 index 0000000..7700009 --- /dev/null +++ b/Punic/data/sv/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Era"},"year":{"displayName":"År","relative-type--1":"i fjol","relative-type-0":"i år","relative-type-1":"nästa år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} år sedan","relativeTimePattern-count-other":"för {0} år sedan"}},"year-short":{"displayName":"år","relative-type--1":"i fjol","relative-type-0":"i år","relative-type-1":"nästa år","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} år","relativeTimePattern-count-other":"om {0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} år sedan","relativeTimePattern-count-other":"för {0} år sedan"}},"year-narrow":{"displayName":"år","relative-type--1":"i fjol","relative-type-0":"i år","relative-type-1":"nästa år","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} år","relativeTimePattern-count-other":"+{0} år"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} år","relativeTimePattern-count-other":"-{0} år"}},"quarter":{"displayName":"Kvartal","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kvartal","relativeTimePattern-count-other":"om {0} kvartal"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} kvartal sedan","relativeTimePattern-count-other":"för {0} kvartal sedan"}},"quarter-short":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} kv.","relativeTimePattern-count-other":"om {0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} kv. sedan","relativeTimePattern-count-other":"för {0} kv. sedan"}},"quarter-narrow":{"displayName":"kv.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} kv.","relativeTimePattern-count-other":"+{0} kv."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} kv.","relativeTimePattern-count-other":"-{0} kv."}},"month":{"displayName":"Månad","relative-type--1":"förra månaden","relative-type-0":"denna månad","relative-type-1":"nästa månad","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} månad","relativeTimePattern-count-other":"om {0} månader"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} månad sedan","relativeTimePattern-count-other":"för {0} månader sedan"}},"month-short":{"displayName":"m","relative-type--1":"förra månaden","relative-type-0":"denna månad","relative-type-1":"nästa månad","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} mån.","relativeTimePattern-count-other":"om {0} mån."},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} mån. sedan","relativeTimePattern-count-other":"för {0} mån. sedan"}},"month-narrow":{"displayName":"m","relative-type--1":"förra månaden","relative-type-0":"denna månad","relative-type-1":"nästa månad","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} mån.","relativeTimePattern-count-other":"+{0} mån."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} mån.","relativeTimePattern-count-other":"-{0} mån."}},"week":{"displayName":"Vecka","relative-type--1":"förra veckan","relative-type-0":"denna vecka","relative-type-1":"nästa vecka","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} vecka","relativeTimePattern-count-other":"om {0} veckor"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} vecka sedan","relativeTimePattern-count-other":"för {0} veckor sedan"}},"week-short":{"displayName":"v","relative-type--1":"förra veckan","relative-type-0":"denna vecka","relative-type-1":"nästa vecka","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} v.","relativeTimePattern-count-other":"om {0} v."},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} v. sedan","relativeTimePattern-count-other":"för {0} v. sedan"}},"week-narrow":{"displayName":"v","relative-type--1":"förra veckan","relative-type-0":"denna vecka","relative-type-1":"nästa vecka","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} v.","relativeTimePattern-count-other":"+{0} v."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} v.","relativeTimePattern-count-other":"-{0} v."}},"day":{"displayName":"Dag","relative-type--1":"i går","relative-type--2":"i förrgår","relative-type-0":"i dag","relative-type-1":"i morgon","relative-type-2":"i övermorgon","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} dag","relativeTimePattern-count-other":"om {0} dagar"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} dag sedan","relativeTimePattern-count-other":"för {0} dagar sedan"}},"day-short":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i förrgår","relative-type-0":"i dag","relative-type-1":"i morgon","relative-type-2":"i övermorgon","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} d","relativeTimePattern-count-other":"om {0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} d sedan","relativeTimePattern-count-other":"för {0} d sedan"}},"day-narrow":{"displayName":"dag","relative-type--1":"i går","relative-type--2":"i förrgår","relative-type-0":"i dag","relative-type-1":"i morgon","relative-type-2":"i övermorgon","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} d","relativeTimePattern-count-other":"+{0} d"},"relativeTime-type-past":{"relativeTimePattern-count-one":"−{0} d","relativeTimePattern-count-other":"−{0} d"}},"weekday":{"displayName":"Veckodag"},"sun":{"relative-type--1":"söndag förra veckan","relative-type-0":"söndag denna vecka","relative-type-1":"söndag nästa vecka"},"sun-short":{"relative-type--1":"sön. förra veckan","relative-type-0":"sön. denna vecka","relative-type-1":"sön. nästa vecka"},"sun-narrow":{"relative-type--1":"förra sön.","relative-type-0":"denna sön.","relative-type-1":"nästa sön."},"mon":{"relative-type--1":"måndag förra veckan","relative-type-0":"måndag denna vecka","relative-type-1":"måndag nästa vecka"},"mon-short":{"relative-type--1":"mån. förra veckan","relative-type-0":"mån. denna vecka","relative-type-1":"mån. nästa vecka"},"mon-narrow":{"relative-type--1":"förra mån.","relative-type-0":"denna mån.","relative-type-1":"nästa mån."},"tue":{"relative-type--1":"tisdag förra veckan","relative-type-0":"tisdag denna vecka","relative-type-1":"tisdag nästa vecka"},"tue-short":{"relative-type--1":"tis. förra veckan","relative-type-0":"tis. denna vecka","relative-type-1":"tis. nästa vecka"},"tue-narrow":{"relative-type--1":"förra tis.","relative-type-0":"denna tis.","relative-type-1":"nästa tis."},"wed":{"relative-type--1":"onsdag förra veckan","relative-type-0":"onsdag denna vecka","relative-type-1":"onsdag nästa vecka"},"wed-short":{"relative-type--1":"ons. förra veckan","relative-type-0":"ons. denna vecka","relative-type-1":"ons. nästa vecka"},"wed-narrow":{"relative-type--1":"förra ons.","relative-type-0":"denna ons.","relative-type-1":"nästa ons."},"thu":{"relative-type--1":"torsdag förra veckan","relative-type-0":"torsdag denna vecka","relative-type-1":"torsdag nästa vecka"},"thu-short":{"relative-type--1":"tors. förra veckan","relative-type-0":"tors. denna vecka","relative-type-1":"tors. nästa vecka"},"thu-narrow":{"relative-type--1":"förra tors.","relative-type-0":"denna tors.","relative-type-1":"nästa tors."},"fri":{"relative-type--1":"fredag förra veckan","relative-type-0":"fredag denna vecka","relative-type-1":"fredag nästa vecka"},"fri-short":{"relative-type--1":"fre. förra veckan","relative-type-0":"fre. denna vecka","relative-type-1":"fre. nästa vecka"},"fri-narrow":{"relative-type--1":"förra fre.","relative-type-0":"denna fre.","relative-type-1":"nästa fre."},"sat":{"relative-type--1":"lördag förra veckan","relative-type-0":"lördag denna vecka","relative-type-1":"lördag nästa vecka"},"sat-short":{"relative-type--1":"lör. förra veckan","relative-type-0":"lör. denna vecka","relative-type-1":"lör. nästa vecka"},"sat-narrow":{"relative-type--1":"förra lör.","relative-type-0":"denna lör.","relative-type-1":"nästa lör."},"dayperiod":{"displayName":"fm/em"},"hour":{"displayName":"Timme","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} timme","relativeTimePattern-count-other":"om {0} timmar"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} timme sedan","relativeTimePattern-count-other":"för {0} timmar sedan"}},"hour-short":{"displayName":"tim","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} tim","relativeTimePattern-count-other":"om {0} tim"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} tim sedan","relativeTimePattern-count-other":"för {0} tim sedan"}},"hour-narrow":{"displayName":"h","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} h","relativeTimePattern-count-other":"+{0} h"},"relativeTime-type-past":{"relativeTimePattern-count-one":"−{0} h","relativeTimePattern-count-other":"−{0} h"}},"minute":{"displayName":"Minut","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} minut","relativeTimePattern-count-other":"om {0} minuter"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} minut sedan","relativeTimePattern-count-other":"för {0} minuter sedan"}},"minute-short":{"displayName":"min","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} min","relativeTimePattern-count-other":"om {0} min"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} min sedan","relativeTimePattern-count-other":"för {0} min sedan"}},"minute-narrow":{"displayName":"m","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} m","relativeTimePattern-count-other":"+{0} m"},"relativeTime-type-past":{"relativeTimePattern-count-one":"−{0} min","relativeTimePattern-count-other":"−{0} min"}},"second":{"displayName":"Sekund","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sekund","relativeTimePattern-count-other":"om {0} sekunder"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} sekund sedan","relativeTimePattern-count-other":"för {0} sekunder sedan"}},"second-short":{"displayName":"sek","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"om {0} sek","relativeTimePattern-count-other":"om {0} sek"},"relativeTime-type-past":{"relativeTimePattern-count-one":"för {0} sek sedan","relativeTimePattern-count-other":"för {0} sek sedan"}},"second-narrow":{"displayName":"s","relative-type-0":"nu","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} s","relativeTimePattern-count-other":"+{0} s"},"relativeTime-type-past":{"relativeTimePattern-count-one":"−{0} s","relativeTimePattern-count-other":"−{0} s"}},"zone":{"displayName":"Tidszon"}} \ No newline at end of file diff --git a/Punic/data/sv/languages.json b/Punic/data/sv/languages.json new file mode 100644 index 0000000..5061f1e --- /dev/null +++ b/Punic/data/sv/languages.json @@ -0,0 +1 @@ +{"aa":"afar","ab":"abchaziska","ace":"acehnesiska","ach":"acholi","ada":"adangme","ady":"adygeiska","ae":"avestiska","aeb":"tunisisk arabiska","af":"afrikaans","afh":"afrihili","agq":"aghem","ain":"ainu","ak":"akan","akk":"akkadiska","akz":"akz","ale":"aleutiska","aln":"gegiska","alt":"sydaltaiska","am":"amhariska","an":"aragonesiska","ang":"fornengelska","anp":"angika","ar":"arabiska","ar-001":"modern standardarabiska","arc":"arameiska","arn":"araukanska","aro":"araoniska","arp":"arapaho","arq":"algerisk arabiska","arw":"arawakiska","ary":"marockansk arabiska","arz":"egyptisk arabiska","as":"assamesiska","asa":"asu","ase":"amerikanskt teckenspråk","ast":"asturiska","av":"avariska","avk":"kotava","awa":"awadhi","ay":"aymara","az":"azerbajdzjanska","az-alt-short":"azeriska","azb":"sydazerbadjanska","ba":"basjkiriska","bal":"baluchiska","ban":"balinesiska","bar":"bayerska","bas":"basa","bax":"bamunska","bbc":"bbc","bbj":"ghomala","be":"vitryska","bej":"beja","bem":"bemba","bew":"betawiska","bez":"bena","bfd":"bafut","bfq":"bagada","bg":"bulgariska","bho":"bhojpuri","bi":"bislama","bik":"bikol","bin":"bini","bjn":"banjariska","bkm":"bamekon","bla":"siksika","bm":"bambara","bn":"bengali","bo":"tibetanska","bpy":"bishnupriya","bqi":"bakhtiari","br":"bretonska","bra":"braj","brh":"brahuiska","brx":"bodo","bs":"bosniska","bss":"bakossi","bua":"burjätiska","bug":"buginesiska","bum":"boulou","byn":"blin","byv":"bagangte","ca":"katalanska","cad":"caddo","car":"karibiska","cay":"cayuga","cch":"atsam","ce":"tjetjenska","ceb":"cebuano","cgg":"chiga","ch":"chamorro","chb":"chibcha","chg":"chagatai","chk":"chuukesiska","chm":"mariska","chn":"chinook","cho":"choctaw","chp":"chipewyan","chr":"cherokesiska","chy":"cheyenne","ckb":"soranisk kurdiska","co":"korsikanska","cop":"koptiska","cps":"cps","cr":"cree","crh":"krimtatariska","cs":"tjeckiska","csb":"kasjubiska","cu":"kyrkslaviska","cv":"tjuvasjiska","cy":"walesiska","da":"danska","dak":"dakota","dar":"darginska","dav":"taita","de":"tyska","de-AT":"österrikisk tyska","de-CH":"schweizisk högtyska","del":"delaware","den":"slavej","dgr":"dogrib","din":"dinka","dje":"zarma","doi":"dogri","dsb":"lågsorbiska","dtp":"dtp","dua":"duala","dum":"medelnederländska","dv":"divehi","dyo":"jola-fonyi","dyu":"dyula","dz":"bhutanesiska","dzg":"dazaga","ebu":"embu","ee":"ewe","efi":"efik","egl":"emiliska","egy":"fornegyptiska","eka":"ekajuk","el":"grekiska","elx":"elamitiska","en":"engelska","en-AU":"australisk engelska","en-CA":"kanadensisk engelska","en-GB":"brittisk engelska","en-GB-alt-short":"engelska (UK)","en-US":"amerikansk engelska","en-US-alt-short":"en_US","enm":"medelengelska","eo":"esperanto","es":"spanska","es-419":"latinamerikansk spanska","es-ES":"europeisk spanska","es-MX":"mexikansk spanska","esu":"esu","et":"estniska","eu":"baskiska","ewo":"ewondo","ext":"ext","fa":"persiska","fan":"fang","fat":"fanti","ff":"fulani","fi":"finska","fil":"filippinska","fit":"meänkieli","fj":"fijianska","fo":"färöiska","fon":"fonspråket","fr":"franska","fr-CA":"kanadensisk franska","fr-CH":"schweizisk franska","frc":"cajun-franska","frm":"medelfranska","fro":"fornfranska","frp":"frankoprovensalska","frr":"nordfrisiska","frs":"östfrisiska","fur":"friulianska","fy":"västfrisiska","ga":"iriska","gaa":"gã","gag":"gagauziska","gan":"gan","gay":"gayo","gba":"gbaya","gbz":"zoroastrisk dari","gd":"höglandsskotska","gez":"etiopiska","gil":"gilbertiska","gl":"galiciska","glk":"gilaki","gmh":"medelhögtyska","gn":"guaraní","goh":"fornhögtyska","gom":"Goa-konkani","gon":"gondi","gor":"gorontalo","got":"gotiska","grb":"grebo","grc":"forngrekiska","gsw":"schweizertyska","gu":"gujarati","guc":"guc","gur":"gur","guz":"gusii","gv":"manx","gwi":"gwichin","ha":"hausa","hai":"haida","hak":"hakka","haw":"hawaiiska","he":"hebreiska","hi":"hindi","hif":"Fiji-hindi","hil":"hiligaynon","hit":"hettitiska","hmn":"hmongspråk","ho":"hirimotu","hr":"kroatiska","hsb":"högsorbiska","hsn":"xiang","ht":"haitiska","hu":"ungerska","hup":"hupa","hy":"armeniska","hz":"herero","ia":"interlingua","iba":"ibanska","ibb":"ibibio","id":"indonesiska","ie":"interlingue","ig":"igbo","ii":"szezuan i","ik":"inupiak","ilo":"iloko","inh":"ingusjiska","io":"ido","is":"isländska","it":"italienska","iu":"inuktitut","izh":"ingriska","ja":"japanska","jam":"jamaikansk engelsk kreol","jbo":"lojban","jgo":"ngomba","jmc":"kimashami","jpr":"judisk persiska","jrb":"judisk arabiska","jut":"jylländska","jv":"javanesiska","ka":"georgiska","kaa":"karakalpakiska","kab":"kabyliska","kac":"kachin","kaj":"jju","kam":"kamba","kaw":"kawi","kbd":"kabardinska","kbl":"kanembu","kcg":"tyap","kde":"makonde","kea":"kapverdiska","ken":"ken","kfo":"koro","kg":"kikongo","kgp":"kgp","kha":"khasi","kho":"khotanesiska","khq":"Timbuktu-songhoy","khw":"khowar","ki":"kikuyu","kiu":"kiu","kj":"kuanyama","kk":"kazakiska","kkj":"mkako","kl":"grönländska","kln":"kalenjin","km":"kambodjanska","kmb":"kimbundu","kn":"kannada","ko":"koreanska","koi":"komi-permjakiska","kok":"konkani","kos":"kosreanska","kpe":"kpelle","kr":"kanuri","krc":"karachay-balkar","kri":"kri","krj":"krj","krl":"karelska","kru":"kurukh","ks":"kashmiriska","ksb":"kisambaa","ksf":"bafia","ksh":"kölniska","ku":"kurdiska","kum":"kumykiska","kut":"kutenaj","kv":"kome","kw":"korniska","ky":"kirgisiska","la":"latin","lad":"ladino","lag":"langi","lah":"lahnda","lam":"lamba","lb":"luxemburgiska","lez":"lezghien","lfn":"lfn","lg":"luganda","li":"limburgiska","lij":"liguriska","liv":"livoniska","lkt":"lakota","lmo":"lombardiska","ln":"lingala","lo":"laotiska","lol":"mongo","loz":"lozi","lt":"litauiska","ltg":"lettgalliska","lu":"luba-katanga","lua":"luba-lulua","lui":"luiseño","lun":"lunda","luo":"luo","lus":"lushai","luy":"luhya","lv":"lettiska","lzh":"lzh","lzz":"lzz","mad":"maduresiska","maf":"mafa","mag":"magahi","mai":"maithili","mak":"makasar","man":"mande","mas":"massajiska","mde":"maba","mdf":"moksja","mdr":"mandar","men":"mende","mer":"meru","mfe":"mauritansk kreol","mg":"malagassiska","mga":"medeliriska","mgh":"makhuwa-meetto","mgo":"meta’","mh":"marshalliska","mi":"maori","mic":"mi’kmaq","min":"minangkabau","mk":"makedonska","ml":"malayalam","mn":"mongoliska","mnc":"manchuriska","mni":"manipuri","moh":"mohawk","mos":"mossi","mr":"marathi","mrj":"västmariska","ms":"malajiska","mt":"maltesiska","mua":"mundang","mul":"flera språk","mus":"muskogee","mwl":"mirandesiska","mwr":"marwari","mwv":"mwv","my":"burmesiska","mye":"myene","myv":"erjya","mzn":"mazanderani","na":"nauru","nan":"min nan","nap":"napolitanska","naq":"nama","nb":"norskt bokmål","nd":"nordndebele","nds":"lågtyska","ne":"nepalesiska","new":"newariska","ng":"ndonga","nia":"nias","niu":"niueanska","njo":"njo","nl":"nederländska","nl-BE":"flamländska","nmg":"kwasio","nn":"nynorska","nnh":"bamileké-ngiemboon","no":"norska","nog":"nogai","non":"fornnordiska","nov":"nov","nqo":"n-kå","nr":"sydndebele","nso":"nordsotho","nus":"nuer","nv":"navaho","nwc":"klassisk newariska","ny":"nyanja","nym":"nyamwezi","nyn":"nyankole","nyo":"nyoro","nzi":"nzima","oc":"occitanska","oj":"odjibwa","om":"oromo","or":"oriya","os":"ossetiska","osa":"osage","ota":"ottomanska","pa":"punjabi","pag":"pangasinan","pal":"medelpersiska","pam":"pampanga","pap":"papiamento","pau":"palau","pcd":"pikardiska","pdc":"Pennsylvaniatyska","pdt":"mennonitisk lågtyska","peo":"fornpersiska","pfl":"Pfalz-tyska","phn":"feniciska","pi":"pali","pl":"polska","pms":"piemontesiska","pnt":"pontiska","pon":"ponape","prg":"fornpreussiska","pro":"fornprovensalska","ps":"afghanska","ps-alt-variant":"pashto","pt":"portugisiska","pt-BR":"brasiliansk portugisiska","pt-PT":"europeisk portugisiska","qu":"quechua","quc":"kʼicheʼ","qug":"Chimborazo-höglandskichwa","raj":"rajasthani","rap":"rapanui","rar":"rarotonganska","rgn":"romagnol","rif":"riffianska","rm":"rätoromanska","rn":"rundi","ro":"rumänska","ro-MD":"moldaviska","rof":"rombo","rom":"romani","root":"rot","rtm":"rotumänska","ru":"ryska","rue":"rusyn","rug":"rovianska","rup":"arumänska","rw":"kinjarwanda","rwk":"rwa","sa":"sanskrit","sad":"sandawe","sah":"jakutiska","sam":"samaritanska","saq":"samburu","sas":"sasak","sat":"santali","saz":"saurashtra","sba":"ngambay","sbp":"sangu","sc":"sardiska","scn":"sicilianska","sco":"skotska","sd":"sindhi","sdc":"sassaresisk sardiska","se":"nordsamiska","see":"seneca","seh":"sena","sei":"sei","sel":"selkup","ses":"Gao-songhay","sg":"sango","sga":"forniriska","sgs":"samogitiska","sh":"serbokroatiska","shi":"tachelhit","shn":"shan","shu":"Chad-arabiska","si":"singalesiska","sid":"sidamo","sk":"slovakiska","sl":"slovenska","sli":"lågsilesiska","sly":"sly","sm":"samoanska","sma":"sydsamiska","smj":"lulesamiska","smn":"enaresamiska","sms":"skoltsamiska","sn":"shona","snk":"soninke","so":"somaliska","sog":"sogdiska","sq":"albanska","sr":"serbiska","srn":"sranan tongo","srr":"serer","ss":"swati","ssy":"saho","st":"sydsotho","stq":"saterfrisiska","su":"sundanesiska","suk":"sukuma","sus":"susu","sux":"sumeriska","sv":"svenska","sw":"swahili","swb":"shimaoré","swc":"Kongo-swahili","syc":"klassisk syriska","syr":"syriska","szl":"silesiska","ta":"tamil","tcy":"tulu","te":"telugiska","tem":"temne","teo":"teso","ter":"tereno","tet":"tetum","tg":"tadzjikiska","th":"thailändska","ti":"tigrinja","tig":"tigré","tiv":"tivi","tk":"turkmeniska","tkl":"tokelauiska","tkr":"tkr","tl":"tagalog","tlh":"klingonska","tli":"tlingit","tly":"talysh","tmh":"tamashek","tn":"tswana","to":"tonganska","tog":"nyasatonganska","tpi":"tok pisin","tr":"turkiska","tru":"tru","trv":"taroko","ts":"tsonga","tsd":"tsakodiska","tsi":"tsimshian","tt":"tatariska","ttt":"ttt","tum":"tumbuka","tvl":"tuvaluanska","tw":"twi","twq":"tasawaq","ty":"tahitiska","tyv":"tuviniska","tzm":"centralmarockansk tamazight","udm":"udmurtiska","ug":"uiguriska","ug-alt-variant":"östturkiska","uga":"ugaritiska","uk":"ukrainska","umb":"umbundu","und":"obestämt språk","ur":"urdu","uz":"uzbekiska","vai":"vaj","ve":"venda","vec":"venetianska","vep":"veps","vi":"vietnamesiska","vls":"västflamländska","vmf":"Main-frankiska","vo":"volapük","vot":"votiska","vro":"võru","vun":"vunjo","wa":"vallonska","wae":"walsertyska","wal":"walamo","war":"waray","was":"washo","wo":"wolof","wuu":"wu","xal":"kalmuckiska","xh":"xhosa","xmf":"xmf","xog":"lusoga","yao":"kiyao","yap":"japetiska","yav":"yangben","ybb":"bamileké-jemba","yi":"jiddisch","yo":"yoruba","yrl":"yrl","yue":"kantonesiska","za":"zhuang","zap":"zapotek","zbl":"blissymboler","zea":"zeeländska","zen":"zenaga","zgh":"marockansk standard-tamazight","zh":"kinesiska","zh-Hans":"förenklad kinesiska","zh-Hant":"traditionell kinesiska","zu":"zulu","zun":"zuni","zxx":"inget språkligt innehåll","zza":"zazaiska"} \ No newline at end of file diff --git a/Punic/data/sv/listPatterns.json b/Punic/data/sv/listPatterns.json new file mode 100644 index 0000000..73a73ce --- /dev/null +++ b/Punic/data/sv/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s och %2$s","2":"%1$s och %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/sv/localeDisplayNames.json b/Punic/data/sv/localeDisplayNames.json new file mode 100644 index 0000000..edb9ec7 --- /dev/null +++ b/Punic/data/sv/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"kalender","colAlternate":"Ignorera symboler vid sortering","colBackwards":"Sortera accenter omvänt","colCaseFirst":"Ordna efter versaler/gemener","colCaseLevel":"Skiftlägeskänslig sortering","colHiraganaQuaternary":"Sortering efter kana","colNormalization":"Normaliserad sortering","colNumeric":"Numerisk sortering","colStrength":"Sorteringsstyrka","collation":"sorteringsordning","currency":"valuta","numbers":"siffror","timezone":"Tidszon","va":"Språkvariant","variableTop":"Sortera som symboler","x":"privat"},"types":{"numbers":{"vaii":"vai-siffror"},"collation":{"zhuyin":"zhuyin-sorteringsordning"},"calendar":{"roc":"kinesiska republikens kalender"},"colStrength":{"tertiary":"Sortera accenter/skiftläge/bredd"},"colCaseFirst":{"upper":"Sortera versaler först"},"colBackwards":{"yes":"sortera accenter omvänt"},"colCaseLevel":{"yes":"Sortera efter skiftläge"},"colHiraganaQuaternary":{"yes":"Sortera efter kana"},"colNormalization":{"yes":"sortera med Unicode-normalisering"},"colNumeric":{"yes":"Sortera siffror numeriskt"},"colAlternate":{"shifted":"Sortera oavsett symboler"}},"codePatterns":{"language":"språk: %1$s","script":"skrift: %1$s","territory":"region: %1$s"}} \ No newline at end of file diff --git a/Punic/data/sv/numbers.json b/Punic/data/sv/numbers.json new file mode 100644 index 0000000..7ee908d --- /dev/null +++ b/Punic/data/sv/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"−","exponential":"×10^","superscriptingExponent":"·","perMille":"‰","infinity":"∞","nan":"¤¤¤","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/sv/territories.json b/Punic/data/sv/territories.json new file mode 100644 index 0000000..69a6283 --- /dev/null +++ b/Punic/data/sv/territories.json @@ -0,0 +1 @@ +{"001":"världen","002":"Afrika","003":"Nordamerika","005":"Sydamerika","009":"Oceanien","011":"Västafrika","013":"Centralamerika","014":"Östafrika","015":"Nordafrika","017":"Centralafrika","018":"södra Afrika","019":"Nord- och Sydamerika","021":"norra Amerika","029":"Karibien","030":"Östasien","034":"Sydasien","035":"Sydostasien","039":"Sydeuropa","053":"Australasien","054":"Melanesien","057":"Mikronesiska öarna","061":"Polynesien","142":"Asien","143":"Centralasien","145":"Västasien","150":"Europa","151":"Östeuropa","154":"Nordeuropa","155":"Västeuropa","419":"Latinamerika","AC":"Ascension","AD":"Andorra","AE":"Förenade Arabemiraten","AF":"Afghanistan","AG":"Antigua och Barbuda","AI":"Anguilla","AL":"Albanien","AM":"Armenien","AN":"Nederländska Antillerna","AO":"Angola","AQ":"Antarktis","AR":"Argentina","AS":"Amerikanska Samoa","AT":"Österrike","AU":"Australien","AW":"Aruba","AX":"Åland","AZ":"Azerbajdzjan","BA":"Bosnien och Hercegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgien","BF":"Burkina Faso","BG":"Bulgarien","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"S:t Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Karibiska Nederländerna","BR":"Brasilien","BS":"Bahamas","BT":"Bhutan","BV":"Bouvetön","BW":"Botswana","BY":"Vitryssland","BZ":"Belize","CA":"Kanada","CC":"Kokosöarna","CD":"Kongo-Kinshasa","CD-alt-variant":"Demokratiska republiken Kongo","CF":"Centralafrikanska republiken","CG":"Kongo-Brazzaville","CG-alt-variant":"Republiken Kongo","CH":"Schweiz","CI":"Elfenbenskusten","CI-alt-variant":"CI","CK":"Cooköarna","CL":"Chile","CM":"Kamerun","CN":"Kina","CO":"Colombia","CP":"Clippertonön","CR":"Costa Rica","CU":"Kuba","CV":"Kap Verde","CW":"Curaçao","CX":"Julön","CY":"Cypern","CZ":"Tjeckien","DE":"Tyskland","DG":"Diego Garcia","DJ":"Djibouti","DK":"Danmark","DM":"Dominica","DO":"Dominikanska republiken","DZ":"Algeriet","EA":"Ceuta och Melilla","EC":"Ecuador","EE":"Estland","EG":"Egypten","EH":"Västsahara","ER":"Eritrea","ES":"Spanien","ET":"Etiopien","EU":"Europeiska unionen","FI":"Finland","FJ":"Fiji","FK":"Falklandsöarna","FK-alt-variant":"Falklandsöarna (Malvinerna)","FM":"Mikronesien","FO":"Färöarna","FR":"Frankrike","GA":"Gabon","GB":"Storbritannien","GB-alt-short":"Storbritannien","GD":"Grenada","GE":"Georgien","GF":"Franska Guyana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Grönland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Ekvatorialguinea","GR":"Grekland","GS":"Sydgeorgien och Sydsandwichöarna","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hongkong (S.A.R. Kina)","HK-alt-short":"Hongkong","HM":"Heardön och McDonaldöarna","HN":"Honduras","HR":"Kroatien","HT":"Haiti","HU":"Ungern","IC":"Kanarieöarna","ID":"Indonesien","IE":"Irland","IL":"Israel","IM":"Isle of Man","IN":"Indien","IO":"Brittiska territoriet i Indiska oceanen","IQ":"Irak","IR":"Iran","IS":"Island","IT":"Italien","JE":"Jersey","JM":"Jamaica","JO":"Jordanien","JP":"Japan","KE":"Kenya","KG":"Kirgizistan","KH":"Kambodja","KI":"Kiribati","KM":"Komorerna","KN":"S:t Kitts och Nevis","KP":"Nordkorea","KR":"Sydkorea","KW":"Kuwait","KY":"Caymanöarna","KZ":"Kazakstan","LA":"Laos","LB":"Libanon","LC":"S:t Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Litauen","LU":"Luxemburg","LV":"Lettland","LY":"Libyen","MA":"Marocko","MC":"Monaco","MD":"Moldavien","ME":"Montenegro","MF":"S:t Martin","MG":"Madagaskar","MH":"Marshallöarna","MK":"Makedonien","MK-alt-variant":"f.d. jugoslaviska republiken Makedonien","ML":"Mali","MM":"Myanmar (Burma)","MN":"Mongoliet","MO":"Macao (S.A.R. Kina)","MO-alt-short":"Macao","MP":"Nordmarianerna","MQ":"Martinique","MR":"Mauretanien","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldiverna","MW":"Malawi","MX":"Mexiko","MY":"Malaysia","MZ":"Moçambique","NA":"Namibia","NC":"Nya Kaledonien","NE":"Niger","NF":"Norfolkön","NG":"Nigeria","NI":"Nicaragua","NL":"Nederländerna","NO":"Norge","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Nya Zeeland","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Franska Polynesien","PG":"Papua Nya Guinea","PH":"Filippinerna","PK":"Pakistan","PL":"Polen","PM":"S:t Pierre och Miquelon","PN":"Pitcairnöarna","PR":"Puerto Rico","PS":"Palestinska territorierna","PS-alt-short":"Palestina","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"yttre öar i Oceanien","RE":"Réunion","RO":"Rumänien","RS":"Serbien","RU":"Ryssland","RW":"Rwanda","SA":"Saudiarabien","SB":"Salomonöarna","SC":"Seychellerna","SD":"Sudan","SE":"Sverige","SG":"Singapore","SH":"S:t Helena","SI":"Slovenien","SJ":"Svalbard och Jan Mayen","SK":"Slovakien","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Surinam","SS":"Sydsudan","ST":"São Tomé och Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syrien","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Turks- och Caicosöarna","TD":"Tchad","TF":"Franska sydterritorierna","TG":"Togo","TH":"Thailand","TJ":"Tadzjikistan","TK":"Tokelau","TL":"Östtimor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunisien","TO":"Tonga","TR":"Turkiet","TT":"Trinidad och Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraina","UG":"Uganda","UM":"USA:s yttre öar","US":"USA","US-alt-short":"USA","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatikanstaten","VC":"S:t Vincent och Grenadinerna","VE":"Venezuela","VG":"Brittiska Jungfruöarna","VI":"Amerikanska Jungfruöarna","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis- och Futunaöarna","WS":"Samoa","XK":"Kosovo","YE":"Jemen","YT":"Mayotte","ZA":"Sydafrika","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"okänd region"} \ No newline at end of file diff --git a/Punic/data/sv/timeZoneNames.json b/Punic/data/sv/timeZoneNames.json new file mode 100644 index 0000000..fedade1 --- /dev/null +++ b/Punic/data/sv/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;−HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$stid","regionFormat-type-standard":"%1$s (normaltid)","regionFormat-type-daylight":"%1$s (sommartid)","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaína"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Río Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucumán"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asunción"},"Bahia":{"exemplarCity":"Bahia"},"Bahia_Banderas":{"exemplarCity":"Bahía de Banderas"},"Barbados":{"exemplarCity":"Barbados"},"Belem":{"exemplarCity":"Belém"},"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":"Caymanöarna"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Córdoba"},"Costa_Rica":{"exemplarCity":"Costa Rica"},"Creston":{"exemplarCity":"Creston"},"Cuiaba":{"exemplarCity":"Cuiabá"},"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":"Eirunepé"},"El_Salvador":{"exemplarCity":"El Salvador"},"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":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"Jujuy":{"exemplarCity":"San Salvador de 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":"Maceió"},"Managua":{"exemplarCity":"Managua"},"Manaus":{"exemplarCity":"Manaus"},"Marigot":{"exemplarCity":"Marigot"},"Martinique":{"exemplarCity":"Martinique"},"Matamoros":{"exemplarCity":"Matamoros"},"Mazatlan":{"exemplarCity":"Mazatlán"},"Mendoza":{"exemplarCity":"Mendoza"},"Menominee":{"exemplarCity":"Menominee"},"Merida":{"exemplarCity":"Mérida"},"Metlakatla":{"exemplarCity":"Metlakatla"},"Mexico_City":{"exemplarCity":"Mexico City"},"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":"Fernando de Noronha"},"North_Dakota":{"Beulah":{"exemplarCity":"Beulah, North Dakota"},"Center":{"exemplarCity":"Center, North Dakota"},"New_Salem":{"exemplarCity":"New Salem, 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":"Santarém"},"Santiago":{"exemplarCity":"Santiago"},"Santo_Domingo":{"exemplarCity":"Santo Domingo"},"Sao_Paulo":{"exemplarCity":"São Paulo"},"Scoresbysund":{"exemplarCity":"Ittoqqortoormiit"},"Sitka":{"exemplarCity":"Sitka"},"St_Barthelemy":{"exemplarCity":"S:t Barthélemy"},"St_Johns":{"exemplarCity":"S:t Johns"},"St_Kitts":{"exemplarCity":"S:t Kitts"},"St_Lucia":{"exemplarCity":"S:t Lucia"},"St_Thomas":{"exemplarCity":"S:t Thomas"},"St_Vincent":{"exemplarCity":"S:t Vincent"},"Swift_Current":{"exemplarCity":"Swift Current"},"Tegucigalpa":{"exemplarCity":"Tegucigalpa"},"Thule":{"exemplarCity":"Qaanaaq"},"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":"Azorerna"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanarieöarna"},"Cape_Verde":{"exemplarCity":"Kap Verde"},"Faeroe":{"exemplarCity":"Torshamn"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Sydgeorgien"},"St_Helena":{"exemplarCity":"S:t Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Aten"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Bryssel"},"Bucharest":{"exemplarCity":"Bukarest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Büsingen am Hochrhein"},"Chisinau":{"exemplarCity":"Chișinău"},"Copenhagen":{"exemplarCity":"Köpenhamn"},"Dublin":{"long":{"daylight":"irländsk sommartid"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsingfors"},"Isle_of_Man":{"exemplarCity":"Isle of Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lissabon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"brittisk sommartid"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Moskva"},"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"},"Uzhgorod":{"exemplarCity":"Uzjhorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikanen"},"Vienna":{"exemplarCity":"Wien"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warszawa"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporizjzja"},"Zurich":{"exemplarCity":"Zürich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Abeba"},"Algiers":{"exemplarCity":"Alger"},"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":"Dar es-Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"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":"Khartoum"},"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":"Mogadishu"},"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":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Alma-Ata"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aktau"},"Aqtobe":{"exemplarCity":"Aqtöbe"},"Ashgabat":{"exemplarCity":"Asjchabad"},"Baghdad":{"exemplarCity":"Bagdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bisjkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Tjojbalsan"},"Chongqing":{"exemplarCity":"Chongqing"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damaskus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dusjanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hongkong"},"Hovd":{"exemplarCity":"Chovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamtjatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Kashgar"},"Katmandu":{"exemplarCity":"Katmandu"},"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":"Manilla"},"Muscat":{"exemplarCity":"Muskat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"Ho Chi Minh-staden"},"Sakhalin":{"exemplarCity":"Sachalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Söul"},"Shanghai":{"exemplarCity":"Shanghai"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Tasjkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Teheran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulan Bator"},"Urumqi":{"exemplarCity":"Ürümqi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Jakutsk"},"Yekaterinburg":{"exemplarCity":"Jekaterinburg"},"Yerevan":{"exemplarCity":"Jerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagosöarna"},"Christmas":{"exemplarCity":"Julön"},"Cocos":{"exemplarCity":"Kokosöarna"},"Comoro":{"exemplarCity":"Komorerna"},"Kerguelen":{"exemplarCity":"Kerguelenöarna"},"Mahe":{"exemplarCity":"Mahé"},"Maldives":{"exemplarCity":"Maldiverna"},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Påskön"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"Funafuti":{"exemplarCity":"Funafuti"},"Galapagos":{"exemplarCity":"Galápagos"},"Gambier":{"exemplarCity":"Gambieröarna"},"Guadalcanal":{"exemplarCity":"Guadalcanal"},"Guam":{"exemplarCity":"Guam"},"Honolulu":{"exemplarCity":"Honolulu"},"Johnston":{"exemplarCity":"Johnstonatollen"},"Kiritimati":{"exemplarCity":"Kiritimati"},"Kosrae":{"exemplarCity":"Kosrae"},"Kwajalein":{"exemplarCity":"Kwajalein"},"Majuro":{"exemplarCity":"Majuro"},"Marquesas":{"exemplarCity":"Marquesasöarna"},"Midway":{"exemplarCity":"Midwayöarna"},"Nauru":{"exemplarCity":"Nauru"},"Niue":{"exemplarCity":"Niue"},"Norfolk":{"exemplarCity":"Norfolk"},"Noumea":{"exemplarCity":"Nouméa"},"Pago_Pago":{"exemplarCity":"Pago Pago"},"Palau":{"exemplarCity":"Palau"},"Pitcairn":{"exemplarCity":"Pitcairnöarna"},"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ön"}},"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":"Vostok"}},"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":"okänd stad"}}},"metazone":{"Acre":{"long":{"generic":"västbrasiliansk tid","standard":"västbrasiliansk normaltid","daylight":"västbrasiliansk sommartid"}},"Afghanistan":{"long":{"standard":"afghansk tid"}},"Africa_Central":{"long":{"standard":"centralafrikansk tid"}},"Africa_Eastern":{"long":{"standard":"östafrikansk tid"}},"Africa_Southern":{"long":{"standard":"sydafrikansk tid"}},"Africa_Western":{"long":{"generic":"västafrikansk tid","standard":"västafrikansk normaltid","daylight":"västafrikansk sommartid"}},"Alaska":{"long":{"generic":"Alaskatid","standard":"Alaska, normaltid","daylight":"Alaska, sommartid"}},"Almaty":{"long":{"generic":"Almatytid","standard":"Almatynormaltid","daylight":"Almatysommartid"}},"Amazon":{"long":{"generic":"Amazonastid","standard":"Amazonas, normaltid","daylight":"Amazonas, sommartid"}},"America_Central":{"long":{"generic":"centralnordamerikansk tid","standard":"centralnordamerikansk normaltid","daylight":"centralnordamerikansk sommartid"}},"America_Eastern":{"long":{"generic":"östnordamerikansk tid","standard":"östnordamerikansk normaltid","daylight":"östnordamerikansk sommartid"}},"America_Mountain":{"long":{"generic":"Klippiga bergentid","standard":"Klippiga bergen, normaltid","daylight":"Klippiga bergen, sommartid"}},"America_Pacific":{"long":{"generic":"västnordamerikansk tid","standard":"västnordamerikansk normaltid","daylight":"västnordamerikansk sommartid"}},"Anadyr":{"long":{"generic":"Anadyrtid","standard":"Anadyrnormaltid","daylight":"Anadyrsommartid"}},"Apia":{"long":{"generic":"Apiatid","standard":"Apia, normaltid","daylight":"Apia, sommartid"}},"Aqtau":{"long":{"generic":"Aqtautid","standard":"Aqtaunormaltid","daylight":"Aqtausommartid"}},"Aqtobe":{"long":{"generic":"Aqtöbetid","standard":"Aqtöbenormaltid","daylight":"Aqtöbesommartid"}},"Arabian":{"long":{"generic":"saudiarabisk tid","standard":"saudiarabisk normaltid","daylight":"saudiarabisk sommartid"}},"Argentina":{"long":{"generic":"östargentinsk tid","standard":"östargentinsk normaltid","daylight":"östargentinsk sommartid"}},"Argentina_Western":{"long":{"generic":"västargentinsk tid","standard":"västargentinsk normaltid","daylight":"västargentinsk sommartid"}},"Armenia":{"long":{"generic":"armenisk tid","standard":"armenisk normaltid","daylight":"armenisk sommartid"}},"Atlantic":{"long":{"generic":"nordamerikansk atlanttid","standard":"nordamerikansk atlantnormaltid","daylight":"nordamerikansk atlantsommartid"}},"Australia_Central":{"long":{"generic":"centralaustralisk tid","standard":"centralaustralisk normaltid","daylight":"centralaustralisk sommartid"}},"Australia_CentralWestern":{"long":{"generic":"västcentralaustralisk tid","standard":"västcentralaustralisk normaltid","daylight":"västcentralaustralisk sommartid"}},"Australia_Eastern":{"long":{"generic":"östaustralisk tid","standard":"östaustralisk normaltid","daylight":"östaustralisk sommartid"}},"Australia_Western":{"long":{"generic":"västaustralisk tid","standard":"västaustralisk normaltid","daylight":"västaustralisk sommartid"}},"Azerbaijan":{"long":{"generic":"azerbajdzjansk tid","standard":"azerbajdzjansk normaltid","daylight":"azerbajdzjansk sommartid"}},"Azores":{"long":{"generic":"azorisk tid","standard":"azorisk normaltid","daylight":"azorisk sommartid"}},"Bangladesh":{"long":{"generic":"bangladeshisk tid","standard":"bangladeshisk normaltid","daylight":"bangladeshisk sommartid"}},"Bhutan":{"long":{"standard":"bhutansk tid"}},"Bolivia":{"long":{"standard":"boliviansk tid"}},"Brasilia":{"long":{"generic":"Brasiliatid","standard":"Brasilia, normaltid","daylight":"Brasilia, sommartid"}},"Brunei":{"long":{"standard":"Bruneitid"}},"Cape_Verde":{"long":{"generic":"Kap Verdetid","standard":"Kap Verde, normaltid","daylight":"Kap Verde, sommartid"}},"Casey":{"long":{"standard":"Caseytid"}},"Chamorro":{"long":{"standard":"Chamorrotid"}},"Chatham":{"long":{"generic":"Chathamtid","standard":"Chatham, normaltid","daylight":"Chatham, sommartid"}},"Chile":{"long":{"generic":"chilensk tid","standard":"chilensk normaltid","daylight":"chilensk sommartid"}},"China":{"long":{"generic":"kinesisk tid","standard":"kinesisk normaltid","daylight":"kinesisk sommartid"}},"Choibalsan":{"long":{"generic":"Tjojbalsantid","standard":"Tjojbalsan, normaltid","daylight":"Tjojbalsan, sommartid"}},"Christmas":{"long":{"standard":"Julöns tid"}},"Cocos":{"long":{"standard":"Keelingöarnas tid"}},"Colombia":{"long":{"generic":"colombiansk tid","standard":"colombiansk normaltid","daylight":"colombiansk sommartid"}},"Cook":{"long":{"generic":"Cooköarnas tid","standard":"Cooköarnas normaltid","daylight":"Cooköarnas sommartid"}},"Cuba":{"long":{"generic":"kubansk tid","standard":"kubansk normaltid","daylight":"kubansk sommartid"}},"Davis":{"long":{"standard":"Davistid"}},"DumontDUrville":{"long":{"standard":"Dumont d’Urville-tid"}},"East_Timor":{"long":{"standard":"östtimorisk tid"}},"Easter":{"long":{"generic":"Påsköns tid","standard":"Påsköns normaltid","daylight":"Påsköns sommartid"}},"Ecuador":{"long":{"standard":"ecuadoriansk tid"}},"Europe_Central":{"long":{"generic":"centraleuropeisk tid","standard":"centraleuropeisk normaltid","daylight":"centraleuropeisk sommartid"},"short":{"generic":"CET","standard":"CET","daylight":"CEST"}},"Europe_Eastern":{"long":{"generic":"östeuropeisk tid","standard":"östeuropeisk normaltid","daylight":"östeuropeisk sommartid"},"short":{"generic":"EET","standard":"EET","daylight":"EEST"}},"Europe_Further_Eastern":{"long":{"standard":"Kaliningradtid"}},"Europe_Western":{"long":{"generic":"västeuropeisk tid","standard":"västeuropeisk normaltid","daylight":"västeuropeisk sommartid"},"short":{"generic":"WET","standard":"WET","daylight":"WEST"}},"Falkland":{"long":{"generic":"Falklandsöarnas tid","standard":"Falklandsöarnas normaltid","daylight":"Falklandsöarnas sommartid"}},"Fiji":{"long":{"generic":"Fijitid","standard":"Fiji, normaltid","daylight":"Fiji, sommartid"}},"French_Guiana":{"long":{"standard":"Franska Guyanatid"}},"French_Southern":{"long":{"standard":"Franska Sydterritoriernas tid"}},"GMT":{"long":{"standard":"Greenwichtid"},"short":{"standard":"GMT"}},"Galapagos":{"long":{"standard":"Galápagostid"}},"Gambier":{"long":{"standard":"Gambiertid"}},"Georgia":{"long":{"generic":"georgisk tid","standard":"georgisk normaltid","daylight":"georgisk sommartid"}},"Gilbert_Islands":{"long":{"standard":"Kiribatitid"}},"Greenland_Eastern":{"long":{"generic":"östgrönländsk tid","standard":"östgrönländsk normaltid","daylight":"östgrönländsk sommartid"}},"Greenland_Western":{"long":{"generic":"västgrönländsk tid","standard":"västgrönländsk normaltid","daylight":"västgrönländsk sommartid"}},"Guam":{"long":{"standard":"Guamtid"}},"Gulf":{"long":{"standard":"Persiska vikentid"}},"Guyana":{"long":{"standard":"Guyanatid"}},"Hawaii_Aleutian":{"long":{"generic":"Honolulutid","standard":"Honolulu, normaltid","daylight":"Honolulu, sommartid"}},"Hong_Kong":{"long":{"generic":"Hongkongtid","standard":"Hongkong, normaltid","daylight":"Hongkong, sommartid"}},"Hovd":{"long":{"generic":"Chovdtid","standard":"Chovd, normaltid","daylight":"Chovd, sommartid"}},"India":{"long":{"standard":"indisk tid"}},"Indian_Ocean":{"long":{"standard":"Brittiska Indiska oceanöarnas tid"}},"Indochina":{"long":{"standard":"indokinesisk tid"}},"Indonesia_Central":{"long":{"standard":"centralindonesisk tid"}},"Indonesia_Eastern":{"long":{"standard":"östindonesisk tid"}},"Indonesia_Western":{"long":{"standard":"västindonesisk tid"}},"Iran":{"long":{"generic":"iransk tid","standard":"iransk normaltid","daylight":"iransk sommartid"}},"Irkutsk":{"long":{"generic":"Irkutsktid","standard":"Irkutsk, normaltid","daylight":"Irkutsk, sommartid"}},"Israel":{"long":{"generic":"israelisk tid","standard":"israelisk normaltid","daylight":"israelisk sommartid"}},"Japan":{"long":{"generic":"japansk tid","standard":"japansk normaltid","daylight":"japansk sommartid"}},"Kamchatka":{"long":{"generic":"Kamtjatkatid","standard":"Kamtjatkanormaltid","daylight":"Kamtjatkasommartid"}},"Kazakhstan_Eastern":{"long":{"standard":"östkazakstansk tid"}},"Kazakhstan_Western":{"long":{"standard":"västkazakstansk tid"}},"Korea":{"long":{"generic":"koreansk tid","standard":"koreansk normaltid","daylight":"koreansk sommartid"}},"Kosrae":{"long":{"standard":"Kosraetid"}},"Krasnoyarsk":{"long":{"generic":"Krasnojarsktid","standard":"Krasnojarsk, normaltid","daylight":"Krasnojarsk, sommartid"}},"Kyrgystan":{"long":{"standard":"kirgizisk tid"}},"Lanka":{"long":{"standard":"Sri Lankatid"}},"Line_Islands":{"long":{"standard":"Lineöarnas tid"}},"Lord_Howe":{"long":{"generic":"Lord Howetid","standard":"Lord Howe, normaltid","daylight":"Lord Howe, sommartid"}},"Macau":{"long":{"generic":"Macautid","standard":"Macaunormaltid","daylight":"Macausommartid"}},"Macquarie":{"long":{"standard":"Macquarietid"}},"Magadan":{"long":{"generic":"Magadantid","standard":"Magadan, normaltid","daylight":"Magadan, sommartid"}},"Malaysia":{"long":{"standard":"malaysisk tid"}},"Maldives":{"long":{"standard":"Maldivernatid"}},"Marquesas":{"long":{"standard":"Marquesastid"}},"Marshall_Islands":{"long":{"standard":"Marshallöarnas tid"}},"Mauritius":{"long":{"generic":"Mauritiustid","standard":"Mauritius, normaltid","daylight":"Mauritius, sommartid"}},"Mawson":{"long":{"standard":"Mawsontid"}},"Mexico_Northwest":{"long":{"generic":"nordvästra Mexiko-tid","standard":"nordvästra Mexiko, normaltid","daylight":"nordvästra Mexiko, sommartid"}},"Mexico_Pacific":{"long":{"generic":"mexikansk stillahavstid","standard":"mexikansk stillahavstid, normaltid","daylight":"mexikansk stillahavstid, sommartid"}},"Mongolia":{"long":{"generic":"Ulaanbaatartid","standard":"Ulaanbaatar, normaltid","daylight":"Ulaanbaatar, sommartid"}},"Moscow":{"long":{"generic":"Moskvatid","standard":"Moskva, normaltid","daylight":"Moskva, sommartid"}},"Myanmar":{"long":{"standard":"burmesisk tid"}},"Nauru":{"long":{"standard":"Naurutid"}},"Nepal":{"long":{"standard":"nepalesisk tid"}},"New_Caledonia":{"long":{"generic":"Nya Kaledonientid","standard":"Nya Kaledonien, normaltid","daylight":"Nya Kaledonien, sommartid"}},"New_Zealand":{"long":{"generic":"nyzeeländsk tid","standard":"nyzeeländsk normaltid","daylight":"nyzeeländsk sommartid"}},"Newfoundland":{"long":{"generic":"Newfoundlandtid","standard":"Newfoundland, normaltid","daylight":"Newfoundland, sommartid"}},"Niue":{"long":{"standard":"Niuetid"}},"Norfolk":{"long":{"standard":"Norfolköns tid"}},"Noronha":{"long":{"generic":"Fernando de Noronhatid","standard":"Fernando de Noronha, normaltid","daylight":"Fernando de Noronha, sommartid"}},"North_Mariana":{"long":{"standard":"Nordmarianernas tid"}},"Novosibirsk":{"long":{"generic":"Novosibirsktid","standard":"Novosibirsk, normaltid","daylight":"Novosibirsk, sommartid"}},"Omsk":{"long":{"generic":"Omsktid","standard":"Omsk, normaltid","daylight":"Omsk, sommartid"}},"Pakistan":{"long":{"generic":"pakistansk tid","standard":"pakistansk normaltid","daylight":"pakistansk sommartid"}},"Palau":{"long":{"standard":"Palautid"}},"Papua_New_Guinea":{"long":{"standard":"Papua Nya Guineas tid"}},"Paraguay":{"long":{"generic":"paraguayansk tid","standard":"paraguayansk normaltid","daylight":"paraguayansk sommartid"}},"Peru":{"long":{"generic":"peruansk tid","standard":"peruansk normaltid","daylight":"peruansk sommartid"}},"Philippines":{"long":{"generic":"filippinsk tid","standard":"filippinsk normaltid","daylight":"filippinsk sommartid"}},"Phoenix_Islands":{"long":{"standard":"Enderburytid"}},"Pierre_Miquelon":{"long":{"generic":"S:t Pierre och Miquelontid","standard":"S:t Pierre och Miquelon, normaltid","daylight":"S:t Pierre och Miquelon, sommartid"}},"Pitcairn":{"long":{"standard":"Pitcairntid"}},"Ponape":{"long":{"standard":"Ponapetid"}},"Qyzylorda":{"long":{"generic":"Qyzylordatid","standard":"Qyzylordanormaltid","daylight":"Qyzylordasommartid"}},"Reunion":{"long":{"standard":"Réuniontid"}},"Rothera":{"long":{"standard":"Rotheratid"}},"Sakhalin":{"long":{"generic":"Sachalintid","standard":"Sachalin, normaltid","daylight":"Sachalin, sommartid"}},"Samara":{"long":{"generic":"Samaratid","standard":"Samaranormaltid","daylight":"Samarasommartid"}},"Samoa":{"long":{"generic":"samoansk tid","standard":"samoansk normaltid","daylight":"samoansk sommartid"}},"Seychelles":{"long":{"standard":"Seychellernatid"}},"Singapore":{"long":{"standard":"Singaporetid"}},"Solomon":{"long":{"standard":"Salomonöarnas tid"}},"South_Georgia":{"long":{"standard":"sydgeorgisk tid"}},"Suriname":{"long":{"standard":"Surinamtid"}},"Syowa":{"long":{"standard":"Syowatid"}},"Tahiti":{"long":{"standard":"Tahititid"}},"Taipei":{"long":{"generic":"Taipeitid","standard":"Taipei, normaltid","daylight":"Taipei, sommartid"}},"Tajikistan":{"long":{"standard":"Tadzjikistantid"}},"Tokelau":{"long":{"standard":"Tokelautid"}},"Tonga":{"long":{"generic":"Tongatid","standard":"Tonga, normaltid","daylight":"Tonga, sommartid"}},"Truk":{"long":{"standard":"Chuuktid"}},"Turkmenistan":{"long":{"generic":"turkmensk tid","standard":"turkmensk normaltid","daylight":"turkmensk sommartid"}},"Tuvalu":{"long":{"standard":"Tuvalutid"}},"Uruguay":{"long":{"generic":"uruguayansk tid","standard":"uruguayansk normaltid","daylight":"uruguayansk sommartid"}},"Uzbekistan":{"long":{"generic":"uzbekisk tid","standard":"uzbekisk normaltid","daylight":"uzbekisk sommartid"}},"Vanuatu":{"long":{"generic":"Vanuatutid","standard":"Vanuatu, normaltid","daylight":"Vanuatu, sommartid"}},"Venezuela":{"long":{"standard":"venezuelansk tid"}},"Vladivostok":{"long":{"generic":"Vladivostoktid","standard":"Vladivostok, normaltid","daylight":"Vladivostok, sommartid"}},"Volgograd":{"long":{"generic":"Volgogradtid","standard":"Volgograd, normaltid","daylight":"Volgograd, sommartid"}},"Vostok":{"long":{"standard":"Vostoktid"}},"Wake":{"long":{"standard":"Wakeöarnas tid"}},"Wallis":{"long":{"standard":"Wallis- och Futunaöarnas tid"}},"Yakutsk":{"long":{"generic":"Jakutsktid","standard":"Jakutsk, normaltid","daylight":"Jakutsk, sommartid"}},"Yekaterinburg":{"long":{"generic":"Jekaterinburgtid","standard":"Jekaterinburg, normaltid","daylight":"Jekaterinburg, sommartid"}}}} \ No newline at end of file diff --git a/Punic/data/sv/units.json b/Punic/data/sv/units.json new file mode 100644 index 0000000..cacd8e2 --- /dev/null +++ b/Punic/data/sv/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s per %2$s","acceleration":{"g-force":{"_name":"gånger jordens gravitation","one":"%1$s gånger jordens gravitation","other":"%1$s gånger jordens gravitation"},"meter-per-second-squared":{"_name":"meter per kvadratsekund","one":"%1$s meter per kvadratsekund","other":"%1$s meter per kvadratsekund"}},"angle":{"arc-minute":{"_name":"bågminuter","one":"%1$s bågminut","other":"%1$s bågminuter"},"arc-second":{"_name":"bågsekunder","one":"%1$s bågsekund","other":"%1$s bågsekunder"},"degree":{"_name":"grader","one":"%1$s grad","other":"%1$s grader"},"radian":{"_name":"radianer","one":"%1$s radian","other":"%1$s radianer"}},"area":{"acre":{"_name":"engelska tunnland","one":"%1$s engelskt tunnland","other":"%1$s engelska tunnland"},"hectare":{"_name":"hektar","one":"%1$s hektar","other":"%1$s hektar"},"square-centimeter":{"_name":"kvadratcentimeter","one":"%1$s kvadratcentimeter","other":"%1$s kvadratcentimeter"},"square-foot":{"_name":"kvadratfot","one":"%1$s kvadratfot","other":"%1$s kvadratfot"},"square-inch":{"_name":"kvadrattum","one":"%1$s kvadrattum","other":"%1$s kvadrattum"},"square-kilometer":{"_name":"kvadratkilometer","one":"%1$s kvadratkilometer","other":"%1$s kvadratkilometer"},"square-meter":{"_name":"kvadratmeter","one":"%1$s kvadratmeter","other":"%1$s kvadratmeter"},"square-mile":{"_name":"engelska kvadratmil","one":"%1$s engelsk kvadratmil","other":"%1$s engelska kvadratmil"},"square-yard":{"_name":"yard²","one":"%1$s yard²","other":"%1$s yard²"}},"consumption":{"liter-per-kilometer":{"_name":"liter per kilometer","one":"%1$s liter per kilometer","other":"%1$s liter per kilometer"},"mile-per-gallon":{"_name":"miles per gallon","one":"%1$s mile per gallon","other":"%1$s miles per gallon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"byte","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","one":"%1$s terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"dygn","one":"%1$s dygn","other":"%1$s dygn"},"hour":{"_name":"timmar","one":"%1$s timme","other":"%1$s timmar","_per":"%1$s/h"},"microsecond":{"_name":"mikrosekunder","one":"%1$s mikrosekund","other":"%1$s mikrosekunder"},"millisecond":{"_name":"millisekunder","one":"%1$s millisekund","other":"%1$s millisekunder"},"minute":{"_name":"minuter","one":"%1$s minut","other":"%1$s minuter"},"month":{"_name":"månader","one":"%1$s månad","other":"%1$s månader"},"nanosecond":{"_name":"nanosekunder","one":"%1$s nanosekund","other":"%1$s nanosekunder"},"second":{"_name":"sekunder","one":"%1$s sekund","other":"%1$s sekunder","_per":"%1$s/s"},"week":{"_name":"veckor","one":"%1$s vecka","other":"%1$s veckor"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"ampere","one":"ampere","other":"%1$s ampere"},"milliampere":{"_name":"milliampere","one":"milliampere","other":"%1$s milliampere"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"kalorier","one":"%1$s kalori","other":"%1$s kalorier"},"foodcalorie":{"_name":"kilokalorier","one":"%1$s kilokalori","other":"%1$s kilokalorier"},"joule":{"_name":"joule","one":"%1$s joule","other":"%1$s joule"},"kilocalorie":{"_name":"kilokalorier","one":"%1$s kilokalori","other":"%1$s kilokalorier"},"kilojoule":{"_name":"kilojoule","one":"%1$s kilojoule","other":"%1$s kilojoule"},"kilowatt-hour":{"_name":"kilowattimmar","one":"%1$s kilowattimme","other":"%1$s kilowattimmar"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"astronomiska enheter","one":"%1$s astronomisk enhet","other":"%1$s astronomiska enheter"},"centimeter":{"_name":"centimeter","one":"%1$s centimeter","other":"%1$s centimeter"},"decimeter":{"_name":"decimeter","one":"%1$s decimeter","other":"%1$s decimeter"},"fathom":{"_name":"famnar","one":"%1$s famn","other":"%1$s famnar"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"engelska plogfårelängder","one":"%1$s engelsk plogfårelängd","other":"%1$s engelska plogfårelängder"},"inch":{"_name":"tum","one":"%1$s tum","other":"%1$s tum"},"kilometer":{"_name":"kilometer","one":"%1$s kilometer","other":"%1$s kilometer"},"light-year":{"_name":"ljusår","one":"%1$s ljusår","other":"%1$s ljusår"},"meter":{"_name":"meter","one":"%1$s meter","other":"%1$s meter"},"micrometer":{"_name":"mikrometer","one":"%1$s mikrometer","other":"%1$s mikrometer"},"mile":{"_name":"engelska mil","one":"%1$s engelsk mil","other":"%1$s engelska mil"},"millimeter":{"_name":"millimeter","one":"%1$s millimeter","other":"%1$s millimeter"},"nanometer":{"_name":"nanometer","one":"%1$s nanometer","other":"%1$s nanometer"},"nautical-mile":{"_name":"nautiska mil","one":"%1$s nautisk mil","other":"%1$s nautiska mil"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsec"},"picometer":{"_name":"pikometer","one":"%1$s pikometer","other":"%1$s pikometer"},"yard":{"_name":"engelska yard","one":"%1$s engelsk yard","other":"%1$s engelska yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s gram"},"kilogram":{"_name":"kilogram","one":"%1$s kilogram","other":"%1$s kilogram"},"metric-ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"},"microgram":{"_name":"mikrogram","one":"%1$s mikrogram","other":"%1$s mikrogram"},"milligram":{"_name":"milligram","one":"%1$s milligram","other":"%1$s milligram"},"ounce":{"_name":"uns","one":"%1$s uns","other":"%1$s uns"},"ounce-troy":{"_name":"troy uns","one":"%1$s troy uns","other":"%1$s troy uns"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"engelska stenar","one":"%1$s engelsk sten","other":"%1$s engelska stenar"},"ton":{"_name":"engelska korta ton","one":"%1$s engelskt kort ton","other":"%1$s engelska korta ton"}},"power":{"gigawatt":{"_name":"gigawatt","one":"%1$s gigawatt","other":"%1$s gigawatt"},"horsepower":{"_name":"hästkrafter","one":"%1$s hästkraft","other":"%1$s hästkrafter"},"kilowatt":{"_name":"kilowatt","one":"%1$s kilowatt","other":"%1$s kilowatt"},"megawatt":{"_name":"megawatt","one":"%1$s megawatt","other":"%1$s megawatt"},"milliwatt":{"_name":"milliwatt","one":"%1$s milliwatt","other":"%1$s milliwatt"},"watt":{"_name":"watt","one":"%1$s watt","other":"%1$s watt"}},"pressure":{"hectopascal":{"_name":"hektopascal","one":"%1$s hektopascal","other":"%1$s hektopascal"},"inch-hg":{"_name":"tum kvicksilver","one":"%1$s tum kvicksilver","other":"%1$s tum kvicksilver"},"millibar":{"_name":"millibar","one":"%1$s millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"millimeter kvicksilver","one":"%1$s millimeter kvicksilver","other":"%1$s millimeter kvicksilver"},"pound-per-square-inch":{"_name":"pund per kvadrattum","one":"%1$s pund per kvadrattum","other":"%1$s pund per kvadrattum"}},"proportion":{"karat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"}},"speed":{"kilometer-per-hour":{"_name":"kilometer per timme","one":"%1$s kilometer per timme","other":"%1$s kilometer per timme"},"meter-per-second":{"_name":"meter per sekund","one":"%1$s meter per sekund","other":"%1$s meter per sekund"},"mile-per-hour":{"_name":"engelska mil per timme","one":"%1$s engelsk mil per timme","other":"%1$s engelska mil per timme"}},"temperature":{"celsius":{"_name":"grader Celsius","one":"%1$s grad Celsius","other":"%1$s grader Celsius"},"fahrenheit":{"_name":"grader Fahrenheit","one":"%1$s grad Fahrenheit","other":"%1$s grader Fahrenheit"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"engelska tunnland gånger fot","one":"%1$s engelskt tunnland gånger fot","other":"%1$s engelska tunnland gånger fot"},"bushel":{"_name":"skäppor","one":"%1$s skäppa","other":"%1$s skäppor"},"centiliter":{"_name":"centiliter","one":"%1$s centiliter","other":"%1$s centiliter"},"cubic-centimeter":{"_name":"kubikcentimeter","one":"%1$s kubikcentimeter","other":"%1$s kubikcentimeter"},"cubic-foot":{"_name":"kubikfot","one":"%1$s kubikfot","other":"%1$s kubikfot"},"cubic-inch":{"_name":"kubiktum","one":"%1$s kubiktum","other":"%1$s kubiktum"},"cubic-kilometer":{"_name":"kubikkilometer","one":"%1$s kubikkilometer","other":"%1$s kubikkilometer"},"cubic-meter":{"_name":"kubikmeter","one":"%1$s kubikmeter","other":"%1$s kubikmeter"},"cubic-mile":{"_name":"engelska kubikmil","one":"%1$s engelsk kubikmil","other":"%1$s engelska kubikmil"},"cubic-yard":{"_name":"engelska kubikyard","one":"%1$s engelsk kubikyard","other":"%1$s engelska kubikyard"},"cup":{"_name":"koppar","one":"%1$s kopp","other":"%1$s koppar"},"deciliter":{"_name":"deciliter","one":"%1$s deciliter","other":"%1$s deciliter"},"fluid-ounce":{"_name":"fluid ounces","one":"%1$s fluid ounce","other":"%1$s fluid ounces"},"gallon":{"_name":"gallon","one":"%1$s gallon","other":"%1$s gallon"},"hectoliter":{"_name":"hektoliter","one":"%1$s hektoliter","other":"%1$s hektoliter"},"liter":{"_name":"liter","one":"%1$s liter","other":"%1$s liter"},"megaliter":{"_name":"megaliter","one":"%1$s megaliter","other":"%1$s megaliter"},"milliliter":{"_name":"milliliter","one":"%1$s milliliter","other":"%1$s milliliter"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"matskedar","one":"%1$s matsked","other":"%1$s matskedar"},"teaspoon":{"_name":"teskedar","one":"%1$s tesked","other":"%1$s teskedar"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$s m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"bågminuter","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"bågsekunder","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"grader","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radianer","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"eng. tunnland","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"kvadratfot","one":"%1$s kvadratfot","other":"%1$s kvadratfot"},"square-inch":{"_name":"tum²","one":"%1$s tum²","other":"%1$s tum²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"engelska kvadratmil","one":"%1$s eng.mil²","other":"%1$s eng.mil²"},"square-yard":{"_name":"yard²","one":"%1$s yard²","other":"%1$s yard²"}},"consumption":{"liter-per-kilometer":{"_name":"liter/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"b","one":"%1$s b","other":"%1$s b"},"byte":{"_name":"byte","one":"%1$s B","other":"%1$s B"},"gigabit":{"_name":"Gb","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"dygn","one":"%1$s d","other":"%1$s d"},"hour":{"_name":"tim","one":"%1$s tim","other":"%1$s tim","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$s μs","other":"%1$s μs"},"millisecond":{"_name":"ms","one":"%1$s ms","other":"%1$s ms"},"minute":{"_name":"min","one":"%1$s min","other":"%1$s min"},"month":{"_name":"mån","one":"%1$s mån","other":"%1$s mån"},"nanosecond":{"_name":"ns","one":"%1$s ns","other":"%1$s ns"},"second":{"_name":"sek","one":"%1$s s","other":"%1$s s","_per":"%1$s/s"},"week":{"_name":"vkr","one":"%1$s v","other":"%1$s v"},"year":{"_name":"år","one":"%1$s år","other":"%1$s år"}},"electric":{"ampere":{"_name":"A","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"mA","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AU","one":"%1$s AU","other":"%1$s AU"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"famnar","one":"%1$s famn","other":"%1$s famnar"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"eng. plogfårelgd","one":"%1$s eng. plogfårelgd","other":"%1$s eng. plogfårelgd"},"inch":{"_name":"tum","one":"%1$s tum","other":"%1$s tum"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ljusår","one":"%1$s ly","other":"%1$s ly"},"meter":{"_name":"m","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"μm","one":"%1$s μm","other":"%1$s μm"},"mile":{"_name":"eng. mil","one":"%1$s eng. mil","other":"%1$s eng. mil"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"naut. mil","one":"%1$s naut. mil","other":"%1$s naut. mil"},"parsec":{"_name":"parsec","one":"%1$s parsec","other":"%1$s parsec"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"engelska yard","one":"%1$s eng. yard","other":"%1$s eng. yard"}},"light":{"lux":{"_name":"lux","one":"%1$s lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"karat","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"g","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"μg","one":"%1$s μg","other":"%1$s μg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"uns","one":"%1$s uns","other":"%1$s uns"},"ounce-troy":{"_name":"ozt","one":"%1$s ozt","other":"%1$s ozt"},"pound":{"_name":"pund","one":"%1$s pund","other":"%1$s pund"},"stone":{"_name":"eng. sten","one":"%1$s eng. sten","other":"%1$s eng. sten"},"ton":{"_name":"eng. k. ton","one":"%1$s eng. k. ton","other":"%1$s eng. k. ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"hästkrafter","one":"%1$s hk","other":"%1$s hk"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"W","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"tum Hg","one":"%1$s tum Hg","other":"%1$s tum Hg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","one":"%1$s psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$s km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","one":"%1$s m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"eng. mil/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s °F","other":"%1$s °F"},"kelvin":{"_name":"K","one":"%1$s K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"eng. t:land·fot","one":"%1$s eng. t:d·fot","other":"%1$s eng. t:d·fot"},"bushel":{"_name":"skäppa","one":"%1$s skäppa","other":"%1$s skäppor"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"fot³","one":"%1$s fot³","other":"%1$s fot³"},"cubic-inch":{"_name":"tum³","one":"%1$s tum³","other":"%1$s tum³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"engelska kubikmil","one":"%1$s eng. mil³","other":"%1$s eng. mil³"},"cubic-yard":{"_name":"eng. yard³","one":"%1$s eng. yard³","other":"%1$s eng. yard³"},"cup":{"_name":"koppar","one":"%1$s kopp","other":"%1$s koppar"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"fl oz","one":"%1$s fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","one":"%1$s gal","other":"%1$s gal"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"msk","one":"%1$s msk","other":"%1$s msk"},"teaspoon":{"_name":"tsk","one":"%1$s tsk","other":"%1$s tsk"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","one":"%1$sm/s²","other":"%1$sm/s²"}},"angle":{"arc-minute":{"_name":"bågmin","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"bågsek","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"°","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"rad","one":"%1$srad","other":"%1$srad"}},"area":{"acre":{"_name":"eng. tunnland","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"ha","one":"%1$sha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","one":"%1$scm²","other":"%1$scm²"},"square-foot":{"_name":"fot²","one":"%1$s fot²","other":"%1$s fot²"},"square-inch":{"_name":"tum²","one":"%1$s tum²","other":"%1$s tum²"},"square-kilometer":{"_name":"km²","one":"%1$skm²","other":"%1$skm²"},"square-meter":{"_name":"m²","one":"%1$sm²","other":"%1$sm²"},"square-mile":{"_name":"eng. mil²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"eng. yard²","one":"%1$s en. yrd²","other":"%1$s en. yrd²"}},"consumption":{"liter-per-kilometer":{"_name":"L/km","one":"%1$sL/km","other":"%1$sL/km"},"mile-per-gallon":{"_name":"eng.mil/gallon","one":"%1$se.mil/gn","other":"%1$se.mil/gn"}},"digital":{"bit":{"_name":"b","one":"%1$sb","other":"%1$sb"},"byte":{"_name":"B","one":"%1$sB","other":"%1$sB"},"gigabit":{"_name":"Gb","one":"%1$sGb","other":"%1$sGb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kb","one":"%1$skb","other":"%1$skb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mb","one":"%1$sMb","other":"%1$sMb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tb","one":"%1$sTb","other":"%1$sTb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"d","one":"%1$sd","other":"%1$sd"},"hour":{"_name":"h","one":"%1$sh","other":"%1$sh","_per":"%1$s/h"},"microsecond":{"_name":"μs","one":"%1$sμs","other":"%1$sμs"},"millisecond":{"_name":"ms","one":"%1$sms","other":"%1$sms"},"minute":{"_name":"m","one":"%1$sm","other":"%1$sm"},"month":{"_name":"m","one":"%1$sm","other":"%1$sm"},"nanosecond":{"_name":"ns","one":"%1$sns","other":"%1$sns"},"second":{"_name":"sek","one":"%1$ss","other":"%1$ss","_per":"%1$s/s"},"week":{"_name":"v","one":"%1$sv","other":"%1$sv"},"year":{"_name":"år","one":"%1$så","other":"%1$så"}},"electric":{"ampere":{"_name":"A","one":"%1$sA","other":"%1$sA"},"milliampere":{"_name":"mA","one":"%1$smA","other":"%1$smA"},"ohm":{"_name":"Ω","one":"%1$sΩ","other":"%1$sΩ"},"volt":{"_name":"V","one":"%1$sV","other":"%1$sV"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"J","one":"%1$sJ","other":"%1$sJ"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$skJ","other":"%1$skJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$skWh","other":"%1$skWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$sGHz","other":"%1$sGHz"},"hertz":{"_name":"Hz","one":"%1$sHz","other":"%1$sHz"},"kilohertz":{"_name":"kHz","one":"%1$skHz","other":"%1$skHz"},"megahertz":{"_name":"MHz","one":"%1$sMHz","other":"%1$sMHz"}},"length":{"astronomical-unit":{"_name":"AE","one":"%1$sAE","other":"%1$sAE"},"centimeter":{"_name":"cm","one":"%1$scm","other":"%1$scm"},"decimeter":{"_name":"dm","one":"%1$sdm","other":"%1$sdm"},"fathom":{"_name":"famnar","one":"%1$s famn","other":"%1$s famnar"},"foot":{"_name":"fot","one":"%1$s fot","other":"%1$s fot"},"furlong":{"_name":"eng. plogfårelgd","one":"%1$sen.pfrld","other":"%1$sen.pfrld"},"inch":{"_name":"tum","one":"%1$s tum","other":"%1$s tum"},"kilometer":{"_name":"km","one":"%1$skm","other":"%1$skm"},"light-year":{"_name":"ljusår","one":"%1$s ljusår","other":"%1$s ljusår"},"meter":{"_name":"m","one":"%1$sm","other":"%1$sm"},"micrometer":{"_name":"μm","one":"%1$sμm","other":"%1$sμm"},"mile":{"_name":"eng. mil","one":"%1$smi","other":"%1$smi"},"millimeter":{"_name":"mm","one":"%1$smm","other":"%1$smm"},"nanometer":{"_name":"nm","one":"%1$snm","other":"%1$snm"},"nautical-mile":{"_name":"naut. mil","one":"%1$sM","other":"%1$sM"},"parsec":{"_name":"parsek","one":"%1$s parsek","other":"%1$s parsek"},"picometer":{"_name":"pm","one":"%1$spm","other":"%1$spm"},"yard":{"_name":"engelska yard","one":"%1$syd","other":"%1$syd"}},"light":{"lux":{"_name":"lx","one":"%1$s lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"g","one":"%1$sg","other":"%1$sg"},"kilogram":{"_name":"kg","one":"%1$skg","other":"%1$skg"},"metric-ton":{"_name":"t","one":"%1$st","other":"%1$st"},"microgram":{"_name":"μg","one":"%1$sμg","other":"%1$sμg"},"milligram":{"_name":"mg","one":"%1$smg","other":"%1$smg"},"ounce":{"_name":"uns","one":"%1$s uns","other":"%1$s uns"},"ounce-troy":{"_name":"ozt","one":"%1$s tr.uns","other":"%1$s tr.uns"},"pound":{"_name":"s:pund","one":"%1$s skålpund","other":"%1$s skålpund"},"stone":{"_name":"eng. sten","one":"%1$s eng. s:n","other":"%1$s eng. s:n"},"ton":{"_name":"eng. k. ton","one":"%1$s en.k.ton","other":"%1$s en.k.ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$sGW","other":"%1$sGW"},"horsepower":{"_name":"hk","one":"%1$shk","other":"%1$shk"},"kilowatt":{"_name":"kW","one":"%1$skW","other":"%1$skW"},"megawatt":{"_name":"MW","one":"%1$sMW","other":"%1$sMW"},"milliwatt":{"_name":"mW","one":"%1$smW","other":"%1$smW"},"watt":{"_name":"W","one":"%1$sW","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$shPa","other":"%1$shPa"},"inch-hg":{"_name":"tum Hg","one":"%1$s tum Hg","other":"%1$s tum Hg"},"millibar":{"_name":"mbar","one":"%1$smbar","other":"%1$smbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$smm Hg","other":"%1$smm Hg"},"pound-per-square-inch":{"_name":"s:d/tum²","one":"%1$ss:d/tum²","other":"%1$ss:d/tum²"}},"proportion":{"karat":{"_name":"karat","one":"%1$s kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","one":"%1$skm/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","one":"%1$sm/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"eng. mil/h","one":"%1$s mi/h","other":"%1$s mi/h"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s °C","other":"%1$s °C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"eng. t:land·fot","one":"%1$sen.td·fot","other":"%1$sen.td·fot"},"bushel":{"_name":"skäppa","one":"%1$s skäppa","other":"%1$s skäppor"},"centiliter":{"_name":"cL","one":"%1$scL","other":"%1$scL"},"cubic-centimeter":{"_name":"cm³","one":"%1$scm³","other":"%1$scm³"},"cubic-foot":{"_name":"fot³","one":"%1$s fot³","other":"%1$s fot³"},"cubic-inch":{"_name":"tum³","one":"%1$s tum³","other":"%1$s tum³"},"cubic-kilometer":{"_name":"km³","one":"%1$skm³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","one":"%1$sm³","other":"%1$s m³"},"cubic-mile":{"_name":"eng. mil³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"eng. yard³","one":"%1$s en. yrd³","other":"%1$s en. yrd³"},"cup":{"_name":"kp·2,5dL","one":"%1$skp·2½dL","other":"%1$skp·2½dL"},"deciliter":{"_name":"dL","one":"%1$sdL","other":"%1$sdL"},"fluid-ounce":{"_name":"vätskeuns","one":"%1$s v:euns","other":"%1$s v:euns"},"gallon":{"_name":"USA vätskegallon","one":"%1$s v:egal:n","other":"%1$s v:egal:n"},"hectoliter":{"_name":"hL","one":"%1$shL","other":"%1$shL"},"liter":{"_name":"liter","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"ML","one":"%1$sML","other":"%1$sML"},"milliliter":{"_name":"mL","one":"%1$smL","other":"%1$smL"},"pint":{"_name":"USA vätskepint","one":"%1$s v:epint","other":"%1$s v:epint"},"quart":{"_name":"USA vätskequart","one":"%1$s v:equart","other":"%1$s v:equart"},"tablespoon":{"_name":"msk","one":"%1$smsk","other":"%1$smsk"},"teaspoon":{"_name":"tsk","one":"%1$stsk","other":"%1$stsk"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/territoryContainment.json b/Punic/data/territoryContainment.json new file mode 100644 index 0000000..b5fe58e --- /dev/null +++ b/Punic/data/territoryContainment.json @@ -0,0 +1 @@ +{"001":{"contains":["019","002","150","142","009"]},"002":{"contains":["015","011","017","014","018"]},"003":{"contains":["021","013","029"]},"005":{"contains":["AR","BO","BR","CL","CO","EC","FK","GF","GY","PE","PY","SR","UY","VE"]},"009":{"contains":["053","054","057","061","QO"]},"011":{"contains":["BF","BJ","CI","CV","GH","GM","GN","GW","LR","ML","MR","NE","NG","SH","SL","SN","TG"]},"013":{"contains":["BZ","CR","GT","HN","MX","NI","PA","SV"]},"014":{"contains":["BI","DJ","ER","ET","KE","KM","MG","MU","MW","MZ","RE","RW","SC","SO","TZ","UG","YT","ZM","ZW"]},"015":{"contains":["DZ","EG","EH","LY","MA","SD","SS","TN","EA","IC"]},"017":{"contains":["AO","CD","CF","CG","CM","GA","GQ","ST","TD"]},"018":{"contains":["BW","LS","NA","SZ","ZA"]},"019":{"contains":["021","013","029","005"]},"021":{"contains":["BM","CA","GL","PM","US"]},"029":{"contains":["AG","AI","AW","BB","BL","BQ","BS","CU","CW","DM","DO","GD","GP","HT","JM","KN","KY","LC","MF","MQ","MS","PR","SX","TC","TT","VC","VG","VI"]},"030":{"contains":["CN","HK","JP","KP","KR","MN","MO","TW"]},"034":{"contains":["AF","BD","BT","IN","IR","LK","MV","NP","PK"]},"035":{"contains":["BN","ID","KH","LA","MM","MY","PH","SG","TH","TL","VN"]},"039":{"contains":["AD","AL","BA","ES","GI","GR","HR","IT","ME","MK","MT","RS","PT","SI","SM","VA","XK"]},"053":{"contains":["AU","NF","NZ"]},"054":{"contains":["FJ","NC","PG","SB","VU"]},"057":{"contains":["FM","GU","KI","MH","MP","NR","PW"]},"061":{"contains":["AS","CK","NU","PF","PN","TK","TO","TV","WF","WS"]},"142":{"contains":["145","143","030","034","035"]},"143":{"contains":["TM","TJ","KG","KZ","UZ"]},"145":{"contains":["AE","AM","AZ","BH","CY","GE","IL","IQ","JO","KW","LB","OM","PS","QA","SA","SY","TR","YE"]},"150":{"contains":["154","155","151","039"]},"151":{"contains":["BG","BY","CZ","HU","MD","PL","RO","RU","SK","UA"]},"154":{"contains":["GG","IM","JE","AX","DK","EE","FI","FO","GB","IE","IS","LT","LV","NO","SE","SJ"]},"155":{"contains":["AT","BE","CH","DE","FR","LI","LU","MC","NL"]},"419":{"contains":["013","029","005"]},"EU":{"contains":["AT","BE","CY","CZ","DE","DK","EE","ES","FI","FR","GB","GR","HR","HU","IE","IT","LT","LU","LV","MT","NL","PL","PT","SE","SI","SK","BG","RO"]},"QO":{"contains":["AQ","BV","CC","CX","GS","HM","IO","TF","UM","AC","CP","DG","TA"]}} \ No newline at end of file diff --git a/Punic/data/territoryInfo.json b/Punic/data/territoryInfo.json new file mode 100644 index 0000000..eca1f21 --- /dev/null +++ b/Punic/data/territoryInfo.json @@ -0,0 +1 @@ +{"AC":{"gdp":35200000,"literacy":99,"population":940,"languages":{"en":{"population":99}}},"AD":{"gdp":3163000000,"literacy":100,"population":85458,"languages":{"ca":{"status":"o","population":51},"es":{"population":43},"fr":{"population":6.8}}},"AE":{"gdp":269800000000,"literacy":90,"population":5628810,"languages":{"ar":{"status":"o","population":78},"bal":{"population":2.3},"fa":{"population":1.9},"ml":{"population":7},"ps":{"population":2.9}}},"AF":{"gdp":45300000000,"literacy":28.1,"population":31822800,"languages":{"bal":{"status":"r","population":0.67},"fa":{"status":"o","population":50},"haz":{"population":5.9},"kk_Arab":{"population":0.0063},"prd":{"population":1.2},"ps":{"status":"o","population":43},"tk_Latn":{"status":"r","population":1.7},"ug_Arab":{"population":0.0094},"uz_Arab":{"status":"r","population":4.7}}},"AG":{"gdp":1610000000,"literacy":99,"population":91295,"languages":{"en":{"status":"o","population":86},"pt":{"population":1.8}}},"AI":{"gdp":175400000,"literacy":95,"population":16086,"languages":{"en":{"status":"o","population":95}}},"AL":{"gdp":28340000000,"literacy":96.8,"population":3020210,"languages":{"el":{"population":1.9},"mk":{"population":0.47},"sq":{"status":"o","population":100}}},"AM":{"gdp":20610000000,"literacy":99.6,"population":3060630,"languages":{"az_Latn":{"population":0},"hy":{"status":"o","population":98},"ku_Latn":{"population":3.3}}},"AO":{"gdp":131800000000,"literacy":70.4,"population":19088100,"languages":{"kmb":{"population":25,"writing":10},"ln":{"population":0.67},"pt":{"status":"o","population":67},"umb":{"population":29}}},"AQ":{"gdp":15730000,"literacy":99,"population":300,"languages":{"und":{"population":100}}},"AR":{"gdp":771000000000,"literacy":97.9,"population":43024400,"languages":{"cy":{"population":0.066},"es":{"status":"o","population":100},"gn":{"population":0.047}}},"AS":{"gdp":575300000,"literacy":97,"population":54517,"languages":{"en":{"status":"f","population":97},"sm":{"status":"o","population":99}}},"AT":{"gdp":361000000000,"literacy":98,"population":8223060,"languages":{"bar":{"population":95},"de":{"status":"o","population":97},"hr":{"status":"r","population":1.2},"hu":{"status":"r","population":0.27},"sl":{"status":"r","population":0.37}}},"AU":{"gdp":998300000000,"literacy":99,"population":22507600,"languages":{"en":{"status":"f","population":96},"it":{"population":1.9},"zh_Hant":{"population":2.1}}},"AW":{"gdp":2516000000,"literacy":96.8,"population":110663,"languages":{"en":{"population":2.7},"nl":{"status":"o","population":97},"pap":{"status":"o","population":61}}},"AX":{"gdp":929800000,"literacy":100,"population":26200,"languages":{"sv":{"status":"o","population":99}}},"AZ":{"gdp":102700000000,"literacy":99.8,"population":9686210,"languages":{"az_Cyrl":{"status":"o","population":9.9},"az_Latn":{"status":"o","population":89},"ku_Latn":{"population":0.24},"tkr_Latn":{"population":0.16},"tly_Latn":{"population":9.8},"ttt_Latn":{"population":0.22}}},"BA":{"gdp":32160000000,"literacy":98,"population":3871640,"languages":{"bs_Cyrl":{"status":"o","population":99,"writing":5},"bs_Latn":{"status":"o","population":99},"hr":{"status":"o","population":12},"sr_Cyrl":{"status":"o","population":10},"sr_Latn":{"status":"o","population":10,"writing":5}}},"BB":{"gdp":7004000000,"literacy":99.7,"population":289680,"languages":{"en":{"status":"o","population":100}}},"BD":{"gdp":324600000000,"literacy":57.7,"population":166281000,"languages":{"bn":{"status":"o","population":98},"ccp":{"population":0.22},"grt":{"population":0.073},"mni":{"population":0.011},"my":{"population":0.21},"rkt":{"population":6.5,"writing":20},"syl":{"population":5,"writing":35}}},"BE":{"gdp":421700000000,"literacy":99,"population":10449400,"languages":{"de":{"status":"o","population":1.4},"en":{"population":49},"fr":{"status":"o","population":38},"nl":{"status":"o","population":55},"vls":{"population":10},"wa":{"population":5.8,"writing":5}}},"BF":{"gdp":26510000000,"literacy":28.7,"population":18365100,"languages":{"dyu":{"population":32},"fr":{"status":"o","population":22},"mos":{"population":40}}},"BG":{"gdp":104600000000,"literacy":98.4,"population":6924720,"languages":{"bg":{"status":"o","population":100},"tr":{"population":11}}},"BH":{"gdp":34960000000,"literacy":94.6,"population":1314090,"languages":{"ar":{"status":"o","population":87},"ml":{"population":3.3}}},"BI":{"gdp":5750000000,"literacy":67.2,"population":10395900,"languages":{"fr":{"status":"o","population":59},"rn":{"status":"o","population":63},"sw":{"population":0.061}}},"BJ":{"gdp":16650000000,"literacy":42.4,"population":10160600,"languages":{"fon":{"population":25},"fr":{"status":"o","population":35},"yo":{"population":6.7}}},"BL":{"gdp":255000000,"literacy":99,"population":7267,"languages":{"fr":{"status":"o","population":94}}},"BM":{"gdp":5600000000,"literacy":98,"population":69839,"languages":{"en":{"status":"o","population":92}}},"BN":{"gdp":22250000000,"literacy":95.4,"population":422675,"languages":{"en":{"population":1.9},"ms_Arab":{"status":"o","population":5},"ms_Latn":{"status":"o","population":93},"zh_Hant":{"population":11}}},"BO":{"gdp":59110000000,"literacy":91.2,"population":10631500,"languages":{"aro":{"population":0.001},"ay":{"status":"o","population":20},"es":{"status":"o","population":61},"gn":{"population":0.45},"qu":{"status":"o","population":32}}},"BQ":{"gdp":426100000,"literacy":96.5,"population":20000,"languages":{"nl":{"status":"o","population":8},"pap":{"population":81}}},"BR":{"gdp":2416000000000,"literacy":90.4,"population":202657000,"languages":{"de":{"population":0.84},"gub":{"population":0.0084},"it":{"population":0.28},"ja":{"population":0.21},"kgp":{"population":0.01},"ko":{"population":0.021},"pt":{"status":"o","population":91},"xav":{"population":0.0049},"yrl":{"population":0.0052}}},"BS":{"gdp":11400000000,"literacy":95.6,"population":321834,"languages":{"en":{"status":"o","population":100}}},"BT":{"gdp":5235000000,"literacy":52.8,"population":733643,"languages":{"dz":{"status":"o","population":47},"lep":{"population":3.9},"ne":{"population":17},"tsj":{"population":15}}},"BV":{"gdp":37450,"literacy":99,"population":1,"languages":{"und":{"population":100}}},"BW":{"gdp":34000000000,"literacy":85.1,"population":2155780,"languages":{"af":{"population":0.28},"en":{"status":"o","population":81},"tn":{"status":"o","population":62}}},"BY":{"gdp":150400000000,"literacy":99.6,"population":9608060,"languages":{"be":{"status":"o","population":100},"ru":{"status":"o","population":12}}},"BZ":{"gdp":3083000000,"literacy":76.9,"population":340844,"languages":{"en":{"status":"o","population":100},"es":{"population":28}}},"CA":{"gdp":1518000000000,"literacy":99,"population":34834800,"languages":{"atj":{"population":0.016},"chp":{"population":0.0022},"cr_Cans":{"population":0.11},"crj":{"population":0.021},"crk":{"population":0.11},"crl":{"population":0.015},"crm":{"population":0.013},"csw":{"population":0.014},"de":{"population":1.9},"den":{"population":0.0066},"dgr":{"population":0.0076},"en":{"status":"o","population":85},"fr":{"status":"o","population":22},"gwi":{"population":0.0016},"ikt":{"status":"r","population":0.011,"writing":30},"it":{"population":2},"iu_Cans":{"status":"r","population":0.042,"writing":30},"iu_Latn":{"status":"r","population":0.042,"writing":30},"moe":{"population":0.033},"moh":{"population":0.01},"nsk":{"population":0.0034},"pdt":{"population":0.24},"scs":{"population":0.0036},"yi":{"population":0.045}}},"CC":{"gdp":26430000,"literacy":99,"population":596,"languages":{"en":{"status":"f","population":17},"ms_Arab":{"population":83}}},"CD":{"gdp":29390000000,"literacy":66.8,"population":77433700,"languages":{"fr":{"status":"o","population":3.8},"kg":{"status":"r","population":1.5},"ln":{"status":"r","population":3.1},"lol":{"population":0.61},"lu":{"population":2.3},"lua":{"status":"r","population":9.6},"rw":{"population":0.38},"sw":{"status":"r","population":50},"swc":{"population":9}}},"CF":{"gdp":3336000000,"literacy":56.6,"population":5277960,"languages":{"fr":{"status":"o","population":49},"ln":{"population":0.24},"sg":{"status":"o","population":49}}},"CG":{"gdp":20260000000,"literacy":83.8,"population":4662450,"languages":{"fr":{"status":"o","population":84},"ln":{"population":2.4}}},"CH":{"gdp":371200000000,"literacy":99,"population":8061520,"languages":{"de":{"status":"o","population":73},"fr":{"status":"o","population":21},"gsw":{"status":"f","population":12,"writing":5},"it":{"status":"o","population":4.3},"lmo":{"population":4.1,"writing":5},"rm":{"status":"r","population":0.5},"rmo":{"population":0.29},"wae":{"population":0.12}}},"CI":{"gdp":43670000000,"literacy":56.9,"population":22848900,"languages":{"bci":{"population":11,"writing":10},"bqv":{"population":0.17,"writing":10},"dnj":{"population":4,"writing":1},"fr":{"status":"o","population":49},"kfo":{"population":0.23},"sef":{"population":4.3,"writing":5}}},"CK":{"gdp":183200000,"literacy":95,"population":10134,"languages":{"en":{"status":"o","population":95}}},"CL":{"gdp":335400000000,"literacy":98.6,"population":17363900,"languages":{"arn":{"population":1.5},"es":{"status":"o","population":98}}},"CM":{"gdp":53160000000,"literacy":71.3,"population":23130700,"languages":{"agq":{"population":0.14,"writing":20},"ar":{"population":0.39},"bas":{"population":1.2,"writing":25},"bax":{"population":1.2},"bbj":{"population":1.4,"writing":25},"bfd":{"population":0.57,"writing":30},"bkm":{"population":1.3,"writing":5},"bss":{"population":0.54,"writing":30},"bum":{"population":4.6},"byv":{"population":1.1,"writing":15},"dua":{"population":0.48,"writing":25},"en":{"status":"o","population":14},"ewo":{"population":3.1,"writing":15},"ff":{"population":3.6},"fr":{"status":"o","population":68},"ha_Arab":{"population":0.14},"jgo":{"population":0.34,"writing":30},"kkj":{"population":0.54},"ksf":{"population":0.32},"maf":{"population":0.73},"mgo":{"population":0.47,"writing":5},"mua":{"population":1},"nmg":{"population":0.039,"writing":10},"nnh":{"population":1.4,"writing":8},"yav":{"population":0.0099},"ybb":{"population":1.6,"writing":2}}},"CN":{"gdp":13390000000000,"literacy":95.1,"population":1355690000,"languages":{"bo":{"status":"r","population":0.2},"en":{"population":0.0045},"gan":{"population":1.7},"hak":{"population":2.3},"hsn":{"population":2.9},"ii":{"population":0.6,"writing":60},"khb":{"population":0.019},"kk_Arab":{"population":0.086},"ko":{"status":"r","population":0.15},"ky_Arab":{"population":0.034},"lcp":{"population":0.0058},"lis":{"population":0.045},"lzh":{"population":0},"mn_Mong":{"status":"r","population":0.26},"nan":{"population":1.9},"nxq":{"population":0.024},"ru":{"population":0.001},"tdd":{"population":0.019},"ug_Arab":{"status":"r","population":0.55},"uz_Cyrl":{"population":0.0004},"vi":{"population":0.0005},"wuu":{"population":6},"za":{"status":"r","population":0.31},"zh_Hans":{"status":"o","population":90}}},"CO":{"gdp":526500000000,"literacy":93.6,"population":46245300,"languages":{"es":{"status":"o","population":93},"guc":{"population":0.27}}},"CP":{"gdp":34350,"literacy":99,"population":1,"languages":{"und":{"population":100}}},"CR":{"gdp":61430000000,"literacy":96.3,"population":4755230,"languages":{"es":{"status":"o","population":95}}},"CU":{"gdp":121000000000,"literacy":99.8,"population":11047300,"languages":{"es":{"status":"o","population":100}}},"CV":{"gdp":2222000000,"literacy":84.9,"population":538535,"languages":{"kea":{"population":91},"pt":{"status":"o","population":76}}},"CW":{"gdp":3128000000,"literacy":96.5,"population":146836,"languages":{"es":{"population":3.9},"nl":{"status":"o","population":8},"pap":{"status":"f","population":81}}},"CX":{"gdp":67860000,"literacy":99,"population":1530,"languages":{"en":{"status":"o","population":92}}},"CY":{"gdp":21620000000,"literacy":98.7,"population":1203860,"languages":{"ar":{"population":0.11},"el":{"status":"o","population":75},"hy":{"population":0.23},"tr":{"status":"o","population":23}}},"CZ":{"gdp":285600000000,"literacy":99,"population":10627400,"languages":{"cs":{"status":"o","population":98},"de":{"population":0.49},"pl":{"population":0.49}}},"DE":{"gdp":3227000000000,"literacy":99,"population":80996700,"languages":{"da":{"population":0.061},"de":{"status":"o","population":91},"dsb":{"population":0.0086,"writing":5},"el":{"population":0.38},"en":{"population":44},"es":{"population":0.16},"frr":{"population":0.012},"frs":{"population":0.0025},"hr":{"population":0.79},"hsb":{"population":0.016,"writing":5},"it":{"population":0.66},"ksh":{"population":0.3},"ku_Latn":{"population":0.66},"nds":{"population":12,"writing":5},"nl":{"population":0.12},"pfl":{"population":0},"pl":{"population":0.29},"ru":{"population":0.44},"stq":{"population":0.0012},"tr":{"population":2.5},"vmf":{"population":6}}},"DG":{"gdp":18720000,"literacy":99,"population":500,"languages":{"en":{"status":"f","population":99}}},"DJ":{"gdp":2505000000,"literacy":67.9,"population":810179,"languages":{"aa":{"population":42},"ar":{"status":"o","population":7.3},"fr":{"status":"o","population":2.1},"so":{"population":41}}},"DK":{"gdp":211300000000,"literacy":99,"population":5569080,"languages":{"da":{"status":"o","population":93},"de":{"status":"r","population":0.43},"jut":{"population":0},"kl":{"status":"r","population":0.13}}},"DM":{"gdp":1015000000,"literacy":94,"population":73449,"languages":{"en":{"status":"o","population":94}}},"DO":{"gdp":101000000000,"literacy":90.1,"population":10349700,"languages":{"en":{"population":0.077},"es":{"status":"o","population":78}}},"DZ":{"gdp":284700000000,"literacy":72.6,"population":38813700,"languages":{"ar":{"status":"o","population":74},"arq":{"population":83},"fr":{"status":"o","population":20},"kab":{"population":7.8,"writing":10}}},"EA":{"gdp":4364000000,"literacy":97.7,"population":150000,"languages":{"es":{"status":"o","population":98}}},"EC":{"gdp":157600000000,"literacy":91.6,"population":15654400,"languages":{"es":{"status":"o","population":96},"qu":{"status":"o","population":17},"qug":{"population":5.7}}},"EE":{"gdp":29940000000,"literacy":99.8,"population":1257920,"languages":{"et":{"status":"o","population":71},"ru":{"population":30},"vro":{"population":5.7}}},"EG":{"gdp":551400000000,"literacy":73.9,"population":86895100,"languages":{"ar":{"status":"o","population":94},"arz":{"population":64},"el":{"population":0.061}}},"EH":{"gdp":906500000,"literacy":50,"population":554795,"languages":{"ar":{"status":"o","population":100}}},"ER":{"gdp":4717000000,"literacy":68.9,"population":6380800,"languages":{"aa":{"population":3.6},"ar":{"status":"o","population":4.9,"writing":5},"byn":{"population":1.3},"en":{"status":"o","population":59},"ssy":{"population":3.6},"ti":{"status":"f","population":60},"tig":{"population":18}}},"ES":{"gdp":1389000000000,"literacy":97.7,"population":47737900,"languages":{"ast":{"status":"r","population":1.3},"ca":{"status":"r","population":17},"en":{"population":24},"es":{"status":"o","population":99},"eu":{"status":"r","population":2},"ext":{"population":0.49},"gl":{"status":"r","population":7}}},"ET":{"gdp":118200000000,"literacy":39,"population":96633500,"languages":{"aa":{"population":1.4},"am":{"status":"o","population":33},"en":{"population":43},"om":{"population":32},"sid":{"population":3.5},"so":{"population":6},"ti":{"population":6},"wal":{"population":1.8}}},"FI":{"gdp":195500000000,"literacy":100,"population":5268800,"languages":{"en":{"population":0.18},"et":{"population":0.11},"fi":{"status":"o","population":94},"rmf":{"population":0.095},"ru":{"population":0.81},"se":{"population":0.038},"smn":{"population":0.011},"sms":{"population":0.011},"sv":{"status":"o","population":5.7}}},"FJ":{"gdp":4450000000,"literacy":93.7,"population":903207,"languages":{"en":{"status":"o","population":94},"fj":{"status":"o","population":39},"hi":{"population":44},"hif_Deva":{"status":"o","population":41},"rtm":{"population":0.28}}},"FK":{"gdp":164500000,"literacy":99,"population":2840,"languages":{"en":{"status":"o","population":99}}},"FM":{"gdp":754000000,"literacy":89,"population":105681,"languages":{"chk":{"population":30},"en":{"status":"o","population":5.1},"kos":{"population":7.6},"pon":{"population":23},"uli":{"population":2.8},"yap":{"population":6.2}}},"FO":{"gdp":1471000000,"literacy":99,"population":49947,"languages":{"fo":{"status":"o","population":95}}},"FR":{"gdp":2276000000000,"literacy":99,"population":66259000,"languages":{"br":{"population":0.83,"writing":3},"ca":{"population":0.17},"co":{"population":0.57,"writing":5},"en":{"population":27},"eu":{"population":0.13},"fr":{"status":"o","population":99},"frp":{"population":0.094},"gsw":{"population":0.91,"writing":5},"ia":{"population":0.0002},"it":{"population":1.7},"nl":{"population":0.13},"oc":{"population":3,"writing":5},"pcd":{"population":1.1},"pt":{"population":1.3}}},"GA":{"gdp":30060000000,"literacy":89,"population":1672600,"languages":{"fr":{"status":"o","population":63},"puu":{"population":9}}},"GB":{"gdp":2387000000000,"literacy":99,"population":63743000,"languages":{"bn":{"population":0.67},"cy":{"status":"r","population":0.77},"el":{"population":0.34},"en":{"status":"o","population":99},"fr":{"population":0.024},"ga":{"status":"r","population":0.026},"gd":{"status":"r","population":0.099,"writing":5},"it":{"population":0.34},"ks_Arab":{"population":0.19},"kw":{"population":0.0031},"ml":{"population":0.035},"pa_Guru":{"population":0.79},"sco":{"population":2.7,"writing":5},"syl":{"population":0.51},"yi":{"population":0.049},"zh_Hant":{"population":0.54}}},"GD":{"gdp":1458000000,"literacy":96,"population":110152,"languages":{"en":{"status":"o","population":96}}},"GE":{"gdp":27300000000,"literacy":99.7,"population":4935880,"languages":{"ab":{"status":"r","population":2.2},"hy":{"population":7},"ka":{"status":"o","population":86},"ku_Latn":{"population":0.89},"os":{"status":"r","population":2.2},"ru":{"population":9},"xmf":{"population":11}}},"GF":{"gdp":1551000000,"literacy":83,"population":199509,"languages":{"fr":{"status":"o","population":77},"gcr":{"population":26},"zh_Hant":{"population":2.5}}},"GG":{"gdp":2742000000,"literacy":100,"population":65849,"languages":{"en":{"status":"o","population":100}}},"GH":{"gdp":90410000000,"literacy":71.5,"population":25758100,"languages":{"abr":{"population":5},"ak":{"status":"r","population":39},"ee":{"status":"r","population":11},"en":{"status":"o","population":36},"gaa":{"status":"r","population":2.8},"gur":{"population":3.5},"ha_Latn":{"population":0.87},"saf":{"population":0.016}}},"GI":{"gdp":1275000000,"literacy":80,"population":29185,"languages":{"en":{"status":"o","population":80}}},"GL":{"gdp":2133000000,"literacy":100,"population":57728,"languages":{"da":{"population":14},"kl":{"status":"o","population":84}}},"GM":{"gdp":3678000000,"literacy":51.1,"population":1925530,"languages":{"en":{"status":"o","population":40},"man_Latn":{"population":29}}},"GN":{"gdp":12560000000,"literacy":41,"population":11474400,"languages":{"ff":{"population":26},"fr":{"status":"o","population":29},"kpe":{"population":3.8},"man_Nkoo":{"population":23},"nqo":{"population":5},"sus":{"population":11}}},"GP":{"gdp":3513000000,"literacy":90,"population":452776,"languages":{"fr":{"status":"o","population":90}}},"GQ":{"gdp":19680000000,"literacy":94.2,"population":722254,"languages":{"bvb":{"population":7.9},"es":{"status":"o","population":87},"fan":{"population":51},"fr":{"status":"o","population":8.8}}},"GR":{"gdp":267100000000,"literacy":97.3,"population":10775600,"languages":{"bg":{"population":0.27},"el":{"status":"o","population":99},"mk":{"population":1.6},"pnt_Grek":{"population":3.7},"sq":{"population":0.093},"tr":{"population":1.2},"tsd":{"population":0.0019}}},"GS":{"gdp":748900,"literacy":99,"population":20,"languages":{"und":{"population":100,"writing":100}}},"GT":{"gdp":81510000000,"literacy":75.9,"population":14647100,"languages":{"es":{"status":"o","population":93},"quc":{"status":"r","population":7}}},"GU":{"gdp":4600000000,"literacy":99,"population":161001,"languages":{"ch":{"status":"o","population":22},"en":{"status":"f","population":38}}},"GW":{"gdp":2005000000,"literacy":55.3,"population":1693400,"languages":{"pt":{"status":"o","population":100}}},"GY":{"gdp":6593000000,"literacy":91.8,"population":735554,"languages":{"en":{"status":"o","population":100}}},"HK":{"gdp":381300000000,"literacy":93.5,"population":7112690,"languages":{"en":{"status":"o","population":51},"zh_Hans":{"population":5},"zh_Hant":{"status":"o","population":95}}},"HM":{"gdp":44350,"literacy":99,"population":1,"languages":{"und":{"population":100,"writing":100}}},"HN":{"gdp":39230000000,"literacy":85.1,"population":8598560,"languages":{"en":{"population":0.44},"es":{"status":"o","population":78}}},"HR":{"gdp":78900000000,"literacy":98.9,"population":4470530,"languages":{"hr":{"status":"o","population":99},"it":{"status":"r","population":1.6}}},"HT":{"gdp":13420000000,"literacy":48.7,"population":9996730,"languages":{"fr":{"status":"o","population":4.7,"writing":100},"ht":{"status":"o","population":81}}},"HU":{"gdp":196600000000,"literacy":99,"population":9919130,"languages":{"de":{"population":2.5},"hr":{"population":0.32},"hu":{"status":"o","population":100},"ro":{"population":0.99},"sk":{"population":0.11},"sl":{"population":0.05}}},"IC":{"gdp":61060000000,"literacy":97.7,"population":2098590,"languages":{"es":{"status":"o","population":98}}},"ID":{"gdp":1285000000000,"literacy":92.8,"population":253610000,"languages":{"ace":{"population":1.4},"aoz":{"population":0.27},"ban":{"population":1.8,"writing":10},"bbc":{"population":0.92},"bew":{"population":2.1},"bjn":{"population":1.5,"writing":10},"bug":{"population":1.6,"writing":10},"gor":{"population":0.41},"id":{"status":"o","population":64},"jv":{"population":34,"writing":10},"kge":{"population":0.32},"kvr":{"population":0.14},"lbw":{"population":0.13},"ljp":{"population":0.69},"mad":{"population":6.3,"writing":40},"mak":{"population":0.73},"mdr":{"population":0.092},"min":{"population":3,"writing":10},"ms_Arab":{"population":4.6},"mwv":{"population":0.024},"nij":{"population":0.37},"rej":{"population":0.46},"rob":{"population":0.11},"sas":{"population":0.97},"sly":{"population":0.054},"su":{"population":12},"sxn":{"population":0.092},"zh_Hant":{"population":0.92}}},"IE":{"gdp":190400000000,"literacy":99,"population":4832770,"languages":{"en":{"status":"o","population":94},"ga":{"status":"o","population":11}}},"IL":{"gdp":273200000000,"literacy":97.1,"population":7821850,"languages":{"am":{"population":0.59},"ar":{"status":"o","population":20},"en":{"population":1.5},"he":{"status":"o","population":100},"hu":{"population":1},"lad":{"population":1.3},"ml":{"population":0.1},"pl":{"population":1.5},"ro":{"population":3.7},"ru":{"population":11},"ti":{"population":0.13},"yi":{"population":3}}},"IM":{"gdp":4076000000,"literacy":99,"population":86866,"languages":{"en":{"status":"o","population":100},"gv":{"status":"o","population":1.9}}},"IN":{"gdp":4990000000000,"literacy":62.8,"population":1236340000,"languages":{"as":{"status":"r","population":1.3},"awa":{"population":1.9,"writing":5},"bfq":{"population":0.023},"bft":{"population":0.0062},"bfy":{"population":0.037},"bgc":{"population":1.2,"writing":55},"bhb":{"population":0.12},"bhi":{"population":0.092},"bho":{"population":2.3,"writing":30},"bjj":{"population":0.56,"writing":60},"bn":{"status":"r","population":8.1},"bo":{"population":0.011},"bpy":{"population":0.0068},"bra":{"population":0.0041},"brx":{"population":0.14},"btv":{"population":0.0026},"ccp":{"population":0.028},"dcc":{"population":0.99},"doi":{"population":0.19},"dv":{"population":0.0004},"dz":{"population":0.0002},"en":{"status":"o","population":11},"gbm":{"population":0.27},"gom":{"population":0.32},"gon_Telu":{"population":0.24},"grt":{"population":0.053},"gu":{"status":"r","population":4.5},"hi":{"status":"o","population":41},"hne":{"population":1.1},"hoc":{"population":0.099},"hoj":{"population":0.082},"kfr":{"population":0.075},"kfy":{"population":0.22},"kha":{"status":"r","population":0.08,"writing":29},"khn":{"population":0.15},"kht":{"population":0.0007},"kn":{"status":"r","population":3.7},"kok":{"status":"r","population":0.37},"kru":{"population":0.19},"ks_Arab":{"status":"r","population":0.41},"lah":{"population":0.0025},"lep":{"population":0.0035},"lif_Deva":{"population":0.0026},"lmn":{"population":0.27},"mag":{"population":1.2,"writing":30},"mai":{"status":"r","population":1.2},"ml":{"status":"r","population":3.2},"mni":{"population":0.11},"mr":{"status":"r","population":7},"mtr":{"population":0.098},"mwr":{"population":1.2},"ne":{"status":"r","population":0.56},"njo":{"population":0.023},"noe":{"population":0.13},"or":{"status":"r","population":3.2},"pa_Guru":{"status":"r","population":2.8},"raj":{"population":0.1},"ria":{"population":0.013},"rkt":{"population":0.44,"writing":20},"sa":{"status":"r","population":0.0012},"sat":{"status":"r","population":0.55},"saz":{"population":0.029},"sck":{"population":0.18},"sd_Arab":{"status":"r","population":0.26},"sd_Deva":{"status":"r","population":0.026},"srx":{"population":0.035},"swv":{"population":0.28},"ta":{"status":"r","population":5.9},"tcy":{"population":0.15},"te":{"status":"r","population":7.2},"unr_Beng":{"population":0.095},"unx_Beng":{"population":0.048},"ur":{"status":"r","population":5},"wbq":{"population":0.18},"wbr":{"population":0.15},"wtm":{"population":0.46,"writing":25},"xnr":{"population":0.16}}},"IO":{"gdp":131100000,"literacy":99,"population":3500,"languages":{"en":{"status":"o","population":100,"writing":100}}},"IQ":{"gdp":249400000000,"literacy":78.5,"population":32585700,"languages":{"ar":{"status":"o","population":68},"ckb":{"status":"r","population":20},"fa":{"population":0.87},"syr":{"population":0.5}}},"IR":{"gdp":987100000000,"literacy":85,"population":80840700,"languages":{"ar":{"population":2},"az_Arab":{"population":24},"azb":{"population":24},"bal":{"population":2},"bqi":{"population":1.4},"ckb":{"population":3.9},"fa":{"status":"o","population":75},"gbz":{"population":0.0099},"glk":{"population":4.6},"hy":{"population":0.24},"ka":{"population":0.071},"kk_Arab":{"population":0.0037},"lki":{"population":0.76},"lrc":{"population":2.1,"writing":10},"luz":{"population":1.2},"mzn":{"population":5},"prd":{"population":0.5},"ps":{"population":0.16},"rmt":{"population":1.9,"writing":1},"tk_Latn":{"population":2.8}}},"IS":{"gdp":13110000000,"literacy":99,"population":317351,"languages":{"da":{"population":0.71},"is":{"status":"o","population":100}}},"IT":{"gdp":1805000000000,"literacy":99,"population":61680100,"languages":{"ca":{"population":0.035},"de":{"population":1.6},"egl":{"population":0.05},"el":{"population":0.035},"en":{"population":24},"fr":{"status":"r","population":6.3},"fur":{"population":0.06,"writing":5},"hr":{"population":0.0057},"it":{"status":"o","population":95},"lij":{"population":0.86},"lmo":{"population":6.2},"nap":{"population":0.97,"writing":5},"pms":{"population":2.8},"rgn":{"population":0},"sc":{"population":1.7},"scn":{"population":0.82,"writing":5},"sdc":{"population":0.17},"sl":{"population":0.17},"vec":{"population":1.3}}},"JE":{"gdp":5100000000,"literacy":99,"population":96513,"languages":{"en":{"status":"o","population":95}}},"JM":{"gdp":25130000000,"literacy":87,"population":2930050,"languages":{"en":{"status":"o","population":98},"jam":{"population":95}}},"JO":{"gdp":40020000000,"literacy":95.9,"population":7930490,"languages":{"ar":{"status":"o","population":100}}},"JP":{"gdp":4729000000000,"literacy":99,"population":127103000,"languages":{"ja":{"status":"o","population":95},"ko":{"population":0.52},"ryu":{"population":0.77,"writing":5}}},"KE":{"gdp":79900000000,"literacy":87.4,"population":45010100,"languages":{"ar":{"population":0.046},"dav":{"population":0.82,"writing":5},"ebu":{"population":1.5,"writing":1},"en":{"status":"o","population":85},"gu":{"population":0.011},"guz":{"population":4.9},"kam":{"population":7.6},"ki":{"population":17},"kln":{"population":7.6},"luo":{"population":9.8},"luy":{"population":11},"mas":{"population":1.6,"writing":50},"mer":{"population":4},"om":{"population":0.47},"pa_Guru":{"population":0.022},"pko":{"population":0.7,"writing":1},"saq":{"population":0.46,"writing":1},"so":{"population":1.3},"sw":{"status":"o","population":66},"teo":{"population":0.74}}},"KG":{"gdp":14300000000,"literacy":99.2,"population":5604210,"languages":{"ky_Cyrl":{"status":"o","population":48},"ru":{"status":"o","population":36}}},"KH":{"gdp":39640000000,"literacy":73.9,"population":15458300,"languages":{"cja":{"population":1.6},"kdt":{"population":0.11},"km":{"status":"o","population":89}}},"KI":{"gdp":698000000,"literacy":90,"population":104488,"languages":{"en":{"status":"o","population":100},"gil":{"status":"o","population":60}}},"KM":{"gdp":911000000,"literacy":75.5,"population":766865,"languages":{"ar":{"status":"o","population":66},"fr":{"status":"o","population":56},"zdj":{"status":"o","population":37}}},"KN":{"gdp":952000000,"literacy":97.8,"population":51538,"languages":{"en":{"status":"o","population":98}}},"KP":{"gdp":40000000000,"literacy":100,"population":24851600,"languages":{"ko":{"status":"o","population":88}}},"KR":{"gdp":1666000000000,"literacy":97.9,"population":49040000,"languages":{"ko":{"status":"o","population":100}}},"KW":{"gdp":165800000000,"literacy":93.9,"population":2742710,"languages":{"ar":{"status":"o","population":100}}},"KY":{"gdp":2250000000,"literacy":98.9,"population":54914,"languages":{"en":{"status":"o","population":98}}},"KZ":{"gdp":243600000000,"literacy":99.7,"population":17948800,"languages":{"de":{"population":6.4},"kk_Cyrl":{"status":"o","population":64},"ru":{"status":"o","population":72},"ug_Cyrl":{"population":2}}},"LA":{"gdp":20780000000,"literacy":72.7,"population":6803700,"languages":{"kdt":{"population":0.96},"kjg":{"population":5.8},"lo":{"status":"o","population":69}}},"LB":{"gdp":64310000000,"literacy":89.6,"population":5882560,"languages":{"ar":{"status":"o","population":86},"en":{"population":0.056},"fr":{"population":0.37},"hy":{"population":5.2},"ku_Arab":{"population":1.6}}},"LC":{"gdp":2216000000,"literacy":90.1,"population":163362,"languages":{"en":{"status":"o","population":90}}},"LI":{"gdp":3200000000,"literacy":100,"population":37313,"languages":{"de":{"status":"o","population":100},"gsw":{"status":"f","population":85,"writing":5},"wae":{"population":3.5}}},"LK":{"gdp":134500000000,"literacy":91.2,"population":21866400,"languages":{"en":{"population":0.38},"si":{"status":"o","population":68},"ta":{"status":"o","population":15}}},"LR":{"gdp":2898000000,"literacy":60.8,"population":4092310,"languages":{"en":{"status":"o","population":20},"kpe":{"population":14},"men":{"population":0.48},"vai_Latn":{"population":0},"vai_Vaii":{"population":2.6}}},"LS":{"gdp":4265000000,"literacy":89.6,"population":1942010,"languages":{"en":{"status":"o","population":2.3},"ss":{"population":2.4},"st":{"status":"o","population":98},"xh":{"population":0.99},"zu":{"population":14}}},"LT":{"gdp":67430000000,"literacy":99.7,"population":3505740,"languages":{"lt":{"status":"o","population":86},"ru":{"population":8},"sgs":{"population":0}}},"LU":{"gdp":42670000000,"literacy":100,"population":520672,"languages":{"de":{"status":"o","population":63},"fr":{"status":"o","population":87},"lb":{"status":"o","population":67,"writing":5}}},"LV":{"gdp":38870000000,"literacy":99.8,"population":2165170,"languages":{"ltg":{"population":8.9},"lv":{"status":"o","population":61},"ru":{"population":38}}},"LY":{"gdp":73600000000,"literacy":89.5,"population":6244170,"languages":{"ar":{"status":"o","population":74}}},"MA":{"gdp":180000000000,"literacy":67.1,"population":32987200,"languages":{"ar":{"status":"o","population":62},"ary":{"population":87},"es":{"population":0.065},"fr":{"status":"f","population":20},"rif_Latn":{"population":4.9,"writing":5},"rif_Tfng":{"population":4.9,"writing":5},"shi_Latn":{"population":8.7},"shi_Tfng":{"population":8.7},"tzm_Latn":{"status":"o","population":9.8,"writing":25},"zgh":{"population":22}}},"MC":{"gdp":6213000000,"literacy":99,"population":30508,"languages":{"fr":{"status":"o","population":99}}},"MD":{"gdp":13250000000,"literacy":99,"population":3583290,"languages":{"bg":{"population":9.4},"gag":{"population":3.3},"ro":{"status":"o","population":63},"ru":{"population":3},"uk":{"population":14}}},"ME":{"gdp":7429000000,"literacy":98.5,"population":650036,"languages":{"sq":{"population":7.9},"sr_Cyrl":{"population":5},"sr_Latn":{"status":"o","population":100}}},"MF":{"gdp":449000000,"literacy":99,"population":31530,"languages":{"fr":{"status":"o","population":100}}},"MG":{"gdp":22030000000,"literacy":64.5,"population":23201900,"languages":{"en":{"status":"o","population":5},"fr":{"status":"o","population":69},"mg":{"status":"o","population":90}}},"MH":{"gdp":486000000,"literacy":93.7,"population":70983,"languages":{"en":{"status":"o","population":93},"mh":{"status":"o","population":73}}},"MK":{"gdp":22570000000,"literacy":97.4,"population":2091720,"languages":{"mk":{"status":"o","population":67},"sq":{"status":"r","population":25},"tr":{"population":3.5}}},"ML":{"gdp":18900000000,"literacy":33.4,"population":16455900,"languages":{"ar":{"population":0.89},"bm_Latn":{"population":46},"bm_Nkoo":{"population":2},"bmq":{"population":0.86},"bze":{"population":0.84},"dtm":{"population":1.1},"ffm":{"population":7.7},"fr":{"status":"o","population":46},"kao":{"population":1},"khq":{"population":1.7},"mwk":{"population":5},"ses":{"population":3.4},"snk":{"population":5.9},"tmh":{"population":2.1}}},"MM":{"gdp":111100000000,"literacy":92.7,"population":55746300,"languages":{"kht":{"population":0.0076},"mnw":{"population":1.5},"my":{"status":"o","population":64},"shn":{"population":6.4}}},"MN":{"gdp":17030000000,"literacy":97.4,"population":2953190,"languages":{"kk_Arab":{"population":7.2},"mn_Cyrl":{"status":"o","population":93},"ru":{"population":0.14},"ug_Cyrl":{"population":0.034},"zh_Hans":{"population":1.4}}},"MO":{"gdp":51680000000,"literacy":95.6,"population":587914,"languages":{"en":{"population":2.3},"pt":{"status":"o","population":5},"zh_Hans":{"population":5},"zh_Hant":{"status":"o","population":98}}},"MP":{"gdp":733000000,"literacy":97,"population":51483,"languages":{"ch":{"population":18},"en":{"status":"f","population":97}}},"MQ":{"gdp":6117000000,"literacy":98,"population":436131,"languages":{"fr":{"status":"o","population":98}}},"MR":{"gdp":8204000000,"literacy":58.6,"population":3516810,"languages":{"ar":{"status":"o","population":85},"ff":{"population":5.7},"fr":{"population":17},"wo":{"population":0.28}}},"MS":{"gdp":43780000,"literacy":97,"population":5215,"languages":{"en":{"status":"o","population":97}}},"MT":{"gdp":11220000000,"literacy":92.4,"population":412655,"languages":{"en":{"status":"o","population":88},"mt":{"status":"o","population":100}}},"MU":{"gdp":20950000000,"literacy":88.8,"population":1331160,"languages":{"bho":{"population":27},"en":{"status":"o","population":72},"fr":{"status":"o","population":3},"mfe":{"population":90},"ta":{"population":2.5},"ur":{"population":5.2}}},"MV":{"gdp":3073000000,"literacy":98.4,"population":393595,"languages":{"dv":{"status":"o","population":94}}},"MW":{"gdp":15020000000,"literacy":74.8,"population":17377500,"languages":{"en":{"status":"o","population":63},"ny":{"status":"o","population":63},"tum":{"population":8.4},"zu":{"population":0.33}}},"MX":{"gdp":1845000000000,"literacy":93.5,"population":120287000,"languages":{"es":{"status":"f","population":83},"maz":{"population":0.34},"nch":{"population":0.19},"nhe":{"population":0.39},"nhw":{"population":0.38},"sei":{"population":0.0007},"yua":{"population":0.67}}},"MY":{"gdp":525000000000,"literacy":93.1,"population":30073400,"languages":{"bjn":{"population":0.017},"bug":{"population":0.079},"dtp":{"population":0.56},"en":{"population":29},"jv":{"population":1.2},"ml":{"population":0.15},"ms_Latn":{"status":"o","population":75},"ta":{"population":4.2},"zh_Hant":{"population":17},"zmi":{"population":1.2}}},"MZ":{"gdp":28150000000,"literacy":56.1,"population":24692100,"languages":{"mgh":{"population":4.5},"ndc":{"population":9.9},"ngl":{"population":6.8},"ny":{"population":2.6},"pt":{"status":"o","population":27},"rng":{"population":3.4},"seh":{"population":4.6},"sw":{"population":0.037},"ts":{"population":7.9},"vmw":{"population":13},"yao":{"population":2.4},"zu":{"population":0.0073}}},"NA":{"gdp":17790000000,"literacy":88.8,"population":2198410,"languages":{"af":{"status":"f","population":75},"de":{"population":1},"en":{"status":"o","population":7},"kj":{"population":35},"naq":{"population":9.2},"ng":{"population":21},"tn":{"population":0.28}}},"NC":{"gdp":9280000000,"literacy":96.2,"population":267840,"languages":{"fr":{"status":"o","population":96}}},"NE":{"gdp":13980000000,"literacy":28.7,"population":17466200,"languages":{"ar":{"population":0.21},"dje":{"population":17},"fr":{"status":"o","population":29},"fuq":{"population":7},"ha_Latn":{"population":41},"tmh":{"population":6},"twq":{"population":0.046}}},"NF":{"gdp":98020000,"literacy":99,"population":2210,"languages":{"en":{"status":"o","population":76}}},"NG":{"gdp":478500000000,"literacy":61.3,"population":177156000,"languages":{"amo":{"population":0.0087},"ar":{"population":0.071},"bin":{"population":0.71},"cch":{"population":0.021},"efi":{"population":1.4},"en":{"status":"o","population":75},"fuv":{"population":6.7,"writing":20},"ha_Arab":{"population":1},"ha_Latn":{"population":13},"ibb":{"population":1.4},"ig":{"population":13},"kaj":{"population":0.21},"kcg":{"population":0.093},"pcm":{"population":21},"tiv":{"population":1.6,"writing":25},"yo":{"status":"o","population":13}}},"NI":{"gdp":27970000000,"literacy":78,"population":5848640,"languages":{"es":{"status":"o","population":78}}},"NL":{"gdp":699700000000,"literacy":99,"population":16877400,"languages":{"en":{"population":74},"fy":{"status":"r","population":4.3},"gos":{"population":3.6,"writing":5},"id":{"population":1.8},"li":{"population":5.5,"writing":5},"nl":{"status":"o","population":100},"rif_Latn":{"population":1.2},"tr":{"population":1.2},"zea":{"population":1.4}}},"NO":{"gdp":282200000000,"literacy":100,"population":5147790,"languages":{"nb":{"status":"o","population":100},"nn":{"status":"o","population":25},"se":{"status":"r","population":3.3}}},"NP":{"gdp":42060000000,"literacy":57.4,"population":30987000,"languages":{"awa":{"population":2.2},"bap":{"population":1.5},"bfy":{"population":0.54},"bho":{"population":6.8},"bn":{"population":0.094},"bo":{"population":0.24},"ggn":{"population":0.42},"gvr":{"population":0.29},"hi":{"population":0.42},"jml":{"population":3.2},"lep":{"population":0.0091},"lif_Deva":{"population":1.1},"mai":{"population":11},"mgp":{"population":1.1},"mrd":{"population":0.83},"ne":{"status":"o","population":44},"new":{"population":3.3},"rjs":{"population":0.44,"writing":67},"taj":{"population":3},"tdg":{"population":1.3},"tdh":{"population":0.12},"thl":{"population":2},"thq":{"population":1},"thr":{"population":1.2},"tkt":{"population":0.24},"tsf":{"population":0.43},"unr_Deva":{"population":0.018},"xsr":{"population":0.52}}},"NR":{"gdp":60000000,"literacy":99,"population":9488,"languages":{"en":{"status":"o","population":99},"na":{"status":"o","population":73}}},"NU":{"gdp":10010000,"literacy":95,"population":1190,"languages":{"en":{"status":"o","population":95},"niu":{"status":"o","population":95}}},"NZ":{"gdp":136000000000,"literacy":99,"population":4401920,"languages":{"en":{"status":"f","population":91},"mi":{"status":"o","population":2.5}}},"OM":{"gdp":94860000000,"literacy":86.9,"population":3219780,"languages":{"ar":{"status":"o","population":81},"bal":{"population":4.9},"fa":{"population":0.94}}},"PA":{"gdp":61540000000,"literacy":94.1,"population":3608430,"languages":{"en":{"population":14},"es":{"status":"o","population":69},"zh_Hant":{"population":0.17}}},"PE":{"gdp":344000000000,"literacy":89.6,"population":30147900,"languages":{"ay":{"population":1.6},"es":{"status":"o","population":73},"qu":{"status":"o","population":15}}},"PF":{"gdp":5650000000,"literacy":98,"population":280026,"languages":{"fr":{"status":"o","population":61},"ty":{"status":"o","population":31},"zh_Hant":{"population":7.8}}},"PG":{"gdp":19960000000,"literacy":62.4,"population":6552730,"languages":{"en":{"status":"o","population":20},"ho":{"status":"o","population":2.1,"writing":5},"tpi":{"status":"o","population":71,"writing":45}}},"PH":{"gdp":454300000000,"literacy":95.4,"population":107668000,"languages":{"bhk":{"population":2.3},"bik":{"population":3},"bku":{"population":0.0074},"bto":{"population":0.28},"ceb":{"status":"r","population":24,"writing":13},"cps":{"population":0.67},"en":{"status":"o","population":64},"es":{"population":31},"fil":{"status":"o","population":60},"hil":{"status":"r","population":8.4,"writing":8},"hnn":{"population":0.016},"ilo":{"status":"r","population":9.6,"writing":10},"krj":{"population":0.39},"mdh":{"status":"r","population":1.2},"pag":{"status":"r","population":1.4},"pam":{"population":2.3},"tbw":{"population":0.0093,"writing":36},"tsg":{"status":"r","population":1.1},"war":{"status":"r","population":2.9},"zh_Hant":{"population":0.73}}},"PK":{"gdp":574100000000,"literacy":54.9,"population":196174000,"languages":{"bal":{"population":3.7},"bft":{"population":0.18},"brh":{"population":1.3},"btv":{"population":0.019},"en":{"status":"o","population":50},"fa":{"population":0.66},"gjk":{"population":0.11},"gju":{"population":0.2},"hnd":{"population":0.41},"hno":{"population":1.2},"khw":{"population":0.15},"ks_Arab":{"population":0.069},"kvx":{"population":0.16},"kxp":{"population":0.12},"lah":{"population":40},"mvy":{"population":0.14},"pa_Arab":{"population":70},"ps":{"population":15},"sd_Arab":{"population":12},"skr":{"population":9.1,"writing":1},"tg_Arab":{"population":0.33},"ur":{"status":"o","population":95}}},"PL":{"gdp":814000000000,"literacy":99.7,"population":38346300,"languages":{"be":{"population":0.58},"csb":{"status":"r","population":0.13},"de":{"status":"r","population":0.096},"lt":{"status":"r","population":0.021},"pl":{"status":"o","population":96},"sli":{"population":0.031},"szl":{"population":1.3},"uk":{"population":0.39}}},"PM":{"gdp":215300000,"literacy":99,"population":5716,"languages":{"en":{"population":3.3},"fr":{"status":"o","population":89}}},"PN":{"gdp":1797000,"literacy":99,"population":48,"languages":{"en":{"status":"o","population":96}}},"PR":{"gdp":64840000000,"literacy":90.3,"population":3620900,"languages":{"en":{"status":"f","population":49},"es":{"status":"o","population":87}}},"PS":{"gdp":8022000000,"literacy":95.3,"population":4547430,"languages":{"ar":{"status":"o","population":100}}},"PT":{"gdp":243300000000,"literacy":95.4,"population":10813800,"languages":{"gl":{"population":0.14},"pt":{"status":"o","population":96}}},"PW":{"gdp":245500000,"literacy":92,"population":21186,"languages":{"en":{"status":"o","population":8.9},"pau":{"status":"o","population":74}}},"PY":{"gdp":45900000000,"literacy":93.9,"population":6703860,"languages":{"de":{"population":2.9},"es":{"status":"o","population":3.2},"gn":{"status":"o","population":80}}},"QA":{"gdp":198700000000,"literacy":96.3,"population":2123160,"languages":{"ar":{"status":"o","population":89},"fa":{"population":11},"ml":{"population":0.31}}},"RE":{"gdp":4791000000,"literacy":88,"population":787584,"languages":{"fr":{"status":"o","population":89},"rcf":{"population":71},"ta":{"population":15}}},"RO":{"gdp":288500000000,"literacy":97.7,"population":21729900,"languages":{"bg":{"population":0.031},"de":{"population":0.21},"el":{"population":0.019},"hu":{"population":6.6},"pl":{"population":0.013},"ro":{"status":"o","population":90},"sr_Latn":{"population":0.12},"tr":{"population":0.13}}},"RS":{"gdp":80470000000,"literacy":98,"population":7209760,"languages":{"hr":{"status":"r","population":0.93},"hu":{"status":"r","population":4.8},"ro":{"status":"r","population":2.1},"sk":{"status":"r","population":0.85},"sq":{"population":19},"sr_Cyrl":{"status":"o","population":99},"sr_Latn":{"status":"o","population":99,"writing":5},"uk":{"status":"r","population":0}}},"RU":{"gdp":2553000000000,"literacy":99.7,"population":142470000,"languages":{"ady":{"status":"r","population":0.088},"alt":{"population":0.014},"av":{"status":"r","population":0.39},"az_Cyrl":{"status":"r","population":0.093},"ba":{"status":"r","population":1.3},"bua":{"population":0.22},"ce":{"status":"r","population":0.66},"chm":{"population":0.37},"cu":{"population":0},"cv":{"population":1.3},"dar":{"population":0.26},"fi":{"population":0.012},"hy":{"population":0.84,"writing":50},"inh":{"status":"r","population":0.16},"izh":{"population":0.0001},"kbd":{"status":"r","population":0.31},"koi":{"status":"r","population":0.045},"krc":{"status":"r","population":0.16},"krl":{"population":0.082},"kum":{"status":"r","population":0.2},"kv":{"status":"r","population":0.18},"lbe":{"status":"r","population":0.078},"lez":{"status":"r","population":0.18},"mdf":{"status":"r","population":0.21},"mn_Cyrl":{"population":0.0015},"mrj":{"population":0.021},"myv":{"status":"r","population":0.31},"os":{"population":0.32},"ru":{"status":"o","population":94},"sah":{"status":"r","population":0.32},"sr_Latn":{"population":0.0035},"tt":{"status":"r","population":1.4},"tyv":{"status":"r","population":0.13},"udm":{"status":"r","population":0.38},"vep":{"population":0.0025}}},"RW":{"gdp":16370000000,"literacy":71.1,"population":12337100,"languages":{"en":{"status":"o","population":0.0024},"fr":{"status":"o","population":0.019},"rw":{"status":"o","population":77}}},"SA":{"gdp":927800000000,"literacy":87.2,"population":27346000,"languages":{"ar":{"status":"o","population":100}}},"SB":{"gdp":1958000000,"literacy":84.1,"population":609883,"languages":{"en":{"status":"o","population":100},"rug":{"population":1.6}}},"SC":{"gdp":2404000000,"literacy":91.8,"population":91650,"languages":{"crs":{"population":98},"en":{"status":"o","population":4.5},"fr":{"status":"o","population":60}}},"SD":{"gdp":89970000000,"literacy":71.9,"population":35482200,"languages":{"ar":{"status":"o","population":61},"en":{"status":"o","population":61},"ha_Arab":{"population":1.4},"nus":{"population":1.8}}},"SE":{"gdp":393800000000,"literacy":99,"population":9723810,"languages":{"fi":{"status":"r","population":2.2},"fit":{"population":0.55},"ia":{"population":0},"rmu":{"population":0.098},"se":{"population":0.33},"sma":{"population":0.0031,"writing":75},"smj":{"population":0.015},"sv":{"status":"o","population":95},"yi":{"population":0.031}}},"SG":{"gdp":339000000000,"literacy":95.9,"population":5567300,"languages":{"en":{"status":"o","population":93},"ml":{"population":0.18},"ms_Latn":{"status":"o","population":14},"pa_Guru":{"population":0.17},"ta":{"status":"o","population":2.1},"zh_Hans":{"status":"o","population":77}}},"SH":{"gdp":31100000,"literacy":97,"population":7776,"languages":{"en":{"status":"o","population":69}}},"SI":{"gdp":57360000000,"literacy":99.7,"population":1988290,"languages":{"hu":{"population":0.46},"it":{"population":0.2},"sl":{"status":"o","population":87}}},"SJ":{"gdp":102600000,"literacy":100,"population":1872,"languages":{"nb":{"status":"o","population":80},"ru":{"population":64}}},"SK":{"gdp":133400000000,"literacy":99.6,"population":5443580,"languages":{"de":{"population":0.28},"hu":{"population":11},"pl":{"population":0.93},"sk":{"status":"o","population":90},"uk":{"population":1.9}}},"SL":{"gdp":9156000000,"literacy":43.3,"population":5743730,"languages":{"en":{"status":"o","population":35},"kri":{"population":95},"men":{"population":27},"tem":{"population":26,"writing":6}}},"SM":{"gdp":1306000000,"literacy":96,"population":32742,"languages":{"eo":{"population":0.92},"it":{"status":"o","population":89}}},"SN":{"gdp":27720000000,"literacy":49.7,"population":13635900,"languages":{"dyo":{"population":2.6,"writing":10},"ff":{"population":21},"fr":{"status":"o","population":39,"writing":100},"srr":{"population":11},"wo":{"status":"f","population":70}}},"SO":{"gdp":5896000000,"literacy":37.8,"population":10428000,"languages":{"ar":{"status":"o","population":34,"writing":99},"om":{"population":0.42},"so":{"status":"o","population":78},"sw":{"population":2}}},"SR":{"gdp":7120000000,"literacy":94.7,"population":573311,"languages":{"nl":{"status":"o","population":90},"srn":{"population":68,"writing":75},"zh_Hant":{"population":1.2}}},"SS":{"gdp":14710000000,"literacy":27,"population":11562700,"languages":{"ar":{"population":27},"en":{"status":"o","population":27}}},"ST":{"gdp":421000000,"literacy":69.5,"population":190428,"languages":{"pt":{"status":"o","population":85}}},"SV":{"gdp":47470000000,"literacy":84.5,"population":6125510,"languages":{"es":{"status":"o","population":89}}},"SX":{"gdp":798300000,"literacy":99,"population":39689,"languages":{"en":{"status":"o","population":68},"es":{"population":12},"nl":{"status":"o","population":4},"vic":{"population":7.8}}},"SY":{"gdp":107600000000,"literacy":84.1,"population":17951600,"languages":{"ar":{"status":"o","population":80},"fr":{"status":"o","population":5.9},"hy":{"population":1.8},"ku_Latn":{"population":8},"syr":{"population":0.084,"writing":5}}},"SZ":{"gdp":6259000000,"literacy":87.8,"population":1419620,"languages":{"en":{"status":"o","population":80},"ss":{"status":"o","population":58},"ts":{"population":1.7},"zu":{"population":6.8}}},"TA":{"gdp":10300000,"literacy":99,"population":275,"languages":{"en":{"population":99}}},"TC":{"gdp":632000000,"literacy":98,"population":49070,"languages":{"en":{"status":"o","population":98}}},"TD":{"gdp":28000000000,"literacy":35.4,"population":11412100,"languages":{"ar":{"status":"o","population":17},"fr":{"status":"o","population":26}}},"TF":{"gdp":4809000,"literacy":99,"population":140,"languages":{"fr":{"population":100,"writing":100}}},"TG":{"gdp":7348000000,"literacy":60.4,"population":7351370,"languages":{"ee":{"population":17},"fr":{"status":"o","population":61}}},"TH":{"gdp":673000000000,"literacy":93.5,"population":67741400,"languages":{"kdt":{"population":0.48,"writing":50},"kxm":{"population":1.7},"lcp":{"population":0.01,"writing":25},"lwl":{"population":0.01},"mfa":{"population":5},"mnw":{"population":0.17},"nod":{"population":9.6,"writing":5},"shn":{"population":0.096},"sou":{"population":8,"writing":5},"th":{"status":"o","population":80,"writing":93},"tts":{"population":24,"writing":5},"zh_Hant":{"population":1.8}}},"TJ":{"gdp":19200000000,"literacy":99.7,"population":8051510,"languages":{"ar":{"population":0.012},"fa":{"population":0.78},"ru":{"population":12},"tg_Cyrl":{"status":"o","population":100}}},"TK":{"gdp":1500000,"literacy":94,"population":1337,"languages":{"en":{"status":"o","population":100},"tkl":{"status":"o","population":100,"writing":5}}},"TL":{"gdp":25410000000,"literacy":58.3,"population":1201540,"languages":{"pt":{"status":"o","population":59,"writing":100},"tet":{"status":"o","population":59}}},"TM":{"gdp":55160000000,"literacy":99.6,"population":5171940,"languages":{"ku_Latn":{"population":0.41},"ru":{"population":12},"tk_Latn":{"status":"o","population":70},"uz_Latn":{"population":9}}},"TN":{"gdp":108400000000,"literacy":79.1,"population":10937500,"languages":{"aeb":{"population":90},"ar":{"status":"o","population":90},"fr":{"status":"o","population":74}}},"TO":{"gdp":846000000,"literacy":99,"population":106440,"languages":{"en":{"status":"o","population":28},"to":{"status":"o","population":95}}},"TR":{"gdp":1167000000000,"literacy":94.1,"population":81619400,"languages":{"ab":{"population":0.0049},"ady":{"population":0.39},"ar":{"population":0.56},"az_Latn":{"population":0.74},"bg":{"population":0.42},"bgx":{"population":0.46},"el":{"population":0.0049},"hy":{"population":0.056},"ka":{"population":0.056},"kbd":{"population":0.77},"kiu":{"population":0.19},"kk_Cyrl":{"population":0.0007},"ku_Latn":{"population":5.5},"ky_Latn":{"population":0.0014},"lzz_Latn":{"population":0.028},"sq":{"population":0.021},"sr_Latn":{"population":0.028,"writing":5},"tr":{"status":"o","population":93},"tru":{"population":0.0037},"uz_Latn":{"population":0.0024},"zza":{"population":1.4}}},"TT":{"gdp":27140000000,"literacy":98.8,"population":1223920,"languages":{"en":{"status":"o","population":99},"es":{"population":0.33}}},"TV":{"gdp":40000000,"literacy":95,"population":10782,"languages":{"en":{"status":"o","population":9.9},"tvl":{"status":"o","population":92}}},"TW":{"gdp":926400000000,"literacy":96.1,"population":23359900,"languages":{"trv":{"population":0.02},"zh_Hant":{"status":"o","population":95}}},"TZ":{"gdp":79290000000,"literacy":67.8,"population":49639100,"languages":{"asa":{"population":1.2},"bez":{"population":1.7},"en":{"status":"o","population":69},"jmc":{"population":0.75},"kde":{"population":2.4},"ksb":{"population":1.7},"lag":{"population":0.87},"mas":{"population":1.5,"writing":50},"mgy":{"population":1.4},"nym":{"population":3.3},"rof":{"population":0.75},"rwk":{"population":0.22},"sbp":{"population":0.2,"writing":1},"suk":{"population":8.7},"sw":{"status":"o","population":90},"vun":{"population":0.75}}},"UA":{"gdp":337400000000,"literacy":99.7,"population":44291400,"languages":{"be":{"population":0.83},"bg":{"population":0.49},"el":{"population":0.016},"hu":{"population":0.37},"pl":{"population":2.4},"ro":{"population":0.52},"ru":{"status":"f","population":46},"rue":{"population":1.2},"tr":{"population":0.42},"uk":{"status":"o","population":65},"yi":{"population":1.3}}},"UG":{"gdp":54370000000,"literacy":73.2,"population":35918900,"languages":{"ach":{"population":3.7},"cgg":{"population":5.4},"en":{"status":"o","population":3.9},"hi":{"population":0.0061},"laj":{"population":3.8},"lg":{"population":13},"myx":{"population":2.9},"nyn":{"population":6.3},"rw":{"population":2.1},"sw":{"status":"o","population":75},"teo":{"population":3.9},"ttj":{"population":1.9},"xog":{"population":5.3}}},"UM":{"gdp":16570000,"literacy":99,"population":316,"languages":{"en":{"status":"f","population":100}}},"US":{"gdp":16720000000000,"literacy":99,"population":318892000,"languages":{"chr":{"population":0.0077,"writing":5},"de":{"population":0.47},"en":{"status":"f","population":96},"es":{"status":"r","population":9.6},"esu":{"population":0.0062},"fil":{"population":0.42},"fr":{"population":0.56},"frc":{"population":0.0084},"haw":{"status":"r","population":0.0089},"ik":{"population":0.0025,"writing":5},"it":{"population":0.34},"ko":{"population":0.3},"lkt":{"population":0.0026},"nv":{"population":0.05},"pdc":{"population":0.039},"ru":{"population":0.24},"vi":{"population":0.34},"yi":{"population":0.049},"zh_Hant":{"population":0.69}}},"UY":{"gdp":56270000000,"literacy":98.1,"population":3332970,"languages":{"es":{"status":"o","population":88}}},"UZ":{"gdp":112600000000,"literacy":99.4,"population":28929700,"languages":{"kaa":{"population":1.6},"ru":{"population":14},"tr":{"population":0.76},"uz_Cyrl":{"status":"o","population":15},"uz_Latn":{"status":"o","population":85}}},"VA":{"gdp":24640000,"literacy":100,"population":842,"languages":{"it":{"population":98},"la":{"population":98}}},"VC":{"gdp":1335000000,"literacy":96,"population":102918,"languages":{"en":{"status":"o","population":96}}},"VE":{"gdp":407400000000,"literacy":95.5,"population":28868500,"languages":{"es":{"status":"o","population":82}}},"VG":{"gdp":500000000,"literacy":97.8,"population":32680,"languages":{"en":{"status":"o","population":98}}},"VI":{"gdp":1577000000,"literacy":95,"population":104170,"languages":{"en":{"status":"f","population":75}}},"VN":{"gdp":358900000000,"literacy":93.4,"population":93421800,"languages":{"cjm":{"population":0.089,"writing":60},"vi":{"status":"o","population":86},"zh_Hant":{"population":1}}},"VU":{"gdp":1270000000,"literacy":83.2,"population":266937,"languages":{"bi":{"status":"o","population":90},"en":{"status":"o","population":74},"fr":{"status":"o","population":50}}},"WF":{"gdp":60000000,"literacy":50,"population":15561,"languages":{"fr":{"status":"o","population":49},"fud":{"population":31},"wls":{"population":61}}},"WS":{"gdp":1145000000,"literacy":98.8,"population":196628,"languages":{"en":{"status":"o","population":2.2},"sm":{"status":"o","population":100}}},"XK":{"gdp":14110000000,"literacy":91.9,"population":1859200,"languages":{"aln":{"population":74},"sq":{"status":"o","population":92},"sr_Cyrl":{"status":"o","population":5},"sr_Latn":{"status":"o","population":5}}},"YE":{"gdp":61630000000,"literacy":65.3,"population":26053000,"languages":{"ar":{"status":"o","population":74}}},"YT":{"gdp":953600000,"literacy":92,"population":194000,"languages":{"buc":{"population":23},"fr":{"status":"o","population":57},"sw":{"population":1.4},"swb":{"population":88}}},"ZA":{"gdp":595700000000,"literacy":93,"population":48375600,"languages":{"af":{"status":"r","population":13,"writing":99},"en":{"status":"o","population":55,"writing":99},"hi":{"population":2,"writing":69},"nr":{"status":"r","population":1.6,"writing":50},"nso":{"status":"r","population":9.4,"writing":50},"ss":{"status":"r","population":2.7,"writing":50},"st":{"status":"r","population":7.9,"writing":50},"sw":{"population":0.0021,"writing":50},"tn":{"status":"r","population":8.2,"writing":50},"ts":{"status":"r","population":4.4,"writing":50},"ve":{"status":"r","population":2.3,"writing":50},"xh":{"status":"r","population":18,"writing":50},"zu":{"status":"r","population":24,"writing":50}}},"ZM":{"gdp":25470000000,"literacy":61.4,"population":14638500,"languages":{"bem":{"population":31},"en":{"status":"o","population":81},"loz":{"population":6},"ny":{"population":15}}},"ZW":{"gdp":7496000000,"literacy":83.6,"population":13771700,"languages":{"en":{"status":"o","population":91},"kck":{"population":5.3},"mxc":{"population":6.5},"nd":{"status":"o","population":12},"ndc":{"population":6.1},"ny":{"population":1.9},"sn":{"status":"o","population":81},"tn":{"population":0.22},"ve":{"population":0.64}}}} \ No newline at end of file diff --git a/Punic/data/th/calendar.json b/Punic/data/th/calendar.json new file mode 100644 index 0000000..5b01d4d --- /dev/null +++ b/Punic/data/th/calendar.json @@ -0,0 +1 @@ +{"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":"ไตรมาส 1","2":"ไตรมาส 2","3":"ไตรมาส 3","4":"ไตรมาส 4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"ไตรมาส 1","2":"ไตรมาส 2","3":"ไตรมาส 3","4":"ไตรมาส 4"}},"stand-alone":{"abbreviated":{"1":"ไตรมาส 1","2":"ไตรมาส 2","3":"ไตรมาส 3","4":"ไตรมาส 4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"ไตรมาส 1","2":"ไตรมาส 2","3":"ไตรมาส 3","4":"ไตรมาส 4"}}},"dayPeriods":{"format":{"abbreviated":{"am":"ก่อนเที่ยง","noon":"เที่ยง","pm":"หลังเที่ยง"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"ก่อนเที่ยง","noon":"เที่ยง","pm":"หลังเที่ยง"}},"stand-alone":{"abbreviated":{"am":"ก่อนเที่ยง","noon":"เที่ยง","pm":"หลังเที่ยง"},"narrow":{"am":"a","noon":"n","pm":"p"},"wide":{"am":"ก่อนเที่ยง","noon":"เที่ยง","pm":"หลังเที่ยง"}}},"eras":{"wide":{"0":"ปีก่อนคริสต์ศักราช","0-alt-variant":"ก่อนสามัญศักราช","1":"คริสต์ศักราช","1-alt-variant":"สามัญศักราช"},"abbreviated":{"0":"ปีก่อน ค.ศ.","0-alt-variant":"ก.ส.ศ.","1":"ค.ศ.","1-alt-variant":"ส.ศ."},"narrow":{"0":"ก่อน ค.ศ.","0-alt-variant":"ก.ส.ศ.","1":"ค.ศ.","1-alt-variant":"ส.ศ."}},"dateFormats":{"full":"EEEEที่ d MMMM G y","long":"d MMMM G y","medium":"d MMM y","short":"d/M/yy"},"timeFormats":{"full":"H นาฬิกา mm นาที ss วินาที zzzz","long":"H นาฬิกา mm นาที ss วินาที z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/th/dateFields.json b/Punic/data/th/dateFields.json new file mode 100644 index 0000000..81cc051 --- /dev/null +++ b/Punic/data/th/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"สมัย"},"year":{"displayName":"ปี","relative-type--1":"ปีที่แล้ว","relative-type-0":"ปีนี้","relative-type-1":"ปีหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} ปี"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ปีที่แล้ว"}},"year-short":{"displayName":"ปี","relative-type--1":"ปีที่แล้ว","relative-type-0":"ปีนี้","relative-type-1":"ปีหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ปี"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ปีที่แล้ว"}},"year-narrow":{"displayName":"ปี","relative-type--1":"ปีที่แล้ว","relative-type-0":"ปีนี้","relative-type-1":"ปีหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ปี"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ปีที่แล้ว"}},"quarter":{"displayName":"ไตรมาส","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} ไตรมาส"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ไตรมาสที่แล้ว"}},"quarter-short":{"displayName":"ไตรมาส","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ไตรมาส"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ไตรมาสที่แล้ว"}},"quarter-narrow":{"displayName":"ไตรมาส","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ไตรมาส"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ไตรมาสที่แล้ว"}},"month":{"displayName":"เดือน","relative-type--1":"เดือนที่แล้ว","relative-type-0":"เดือนนี้","relative-type-1":"เดือนหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} เดือน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} เดือนที่ผ่านมา"}},"month-short":{"displayName":"เดือน","relative-type--1":"เดือนที่แล้ว","relative-type-0":"เดือนนี้","relative-type-1":"เดือนหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} เดือน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} เดือนที่แล้ว"}},"month-narrow":{"displayName":"เดือน","relative-type--1":"เดือนที่แล้ว","relative-type-0":"เดือนนี้","relative-type-1":"เดือนหน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} เดือน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} เดือนที่แล้ว"}},"week":{"displayName":"สัปดาห์","relative-type--1":"สัปดาห์ที่แล้ว","relative-type-0":"สัปดาห์นี้","relative-type-1":"สัปดาห์หน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} สัปดาห์"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} สัปดาห์ที่ผ่านมา"}},"week-short":{"displayName":"สัปดาห์","relative-type--1":"สัปดาห์ที่แล้ว","relative-type-0":"สัปดาห์นี้","relative-type-1":"สัปดาห์หน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} สัปดาห์"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} สัปดาห์ที่แล้ว"}},"week-narrow":{"displayName":"สัปดาห์","relative-type--1":"สัปดาห์ที่แล้ว","relative-type-0":"สัปดาห์นี้","relative-type-1":"สัปดาห์หน้า","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} สัปดาห์"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} สัปดาห์ที่แล้ว"}},"day":{"displayName":"วัน","relative-type--1":"เมื่อวาน","relative-type--2":"เมื่อวานซืน","relative-type-0":"วันนี้","relative-type-1":"พรุ่งนี้","relative-type-2":"มะรืนนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} วัน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วันที่ผ่านมา"}},"day-short":{"displayName":"วัน","relative-type--1":"เมื่อวาน","relative-type--2":"เมื่อวานซืน","relative-type-0":"วันนี้","relative-type-1":"พรุ่งนี้","relative-type-2":"มะรืนนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} วัน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วันที่แล้ว"}},"day-narrow":{"displayName":"วัน","relative-type--1":"เมื่อวาน","relative-type--2":"เมื่อวานซืน","relative-type-0":"วันนี้","relative-type-1":"พรุ่งนี้","relative-type-2":"มะรืนนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} วัน"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วันที่แล้ว"}},"weekday":{"displayName":"วันในสัปดาห์"},"sun":{"relative-type--1":"อาทิตย์ที่แล้ว","relative-type-0":"อาทิตย์นี้","relative-type-1":"อาทิตย์หน้า"},"sun-short":{"relative-type--1":"อาทิตย์ที่แล้ว","relative-type-0":"อาทิตย์นี้","relative-type-1":"อาทิตย์หน้า"},"sun-narrow":{"relative-type--1":"อาทิตย์ที่แล้ว","relative-type-0":"อาทิตย์นี้","relative-type-1":"อาทิตย์หน้า"},"mon":{"relative-type--1":"จันทร์ที่แล้ว","relative-type-0":"จันทร์นี้","relative-type-1":"จันทร์หน้า"},"mon-short":{"relative-type--1":"จันทร์ที่แล้ว","relative-type-0":"จันทร์นี้","relative-type-1":"จันทร์หน้า"},"mon-narrow":{"relative-type--1":"จันทร์ที่แล้ว","relative-type-0":"จันทร์นี้","relative-type-1":"จันทร์หน้า"},"tue":{"relative-type--1":"อังคารที่แล้ว","relative-type-0":"อังคารนี้","relative-type-1":"อังคารหน้า"},"tue-short":{"relative-type--1":"อังคารที่แล้ว","relative-type-0":"อังคารนี้","relative-type-1":"อังคารหน้า"},"tue-narrow":{"relative-type--1":"อังคารที่แล้ว","relative-type-0":"อังคารนี้","relative-type-1":"อังคารหน้า"},"wed":{"relative-type--1":"พุธที่แล้ว","relative-type-0":"พุธนี้","relative-type-1":"พุธหน้า"},"wed-short":{"relative-type--1":"พุธที่แล้ว","relative-type-0":"พุธนี้","relative-type-1":"พุธหน้า"},"wed-narrow":{"relative-type--1":"พุธที่แล้ว","relative-type-0":"พุธนี้","relative-type-1":"พุธหน้า"},"thu":{"relative-type--1":"พฤหัสที่แล้ว","relative-type-0":"พฤหัสนี้","relative-type-1":"พฤหัสหน้า"},"thu-short":{"relative-type--1":"พฤหัสที่แล้ว","relative-type-0":"พฤหัสนี้","relative-type-1":"พฤหัสหน้า"},"thu-narrow":{"relative-type--1":"พฤหัสที่แล้ว","relative-type-0":"พฤหัสนี้","relative-type-1":"พฤหัสหน้า"},"fri":{"relative-type--1":"ศุกร์ที่แล้ว","relative-type-0":"ศุกร์นี้","relative-type-1":"ศุกร์หน้า"},"fri-short":{"relative-type--1":"ศุกร์ที่แล้ว","relative-type-0":"ศุกร์นี้","relative-type-1":"ศุกร์หน้า"},"fri-narrow":{"relative-type--1":"ศุกร์ที่แล้ว","relative-type-0":"ศุกร์นี้","relative-type-1":"ศุกร์หน้า"},"sat":{"relative-type--1":"เสาร์ที่แล้ว","relative-type-0":"เสาร์นี้","relative-type-1":"เสาร์หน้า"},"sat-short":{"relative-type--1":"เสาร์ที่แล้ว","relative-type-0":"เสาร์นี้","relative-type-1":"เสาร์หน้า"},"sat-narrow":{"relative-type--1":"เสาร์ที่แล้ว","relative-type-0":"เสาร์นี้","relative-type-1":"เสาร์หน้า"},"dayperiod":{"displayName":"ช่วงวัน"},"hour":{"displayName":"ชั่วโมง","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} ชั่วโมง"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ชั่วโมงที่ผ่านมา"}},"hour-short":{"displayName":"ชม.","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ชม."},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ชม. ที่แล้ว"}},"hour-narrow":{"displayName":"ชม.","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} ชม."},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ชม. ที่แล้ว"}},"minute":{"displayName":"นาที","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} นาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} นาทีที่ผ่านมา"}},"minute-short":{"displayName":"น.","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} นาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} นาทีที่แล้ว"}},"minute-narrow":{"displayName":"น.","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} นาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} นาทีที่แล้ว"}},"second":{"displayName":"วินาที","relative-type-0":"ขณะนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ในอีก {0} วินาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วินาทีที่ผ่านมา"}},"second-short":{"displayName":"วิ","relative-type-0":"ขณะนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} วินาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วินาทีที่แล้ว"}},"second-narrow":{"displayName":"วิ","relative-type-0":"ขณะนี้","relativeTime-type-future":{"relativeTimePattern-count-other":"ใน {0} วินาที"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} วินาทีที่แล้ว"}},"zone":{"displayName":"เขตเวลา"}} \ No newline at end of file diff --git a/Punic/data/th/languages.json b/Punic/data/th/languages.json new file mode 100644 index 0000000..1f587d8 --- /dev/null +++ b/Punic/data/th/languages.json @@ -0,0 +1 @@ +{"aa":"อะฟาร์","ab":"อับคาซ","ace":"อาเจะห์","ach":"อาโคลิ","ada":"อาแดงมี","ady":"อะดืยเก","ae":"อเวสตะ","aeb":"อาหรับตูนิเซีย","af":"แอฟริกานส์","afh":"แอฟริฮีลี","agq":"อักเฮม","ain":"ไอนุ","ak":"อาคัน","akk":"อักกาด","akz":"แอละแบมา","ale":"อาลิวต์","aln":"เกกแอลเบเนีย","alt":"อัลไตใต้","am":"อัมฮารา","an":"อารากอน","ang":"อังกฤษโบราณ","anp":"อังคิกา","ar":"อาหรับ","ar-001":"อาหรับมาตรฐานสมัยใหม่","arc":"อราเมอิก","arn":"อาเราคาเนียน","aro":"อาเรานา","arp":"อาราปาโฮ","arq":"อาหรับแอลจีเรีย","arw":"อาราวัก","ary":"อาหรับโมร็อกโก","arz":"อาหรับพื้นเมืองอียิปต์","as":"อัสสัม","asa":"อาซู","ase":"ภาษามืออเมริกัน","ast":"อัสตูเรียส","av":"อาวาร์","avk":"โคตาวา","awa":"อวธี","ay":"ไอย์มารา","az":"อาเซอร์ไบจาน","az-alt-short":"อะเซอรี","azb":"อาเซอร์ไบจานใต้","ba":"บัชคีร์","bal":"บาลูชิ","ban":"บาหลี","bar":"บาวาเรีย","bas":"บาสา","bax":"บามัน","bbc":"บาตักโทบา","bbj":"โคมาลา","be":"เบลารุส","bej":"เบจา","bem":"เบมบา","bew":"เบตาวี","bez":"เบนา","bfd":"บาฟัต","bfq":"พทคะ","bg":"บัลแกเรีย","bho":"โภชปุรี","bi":"บิสลามา","bik":"บิกอล","bin":"บินี","bjn":"บันจาร์","bkm":"กม","bla":"สิกสิกา","bm":"บัมบารา","bn":"เบงกาลี","bo":"ทิเบต","bpy":"พิศนุปริยะ","bqi":"บักติยารี","br":"เบรตัน","bra":"พัรช","brh":"บราฮุย","brx":"โพโฑ","bs":"บอสเนีย","bss":"อาโคซี","bua":"บูเรียต","bug":"บูกิส","bum":"บูลู","byn":"บลิน","byv":"เมดุมบา","ca":"กาตาลัง","cad":"คัดโด","car":"คาริบ","cay":"คายูกา","cch":"แอตแซม","ce":"เชเชน","ceb":"เซบู","cgg":"คีกา","ch":"ชามอร์โร","chb":"ชิบชา","chg":"ชะกะไต","chk":"ชูก","chm":"มารี","chn":"ชินุกจาร์กอน","cho":"ช็อกทอว์","chp":"ชิพิวยัน","chr":"เชอโรกี","chy":"เชเยนเน","ckb":"เคิร์ดโซรานี","co":"คอร์ซิกา","cop":"คอปติก","cps":"กาปิซนอน","cr":"ครี","crh":"ตุรกีไครเมีย","cs":"เช็ก","csb":"คาซูเบียน","cu":"เชอร์ชสลาวิก","cv":"ชูวัช","cy":"เวลส์","da":"เดนมาร์ก","dak":"ดาโกทา","dar":"ดาร์กิน","dav":"ไททา","de":"เยอรมัน","de-AT":"เยอรมัน - ออสเตรีย","de-CH":"เยอรมันสูง (สวิส)","del":"เดลาแวร์","den":"สเลวี","dgr":"โดกริบ","din":"ดิงกา","dje":"ซาร์มา","doi":"โฑครี","dsb":"ซอร์บส์ตอนล่าง","dtp":"ดูซุนกลาง","dua":"ดัวลา","dum":"ดัตช์กลาง","dv":"ธิเวหิ","dyo":"โจลา-ฟอนยี","dyu":"ดิวลา","dz":"ซองคา","dzg":"ดาซากา","ebu":"เอ็มบู","ee":"เอเว","efi":"อีฟิก","egl":"เอมีเลีย","egy":"อียิปต์โบราณ","eka":"อีกาจุก","el":"กรีก","elx":"อีลาไมต์","en":"อังกฤษ","en-AU":"อังกฤษ - ออสเตรเลีย","en-CA":"อังกฤษ - แคนาดา","en-GB":"อังกฤษ - สหราชอาณาจักร","en-GB-alt-short":"อังกฤษ - อังกฤษ","en-US":"อังกฤษ - อเมริกัน","en-US-alt-short":"อังกฤษ - อเมริกัน","enm":"อังกฤษกลาง","eo":"เอสเปอรันโต","es":"สเปน","es-419":"es_419","es-ES":"สเปน (ยุโรป)","es-MX":"es_MX","esu":"ยูพิกกลาง","et":"เอสโตเนีย","eu":"บัสเก","ewo":"อีวันโด","ext":"เอกซ์เตรมาดูรา","fa":"เปอร์เซีย","fan":"ฟอง","fat":"ฟันติ","ff":"ฟูลาฮ์","fi":"ฟินแลนด์","fil":"ฟิลิปปินส์","fit":"ฟินแลนด์ทอร์เนดาเล็น","fj":"ฟิจิ","fo":"แฟโร","fon":"ฟอน","fr":"ฝรั่งเศส","fr-CA":"fr_CA","fr-CH":"ฝรั่งเศส (สวิส)","frc":"ฝรั่งเศสกาฌ็อง","frm":"ฝรั่งเศสกลาง","fro":"ฝรั่งเศสโบราณ","frp":"อาร์พิตา","frr":"ฟริเซียนเหนือ","frs":"ฟริเซียนตะวันออก","fur":"ฟรูลี","fy":"ฟริเซียนตะวันตก","ga":"ไอริช","gaa":"กา","gag":"กากาอุซ","gan":"จีนกาน","gay":"กาโย","gba":"กบายา","gbz":"ดารีโซโรอัสเตอร์","gd":"สกอตส์กาลิก","gez":"กีซ","gil":"กิลเบอร์ต","gl":"กาลิเซีย","glk":"กิลากี","gmh":"เยอรมันสูงกลาง","gn":"กวารานี","goh":"เยอรมันสูงโบราณ","gom":"กอนกานีของกัว","gon":"กอนดิ","gor":"กอรอนทาโล","got":"โกธิก","grb":"เกรโบ","grc":"กรีกโบราณ","gsw":"เยอรมันสวิส","gu":"คุชราต","guc":"วายู","gur":"ฟราฟรา","guz":"กุซซี","gv":"มานซ์","gwi":"กวิชอิน","ha":"เฮาชา","hai":"ไฮดา","hak":"จีนแคะ","haw":"ฮาวาย","he":"ฮิบรู","hi":"ฮินดี","hif":"ฮินดีฟิจิ","hil":"ฮีลีกัยนน","hit":"ฮิตไตต์","hmn":"ม้ง","ho":"ฮีรีโมตู","hr":"โครเอเชีย","hsb":"ซอร์บส์ตอนบน","hsn":"จีนเซียง","ht":"เฮติ","hu":"ฮังการี","hup":"ฮูปา","hy":"อาร์เมเนีย","hz":"เฮเรโร","ia":"อินเตอร์ลิงกัว","iba":"อิบาน","ibb":"อิบิบิโอ","id":"อินโดนีเชีย","ie":"อินเตอร์ลิงกิว","ig":"อิกโบ","ii":"เสฉวนยิ","ik":"อีนูเปียก","ilo":"อีโลโก","inh":"อินกุช","io":"อีโด","is":"ไอซ์แลนด์","it":"อิตาลี","iu":"อินุกติตุต","izh":"อินเกรียน","ja":"ญี่ปุ่น","jam":"อังกฤษคลีโอลจาเมกา","jbo":"โลชบัน","jgo":"อึนกอมบา","jmc":"มาชาเม","jpr":"ยิว-เปอร์เซีย","jrb":"ยิว-อาหรับ","jut":"จัท","jv":"ชวา","ka":"จอร์เจีย","kaa":"การา-กาลพาก","kab":"กาไบล","kac":"กะฉิ่น","kaj":"คจู","kam":"คัมบา","kaw":"กวี","kbd":"คาร์บาเดีย","kbl":"คาเนมบู","kcg":"ทีแยป","kde":"มาคอนเด","kea":"คาบูเวอร์เดียนู","ken":"เกินยาง","kfo":"โคโร","kg":"คองโก","kgp":"เคนก่าง","kha":"กาสี","kho":"โคตัน","khq":"โคย์ราชีนี","khw":"โควาร์","ki":"กีกูยู","kiu":"เคอร์มานิกิ","kj":"กวนยามา","kk":"คาซัค","kkj":"คาโก","kl":"กรีนแลนด์","kln":"คาเลนจิน","km":"เขมร","kmb":"คิมบุนดู","kn":"กันนาดา","ko":"เกาหลี","koi":"โคมิ-เปียร์เมียค","kok":"กอนกานี","kos":"คูสไร","kpe":"กาแปล","kr":"คานูรี","krc":"คาราไช-บัลคาร์","kri":"คริโอ","krj":"กินารายอา","krl":"แกรเลียน","kru":"กุรุข","ks":"กัศมีร์","ksb":"ชัมบาลา","ksf":"บาเฟีย","ksh":"โคโลญ","ku":"เคิร์ด","kum":"คูมืยค์","kut":"คูเทไน","kv":"โกมิ","kw":"คอร์นิช","ky":"คีร์กีซ","la":"ละติน","lad":"ลาดิโน","lag":"แลนจี","lah":"ลาฮ์นดา","lam":"แลมบา","lb":"ลักเซมเบิร์ก","lez":"เลซเกียน","lfn":"ลิงกัวฟรังกาโนวา","lg":"ยูกันดา","li":"ลิมเบิร์ก","lij":"ลิกูเรีย","liv":"ลิโวเนีย","lkt":"ลาโกตา","lmo":"ลอมบาร์ด","ln":"ลิงกาลา","lo":"ลาว","lol":"มองโก","loz":"โลซิ","lt":"ลิทัวเนีย","ltg":"ลัตเกล","lu":"ลูบา-กาตองกา","lua":"ลูบา-ลูลัว","lui":"ลุยเซโน","lun":"ลันดา","luo":"ลัว","lus":"ลูไช","luy":"ลูเยีย","lv":"ลัตเวีย","lzh":"จีนคลาสสิก","lzz":"แลซ","mad":"มาดูรา","maf":"มาฟา","mag":"มคหี","mai":"ไมถิลี","mak":"มากาซาร์","man":"มันดิงกา","mas":"มาไซ","mde":"มาบา","mdf":"มอคชา","mdr":"มานดาร์","men":"เมนเด","mer":"เมรู","mfe":"มอริสเยน","mg":"มาลากาซี","mga":"ไอริชกลาง","mgh":"มากัววา-มีทโท","mgo":"เมตา","mh":"มาร์แชลลิส","mi":"เมารี","mic":"มิกแมก","min":"มีนังกาเบา","mk":"มาซิโดเนีย","ml":"มาลายาลัม","mn":"มองโกเลีย","mnc":"แมนจู","mni":"มณีปุระ","moh":"โมฮอว์ก","mos":"โมซี","mr":"มราฐี","mrj":"มารีตะวันตก","ms":"มาเลย์","mt":"มอลตา","mua":"มันดัง","mul":"หลายภาษา","mus":"ครีก","mwl":"มีรันดา","mwr":"มารวาฑี","mwv":"เม็นตาไว","my":"พม่า","mye":"มยีน","myv":"เอียร์ซยา","mzn":"มาซันดารานี","na":"นาอูรู","nan":"จีนมินหนาน","nap":"นาโปลี","naq":"นามา","nb":"นอร์เวย์บุคมอล","nd":"เอ็นเดเบเลเหนือ","nds":"เยอรมันต่ำ - แซกซอนต่ำ","ne":"เนปาล","new":"เนวาร์","ng":"ดองกา","nia":"นีอัส","niu":"นีอู","njo":"อ๋าวนากา","nl":"ดัตช์","nl-BE":"เฟลมิช","nmg":"กวาซิโอ","nn":"นอร์เวย์นีนอสก์","nnh":"จีมบูน","no":"นอร์เวย์","nog":"โนไก","non":"นอร์สโบราณ","nov":"โนเวียล","nqo":"เอ็นโก","nr":"เอ็นเดเบเลใต้","nso":"โซโทเหนือ","nus":"เนือร์","nv":"นาวาโฮ","nwc":"เนวาร์ดั้งเดิม","ny":"เนียนจา","nym":"เนียมเวซี","nyn":"เนียนโกเล","nyo":"นิโอโร","nzi":"นซิมา","oc":"อ็อกซิตัน","oj":"โอจิบวา","om":"โอโรโม","or":"โอริยา","os":"ออสเซเตีย","osa":"โอซากี","ota":"ตุรกีออตโตมัน","pa":"ปัญจาบ","pag":"ปางาซีนัน","pal":"ปะห์ลาวี","pam":"ปัมปางา","pap":"ปาเปียเมนโต","pau":"ปาเลา","pcd":"ปิการ์","pdc":"เยอรมันเพนซิลเวเนีย","pdt":"เพลาท์ดิช","peo":"เปอร์เซียโบราณ","pfl":"เยอรมันพาลาทิเนต","phn":"ฟินิเชีย","pi":"บาลี","pl":"โปแลนด์","pms":"พีดมอนต์","pnt":"พอนติก","pon":"พอห์นเพ","prg":"ปรัสเซีย","pro":"โปรวองซาลโบราณ","ps":"พาชตู","ps-alt-variant":"พุชโต","pt":"โปรตุเกส","pt-BR":"โปรตุเกส - บราซิล","pt-PT":"โปรตุเกส - ยุโรป","qu":"ควิชัว","quc":"กีเช","qug":"ควิชัวไฮแลนด์ชิมโบราโซ","raj":"ราชสถาน","rap":"ราปานู","rar":"ราโรทองกา","rgn":"โรมัณโญ","rif":"ริฟฟิอัน","rm":"โรแมนซ์","rn":"บุรุนดี","ro":"โรมาเนีย","ro-MD":"มอลโดวา","rof":"รอมโบ","rom":"โรมานี","root":"รูท","rtm":"โรทูมัน","ru":"รัสเซีย","rue":"รูซิน","rug":"โรเวียนา","rup":"อาโรมาเนียน","rw":"รวันดา","rwk":"รวา","sa":"สันสกฤต","sad":"ซันดาเว","sah":"ซาฮา","sam":"อราเมอิกซามาเรีย","saq":"แซมบูรู","sas":"ซาซัก","sat":"สันตาลี","saz":"เสาราษฏร์","sba":"กัมเบ","sbp":"แซงกู","sc":"ซาร์เดญา","scn":"ซิซิลี","sco":"สกอตส์","sd":"สินธุ","sdc":"ซาร์ดิเนียซาสซารี","se":"ซามิเหนือ","see":"เซนิกา","seh":"เซนา","sei":"เซรี","sel":"เซลคุป","ses":"โคย์ราโบโรเซนนี","sg":"แซงโก","sga":"ไอริชโบราณ","sgs":"ซาโมจิเตียน","sh":"เซอร์โบ-โครเอเชีย","shi":"ทาเชลีห์ท","shn":"ไทใหญ่","shu":"อาหรับ-ชาด","si":"สิงหล","sid":"ซิดาโม","sk":"สโลวัก","sl":"สโลวีเนีย","sli":"ไซลีเซียตอนล่าง","sly":"เซลายาร์","sm":"ซามัว","sma":"ซามิใต้","smj":"ซามิลูเล","smn":"ซามิอีนารี","sms":"ซามิสคอลต์","sn":"โชนา","snk":"โซนีนเก","so":"โซมาลี","sog":"ซอกดีน","sq":"แอลเบเนีย","sr":"เซอร์เบีย","srn":"ซูรินาเม","srr":"เซแรร์","ss":"สวาติ","ssy":"ซาโฮ","st":"โซโทใต้","stq":"ฟรีเซียนซัทเธอร์แลนด์","su":"ซุนดา","suk":"ซูคูมา","sus":"ซูซู","sux":"ซูเมอ","sv":"สวีเดน","sw":"สวาฮีลี","swb":"โคเมอเรียน","swc":"สวาฮีลี-คองโก","syc":"ซีเรียแบบดั้งเดิม","syr":"ซีเรีย","szl":"ไซลีเซีย","ta":"ทมิฬ","tcy":"ตูลู","te":"เตลูกู","tem":"ทิมเน","teo":"เตโซ","ter":"เทเรโน","tet":"เตตุม","tg":"ทาจิก","th":"ไทย","ti":"ติกริญญา","tig":"ตีเกร","tiv":"ทิฟ","tk":"เติร์กเมนิสถาน","tkl":"โตเกเลา","tkr":"แซคเซอร์","tl":"ตากาล็อก","tlh":"คลิงกอน","tli":"ทลิงกิต","tly":"ทาลิช","tmh":"ทามาเชก","tn":"บอตสวานา","to":"ตองกา","tog":"ไนอะซาตองกา","tpi":"ท็อกพิซิน","tr":"ตุรกี","tru":"ตูโรโย","trv":"ทาโรโก","ts":"ซิิตซองกา","tsd":"ซาโคเนีย","tsi":"ซิมชีแอน","tt":"ตาตาร์","ttt":"ตัตมุสลิม","tum":"ทุมบูกา","tvl":"ตูวาลู","tw":"ทวิ","twq":"ตัสซาวัค","ty":"ตาฮิตี","tyv":"ตูวา","tzm":"ทามาไซต์แอตลาสกลาง","udm":"อุดมูร์ต","ug":"อุยกัว","ug-alt-variant":"อุยกูร์","uga":"ยูการิต","uk":"ยูเครน","umb":"อุมบุนดู","und":"ภาษาที่ไม่รู้จัก","ur":"อูรดู","uz":"อุซเบก","vai":"ไว","ve":"เวนดา","vec":"เวเนโต้","vep":"เวปส์","vi":"เวียดนาม","vls":"เฟลมิชตะวันตก","vmf":"เมน-ฟรานโกเนีย","vo":"โวลาพึค","vot":"โวทิก","vro":"โวโร","vun":"วุนจู","wa":"วาโลนี","wae":"วัลเซอร์","wal":"วาลาโม","war":"วาเรย์","was":"วาโช","wo":"โวลอฟ","wuu":"จีนอู๋","xal":"คัลมืยค์","xh":"คะห์โอซา","xmf":"เมเกรเลีย","xog":"โซกา","yao":"เย้า","yap":"ยัป","yav":"แยงเบน","ybb":"เยมบา","yi":"ยิว","yo":"โยรูบา","yrl":"เหงงกาตุ","yue":"กวางตุ้ง","za":"จ้วง","zap":"ซาโปเตก","zbl":"บลิสซิมโบลส์","zea":"เซแลนด์","zen":"เซนากา","zgh":"ทามาไซต์โมร็อกโกมาตรฐาน","zh":"จีน","zh-Hans":"จีนตัวย่อ","zh-Hant":"จีนตัวเต็ม","zu":"ซูลู","zun":"ซูนิ","zxx":"ไม่มีข้อมูลภาษา","zza":"ซาซา"} \ No newline at end of file diff --git a/Punic/data/th/listPatterns.json b/Punic/data/th/listPatterns.json new file mode 100644 index 0000000..461bf89 --- /dev/null +++ b/Punic/data/th/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s และ%2$s","2":"%1$sและ%2$s"},"unit":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s และ %2$s","2":"%1$s และ %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s และ %2$s","2":"%1$s %2$s"}} \ No newline at end of file diff --git a/Punic/data/th/localeDisplayNames.json b/Punic/data/th/localeDisplayNames.json new file mode 100644 index 0000000..7e7824a --- /dev/null +++ b/Punic/data/th/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"ปฏิทิน","colAlternate":"ละเว้นการจัดเรียงสัญลักษณ์","colBackwards":"การจัดเรียงเสียงหนักเบาในลำดับถอยหลัง","colCaseFirst":"การเรียงลำดับตัวพิมพ์ใหญ่/ตัวพิมพ์เล็ก","colCaseLevel":"การจัดเรียงตามความสำคัญของตัวพิมพ์อักษร","colHiraganaQuaternary":"การจัดเรียงตัวอักษรคะนะ","colNormalization":"การจัดเรียงแบบที่เป็นปกติ","colNumeric":"การจัดเรียงตัวเลข","colStrength":"ความแม่นยำในการจัดเรียง","collation":"ลำดับการจัดเรียง","currency":"สกุลเงิน","numbers":"ตัวเลข","timezone":"เขตเวลา","va":"ตัวแปรภาษาถิ่น","variableTop":"จัดเรียงเป็นสัญลักษณ์","x":"ใช้งานส่วนบุคคล"},"types":{"numbers":{"vaii":"ตัวเลขไว"},"collation":{"zhuyin":"จัดเรียงตามการสะกดแบบจู้อิน"},"calendar":{"roc":"ปฏิทินไต้หวัน"},"colStrength":{"tertiary":"จัดเรียงเสียงหนักเบา/ตัวพิมพ์/ความกว้าง"},"colCaseFirst":{"upper":"จัดเรียงตัวพิมพ์ใหญ่ก่อน"},"colBackwards":{"yes":"จัดเรียงเสียงหนักเบาในลำดับถอยหลัง"},"colCaseLevel":{"yes":"จัดเรียงความสำคัญของตัวพิมพ์"},"colHiraganaQuaternary":{"yes":"จัดเรียงตัวอักษรคะนะในแบบอื่น"},"colNormalization":{"yes":"จัดเรียงยูนิโค้ดแบบที่เป็นปกติ"},"colNumeric":{"yes":"จัดเรัยงตัวเลขตามลำดับตัวเลข"},"colAlternate":{"shifted":"จัดเรียงสัญลักษณ์ที่ละไว้"}},"codePatterns":{"language":"ภาษา: %1$s","script":"สคริปต์: %1$s","territory":"ภูมิภาค: %1$s"}} \ No newline at end of file diff --git a/Punic/data/th/numbers.json b/Punic/data/th/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/th/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/th/territories.json b/Punic/data/th/territories.json new file mode 100644 index 0000000..6f49c6d --- /dev/null +++ b/Punic/data/th/territories.json @@ -0,0 +1 @@ +{"001":"โลก","002":"แอฟริกา","003":"อเมริกาเหนือ","005":"อเมริกาใต้","009":"โอเชียเนีย","011":"แอฟริกาตะวันตก","013":"อเมริกากลาง","014":"แอฟริกาตะวันออก","015":"แอฟริกาเหนือ","017":"แอฟริกากลาง","018":"แอฟริกาตอนใต้","019":"อเมริกา","021":"อเมริกาตอนเหนือ","029":"แคริบเบียน","030":"เอเชียตะวันออก","034":"เอเชียใต้","035":"เอเชียตะวันออกเฉียงใต้","039":"ยุโรปใต้","053":"ออสตราเลเซีย","054":"เมลานีเซีย","057":"เขตไมโครนีเซีย","061":"โปลินีเซีย","142":"เอเชีย","143":"เอเชียกลาง","145":"เอเชียตะวันตก","150":"ยุโรป","151":"ยุโรปตะวันออก","154":"ยุโรปเหนือ","155":"ยุโรปตะวันตก","419":"ละตินอเมริกา","AC":"เกาะแอสเซนชัน","AD":"อันดอร์รา","AE":"สหรัฐอาหรับเอมิเรตส์","AF":"อัฟกานิสถาน","AG":"แอนติกาและบาร์บูดา","AI":"แองกวิลลา","AL":"แอลเบเนีย","AM":"อาร์เมเนีย","AN":"เนเธอร์แลนด์แอนทิลลิส","AO":"แองโกลา","AQ":"แอนตาร์กติกา","AR":"อาร์เจนตินา","AS":"อเมริกันซามัว","AT":"ออสเตรีย","AU":"ออสเตรเลีย","AW":"อารูบา","AX":"หมู่เกาะโอลันด์","AZ":"อาเซอร์ไบจาน","BA":"บอสเนียและเฮอร์เซโกวีนา","BB":"บาร์เบโดส","BD":"บังกลาเทศ","BE":"เบลเยียม","BF":"บูร์กินาฟาโซ","BG":"บัลแกเรีย","BH":"บาห์เรน","BI":"บุรุนดี","BJ":"เบนิน","BL":"เซนต์บาร์เธเลมี","BM":"เบอร์มิวดา","BN":"บรูไน","BO":"โบลิเวีย","BQ":"เนเธอร์แลนด์แคริบเบียน","BR":"บราซิล","BS":"บาฮามาส","BT":"ภูฏาน","BV":"เกาะบูเวต","BW":"บอตสวานา","BY":"เบลารุส","BZ":"เบลีซ","CA":"แคนาดา","CC":"หมู่เกาะโคโคส (คีลิง)","CD":"คองโก-กินชาซา","CD-alt-variant":"คองโก (สาธารณรัฐประชาธิปไตย)","CF":"สาธารณรัฐแอฟริกากลาง","CG":"คองโก-บราซซาวิล","CG-alt-variant":"คองโก (สาธารณรัฐ)","CH":"สวิตเซอร์แลนด์","CI":"ไอวอรี่โคสต์","CI-alt-variant":"CI","CK":"หมู่เกาะคุก","CL":"ชิลี","CM":"แคเมอรูน","CN":"จีน","CO":"โคลอมเบีย","CP":"เกาะคลิปเปอร์ตัน","CR":"คอสตาริกา","CU":"คิวบา","CV":"เคปเวิร์ด","CW":"คูราเซา","CX":"เกาะคริสต์มาส","CY":"ไซปรัส","CZ":"สาธารณรัฐเช็ก","DE":"เยอรมนี","DG":"ดิเอโกการ์เซีย","DJ":"จิบูตี","DK":"เดนมาร์ก","DM":"โดมินิกา","DO":"สาธารณรัฐโดมินิกัน","DZ":"แอลจีเรีย","EA":"ซีโอตาและเมลิลลา","EC":"เอกวาดอร์","EE":"เอสโตเนีย","EG":"อียิปต์","EH":"ซาฮาราตะวันตก","ER":"เอริเทรีย","ES":"สเปน","ET":"เอธิโอเปีย","EU":"สหภาพยุโรป","FI":"ฟินแลนด์","FJ":"ฟิจิ","FK":"หมู่เกาะฟอล์กแลนด์","FK-alt-variant":"หมู่เกาะฟอล์กแลนด์ (อิสลาส มาลวินาส)","FM":"ไมโครนีเซีย","FO":"หมู่เกาะแฟโร","FR":"ฝรั่งเศส","GA":"กาบอง","GB":"สหราชอาณาจักร","GB-alt-short":"อังกฤษ","GD":"เกรเนดา","GE":"จอร์เจีย","GF":"เฟรนช์เกียนา","GG":"เกิร์นซีย์","GH":"กานา","GI":"ยิบรอลตาร์","GL":"กรีนแลนด์","GM":"แกมเบีย","GN":"กินี","GP":"กวาเดอลูป","GQ":"อิเควทอเรียลกินี","GR":"กรีซ","GS":"เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช","GT":"กัวเตมาลา","GU":"กวม","GW":"กินี-บิสเซา","GY":"กายอานา","HK":"เขตปกครองพิเศษฮ่องกงแห่งสาธารณรัฐประชาชนจีน","HK-alt-short":"ฮ่องกง","HM":"เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์","HN":"ฮอนดูรัส","HR":"โครเอเชีย","HT":"เฮติ","HU":"ฮังการี","IC":"หมู่เกาะคานารี","ID":"อินโดนีเซีย","IE":"ไอร์แลนด์","IL":"อิสราเอล","IM":"เกาะแมน","IN":"อินเดีย","IO":"บริติชอินเดียนโอเชียนเทร์ริทอรี","IQ":"อิรัก","IR":"อิหร่าน","IS":"ไอซ์แลนด์","IT":"อิตาลี","JE":"เจอร์ซีย์","JM":"จาเมกา","JO":"จอร์แดน","JP":"ญี่ปุ่น","KE":"เคนยา","KG":"คีร์กีซสถาน","KH":"กัมพูชา","KI":"คิริบาส","KM":"คอโมโรส","KN":"เซนต์คิตส์และเนวิส","KP":"เกาหลีเหนือ","KR":"เกาหลีใต้","KW":"คูเวต","KY":"หมู่เกาะเคย์แมน","KZ":"คาซัคสถาน","LA":"ลาว","LB":"เลบานอน","LC":"เซนต์ลูเซีย","LI":"ลิกเตนสไตน์","LK":"ศรีลังกา","LR":"ไลบีเรีย","LS":"เลโซโท","LT":"ลิทัวเนีย","LU":"ลักเซมเบิร์ก","LV":"ลัตเวีย","LY":"ลิเบีย","MA":"โมร็อกโก","MC":"โมนาโก","MD":"มอลโดวา","ME":"มอนเตเนโกร","MF":"เซนต์มาติน","MG":"มาดากัสการ์","MH":"หมู่เกาะมาร์แชลล์","MK":"มาซิโดเนีย","MK-alt-variant":"มาซิโดเนีย (FYROM)","ML":"มาลี","MM":"เมียนม่าร์ (พม่า)","MN":"มองโกเลีย","MO":"เขตปกครองพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน","MO-alt-short":"มาเก๊า","MP":"หมู่เกาะนอร์เทิร์นมาเรียนา","MQ":"มาร์ตินีก","MR":"มอริเตเนีย","MS":"มอนต์เซอร์รัต","MT":"มอลตา","MU":"มอริเชียส","MV":"มัลดีฟส์","MW":"มาลาวี","MX":"เม็กซิโก","MY":"มาเลเซีย","MZ":"โมซัมบิก","NA":"นามิเบีย","NC":"นิวแคลิโดเนีย","NE":"ไนเจอร์","NF":"เกาะนอร์ฟอล์ก","NG":"ไนจีเรีย","NI":"นิการากัว","NL":"เนเธอร์แลนด์","NO":"นอร์เวย์","NP":"เนปาล","NR":"นาอูรู","NU":"นีอูเอ","NZ":"นิวซีแลนด์","OM":"โอมาน","PA":"ปานามา","PE":"เปรู","PF":"เฟรนช์โปลินีเซีย","PG":"ปาปัวนิวกินี","PH":"ฟิลิปปินส์","PK":"ปากีสถาน","PL":"โปแลนด์","PM":"แซงปีแยร์และมีเกอลง","PN":"หมู่เกาะพิตแคร์น","PR":"เปอร์โตริโก","PS":"ดินแดนปาเลสไตน์","PS-alt-short":"ปาเลสไตน์","PT":"โปรตุเกส","PW":"ปาเลา","PY":"ปารากวัย","QA":"กาตาร์","QO":"เอาต์ไลอิงโอเชียเนีย","RE":"เรอูนียง","RO":"โรมาเนีย","RS":"เซอร์เบีย","RU":"รัสเซีย","RW":"รวันดา","SA":"ซาอุดีอาระเบีย","SB":"หมู่เกาะโซโลมอน","SC":"เซเชลส์","SD":"ซูดาน","SE":"สวีเดน","SG":"สิงคโปร์","SH":"เซนต์เฮเลนา","SI":"สโลวีเนีย","SJ":"สฟาลบาร์และยานไมเอน","SK":"สโลวะเกีย","SL":"เซียร์ราลีโอน","SM":"ซานมารีโน","SN":"เซเนกัล","SO":"โซมาเลีย","SR":"ซูรินาเม","SS":"ซูดานใต้","ST":"เซาตูเมและปรินซิปี","SV":"เอลซัลวาดอร์","SX":"เซนต์มาร์ติน","SY":"ซีเรีย","SZ":"สวาซิแลนด์","TA":"ทริสตัน เดอ คูนา","TC":"หมู่เกาะเติกส์และหมู่เกาะเคคอส","TD":"ชาด","TF":"เฟรนช์เซาเทิร์นเทร์ริทอรีส์","TG":"โตโก","TH":"ไทย","TJ":"ทาจิกิสถาน","TK":"โตเกเลา","TL":"ติมอร์-เลสเต","TL-alt-variant":"ติมอร์ตะวันออก","TM":"เติร์กเมนิสถาน","TN":"ตูนิเซีย","TO":"ตองกา","TR":"ตุรกี","TT":"ตรินิแดดและโตเบโก","TV":"ตูวาลู","TW":"ไต้หวัน","TZ":"แทนซาเนีย","UA":"ยูเครน","UG":"ยูกันดา","UM":"หมู่เกาะรอบนอกของสหรัฐอเมริกา","US":"สหรัฐอเมริกา","US-alt-short":"สหรัฐฯ","UY":"อุรุกวัย","UZ":"อุซเบกิสถาน","VA":"นครวาติกัน","VC":"เซนต์วินเซนต์และเกรนาดีนส์","VE":"เวเนซุเอลา","VG":"หมู่เกาะบริติชเวอร์จิน","VI":"หมู่เกาะยูเอสเวอร์จิน","VN":"เวียดนาม","VU":"วานูอาตู","WF":"วาลลิสและฟุตูนา","WS":"ซามัว","XK":"โคโซโว","YE":"เยเมน","YT":"มายอต","ZA":"แอฟริกาใต้","ZM":"แซมเบีย","ZW":"ซิมบับเว","ZZ":"ภูมิภาคที่ไม่รู้จัก"} \ No newline at end of file diff --git a/Punic/data/th/timeZoneNames.json b/Punic/data/th/timeZoneNames.json new file mode 100644 index 0000000..779d314 --- /dev/null +++ b/Punic/data/th/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"เวลา%1$s","regionFormat-type-standard":"เวลามาตรฐาน%1$s","regionFormat-type-daylight":"เวลาออมแสง%1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"เอดัก"},"Anchorage":{"exemplarCity":"แองเคอเรจ"},"Anguilla":{"exemplarCity":"แองกิลลา"},"Antigua":{"exemplarCity":"แอนติกา"},"Araguaina":{"exemplarCity":"อารากัวนา"},"Argentina":{"La_Rioja":{"exemplarCity":"ลาริโอจา"},"Rio_Gallegos":{"exemplarCity":"ริโอกาลเลกอส"},"Salta":{"exemplarCity":"ซัลตา"},"San_Juan":{"exemplarCity":"ซานฮวน"},"San_Luis":{"exemplarCity":"ซันลูอิส"},"Tucuman":{"exemplarCity":"ทูคูแมน"},"Ushuaia":{"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":"เอลซัลวาดอร์"},"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":{"Knox":{"exemplarCity":"นอกซ์, อินดีแอนา"},"Marengo":{"exemplarCity":"มาเรงโก, อินดีแอนา"},"Petersburg":{"exemplarCity":"ปีเตอร์สเบิร์ก, อินดีแอนา"},"Tell_City":{"exemplarCity":"เทลล์ซิตี, อินดีแอนา"},"Vevay":{"exemplarCity":"วีเวย์, อินดีแอนา"},"Vincennes":{"exemplarCity":"วินเซนเนส, อินดีแอนา"},"Winamac":{"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":"โบลาห์, นอร์ทดาโคตา"},"Center":{"exemplarCity":"เซนเตอร์, นอร์ทดาโคตา"},"New_Salem":{"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":"อันดอร์รา"},"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":"เคียฟ"},"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":"ติรานา"},"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":"กรุงเทพ"},"Beirut":{"exemplarCity":"เบรุต"},"Bishkek":{"exemplarCity":"บิชเคก"},"Brunei":{"exemplarCity":"บรูไน"},"Calcutta":{"exemplarCity":"โกลกาตา"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"ชอยบาลซาน"},"Chongqing":{"exemplarCity":"ฉงชิ่ง"},"Colombo":{"exemplarCity":"โคลัมโบ"},"Damascus":{"exemplarCity":"ดามัสกัส"},"Dhaka":{"exemplarCity":"ดากา"},"Dili":{"exemplarCity":"ดิลี"},"Dubai":{"exemplarCity":"ดูไบ"},"Dushanbe":{"exemplarCity":"ดูชานเบ"},"Gaza":{"exemplarCity":"กาซา"},"Harbin":{"exemplarCity":"ฮาร์บิน"},"Hebron":{"exemplarCity":"เฮบรอน"},"Hong_Kong":{"exemplarCity":"ฮ่องกง"},"Hovd":{"exemplarCity":"ฮอฟด์"},"Irkutsk":{"exemplarCity":"อีร์คุตสค์"},"Jakarta":{"exemplarCity":"จาการ์ตา"},"Jayapura":{"exemplarCity":"จายาปุระ"},"Jerusalem":{"exemplarCity":"เยรูซาเลม"},"Kabul":{"exemplarCity":"คาบูล"},"Kamchatka":{"exemplarCity":"คามชัตกา"},"Karachi":{"exemplarCity":"การาจี"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"ไทเป"},"Tashkent":{"exemplarCity":"ทาชเคนต์"},"Tbilisi":{"exemplarCity":"ทบิลิซิ"},"Tehran":{"exemplarCity":"เตหะราน"},"Thimphu":{"exemplarCity":"ทิมพู"},"Tokyo":{"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":"โอคแลนด์"},"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":{"Acre":{"long":{"generic":"เวลาอาเกร","standard":"เวลามาตรฐานอาเกร","daylight":"เวลาฤดูร้อนอาเกร"}},"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":"เวลาออมแสงของอะแลสกา"}},"Almaty":{"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":"เวลาออมแสงอาปีอา"}},"Aqtau":{"long":{"generic":"เวลาอัคตาอู","standard":"เวลามาตรฐานอัคตาอู","daylight":"เวลาฤดูร้อนอัคตาอู"}},"Aqtobe":{"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":"เวลาฤดูร้อนเคปเวิร์ด"}},"Casey":{"long":{"standard":"เวลาเคซีย์"}},"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":"เวลาเฟรนช์เซาเทิร์นและแอนตาร์กติก"}},"GMT":{"long":{"standard":"เวลามาตรฐานกรีนิช"}},"Galapagos":{"long":{"standard":"เวลากาลาปาโกส"}},"Gambier":{"long":{"standard":"เวลาแกมเบียร์"}},"Georgia":{"long":{"generic":"เวลาจอร์เจีย","standard":"เวลามาตรฐานจอร์เจีย","daylight":"เวลาฤดูร้อนจอร์เจีย"}},"Gilbert_Islands":{"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":"เวลาคีร์กีซสถาน"}},"Lanka":{"long":{"standard":"เวลาลังกา"}},"Line_Islands":{"long":{"standard":"เวลาหมู่เกาะไลน์"}},"Lord_Howe":{"long":{"generic":"เวลาลอร์ดโฮว","standard":"เวลามาตรฐานลอร์ดโฮว์","daylight":"เวลาออมแสงของลอร์ดโฮว์"}},"Macau":{"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":"เวลาโปเนป"}},"Qyzylorda":{"long":{"generic":"เวลาคืยซิลออร์ดา","standard":"เวลามาตรฐานคืยซิลออร์ดา","daylight":"เวลาฤดูร้อนคืยซิลออร์ดา"}},"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":"เวลาฤดูร้อนเยคาเตรินบูร์ก"}}}} \ No newline at end of file diff --git a/Punic/data/th/units.json b/Punic/data/th/units.json new file mode 100644 index 0000000..61d17e3 --- /dev/null +++ b/Punic/data/th/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$sต่อ%2$s","acceleration":{"g-force":{"_name":"แรง G","other":"%1$s แรง G"},"meter-per-second-squared":{"_name":"เมตรต่อวินาทีกำลังสอง","other":"%1$s เมตรต่อวินาทีกำลังสอง"}},"angle":{"arc-minute":{"_name":"ลิปดา","other":"%1$s ลิปดา"},"arc-second":{"_name":"พิลิปดา","other":"%1$s พิลิปดา"},"degree":{"_name":"องศา","other":"%1$s องศา"},"radian":{"_name":"เรเดียน","other":"%1$s เรเดียน"}},"area":{"acre":{"_name":"เอเคอร์","other":"%1$s เอเคอร์"},"hectare":{"_name":"เฮกตาร์","other":"%1$s เฮกตาร์"},"square-centimeter":{"_name":"ตารางเซนติเมตร","other":"%1$s ตารางเซนติเมตร"},"square-foot":{"_name":"ตารางฟุต","other":"%1$s ตารางฟุต"},"square-inch":{"_name":"ตารางนิ้ว","other":"%1$s ตร.นิ้ว"},"square-kilometer":{"_name":"ตารางกิโลเมตร","other":"%1$s ตารางกิโลเมตร"},"square-meter":{"_name":"ตารางเมตร","other":"%1$s ตารางเมตร"},"square-mile":{"_name":"ตารางไมล์","other":"%1$s ตารางไมล์"},"square-yard":{"_name":"ตารางวา","other":"%1$s ตารางวา"}},"consumption":{"liter-per-kilometer":{"_name":"ลิตรต่อกิโลเมตร","other":"%1$s ลิตรต่อกิโลเมตร"},"mile-per-gallon":{"_name":"ไมล์ต่อแกลลอน","other":"%1$s ไมล์ต่อแกลลอน"}},"digital":{"bit":{"_name":"บิต","other":"%1$s บิต"},"byte":{"_name":"ไบต์","other":"%1$s ไบต์"},"gigabit":{"_name":"กิกะบิต","other":"%1$s กิกะบิต"},"gigabyte":{"_name":"กิกะไบต์","other":"%1$s กิกะไบต์"},"kilobit":{"_name":"กิโลบิต","other":"%1$s กิโลบิต"},"kilobyte":{"_name":"กิโลไบต์","other":"%1$s กิโลไบต์"},"megabit":{"_name":"เมกะบิต","other":"%1$s เมกะบิต"},"megabyte":{"_name":"เมกะไบต์","other":"%1$s เมกะไบต์"},"terabit":{"_name":"เทราบิต","other":"%1$s เทราบิต"},"terabyte":{"_name":"เทราไบต์","other":"%1$s เทราไบต์"}},"duration":{"day":{"_name":"วัน","other":"%1$s วัน"},"hour":{"_name":"ชั่วโมง","other":"%1$s ชั่วโมง","_per":"%1$s ต่อชั่วโมง"},"microsecond":{"_name":"ไมโครวินาที","other":"%1$s ไมโครวินาที"},"millisecond":{"_name":"มิลลิวินาที","other":"%1$s มิลลิวินาที"},"minute":{"_name":"นาที","other":"%1$s นาที"},"month":{"_name":"เดือน","other":"%1$s เดือน"},"nanosecond":{"_name":"นาโนวินาที","other":"%1$s นาโนวินาที"},"second":{"_name":"วินาที","other":"%1$s วินาที","_per":"%1$s ต่อวินาที"},"week":{"_name":"สัปดาห์","other":"%1$s สัปดาห์"},"year":{"_name":"ปี","other":"%1$s ปี"}},"electric":{"ampere":{"_name":"แอมแปร์","other":"%1$s แอมแปร์"},"milliampere":{"_name":"มิลลิแอมแปร์","other":"%1$s มิลลิแอมแปร์"},"ohm":{"_name":"โอห์ม","other":"%1$s โอห์ม"},"volt":{"_name":"โวลต์","other":"%1$s โวลต์"}},"energy":{"calorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"foodcalorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"joule":{"_name":"จูล","other":"%1$s จูล"},"kilocalorie":{"_name":"กิโลแคลอรี่","other":"%1$s กิโลแคลอรี่"},"kilojoule":{"_name":"กิโลจูล","other":"%1$s กิโลจูล"},"kilowatt-hour":{"_name":"กิโลวัตต์-ชั่วโมง","other":"%1$s กิโลวัตต์-ชั่วโมง"}},"frequency":{"gigahertz":{"_name":"กิกะเฮิรตซ์","other":"%1$s กิกะเฮิรตซ์"},"hertz":{"_name":"เฮิรตซ์","other":"%1$s เฮิรตซ์"},"kilohertz":{"_name":"กิโลเฮิรตซ์","other":"%1$s กิโลเฮิรตซ์"},"megahertz":{"_name":"เมกะเฮิรตซ์","other":"%1$s เมกะเฮิรตซ์"}},"length":{"astronomical-unit":{"_name":"หน่วยดาราศาสตร์","other":"%1$s หน่วยดาราศาสตร์"},"centimeter":{"_name":"เซนติเมตร","other":"%1$s เซนติเมตร"},"decimeter":{"_name":"เดซิเมตร","other":"%1$s เดซิเมตร"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ฟุต","other":"%1$s ฟุต"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"นิ้ว","other":"%1$s นิ้ว"},"kilometer":{"_name":"กิโลเมตร","other":"%1$s กิโลเมตร"},"light-year":{"_name":"ปีแสง","other":"%1$s ปีแสง"},"meter":{"_name":"เมตร","other":"%1$s เมตร"},"micrometer":{"_name":"ไมโครเมตร","other":"%1$s ไมโครเมตร"},"mile":{"_name":"ไมล์","other":"%1$s ไมล์"},"millimeter":{"_name":"มิลลิเมตร","other":"%1$s มิลลิเมตร"},"nanometer":{"_name":"นาโนเมตร","other":"%1$s นาโนเมตร"},"nautical-mile":{"_name":"ไมล์ทะเล","other":"%1$s ไมล์ทะเล"},"parsec":{"_name":"พาร์เซก","other":"%1$s พาร์เซก"},"picometer":{"_name":"พิโกเมตร","other":"%1$s พิโกเมตร"},"yard":{"_name":"หลา","other":"%1$s หลา"}},"light":{"lux":{"_name":"ลักซ์","other":"%1$s ลักซ์"}},"mass":{"carat":{"_name":"กะรัต","other":"%1$s กะรัต"},"gram":{"_name":"กรัม","other":"%1$s กรัม"},"kilogram":{"_name":"กิโลกรัม","other":"%1$s กิโลกรัม"},"metric-ton":{"_name":"เมตริกตัน","other":"%1$s เมตริกตัน"},"microgram":{"_name":"ไมโครกรัม","other":"%1$s ไมโครกรัม"},"milligram":{"_name":"มิลลิกรัม","other":"%1$s มิลลิกรัม"},"ounce":{"_name":"ออนซ์","other":"%1$s ออนซ์"},"ounce-troy":{"_name":"ทรอยออนซ์","other":"%1$s ทรอยออนซ์"},"pound":{"_name":"ปอนด์","other":"%1$s ปอนด์"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"ตัน","other":"%1$s ตัน"}},"power":{"gigawatt":{"_name":"กิกะวัตต์","other":"%1$s กิกะวัตต์"},"horsepower":{"_name":"แรงม้า","other":"%1$s แรงม้า"},"kilowatt":{"_name":"กิโลวัตต์","other":"%1$s กิโลวัตต์"},"megawatt":{"_name":"เมกะวัตต์","other":"%1$s เมกะวัตต์"},"milliwatt":{"_name":"มิลลิวัตต์","other":"%1$s มิลลิวัตต์"},"watt":{"_name":"วัตต์","other":"%1$s วัตต์"}},"pressure":{"hectopascal":{"_name":"เฮกโตปาสกาล","other":"%1$s เฮกโตปาสกาล"},"inch-hg":{"_name":"นิ้วปรอท","other":"%1$s นิ้วปรอท"},"millibar":{"_name":"มิลลิบาร์","other":"%1$s มิลลิบาร์"},"millimeter-of-mercury":{"_name":"มิลลิเมตรปรอท","other":"%1$s มิลลิเมตรปรอท"},"pound-per-square-inch":{"_name":"ปอนด์ต่อตารางนิ้ว","other":"%1$s ปอนด์ต่อตารางนิ้ว"}},"proportion":{"karat":{"_name":"กะรัต","other":"%1$s กะรัต"}},"speed":{"kilometer-per-hour":{"_name":"กิโลเมตรต่อชั่วโมง","other":"%1$s กิโลเมตรต่อชั่วโมง"},"meter-per-second":{"_name":"เมตรต่อวินาที","other":"%1$s เมตรต่อวินาที"},"mile-per-hour":{"_name":"ไมล์ต่อชั่วโมง","other":"%1$s ไมล์ต่อชั่วโมง"}},"temperature":{"celsius":{"_name":"องศาเซลเซียส","other":"%1$s องศาเซลเซียส"},"fahrenheit":{"_name":"องศาฟาเรนไฮต์","other":"%1$s องศาฟาเรนไฮต์"},"kelvin":{"_name":"เคลวิน","other":"%1$s เคลวิน"}},"volume":{"acre-foot":{"_name":"เอเคอร์-ฟุต","other":"%1$s เอเคอร์-ฟุต"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"เซนติลิตร","other":"%1$s เซนติลิตร"},"cubic-centimeter":{"_name":"ลูกบาศก์เซนติเมตร","other":"%1$s ลูกบาศก์เซนติเมตร"},"cubic-foot":{"_name":"ลูกบาศก์ฟุต","other":"%1$s ลูกบาศก์ฟุต"},"cubic-inch":{"_name":"ลูกบาศก์นิ้ว","other":"%1$s ลูกบาศก์นิ้ว"},"cubic-kilometer":{"_name":"ลูกบาศก์กิโลเมตร","other":"%1$s ลูกบาศก์กิโลเมตร"},"cubic-meter":{"_name":"ลูกบาศก์เมตร","other":"%1$s ลูกบาศก์เมตร"},"cubic-mile":{"_name":"ลูกบาศก์ไมล์","other":"%1$s ลูกบาศก์ไมล์"},"cubic-yard":{"_name":"ลูกบาศก์หลา","other":"%1$s ลูกบาศก์หลา"},"cup":{"_name":"ถ้วย","other":"%1$s ถ้วย"},"deciliter":{"_name":"เดซิลิตร","other":"%1$s เดซิลิตร"},"fluid-ounce":{"_name":"ฟลูอิดออนซ์","other":"%1$s ฟลูอิดออนซ์"},"gallon":{"_name":"แกลลอน","other":"%1$s แกลลอน"},"hectoliter":{"_name":"เฮกโตลิตร","other":"%1$s เฮกโตลิตร"},"liter":{"_name":"ลิตร","other":"%1$s ลิตร"},"megaliter":{"_name":"เมกกะลิตร","other":"%1$s เมกกะลิตร"},"milliliter":{"_name":"มิลลิลิตร","other":"%1$s มิลลิลิตร"},"pint":{"_name":"ไพนต","other":"%1$s ไพนต"},"quart":{"_name":"ควอร์ต","other":"%1$s ควอร์ต"},"tablespoon":{"_name":"ช้อนโต๊ะ","other":"%1$s ช้อนโต๊ะ"},"teaspoon":{"_name":"ช้อนชา","other":"%1$s ช้อนชา"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"แรง G","other":"%1$s G"},"meter-per-second-squared":{"_name":"เมตร/วินาที²","other":"%1$s ม./วินาที²"}},"angle":{"arc-minute":{"_name":"ลิปดา","other":"%1$s ลิปดา"},"arc-second":{"_name":"พิลิปดา","other":"%1$s พิลิปดา"},"degree":{"_name":"องศา","other":"%1$s°"},"radian":{"_name":"เรเดียน","other":"%1$s เรเดียน"}},"area":{"acre":{"_name":"เอเคอร์","other":"%1$s เอเคอร์"},"hectare":{"_name":"เฮกตาร์","other":"%1$s เฮกตาร์"},"square-centimeter":{"_name":"ตร.ซม.","other":"%1$s ตร.ซม."},"square-foot":{"_name":"ตร.ฟุต","other":"%1$s ตร.ฟุต"},"square-inch":{"_name":"ตร.นิ้ว","other":"%1$s ตร.นิ้ว"},"square-kilometer":{"_name":"ตร.กม.","other":"%1$s ตร.กม."},"square-meter":{"_name":"ตร.ม.","other":"%1$s ตร.ม."},"square-mile":{"_name":"ตร.ไมล์","other":"%1$s ตร.ไมล์"},"square-yard":{"_name":"ตร.ว.","other":"%1$s ตร.ว."}},"consumption":{"liter-per-kilometer":{"_name":"ลิตร/กม.","other":"%1$s ล./กม."},"mile-per-gallon":{"_name":"ไมล์/แกลลอน","other":"%1$s ไมล์/แกลลอน"}},"digital":{"bit":{"_name":"บิต","other":"%1$s บิต"},"byte":{"_name":"ไบต์","other":"%1$s ไบต์"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"วัน","other":"%1$s วัน"},"hour":{"_name":"ชั่วโมง","other":"%1$s ชม.","_per":"%1$s/ชม."},"microsecond":{"_name":"ไมโครวินาที","other":"%1$s ไมโครวิ"},"millisecond":{"_name":"มิลลิวินาที","other":"%1$s มิลลิวินาที"},"minute":{"_name":"นาที","other":"%1$s นาที"},"month":{"_name":"เดือน","other":"%1$s เดือน"},"nanosecond":{"_name":"นาโนวินาที","other":"%1$s นาโนวิ"},"second":{"_name":"วินาที","other":"%1$s วิ","_per":"%1$s/วิ"},"week":{"_name":"สัปดาห์","other":"%1$s สัปดาห์"},"year":{"_name":"ปี","other":"%1$s ปี"}},"electric":{"ampere":{"_name":"แอมป์","other":"%1$s แอมป์"},"milliampere":{"_name":"มิลลิแอมป์","other":"%1$s มิลลิแอมป์"},"ohm":{"_name":"โอห์ม","other":"%1$s Ω"},"volt":{"_name":"โวลต์","other":"%1$s V"}},"energy":{"calorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"foodcalorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"joule":{"_name":"จูล","other":"%1$s จูล"},"kilocalorie":{"_name":"กิโลแคลอรี่","other":"%1$s กิโลแคลอรี่"},"kilojoule":{"_name":"กิโลจูล","other":"%1$s กิโลจูล"},"kilowatt-hour":{"_name":"กว.-ชม.","other":"%1$s กว.-ชม."}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"หน่วยดาราศาสตร์","other":"%1$s หน่วยดาราศาสตร์"},"centimeter":{"_name":"ซม.","other":"%1$s ซม."},"decimeter":{"_name":"ดม.","other":"%1$s ดม."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ฟุต","other":"%1$s ฟุต"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"นิ้ว","other":"%1$s นิ้ว"},"kilometer":{"_name":"กม.","other":"%1$s กม."},"light-year":{"_name":"ปีแสง","other":"%1$s ปีแสง"},"meter":{"_name":"เมตร","other":"%1$s ม."},"micrometer":{"_name":"ไมโครเมตร","other":"%1$s ไมโครเมตร"},"mile":{"_name":"ไมล์","other":"%1$s ไมล์"},"millimeter":{"_name":"มม.","other":"%1$s มม."},"nanometer":{"_name":"น.ม.","other":"%1$s น.ม."},"nautical-mile":{"_name":"ไมล์ทะเล","other":"%1$s ไมล์ทะเล"},"parsec":{"_name":"พาร์เซก","other":"%1$s พาร์เซก"},"picometer":{"_name":"พิโกเมตร","other":"%1$s พิโกเมตร"},"yard":{"_name":"หลา","other":"%1$s หลา"}},"light":{"lux":{"_name":"ลักซ์","other":"%1$s ลักซ์"}},"mass":{"carat":{"_name":"กะรัต","other":"%1$s กะรัต"},"gram":{"_name":"กรัม","other":"%1$s ก."},"kilogram":{"_name":"กก.","other":"%1$s กก."},"metric-ton":{"_name":"ต.","other":"%1$s ต."},"microgram":{"_name":"มคก.","other":"%1$s มคก."},"milligram":{"_name":"มก.","other":"%1$s มก."},"ounce":{"_name":"ออนซ์","other":"%1$s ออนซ์"},"ounce-troy":{"_name":"ทรอยออนซ์","other":"%1$s ทรอยออนซ์"},"pound":{"_name":"ปอนด์","other":"%1$s ปอนด์"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"ตัน","other":"%1$s ตัน"}},"power":{"gigawatt":{"_name":"กิกะวัตต์","other":"%1$s กิกะวัตต์"},"horsepower":{"_name":"แรงม้า","other":"%1$s แรงม้า"},"kilowatt":{"_name":"กิโลวัตต์","other":"%1$s กิโลวัตต์"},"megawatt":{"_name":"เมกะวัตต์","other":"%1$s เมกะวัตต์"},"milliwatt":{"_name":"มิลลิวัตต์","other":"%1$s มิลลิวัตต์"},"watt":{"_name":"วัตต์","other":"%1$s วัตต์"}},"pressure":{"hectopascal":{"_name":"เฮกโตปาสกาล","other":"%1$s เฮกโตปาสกาล"},"inch-hg":{"_name":"นิ้วปรอท","other":"%1$s นิ้วปรอท"},"millibar":{"_name":"มิลลิบาร์","other":"%1$s มิลลิบาร์"},"millimeter-of-mercury":{"_name":"มม. ปรอท","other":"%1$s มม. ปรอท"},"pound-per-square-inch":{"_name":"ปอนด์/ตร.นิ้ว","other":"%1$s ปอนด์/ตร.นิ้ว"}},"proportion":{"karat":{"_name":"กะรัต","other":"%1$s กะรัต"}},"speed":{"kilometer-per-hour":{"_name":"กม./ชั่วโมง","other":"%1$s กม./ชม."},"meter-per-second":{"_name":"เมตรต่อวินาที","other":"%1$s ม./วิ"},"mile-per-hour":{"_name":"ไมล์/ชั่วโมง","other":"%1$s ไมล์/ชม."}},"temperature":{"celsius":{"_name":"องศาเซลเซียส","other":"%1$s°C"},"fahrenheit":{"_name":"องศาฟาเรนไฮต์","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"เอเคอร์-ฟุต","other":"%1$s เอเคอร์-ฟุต"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"ซล.","other":"%1$s ซล."},"cubic-centimeter":{"_name":"ลบ.ซม.","other":"%1$s ลบ.ซม."},"cubic-foot":{"_name":"ลบ.ฟุต","other":"%1$s ลบ.ฟุต"},"cubic-inch":{"_name":"ลบ.นิ้ว","other":"%1$s ลบ.นิ้ว"},"cubic-kilometer":{"_name":"ลบ.กม.","other":"%1$s ลบ.กม."},"cubic-meter":{"_name":"ลบ.ม.","other":"%1$s ลบ.ม."},"cubic-mile":{"_name":"ลบ.ไมล์","other":"%1$s ลบ.ไมล์"},"cubic-yard":{"_name":"ลบ.หลา","other":"%1$s ลบ.หลา"},"cup":{"_name":"ถ้วย","other":"%1$s ถ."},"deciliter":{"_name":"ดล.","other":"%1$s ดล."},"fluid-ounce":{"_name":"ฟลูอิดออนซ์","other":"%1$s ฟลูอิดออนซ์"},"gallon":{"_name":"แกลลอน","other":"%1$s แกลลอน"},"hectoliter":{"_name":"ฮล.","other":"%1$s ฮล."},"liter":{"_name":"ลิตร","other":"%1$s ล."},"megaliter":{"_name":"เมกกะลิตร","other":"%1$s เมกกะลิตร"},"milliliter":{"_name":"มล.","other":"%1$s มล."},"pint":{"_name":"ไพนต","other":"%1$s ไพนต"},"quart":{"_name":"คว.","other":"%1$s คว."},"tablespoon":{"_name":"ชต.","other":"%1$s ชต."},"teaspoon":{"_name":"ชช.","other":"%1$s ชช."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"แรง G","other":"%1$sG"},"meter-per-second-squared":{"_name":"เมตร/วินาที²","other":"%1$s ม./วินาที²"}},"angle":{"arc-minute":{"_name":"ลิปดา","other":"%1$sนาที"},"arc-second":{"_name":"พิลิปดา","other":"%1$sวิ"},"degree":{"_name":"องศา","other":"%1$s°"},"radian":{"_name":"เรเดียน","other":"%1$s เรเดียน"}},"area":{"acre":{"_name":"เอเคอร์","other":"%1$sเอเคอร์"},"hectare":{"_name":"เฮกตาร์","other":"%1$sเฮกตาร์"},"square-centimeter":{"_name":"ตร.ซม.","other":"%1$s ตร.ซม."},"square-foot":{"_name":"ตร.ฟุต","other":"%1$sตร.ฟุต"},"square-inch":{"_name":"ตร.นิ้ว","other":"%1$s ตร.นิ้ว"},"square-kilometer":{"_name":"ตร.กม.","other":"%1$sตร.กม."},"square-meter":{"_name":"ตร.ม.","other":"%1$sตร.ม."},"square-mile":{"_name":"ตร.ไมล์","other":"%1$sตร.ไมล์"},"square-yard":{"_name":"ตร.ว.","other":"%1$s ตร.ว."}},"consumption":{"liter-per-kilometer":{"_name":"ลิตร/กม.","other":"%1$s ล./กม."},"mile-per-gallon":{"_name":"ไมล์/แกลลอน","other":"%1$s ไมล์/แกลลอน"}},"digital":{"bit":{"_name":"บิต","other":"%1$s บิต"},"byte":{"_name":"ไบต์","other":"%1$s ไบต์"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"วัน","other":"%1$sวัน"},"hour":{"_name":"ชั่วโมง","other":"%1$sชม.","_per":"%1$s/ชม."},"microsecond":{"_name":"ไมโครวินาที","other":"%1$s ไมโครวิ"},"millisecond":{"_name":"มิลลิวินาที","other":"%1$s มิลลิวิ"},"minute":{"_name":"นาที","other":"%1$sนาที"},"month":{"_name":"เดือน","other":"%1$sเดือน"},"nanosecond":{"_name":"นาโนวินาที","other":"%1$s นาโนวิ"},"second":{"_name":"วิ","other":"%1$sวิ","_per":"%1$s/วิ"},"week":{"_name":"สัปดาห์","other":"%1$sสัปดาห์"},"year":{"_name":"ปี","other":"%1$sปี"}},"electric":{"ampere":{"_name":"แอมป์","other":"%1$s แอมป์"},"milliampere":{"_name":"มิลลิแอมป์","other":"%1$s มิลลิแอมป์"},"ohm":{"_name":"โอห์ม","other":"%1$s Ω"},"volt":{"_name":"โวลต์","other":"%1$s V"}},"energy":{"calorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"foodcalorie":{"_name":"แคลอรี่","other":"%1$s แคลอรี่"},"joule":{"_name":"จูล","other":"%1$s จูล"},"kilocalorie":{"_name":"กิโลแคลอรี่","other":"%1$s กิโลแคลอรี่"},"kilojoule":{"_name":"กิโลจูล","other":"%1$s กิโลจูล"},"kilowatt-hour":{"_name":"กว.-ชม.","other":"%1$s กว.-ชม."}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"หน่วยดาราศาสตร์","other":"%1$s หน่วยดาราศาสตร์"},"centimeter":{"_name":"ซม.","other":"%1$sซม."},"decimeter":{"_name":"ดม.","other":"%1$s ดม."},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ฟุต","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"นิ้ว","other":"%1$s″"},"kilometer":{"_name":"กม.","other":"%1$sกม."},"light-year":{"_name":"ปีแสง","other":"%1$sปีแสง"},"meter":{"_name":"เมตร","other":"%1$sม."},"micrometer":{"_name":"ไมโครเมตร","other":"%1$s ไมโครเมตร"},"mile":{"_name":"ไมล์","other":"%1$sไมล์"},"millimeter":{"_name":"มม.","other":"%1$sมม."},"nanometer":{"_name":"น.ม.","other":"%1$s น.ม."},"nautical-mile":{"_name":"ไมล์ทะเล","other":"%1$s ไมล์ทะเล"},"parsec":{"_name":"พาร์เซก","other":"%1$s พาร์เซก"},"picometer":{"_name":"พิโกเมตร","other":"%1$sพิโกเมตร"},"yard":{"_name":"หลา","other":"%1$sหลา"}},"light":{"lux":{"_name":"ลักซ์","other":"%1$s ลักซ์"}},"mass":{"carat":{"_name":"กะรัต","other":"%1$s กะรัต"},"gram":{"_name":"กรัม","other":"%1$sก."},"kilogram":{"_name":"กก.","other":"%1$sกก."},"metric-ton":{"_name":"ต.","other":"%1$s ต."},"microgram":{"_name":"มคก.","other":"%1$s มคก."},"milligram":{"_name":"มก.","other":"%1$s มก."},"ounce":{"_name":"ออนซ์","other":"%1$sออนซ์"},"ounce-troy":{"_name":"ทรอยออนซ์","other":"%1$s ทรอยออนซ์"},"pound":{"_name":"ปอนด์","other":"%1$s#"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"ตัน","other":"%1$s ตัน"}},"power":{"gigawatt":{"_name":"กิกะวัตต์","other":"%1$s กิกะวัตต์"},"horsepower":{"_name":"แรงม้า","other":"%1$sแรงม้า"},"kilowatt":{"_name":"กิโลวัตต์","other":"%1$sกิโลวัตต์"},"megawatt":{"_name":"เมกะวัตต์","other":"%1$s เมกะวัตต์"},"milliwatt":{"_name":"มิลลิวัตต์","other":"%1$s มิลลิวัตต์"},"watt":{"_name":"วัตต์","other":"%1$sวัตต์"}},"pressure":{"hectopascal":{"_name":"เฮกโตปาสกาล","other":"%1$shPa"},"inch-hg":{"_name":"นิ้วปรอท","other":"%1$s\" Hg"},"millibar":{"_name":"มิลลิบาร์","other":"%1$sมิลลิบาร์"},"millimeter-of-mercury":{"_name":"มม. ปรอท","other":"%1$s มม. ปรอท"},"pound-per-square-inch":{"_name":"ปอนด์/ตร.นิ้ว","other":"%1$s ปอนด์/ตร.นิ้ว"}},"proportion":{"karat":{"_name":"กะรัต","other":"%1$s กะรัต"}},"speed":{"kilometer-per-hour":{"_name":"กม./ชม.","other":"%1$sกม./ชม."},"meter-per-second":{"_name":"เมตรต่อวินาที","other":"%1$sม./วิ"},"mile-per-hour":{"_name":"ไมล์/ชั่วโมง","other":"%1$sไมล์/ชม."}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"องศาฟาเรนไฮต์","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"เอเคอร์-ฟุต","other":"%1$s เอเคอร์-ฟุต"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"ซล.","other":"%1$s ซล."},"cubic-centimeter":{"_name":"ลบ.ซม.","other":"%1$s ลบ.ซม."},"cubic-foot":{"_name":"ลบ.ฟุต","other":"%1$s ลบ.ฟุต"},"cubic-inch":{"_name":"ลบ.นิ้ว","other":"%1$s ลบ.นิ้ว"},"cubic-kilometer":{"_name":"ลบ.กม.","other":"%1$sลบ.กม."},"cubic-meter":{"_name":"ลบ.ม.","other":"%1$s ลบ.ม."},"cubic-mile":{"_name":"ลบ.ไมล์","other":"%1$sลบ.ไมล์"},"cubic-yard":{"_name":"ลบ.หลา","other":"%1$s ลบ.หลา"},"cup":{"_name":"ถ้วย","other":"%1$s ถ."},"deciliter":{"_name":"ดล.","other":"%1$s ดล."},"fluid-ounce":{"_name":"ฟลูอิดออนซ์","other":"%1$s ฟลูอิดออนซ์"},"gallon":{"_name":"แกลลอน","other":"%1$s แกลลอน"},"hectoliter":{"_name":"ฮล.","other":"%1$s ฮล."},"liter":{"_name":"ลิตร","other":"%1$sล."},"megaliter":{"_name":"เมกกะลิตร","other":"%1$s เมกกะลิตร"},"milliliter":{"_name":"มล.","other":"%1$s มล."},"pint":{"_name":"ไพนต","other":"%1$s ไพนต"},"quart":{"_name":"คว.","other":"%1$s คว."},"tablespoon":{"_name":"ชต.","other":"%1$s ชต."},"teaspoon":{"_name":"ชช.","other":"%1$s ชช."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/tr/calendar.json b/Punic/data/tr/calendar.json new file mode 100644 index 0000000..df20bb2 --- /dev/null +++ b/Punic/data/tr/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"Oca","2":"Şub","3":"Mar","4":"Nis","5":"May","6":"Haz","7":"Tem","8":"Ağu","9":"Eyl","10":"Eki","11":"Kas","12":"Ara"},"narrow":{"1":"O","2":"Ş","3":"M","4":"N","5":"M","6":"H","7":"T","8":"A","9":"E","10":"E","11":"K","12":"A"},"wide":{"1":"Ocak","2":"Şubat","3":"Mart","4":"Nisan","5":"Mayıs","6":"Haziran","7":"Temmuz","8":"Ağustos","9":"Eylül","10":"Ekim","11":"Kasım","12":"Aralık"}},"stand-alone":{"abbreviated":{"1":"Oca","2":"Şub","3":"Mar","4":"Nis","5":"May","6":"Haz","7":"Tem","8":"Ağu","9":"Eyl","10":"Eki","11":"Kas","12":"Ara"},"narrow":{"1":"O","2":"Ş","3":"M","4":"N","5":"M","6":"H","7":"T","8":"A","9":"E","10":"E","11":"K","12":"A"},"wide":{"1":"Ocak","2":"Şubat","3":"Mart","4":"Nisan","5":"Mayıs","6":"Haziran","7":"Temmuz","8":"Ağustos","9":"Eylül","10":"Ekim","11":"Kasım","12":"Aralık"}}},"days":{"format":{"abbreviated":{"sun":"Paz","mon":"Pzt","tue":"Sal","wed":"Çar","thu":"Per","fri":"Cum","sat":"Cmt"},"narrow":{"sun":"P","mon":"P","tue":"S","wed":"Ç","thu":"P","fri":"C","sat":"C"},"short":{"sun":"Pa","mon":"Pt","tue":"Sa","wed":"Ça","thu":"Pe","fri":"Cu","sat":"Ct"},"wide":{"sun":"Pazar","mon":"Pazartesi","tue":"Salı","wed":"Çarşamba","thu":"Perşembe","fri":"Cuma","sat":"Cumartesi"}},"stand-alone":{"abbreviated":{"sun":"Paz","mon":"Pzt","tue":"Sal","wed":"Çar","thu":"Per","fri":"Cum","sat":"Cmt"},"narrow":{"sun":"P","mon":"P","tue":"S","wed":"Ç","thu":"P","fri":"C","sat":"C"},"short":{"sun":"Pa","mon":"Pt","tue":"Sa","wed":"Ça","thu":"Pe","fri":"Cu","sat":"Ct"},"wide":{"sun":"Pazar","mon":"Pazartesi","tue":"Salı","wed":"Çarşamba","thu":"Perşembe","fri":"Cuma","sat":"Cumartesi"}}},"quarters":{"format":{"abbreviated":{"1":"Ç1","2":"Ç2","3":"Ç3","4":"Ç4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"1. çeyrek","2":"2. çeyrek","3":"3. çeyrek","4":"4. çeyrek"}},"stand-alone":{"abbreviated":{"1":"Ç1","2":"Ç2","3":"Ç3","4":"Ç4"},"narrow":{"1":"1.","2":"2.","3":"3.","4":"4."},"wide":{"1":"1. çeyrek","2":"2. çeyrek","3":"3. çeyrek","4":"4. çeyrek"}}},"dayPeriods":{"format":{"abbreviated":{"am":"ÖÖ","noon":"öğle","pm":"ÖS"},"narrow":{"am":"öö","noon":"ö","pm":"ös"},"wide":{"am":"ÖÖ","noon":"öğle","pm":"ÖS"}},"stand-alone":{"abbreviated":{"am":"ÖÖ","noon":"öğle","pm":"ÖS"},"narrow":{"am":"öö","noon":"ö","pm":"ös"},"wide":{"am":"ÖÖ","noon":"öğle","pm":"ÖS"}}},"eras":{"wide":{"0":"Milattan Önce","0-alt-variant":"İsa’dan Önce","1":"Milattan Sonra","1-alt-variant":"İsa’dan Sonra"},"abbreviated":{"0":"MÖ","0-alt-variant":"İÖ","1":"MS","1-alt-variant":"İS"},"narrow":{"0":"MÖ","0-alt-variant":"İÖ","1":"MS","1-alt-variant":"İS"}},"dateFormats":{"full":"d MMMM y EEEE","long":"d MMMM y","medium":"d MMM y","short":"d.MM.y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/tr/dateFields.json b/Punic/data/tr/dateFields.json new file mode 100644 index 0000000..6f66f18 --- /dev/null +++ b/Punic/data/tr/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Miladi Dönem"},"year":{"displayName":"Yıl","relative-type--1":"geçen yıl","relative-type-0":"bu yıl","relative-type-1":"gelecek yıl","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} yıl sonra","relativeTimePattern-count-other":"{0} yıl sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yıl önce","relativeTimePattern-count-other":"{0} yıl önce"}},"year-short":{"displayName":"yıl","relative-type--1":"geçen yıl","relative-type-0":"bu yıl","relative-type-1":"gelecek yıl","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} yıl sonra","relativeTimePattern-count-other":"{0} yıl sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yıl önce","relativeTimePattern-count-other":"{0} yıl önce"}},"year-narrow":{"displayName":"yıl","relative-type--1":"geçen yıl","relative-type-0":"bu yıl","relative-type-1":"gelecek yıl","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} yıl sonra","relativeTimePattern-count-other":"{0} yıl sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yıl önce","relativeTimePattern-count-other":"{0} yıl önce"}},"quarter":{"displayName":"Çeyrek","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} çeyrek sonra","relativeTimePattern-count-other":"{0} çeyrek sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} çeyrek önce","relativeTimePattern-count-other":"{0} çeyrek önce"}},"quarter-short":{"displayName":"çyr.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} çyr. sonra","relativeTimePattern-count-other":"{0} çyr. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} çyr. önce","relativeTimePattern-count-other":"{0} çyr. önce"}},"quarter-narrow":{"displayName":"çyr.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} çyr. sonra","relativeTimePattern-count-other":"{0} çyr. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} çyr. önce","relativeTimePattern-count-other":"{0} çyr. önce"}},"month":{"displayName":"Ay","relative-type--1":"geçen ay","relative-type-0":"bu ay","relative-type-1":"gelecek ay","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} ay sonra","relativeTimePattern-count-other":"{0} ay sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ay önce","relativeTimePattern-count-other":"{0} ay önce"}},"month-short":{"displayName":"ay","relative-type--1":"geçen ay","relative-type-0":"bu ay","relative-type-1":"gelecek ay","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} ay sonra","relativeTimePattern-count-other":"{0} ay sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ay önce","relativeTimePattern-count-other":"{0} ay önce"}},"month-narrow":{"displayName":"ay","relative-type--1":"geçen ay","relative-type-0":"bu ay","relative-type-1":"gelecek ay","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} ay sonra","relativeTimePattern-count-other":"{0} ay sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} ay önce","relativeTimePattern-count-other":"{0} ay önce"}},"week":{"displayName":"Hafta","relative-type--1":"geçen hafta","relative-type-0":"bu hafta","relative-type-1":"gelecek hafta","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hafta sonra","relativeTimePattern-count-other":"{0} hafta sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hafta önce","relativeTimePattern-count-other":"{0} hafta önce"}},"week-short":{"displayName":"hf.","relative-type--1":"geçen hafta","relative-type-0":"bu hafta","relative-type-1":"gelecek hafta","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hf. sonra","relativeTimePattern-count-other":"{0} hf. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hf. önce","relativeTimePattern-count-other":"{0} hf. önce"}},"week-narrow":{"displayName":"hf.","relative-type--1":"geçen hafta","relative-type-0":"bu hafta","relative-type-1":"gelecek hafta","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} hf. sonra","relativeTimePattern-count-other":"{0} hf. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hf. önce","relativeTimePattern-count-other":"{0} hf. önce"}},"day":{"displayName":"Gün","relative-type--1":"dün","relative-type--2":"evvelsi gün","relative-type-0":"bugün","relative-type-1":"yarın","relative-type-2":"öbür gün","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} gün sonra","relativeTimePattern-count-other":"{0} gün sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} gün önce","relativeTimePattern-count-other":"{0} gün önce"}},"day-short":{"displayName":"gün","relative-type--1":"dün","relative-type--2":"evvelsi gün","relative-type-0":"bugün","relative-type-1":"yarın","relative-type-2":"öbür gün","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} gün sonra","relativeTimePattern-count-other":"{0} gün sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} gün önce","relativeTimePattern-count-other":"{0} gün önce"}},"day-narrow":{"displayName":"gün","relative-type--1":"dün","relative-type--2":"evvelsi gün","relative-type-0":"bugün","relative-type-1":"yarın","relative-type-2":"öbür gün","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} gün sonra","relativeTimePattern-count-other":"{0} gün sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} gün önce","relativeTimePattern-count-other":"{0} gün önce"}},"weekday":{"displayName":"Haftanın Günü"},"sun":{"relative-type--1":"geçen pazar","relative-type-0":"bu pazar","relative-type-1":"gelecek pazar"},"sun-short":{"relative-type--1":"geçen paz.","relative-type-0":"bu paz.","relative-type-1":"gelecek paz."},"sun-narrow":{"relative-type--1":"geçen paz.","relative-type-0":"bu paz.","relative-type-1":"gelecek paz."},"mon":{"relative-type--1":"geçen pazartesi","relative-type-0":"bu pazartesi","relative-type-1":"gelecek pazartesi"},"mon-short":{"relative-type--1":"geçen pzt.","relative-type-0":"bu pzt.","relative-type-1":"gelecek pzt."},"mon-narrow":{"relative-type--1":"geçen pzt.","relative-type-0":"bu pzt.","relative-type-1":"gelecek pzt."},"tue":{"relative-type--1":"geçen salı","relative-type-0":"bu salı","relative-type-1":"gelecek salı"},"tue-short":{"relative-type--1":"geçen salı","relative-type-0":"bu salı","relative-type-1":"gelecek salı"},"tue-narrow":{"relative-type--1":"geçen salı","relative-type-0":"bu salı","relative-type-1":"gelecek salı"},"wed":{"relative-type--1":"geçen çarşamba","relative-type-0":"bu çarşamba","relative-type-1":"gelecek çarşamba"},"wed-short":{"relative-type--1":"geçen çar.","relative-type-0":"bu çar.","relative-type-1":"gelecek çar."},"wed-narrow":{"relative-type--1":"geçen çar.","relative-type-0":"bu çar.","relative-type-1":"gelecek çar."},"thu":{"relative-type--1":"geçen perşembe","relative-type-0":"bu perşembe","relative-type-1":"gelecek perşembe"},"thu-short":{"relative-type--1":"geçen per.","relative-type-0":"bu per.","relative-type-1":"gelecek per."},"thu-narrow":{"relative-type--1":"geçen per.","relative-type-0":"bu per.","relative-type-1":"gelecek per."},"fri":{"relative-type--1":"geçen cuma","relative-type-0":"bu cuma","relative-type-1":"gelecek cuma"},"fri-short":{"relative-type--1":"geçen cuma","relative-type-0":"bu cuma","relative-type-1":"gelecek cuma"},"fri-narrow":{"relative-type--1":"geçen cuma","relative-type-0":"bu cuma","relative-type-1":"gelecek cuma"},"sat":{"relative-type--1":"geçen cumartesi","relative-type-0":"bu cumartesi","relative-type-1":"gelecek cumartesi"},"sat-short":{"relative-type--1":"geçen cmt.","relative-type-0":"bu cmt.","relative-type-1":"gelecek cmt."},"sat-narrow":{"relative-type--1":"geçen cmt.","relative-type-0":"bu cmt.","relative-type-1":"gelecek cmt."},"dayperiod":{"displayName":"ÖÖ/ÖS"},"hour":{"displayName":"Saat","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} saat sonra","relativeTimePattern-count-other":"{0} saat sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} saat önce","relativeTimePattern-count-other":"{0} saat önce"}},"hour-short":{"displayName":"sa.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} sa. sonra","relativeTimePattern-count-other":"{0} sa. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sa. önce","relativeTimePattern-count-other":"{0} sa. önce"}},"hour-narrow":{"displayName":"sa.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} sa. sonra","relativeTimePattern-count-other":"{0} sa. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sa. önce","relativeTimePattern-count-other":"{0} sa. önce"}},"minute":{"displayName":"Dakika","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} dakika sonra","relativeTimePattern-count-other":"{0} dakika sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dakika önce","relativeTimePattern-count-other":"{0} dakika önce"}},"minute-short":{"displayName":"dk.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} dk. sonra","relativeTimePattern-count-other":"{0} dk. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dk. önce","relativeTimePattern-count-other":"{0} dk. önce"}},"minute-narrow":{"displayName":"dk.","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} dk. sonra","relativeTimePattern-count-other":"{0} dk. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} dk. önce","relativeTimePattern-count-other":"{0} dk. önce"}},"second":{"displayName":"Saniye","relative-type-0":"şimdi","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} saniye sonra","relativeTimePattern-count-other":"{0} saniye sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} saniye önce","relativeTimePattern-count-other":"{0} saniye önce"}},"second-short":{"displayName":"sn.","relative-type-0":"şimdi","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} sn. sonra","relativeTimePattern-count-other":"{0} sn. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sn. önce","relativeTimePattern-count-other":"{0} sn. önce"}},"second-narrow":{"displayName":"sn.","relative-type-0":"şimdi","relativeTime-type-future":{"relativeTimePattern-count-one":"{0} sn. sonra","relativeTimePattern-count-other":"{0} sn. sonra"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sn. önce","relativeTimePattern-count-other":"{0} sn. önce"}},"zone":{"displayName":"Saat Dilimi"}} \ No newline at end of file diff --git a/Punic/data/tr/languages.json b/Punic/data/tr/languages.json new file mode 100644 index 0000000..e46a95f --- /dev/null +++ b/Punic/data/tr/languages.json @@ -0,0 +1 @@ +{"aa":"Afar","ab":"Abhazca","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adigece","ae":"Avestçe","aeb":"Tunus Arapçası","af":"Afrikaanca","afh":"Afrihili","agq":"Aghem","ain":"Ayni Dili","ak":"Akan","akk":"Akad Dili","akz":"Alabamaca","ale":"Aleut","aln":"Gheg Arnavutçası","alt":"Güney Altayca","am":"Amharca","an":"Aragonca","ang":"Eski İngilizce","anp":"Angika","ar":"Arapça","ar-001":"Modern Standart Arapça","arc":"Aramice","arn":"Araukanya Dili","aro":"Araona","arp":"Arapaho Dili","arq":"Cezayir Arapçası","arw":"Arawak Dili","ary":"Fas Arapçası","arz":"Mısır Arapçası","as":"Assamca","asa":"Asu","ase":"Amerikan İşaret Dili","ast":"Asturyasca","av":"Avar Dili","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerice","az-alt-short":"Azerice","azb":"Güney Azerice","ba":"Başkırtça","bal":"Baluchi","ban":"Bali Dili","bar":"Bavyera Dili","bas":"Basa Dili","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Beyaz Rusça","bej":"Beja Dili","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarca","bho":"Arayanice","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar Dili","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bengalce","bo":"Tibetçe","bpy":"Bishnupriya","bqi":"Bahtiyari","br":"Bretonca","bra":"Braj","brh":"Brohice","brx":"Bodo","bs":"Boşnakça","bss":"Akoose","bua":"Buryat","bug":"Bugis","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Katalanca","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ce":"Çeçence","ceb":"Cebuano","cgg":"Kigaca","ch":"Chamorro","chb":"Chibcha","chg":"Çağatay Dili","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Çerokice","chy":"Şayen Dili","ckb":"Orta Kürtçe","co":"Korsikaca","cop":"Kıptice","cps":"Capiznon","cr":"Cree","crh":"Kırım Türkçesi","cs":"Çekçe","csb":"Kashubian","cu":"Kilise Slavcası","cv":"Çuvaşça","cy":"Galce","da":"Danca","dak":"Dakota","dar":"Dargince","dav":"Taita","de":"Almanca","de-AT":"Avusturya Almancası","de-CH":"İsviçre Yüksek Almancası","del":"Delaware","den":"Slavey","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Aşağı Sorbça","dtp":"Orta Kadazan","dua":"Duala","dum":"Ortaçağ Felemenkçesi","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Butan Dili","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilia Dili","egy":"Eski Mısır Dili","eka":"Ekajuk","el":"Yunanca","elx":"Elam","en":"İngilizce","en-AU":"Avustralya İngilizcesi","en-CA":"Kanada İngilizcesi","en-GB":"İngiliz İngilizcesi","en-GB-alt-short":"İngilizce (BK)","en-US":"Amerikan İngilizcesi","en-US-alt-short":"en_US","enm":"Ortaçağ İngilizcesi","eo":"Esperanto","es":"İspanyolca","es-419":"Latin Amerika İspanyolcası","es-ES":"Avrupa İspanyolcası","es-MX":"Meksika İspanyolcası","esu":"Merkezi Yupikçe","et":"Estonca","eu":"Baskça","ewo":"Ewondo","ext":"Ekstremadura Dili","fa":"Farsça","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Fince","fil":"Filipince","fit":"Tornedalin Fincesi","fj":"Fiji Dili","fo":"Faroe Dili","fon":"Fon","fr":"Fransızca","fr-CA":"Kanada Fransızcası","fr-CH":"İsviçre Fransızcası","frc":"Cajun Fransızcası","frm":"Ortaçağ Fransızcası","fro":"Eski Fransızca","frp":"Arpitanca","frr":"Kuzey Frizce","frs":"Doğu Frizcesi","fur":"Friulian","fy":"Batı Frizcesi","ga":"İrlandaca","gaa":"Ga","gag":"Gagavuzca","gan":"Gan Çincesi","gay":"Gayo","gba":"Gbaya","gbz":"Zerdüşt Daricesi","gd":"İskoç Gal Dili","gez":"Geez","gil":"Kiribati Dili","gl":"Galiçyaca","glk":"Gilanice","gmh":"Ortaçağ Yüksek Almancası","gn":"Guarani Dili","goh":"Eski Yüksek Almanca","gom":"Goa Konkanicesi","gon":"Gondi","gor":"Gorontalo","got":"Gotça","grb":"Grebo","grc":"Antik Yunanca","gsw":"İsviçre Almancası","gu":"Güceratça","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manks","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Çincesi","haw":"Hawaii Dili","he":"İbranice","hi":"Hintçe","hif":"Fiji Hintçesi","hil":"Hiligaynon","hit":"Hititçe","hmn":"Hmong","ho":"Hiri Motu","hr":"Hırvatça","hsb":"Yukarı Sorbça","hsn":"Xiang Çincesi","ht":"Haiti Dili","hu":"Macarca","hup":"Hupa","hy":"Ermenice","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Endonezce","ie":"Interlingue","ig":"İbo Dili","ii":"Sichuan Yi","ik":"Inupiak","ilo":"Iloko","inh":"İnguşça","io":"Ido","is":"İzlandaca","it":"İtalyanca","iu":"Inuktitut","izh":"İngriya Dili","ja":"Japonca","jam":"Jamaika Patois Dili","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Yahudi Farsçası","jrb":"Yahudi Arapçası","jut":"Yutland Dili","jv":"Cava Dili","ka":"Gürcüce","kaa":"Karakalpakça","kab":"Kabiliyece","kac":"Kaçin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardeyce","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Hotanca","khq":"Koyra Chiini","khw":"Çitral Dili","ki":"Kikuyu","kiu":"Kırmançça","kj":"Kuanyama","kk":"Kazakça","kkj":"Kako","kl":"Grönland Dili","kln":"Kalenjin","km":"Kmerce","kmb":"Kimbundu","kn":"Kannada","ko":"Korece","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karaçay-Balkarca","kri":"Krio","krj":"Kinaray-a","krl":"Karelyaca","kru":"Kurukh","ks":"Keşmirce","ksb":"Shambala","ksf":"Bafia","ksh":"Köln Diyalekti","ku":"Kürtçe","kum":"Kumukça","kut":"Kutenai","kv":"Komi","kw":"Kernevekçe","ky":"Kırgızca","la":"Latince","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Lüksemburgca","lez":"Lezgice","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgca","lij":"Ligurca","liv":"Livonca","lkt":"Lakotaca","lmo":"Lombardça","ln":"Lingala","lo":"Laoca","lol":"Mongo","loz":"Lozi","lt":"Litvanyaca","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Lushai","luy":"Luyia","lv":"Letonca","lzh":"Edebi Çince","lzz":"Lazca","mad":"Madura Dili","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Mokşa Dili","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malgaşça","mga":"Ortaçağ İrlandacası","mgh":"Makhuwa-Meetto","mgo":"Meta’","mh":"Marshall Adaları Dili","mi":"Maori Dili","mic":"Micmac","min":"Minangkabau","mk":"Makedonca","ml":"Malayalam","mn":"Moğolca","mnc":"Mançurya Dili","mni":"Manipuri","moh":"Mohavk Dili","mos":"Mossi","mr":"Marathi","mrj":"Ova Çirmişçesi","ms":"Malayca","mt":"Maltaca","mua":"Mundang","mul":"Birden Fazla Dil","mus":"Creek","mwl":"Miranda Dili","mwr":"Marvari","mwv":"Mentawai","my":"Burmaca","mye":"Myene","myv":"Erzya","mzn":"Mazenderanca","na":"Nauru Dili","nan":"Min Nan Çincesi","nap":"Napolice","naq":"Nama","nb":"Norveççe Bokmål","nd":"Kuzey Ndebele","nds":"Aşağı Almanca","ne":"Nepalce","new":"Nevari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Hollandaca","nl-BE":"Flamanca","nmg":"Kwasio","nn":"Norveççe Nynorsk","nnh":"Ngiemboon","no":"Norveççe","nog":"Nogayca","non":"Eski Norse","nov":"Novial","nqo":"N’Ko","nr":"Güney Ndebele","nso":"Kuzey Sotho","nus":"Nuer","nv":"Navaho Dili","nwc":"Klasik Nevari","ny":"Nyanja","nym":"Nyamvezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibva Dili","om":"Oromo","or":"Oriya Dili","os":"Osetçe","osa":"Osage","ota":"Osmanlı Türkçesi","pa":"Pencapça","pag":"Pangasinan","pal":"Pehlevi Dili","pam":"Pampanga","pap":"Papiamento","pau":"Palau Dili","pcd":"Picard Dili","pdc":"Pensilvanya Almancası","pdt":"Plautdietsch","peo":"Eski Farsça","pfl":"Palatin Almancası","phn":"Fenike Dili","pi":"Pali","pl":"Lehçe","pms":"Piyemontece","pnt":"Kuzeybatı Kafkasya","pon":"Pohnpeian","prg":"Prusyaca","pro":"Eski Provensal","ps":"Peştuca","pt":"Portekizce","pt-BR":"Brezilya Portekizcesi","pt-PT":"Avrupa Portekizcesi","qu":"Keçuvaca","quc":"Kiçece","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romanyolca","rif":"Rif Berbericesi","rm":"Romanşça","rn":"Kirundi","ro":"Romence","ro-MD":"Moldovaca","rof":"Rombo","rom":"Romanca","root":"Köken","rtm":"Rotuman","ru":"Rusça","rue":"Rusince","rug":"Roviana","rup":"Ulahça","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskritçe","sad":"Sandave","sah":"Yakutça","sam":"Samarit Aramcası","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardunya Dili","scn":"Sicilyaca","sco":"Scots","sd":"Sindhi","sdc":"Sassari Sarduca","se":"Kuzey Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Eski İrlandaca","sgs":"Samogitçe","sh":"Sırp-Hırvat Dili","shi":"Taşelhit","shn":"Shan Dili","shu":"Çad Arapçası","si":"Seylanca","sid":"Sidamo","sk":"Slovakça","sl":"Slovence","sli":"Aşağı Silezyaca","sly":"Selayar","sm":"Samoa Dili","sma":"Güney Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somalice","sog":"Sogdiana Dili","sq":"Arnavutça","sr":"Sırpça","srn":"Sranan Tongo","srr":"Serer","ss":"Sisvati","ssy":"Saho","st":"Güney Sotho","stq":"Saterland Frizcesi","su":"Sunda Dili","suk":"Sukuma","sus":"Susu","sux":"Sümerce","sv":"İsveççe","sw":"Svahili","swb":"Komorca","swc":"Kongo Svahili","syc":"Klasik Süryanice","syr":"Süryanice","szl":"Silezyaca","ta":"Tamilce","tcy":"Tuluca","te":"Telugu Dili","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tacikçe","th":"Tayca","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Türkmence","tkl":"Tokelau","tkr":"Sahurca","tl":"Takalotça","tlh":"Klingonca","tli":"Tlingit","tly":"Talışça","tmh":"Tamaşek","tn":"Setsvana","to":"Tongaca","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Türkçe","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonca","tsi":"Tsimshian","tt":"Tatarca","ttt":"Tatça","tum":"Tumbuka","tvl":"Tuvalu","tw":"Tvi","twq":"Tasawaq","ty":"Tahiti Dili","tyv":"Tuvaca","tzm":"Orta Fas Tamazigti","udm":"Udmurtça","ug":"Uygurca","uga":"Ugarit Dili","uk":"Ukraynaca","umb":"Umbundu","und":"Bilinmeyen Dil","ur":"Urduca","uz":"Özbekçe","vai":"Vai","ve":"Venda","vec":"Venedikçe","vep":"Veps","vi":"Vietnamca","vls":"Batı Flamanca","vmf":"Main Frankonya Dili","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Valonca","wae":"Walser","wal":"Valamo","war":"Varay","was":"Vaşo","wo":"Volofça","wuu":"Wu Çincesi","xal":"Kalmıkça","xh":"Zosa","xmf":"Megrelce","xog":"Soga","yao":"Yao","yap":"Yapça","yav":"Yangben","ybb":"Yemba","yi":"Yidiş","yo":"Yorubaca","yrl":"Nheengatu","yue":"Kantonca","za":"Zhuang","zap":"Zapotek Dili","zbl":"Blis Sembolleri","zea":"Zelandaca","zen":"Zenaga","zgh":"Standart Berberi Dili Tamazight","zh":"Çince","zh-Hans":"Basitleştirilmiş Çince","zh-Hant":"Geleneksel Çince","zu":"Zuluca","zun":"Zuni","zxx":"Dilbilim içeriği yok","zza":"Zazaca"} \ No newline at end of file diff --git a/Punic/data/tr/listPatterns.json b/Punic/data/tr/listPatterns.json new file mode 100644 index 0000000..775b974 --- /dev/null +++ b/Punic/data/tr/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s ve %2$s","2":"%1$s ve %2$s"},"unit":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-narrow":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"},"unit-short":{"start":"%1$s %2$s","middle":"%1$s %2$s","end":"%1$s %2$s","2":"%1$s %2$s"}} \ No newline at end of file diff --git a/Punic/data/tr/localeDisplayNames.json b/Punic/data/tr/localeDisplayNames.json new file mode 100644 index 0000000..804df67 --- /dev/null +++ b/Punic/data/tr/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Takvim","colAlternate":"Sembolleri Sıralamayı Yoksayma","colBackwards":"Ters Aksan Sıralama","colCaseFirst":"Büyük/Küçük Harf Sıralama","colCaseLevel":"Büyük/Küçük Harfe Duyarlı Sıralama","colHiraganaQuaternary":"Kana Sıralaması","colNormalization":"Normalleştirilmiş Sıralama","colNumeric":"Sayısal Sıralama","colStrength":"Sıralama Gücü","collation":"Sıralama Düzeni","currency":"Para Birimi","numbers":"Rakamlar","timezone":"Saat Dilimi","va":"Yerel Varyant","variableTop":"Sembollere Göre Sıralama","x":"Özel Kullanım"},"types":{"numbers":{"vaii":"Vai Rakamları"},"collation":{"zhuyin":"Zhuyin Sıralaması"},"calendar":{"roc":"Çin Cumhuriyeti Takvimi"},"colStrength":{"tertiary":"Aksanları/Büyük-Küçük Harfleri/Genişliği Sıralama"},"colCaseFirst":{"upper":"Önce Büyük Harfleri Sıralama"},"colBackwards":{"yes":"Aksanları Ters Sıralama"},"colCaseLevel":{"yes":"Büyük/Küçük Harfe Duyarla Sıralama"},"colHiraganaQuaternary":{"yes":"Kana’yı Farklı Sıralama"},"colNormalization":{"yes":"Unicode Normalleştirilmiş Olarak Sıralama"},"colNumeric":{"yes":"Rakamları Sayısal Olarak Sıralama"},"colAlternate":{"shifted":"Sembolleri Yoksayarak Sıralama"}},"codePatterns":{"language":"Dil: %1$s","script":"Alfabe: %1$s","territory":"Bölge: %1$s"}} \ No newline at end of file diff --git a/Punic/data/tr/numbers.json b/Punic/data/tr/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/tr/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/tr/territories.json b/Punic/data/tr/territories.json new file mode 100644 index 0000000..c599174 --- /dev/null +++ b/Punic/data/tr/territories.json @@ -0,0 +1 @@ +{"001":"Dünya","002":"Afrika","003":"Kuzey Amerika","005":"Güney Amerika","009":"Okyanusya","011":"Batı Afrika","013":"Orta Amerika","014":"Doğu Afrika","015":"Kuzey Afrika","017":"Orta Afrika","018":"Afrika’nın Güneyi","019":"Amerika","021":"Amerika’nın Kuzeyi","029":"Karayipler","030":"Doğu Asya","034":"Güney Asya","035":"Güneydoğu Asya","039":"Güney Avrupa","053":"Avustralasya","054":"Melanezya","057":"Mikronezya Bölgesi","061":"Polinezya","142":"Asya","143":"Orta Asya","145":"Batı Asya","150":"Avrupa","151":"Doğu Avrupa","154":"Kuzey Avrupa","155":"Batı Avrupa","419":"Latin Amerika","AC":"Ascension Adası","AD":"Andorra","AE":"Birleşik Arap Emirlikleri","AF":"Afganistan","AG":"Antigua ve Barbuda","AI":"Anguilla","AL":"Arnavutluk","AM":"Ermenistan","AN":"Hollanda Antilleri","AO":"Angola","AQ":"Antarktika","AR":"Arjantin","AS":"Amerikan Samoası","AT":"Avusturya","AU":"Avustralya","AW":"Aruba","AX":"Åland Adaları","AZ":"Azerbaycan","BA":"Bosna Hersek","BB":"Barbados","BD":"Bangladeş","BE":"Belçika","BF":"Burkina Faso","BG":"Bulgaristan","BH":"Bahreyn","BI":"Burundi","BJ":"Benin","BL":"Saint Barthelemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivya","BQ":"Karayip Hollanda","BR":"Brezilya","BS":"Bahamalar","BT":"Butan","BV":"Bouvet Adası","BW":"Botsvana","BY":"Beyaz Rusya","BZ":"Belize","CA":"Kanada","CC":"Cocos (Keeling) Adaları","CD":"Kongo - Kinşasa","CD-alt-variant":"Demokratik Kongo Cumhuriyeti","CF":"Orta Afrika Cumhuriyeti","CG":"Kongo - Brazavil","CG-alt-variant":"Kongo Cumhuriyeti","CH":"İsviçre","CI":"Fildişi Sahili","CI-alt-variant":"CI","CK":"Cook Adaları","CL":"Şili","CM":"Kamerun","CN":"Çin","CO":"Kolombiya","CP":"Clipperton Adası","CR":"Kosta Rika","CU":"Küba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Adası","CY":"Güney Kıbrıs Rum Kesimi","CZ":"Çek Cumhuriyeti","DE":"Almanya","DG":"Diego Garcia","DJ":"Cibuti","DK":"Danimarka","DM":"Dominika","DO":"Dominik Cumhuriyeti","DZ":"Cezayir","EA":"Septe ve Melilla","EC":"Ekvador","EE":"Estonya","EG":"Mısır","EH":"Batı Sahara","ER":"Eritre","ES":"İspanya","ET":"Etiyopya","EU":"Avrupa Birliği","FI":"Finlandiya","FJ":"Fiji","FK":"Falkland Adaları","FK-alt-variant":"Falkland Adaları (Malvinas Adaları)","FM":"Mikronezya","FO":"Faroe Adaları","FR":"Fransa","GA":"Gabon","GB":"Birleşik Krallık","GB-alt-short":"BK","GD":"Grenada","GE":"Gürcistan","GF":"Fransız Guyanası","GG":"Guernsey","GH":"Gana","GI":"Cebelitarık","GL":"Grönland","GM":"Gambiya","GN":"Gine","GP":"Guadalupe","GQ":"Ekvator Ginesi","GR":"Yunanistan","GS":"Güney Georgia ve Güney Sandwich Adaları","GT":"Guatemala","GU":"Guam","GW":"Gine-Bissau","GY":"Guyana","HK":"Çin Hong Kong ÖYB","HK-alt-short":"Hong Kong","HM":"Heard Adası ve McDonald Adaları","HN":"Honduras","HR":"Hırvatistan","HT":"Haiti","HU":"Macaristan","IC":"Kanarya Adaları","ID":"Endonezya","IE":"İrlanda","IL":"İsrail","IM":"Man Adası","IN":"Hindistan","IO":"Britanya Hint Okyanusu Toprakları","IQ":"Irak","IR":"İran","IS":"İzlanda","IT":"İtalya","JE":"Jersey","JM":"Jamaika","JO":"Ürdün","JP":"Japonya","KE":"Kenya","KG":"Kırgızistan","KH":"Kamboçya","KI":"Kiribati","KM":"Komorlar","KN":"Saint Kitts ve Nevis","KP":"Kuzey Kore","KR":"Güney Kore","KW":"Kuveyt","KY":"Cayman Adaları","KZ":"Kazakistan","LA":"Laos","LB":"Lübnan","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberya","LS":"Lesoto","LT":"Litvanya","LU":"Lüksemburg","LV":"Letonya","LY":"Libya","MA":"Fas","MC":"Monako","MD":"Moldova","ME":"Karadağ","MF":"Saint Martin","MG":"Madagaskar","MH":"Marshall Adaları","MK":"Makedonya","MK-alt-variant":"Makedonya (EYMC)","ML":"Mali","MM":"Myanmar (Burma)","MN":"Moğolistan","MO":"Çin Makao ÖYB","MO-alt-short":"Makao","MP":"Kuzey Mariana Adaları","MQ":"Martinik","MR":"Moritanya","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldivler","MW":"Malavi","MX":"Meksika","MY":"Malezya","MZ":"Mozambik","NA":"Namibya","NC":"Yeni Kaledonya","NE":"Nijer","NF":"Norfolk Adası","NG":"Nijerya","NI":"Nikaragua","NL":"Hollanda","NO":"Norveç","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"Yeni Zelanda","OM":"Umman","PA":"Panama","PE":"Peru","PF":"Fransız Polinezyası","PG":"Papua Yeni Gine","PH":"Filipinler","PK":"Pakistan","PL":"Polonya","PM":"Saint Pierre ve Miquelon","PN":"Pitcairn Adaları","PR":"Porto Riko","PS":"Filistin Bölgeleri","PS-alt-short":"Filistin","PT":"Portekiz","PW":"Palau","PY":"Paraguay","QA":"Katar","QO":"Uzak Okyanusya","RE":"Réunion","RO":"Romanya","RS":"Sırbistan","RU":"Rusya","RW":"Ruanda","SA":"Suudi Arabistan","SB":"Solomon Adaları","SC":"Seyşeller","SD":"Sudan","SE":"İsveç","SG":"Singapur","SH":"Saint Helena","SI":"Slovenya","SJ":"Svalbard ve Jan Mayen Adaları","SK":"Slovakya","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somali","SR":"Surinam","SS":"Güney Sudan","ST":"São Tomé ve Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Suriye","SZ":"Svaziland","TA":"Tristan da Cunha","TC":"Turks ve Caicos Adaları","TD":"Çad","TF":"Fransız Güney Toprakları","TG":"Togo","TH":"Tayland","TJ":"Tacikistan","TK":"Tokelau","TL":"Timor-Leste","TL-alt-variant":"Doğu Timor","TM":"Türkmenistan","TN":"Tunus","TO":"Tonga","TR":"Türkiye","TT":"Trinidad ve Tobago","TV":"Tuvalu","TW":"Tayvan","TZ":"Tanzanya","UA":"Ukrayna","UG":"Uganda","UM":"ABD Uzak Adaları","US":"ABD","US-alt-short":"ABD","UY":"Uruguay","UZ":"Özbekistan","VA":"Vatikan","VC":"Saint Vincent ve Grenadinler","VE":"Venezuela","VG":"Britanya Virjin Adaları","VI":"ABD Virjin Adaları","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis ve Futuna Adaları","WS":"Samoa","XK":"Kosova","YE":"Yemen","YT":"Mayotte","ZA":"Güney Afrika","ZM":"Zambiya","ZW":"Zimbabve","ZZ":"Bilinmeyen Bölge"} \ No newline at end of file diff --git a/Punic/data/tr/timeZoneNames.json b/Punic/data/tr/timeZoneNames.json new file mode 100644 index 0000000..a65ad71 --- /dev/null +++ b/Punic/data/tr/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s Saati","regionFormat-type-standard":"%1$s Standart Saati","regionFormat-type-daylight":"%1$s Yaz Saati","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Karakas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"Costa_Rica":{"exemplarCity":"Kosta Rika"},"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":"Dominika"},"Edmonton":{"exemplarCity":"Edmonton"},"Eirunepe":{"exemplarCity":"Eirunepe"},"El_Salvador":{"exemplarCity":"El Salvador"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, 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":"Meksiko City"},"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, Kuzey Dakota"},"Center":{"exemplarCity":"Merkez, Kuzey Dakota"},"New_Salem":{"exemplarCity":"New Salem, Kuzey 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":"Porto Riko"},"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":"Sao 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":"Azor Adaları"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Kanarya Adaları"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira Adaları"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Güney Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Atina"},"Belgrade":{"exemplarCity":"Belgrad"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brüksel"},"Bucharest":{"exemplarCity":"Bükreş"},"Budapest":{"exemplarCity":"Budapeşte"},"Busingen":{"exemplarCity":"Büsingen"},"Chisinau":{"exemplarCity":"Kişinev"},"Copenhagen":{"exemplarCity":"Kopenhag"},"Dublin":{"long":{"daylight":"İrlanda Standart Saati"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Cebelitarık"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Man Adası"},"Istanbul":{"exemplarCity":"İstanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lizbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"İngiltere Yaz Saati"},"exemplarCity":"Londra"},"Luxembourg":{"exemplarCity":"Lüksemburg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monako"},"Moscow":{"exemplarCity":"Moskova"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Prag"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Roma"},"Samara":{"exemplarCity":"Samara"},"San_Marino":{"exemplarCity":"San Marino"},"Sarajevo":{"exemplarCity":"Saraybosna"},"Simferopol":{"exemplarCity":"Akmescit"},"Skopje":{"exemplarCity":"Üsküp"},"Sofia":{"exemplarCity":"Sofya"},"Stockholm":{"exemplarCity":"Stokholm"},"Tallinn":{"exemplarCity":"Tallinn"},"Tirane":{"exemplarCity":"Tiran"},"Uzhgorod":{"exemplarCity":"Ujgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatikan"},"Vienna":{"exemplarCity":"Viyana"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Varşova"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporojye"},"Zurich":{"exemplarCity":"Zürih"}},"Africa":{"Abidjan":{"exemplarCity":"Abican"},"Accra":{"exemplarCity":"Akra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Cezayir"},"Asmera":{"exemplarCity":"Asmara"},"Bamako":{"exemplarCity":"Bamako"},"Bangui":{"exemplarCity":"Bangui"},"Banjul":{"exemplarCity":"Banjul"},"Bissau":{"exemplarCity":"Bissau"},"Blantyre":{"exemplarCity":"Blantyre"},"Brazzaville":{"exemplarCity":"Brazzavil"},"Bujumbura":{"exemplarCity":"Bujumbura"},"Cairo":{"exemplarCity":"Kahire"},"Casablanca":{"exemplarCity":"Kazablanka"},"Ceuta":{"exemplarCity":"Septe"},"Conakry":{"exemplarCity":"Konakri"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Darüsselam"},"Djibouti":{"exemplarCity":"Cibuti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"Layun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Cuba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Hartum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinşasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Librevil"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadişu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Trablus"},"Tunis":{"exemplarCity":"Tunus"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almatı"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadır"},"Aqtau":{"exemplarCity":"Aktav"},"Aqtobe":{"exemplarCity":"Aktöbe"},"Ashgabat":{"exemplarCity":"Aşkabat"},"Baghdad":{"exemplarCity":"Bağdat"},"Bahrain":{"exemplarCity":"Bahreyn"},"Baku":{"exemplarCity":"Bakü"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beyrut"},"Bishkek":{"exemplarCity":"Bişkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kalküta"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Çoybalsan"},"Chongqing":{"exemplarCity":"Çongçing"},"Colombo":{"exemplarCity":"Kolombo"},"Damascus":{"exemplarCity":"Şam"},"Dhaka":{"exemplarCity":"Dakka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Duşanbe"},"Gaza":{"exemplarCity":"Gazze"},"Harbin":{"exemplarCity":"Harbin"},"Hebron":{"exemplarCity":"El Halil"},"Hong_Kong":{"exemplarCity":"Hong Kong"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"İrkutsk"},"Jakarta":{"exemplarCity":"Cakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Kudüs"},"Kabul":{"exemplarCity":"Kabil"},"Kamchatka":{"exemplarCity":"Kamçatka"},"Karachi":{"exemplarCity":"Karaçi"},"Kashgar":{"exemplarCity":"Kaşgar"},"Katmandu":{"exemplarCity":"Katmandu"},"Khandyga":{"exemplarCity":"Handiga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuçing"},"Kuwait":{"exemplarCity":"Kuveyt"},"Macau":{"exemplarCity":"Makao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Maskat"},"Nicosia":{"exemplarCity":"Lefkoşa"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Pyongyang"},"Qatar":{"exemplarCity":"Katar"},"Qyzylorda":{"exemplarCity":"Kızılorda"},"Rangoon":{"exemplarCity":"Yangon"},"Riyadh":{"exemplarCity":"Riyad"},"Saigon":{"exemplarCity":"Ho Chi Minh Kenti"},"Sakhalin":{"exemplarCity":"Sahalin"},"Samarkand":{"exemplarCity":"Semerkand"},"Seoul":{"exemplarCity":"Seul"},"Shanghai":{"exemplarCity":"Şanghay"},"Singapore":{"exemplarCity":"Singapur"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Taipei"},"Tashkent":{"exemplarCity":"Taşkent"},"Tbilisi":{"exemplarCity":"Tiflis"},"Tehran":{"exemplarCity":"Tahran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulan Batur"},"Urumqi":{"exemplarCity":"Urumçi"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Vientiane"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Erivan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Komor"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldivler"},"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":"Sidney"}},"Pacific":{"Apia":{"exemplarCity":"Apia"},"Auckland":{"exemplarCity":"Auckland"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Paskalya Adası"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Markiz Adaları"},"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":"Showa"},"Troll":{"exemplarCity":"Troll"},"Vostok":{"exemplarCity":"Vostok"}},"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":"Bilinmeyen Şehir"}}},"metazone":{"Acre":{"long":{"generic":"Acre Saati","standard":"Acre Standart Saati","daylight":"Acre Yaz Saati"}},"Afghanistan":{"long":{"standard":"Afganistan Saati"}},"Africa_Central":{"long":{"standard":"Orta Afrika Saati"}},"Africa_Eastern":{"long":{"standard":"Doğu Afrika Saati"}},"Africa_Southern":{"long":{"standard":"Güney Afrika Standart Saati"}},"Africa_Western":{"long":{"generic":"Batı Afrika Saati","standard":"Batı Afrika Standart Saati","daylight":"Batı Afrika Yaz Saati"}},"Alaska":{"long":{"generic":"Alaska Saati","standard":"Alaska Standart Saati","daylight":"Alaska Yaz Saati"}},"Almaty":{"long":{"generic":"Almatı Saati","standard":"Almatı Standart Saati","daylight":"Almatı Yaz Saati"}},"Amazon":{"long":{"generic":"Amazon Saati","standard":"Amazon Standart Saati","daylight":"Amazon Yaz Saati"}},"America_Central":{"long":{"generic":"Kuzey Amerika Merkezi Saati","standard":"Kuzey Amerika Merkezi Standart Saati","daylight":"Kuzey Amerika Merkezi Yaz Saati"}},"America_Eastern":{"long":{"generic":"Kuzey Amerika Doğu Saati","standard":"Kuzey Amerika Doğu Standart Saati","daylight":"Kuzey Amerika Doğu Yaz Saati"}},"America_Mountain":{"long":{"generic":"Kuzey Amerika Dağ Saati","standard":"Kuzey Amerika Dağ Standart Saati","daylight":"Kuzey Amerika Dağ Yaz Saati"}},"America_Pacific":{"long":{"generic":"Kuzey Amerika Pasifik Saati","standard":"Kuzey Amerika Pasifik Standart Saati","daylight":"Kuzey Amerika Pasifik Yaz Saati"}},"Anadyr":{"long":{"generic":"Anadyr Saati","standard":"Anadır Standart Saati","daylight":"Anadır Yaz Saati"}},"Apia":{"long":{"generic":"Apia Saati","standard":"Apia Standart Saati","daylight":"Apia Yaz Saati"}},"Aqtau":{"long":{"generic":"Aktav Saati","standard":"Aktav Standart Saati","daylight":"Aktav Yaz Saati"}},"Aqtobe":{"long":{"generic":"Aktöbe Saati","standard":"Aktöbe Standart Saati","daylight":"Aktöbe Yaz Saati"}},"Arabian":{"long":{"generic":"Arabistan Saati","standard":"Arabistan Standart Saati","daylight":"Arabistan Yaz Saati"}},"Argentina":{"long":{"generic":"Arjantin Saati","standard":"Arjantin Standart Saati","daylight":"Arjantin Yaz Saati"}},"Argentina_Western":{"long":{"generic":"Batı Arjantin Saati","standard":"Batı Arjantin Standart Saati","daylight":"Batı Arjantin Yaz Saati"}},"Armenia":{"long":{"generic":"Ermenistan Saati","standard":"Ermenistan Standart Saati","daylight":"Ermenistan Yaz Saati"}},"Atlantic":{"long":{"generic":"Atlantik Saati","standard":"Atlantik Standart Saati","daylight":"Atlantik Yaz Saati"}},"Australia_Central":{"long":{"generic":"Orta Avustralya Saati","standard":"Orta Avustralya Standart Saati","daylight":"Orta Avustralya Yaz Saati"}},"Australia_CentralWestern":{"long":{"generic":"İçbatı Avustralya Saati","standard":"İçbatı Avustralya Standart Saati","daylight":"İçbatı Avustralya Yaz Saati"}},"Australia_Eastern":{"long":{"generic":"Doğu Avustralya Saati","standard":"Doğu Avustralya Standart Saati","daylight":"Doğu Avustralya Yaz Saati"}},"Australia_Western":{"long":{"generic":"Batı Avustralya Saati","standard":"Batı Avustralya Standart Saati","daylight":"Batı Avustralya Yaz Saati"}},"Azerbaijan":{"long":{"generic":"Azerbaycan Saati","standard":"Azerbaycan Standart Saati","daylight":"Azerbaycan Yaz Saati"}},"Azores":{"long":{"generic":"Azorlar Saati","standard":"Azorlar Standart Saati","daylight":"Azorlar Yaz Saati"}},"Bangladesh":{"long":{"generic":"Bangladeş Saati","standard":"Bangladeş Standart Saati","daylight":"Bangladeş Yaz Saati"}},"Bhutan":{"long":{"standard":"Bhutan Saati"}},"Bolivia":{"long":{"standard":"Bolivya Saati"}},"Brasilia":{"long":{"generic":"Brasilia Saati","standard":"Brasilia Standart Saati","daylight":"Brasilia Yaz Saati"}},"Brunei":{"long":{"standard":"Brunei Darü’s-Selam Saati"}},"Cape_Verde":{"long":{"generic":"Cape Verde Saati","standard":"Cape Verde Standart Saati","daylight":"Cape Verde Yaz Saati"}},"Casey":{"long":{"standard":"Casey Saati"}},"Chamorro":{"long":{"standard":"Chamorro Saati"}},"Chatham":{"long":{"generic":"Chatham Saati","standard":"Chatham Standart Saati","daylight":"Chatham Yaz Saati"}},"Chile":{"long":{"generic":"Şili Saati","standard":"Şili Standart Saati","daylight":"Şili Yaz Saati"}},"China":{"long":{"generic":"Çin Saati","standard":"Çin Standart Saati","daylight":"Çin Yaz Saati"}},"Choibalsan":{"long":{"generic":"Çoybalsan Saati","standard":"Çoybalsan Standart Saati","daylight":"Çoybalsan Yaz Saati"}},"Christmas":{"long":{"standard":"Christmas Adası Saati"}},"Cocos":{"long":{"standard":"Cocos Adaları Saati"}},"Colombia":{"long":{"generic":"Kolombiya Saati","standard":"Kolombiya Standart Saati","daylight":"Kolombiya Yaz Saati"}},"Cook":{"long":{"generic":"Cook Adaları Saati","standard":"Cook Adaları Standart Saati","daylight":"Cook Adaları Yarı Yaz Saati"}},"Cuba":{"long":{"generic":"Küba Saati","standard":"Küba Standart Saati","daylight":"Küba Yaz Saati"}},"Davis":{"long":{"standard":"Davis Saati"}},"DumontDUrville":{"long":{"standard":"Dumont-d’Urville Saati"}},"East_Timor":{"long":{"standard":"Doğu Timor Saati"}},"Easter":{"long":{"generic":"Paskalya Adası Saati","standard":"Paskalya Adası Standart Saati","daylight":"Paskalya Adası Yaz Saati"}},"Ecuador":{"long":{"standard":"Ekvador Saati"}},"Europe_Central":{"long":{"generic":"Orta Avrupa Saati","standard":"Orta Avrupa Standart Saati","daylight":"Orta Avrupa Yaz Saati"}},"Europe_Eastern":{"long":{"generic":"Doğu Avrupa Saati","standard":"Doğu Avrupa Standart Saati","daylight":"Doğu Avrupa Yaz Saati"}},"Europe_Further_Eastern":{"long":{"standard":"Daha Doğu Avrupa Saati"}},"Europe_Western":{"long":{"generic":"Batı Avrupa Saati","standard":"Batı Avrupa Standart Saati","daylight":"Batı Avrupa Yaz Saati"}},"Falkland":{"long":{"generic":"Falkland Adaları Saati","standard":"Falkland Adaları Standart Saati","daylight":"Falkland Adaları Yaz Saati"}},"Fiji":{"long":{"generic":"Fiji Saati","standard":"Fiji Standart Saati","daylight":"Fiji Yaz Saati"}},"French_Guiana":{"long":{"standard":"Fransız Guyanası Saati"}},"French_Southern":{"long":{"standard":"Fransız Güney ve Antarktika Saati"}},"GMT":{"long":{"standard":"Greenwich Ortalama Saati"}},"Galapagos":{"long":{"standard":"Galapagos Saati"}},"Gambier":{"long":{"standard":"Gambier Saati"}},"Georgia":{"long":{"generic":"Gürcistan Saati","standard":"Gürcistan Standart Saati","daylight":"Gürcistan Yaz Saati"}},"Gilbert_Islands":{"long":{"standard":"Gilbert Adaları Saati"}},"Greenland_Eastern":{"long":{"generic":"Doğu Grönland Saati","standard":"Doğu Grönland Standart Saati","daylight":"Doğu Grönland Yaz Saati"}},"Greenland_Western":{"long":{"generic":"Batı Grönland Saati","standard":"Batı Grönland Standart Saati","daylight":"Batı Grönland Yaz Saati"}},"Guam":{"long":{"standard":"Guam Standart Saati"}},"Gulf":{"long":{"standard":"Körfez Saati"}},"Guyana":{"long":{"standard":"Guyana Saati"}},"Hawaii_Aleutian":{"long":{"generic":"Hawaii-Aleut Saati","standard":"Hawaii-Aleut Standart Saati","daylight":"Hawaii-Aleut Yaz Saati"}},"Hong_Kong":{"long":{"generic":"Hong Kong Saati","standard":"Hong Kong Standart Saati","daylight":"Hong Kong Yaz Saati"}},"Hovd":{"long":{"generic":"Hovd Saati","standard":"Hovd Standart Saati","daylight":"Hovd Yaz Saati"}},"India":{"long":{"standard":"Hindistan Standart Saati"}},"Indian_Ocean":{"long":{"standard":"Hint Okyanusu Saati"}},"Indochina":{"long":{"standard":"Hindiçin Saati"}},"Indonesia_Central":{"long":{"standard":"Orta Endonezya Saati"}},"Indonesia_Eastern":{"long":{"standard":"Doğu Endonezya Saati"}},"Indonesia_Western":{"long":{"standard":"Batı Endonezya Saati"}},"Iran":{"long":{"generic":"İran Saati","standard":"İran Standart Saati","daylight":"İran Yaz Saati"}},"Irkutsk":{"long":{"generic":"İrkutsk Saati","standard":"İrkutsk Standart Saati","daylight":"İrkutsk Yaz Saati"}},"Israel":{"long":{"generic":"İsrail Saati","standard":"İsrail Standart Saati","daylight":"İsrail Yaz Saati"}},"Japan":{"long":{"generic":"Japonya Saati","standard":"Japonya Standart Saati","daylight":"Japonya Yaz Saati"}},"Kamchatka":{"long":{"generic":"Petropavlovsk-Kamçatski Saati","standard":"Petropavlovsk-Kamçatski Standart Saati","daylight":"Petropavlovsk-Kamçatski Yaz Saati"}},"Kazakhstan_Eastern":{"long":{"standard":"Doğu Kazakistan Saati"}},"Kazakhstan_Western":{"long":{"standard":"Batı Kazakistan Saati"}},"Korea":{"long":{"generic":"Kore Saati","standard":"Kore Standart Saati","daylight":"Kore Yaz Saati"}},"Kosrae":{"long":{"standard":"Kosrae Saati"}},"Krasnoyarsk":{"long":{"generic":"Krasnoyarsk Saati","standard":"Krasnoyarsk Standart Saati","daylight":"Krasnoyarsk Yaz Saati"}},"Kyrgystan":{"long":{"standard":"Kırgızistan Saati"}},"Lanka":{"long":{"standard":"Lanka Saati"}},"Line_Islands":{"long":{"standard":"Line Adaları Saati"}},"Lord_Howe":{"long":{"generic":"Lord Howe Saati","standard":"Lord Howe Standart Saati","daylight":"Lord Howe Yaz Saati"}},"Macau":{"long":{"generic":"Makao Saati","standard":"Makao Standart Saati","daylight":"Makao Yaz Saati"}},"Macquarie":{"long":{"standard":"Macquarie Adası Saati"}},"Magadan":{"long":{"generic":"Magadan Saati","standard":"Magadan Standart Saati","daylight":"Magadan Yaz Saati"}},"Malaysia":{"long":{"standard":"Malezya Saati"}},"Maldives":{"long":{"standard":"Maldivler Saati"}},"Marquesas":{"long":{"standard":"Markiz Adaları Saati"}},"Marshall_Islands":{"long":{"standard":"Marshall Adaları Saati"}},"Mauritius":{"long":{"generic":"Mauritius Saati","standard":"Mauritius Standart Saati","daylight":"Mauritius Yaz Saati"}},"Mawson":{"long":{"standard":"Mawson Saati"}},"Mexico_Northwest":{"long":{"generic":"Kuzeybatı Meksika Saati","standard":"Kuzeybatı Meksika Standart Saati","daylight":"Kuzeybatı Meksika Yaz Saati"}},"Mexico_Pacific":{"long":{"generic":"Meksika Pasifik Kıyısı Saati","standard":"Meksika Pasifik Kıyısı Standart Saati","daylight":"Meksika Pasifik Kıyısı Yaz Saati"}},"Mongolia":{"long":{"generic":"Ulan Batur Saati","standard":"Ulan Batur Standart Saati","daylight":"Ulan Batur Yaz Saati"}},"Moscow":{"long":{"generic":"Moskova Saati","standard":"Moskova Standart Saati","daylight":"Moskova Yaz Saati"}},"Myanmar":{"long":{"standard":"Myanmar Saati"}},"Nauru":{"long":{"standard":"Nauru Saati"}},"Nepal":{"long":{"standard":"Nepal Saati"}},"New_Caledonia":{"long":{"generic":"Yeni Kaledonya Saati","standard":"Yeni Kaledonya Standart Saati","daylight":"Yeni Kaledonya Yaz Saati"}},"New_Zealand":{"long":{"generic":"Yeni Zelanda Saati","standard":"Yeni Zelanda Standart Saati","daylight":"Yeni Zelanda Yaz Saati"}},"Newfoundland":{"long":{"generic":"Newfoundland Saati","standard":"Newfoundland Standart Saati","daylight":"Newfoundland Yaz Saati"}},"Niue":{"long":{"standard":"Niue Saati"}},"Norfolk":{"long":{"standard":"Norfolk Adası Saati"}},"Noronha":{"long":{"generic":"Fernando de Noronha Saati","standard":"Fernando de Noronha Standart Saati","daylight":"Fernando de Noronha Yaz Saati"}},"North_Mariana":{"long":{"standard":"Kuzey Mariana Adaları Saati"}},"Novosibirsk":{"long":{"generic":"Novosibirsk Saati","standard":"Novosibirsk Standart Saati","daylight":"Novosibirsk Yaz Saati"}},"Omsk":{"long":{"generic":"Omsk Saati","standard":"Omsk Standart Saati","daylight":"Omsk Yaz Saati"}},"Pakistan":{"long":{"generic":"Pakistan Saati","standard":"Pakistan Standart Saati","daylight":"Pakistan Yaz Saati"}},"Palau":{"long":{"standard":"Palau Saati"}},"Papua_New_Guinea":{"long":{"standard":"Papua Yeni Gine Saati"}},"Paraguay":{"long":{"generic":"Paraguay Saati","standard":"Paraguay Standart Saati","daylight":"Paraguay Yaz Saati"}},"Peru":{"long":{"generic":"Peru Saati","standard":"Peru Standart Saati","daylight":"Peru Yaz Saati"}},"Philippines":{"long":{"generic":"Filipinler Saati","standard":"Filipinler Standart Saati","daylight":"Filipinler Yaz Saati"}},"Phoenix_Islands":{"long":{"standard":"Phoenix Adaları Saati"}},"Pierre_Miquelon":{"long":{"generic":"Saint Pierre ve Miquelon Saati","standard":"Saint Pierre ve Miquelon Standart Saati","daylight":"Saint Pierre ve Miquelon Yaz Saati"}},"Pitcairn":{"long":{"standard":"Pitcairn Saati"}},"Ponape":{"long":{"standard":"Ponape Saati"}},"Qyzylorda":{"long":{"generic":"Kızılorda Saati","standard":"Kızılorda Standart Saati","daylight":"Kızılorda Yaz Saati"}},"Reunion":{"long":{"standard":"Reunion Saati"}},"Rothera":{"long":{"standard":"Rothera Saati"}},"Sakhalin":{"long":{"generic":"Sahalin Saati","standard":"Sahalin Standart Saati","daylight":"Sahalin Yaz Saati"}},"Samara":{"long":{"generic":"Samara Saati","standard":"Samara Standart Saati","daylight":"Samara Yaz Saati"}},"Samoa":{"long":{"generic":"Samoa Saati","standard":"Samoa Standart Saati","daylight":"Samoa Yaz Saati"}},"Seychelles":{"long":{"standard":"Seyşeller Saati"}},"Singapore":{"long":{"standard":"Singapur Standart Saati"}},"Solomon":{"long":{"standard":"Solomon Adaları Saati"}},"South_Georgia":{"long":{"standard":"Güney Georgia Saati"}},"Suriname":{"long":{"standard":"Surinam Saati"}},"Syowa":{"long":{"standard":"Showa Saati"}},"Tahiti":{"long":{"standard":"Tahiti Saati"}},"Taipei":{"long":{"generic":"Taipei Saati","standard":"Taipei Standart Saati","daylight":"Taipei Yaz Saati"}},"Tajikistan":{"long":{"standard":"Tacikistan Saati"}},"Tokelau":{"long":{"standard":"Tokelau Saati"}},"Tonga":{"long":{"generic":"Tonga Saati","standard":"Tonga Standart Saati","daylight":"Tonga Yaz Saati"}},"Truk":{"long":{"standard":"Chuuk Saati"}},"Turkmenistan":{"long":{"generic":"Türkmenistan Saati","standard":"Türkmenistan Standart Saati","daylight":"Türkmenistan Yaz Saati"}},"Tuvalu":{"long":{"standard":"Tuvalu Saati"}},"Uruguay":{"long":{"generic":"Uruguay Saati","standard":"Uruguay Standart Saati","daylight":"Uruguay Yaz Saati"}},"Uzbekistan":{"long":{"generic":"Özbekistan Saati","standard":"Özbekistan Standart Saati","daylight":"Özbekistan Yaz Saati"}},"Vanuatu":{"long":{"generic":"Vanuatu Saati","standard":"Vanuatu Standart Saati","daylight":"Vanuatu Yaz Saati"}},"Venezuela":{"long":{"standard":"Venezuela Saati"}},"Vladivostok":{"long":{"generic":"Vladivostok Saati","standard":"Vladivostok Standart Saati","daylight":"Vladivostok Yaz Saati"}},"Volgograd":{"long":{"generic":"Volgograd Saati","standard":"Volgograd Standart Saati","daylight":"Volgograd Yaz Saati"}},"Vostok":{"long":{"standard":"Vostok Saati"}},"Wake":{"long":{"standard":"Wake Adası Saati"}},"Wallis":{"long":{"standard":"Wallis ve Futuna Saati"}},"Yakutsk":{"long":{"generic":"Yakutsk Saati","standard":"Yakutsk Standart Saati","daylight":"Yakutsk Yaz Saati"}},"Yekaterinburg":{"long":{"generic":"Yekaterinburg Saati","standard":"Yekaterinburg Standart Saati","daylight":"Yekaterinburg Yaz Saati"}}}} \ No newline at end of file diff --git a/Punic/data/tr/units.json b/Punic/data/tr/units.json new file mode 100644 index 0000000..86aaf1b --- /dev/null +++ b/Punic/data/tr/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g kuvveti","one":"%1$s g kuvveti","other":"%1$s g kuvveti"},"meter-per-second-squared":{"_name":"metre/saniye²","one":"%1$s metre/saniye²","other":"%1$s metre/saniye²"}},"angle":{"arc-minute":{"_name":"açısal dakika","one":"%1$s açısal dakika","other":"%1$s açısal dakika"},"arc-second":{"_name":"açısal saniye","one":"%1$s açısal saniye","other":"%1$s açısal saniye"},"degree":{"_name":"derece","one":"%1$s derece","other":"%1$s derece"},"radian":{"_name":"radyan","one":"%1$s radyan","other":"%1$s radyan"}},"area":{"acre":{"_name":"akre","one":"%1$s akre","other":"%1$s akre"},"hectare":{"_name":"hektar","one":"%1$s hektar","other":"%1$s hektar"},"square-centimeter":{"_name":"santimetrekare","one":"%1$s santimetrekare","other":"%1$s santimetrekare"},"square-foot":{"_name":"fit kare","one":"%1$s fit kare","other":"%1$s fit kare"},"square-inch":{"_name":"inç kare","one":"%1$s inç kare","other":"%1$s inç kare"},"square-kilometer":{"_name":"kilometrekare","one":"%1$s kilometrekare","other":"%1$s kilometrekare"},"square-meter":{"_name":"metrekare","one":"%1$s metrekare","other":"%1$s metrekare"},"square-mile":{"_name":"mil kare","one":"%1$s mil kare","other":"%1$s mil kare"},"square-yard":{"_name":"yarda kare","one":"%1$s yarda kare","other":"%1$s yarda kare"}},"consumption":{"liter-per-kilometer":{"_name":"litre/kilometre","one":"%1$s litre/kilometre","other":"%1$s litre/kilometre"},"mile-per-gallon":{"_name":"mil/galon","one":"%1$s mil/galon","other":"%1$s mil/galon"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bayt","one":"%1$s bayt","other":"%1$s bayt"},"gigabit":{"_name":"gigabit","one":"%1$s gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabayt","one":"%1$s gigabayt","other":"%1$s gigabayt"},"kilobit":{"_name":"kilobit","one":"%1$s kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobayt","one":"%1$s kilobayt","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","one":"%1$s megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabayt","one":"%1$s megabayt","other":"%1$s megabayt"},"terabit":{"_name":"terabit","one":"%1$s terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabayt","one":"%1$s terabayt","other":"%1$s terabayt"}},"duration":{"day":{"_name":"gün","one":"%1$s gün","other":"%1$s gün"},"hour":{"_name":"saat","one":"%1$s saat","other":"%1$s saat","_per":"%1$s/saat"},"microsecond":{"_name":"mikrosaniye","one":"%1$s mikrosaniye","other":"%1$s mikrosaniye"},"millisecond":{"_name":"milisaniye","one":"%1$s milisaniye","other":"%1$s milisaniye"},"minute":{"_name":"dakika","one":"%1$s dakika","other":"%1$s dakika"},"month":{"_name":"ay","one":"%1$s ay","other":"%1$s ay"},"nanosecond":{"_name":"nanosaniye","one":"%1$s nanosaniye","other":"%1$s nanosaniye"},"second":{"_name":"saniye","one":"%1$s saniye","other":"%1$s saniye","_per":"%1$s/saniye"},"week":{"_name":"hafta","one":"%1$s hafta","other":"%1$s hafta"},"year":{"_name":"yıl","one":"%1$s yıl","other":"%1$s yıl"}},"electric":{"ampere":{"_name":"amper","one":"%1$s amper","other":"%1$s amper"},"milliampere":{"_name":"miliamper","one":"%1$s miliamper","other":"%1$s miliamper"},"ohm":{"_name":"ohm","one":"%1$s ohm","other":"%1$s ohm"},"volt":{"_name":"volt","one":"%1$s volt","other":"%1$s volt"}},"energy":{"calorie":{"_name":"kalori","one":"%1$s kalori","other":"%1$s kalori"},"foodcalorie":{"_name":"kilokalori","one":"%1$s kilokalori","other":"%1$s kilokalori"},"joule":{"_name":"jul","one":"%1$s jul","other":"%1$s jul"},"kilocalorie":{"_name":"kilokalori","one":"%1$s kilokalori","other":"%1$s kilokalori"},"kilojoule":{"_name":"kilojul","one":"%1$s kilojul","other":"%1$s kilojul"},"kilowatt-hour":{"_name":"kilovatsaat","one":"%1$s kilovatsaat","other":"%1$s kilovatsaat"}},"frequency":{"gigahertz":{"_name":"gigahertz","one":"%1$s gigahertz","other":"%1$s gigahertz"},"hertz":{"_name":"hertz","one":"%1$s hertz","other":"%1$s hertz"},"kilohertz":{"_name":"kilohertz","one":"%1$s kilohertz","other":"%1$s kilohertz"},"megahertz":{"_name":"megahertz","one":"%1$s megahertz","other":"%1$s megahertz"}},"length":{"astronomical-unit":{"_name":"astronomik birim","one":"%1$s astronomik birim","other":"%1$s astronomik birim"},"centimeter":{"_name":"santimetre","one":"%1$s santimetre","other":"%1$s santimetre"},"decimeter":{"_name":"desimetre","one":"%1$s desimetre","other":"%1$s desimetre"},"fathom":{"_name":"fathom","one":"%1$s fathom","other":"%1$s fathom"},"foot":{"_name":"fit","one":"%1$s fit","other":"%1$s fit"},"furlong":{"_name":"furlong","one":"%1$s furlong","other":"%1$s furlong"},"inch":{"_name":"inç","one":"%1$s inç","other":"%1$s inç"},"kilometer":{"_name":"kilometre","one":"%1$s kilometre","other":"%1$s kilometre"},"light-year":{"_name":"ışık yılı","one":"%1$s ışık yılı","other":"%1$s ışık yılı"},"meter":{"_name":"metre","one":"%1$s metre","other":"%1$s metre"},"micrometer":{"_name":"mikrometre","one":"%1$s mikrometre","other":"%1$s mikrometre"},"mile":{"_name":"mil","one":"%1$s mil","other":"%1$s mil"},"millimeter":{"_name":"milimetre","one":"%1$s milimetre","other":"%1$s milimetre"},"nanometer":{"_name":"nanometre","one":"%1$s nanometre","other":"%1$s nanometre"},"nautical-mile":{"_name":"deniz mili","one":"%1$s deniz mili","other":"%1$s deniz mili"},"parsec":{"_name":"parsek","one":"%1$s parsek","other":"%1$s parsek"},"picometer":{"_name":"pikometre","one":"%1$s pikometre","other":"%1$s pikometre"},"yard":{"_name":"yarda","one":"%1$s yarda","other":"%1$s yarda"}},"light":{"lux":{"_name":"lüks","one":"%1$s lüks","other":"%1$s lüks"}},"mass":{"carat":{"_name":"karat","one":"%1$s karat","other":"%1$s karat"},"gram":{"_name":"gram","one":"%1$s gram","other":"%1$s gram"},"kilogram":{"_name":"kilogram","one":"%1$s kilogram","other":"%1$s kilogram"},"metric-ton":{"_name":"ton","one":"%1$s ton","other":"%1$s ton"},"microgram":{"_name":"mikrogram","one":"%1$s mikrogram","other":"%1$s mikrogram"},"milligram":{"_name":"miligram","one":"%1$s miligram","other":"%1$s miligram"},"ounce":{"_name":"ons","one":"%1$s ons","other":"%1$s ons"},"ounce-troy":{"_name":"troy ons","one":"%1$s troy ons","other":"%1$s troy ons"},"pound":{"_name":"libre","one":"%1$s libre","other":"%1$s libre"},"stone":{"_name":"stone","one":"%1$s stone","other":"%1$s stone"},"ton":{"_name":"Amerikan tonu","one":"%1$s Amerikan tonu","other":"%1$s Amerikan tonu"}},"power":{"gigawatt":{"_name":"gigavat","one":"%1$s gigavat","other":"%1$s gigavat"},"horsepower":{"_name":"beygir gücü","one":"%1$s beygir gücü","other":"%1$s beygir gücü"},"kilowatt":{"_name":"kilovat","one":"%1$s kilovat","other":"%1$s kilovat"},"megawatt":{"_name":"megavat","one":"%1$s megavat","other":"%1$s megavat"},"milliwatt":{"_name":"milivat","one":"%1$s milivat","other":"%1$s milivat"},"watt":{"_name":"vat","one":"%1$s vat","other":"%1$s vat"}},"pressure":{"hectopascal":{"_name":"hektopaskal","one":"%1$s hektopaskal","other":"%1$s hektopaskal"},"inch-hg":{"_name":"inç cıva","one":"%1$s inç cıva","other":"%1$s inç cıva"},"millibar":{"_name":"milibar","one":"%1$s milibar","other":"%1$s milibar"},"millimeter-of-mercury":{"_name":"milimetre cıva","one":"%1$s milimetre cıva","other":"%1$s milimetre cıva"},"pound-per-square-inch":{"_name":"libre/inç kare","one":"%1$s libre/inç kare","other":"%1$s libre/inç kare"}},"proportion":{"karat":{"_name":"ayar","one":"%1$s ayar","other":"%1$s ayar"}},"speed":{"kilometer-per-hour":{"_name":"kilometre/saat","one":"%1$s kilometre/saat","other":"%1$s kilometre/saat"},"meter-per-second":{"_name":"metre/saniye","one":"%1$s metre/saniye","other":"%1$s metre/saniye"},"mile-per-hour":{"_name":"mil/saat","one":"%1$s mil/saat","other":"%1$s mil/saat"}},"temperature":{"celsius":{"_name":"santigrat derece","one":"%1$s santigrat derece","other":"%1$s santigrat derece"},"fahrenheit":{"_name":"fahrenhayt derece","one":"%1$s fahrenhayt derece","other":"%1$s fahrenhayt derece"},"kelvin":{"_name":"kelvin","one":"%1$s kelvin","other":"%1$s kelvin"}},"volume":{"acre-foot":{"_name":"akre fit","one":"%1$s akre fit","other":"%1$s akre fit"},"bushel":{"_name":"buşel","one":"%1$s buşel","other":"%1$s buşel"},"centiliter":{"_name":"santilitre","one":"%1$s santilitre","other":"%1$s santilitre"},"cubic-centimeter":{"_name":"santimetreküp","one":"%1$s santimetreküp","other":"%1$s santimetreküp"},"cubic-foot":{"_name":"fit küp","one":"%1$s fit küp","other":"%1$s fit küp"},"cubic-inch":{"_name":"inç küp","one":"%1$s inç küp","other":"%1$s inç küp"},"cubic-kilometer":{"_name":"kilometre küp","one":"%1$s kilometre küp","other":"%1$s kilometre küp"},"cubic-meter":{"_name":"metreküp","one":"%1$s metreküp","other":"%1$s metreküp"},"cubic-mile":{"_name":"mil küp","one":"%1$s mil küp","other":"%1$s mil küp"},"cubic-yard":{"_name":"yarda küp","one":"%1$s yarda küp","other":"%1$s yarda küp"},"cup":{"_name":"su bardağı","one":"%1$s su bardağı","other":"%1$s su bardağı"},"deciliter":{"_name":"desilitre","one":"%1$s desilitre","other":"%1$s desilitre"},"fluid-ounce":{"_name":"sıvı ons","one":"%1$s sıvı ons","other":"%1$s sıvı ons"},"gallon":{"_name":"galon","one":"%1$s galon","other":"%1$s galon"},"hectoliter":{"_name":"hektolitre","one":"%1$s hektolitre","other":"%1$s hektolitre"},"liter":{"_name":"litre","one":"%1$s litre","other":"%1$s litre"},"megaliter":{"_name":"megalitre","one":"%1$s megalitre","other":"%1$s megalitre"},"milliliter":{"_name":"mililitre","one":"%1$s mililitre","other":"%1$s mililitre"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"yemek kaşığı","one":"%1$s yemek kaşığı","other":"%1$s yemek kaşığı"},"teaspoon":{"_name":"çay kaşığı","one":"%1$s çay kaşığı","other":"%1$s çay kaşığı"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g kuvveti","one":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/sn²","one":"%1$s m/sn²","other":"%1$s m/sn²"}},"angle":{"arc-minute":{"_name":"dakika","one":"%1$s dk.","other":"%1$s dk."},"arc-second":{"_name":"saniye","one":"%1$s sn.","other":"%1$s sn."},"degree":{"_name":"derece","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radyan","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akre","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mil/galon","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bayt","one":"%1$s bayt","other":"%1$s bayt"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"gün","one":"%1$s gün","other":"%1$s gün"},"hour":{"_name":"saat","one":"%1$s sa.","other":"%1$s sa.","_per":"%1$s/sa"},"microsecond":{"_name":"μsn","one":"%1$s μsn","other":"%1$s μsn"},"millisecond":{"_name":"milisaniye","one":"%1$s msn","other":"%1$s msn"},"minute":{"_name":"dakika","one":"%1$s dk.","other":"%1$s dk."},"month":{"_name":"ay","one":"%1$s ay","other":"%1$s ay"},"nanosecond":{"_name":"nanosaniye","one":"%1$s nsn","other":"%1$s nsn"},"second":{"_name":"saniye","one":"%1$s sn.","other":"%1$s sn.","_per":"%1$s/sn"},"week":{"_name":"hafta","one":"%1$s hf.","other":"%1$s hf."},"year":{"_name":"yıl","one":"%1$s yıl","other":"%1$s yıl"}},"electric":{"ampere":{"_name":"amper","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamper","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"jul","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AU","one":"%1$s AU","other":"%1$s AU"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathom","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"fit","one":"%1$s fit","other":"%1$s fit"},"furlong":{"_name":"furlong","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inç","one":"%1$s inç","other":"%1$s inç"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ışık yılı","one":"%1$s IY","other":"%1$s IY"},"meter":{"_name":"metre","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"mikron","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mil","one":"%1$s mil","other":"%1$s mil"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsek","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yarda","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lüks","one":"%1$s lüks","other":"%1$s lüks"}},"mass":{"carat":{"_name":"karat","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"gram","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"ons","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"troy ons","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libre","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stone","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"Amerikan tonu","one":"%1$s kısa ton","other":"%1$s kısa ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"bg","one":"%1$s bg","other":"%1$s bg"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"vat","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","one":"%1$s mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"lb/in²","one":"%1$s lb/in²","other":"%1$s lb/in²"}},"proportion":{"karat":{"_name":"ayar","one":"%1$s ayar","other":"%1$s ayar"}},"speed":{"kilometer-per-hour":{"_name":"km/sa","one":"%1$s km/sa","other":"%1$s km/sa"},"meter-per-second":{"_name":"m/sn","one":"%1$s m/sn","other":"%1$s m/sn"},"mile-per-hour":{"_name":"mil/saat","one":"%1$s mil/sa","other":"%1$s mil/sa"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$sK","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"akre fit","one":"%1$s akre fit","other":"%1$s akre fit"},"bushel":{"_name":"buşel","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"fit³","one":"%1$s fit³","other":"%1$s fit³"},"cubic-inch":{"_name":"inç³","one":"%1$s inç³","other":"%1$s inç³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mil³","one":"%1$s mil³","other":"%1$s mil³"},"cubic-yard":{"_name":"yarda³","one":"%1$s yarda³","other":"%1$s yarda³"},"cup":{"_name":"su b.","one":"%1$s sb","other":"%1$s sb"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"sıvı ons","one":"%1$s sıvı ons","other":"%1$s sıvı ons"},"gallon":{"_name":"galon","one":"%1$s galon","other":"%1$s galon"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litre","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"yk","one":"%1$s yk","other":"%1$s yk"},"teaspoon":{"_name":"çk","one":"%1$s çk","other":"%1$s çk"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"g kuvveti","one":"%1$sG","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/sn²","one":"%1$s m/sn²","other":"%1$s m/sn²"}},"angle":{"arc-minute":{"_name":"dakika","one":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"saniye","one":"%1$s″","other":"%1$s″"},"degree":{"_name":"derece","one":"%1$s°","other":"%1$s°"},"radian":{"_name":"radyan","one":"%1$s rad","other":"%1$s rad"}},"area":{"acre":{"_name":"akre","one":"%1$s ac","other":"%1$s ac"},"hectare":{"_name":"hektar","one":"%1$s ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","one":"%1$s cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","one":"%1$s ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","one":"%1$s in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","one":"%1$s km²","other":"%1$s km²"},"square-meter":{"_name":"m²","one":"%1$s m²","other":"%1$s m²"},"square-mile":{"_name":"mi²","one":"%1$s mi²","other":"%1$s mi²"},"square-yard":{"_name":"yd²","one":"%1$s yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","one":"%1$s l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mil/galon","one":"%1$s mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","one":"%1$s bit","other":"%1$s bit"},"byte":{"_name":"bayt","one":"%1$s byte","other":"%1$s byte"},"gigabit":{"_name":"Gbit","one":"%1$s Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","one":"%1$s GB","other":"%1$s GB"},"kilobit":{"_name":"kbit","one":"%1$s kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","one":"%1$s kB","other":"%1$s kB"},"megabit":{"_name":"Mbit","one":"%1$s Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","one":"%1$s MB","other":"%1$s MB"},"terabit":{"_name":"Tbit","one":"%1$s Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","one":"%1$s TB","other":"%1$s TB"}},"duration":{"day":{"_name":"gün","one":"%1$sg","other":"%1$sg"},"hour":{"_name":"saat","one":"%1$ss","other":"%1$ss","_per":"%1$s/sa"},"microsecond":{"_name":"μsn","one":"%1$s μsn","other":"%1$s μsn"},"millisecond":{"_name":"msn","one":"%1$smsn","other":"%1$smsn"},"minute":{"_name":"dakika","one":"%1$sd","other":"%1$sd"},"month":{"_name":"ay","one":"%1$sa","other":"%1$sa"},"nanosecond":{"_name":"nanosaniye","one":"%1$s nsn","other":"%1$s nsn"},"second":{"_name":"saniye","one":"%1$ssn","other":"%1$ssn","_per":"%1$s/sn"},"week":{"_name":"hafta","one":"%1$sh","other":"%1$sh"},"year":{"_name":"yıl","one":"%1$sy","other":"%1$sy"}},"electric":{"ampere":{"_name":"amper","one":"%1$s A","other":"%1$s A"},"milliampere":{"_name":"miliamper","one":"%1$s mA","other":"%1$s mA"},"ohm":{"_name":"ohm","one":"%1$s Ω","other":"%1$s Ω"},"volt":{"_name":"volt","one":"%1$s V","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","one":"%1$s cal","other":"%1$s cal"},"foodcalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"joule":{"_name":"jul","one":"%1$s J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","one":"%1$s kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","one":"%1$s kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","one":"%1$s kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","one":"%1$s GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","one":"%1$s Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","one":"%1$s kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","one":"%1$s MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"AU","one":"%1$s AU","other":"%1$s AU"},"centimeter":{"_name":"cm","one":"%1$s cm","other":"%1$s cm"},"decimeter":{"_name":"dm","one":"%1$s dm","other":"%1$s dm"},"fathom":{"_name":"fathom","one":"%1$s fm","other":"%1$s fm"},"foot":{"_name":"fit","one":"%1$s′","other":"%1$s′"},"furlong":{"_name":"furlong","one":"%1$s fur","other":"%1$s fur"},"inch":{"_name":"inç","one":"%1$s″","other":"%1$s″"},"kilometer":{"_name":"km","one":"%1$s km","other":"%1$s km"},"light-year":{"_name":"ışık yılı","one":"%1$s IY","other":"%1$s IY"},"meter":{"_name":"metre","one":"%1$s m","other":"%1$s m"},"micrometer":{"_name":"mikron","one":"%1$s µm","other":"%1$s µm"},"mile":{"_name":"mil","one":"%1$s mil","other":"%1$s mil"},"millimeter":{"_name":"mm","one":"%1$s mm","other":"%1$s mm"},"nanometer":{"_name":"nm","one":"%1$s nm","other":"%1$s nm"},"nautical-mile":{"_name":"nmi","one":"%1$s nmi","other":"%1$s nmi"},"parsec":{"_name":"parsek","one":"%1$s pc","other":"%1$s pc"},"picometer":{"_name":"pm","one":"%1$s pm","other":"%1$s pm"},"yard":{"_name":"yarda","one":"%1$s yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lüks","one":"%1$s lüks","other":"%1$s lüks"}},"mass":{"carat":{"_name":"karat","one":"%1$s ct","other":"%1$s ct"},"gram":{"_name":"gram","one":"%1$s g","other":"%1$s g"},"kilogram":{"_name":"kg","one":"%1$s kg","other":"%1$s kg"},"metric-ton":{"_name":"t","one":"%1$s t","other":"%1$s t"},"microgram":{"_name":"µg","one":"%1$s µg","other":"%1$s µg"},"milligram":{"_name":"mg","one":"%1$s mg","other":"%1$s mg"},"ounce":{"_name":"ons","one":"%1$s oz","other":"%1$s oz"},"ounce-troy":{"_name":"troy ons","one":"%1$s oz t","other":"%1$s oz t"},"pound":{"_name":"libre","one":"%1$s lb","other":"%1$s lb"},"stone":{"_name":"stone","one":"%1$s st","other":"%1$s st"},"ton":{"_name":"Amerikan tonu","one":"%1$s kısa ton","other":"%1$s kısa ton"}},"power":{"gigawatt":{"_name":"GW","one":"%1$s GW","other":"%1$s GW"},"horsepower":{"_name":"bg","one":"%1$s hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","one":"%1$s kW","other":"%1$s kW"},"megawatt":{"_name":"MW","one":"%1$s MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","one":"%1$s mW","other":"%1$s mW"},"watt":{"_name":"vat","one":"%1$s W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","one":"%1$s hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","one":"%1$s\" Hg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","one":"%1$s mb","other":"%1$s mb"},"millimeter-of-mercury":{"_name":"mm Hg","one":"%1$s mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"lb/in²","one":"%1$s lb/in²","other":"%1$s lb/in²"}},"proportion":{"karat":{"_name":"ayar","one":"%1$s ayar","other":"%1$s ayar"}},"speed":{"kilometer-per-hour":{"_name":"km/sa","one":"%1$s km/sa","other":"%1$s km/sa"},"meter-per-second":{"_name":"m/sn","one":"%1$s m/sn","other":"%1$s m/sn"},"mile-per-hour":{"_name":"mil/saat","one":"%1$s mil/sa","other":"%1$s mil/sa"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","one":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"K","one":"%1$s°K","other":"%1$s°K"}},"volume":{"acre-foot":{"_name":"akre fit","one":"%1$s akre fit","other":"%1$s akre fit"},"bushel":{"_name":"buşel","one":"%1$s bu","other":"%1$s bu"},"centiliter":{"_name":"cl","one":"%1$s cl","other":"%1$s cl"},"cubic-centimeter":{"_name":"cm³","one":"%1$s cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"fit³","one":"%1$s fit³","other":"%1$s fit³"},"cubic-inch":{"_name":"inç³","one":"%1$s inç³","other":"%1$s inç³"},"cubic-kilometer":{"_name":"km³","one":"%1$s km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","one":"%1$s m³","other":"%1$s m³"},"cubic-mile":{"_name":"mil³","one":"%1$s mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yarda³","one":"%1$s yarda³","other":"%1$s yarda³"},"cup":{"_name":"su b.","one":"%1$s sb","other":"%1$s sb"},"deciliter":{"_name":"dl","one":"%1$s dl","other":"%1$s dl"},"fluid-ounce":{"_name":"sıvı ons","one":"%1$s sıvı ons","other":"%1$s sıvı ons"},"gallon":{"_name":"galon","one":"%1$s galon","other":"%1$s galon"},"hectoliter":{"_name":"hl","one":"%1$s hl","other":"%1$s hl"},"liter":{"_name":"litre","one":"%1$s l","other":"%1$s l"},"megaliter":{"_name":"Ml","one":"%1$s Ml","other":"%1$s Ml"},"milliliter":{"_name":"ml","one":"%1$s ml","other":"%1$s ml"},"pint":{"_name":"pint","one":"%1$s pint","other":"%1$s pint"},"quart":{"_name":"quart","one":"%1$s quart","other":"%1$s quart"},"tablespoon":{"_name":"yk","one":"%1$s yk","other":"%1$s yk"},"teaspoon":{"_name":"çk","one":"%1$s çk","other":"%1$s çk"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/uk/calendar.json b/Punic/data/uk/calendar.json new file mode 100644 index 0000000..ea40b70 --- /dev/null +++ b/Punic/data/uk/calendar.json @@ -0,0 +1 @@ +{"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":"I кв.","2":"II кв.","3":"III кв.","4":"IV кв."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"I квартал","2":"II квартал","3":"III квартал","4":"IV квартал"}},"stand-alone":{"abbreviated":{"1":"1-й кв.","2":"2-й кв.","3":"3-й кв.","4":"4-й кв."},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"1-й квартал","2":"2-й квартал","3":"3-й квартал","4":"4-й квартал"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","night":"ночі","noon":"полудня","pm":"пп"},"narrow":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","noon":"п","pm":"пп"},"wide":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","night":"ночі","noon":"полудня","pm":"пп"}},"stand-alone":{"abbreviated":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","night":"ночі","noon":"полудня","pm":"пп"},"narrow":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","noon":"п","pm":"пп"},"wide":{"afternoon":"дня","am":"дп","evening":"вечора","morning":"ранку","night":"ночі","noon":"полудня","pm":"пп"}}},"eras":{"wide":{"0":"до нашої ери","0-alt-variant":"BCE","1":"нашої ери","1-alt-variant":"н. е."},"abbreviated":{"0":"до н.е.","0-alt-variant":"BCE","1":"н.е.","1-alt-variant":"н. е."},"narrow":{"0":"до н.е.","0-alt-variant":"до н. е.","1":"н.е.","1-alt-variant":"н. е."}},"dateFormats":{"full":"EEEE, d MMMM y 'р'.","long":"d MMMM y 'р'.","medium":"d MMM 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":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/uk/dateFields.json b/Punic/data/uk/dateFields.json new file mode 100644 index 0000000..f185740 --- /dev/null +++ b/Punic/data/uk/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Ера"},"year":{"displayName":"Рік","relative-type--1":"торік","relative-type-0":"цього року","relative-type-1":"наступного року","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} рік","relativeTimePattern-count-few":"через {0} роки","relativeTimePattern-count-many":"через {0} років","relativeTimePattern-count-other":"через {0} року"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} рік тому","relativeTimePattern-count-few":"{0} роки тому","relativeTimePattern-count-many":"{0} років тому","relativeTimePattern-count-other":"{0} року тому"}},"year-short":{"displayName":"р.","relative-type--1":"торік","relative-type-0":"цього року","relative-type-1":"наступного року","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} р.","relativeTimePattern-count-few":"через {0} р.","relativeTimePattern-count-many":"через {0} р.","relativeTimePattern-count-other":"через {0} р."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} р. тому","relativeTimePattern-count-few":"{0} р. тому","relativeTimePattern-count-many":"{0} р. тому","relativeTimePattern-count-other":"{0} р. тому"}},"year-narrow":{"displayName":"р.","relative-type--1":"торік","relative-type-0":"цього року","relative-type-1":"наступного року","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} р.","relativeTimePattern-count-few":"+{0} р.","relativeTimePattern-count-many":"+{0} р.","relativeTimePattern-count-other":"+{0} р."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} р.","relativeTimePattern-count-few":"-{0} р.","relativeTimePattern-count-many":"-{0} р.","relativeTimePattern-count-other":"-{0} р."}},"quarter":{"displayName":"Квартал","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} квартал","relativeTimePattern-count-few":"через {0} квартали","relativeTimePattern-count-many":"через {0} кварталів","relativeTimePattern-count-other":"через {0} кварталу"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} квартал тому","relativeTimePattern-count-few":"{0} квартали тому","relativeTimePattern-count-many":"{0} кварталів тому","relativeTimePattern-count-other":"{0} кварталу тому"}},"quarter-short":{"displayName":"кв.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} кв.","relativeTimePattern-count-few":"через {0} кв.","relativeTimePattern-count-many":"через {0} кв.","relativeTimePattern-count-other":"через {0} кв."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} кв. тому","relativeTimePattern-count-few":"{0} кв. тому","relativeTimePattern-count-many":"{0} кв. тому","relativeTimePattern-count-other":"{0} кв. тому"}},"quarter-narrow":{"displayName":"кв.","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} кв.","relativeTimePattern-count-few":"+{0} кв.","relativeTimePattern-count-many":"+{0} кв.","relativeTimePattern-count-other":"+{0} кв."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} кв.","relativeTimePattern-count-few":"-{0} кв.","relativeTimePattern-count-many":"-{0} кв.","relativeTimePattern-count-other":"-{0} кв."}},"month":{"displayName":"Місяць","relative-type--1":"минулого місяця","relative-type-0":"цього місяця","relative-type-1":"наступного місяця","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} місяць","relativeTimePattern-count-few":"через {0} місяці","relativeTimePattern-count-many":"через {0} місяців","relativeTimePattern-count-other":"через {0} місяця"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} місяць тому","relativeTimePattern-count-few":"{0} місяці тому","relativeTimePattern-count-many":"{0} місяців тому","relativeTimePattern-count-other":"{0} місяця тому"}},"month-short":{"displayName":"міс.","relative-type--1":"минулого місяця","relative-type-0":"цього місяця","relative-type-1":"наступного місяця","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} міс.","relativeTimePattern-count-few":"через {0} міс.","relativeTimePattern-count-many":"через {0} міс.","relativeTimePattern-count-other":"через {0} міс."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} міс. тому","relativeTimePattern-count-few":"{0} міс. тому","relativeTimePattern-count-many":"{0} міс. тому","relativeTimePattern-count-other":"{0} міс. тому"}},"month-narrow":{"displayName":"міс.","relative-type--1":"минулого місяця","relative-type-0":"цього місяця","relative-type-1":"наступного місяця","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} міс.","relativeTimePattern-count-few":"+{0} міс.","relativeTimePattern-count-many":"+{0} міс.","relativeTimePattern-count-other":"+{0} міс."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} міс.","relativeTimePattern-count-few":"-{0} міс.","relativeTimePattern-count-many":"-{0} міс.","relativeTimePattern-count-other":"-{0} міс."}},"week":{"displayName":"Тиждень","relative-type--1":"минулого тижня","relative-type-0":"цього тижня","relative-type-1":"наступного тижня","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} тиждень","relativeTimePattern-count-few":"через {0} тижні","relativeTimePattern-count-many":"через {0} тижнів","relativeTimePattern-count-other":"через {0} тижня"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} тиждень тому","relativeTimePattern-count-few":"{0} тижні тому","relativeTimePattern-count-many":"{0} тижнів тому","relativeTimePattern-count-other":"{0} тижня тому"}},"week-short":{"displayName":"тиж.","relative-type--1":"минулого тижня","relative-type-0":"цього тижня","relative-type-1":"наступного тижня","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} тиж.","relativeTimePattern-count-few":"через {0} тиж.","relativeTimePattern-count-many":"через {0} тиж.","relativeTimePattern-count-other":"через {0} тиж."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} тиж. тому","relativeTimePattern-count-few":"{0} тиж. тому","relativeTimePattern-count-many":"{0} тиж. тому","relativeTimePattern-count-other":"{0} тиж. тому"}},"week-narrow":{"displayName":"тиж.","relative-type--1":"минулого тижня","relative-type-0":"цього тижня","relative-type-1":"наступного тижня","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} тиж.","relativeTimePattern-count-few":"+{0} тиж.","relativeTimePattern-count-many":"+{0} тиж.","relativeTimePattern-count-other":"+{0} тиж."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} тиж.","relativeTimePattern-count-few":"-{0} тиж.","relativeTimePattern-count-many":"-{0} тиж.","relativeTimePattern-count-other":"-{0} тиж."}},"day":{"displayName":"День","relative-type--1":"учора","relative-type--2":"позавчора","relative-type-0":"сьогодні","relative-type-1":"завтра","relative-type-2":"післязавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} день","relativeTimePattern-count-few":"через {0} дні","relativeTimePattern-count-many":"через {0} днів","relativeTimePattern-count-other":"через {0} дня"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} день тому","relativeTimePattern-count-few":"{0} дні тому","relativeTimePattern-count-many":"{0} днів тому","relativeTimePattern-count-other":"{0} дня тому"}},"day-short":{"displayName":"д.","relative-type--1":"учора","relative-type--2":"позавчора","relative-type-0":"сьогодні","relative-type-1":"завтра","relative-type-2":"післязавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} д.","relativeTimePattern-count-few":"через {0} дн.","relativeTimePattern-count-many":"через {0} дн.","relativeTimePattern-count-other":"через {0} дн."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} д. тому","relativeTimePattern-count-few":"{0} дн. тому","relativeTimePattern-count-many":"{0} дн. тому","relativeTimePattern-count-other":"{0} дн. тому"}},"day-narrow":{"displayName":"д.","relative-type--1":"учора","relative-type--2":"позавчора","relative-type-0":"сьогодні","relative-type-1":"завтра","relative-type-2":"післязавтра","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} день","relativeTimePattern-count-few":"+{0} дн.","relativeTimePattern-count-many":"+{0} дн.","relativeTimePattern-count-other":"+{0} дн."},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} день","relativeTimePattern-count-few":"-{0} дн.","relativeTimePattern-count-many":"-{0} дн.","relativeTimePattern-count-other":"-{0} дн."}},"weekday":{"displayName":"День тижня"},"sun":{"relative-type--1":"минулої неділі","relative-type-0":"цієї неділі","relative-type-1":"наступної неділі"},"sun-short":{"relative-type--1":"минулої нд","relative-type-0":"цієї нд","relative-type-1":"наступної нд"},"sun-narrow":{"relative-type--1":"мин. нд","relative-type-0":"цієї нд","relative-type-1":"наст. нд"},"mon":{"relative-type--1":"минулого понеділка","relative-type-0":"цього понеділка","relative-type-1":"наступного понеділка"},"mon-short":{"relative-type--1":"минулого пн","relative-type-0":"цього пн","relative-type-1":"наступного пн"},"mon-narrow":{"relative-type--1":"мин. пн","relative-type-0":"цього пн","relative-type-1":"наст. пн"},"tue":{"relative-type--1":"минулого вівторка","relative-type-0":"цього вівторка","relative-type-1":"наступного вівторка"},"tue-short":{"relative-type--1":"минулого вт","relative-type-0":"цього вт","relative-type-1":"наступного вт"},"tue-narrow":{"relative-type--1":"мин. вт","relative-type-0":"цього вт","relative-type-1":"наст. вт"},"wed":{"relative-type--1":"минулої середи","relative-type-0":"цієї середи","relative-type-1":"наступної середи"},"wed-short":{"relative-type--1":"минулої ср","relative-type-0":"цієї ср","relative-type-1":"наступної ср"},"wed-narrow":{"relative-type--1":"мин. ср","relative-type-0":"цієї ср","relative-type-1":"наст. ср"},"thu":{"relative-type--1":"минулого четверга","relative-type-0":"цього четверга","relative-type-1":"наступного четверга"},"thu-short":{"relative-type--1":"минулого чт","relative-type-0":"цього чт","relative-type-1":"наступного чт"},"thu-narrow":{"relative-type--1":"мин. чт","relative-type-0":"цього чт","relative-type-1":"наст. чт"},"fri":{"relative-type--1":"минулої п’ятниці","relative-type-0":"цієї п’ятниці","relative-type-1":"наступної п’ятниці"},"fri-short":{"relative-type--1":"минулої пт","relative-type-0":"цієї пт","relative-type-1":"наступної пт"},"fri-narrow":{"relative-type--1":"мин. пт","relative-type-0":"цієї пт","relative-type-1":"наст. пт"},"sat":{"relative-type--1":"минулої суботи","relative-type-0":"цієї суботи","relative-type-1":"наступної суботи"},"sat-short":{"relative-type--1":"минулої сб","relative-type-0":"цієї сб","relative-type-1":"наступної сб"},"sat-narrow":{"relative-type--1":"мин. сб","relative-type-0":"цієї сб","relative-type-1":"наст. сб"},"dayperiod":{"displayName":"Частина доби"},"hour":{"displayName":"Година","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} годину","relativeTimePattern-count-few":"через {0} години","relativeTimePattern-count-many":"через {0} годин","relativeTimePattern-count-other":"через {0} години"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} годину тому","relativeTimePattern-count-few":"{0} години тому","relativeTimePattern-count-many":"{0} годин тому","relativeTimePattern-count-other":"{0} години тому"}},"hour-short":{"displayName":"год","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} год","relativeTimePattern-count-few":"через {0} год","relativeTimePattern-count-many":"через {0} год","relativeTimePattern-count-other":"через {0} год"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} год тому","relativeTimePattern-count-few":"{0} год тому","relativeTimePattern-count-many":"{0} год тому","relativeTimePattern-count-other":"{0} год тому"}},"hour-narrow":{"displayName":"год","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} год","relativeTimePattern-count-few":"+{0} год","relativeTimePattern-count-many":"+{0} год","relativeTimePattern-count-other":"+{0} год"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} год","relativeTimePattern-count-few":"-{0} год","relativeTimePattern-count-many":"-{0} год","relativeTimePattern-count-other":"-{0} год"}},"minute":{"displayName":"Хвилина","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} хвилину","relativeTimePattern-count-few":"через {0} хвилини","relativeTimePattern-count-many":"через {0} хвилин","relativeTimePattern-count-other":"через {0} хвилини"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} хвилину тому","relativeTimePattern-count-few":"{0} хвилини тому","relativeTimePattern-count-many":"{0} хвилин тому","relativeTimePattern-count-other":"{0} хвилини тому"}},"minute-short":{"displayName":"хв","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} хв","relativeTimePattern-count-few":"через {0} хв","relativeTimePattern-count-many":"через {0} хв","relativeTimePattern-count-other":"через {0} хв"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} хв тому","relativeTimePattern-count-few":"{0} хв тому","relativeTimePattern-count-many":"{0} хв тому","relativeTimePattern-count-other":"{0} хв тому"}},"minute-narrow":{"displayName":"хв","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} хв","relativeTimePattern-count-few":"+{0} хв","relativeTimePattern-count-many":"+{0} хв","relativeTimePattern-count-other":"+{0} хв"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} хв","relativeTimePattern-count-few":"-{0} хв","relativeTimePattern-count-many":"-{0} хв","relativeTimePattern-count-other":"-{0} хв"}},"second":{"displayName":"Секунда","relative-type-0":"зараз","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} секунду","relativeTimePattern-count-few":"через {0} секунди","relativeTimePattern-count-many":"через {0} секунд","relativeTimePattern-count-other":"через {0} секунди"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} секунду тому","relativeTimePattern-count-few":"{0} секунди тому","relativeTimePattern-count-many":"{0} секунд тому","relativeTimePattern-count-other":"{0} секунди тому"}},"second-short":{"displayName":"с","relative-type-0":"зараз","relativeTime-type-future":{"relativeTimePattern-count-one":"через {0} с","relativeTimePattern-count-few":"через {0} с","relativeTimePattern-count-many":"через {0} с","relativeTimePattern-count-other":"через {0} с"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} с тому","relativeTimePattern-count-few":"{0} с тому","relativeTimePattern-count-many":"{0} с тому","relativeTimePattern-count-other":"{0} с тому"}},"second-narrow":{"displayName":"с","relative-type-0":"зараз","relativeTime-type-future":{"relativeTimePattern-count-one":"+{0} с","relativeTimePattern-count-few":"+{0} с","relativeTimePattern-count-many":"+{0} с","relativeTimePattern-count-other":"+{0} с"},"relativeTime-type-past":{"relativeTimePattern-count-one":"-{0} с","relativeTimePattern-count-few":"-{0} с","relativeTimePattern-count-many":"-{0} с","relativeTimePattern-count-other":"-{0} с"}},"zone":{"displayName":"Часовий пояс"}} \ No newline at end of file diff --git a/Punic/data/uk/languages.json b/Punic/data/uk/languages.json new file mode 100644 index 0000000..63264ad --- /dev/null +++ b/Punic/data/uk/languages.json @@ -0,0 +1 @@ +{"aa":"афарська","ab":"абхазька","ace":"ачехська","ach":"ачолі","ada":"адангме","ady":"адигейська","ae":"авестійська","aeb":"aeb","af":"африкаанс","afh":"африхілі","agq":"агем","ain":"айнська","ak":"акан","akk":"аккадська","akz":"akz","ale":"алеутська","aln":"aln","alt":"південноалтайська","am":"амхарська","an":"арагонська","ang":"давньоанглійська","anp":"ангіка","ar":"арабська","ar-001":"сучасна стандартна арабська","arc":"арамейська","arn":"арауканська","aro":"aro","arp":"арапахо","arq":"arq","arw":"аравакська","ary":"ary","arz":"arz","as":"ассамська","asa":"асу","ase":"ase","ast":"астурська","av":"аварська","avk":"avk","awa":"авадхі","ay":"аймара","az":"азербайджанська","az-alt-short":"азербайджанська","azb":"azb","ba":"башкирська","bal":"балучі","ban":"балійська","bar":"bar","bas":"баса","bax":"бамум","bbc":"bbc","bbj":"гомала","be":"білоруська","bej":"беджа","bem":"бемба","bew":"bew","bez":"бена","bfd":"бафут","bfq":"bfq","bg":"болгарська","bho":"бходжпурі","bi":"біслама","bik":"бікольська","bin":"біні","bjn":"bjn","bkm":"ком","bla":"сіксіка","bm":"бамбара","bn":"бенгальська","bo":"тибетська","bpy":"bpy","bqi":"bqi","br":"бретонська","bra":"брадж","brh":"brh","brx":"бодо","bs":"боснійська","bss":"акус","bua":"бурятська","bug":"бугійська","bum":"булу","byn":"блін","byv":"медумба","ca":"каталонська","cad":"каддо","car":"карібська","cay":"кайюга","cch":"атсам","ce":"чеченська","ceb":"себуанська","cgg":"кіга","ch":"чаморро","chb":"чібча","chg":"чагатайська","chk":"чуукська","chm":"марійська","chn":"чинук жаргон","cho":"чокто","chp":"чіпев’ян","chr":"черокі","chy":"чейєнн","ckb":"курдська (сорані)","co":"корсиканська","cop":"коптська","cps":"cps","cr":"крі","crh":"кримськотатарська","cs":"чеська","csb":"кашубська","cu":"церковнослов’янська","cv":"чуваська","cy":"валлійська","da":"данська","dak":"дакота","dar":"даргінська","dav":"таіта","de":"німецька","de-AT":"de_AT","de-CH":"верхньонімецька (Швейцарія)","del":"делаварська","den":"слейв","dgr":"догрибська","din":"дінка","dje":"джерма","doi":"догрі","dsb":"нижньолужицька","dtp":"dtp","dua":"дуала","dum":"середньонідерландська","dv":"дівехі","dyo":"дьола-фоні","dyu":"діула","dz":"дзонг-ке","dzg":"дазага","ebu":"ембу","ee":"еве","efi":"ефік","egl":"egl","egy":"давньоєгипетська","eka":"екаджук","el":"грецька","elx":"еламська","en":"англійська","en-AU":"en_AU","en-CA":"en_CA","en-GB":"англійська британська","en-GB-alt-short":"en_GB","en-US":"en_US","en-US-alt-short":"en_US","enm":"середньоанглійська","eo":"есперанто","es":"іспанська","es-419":"es_419","es-ES":"іспанська (Європа)","es-MX":"es_MX","esu":"esu","et":"естонська","eu":"баскська","ewo":"евондо","ext":"ext","fa":"перська","fan":"фанг","fat":"фанті","ff":"фула","fi":"фінська","fil":"філіппінська","fit":"fit","fj":"фіджі","fo":"фарерська","fon":"фон","fr":"французька","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"frc","frm":"середньофранцузька","fro":"давньофранцузька","frp":"frp","frr":"фризька північна","frs":"фризька східна","fur":"фріульська","fy":"західно-фризька","ga":"ірландська","gaa":"га","gag":"гагаузька","gan":"gan","gay":"гайо","gba":"гбайя","gbz":"gbz","gd":"гаельська","gez":"гєез","gil":"гільбертська","gl":"галісійська","glk":"glk","gmh":"середньоверхньонімецька","gn":"гуарані","goh":"давньоверхньонімецька","gom":"gom","gon":"гонді","gor":"горонтало","got":"готська","grb":"гребо","grc":"давньогрецька","gsw":"німецька швейцарська","gu":"гуджараті","guc":"guc","gur":"gur","guz":"гусії","gv":"менкська","gwi":"кучін","ha":"хауса","hai":"хайда","hak":"hak","haw":"гавайська","he":"іврит","hi":"гінді","hif":"hif","hil":"хілігайнон","hit":"хітіті","hmn":"хмонг","ho":"хірі-моту","hr":"хорватська","hsb":"верхньолужицька","hsn":"hsn","ht":"гаїтянська","hu":"угорська","hup":"хупа","hy":"вірменська","hz":"гереро","ia":"інтерлінгва","iba":"ібанська","ibb":"ібібіо","id":"індонезійська","ie":"інтерлінгве","ig":"ігбо","ii":"сичуань","ik":"інупіак","ilo":"ілоканська","inh":"інгуська","io":"ідо","is":"ісландська","it":"італійська","iu":"інуктітут","izh":"izh","ja":"японська","jam":"jam","jbo":"ложбан","jgo":"нгомба","jmc":"мачаме","jpr":"іудео-перська","jrb":"іудео-арабська","jut":"jut","jv":"яванська","ka":"грузинська","kaa":"каракалпацька","kab":"кабільська","kac":"качін","kaj":"йю","kam":"камба","kaw":"каві","kbd":"кабардинська","kbl":"канембу","kcg":"тіап","kde":"маконде","kea":"кабувердіану","ken":"ken","kfo":"коро","kg":"конґолезька","kgp":"kgp","kha":"кхасі","kho":"хотаносакська","khq":"койра чіїні","khw":"khw","ki":"кікуйю","kiu":"kiu","kj":"кунама","kk":"казахська","kkj":"како","kl":"калааллісут","kln":"календжин","km":"кхмерська","kmb":"кімбунду","kn":"каннада","ko":"корейська","koi":"комі-перм’яцька","kok":"конкані","kos":"косрае","kpe":"кпеллє","kr":"канурі","krc":"карачаєво-балкарська","kri":"kri","krj":"krj","krl":"карельська","kru":"курукх","ks":"кашмірська","ksb":"шамбала","ksf":"бафіа","ksh":"колоніан","ku":"курдська","kum":"кумицька","kut":"кутенаї","kv":"комі","kw":"корнійська","ky":"киргизька","la":"латинська","lad":"ладіно","lag":"лангі","lah":"ланда","lam":"ламба","lb":"люксембурзька","lez":"лезгінська","lfn":"lfn","lg":"ганда","li":"лімбургійська","lij":"lij","liv":"liv","lkt":"лакота","lmo":"lmo","ln":"лінгала","lo":"лаоська","lol":"монго","loz":"лозі","lt":"литовська","ltg":"ltg","lu":"луба-катанга","lua":"луба-лулуа","lui":"луїсеньо","lun":"лунда","luo":"луо","lus":"лушей","luy":"луйя","lv":"латвійська","lzh":"lzh","lzz":"lzz","mad":"мадурська","maf":"мафа","mag":"магадхі","mai":"майтхілі","mak":"макасарська","man":"мандінго","mas":"масаї","mde":"маба","mdf":"мокша","mdr":"мандарська","men":"менде","mer":"меру","mfe":"маврикійська креольська","mg":"малагасійська","mga":"середньоірландська","mgh":"макува-меето","mgo":"мета","mh":"маршалльська","mi":"маорі","mic":"мікмак","min":"мінангкабау","mk":"македонська","ml":"малаялам","mn":"монгольська","mnc":"манчжурська","mni":"маніпурі","moh":"магавк","mos":"моссі","mr":"маратхі","mrj":"mrj","ms":"малайська","mt":"мальтійська","mua":"мунданг","mul":"декілька мов","mus":"крік","mwl":"мірандська","mwr":"марварі","mwv":"mwv","my":"бірманська","mye":"миін","myv":"ерзя","mzn":"mzn","na":"науру","nan":"nan","nap":"неаполітанська","naq":"нама","nb":"букмол (Норвегія)","nd":"ндебелє північна","nds":"нижньонімецька","ne":"непальська","new":"неварі","ng":"ндонга","nia":"ніаська","niu":"ніуе","njo":"njo","nl":"голландська","nl-BE":"фламандська","nmg":"квазіо","nn":"нюношк (Норвегія)","nnh":"нгємбун","no":"норвезька","nog":"ногайська","non":"давньонорвезька","nov":"nov","nqo":"нко","nr":"ндебелє південна","nso":"сото північна","nus":"нуер","nv":"навахо","nwc":"неварі класична","ny":"ньянджа","nym":"ньямвезі","nyn":"ньянколе","nyo":"ньоро","nzi":"нзіма","oc":"окитан","oj":"оджібва","om":"оромо","or":"орія","os":"осетинська","osa":"осейдж","ota":"османська","pa":"панджабі","pag":"пангасінанська","pal":"пехлеві","pam":"пампанга","pap":"пап’яменто","pau":"палауанська","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"давньоперська","pfl":"pfl","phn":"фінікійсько-пунічна","pi":"палі","pl":"польська","pms":"pms","pnt":"pnt","pon":"понапе","prg":"prg","pro":"давньопровансальська","ps":"пушту","pt":"португальська","pt-BR":"pt_BR","pt-PT":"португальська (Європа)","qu":"кечуа","quc":"кіче","qug":"qug","raj":"раджастхані","rap":"рапануї","rar":"раротонга","rgn":"rgn","rif":"rif","rm":"ретороманська","rn":"рунді","ro":"румунська","ro-MD":"молдавська","rof":"ромбо","rom":"циганська","root":"корінь","rtm":"rtm","ru":"російська","rue":"rue","rug":"rug","rup":"арумунська","rw":"кіньяруанда","rwk":"Рва","sa":"санскрит","sad":"сандаве","sah":"якутська","sam":"самаритянська арамейська","saq":"самбуру","sas":"сасакська","sat":"сантальська","saz":"saz","sba":"нгамбай","sbp":"сангу","sc":"сардинська","scn":"сицилійська","sco":"шотландська","sd":"сіндхі","sdc":"sdc","se":"саамська північна","see":"сенека","seh":"сена","sei":"sei","sel":"селькупська","ses":"койраборо сені","sg":"санго","sga":"давньоірландська","sgs":"sgs","sh":"сербсько-хорватська","shi":"тачеліт","shn":"шанська","shu":"чадійська арабська","si":"сингальська","sid":"сідамо","sk":"словацька","sl":"словенська","sli":"sli","sly":"sly","sm":"самоанська","sma":"саамська південна","smj":"саамська луле","smn":"саамська інарі","sms":"саамська скольт","sn":"шона","snk":"сонінке","so":"сомалі","sog":"согдійська","sq":"албанська","sr":"сербська","srn":"сранан тонго","srr":"серер","ss":"сісваті","ssy":"сахо","st":"сото південна","stq":"stq","su":"сунданська","suk":"сукума","sus":"сусу","sux":"шумерська","sv":"шведська","sw":"суахілі","swb":"коморська","swc":"конгійське суахілі","syc":"сирійська класична","syr":"сирійська","szl":"szl","ta":"тамільська","tcy":"tcy","te":"телугу","tem":"темне","teo":"тесо","ter":"терено","tet":"тетум","tg":"таджицька","th":"тайська","ti":"тигринья","tig":"тигре","tiv":"тів","tk":"туркменська","tkl":"токелау","tkr":"tkr","tl":"тагальська","tlh":"клінгон","tli":"тлінгіт","tly":"tly","tmh":"тамашек","tn":"тсвана","to":"тонганська","tog":"ньяса тонга","tpi":"ток-пісін","tr":"турецька","tru":"tru","trv":"тароко","ts":"тсонга","tsd":"tsd","tsi":"цимшиан","tt":"татарська","ttt":"ttt","tum":"тумбука","tvl":"тувалу","tw":"тві","twq":"тасавак","ty":"таїтянська","tyv":"тувинська","tzm":"центральномароканська тамазіт","udm":"удмуртська","ug":"уйгурська","uga":"угаритська","uk":"українська","umb":"умбунду","und":"невідома мова","ur":"урду","uz":"узбецька","vai":"ваї","ve":"венда","vec":"vec","vep":"vep","vi":"вʼєтнамська","vls":"vls","vmf":"vmf","vo":"волап’юк","vot":"водська","vro":"vro","vun":"вуньо","wa":"валлонська","wae":"Валзерська","wal":"валамо","war":"варай","was":"вашо","wo":"волоф","wuu":"wuu","xal":"калмицька","xh":"кхоса","xmf":"xmf","xog":"сога","yao":"яо","yap":"яп","yav":"янгбен","ybb":"ємба","yi":"ідиш","yo":"йоруба","yrl":"yrl","yue":"кантонська","za":"чжуан","zap":"сапотекська","zbl":"блісса мова","zea":"zea","zen":"зенага","zgh":"стандартна марокканська берберська","zh":"китайська","zh-Hans":"zh_Hans","zh-Hant":"zh_Hant","zu":"зулуська","zun":"зуньї","zxx":"немає мовного вмісту","zza":"зазакі"} \ No newline at end of file diff --git a/Punic/data/uk/listPatterns.json b/Punic/data/uk/listPatterns.json new file mode 100644 index 0000000..26d1b62 --- /dev/null +++ b/Punic/data/uk/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s і %2$s","2":"%1$s і %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s і %2$s","2":"%1$s і %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/uk/localeDisplayNames.json b/Punic/data/uk/localeDisplayNames.json new file mode 100644 index 0000000..253ef99 --- /dev/null +++ b/Punic/data/uk/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Календар","colAlternate":"Ігнорувати сортування за символами","colBackwards":"Зворотне сортування за діактричними знаками","colCaseFirst":"Упорядкування за великими/малими символами","colCaseLevel":"Сортування з урахуванням регістру","colHiraganaQuaternary":"Сортування кана","colNormalization":"Уніфіковане сортування","colNumeric":"Цифрове сортування","colStrength":"Інтенсивність сортування","collation":"Порядок сортування","currency":"Валюта","numbers":"Цифри","timezone":"Часовий пояс","va":"Варіант мовного коду","variableTop":"Сортувати як символи","x":"Особисте використання"},"types":{"numbers":{"vaii":"Цифри ваї"},"collation":{"zhuyin":"zhuyin"},"calendar":{"roc":"Китайський григоріанський календар"},"colStrength":{"tertiary":"Сортувати за діактричними знаками/регістром/шириною"},"colCaseFirst":{"upper":"Сортувати спершу за великими символами"},"colBackwards":{"yes":"Сортувати за діактричними знаками у зворотньому порядку"},"colCaseLevel":{"yes":"Сортувати з урахуванням регістру"},"colHiraganaQuaternary":{"yes":"Сортувати за кана інакше"},"colNormalization":{"yes":"Сортувати за Unicode уніфіковано"},"colNumeric":{"yes":"Сортувати за цифрами чисельно"},"colAlternate":{"shifted":"Сортувати, ігноруючи символи"}},"codePatterns":{"language":"Мова: %1$s","script":"Система письма: %1$s","territory":"Територія: %1$s"}} \ No newline at end of file diff --git a/Punic/data/uk/numbers.json b/Punic/data/uk/numbers.json new file mode 100644 index 0000000..76910b8 --- /dev/null +++ b/Punic/data/uk/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":" ","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"Е","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"Не число","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/uk/territories.json b/Punic/data/uk/territories.json new file mode 100644 index 0000000..dee421d --- /dev/null +++ b/Punic/data/uk/territories.json @@ -0,0 +1 @@ +{"001":"Світ","002":"Африка","003":"Північноамериканський континент","005":"Південна Америка","009":"Океанія","011":"Західна Африка","013":"Центральна Америка","014":"Східна Африка","015":"Північна Африка","017":"Центральна Африка","018":"Південна Африка","019":"Америка","021":"Північна Америка","029":"Карибський басейн","030":"Східна Азія","034":"Південна Азія","035":"Південно-Східна Азія","039":"Південна Європа","053":"Австралія та Нова Зеландія","054":"Меланезія","057":"Мікронезійський регіон","061":"Полінезія","142":"Азія","143":"Центральна Азія","145":"Західна Азія","150":"Європа","151":"Східна Європа","154":"Північна Європа","155":"Західна Європа","419":"Латинська Америка","AC":"Острів Вознесіння","AD":"Андорра","AE":"Обʼєднані Арабські Емірати","AF":"Афганістан","AG":"Антигуа і Барбуда","AI":"Ангілья","AL":"Албанія","AM":"Вірменія","AN":"Нідерландські Антильські Острови","AO":"Ангола","AQ":"Антарктика","AR":"Аргентина","AS":"Американське Самоа","AT":"Австрія","AU":"Австралія","AW":"Аруба","AX":"Аландські острови","AZ":"Азербайджан","BA":"Боснія і Герцоговина","BB":"Барбадос","BD":"Бангладеш","BE":"Бельгія","BF":"Буркіна-Фасо","BG":"Болгарія","BH":"Бахрейн","BI":"Бурунді","BJ":"Бенін","BL":"Сен-Бартельмі","BM":"Бермуди","BN":"Бруней","BO":"Болівія","BQ":"Нідерландські Карибські острови","BR":"Бразилія","BS":"Багами","BT":"Бутан","BV":"Острів Буве","BW":"Ботсвана","BY":"Білорусь","BZ":"Беліз","CA":"Канада","CC":"Кокосові (Кілінгові) острови","CD":"Конго – Кіншаса","CD-alt-variant":"Конго (ДРК)","CF":"Центральноафриканська Республіка","CG":"Конго – Браззавіль","CG-alt-variant":"Конго (Республіка)","CH":"Швейцарія","CI":"Кот-д’Івуар","CI-alt-variant":"Берег Слонової Кістки","CK":"Острови Кука","CL":"Чилі","CM":"Камерун","CN":"Китай","CO":"Колумбія","CP":"Острів Кліппертон","CR":"Коста-Рика","CU":"Куба","CV":"Кабо Верде","CW":"Кюрасао","CX":"Острів Різдва","CY":"Кіпр","CZ":"Чехія","DE":"Німеччина","DG":"Дієго-Гарсія","DJ":"Джибуті","DK":"Данія","DM":"Домініка","DO":"Домініканська Республіка","DZ":"Алжир","EA":"Сеута і Мелілья","EC":"Еквадор","EE":"Естонія","EG":"Єгипет","EH":"Західна Сахара","ER":"Еритрея","ES":"Іспанія","ET":"Ефіопія","EU":"Європейський Союз","FI":"Фінляндія","FJ":"Фіджі","FK":"Фолклендські острови","FK-alt-variant":"Фолклендські (Мальвінські) острови","FM":"Мікронезія","FM-alt-variant":"Федеративні Штати Мікронезії","FO":"Фарерські острови","FR":"Франція","GA":"Габон","GB":"Велика Британія","GB-alt-short":"Велика Британія","GD":"Гренада","GE":"Грузія","GF":"Французька Гвіана","GG":"Гернсі","GH":"Гана","GI":"Гібралтар","GL":"Гренландія","GM":"Гамбія","GN":"Гвінея","GP":"Гваделупа","GQ":"Екваторіальна Гвінея","GR":"Греція","GS":"Південна Джорджія та Південні Сандвічеві острови","GT":"Гватемала","GU":"Гуам","GW":"Гвінея-Бісау","GY":"Гаяна","HK":"Гонконг, О.А.Р. Китаю","HK-alt-short":"Гонконг","HM":"Острови Херд і Мак-Дональд","HN":"Гондурас","HR":"Хорватія","HT":"Гаїті","HU":"Угорщина","IC":"Канарські острови","ID":"Індонезія","IE":"Ірландія","IL":"Ізраїль","IM":"Острів Мен","IN":"Індія","IO":"Британські території в Індійському океані","IQ":"Ірак","IR":"Іран","IS":"Ісландія","IT":"Італія","JE":"Джерсі","JM":"Ямайка","JO":"Йорданія","JP":"Японія","KE":"Кенія","KG":"Киргизстан","KH":"Камбоджа","KI":"Кірибаті","KM":"Коморські острови","KN":"Сент-Кітс і Невіс","KP":"Північна Корея","KR":"Південна Корея","KW":"Кувейт","KY":"Кайманові острови","KZ":"Казахстан","LA":"Лаос","LB":"Ліван","LC":"Сент-Люсія","LI":"Ліхтенштейн","LK":"Шрі-Ланка","LR":"Ліберія","LS":"Лесото","LT":"Литва","LU":"Люксембург","LV":"Латвія","LY":"Лівія","MA":"Марокко","MC":"Монако","MD":"Молдова","ME":"Чорногорія","MF":"Сен-Мартен","MG":"Мадагаскар","MH":"Маршаллові Острови","MK":"Македонія","MK-alt-variant":"Македонія (КЮРМ)","ML":"Малі","MM":"Мʼянма (Бірма)","MN":"Монголія","MO":"Макао О.А.Р. Китаю","MO-alt-short":"Макао","MP":"Північні Маріанські острови","MQ":"Мартиніка","MR":"Мавританія","MS":"Монтсеррат","MT":"Мальта","MU":"Маврикій","MV":"Мальдіви","MW":"Малаві","MX":"Мексика","MY":"Малайзія","MZ":"Мозамбік","NA":"Намібія","NC":"Нова Каледонія","NE":"Нігер","NF":"Острів Норфолк","NG":"Нігерія","NI":"Нікарагуа","NL":"Нідерланди","NO":"Норвегія","NP":"Непал","NR":"Науру","NU":"Ніуе","NZ":"Нова Зеландія","OM":"Оман","PA":"Панама","PE":"Перу","PF":"Французька Полінезія","PG":"Папуа Нова Гвінея","PH":"Філіппіни","PK":"Пакистан","PL":"Польща","PM":"Сен-Пʼєр і Мікелон","PN":"Острови Піткерн","PR":"Пуерто-Рико","PS":"Палестинські території","PS-alt-short":"Палестина","PT":"Португалія","PW":"Палау","PY":"Парагвай","QA":"Катар","QO":"Віддалені острови Океанії","RE":"Реюньйон","RO":"Румунія","RS":"Сербія","RU":"Росія","RW":"Руанда","SA":"Саудівська Аравія","SB":"Соломонові Острови","SC":"Сейшельські острови","SD":"Судан","SE":"Швеція","SG":"Сінгапур","SH":"Острів Святої Єлени","SI":"Словенія","SJ":"Острови Свальбард і Ян-Маєн","SK":"Словаччина","SL":"Сьєрра-Леоне","SM":"Сан-Марино","SN":"Сенегал","SO":"Сомалі","SR":"Суринам","SS":"Південний Судан","ST":"Сан-Томе і Прінсіпі","SV":"Сальвадор","SX":"Сінт-Мартен","SY":"Сирія","SZ":"Свазіленд","TA":"Трістан-да-Кунья","TC":"Острови Теркс і Кайкос","TD":"Чад","TF":"Французькі Південні Території","TG":"Того","TH":"Таїланд","TJ":"Таджикистан","TK":"Токелау","TL":"Східний Тимор","TL-alt-variant":"TL","TM":"Туркменістан","TN":"Туніс","TO":"Тонга","TR":"Туреччина","TT":"Тринідад і Тобаго","TV":"Тувалу","TW":"Тайвань","TZ":"Танзанія","UA":"Україна","UG":"Уганда","UM":"Віддалені острови США","US":"США","US-alt-short":"США","UY":"Уругвай","UZ":"Узбекистан","VA":"Ватикан","VC":"Сент-Вінсент і Гренадини","VE":"Венесуела","VG":"Британські Віргінські острови","VI":"Віргінські острови, США","VN":"Вʼєтнам","VU":"Вануату","WF":"Волліс і Футуна","WS":"Самоа","XK":"Косово","YE":"Ємен","YT":"Майотта","ZA":"ПАР","ZM":"Замбія","ZW":"Зімбабве","ZZ":"Невідомий регіон"} \ No newline at end of file diff --git a/Punic/data/uk/timeZoneNames.json b/Punic/data/uk/timeZoneNames.json new file mode 100644 index 0000000..e05892b --- /dev/null +++ b/Punic/data/uk/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Час: %1$s","regionFormat-type-standard":"Час: %1$s, стандартний","regionFormat-type-daylight":"Час: %1$s, літній","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Адак"},"Anchorage":{"exemplarCity":"Анкоридж"},"Anguilla":{"exemplarCity":"Ангілья"},"Antigua":{"exemplarCity":"Антигуа"},"Araguaina":{"exemplarCity":"Арагуайна"},"Argentina":{"La_Rioja":{"exemplarCity":"Ла-Ріоха"},"Rio_Gallegos":{"exemplarCity":"Ріо-Гальєгос"},"Salta":{"exemplarCity":"Сальта"},"San_Juan":{"exemplarCity":"Сан-Хуан"},"San_Luis":{"exemplarCity":"Сан-Луїс"},"Tucuman":{"exemplarCity":"Тукуман"},"Ushuaia":{"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":"Сальвадор"},"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":{"Knox":{"exemplarCity":"Нокс, Індіана"},"Marengo":{"exemplarCity":"Маренго, Індіана"},"Petersburg":{"exemplarCity":"Пітерсберг, Індіана"},"Tell_City":{"exemplarCity":"Телл Сіті, Індіана"},"Vevay":{"exemplarCity":"Вівей, Індіана"},"Vincennes":{"exemplarCity":"Вінсенс, Індіана"},"Winamac":{"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":"Б’юла, Північна Дакота"},"Center":{"exemplarCity":"Центр, Північна Дакота"},"New_Salem":{"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":"Андорра"},"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":"Київ"},"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":"Тирана"},"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":"Бангкок"},"Beirut":{"exemplarCity":"Бейрут"},"Bishkek":{"exemplarCity":"Бішкек"},"Brunei":{"exemplarCity":"Бруней"},"Calcutta":{"exemplarCity":"Колката"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Чойбалсан"},"Chongqing":{"exemplarCity":"Чунцін"},"Colombo":{"exemplarCity":"Коломбо"},"Damascus":{"exemplarCity":"Дамаск"},"Dhaka":{"exemplarCity":"Дакка"},"Dili":{"exemplarCity":"Ділі"},"Dubai":{"exemplarCity":"Дубаї"},"Dushanbe":{"exemplarCity":"Душанбе"},"Gaza":{"exemplarCity":"Газа"},"Harbin":{"exemplarCity":"Харбін"},"Hebron":{"exemplarCity":"Хеврон"},"Hong_Kong":{"exemplarCity":"Гонконг"},"Hovd":{"exemplarCity":"Ховд"},"Irkutsk":{"exemplarCity":"Іркутськ"},"Jakarta":{"exemplarCity":"Джакарта"},"Jayapura":{"exemplarCity":"Джайпур"},"Jerusalem":{"exemplarCity":"Єрусалим"},"Kabul":{"exemplarCity":"Кабул"},"Kamchatka":{"exemplarCity":"Камчатка"},"Karachi":{"exemplarCity":"Карачі"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"Тайбей"},"Tashkent":{"exemplarCity":"Ташкент"},"Tbilisi":{"exemplarCity":"Тбілісі"},"Tehran":{"exemplarCity":"Тегеран"},"Thimphu":{"exemplarCity":"Тхімпху"},"Tokyo":{"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":"Окленд"},"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":{"Acre":{"long":{"generic":"Час: Акрі","standard":"Час: Акрі, стандартний","daylight":"Час: Акрі, літній"}},"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":"за часом на Французьких Південних і Антарктичних територіях"}},"GMT":{"long":{"standard":"за Гринвічем"}},"Galapagos":{"long":{"standard":"за часом на Галапагоських островах"}},"Gambier":{"long":{"standard":"за часом на острові Гамб’є"}},"Georgia":{"long":{"generic":"за часом у Грузії","standard":"за стандартним часом у Грузії","daylight":"за літнім часом у Грузії"}},"Gilbert_Islands":{"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":"за часом у Киргизстані"}},"Lanka":{"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":"за літнім часом на архіпелазі Фернанду-ді-Норонья"}},"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":"за часом на острові Понапе"}},"Qyzylorda":{"long":{"generic":"Час: Кизилорда","standard":"Час: Кизилорда, стандартний","daylight":"Час: Кизилорда, літній"}},"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":"за єкатеринбурзьким літнім часом"}}}} \ No newline at end of file diff --git a/Punic/data/uk/units.json b/Punic/data/uk/units.json new file mode 100644 index 0000000..652096d --- /dev/null +++ b/Punic/data/uk/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s на %2$s","acceleration":{"g-force":{"_name":"сили тяжіння","one":"%1$s сила тяжіння","few":"%1$s сили тяжіння","many":"%1$s сил тяжіння","other":"%1$s сили тяжіння"},"meter-per-second-squared":{"_name":"метри на секунду в квадраті","one":"%1$s метр на секунду в квадраті","few":"%1$s метри на секунду в квадраті","many":"%1$s метрів на секунду в квадраті","other":"%1$s метра на секунду в квадраті"}},"angle":{"arc-minute":{"_name":"мінути","one":"%1$s мінута","few":"%1$s мінути","many":"%1$s мінут","other":"%1$s мінути"},"arc-second":{"_name":"кутові секунди","one":"%1$s кутова секунда","few":"%1$s кутові секунди","many":"%1$s кутових секунд","other":"%1$s кутової секунди"},"degree":{"_name":"градуси","one":"%1$s градус","few":"%1$s градуси","many":"%1$s градусів","other":"%1$s градуса"},"radian":{"_name":"радіани","one":"%1$s радіан","few":"%1$s радіани","many":"%1$s радіанів","other":"%1$s радіана"}},"area":{"acre":{"_name":"акри","one":"%1$s акр","few":"%1$s акри","many":"%1$s акрів","other":"%1$s акра"},"hectare":{"_name":"гектари","one":"%1$s гектар","few":"%1$s гектари","many":"%1$s гектарів","other":"%1$s гектара"},"square-centimeter":{"_name":"квадратні сантиметри","one":"%1$s квадратний сантиметр","few":"%1$s квадратні сантиметри","many":"%1$s квадратних сантиметрів","other":"%1$s квадратного сантиметра"},"square-foot":{"_name":"квадратні фути","one":"%1$s квадратний фут","few":"%1$s квадратні фути","many":"%1$s квадратних футів","other":"%1$s квадратного фута"},"square-inch":{"_name":"квадратні дюйми","one":"%1$s квадратний дюйм","few":"%1$s квадратні дюйми","many":"%1$s квадратних дюймів","other":"%1$s квадратного дюйма"},"square-kilometer":{"_name":"квадратні кілометри","one":"%1$s квадратний кілометр","few":"%1$s квадратні кілометри","many":"%1$s квадратних кілометрів","other":"%1$s квадратного кілометра"},"square-meter":{"_name":"квадтратні метри","one":"%1$s квадратний метр","few":"%1$s квадратні метри","many":"%1$s квадратних метрів","other":"%1$s квадратного метра"},"square-mile":{"_name":"квадратні милі","one":"%1$s квадратна миля","few":"%1$s квадратні милі","many":"%1$s квадратних миль","other":"%1$s квадратної милі"},"square-yard":{"_name":"квадратні ярди","one":"%1$s квадратний ярд","few":"%1$s квадратні ярди","many":"%1$s квадратних ярдів","other":"%1$s квадратного ярда"}},"consumption":{"liter-per-kilometer":{"_name":"літри на кілометр","one":"%1$s літр на кілометр","few":"%1$s літри на кілометр","many":"%1$s літрів на кілометр","other":"%1$s літра на кілометр"},"mile-per-gallon":{"_name":"милі на галон","one":"%1$s миля на галон","few":"%1$s милі на галон","many":"%1$s миль на галон","other":"%1$s милі на галон"}},"digital":{"bit":{"_name":"біти","one":"%1$s біт","few":"%1$s біти","many":"%1$s бітів","other":"%1$s біта"},"byte":{"_name":"байти","one":"%1$s байт","few":"%1$s байти","many":"%1$s байтів","other":"%1$s байта"},"gigabit":{"_name":"гігабіти","one":"%1$s гігабіт","few":"%1$s гігабіти","many":"%1$s гігабітів","other":"%1$s гігабіта"},"gigabyte":{"_name":"гігабайти","one":"%1$s гігабайт","few":"%1$s гігабайти","many":"%1$s гігабайтів","other":"%1$s гігабайта"},"kilobit":{"_name":"кілобіти","one":"%1$s кілобіт","few":"%1$s кілобіти","many":"%1$s кілобітів","other":"%1$s кілобіта"},"kilobyte":{"_name":"кілобайти","one":"%1$s кілобайт","few":"%1$s кілобайти","many":"%1$s кілобайтів","other":"%1$s кілобайта"},"megabit":{"_name":"мегабіти","one":"%1$s мегабіт","few":"%1$s мегабіти","many":"%1$s мегабітів","other":"%1$s мегабіта"},"megabyte":{"_name":"мегабайти","one":"%1$s мегабайт","few":"%1$s мегабайти","many":"%1$s мегабайтів","other":"%1$s мегабайта"},"terabit":{"_name":"терабіти","one":"%1$s терабіт","few":"%1$s терабіти","many":"%1$s терабітів","other":"%1$s терабіта"},"terabyte":{"_name":"терабайти","one":"%1$s терабайт","few":"%1$s терабайти","many":"%1$s терабайтів","other":"%1$s терабайта"}},"duration":{"day":{"_name":"дні","one":"%1$s день","few":"%1$s дні","many":"%1$s днів","other":"%1$s дня"},"hour":{"_name":"години","one":"%1$s година","few":"%1$s години","many":"%1$s годин","other":"%1$s години","_per":"%1$s на годину"},"microsecond":{"_name":"мікросекунди","one":"%1$s мікросекунда","few":"%1$s мікросекунди","many":"%1$s мікросекунд","other":"%1$s мікросекунди"},"millisecond":{"_name":"мілісекунди","one":"%1$s мілісекунда","few":"%1$s мілісекунди","many":"%1$s мілісекунд","other":"%1$s мілісекунди"},"minute":{"_name":"хвилини","one":"%1$s хвилина","few":"%1$s хвилини","many":"%1$s хвилин","other":"%1$s хвилини"},"month":{"_name":"місяці","one":"%1$s місяць","few":"%1$s місяці","many":"%1$s місяців","other":"%1$s місяця"},"nanosecond":{"_name":"наносекунди","one":"%1$s наносекунда","few":"%1$s наносекунди","many":"%1$s наносекунд","other":"%1$s наносекунди"},"second":{"_name":"секунди","one":"%1$s секунда","few":"%1$s секунди","many":"%1$s секунд","other":"%1$s секунди","_per":"%1$s на секунду"},"week":{"_name":"тижні","one":"%1$s тиждень","few":"%1$s тижні","many":"%1$s тижнів","other":"%1$s тижня"},"year":{"_name":"роки","one":"%1$s рік","few":"%1$s роки","many":"%1$s років","other":"%1$s року"}},"electric":{"ampere":{"_name":"ампери","one":"%1$s ампер","few":"%1$s ампери","many":"%1$s амперів","other":"%1$s ампера"},"milliampere":{"_name":"міліампери","one":"%1$s міліампер","few":"%1$s міліампери","many":"%1$s міліамперів","other":"%1$s міліампера"},"ohm":{"_name":"оми","one":"%1$s ом","few":"%1$s оми","many":"%1$s омів","other":"%1$s ома"},"volt":{"_name":"вольти","one":"%1$s вольт","few":"%1$s вольти","many":"%1$s вольтів","other":"%1$s вольта"}},"energy":{"calorie":{"_name":"калорії","one":"%1$s калорія","few":"%1$s калорії","many":"%1$s калорій","other":"%1$s калорії"},"foodcalorie":{"_name":"Калорії","one":"%1$s Калорія","few":"%1$s Калорії","many":"%1$s Калорій","other":"%1$s Калорії"},"joule":{"_name":"джоулі","one":"%1$s джоуль","few":"%1$s джоулі","many":"%1$s джоулів","other":"%1$s джоуля"},"kilocalorie":{"_name":"кілокалорії","one":"%1$s кілокалорія","few":"%1$s кілокалорії","many":"%1$s кілокалорій","other":"%1$s кілокалорії"},"kilojoule":{"_name":"кілоджоулі","one":"%1$s кілоджоуль","few":"%1$s кілоджоулі","many":"%1$s кілоджоулів","other":"%1$s кілоджоуля"},"kilowatt-hour":{"_name":"кіловат-години","one":"%1$s кіловат-година","few":"%1$s кіловат-години","many":"%1$s кіловат-годин","other":"%1$s кіловат-години"}},"frequency":{"gigahertz":{"_name":"гігагерци","one":"%1$s гігагерц","few":"%1$s гігагерци","many":"%1$s гігагерців","other":"%1$s гігагерца"},"hertz":{"_name":"герци","one":"%1$s герц","few":"%1$s герци","many":"%1$s герців","other":"%1$s герца"},"kilohertz":{"_name":"кілогерци","one":"%1$s кілогерц","few":"%1$s кілогерци","many":"%1$s кілогерців","other":"%1$s кілогерца"},"megahertz":{"_name":"мегагерци","one":"%1$s мегагерц","few":"%1$s мегагерци","many":"%1$s мегагерців","other":"%1$s мегагерца"}},"length":{"astronomical-unit":{"_name":"астрономічні одиниці","one":"%1$s астрономічна одиниця","few":"%1$s астрономічні одиниці","many":"%1$s астрономічних одиниць","other":"%1$s астрономічної одиниці"},"centimeter":{"_name":"сантиметри","one":"%1$s сантиметр","few":"%1$s сантиметри","many":"%1$s сантиметрів","other":"%1$s сантиметра"},"decimeter":{"_name":"дециметри","one":"%1$s дециметр","few":"%1$s дециметри","many":"%1$s дециметрів","other":"%1$s дециметра"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"фути","one":"%1$s фут","few":"%1$s фути","many":"%1$s футів","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюйми","one":"%1$s дюйм","few":"%1$s дюйми","many":"%1$s дюймів","other":"%1$s дюйма"},"kilometer":{"_name":"кілометри","one":"%1$s кілометр","few":"%1$s кілометри","many":"%1$s кілометрів","other":"%1$s кілометра"},"light-year":{"_name":"світлові роки","one":"%1$s світловий рік","few":"%1$s світлові роки","many":"%1$s світлових років","other":"%1$s світлового року"},"meter":{"_name":"метри","one":"%1$s метр","few":"%1$s метри","many":"%1$s метрів","other":"%1$s метра"},"micrometer":{"_name":"мікрометри","one":"%1$s мікрометр","few":"%1$s мікрометри","many":"%1$s мікрометрів","other":"%1$s мікрометра"},"mile":{"_name":"милі","one":"%1$s миля","few":"%1$s милі","many":"%1$s миль","other":"%1$s милі"},"millimeter":{"_name":"міліметри","one":"%1$s міліметр","few":"%1$s міліметри","many":"%1$s міліметрів","other":"%1$s міліметра"},"nanometer":{"_name":"нанометри","one":"%1$s нанометр","few":"%1$s нанометри","many":"%1$s нанометрів","other":"%1$s нанометра"},"nautical-mile":{"_name":"морські милі","one":"%1$s морська миля","few":"%1$s морські милі","many":"%1$s морських миль","other":"%1$s морської милі"},"parsec":{"_name":"парсеки","one":"%1$s парсек","few":"%1$s парсеки","many":"%1$s парсеків","other":"%1$s парсека"},"picometer":{"_name":"пікометри","one":"%1$s пікометр","few":"%1$s пікометри","many":"%1$s пікометрів","other":"%1$s пікометра"},"yard":{"_name":"ярди","one":"%1$s ярд","few":"%1$s ярди","many":"%1$s ярдів","other":"%1$s ярда"}},"light":{"lux":{"_name":"люкси","one":"%1$s люкс","few":"%1$s люкси","many":"%1$s люксів","other":"%1$s люкса"}},"mass":{"carat":{"_name":"карати","one":"%1$s карат","few":"%1$s карати","many":"%1$s каратів","other":"%1$s карата"},"gram":{"_name":"грами","one":"%1$s грам","few":"%1$s грами","many":"%1$s грамів","other":"%1$s грама"},"kilogram":{"_name":"кілограми","one":"%1$s кілограм","few":"%1$s кілограми","many":"%1$s кілограмів","other":"%1$s кілограма"},"metric-ton":{"_name":"метричні тонни","one":"%1$s метрична тонна","few":"%1$s метричні тонни","many":"%1$s метричних тонн","other":"%1$s метричної тонни"},"microgram":{"_name":"мікрограми","one":"%1$s мікрограм","few":"%1$s мікрограми","many":"%1$s мікрограм","other":"%1$s мікрограма"},"milligram":{"_name":"міліграми","one":"%1$s міліграм","few":"%1$s міліграми","many":"%1$s міліграм","other":"%1$s міліграма"},"ounce":{"_name":"унції","one":"%1$s унція","few":"%1$s унції","many":"%1$s унцій","other":"%1$s унції"},"ounce-troy":{"_name":"тройські унції","one":"%1$s тройська унція","few":"%1$s тройські унції","many":"%1$s тройських унцій","other":"%1$s тройської унції"},"pound":{"_name":"фунти","one":"%1$s фунт","few":"%1$s фунти","many":"%1$s фунтів","other":"%1$s фунта"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"тонни","one":"%1$s тонна","few":"%1$s тонни","many":"%1$s тонн","other":"%1$s тонни"}},"power":{"gigawatt":{"_name":"гігавати","one":"%1$s гігават","few":"%1$s гігавати","many":"%1$s гігаватів","other":"%1$s гігавата"},"horsepower":{"_name":"кінські сили","one":"%1$s кінська сила","few":"%1$s кінські сили","many":"%1$s кінських сил","other":"%1$s кінської сили"},"kilowatt":{"_name":"кіловати","one":"%1$s кіловат","few":"%1$s кіловати","many":"%1$s кіловатів","other":"%1$s кіловата"},"megawatt":{"_name":"мегавати","one":"%1$s мегават","few":"%1$s мегавати","many":"%1$s мегават","other":"%1$s мегавата"},"milliwatt":{"_name":"мілівати","one":"%1$s міліват","few":"%1$s мілівати","many":"%1$s міліват","other":"%1$s мілівата"},"watt":{"_name":"вати","one":"%1$s ват","few":"%1$s вати","many":"%1$s ватів","other":"%1$s вата"}},"pressure":{"hectopascal":{"_name":"гектопаскалі","one":"%1$s гектопаскаль","few":"%1$s гектопаскалі","many":"%1$s гектопаскалів","other":"%1$s гектопаскаля"},"inch-hg":{"_name":"дюйми ртутного стовпа","one":"%1$s дюйм ртутного стовпа","few":"%1$s дюйми ртутного стовпа","many":"%1$s дюймів ртутного стовпа","other":"%1$s дюйма ртутного стовпа"},"millibar":{"_name":"мілібари","one":"%1$s мілібар","few":"%1$s мілібари","many":"%1$s мілібарів","other":"%1$s мілібара"},"millimeter-of-mercury":{"_name":"міліметри ртутного стовпа","one":"%1$s міліметр ртутного стовпа","few":"%1$s міліметри ртутного стовпа","many":"%1$s міліметрів ртутного стовпа","other":"%1$s міліметра ртутного стовпа"},"pound-per-square-inch":{"_name":"фунти на квадратний дюйм","one":"%1$s фунт на квадратний дюйм","few":"%1$s фунти на квадратний дюйм","many":"%1$s фунтів на квадратний дюйм","other":"%1$s фунта на квадратний дюйм"}},"proportion":{"karat":{"_name":"Карати","one":"%1$s Карат","few":"%1$s Карати","many":"%1$s Каратів","other":"%1$s Карата"}},"speed":{"kilometer-per-hour":{"_name":"кілометри на годину","one":"%1$s кілометр на годину","few":"%1$s кілометри на годину","many":"%1$s кілометрів на годину","other":"%1$s кілометра на годину"},"meter-per-second":{"_name":"метри на секунду","one":"%1$s метр на секунду","few":"%1$s метри на секунду","many":"%1$s метрів на секунду","other":"%1$s метра на секунду"},"mile-per-hour":{"_name":"милі на годину","one":"%1$s миля на годину","few":"%1$s милі на годину","many":"%1$s миль на годину","other":"%1$s милі на годину"}},"temperature":{"celsius":{"_name":"градуси Цельсія","one":"%1$s градус Цельсія","few":"%1$s градуси Цельсія","many":"%1$s градусів Цельсія","other":"%1$s градуса Цельсія"},"fahrenheit":{"_name":"градуси Фаренгейта","one":"%1$s градус Фаренгейта","few":"%1$s градуси Фаренгейта","many":"%1$s градусів Фаренгейта","other":"%1$s градуса Фаренгейта"},"kelvin":{"_name":"кельвіни","one":"%1$s кельвін","few":"%1$s кельвіни","many":"%1$s кельвінів","other":"%1$s кельвіна"}},"volume":{"acre-foot":{"_name":"акр-фути","one":"%1$s акр-фут","few":"%1$s акр-фути","many":"%1$s акр-футів","other":"%1$s акр-фута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сантилітри","one":"%1$s сантилітр","few":"%1$s сантилітри","many":"%1$s сантилітрів","other":"%1$s сантилітра"},"cubic-centimeter":{"_name":"кубічні сантиметри","one":"%1$s кубічний сантиметр","few":"%1$s кубічні сантиметри","many":"%1$s кубічних сантиметрів","other":"%1$s кубічного сантиметра"},"cubic-foot":{"_name":"кубічні фути","one":"%1$s кубічний фут","few":"%1$s кубічні фути","many":"%1$s кубічних футів","other":"%1$s кубічного фута"},"cubic-inch":{"_name":"кубічні дюйми","one":"%1$s кубічний дюйм","few":"%1$s кубічні дюйми","many":"%1$s кубічних дюймів","other":"%1$s кубічного дюйма"},"cubic-kilometer":{"_name":"кубічні кілометри","one":"%1$s кубічний кілометр","few":"%1$s кубічні кілометри","many":"%1$s кубічних кілометрів","other":"%1$s кубічного кілометра"},"cubic-meter":{"_name":"кубічні метри","one":"%1$s кубічний метр","few":"%1$s кубічні метри","many":"%1$s кубічних метрів","other":"%1$s кубічного метра"},"cubic-mile":{"_name":"кубічні милі","one":"%1$s кубічна миля","few":"%1$s кубічні милі","many":"%1$s кубічних миль","other":"%1$s кубічної милі"},"cubic-yard":{"_name":"кубічні ярди","one":"%1$s кубічний ярд","few":"%1$s кубічні ярди","many":"%1$s кубічних ярдів","other":"%1$s кубічного ярда"},"cup":{"_name":"чашки","one":"%1$s чашка","few":"%1$s чашки","many":"%1$s чашок","other":"%1$s чашки"},"deciliter":{"_name":"децилітри","one":"%1$s децилітр","few":"%1$s децилітри","many":"%1$s децилітрів","other":"%1$s децилітра"},"fluid-ounce":{"_name":"рідкі унції","one":"%1$s рідка унція","few":"%1$s рідкі унції","many":"%1$s рідких унцій","other":"%1$s рідкої унції"},"gallon":{"_name":"галони","one":"%1$s галон","few":"%1$s галони","many":"%1$s галонів","other":"%1$s галона"},"hectoliter":{"_name":"гектолітри","one":"%1$s гектолітр","few":"%1$s гектолітри","many":"%1$s гектолітрів","other":"%1$s гектолітра"},"liter":{"_name":"літри","one":"%1$s літр","few":"%1$s літри","many":"%1$s літрів","other":"%1$s літра"},"megaliter":{"_name":"мегалітри","one":"%1$s мегалітр","few":"%1$s мегалітри","many":"%1$s мегалітрів","other":"%1$s мегалітра"},"milliliter":{"_name":"мілілітри","one":"%1$s мілілітр","few":"%1$s мілілітри","many":"%1$s мілілітрів","other":"%1$s мілілітра"},"pint":{"_name":"пінти","one":"%1$s пінта","few":"%1$s пінти","many":"%1$s пінт","other":"%1$s пінти"},"quart":{"_name":"кварти","one":"%1$s кварта","few":"%1$s кварти","many":"%1$s кварт","other":"%1$s кварти"},"tablespoon":{"_name":"cтолові ложки","one":"%1$s столова ложка","few":"%1$s столові ложки","many":"%1$s столових ложок","other":"%1$s столової ложки"},"teaspoon":{"_name":"чайні ложки","one":"%1$s чайна ложка","few":"%1$s чайні ложки","many":"%1$s чайних ложок","other":"%1$s чайної ложки"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"сили тяжіння","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"метри/с²","one":"%1$s м/с²","few":"%1$s м/с²","many":"%1$s м/с²","other":"%1$s м/с²"}},"angle":{"arc-minute":{"_name":"мінути","one":"%1$s мін.","few":"%1$s мін.","many":"%1$s мін.","other":"%1$s мін."},"arc-second":{"_name":"кут. сек.","one":"%1$s кут. сек.","few":"%1$s кут. сек.","many":"%1$s кут. сек.","other":"%1$s кут. сек."},"degree":{"_name":"градуси","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"радіани","one":"%1$s рад.","few":"%1$s рад.","many":"%1$s рад.","other":"%1$s рад."}},"area":{"acre":{"_name":"акри","one":"%1$s акр","few":"%1$s акри","many":"%1$s акрів","other":"%1$s акра"},"hectare":{"_name":"гектари","one":"%1$s га","few":"%1$s га","many":"%1$s га","other":"%1$s га"},"square-centimeter":{"_name":"см²","one":"%1$s см²","few":"%1$s см²","many":"%1$s см²","other":"%1$s см²"},"square-foot":{"_name":"фути²","one":"%1$s фут²","few":"%1$s фути²","many":"%1$s футів²","other":"%1$s фута²"},"square-inch":{"_name":"дюйми²","one":"%1$s дюйм²","few":"%1$s дюйми²","many":"%1$s дюймів²","other":"%1$s дюйма²"},"square-kilometer":{"_name":"км²","one":"%1$s км²","few":"%1$s км²","many":"%1$s км²","other":"%1$s км²"},"square-meter":{"_name":"м²","one":"%1$s м²","few":"%1$s м²","many":"%1$s м²","other":"%1$s м²"},"square-mile":{"_name":"милі²","one":"%1$s миля²","few":"%1$s милі²","many":"%1$s миль²","other":"%1$s милі²"},"square-yard":{"_name":"ярди²","one":"%1$s ярд²","few":"%1$s ярди²","many":"%1$s ярдів²","other":"%1$s ярда²"}},"consumption":{"liter-per-kilometer":{"_name":"літри/км","one":"%1$s л/км","few":"%1$s л/км","many":"%1$s л/км","other":"%1$s л/км"},"mile-per-gallon":{"_name":"милі/галон","one":"%1$s миля/галон","few":"%1$s милі/галон","many":"%1$s миль/галон","other":"%1$s милі/галон"}},"digital":{"bit":{"_name":"біт","one":"%1$s б","few":"%1$s б","many":"%1$s б","other":"%1$s б"},"byte":{"_name":"байт","one":"%1$s Б","few":"%1$s Б","many":"%1$s Б","other":"%1$s Б"},"gigabit":{"_name":"Гбіт","one":"%1$s Гб","few":"%1$s Гб","many":"%1$s Гб","other":"%1$s Гб"},"gigabyte":{"_name":"Гбайт","one":"%1$s ГБ","few":"%1$s ГБ","many":"%1$s ГБ","other":"%1$s ГБ"},"kilobit":{"_name":"кбіт","one":"%1$s кб","few":"%1$s кб","many":"%1$s кб","other":"%1$s кб"},"kilobyte":{"_name":"кбайт","one":"%1$s кБ","few":"%1$s кБ","many":"%1$s кБ","other":"%1$s кБ"},"megabit":{"_name":"Мбіт","one":"%1$s Мб","few":"%1$s Мб","many":"%1$s Мб","other":"%1$s Мб"},"megabyte":{"_name":"Мбайт","one":"%1$s МБ","few":"%1$s МБ","many":"%1$s МБ","other":"%1$s МБ"},"terabit":{"_name":"Тбіт","one":"%1$s Тб","few":"%1$s Тб","many":"%1$s Тб","other":"%1$s Тб"},"terabyte":{"_name":"Тбайт","one":"%1$s ТБ","few":"%1$s ТБ","many":"%1$s ТБ","other":"%1$s ТБ"}},"duration":{"day":{"_name":"дні","one":"%1$s д.","few":"%1$s дн.","many":"%1$s дн.","other":"%1$s дн."},"hour":{"_name":"години","one":"%1$s год","few":"%1$s год","many":"%1$s год","other":"%1$s год","_per":"на год"},"microsecond":{"_name":"мкс","one":"%1$s мкс","few":"%1$s мкс","many":"%1$s мкс","other":"%1$s мкс"},"millisecond":{"_name":"мс","one":"%1$s мс","few":"%1$s мс","many":"%1$s мс","other":"%1$s мс"},"minute":{"_name":"хв","one":"%1$s хв","few":"%1$s хв","many":"%1$s хв","other":"%1$s хв"},"month":{"_name":"міс.","one":"%1$s міс.","few":"%1$s міс.","many":"%1$s міс.","other":"%1$s міс."},"nanosecond":{"_name":"нс","one":"%1$s нс","few":"%1$s нс","many":"%1$s нс","other":"%1$s нс"},"second":{"_name":"с","one":"%1$s с","few":"%1$s с","many":"%1$s с","other":"%1$s с","_per":"на с"},"week":{"_name":"тиж.","one":"%1$s тиж.","few":"%1$s тиж.","many":"%1$s тиж.","other":"%1$s тиж."},"year":{"_name":"р.","one":"%1$s р.","few":"%1$s р.","many":"%1$s р.","other":"%1$s р."}},"electric":{"ampere":{"_name":"А","one":"%1$s А","few":"%1$s А","many":"%1$s А","other":"%1$s А"},"milliampere":{"_name":"мА","one":"%1$s мА","few":"%1$s мА","many":"%1$s мА","other":"%1$s мА"},"ohm":{"_name":"оми","one":"%1$s Ом","few":"%1$s Ом","many":"%1$s Ом","other":"%1$s Ом"},"volt":{"_name":"вольти","one":"%1$s В","few":"%1$s В","many":"%1$s В","other":"%1$s В"}},"energy":{"calorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"foodcalorie":{"_name":"Кал","one":"%1$s Кал","few":"%1$s Кал","many":"%1$s Кал","other":"%1$s Кал"},"joule":{"_name":"джоулі","one":"%1$s Дж","few":"%1$s Дж","many":"%1$s Дж","other":"%1$s Дж"},"kilocalorie":{"_name":"Ккал","one":"%1$s Ккал","few":"%1$s Ккал","many":"%1$s Ккал","other":"%1$s Ккал"},"kilojoule":{"_name":"кілоджоуль","one":"%1$s кДж","few":"%1$s кДж","many":"%1$s кДж","other":"%1$s кДж"},"kilowatt-hour":{"_name":"кВт год","one":"%1$s кВт год","few":"%1$s кВт год","many":"%1$s кВт год","other":"%1$s кВт год"}},"frequency":{"gigahertz":{"_name":"ГГц","one":"%1$s ГГц","few":"%1$s ГГц","many":"%1$s ГГц","other":"%1$s ГГц"},"hertz":{"_name":"Гц","one":"%1$s Гц","few":"%1$s Гц","many":"%1$s Гц","other":"%1$s Гц"},"kilohertz":{"_name":"кГц","one":"%1$s кГц","few":"%1$s кГц","many":"%1$s кГц","other":"%1$s кГц"},"megahertz":{"_name":"МГц","one":"%1$s МГц","few":"%1$s МГц","many":"%1$s МГц","other":"%1$s МГц"}},"length":{"astronomical-unit":{"_name":"а. о.","one":"%1$s а. о.","few":"%1$s а. о.","many":"%1$s а. о.","other":"%1$s а. о."},"centimeter":{"_name":"см","one":"%1$s см","few":"%1$s см","many":"%1$s см","other":"%1$s см"},"decimeter":{"_name":"дм","one":"%1$s дм","few":"%1$s дм","many":"%1$s дм","other":"%1$s дм"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"фут","one":"%1$s фут","few":"%1$s фути","many":"%1$s футів","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюйми","one":"%1$s дюйм","few":"%1$s дюйми","many":"%1$s дюймів","other":"%1$s дюйма"},"kilometer":{"_name":"км","one":"%1$s км","few":"%1$s км","many":"%1$s км","other":"%1$s км"},"light-year":{"_name":"св. р.","one":"%1$s св. р.","few":"%1$s св. р.","many":"%1$s св. р.","other":"%1$s св. р."},"meter":{"_name":"метри","one":"%1$s м","few":"%1$s м","many":"%1$s м","other":"%1$s м"},"micrometer":{"_name":"мкм","one":"%1$s мкм","few":"%1$s мкм","many":"%1$s мкм","other":"%1$s мкм"},"mile":{"_name":"милі","one":"%1$s миля","few":"%1$s милі","many":"%1$s миль","other":"%1$s милі"},"millimeter":{"_name":"мм","one":"%1$s мм","few":"%1$s мм","many":"%1$s мм","other":"%1$s мм"},"nanometer":{"_name":"нм","one":"%1$s нм","few":"%1$s нм","many":"%1$s нм","other":"%1$s нм"},"nautical-mile":{"_name":"м. милі","one":"%1$s м. миля","few":"%1$s м. милі","many":"%1$s м. миль","other":"%1$s м. милі"},"parsec":{"_name":"парсеки","one":"%1$s пк","few":"%1$s пк","many":"%1$s пк","other":"%1$s пк"},"picometer":{"_name":"пм","one":"%1$s пм","few":"%1$s пм","many":"%1$s пм","other":"%1$s пм"},"yard":{"_name":"ярди","one":"%1$s ярд","few":"%1$s ярди","many":"%1$s ярдів","other":"%1$s ярда"}},"light":{"lux":{"_name":"люкс","one":"%1$s лк","few":"%1$s лк","many":"%1$s лк","other":"%1$s лк"}},"mass":{"carat":{"_name":"карати","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"},"gram":{"_name":"грами","one":"%1$s г","few":"%1$s г","many":"%1$s г","other":"%1$s г"},"kilogram":{"_name":"кг","one":"%1$s кг","few":"%1$s кг","many":"%1$s кг","other":"%1$s кг"},"metric-ton":{"_name":"метр. т","one":"%1$s метр. т","few":"%1$s метр. т","many":"%1$s метр. т","other":"%1$s метр. т"},"microgram":{"_name":"мкг","one":"%1$s мкг","few":"%1$s мкг","many":"%1$s мкг","other":"%1$s мкг"},"milligram":{"_name":"мг","one":"%1$s мг","few":"%1$s мг","many":"%1$s мг","other":"%1$s мг"},"ounce":{"_name":"унції","one":"%1$s унція","few":"%1$s унції","many":"%1$s унцій","other":"%1$s унції"},"ounce-troy":{"_name":"тр. унції","one":"%1$s тр. унція","few":"%1$s тр. унції","many":"%1$s тр. унцій","other":"%1$s тр. унції"},"pound":{"_name":"фунти","one":"%1$s фунт","few":"%1$s фунти","many":"%1$s фунтів","other":"%1$s фунта"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"тонни","one":"%1$s т","few":"%1$s т","many":"%1$s т","other":"%1$s т"}},"power":{"gigawatt":{"_name":"ГВт","one":"%1$s ГВт","few":"%1$s ГВт","many":"%1$s ГВт","other":"%1$s ГВт"},"horsepower":{"_name":"к. с.","one":"%1$s к. с.","few":"%1$s к. с.","many":"%1$s к. с.","other":"%1$s к. с."},"kilowatt":{"_name":"кВт","one":"%1$s кВт","few":"%1$s кВт","many":"%1$s кВт","other":"%1$s кВт"},"megawatt":{"_name":"МВт","one":"%1$s МВт","few":"%1$s МВт","many":"%1$s МВт","other":"%1$s МВт"},"milliwatt":{"_name":"мВт","one":"%1$s мВт","few":"%1$s мВт","many":"%1$s мВт","other":"%1$s мВт"},"watt":{"_name":"вати","one":"%1$s Вт","few":"%1$s Вт","many":"%1$s Вт","other":"%1$s Вт"}},"pressure":{"hectopascal":{"_name":"гПа","one":"%1$s гПа","few":"%1$s гПа","many":"%1$s гПа","other":"%1$s гПа"},"inch-hg":{"_name":"дюйми рт. ст.","one":"%1$s дюйм рт. ст.","few":"%1$s дюйми рт. ст.","many":"%1$s дюймів рт. ст.","other":"%1$s дюйма рт. ст."},"millibar":{"_name":"мбар","one":"%1$s мбар","few":"%1$s мбари","many":"%1$s мбарів","other":"%1$s мбара"},"millimeter-of-mercury":{"_name":"мм рт. ст.","one":"%1$s мм рт. ст.","few":"%1$s мм рт. ст.","many":"%1$s мм рт. ст.","other":"%1$s мм рт. ст."},"pound-per-square-inch":{"_name":"фунт/дюйм²","one":"%1$s фунт/дюйм²","few":"%1$s фунти/дюйм²","many":"%1$s фунтів/дюйм²","other":"%1$s фунта/дюйм²"}},"proportion":{"karat":{"_name":"Карати","one":"%1$s Кар.","few":"%1$s Кар.","many":"%1$s Кар.","other":"%1$s Кар."}},"speed":{"kilometer-per-hour":{"_name":"км/годину","one":"%1$s км/год","few":"%1$s км/год","many":"%1$s км/год","other":"%1$s км/год"},"meter-per-second":{"_name":"метри/с","one":"%1$s м/с","few":"%1$s м/с","many":"%1$s м/с","other":"%1$s м/с"},"mile-per-hour":{"_name":"милі/год","one":"%1$s миля/год","few":"%1$s милі/год","many":"%1$s миль/год","other":"%1$s милі/год"}},"temperature":{"celsius":{"_name":"градус Цельсія","one":"%1$s°C","few":"%1$s°C","many":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"градус Фаренгейта","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"кельвін","one":"%1$s К","few":"%1$s К","many":"%1$s К","other":"%1$s К"}},"volume":{"acre-foot":{"_name":"акр-фути","one":"%1$s акр-фут","few":"%1$s акр-фути","many":"%1$s акр-футів","other":"%1$s акр-фута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сл","one":"%1$s сл","few":"%1$s сл","many":"%1$s сл","other":"%1$s сл"},"cubic-centimeter":{"_name":"см³","one":"%1$s см³","few":"%1$s см³","many":"%1$s см³","other":"%1$s см³"},"cubic-foot":{"_name":"фути³","one":"%1$s фут³","few":"%1$s фути³","many":"%1$s футів³","other":"%1$s фута³"},"cubic-inch":{"_name":"дюйми³","one":"%1$s дюйм³","few":"%1$s дюйми³","many":"%1$s дюймів³","other":"%1$s дюйма³"},"cubic-kilometer":{"_name":"км³","one":"%1$s км³","few":"%1$s км³","many":"%1$s км³","other":"%1$s км³"},"cubic-meter":{"_name":"м³","one":"%1$s м³","few":"%1$s м³","many":"%1$s м³","other":"%1$s м³"},"cubic-mile":{"_name":"милі³","one":"%1$s миля³","few":"%1$s милі³","many":"%1$s миль³","other":"%1$s милі³"},"cubic-yard":{"_name":"ярди³","one":"%1$s ярд³","few":"%1$s ярди³","many":"%1$s ярдів³","other":"%1$s ярда³"},"cup":{"_name":"чашка","one":"%1$s чаш.","few":"%1$s чаш.","many":"%1$s чаш.","other":"%1$s чаш."},"deciliter":{"_name":"дл","one":"%1$s дл","few":"%1$s дл","many":"%1$s дл","other":"%1$s дл"},"fluid-ounce":{"_name":"рід. ун.","one":"%1$s рід. ун.","few":"%1$s рід. ун.","many":"%1$s рід. ун.","other":"%1$s рід. ун."},"gallon":{"_name":"гал.","one":"%1$s гал.","few":"%1$s гал.","many":"%1$s гал.","other":"%1$s гал."},"hectoliter":{"_name":"гл","one":"%1$s гл","few":"%1$s гл","many":"%1$s гл","other":"%1$s гл"},"liter":{"_name":"літри","one":"%1$s л","few":"%1$s л","many":"%1$s л","other":"%1$s л"},"megaliter":{"_name":"Мл","one":"%1$s Мл","few":"%1$s Мл","many":"%1$s Мл","other":"%1$s Мл"},"milliliter":{"_name":"мл","one":"%1$s мл","few":"%1$s мл","many":"%1$s мл","other":"%1$s мл"},"pint":{"_name":"пінти","one":"%1$s пінта","few":"%1$s пінти","many":"%1$s пінт","other":"%1$s пінти"},"quart":{"_name":"квар.","one":"%1$s квар.","few":"%1$s квар.","many":"%1$s квар.","other":"%1$s квар."},"tablespoon":{"_name":"ст. л.","one":"%1$s ст. л.","few":"%1$s ст. л.","many":"%1$s ст. л.","other":"%1$s ст. л."},"teaspoon":{"_name":"ч. л.","one":"%1$s ч. л.","few":"%1$s ч. л.","many":"%1$s ч. л.","other":"%1$s ч. л."}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"сили тяжіння","one":"%1$s G","few":"%1$s G","many":"%1$s G","other":"%1$s G"},"meter-per-second-squared":{"_name":"метри/с²","one":"%1$s м/с²","few":"%1$s м/с²","many":"%1$s м/с²","other":"%1$s м/с²"}},"angle":{"arc-minute":{"_name":"мінути","one":"%1$s′","few":"%1$s′","many":"%1$s′","other":"%1$s′"},"arc-second":{"_name":"кут. сек.","one":"%1$s″","few":"%1$s″","many":"%1$s″","other":"%1$s″"},"degree":{"_name":"градуси","one":"%1$s°","few":"%1$s°","many":"%1$s°","other":"%1$s°"},"radian":{"_name":"радіани","one":"%1$s рад.","few":"%1$s рад.","many":"%1$s рад.","other":"%1$s рад."}},"area":{"acre":{"_name":"акри","one":"%1$s акр","few":"%1$s акри","many":"%1$s акрів","other":"%1$s акра"},"hectare":{"_name":"гектари","one":"%1$s га","few":"%1$s га","many":"%1$s га","other":"%1$s га"},"square-centimeter":{"_name":"см²","one":"%1$s см²","few":"%1$s см²","many":"%1$s см²","other":"%1$s см²"},"square-foot":{"_name":"фути²","one":"%1$s фут²","few":"%1$s фути²","many":"%1$s футів²","other":"%1$s фута²"},"square-inch":{"_name":"дюйми²","one":"%1$s дюйма²","few":"%1$s дюйма²","many":"%1$s дюйма²","other":"%1$s дюйма²"},"square-kilometer":{"_name":"км²","one":"%1$s км²","few":"%1$s км²","many":"%1$s км²","other":"%1$s км²"},"square-meter":{"_name":"м²","one":"%1$s м²","few":"%1$s м²","many":"%1$s м²","other":"%1$s м²"},"square-mile":{"_name":"милі²","one":"%1$s миля²","few":"%1$s милі²","many":"%1$s миль²","other":"%1$s милі²"},"square-yard":{"_name":"ярди²","one":"%1$s ярда²","few":"%1$s ярда²","many":"%1$s ярда²","other":"%1$s ярда²"}},"consumption":{"liter-per-kilometer":{"_name":"літри/км","one":"%1$s л/км","few":"%1$s л/км","many":"%1$s л/км","other":"%1$s л/км"},"mile-per-gallon":{"_name":"милі/галон","one":"%1$s милі/галон","few":"%1$s милі/галон","many":"%1$s милі/галон","other":"%1$s милі/галон"}},"digital":{"bit":{"_name":"біт","one":"%1$s б","few":"%1$s б","many":"%1$s б","other":"%1$s б"},"byte":{"_name":"байт","one":"%1$s Б","few":"%1$s Б","many":"%1$s Б","other":"%1$s Б"},"gigabit":{"_name":"Гбіт","one":"%1$s Гб","few":"%1$s Гб","many":"%1$s Гб","other":"%1$s Гб"},"gigabyte":{"_name":"Гбайт","one":"%1$s ГБ","few":"%1$s ГБ","many":"%1$s ГБ","other":"%1$s ГБ"},"kilobit":{"_name":"кбіт","one":"%1$s кб","few":"%1$s кб","many":"%1$s кб","other":"%1$s кб"},"kilobyte":{"_name":"кбайт","one":"%1$s кБ","few":"%1$s кБ","many":"%1$s кБ","other":"%1$s кБ"},"megabit":{"_name":"Мбіт","one":"%1$s Мб","few":"%1$s Мб","many":"%1$s Мб","other":"%1$s Мб"},"megabyte":{"_name":"Мбайт","one":"%1$s МБ","few":"%1$s МБ","many":"%1$s МБ","other":"%1$s МБ"},"terabit":{"_name":"Тбіт","one":"%1$s Тб","few":"%1$s Тб","many":"%1$s Тб","other":"%1$s Тб"},"terabyte":{"_name":"Тбайт","one":"%1$s ТБ","few":"%1$s ТБ","many":"%1$s ТБ","other":"%1$s ТБ"}},"duration":{"day":{"_name":"день","one":"%1$s д.","few":"%1$s дн.","many":"%1$s дн.","other":"%1$s дн."},"hour":{"_name":"год","one":"%1$s год","few":"%1$s год","many":"%1$s год","other":"%1$s год","_per":"на год"},"microsecond":{"_name":"мкс","one":"%1$s мкс","few":"%1$s мкс","many":"%1$s мкс","other":"%1$s мкс"},"millisecond":{"_name":"мс","one":"%1$s мс","few":"%1$s мс","many":"%1$s мс","other":"%1$s мс"},"minute":{"_name":"хв","one":"%1$s хв","few":"%1$s хв","many":"%1$s хв","other":"%1$s хв"},"month":{"_name":"міс.","one":"%1$s міс.","few":"%1$s міс.","many":"%1$s міс.","other":"%1$s міс."},"nanosecond":{"_name":"нс","one":"%1$s нс","few":"%1$s нс","many":"%1$s нс","other":"%1$s нс"},"second":{"_name":"с","one":"%1$s с","few":"%1$s с","many":"%1$s с","other":"%1$s с","_per":"на с"},"week":{"_name":"тиж.","one":"%1$s тиж.","few":"%1$s тиж.","many":"%1$s тиж.","other":"%1$s тиж."},"year":{"_name":"р.","one":"%1$s р.","few":"%1$s р.","many":"%1$s р.","other":"%1$s р."}},"electric":{"ampere":{"_name":"А","one":"%1$s А","few":"%1$s А","many":"%1$s А","other":"%1$s А"},"milliampere":{"_name":"мА","one":"%1$s мА","few":"%1$s мА","many":"%1$s мА","other":"%1$s мА"},"ohm":{"_name":"оми","one":"%1$s Ом","few":"%1$s Ом","many":"%1$s Ом","other":"%1$s Ом"},"volt":{"_name":"вольти","one":"%1$s В","few":"%1$s В","many":"%1$s В","other":"%1$s В"}},"energy":{"calorie":{"_name":"кал","one":"%1$s кал","few":"%1$s кал","many":"%1$s кал","other":"%1$s кал"},"foodcalorie":{"_name":"Кал","one":"%1$s Кал","few":"%1$s Кал","many":"%1$s Кал","other":"%1$s Кал"},"joule":{"_name":"джоулі","one":"%1$s Дж","few":"%1$s Дж","many":"%1$s Дж","other":"%1$s Дж"},"kilocalorie":{"_name":"Ккал","one":"%1$s Ккал","few":"%1$s Ккал","many":"%1$s Ккал","other":"%1$s Ккал"},"kilojoule":{"_name":"кілоджоуль","one":"%1$s кДж","few":"%1$s кДж","many":"%1$s кДж","other":"%1$s кДж"},"kilowatt-hour":{"_name":"кВт год","one":"%1$s кВт год","few":"%1$s кВт год","many":"%1$s кВт год","other":"%1$s кВт год"}},"frequency":{"gigahertz":{"_name":"ГГц","one":"%1$s ГГц","few":"%1$s ГГц","many":"%1$s ГГц","other":"%1$s ГГц"},"hertz":{"_name":"Гц","one":"%1$s Гц","few":"%1$s Гц","many":"%1$s Гц","other":"%1$s Гц"},"kilohertz":{"_name":"кГц","one":"%1$s кГц","few":"%1$s кГц","many":"%1$s кГц","other":"%1$s кГц"},"megahertz":{"_name":"МГц","one":"%1$s МГц","few":"%1$s МГц","many":"%1$s МГц","other":"%1$s МГц"}},"length":{"astronomical-unit":{"_name":"а. о.","one":"%1$s а. о.","few":"%1$s а. о.","many":"%1$s а. о.","other":"%1$s а. о."},"centimeter":{"_name":"см","one":"%1$s см","few":"%1$s см","many":"%1$s см","other":"%1$s см"},"decimeter":{"_name":"дм","one":"%1$s дм","few":"%1$s дм","many":"%1$s дм","other":"%1$s дм"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"фут","one":"%1$s фут","few":"%1$s фути","many":"%1$s футів","other":"%1$s фута"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"дюйми","one":"%1$s дюйм","few":"%1$s дюйми","many":"%1$s дюймів","other":"%1$s дюйма"},"kilometer":{"_name":"км","one":"%1$s км","few":"%1$s км","many":"%1$s км","other":"%1$s км"},"light-year":{"_name":"св. р.","one":"%1$s св. р.","few":"%1$s св. р.","many":"%1$s св. р.","other":"%1$s св. р."},"meter":{"_name":"метр","one":"%1$s м","few":"%1$s м","many":"%1$s м","other":"%1$s м"},"micrometer":{"_name":"мкм","one":"%1$s мкм","few":"%1$s мкм","many":"%1$s мкм","other":"%1$s мкм"},"mile":{"_name":"милі","one":"%1$s миля","few":"%1$s милі","many":"%1$s миль","other":"%1$s милі"},"millimeter":{"_name":"мм","one":"%1$s мм","few":"%1$s мм","many":"%1$s мм","other":"%1$s мм"},"nanometer":{"_name":"нм","one":"%1$s нм","few":"%1$s нм","many":"%1$s нм","other":"%1$s нм"},"nautical-mile":{"_name":"м. милі","one":"%1$s м. милі","few":"%1$s м. милі","many":"%1$s м. милі","other":"%1$s м. милі"},"parsec":{"_name":"парсеки","one":"%1$s пк","few":"%1$s пк","many":"%1$s пк","other":"%1$s пк"},"picometer":{"_name":"пм","one":"%1$s пм","few":"%1$s пм","many":"%1$s пм","other":"%1$s пм"},"yard":{"_name":"ярди","one":"%1$s ярд","few":"%1$s ярди","many":"%1$s ярдів","other":"%1$s ярда"}},"light":{"lux":{"_name":"люкс","one":"%1$s лк","few":"%1$s лк","many":"%1$s лк","other":"%1$s лк"}},"mass":{"carat":{"_name":"карати","one":"%1$s кар","few":"%1$s кар","many":"%1$s кар","other":"%1$s кар"},"gram":{"_name":"грам","one":"%1$s г","few":"%1$s г","many":"%1$s г","other":"%1$s г"},"kilogram":{"_name":"кг","one":"%1$s кг","few":"%1$s кг","many":"%1$s кг","other":"%1$s кг"},"metric-ton":{"_name":"метр. т","one":"%1$s метр. т","few":"%1$s метр. т","many":"%1$s метр. т","other":"%1$s метр. т"},"microgram":{"_name":"мкг","one":"%1$s мкг","few":"%1$s мкг","many":"%1$s мкг","other":"%1$s мкг"},"milligram":{"_name":"мг","one":"%1$s мг","few":"%1$s мг","many":"%1$s мг","other":"%1$s мг"},"ounce":{"_name":"унції","one":"%1$s унція","few":"%1$s унції","many":"%1$s унцій","other":"%1$s унції"},"ounce-troy":{"_name":"тр. унції","one":"%1$s тр. унції","few":"%1$s тр. унції","many":"%1$s тр. унції","other":"%1$s тр. унції"},"pound":{"_name":"фунти","one":"%1$s фунт","few":"%1$s фунти","many":"%1$s фунтів","other":"%1$s фунта"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"тонни","one":"%1$s т","few":"%1$s т","many":"%1$s т","other":"%1$s т"}},"power":{"gigawatt":{"_name":"ГВт","one":"%1$s ГВт","few":"%1$s ГВт","many":"%1$s ГВт","other":"%1$s ГВт"},"horsepower":{"_name":"к. с.","one":"%1$s к.с.","few":"%1$s к.с.","many":"%1$s к.с.","other":"%1$s к.с."},"kilowatt":{"_name":"кВт","one":"%1$s кВт","few":"%1$s кВт","many":"%1$s кВт","other":"%1$s кВт"},"megawatt":{"_name":"МВт","one":"%1$s МВт","few":"%1$s МВт","many":"%1$s МВт","other":"%1$s МВт"},"milliwatt":{"_name":"мВт","one":"%1$s мВт","few":"%1$s мВт","many":"%1$s мВт","other":"%1$s мВт"},"watt":{"_name":"вати","one":"%1$s Вт","few":"%1$s Вт","many":"%1$s Вт","other":"%1$s Вт"}},"pressure":{"hectopascal":{"_name":"гПа","one":"%1$s гПа","few":"%1$s гПа","many":"%1$s гПа","other":"%1$s гПа"},"inch-hg":{"_name":"дюйми рт. ст.","one":"%1$s inHg","few":"%1$s inHg","many":"%1$s inHg","other":"%1$s inHg"},"millibar":{"_name":"мбар","one":"%1$s мбар","few":"%1$s мбари","many":"%1$s мбарів","other":"%1$s мбара"},"millimeter-of-mercury":{"_name":"мм рт. ст.","one":"%1$s мм рт. ст.","few":"%1$s мм рт. ст.","many":"%1$s мм рт. ст.","other":"%1$s мм рт. ст."},"pound-per-square-inch":{"_name":"фунт/дюйм²","one":"%1$s фунта/дюйм²","few":"%1$s фунта/дюйм²","many":"%1$s фунта/дюйм²","other":"%1$s фунта/дюйм²"}},"proportion":{"karat":{"_name":"Карати","one":"%1$s Кар.","few":"%1$s Кар.","many":"%1$s Кар.","other":"%1$s Кар."}},"speed":{"kilometer-per-hour":{"_name":"км/год","one":"%1$s км/год","few":"%1$s км/год","many":"%1$s км/год","other":"%1$s км/год"},"meter-per-second":{"_name":"метри/с","one":"%1$s м/с","few":"%1$s м/с","many":"%1$s м/с","other":"%1$s м/с"},"mile-per-hour":{"_name":"милі/год","one":"%1$s миля/год","few":"%1$s милі/год","many":"%1$s миль/год","other":"%1$s милі/год"}},"temperature":{"celsius":{"_name":"°C","one":"%1$s°C","few":"%1$s°C","many":"%1$s°C","other":"%1$s°C"},"fahrenheit":{"_name":"градус Фаренгейта","one":"%1$s°F","few":"%1$s°F","many":"%1$s°F","other":"%1$s°F"},"kelvin":{"_name":"кельвін","one":"%1$s К","few":"%1$s К","many":"%1$s К","other":"%1$s К"}},"volume":{"acre-foot":{"_name":"акр-фути","one":"%1$s акр-фута","few":"%1$s акр-фута","many":"%1$s акр-фута","other":"%1$s акр-фута"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"сл","one":"%1$s сл","few":"%1$s сл","many":"%1$s сл","other":"%1$s сл"},"cubic-centimeter":{"_name":"см³","one":"%1$s см³","few":"%1$s см³","many":"%1$s см³","other":"%1$s см³"},"cubic-foot":{"_name":"фути³","one":"%1$s фута³","few":"%1$s фута³","many":"%1$s фута³","other":"%1$s фута³"},"cubic-inch":{"_name":"дюйми³","one":"%1$s дюйма³","few":"%1$s дюйма³","many":"%1$s дюйма³","other":"%1$s дюйма³"},"cubic-kilometer":{"_name":"км³","one":"%1$s км³","few":"%1$s км³","many":"%1$s км³","other":"%1$s км³"},"cubic-meter":{"_name":"м³","one":"%1$s м³","few":"%1$s м³","many":"%1$s м³","other":"%1$s м³"},"cubic-mile":{"_name":"милі³","one":"%1$s миля³","few":"%1$s милі³","many":"%1$s миль³","other":"%1$s милі³"},"cubic-yard":{"_name":"ярди³","one":"%1$s ярда³","few":"%1$s ярда³","many":"%1$s ярда³","other":"%1$s ярда³"},"cup":{"_name":"чашка","one":"%1$s чаш.","few":"%1$s чаш.","many":"%1$s чаш.","other":"%1$s чаш."},"deciliter":{"_name":"дл","one":"%1$s дл","few":"%1$s дл","many":"%1$s дл","other":"%1$s дл"},"fluid-ounce":{"_name":"рід. ун.","one":"%1$s рід. ун.","few":"%1$s рід. ун.","many":"%1$s рід. ун.","other":"%1$s рід. ун."},"gallon":{"_name":"гал.","one":"%1$s гал.","few":"%1$s гал.","many":"%1$s гал.","other":"%1$s гал."},"hectoliter":{"_name":"гл","one":"%1$s гл","few":"%1$s гл","many":"%1$s гл","other":"%1$s гл"},"liter":{"_name":"літр","one":"%1$s л","few":"%1$s л","many":"%1$s л","other":"%1$s л"},"megaliter":{"_name":"Мл","one":"%1$s Мл","few":"%1$s Мл","many":"%1$s Мл","other":"%1$s Мл"},"milliliter":{"_name":"мл","one":"%1$s мл","few":"%1$s мл","many":"%1$s мл","other":"%1$s мл"},"pint":{"_name":"пінти","one":"%1$s пінти","few":"%1$s пінти","many":"%1$s пінти","other":"%1$s пінти"},"quart":{"_name":"квар.","one":"%1$s квар.","few":"%1$s квар.","many":"%1$s квар.","other":"%1$s квар."},"tablespoon":{"_name":"ст. л.","one":"%1$s ст. л.","few":"%1$s ст. л.","many":"%1$s ст. л.","other":"%1$s ст. л."},"teaspoon":{"_name":"ч. л.","one":"%1$s ч. л.","few":"%1$s ч. л.","many":"%1$s ч. л.","other":"%1$s ч. л."}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/vi/calendar.json b/Punic/data/vi/calendar.json new file mode 100644 index 0000000..cb78555 --- /dev/null +++ b/Punic/data/vi/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"thg 1","2":"thg 2","3":"thg 3","4":"thg 4","5":"thg 5","6":"thg 6","7":"thg 7","8":"thg 8","9":"thg 9","10":"thg 10","11":"thg 11","12":"thg 12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"tháng 1","2":"tháng 2","3":"tháng 3","4":"tháng 4","5":"tháng 5","6":"tháng 6","7":"tháng 7","8":"tháng 8","9":"tháng 9","10":"tháng 10","11":"tháng 11","12":"tháng 12"}},"stand-alone":{"abbreviated":{"1":"Thg 1","2":"Thg 2","3":"Thg 3","4":"Thg 4","5":"Thg 5","6":"Thg 6","7":"Thg 7","8":"Thg 8","9":"Thg 9","10":"Thg 10","11":"Thg 11","12":"Thg 12"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"Tháng 1","2":"Tháng 2","3":"Tháng 3","4":"Tháng 4","5":"Tháng 5","6":"Tháng 6","7":"Tháng 7","8":"Tháng 8","9":"Tháng 9","10":"Tháng 10","11":"Tháng 11","12":"Tháng 12"}}},"days":{"format":{"abbreviated":{"sun":"CN","mon":"Th 2","tue":"Th 3","wed":"Th 4","thu":"Th 5","fri":"Th 6","sat":"Th 7"},"narrow":{"sun":"CN","mon":"T2","tue":"T3","wed":"T4","thu":"T5","fri":"T6","sat":"T7"},"short":{"sun":"CN","mon":"T2","tue":"T3","wed":"T4","thu":"T5","fri":"T6","sat":"T7"},"wide":{"sun":"Chủ Nhật","mon":"Thứ Hai","tue":"Thứ Ba","wed":"Thứ Tư","thu":"Thứ Năm","fri":"Thứ Sáu","sat":"Thứ Bảy"}},"stand-alone":{"abbreviated":{"sun":"CN","mon":"Th 2","tue":"Th 3","wed":"Th 4","thu":"Th 5","fri":"Th 6","sat":"Th 7"},"narrow":{"sun":"CN","mon":"T2","tue":"T3","wed":"T4","thu":"T5","fri":"T6","sat":"T7"},"short":{"sun":"CN","mon":"T2","tue":"T3","wed":"T4","thu":"T5","fri":"T6","sat":"T7"},"wide":{"sun":"Chủ Nhật","mon":"Thứ Hai","tue":"Thứ Ba","wed":"Thứ Tư","thu":"Thứ Năm","fri":"Thứ Sáu","sat":"Thứ Bảy"}}},"quarters":{"format":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"Quý 1","2":"Quý 2","3":"Quý 3","4":"Quý 4"}},"stand-alone":{"abbreviated":{"1":"Q1","2":"Q2","3":"Q3","4":"Q4"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"Quý 1","2":"Quý 2","3":"Quý 3","4":"Quý 4"}}},"dayPeriods":{"format":{"abbreviated":{"am":"SA","noon":"TR","pm":"CH"},"narrow":{"am":"s","noon":"tr","pm":"c"},"wide":{"am":"SA","noon":"TR","pm":"CH"}},"stand-alone":{"abbreviated":{"am":"SA","noon":"TR","pm":"CH"},"narrow":{"am":"s","noon":"tr","pm":"c"},"wide":{"am":"SA","noon":"TR","pm":"CH"}}},"eras":{"wide":{"0":"tr. CN","0-alt-variant":"BCE","1":"sau CN","1-alt-variant":"CE"},"abbreviated":{"0":"tr. CN","0-alt-variant":"BCE","1":"sau CN","1-alt-variant":"CE"},"narrow":{"0":"tr. CN","0-alt-variant":"BCE","1":"sau CN","1-alt-variant":"CE"}},"dateFormats":{"full":"EEEE, 'ngày' dd MMMM 'năm' y","long":"'Ngày' dd 'tháng' MM 'năm' y","medium":"dd-MM-y","short":"dd/MM/y"},"timeFormats":{"full":"HH:mm:ss zzzz","long":"HH:mm:ss z","medium":"HH:mm:ss","short":"HH:mm"},"dateTimeFormats":{"full":"%1$s %2$s","long":"%1$s %2$s","medium":"%1$s %2$s","short":"%1$s %2$s"}} \ No newline at end of file diff --git a/Punic/data/vi/dateFields.json b/Punic/data/vi/dateFields.json new file mode 100644 index 0000000..409cb34 --- /dev/null +++ b/Punic/data/vi/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"Thời đại"},"year":{"displayName":"Năm","relative-type--1":"năm ngoái","relative-type-0":"năm nay","relative-type-1":"năm sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} năm nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} năm trước"}},"year-short":{"displayName":"Năm","relative-type--1":"năm ngoái","relative-type-0":"năm nay","relative-type-1":"năm sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} năm nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} năm trước"}},"year-narrow":{"displayName":"Năm","relative-type--1":"năm ngoái","relative-type-0":"năm nay","relative-type-1":"năm sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} năm nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} năm trước"}},"quarter":{"displayName":"Quý","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} quý nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} quý trước"}},"quarter-short":{"displayName":"Quý","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} quý nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} quý trước"}},"quarter-narrow":{"displayName":"Quý","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} quý nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} quý trước"}},"month":{"displayName":"Tháng","relative-type--1":"tháng trước","relative-type-0":"tháng này","relative-type-1":"tháng sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tháng nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tháng trước"}},"month-short":{"displayName":"Tháng","relative-type--1":"tháng trước","relative-type-0":"tháng này","relative-type-1":"tháng sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tháng nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tháng trước"}},"month-narrow":{"displayName":"Tháng","relative-type--1":"tháng trước","relative-type-0":"tháng này","relative-type-1":"tháng sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tháng nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tháng trước"}},"week":{"displayName":"Tuần","relative-type--1":"tuần trước","relative-type-0":"tuần này","relative-type-1":"tuần sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tuần nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tuần trước"}},"week-short":{"displayName":"Tuần","relative-type--1":"tuần trước","relative-type-0":"tuần này","relative-type-1":"tuần sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tuần nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tuần trước"}},"week-narrow":{"displayName":"Tuần","relative-type--1":"tuần trước","relative-type-0":"tuần này","relative-type-1":"tuần sau","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} tuần nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} tuần trước"}},"day":{"displayName":"Ngày","relative-type--1":"hôm qua","relative-type--2":"hôm kia","relative-type-0":"hôm nay","relative-type-1":"ngày mai","relative-type-2":"ngày kia","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} ngày nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ngày trước"}},"day-short":{"displayName":"Ngày","relative-type--1":"hôm qua","relative-type--2":"hôm kia","relative-type-0":"hôm nay","relative-type-1":"ngày mai","relative-type-2":"ngày kia","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} ngày nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ngày trước"}},"day-narrow":{"displayName":"Ngày","relative-type--1":"hôm qua","relative-type--2":"hôm kia","relative-type-0":"hôm nay","relative-type-1":"ngày mai","relative-type-2":"ngày kia","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} ngày"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} ngày trước"}},"weekday":{"displayName":"Ngày trong tuần"},"sun":{"relative-type--1":"Chủ Nhật tuần trước","relative-type-0":"Chủ Nhật tuần này","relative-type-1":"Chủ Nhật tuần sau"},"sun-short":{"relative-type--1":"Chủ Nhật tuần trước","relative-type-0":"Chủ Nhật tuần này","relative-type-1":"Chủ Nhật tuần sau"},"sun-narrow":{"relative-type--1":"Chủ Nhật tuần trước","relative-type-0":"Chủ Nhật tuần này","relative-type-1":"Chủ Nhật tuần sau"},"mon":{"relative-type--1":"Thứ Hai tuần trước","relative-type-0":"Thứ Hai tuần này","relative-type-1":"Thứ Hai tuần sau"},"mon-short":{"relative-type--1":"Thứ Hai tuần trước","relative-type-0":"Thứ Hai tuần này","relative-type-1":"Thứ Hai tuần sau"},"mon-narrow":{"relative-type--1":"Thứ Hai tuần trước","relative-type-0":"Thứ Hai tuần này","relative-type-1":"Thứ Hai tuần sau"},"tue":{"relative-type--1":"Thứ Ba tuần trước","relative-type-0":"Thứ Ba tuần này","relative-type-1":"Thứ Ba tuần sau"},"tue-short":{"relative-type--1":"Thứ Ba tuần trước","relative-type-0":"Thứ Ba tuần này","relative-type-1":"Thứ Ba tuần sau"},"tue-narrow":{"relative-type--1":"Thứ Ba tuần trước","relative-type-0":"Thứ Ba tuần này","relative-type-1":"Thứ Ba tuần sau"},"wed":{"relative-type--1":"Thứ Tư tuần trước","relative-type-0":"Thứ Tư tuần này","relative-type-1":"Thứ Tư tuần sau"},"wed-short":{"relative-type--1":"Thứ Tư tuần trước","relative-type-0":"Thứ Tư tuần này","relative-type-1":"Thứ Tư tuần sau"},"wed-narrow":{"relative-type--1":"Thứ Tư tuần trước","relative-type-0":"Thứ Tư tuần này","relative-type-1":"Thứ Tư tuần sau"},"thu":{"relative-type--1":"Thứ Năm tuần trước","relative-type-0":"Thứ Năm tuần này","relative-type-1":"Thứ Năm tuần sau"},"thu-short":{"relative-type--1":"Thứ Năm tuần trước","relative-type-0":"Thứ Năm tuần này","relative-type-1":"Thứ Năm tuần sau"},"thu-narrow":{"relative-type--1":"Thứ Năm tuần trước","relative-type-0":"Thứ Năm tuần này","relative-type-1":"Thứ Năm tuần sau"},"fri":{"relative-type--1":"Thứ Sáu tuần trước","relative-type-0":"Thứ Sáu tuần này","relative-type-1":"Thứ Sáu tuần sau"},"fri-short":{"relative-type--1":"Thứ Sáu tuần trước","relative-type-0":"Thứ Sáu tuần này","relative-type-1":"Thứ Sáu tuần sau"},"fri-narrow":{"relative-type--1":"Thứ Sáu tuần trước","relative-type-0":"Thứ Sáu tuần này","relative-type-1":"Thứ Sáu tuần sau"},"sat":{"relative-type--1":"Thứ Bảy tuần trước","relative-type-0":"Thứ Bảy tuần này","relative-type-1":"Thứ Bảy tuần sau"},"sat-short":{"relative-type--1":"Thứ Bảy tuần trước","relative-type-0":"Thứ Bảy tuần này","relative-type-1":"Thứ Bảy tuần sau"},"sat-narrow":{"relative-type--1":"Thứ Bảy tuần trước","relative-type-0":"Thứ Bảy tuần này","relative-type-1":"Thứ Bảy tuần sau"},"dayperiod":{"displayName":"SA/CH"},"hour":{"displayName":"Giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giờ nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giờ trước"}},"hour-short":{"displayName":"Giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giờ nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giờ trước"}},"hour-narrow":{"displayName":"Giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giờ"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giờ trước"}},"minute":{"displayName":"Phút","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} phút nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} phút trước"}},"minute-short":{"displayName":"Phút","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} phút nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} phút trước"}},"minute-narrow":{"displayName":"Phút","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} phút"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} phút trước"}},"second":{"displayName":"Giây","relative-type-0":"bây giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giây nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giây trước"}},"second-short":{"displayName":"Giây","relative-type-0":"bây giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giây nữa"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giây trước"}},"second-narrow":{"displayName":"Giây","relative-type-0":"bây giờ","relativeTime-type-future":{"relativeTimePattern-count-other":"trong {0} giây"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} giây trước"}},"zone":{"displayName":"Múi giờ"}} \ No newline at end of file diff --git a/Punic/data/vi/languages.json b/Punic/data/vi/languages.json new file mode 100644 index 0000000..48f994b --- /dev/null +++ b/Punic/data/vi/languages.json @@ -0,0 +1 @@ +{"aa":"Tiếng Afar","ab":"Tiếng Abkhazia","ace":"Tiếng Achinese","ach":"Tiếng Acoli","ada":"Tiếng Adangme","ady":"Tiếng Adyghe","ae":"Tiếng Avestan","aeb":"aeb","af":"Tiếng Nam Phi","afh":"Tiếng Afrihili","agq":"Tiếng Aghem","ain":"Tiếng Ainu","ak":"Tiếng Akan","akk":"Tiếng Akkadia","akz":"akz","ale":"Tiếng Aleut","aln":"aln","alt":"Tiếng Altai Miền Nam","am":"Tiếng Amharic","an":"Tiếng Aragon","ang":"Tiếng Anh cổ","anp":"Tiếng Angika","ar":"Tiếng Ả Rập","ar-001":"Tiếng Ả Rập Hiện đại","arc":"Tiếng Aramaic","arn":"Tiếng Araucanian","aro":"aro","arp":"Tiếng Arapaho","arq":"arq","arw":"Tiếng Arawak","ary":"ary","arz":"arz","as":"Tiếng Assam","asa":"Tiếng Asu","ase":"ase","ast":"Tiếng Asturias","av":"Tiếng Avaric","avk":"avk","awa":"Tiếng Awadhi","ay":"Tiếng Aymara","az":"Tiếng Azerbaijan","az-alt-short":"Tiếng Azeri","azb":"azb","ba":"Tiếng Bashkir","bal":"Tiếng Baluchi","ban":"Tiếng Bali","bar":"bar","bas":"Tiếng Basaa","bax":"Tiếng Bamun","bbc":"bbc","bbj":"Tiếng Ghomala","be":"Tiếng Belarus","bej":"Tiếng Beja","bem":"Tiếng Bemba","bew":"bew","bez":"Tiếng Bena","bfd":"Tiếng Bafut","bfq":"bfq","bg":"Tiếng Bulgaria","bho":"Tiếng Bhojpuri","bi":"Tiếng Bislama","bik":"Tiếng Bikol","bin":"Tiếng Bini","bjn":"bjn","bkm":"Tiếng Kom","bla":"Tiếng Siksika","bm":"Tiếng Bambara","bn":"Tiếng Bengali","bo":"Tiếng Tây Tạng","bpy":"bpy","bqi":"bqi","br":"Tiếng Breton","bra":"Tiếng Braj","brh":"brh","brx":"Tiếng Bodo","bs":"Tiếng Nam Tư","bss":"Tiếng Akoose","bua":"Tiếng Buriat","bug":"Tiếng Bugin","bum":"Tiếng Bulu","byn":"Tiếng Blin","byv":"Tiếng Medumba","ca":"Tiếng Catalan","cad":"Tiếng Caddo","car":"Tiếng Carib","cay":"Tiếng Cayuga","cch":"Tiếng Atsam","ce":"Tiếng Chechen","ceb":"Tiếng Cebuano","cgg":"Tiếng Chiga","ch":"Tiếng Chamorro","chb":"Tiếng Chibcha","chg":"Tiếng Chagatai","chk":"Tiếng Chuuk","chm":"Tiếng Mari","chn":"Biệt ngữ Chinook","cho":"Tiếng Choctaw","chp":"Tiếng Chipewyan","chr":"Tiếng Cherokee","chy":"Tiếng Cheyenne","ckb":"Tiếng Kurd Sorani","co":"Tiếng Corsica","cop":"Tiếng Coptic","cps":"cps","cr":"Tiếng Cree","crh":"Tiếng Thổ Nhĩ Kỳ Crimean","cs":"Tiếng Séc","csb":"Tiếng Kashubia","cu":"Tiếng Slavơ Nhà thờ","cv":"Tiếng Chuvash","cy":"Tiếng Wales","da":"Tiếng Đan Mạch","dak":"Tiếng Dakota","dar":"Tiếng Dargwa","dav":"Tiếng Taita","de":"Tiếng Đức","de-AT":"de_AT","de-CH":"Tiếng Thượng Giéc-man (Thụy Sĩ)","del":"Tiếng Delaware","den":"Tiếng Slave","dgr":"Tiếng Dogrib","din":"Tiếng Dinka","dje":"Tiếng Zarma","doi":"Tiếng Dogri","dsb":"Tiếng Hạ Sorbia","dtp":"dtp","dua":"Tiếng Duala","dum":"Tiếng Hà Lan Trung cổ","dv":"Tiếng Divehi","dyo":"Tiếng Jola-Fonyi","dyu":"Tiếng Dyula","dz":"Tiếng Dzongkha","dzg":"Tiếng Dazaga","ebu":"Tiếng Embu","ee":"Tiếng Ewe","efi":"Tiếng Efik","egl":"egl","egy":"Tiếng Ai Cập cổ","eka":"Tiếng Ekajuk","el":"Tiếng Hy Lạp","elx":"Tiếng Elamite","en":"Tiếng Anh","en-AU":"en_AU","en-CA":"en_CA","en-GB":"Tiếng Anh (Anh)","en-GB-alt-short":"Tiếng Anh (Anh)","en-US":"Tiếng Anh (Mỹ)","en-US-alt-short":"Tiếng Anh (Mỹ)","enm":"Tiếng Anh Trung cổ","eo":"Tiếng Quốc Tế Ngữ","es":"Tiếng Tây Ban Nha","es-419":"Tiếng Tây Ban Nha (Mỹ La tinh)","es-ES":"es_ES","es-MX":"es_MX","esu":"esu","et":"Tiếng Estonia","eu":"Tiếng Basque","ewo":"Tiếng Ewondo","ext":"ext","fa":"Tiếng Ba Tư","fan":"Tiếng Fang","fat":"Tiếng Fanti","ff":"Tiếng Fulah","fi":"Tiếng Phần Lan","fil":"Tiếng Philipin","fit":"fit","fj":"Tiếng Fiji","fo":"Tiếng Faore","fon":"Tiếng Fon","fr":"Tiếng Pháp","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"frc","frm":"Tiếng Pháp Trung cổ","fro":"Tiếng Pháp cổ","frp":"frp","frr":"Tiếng Frisian Miền Bắc","frs":"Tiếng Frisian Miền Đông","fur":"Tiếng Friulian","fy":"Tiếng Frisia","ga":"Tiếng Ai-len","gaa":"Tiếng Ga","gag":"Tiếng Gagauz","gan":"gan","gay":"Tiếng Gayo","gba":"Tiếng Gbaya","gbz":"gbz","gd":"Tiếng Xentơ (Xcốt len)","gez":"Tiếng Geez","gil":"Tiếng Gilbert","gl":"Tiếng Galician","glk":"glk","gmh":"Tiếng Thượng Giéc-man Trung cổ","gn":"Tiếng Guarani","goh":"Tiếng Thượng Giéc-man cổ","gom":"gom","gon":"Tiếng Gondi","gor":"Tiếng Gorontalo","got":"Tiếng Gô-tích","grb":"Tiếng Grebo","grc":"Tiếng Hy Lạp cổ","gsw":"Tiếng Đức (Thụy Sĩ)","gu":"Tiếng Gujarati","guc":"guc","gur":"gur","guz":"Tiếng Gusii","gv":"Tiếng Manx","gwi":"Tiếng Gwichʼin","ha":"Tiếng Hausa","hai":"Tiếng Haida","hak":"hak","haw":"Tiếng Hawaii","he":"Tiếng Do Thái","hi":"Tiếng Hindi","hif":"hif","hil":"Tiếng Hiligaynon","hit":"Tiếng Hittite","hmn":"Tiếng Hmông","ho":"Tiếng Hiri Motu","hr":"Tiếng Croatia","hsb":"Tiếng Thượng Sorbia","hsn":"hsn","ht":"Tiếng Haiti","hu":"Tiếng Hungary","hup":"Tiếng Hupa","hy":"Tiếng Armenia","hz":"Tiếng Herero","ia":"Tiếng Khoa Học Quốc Tế","iba":"Tiếng Iban","ibb":"Tiếng Ibibio","id":"Tiếng Indonesia","ie":"Tiếng Interlingue","ig":"Tiếng Igbo","ii":"Tiếng Di Tứ Xuyên","ik":"Tiếng Inupiaq","ilo":"Tiếng Iloko","inh":"Tiếng Ingush","io":"Tiếng Ido","is":"Tiếng Iceland","it":"Tiếng Ý","iu":"Tiếng Inuktitut","izh":"izh","ja":"Tiếng Nhật","jam":"jam","jbo":"Tiếng Lojban","jgo":"Tiếng Ngomba","jmc":"Tiếng Machame","jpr":"Tiếng Judeo-Ba Tư","jrb":"Tiếng Judeo-Ả Rập","jut":"jut","jv":"Tiếng Java","ka":"Tiếng Gruzia","kaa":"Tiếng Kara-Kalpak","kab":"Tiếng Kabyle","kac":"Tiếng Kachin","kaj":"Tiếng Jju","kam":"Tiếng Kamba","kaw":"Tiếng Kawi","kbd":"Tiếng Kabardian","kbl":"Tiếng Kanembu","kcg":"Tiếng Tyap","kde":"Tiếng Makonde","kea":"Tiếng Kabuverdianu","ken":"ken","kfo":"Tiếng Koro","kg":"Tiếng Kongo","kgp":"kgp","kha":"Tiếng Khasi","kho":"Tiếng Khotan","khq":"Tiếng Koyra Chiini","khw":"khw","ki":"Tiếng Kikuyu","kiu":"kiu","kj":"Tiếng Kuanyama","kk":"Tiếng Kazakh","kkj":"Tiếng Kako","kl":"Tiếng Kalaallisut","kln":"Tiếng Kalenjin","km":"Tiếng Khơ-me","kmb":"Tiếng Kimbundu","kn":"Tiếng Kannada","ko":"Tiếng Hàn","koi":"Tiếng Komi-Permyak","kok":"Tiếng Konkani","kos":"Tiếng Kosrae","kpe":"Tiếng Kpelle","kr":"Tiếng Kanuri","krc":"Tiếng Karachay-Balkar","kri":"kri","krj":"krj","krl":"Tiếng Karelian","kru":"Tiếng Kurukh","ks":"Tiếng Kashmiri","ksb":"Tiếng Shambala","ksf":"Tiếng Bafia","ksh":"Tiếng Cologne","ku":"Tiếng Kurd","kum":"Tiếng Kumyk","kut":"Tiếng Kutenai","kv":"Tiếng Komi","kw":"Tiếng Cornwall","ky":"Tiếng Kyrgyz","la":"Tiếng La-tinh","lad":"Tiếng Ladino","lag":"Tiếng Langi","lah":"Tiếng Lahnda","lam":"Tiếng Lamba","lb":"Tiếng Luxembourg","lez":"Tiếng Lezghian","lfn":"lfn","lg":"Tiếng Ganda","li":"Tiếng Limburg","lij":"lij","liv":"liv","lkt":"Tiếng Lakota","lmo":"lmo","ln":"Tiếng Lingala","lo":"Tiếng Lào","lol":"Tiếng Mongo","loz":"Tiếng Lozi","lt":"Tiếng Lít-va","ltg":"ltg","lu":"Tiếng Luba-Katanga","lua":"Tiếng Luba-Lulua","lui":"Tiếng Luiseno","lun":"Tiếng Lunda","luo":"Tiếng Luo","lus":"Tiếng Lushai","luy":"Tiếng Luyia","lv":"Tiếng Latvia","lzh":"lzh","lzz":"lzz","mad":"Tiếng Madura","maf":"Tiếng Mafa","mag":"Tiếng Magahi","mai":"Tiếng Maithili","mak":"Tiếng Makasar","man":"Tiếng Mandingo","mas":"Tiếng Masai","mde":"Tiếng Maba","mdf":"Tiếng Moksha","mdr":"Tiếng Mandar","men":"Tiếng Mende","mer":"Tiếng Meru","mfe":"Tiếng Morisyen","mg":"Tiếng Malagasy","mga":"Tiếng Ai-len Trung cổ","mgh":"Tiếng Makhuwa-Meetto","mgo":"Tiếng Meta’","mh":"Tiếng Marshall","mi":"Tiếng Maori","mic":"Tiếng Micmac","min":"Tiếng Minangkabau","mk":"Tiếng Macedonia","ml":"Tiếng Malayalam","mn":"Tiếng Mông Cổ","mnc":"Tiếng Manchu","mni":"Tiếng Manipuri","moh":"Tiếng Mohawk","mos":"Tiếng Mossi","mr":"Tiếng Marathi","mrj":"mrj","ms":"Tiếng Malaysia","mt":"Tiếng Malt","mua":"Tiếng Mundang","mul":"Nhiều Ngôn ngữ","mus":"Tiếng Creek","mwl":"Tiếng Miranda","mwr":"Tiếng Marwari","mwv":"mwv","my":"Tiếng Miến Điện","mye":"Tiếng Myene","myv":"Tiếng Erzya","mzn":"mzn","na":"Tiếng Nauru","nan":"nan","nap":"Tiếng Napoli","naq":"Tiếng Nama","nb":"Tiếng Na Uy (Bokmål)","nd":"Tiếng Ndebele Miền Bắc","nds":"Tiếng Hạ Giéc-man","ne":"Tiếng Nepal","new":"Tiếng Newari","ng":"Tiếng Ndonga","nia":"Tiếng Nias","niu":"Tiếng Niuean","njo":"njo","nl":"Tiếng Hà Lan","nl-BE":"Tiếng Flemish","nmg":"Tiếng Kwasio","nn":"Tiếng Na Uy (Nynorsk)","nnh":"Tiếng Ngiemboon","no":"Tiếng Na Uy","nog":"Tiếng Nogai","non":"Tiếng Na Uy cổ","nov":"nov","nqo":"Tiếng N’Ko","nr":"Tiếng Ndebele Miền Nam","nso":"Bắc Sotho","nus":"Tiếng Nuer","nv":"Tiếng Navajo","nwc":"Tiếng Newari Cổ điển","ny":"Tiếng Nyanja","nym":"Tiếng Nyamwezi","nyn":"Tiếng Nyankole","nyo":"Tiếng Nyoro","nzi":"Tiếng Nzima","oc":"Tiếng Occitan","oj":"Tiếng Ojibwa","om":"Tiếng Oromo","or":"Tiếng Oriya","os":"Tiếng Ossetic","osa":"Tiếng Osage","ota":"Tiếng Thổ Nhĩ Kỳ Ottoman","pa":"Tiếng Punjab","pag":"Tiếng Pangasinan","pal":"Tiếng Pahlavi","pam":"Tiếng Pampanga","pap":"Tiếng Papiamento","pau":"Tiếng Palauan","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"Tiếng Ba Tư cổ","pfl":"pfl","phn":"Tiếng Phoenicia","pi":"Tiếng Pali","pl":"Tiếng Ba Lan","pms":"pms","pnt":"pnt","pon":"Tiếng Pohnpeian","prg":"prg","pro":"Tiếng Provençal cổ","ps":"Tiếng Pashto","ps-alt-variant":"Tiếng Pushto","pt":"Tiếng Bồ Đào Nha","pt-BR":"Tiếng Bồ Đào Nha (Braxin)","pt-PT":"pt_PT","qu":"Tiếng Quechua","quc":"Tiếng Kʼicheʼ","qug":"qug","raj":"Tiếng Rajasthani","rap":"Tiếng Rapanui","rar":"Tiếng Rarotongan","rgn":"rgn","rif":"rif","rm":"Tiếng Romansh","rn":"Tiếng Rundi","ro":"Tiếng Rumani","ro-MD":"Tiếng Moldova","rof":"Tiếng Rombo","rom":"Tiếng Romany","root":"Tiếng Root","rtm":"rtm","ru":"Tiếng Nga","rue":"rue","rug":"rug","rup":"Tiếng Aromania","rw":"Tiếng Kinyarwanda","rwk":"Tiếng Rwa","sa":"Tiếng Phạn","sad":"Tiếng Sandawe","sah":"Tiếng Sakha","sam":"Tiếng Samaritan Aramaic","saq":"Tiếng Samburu","sas":"Tiếng Sasak","sat":"Tiếng Santali","saz":"saz","sba":"Tiếng Ngambay","sbp":"Tiếng Sangu","sc":"Tiếng Sardinia","scn":"Tiếng Sicilia","sco":"Tiếng Scots","sd":"Tiếng Sindhi","sdc":"sdc","se":"Tiếng Sami Miền Bắc","see":"Tiếng Seneca","seh":"Tiếng Sena","sei":"sei","sel":"Tiếng Selkup","ses":"Tiếng Koyraboro Senni","sg":"Tiếng Sango","sga":"Tiếng Ai-len cổ","sgs":"sgs","sh":"Tiếng Xéc bi - Croatia","shi":"Tiếng Tachelhit","shn":"Tiếng Shan","shu":"Tiếng Ả-Rập Chad","si":"Tiếng Sinhala","sid":"Tiếng Sidamo","sk":"Tiếng Slovak","sl":"Tiếng Slovenia","sli":"sli","sly":"sly","sm":"Tiếng Samoa","sma":"TIếng Sami Miền Nam","smj":"Tiếng Lule Sami","smn":"Tiếng Inari Sami","sms":"Tiếng Skolt Sami","sn":"Tiếng Shona","snk":"Tiếng Soninke","so":"Tiếng Somali","sog":"Tiếng Sogdien","sq":"Tiếng An-ba-ni","sr":"Tiếng Serbia","srn":"Tiếng Sranan Tongo","srr":"Tiếng Serer","ss":"Tiếng Swati","ssy":"Tiếng Saho","st":"Tiếng Sesotho","stq":"stq","su":"Tiếng Sudan","suk":"Tiếng Sukuma","sus":"Tiếng Susu","sux":"Tiếng Sumeria","sv":"Tiếng Thụy Điển","sw":"Tiếng Swahili","swb":"Tiếng Cômo","swc":"Tiếng Swahili Congo","syc":"Tiếng Syria Cổ điển","syr":"Tiếng Syriac","szl":"szl","ta":"Tiếng Tamil","tcy":"tcy","te":"Tiếng Telugu","tem":"Tiếng Timne","teo":"Tiếng Teso","ter":"Tiếng Tereno","tet":"Tetum","tg":"Tiếng Tajik","th":"Tiếng Thái","ti":"Tiếng Tigrigya","tig":"Tiếng Tigre","tiv":"Tiếng Tiv","tk":"Tiếng Turk","tkl":"Tiếng Tokelau","tkr":"tkr","tl":"Tiếng Tagalog","tlh":"Tiếng Klingon","tli":"Tiếng Tlingit","tly":"tly","tmh":"Tiếng Tamashek","tn":"Tiếng Tswana","to":"Tiếng Tonga","tog":"Tiếng Nyasa Tonga","tpi":"Tiếng Tok Pisin","tr":"Tiếng Thổ Nhĩ Kỳ","tru":"tru","trv":"Tiếng Taroko","ts":"Tiếng Tsonga","tsd":"tsd","tsi":"Tiếng Tsimshian","tt":"Tiếng Tatar","ttt":"ttt","tum":"Tiếng Tumbuka","tvl":"Tiếng Tuvalu","tw":"Tiếng Twi","twq":"Tiếng Tasawaq","ty":"Tiếng Tahiti","tyv":"Tiếng Tuvinian","tzm":"Tiếng Tamazight Miền Trung Ma-rốc","udm":"Tiếng Udmurt","ug":"Tiếng Uyghur","uga":"Tiếng Ugaritic","uk":"Tiếng Ucraina","umb":"Tiếng Umbundu","und":"Ngôn ngữ không xác định","ur":"Tiếng Uđu","uz":"Tiếng Uzbek","vai":"Tiếng Vai","ve":"Tiếng Venda","vec":"vec","vep":"vep","vi":"Tiếng Việt","vls":"vls","vmf":"vmf","vo":"Tiếng Volapük","vot":"Tiếng Votic","vro":"vro","vun":"Tiếng Vunjo","wa":"Tiếng Walloon","wae":"Tiếng Walser","wal":"Tiếng Walamo","war":"Tiếng Waray","was":"Tiếng Washo","wo":"Tiếng Wolof","wuu":"wuu","xal":"Tiếng Kalmyk","xh":"Tiếng Xhosa","xmf":"xmf","xog":"Tiếng Soga","yao":"Tiếng Yao","yap":"Tiếng Yap","yav":"Tiếng Yangben","ybb":"Tiếng Yemba","yi":"Tiếng Y-đit","yo":"Tiếng Yoruba","yrl":"yrl","yue":"Tiếng Quảng Đông","za":"Tiếng Zhuang","zap":"Tiếng Zapotec","zbl":"Ký hiệu Blissymbols","zea":"zea","zen":"Tiếng Zenaga","zgh":"Tiếng Tamazight Chuẩn của Ma-rốc","zh":"Tiếng Trung","zh-Hans":"zh_Hans","zh-Hant":"zh_Hant","zu":"Tiếng Zulu","zun":"Tiếng Zuni","zxx":"Không có nội dung ngôn ngữ","zza":"Tiếng Zaza"} \ No newline at end of file diff --git a/Punic/data/vi/listPatterns.json b/Punic/data/vi/listPatterns.json new file mode 100644 index 0000000..21ad9aa --- /dev/null +++ b/Punic/data/vi/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s và %2$s","2":"%1$s và %2$s"},"unit":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-narrow":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"},"unit-short":{"start":"%1$s, %2$s","middle":"%1$s, %2$s","end":"%1$s, %2$s","2":"%1$s, %2$s"}} \ No newline at end of file diff --git a/Punic/data/vi/localeDisplayNames.json b/Punic/data/vi/localeDisplayNames.json new file mode 100644 index 0000000..b960969 --- /dev/null +++ b/Punic/data/vi/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s (%2$s)","localeSeparator":"%1$s, %2$s","localeKeyTypePattern":"%1$s: %2$s"},"keys":{"calendar":"Lịch","colAlternate":"Bỏ qua sắp xếp biểu tượng","colBackwards":"Sắp xếp dấu trọng âm đảo ngược","colCaseFirst":"Sắp xếp chữ hoa/chữ thường","colCaseLevel":"Sắp xếp phân biệt chữ hoa/chữ thường","colHiraganaQuaternary":"Sắp xếp chữ Kana","colNormalization":"Sắp xếp theo chuẩn hóa","colNumeric":"Sắp xếp theo số","colStrength":"Cường độ sắp xếp","collation":"Thứ tự sắp xếp","currency":"Tiền tệ","numbers":"Số","timezone":"Múi giờ","va":"Biến thể ngôn ngữ","variableTop":"Sắp xếp dưới dạng biểu tượng","x":"Sử dụng cá nhân"},"types":{"numbers":{"vaii":"Chữ số Vai"},"collation":{"zhuyin":"Thứ tự sắp xếp Zhuyin"},"calendar":{"roc":"Lịch Trung Hoa Dân Quốc"},"colStrength":{"tertiary":"Sắp xếp dấu trọng âm/chữ cái/độ rộng"},"colCaseFirst":{"upper":"Sắp xếp chữ hoa đầu tiên"},"colBackwards":{"yes":"Sắp xếp dấu trọng âm đảo ngược"},"colCaseLevel":{"yes":"Sắp xếp phân biệt chữ hoa/chữ thường"},"colHiraganaQuaternary":{"yes":"Sắp xếp chữ Kana khác nhau"},"colNormalization":{"yes":"Sắp xếp unicode được chuẩn hóa"},"colNumeric":{"yes":"Sắp xếp chữ số theo số"},"colAlternate":{"shifted":"Sắp xếp biểu tượng bỏ qua"}},"codePatterns":{"language":"Ngôn ngữ: %1$s","script":"Chữ viết: %1$s","territory":"Vùng: %1$s"}} \ No newline at end of file diff --git a/Punic/data/vi/numbers.json b/Punic/data/vi/numbers.json new file mode 100644 index 0000000..a5cc0c5 --- /dev/null +++ b/Punic/data/vi/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/vi/territories.json b/Punic/data/vi/territories.json new file mode 100644 index 0000000..47ca5eb --- /dev/null +++ b/Punic/data/vi/territories.json @@ -0,0 +1 @@ +{"001":"Thế giới","002":"Châu Phi","003":"Bắc Mỹ","005":"Nam Mỹ","009":"Châu Đại Dương","011":"Tây Phi","013":"Trung Mỹ","014":"Đông Phi","015":"Bắc Phi","017":"Trung Phi","018":"Miền Nam Châu Phi","019":"Châu Mỹ","021":"Miền Bắc Châu Mỹ","029":"Ca-ri-bê","030":"Đông Á","034":"Nam Á","035":"Đông Nam Á","039":"Nam Âu","053":"Úc và New Zealand","054":"Melanesia","057":"Vùng Micronesian","061":"Polynesia","142":"Châu Á","143":"Trung Á","145":"Tây Á","150":"Châu Âu","151":"Đông Âu","154":"Bắc Âu","155":"Tây Âu","419":"Châu Mỹ La-tinh","AC":"Đảo Ascension","AD":"Andorra","AE":"Các Tiểu V.quốc Ả Rập T.nhất","AF":"Afghanistan","AG":"Antigua và Barbuda","AI":"Anguilla","AL":"Albani","AM":"Armenia","AN":"Tây Ấn Hà Lan","AO":"Angola","AQ":"Nam Cực","AR":"Argentina","AS":"Đảo Somoa thuộc Mỹ","AT":"Áo","AU":"Úc","AW":"Aruba","AX":"Quần đảo Åland","AZ":"Azerbaijan","BA":"Bosnia và Herzegovina","BB":"Barbados","BD":"Bangladesh","BE":"Bỉ","BF":"Burkina Faso","BG":"Bungari","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"Saint Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Ca-ri-bê Hà Lan","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Đảo Bouvet","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Quần đảo Cocos (Keeling)","CD":"Congo - Kinshasa","CD-alt-variant":"Cộng hòa Dân chủ Congo","CF":"Cộng hòa Trung Phi","CG":"Congo - Brazzaville","CG-alt-variant":"Cộng hòa Congo","CH":"Thụy Sĩ","CI":"Bờ Biển Ngà","CI-alt-variant":"CI","CK":"Quần đảo Cook","CL":"Chile","CM":"Cameroon","CN":"Trung Quốc","CO":"Colombia","CP":"Đảo Clipperton","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Đảo Giáng Sinh","CY":"Síp","CZ":"Cộng hòa Séc","DE":"Đức","DG":"Diego Garcia","DJ":"Djibouti","DK":"Đan Mạch","DM":"Dominica","DO":"Cộng hòa Dominica","DZ":"Algeria","EA":"Ceuta và Melilla","EC":"Ecuador","EE":"Estonia","EG":"Ai Cập","EH":"Tây Sahara","ER":"Eritrea","ES":"Tây Ban Nha","ET":"Ethiopia","EU":"Liên Minh Châu Âu","FI":"Phần Lan","FJ":"Fiji","FK":"Quần đảo Falkland","FK-alt-variant":"Quần đảo Falkland (Islas Malvinas)","FM":"Micronesia","FO":"Quần đảo Faroe","FR":"Pháp","GA":"Gabon","GB":"Vương quốc Anh","GB-alt-short":"Vương quốc Anh","GD":"Grenada","GE":"Georgia","GF":"Guiana thuộc Pháp","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Guinea Xích Đạo","GR":"Hy Lạp","GS":"Quần đảo Nam Georgia và Nam Sandwich","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Đặc khu hành chính Hồng Kông - Trung Quốc","HK-alt-short":"Hồng Kông","HM":"Đảo Heard và Quần đảo McDonald","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungari","IC":"Quần đảo Canary","ID":"Indonesia","IE":"Ai-len","IL":"Israel","IM":"Đảo Man","IN":"Ấn Độ","IO":"Thuộc địa Anh tại Ấn Độ Dương","IQ":"I-rắc","IR":"Iran","IS":"Iceland","IT":"Ý","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Nhật Bản","KE":"Kenya","KG":"Kyrgyzstan","KH":"Campuchia","KI":"Kiribati","KM":"Comoros","KN":"Saint Kitts và Nevis","KP":"Triều Tiên","KR":"Hàn Quốc","KW":"Cô-oét","KY":"Quần đảo Cayman","KZ":"Kazakhstan","LA":"Lào","LB":"Li-băng","LC":"Saint Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lít-va","LU":"Luxembourg","LV":"Latvia","LY":"Li-bi","MA":"Ma-rốc","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"Saint Martin","MG":"Madagascar","MH":"Quần đảo Marshall","MK":"Macedonia","MK-alt-variant":"Macedonia (FYROM)","ML":"Mali","MM":"Myanmar (Miến Điện)","MN":"Mông Cổ","MO":"Đặc khu hành chính Macao - Trung Quốc","MO-alt-short":"Macao","MP":"Quần đảo Bắc Mariana","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Đảo Norfolk","NG":"Nigeria","NI":"Nicaragua","NL":"Hà Lan","NO":"Na Uy","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"Polynesia thuộc Pháp","PG":"Papua New Guinea","PH":"Philippin","PK":"Pakistan","PL":"Ba Lan","PM":"Saint Pierre và Miquelon","PN":"Quần đảo Pitcairn","PR":"Puerto Rico","PS":"Lãnh thổ Palestine","PS-alt-short":"Palestine","PT":"Bồ Đào Nha","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Vùng xa xôi thuộc Châu Đại Dương","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Nga","RW":"Rwanda","SA":"Ả Rập Xê-út","SB":"Quần đảo Solomon","SC":"Seychelles","SD":"Sudan","SE":"Thụy Điển","SG":"Singapore","SH":"Saint Helena","SI":"Slovenia","SJ":"Svalbard và Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somali","SR":"Suriname","SS":"Nam Sudan","ST":"São Tomé và Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Swaziland","TA":"Tristan da Cunha","TC":"Quần đảo Turk và Caicos","TD":"Chad","TF":"Lãnh thổ miền nam nước Pháp","TG":"Togo","TH":"Thái Lan","TJ":"Tajikistan","TK":"Tokelau","TL":"Đông Timor","TL-alt-variant":"TL","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Thổ Nhĩ Kỳ","TT":"Trinidad và Tobago","TV":"Tuvalu","TW":"Đài Loan","TZ":"Tanzania","UA":"Ukraina","UG":"Uganda","UM":"Các đảo nhỏ xa t.tâm thuộc Mỹ","US":"Hoa Kỳ","US-alt-short":"Hoa Kỳ","UY":"Uruguay","UZ":"Uzbekistan","VA":"Thành Vatican","VC":"Saint Vincent và Grenadines","VE":"Venezuela","VG":"Quần đảo Virgin thuộc Anh","VI":"Quần đảo Virgin thuộc Mỹ","VN":"Việt Nam","VU":"Vanuatu","WF":"Wallis và Futuna","WS":"Samoa","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"Nam Phi","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Vùng không xác định"} \ No newline at end of file diff --git a/Punic/data/vi/timeZoneNames.json b/Punic/data/vi/timeZoneNames.json new file mode 100644 index 0000000..78251a9 --- /dev/null +++ b/Punic/data/vi/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"Giờ %1$s","regionFormat-type-standard":"Giờ chuẩn %1$s","regionFormat-type-daylight":"Giờ ban ngày %1$s","fallbackFormat":"%2$s (%1$s)","zone":{"America":{"Adak":{"exemplarCity":"Adak"},"Anchorage":{"exemplarCity":"Anchorage"},"Anguilla":{"exemplarCity":"Anguilla"},"Antigua":{"exemplarCity":"Antigua"},"Araguaina":{"exemplarCity":"Araguaina"},"Argentina":{"La_Rioja":{"exemplarCity":"La Rioja"},"Rio_Gallegos":{"exemplarCity":"Rio Gallegos"},"Salta":{"exemplarCity":"Salta"},"San_Juan":{"exemplarCity":"San Juan"},"San_Luis":{"exemplarCity":"San Luis"},"Tucuman":{"exemplarCity":"Tucuman"},"Ushuaia":{"exemplarCity":"Ushuaia"}},"Aruba":{"exemplarCity":"Aruba"},"Asuncion":{"exemplarCity":"Asuncion"},"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":"Bogota"},"Boise":{"exemplarCity":"Boise"},"Buenos_Aires":{"exemplarCity":"Buenos Aires"},"Cambridge_Bay":{"exemplarCity":"Cambridge Bay"},"Campo_Grande":{"exemplarCity":"Campo Grande"},"Cancun":{"exemplarCity":"Cancun"},"Caracas":{"exemplarCity":"Caracas"},"Catamarca":{"exemplarCity":"Catamarca"},"Cayenne":{"exemplarCity":"Cayenne"},"Cayman":{"exemplarCity":"Cayman"},"Chicago":{"exemplarCity":"Chicago"},"Chihuahua":{"exemplarCity":"Chihuahua"},"Coral_Harbour":{"exemplarCity":"Atikokan"},"Cordoba":{"exemplarCity":"Cordoba"},"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"},"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":"Havana"},"Hermosillo":{"exemplarCity":"Hermosillo"},"Indiana":{"Knox":{"exemplarCity":"Knox, Indiana"},"Marengo":{"exemplarCity":"Marengo, Indiana"},"Petersburg":{"exemplarCity":"Petersburg, Indiana"},"Tell_City":{"exemplarCity":"Tell City, Indiana"},"Vevay":{"exemplarCity":"Vevay, Indiana"},"Vincennes":{"exemplarCity":"Vincennes, Indiana"},"Winamac":{"exemplarCity":"Winamac, Indiana"}},"Indianapolis":{"exemplarCity":"Indianapolis"},"Inuvik":{"exemplarCity":"Inuvik"},"Iqaluit":{"exemplarCity":"Iqaluit"},"Jamaica":{"exemplarCity":"Jamaica"},"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":"Mexico City"},"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, Bắc Dakota"},"Center":{"exemplarCity":"Center, Bắc Dakota"},"New_Salem":{"exemplarCity":"New Salem, Bắc 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":"Sao 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":"Azores"},"Bermuda":{"exemplarCity":"Bermuda"},"Canary":{"exemplarCity":"Canary"},"Cape_Verde":{"exemplarCity":"Cape Verde"},"Faeroe":{"exemplarCity":"Faroe"},"Madeira":{"exemplarCity":"Madeira"},"Reykjavik":{"exemplarCity":"Reykjavik"},"South_Georgia":{"exemplarCity":"Nam Georgia"},"St_Helena":{"exemplarCity":"St. Helena"},"Stanley":{"exemplarCity":"Stanley"}},"Europe":{"Amsterdam":{"exemplarCity":"Amsterdam"},"Andorra":{"exemplarCity":"Andorra"},"Athens":{"exemplarCity":"Athens"},"Belgrade":{"exemplarCity":"Belgrade"},"Berlin":{"exemplarCity":"Berlin"},"Bratislava":{"exemplarCity":"Bratislava"},"Brussels":{"exemplarCity":"Brussels"},"Bucharest":{"exemplarCity":"Bucharest"},"Budapest":{"exemplarCity":"Budapest"},"Busingen":{"exemplarCity":"Busingen"},"Chisinau":{"exemplarCity":"Chisinau"},"Copenhagen":{"exemplarCity":"Copenhagen"},"Dublin":{"long":{"daylight":"Giờ chuẩn Ai-len"},"exemplarCity":"Dublin"},"Gibraltar":{"exemplarCity":"Gibraltar"},"Guernsey":{"exemplarCity":"Guernsey"},"Helsinki":{"exemplarCity":"Helsinki"},"Isle_of_Man":{"exemplarCity":"Đảo Man"},"Istanbul":{"exemplarCity":"Istanbul"},"Jersey":{"exemplarCity":"Jersey"},"Kaliningrad":{"exemplarCity":"Kaliningrad"},"Kiev":{"exemplarCity":"Kiev"},"Lisbon":{"exemplarCity":"Lisbon"},"Ljubljana":{"exemplarCity":"Ljubljana"},"London":{"long":{"daylight":"Giờ Mùa Hè Anh"},"exemplarCity":"London"},"Luxembourg":{"exemplarCity":"Luxembourg"},"Madrid":{"exemplarCity":"Madrid"},"Malta":{"exemplarCity":"Malta"},"Mariehamn":{"exemplarCity":"Mariehamn"},"Minsk":{"exemplarCity":"Minsk"},"Monaco":{"exemplarCity":"Monaco"},"Moscow":{"exemplarCity":"Mát-xcơ-va"},"Oslo":{"exemplarCity":"Oslo"},"Paris":{"exemplarCity":"Paris"},"Podgorica":{"exemplarCity":"Podgorica"},"Prague":{"exemplarCity":"Praha"},"Riga":{"exemplarCity":"Riga"},"Rome":{"exemplarCity":"Rome"},"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":"Tirane"},"Uzhgorod":{"exemplarCity":"Uzhgorod"},"Vaduz":{"exemplarCity":"Vaduz"},"Vatican":{"exemplarCity":"Vatican"},"Vienna":{"exemplarCity":"Viên"},"Vilnius":{"exemplarCity":"Vilnius"},"Volgograd":{"exemplarCity":"Volgograd"},"Warsaw":{"exemplarCity":"Warsaw"},"Zagreb":{"exemplarCity":"Zagreb"},"Zaporozhye":{"exemplarCity":"Zaporozhye"},"Zurich":{"exemplarCity":"Zurich"}},"Africa":{"Abidjan":{"exemplarCity":"Abidjan"},"Accra":{"exemplarCity":"Accra"},"Addis_Ababa":{"exemplarCity":"Addis Ababa"},"Algiers":{"exemplarCity":"Algiers"},"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":"Cairo"},"Casablanca":{"exemplarCity":"Casablanca"},"Ceuta":{"exemplarCity":"Ceuta"},"Conakry":{"exemplarCity":"Conakry"},"Dakar":{"exemplarCity":"Dakar"},"Dar_es_Salaam":{"exemplarCity":"Dar es Salaam"},"Djibouti":{"exemplarCity":"Djibouti"},"Douala":{"exemplarCity":"Douala"},"El_Aaiun":{"exemplarCity":"El Aaiun"},"Freetown":{"exemplarCity":"Freetown"},"Gaborone":{"exemplarCity":"Gaborone"},"Harare":{"exemplarCity":"Harare"},"Johannesburg":{"exemplarCity":"Johannesburg"},"Juba":{"exemplarCity":"Juba"},"Kampala":{"exemplarCity":"Kampala"},"Khartoum":{"exemplarCity":"Khartoum"},"Kigali":{"exemplarCity":"Kigali"},"Kinshasa":{"exemplarCity":"Kinshasa"},"Lagos":{"exemplarCity":"Lagos"},"Libreville":{"exemplarCity":"Libreville"},"Lome":{"exemplarCity":"Lome"},"Luanda":{"exemplarCity":"Luanda"},"Lubumbashi":{"exemplarCity":"Lubumbashi"},"Lusaka":{"exemplarCity":"Lusaka"},"Malabo":{"exemplarCity":"Malabo"},"Maputo":{"exemplarCity":"Maputo"},"Maseru":{"exemplarCity":"Maseru"},"Mbabane":{"exemplarCity":"Mbabane"},"Mogadishu":{"exemplarCity":"Mogadishu"},"Monrovia":{"exemplarCity":"Monrovia"},"Nairobi":{"exemplarCity":"Nairobi"},"Ndjamena":{"exemplarCity":"Ndjamena"},"Niamey":{"exemplarCity":"Niamey"},"Nouakchott":{"exemplarCity":"Nouakchott"},"Ouagadougou":{"exemplarCity":"Ouagadougou"},"Porto-Novo":{"exemplarCity":"Porto-Novo"},"Sao_Tome":{"exemplarCity":"São Tomé"},"Tripoli":{"exemplarCity":"Tripoli"},"Tunis":{"exemplarCity":"Tunis"},"Windhoek":{"exemplarCity":"Windhoek"}},"Asia":{"Aden":{"exemplarCity":"Aden"},"Almaty":{"exemplarCity":"Almaty"},"Amman":{"exemplarCity":"Amman"},"Anadyr":{"exemplarCity":"Anadyr"},"Aqtau":{"exemplarCity":"Aqtau"},"Aqtobe":{"exemplarCity":"Aqtobe"},"Ashgabat":{"exemplarCity":"Ashgabat"},"Baghdad":{"exemplarCity":"Baghdad"},"Bahrain":{"exemplarCity":"Bahrain"},"Baku":{"exemplarCity":"Baku"},"Bangkok":{"exemplarCity":"Bangkok"},"Beirut":{"exemplarCity":"Beirut"},"Bishkek":{"exemplarCity":"Bishkek"},"Brunei":{"exemplarCity":"Brunei"},"Calcutta":{"exemplarCity":"Kolkata"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"Choibalsan"},"Chongqing":{"exemplarCity":"Trùng Khánh"},"Colombo":{"exemplarCity":"Colombo"},"Damascus":{"exemplarCity":"Damascus"},"Dhaka":{"exemplarCity":"Dhaka"},"Dili":{"exemplarCity":"Dili"},"Dubai":{"exemplarCity":"Dubai"},"Dushanbe":{"exemplarCity":"Dushanbe"},"Gaza":{"exemplarCity":"Gaza"},"Harbin":{"exemplarCity":"Cáp Nhĩ Tân"},"Hebron":{"exemplarCity":"Hebron"},"Hong_Kong":{"exemplarCity":"Hồng Kông"},"Hovd":{"exemplarCity":"Hovd"},"Irkutsk":{"exemplarCity":"Irkutsk"},"Jakarta":{"exemplarCity":"Jakarta"},"Jayapura":{"exemplarCity":"Jayapura"},"Jerusalem":{"exemplarCity":"Jerusalem"},"Kabul":{"exemplarCity":"Kabul"},"Kamchatka":{"exemplarCity":"Kamchatka"},"Karachi":{"exemplarCity":"Karachi"},"Kashgar":{"exemplarCity":"Khách Thập"},"Katmandu":{"exemplarCity":"Kathmandu"},"Khandyga":{"exemplarCity":"Khandyga"},"Krasnoyarsk":{"exemplarCity":"Krasnoyarsk"},"Kuala_Lumpur":{"exemplarCity":"Kuala Lumpur"},"Kuching":{"exemplarCity":"Kuching"},"Kuwait":{"exemplarCity":"Kuwait"},"Macau":{"exemplarCity":"Ma Cao"},"Magadan":{"exemplarCity":"Magadan"},"Makassar":{"exemplarCity":"Makassar"},"Manila":{"exemplarCity":"Manila"},"Muscat":{"exemplarCity":"Muscat"},"Nicosia":{"exemplarCity":"Nicosia"},"Novokuznetsk":{"exemplarCity":"Novokuznetsk"},"Novosibirsk":{"exemplarCity":"Novosibirsk"},"Omsk":{"exemplarCity":"Omsk"},"Oral":{"exemplarCity":"Oral"},"Phnom_Penh":{"exemplarCity":"Phnom Penh"},"Pontianak":{"exemplarCity":"Pontianak"},"Pyongyang":{"exemplarCity":"Bình Nhưỡng"},"Qatar":{"exemplarCity":"Qatar"},"Qyzylorda":{"exemplarCity":"Qyzylorda"},"Rangoon":{"exemplarCity":"Rangoon"},"Riyadh":{"exemplarCity":"Riyadh"},"Saigon":{"exemplarCity":"TP Hồ Chí Minh"},"Sakhalin":{"exemplarCity":"Sakhalin"},"Samarkand":{"exemplarCity":"Samarkand"},"Seoul":{"exemplarCity":"Seoul"},"Shanghai":{"exemplarCity":"Thượng Hải"},"Singapore":{"exemplarCity":"Singapore"},"Srednekolymsk":{"exemplarCity":"Srednekolymsk"},"Taipei":{"exemplarCity":"Đài Bắc"},"Tashkent":{"exemplarCity":"Tashkent"},"Tbilisi":{"exemplarCity":"Tbilisi"},"Tehran":{"exemplarCity":"Tehran"},"Thimphu":{"exemplarCity":"Thimphu"},"Tokyo":{"exemplarCity":"Tokyo"},"Ulaanbaatar":{"exemplarCity":"Ulaanbaatar"},"Urumqi":{"exemplarCity":"Ô Lỗ Mộc Tề"},"Ust-Nera":{"exemplarCity":"Ust-Nera"},"Vientiane":{"exemplarCity":"Viêng Chăn"},"Vladivostok":{"exemplarCity":"Vladivostok"},"Yakutsk":{"exemplarCity":"Yakutsk"},"Yekaterinburg":{"exemplarCity":"Yekaterinburg"},"Yerevan":{"exemplarCity":"Yerevan"}},"Indian":{"Antananarivo":{"exemplarCity":"Antananarivo"},"Chagos":{"exemplarCity":"Chagos"},"Christmas":{"exemplarCity":"Christmas"},"Cocos":{"exemplarCity":"Cocos"},"Comoro":{"exemplarCity":"Comoro"},"Kerguelen":{"exemplarCity":"Kerguelen"},"Mahe":{"exemplarCity":"Mahe"},"Maldives":{"exemplarCity":"Maldives"},"Mauritius":{"exemplarCity":"Mauritius"},"Mayotte":{"exemplarCity":"Mayotte"},"Reunion":{"exemplarCity":"Reunion"}},"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"},"Chatham":{"exemplarCity":"Chatham"},"Easter":{"exemplarCity":"Easter"},"Efate":{"exemplarCity":"Efate"},"Enderbury":{"exemplarCity":"Enderbury"},"Fakaofo":{"exemplarCity":"Fakaofo"},"Fiji":{"exemplarCity":"Fiji"},"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":"Vostok"}},"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":"Thành phố Không xác định"}}},"metazone":{"Acre":{"long":{"generic":"Giờ Acre","standard":"Giờ Chuẩn Acre","daylight":"Giờ Mùa Hè Acre"}},"Afghanistan":{"long":{"standard":"Giờ Afghanistan"}},"Africa_Central":{"long":{"standard":"Giờ Trung Phi"}},"Africa_Eastern":{"long":{"standard":"Giờ Đông Phi"}},"Africa_Southern":{"long":{"standard":"Giờ Chuẩn Nam Phi"}},"Africa_Western":{"long":{"generic":"Giờ Tây Phi","standard":"Giờ Chuẩn Tây Phi","daylight":"Giờ Mùa Hè Tây Phi"}},"Alaska":{"long":{"generic":"Giờ Alaska","standard":"Giờ Chuẩn Alaska","daylight":"Giờ Mùa Hè Alaska"}},"Almaty":{"long":{"generic":"Giờ Almaty","standard":"Giờ Chuẩn Almaty","daylight":"Giờ Mùa Hè Almaty"}},"Amazon":{"long":{"generic":"Giờ Amazon","standard":"Giờ Chuẩn Amazon","daylight":"Giờ Mùa Hè Amazon"}},"America_Central":{"long":{"generic":"Giờ miền trung","standard":"Giờ chuẩn miền trung","daylight":"Giờ ban ngày miền trung"}},"America_Eastern":{"long":{"generic":"Giờ miền đông","standard":"Giờ chuẩn miền đông","daylight":"Giờ ban ngày miền đông"}},"America_Mountain":{"long":{"generic":"Giờ miền núi","standard":"Giờ chuẩn miền núi","daylight":"Giờ ban ngày miền núi"}},"America_Pacific":{"long":{"generic":"Giờ Thái Bình Dương","standard":"Giờ chuẩn Thái Bình Dương","daylight":"Giờ ban ngày Thái Bình Dương"}},"Anadyr":{"long":{"generic":"Giờ Anadyr","standard":"Giờ Chuẩn Anadyr","daylight":"Giờ mùa hè Anadyr"}},"Apia":{"long":{"generic":"Giờ Apia","standard":"Giờ Chuẩn Apia","daylight":"Giờ Ban ngày Apia"}},"Aqtau":{"long":{"generic":"Giờ Aqtau","standard":"Giờ Chuẩn Aqtau","daylight":"Giờ Mùa Hè Aqtau"}},"Aqtobe":{"long":{"generic":"Giờ Aqtobe","standard":"Giờ Chuẩn Aqtobe","daylight":"Giờ Mùa Hè Aqtobe"}},"Arabian":{"long":{"generic":"Giờ Ả Rập","standard":"Giờ chuẩn Ả Rập","daylight":"Giờ Mùa Hè Ả Rập"}},"Argentina":{"long":{"generic":"Giờ Argentina","standard":"Giờ Chuẩn Argentina","daylight":"Giờ Mùa Hè Argentina"}},"Argentina_Western":{"long":{"generic":"Giờ miền tây Argentina","standard":"Giờ chuẩn miền mây Argentina","daylight":"Giờ mùa hè miền tây Argentina"}},"Armenia":{"long":{"generic":"Giờ Armenia","standard":"Giờ Chuẩn Armenia","daylight":"Giờ Mùa Hè Armenia"}},"Atlantic":{"long":{"generic":"Giờ Đại Tây Dương","standard":"Giờ Chuẩn Đại Tây Dương","daylight":"Giờ Mùa hè Đại Tây Dương"}},"Australia_Central":{"long":{"generic":"Giờ Miền Trung Nước Úc","standard":"Giờ Chuẩn Miền Trung Nước Úc","daylight":"Giờ Mùa Hè Miền Trung Nước Úc"}},"Australia_CentralWestern":{"long":{"generic":"Giờ Miền Trung Tây Nước Úc","standard":"Giờ Chuẩn Miền Trung Tây Nước Úc","daylight":"Giờ Mùa Hè Miền Trung Tây Nước Úc"}},"Australia_Eastern":{"long":{"generic":"Giờ Miền Đông Nước Úc","standard":"Giờ Chuẩn Miền Đông Nước Úc","daylight":"Giờ Mùa Hè Miền Đông Nước Úc"}},"Australia_Western":{"long":{"generic":"Giờ Miền Tây Nước Úc","standard":"Giờ Chuẩn Miền Tây Nước Úc","daylight":"Giờ Mùa Hè Miền Tây Nước Úc"}},"Azerbaijan":{"long":{"generic":"Giờ Azerbaijan","standard":"Giờ Chuẩn Azerbaijan","daylight":"Giờ Mùa Hè Azerbaijan"}},"Azores":{"long":{"generic":"Giờ Azores","standard":"Giờ Chuẩn Azores","daylight":"Giờ Mùa Hè Azores"}},"Bangladesh":{"long":{"generic":"Giờ Bangladesh","standard":"Giờ Chuẩn Bangladesh","daylight":"Giờ Mùa Hè Bangladesh"}},"Bhutan":{"long":{"standard":"Giờ Bhutan"}},"Bolivia":{"long":{"standard":"Giờ Bolivia"}},"Brasilia":{"long":{"generic":"Giờ Brasilia","standard":"Giờ Chuẩn Brasilia","daylight":"Giờ Mùa Hè Brasilia"}},"Brunei":{"long":{"standard":"Giờ Brunei Darussalam"}},"Cape_Verde":{"long":{"generic":"Giờ Cape Verde","standard":"Giờ Chuẩn Cape Verde","daylight":"Giờ Mùa Hè Cape Verde"}},"Chamorro":{"long":{"standard":"Giờ Chamorro"}},"Chatham":{"long":{"generic":"Giờ Chatham","standard":"Giờ Chuẩn Chatham","daylight":"Giờ Mùa Hè Chatham"}},"Chile":{"long":{"generic":"Giờ Chile","standard":"Giờ Chuẩn Chile","daylight":"Giờ Mùa Hè Chile"}},"China":{"long":{"generic":"Giờ Trung Quốc","standard":"Giờ Chuẩn Trung Quốc","daylight":"Giờ Mùa Hè Trung Quốc"}},"Choibalsan":{"long":{"generic":"Giờ Choibalsan","standard":"Giờ Chuẩn Choibalsan","daylight":"Giờ Mùa Hè Choibalsan"}},"Christmas":{"long":{"standard":"Giờ Đảo Christmas"}},"Cocos":{"long":{"standard":"Giờ Quần Đảo Cocos"}},"Colombia":{"long":{"generic":"Giờ Colombia","standard":"Giờ Chuẩn Colombia","daylight":"Giờ Mùa Hè Colombia"}},"Cook":{"long":{"generic":"Giờ Quần Đảo Cook","standard":"Giờ Chuẩn Quần Đảo Cook","daylight":"Giờ Nửa Mùa Hè Quần Đảo Cook"}},"Cuba":{"long":{"generic":"Giờ Cuba","standard":"Giờ Chuẩn Cuba","daylight":"Giờ Mùa Hè Cuba"}},"Davis":{"long":{"standard":"Giờ Davis"}},"DumontDUrville":{"long":{"standard":"Giờ Dumont-d’Urville"}},"East_Timor":{"long":{"standard":"Giờ Đông Timor"}},"Easter":{"long":{"generic":"Giờ Đảo Phục Sinh","standard":"Giờ Chuẩn Đảo Phục Sinh","daylight":"Giờ Mùa Hè Đảo Phục Sinh"}},"Ecuador":{"long":{"standard":"Giờ Ecuador"}},"Europe_Central":{"long":{"generic":"Giờ Trung Âu","standard":"Giờ Chuẩn Trung Âu","daylight":"Giờ Mùa Hè Trung Âu"}},"Europe_Eastern":{"long":{"generic":"Giờ Đông Âu","standard":"Giờ Chuẩn Đông Âu","daylight":"Giờ Mùa Hè Đông Âu"}},"Europe_Further_Eastern":{"long":{"standard":"Giờ Châu Âu Viễn Đông"}},"Europe_Western":{"long":{"generic":"Giờ Tây Âu","standard":"Giờ Chuẩn Tây Âu","daylight":"Giờ Mùa hè Tây Âu"}},"Falkland":{"long":{"generic":"Giờ Quần Đảo Falkland","standard":"Giờ Chuẩn Quần Đảo Falkland","daylight":"Giờ Mùa Hè Quần Đảo Falkland"}},"Fiji":{"long":{"generic":"Giờ Fiji","standard":"Giờ Chuẩn Fiji","daylight":"Giờ Mùa Hè Fiji"}},"French_Guiana":{"long":{"standard":"Giờ Guiana thuộc Pháp"}},"French_Southern":{"long":{"standard":"Giờ Nam Cực và Nam Nước Pháp"}},"GMT":{"long":{"standard":"Giờ Trung bình Greenwich"}},"Galapagos":{"long":{"standard":"Giờ Galapagos"}},"Gambier":{"long":{"standard":"Giờ Gambier"}},"Georgia":{"long":{"generic":"Giờ Georgia","standard":"Giờ Chuẩn Georgia","daylight":"Giờ Mùa Hè Georgia"}},"Gilbert_Islands":{"long":{"standard":"Giờ Quần Đảo Gilbert"}},"Greenland_Eastern":{"long":{"generic":"Giờ Miền Đông Greenland","standard":"Giờ Chuẩn Miền Đông Greenland","daylight":"Giờ Mùa Hè Miền Đông Greenland"}},"Greenland_Western":{"long":{"generic":"Giờ Miền Tây Greenland","standard":"Giờ Chuẩn Miền Tây Greenland","daylight":"Giờ Mùa Hè Miền Tây Greenland"}},"Guam":{"long":{"standard":"Giờ Chuẩn Guam"}},"Gulf":{"long":{"standard":"Giờ Chuẩn Vùng Vịnh"}},"Guyana":{"long":{"standard":"Giờ Guyana"}},"Hawaii_Aleutian":{"long":{"generic":"Giờ Hawaii-Aleutian","standard":"Giờ Chuẩn Hawaii-Aleutian","daylight":"Giờ Mùa Hè Hawaii-Aleutian"}},"Hong_Kong":{"long":{"generic":"Giờ Hồng Kông","standard":"Giờ Chuẩn Hồng Kông","daylight":"Giờ Mùa Hè Hồng Kông"}},"Hovd":{"long":{"generic":"Giờ Hovd","standard":"Giờ Chuẩn Hovd","daylight":"Giờ Mùa Hè Hovd"}},"India":{"long":{"standard":"Giờ Chuẩn Ấn Độ"}},"Indian_Ocean":{"long":{"standard":"Giờ Ấn Độ Dương"}},"Indochina":{"long":{"standard":"Giờ Đông Dương"}},"Indonesia_Central":{"long":{"standard":"Giờ Miền Trung Indonesia"}},"Indonesia_Eastern":{"long":{"standard":"Giờ Miền Đông Indonesia"}},"Indonesia_Western":{"long":{"standard":"Giờ Miền Tây Indonesia"}},"Iran":{"long":{"generic":"Giờ Iran","standard":"Giờ Chuẩn Iran","daylight":"Giờ Mùa Hè Iran"}},"Irkutsk":{"long":{"generic":"Giờ Irkutsk","standard":"Giờ Chuẩn Irkutsk","daylight":"Giờ Mùa Hè Irkutsk"}},"Israel":{"long":{"generic":"Giờ Israel","standard":"Giờ Chuẩn Israel","daylight":"Giờ Mùa Hè Israel"}},"Japan":{"long":{"generic":"Giờ Nhật Bản","standard":"Giờ Chuẩn Nhật Bản","daylight":"Giờ Mùa Hè Nhật Bản"}},"Kamchatka":{"long":{"generic":"Giờ Petropavlovsk-Kamchatski","standard":"Giờ chuẩn Petropavlovsk-Kamchatski","daylight":"Giờ mùa hè Petropavlovsk-Kamchatski"}},"Kazakhstan_Eastern":{"long":{"standard":"Giờ Miền Đông Kazakhstan"}},"Kazakhstan_Western":{"long":{"standard":"Giờ Miền Tây Kazakhstan"}},"Korea":{"long":{"generic":"Giờ Hàn Quốc","standard":"Giờ Chuẩn Hàn Quốc","daylight":"Giờ Mùa Hè Hàn Quốc"}},"Kosrae":{"long":{"standard":"Giờ Kosrae"}},"Krasnoyarsk":{"long":{"generic":"Giờ Krasnoyarsk","standard":"Giờ Chuẩn Krasnoyarsk","daylight":"Giờ Mùa Hè Krasnoyarsk"}},"Kyrgystan":{"long":{"standard":"Giờ Kyrgystan"}},"Lanka":{"long":{"standard":"Giờ Lanka"}},"Line_Islands":{"long":{"standard":"Giờ Quần Đảo Line"}},"Lord_Howe":{"long":{"generic":"Giờ Lord Howe","standard":"Giờ Chuẩn Lord Howe","daylight":"Giờ Mùa Hè Lord Howe"}},"Macau":{"long":{"generic":"Giờ Ma Cao","standard":"Giờ Chuẩn Ma Cao","daylight":"Giờ Mùa Hè Ma Cao"}},"Macquarie":{"long":{"standard":"Giờ đảo Macquarie"}},"Magadan":{"long":{"generic":"Giờ Magadan","standard":"Giờ Chuẩn Magadan","daylight":"Giờ mùa hè Magadan"}},"Malaysia":{"long":{"standard":"Giờ Malaysia"}},"Maldives":{"long":{"standard":"Giờ Maldives"}},"Marquesas":{"long":{"standard":"Giờ Marquesas"}},"Marshall_Islands":{"long":{"standard":"Giờ Quần Đảo Marshall"}},"Mauritius":{"long":{"generic":"Giờ Mauritius","standard":"Giờ Chuẩn Mauritius","daylight":"Giờ Mùa Hè Mauritius"}},"Mawson":{"long":{"standard":"Giờ Mawson"}},"Mexico_Northwest":{"long":{"generic":"Giờ Tây Bắc Mexico","standard":"Giờ Chuẩn Tây Bắc Mexico","daylight":"Giờ Mùa Hè Tây Bắc Mexico"}},"Mexico_Pacific":{"long":{"generic":"Giờ Thái Bình Dương Mexico","standard":"Giờ Chuẩn Thái Bình Dương Mexico","daylight":"Giờ Mùa Hè Thái Bình Dương Mexico"}},"Mongolia":{"long":{"generic":"Giờ Ulan Bator","standard":"Giờ chuẩn Ulan Bator","daylight":"Giờ mùa hè Ulan Bator"}},"Moscow":{"long":{"generic":"Giờ Matxcơva","standard":"Giờ Chuẩn Matxcơva","daylight":"Giờ Mùa Hè Matxcơva"}},"Myanmar":{"long":{"standard":"Giờ Myanmar"}},"Nauru":{"long":{"standard":"Giờ Nauru"}},"Nepal":{"long":{"standard":"Giờ Nepal"}},"New_Caledonia":{"long":{"generic":"Giờ New Caledonia","standard":"Giờ Chuẩn New Caledonia","daylight":"Giờ Mùa Hè New Caledonia"}},"New_Zealand":{"long":{"generic":"Giờ New Zealand","standard":"Giờ Chuẩn New Zealand","daylight":"Giờ Mùa Hè New Zealand"}},"Newfoundland":{"long":{"generic":"Giờ Newfoundland","standard":"Giờ Chuẩn Newfoundland","daylight":"Giờ Mùa Hè Newfoundland"}},"Niue":{"long":{"standard":"Giờ Niue"}},"Norfolk":{"long":{"standard":"Giờ đảo Norfolk"}},"Noronha":{"long":{"generic":"Giờ Fernando de Noronha","standard":"Giờ Chuẩn Fernando de Noronha","daylight":"Giờ Mùa Hè Fernando de Noronha"}},"North_Mariana":{"long":{"standard":"Giờ Quần Đảo Bắc Mariana"}},"Novosibirsk":{"long":{"generic":"Giờ Novosibirsk","standard":"Giờ chuẩn Novosibirsk","daylight":"Giờ mùa hè Novosibirsk"}},"Omsk":{"long":{"generic":"Giờ Omsk","standard":"Giờ chuẩn Omsk","daylight":"Giờ mùa hè Omsk"}},"Pakistan":{"long":{"generic":"Giờ Pakistan","standard":"Giờ Chuẩn Pakistan","daylight":"Giờ Mùa Hè Pakistan"}},"Palau":{"long":{"standard":"Giờ Palau"}},"Papua_New_Guinea":{"long":{"standard":"Giờ Papua New Guinea"}},"Paraguay":{"long":{"generic":"Giờ Paraguay","standard":"Giờ Chuẩn Paraguay","daylight":"Giờ Mùa Hè Paraguay"}},"Peru":{"long":{"generic":"Giờ Peru","standard":"Giờ Chuẩn Peru","daylight":"Giờ Mùa Hè Peru"}},"Philippines":{"long":{"generic":"Giờ Philippin","standard":"Giờ Chuẩn Philippin","daylight":"Giờ Mùa Hè Philippin"}},"Phoenix_Islands":{"long":{"standard":"Giờ Quần Đảo Phoenix"}},"Pierre_Miquelon":{"long":{"generic":"Giờ Saint Pierre và Miquelon","standard":"Giờ Chuẩn Saint Pierre và Miquelon","daylight":"Giờ Mùa Hè Saint Pierre và Miquelon"}},"Pitcairn":{"long":{"standard":"Giờ Pitcairn"}},"Ponape":{"long":{"standard":"Giờ Ponape"}},"Qyzylorda":{"long":{"generic":"Giờ Qyzylorda","standard":"Giờ Chuẩn Qyzylorda","daylight":"Giờ Mùa Hè Qyzylorda"}},"Reunion":{"long":{"standard":"Giờ Reunion"}},"Rothera":{"long":{"standard":"Giờ Rothera"}},"Sakhalin":{"long":{"generic":"Giờ Sakhalin","standard":"Giờ Chuẩn Sakhalin","daylight":"Giờ mùa hè Sakhalin"}},"Samara":{"long":{"generic":"Giờ Samara","standard":"Giờ Chuẩn Samara","daylight":"Giờ mùa hè Samara"}},"Samoa":{"long":{"generic":"Giờ Samoa","standard":"Giờ Chuẩn Samoa","daylight":"Giờ ban ngày Samoa"}},"Seychelles":{"long":{"standard":"Giờ Seychelles"}},"Singapore":{"long":{"standard":"Giờ Singapore"}},"Solomon":{"long":{"standard":"Giờ Quần Đảo Solomon"}},"South_Georgia":{"long":{"standard":"Giờ Nam Georgia"}},"Suriname":{"long":{"standard":"Giờ Suriname"}},"Syowa":{"long":{"standard":"Giờ Syowa"}},"Tahiti":{"long":{"standard":"Giờ Tahiti"}},"Taipei":{"long":{"generic":"Giờ Đài Bắc","standard":"Giờ Chuẩn Đài Bắc","daylight":"Giờ Mùa Hè Đài Bắc"}},"Tajikistan":{"long":{"standard":"Giờ Tajikistan"}},"Tokelau":{"long":{"standard":"Giờ Tokelau"}},"Tonga":{"long":{"generic":"Giờ Tonga","standard":"Giờ Chuẩn Tonga","daylight":"Giờ Mùa Hè Tonga"}},"Truk":{"long":{"standard":"Giờ Chuuk"}},"Turkmenistan":{"long":{"generic":"Giờ Turkmenistan","standard":"Giờ Chuẩn Turkmenistan","daylight":"Giờ Mùa Hè Turkmenistan"}},"Tuvalu":{"long":{"standard":"Giờ Tuvalu"}},"Uruguay":{"long":{"generic":"Giờ Uruguay","standard":"Giờ Chuẩn Uruguay","daylight":"Giờ Mùa Hè Uruguay"}},"Uzbekistan":{"long":{"generic":"Giờ Uzbekistan","standard":"Giờ Chuẩn Uzbekistan","daylight":"Giờ Mùa Hè Uzbekistan"}},"Vanuatu":{"long":{"generic":"Giờ Vanuatu","standard":"Giờ Chuẩn Vanuatu","daylight":"Giờ Mùa Hè Vanuatu"}},"Venezuela":{"long":{"standard":"Giờ Venezuela"}},"Vladivostok":{"long":{"generic":"Giờ Vladivostok","standard":"Giờ Chuẩn Vladivostok","daylight":"Giờ mùa hè Vladivostok"}},"Volgograd":{"long":{"generic":"Giờ Volgograd","standard":"Giờ Chuẩn Volgograd","daylight":"Giờ Mùa Hè Volgograd"}},"Vostok":{"long":{"standard":"Giờ Vostok"}},"Wake":{"long":{"standard":"Giờ Đảo Wake"}},"Wallis":{"long":{"standard":"Giờ Wallis và Futuna"}},"Yakutsk":{"long":{"generic":"Giờ Yakutsk","standard":"Giờ Chuẩn Yakutsk","daylight":"Giờ mùa hè Yakutsk"}},"Yekaterinburg":{"long":{"generic":"Giờ Yekaterinburg","standard":"Giờ Chuẩn Yekaterinburg","daylight":"Giờ mùa hè Yekaterinburg"}}}} \ No newline at end of file diff --git a/Punic/data/vi/units.json b/Punic/data/vi/units.json new file mode 100644 index 0000000..1b95589 --- /dev/null +++ b/Punic/data/vi/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"lực g","other":"%1$s lực g"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"phút","other":"%1$s phút"},"arc-second":{"_name":"giây","other":"%1$s giây"},"degree":{"_name":"độ","other":"%1$s độ"},"radian":{"_name":"radian","other":"%1$s radian"}},"area":{"acre":{"_name":"mẫu","other":"%1$s mẫu"},"hectare":{"_name":"héc-ta","other":"%1$s héc-ta"},"square-centimeter":{"_name":"xentimét vuông","other":"%1$s xentimét vuông"},"square-foot":{"_name":"feet vuông","other":"%1$s feet vuông"},"square-inch":{"_name":"inch vuông","other":"%1$s inch vuông"},"square-kilometer":{"_name":"kilômét vuông","other":"%1$s kilômét vuông"},"square-meter":{"_name":"mét vuông","other":"%1$s mét vuông"},"square-mile":{"_name":"dặm vuông","other":"%1$s dặm vuông"},"square-yard":{"_name":"yard vuông","other":"%1$s yard vuông"}},"consumption":{"liter-per-kilometer":{"_name":"lít/km","other":"%1$s lít/km"},"mile-per-gallon":{"_name":"dặm/gallon","other":"%1$s dặm/gallon"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"gigabit","other":"%1$s gigabit"},"gigabyte":{"_name":"gigabyte","other":"%1$s gigabyte"},"kilobit":{"_name":"kilobit","other":"%1$s kilobit"},"kilobyte":{"_name":"kilobyte","other":"%1$s kilobyte"},"megabit":{"_name":"megabit","other":"%1$s megabit"},"megabyte":{"_name":"megabyte","other":"%1$s megabyte"},"terabit":{"_name":"terabit","other":"%1$s terabit"},"terabyte":{"_name":"terabyte","other":"%1$s terabyte"}},"duration":{"day":{"_name":"ngày","other":"%1$s ngày"},"hour":{"_name":"giờ","other":"%1$s giờ","_per":"%1$s/giờ"},"microsecond":{"_name":"micrô giây","other":"%1$s micrô giây"},"millisecond":{"_name":"mili giây","other":"%1$s mili giây"},"minute":{"_name":"phút","other":"%1$s phút"},"month":{"_name":"tháng","other":"%1$s tháng"},"nanosecond":{"_name":"nano giây","other":"%1$s nano giây"},"second":{"_name":"giây","other":"%1$s giây","_per":"%1$s/giây"},"week":{"_name":"tuần","other":"%1$s tuần"},"year":{"_name":"năm","other":"%1$s năm"}},"electric":{"ampere":{"_name":"ampe","other":"%1$s ampe"},"milliampere":{"_name":"mili ampe","other":"%1$s mili ampe"},"ohm":{"_name":"ohm","other":"%1$s ohm"},"volt":{"_name":"vôn","other":"%1$s vôn"}},"energy":{"calorie":{"_name":"calo","other":"%1$s calo"},"foodcalorie":{"_name":"Calo","other":"%1$s Calo"},"joule":{"_name":"jun","other":"%1$s jun"},"kilocalorie":{"_name":"kilô calo","other":"%1$s kilô calo"},"kilojoule":{"_name":"kilô jun","other":"%1$s kilô jun"},"kilowatt-hour":{"_name":"kilôoát giờ","other":"%1$s kilôoát giờ"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"xentimét","other":"%1$s xentimét"},"decimeter":{"_name":"đềximét","other":"%1$s đềximét"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"feet","other":"%1$s feet"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"inch","other":"%1$s inch"},"kilometer":{"_name":"kilômét","other":"%1$s kilômét"},"light-year":{"_name":"năm ánh sáng","other":"%1$s năm ánh sáng"},"meter":{"_name":"mét","other":"%1$s mét"},"micrometer":{"_name":"micrômét","other":"%1$s micrômét"},"mile":{"_name":"dặm","other":"%1$s dặm"},"millimeter":{"_name":"milimét","other":"%1$s milimét"},"nanometer":{"_name":"nanomét","other":"%1$s nanomét"},"nautical-mile":{"_name":"hải lý","other":"%1$s hải lý"},"parsec":{"_name":"parsec","other":"%1$s parsec"},"picometer":{"_name":"picômét","other":"%1$s picômét"},"yard":{"_name":"yard","other":"%1$s yard"}},"light":{"lux":{"_name":"lux","other":"%1$s lux"}},"mass":{"carat":{"_name":"carat","other":"%1$s carat"},"gram":{"_name":"gam","other":"%1$s gam"},"kilogram":{"_name":"kilôgam","other":"%1$s kilôgam"},"metric-ton":{"_name":"MT","other":"%1$s MT"},"microgram":{"_name":"micrôgam","other":"%1$s micrô gam"},"milligram":{"_name":"miligam","other":"%1$s miligam"},"ounce":{"_name":"ao-xơ","other":"%1$s ao-xơ"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"pao","other":"%1$s pao"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tấn","other":"%1$s tấn"}},"power":{"gigawatt":{"_name":"gigaoát","other":"%1$s gigaoát"},"horsepower":{"_name":"mã lực","other":"%1$s mã lực"},"kilowatt":{"_name":"kilôoát","other":"%1$s kilôoát"},"megawatt":{"_name":"Megaoát","other":"%1$s Megaoát"},"milliwatt":{"_name":"milioát","other":"%1$s milioát"},"watt":{"_name":"oát","other":"%1$s oát"}},"pressure":{"hectopascal":{"_name":"héctô pascal","other":"%1$s héctô pascal"},"inch-hg":{"_name":"inch thủy ngân","other":"%1$s inch thủy ngân"},"millibar":{"_name":"millibar","other":"%1$s millibar"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"karat","other":"%1$s karat"}},"speed":{"kilometer-per-hour":{"_name":"kilômét/giờ","other":"%1$s kilômét/giờ"},"meter-per-second":{"_name":"mét/giây","other":"%1$s mét/giây"},"mile-per-hour":{"_name":"dặm/giờ","other":"%1$s dặm/giờ"}},"temperature":{"celsius":{"_name":"độ C","other":"%1$s độ C"},"fahrenheit":{"_name":"độ F","other":"%1$s độ F"},"kelvin":{"_name":"độ K","other":"%1$s độ K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"xentilít","other":"%1$s xentilít"},"cubic-centimeter":{"_name":"xentimét khối","other":"%1$s xentimét khối"},"cubic-foot":{"_name":"foot khối","other":"%1$s foot khối"},"cubic-inch":{"_name":"inch khối","other":"%1$s inch khối"},"cubic-kilometer":{"_name":"kilômét khối","other":"%1$s kilômét khối"},"cubic-meter":{"_name":"mét khối","other":"%1$s mét khối"},"cubic-mile":{"_name":"dặm khối","other":"%1$s dặm khối"},"cubic-yard":{"_name":"yard khối","other":"%1$s yard khối"},"cup":{"_name":"cup","other":"%1$s cup"},"deciliter":{"_name":"đềxilít","other":"%1$s đềxilít"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gallon","other":"%1$s gallon"},"hectoliter":{"_name":"hectolit","other":"%1$s hectolit"},"liter":{"_name":"lít","other":"%1$s lít"},"megaliter":{"_name":"megalít","other":"%1$s megalít"},"milliliter":{"_name":"mililít","other":"%1$s mililít"},"pint":{"_name":"pint","other":"%1$s pint"},"quart":{"_name":"quart","other":"%1$s quart"},"tablespoon":{"_name":"muỗng canh","other":"%1$s muỗng canh"},"teaspoon":{"_name":"muỗng cà phê","other":"%1$s muỗng cà phê"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"lực g","other":"%1$s G"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"phút","other":"%1$s′"},"arc-second":{"_name":"giây","other":"%1$s″"},"degree":{"_name":"độ","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$s rad"}},"area":{"acre":{"_name":"mẫu","other":"%1$s mẫu"},"hectare":{"_name":"ha","other":"%1$s ha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","other":"%1$s feet vuông"},"square-inch":{"_name":"in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"dặm vuông","other":"%1$s dặm vuông"},"square-yard":{"_name":"yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"ngày","other":"%1$s ngày"},"hour":{"_name":"giờ","other":"%1$s giờ","_per":"%1$s/giờ"},"microsecond":{"_name":"μs","other":"%1$s μs"},"millisecond":{"_name":"ms","other":"%1$s ms"},"minute":{"_name":"phút","other":"%1$s phút"},"month":{"_name":"tháng","other":"%1$s tháng"},"nanosecond":{"_name":"ns","other":"%1$s ns"},"second":{"_name":"giây","other":"%1$s giây","_per":"%1$s/giây"},"week":{"_name":"tuần","other":"%1$s tuần"},"year":{"_name":"năm","other":"%1$s năm"}},"electric":{"ampere":{"_name":"A","other":"%1$s A"},"milliampere":{"_name":"mA","other":"%1$s mA"},"ohm":{"_name":"Ω","other":"%1$s Ω"},"volt":{"_name":"v","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","other":"%1$s Cal"},"joule":{"_name":"J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$s cm"},"decimeter":{"_name":"dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","other":"%1$s ft"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"inch","other":"%1$s inch"},"kilometer":{"_name":"km","other":"%1$s km"},"light-year":{"_name":"ly","other":"%1$s ly"},"meter":{"_name":"m","other":"%1$s m"},"micrometer":{"_name":"µm","other":"%1$s µm"},"mile":{"_name":"dặm","other":"%1$s dặm"},"millimeter":{"_name":"mm","other":"%1$s mm"},"nanometer":{"_name":"nm","other":"%1$s nm"},"nautical-mile":{"_name":"hải lý","other":"%1$s hải lý"},"parsec":{"_name":"pc","other":"%1$s pc"},"picometer":{"_name":"pm","other":"%1$s pm"},"yard":{"_name":"yd","other":"%1$s yd"}},"light":{"lux":{"_name":"lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","other":"%1$s CD"},"gram":{"_name":"g","other":"%1$s g"},"kilogram":{"_name":"kg","other":"%1$s kg"},"metric-ton":{"_name":"t","other":"%1$s t"},"microgram":{"_name":"µg","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"oz","other":"%1$s oz"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"pao","other":"%1$s lb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$s GW"},"horsepower":{"_name":"hp","other":"%1$s hp"},"kilowatt":{"_name":"kW","other":"%1$s kW"},"megawatt":{"_name":"MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","other":"%1$s mW"},"watt":{"_name":"W","other":"%1$s W"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$s hPa"},"inch-hg":{"_name":"inHg","other":"%1$s inHg"},"millibar":{"_name":"mbar","other":"%1$s mbar"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$s km/h"},"meter-per-second":{"_name":"m/s","other":"%1$s m/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$s mph"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$s km³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","other":"%1$s mi³"},"cubic-yard":{"_name":"yd³","other":"%1$s yd³"},"cup":{"_name":"c","other":"%1$s c"},"deciliter":{"_name":"dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","other":"%1$s hL"},"liter":{"_name":"l","other":"%1$s l"},"megaliter":{"_name":"ML","other":"%1$s ML"},"milliliter":{"_name":"mL","other":"%1$s mL"},"pint":{"_name":"pt","other":"%1$s pt"},"quart":{"_name":"qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","other":"%1$s tsp"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"lực g","other":"%1$sG"},"meter-per-second-squared":{"_name":"m/s²","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"phút","other":"%1$s′"},"arc-second":{"_name":"giây","other":"%1$s″"},"degree":{"_name":"độ","other":"%1$s°"},"radian":{"_name":"rad","other":"%1$s rad"}},"area":{"acre":{"_name":"mẫu","other":"%1$s mẫu"},"hectare":{"_name":"ha","other":"%1$sha"},"square-centimeter":{"_name":"cm²","other":"%1$s cm²"},"square-foot":{"_name":"ft²","other":"%1$s ft²"},"square-inch":{"_name":"in²","other":"%1$s in²"},"square-kilometer":{"_name":"km²","other":"%1$s km²"},"square-meter":{"_name":"m²","other":"%1$s m²"},"square-mile":{"_name":"dặm vuông","other":"%1$s mi²"},"square-yard":{"_name":"yd²","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"l/km","other":"%1$s l/km"},"mile-per-gallon":{"_name":"mpg","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"ngày","other":"%1$s ngày"},"hour":{"_name":"giờ","other":"%1$s giờ","_per":"%1$s/giờ"},"microsecond":{"_name":"μs","other":"%1$s μs"},"millisecond":{"_name":"ms","other":"%1$sms"},"minute":{"_name":"phút","other":"%1$s phút"},"month":{"_name":"tháng","other":"%1$s tháng"},"nanosecond":{"_name":"ns","other":"%1$s ns"},"second":{"_name":"giây","other":"%1$s giây","_per":"%1$s/giây"},"week":{"_name":"tuần","other":"%1$s tuần"},"year":{"_name":"năm","other":"%1$s năm"}},"electric":{"ampere":{"_name":"A","other":"%1$s A"},"milliampere":{"_name":"mA","other":"%1$s mA"},"ohm":{"_name":"Ω","other":"%1$s Ω"},"volt":{"_name":"v","other":"%1$s V"}},"energy":{"calorie":{"_name":"cal","other":"%1$s cal"},"foodcalorie":{"_name":"Cal","other":"%1$s Cal"},"joule":{"_name":"J","other":"%1$s J"},"kilocalorie":{"_name":"kcal","other":"%1$s kcal"},"kilojoule":{"_name":"kJ","other":"%1$s kJ"},"kilowatt-hour":{"_name":"kWh","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"GHz","other":"%1$s GHz"},"hertz":{"_name":"Hz","other":"%1$s Hz"},"kilohertz":{"_name":"kHz","other":"%1$s kHz"},"megahertz":{"_name":"MHz","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"au","other":"%1$s au"},"centimeter":{"_name":"cm","other":"%1$scm"},"decimeter":{"_name":"dm","other":"%1$s dm"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"ft","other":"%1$s'"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"inch","other":"%1$s\""},"kilometer":{"_name":"km","other":"%1$skm"},"light-year":{"_name":"ly","other":"%1$sly"},"meter":{"_name":"m","other":"%1$sm"},"micrometer":{"_name":"µm","other":"%1$s µm"},"mile":{"_name":"dặm","other":"%1$smi"},"millimeter":{"_name":"mm","other":"%1$smm"},"nanometer":{"_name":"nm","other":"%1$s nm"},"nautical-mile":{"_name":"hải lý","other":"%1$s hải lý"},"parsec":{"_name":"pc","other":"%1$s pc"},"picometer":{"_name":"pm","other":"%1$spm"},"yard":{"_name":"yd","other":"%1$syd"}},"light":{"lux":{"_name":"lx","other":"%1$s lx"}},"mass":{"carat":{"_name":"CD","other":"%1$s CD"},"gram":{"_name":"g","other":"%1$sg"},"kilogram":{"_name":"kg","other":"%1$skg"},"metric-ton":{"_name":"t","other":"%1$s t"},"microgram":{"_name":"µg","other":"%1$s µg"},"milligram":{"_name":"mg","other":"%1$s mg"},"ounce":{"_name":"oz","other":"%1$soz"},"ounce-troy":{"_name":"oz t","other":"%1$s oz t"},"pound":{"_name":"pao","other":"%1$slb"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"tn","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"GW","other":"%1$s GW"},"horsepower":{"_name":"hp","other":"%1$shp"},"kilowatt":{"_name":"kW","other":"%1$skW"},"megawatt":{"_name":"MW","other":"%1$s MW"},"milliwatt":{"_name":"mW","other":"%1$s mW"},"watt":{"_name":"W","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"hPa","other":"%1$shPa"},"inch-hg":{"_name":"inHg","other":"%1$s\" Hg"},"millibar":{"_name":"mbar","other":"%1$smb"},"millimeter-of-mercury":{"_name":"mm Hg","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"psi","other":"%1$s psi"}},"proportion":{"karat":{"_name":"kt","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"km/h","other":"%1$skm/h"},"meter-per-second":{"_name":"m/s","other":"%1$sm/s"},"mile-per-hour":{"_name":"mi/h","other":"%1$smph"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"ac ft","other":"%1$s ac ft"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"cL","other":"%1$s cL"},"cubic-centimeter":{"_name":"cm³","other":"%1$s cm³"},"cubic-foot":{"_name":"ft³","other":"%1$s ft³"},"cubic-inch":{"_name":"in³","other":"%1$s in³"},"cubic-kilometer":{"_name":"km³","other":"%1$skm³"},"cubic-meter":{"_name":"m³","other":"%1$s m³"},"cubic-mile":{"_name":"mi³","other":"%1$smi³"},"cubic-yard":{"_name":"yd³","other":"%1$s yd³"},"cup":{"_name":"c","other":"%1$s c"},"deciliter":{"_name":"dL","other":"%1$s dL"},"fluid-ounce":{"_name":"fl oz","other":"%1$s fl oz"},"gallon":{"_name":"gal","other":"%1$s gal"},"hectoliter":{"_name":"hL","other":"%1$s hL"},"liter":{"_name":"l","other":"%1$sl"},"megaliter":{"_name":"ML","other":"%1$s ML"},"milliliter":{"_name":"mL","other":"%1$s mL"},"pint":{"_name":"pt","other":"%1$s pt"},"quart":{"_name":"qt","other":"%1$s qt"},"tablespoon":{"_name":"tbsp","other":"%1$s tbsp"},"teaspoon":{"_name":"tsp","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/weekData.json b/Punic/data/weekData.json new file mode 100644 index 0000000..da2992d --- /dev/null +++ b/Punic/data/weekData.json @@ -0,0 +1 @@ +{"minDays":{"001":1,"GU":1,"UM":1,"US":1,"VI":1,"AD":4,"AN":4,"AT":4,"AX":4,"BE":4,"BG":4,"CH":4,"CZ":4,"DE":4,"DK":4,"EE":4,"ES":4,"FI":4,"FJ":4,"FO":4,"FR":4,"GB":4,"GF":4,"GG":4,"GI":4,"GP":4,"GR":4,"HU":4,"IE":4,"IM":4,"IS":4,"IT":4,"JE":4,"LI":4,"LT":4,"LU":4,"MC":4,"MQ":4,"NL":4,"NO":4,"PL":4,"PT":4,"RE":4,"SE":4,"SJ":4,"SK":4,"SM":4,"VA":4},"firstDay":{"001":1,"AD":1,"AI":1,"AL":1,"AM":1,"AN":1,"AT":1,"AX":1,"AZ":1,"BA":1,"BE":1,"BG":1,"BM":1,"BN":1,"BY":1,"CH":1,"CL":1,"CM":1,"CR":1,"CY":1,"CZ":1,"DE":1,"DK":1,"EC":1,"EE":1,"ES":1,"FI":1,"FJ":1,"FO":1,"FR":1,"GB":1,"GE":1,"GF":1,"GP":1,"GR":1,"HR":1,"HU":1,"IS":1,"IT":1,"KG":1,"KZ":1,"LB":1,"LI":1,"LK":1,"LT":1,"LU":1,"LV":1,"MC":1,"MD":1,"ME":1,"MK":1,"MN":1,"MQ":1,"MY":1,"NL":1,"NO":1,"PL":1,"PT":1,"RE":1,"RO":1,"RS":1,"RU":1,"SE":1,"SI":1,"SK":1,"SM":1,"TJ":1,"TM":1,"TR":1,"UA":1,"UY":1,"UZ":1,"VA":1,"VN":1,"XK":1,"AE":6,"AF":6,"BH":6,"DJ":6,"DZ":6,"EG":6,"IQ":6,"IR":6,"JO":6,"KW":6,"LY":6,"MA":6,"OM":6,"QA":6,"SD":6,"SY":6,"AG":0,"AR":0,"AS":0,"AU":0,"BR":0,"BS":0,"BT":0,"BW":0,"BZ":0,"CA":0,"CN":0,"CO":0,"DM":0,"DO":0,"ET":0,"GT":0,"GU":0,"HK":0,"HN":0,"ID":0,"IE":0,"IL":0,"IN":0,"JM":0,"JP":0,"KE":0,"KH":0,"KR":0,"LA":0,"MH":0,"MM":0,"MO":0,"MT":0,"MX":0,"MZ":0,"NI":0,"NP":0,"NZ":0,"PA":0,"PE":0,"PH":0,"PK":0,"PR":0,"PY":0,"SA":0,"SG":0,"SV":0,"TH":0,"TN":0,"TT":0,"TW":0,"UM":0,"US":0,"VE":0,"VI":0,"WS":0,"YE":0,"ZA":0,"ZW":0,"BD":5,"MV":5}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/calendar.json b/Punic/data/zh-Hant/calendar.json new file mode 100644 index 0000000..0b3116d --- /dev/null +++ b/Punic/data/zh-Hant/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"}},"stand-alone":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"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":"1季","2":"2季","3":"3季","4":"4季"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第1季","2":"第2季","3":"第3季","4":"第4季"}},"stand-alone":{"abbreviated":{"1":"1季","2":"2季","3":"3季","4":"4季"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第1季","2":"第2季","3":"第3季","4":"第4季"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"narrow":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"wide":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"}},"stand-alone":{"abbreviated":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"narrow":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"wide":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"}}},"eras":{"wide":{"0":"西元前","0-alt-variant":"公元前","1":"西元","1-alt-variant":"公元"},"abbreviated":{"0":"西元前","0-alt-variant":"公元前","1":"西元","1-alt-variant":"公元"},"narrow":{"0":"西元前","0-alt-variant":"公元前","1":"西元","1-alt-variant":"公元"}},"dateFormats":{"full":"y年M月d日 EEEE","long":"y年M月d日","medium":"y年M月d日","short":"y/M/d"},"timeFormats":{"full":"ah:mm:ss [zzzz]","long":"ah:mm:ss [z]","medium":"ah:mm:ss","short":"ah:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/dateFields.json b/Punic/data/zh-Hant/dateFields.json new file mode 100644 index 0000000..1a01a05 --- /dev/null +++ b/Punic/data/zh-Hant/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"年代"},"year":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"year-short":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"year-narrow":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 年後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 年前"}},"quarter":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 季後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 季前"}},"quarter-short":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 季後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 季前"}},"quarter-narrow":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 季後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 季前"}},"month":{"displayName":"月","relative-type--1":"上個月","relative-type-0":"本月","relative-type-1":"下個月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 個月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 個月前"}},"month-short":{"displayName":"月","relative-type--1":"上個月","relative-type-0":"本月","relative-type-1":"下個月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 個月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 個月前"}},"month-narrow":{"displayName":"月","relative-type--1":"上個月","relative-type-0":"本月","relative-type-1":"下個月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 個月後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 個月前"}},"week":{"displayName":"週","relative-type--1":"上週","relative-type-0":"本週","relative-type-1":"下週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週前"}},"week-short":{"displayName":"週","relative-type--1":"上週","relative-type-0":"本週","relative-type-1":"下週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週前"}},"week-narrow":{"displayName":"週","relative-type--1":"上週","relative-type-0":"本週","relative-type-1":"下週","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 週後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 週前"}},"day":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"後天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 天後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 天前"}},"day-short":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"後天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 天後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 天前"}},"day-narrow":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"後天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 天後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 天前"}},"weekday":{"displayName":"週天"},"sun":{"relative-type--1":"上週日","relative-type-0":"本週日","relative-type-1":"下週日"},"sun-short":{"relative-type--1":"上週日","relative-type-0":"本週日","relative-type-1":"下週日"},"sun-narrow":{"relative-type--1":"上週日","relative-type-0":"本週日","relative-type-1":"下週日"},"mon":{"relative-type--1":"上週一","relative-type-0":"本週一","relative-type-1":"下週一"},"mon-short":{"relative-type--1":"上週一","relative-type-0":"本週一","relative-type-1":"下週一"},"mon-narrow":{"relative-type--1":"上週一","relative-type-0":"本週一","relative-type-1":"下週一"},"tue":{"relative-type--1":"上週二","relative-type-0":"本週二","relative-type-1":"下週二"},"tue-short":{"relative-type--1":"上週二","relative-type-0":"本週二","relative-type-1":"下週二"},"tue-narrow":{"relative-type--1":"上週二","relative-type-0":"本週二","relative-type-1":"下週二"},"wed":{"relative-type--1":"上週三","relative-type-0":"本週三","relative-type-1":"下週三"},"wed-short":{"relative-type--1":"上週三","relative-type-0":"本週三","relative-type-1":"下週三"},"wed-narrow":{"relative-type--1":"上週三","relative-type-0":"本週三","relative-type-1":"下週三"},"thu":{"relative-type--1":"上週四","relative-type-0":"本週四","relative-type-1":"下週四"},"thu-short":{"relative-type--1":"上週四","relative-type-0":"本週四","relative-type-1":"下週四"},"thu-narrow":{"relative-type--1":"上週四","relative-type-0":"本週四","relative-type-1":"下週四"},"fri":{"relative-type--1":"上週五","relative-type-0":"本週五","relative-type-1":"下週五"},"fri-short":{"relative-type--1":"上週五","relative-type-0":"本週五","relative-type-1":"下週五"},"fri-narrow":{"relative-type--1":"上週五","relative-type-0":"本週五","relative-type-1":"下週五"},"sat":{"relative-type--1":"上週六","relative-type-0":"本週六","relative-type-1":"下週六"},"sat-short":{"relative-type--1":"上週六","relative-type-0":"本週六","relative-type-1":"下週六"},"sat-narrow":{"relative-type--1":"上週六","relative-type-0":"本週六","relative-type-1":"下週六"},"dayperiod":{"displayName":"上午/下午"},"hour":{"displayName":"小時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 小時後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 小時前"}},"hour-short":{"displayName":"小時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 小時後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 小時前"}},"hour-narrow":{"displayName":"小時","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 小時後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 小時前"}},"minute":{"displayName":"分鐘","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分鐘後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分鐘前"}},"minute-short":{"displayName":"分鐘","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分鐘後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分鐘前"}},"minute-narrow":{"displayName":"分鐘","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 分鐘後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 分鐘前"}},"second":{"displayName":"秒","relative-type-0":"現在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"second-short":{"displayName":"秒","relative-type-0":"現在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"second-narrow":{"displayName":"秒","relative-type-0":"現在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0} 秒後"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0} 秒前"}},"zone":{"displayName":"時區"}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/languages.json b/Punic/data/zh-Hant/languages.json new file mode 100644 index 0000000..e0bab7a --- /dev/null +++ b/Punic/data/zh-Hant/languages.json @@ -0,0 +1 @@ +{"aa":"阿法文","ab":"阿布哈茲文","ace":"亞齊文","ach":"阿僑利文","ada":"阿當莫文","ady":"阿迪各文","ae":"阿緯斯陀文","aeb":"突尼斯阿拉伯文","af":"南非荷蘭文","afh":"阿弗里希利文","agq":"亞罕文","ain":"阿伊努文","ak":"阿坎文","akk":"阿卡德文","akz":"阿拉巴馬文","ale":"阿留申文","aln":"蓋格阿爾巴尼亞文","alt":"南阿爾泰文","am":"阿姆哈拉文","an":"阿拉貢文","ang":"古英文","anp":"昂加文","ar":"阿拉伯文","ar-001":"現代標準阿拉伯文","arc":"阿拉米文","arn":"馬普切文","aro":"阿拉奧納文","arp":"阿拉帕霍文","arq":"阿爾及利亞阿拉伯文","arw":"阿拉瓦克文","ary":"摩洛哥阿拉伯文","arz":"埃及阿拉伯文","as":"阿薩姆文","asa":"阿蘇文","ase":"美國手語","ast":"阿斯圖里亞文","av":"阿瓦爾文","avk":"科塔瓦文","awa":"阿瓦文","ay":"艾馬拉文","az":"亞塞拜然文","az-alt-short":"亞塞拜然文","azb":"南亞塞拜然文","ba":"巴什客爾文","bal":"俾路支文","ban":"峇里文","bar":"巴伐利亞文","bas":"巴薩文","bax":"巴姆穆文","bbc":"巴塔克托巴文","bbj":"戈馬拉文","be":"白俄羅斯文","bej":"貝扎文","bem":"別姆巴文","bew":"貝塔維文","bez":"貝納文","bfd":"富特文","bfq":"巴達加文","bg":"保加利亞文","bho":"博傑普爾文","bi":"比斯拉馬文","bik":"比科爾文","bin":"比尼文","bjn":"班亞爾文","bkm":"康姆文","bla":"錫克錫卡文","bm":"班巴拉文","bn":"孟加拉文","bo":"藏文","bpy":"比什奴普萊利亞文","bqi":"巴赫蒂亞里文","br":"布列塔尼文","bra":"布拉杰文","brh":"布拉維文","brx":"博多文","bs":"波士尼亞文","bss":"阿庫色文","bua":"布里阿特文","bug":"布吉斯文","bum":"布魯文","byn":"比林文","byv":"梅敦巴文","ca":"加泰羅尼亞文","cad":"卡多文","car":"加勒比文","cay":"卡尤加文","cch":"阿燦文","ce":"車臣文","ceb":"宿霧文","cgg":"奇加文","ch":"查莫洛文","chb":"奇布查文","chg":"查加文","chk":"處奇斯文","chm":"馬里文","chn":"契奴克文","cho":"喬克托文","chp":"奇佩瓦揚文","chr":"柴羅基文","chy":"沙伊安文","ckb":"索拉尼庫爾德文","co":"科西嘉文","cop":"科普特文","cps":"卡皮茲文","cr":"克裡文","crh":"克里米亞半島的土耳其文;克里米亞半島的塔塔爾文","cs":"捷克文","csb":"卡舒布文","cu":"宗教斯拉夫文","cv":"楚瓦什文","cy":"威爾斯文","da":"丹麥文","dak":"達科他文","dar":"達爾格瓦文","dav":"台塔文","de":"德文","de-AT":"de_AT","de-CH":"高地德文(瑞士)","del":"德拉瓦文","den":"斯拉夫","dgr":"多格里布文","din":"丁卡文","dje":"扎爾馬文","doi":"多格來文","dsb":"下索布文","dtp":"中部杜順文","dua":"杜亞拉文","dum":"中古荷蘭文","dv":"迪維西文","dyo":"朱拉文","dyu":"迪尤拉文","dz":"宗卡文","dzg":"達薩文","ebu":"恩布文","ee":"埃維文","efi":"埃菲克文","egl":"埃米利安文","egy":"古埃及文","eka":"艾卡朱克文","el":"希臘文","elx":"埃蘭文","en":"英文","en-AU":"en_AU","en-CA":"en_CA","en-GB":"en_GB","en-GB-alt-short":"en_GB","en-US":"en_US","en-US-alt-short":"en_US","enm":"中古英文","eo":"世界文","es":"西班牙文","es-419":"es_419","es-ES":"西班牙文(歐洲)","es-MX":"es_MX","esu":"中尤皮克文","et":"愛沙尼亞文","eu":"巴斯克文","ewo":"依汪都文","ext":"埃斯特雷馬杜拉文","fa":"波斯文","fan":"芳族文","fat":"芳蒂文","ff":"富拉文","fi":"芬蘭文","fil":"菲律賓文","fit":"托爾訥芬蘭文","fj":"斐濟文","fo":"法羅文","fon":"豐文","fr":"法文","fr-CA":"fr_CA","fr-CH":"fr_CH","frc":"卡真法文","frm":"中古法文","fro":"古法文","frp":"法蘭克-普羅旺斯文","frr":"北弗里西亞文","frs":"東弗里西亞文","fur":"弗留利文","fy":"西弗里西亞文","ga":"愛爾蘭文","gaa":"加族文","gag":"加告茲文","gan":"贛語","gay":"加約文","gba":"葛巴亞文","gbz":"索羅亞斯德教達里文","gd":"蘇格蘭蓋爾文","gez":"吉茲文","gil":"吉爾伯特群島文","gl":"加利西亞文","glk":"吉拉基文","gmh":"中古高地德文","gn":"瓜拉尼文","goh":"古高地日耳曼文","gom":"孔卡尼文","gon":"岡德文","gor":"科隆達羅文","got":"哥德文","grb":"格列博文","grc":"古希臘文","gsw":"德文(瑞士)","gu":"古吉拉特文","guc":"瓦尤文","gur":"弗拉弗拉文","guz":"古西文","gv":"曼島文","gwi":"圭契文","ha":"豪撒文","hai":"海達文","hak":"客家話","haw":"夏威夷文","he":"希伯來文","hi":"北印度文","hif":"斐濟印地文","hil":"希利蓋農文","hit":"赫梯文","hmn":"孟文","ho":"西里莫圖土文","hr":"克羅埃西亞文","hsb":"上索布文","hsn":"湘語","ht":"海地文","hu":"匈牙利文","hup":"胡帕文","hy":"亞美尼亞文","hz":"赫雷羅文","ia":"國際文","iba":"伊班文","ibb":"伊比比奧文","id":"印尼文","ie":"國際文(E)","ig":"伊布文","ii":"四川彝文","ik":"依奴皮維克文","ilo":"伊洛闊文","inh":"印古什文","io":"伊多文","is":"冰島文","it":"義大利文","iu":"因紐特文","izh":"英格裏亞文","ja":"日文","jam":"牙買加克裏奧爾英文","jbo":"邏輯文","jgo":"恩格姆巴文","jmc":"馬恰美文","jpr":"猶太教-波斯文","jrb":"猶太阿拉伯文","jut":"日德蘭文","jv":"爪哇文","ka":"喬治亞文","kaa":"卡拉卡爾帕克文","kab":"卡比爾文","kac":"卡琴文","kaj":"卡捷文","kam":"卡姆巴文","kaw":"卡威文","kbd":"卡巴爾達文","kbl":"卡念布文","kcg":"卡塔布文","kde":"馬孔德文","kea":"卡布威爾第文","ken":"肯揚文","kfo":"科羅文","kg":"剛果文","kgp":"坎剛文","kha":"卡西文","kho":"和闐文","khq":"西桑海文","khw":"科瓦文","ki":"吉庫尤文","kiu":"北紮紮其文","kj":"廣亞馬文","kk":"哈薩克文","kkj":"卡庫文","kl":"格陵蘭文","kln":"卡倫金文","km":"高棉文","kmb":"金邦杜文","kn":"坎那達文","ko":"韓文","koi":"科米-彼爾米亞克文","kok":"貢根文","kos":"科斯雷恩文","kpe":"克佩列文","kr":"卡努裡文","krc":"卡拉柴-包爾卡爾文","kri":"塞拉利昂克裏奧爾文","krj":"基那來阿文","krl":"卡累利阿文","kru":"庫魯科文","ks":"喀什米爾文","ksb":"尚巴拉文","ksf":"巴菲亞文","ksh":"科隆文","ku":"庫爾德文","kum":"庫密克文","kut":"庫特奈文","kv":"科米文","kw":"康瓦耳文","ky":"吉爾吉斯文","la":"拉丁文","lad":"拉迪諾文","lag":"朗吉文","lah":"拉亨達文","lam":"蘭巴文","lb":"盧森堡文","lez":"列茲干文","lfn":"新共同語言","lg":"干達文","li":"林堡文","lij":"利古里亞文","liv":"利伏尼亞文","lkt":"拉科塔文","lmo":"倫巴底文","ln":"林加拉文","lo":"寮文","lol":"芒戈文","loz":"洛齊文","lt":"立陶宛文","ltg":"拉特加萊文","lu":"魯巴加丹加文","lua":"魯巴魯魯亞文","lui":"路易塞諾文","lun":"盧恩達文","luo":"盧奧文","lus":"盧晒文","luy":"盧雅文","lv":"拉脫維亞文","lzh":"文言文","lzz":"拉茲文","mad":"馬都拉文","maf":"馬法文","mag":"馬加伊文","mai":"邁蒂利文","mak":"望加錫文","man":"曼丁哥文","mas":"馬賽文","mde":"馬巴文","mdf":"莫克沙文","mdr":"曼達文","men":"門德文","mer":"梅魯文","mfe":"克里奧文(模里西斯)","mg":"馬拉加什文","mga":"中古愛爾蘭文","mgh":"馬夸文","mgo":"美塔文","mh":"馬紹爾文","mi":"毛利文","mic":"米克馬克文","min":"米南卡堡文","mk":"馬其頓文","ml":"馬來亞拉姆文","mn":"蒙古文","mnc":"滿族文","mni":"曼尼普裡文","moh":"莫霍克文","mos":"莫西文","mr":"馬拉地文","mrj":"西馬裏文","ms":"馬來文","mt":"馬爾他文","mua":"蒙當文","mul":"多種語言","mus":"克里克文","mwl":"米蘭德斯文","mwr":"馬爾尼裡文","mwv":"明打威文","my":"緬甸文","mye":"姆耶內文","myv":"厄爾茲亞文","mzn":"瑪詹德拉尼文","na":"諾魯文","nan":"閩南語","nap":"拿波里文","naq":"納馬文","nb":"巴克摩挪威文","nd":"北地畢列文","nds":"低地德文","ne":"尼泊爾文","new":"尼瓦爾文","ng":"恩東加文","nia":"尼亞斯文","niu":"紐埃文","njo":"阿沃那加文","nl":"荷蘭文","nl-BE":"佛蘭芒文","nmg":"夸西奧文","nn":"耐諾斯克挪威文","nnh":"恩甘澎文","no":"挪威文","nog":"諾蓋文","non":"古諾爾斯文","nov":"諾維亞文","nqo":"曼德文字 (N’Ko)","nr":"南地畢列文","nso":"北索托文","nus":"努埃爾文","nv":"納瓦霍文","nwc":"古尼瓦爾文","ny":"尼揚賈文","nym":"尼揚韋齊文","nyn":"尼揚科萊文","nyo":"尼奧囉文","nzi":"尼茲馬文","oc":"奧克西坦文","oj":"奧杰布瓦文","om":"奧羅莫文","or":"歐利亞文","os":"奧塞提文","osa":"歐塞奇文","ota":"鄂圖曼土耳其文","pa":"旁遮普文","pag":"潘加辛文","pal":"巴列維文","pam":"潘帕嘉文","pap":"帕皮阿門托文","pau":"帛琉文","pcd":"庇卡底文","pdc":"賓夕法尼亞德文","pdt":"門諾低地德文","peo":"古波斯文","pfl":"普法爾茨德文","phn":"腓尼基文","pi":"巴利文","pl":"波蘭文","pms":"皮埃蒙特文","pnt":"旁狄希臘文","pon":"波那貝文","prg":"普魯士文","pro":"古普羅旺斯文","ps":"普什圖文","pt":"葡萄牙文","pt-BR":"pt_BR","pt-PT":"葡萄牙文(歐洲)","qu":"蓋楚瓦文","quc":"基切文","qug":"欽博拉索海蘭蓋丘亞文","raj":"拉賈斯坦諸文","rap":"復活島文","rar":"拉羅通加文","rgn":"羅馬格諾里文","rif":"里菲亞諾文","rm":"羅曼斯文","rn":"隆迪文","ro":"羅馬尼亞文","ro-MD":"摩爾多瓦文","rof":"蘭博文","rom":"吉普賽文","root":"根語言","rtm":"羅圖馬島文","ru":"俄文","rue":"盧森尼亞文","rug":"羅維阿納文","rup":"羅馬尼亞語系","rw":"盧安達文","rwk":"羅瓦文","sa":"梵文","sad":"桑達韋文","sah":"雅庫特文","sam":"薩瑪利亞阿拉姆文","saq":"薩布魯文","sas":"撒撒克文","sat":"散塔利文","saz":"索拉什特拉文","sba":"甘拜文","sbp":"桑古文","sc":"撒丁文","scn":"西西里文","sco":"蘇格蘭文","sd":"信德文","sdc":"薩丁尼亞-薩薩里文","se":"北方薩米文","see":"塞訥卡文","seh":"賽納文","sei":"瑟里文","sel":"瑟爾卡普文","ses":"東桑海文","sg":"桑戈文","sga":"古愛爾蘭文","sgs":"薩莫吉希亞文","sh":"塞爾維亞克羅埃西亞文","shi":"希爾哈文","shn":"撣文","shu":"阿拉伯文(查德)","si":"僧伽羅文","sid":"希達摩文","sk":"斯洛伐克文","sl":"斯洛維尼亞文","sli":"下西利西亞文","sly":"塞拉亞文","sm":"薩摩亞文","sma":"南薩米文","smj":"魯勒薩米文","smn":"伊納裡薩米文","sms":"斯科特薩米文","sn":"塞內加爾文","snk":"索尼基文","so":"索馬利文","sog":"索格底亞納文","sq":"阿爾巴尼亞文","sr":"塞爾維亞文","srn":"蘇拉南東墎文","srr":"塞雷爾文","ss":"斯瓦特文","ssy":"薩霍文","st":"塞索托文","stq":"沙特菲士蘭文","su":"巽他文","suk":"蘇庫馬文","sus":"蘇蘇文","sux":"蘇美文","sv":"瑞典文","sw":"史瓦希里文","swb":"葛摩文","swc":"史瓦希里文(剛果)","syc":"古敘利亞文","syr":"敘利亞文","szl":"西利西亞文","ta":"坦米爾文","tcy":"圖盧文","te":"泰盧固文","tem":"提姆文","teo":"特索文","ter":"泰雷諾文","tet":"泰頓文","tg":"塔吉克文","th":"泰文","ti":"提格利尼亞文","tig":"蒂格雷文","tiv":"提夫文","tk":"土庫曼文","tkl":"托克勞文","tkr":"查庫爾文","tl":"塔加路族文","tlh":"克林貢文","tli":"特林基特文","tly":"塔里什文","tmh":"塔馬奇克文","tn":"突尼西亞文","to":"東加文","tog":"東加文(尼亞薩)","tpi":"托比辛文","tr":"土耳其文","tru":"圖羅尤文","trv":"太魯閣文","ts":"特松加文","tsd":"特薩克尼恩文","tsi":"欽西安文","tt":"韃靼文","ttt":"穆斯林塔特文","tum":"圖姆布卡文","tvl":"吐瓦魯文","tw":"特威文","twq":"北桑海文","ty":"大溪地文","tyv":"土凡文","tzm":"塔馬齊格特文","udm":"沃蒂艾克文","ug":"維吾爾文","uga":"烏加列文","uk":"烏克蘭文","umb":"姆本杜文","und":"未知語言","ur":"烏都文","uz":"烏茲別克文","vai":"瓦伊文","ve":"溫達文","vec":"威尼斯文","vep":"維普森文","vi":"越南文","vls":"西佛蘭德文","vmf":"美茵-法蘭克尼亞文","vo":"沃拉普克文","vot":"沃提克文","vro":"佛羅文","vun":"溫舊文","wa":"瓦隆文","wae":"瓦瑟文","wal":"瓦拉莫文","war":"瓦瑞文","was":"瓦紹文","wo":"沃洛夫文","wuu":"吳語","xal":"卡爾梅克文","xh":"科薩文","xmf":"明格列爾文","xog":"索加文","yao":"瑤文","yap":"雅浦文","yav":"洋卞文","ybb":"耶姆巴文","yi":"意第緒文","yo":"約魯巴文","yrl":"奈恩加圖文","yue":"粵語","za":"壯文","zap":"薩波特克文","zbl":"布列斯符號","zea":"西蘭文","zen":"澤納加文","zgh":"標準摩洛哥塔馬塞特文","zh":"中文","zh-Hans":"簡體中文","zh-Hant":"繁體中文","zu":"祖魯文","zun":"祖尼文","zxx":"無語言內容","zza":"扎扎文"} \ No newline at end of file diff --git a/Punic/data/zh-Hant/listPatterns.json b/Punic/data/zh-Hant/listPatterns.json new file mode 100644 index 0000000..42c11df --- /dev/null +++ b/Punic/data/zh-Hant/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s、%2$s","middle":"%1$s、%2$s","end":"%1$s和%2$s","2":"%1$s和%2$s"},"unit":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"},"unit-narrow":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"},"unit-short":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/localeDisplayNames.json b/Punic/data/zh-Hant/localeDisplayNames.json new file mode 100644 index 0000000..bfea464 --- /dev/null +++ b/Punic/data/zh-Hant/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s(%2$s)","localeSeparator":"%1$s,%2$s","localeKeyTypePattern":"%1$s:%2$s"},"keys":{"calendar":"曆法","colAlternate":"略過符號排序","colBackwards":"反向重音排序","colCaseFirst":"大寫/小寫排列","colCaseLevel":"區分大小寫排序","colHiraganaQuaternary":"假名排序","colNormalization":"正規化排序","colNumeric":"數字排序","colStrength":"排序強度","collation":"排序","currency":"貨幣","numbers":"數字","timezone":"時區","va":"區域變異","variableTop":"以符號排序","x":"私人使用"},"types":{"numbers":{"vaii":"瓦伊文數字"},"collation":{"zhuyin":"注音排序"},"calendar":{"roc":"民國曆"},"colStrength":{"tertiary":"排序重音/大小寫/全半形"},"colCaseFirst":{"upper":"優先排序大寫"},"colBackwards":{"yes":"依反向重音排序"},"colCaseLevel":{"yes":"依大小寫排序"},"colHiraganaQuaternary":{"yes":"分別排序假名"},"colNormalization":{"yes":"依正規化排序 Unicode"},"colNumeric":{"yes":"依數字順序排序數字"},"colAlternate":{"shifted":"略過符號排序"}},"codePatterns":{"language":"語言:%1$s","script":"文字:%1$s","territory":"地區:%1$s"}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/numbers.json b/Punic/data/zh-Hant/numbers.json new file mode 100644 index 0000000..7227f29 --- /dev/null +++ b/Punic/data/zh-Hant/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":3,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"非數值","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/territories.json b/Punic/data/zh-Hant/territories.json new file mode 100644 index 0000000..acb354d --- /dev/null +++ b/Punic/data/zh-Hant/territories.json @@ -0,0 +1 @@ +{"001":"世界","002":"非洲","003":"北美洲","005":"南美洲","009":"大洋洲","011":"西非","013":"中美","014":"東非","015":"北非","017":"中非","018":"非洲南部","019":"美洲","021":"北美","029":"加勒比海","030":"東亞","034":"南亞","035":"東南亞","039":"南歐","053":"澳洲與紐西蘭","054":"美拉尼西亞","057":"密克羅尼西亞","061":"玻里尼西亞","142":"亞洲","143":"中亞","145":"西亞","150":"歐洲","151":"東歐","154":"北歐","155":"西歐","419":"拉丁美洲","AC":"阿森松島","AD":"安道爾","AE":"阿拉伯聯合大公國","AF":"阿富汗","AG":"安地卡及巴布達","AI":"安圭拉島","AL":"阿爾巴尼亞","AM":"亞美尼亞","AN":"荷屬安地列斯","AO":"安哥拉","AQ":"南極洲","AR":"阿根廷","AS":"美屬薩摩亞群島","AT":"奧地利","AU":"澳洲","AW":"阿路巴","AX":"奧蘭群島","AZ":"亞塞拜然","BA":"波士尼亞與赫塞格維納","BB":"巴貝多","BD":"孟加拉","BE":"比利時","BF":"布吉納法索","BG":"保加利亞","BH":"巴林","BI":"蒲隆地","BJ":"貝南","BL":"聖巴瑟米","BM":"百慕達","BN":"汶萊","BO":"玻利維亞","BQ":"荷蘭加勒比區","BR":"巴西","BS":"巴哈馬","BT":"不丹","BV":"布威島","BW":"波札那","BY":"白俄羅斯","BZ":"貝里斯","CA":"加拿大","CC":"可可斯群島","CD":"剛果(金夏沙)","CD-alt-variant":"剛果民主共和國","CF":"中非共和國","CG":"剛果(布拉薩)","CG-alt-variant":"剛果共和國","CH":"瑞士","CI":"象牙海岸","CI-alt-variant":"CI","CK":"庫克群島","CL":"智利","CM":"喀麥隆","CN":"中華人民共和國","CO":"哥倫比亞","CP":"克里派頓島","CR":"哥斯大黎加","CU":"古巴","CV":"維德角","CW":"庫拉索","CX":"聖誕島","CY":"賽普勒斯","CZ":"捷克共和國","DE":"德國","DG":"迪亞哥加西亞島","DJ":"吉布地","DK":"丹麥","DM":"多米尼克","DO":"多明尼加共和國","DZ":"阿爾及利亞","EA":"休達與梅利利亞","EC":"厄瓜多","EE":"愛沙尼亞","EG":"埃及","EH":"西撒哈拉","ER":"厄利垂亞","ES":"西班牙","ET":"衣索比亞","EU":"歐盟","FI":"芬蘭","FJ":"斐濟","FK":"福克蘭群島","FK-alt-variant":"福克蘭群島(馬爾維納斯群島)","FM":"密克羅尼西亞群島","FO":"法羅群島","FR":"法國","GA":"加彭","GB":"英國","GB-alt-short":"英國","GD":"格瑞那達","GE":"喬治亞共和國","GF":"法屬圭亞那","GG":"根西島","GH":"迦納","GI":"直布羅陀","GL":"格陵蘭","GM":"甘比亞","GN":"幾內亞","GP":"瓜地洛普","GQ":"赤道幾內亞","GR":"希臘","GS":"南喬治亞與南三明治群島","GT":"瓜地馬拉","GU":"關島","GW":"幾內亞比紹","GY":"蓋亞那","HK":"中華人民共和國香港特別行政區","HK-alt-short":"香港","HM":"赫德島和麥克唐納群島","HN":"宏都拉斯","HR":"克羅埃西亞","HT":"海地","HU":"匈牙利","IC":"加那利群島","ID":"印尼","IE":"愛爾蘭","IL":"以色列","IM":"曼島","IN":"印度","IO":"英屬印度洋領土","IQ":"伊拉克","IR":"伊朗","IS":"冰島","IT":"義大利","JE":"澤西島","JM":"牙買加","JO":"約旦","JP":"日本","KE":"肯亞","KG":"吉爾吉斯","KH":"柬埔寨","KI":"吉里巴斯","KM":"葛摩","KN":"聖克里斯多福及尼維斯","KP":"北韓","KR":"南韓","KW":"科威特","KY":"開曼群島","KZ":"哈薩克","LA":"寮國","LB":"黎巴嫩","LC":"聖露西亞","LI":"列支敦斯登","LK":"斯里蘭卡","LR":"賴比瑞亞","LS":"賴索托","LT":"立陶宛","LU":"盧森堡","LV":"拉脫維亞","LY":"利比亞","MA":"摩洛哥","MC":"摩納哥","MD":"摩爾多瓦","ME":"蒙特內哥羅","MF":"法屬聖馬丁","MG":"馬達加斯加","MH":"馬紹爾群島","MK":"馬其頓","MK-alt-variant":"前南斯拉夫馬其頓共和國","ML":"馬利","MM":"緬甸","MN":"蒙古","MO":"中華人民共和國澳門特別行政區","MO-alt-short":"澳門","MP":"北馬里亞納群島","MQ":"馬丁尼克島","MR":"茅利塔尼亞","MS":"蒙哲臘","MT":"馬爾他","MU":"模里西斯","MV":"馬爾地夫","MW":"馬拉威","MX":"墨西哥","MY":"馬來西亞","MZ":"莫三比克","NA":"納米比亞","NC":"新喀里多尼亞群島","NE":"尼日","NF":"諾福克島","NG":"奈及利亞","NI":"尼加拉瓜","NL":"荷蘭","NO":"挪威","NP":"尼泊爾","NR":"諾魯","NU":"紐埃島","NZ":"紐西蘭","OM":"阿曼王國","PA":"巴拿馬","PE":"秘魯","PF":"法屬玻里尼西亞","PG":"巴布亞紐幾內亞","PH":"菲律賓","PK":"巴基斯坦","PL":"波蘭","PM":"聖皮埃爾和密克隆群島","PN":"皮特肯群島","PR":"波多黎各","PS":"巴勒斯坦自治區","PS-alt-short":"巴勒斯坦","PT":"葡萄牙","PW":"帛琉","PY":"巴拉圭","QA":"卡達","QO":"大洋洲邊疆群島","RE":"留尼旺","RO":"羅馬尼亞","RS":"塞爾維亞","RU":"俄羅斯","RW":"盧安達","SA":"沙烏地阿拉伯","SB":"索羅門群島","SC":"塞席爾","SD":"蘇丹","SE":"瑞典","SG":"新加坡","SH":"聖赫勒拿島","SI":"斯洛維尼亞","SJ":"冷岸及央麥恩群島","SK":"斯洛伐克","SL":"獅子山","SM":"聖馬利諾","SN":"塞內加爾","SO":"索馬利亞","SR":"蘇利南","SS":"南蘇丹","ST":"聖多美及普林西比","SV":"薩爾瓦多","SX":"荷屬聖馬丁","SY":"敘利亞","SZ":"史瓦濟蘭","TA":"特里斯坦達庫尼亞群島","TC":"土克斯及開科斯群島","TD":"查德","TF":"法屬南方屬地","TG":"多哥共和國","TH":"泰國","TJ":"塔吉克","TK":"托克勞群島","TL":"東帝汶","TL-alt-variant":"TL","TM":"土庫曼","TN":"突尼西亞","TO":"東加","TR":"土耳其","TT":"千里達及托巴哥","TV":"吐瓦魯","TW":"台灣","TZ":"坦尚尼亞","UA":"烏克蘭","UG":"烏干達","UM":"美國本土外小島嶼","US":"美國","US-alt-short":"美國","UY":"烏拉圭","UZ":"烏茲別克","VA":"梵蒂岡","VC":"聖文森及格瑞那丁","VE":"委內瑞拉","VG":"英屬維京群島","VI":"美屬維京群島","VN":"越南","VU":"萬那杜","WF":"瓦利斯和富圖納群島","WS":"薩摩亞群島","XK":"科索沃","YE":"葉門","YT":"馬約特","ZA":"南非","ZM":"尚比亞","ZW":"辛巴威","ZZ":"未知區域"} \ No newline at end of file diff --git a/Punic/data/zh-Hant/timeZoneNames.json b/Punic/data/zh-Hant/timeZoneNames.json new file mode 100644 index 0000000..2ef8e90 --- /dev/null +++ b/Punic/data/zh-Hant/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s時間","regionFormat-type-standard":"%1$s (+0)","regionFormat-type-daylight":"%1$s (+1)","fallbackFormat":"%2$s(%1$s)","zone":{"America":{"Adak":{"exemplarCity":"艾達克"},"Anchorage":{"exemplarCity":"安克拉治"},"Anguilla":{"exemplarCity":"安吉拉"},"Antigua":{"exemplarCity":"安地卡"},"Araguaina":{"exemplarCity":"阿拉圭那"},"Argentina":{"La_Rioja":{"exemplarCity":"拉略哈"},"Rio_Gallegos":{"exemplarCity":"里奧加耶戈斯"},"Salta":{"exemplarCity":"薩爾塔"},"San_Juan":{"exemplarCity":"聖胡安"},"San_Luis":{"exemplarCity":"聖路易"},"Tucuman":{"exemplarCity":"吐庫曼"},"Ushuaia":{"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":"薩爾瓦多"},"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":{"Knox":{"exemplarCity":"印第安那州諾克斯"},"Marengo":{"exemplarCity":"印第安那州馬倫哥"},"Petersburg":{"exemplarCity":"印第安那州彼得堡"},"Tell_City":{"exemplarCity":"印第安那州泰爾城"},"Vevay":{"exemplarCity":"印第安那州維威"},"Vincennes":{"exemplarCity":"印第安那州溫森斯"},"Winamac":{"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":"北達科他州布由拉"},"Center":{"exemplarCity":"北達科他州中心"},"New_Salem":{"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":"安道爾"},"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":"基輔"},"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":"地拉那"},"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":"曼谷"},"Beirut":{"exemplarCity":"貝魯特"},"Bishkek":{"exemplarCity":"比什凱克"},"Brunei":{"exemplarCity":"汶萊"},"Calcutta":{"exemplarCity":"加爾各答"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"喬巴山"},"Chongqing":{"exemplarCity":"重慶"},"Colombo":{"exemplarCity":"可倫坡"},"Damascus":{"exemplarCity":"大馬士革"},"Dhaka":{"exemplarCity":"達卡"},"Dili":{"exemplarCity":"帝力"},"Dubai":{"exemplarCity":"杜拜"},"Dushanbe":{"exemplarCity":"杜桑貝"},"Gaza":{"exemplarCity":"加薩"},"Harbin":{"exemplarCity":"哈爾濱"},"Hebron":{"exemplarCity":"赫布隆"},"Hong_Kong":{"exemplarCity":"中華人民共和國香港特別行政區"},"Hovd":{"exemplarCity":"科布多"},"Irkutsk":{"exemplarCity":"伊爾庫次克"},"Jakarta":{"exemplarCity":"雅加達"},"Jayapura":{"exemplarCity":"加亞布拉"},"Jerusalem":{"exemplarCity":"耶路撒冷"},"Kabul":{"exemplarCity":"喀布爾"},"Kamchatka":{"exemplarCity":"堪察加"},"Karachi":{"exemplarCity":"喀拉蚩"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"台北"},"Tashkent":{"exemplarCity":"塔什干"},"Tbilisi":{"exemplarCity":"第比利斯"},"Tehran":{"exemplarCity":"德黑蘭"},"Thimphu":{"exemplarCity":"廷布"},"Tokyo":{"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":"奧克蘭"},"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":{"Acre":{"long":{"generic":"艾克時間","standard":"艾克標準時間","daylight":"艾克夏令時間"}},"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":"阿拉斯加夏令時間"}},"Almaty":{"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":"阿皮亞夏令時間"}},"Aqtau":{"long":{"generic":"阿克陶時間","standard":"阿克陶標準時間","daylight":"阿克陶夏令時間"}},"Aqtobe":{"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":"維德角夏令時間"}},"Casey":{"long":{"standard":"凱西站時間"}},"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":"法國南方及南極時間"}},"GMT":{"long":{"standard":"格林威治標準時間"}},"Galapagos":{"long":{"standard":"加拉巴哥群島時間"}},"Gambier":{"long":{"standard":"甘比爾群島時間"}},"Georgia":{"long":{"generic":"喬治亞時間","standard":"喬治亞標準時間","daylight":"喬治亞夏令時間"}},"Gilbert_Islands":{"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":"吉爾吉斯時間"}},"Lanka":{"long":{"standard":"蘭卡時間"}},"Line_Islands":{"long":{"standard":"萊恩群島時間"}},"Lord_Howe":{"long":{"generic":"豪勳爵島時間","standard":"豪勳爵島標準時間","daylight":"豪勳爵島夏令時間"}},"Macau":{"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":"波納佩時間"}},"Qyzylorda":{"long":{"generic":"克孜勒奧爾達時間","standard":"克孜勒奧爾達標準時間","daylight":"克孜勒奧爾達夏令時間"}},"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":"葉卡捷琳堡夏令時間"}}}} \ No newline at end of file diff --git a/Punic/data/zh-Hant/units.json b/Punic/data/zh-Hant/units.json new file mode 100644 index 0000000..5d37ad0 --- /dev/null +++ b/Punic/data/zh-Hant/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G 力","other":"%1$s G 力"},"meter-per-second-squared":{"_name":"公尺/秒平方","other":"%1$s 公尺/秒平方"}},"angle":{"arc-minute":{"_name":"分鐘","other":"%1$s 分鐘"},"arc-second":{"_name":"秒","other":"%1$s 秒"},"degree":{"_name":"度","other":"%1$s 度"},"radian":{"_name":"弧度","other":"%1$s 弧度"}},"area":{"acre":{"_name":"英畝","other":"%1$s 英畝"},"hectare":{"_name":"公頃","other":"%1$s 公頃"},"square-centimeter":{"_name":"平方公分","other":"%1$s 平方公分"},"square-foot":{"_name":"平方英尺","other":"%1$s 平方英尺"},"square-inch":{"_name":"平方英寸","other":"%1$s 平方英寸"},"square-kilometer":{"_name":"平方公里","other":"%1$s 平方公里"},"square-meter":{"_name":"平方公尺","other":"%1$s 平方公尺"},"square-mile":{"_name":"平方英里","other":"%1$s 平方英里"},"square-yard":{"_name":"平方碼","other":"%1$s 平方碼"}},"consumption":{"liter-per-kilometer":{"_name":"升/公里","other":"%1$s 升/公里"},"mile-per-gallon":{"_name":"英里/加侖","other":"%1$s 英里/加侖"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"天","other":"%1$s 天"},"hour":{"_name":"小時","other":"%1$s 小時","_per":"%1$s/小時"},"microsecond":{"_name":"微秒","other":"%1$s 微秒"},"millisecond":{"_name":"毫秒","other":"%1$s 毫秒"},"minute":{"_name":"分鐘","other":"%1$s 分鐘"},"month":{"_name":"個月","other":"%1$s 個月"},"nanosecond":{"_name":"奈秒","other":"%1$s 奈秒"},"second":{"_name":"秒","other":"%1$s 秒","_per":"%1$s/秒"},"week":{"_name":"週","other":"%1$s 週"},"year":{"_name":"年","other":"%1$s 年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s 安培"},"milliampere":{"_name":"毫安培","other":"%1$s 毫安培"},"ohm":{"_name":"歐姆","other":"%1$s 歐姆"},"volt":{"_name":"伏特","other":"%1$s 伏特"}},"energy":{"calorie":{"_name":"卡路里","other":"%1$s 卡路里"},"foodcalorie":{"_name":"大卡","other":"%1$s 大卡"},"joule":{"_name":"焦耳","other":"%1$s 焦耳"},"kilocalorie":{"_name":"千卡","other":"%1$s 千卡"},"kilojoule":{"_name":"千焦","other":"%1$s 千焦"},"kilowatt-hour":{"_name":"千瓦小時","other":"%1$s 千瓦小時"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s 吉赫"},"hertz":{"_name":"赫茲","other":"%1$s 赫茲"},"kilohertz":{"_name":"千赫","other":"%1$s 千赫"},"megahertz":{"_name":"兆赫","other":"%1$s 兆赫"}},"length":{"astronomical-unit":{"_name":"天文單位","other":"%1$s 天文單位"},"centimeter":{"_name":"公分","other":"%1$s 公分"},"decimeter":{"_name":"公寸","other":"%1$s 公寸"},"fathom":{"_name":"英尋","other":"%1$s 英尋"},"foot":{"_name":"呎","other":"%1$s 呎"},"furlong":{"_name":"化朗","other":"%1$s 化朗"},"inch":{"_name":"吋","other":"%1$s 吋"},"kilometer":{"_name":"公里","other":"%1$s 公里"},"light-year":{"_name":"光年","other":"%1$s 光年"},"meter":{"_name":"公尺","other":"%1$s 公尺"},"micrometer":{"_name":"微米","other":"%1$s 微米"},"mile":{"_name":"英里","other":"%1$s 英里"},"millimeter":{"_name":"公釐","other":"%1$s 公釐"},"nanometer":{"_name":"奈米","other":"%1$s 奈米"},"nautical-mile":{"_name":"海里","other":"%1$s 海里"},"parsec":{"_name":"秒差距","other":"%1$s 秒差距"},"picometer":{"_name":"皮米","other":"%1$s 皮米"},"yard":{"_name":"碼","other":"%1$s 碼"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s 勒克斯"}},"mass":{"carat":{"_name":"克拉","other":"%1$s 克拉"},"gram":{"_name":"克","other":"%1$s 克"},"kilogram":{"_name":"公斤","other":"%1$s 公斤"},"metric-ton":{"_name":"公噸","other":"%1$s 公噸"},"microgram":{"_name":"微克","other":"%1$s 微克"},"milligram":{"_name":"毫克","other":"%1$s 毫克"},"ounce":{"_name":"盎司","other":"%1$s 盎司"},"ounce-troy":{"_name":"金衡盎司","other":"%1$s 金衡盎司"},"pound":{"_name":"磅","other":"%1$s 磅"},"stone":{"_name":"英石","other":"%1$s 英石"},"ton":{"_name":"英噸","other":"%1$s 英噸"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s 吉瓦"},"horsepower":{"_name":"匹","other":"%1$s 匹"},"kilowatt":{"_name":"千瓦","other":"%1$s 千瓦"},"megawatt":{"_name":"百萬瓦","other":"%1$s 百萬瓦"},"milliwatt":{"_name":"毫瓦","other":"%1$s 毫瓦"},"watt":{"_name":"瓦特","other":"%1$s 瓦特"}},"pressure":{"hectopascal":{"_name":"百帕","other":"%1$s 百帕"},"inch-hg":{"_name":"英吋水銀柱","other":"%1$s 英吋水銀柱"},"millibar":{"_name":"毫巴","other":"%1$s 毫巴"},"millimeter-of-mercury":{"_name":"毫米水銀柱","other":"%1$s 毫米水銀柱"},"pound-per-square-inch":{"_name":"磅力/平方英寸","other":"%1$s 磅力/平方英寸"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s 克拉"}},"speed":{"kilometer-per-hour":{"_name":"公里/小時","other":"%1$s 公里/小時"},"meter-per-second":{"_name":"公尺/秒","other":"%1$s 公尺/秒"},"mile-per-hour":{"_name":"英里/小時","other":"%1$s 英里/小時"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"英畝英尺","other":"%1$s 英畝英尺"},"bushel":{"_name":"蒲式耳","other":"%1$s 蒲式耳"},"centiliter":{"_name":"釐升","other":"%1$s 釐升"},"cubic-centimeter":{"_name":"立方公分","other":"%1$s 立方公分"},"cubic-foot":{"_name":"立方英尺","other":"%1$s 立方英尺"},"cubic-inch":{"_name":"立方英寸","other":"%1$s 立方英寸"},"cubic-kilometer":{"_name":"立方公里","other":"%1$s 立方公里"},"cubic-meter":{"_name":"立方公尺","other":"%1$s 立方公尺"},"cubic-mile":{"_name":"立方英里","other":"%1$s 立方英里"},"cubic-yard":{"_name":"立方碼","other":"%1$s 立方碼"},"cup":{"_name":"量杯","other":"%1$s 量杯"},"deciliter":{"_name":"公合","other":"%1$s 公合"},"fluid-ounce":{"_name":"液盎司","other":"%1$s 液盎司"},"gallon":{"_name":"加侖","other":"%1$s 加侖"},"hectoliter":{"_name":"公石","other":"%1$s 公石"},"liter":{"_name":"公升","other":"%1$s 公升"},"megaliter":{"_name":"兆升","other":"%1$s 兆升"},"milliliter":{"_name":"毫升","other":"%1$s 毫升"},"pint":{"_name":"品脫","other":"%1$s 品脫"},"quart":{"_name":"夸脫","other":"%1$s 夸脫"},"tablespoon":{"_name":"湯匙","other":"%1$s 湯匙"},"teaspoon":{"_name":"茶匙","other":"%1$s 茶匙"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G 力","other":"%1$s G 力"},"meter-per-second-squared":{"_name":"公尺/秒平方","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"分鐘","other":"%1$s 分鐘"},"arc-second":{"_name":"秒","other":"%1$s 秒"},"degree":{"_name":"度","other":"%1$s 度"},"radian":{"_name":"弧度","other":"%1$s 弧度"}},"area":{"acre":{"_name":"英畝","other":"%1$s 英畝"},"hectare":{"_name":"公頃","other":"%1$s 公頃"},"square-centimeter":{"_name":"平方公分","other":"%1$s 平方公分"},"square-foot":{"_name":"平方英尺","other":"%1$s 平方英尺"},"square-inch":{"_name":"平方英寸","other":"%1$s 平方英寸"},"square-kilometer":{"_name":"平方公里","other":"%1$s 平方公里"},"square-meter":{"_name":"平方公尺","other":"%1$s 平方公尺"},"square-mile":{"_name":"平方英里","other":"%1$s 平方英里"},"square-yard":{"_name":"平方碼","other":"%1$s 平方碼"}},"consumption":{"liter-per-kilometer":{"_name":"升/公里","other":"%1$s 升/公里"},"mile-per-gallon":{"_name":"英里/加侖","other":"%1$s 英里/加侖"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"天","other":"%1$s 天"},"hour":{"_name":"小時","other":"%1$s 小時","_per":"%1$s/小時"},"microsecond":{"_name":"微秒","other":"%1$s 微秒"},"millisecond":{"_name":"毫秒","other":"%1$s 毫秒"},"minute":{"_name":"分鐘","other":"%1$s 分鐘"},"month":{"_name":"個月","other":"%1$s 個月"},"nanosecond":{"_name":"奈秒","other":"%1$s 奈秒"},"second":{"_name":"秒","other":"%1$s 秒","_per":"%1$s/秒"},"week":{"_name":"週","other":"%1$s 週"},"year":{"_name":"年","other":"%1$s 年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s 安培"},"milliampere":{"_name":"毫安培","other":"%1$s 毫安培"},"ohm":{"_name":"歐姆","other":"%1$s 歐姆"},"volt":{"_name":"伏特","other":"%1$s 伏特"}},"energy":{"calorie":{"_name":"卡路里","other":"%1$s 卡"},"foodcalorie":{"_name":"大卡","other":"%1$s 大卡"},"joule":{"_name":"焦耳","other":"%1$s 焦耳"},"kilocalorie":{"_name":"千卡","other":"%1$s 千卡"},"kilojoule":{"_name":"千焦","other":"%1$s 千焦"},"kilowatt-hour":{"_name":"千瓦小時","other":"%1$s 千瓦小時"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s 吉赫"},"hertz":{"_name":"赫茲","other":"%1$s 赫茲"},"kilohertz":{"_name":"千赫","other":"%1$s 千赫"},"megahertz":{"_name":"兆赫","other":"%1$s 兆赫"}},"length":{"astronomical-unit":{"_name":"天文單位","other":"%1$s 天文單位"},"centimeter":{"_name":"公分","other":"%1$s 公分"},"decimeter":{"_name":"公寸","other":"%1$s 公寸"},"fathom":{"_name":"fm","other":"%1$s 英尋"},"foot":{"_name":"呎","other":"%1$s 呎"},"furlong":{"_name":"化朗","other":"%1$s 化朗"},"inch":{"_name":"吋","other":"%1$s 吋"},"kilometer":{"_name":"公里","other":"%1$s 公里"},"light-year":{"_name":"光年","other":"%1$s 光年"},"meter":{"_name":"公尺","other":"%1$s 公尺"},"micrometer":{"_name":"微米","other":"%1$s 微米"},"mile":{"_name":"英里","other":"%1$s 英里"},"millimeter":{"_name":"公釐","other":"%1$s 公釐"},"nanometer":{"_name":"奈米","other":"%1$s 奈米"},"nautical-mile":{"_name":"海里","other":"%1$s 海里"},"parsec":{"_name":"秒差距","other":"%1$s 秒差距"},"picometer":{"_name":"皮米","other":"%1$s 皮米"},"yard":{"_name":"碼","other":"%1$s 碼"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s 勒克斯"}},"mass":{"carat":{"_name":"克拉","other":"%1$s 克拉"},"gram":{"_name":"克","other":"%1$s 克"},"kilogram":{"_name":"公斤","other":"%1$s 公斤"},"metric-ton":{"_name":"公噸","other":"%1$s 公噸"},"microgram":{"_name":"微克","other":"%1$s 微克"},"milligram":{"_name":"毫克","other":"%1$s 毫克"},"ounce":{"_name":"盎司","other":"%1$s 盎司"},"ounce-troy":{"_name":"金衡盎司","other":"%1$s 金衡盎司"},"pound":{"_name":"磅","other":"%1$s 磅"},"stone":{"_name":"st","other":"%1$s 英石"},"ton":{"_name":"英噸","other":"%1$s 英噸"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s 吉瓦"},"horsepower":{"_name":"匹","other":"%1$s 匹"},"kilowatt":{"_name":"千瓦","other":"%1$s 千瓦"},"megawatt":{"_name":"百萬瓦","other":"%1$s 百萬瓦"},"milliwatt":{"_name":"毫瓦","other":"%1$s 毫瓦"},"watt":{"_name":"瓦特","other":"%1$s 瓦特"}},"pressure":{"hectopascal":{"_name":"百帕","other":"%1$s 百帕"},"inch-hg":{"_name":"英吋水銀柱","other":"%1$s inHg"},"millibar":{"_name":"毫巴","other":"%1$s 毫巴"},"millimeter-of-mercury":{"_name":"毫米水銀柱","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"磅力/平方英寸","other":"%1$s psi"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s 克拉"}},"speed":{"kilometer-per-hour":{"_name":"公里/小時","other":"%1$s 公里/小時"},"meter-per-second":{"_name":"公尺/秒","other":"%1$s 公尺/秒"},"mile-per-hour":{"_name":"英里/小時","other":"%1$s 英里/小時"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s K"}},"volume":{"acre-foot":{"_name":"英畝英尺","other":"%1$s 英畝英尺"},"bushel":{"_name":"bu","other":"%1$s 蒲式耳"},"centiliter":{"_name":"釐升","other":"%1$s 釐升"},"cubic-centimeter":{"_name":"立方公分","other":"%1$s 立方公分"},"cubic-foot":{"_name":"立方英尺","other":"%1$s 立方英尺"},"cubic-inch":{"_name":"立方英寸","other":"%1$s 立方英寸"},"cubic-kilometer":{"_name":"立方公里","other":"%1$s 立方公里"},"cubic-meter":{"_name":"立方公尺","other":"%1$s 立方公尺"},"cubic-mile":{"_name":"立方英里","other":"%1$s 立方英里"},"cubic-yard":{"_name":"立方碼","other":"%1$s 立方碼"},"cup":{"_name":"量杯","other":"%1$s 量杯"},"deciliter":{"_name":"公合","other":"%1$s 公合"},"fluid-ounce":{"_name":"液盎司","other":"%1$s 液盎司"},"gallon":{"_name":"加侖","other":"%1$s 加侖"},"hectoliter":{"_name":"公石","other":"%1$s 公石"},"liter":{"_name":"公升","other":"%1$s 公升"},"megaliter":{"_name":"兆升","other":"%1$s 兆升"},"milliliter":{"_name":"毫升","other":"%1$s 毫升"},"pint":{"_name":"品脫","other":"%1$s 品脫"},"quart":{"_name":"夸脫","other":"%1$s 夸脫"},"tablespoon":{"_name":"湯匙","other":"%1$s 湯匙"},"teaspoon":{"_name":"茶匙","other":"%1$s 茶匙"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G 力","other":"%1$sG"},"meter-per-second-squared":{"_name":"公尺/秒平方","other":"%1$s m/s²"}},"angle":{"arc-minute":{"_name":"分鐘","other":"%1$s 分鐘"},"arc-second":{"_name":"秒","other":"%1$s 秒"},"degree":{"_name":"度","other":"%1$s 度"},"radian":{"_name":"弧度","other":"%1$s 弧度"}},"area":{"acre":{"_name":"英畝","other":"%1$s 英畝"},"hectare":{"_name":"公頃","other":"%1$s 公頃"},"square-centimeter":{"_name":"平方公分","other":"%1$s cm²"},"square-foot":{"_name":"平方英尺","other":"%1$s 平方英尺"},"square-inch":{"_name":"平方英寸","other":"%1$s in²"},"square-kilometer":{"_name":"平方公里","other":"%1$s km²"},"square-meter":{"_name":"平方公尺","other":"%1$s m²"},"square-mile":{"_name":"平方英里","other":"%1$s 平方英里"},"square-yard":{"_name":"平方碼","other":"%1$s yd²"}},"consumption":{"liter-per-kilometer":{"_name":"升/公里","other":"%1$s L/km"},"mile-per-gallon":{"_name":"英里/加侖","other":"%1$s mpg"}},"digital":{"bit":{"_name":"bit","other":"%1$s bit"},"byte":{"_name":"byte","other":"%1$s byte"},"gigabit":{"_name":"Gb","other":"%1$s Gb"},"gigabyte":{"_name":"GB","other":"%1$s GB"},"kilobit":{"_name":"kb","other":"%1$s kb"},"kilobyte":{"_name":"kB","other":"%1$s kB"},"megabit":{"_name":"Mb","other":"%1$s Mb"},"megabyte":{"_name":"MB","other":"%1$s MB"},"terabit":{"_name":"Tb","other":"%1$s Tb"},"terabyte":{"_name":"TB","other":"%1$s TB"}},"duration":{"day":{"_name":"天","other":"%1$s 天"},"hour":{"_name":"小時","other":"%1$s 小時","_per":"%1$s/小時"},"microsecond":{"_name":"微秒","other":"%1$s μs"},"millisecond":{"_name":"毫秒","other":"%1$s 毫秒"},"minute":{"_name":"分鐘","other":"%1$s 分鐘"},"month":{"_name":"個月","other":"%1$s 個月"},"nanosecond":{"_name":"奈秒","other":"%1$s ns"},"second":{"_name":"秒","other":"%1$s 秒","_per":"%1$s/秒"},"week":{"_name":"週","other":"%1$s 週"},"year":{"_name":"年","other":"%1$s 年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s A"},"milliampere":{"_name":"毫安培","other":"%1$s mA"},"ohm":{"_name":"歐姆","other":"%1$s Ω"},"volt":{"_name":"伏特","other":"%1$s V"}},"energy":{"calorie":{"_name":"卡路里","other":"%1$s 卡"},"foodcalorie":{"_name":"大卡","other":"%1$s 大卡"},"joule":{"_name":"焦耳","other":"%1$s 焦"},"kilocalorie":{"_name":"千卡","other":"%1$s 千卡"},"kilojoule":{"_name":"千焦","other":"%1$s 千焦"},"kilowatt-hour":{"_name":"千瓦小時","other":"%1$s kWh"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s GHz"},"hertz":{"_name":"赫茲","other":"%1$s Hz"},"kilohertz":{"_name":"千赫","other":"%1$s kHz"},"megahertz":{"_name":"兆赫","other":"%1$s MHz"}},"length":{"astronomical-unit":{"_name":"天文單位","other":"%1$s au"},"centimeter":{"_name":"公分","other":"%1$s 公分"},"decimeter":{"_name":"公寸","other":"%1$s dm"},"fathom":{"_name":"英尋","other":"%1$s fm"},"foot":{"_name":"呎","other":"%1$s 呎"},"furlong":{"_name":"化朗","other":"%1$s 化朗"},"inch":{"_name":"吋","other":"%1$s 吋"},"kilometer":{"_name":"公里","other":"%1$s 公里"},"light-year":{"_name":"光年","other":"%1$s 光年"},"meter":{"_name":"公尺","other":"%1$s 公尺"},"micrometer":{"_name":"微米","other":"%1$s µm"},"mile":{"_name":"英里","other":"%1$s 英里"},"millimeter":{"_name":"公釐","other":"%1$s 公釐"},"nanometer":{"_name":"奈米","other":"%1$s nm"},"nautical-mile":{"_name":"海里","other":"%1$s nmi"},"parsec":{"_name":"秒差距","other":"%1$s pc"},"picometer":{"_name":"皮米","other":"%1$s 皮米"},"yard":{"_name":"碼","other":"%1$s 碼"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s lx"}},"mass":{"carat":{"_name":"克拉","other":"%1$s CD"},"gram":{"_name":"克","other":"%1$s 克"},"kilogram":{"_name":"公斤","other":"%1$s 公斤"},"metric-ton":{"_name":"公噸","other":"%1$s t"},"microgram":{"_name":"微克","other":"%1$s µg"},"milligram":{"_name":"毫克","other":"%1$s mg"},"ounce":{"_name":"盎司","other":"%1$s 盎司"},"ounce-troy":{"_name":"金衡盎司","other":"%1$s oz t"},"pound":{"_name":"磅","other":"%1$s 磅"},"stone":{"_name":"英石","other":"%1$s st"},"ton":{"_name":"英噸","other":"%1$s tn"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s GW"},"horsepower":{"_name":"匹","other":"%1$s 匹"},"kilowatt":{"_name":"千瓦","other":"%1$s 千瓦"},"megawatt":{"_name":"百萬瓦","other":"%1$s MW"},"milliwatt":{"_name":"毫瓦","other":"%1$s mW"},"watt":{"_name":"瓦特","other":"%1$s 瓦特"}},"pressure":{"hectopascal":{"_name":"百帕","other":"%1$s 百帕"},"inch-hg":{"_name":"英吋水銀柱","other":"%1$s 英吋汞柱"},"millibar":{"_name":"毫巴","other":"%1$s 毫巴"},"millimeter-of-mercury":{"_name":"毫米水銀柱","other":"%1$s mm Hg"},"pound-per-square-inch":{"_name":"磅力/平方英寸","other":"%1$s psi"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s kt"}},"speed":{"kilometer-per-hour":{"_name":"公里/小時","other":"%1$s km/h"},"meter-per-second":{"_name":"公尺/秒","other":"%1$s 公尺/秒"},"mile-per-hour":{"_name":"英里/小時","other":"%1$s 英里/小時"}},"temperature":{"celsius":{"_name":"°C","other":"%1$s°C"},"fahrenheit":{"_name":"°F","other":"%1$s°F"},"kelvin":{"_name":"K","other":"%1$s°K"}},"volume":{"acre-foot":{"_name":"英畝英尺","other":"%1$s ac ft"},"bushel":{"_name":"蒲式耳","other":"%1$s bu"},"centiliter":{"_name":"釐升","other":"%1$s cL"},"cubic-centimeter":{"_name":"立方公分","other":"%1$s cm³"},"cubic-foot":{"_name":"立方英尺","other":"%1$s ft³"},"cubic-inch":{"_name":"立方英寸","other":"%1$s in³"},"cubic-kilometer":{"_name":"立方公里","other":"%1$s km³"},"cubic-meter":{"_name":"立方公尺","other":"%1$s m³"},"cubic-mile":{"_name":"立方英里","other":"%1$s 立方英里"},"cubic-yard":{"_name":"立方碼","other":"%1$s yd³"},"cup":{"_name":"量杯","other":"%1$s c"},"deciliter":{"_name":"公合","other":"%1$s dL"},"fluid-ounce":{"_name":"液盎司","other":"%1$s fl oz"},"gallon":{"_name":"加侖","other":"%1$s gal"},"hectoliter":{"_name":"公石","other":"%1$s hL"},"liter":{"_name":"公升","other":"%1$s 公升"},"megaliter":{"_name":"兆升","other":"%1$s ML"},"milliliter":{"_name":"毫升","other":"%1$s mL"},"pint":{"_name":"品脫","other":"%1$s pt"},"quart":{"_name":"夸脫","other":"%1$s qt"},"tablespoon":{"_name":"湯匙","other":"%1$s 匙"},"teaspoon":{"_name":"茶匙","other":"%1$s tsp"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Punic/data/zh/calendar.json b/Punic/data/zh/calendar.json new file mode 100644 index 0000000..1062489 --- /dev/null +++ b/Punic/data/zh/calendar.json @@ -0,0 +1 @@ +{"months":{"format":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"12"},"wide":{"1":"一月","2":"二月","3":"三月","4":"四月","5":"五月","6":"六月","7":"七月","8":"八月","9":"九月","10":"十月","11":"十一月","12":"十二月"}},"stand-alone":{"abbreviated":{"1":"1月","2":"2月","3":"3月","4":"4月","5":"5月","6":"6月","7":"7月","8":"8月","9":"9月","10":"10月","11":"11月","12":"12月"},"narrow":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","10":"10","11":"11","12":"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":"1季度","2":"2季度","3":"3季度","4":"4季度"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第一季度","2":"第二季度","3":"第三季度","4":"第四季度"}},"stand-alone":{"abbreviated":{"1":"1季度","2":"2季度","3":"3季度","4":"4季度"},"narrow":{"1":"1","2":"2","3":"3","4":"4"},"wide":{"1":"第一季度","2":"第二季度","3":"第三季度","4":"第四季度"}}},"dayPeriods":{"format":{"abbreviated":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"narrow":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"wide":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"}},"stand-alone":{"abbreviated":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"narrow":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"},"wide":{"afternoon":"下午","am":"上午","earlyMorning":"清晨","midDay":"中午","morning":"上午","night":"晚上","noon":"中午","pm":"下午","weeHours":"凌晨"}}},"eras":{"wide":{"0":"公元前","0-alt-variant":"BCE","1":"公元","1-alt-variant":"CE"},"abbreviated":{"0":"公元前","0-alt-variant":"BCE","1":"公元","1-alt-variant":"CE"},"narrow":{"0":"公元前","0-alt-variant":"BCE","1":"公元","1-alt-variant":"CE"}},"dateFormats":{"full":"y年M月d日EEEE","long":"y年M月d日","medium":"y年M月d日","short":"yy/M/d"},"timeFormats":{"full":"zzzzah:mm:ss","long":"zah:mm:ss","medium":"ah:mm:ss","short":"ah:mm"},"dateTimeFormats":{"full":"%2$s %1$s","long":"%2$s %1$s","medium":"%2$s %1$s","short":"%2$s %1$s"}} \ No newline at end of file diff --git a/Punic/data/zh/dateFields.json b/Punic/data/zh/dateFields.json new file mode 100644 index 0000000..fb9fdce --- /dev/null +++ b/Punic/data/zh/dateFields.json @@ -0,0 +1 @@ +{"era":{"displayName":"纪元"},"year":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}年后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}年前"}},"year-short":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}年后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}年前"}},"year-narrow":{"displayName":"年","relative-type--1":"去年","relative-type-0":"今年","relative-type-1":"明年","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}年后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}年前"}},"quarter":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}季度后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}季度前"}},"quarter-short":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}季度后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}季度前"}},"quarter-narrow":{"displayName":"季","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}季度后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}季度前"}},"month":{"displayName":"月","relative-type--1":"上个月","relative-type-0":"本月","relative-type-1":"下个月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}个月后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}个月前"}},"month-short":{"displayName":"月","relative-type--1":"上个月","relative-type-0":"本月","relative-type-1":"下个月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}个月后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}个月前"}},"month-narrow":{"displayName":"月","relative-type--1":"上个月","relative-type-0":"本月","relative-type-1":"下个月","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}个月后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}个月前"}},"week":{"displayName":"周","relative-type--1":"上周","relative-type-0":"本周","relative-type-1":"下周","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}周后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}周前"}},"week-short":{"displayName":"周","relative-type--1":"上周","relative-type-0":"本周","relative-type-1":"下周","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}周后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}周前"}},"week-narrow":{"displayName":"周","relative-type--1":"上周","relative-type-0":"本周","relative-type-1":"下周","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}周后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}周前"}},"day":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"后天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}天后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}天前"}},"day-short":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"后天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}天后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}天前"}},"day-narrow":{"displayName":"日","relative-type--1":"昨天","relative-type--2":"前天","relative-type-0":"今天","relative-type-1":"明天","relative-type-2":"后天","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}天后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}天前"}},"weekday":{"displayName":"工作日"},"sun":{"relative-type--1":"上周日","relative-type-0":"本周日","relative-type-1":"下周日"},"sun-short":{"relative-type--1":"上周日","relative-type-0":"本周日","relative-type-1":"下周日"},"sun-narrow":{"relative-type--1":"上周日","relative-type-0":"本周日","relative-type-1":"下周日"},"mon":{"relative-type--1":"上周一","relative-type-0":"本周一","relative-type-1":"下周一"},"mon-short":{"relative-type--1":"上周一","relative-type-0":"本周一","relative-type-1":"下周一"},"mon-narrow":{"relative-type--1":"上周一","relative-type-0":"本周一","relative-type-1":"下周一"},"tue":{"relative-type--1":"上周二","relative-type-0":"本周二","relative-type-1":"下周二"},"tue-short":{"relative-type--1":"上周二","relative-type-0":"本周二","relative-type-1":"下周二"},"tue-narrow":{"relative-type--1":"上周二","relative-type-0":"本周二","relative-type-1":"下周二"},"wed":{"relative-type--1":"上周三","relative-type-0":"本周三","relative-type-1":"下周三"},"wed-short":{"relative-type--1":"上周三","relative-type-0":"本周三","relative-type-1":"下周三"},"wed-narrow":{"relative-type--1":"上周三","relative-type-0":"本周三","relative-type-1":"下周三"},"thu":{"relative-type--1":"上周四","relative-type-0":"本周四","relative-type-1":"下周四"},"thu-short":{"relative-type--1":"上周四","relative-type-0":"本周四","relative-type-1":"下周四"},"thu-narrow":{"relative-type--1":"上周四","relative-type-0":"本周四","relative-type-1":"下周四"},"fri":{"relative-type--1":"上周五","relative-type-0":"本周五","relative-type-1":"下周五"},"fri-short":{"relative-type--1":"上周五","relative-type-0":"本周五","relative-type-1":"下周五"},"fri-narrow":{"relative-type--1":"上周五","relative-type-0":"本周五","relative-type-1":"下周五"},"sat":{"relative-type--1":"上周六","relative-type-0":"本周六","relative-type-1":"下周六"},"sat-short":{"relative-type--1":"上周六","relative-type-0":"本周六","relative-type-1":"下周六"},"sat-narrow":{"relative-type--1":"上周六","relative-type-0":"本周六","relative-type-1":"下周六"},"dayperiod":{"displayName":"上午/下午"},"hour":{"displayName":"小时","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}小时后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}小时前"}},"hour-short":{"displayName":"小时","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}小时后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}小时前"}},"hour-narrow":{"displayName":"小时","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}小时后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}小时前"}},"minute":{"displayName":"分钟","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}分钟后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}分钟前"}},"minute-short":{"displayName":"分钟","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}分钟后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}分钟前"}},"minute-narrow":{"displayName":"分钟","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}分钟后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}分钟前"}},"second":{"displayName":"秒钟","relative-type-0":"现在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}秒钟后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}秒钟前"}},"second-short":{"displayName":"秒钟","relative-type-0":"现在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}秒后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}秒前"}},"second-narrow":{"displayName":"秒钟","relative-type-0":"现在","relativeTime-type-future":{"relativeTimePattern-count-other":"{0}秒后"},"relativeTime-type-past":{"relativeTimePattern-count-other":"{0}秒前"}},"zone":{"displayName":"时区"}} \ No newline at end of file diff --git a/Punic/data/zh/languages.json b/Punic/data/zh/languages.json new file mode 100644 index 0000000..3210da4 --- /dev/null +++ b/Punic/data/zh/languages.json @@ -0,0 +1 @@ +{"aa":"阿法文","ab":"阿布哈西亚文","ace":"亚齐文","ach":"阿乔利文","ada":"阿当梅文","ady":"阿迪何文","ae":"阿维斯塔文","aeb":"aeb","af":"南非荷兰文","afh":"阿弗里希利文","agq":"亚罕文","ain":"阿伊努文","ak":"阿肯文","akk":"阿卡德文","akz":"akz","ale":"阿留申文","aln":"aln","alt":"南阿尔泰文","am":"阿姆哈拉文","an":"阿拉贡文","ang":"古英文","anp":"昂加文","ar":"阿拉伯文","ar-001":"现代标准阿拉伯文","arc":"阿拉米文","arn":"马普切文","aro":"aro","arp":"阿拉帕霍文","arq":"arq","arw":"阿拉瓦克文","ary":"ary","arz":"arz","as":"阿萨姆文","asa":"阿苏文","ase":"ase","ast":"阿斯图里亚思特文","av":"阿瓦尔文","avk":"avk","awa":"阿瓦乔文","ay":"艾马拉文","az":"阿塞拜疆文","az-alt-short":"阿塞拜疆文","azb":"azb","ba":"巴什客尔文","bal":"俾路支文","ban":"巴里文","bar":"bar","bas":"巴萨文","bax":"巴姆穆文","bbc":"bbc","bbj":"戈马拉文","be":"白俄罗斯文","bej":"别札文","bem":"别姆巴文","bew":"bew","bez":"贝纳文","bfd":"巴非特文","bfq":"bfq","bg":"保加利亚文","bho":"博杰普尔文","bi":"比斯拉马文","bik":"毕库尔文","bin":"比尼文","bjn":"bjn","bkm":"科姆文","bla":"司克司卡文","bm":"班巴拉文","bn":"孟加拉文","bo":"藏文","bpy":"bpy","bqi":"bqi","br":"布里多尼文","bra":"布拉杰文","brh":"brh","brx":"博多文","bs":"波斯尼亚文","bss":"阿库色文","bua":"布里亚特文","bug":"布吉文","bum":"布鲁文","byn":"布林文","byv":"梅敦巴文","ca":"加泰罗尼亚文","cad":"卡多文","car":"巴勒比文","cay":"卡尤加文","cch":"阿灿文","ce":"车臣文","ceb":"宿务文","cgg":"奇加文","ch":"查莫罗文","chb":"契布卡文","chg":"查加文","chk":"楚吾克文","chm":"马里文","chn":"契努克文","cho":"乔克托文","chp":"佩瓦扬文","chr":"彻罗基文","chy":"夏延文","ckb":"索拉尼库尔德文","co":"科西嘉文","cop":"科普特文","cps":"cps","cr":"克里族文","crh":"克里米亚土耳其文","cs":"捷克文","csb":"卡舒文","cu":"宗教斯拉夫文","cv":"楚瓦什文","cy":"威尔士文","da":"丹麦文","dak":"达科他文","dar":"达尔格瓦文","dav":"台塔文","de":"德文","de-AT":"奥地利德文","de-CH":"瑞士高地德文","del":"特拉华文","den":"司雷夫文","dgr":"多格里布文","din":"丁卡文","dje":"哲尔马文","doi":"多格拉文","dsb":"下索布文","dtp":"dtp","dua":"都阿拉文","dum":"中古荷兰文","dv":"迪维希文","dyo":"朱拉文","dyu":"迪尤拉文","dz":"不丹文","dzg":"达扎葛文","ebu":"恩布文","ee":"埃维文","efi":"埃菲克文","egl":"egl","egy":"古埃及文","eka":"埃克丘克文","el":"希腊文","elx":"艾拉米特文","en":"英文","en-AU":"澳大利亚英文","en-CA":"加拿大英文","en-GB":"英式英文","en-GB-alt-short":"英式英文","en-US":"美式英文","en-US-alt-short":"美式英文","enm":"中古英文","eo":"世界文","es":"西班牙文","es-419":"拉丁美洲西班牙文","es-ES":"欧洲西班牙文","es-MX":"墨西哥西班牙文","esu":"esu","et":"爱沙尼亚文","eu":"巴斯克文","ewo":"旺杜文","ext":"ext","fa":"波斯文","fan":"芳格文","fat":"芳蒂文","ff":"夫拉文","fi":"芬兰文","fil":"菲律宾文","fit":"fit","fj":"斐济文","fo":"法罗文","fon":"丰文","fr":"法文","fr-CA":"加拿大法文","fr-CH":"瑞士法文","frc":"frc","frm":"中古法文","fro":"古法文","frp":"frp","frr":"北弗里西亚文","frs":"东弗里西亚文","fur":"弗留利文","fy":"西弗里西亚文","ga":"爱尔兰文","gaa":"加文","gag":"加告兹文","gan":"gan","gay":"迦约文","gba":"葛巴亚文","gbz":"gbz","gd":"苏格兰盖尔文","gez":"吉兹文","gil":"吉尔伯特斯文","gl":"加利西亚文","glk":"glk","gmh":"中古高地德文","gn":"瓜拉尼文","goh":"古高地德文","gom":"gom","gon":"岗德文","gor":"科洛涅达罗文","got":"哥特文","grb":"格列博文","grc":"古希腊文","gsw":"瑞士德文","gu":"古吉拉特文","guc":"guc","gur":"gur","guz":"古西文","gv":"马恩岛文","gwi":"吉维克琴文","ha":"豪萨文","hai":"海达文","hak":"hak","haw":"夏威夷文","he":"希伯来文","hi":"印地文","hif":"hif","hil":"希利盖农文","hit":"赫梯文","hmn":"赫蒙文","ho":"希里莫图文","hr":"克罗地亚文","hsb":"上索布文","hsn":"hsn","ht":"海地文","hu":"匈牙利文","hup":"胡帕文","hy":"亚美尼亚文","hz":"赫雷罗文","ia":"国际文字","iba":"伊班文","ibb":"伊比比奥文","id":"印度尼西亚文","ie":"国际文字(E)","ig":"伊布文","ii":"四川彝文","ik":"依奴皮维克文","ilo":"伊洛干诺文","inh":"印古什文","io":"伊多文","is":"冰岛文","it":"意大利文","iu":"因纽特文","izh":"izh","ja":"日文","jam":"jam","jbo":"逻辑文","jgo":"恩艮巴","jmc":"马切姆文","jpr":"犹太波斯文","jrb":"犹太阿拉伯文","jut":"jut","jv":"爪哇文","ka":"格鲁吉亚文","kaa":"卡拉卡尔帕克文","kab":"卡比尔文","kac":"卡琴文","kaj":"卡捷文","kam":"卡姆巴文","kaw":"卡威文","kbd":"卡巴尔达文","kbl":"加涅姆布文","kcg":"卡塔布文","kde":"马孔德文","kea":"卡布佛得鲁文","ken":"ken","kfo":"科罗文","kg":"刚果文","kgp":"kgp","kha":"卡西文","kho":"和田文","khq":"西桑海文","khw":"khw","ki":"吉库尤文","kiu":"kiu","kj":"宽亚玛文","kk":"哈萨克文","kkj":"卡库文","kl":"格陵兰文","kln":"卡伦金文","km":"高棉文","kmb":"金邦杜文","kn":"卡纳达文","ko":"韩文","koi":"科米-彼尔米亚克文","kok":"刚卡尼文","kos":"科斯拉伊文","kpe":"克佩列文","kr":"卡努里文","krc":"卡拉恰伊巴尔卡尔文","kri":"kri","krj":"krj","krl":"卡累利阿文","kru":"库鲁克文","ks":"克什米尔文","ksb":"香巴拉文","ksf":"巴菲亚文","ksh":"科隆文","ku":"库尔德文","kum":"库梅克文","kut":"库特内文","kv":"科米文","kw":"凯尔特文","ky":"吉尔吉斯文","la":"拉丁文","lad":"拉迪诺文","lag":"朗吉文","lah":"拉亨达文","lam":"兰巴文","lb":"卢森堡文","lez":"莱兹依昂文","lfn":"lfn","lg":"卢干达文","li":"淋布尔吉文","lij":"lij","liv":"liv","lkt":"拉科塔文","lmo":"lmo","ln":"林加拉文","lo":"老挝文","lol":"芒戈文","loz":"洛兹文","lt":"立陶宛文","ltg":"ltg","lu":"鲁巴加丹加文","lua":"鲁巴鲁瓦文","lui":"路易塞诺文","lun":"隆达文","luo":"卢奥文","lus":"卢晒文","luy":"卢雅文","lv":"拉脱维亚文","lzh":"lzh","lzz":"lzz","mad":"马都拉文","maf":"马法文","mag":"马加伊文","mai":"迈蒂利文","mak":"望加锡文","man":"曼丁哥文","mas":"萨伊文","mde":"马坝文","mdf":"莫克沙文","mdr":"曼达尔文","men":"门迪文","mer":"梅鲁文","mfe":"毛里求斯克里奥尔文","mg":"马尔加什文","mga":"中古爱尔兰文","mgh":"马夸文","mgo":"梅塔","mh":"马绍尔文","mi":"毛利文","mic":"米克马克文","min":"米南卡保文","mk":"马其顿文","ml":"马拉雅拉姆文","mn":"蒙古文","mnc":"满文","mni":"曼尼普里文","moh":"摩霍克文","mos":"莫西文","mr":"马拉地文","mrj":"mrj","ms":"马来文","mt":"马耳他文","mua":"蒙当文","mul":"多种语系","mus":"克里克文","mwl":"米兰德斯文","mwr":"马尔瓦利文","mwv":"mwv","my":"缅甸文","mye":"姆耶内文","myv":"俄日亚文","mzn":"mzn","na":"瑙鲁文","nan":"nan","nap":"拿波里文","naq":"纳马文","nb":"挪威博克马尔文","nd":"北恩德贝勒文","nds":"低地德文","ne":"尼泊尔文","new":"尼瓦尔文","ng":"恩东加文","nia":"尼亚斯文","niu":"纽埃文","njo":"njo","nl":"荷兰文","nl-BE":"佛兰芒文","nmg":"夸西奥文","nn":"挪威尼诺斯克文","nnh":"恩甘澎文","no":"挪威文","nog":"诺盖文","non":"古诺尔斯文","nov":"nov","nqo":"西非书面文字","nr":"南恩德贝勒文","nso":"北索托文","nus":"努埃尔文","nv":"纳瓦霍文","nwc":"经典尼瓦尔文","ny":"尼扬扎文","nym":"尼亚姆韦齐文","nyn":"尼昂科勒文","nyo":"尼约罗文","nzi":"恩济马文","oc":"奥克西唐文","oj":"奥吉布瓦文","om":"奥洛莫文","or":"奥里亚文","os":"奥塞梯文","osa":"奥萨格文","ota":"奥托曼土耳其文","pa":"旁遮普文","pag":"邦阿西楠文","pal":"帕拉维文","pam":"邦板牙文","pap":"帕皮亚门托文","pau":"帕劳文","pcd":"pcd","pdc":"pdc","pdt":"pdt","peo":"古老波斯文","pfl":"pfl","phn":"腓尼基文","pi":"巴利文","pl":"波兰文","pms":"pms","pnt":"pnt","pon":"波纳佩文","prg":"prg","pro":"普罗文斯文","ps":"普什图文","pt":"葡萄牙文","pt-BR":"巴西葡萄牙文","pt-PT":"欧洲葡萄牙文","qu":"盖丘亚文","quc":"基切文","qug":"qug","raj":"拉贾斯坦文","rap":"拉帕努伊文","rar":"拉罗汤加文","rgn":"rgn","rif":"rif","rm":"罗曼什文","rn":"基隆迪文","ro":"罗马尼亚文","ro-MD":"摩尔多瓦文","rof":"兰博文","rom":"吉普赛文","root":"根语言","rtm":"rtm","ru":"俄文","rue":"rue","rug":"rug","rup":"阿罗马尼亚文","rw":"卢旺达文","rwk":"罗瓦文","sa":"梵文","sad":"散达维文","sah":"雅库特文","sam":"萨玛利亚文","saq":"桑布鲁文","sas":"萨萨克文","sat":"桑塔利文","saz":"saz","sba":"甘拜文","sbp":"桑古文","sc":"萨丁文","scn":"西西里文","sco":"苏格兰文","sd":"信德文","sdc":"sdc","se":"北萨米文","see":"塞内卡文","seh":"塞纳文","sei":"sei","sel":"塞尔库普文","ses":"东桑海文","sg":"桑戈文","sga":"古爱尔兰文","sgs":"sgs","sh":"塞尔维亚-克罗地亚文","shi":"希尔哈文","shn":"掸文","shu":"乍得阿拉伯文","si":"僧伽罗文","sid":"悉达摩文","sk":"斯洛伐克文","sl":"斯洛文尼亚文","sli":"sli","sly":"sly","sm":"萨摩亚文","sma":"南萨米文","smj":"律勒欧萨米文","smn":"伊纳里萨米文","sms":"斯科特萨米文","sn":"绍纳文","snk":"索尼基文","so":"索马里文","sog":"古粟特文","sq":"阿尔巴尼亚文","sr":"塞尔维亚文","srn":"苏里南汤加文","srr":"谢列尔文","ss":"斯瓦特文","ssy":"萨霍文","st":"南索托文","stq":"stq","su":"巽他文","suk":"苏库马文","sus":"苏苏文","sux":"苏马文","sv":"瑞典文","sw":"斯瓦希里文","swb":"科摩罗文","swc":"刚果斯瓦希里文","syc":"经典叙利亚文","syr":"叙利亚文","szl":"szl","ta":"泰米尔文","tcy":"tcy","te":"泰卢固文","tem":"滕内文","teo":"特索文","ter":"特列纳文","tet":"特塔姆文","tg":"塔吉克文","th":"泰文","ti":"提格里尼亚文","tig":"提格雷文","tiv":"蒂夫文","tk":"土库曼文","tkl":"托克劳文","tkr":"tkr","tl":"塔加洛文","tlh":"克林贡文","tli":"特林吉特文","tly":"tly","tmh":"塔马奇克文","tn":"塞茨瓦纳文","to":"汤加文","tog":"汤加文(尼亚萨地区)","tpi":"托克皮辛文","tr":"土耳其文","tru":"tru","trv":"太鲁阁文","ts":"宗加文","tsd":"tsd","tsi":"蒂姆西亚文","tt":"塔塔尔文","ttt":"ttt","tum":"通布卡文","tvl":"图瓦卢文","tw":"特威文","twq":"北桑海文","ty":"塔西提文","tyv":"图瓦文","tzm":"塔马齐格特文","udm":"乌德穆尔特文","ug":"维吾尔文","uga":"乌加里特文","uk":"乌克兰文","umb":"翁本杜文","und":"未知语言","ur":"乌尔都文","uz":"乌兹别克文","vai":"瓦伊文","ve":"文达文","vec":"vec","vep":"vep","vi":"越南文","vls":"vls","vmf":"vmf","vo":"沃拉普克文","vot":"沃提克文","vro":"vro","vun":"温旧文","wa":"瓦隆文","wae":"瓦尔瑟文","wal":"瓦拉莫文","war":"瓦赖文","was":"瓦绍文","wo":"沃洛夫文","wuu":"wuu","xal":"卡尔梅克文","xh":"科萨文","xmf":"xmf","xog":"索加文","yao":"瑶族文","yap":"雅浦文","yav":"洋卞文","ybb":"耶姆巴文","yi":"依地文","yo":"约鲁巴文","yrl":"yrl","yue":"粤语","za":"壮文","zap":"萨波蒂克文","zbl":"布利斯符号","zea":"zea","zen":"泽纳加文","zgh":"标准摩洛哥塔马塞特文","zh":"中文","zh-Hans":"简体中文","zh-Hant":"繁体中文","zu":"祖鲁文","zun":"祖尼文","zxx":"无语言内容","zza":"扎扎文"} \ No newline at end of file diff --git a/Punic/data/zh/listPatterns.json b/Punic/data/zh/listPatterns.json new file mode 100644 index 0000000..42c11df --- /dev/null +++ b/Punic/data/zh/listPatterns.json @@ -0,0 +1 @@ +{"standard":{"start":"%1$s、%2$s","middle":"%1$s、%2$s","end":"%1$s和%2$s","2":"%1$s和%2$s"},"unit":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"},"unit-narrow":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"},"unit-short":{"start":"%1$s%2$s","middle":"%1$s%2$s","end":"%1$s%2$s","2":"%1$s%2$s"}} \ No newline at end of file diff --git a/Punic/data/zh/localeDisplayNames.json b/Punic/data/zh/localeDisplayNames.json new file mode 100644 index 0000000..9f9c246 --- /dev/null +++ b/Punic/data/zh/localeDisplayNames.json @@ -0,0 +1 @@ +{"localeDisplayPattern":{"localePattern":"%1$s(%2$s)","localeSeparator":"%1$s、%2$s","localeKeyTypePattern":"%1$s:%2$s"},"keys":{"calendar":"日历","colAlternate":"忽略符号排序","colBackwards":"对重音进行逆向排序","colCaseFirst":"大写/小写字母排序","colCaseLevel":"区分大小写的排序","colHiraganaQuaternary":"假名排序","colNormalization":"规范化排序","colNumeric":"数字排序","colStrength":"排序强度","collation":"排序","currency":"货币","numbers":"数字","timezone":"时区","va":"语言区域别名","variableTop":"按照符号排序","x":"专用"},"types":{"numbers":{"vaii":"瓦伊文数字"},"collation":{"zhuyin":"注音排序"},"calendar":{"roc":"民国日历"},"colStrength":{"tertiary":"对重音/大小写/长度进行排序"},"colCaseFirst":{"upper":"先对大写字母进行排序"},"colBackwards":{"yes":"对重音进行逆向排序"},"colCaseLevel":{"yes":"区分大小写进行排序"},"colHiraganaQuaternary":{"yes":"对假名进行区别排序"},"colNormalization":{"yes":"对 Unicode 进行规范化排序"},"colNumeric":{"yes":"按数字顺序对数字进行排序"},"colAlternate":{"shifted":"忽略符号进行排序"}},"codePatterns":{"language":"语言:%1$s","script":"文字:%1$s","territory":"地区:%1$s"}} \ No newline at end of file diff --git a/Punic/data/zh/numbers.json b/Punic/data/zh/numbers.json new file mode 100644 index 0000000..048947d --- /dev/null +++ b/Punic/data/zh/numbers.json @@ -0,0 +1 @@ +{"minimumGroupingDigits":1,"symbols":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}} \ No newline at end of file diff --git a/Punic/data/zh/territories.json b/Punic/data/zh/territories.json new file mode 100644 index 0000000..a1b4894 --- /dev/null +++ b/Punic/data/zh/territories.json @@ -0,0 +1 @@ +{"001":"世界","002":"非洲","003":"北美洲","005":"南美洲","009":"大洋洲","011":"西非","013":"中美洲","014":"东非","015":"北非","017":"中非","018":"南部非洲","019":"美洲","021":"美洲北部","029":"加勒比地区","030":"东亚","034":"南亚","035":"东南亚","039":"南欧","053":"澳大拉西亚","054":"美拉尼西亚","057":"密克罗尼西亚地区","061":"玻利尼西亚","142":"亚洲","143":"中亚","145":"西亚","150":"欧洲","151":"东欧","154":"北欧","155":"西欧","419":"拉丁美洲","AC":"阿森松岛","AD":"安道尔","AE":"阿拉伯联合酋长国","AF":"阿富汗","AG":"安提瓜和巴布达","AI":"安圭拉","AL":"阿尔巴尼亚","AM":"亚美尼亚","AN":"荷属安的列斯群岛","AO":"安哥拉","AQ":"南极洲","AR":"阿根廷","AS":"美属萨摩亚","AT":"奥地利","AU":"澳大利亚","AW":"阿鲁巴","AX":"奥兰群岛","AZ":"阿塞拜疆","BA":"波斯尼亚和黑塞哥维那","BB":"巴巴多斯","BD":"孟加拉国","BE":"比利时","BF":"布基纳法索","BG":"保加利亚","BH":"巴林","BI":"布隆迪","BJ":"贝宁","BL":"圣巴泰勒米","BM":"百慕大","BN":"文莱","BO":"玻利维亚","BQ":"荷兰加勒比区","BR":"巴西","BS":"巴哈马","BT":"不丹","BV":"布维特岛","BW":"博茨瓦纳","BY":"白俄罗斯","BZ":"伯利兹","CA":"加拿大","CC":"科科斯(基林)群岛","CD":"刚果(金)","CD-alt-variant":"刚果民主共和国","CF":"中非共和国","CG":"刚果(布)","CG-alt-variant":"刚果共和国","CH":"瑞士","CI":"科特迪瓦","CI-alt-variant":"象牙海岸","CK":"库克群岛","CL":"智利","CM":"喀麦隆","CN":"中国","CO":"哥伦比亚","CP":"克利珀顿岛","CR":"哥斯达黎加","CU":"古巴","CV":"佛得角","CW":"库拉索","CX":"圣诞岛","CY":"塞浦路斯","CZ":"捷克共和国","DE":"德国","DG":"迪戈加西亚岛","DJ":"吉布提","DK":"丹麦","DM":"多米尼克","DO":"多米尼加共和国","DZ":"阿尔及利亚","EA":"休达及梅利利亚","EC":"厄瓜多尔","EE":"爱沙尼亚","EG":"埃及","EH":"西撒哈拉","ER":"厄立特里亚","ES":"西班牙","ET":"埃塞俄比亚","EU":"欧盟","FI":"芬兰","FJ":"斐济","FK":"福克兰群岛","FK-alt-variant":"福克兰群岛(马尔维纳斯群岛)","FM":"密克罗尼西亚","FO":"法罗群岛","FR":"法国","GA":"加蓬","GB":"英国","GB-alt-short":"英国","GD":"格林纳达","GE":"格鲁吉亚","GF":"法属圭亚那","GG":"根西岛","GH":"加纳","GI":"直布罗陀","GL":"格陵兰","GM":"冈比亚","GN":"几内亚","GP":"瓜德罗普","GQ":"赤道几内亚","GR":"希腊","GS":"南乔治亚岛和南桑威齐群岛","GT":"危地马拉","GU":"关岛","GW":"几内亚比绍","GY":"圭亚那","HK":"中国香港特别行政区","HK-alt-short":"香港","HM":"赫德岛和麦克唐纳群岛","HN":"洪都拉斯","HR":"克罗地亚","HT":"海地","HU":"匈牙利","IC":"加纳利群岛","ID":"印度尼西亚","IE":"爱尔兰","IL":"以色列","IM":"曼岛","IN":"印度","IO":"英属印度洋领地","IQ":"伊拉克","IR":"伊朗","IS":"冰岛","IT":"意大利","JE":"泽西岛","JM":"牙买加","JO":"约旦","JP":"日本","KE":"肯尼亚","KG":"吉尔吉斯斯坦","KH":"柬埔寨","KI":"基里巴斯","KM":"科摩罗","KN":"圣基茨和尼维斯","KP":"朝鲜","KR":"韩国","KW":"科威特","KY":"开曼群岛","KZ":"哈萨克斯坦","LA":"老挝","LB":"黎巴嫩","LC":"圣卢西亚","LI":"列支敦士登","LK":"斯里兰卡","LR":"利比里亚","LS":"莱索托","LT":"立陶宛","LU":"卢森堡","LV":"拉脱维亚","LY":"利比亚","MA":"摩洛哥","MC":"摩纳哥","MD":"摩尔多瓦","ME":"黑山共和国","MF":"法属圣马丁","MG":"马达加斯加","MH":"马绍尔群岛","MK":"马其顿","MK-alt-variant":"马其顿(前南斯拉夫的马其顿共和国)","ML":"马里","MM":"缅甸","MN":"蒙古","MO":"中国澳门特别行政区","MO-alt-short":"澳门","MP":"北马里亚纳群岛","MQ":"马提尼克","MR":"毛里塔尼亚","MS":"蒙特塞拉特","MT":"马耳他","MU":"毛里求斯","MV":"马尔代夫","MW":"马拉维","MX":"墨西哥","MY":"马来西亚","MZ":"莫桑比克","NA":"纳米比亚","NC":"新喀里多尼亚","NE":"尼日尔","NF":"诺福克岛","NG":"尼日利亚","NI":"尼加拉瓜","NL":"荷兰","NO":"挪威","NP":"尼泊尔","NR":"瑙鲁","NU":"纽埃","NZ":"新西兰","OM":"阿曼","PA":"巴拿马","PE":"秘鲁","PF":"法属波利尼西亚","PG":"巴布亚新几内亚","PH":"菲律宾","PK":"巴基斯坦","PL":"波兰","PM":"圣皮埃尔和密克隆群岛","PN":"皮特凯恩群岛","PR":"波多黎各","PS":"巴勒斯坦领土","PS-alt-short":"巴勒斯坦","PT":"葡萄牙","PW":"帕劳","PY":"巴拉圭","QA":"卡塔尔","QO":"大洋洲边远群岛","RE":"留尼汪","RO":"罗马尼亚","RS":"塞尔维亚","RU":"俄罗斯","RW":"卢旺达","SA":"沙特阿拉伯","SB":"所罗门群岛","SC":"塞舌尔","SD":"苏丹","SE":"瑞典","SG":"新加坡","SH":"圣赫勒拿","SI":"斯洛文尼亚","SJ":"斯瓦尔巴特和扬马延","SK":"斯洛伐克","SL":"塞拉利昂","SM":"圣马力诺","SN":"塞内加尔","SO":"索马里","SR":"苏里南","SS":"南苏丹","ST":"圣多美和普林西比","SV":"萨尔瓦多","SX":"荷属圣马丁","SY":"叙利亚","SZ":"斯威士兰","TA":"特里斯坦-达库尼亚群岛","TC":"特克斯和凯科斯群岛","TD":"乍得","TF":"法属南部领地","TG":"多哥","TH":"泰国","TJ":"塔吉克斯坦","TK":"托克劳","TL":"东帝汶","TL-alt-variant":"TL","TM":"土库曼斯坦","TN":"突尼斯","TO":"汤加","TR":"土耳其","TT":"特立尼达和多巴哥","TV":"图瓦卢","TW":"台湾","TZ":"坦桑尼亚","UA":"乌克兰","UG":"乌干达","UM":"美国本土外小岛屿","US":"美国","US-alt-short":"美国","UY":"乌拉圭","UZ":"乌兹别克斯坦","VA":"梵蒂冈","VC":"圣文森特和格林纳丁斯","VE":"委内瑞拉","VG":"英属维京群岛","VI":"美属维京群岛","VN":"越南","VU":"瓦努阿图","WF":"瓦利斯和富图纳","WS":"萨摩亚","XK":"科索沃","YE":"也门","YT":"马约特","ZA":"南非","ZM":"赞比亚","ZW":"津巴布韦","ZZ":"未知地区"} \ No newline at end of file diff --git a/Punic/data/zh/timeZoneNames.json b/Punic/data/zh/timeZoneNames.json new file mode 100644 index 0000000..a1ddddc --- /dev/null +++ b/Punic/data/zh/timeZoneNames.json @@ -0,0 +1 @@ +{"hourFormat":"+HH:mm;-HH:mm","gmtFormat":"GMT%1$s","gmtZeroFormat":"GMT","regionFormat":"%1$s时间","regionFormat-type-standard":"%1$s标准时间","regionFormat-type-daylight":"%1$s夏令时间","fallbackFormat":"%2$s(%1$s)","zone":{"America":{"Adak":{"exemplarCity":"埃达克"},"Anchorage":{"exemplarCity":"安克雷奇"},"Anguilla":{"exemplarCity":"安圭拉"},"Antigua":{"exemplarCity":"安提瓜"},"Araguaina":{"exemplarCity":"阿拉瓜伊纳"},"Argentina":{"La_Rioja":{"exemplarCity":"拉里奥哈"},"Rio_Gallegos":{"exemplarCity":"里奥加耶戈斯"},"Salta":{"exemplarCity":"萨尔塔"},"San_Juan":{"exemplarCity":"圣胡安"},"San_Luis":{"exemplarCity":"圣路易斯"},"Tucuman":{"exemplarCity":"图库曼"},"Ushuaia":{"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":"萨尔瓦多"},"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":{"Knox":{"exemplarCity":"印第安纳州诺克斯"},"Marengo":{"exemplarCity":"印第安纳州马伦戈"},"Petersburg":{"exemplarCity":"印第安纳州彼得斯堡"},"Tell_City":{"exemplarCity":"印第安纳州特尔城"},"Vevay":{"exemplarCity":"印第安纳州维维市"},"Vincennes":{"exemplarCity":"印第安纳州温森斯"},"Winamac":{"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":"北达科他州比尤拉"},"Center":{"exemplarCity":"北达科他州申特"},"New_Salem":{"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":"安道尔"},"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":"基辅"},"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":"地拉那"},"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":"曼谷"},"Beirut":{"exemplarCity":"贝鲁特"},"Bishkek":{"exemplarCity":"比什凯克"},"Brunei":{"exemplarCity":"文莱"},"Calcutta":{"exemplarCity":"加尔各答"},"Chita":{"exemplarCity":"Chita"},"Choibalsan":{"exemplarCity":"乔巴山"},"Chongqing":{"exemplarCity":"重庆"},"Colombo":{"exemplarCity":"科伦坡"},"Damascus":{"exemplarCity":"大马士革"},"Dhaka":{"exemplarCity":"达卡"},"Dili":{"exemplarCity":"帝力"},"Dubai":{"exemplarCity":"迪拜"},"Dushanbe":{"exemplarCity":"杜尚别"},"Gaza":{"exemplarCity":"加沙"},"Harbin":{"exemplarCity":"哈尔滨"},"Hebron":{"exemplarCity":"希伯伦"},"Hong_Kong":{"exemplarCity":"香港"},"Hovd":{"exemplarCity":"科布多"},"Irkutsk":{"exemplarCity":"伊尔库茨克"},"Jakarta":{"exemplarCity":"雅加达"},"Jayapura":{"exemplarCity":"查亚普拉"},"Jerusalem":{"exemplarCity":"耶路撒冷"},"Kabul":{"exemplarCity":"喀布尔"},"Kamchatka":{"exemplarCity":"堪察加"},"Karachi":{"exemplarCity":"卡拉奇"},"Kashgar":{"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":"Srednekolymsk"},"Taipei":{"exemplarCity":"台北"},"Tashkent":{"exemplarCity":"塔什干"},"Tbilisi":{"exemplarCity":"第比利斯"},"Tehran":{"exemplarCity":"德黑兰"},"Thimphu":{"exemplarCity":"廷布"},"Tokyo":{"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":"奥克兰"},"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":{"Acre":{"long":{"generic":"阿克里时间","standard":"阿克里标准时间","daylight":"阿克里夏令时间"}},"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":"阿拉斯加夏令时间"}},"Almaty":{"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":"阿皮亚夏令时间"}},"Aqtau":{"long":{"generic":"阿克套时间","standard":"阿克套标准时间","daylight":"阿克套夏令时间"}},"Aqtobe":{"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":"佛得角夏令时间"}},"Casey":{"long":{"standard":"凯西时间"}},"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":"法属南方和南极领地时间"}},"GMT":{"long":{"standard":"格林尼治标准时间"}},"Galapagos":{"long":{"standard":"加拉帕戈斯时间"}},"Gambier":{"long":{"standard":"甘比尔时间"}},"Georgia":{"long":{"generic":"格鲁吉亚时间","standard":"格鲁吉亚标准时间","daylight":"格鲁吉亚夏令时间"}},"Gilbert_Islands":{"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":"吉尔吉斯斯坦时间"}},"Lanka":{"long":{"standard":"兰卡时间"}},"Line_Islands":{"long":{"standard":"莱恩群岛时间"}},"Lord_Howe":{"long":{"generic":"豪勋爵岛时间","standard":"豪勋爵岛标准时间","daylight":"豪勋爵岛夏令时间"}},"Macau":{"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":"波纳佩时间"}},"Qyzylorda":{"long":{"generic":"克孜洛尔达时间","standard":"克孜洛尔达标准时间","daylight":"克孜洛尔达夏令时间"}},"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":"叶卡捷琳堡夏令时间"}}}} \ No newline at end of file diff --git a/Punic/data/zh/units.json b/Punic/data/zh/units.json new file mode 100644 index 0000000..c953874 --- /dev/null +++ b/Punic/data/zh/units.json @@ -0,0 +1 @@ +{"long":{"_compoundPattern":"%1$s每%2$s","acceleration":{"g-force":{"_name":"G力","other":"%1$sG力"},"meter-per-second-squared":{"_name":"米/秒²","other":"%1$s米/秒²"}},"angle":{"arc-minute":{"_name":"弧分","other":"%1$s弧分"},"arc-second":{"_name":"弧秒","other":"%1$s弧秒"},"degree":{"_name":"度","other":"%1$s度"},"radian":{"_name":"弧度","other":"%1$s弧度"}},"area":{"acre":{"_name":"英亩","other":"%1$s英亩"},"hectare":{"_name":"公顷","other":"%1$s公顷"},"square-centimeter":{"_name":"平方厘米","other":"%1$s平方厘米"},"square-foot":{"_name":"平方英尺","other":"%1$s平方英尺"},"square-inch":{"_name":"平方英寸","other":"%1$s平方英寸"},"square-kilometer":{"_name":"平方公里","other":"%1$s平方公里"},"square-meter":{"_name":"平方米","other":"%1$s平方米"},"square-mile":{"_name":"平方英里","other":"%1$s平方英里"},"square-yard":{"_name":"平方码","other":"%1$s平方码"}},"consumption":{"liter-per-kilometer":{"_name":"升每公里","other":"%1$s升每公里"},"mile-per-gallon":{"_name":"英里每加仑","other":"%1$s英里每加仑"}},"digital":{"bit":{"_name":"比特","other":"%1$s比特"},"byte":{"_name":"字节","other":"%1$s字节"},"gigabit":{"_name":"吉比特","other":"%1$s吉比特"},"gigabyte":{"_name":"吉字节","other":"%1$s吉字节"},"kilobit":{"_name":"千比特","other":"%1$s千比特"},"kilobyte":{"_name":"千字节","other":"%1$s千字节"},"megabit":{"_name":"兆比特","other":"%1$s兆比特"},"megabyte":{"_name":"兆字节","other":"%1$s兆字节"},"terabit":{"_name":"太比特","other":"%1$s太比特"},"terabyte":{"_name":"太字节","other":"%1$s太字节"}},"duration":{"day":{"_name":"天","other":"%1$s天"},"hour":{"_name":"小时","other":"%1$s小时","_per":"%1$s/小时"},"microsecond":{"_name":"微秒","other":"%1$s微秒"},"millisecond":{"_name":"毫秒","other":"%1$s毫秒"},"minute":{"_name":"分钟","other":"%1$s分钟"},"month":{"_name":"个月","other":"%1$s个月"},"nanosecond":{"_name":"纳秒","other":"%1$s纳秒"},"second":{"_name":"秒钟","other":"%1$s秒钟","_per":"%1$s/秒"},"week":{"_name":"周","other":"%1$s周"},"year":{"_name":"年","other":"%1$s年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s安培"},"milliampere":{"_name":"毫安","other":"%1$s毫安"},"ohm":{"_name":"欧姆","other":"%1$s欧姆"},"volt":{"_name":"伏特","other":"%1$s伏特"}},"energy":{"calorie":{"_name":"卡路里","other":"%1$s卡路里"},"foodcalorie":{"_name":"卡路里","other":"%1$s卡路里"},"joule":{"_name":"焦耳","other":"%1$s焦耳"},"kilocalorie":{"_name":"千卡","other":"%1$s千卡"},"kilojoule":{"_name":"千焦","other":"%1$s千焦"},"kilowatt-hour":{"_name":"千瓦时","other":"%1$s千瓦时"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s吉赫"},"hertz":{"_name":"赫兹","other":"%1$s赫兹"},"kilohertz":{"_name":"千赫","other":"%1$s千赫"},"megahertz":{"_name":"兆赫","other":"%1$s兆赫"}},"length":{"astronomical-unit":{"_name":"天文单位","other":"%1$s天文单位"},"centimeter":{"_name":"厘米","other":"%1$s厘米"},"decimeter":{"_name":"分米","other":"%1$s分米"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"英尺","other":"%1$s英尺"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"英寸","other":"%1$s英寸"},"kilometer":{"_name":"公里","other":"%1$s公里"},"light-year":{"_name":"光年","other":"%1$s光年"},"meter":{"_name":"米","other":"%1$s米"},"micrometer":{"_name":"微米","other":"%1$s微米"},"mile":{"_name":"英里","other":"%1$s英里"},"millimeter":{"_name":"毫米","other":"%1$s毫米"},"nanometer":{"_name":"纳米","other":"%1$s纳米"},"nautical-mile":{"_name":"海里","other":"%1$s海里"},"parsec":{"_name":"秒差距","other":"%1$s秒差距"},"picometer":{"_name":"皮米","other":"%1$s皮米"},"yard":{"_name":"码","other":"%1$s码"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s勒克斯"}},"mass":{"carat":{"_name":"克拉","other":"%1$s克拉"},"gram":{"_name":"克","other":"%1$s克"},"kilogram":{"_name":"千克","other":"%1$s千克"},"metric-ton":{"_name":"公吨","other":"%1$s公吨"},"microgram":{"_name":"微克","other":"%1$s微克"},"milligram":{"_name":"毫克","other":"%1$s毫克"},"ounce":{"_name":"盎司","other":"%1$s盎司"},"ounce-troy":{"_name":"金衡制盎司","other":"%1$s金衡制盎司"},"pound":{"_name":"磅","other":"%1$s磅"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"吨","other":"%1$s吨"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s吉瓦"},"horsepower":{"_name":"马力","other":"%1$s马力"},"kilowatt":{"_name":"千瓦","other":"%1$s千瓦"},"megawatt":{"_name":"兆瓦","other":"%1$s兆瓦"},"milliwatt":{"_name":"毫瓦","other":"%1$s毫瓦"},"watt":{"_name":"瓦特","other":"%1$s瓦特"}},"pressure":{"hectopascal":{"_name":"百帕斯卡","other":"%1$s百帕斯卡"},"inch-hg":{"_name":"英寸汞柱","other":"%1$s英寸汞柱"},"millibar":{"_name":"毫巴","other":"%1$s毫巴"},"millimeter-of-mercury":{"_name":"毫米汞柱","other":"%1$s毫米汞柱"},"pound-per-square-inch":{"_name":"磅/平方英寸","other":"%1$s磅每平方英寸"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s克拉"}},"speed":{"kilometer-per-hour":{"_name":"千米每小时","other":"%1$s千米每小时"},"meter-per-second":{"_name":"米每秒","other":"%1$s米每秒"},"mile-per-hour":{"_name":"英里每小时","other":"%1$s英里每小时"}},"temperature":{"celsius":{"_name":"摄氏度","other":"%1$s摄氏度"},"fahrenheit":{"_name":"华氏度","other":"%1$s华氏度"},"kelvin":{"_name":"开尔文","other":"%1$s开尔文"}},"volume":{"acre-foot":{"_name":"英亩英尺","other":"%1$s英亩英尺"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"厘升","other":"%1$s厘升"},"cubic-centimeter":{"_name":"立方厘米","other":"%1$s立方厘米"},"cubic-foot":{"_name":"立方英尺","other":"%1$s立方英尺"},"cubic-inch":{"_name":"立方英寸","other":"%1$s立方英寸"},"cubic-kilometer":{"_name":"立方公里","other":"%1$s立方公里"},"cubic-meter":{"_name":"立方米","other":"%1$s立方米"},"cubic-mile":{"_name":"立方英里","other":"%1$s立方英里"},"cubic-yard":{"_name":"立方码","other":"%1$s立方码"},"cup":{"_name":"杯","other":"%1$s杯"},"deciliter":{"_name":"分升","other":"%1$s分升"},"fluid-ounce":{"_name":"液盎司","other":"%1$s液盎司"},"gallon":{"_name":"加仑","other":"%1$s加仑"},"hectoliter":{"_name":"公石","other":"%1$s公石"},"liter":{"_name":"公升","other":"%1$s公升"},"megaliter":{"_name":"兆升","other":"%1$s兆升"},"milliliter":{"_name":"毫升","other":"%1$s毫升"},"pint":{"_name":"品脱","other":"%1$s品脱"},"quart":{"_name":"夸脱","other":"%1$s夸脱"},"tablespoon":{"_name":"汤匙","other":"%1$s汤匙"},"teaspoon":{"_name":"茶匙","other":"%1$s茶匙"}}},"short":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G力","other":"%1$s G"},"meter-per-second-squared":{"_name":"米/秒²","other":"%1$s米/秒²"}},"angle":{"arc-minute":{"_name":"弧分","other":"%1$s弧分"},"arc-second":{"_name":"弧秒","other":"%1$s弧秒"},"degree":{"_name":"度","other":"%1$s°"},"radian":{"_name":"弧度","other":"%1$s弧度"}},"area":{"acre":{"_name":"英亩","other":"%1$s英亩"},"hectare":{"_name":"公顷","other":"%1$s ha"},"square-centimeter":{"_name":"平方厘米","other":"%1$s平方厘米"},"square-foot":{"_name":"平方英尺","other":"%1$s ft²"},"square-inch":{"_name":"平方英寸","other":"%1$s平方英寸"},"square-kilometer":{"_name":"平方公里","other":"%1$s平方公里"},"square-meter":{"_name":"平方米","other":"%1$s平方米"},"square-mile":{"_name":"平方英里","other":"%1$s平方英里"},"square-yard":{"_name":"平方码","other":"%1$s平方码"}},"consumption":{"liter-per-kilometer":{"_name":"升/公里","other":"%1$s升/公里"},"mile-per-gallon":{"_name":"英里/加仑","other":"%1$s英里/加仑"}},"digital":{"bit":{"_name":"比特","other":"%1$s比特"},"byte":{"_name":"字节","other":"%1$s字节"},"gigabit":{"_name":"吉比特","other":"%1$s吉比特"},"gigabyte":{"_name":"吉字节","other":"%1$s吉字节"},"kilobit":{"_name":"千比特","other":"%1$s千比特"},"kilobyte":{"_name":"千字节","other":"%1$s千字节"},"megabit":{"_name":"兆比特","other":"%1$s兆比特"},"megabyte":{"_name":"兆字节","other":"%1$s兆字节"},"terabit":{"_name":"太比特","other":"%1$s太比特"},"terabyte":{"_name":"太字节","other":"%1$s太字节"}},"duration":{"day":{"_name":"天","other":"%1$s天"},"hour":{"_name":"小时","other":"%1$s小时","_per":"%1$s/小时"},"microsecond":{"_name":"微秒","other":"%1$s微秒"},"millisecond":{"_name":"毫秒","other":"%1$s毫秒"},"minute":{"_name":"分钟","other":"%1$s分钟"},"month":{"_name":"个月","other":"%1$s个月"},"nanosecond":{"_name":"纳秒","other":"%1$s纳秒"},"second":{"_name":"秒","other":"%1$s秒","_per":"%1$s/秒"},"week":{"_name":"周","other":"%1$s周"},"year":{"_name":"年","other":"%1$s年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s安"},"milliampere":{"_name":"毫安","other":"%1$s毫安"},"ohm":{"_name":"欧姆","other":"%1$s欧"},"volt":{"_name":"伏特","other":"%1$s伏"}},"energy":{"calorie":{"_name":"卡","other":"%1$s卡"},"foodcalorie":{"_name":"卡","other":"%1$s卡"},"joule":{"_name":"焦耳","other":"%1$s焦耳"},"kilocalorie":{"_name":"千卡","other":"%1$s千卡"},"kilojoule":{"_name":"千焦","other":"%1$s千焦"},"kilowatt-hour":{"_name":"千瓦时","other":"%1$s千瓦时"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s吉赫"},"hertz":{"_name":"赫兹","other":"%1$s赫"},"kilohertz":{"_name":"千赫","other":"%1$s千赫"},"megahertz":{"_name":"兆赫","other":"%1$s兆赫"}},"length":{"astronomical-unit":{"_name":"天文单位","other":"%1$s天文单位"},"centimeter":{"_name":"厘米","other":"%1$s厘米"},"decimeter":{"_name":"分米","other":"%1$s分米"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"英尺","other":"%1$s英尺"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"英寸","other":"%1$s英寸"},"kilometer":{"_name":"公里","other":"%1$s公里"},"light-year":{"_name":"光年","other":"%1$s ly"},"meter":{"_name":"米","other":"%1$s m"},"micrometer":{"_name":"微米","other":"%1$s微米"},"mile":{"_name":"英里","other":"%1$s英里"},"millimeter":{"_name":"毫米","other":"%1$s毫米"},"nanometer":{"_name":"纳米","other":"%1$s纳米"},"nautical-mile":{"_name":"海里","other":"%1$s海里"},"parsec":{"_name":"秒差距","other":"%1$s秒差距"},"picometer":{"_name":"皮米","other":"%1$s pm"},"yard":{"_name":"码","other":"%1$s yd"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s勒克斯"}},"mass":{"carat":{"_name":"克拉","other":"%1$s克拉"},"gram":{"_name":"克","other":"%1$s克"},"kilogram":{"_name":"千克","other":"%1$s千克"},"metric-ton":{"_name":"公吨","other":"%1$s公吨"},"microgram":{"_name":"微克","other":"%1$s微克"},"milligram":{"_name":"毫克","other":"%1$s毫克"},"ounce":{"_name":"盎司","other":"%1$s盎司"},"ounce-troy":{"_name":"金衡制盎司","other":"%1$s金衡制盎司"},"pound":{"_name":"磅","other":"%1$s磅"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"吨","other":"%1$s吨"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s吉瓦"},"horsepower":{"_name":"马力","other":"%1$s马力"},"kilowatt":{"_name":"千瓦","other":"%1$s千瓦"},"megawatt":{"_name":"兆瓦","other":"%1$s兆瓦"},"milliwatt":{"_name":"毫瓦","other":"%1$s毫瓦"},"watt":{"_name":"瓦特","other":"%1$s瓦"}},"pressure":{"hectopascal":{"_name":"百帕斯卡","other":"%1$s百帕"},"inch-hg":{"_name":"英寸汞柱","other":"%1$s英寸汞柱"},"millibar":{"_name":"毫巴","other":"%1$s毫巴"},"millimeter-of-mercury":{"_name":"毫米汞柱","other":"%1$s毫米汞柱"},"pound-per-square-inch":{"_name":"磅/平方英寸","other":"%1$s磅/平方英寸"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s克拉"}},"speed":{"kilometer-per-hour":{"_name":"千米/小时","other":"%1$s千米/小时"},"meter-per-second":{"_name":"米/秒","other":"%1$s米/秒"},"mile-per-hour":{"_name":"英里/小时","other":"%1$s英里/小时"}},"temperature":{"celsius":{"_name":"摄氏度","other":"%1$s°C"},"fahrenheit":{"_name":"华氏度","other":"%1$s°F"},"kelvin":{"_name":"开","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"英亩英尺","other":"%1$s英亩英尺"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"厘升","other":"%1$s厘升"},"cubic-centimeter":{"_name":"立方厘米","other":"%1$s立方厘米"},"cubic-foot":{"_name":"立方英尺","other":"%1$s立方英尺"},"cubic-inch":{"_name":"立方英寸","other":"%1$s立方英寸"},"cubic-kilometer":{"_name":"立方公里","other":"%1$s立方公里"},"cubic-meter":{"_name":"立方米","other":"%1$s立方米"},"cubic-mile":{"_name":"立方英里","other":"%1$s立方英里"},"cubic-yard":{"_name":"立方码","other":"%1$s立方码"},"cup":{"_name":"杯","other":"%1$s杯"},"deciliter":{"_name":"分升","other":"%1$s分升"},"fluid-ounce":{"_name":"液盎司","other":"%1$s液盎司"},"gallon":{"_name":"加仑","other":"%1$s加仑"},"hectoliter":{"_name":"公石","other":"%1$s公石"},"liter":{"_name":"公升","other":"%1$s升"},"megaliter":{"_name":"兆升","other":"%1$s兆升"},"milliliter":{"_name":"毫升","other":"%1$s毫升"},"pint":{"_name":"品脱","other":"%1$s品脱"},"quart":{"_name":"夸脱","other":"%1$s夸脱"},"tablespoon":{"_name":"汤匙","other":"%1$s汤匙"},"teaspoon":{"_name":"茶匙","other":"%1$s茶匙"}}},"narrow":{"_compoundPattern":"%1$s/%2$s","acceleration":{"g-force":{"_name":"G力","other":"%1$sG"},"meter-per-second-squared":{"_name":"米/秒²","other":"%1$s米/秒²"}},"angle":{"arc-minute":{"_name":"弧分","other":"%1$s′"},"arc-second":{"_name":"弧秒","other":"%1$s″"},"degree":{"_name":"度","other":"%1$s°"},"radian":{"_name":"弧度","other":"%1$s弧度"}},"area":{"acre":{"_name":"英亩","other":"%1$sac"},"hectare":{"_name":"公顷","other":"%1$sha"},"square-centimeter":{"_name":"平方厘米","other":"%1$s平方厘米"},"square-foot":{"_name":"平方英尺","other":"%1$sft²"},"square-inch":{"_name":"平方英寸","other":"%1$s平方英寸"},"square-kilometer":{"_name":"平方公里","other":"%1$skm²"},"square-meter":{"_name":"平方米","other":"%1$sm²"},"square-mile":{"_name":"平方英里","other":"%1$smi²"},"square-yard":{"_name":"平方码","other":"%1$s平方码"}},"consumption":{"liter-per-kilometer":{"_name":"升/公里","other":"%1$s升/公里"},"mile-per-gallon":{"_name":"英里/加仑","other":"%1$s英里/加仑"}},"digital":{"bit":{"_name":"比特","other":"%1$s比特"},"byte":{"_name":"字节","other":"%1$s字节"},"gigabit":{"_name":"吉比特","other":"%1$s吉比特"},"gigabyte":{"_name":"吉字节","other":"%1$s吉字节"},"kilobit":{"_name":"千比特","other":"%1$s千比特"},"kilobyte":{"_name":"千字节","other":"%1$s千字节"},"megabit":{"_name":"兆比特","other":"%1$s兆比特"},"megabyte":{"_name":"兆字节","other":"%1$s兆字节"},"terabit":{"_name":"太比特","other":"%1$s太比特"},"terabyte":{"_name":"太字节","other":"%1$s太字节"}},"duration":{"day":{"_name":"天","other":"%1$s天"},"hour":{"_name":"小时","other":"%1$s小时","_per":"%1$s/小时"},"microsecond":{"_name":"微秒","other":"%1$s微秒"},"millisecond":{"_name":"毫秒","other":"%1$s毫秒"},"minute":{"_name":"分钟","other":"%1$s分钟"},"month":{"_name":"个月","other":"%1$s个月"},"nanosecond":{"_name":"纳秒","other":"%1$s纳秒"},"second":{"_name":"秒","other":"%1$s秒","_per":"%1$s/秒"},"week":{"_name":"周","other":"%1$s周"},"year":{"_name":"年","other":"%1$s年"}},"electric":{"ampere":{"_name":"安培","other":"%1$s安"},"milliampere":{"_name":"毫安","other":"%1$s毫安"},"ohm":{"_name":"欧姆","other":"%1$s欧"},"volt":{"_name":"伏特","other":"%1$s伏"}},"energy":{"calorie":{"_name":"卡","other":"%1$s卡"},"foodcalorie":{"_name":"卡","other":"%1$s卡"},"joule":{"_name":"焦耳","other":"%1$s焦耳"},"kilocalorie":{"_name":"千卡","other":"%1$s千卡"},"kilojoule":{"_name":"千焦","other":"%1$s千焦"},"kilowatt-hour":{"_name":"千瓦时","other":"%1$s千瓦时"}},"frequency":{"gigahertz":{"_name":"吉赫","other":"%1$s吉赫"},"hertz":{"_name":"赫兹","other":"%1$s赫"},"kilohertz":{"_name":"千赫","other":"%1$s千赫"},"megahertz":{"_name":"兆赫","other":"%1$s兆赫"}},"length":{"astronomical-unit":{"_name":"天文单位","other":"%1$s天文单位"},"centimeter":{"_name":"厘米","other":"%1$s厘米"},"decimeter":{"_name":"分米","other":"%1$s分米"},"fathom":{"_name":"fm","other":"%1$s fm"},"foot":{"_name":"英尺","other":"%1$s′"},"furlong":{"_name":"fur","other":"%1$s fur"},"inch":{"_name":"英寸","other":"%1$s″"},"kilometer":{"_name":"公里","other":"%1$s公里"},"light-year":{"_name":"光年","other":"%1$sly"},"meter":{"_name":"米","other":"%1$s米"},"micrometer":{"_name":"微米","other":"%1$s微米"},"mile":{"_name":"英里","other":"%1$smi"},"millimeter":{"_name":"毫米","other":"%1$s毫米"},"nanometer":{"_name":"纳米","other":"%1$s纳米"},"nautical-mile":{"_name":"海里","other":"%1$s海里"},"parsec":{"_name":"秒差距","other":"%1$s秒差距"},"picometer":{"_name":"皮米","other":"%1$spm"},"yard":{"_name":"码","other":"%1$syd"}},"light":{"lux":{"_name":"勒克斯","other":"%1$s勒克斯"}},"mass":{"carat":{"_name":"克拉","other":"%1$s克拉"},"gram":{"_name":"克","other":"%1$s克"},"kilogram":{"_name":"千克","other":"%1$s千克"},"metric-ton":{"_name":"公吨","other":"%1$s公吨"},"microgram":{"_name":"微克","other":"%1$s微克"},"milligram":{"_name":"毫克","other":"%1$s毫克"},"ounce":{"_name":"盎司","other":"%1$s盎司"},"ounce-troy":{"_name":"金衡制盎司","other":"%1$s金衡制盎司"},"pound":{"_name":"磅","other":"%1$s磅"},"stone":{"_name":"st","other":"%1$s st"},"ton":{"_name":"吨","other":"%1$s吨"}},"power":{"gigawatt":{"_name":"吉瓦","other":"%1$s吉瓦"},"horsepower":{"_name":"马力","other":"%1$shp"},"kilowatt":{"_name":"千瓦","other":"%1$skW"},"megawatt":{"_name":"兆瓦","other":"%1$s兆瓦"},"milliwatt":{"_name":"毫瓦","other":"%1$s毫瓦"},"watt":{"_name":"瓦特","other":"%1$sW"}},"pressure":{"hectopascal":{"_name":"百帕斯卡","other":"%1$shPa"},"inch-hg":{"_name":"英寸汞柱","other":"%1$s\" Hg"},"millibar":{"_name":"毫巴","other":"%1$smb"},"millimeter-of-mercury":{"_name":"毫米汞柱","other":"%1$s毫米汞柱"},"pound-per-square-inch":{"_name":"磅/平方英寸","other":"%1$s磅/平方英寸"}},"proportion":{"karat":{"_name":"克拉","other":"%1$s克拉"}},"speed":{"kilometer-per-hour":{"_name":"千米/小时","other":"%1$s千米/小时"},"meter-per-second":{"_name":"米/秒","other":"%1$sm/s"},"mile-per-hour":{"_name":"英里/小时","other":"%1$smi/h"}},"temperature":{"celsius":{"_name":"摄氏度","other":"%1$s°"},"fahrenheit":{"_name":"华氏度","other":"%1$s°F"},"kelvin":{"_name":"开","other":"%1$sK"}},"volume":{"acre-foot":{"_name":"英亩英尺","other":"%1$s英亩英尺"},"bushel":{"_name":"bu","other":"%1$s bu"},"centiliter":{"_name":"厘升","other":"%1$s厘升"},"cubic-centimeter":{"_name":"立方厘米","other":"%1$s立方厘米"},"cubic-foot":{"_name":"立方英尺","other":"%1$s立方英尺"},"cubic-inch":{"_name":"立方英寸","other":"%1$s立方英寸"},"cubic-kilometer":{"_name":"立方公里","other":"%1$skm³"},"cubic-meter":{"_name":"立方米","other":"%1$s立方米"},"cubic-mile":{"_name":"立方英里","other":"%1$smi³"},"cubic-yard":{"_name":"立方码","other":"%1$s立方码"},"cup":{"_name":"杯","other":"%1$s杯"},"deciliter":{"_name":"分升","other":"%1$s分升"},"fluid-ounce":{"_name":"液盎司","other":"%1$s液盎司"},"gallon":{"_name":"加仑","other":"%1$s加仑"},"hectoliter":{"_name":"公石","other":"%1$s公石"},"liter":{"_name":"升","other":"%1$s升"},"megaliter":{"_name":"兆升","other":"%1$s兆升"},"milliliter":{"_name":"毫升","other":"%1$s毫升"},"pint":{"_name":"品脱","other":"%1$s品脱"},"quart":{"_name":"夸脱","other":"%1$s夸脱"},"tablespoon":{"_name":"汤匙","other":"%1$s汤匙"},"teaspoon":{"_name":"茶匙","other":"%1$s茶匙"}}},"_durationPattern":{"hm":"h:mm","hms":"h:mm:ss","ms":"m:ss"}} \ No newline at end of file diff --git a/Strings.php b/Strings.php new file mode 100644 index 0000000..8646267 --- /dev/null +++ b/Strings.php @@ -0,0 +1,141 @@ + 'I', 'Ö' => 'O', 'Œ' => 'O', 'Ü' => 'U', 'ä' => 'a', 'æ' => 'a', + 'ij' => 'i', 'ö' => 'o', 'œ' => 'o', 'ü' => 'u', 'ß' => 's', 'ſ' => 's', + 'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Ä' => 'A', 'Å' => 'A', + 'Æ' => 'A', 'Ā' => 'A', 'Ą' => 'A', 'Ă' => 'A', 'Ç' => 'C', 'Ć' => 'C', + 'Č' => 'C', 'Ĉ' => 'C', 'Ċ' => 'C', 'Ď' => 'D', 'Đ' => 'D', 'È' => 'E', + 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ē' => 'E', 'Ę' => 'E', 'Ě' => 'E', + 'Ĕ' => 'E', 'Ė' => 'E', 'Ĝ' => 'G', 'Ğ' => 'G', 'Ġ' => 'G', 'Ģ' => 'G', + 'Ĥ' => 'H', 'Ħ' => 'H', 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I', 'Ï' => 'I', + 'Ī' => 'I', 'Ĩ' => 'I', 'Ĭ' => 'I', 'Į' => 'I', 'İ' => 'I', 'Ĵ' => 'J', + 'Ķ' => 'K', 'Ľ' => 'K', 'Ĺ' => 'K', 'Ļ' => 'K', 'Ŀ' => 'K', 'Ł' => 'L', + 'Ñ' => 'N', 'Ń' => 'N', 'Ň' => 'N', 'Ņ' => 'N', 'Ŋ' => 'N', 'Ò' => 'O', + 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O', 'Ø' => 'O', 'Ō' => 'O', 'Ő' => 'O', + 'Ŏ' => 'O', 'Ŕ' => 'R', 'Ř' => 'R', 'Ŗ' => 'R', 'Ś' => 'S', 'Ş' => 'S', + 'Ŝ' => 'S', 'Ș' => 'S', 'Š' => 'S', 'Ť' => 'T', 'Ţ' => 'T', 'Ŧ' => 'T', + 'Ț' => 'T', 'Ù' => 'U', 'Ú' => 'U', 'Û' => 'U', 'Ū' => 'U', 'Ů' => 'U', + 'Ű' => 'U', 'Ŭ' => 'U', 'Ũ' => 'U', 'Ų' => 'U', 'Ŵ' => 'W', 'Ŷ' => 'Y', + 'Ÿ' => 'Y', 'Ý' => 'Y', 'Ź' => 'Z', 'Ż' => 'Z', 'Ž' => 'Z', 'à' => 'a', + 'á' => 'a', 'â' => 'a', 'ã' => 'a', 'ā' => 'a', 'ą' => 'a', 'ă' => 'a', + 'å' => 'a', 'ç' => 'c', 'ć' => 'c', 'č' => 'c', 'ĉ' => 'c', 'ċ' => 'c', + 'ď' => 'd', 'đ' => 'd', 'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e', + 'ē' => 'e', 'ę' => 'e', 'ě' => 'e', 'ĕ' => 'e', 'ė' => 'e', 'ƒ' => 'f', + 'ĝ' => 'g', 'ğ' => 'g', 'ġ' => 'g', 'ģ' => 'g', 'ĥ' => 'h', 'ħ' => 'h', + 'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i', 'ī' => 'i', 'ĩ' => 'i', + 'ĭ' => 'i', 'į' => 'i', 'ı' => 'i', 'ĵ' => 'j', 'ķ' => 'k', 'ĸ' => 'k', + 'ł' => 'l', 'ľ' => 'l', 'ĺ' => 'l', 'ļ' => 'l', 'ŀ' => 'l', 'ñ' => 'n', + 'ń' => 'n', 'ň' => 'n', 'ņ' => 'n', 'ʼn' => 'n', 'ŋ' => 'n', 'ò' => 'o', + 'ó' => 'o', 'ô' => 'o', 'õ' => 'o', 'ø' => 'o', 'ō' => 'o', 'ő' => 'o', + 'ŏ' => 'o', 'ŕ' => 'r', 'ř' => 'r', 'ŗ' => 'r', 'ś' => 's', 'š' => 's', + 'ť' => 't', 'ù' => 'u', 'ú' => 'u', 'û' => 'u', 'ū' => 'u', 'ů' => 'u', + 'ű' => 'u', 'ŭ' => 'u', 'ũ' => 'u', 'ų' => 'u', 'ŵ' => 'w', 'ÿ' => 'y', + 'ý' => 'y', 'ŷ' => 'y', 'ż' => 'z', 'ź' => 'z', 'ž' => 'z', 'Α' => 'A', + 'Ά' => 'A', 'Ἀ' => 'A', 'Ἁ' => 'A', 'Ἂ' => 'A', 'Ἃ' => 'A', 'Ἄ' => 'A', + 'Ἅ' => 'A', 'Ἆ' => 'A', 'Ἇ' => 'A', 'ᾈ' => 'A', 'ᾉ' => 'A', 'ᾊ' => 'A', + 'ᾋ' => 'A', 'ᾌ' => 'A', 'ᾍ' => 'A', 'ᾎ' => 'A', 'ᾏ' => 'A', 'Ᾰ' => 'A', + 'Ᾱ' => 'A', 'Ὰ' => 'A', 'ᾼ' => 'A', 'Β' => 'B', 'Γ' => 'G', 'Δ' => 'D', + 'Ε' => 'E', 'Έ' => 'E', 'Ἐ' => 'E', 'Ἑ' => 'E', 'Ἒ' => 'E', 'Ἓ' => 'E', + 'Ἔ' => 'E', 'Ἕ' => 'E', 'Ὲ' => 'E', 'Ζ' => 'Z', 'Η' => 'I', 'Ή' => 'I', + 'Ἠ' => 'I', 'Ἡ' => 'I', 'Ἢ' => 'I', 'Ἣ' => 'I', 'Ἤ' => 'I', 'Ἥ' => 'I', + 'Ἦ' => 'I', 'Ἧ' => 'I', 'ᾘ' => 'I', 'ᾙ' => 'I', 'ᾚ' => 'I', 'ᾛ' => 'I', + 'ᾜ' => 'I', 'ᾝ' => 'I', 'ᾞ' => 'I', 'ᾟ' => 'I', 'Ὴ' => 'I', 'ῌ' => 'I', + 'Θ' => 'T', 'Ι' => 'I', 'Ί' => 'I', 'Ϊ' => 'I', 'Ἰ' => 'I', 'Ἱ' => 'I', + 'Ἲ' => 'I', 'Ἳ' => 'I', 'Ἴ' => 'I', 'Ἵ' => 'I', 'Ἶ' => 'I', 'Ἷ' => 'I', + 'Ῐ' => 'I', 'Ῑ' => 'I', 'Ὶ' => 'I', 'Κ' => 'K', 'Λ' => 'L', 'Μ' => 'M', + 'Ν' => 'N', 'Ξ' => 'K', 'Ο' => 'O', 'Ό' => 'O', 'Ὀ' => 'O', 'Ὁ' => 'O', + 'Ὂ' => 'O', 'Ὃ' => 'O', 'Ὄ' => 'O', 'Ὅ' => 'O', 'Ὸ' => 'O', 'Π' => 'P', + 'Ρ' => 'R', 'Ῥ' => 'R', 'Σ' => 'S', 'Τ' => 'T', 'Υ' => 'Y', 'Ύ' => 'Y', + 'Ϋ' => 'Y', 'Ὑ' => 'Y', 'Ὓ' => 'Y', 'Ὕ' => 'Y', 'Ὗ' => 'Y', 'Ῠ' => 'Y', + 'Ῡ' => 'Y', 'Ὺ' => 'Y', 'Φ' => 'F', 'Χ' => 'X', 'Ψ' => 'P', 'Ω' => 'O', + 'Ώ' => 'O', 'Ὠ' => 'O', 'Ὡ' => 'O', 'Ὢ' => 'O', 'Ὣ' => 'O', 'Ὤ' => 'O', + 'Ὥ' => 'O', 'Ὦ' => 'O', 'Ὧ' => 'O', 'ᾨ' => 'O', 'ᾩ' => 'O', 'ᾪ' => 'O', + 'ᾫ' => 'O', 'ᾬ' => 'O', 'ᾭ' => 'O', 'ᾮ' => 'O', 'ᾯ' => 'O', 'Ὼ' => 'O', + 'ῼ' => 'O', 'α' => 'a', 'ά' => 'a', 'ἀ' => 'a', 'ἁ' => 'a', 'ἂ' => 'a', + 'ἃ' => 'a', 'ἄ' => 'a', 'ἅ' => 'a', 'ἆ' => 'a', 'ἇ' => 'a', 'ᾀ' => 'a', + 'ᾁ' => 'a', 'ᾂ' => 'a', 'ᾃ' => 'a', 'ᾄ' => 'a', 'ᾅ' => 'a', 'ᾆ' => 'a', + 'ᾇ' => 'a', 'ὰ' => 'a', 'ᾰ' => 'a', 'ᾱ' => 'a', 'ᾲ' => 'a', 'ᾳ' => 'a', + 'ᾴ' => 'a', 'ᾶ' => 'a', 'ᾷ' => 'a', 'β' => 'b', 'γ' => 'g', 'δ' => 'd', + 'ε' => 'e', 'έ' => 'e', 'ἐ' => 'e', 'ἑ' => 'e', 'ἒ' => 'e', 'ἓ' => 'e', + 'ἔ' => 'e', 'ἕ' => 'e', 'ὲ' => 'e', 'ζ' => 'z', 'η' => 'i', 'ή' => 'i', + 'ἠ' => 'i', 'ἡ' => 'i', 'ἢ' => 'i', 'ἣ' => 'i', 'ἤ' => 'i', 'ἥ' => 'i', + 'ἦ' => 'i', 'ἧ' => 'i', 'ᾐ' => 'i', 'ᾑ' => 'i', 'ᾒ' => 'i', 'ᾓ' => 'i', + 'ᾔ' => 'i', 'ᾕ' => 'i', 'ᾖ' => 'i', 'ᾗ' => 'i', 'ὴ' => 'i', 'ῂ' => 'i', + 'ῃ' => 'i', 'ῄ' => 'i', 'ῆ' => 'i', 'ῇ' => 'i', 'θ' => 't', 'ι' => 'i', + 'ί' => 'i', 'ϊ' => 'i', 'ΐ' => 'i', 'ἰ' => 'i', 'ἱ' => 'i', 'ἲ' => 'i', + 'ἳ' => 'i', 'ἴ' => 'i', 'ἵ' => 'i', 'ἶ' => 'i', 'ἷ' => 'i', 'ὶ' => 'i', + 'ῐ' => 'i', 'ῑ' => 'i', 'ῒ' => 'i', 'ῖ' => 'i', 'ῗ' => 'i', 'κ' => 'k', + 'λ' => 'l', 'μ' => 'm', 'ν' => 'n', 'ξ' => 'k', 'ο' => 'o', 'ό' => 'o', + 'ὀ' => 'o', 'ὁ' => 'o', 'ὂ' => 'o', 'ὃ' => 'o', 'ὄ' => 'o', 'ὅ' => 'o', + 'ὸ' => 'o', 'π' => 'p', 'ρ' => 'r', 'ῤ' => 'r', 'ῥ' => 'r', 'σ' => 's', + 'ς' => 's', 'τ' => 't', 'υ' => 'y', 'ύ' => 'y', 'ϋ' => 'y', 'ΰ' => 'y', + 'ὐ' => 'y', 'ὑ' => 'y', 'ὒ' => 'y', 'ὓ' => 'y', 'ὔ' => 'y', 'ὕ' => 'y', + 'ὖ' => 'y', 'ὗ' => 'y', 'ὺ' => 'y', 'ῠ' => 'y', 'ῡ' => 'y', 'ῢ' => 'y', + 'ῦ' => 'y', 'ῧ' => 'y', 'φ' => 'f', 'χ' => 'x', 'ψ' => 'p', 'ω' => 'o', + 'ώ' => 'o', 'ὠ' => 'o', 'ὡ' => 'o', 'ὢ' => 'o', 'ὣ' => 'o', 'ὤ' => 'o', + 'ὥ' => 'o', 'ὦ' => 'o', 'ὧ' => 'o', 'ᾠ' => 'o', 'ᾡ' => 'o', 'ᾢ' => 'o', + 'ᾣ' => 'o', 'ᾤ' => 'o', 'ᾥ' => 'o', 'ᾦ' => 'o', 'ᾧ' => 'o', 'ὼ' => 'o', + 'ῲ' => 'o', 'ῳ' => 'o', 'ῴ' => 'o', 'ῶ' => 'o', 'ῷ' => 'o', 'А' => 'A', + 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'E', + 'Ж' => 'Z', 'З' => 'Z', 'И' => 'I', 'Й' => 'I', 'К' => 'K', 'Л' => 'L', + 'М' => 'M', 'Н' => 'N', 'О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', + 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'K', 'Ц' => 'T', 'Ч' => 'C', + 'Ш' => 'S', 'Щ' => 'S', 'Ы' => 'Y', 'Э' => 'E', 'Ю' => 'Y', 'Я' => 'Y', + 'а' => 'A', 'б' => 'B', 'в' => 'V', 'г' => 'G', 'д' => 'D', 'е' => 'E', + 'ё' => 'E', 'ж' => 'Z', 'з' => 'Z', 'и' => 'I', 'й' => 'I', 'к' => 'K', + 'л' => 'L', 'м' => 'M', 'н' => 'N', 'о' => 'O', 'п' => 'P', 'р' => 'R', + 'с' => 'S', 'т' => 'T', 'у' => 'U', 'ф' => 'F', 'х' => 'K', 'ц' => 'T', + 'ч' => 'C', 'ш' => 'S', 'щ' => 'S', 'ы' => 'Y', 'э' => 'E', 'ю' => 'Y', + 'я' => 'Y', 'ð' => 'd', 'Ð' => 'D', 'þ' => 't', 'Þ' => 'T', 'ა' => 'a', + 'ბ' => 'b', 'გ' => 'g', 'დ' => 'd', 'ე' => 'e', 'ვ' => 'v', 'ზ' => 'z', + 'თ' => 't', 'ი' => 'i', 'კ' => 'k', 'ლ' => 'l', 'მ' => 'm', 'ნ' => 'n', + 'ო' => 'o', 'პ' => 'p', 'ჟ' => 'z', 'რ' => 'r', 'ს' => 's', 'ტ' => 't', + 'უ' => 'u', 'ფ' => 'p', 'ქ' => 'k', 'ღ' => 'g', 'ყ' => 'q', 'შ' => 's', + 'ჩ' => 'c', 'ც' => 't', 'ძ' => 'd', 'წ' => 't', 'ჭ' => 'c', 'ხ' => 'k', + 'ჯ' => 'j', 'ჰ' => 'h', + ]; + $str = (string)$str; + if(is_null($utf8)){ + if(!function_exists('mb_detect_encoding')) + $utf8 = (strtolower(mb_detect_encoding($str)) == 'utf-8'); + else{ + $length = strlen($str); + $utf8 = true; + for ($i = 0; $i < $length; $i++) { + $c = ord($str[$i]); + if ($c < 0x80) $n = 0; // 0bbbbbbb + elseif (($c & 0xE0) == 0xC0) $n = 1; // 110bbbbb + elseif (($c & 0xF0) == 0xE0) $n = 2; // 1110bbbb + elseif (($c & 0xF8) == 0xF0) $n = 3; // 11110bbb + elseif (($c & 0xFC) == 0xF8) $n = 4; // 111110bb + elseif (($c & 0xFE) == 0xFC) $n = 5; // 1111110b + else return false; // Does not match any model + for ($j = 0; $j < $n; $j++) { // n bytes matching 10bbbbbb follow ? + if ((++$i == $length) || ((ord($str[$i]) & 0xC0) != 0x80)) { + $utf8 = false; + break; + } + } + } + } + } + if(!$utf8) + $str = utf8_encode($str); + return str_replace(array_keys($transliteration), array_values($transliteration), $str); + } +} \ No newline at end of file diff --git a/Translator.php b/Translator.php new file mode 100644 index 0000000..174e46f --- /dev/null +++ b/Translator.php @@ -0,0 +1,304 @@ + + * @website http://wildsurikat.com + */ +class Translator { + protected static $systemLocales; + protected static $bindStack = []; + protected static $defaultDomain = 'messages'; + + private $locale; + private $domain; + private $originLocale; + private $realLocale; + private $localesRoot; + private $gettext; + private $altLocales; + private $realDomain; + + protected $countryAuto = true; + protected $defaultLocale = 'en_US'; + protected $defaultLocalesRoot; + protected $suffixLocales = '.utf8'; + protected $text_domains = []; + protected $default_domain = 'messages'; + protected $LC_CATEGORIES = ['LC_CTYPE', 'LC_NUMERIC', 'LC_TIME', 'LC_COLLATE', 'LC_MONETARY', 'LC_MESSAGES', 'LC_ALL']; + protected $EMULATEGETTEXT = 1; + protected $GettextEmulators = []; + private static $instance; + + public $dev; + + static function initialize(){ + exec('locale -a',self::$systemLocales); + } + static function getInstance(){ + if(!isset(self::$instance)){ + if(class_exists('Wild\Kinetic\Di')) + self::$instance = \Wild\Kinetic\Di::getInstance()->create(__CLASS__); + else + self::$instance = new self; + } + return self::$instance; + } + function __construct($locale=null,$domain=null,$timezone=null,$dev=true){ + $this->dev = $dev; + if(isset($locale)){ + $this->set($locale,$domain,$timezone); + } + } + function set($locale=null,$domain=null,$timezone=null){ + if(!isset($domain)) + $domain = self::$defaultDomain; + if(!$timezone) + $timezone = @date_default_timezone_get(); + date_default_timezone_set($timezone); + $this->defaultLocalesRoot = 'langs'; + $this->localesRoot = $this->defaultLocalesRoot; + $this->originLocale = $locale; + $this->locale = $locale?:$this->defaultLocale; + $this->domain = $domain; + if($this->dev) + $this->realDomain = $this->getLastMoFile(); + else + $this->realDomain = $this->domain; + $this->realLocale = $this->locale.$this->suffixLocales; + $this->altLocales = $this->GettextEmulator($this->realLocale)->get_list_of_locales($this->realLocale); + if(function_exists('setlocale')){ + foreach($this->altLocales as $lc){ + if(in_array($lc,self::$systemLocales)){ + $this->EMULATEGETTEXT = 0; + break; + } + } + if( $this->EMULATEGETTEXT + &&$this->countryAuto + &&strpos($this->locale,'_')===false + &&is_dir($this->localesRoot.'/'.$this->locale) + ){ + foreach(self::$systemLocales as $lc){ + if(strpos($lc,$this->locale.'_')===0){ + if(!is_dir($this->localesRoot.'/'.$lc)){ + if(defined('SURIKAT_CWD')) + $cwd = SURIKAT_CWD; + else + $cwd = getcwd(); + chdir($this->localesRoot); + symlink($this->locale,$this->localesRoot.'/'.$lc); + chdir($cwd); + } + if(false!==$p=strpos($lc,'.')) + $lc = substr($lc,0,$p); + if(false!==$p=strpos($lc,'@')) + $lc = substr($lc,0,$p); + $this->locale = $lc; + $this->realLocale = $this->locale.$this->suffixLocales; + $this->EMULATEGETTEXT = 0; + break; + } + } + } + } + $this->bind(); + } + function n__($singular,$plural,$number){ + return $this->ngettext($singular, $plural, $number); + } + function __($msgid){ + return $this->gettext($msgid); + } + function unbind(){ + array_pop(self::$bindStack); + $last = end(self::$bindStack); + if(!$last){ + $last = [ + $this->defaultLocale, + $this->defaultLocale.$this->suffixLocales, + self::$defaultDomain, + $this->defaultLocalesRoot + ]; + } + if(!isset($last[1])) + return; + putenv('LANG='.$last[0]); + putenv('LANGUAGE='.$last[0]); + putenv('LC_ALL='.$last[0]); + $this->setlocale(LC_ALL,$last[1]); + $this->bindtextdomain($last[2],$last[3]); + $this->textdomain($last[2]); + $this->bind_textdomain_codeset($last[2], "UTF-8"); + } + function bind(){ + self::$bindStack[] = [$this->locale,$this->realLocale,$this->realDomain,$this->localesRoot]; + if(!isset($this->locale)) + return; + //var_dump($this->realLocale,$this->localesRoot); + $lang = $this->getLangCode(); + putenv('LANG='.$this->locale); + putenv('LANGUAGE='.$this->locale); + putenv('LC_ALL='.$this->locale); + $this->setlocale(LC_ALL,$this->realLocale); + $this->bindtextdomain($this->realDomain,$this->localesRoot); + $this->textdomain($this->realDomain); + $this->bind_textdomain_codeset($this->realDomain, "UTF-8"); + } + function getLocale(){ + return $this->locale; + } + function getLangCode(){ + if(false!==$p=strpos($this->locale,'_')){ + return substr($this->locale,0,$p); + } + return $this->locale; + } + function getLastMoFile(){ + $mo = glob($this->localesRoot.'/'.$this->locale.'/LC_MESSAGES/'.$this->domain.'.*.mo'); + return !empty($mo)?substr(basename(end($mo)),0,-3):$this->domain; + } + + function setlocale(){ + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + return call_user_func_array($f,func_get_args()); + } + function bindtextdomain(){ + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + return call_user_func_array($f,func_get_args()); + } + function textdomain(){ + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + return call_user_func_array($f,func_get_args()); + } + function bind_textdomain_codeset(){ + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + return call_user_func_array($f,func_get_args()); + } + + function gettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function ngettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dngettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dcgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dcngettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function pgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dpgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dcpgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function npgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dnpgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function dcnpgettext(){ + $this->bind(); + $f = __FUNCTION__; + if($this->EMULATEGETTEXT) + $f = [$this->GettextEmulator($this->realLocale),$f]; + $r = call_user_func_array($f,func_get_args()); + $this->unbind(); + return $r; + } + function GettextEmulator($lc=null){ + if(!isset($this->GettextEmulators[$lc])) + $this->GettextEmulators[$lc] = new GettextEmulator($lc); + return $this->GettextEmulators[$lc]; + } +} +Translator::initialize(); \ No newline at end of file diff --git a/__.php b/__.php new file mode 100644 index 0000000..8cd3a6f --- /dev/null +++ b/__.php @@ -0,0 +1,11 @@ +ngettext($singular, $plural, $number); + } +} +if(!function_exists('__')){ + function __($msgid){ + return Wild\Localize\Translator::getInstance()->gettext($msgid); + } +} \ No newline at end of file diff --git a/autoload.inc.php b/autoload.inc.php new file mode 100644 index 0000000..8292ba5 --- /dev/null +++ b/autoload.inc.php @@ -0,0 +1,11 @@ + $line) { + if ($k === $last) { + $lines[$k] = self::quote($line); + } else { + $lines[$k] = self::quote($line."\n"); + } + } + + return $lines; + } + protected static function quote($str){ + return '"'.str_replace(['"',"\n","\r"], ['\"','\n',''], stripslashes($str)).'"'; + } + protected static function dir($dir,$sourceDir=null){ + $msg = ''; + $dir = rtrim($dir,'/').'/'; + $dh = opendir($dir); + while($file=readdir($dh)){ + if($file=='.'||$file=='..') + continue; + $f = $dir.$file; + if (is_dir($f)) + $msg .= self::dir($f,$sourceDir); + else + $msg .= static::parseFile($f,$sourceDir); + } + closedir($dh); + return $msg; + } +} \ No newline at end of file diff --git a/getTextExtractorPHP.php b/getTextExtractorPHP.php new file mode 100644 index 0000000..a23e468 --- /dev/null +++ b/getTextExtractorPHP.php @@ -0,0 +1,54 @@ +hasComments()) { + foreach ($translation->getComments() as $comment) { + $tr[] = '# '.$comment; + } + } + if ($translation->hasReferences()) { + foreach ($translation->getReferences() as $reference) { + $tr[] = '#: '.$reference[0].(!is_null($reference[1]) ? ':'.$reference[1] : null); + } + } + if ($translation->hasContext()) { + $tr[] = 'msgctxt '.self::quote($translation->getContext()); + } + $msgid = self::multilineQuote($translation->getOriginal()); + if (count($msgid) === 1) { + $tr[] = 'msgid '.$msgid[0]; + } else { + $tr[] = 'msgid ""'; + $tr = array_merge($tr, $msgid); + } + if ($translation->hasPlural()) { + $tr[] = 'msgid_plural '.self::quote($translation->getPlural()); + $tr[] = 'msgstr[0] '.self::quote($translation->getTranslation()); + + foreach ($translation->getPluralTranslation() as $k => $v) { + $tr[] = 'msgstr['.($k + 1).'] '.self::quote($v); + } + } else { + $tr[] = 'msgstr '.self::quote($translation->getTranslation()); + } + $tr[] = "\n"; + $msg .= implode("\n",$tr); + } + if(isset($cwd)) + chdir($cwd); + return $msg; + } +} \ No newline at end of file diff --git a/getTextExtractorTemplix.php b/getTextExtractorTemplix.php new file mode 100644 index 0000000..259da4b --- /dev/null +++ b/getTextExtractorTemplix.php @@ -0,0 +1,28 @@ +remove(); + $TML('TEXT:hasnt(PHP)')->each(function($el)use(&$msg,$filename){ + $el = trim("$el"); + if($el) + $msg .= "#: $filename \nmsgid ".self::quote($el)."\nmsgstr \"\" \n\n"; + }); + $TML('*')->each(function($el)use(&$msg,$filename){ + foreach($el->attributes as $k=>$v){ + $v = trim($v); + if(strpos($k,'i18n-')===0&&$v) + $msg .= "#: $filename \nmsgid ".self::quote($v)."\nmsgstr \"\" \n\n"; + } + }); + return $msg; + } +} \ No newline at end of file diff --git a/gettext_reader.php b/gettext_reader.php new file mode 100644 index 0000000..3ce196f --- /dev/null +++ b/gettext_reader.php @@ -0,0 +1,429 @@ +. + Copyright (c) 2005 Nico Kaiser + + This file is part of PHP-gettext. + + PHP-gettext is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + PHP-gettext is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PHP-gettext; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +*/ + +/** + * Provides a simple gettext replacement that works independently from + * the system's gettext abilities. + * It can read MO files and use them for translating strings. + * The files are passed to gettext_reader as a Stream (see streams.php) + * + * This version has the ability to cache all strings and translations to + * speed up the string lookup. + * While the cache is enabled by default, it can be switched off with the + * second parameter in the constructor (e.g. whenusing very large MO files + * that you don't want to keep in memory) + */ +class gettext_reader { + //public: + var $error = 0; // public variable that holds error code (0 if no error) + + //private: + var $BYTEORDER = 0; // 0: low endian, 1: big endian + var $STREAM = NULL; + var $short_circuit = false; + var $enable_cache = false; + var $originals = NULL; // offset of original table + var $translations = NULL; // offset of translation table + var $pluralheader = NULL; // cache header field for plural forms + var $total = 0; // total string count + var $table_originals = NULL; // table for original strings (offsets) + var $table_translations = NULL; // table for translated strings (offsets) + var $cache_translations = NULL; // original -> translation mapping + + + /* Methods */ + + + /** + * Reads a 32bit Integer from the Stream + * + * @access private + * @return Integer from the Stream + */ + function readint() { + if ($this->BYTEORDER == 0) { + // low endian + $input=unpack('V', $this->STREAM->read(4)); + return array_shift($input); + } else { + // big endian + $input=unpack('N', $this->STREAM->read(4)); + return array_shift($input); + } + } + + function read($bytes) { + return $this->STREAM->read($bytes); + } + + /** + * Reads an array of Integers from the Stream + * + * @param int count How many elements should be read + * @return Array of Integers + */ + function readintarray($count) { + if ($this->BYTEORDER == 0) { + // low endian + return unpack('V'.$count, $this->STREAM->read(4 * $count)); + } else { + // big endian + return unpack('N'.$count, $this->STREAM->read(4 * $count)); + } + } + + /** + * Constructor + * + * @param object Reader the StreamReader object + * @param boolean enable_cache Enable or disable caching of strings (default on) + */ + function __construct($Reader, $enable_cache = true) { + // If there isn't a StreamReader, turn on short circuit mode. + if (! $Reader || isset($Reader->error) ) { + $this->short_circuit = true; + return; + } + + // Caching can be turned off + $this->enable_cache = $enable_cache; + + $MAGIC1 = "\x95\x04\x12\xde"; + $MAGIC2 = "\xde\x12\x04\x95"; + + $this->STREAM = $Reader; + $magic = $this->read(4); + if ($magic == $MAGIC1) { + $this->BYTEORDER = 1; + } elseif ($magic == $MAGIC2) { + $this->BYTEORDER = 0; + } else { + $this->error = 1; // not MO file + return false; + } + + // FIXME: Do we care about revision? We should. + $revision = $this->readint(); + + $this->total = $this->readint(); + $this->originals = $this->readint(); + $this->translations = $this->readint(); + } + + /** + * Loads the translation tables from the MO file into the cache + * If caching is enabled, also loads all strings into a cache + * to speed up translation lookups + * + * @access private + */ + function load_tables() { + if (is_array($this->cache_translations) && + is_array($this->table_originals) && + is_array($this->table_translations)) + return; + + /* get original and translations tables */ + if (!is_array($this->table_originals)) { + $this->STREAM->seekto($this->originals); + $this->table_originals = $this->readintarray($this->total * 2); + } + if (!is_array($this->table_translations)) { + $this->STREAM->seekto($this->translations); + $this->table_translations = $this->readintarray($this->total * 2); + } + + if ($this->enable_cache) { + $this->cache_translations = []; + /* read all strings in the cache */ + for ($i = 0; $i < $this->total; $i++) { + $this->STREAM->seekto($this->table_originals[$i * 2 + 2]); + $original = $this->STREAM->read($this->table_originals[$i * 2 + 1]); + $this->STREAM->seekto($this->table_translations[$i * 2 + 2]); + $translation = $this->STREAM->read($this->table_translations[$i * 2 + 1]); + $this->cache_translations[$original] = $translation; + } + } + } + + /** + * Returns a string from the "originals" table + * + * @access private + * @param int num Offset number of original string + * @return string Requested string if found, otherwise '' + */ + function get_original_string($num) { + $length = $this->table_originals[$num * 2 + 1]; + $offset = $this->table_originals[$num * 2 + 2]; + if (! $length) + return ''; + $this->STREAM->seekto($offset); + $data = $this->STREAM->read($length); + return (string)$data; + } + + /** + * Returns a string from the "translations" table + * + * @access private + * @param int num Offset number of original string + * @return string Requested string if found, otherwise '' + */ + function get_translation_string($num) { + $length = $this->table_translations[$num * 2 + 1]; + $offset = $this->table_translations[$num * 2 + 2]; + if (! $length) + return ''; + $this->STREAM->seekto($offset); + $data = $this->STREAM->read($length); + return (string)$data; + } + + /** + * Binary search for string + * + * @access private + * @param string string + * @param int start (internally used in recursive function) + * @param int end (internally used in recursive function) + * @return int string number (offset in originals table) + */ + function find_string($string, $start = -1, $end = -1) { + if (($start == -1) or ($end == -1)) { + // find_string is called with only one parameter, set start end end + $start = 0; + $end = $this->total; + } + if (abs($start - $end) <= 1) { + // We're done, now we either found the string, or it doesn't exist + $txt = $this->get_original_string($start); + if ($string == $txt) + return $start; + else + return -1; + } else if ($start > $end) { + // start > end -> turn around and start over + return $this->find_string($string, $end, $start); + } else { + // Divide table in two parts + $half = (int)(($start + $end) / 2); + $cmp = strcmp($string, $this->get_original_string($half)); + if ($cmp == 0) + // string is exactly in the middle => return it + return $half; + else if ($cmp < 0) + // The string is in the upper half + return $this->find_string($string, $start, $half); + else + // The string is in the lower half + return $this->find_string($string, $half, $end); + } + } + + /** + * Translates a string + * + * @access public + * @param string string to be translated + * @return string translated string (or original, if not found) + */ + function translate($string) { + if ($this->short_circuit) + return $string; + $this->load_tables(); + if ($this->enable_cache) { + // Caching enabled, get translated string from cache + if (array_key_exists($string, $this->cache_translations)) + return $this->cache_translations[$string]; + else + return $string; + } else { + // Caching not enabled, try to find string + $num = $this->find_string($string); + if ($num == -1) + return $string; + else + return $this->get_translation_string($num); + } + } + + /** + * Sanitize plural form expression for use in PHP eval call. + * + * @access private + * @return string sanitized plural form expression + */ + function sanitize_plural_expression($expr) { + // Get rid of disallowed characters. + $expr = preg_replace('@[^a-zA-Z0-9_:;\(\)\?\|\&=!<>+*/\%-]@', '', $expr); + + // Add parenthesis for tertiary '?' operator. + $expr .= ';'; + $res = ''; + $p = 0; + for ($i = 0; $i < strlen($expr); $i++) { + $ch = $expr[$i]; + switch ($ch) { + case '?': + $res .= ' ? ('; + $p++; + break; + case ':': + $res .= ') : ('; + break; + case ';': + $res .= str_repeat( ')', $p) . ';'; + $p = 0; + break; + default: + $res .= $ch; + } + } + return $res; + } + + /** + * Parse full PO header and extract only plural forms line. + * + * @access private + * @return string verbatim plural form header field + */ + function extract_plural_forms_header_from_po_header($header) { + if (preg_match("/(^|\n)plural-forms: ([^\n]*)\n/i", $header, $regs)) + $expr = $regs[2]; + else + $expr = "nplurals=2; plural=n == 1 ? 0 : 1;"; + return $expr; + } + + /** + * Get possible plural forms from MO header + * + * @access private + * @return string plural form header + */ + function get_plural_forms() { + // lets assume message number 0 is header + // this is true, right? + $this->load_tables(); + + // cache header field for plural forms + if (! is_string($this->pluralheader)) { + if ($this->enable_cache) { + $header = $this->cache_translations[""]; + } else { + $header = $this->get_translation_string(0); + } + $expr = $this->extract_plural_forms_header_from_po_header($header); + $this->pluralheader = $this->sanitize_plural_expression($expr); + } + return $this->pluralheader; + } + + /** + * Detects which plural form to take + * + * @access private + * @param n count + * @return int array index of the right plural form + */ + function select_string($n) { + $string = $this->get_plural_forms(); + $string = str_replace('nplurals',"\$total",$string); + $string = str_replace("n",$n,$string); + $string = str_replace('plural',"\$plural",$string); + + $total = 0; + $plural = 0; + + eval("$string"); + if ($plural >= $total) $plural = $total - 1; + return $plural; + } + + /** + * Plural version of gettext + * + * @access public + * @param string single + * @param string plural + * @param string number + * @return translated plural form + */ + function ngettext($single, $plural, $number) { + if ($this->short_circuit) { + if ($number != 1) + return $plural; + else + return $single; + } + + // find out the appropriate form + $select = $this->select_string($number); + + // this should contains all strings separated by NULLs + $key = $single . chr(0) . $plural; + + + if ($this->enable_cache) { + if (! array_key_exists($key, $this->cache_translations)) { + return ($number != 1) ? $plural : $single; + } else { + $result = $this->cache_translations[$key]; + $list = explode(chr(0), $result); + return $list[$select]; + } + } else { + $num = $this->find_string($key); + if ($num == -1) { + return ($number != 1) ? $plural : $single; + } else { + $result = $this->get_translation_string($num); + $list = explode(chr(0), $result); + return $list[$select]; + } + } + } + + function pgettext($context, $msgid) { + $key = $context . chr(4) . $msgid; + $ret = $this->translate($key); + if (strpos($ret, "\004") !== FALSE) { + return $msgid; + } else { + return $ret; + } + } + + function npgettext($context, $singular, $plural, $number) { + $key = $context . chr(4) . $singular; + $ret = $this->ngettext($key, $plural, $number); + if (strpos($ret, "\004") !== FALSE) { + return $singular; + } else { + return $ret; + } + + } +} \ No newline at end of file diff --git a/msgfmt.php b/msgfmt.php new file mode 100644 index 0000000..dacda38 --- /dev/null +++ b/msgfmt.php @@ -0,0 +1,201 @@ + $v) { + $x[$k]= self::cleanHelper($v); + } + } else { + if ($x[0] == '"') + $x= substr($x, 1, -1); + $x= str_replace("\"\n\"", '', $x); + $x= str_replace('$', '\\$', $x); + $x= @ eval ("return \"$x\";"); + } + return $x; + } + + // see documentation at http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files + private static function parsePoFile($in) { + // read .po file + $fh = fopen($in, 'r'); + if($fh===false) + return false; + // normalize newlines + + // results array + $hash= array (); + // temporary array + $temp= array (); + // state + $state= null; + $fuzzy= false; + + // iterate over lines + while(($stream = fgets($fh, 65536)) !== false) { + $stream= str_replace(array ( + "\r\n", + "\r" + ), array ( + "\n", + "\n" + ), $stream); + foreach(explode("\n",$stream) as $line){ + $line= trim($line); + if ($line === '') + continue; + + @list ($key, $data)= explode(' ', $line, 2); + + switch ($key) { + case '#,' : // flag... + $fuzzy= in_array('fuzzy', preg_split('/,\s*/', $data)); + case '#' : // translator-comments + case '#.' : // extracted-comments + case '#:' : // reference... + case '#|' : // msgid previous-untranslated-string + // start a new entry + if (sizeof($temp) && array_key_exists('msgid', $temp) && array_key_exists('msgstr', $temp)) { + if (!$fuzzy) + $hash[]= $temp; + $temp= array (); + $state= null; + $fuzzy= false; + } + break; + case 'msgctxt' : + // context + case 'msgid' : + // untranslated-string + case 'msgid_plural' : + // untranslated-string-plural + $state= $key; + $temp[$state]= $data; + break; + case 'msgstr' : + // translated-string + $state= 'msgstr'; + $temp[$state][]= $data; + break; + default : + if (strpos($key, 'msgstr[') !== FALSE) { + // translated-string-case-n + $state= 'msgstr'; + $temp[$state][]= $data; + } else { + // continued lines + switch ($state) { + case 'msgctxt' : + case 'msgid' : + case 'msgid_plural' : + $temp[$state] .= "\n" . $line; + break; + case 'msgstr' : + $temp[$state][sizeof($temp[$state]) - 1] .= "\n" . $line; + break; + default : + // parse error + return FALSE; + } + } + break; + } + } + } + + // add final entry + if ($state == 'msgstr') + $hash[]= $temp; + + // Cleanup data, merge multiline entries, reindex hash for ksort + $temp= $hash; + $hash= array (); + foreach ($temp as $entry) { + foreach ($entry as & $v) { + $v= self::cleanHelper($v); + if ($v === FALSE) { + // parse error + return FALSE; + } + } + $hash[$entry['msgid']]= $entry; + } + + return $hash; + } + + // http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files + private static function writeMoFile($hash, $out) { + // sort by msgid + ksort($hash, SORT_STRING); + // our mo file data + $mo= ''; + // header data + $offsets= array (); + $ids= ''; + $strings= ''; + + foreach ($hash as $entry) { + $id= $entry['msgid']; + if (isset ($entry['msgid_plural'])) + $id .= "\x00" . $entry['msgid_plural']; + // context is merged into id, separated by EOT (\x04) + if (array_key_exists('msgctxt', $entry)) + $id= $entry['msgctxt'] . "\x04" . $id; + // plural msgstrs are NUL-separated + $str= implode("\x00", $entry['msgstr']); + // keep track of offsets + $offsets[]= array ( + strlen($ids + ), strlen($id), strlen($strings), strlen($str)); + // plural msgids are not stored (?) + $ids .= $id . "\x00"; + $strings .= $str . "\x00"; + } + + // keys start after the header (7 words) + index tables ($#hash * 4 words) + $key_start= 7 * 4 + sizeof($hash) * 4 * 4; + // values start right after the keys + $value_start= $key_start +strlen($ids); + // first all key offsets, then all value offsets + $key_offsets= array (); + $value_offsets= array (); + // calculate + foreach ($offsets as $v) { + list ($o1, $l1, $o2, $l2)= $v; + $key_offsets[]= $l1; + $key_offsets[]= $o1 + $key_start; + $value_offsets[]= $l2; + $value_offsets[]= $o2 + $value_start; + } + $offsets= array_merge($key_offsets, $value_offsets); + + // write header + $mo .= pack('Iiiiiii', 0x950412de, // magic number + 0, // version + sizeof($hash), // number of entries in the catalog + 7 * 4, // key index offset + 7 * 4 + sizeof($hash) * 8, // value index offset, + 0, // hashtable size (unused, thus 0) + $key_start // hashtable offset + ); + // offsets + foreach ($offsets as $offset) + $mo .= pack('i', $offset); + // ids + $mo .= $ids; + // strings + $mo .= $strings; + + file_put_contents($out, $mo); + } +} \ No newline at end of file