diff --git a/.gitignore b/.gitignore index e47edeeef4..bf3fa1a2ea 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ __pycache__ *.DS_Store *.egg-info *.mo +scripts/l10n/holidays_l10n.json.bak *.pyc build/* coverage.lcov diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 982a541ebc..eac8fcd2d2 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,5 +1,6 @@ Aadesh Shrivastava Aaqil Yousuf +Aaron Chewe Aaron Picht Aart Goossens Abdelkhalek Boukli Hacene diff --git a/pyproject.toml b/pyproject.toml index 6db7f5868c..39c7eeb822 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,9 +109,12 @@ lint.per-file-ignores."scripts/archive_links.py" = [ "T201" ] lint.per-file-ignores."scripts/generate_release_notes.py" = [ "T201" ] lint.per-file-ignores."scripts/generate_site_assets.py" = [ "T201" ] lint.per-file-ignores."scripts/generate_snapshots.py" = [ "T201" ] +lint.per-file-ignores."scripts/l10n/generate_locale_po_files.py" = [ "T201" ] lint.per-file-ignores."scripts/l10n/generate_mo_files.py" = [ "T201" ] lint.per-file-ignores."scripts/l10n/generate_po_files.py" = [ "T201" ] +lint.per-file-ignores."scripts/l10n/json_builder.py" = [ "FBT", "T201" ] lint.per-file-ignores."scripts/l10n/l10n_helper.py" = [ "T201" ] +lint.per-file-ignores."scripts/l10n/replace_tr_strings.py" = [ "T201" ] lint.per-file-ignores."scripts/normalize_text.py" = [ "T201" ] lint.per-file-ignores."tests/common.py" = [ "N802" ] lint.per-file-ignores."tests/test_holiday_base.py" = [ "S301" ] diff --git a/scripts/l10n/generate_locale_po_files.py b/scripts/l10n/generate_locale_po_files.py new file mode 100644 index 0000000000..e08076a882 --- /dev/null +++ b/scripts/l10n/generate_locale_po_files.py @@ -0,0 +1,144 @@ +#!/usr/bin/env python3 + + +# holidays +# -------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +"""Generate per-locale .pot and .po files from the JSON file. + +Run with: + python scripts/l10n/generate_locale_po_files.py + +This generates: + * holidays/locale/holidays.pot - master template with all msgids + * holidays/locale/{lang}.po - one per language +""" + +import json +import re +import sys +from datetime import datetime +from pathlib import Path + +from polib import POEntry, POFile + +sys.path.insert(0, str(Path.cwd())) +from holidays import __version__ as package_version + +JSON_PATH = Path("scripts/l10n/holidays_l10n.json") +LOCALE_PATH = Path("holidays/locale") +HEADER_PATH = Path("docs/file_header.txt") +POT_FILENAME = "holidays.pot" +WRAP_WIDTH = 99 +MSGID_BUGS_ADDRESS = "l10n@vacanza.dev" +TRANSLATOR_PATTERN = re.compile(r"[^\s<]+(?:\s+[^\s<]+)*\s+<[^@\s<]+@[^@\s<.]+(?:\.[^@\s<.]+)+>") + + +class LocalePOGenerator: + """Generates per-locale .pot and .po files from the JSON.""" + + def __init__(self) -> None: + if not JSON_PATH.exists(): + raise FileNotFoundError(f"{JSON_PATH} not found!") + with JSON_PATH.open(encoding="utf-8") as f: + self.data: list[dict] = json.load(f) + + self.timestamp = datetime.now().astimezone().strftime("%Y-%m-%d %H:%M%z") + self.license_header = self._get_license_header() + + @staticmethod + def _get_license_header() -> str: + """Read and format the license header from docs/file_header.txt.""" + content = HEADER_PATH.read_text(encoding="utf-8").lstrip("\n") + return ( + "\n".join( + f"# {stripped}" if (stripped := line.rstrip()) else "#" + for line in content.splitlines() + ) + + "\n#" + ) + + def _make_metadata(self, lang: str | None = None) -> dict: + """Build standard Gettext metadata for a .po or .pot file.""" + return { + "Project-Id-Version": f"Holidays {package_version}", + "Report-Msgid-Bugs-To": MSGID_BUGS_ADDRESS, + "POT-Creation-Date": self.timestamp, + "PO-Revision-Date": self.timestamp, + "Last-Translator": f"Holidays Localization Team <{MSGID_BUGS_ADDRESS}>", + "Language-Team": "Holidays Localization Team", + "Language": lang or "en", + "MIME-Version": "1.0", + "Content-Type": "text/plain; charset=UTF-8", + "Content-Transfer-Encoding": "8bit", + "X-Source-Language": "en", + } + + def _write_po_header(self, po_path: Path, lang: str | None) -> None: + """Prepend the license header to a written .po file.""" + output = [ + self.license_header, + f"# Holidays {lang} localization." if lang else "# Holidays localization.", + "#", + po_path.read_text(encoding="utf-8"), + ] + po_path.write_text("\n".join(output), encoding="utf-8", newline="\n") + + def _build_po(self, lang: str | None = None) -> None: + """Build a per-locale .po file for a given language.""" + po = POFile(wrapwidth=WRAP_WIDTH) + po.metadata = self._make_metadata(lang) + + for entry in self.data: + po.append( + POEntry( + msgid=entry["msgid"], + msgstr=entry["messages"].get(lang) or "", + comment=entry.get("new_comment"), + flags=["c-format"] if "%" in entry["msgid"] else [], + ) + ) + + po_path = LOCALE_PATH / (f"{lang}.po" if lang else POT_FILENAME) + po.save(str(po_path), newline="\n") + self._write_po_header(po_path, lang) + print(f"Saved {po_path} ({len(po)} entries)") + + def _collect_languages(self) -> set[str]: + """Collect all language codes present across all entries.""" + langs: set[str] = set() + for entry in self.data: + for lang, val in entry["messages"].items(): + if isinstance(val, str): + langs.add(lang) + else: + raise ValueError( + f"Msgid `{entry['msgid']}` contains multiple translation for lang `{lang}`" + ) + + return langs + + def run(self) -> None: + """Generate the .pot and all per-locale .po files.""" + langs = self._collect_languages() + # build .pot file. + self._build_po() + + print(f"Generating .po files for {len(langs)} languages...") + for lang in sorted(langs): + self._build_po(lang) + + print("Done.") + + +if __name__ == "__main__": + LocalePOGenerator().run() diff --git a/scripts/l10n/holidays_l10n.json b/scripts/l10n/holidays_l10n.json new file mode 100644 index 0000000000..3d4b652eda --- /dev/null +++ b/scripts/l10n/holidays_l10n.json @@ -0,0 +1,37172 @@ +[ + { + "id": "100th_anniversary_of_the_adoption_of_the_declaration_of_the_slovak_nation", + "msgid": "100th anniversary of the adoption of the Declaration of the Slovak Nation", + "new_comment": "", + "comment": "100th anniversary of the adoption of the Declaration of the Slovak Nation.", + "messages": { + "en_US": "100th anniversary of the adoption of the Declaration of the Slovak Nation", + "sk": "100. výročie prijatia Deklarácie slovenského národa", + "uk": "100-а річниця прийняття Декларації словацької нації" + }, + "countries": [ + "SK" + ] + }, + { + "id": "100th_anniversary_of_the_birth_of_camillo_cavour", + "msgid": "100th anniversary of the birth of Camillo Cavour", + "new_comment": "", + "comment": "100th anniversary of the birth of Camillo Cavour.", + "messages": { + "en_US": "100th anniversary of the birth of Camillo Cavour", + "it_IT": "Centenario della nascita di Camillo Cavour", + "th": "วันครบรอบ 100 ปีชาตกาล คามิลโล คาวัวร์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "100th_anniversary_of_the_birth_of_general_giuseppe_garibaldi", + "msgid": "100th anniversary of the birth of General Giuseppe Garibaldi", + "new_comment": "", + "comment": "100th anniversary of the birth of General Giuseppe Garibaldi.", + "messages": { + "en_US": "100th anniversary of the birth of General Giuseppe Garibaldi", + "it_IT": "Centenario della nascita del generale Giuseppe Garibaldi", + "th": "วันครบรอบ 100 ปีชาตกาล นายพลจูเซ็ปเป้ การีบัลดี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "100th_anniversary_of_the_birth_of_victor_emmanuel_ii", + "msgid": "100th anniversary of the birth of Victor Emmanuel II", + "new_comment": "", + "comment": "100th anniversary of the birth of Victor Emmanuel II.", + "messages": { + "en_US": "100th anniversary of the birth of Victor Emmanuel II", + "it_IT": "Centenario della nascita del Vittorio Emanuele II", + "th": "วันครบรอบ 100 ปีพระราชสมภพของพระเจ้าวิตโตรีโอ เอมานูเอเลที่ 2" + }, + "countries": [ + "IT" + ] + }, + { + "id": "10th_anniversary_of_the_bolivarian_revolution", + "msgid": "10th Anniversary of the Bolivarian Revolution", + "new_comment": "", + "comment": "10th Anniversary of the Bolivarian Revolution.", + "messages": { + "en_US": "10th Anniversary of the Bolivarian Revolution", + "es": "10.º aniversario de la Revolución Bolivariana", + "uk": "10-та річниця Боліваріанської революції" + }, + "countries": [ + "VE" + ] + }, + { + "id": "15_khordad_uprising", + "msgid": "15 Khordad Uprising", + "new_comment": "", + "comment": "15 Khordad Uprising.", + "messages": { + "en_US": "15 Khordad Uprising", + "fa_IR": "قیام 15 خرداد" + }, + "countries": [ + "IR" + ] + }, + { + "id": "1920_carinthian_plebiscite", + "msgid": "1920 Carinthian plebiscite", + "new_comment": "", + "comment": "1920 Carinthian plebiscite.", + "messages": { + "de": "Tag der Volksabstimmung", + "en_US": "1920 Carinthian plebiscite", + "th": "วันครบรอบการลงประชามติคารินเทีย", + "uk": "Річниця референдуму 1920 року в Карінтії" + }, + "countries": [ + "AT" + ] + }, + { + "id": "1988_seoul_olympics_opening_ceremony", + "msgid": "1988 Seoul Olympics Opening Ceremony", + "new_comment": "", + "comment": "1988 Seoul Olympics Opening Ceremony.", + "messages": { + "en_US": "1988 Seoul Olympics Opening Ceremony", + "ko": "1988 서울 올림픽 개막식", + "th": "พิธีเปิดโอลิมปิกฤดูร้อน 1988 โซล" + }, + "countries": [ + "KR" + ] + }, + { + "id": "1st_navratra", + "msgid": "1st Navratra", + "new_comment": "", + "comment": "1st Navratra.", + "messages": { + "bn": "নবরাত্রির প্রথম দিন", + "en_IN": "1st Navratra", + "en_US": "1st Navratra", + "gu": "પ્રથમ નવરાત્રી", + "hi": "प्रथम नवरात्र", + "kn": "ಮೊದಲ ನವರಾತ್ರಿ", + "ml": "ആദ്യ നവരാത്രി", + "mr": "पहिली नवरात्र", + "pa": "ਪਹਿਲਾ ਨਵਰਾਤਰਾ", + "ta": "முதல் நவராத்திரி", + "te": "మొదటి నవరాత్రి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "1st_octave", + "msgid": "1st Octave", + "new_comment": "", + "comment": "1st Octave.", + "messages": { + "en_US": "1st Octave", + "pt_PT": "Primeira Oitava", + "uk": "Перша октава" + }, + "countries": [ + "PT" + ] + }, + { + "id": "2002_fifa_world_cup_national_team_semi_finals_celebrations", + "msgid": "2002 FIFA World Cup National Team Semi-Finals Celebrations", + "new_comment": "", + "comment": "2002 FIFA World Cup National Team Semi-Finals Celebrations.", + "messages": { + "en_US": "2002 FIFA World Cup National Team Semi-Finals Celebrations", + "ko": "2002년 한일 월드컵 대표팀 4강 진출", + "th": "ฉลองทีมชาติเกาหลีเข้ารอบฟุตบอลโลก 2002 รอบรองชนะเลิศ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "2009_cayman_islands_constitution_day", + "msgid": "2009 Cayman Islands Constitution Day", + "new_comment": "", + "comment": "2009 Cayman Islands Constitution Day.", + "messages": { + "en_GB": "2009 Cayman Islands Constitution Day", + "en_US": "2009 Cayman Islands Constitution Day" + }, + "countries": [ + "KY" + ] + }, + { + "id": "2024_african_cup_of_nations_victory", + "msgid": "2024 African Cup of Nations Victory", + "new_comment": "", + "comment": "2024 African Cup of Nations Victory.", + "messages": { + "en_CI": "2024 African Cup of Nations Victory", + "en_US": "2024 African Cup of Nations Victory", + "fr": "Victoire à la Coupe d'Afrique des Nations 2024" + }, + "countries": [ + "CI" + ] + }, + { + "id": "20th_anniversary_celebrations_of_the_popular_consultation", + "msgid": "20th Anniversary Celebrations of the Popular Consultation", + "new_comment": "", + "comment": "20th Anniversary Celebrations of the Popular Consultation.", + "messages": { + "en_TL": "20th Anniversary Celebrations of the Popular Consultation", + "en_US": "20th Anniversary Celebrations of the Popular Consultation", + "pt_TL": "Celebrações do 20.º Aniversário da Consulta Popular", + "tet": "Komemorasaun Aniversáriu Konsulta Populár ba dala 20", + "th": "วันครบรอบ 20 ปีของการลงประชามติเอกราช" + }, + "countries": [ + "TL" + ] + }, + { + "id": "25th_anniversary_celebrations_of_the_popular_consultation", + "msgid": "25th Anniversary Celebrations of the Popular Consultation", + "new_comment": "", + "comment": "25th Anniversary Celebrations of the Popular Consultation.", + "messages": { + "en_TL": "25th Anniversary Celebrations of the Popular Consultation", + "en_US": "25th Anniversary Celebrations of the Popular Consultation", + "pt_TL": "Celebrações do 25.º Aniversário da Consulta Popular", + "tet": "Komemorasaun Aniversáriu Konsulta Populár ba dala 25", + "th": "วันครบรอบ 25 ปีของการลงประชามติเอกราช" + }, + "countries": [ + "TL" + ] + }, + { + "id": "29_of_lunar_new_year", + "msgid": "29 of Lunar New Year", + "new_comment": "", + "comment": "29 of Lunar New Year.", + "messages": { + "en_US": "29 of Lunar New Year", + "th": "วันที่ 29 เดือน 12 ตามปฏิทินจันทรคติ", + "vi": "29 Tết" + }, + "countries": [ + "VN" + ] + }, + { + "id": "5th_republic_constitutional_referendum_day", + "msgid": "5th Republic Constitutional Referendum Day", + "new_comment": "", + "comment": "5th Republic Constitutional Referendum Day.", + "messages": { + "en_US": "5th Republic Constitutional Referendum Day", + "ko": "제5공화국 헌법 개정 국민투표일", + "th": "วันลงประชามติแก้ไขรัฐธรรมนูญของสาธารณรัฐเกาหลีที่ห้า" + }, + "countries": [ + "KR" + ] + }, + { + "id": "6th_republic_constitutional_referendum_day", + "msgid": "6th Republic Constitutional Referendum Day", + "new_comment": "", + "comment": "6th Republic Constitutional Referendum Day.", + "messages": { + "en_US": "6th Republic Constitutional Referendum Day", + "ko": "제6공화국 헌법 개정 국민투표일", + "th": "วันลงประชามติแก้ไขรัฐธรรมนูญของสาธารณรัฐเกาหลีที่หก" + }, + "countries": [ + "KR" + ] + }, + { + "id": "700th_anniversary_of_the_death_of_saint_francis_of_assisi", + "msgid": "700th anniversary of the death of Saint Francis of Assisi", + "new_comment": "", + "comment": "700th anniversary of the death of Saint Francis of Assisi.", + "messages": { + "en_US": "700th anniversary of the death of Saint Francis of Assisi", + "it_IT": "Anniversario del VII centenario della morte di San Francesco di Assisi", + "th": "วันครบรอบ 700 ปีมรณภาพของนักบุญฟรังซิสแห่งอัสซีซี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "70th_anniversary_of_the_victory_of_the_chinese_people_s_war_of_resistance_against_japanese_aggression_and_the_world_anti_fascist_war", + "msgid": "70th Anniversary of the Victory of the Chinese People's War of Resistance against Japanese Aggression and the World Anti-Fascist War", + "new_comment": "", + "comment": "70th Anniversary of the Victory of the Chinese People's War of Resistance against Japanese\nAggression and the World Anti-Fascist War.", + "messages": { + "en_HK": "The 70th anniversary day of the victory of the Chinese people's war of resistance against Japanese aggression", + "en_MO": "70th Anniversary of the Victory of the Chinese People's War of Resistance against Japanese Aggression and the World Anti-Fascist War", + "en_US": "70th Anniversary of the Victory of the Chinese People's War of Resistance against Japanese Aggression and the World Anti-Fascist War", + "pt_MO": "Dia Comemorativo do 70.º Aniversário da Vitória do Povo Chinês na Guerra contra o Japão e da Vitória Mundial contra o Fascismo", + "th": { + "CN": "วันครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่นและลัทธิฟาสซิสต์โลก", + "HK": "วันครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่น", + "MO": "วันครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่นและลัทธิฟาสซิสต์โลก" + }, + "zh_CN": { + "CN": "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日", + "HK": "中国人民抗日战争胜利70周年纪念日", + "MO": "中国人民抗日战争暨世界反法西斯战争胜利七十周年纪念日" + }, + "zh_HK": "中國人民抗日戰爭勝利70周年紀念日", + "zh_MO": "中國人民抗日戰爭暨世界反法西斯戰爭勝利七十周年紀念日", + "zh_TW": "中國人民抗日戰爭暨世界反法西斯戰爭勝利70週年紀念日" + }, + "countries": [ + "CN", + "HK", + "MO" + ] + }, + { + "id": "75th_anniversary_of_the_east_german_uprising_of_1953", + "msgid": "75th anniversary of the East German uprising of 1953", + "new_comment": "", + "comment": "75th anniversary of the East German uprising of 1953.", + "messages": { + "de": "75. Jahrestag des Aufstandes vom 17. Juni 1953", + "en_US": "75th anniversary of the East German uprising of 1953", + "th": "วันครบรอบ 75 ปีของการก่อการกำเริบในเยอรมนีตะวันออก ค.ศ. 1953", + "uk": "75-та річниця Повстання 1953 у Східній Німеччині" + }, + "countries": [ + "DE" + ] + }, + { + "id": "75th_anniversary_of_the_liberation_from_nazism_and_the_end_of_the_second_world_war_in_europe", + "msgid": "75th anniversary of the liberation from Nazism and the end of the Second World War in Europe", + "new_comment": "", + "comment": "75th anniversary of the liberation from Nazism and the end of the Second World War in Europe.", + "messages": { + "de": "75. Jahrestag der Befreiung vom Nationalsozialismus und der Beendigung des Zweiten Weltkriegs in Europa", + "en_US": "75th anniversary of the liberation from Nazism and the end of the Second World War in Europe", + "th": "วันครบรอบ 75 ปีของการปลดปล่อยจากระบอบชาติสังคมนิยมและการสิ้นสุดสงครามโลกครั้งที่สองในยุโรป", + "uk": "75-та річниця визволення від націонал-соціалізму та завершення Другої світової війни в Європі" + }, + "countries": [ + "DE" + ] + }, + { + "id": "75th_anniversary_of_ve_day", + "msgid": "75th Anniversary of VE Day", + "new_comment": "", + "comment": "75th Anniversary of VE Day.", + "messages": { + "en_GB": "75th Anniversary of VE Day", + "en_US": "75th Anniversary of VE Day" + }, + "countries": [ + "GI" + ] + }, + { + "id": "80th_anniversary_of_the_first_basque_government", + "msgid": "80th Anniversary of the first Basque Government", + "new_comment": "", + "comment": "80th Anniversary of the first Basque Government.", + "messages": { + "ca": "80è Aniversari del primer Govern Basc", + "en_US": "80th Anniversary of the first Basque Government", + "es": "80 Aniversario del primer Gobierno Vasco", + "th": "วันครบรอบ 80 ปีการก่อตั้งรัฐบาลแคว้นบาสก์ชุดแรก", + "uk": "80-та річниця першого баскського уряду" + }, + "countries": [ + "ES" + ] + }, + { + "id": "80th_anniversary_of_the_liberation_from_nazism_and_the_end_of_the_second_world_war_in_europe", + "msgid": "80th anniversary of the liberation from Nazism and the end of the Second World War in Europe", + "new_comment": "", + "comment": "80th anniversary of the liberation from Nazism and the end of the Second World War in Europe.", + "messages": { + "de": "80. Jahrestag der Befreiung vom Nationalsozialismus und der Beendigung des Zweiten Weltkriegs in Europa", + "en_US": "80th anniversary of the liberation from Nazism and the end of the Second World War in Europe", + "th": "วันครบรอบ 80 ปีของการปลดปล่อยจากระบอบชาติสังคมนิยมและการสิ้นสุดสงครามโลกครั้งที่สองในยุโรป", + "uk": "80-та річниця визволення від націонал-соціалізму та завершення Другої світової війни в Європі" + }, + "countries": [ + "DE" + ] + }, + { + "id": "abolition_of_slavery", + "msgid": "Abolition of Slavery", + "new_comment": "", + "comment": "Abolition of Slavery.", + "messages": { + "en_MU": "Abolition of Slavery", + "en_US": "Abolition of Slavery", + "fr": "Abolition de l'esclavage", + "th": "วันเลิกทาส", + "uk": "День скасування рабства" + }, + "countries": [ + "FR", + "MU" + ] + }, + { + "id": "abolition_of_slavery_in_brazil", + "msgid": "Abolition of slavery in Brazil", + "new_comment": "", + "comment": "Abolition of slavery in Brazil.", + "messages": { + "en_US": "Abolition of slavery in Brazil", + "pt_BR": "Abolição da escravidão no Brasil", + "uk": "День скасування рабства в Бразилії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "abolition_of_slavery_in_cear", + "msgid": "Abolition of slavery in Ceará", + "new_comment": "", + "comment": "Abolition of slavery in Ceará.", + "messages": { + "en_US": "Abolition of slavery in Ceará", + "pt_BR": "Abolição da escravidão no Ceará", + "uk": "День скасування рабства в Сеарі" + }, + "countries": [ + "BR" + ] + }, + { + "id": "accession_day", + "msgid": "Accession Day", + "new_comment": "", + "comment": "Accession Day.", + "messages": { + "bn": "সংযুক্তি দিবস", + "en_IN": "Accession Day", + "en_US": "Accession Day", + "gu": "વિલય દિવસ", + "hi": "विलय दिवस", + "kn": "ವಿಲೀನ ದಿನ", + "ml": "ലയന ദിനം", + "mr": "विलीनीकरण दिन", + "pa": "ਵਿਲਯ ਦਿਵਸ", + "ta": "இணைப்பு நாள்", + "te": "విలీన దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "act_of_self_determination_day", + "msgid": "Act of Self Determination Day", + "new_comment": "", + "comment": "Act of Self Determination Day.", + "messages": { + "coa_CC": "Hari Penentuan Diri", + "en_CC": "Act of Self Determination Day", + "en_US": "Act of Self Determination Day" + }, + "countries": [ + "CC" + ] + }, + { + "id": "additional_closing_day_for_bank_for_agriculture_and_agricultural_cooperatives", + "msgid": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "new_comment": "", + "comment": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives.", + "messages": { + "en_US": "Additional Closing Day for Bank for Agriculture and Agricultural Cooperatives", + "th": "วันหยุดเพิ่มเติมสำหรับการปิดบัญชีประจำปีของธนาคารเพื่อการเกษตรและสหกรณ์การเกษตร", + "uk": "Додатковий вихідний сільськогосподарського Банку та кооперативів" + }, + "countries": [ + "TH" + ] + }, + { + "id": "additional_day_off_by_presidential_decree", + "msgid": "Additional day off by Presidential decree", + "new_comment": "", + "comment": "Additional day off by Presidential decree.", + "messages": { + "en_US": "Additional day off by Presidential decree", + "uk": "Додатковий вихідний згідно указу Президента", + "uz": "Prezidentining farmoni bilan qoʻshimcha dam olish kuni" + }, + "countries": [ + "UZ" + ] + }, + { + "id": "additional_government_holiday", + "msgid": "Additional Government Holiday", + "new_comment": "", + "comment": "Additional Government Holiday.", + "messages": { + "en_MO": "Additional Government Holiday", + "en_US": "Additional Government Holiday", + "pt_MO": "Feriado Governamental Adicional", + "th": "วันหยุดราชการเพิ่มเติม", + "zh_CN": "额外政府假期", + "zh_MO": "額外政府假期" + }, + "countries": [ + "MO" + ] + }, + { + "id": "additional_half_day_public_holiday", + "msgid": "Additional Half-Day Public Holiday", + "new_comment": "", + "comment": "Additional Half-Day Public Holiday.", + "messages": { + "en_MO": "Additional Half-Day Public Holiday", + "en_US": "Additional Half-Day Public Holiday", + "pt_MO": "Meio Dia de Feriado Público Adicional", + "th": "วันหยุดครึ่งวันเพิ่มเติม", + "zh_CN": "额外公众半日假", + "zh_MO": "額外公眾半日假" + }, + "countries": [ + "MO" + ] + }, + { + "id": "additional_holiday", + "msgid": "Additional holiday", + "new_comment": "", + "comment": "Additional holiday.", + "messages": { + "en_US": "Additional holiday", + "ms_MY": "Cuti Peristiwa", + "th": "วันหยุดพิเศษ" + }, + "countries": [ + "MY" + ] + }, + { + "id": "additional_holiday_in_commemoration_of_the_2017_sea_games", + "msgid": "Additional holiday in commemoration of the 2017 SEA Games", + "new_comment": "", + "comment": "Additional holiday in commemoration of the 2017 SEA Games.", + "messages": { + "en_US": "Additional holiday in commemoration of the 2017 SEA Games", + "ms_MY": "Cuti tambahan sempena memperingati SAT 2017", + "th": "วันหยุดเพิ่มเติมเนื่องในโอกาสการแข่งขันกีฬาซีเกมส์ปี 2017" + }, + "countries": [ + "MY" + ] + }, + { + "id": "additional_public_holiday_1", + "msgid": "Additional Public Holiday", + "new_comment": "", + "comment": "Additional Public Holiday.", + "messages": { + "en_AU": "Additional Public Holiday", + "en_MO": "Additional Public Holiday", + "en_US": "Additional Public Holiday", + "pt_MO": "Feriado Público Adicional", + "th": { + "AU": "วันหยุดพิเศษ (เพิ่มเติม)", + "MO": "วันหยุดเพิ่มเติม" + }, + "zh_CN": "额外公众假期", + "zh_MO": "額外公眾假期" + }, + "countries": [ + "AU", + "MO" + ] + }, + { + "id": "additional_public_holiday_2", + "msgid": "Additional public holiday", + "new_comment": "", + "comment": "Additional public holiday.", + "messages": { + "en_HK": "Additional public holiday", + "en_US": "Additional public holiday", + "ky": "Кошумча эс алуу күнү", + "ru_KG": "Дополнительный выходной", + "th": "วันหยุดเพิ่มเติม", + "zh_CN": "额外公众假期", + "zh_HK": "額外公眾假期" + }, + "countries": [ + "HK", + "KG" + ] + }, + { + "id": "additional_special_non_working_day", + "msgid": "Additional special (non-working) day", + "new_comment": "", + "comment": "Additional special (non-working) day.", + "messages": { + "en_PH": "Additional special (non-working) day", + "en_US": "Additional special (non-working) day", + "fil": "Karagdagang Espesyal na Araw (Walang Trabajo)", + "th": "วันหยุดพิเศษ (เพิ่มเติม)" + }, + "countries": [ + "PH" + ] + }, + { + "id": "adelaide_cup_day", + "msgid": "Adelaide Cup Day", + "new_comment": "", + "comment": "Adelaide Cup Day.", + "messages": { + "en_AU": "Adelaide Cup Day", + "en_US": "Adelaide Cup Day", + "th": "วันแอดิเลดคัพ" + }, + "countries": [ + "AU" + ] + }, + { + "id": "adhi_binara_full_moon_poya_day", + "msgid": "Adhi Binara Full Moon Poya Day", + "new_comment": "", + "comment": "Adhi Binara Full Moon Poya Day.", + "messages": { + "en_US": "Adhi Binara Full Moon Poya Day", + "si_LK": "අධි බිනර පුර පසළොස්වක පෝය දිනය", + "ta_LK": "அதி-பினர முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "adhi_esala_full_moon_poya_day", + "msgid": "Adhi Esala Full Moon Poya Day", + "new_comment": "", + "comment": "Adhi Esala Full Moon Poya Day.", + "messages": { + "en_US": "Adhi Esala Full Moon Poya Day", + "si_LK": "අධි ඇසල පුර පසළොස්වක පෝය දිනය", + "ta_LK": "அதி-எசல முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "adhi_poson_full_moon_poya_day", + "msgid": "Adhi Poson Full Moon Poya Day", + "new_comment": "", + "comment": "Adhi Poson Full Moon Poya Day.", + "messages": { + "en_US": "Adhi Poson Full Moon Poya Day", + "si_LK": "අධි පොසොන් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "அதி-பொசொன் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "adhi_vap_full_moon_poya_day", + "msgid": "Adhi Vap Full Moon Poya Day", + "new_comment": "", + "comment": "Adhi Vap Full Moon Poya Day.", + "messages": { + "en_US": "Adhi Vap Full Moon Poya Day", + "si_LK": "අධි වප් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "அதி-வப் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "adhi_vesak_full_mon_poya_day", + "msgid": "Adhi Vesak Full Mon Poya Day", + "new_comment": "", + "comment": "Adhi Vesak Full Mon Poya Day.", + "messages": { + "en_US": "Adhi Vesak Full Mon Poya Day", + "si_LK": "අධි වෙසක් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "அதி-வெசாக் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "admiral_dewey_celebration", + "msgid": "Admiral Dewey Celebration", + "new_comment": "", + "comment": "Admiral Dewey Celebration.", + "messages": { + "en_US": "Admiral Dewey Celebration", + "gu": "એડમિરલ ડ્યુઈની ઉજવણી", + "hi": "एडमिरल डेवी उत्सव" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "adwa_victory_day", + "msgid": "Adwa Victory Day", + "new_comment": "", + "comment": "Adwa Victory Day.", + "messages": { + "am": "የአድዋ ድል በዓል", + "ar": "عيد النصر في معركة عدوا", + "en_ET": "Adwa Victory Day", + "en_US": "Adwa Victory Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "afcon_victory_against_ivory_coast", + "msgid": "AFCON Victory Against Ivory Coast", + "new_comment": "", + "comment": "AFCON Victory Against Ivory Coast.", + "messages": { + "en_US": "AFCON Victory Against Ivory Coast", + "es": "Victoria de la AFCON contra Costa de Marfil" + }, + "countries": [ + "GQ" + ] + }, + { + "id": "afghanistan_independence_day", + "msgid": "Afghanistan Independence Day", + "new_comment": "", + "comment": "Afghanistan Independence Day.", + "messages": { + "en_US": "Afghanistan Independence Day", + "fa_AF": "روز استقلال افغانستان", + "ps_AF": "د افغانستان د استقلال ورځ" + }, + "countries": [ + "AF" + ] + }, + { + "id": "africa_day", + "msgid": "Africa Day", + "new_comment": "", + "comment": "Africa Day.", + "messages": { + "ar": "يوم أفريقيا", + "en_NA": "Africa Day", + "en_US": "Africa Day", + "fr": { + "GN": "Anniversaire de l'Union Africaine", + "ML": "Journée de l'Afrique" + }, + "pt_AO": "Dia da África", + "uk": "День Африки" + }, + "countries": [ + "AO", + "GN", + "ML", + "MR", + "NA" + ] + }, + { + "id": "africa_liberation_day", + "msgid": "Africa Liberation Day", + "new_comment": "", + "comment": "Africa Liberation Day.", + "messages": { + "en_GM": "Africa Liberation Day", + "en_US": "Africa Liberation Day" + }, + "countries": [ + "GM" + ] + }, + { + "id": "african_emancipation_day", + "msgid": "African Emancipation Day", + "new_comment": "", + "comment": "African Emancipation Day.", + "messages": { + "en_TT": "African Emancipation Day", + "en_US": "African Emancipation Day" + }, + "countries": [ + "TT" + ] + }, + { + "id": "african_liberation_day", + "msgid": "African Liberation Day", + "new_comment": "", + "comment": "African Liberation Day.", + "messages": { + "en_US": "African Liberation Day", + "es": "Día de la liberación Africana" + }, + "countries": [ + "GQ" + ] + }, + { + "id": "afro_shirazi_party_founding_day", + "msgid": "Afro-Shirazi Party Founding Day", + "new_comment": "", + "comment": "Afro-Shirazi Party Founding Day.", + "messages": { + "en_US": "Afro-Shirazi Party Founding Day", + "sw": "Kuzaliwa kwa ASP" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "agricultural_reform_day", + "msgid": "Agricultural Reform Day", + "new_comment": "", + "comment": "Agricultural Reform Day.", + "messages": { + "en_US": "Agricultural Reform Day", + "pt_ST": "Dia da Reforma Agrária" + }, + "countries": [ + "ST" + ] + }, + { + "id": "agriculture_and_labor_day", + "msgid": "Agriculture and Labor Day", + "new_comment": "", + "comment": "Agriculture and Labor Day.", + "messages": { + "en_US": "Agriculture and Labor Day", + "es": "Día de la Agricultura y el Trabajo", + "fr_HT": "Fête de l'Agriculture et du Travail", + "ht": "Jounen Agrikilti ak Travay" + }, + "countries": [ + "HT" + ] + }, + { + "id": "aitutaki_gospel_day", + "msgid": "Aitutaki Gospel Day", + "new_comment": "", + "comment": "Aitutaki Gospel Day.", + "messages": { + "en_CK": "Aitutaki Gospel Day", + "en_US": "Aitutaki Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "akshay_tritiya", + "msgid": "Akshay Tritiya", + "new_comment": "", + "comment": "Akshay Tritiya.", + "messages": { + "bn": "অক্ষয় তৃতীয়া", + "en_IN": "Akshay Tritiya", + "en_US": "Akshay Tritiya", + "gu": "અક્ષય તૃતીયા", + "hi": "अक्षय तृतीया", + "kn": "ಅಕ್ಷಯ ತೃತೀಯೆ", + "ml": "അക്ഷയ തൃതീയ", + "mr": "अक्षय तृतीया", + "pa": "ਅਕਸ਼ੈ ਤ੍ਰਿਤੀਆ", + "ta": "அக்ஷய திருதியை", + "te": "అక్షయ తృతీయ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "alaska_day", + "msgid": "Alaska Day", + "new_comment": "", + "comment": "Alaska Day.", + "messages": { + "en_US": "Alaska Day", + "th": "วันอะลาสกา" + }, + "countries": [ + "US" + ] + }, + { + "id": "albanian_alphabet_day", + "msgid": "Albanian Alphabet Day", + "new_comment": "", + "comment": "Albanian Alphabet Day.", + "messages": { + "en_US": "Albanian Alphabet Day", + "mk": "Ден на Албанската азбука", + "uk": "День албанського алфавіту" + }, + "countries": [ + "MK" + ] + }, + { + "id": "aleksis_kivi_day", + "msgid": "Aleksis Kivi Day", + "new_comment": "", + "comment": "Aleksis Kivi Day.", + "messages": { + "en_US": "Aleksis Kivi Day", + "fi": "Aleksis Kiven päivä", + "sv_FI": "Aleksis Kivi-dagen", + "th": "วันอเล็กซิส กีวี", + "uk": "День Алексіса Ківі" + }, + "countries": [ + "FI" + ] + }, + { + "id": "aleksis_kivi_day_day_of_finnish_literature", + "msgid": "Aleksis Kivi Day, Day of Finnish Literature", + "new_comment": "", + "comment": "Aleksis Kivi Day, Day of Finnish Literature.", + "messages": { + "en_US": "Aleksis Kivi Day, Day of Finnish Literature", + "fi": "Aleksis Kiven päivä, suomalaisen kirjallisuuden päivä", + "sv_FI": "Aleksis Kivi-dagen, den finska litteraturens dag", + "th": "วันอเล็กซิส กีวี, วันวรรณกรรมฟินแลนด์", + "uk": "День Алексіса Ківі, День фінської літератури" + }, + "countries": [ + "FI" + ] + }, + { + "id": "ali_s_birthday", + "msgid": "Ali's Birthday", + "new_comment": "", + "comment": "Ali's Birthday.", + "messages": { + "bn": "হযরত আলীর জন্মদিন", + "en_IN": "Hazarat Ali's Birthday", + "en_US": "Ali's Birthday", + "gu": "હઝરત અલીનો જન્મદિવસ", + "hi": "हज़रत अली का जन्मदिन", + "kn": "ಹಜರತ್ ಅಲಿಯವರ ಜನ್ಮದಿನ", + "ml": "ഹസ്രത്ത് അലിയുടെ ജന്മദിനം", + "mr": "हजरत अली यांचा वाढदिवस", + "pa": "ਹਜ਼ਰਤ ਅਲੀ ਦਾ ਜਨਮਦਿਨ", + "ta": "ஹஸ்ரத் அலியின் பிறந்தநாள்", + "te": "హజ్రత్ అలీ జన్మదినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "all_saints_day", + "msgid": "All Saints' Day", + "new_comment": "", + "comment": "All Saints' Day.", + "messages": { + "ar": "عيد جميع القديسين", + "ca": "Tots Sants", + "cnr": "Svi Sveti", + "de": "Allerheiligen", + "en_BF": "All Saints' Day", + "en_CI": "All Saints' Day", + "en_MO": "All Saints' Day", + "en_MU": "All Saints' Day", + "en_PH": "All Saints' Day", + "en_SC": "All Saints Day", + "en_TL": "All Saints Day", + "en_US": "All Saints' Day", + "es": { + "AR": "Todos Los Santos", + "BO": "Día de Todos los Santos", + "CL": "Día de Todos los Santos", + "CO": "Día de Todos los Santos", + "CV": "Día de Todos los Santos", + "ES": "Todos los Santos", + "GT": "Día de Todos los Santos", + "HT": "Día de Todos los Santos", + "PE": "Todos Los Santos" + }, + "fi": "Pyhäinpäivä", + "fil": "Araw ng mga Santo", + "fr": { + "BE": "Toussaint", + "BF": "Toussaint", + "CF": "Toussaint", + "CG": "Toussaint", + "CH": "Toussaint", + "CI": "Fête de la Toussaint", + "CV": "Toussaint", + "FR": "Toussaint", + "GA": "Toussaint", + "GN": "Toussaint", + "LB": "Toussaint", + "LU": "Toussaint", + "TG": "Toussaint" + }, + "fr_BI": "Toussaint", + "fr_BJ": "La Toussaint", + "fr_HT": "La Toussaint", + "fr_MC": "Le jour de la Toussaint", + "fr_NE": "Toussaint", + "fr_SN": "Toussaint", + "hr": "Svi sveti", + "ht": "Jou tout Sen", + "hu": "Mindenszentek", + "it": { + "CH": "Ognissanti", + "SM": "Tutti i Santi", + "VA": "Tutti i Santi" + }, + "it_IT": "Ognissanti", + "lb": "Allerhellgen", + "lt": "Visų Šventųjų diena", + "mg": "Fetin'ny olo-masina", + "mk": "Сите Светци", + "nl": "Allerheiligen", + "pl": "Uroczystość Wszystkich Świętych", + "pt_CV": "Dia de Todos os Santos", + "pt_MO": "Dia de Todos os Santos", + "pt_PT": "Dia de Todos os Santos", + "pt_TL": "Dia de Todos os Santos", + "sk": "Sviatok Všetkých svätých", + "sv": "Alla helgons dag", + "sv_FI": "Alla helgons dag", + "tet": "Loron Santu sira Hotu nian", + "th": "วันสมโภชนักบุญทั้งหลาย", + "uk": "День усіх святих", + "zh_CN": "诸圣节", + "zh_MO": "諸聖節" + }, + "countries": [ + "AD", + "AR", + "AT", + "BE", + "BF", + "BI", + "BJ", + "BO", + "CF", + "CG", + "CH", + "CI", + "CL", + "CO", + "CV", + "DE", + "ES", + "FI", + "FR", + "GA", + "GN", + "GT", + "HR", + "HT", + "HU", + "IT", + "LB", + "LI", + "LT", + "LU", + "MC", + "ME", + "MG", + "MK", + "MO", + "MU", + "NE", + "PE", + "PH", + "PL", + "PT", + "SC", + "SE", + "SK", + "SM", + "SN", + "TG", + "TL", + "VA" + ] + }, + { + "id": "all_saints_eve", + "msgid": "All Saints' Eve", + "new_comment": "", + "comment": "All Saints' Eve.", + "messages": { + "en_PH": "All Saints' Day Eve", + "en_US": "All Saints' Eve", + "fil": "Bisperas ng Araw ng mga Santo", + "sv": "Allahelgonsafton", + "th": "วันก่อนวันสมโภชนักบุญทั้งหลาย", + "uk": "Переддень Дня усіх святих" + }, + "countries": [ + "PH", + "SE" + ] + }, + { + "id": "all_souls_day", + "msgid": "All Souls' Day", + "new_comment": "", + "comment": "All Souls' Day.", + "messages": { + "en_MO": "All Soul's Day", + "en_PH": "All Souls' Day", + "en_TL": "All Souls Day", + "en_US": "All Souls' Day", + "es": { + "BO": "Día de Todos los Difuntos", + "EC": "Día de Difuntos", + "SV": "Día de los Difuntos", + "UY": "Día de los Difuntos" + }, + "fil": "Araw ng mga Kaluluwa", + "it": "Tutti i Fedeli Defunti", + "lt": "Mirusiųjų atminimo (Vėlinių) diena", + "pt_AO": "Dia dos Finados", + "pt_BR": "Finados", + "pt_MO": "Dia de Finados", + "pt_TL": "Dia de Todos os Fiéis Defuntos", + "tet": "Loron Matebian sira nian", + "th": "วันภาวนาอุทิศแด่ผู้ล่วงลับ", + "uk": { + "AO": "День усіх померлих", + "BO": "День усіх померлих", + "BR": "День усіх померлих", + "BVMF": "День усіх померлих", + "EC": "День усіх померлих", + "LT": "День памʼяті (День всіх померлих)", + "SV": "День усіх померлих", + "UY": "День усіх померлих" + }, + "zh_CN": "追思节", + "zh_MO": "追思節" + }, + "countries": [ + "AO", + "BO", + "BR", + "BVMF", + "EC", + "LT", + "MO", + "PH", + "SV", + "TL", + "US", + "UY", + "VA" + ] + }, + { + "id": "alphabet_day", + "msgid": "Alphabet Day", + "new_comment": "", + "comment": "Alphabet Day.", + "messages": { + "en_US": "Alphabet Day", + "sq": "Dita e Alfabetit", + "uk": "День алфавіту" + }, + "countries": [ + "AL" + ] + }, + { + "id": "alternative_holiday_for_s", + "msgid": "Alternative holiday for %s", + "new_comment": "", + "comment": "Alternative holiday for %s.", + "messages": { + "en_US": "Alternative holiday for %s", + "ko": "%s 대체 휴일", + "th": "ชดเชย%s" + }, + "countries": [ + "KR" + ] + }, + { + "id": "alternative_holiday_for_s_estimated", + "msgid": "Alternative holiday for %s (estimated)", + "new_comment": "", + "comment": "Alternative holiday for %s (estimated).", + "messages": { + "en_US": "Alternative holiday for %s (estimated)", + "ko": "%s 대체 휴일 (추정)", + "th": "ชดเชย%s (โดยประมาณ)" + }, + "countries": [ + "KR" + ] + }, + { + "id": "amazigh_new_year", + "msgid": "Amazigh New Year", + "new_comment": "", + "comment": "Amazigh New Year.", + "messages": { + "ar": "رأس السنة الأمازيغية", + "en_US": "Amazigh New Year", + "fr": { + "DZ": "Jour de l'An Amazigh", + "MA": "Nouvel an Amazigh" + }, + "kab": "Yennayer" + }, + "countries": [ + "DZ", + "MA" + ] + }, + { + "id": "amazonia_day", + "msgid": "Amazonia Day", + "new_comment": "", + "comment": "Amazonia Day.", + "messages": { + "en_US": "Amazonia Day", + "pt_BR": "Dia da Amazônia", + "uk": "День Амазонії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "america_day", + "msgid": "America Day", + "new_comment": "", + "comment": "America Day.", + "messages": { + "en_US": "America Day", + "es": "Día de América", + "uk": "День Америки" + }, + "countries": [ + "UY" + ] + }, + { + "id": "american_citizenship_day", + "msgid": "American Citizenship Day", + "new_comment": "", + "comment": "American Citizenship Day.", + "messages": { + "en_US": "American Citizenship Day", + "th": "วันแห่งความเป็นพลเมืองอเมริกัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "american_forces_evacuation_day", + "msgid": "American Forces Evacuation Day", + "new_comment": "", + "comment": "American Forces Evacuation Day.", + "messages": { + "ar": "عيد إجلاء القوات الأمريكية", + "en_US": "American Forces Evacuation Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "american_indian_heritage_day", + "msgid": "American Indian Heritage Day", + "new_comment": "", + "comment": "American Indian Heritage Day.", + "messages": { + "en_US": "American Indian Heritage Day", + "th": "วันอนุรักษ์มรดกชนพื้นเมืองอเมริกัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "american_samoa_flag_day", + "msgid": "American Samoa Flag Day", + "new_comment": "", + "comment": "American Samoa Flag Day.", + "messages": { + "en_US": "American Samoa Flag Day", + "th": "วันธงชาติอเมริกันซามัว" + }, + "countries": [ + "US" + ] + }, + { + "id": "american_withdrawal_day", + "msgid": "American Withdrawal Day", + "new_comment": "", + "comment": "American Withdrawal Day.", + "messages": { + "en_US": "American Withdrawal Day", + "fa_AF": "روز خروج آمریکایی ها", + "ps_AF": "د امریکا د وتلو ورځ" + }, + "countries": [ + "AF" + ] + }, + { + "id": "anant_chaturdashi", + "msgid": "Anant Chaturdashi", + "new_comment": "", + "comment": "Anant Chaturdashi.", + "messages": { + "bn": "অনন্ত চতুর্দশী", + "en_IN": "Anant Chaturdashi", + "en_US": "Anant Chaturdashi", + "gu": "અનંત ચતુર્દશી", + "hi": "अनंत चतुर्दशी", + "kn": "ಅನಂತ ಚತುರ್ಧಶಿ", + "ml": "അനന്ത ചതുർദശി", + "mr": "अनंत चतुर्दशी", + "pa": "ਅਨੰਤ ਚਤੁਰਦਸ਼ੀ", + "ta": "அனந்த சதுர்த்தசி", + "te": "అనంత చతుర్దశి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "ancestry_day", + "msgid": "Ancestry Day", + "new_comment": "", + "comment": "Ancestry Day.", + "messages": { + "en_US": "Ancestry Day", + "es": "Fiesta de los Antepasados", + "fr_HT": "Jour des Aïeux", + "ht": "Fèt Zansèt yo" + }, + "countries": [ + "HT" + ] + }, + { + "id": "andalusia_day", + "msgid": "Andalusia Day", + "new_comment": "", + "comment": "Andalusia Day.", + "messages": { + "ca": "Dia d'Andalusia", + "en_US": "Andalusia Day", + "es": "Día de Andalucía", + "th": "วันอันดาลูเซีย", + "uk": "День Андалусії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "andhra_pradesh_foundation_day", + "msgid": "Andhra Pradesh Foundation Day", + "new_comment": "", + "comment": "Andhra Pradesh Foundation Day.", + "messages": { + "bn": "অন্ধ্রপ্রদেশ প্রতিষ্ঠা দিবস", + "en_IN": "Andhra Pradesh Foundation Day", + "en_US": "Andhra Pradesh Foundation Day", + "gu": "આંધ્ર પ્રદેશ સ્થાપના દિવસ", + "hi": "आंध्र प्रदेश स्थापना दिवस", + "kn": "ಆಂಧ್ರ ಪ್ರದೇಶ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "ആന്ധ്രാപ്രദേശ് സ്ഥാപനദിനം", + "mr": "आंध्र प्रदेश स्थापना दिन", + "pa": "ਆਂਧਰਾ ਪ੍ਰਦੇਸ਼ ਸਥਾਪਨਾ ਦਿਵਸ", + "ta": "ஆந்திரப் பிரதேச நாள்", + "te": "ఆంధ్రప్రదేశ్ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "andorra_la_vella_festival", + "msgid": "Andorra la Vella Festival", + "new_comment": "", + "comment": "Andorra la Vella Festival.", + "messages": { + "ca": "Festa Major d'Andorra la Vella", + "en_US": "Andorra la Vella Festival", + "uk": "Свято парафії Андорра-ла-Велья" + }, + "countries": [ + "AD" + ] + }, + { + "id": "angam_day", + "msgid": "Angam Day", + "new_comment": "", + "comment": "Angam Day.", + "messages": { + "en_NR": "Angam Day", + "en_US": "Angam Day" + }, + "countries": [ + "NR" + ] + }, + { + "id": "anguilla_day", + "msgid": "Anguilla Day", + "new_comment": "", + "comment": "Anguilla Day.", + "messages": { + "en_AI": "Anguilla Day", + "en_US": "Anguilla Day" + }, + "countries": [ + "AI" + ] + }, + { + "id": "annexation_day", + "msgid": "Annexation Day", + "new_comment": "", + "comment": "Annexation Day.", + "messages": { + "en_NU": "Annexation Day", + "en_US": "Annexation Day", + "fr": "Fête de la prise de possession", + "th": "วันประกาศอธิปไตยเหนือดินแดน", + "uk": "Свято приєднання" + }, + "countries": [ + "FR", + "NU" + ] + }, + { + "id": "annexation_of_the_party_of_nicoya_to_costa_rica", + "msgid": "Annexation of the Party of Nicoya to Costa Rica", + "new_comment": "", + "comment": "Annexation of the Party of Nicoya to Costa Rica.", + "messages": { + "en_US": "Annexation of the Party of Nicoya to Costa Rica", + "es": "Anexión del Partido de Nicoya a Costa Rica", + "uk": "День приєднання Нікої" + }, + "countries": [ + "CR" + ] + }, + { + "id": "anniversary_day", + "msgid": "Anniversary Day", + "new_comment": "", + "comment": "Anniversary Day.", + "messages": { + "en_AU": "Anniversary Day", + "en_GB": "Anniversary Day", + "en_US": "Anniversary Day", + "th": "วันครบรอบการก่อตั้งอาณานิคม" + }, + "countries": [ + "AU", + "SH" + ] + }, + { + "id": "anniversary_for_the_death_of_hm_king_chulalongkorn", + "msgid": "Anniversary for the Death of HM King Chulalongkorn", + "new_comment": "", + "comment": "Anniversary for the Death of HM King Chulalongkorn.", + "messages": { + "en_US": "Anniversary for the Death of HM King Chulalongkorn", + "th": "วันสวรรคตแห่งพระบาทสมเด็จพระพุทธเจ้าหลวง", + "uk": "Річниця смерті Його Величності короля Чулалонгкорна" + }, + "countries": [ + "TH" + ] + }, + { + "id": "anniversary_for_the_death_of_king_bhumibol_adulyadej", + "msgid": "HM King Bhumibol Adulyadej Memorial Day", + "new_comment": "", + "comment": "Anniversary for the Death of King Bhumibol Adulyadej.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej Memorial Day", + "th": "วันคล้ายวันสวรรคตพระบาทสมเด็จพระปรมินทรมหาภูมิพลอดุลยเดช บรมนาถบพิตร", + "uk": "Річниця смерті Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "anniversary_for_the_death_of_king_bhumibol_adulyadej_the_great", + "msgid": "HM King Bhumibol Adulyadej the Great Memorial Day", + "new_comment": "", + "comment": "Anniversary for the Death of King Bhumibol Adulyadej the Great.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej the Great Memorial Day", + "th": "วันคล้ายวันสวรรคตพระบาทสมเด็จพระบรมชนกาธิเบศร มหาภูมิพลอดุลยเดชมหาราช บรมนาถบพิตร", + "uk": "Річниця смерті Його Величності короля Пуміпона Адульядета Великого" + }, + "countries": [ + "TH" + ] + }, + { + "id": "anniversary_of_death_of_president_felix_houphouet_boigny", + "msgid": "Anniversary of death of President Felix Houphouet-Boigny", + "new_comment": "", + "comment": "Anniversary of death of President Felix Houphouet-Boigny.", + "messages": { + "en_CI": "Anniversary of death of President Felix Houphouet-Boigny", + "en_US": "Anniversary of death of President Felix Houphouet-Boigny", + "fr": "Anniversaire du décès du Président Felix Houphouet-Boigny" + }, + "countries": [ + "CI" + ] + }, + { + "id": "anniversary_of_the_1st_national_assembly_election", + "msgid": "Anniversary of the 1st National Assembly Election", + "new_comment": "", + "comment": "Anniversary of the 1st National Assembly Election.", + "messages": { + "en_US": "Anniversary of the 1st National Assembly Election", + "ko": "5.10 제헌의회선거 1주년 기념일", + "th": "วันครบรอบ 1 ปีการเลือกตั้งสมัชชาแห่งชาติ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "anniversary_of_the_arab_league", + "msgid": "Anniversary of the Arab League", + "new_comment": "", + "comment": "Anniversary of the Arab League.", + "messages": { + "ar": "ذكرى إنشاء الجامعة العربية", + "en_US": "Anniversary of the Arab League" + }, + "countries": [ + "LY" + ] + }, + { + "id": "anniversary_of_the_arengo", + "msgid": "Anniversary of the Arengo", + "new_comment": "", + "comment": "Anniversary of the Arengo.", + "messages": { + "en_US": "Anniversary of the Arengo", + "it": "Anniversario dell'Arengo", + "uk": "Річниця Аренго" + }, + "countries": [ + "SM" + ] + }, + { + "id": "anniversary_of_the_arrival_of_the_first_welsh_settlers", + "msgid": "Anniversary of the arrival of the first Welsh settlers", + "new_comment": "", + "comment": "Anniversary of the arrival of the first Welsh settlers.", + "messages": { + "en_US": "Anniversary of the arrival of the first Welsh settlers", + "es": "Aniversario del arribo de los primeros colonizadores galeses", + "uk": "Річниця прибуття перших валлійських поселенців" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_battle_of_salta", + "msgid": "Anniversary of the Battle of Salta", + "new_comment": "", + "comment": "Anniversary of the Battle of Salta.", + "messages": { + "en_US": "Anniversary of the Battle of Salta", + "es": "Aniversario de la Batalla de Salta", + "uk": "Річниця битви при Сальті" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_battle_of_tucum_n", + "msgid": "Anniversary of the Battle of Tucumán", + "new_comment": "", + "comment": "Anniversary of the Battle of Tucumán.", + "messages": { + "en_US": "Anniversary of the Battle of Tucumán", + "es": "Aniversario de la Batalla de Tucumán", + "uk": "Річниця битви при Тукумані" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_capture_of_rome", + "msgid": "Anniversary of the capture of Rome", + "new_comment": "", + "comment": "Anniversary of the capture of Rome.", + "messages": { + "en_US": "Anniversary of the capture of Rome", + "it_IT": "Anniversario della Presa di Roma", + "th": "วันครบรอบการยึดกรุงโรม" + }, + "countries": [ + "IT" + ] + }, + { + "id": "anniversary_of_the_cnsp_coup", + "msgid": "Anniversary of the CNSP Coup", + "new_comment": "", + "comment": "Anniversary of the CNSP Coup.", + "messages": { + "en_US": "Anniversary of the CNSP Coup", + "fr_NE": "Anniversaire du coup d'État du CNSP" + }, + "countries": [ + "NE" + ] + }, + { + "id": "anniversary_of_the_coronation_day_of_the_reigning_sovereign_of_tonga", + "msgid": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga", + "new_comment": "", + "comment": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga.", + "messages": { + "en_US": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga", + "to": "Fakamanatu ʻo e ʻAho Hilifaki Kalauni ʻo ʻEne ʻAfio ko e Tuʻi ʻo Tonga ʻa ia ʻoku lolotonga Pule" + }, + "countries": [ + "TO" + ] + }, + { + "id": "anniversary_of_the_coronation_of_hm_king_george_tupou_i", + "msgid": "Anniversary of the Coronation of HM King George Tupou I", + "new_comment": "", + "comment": "Anniversary of the Coronation of HM King George Tupou I.", + "messages": { + "en_US": "Anniversary of the Coronation of HM King George Tupou I", + "to": "ʻAho Fakamanatu ʻo e Hilifaki Kalauni ʻo ʻEne ʻAfio ko Siaosi Tupou I" + }, + "countries": [ + "TO" + ] + }, + { + "id": "anniversary_of_the_country_s_name_change", + "msgid": "Anniversary of the Country's Name Change", + "new_comment": "", + "comment": "Anniversary of the Country's Name Change.", + "messages": { + "en_US": "Anniversary of the Country's Name Change", + "fr": "Anniversaire du changement du nom de notre Pays" + }, + "countries": [ + "CD" + ] + }, + { + "id": "anniversary_of_the_death_of_enrique_angelelli", + "msgid": "Anniversary of the Death of Enrique Angelelli", + "new_comment": "", + "comment": "Anniversary of the Death of Enrique Angelelli.", + "messages": { + "en_US": "Anniversary of the Death of Enrique Angelelli", + "es": "Día del Aniversario del Fallecimiento de Monseñor Enrique Angelelli", + "uk": "День смерті Енріке Анхелельї" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_death_of_general_jos_francisco_de_san_mart_n", + "msgid": "Anniversary of the Death of General José Francisco de San Martín", + "new_comment": "", + "comment": "Anniversary of the Death of General José Francisco de San Martín.", + "messages": { + "en_US": "Anniversary of the Death of General José Francisco de San Martín", + "es": "Día del Aniversario del Fallecimiento del General José Francisco de San Martín", + "uk": "День смерті генерала Хосе де Сан-Мартіна" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_death_of_general_manuel_belgrano", + "msgid": "Anniversary of the Death of General Manuel Belgrano", + "new_comment": "", + "comment": "Anniversary of the Death of General Manuel Belgrano.", + "messages": { + "en_US": "Anniversary of the Death of General Manuel Belgrano", + "es": "Día del Aniversario del Fallecimiento del General Manuel José Joaquín del Corazón de Jesús Belgrano", + "uk": "День смерті генерала Мануеля Бельграно" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_death_of_n_stor_carlos_kirchner", + "msgid": "Anniversary of the Death of Néstor Carlos Kirchner", + "new_comment": "", + "comment": "Anniversary of the Death of Néstor Carlos Kirchner.", + "messages": { + "en_US": "Anniversary of the Death of Néstor Carlos Kirchner", + "es": "Día del Aniversario del Fallecimiento del ex Presidente de la Nación Doctor Néstor Carlos Kirchner", + "uk": "День смерті Нестора Карлоса Кіршнера" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_death_of_ngel_vicente_pe_aloza", + "msgid": "Anniversary of the Death of Ángel Vicente Peñaloza", + "new_comment": "", + "comment": "Anniversary of the Death of Ángel Vicente Peñaloza.", + "messages": { + "en_US": "Anniversary of the Death of Ángel Vicente Peñaloza", + "es": "Día del Aniversario del Fallecimiento de Ángel Vicente Peñaloza", + "uk": "День смерті Анхеля Вісенте Пеньялоса" + }, + "countries": [ + "AR" + ] + }, + { + "id": "anniversary_of_the_election_of_the_holy_father", + "msgid": "Anniversary of the Election of the Holy Father", + "new_comment": "", + "comment": "Anniversary of the Election of the Holy Father.", + "messages": { + "en_US": "Anniversary of the Election of the Holy Father", + "it": "Anniversario dell'Elezione del Santo Padre", + "th": "วันคล้ายวันเลือกตั้งสมเด็จพระสันตะปาปา" + }, + "countries": [ + "VA" + ] + }, + { + "id": "anniversary_of_the_failed_attack_on_lom", + "msgid": "Anniversary of the Failed Attack on Lomé", + "new_comment": "", + "comment": "Anniversary of the Failed Attack on Lomé.", + "messages": { + "en_US": "Anniversary of the Failed Attack on Lomé", + "fr": "Anniversaire de l'attentat manqué contre Lomé" + }, + "countries": [ + "TG" + ] + }, + { + "id": "anniversary_of_the_fall_of_fascism_and_freedom_day", + "msgid": "Anniversary of the Fall of Fascism and Freedom Day", + "new_comment": "", + "comment": "Anniversary of the Fall of Fascism and Freedom Day.", + "messages": { + "en_US": "Anniversary of the Fall of Fascism and Freedom Day", + "it": "Anniversario della Caduta del Fascismo e Festa della Libertà", + "uk": "Річниця падіння фашизму та День свободи" + }, + "countries": [ + "SM" + ] + }, + { + "id": "anniversary_of_the_february_17_revolution", + "msgid": "Anniversary of the February 17 Revolution", + "new_comment": "", + "comment": "Anniversary of the February 17 Revolution.", + "messages": { + "ar": "ثورة 17 فبراير", + "en_US": "Anniversary of the February 17 Revolution" + }, + "countries": [ + "LY" + ] + }, + { + "id": "anniversary_of_the_foundation_of_vatican_city", + "msgid": "Anniversary of the Foundation of Vatican City", + "new_comment": "", + "comment": "Anniversary of the Foundation of Vatican City.", + "messages": { + "en_US": "Anniversary of the Foundation of Vatican City", + "it": "Anniversario della istituzione dello Stato della Città del Vaticano", + "th": "วันครบรอบการสถาปนานครรัฐวาติกัน" + }, + "countries": [ + "VA" + ] + }, + { + "id": "anniversary_of_the_founding_of_the_empire", + "msgid": "Anniversary of the founding of the Empire", + "new_comment": "", + "comment": "Anniversary of the founding of the Empire.", + "messages": { + "en_US": "Anniversary of the founding of the Empire", + "it_IT": "Anniversario della fondazione dell'Impero", + "th": "วันครบรอบการสถาปนาจักรวรรดิ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "anniversary_of_the_great_october_socialist_revolution", + "msgid": "Anniversary of the Great October Socialist Revolution", + "new_comment": "", + "comment": "Anniversary of the Great October Socialist Revolution.", + "messages": { + "ar": "ذكرى ثورة أكتوبر الاشتراكية العظمى", + "en_US": "Anniversary of the Great October Socialist Revolution", + "ru": "Годовщина Великой Октябрьской социалистической революции", + "th": "วันครบรอบการปฏิวัติสังคมนิยมแห่งเดือนตุลาคมอันยิ่งใหญ่", + "uk": "Річниця Великої Жовтневої соціалістичної революції", + "zh_CN": "十月革命胜利纪念日" + }, + "countries": [ + "RU", + "UA" + ] + }, + { + "id": "anniversary_of_the_installation_of_the_sultan_of_terengganu", + "msgid": "Anniversary of the Installation of the Sultan of Terengganu", + "new_comment": "", + "comment": "Anniversary of the Installation of the Sultan of Terengganu.", + "messages": { + "en_US": "Anniversary of the Installation of the Sultan of Terengganu", + "ms_MY": "Hari Ulang Tahun Pertabalan Sultan Terengganu", + "th": "วันครบรอบพระราชพิธีสถาปนาสุลต่านแห่งรัฐตรังกานู" + }, + "countries": [ + "MY" + ] + }, + { + "id": "anniversary_of_the_liberation_of_hong_kong", + "msgid": "Anniversary of the liberation of Hong Kong", + "new_comment": "", + "comment": "Anniversary of the liberation of Hong Kong.", + "messages": { + "en_HK": "Anniversary of the liberation of Hong Kong", + "en_US": "Anniversary of the liberation of Hong Kong", + "th": "วันครบรอบการปลดปล่อยฮ่องกง", + "zh_CN": "重光纪念日", + "zh_HK": "重光紀念日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "anniversary_of_the_liberation_of_the_republic_and_feast_of_saint_agatha", + "msgid": "Anniversary of the Liberation of the Republic and Feast of Saint Agatha", + "new_comment": "", + "comment": "Anniversary of the Liberation of the Republic and Feast of Saint Agatha.", + "messages": { + "en_US": "Anniversary of the Liberation of the Republic and Feast of Saint Agatha", + "it": "Anniversario della Liberazione della Repubblica e Festa di Sant'Agata", + "uk": "Річниця визволення Республіки та День Святої Агати" + }, + "countries": [ + "SM" + ] + }, + { + "id": "anniversary_of_the_march_on_rome", + "msgid": "Anniversary of the March on Rome", + "new_comment": "", + "comment": "Anniversary of the March on Rome.", + "messages": { + "en_US": "Anniversary of the March on Rome", + "it_IT": "Anniversario della Marcia su Roma", + "th": "วันครบรอบการเดินขบวนสู่กรุงโรม" + }, + "countries": [ + "IT" + ] + }, + { + "id": "anniversary_of_the_new_regime", + "msgid": "Anniversary of the New Regime", + "new_comment": "", + "comment": "Anniversary of the New Regime.", + "messages": { + "en_US": "Anniversary of the New Regime", + "fr": "Anniversaire du nouveau régime" + }, + "countries": [ + "CD" + ] + }, + { + "id": "anniversary_of_the_new_revolutionary_constitution", + "msgid": "Anniversary of the New Revolutionary Constitution", + "new_comment": "", + "comment": "Anniversary of the New Revolutionary Constitution.", + "messages": { + "en_US": "Anniversary of the New Revolutionary Constitution", + "fr": "Anniversaire de la nouvelle Constitution révolutionnaire" + }, + "countries": [ + "CD" + ] + }, + { + "id": "anniversary_of_the_popular_movement_of_the_revolution", + "msgid": "Anniversary of the Popular Movement of the Revolution", + "new_comment": "", + "comment": "Anniversary of the Popular Movement of the Revolution.", + "messages": { + "en_US": "Anniversary of the Popular Movement of the Revolution", + "fr": "Anniversaire du Mouvement populaire de la révolution" + }, + "countries": [ + "CD" + ] + }, + { + "id": "anniversary_of_the_proclamation_of_independence", + "msgid": "Anniversary of the Proclamation of Independence", + "new_comment": "", + "comment": "Anniversary of the Proclamation of Independence.", + "messages": { + "en_US": "Anniversary of the Proclamation of Independence", + "fr_NE": "L'anniversaire de la proclamation de l'indépendance" + }, + "countries": [ + "NE" + ] + }, + { + "id": "anniversary_of_the_revelation_of_the_quran", + "msgid": "Anniversary of the revelation of the Quran", + "new_comment": "", + "comment": "Anniversary of the revelation of the Quran.", + "messages": { + "en_US": "Anniversary of the revelation of the Quran", + "ms": "Hari Nuzul Al-Quran", + "th": "วันนูซุลอัลกุรอาน" + }, + "countries": [ + "BN" + ] + }, + { + "id": "anniversary_of_the_tragedy_of_beirut_port_explosion", + "msgid": "Anniversary of the tragedy of Beirut port explosion", + "new_comment": "", + "comment": "Anniversary of the tragedy of Beirut port explosion.", + "messages": { + "ar": "ذكرى مأساة انفجار مرفأ بيروت", + "en_US": "Anniversary of the tragedy of Beirut port explosion", + "fr": "Explosion du port de Beyrouth" + }, + "countries": [ + "LB" + ] + }, + { + "id": "anniversary_of_the_unification_of_italy", + "msgid": "Anniversary of the Unification of Italy", + "new_comment": "", + "comment": "Anniversary of the Unification of Italy.", + "messages": { + "en_US": "Anniversary of the Unification of Italy", + "it_IT": "Anniversario dell'Unità d'Italia", + "th": "วันครบรอบการรวมชาติอิตาลี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "anniversary_of_victory_in_europe", + "msgid": "Anniversary of Victory in Europe", + "new_comment": "", + "comment": "Anniversary of Victory in Europe.", + "messages": { + "en_US": "Anniversary of Victory in Europe", + "it_IT": "Anniversario della Vittoria in Europa", + "th": "วันแห่งชัยชนะในยุโรป" + }, + "countries": [ + "IT" + ] + }, + { + "id": "anti_aggression_day", + "msgid": "Anti-Aggression Day", + "new_comment": "", + "comment": "Anti-Aggression Day.", + "messages": { + "en_US": "Anti-Aggression Day", + "th": "วันต่อต้านการรุกราน", + "zh_CN": "反侵略日", + "zh_TW": "反侵略日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "anti_fascist_struggle_day", + "msgid": "Anti-Fascist Struggle Day", + "new_comment": "", + "comment": "Anti-Fascist Struggle Day.", + "messages": { + "en_US": "Anti-Fascist Struggle Day", + "hr": "Dan antifašističke borbe", + "uk": "День антифашистської боротьби" + }, + "countries": [ + "HR" + ] + }, + { + "id": "anzac_day", + "msgid": "ANZAC Day", + "new_comment": "", + "comment": "ANZAC Day.", + "messages": { + "coa_CC": "Hari ANZAC", + "en_AU": "ANZAC Day", + "en_CC": "ANZAC Day", + "en_CK": "Anzac Day", + "en_CX": "ANZAC Day", + "en_NF": "ANZAC Day", + "en_NU": "ANZAC Day", + "en_US": "ANZAC Day", + "th": "วันแอนแซค", + "to": "ʻAho Anzac" + }, + "countries": [ + "AU", + "CC", + "CK", + "CX", + "NF", + "NU", + "TO" + ] + }, + { + "id": "april_19_revolution_anniversary", + "msgid": "April 19 Revolution Anniversary", + "new_comment": "", + "comment": "April 19 Revolution Anniversary.", + "messages": { + "en_US": "April 19 Revolution Anniversary", + "ko": "4.19 혁명 기념일", + "th": "วันครบรอบการปฏิวัติ 19 เม.ย." + }, + "countries": [ + "KR" + ] + }, + { + "id": "arbaeen", + "msgid": "Arbaeen", + "new_comment": "", + "comment": "Arbaeen.", + "messages": { + "bn": "চেহলুম", + "en_IN": "Chehlum", + "en_US": "Arbaeen", + "fa_IR": "اربعین حسینی", + "gu": "ચેહલુમ", + "hi": "चेहल्लुम", + "kn": "ಚೆಹ್ಲುಮ್", + "ml": "ചെഹ്ലും", + "mr": "चेहल्लुम", + "pa": "ਚਹਿਲੁਮ", + "ta": "செஹ்லும்", + "te": "చెహ్లుం" + }, + "countries": [ + "IN", + "IR" + ] + }, + { + "id": "arbor_day", + "msgid": "Arbor Day", + "new_comment": "", + "comment": "Arbor Day.", + "messages": { + "en_US": "Arbor Day", + "th": "วันปลูกต้นไม้", + "zh_CN": "植树节", + "zh_TW": "植樹節" + }, + "countries": [ + "TW", + "US" + ] + }, + { + "id": "armed_forces_day", + "msgid": "Armed Forces Day", + "new_comment": "", + "comment": "Armed Forces Day.", + "messages": { + "ar_EG": "عيد القوات المسلحة", + "az": "Azərbaycan Respublikasının Silahlı Qüvvələri günü", + "en_SL": "Armed Forces Day", + "en_US": "Armed Forces Day", + "es": "Día de las Fuerzas Armadas", + "fr": { + "CD": "Fête des Forces armées zaïroises", + "EG": "Fête des Forces Armées", + "ML": "Journée de l'Armée" + }, + "fr_BJ": "Fête des Forces Armées Populaires du Bénin", + "fr_HT": "Jour des Forces Armées", + "ht": "Jounen Fòs Lame", + "id": "Hari Angkatan Perang", + "ko": "국군의 날", + "ko_KP": "건군절", + "mn": "Зэвсэгт хүчний өдөр", + "ms": "Hari Angkatan Bersenjata Diraja Brunei", + "my": "တပ်မတော်နေ့", + "pt_MZ": "Dia das Forças Armadas de Libertação Nacional", + "pt_ST": "Dia das Forças Armadas", + "th": { + "BN": "วันกองทัพบรูไน", + "ID": "วันกองทัพสาธารณรัฐอินโดนีเซีย", + "KR": "วันกองทัพ", + "MM": "วันกองทัพพม่า", + "TW": "วันกองทัพ" + }, + "uk": { + "AZ": "День Збройних Сил", + "ID": "День Збройних сил", + "MZ": "День Збройних сил національного визволення" + }, + "zh_CN": "军人节", + "zh_TW": "軍人節" + }, + "countries": [ + "AZ", + "BJ", + "BN", + "CD", + "EG", + "GQ", + "HT", + "ID", + "KP", + "KR", + "ML", + "MM", + "MN", + "MZ", + "SL", + "ST", + "TW" + ] + }, + { + "id": "armenian_cinema_day", + "msgid": "Armenian Cinema Day", + "new_comment": "", + "comment": "Armenian Cinema Day.", + "messages": { + "en_US": "Armenian Cinema Day", + "hy": "Հայ կինոյի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "armenian_orthodox_christmas_day", + "msgid": "Armenian Orthodox Christmas Day", + "new_comment": "", + "comment": "Armenian Orthodox Christmas Day.", + "messages": { + "ar": "عيد الميلاد عند الطوائف الارمنية الارثوذكسية", + "en_US": "Armenian Orthodox Christmas Day", + "fr": "Noël Arménien" + }, + "countries": [ + "LB" + ] + }, + { + "id": "armistice_day", + "msgid": "Armistice Day", + "new_comment": "", + "comment": "Armistice Day.", + "messages": { + "ar": "يوم الهدنة", + "de": "Waffenstillstand", + "en_CA": "Armistice Day", + "en_US": "Armistice Day", + "fr": { + "BE": "Jour de l'Armistice", + "CA": "Jour de l'Armistice", + "FR": "Armistice" + }, + "nl": "Wapenstilstand", + "sr": "Дан примирја у Првом светском рату", + "th": "วันสงบศึก", + "uk": "День перемирʼя" + }, + "countries": [ + "BE", + "CA", + "FR", + "RS", + "US" + ] + }, + { + "id": "armistice_signed", + "msgid": "Armistice signed", + "new_comment": "", + "comment": "Armistice signed.", + "messages": { + "en_US": "Armistice signed", + "gu": "યુદ્ધવિરામ પર હસ્તાક્ષર થયા", + "hi": "युद्धविराम पर हस्ताक्षर किए गए" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "army_abolition_day", + "msgid": "Army Abolition Day", + "new_comment": "", + "comment": "Army Abolition Day.", + "messages": { + "en_US": "Army Abolition Day", + "es": "Día de la Abolición del Ejército", + "uk": "День ліквідації армії" + }, + "countries": [ + "CR" + ] + }, + { + "id": "army_day", + "msgid": "Army Day", + "new_comment": "", + "comment": "Army Day.", + "messages": { + "ar": "عيد الجيش", + "en_US": "Army Day", + "es": { + "CL": "Día de las Glorias del Ejército", + "GT": "Día del Ejército", + "HN": "Día de las Fuerzas Armadas" + }, + "hy": "Բանակի օր", + "th": "วันสถาปนากองทัพปลดปล่อยประชาชนจีน", + "uk": { + "CL": "День військової слави", + "HN": "День збройних сил" + }, + "zh_CN": "建军节", + "zh_TW": "建軍節" + }, + "countries": [ + "AM", + "CL", + "CN", + "GT", + "HN", + "IQ" + ] + }, + { + "id": "arrival_day", + "msgid": "Arrival Day", + "new_comment": "", + "comment": "Arrival Day.", + "messages": { + "en_GY": "Arrival Day", + "en_US": "Arrival Day" + }, + "countries": [ + "GY" + ] + }, + { + "id": "arrival_of_indentured_laborers", + "msgid": "Arrival of Indentured Laborers", + "new_comment": "", + "comment": "Arrival of Indentured Laborers.", + "messages": { + "en_MU": "Arrival of Indentured Labourers", + "en_US": "Arrival of Indentured Laborers" + }, + "countries": [ + "MU" + ] + }, + { + "id": "asarnha_bucha", + "msgid": "Asarnha Bucha", + "new_comment": "", + "comment": "Asarnha Bucha.", + "messages": { + "en_US": "Asarnha Bucha", + "th": "วันอาสาฬหบูชา", + "uk": "Асарна Буча" + }, + "countries": [ + "TH" + ] + }, + { + "id": "ascension_day", + "msgid": "Ascension Day", + "new_comment": "", + "comment": "Ascension Day.", + "messages": { + "ar": { + "DZ": "عيد الصعود", + "PS": "خميس الصعود" + }, + "da": "Kristi himmelfartsdag", + "de": { + "AT": "Christi Himmelfahrt", + "BE": "Christi Himmelfahrt", + "CH": "Auffahrt", + "DE": "Christi Himmelfahrt", + "LI": "Auffahrt", + "LU": "Christi Himmelfahrt", + "PL": "Christi Himmelfahrt" + }, + "en_BF": "Ascension Day", + "en_BQ": "Ascension Day", + "en_CI": "Ascension Day", + "en_GB": "Ascension Day", + "en_NA": "Ascension Day", + "en_US": "Ascension Day", + "es": { + "CL": "Ascensión del Señor", + "CO": "Ascensión del señor", + "HT": "Ascensión" + }, + "fi": "Helatorstai", + "fo": "Kristi himmalsferðardagur", + "fr": { + "BE": "Ascension", + "BF": "Ascension", + "CF": "Ascension", + "CG": "Ascension", + "CH": "Ascension", + "CI": "Jour de l'Ascension", + "DZ": "Ascension", + "FR": "Ascension", + "GA": "Ascension", + "LU": "Ascension", + "TG": "Fête de l'Ascension" + }, + "fr_BI": "Jour de l'Ascension", + "fr_BJ": "Jour de l'Ascension", + "fr_HT": "Ascension", + "fr_MC": "Le jour de l'Ascension", + "fr_NE": "Ascension", + "fr_SN": "Jeudi de l'Ascension", + "fy": "Himelfeartsdei", + "ht": "Asansyon", + "id": "Kenaikan Yesus Kristus", + "is": "Uppstigningardagur", + "it": { + "CH": "Ascensione di Gesù", + "VA": "Ascensione del Signore" + }, + "it_IT": "Ascensione", + "kab": "Ass n walluy", + "kl": "Qilaliarfik", + "lb": "Christi Himmelfaart", + "mg": "Fiakaran'ny Jesosy kristy tany an-danitra", + "nl": { + "AW": "Hemelvaartsdag", + "BE": "O. L. H. Hemelvaart", + "BQ": "Hemelvaartsdag", + "CW": "Hemelvaartsdag", + "NL": "Hemelvaartsdag", + "SX": "Hemelvaartsdag" + }, + "no": "Kristi himmelfartsdag", + "pap_AW": "Dia di Asuncion", + "pap_BQ": "Asenshon", + "pap_CW": "Dia di Asenshon", + "pl": "Wniebowstąpienie Pańskie", + "pt_PT": "Quinta-feira da Ascensão", + "sv": "Kristi himmelsfärdsdag", + "sv_FI": "Kristi himmelsfärdsdag", + "th": "วันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์", + "uk": "Вознесіння Господнє" + }, + "countries": [ + "AT", + "AW", + "BE", + "BF", + "BI", + "BJ", + "BQ", + "CF", + "CG", + "CH", + "CI", + "CL", + "CO", + "CW", + "DE", + "DK", + "DZ", + "FI", + "FO", + "FR", + "GA", + "GL", + "HT", + "ID", + "IS", + "IT", + "LI", + "LU", + "MC", + "MG", + "NA", + "NE", + "NL", + "NO", + "PL", + "PS", + "PT", + "SE", + "SH", + "SN", + "SX", + "TG", + "VA" + ] + }, + { + "id": "ascension_joint_holiday", + "msgid": "Ascension Joint Holiday", + "new_comment": "", + "comment": "Ascension Joint Holiday.", + "messages": { + "en_US": "Ascension Joint Holiday", + "id": "Cuti Bersama Kenaikan Yesus Kristus", + "th": "หยุดร่วมพิเศษวันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์", + "uk": "Додатковий вихідний на Вознесіння Господнє" + }, + "countries": [ + "ID" + ] + }, + { + "id": "ascension_whit_break", + "msgid": "Ascension/Whit Break", + "new_comment": "", + "comment": "Ascension/Whit Break.", + "messages": { + "de": "Himmelfahrts-/Pfingstferien", + "en_US": "Ascension/Whit Break", + "th": "ปิดเทอมวันสมโภชพระเยซูเจ้าเสด็จสู่สวรรค์/เพ็นเทคอสต์", + "uk": "Канікули на Вознесіння/Трійцю" + }, + "countries": [ + "DE" + ] + }, + { + "id": "ascent_of_saint_dominic", + "msgid": "Ascent of Saint Dominic", + "new_comment": "", + "comment": "Ascent of Saint Dominic.", + "messages": { + "en_US": "Ascent of Saint Dominic", + "es": "Subida de Santo Domingo", + "uk": "Підйом Святого Домініка" + }, + "countries": [ + "NI" + ] + }, + { + "id": "ash_wednesday", + "msgid": "Ash Wednesday", + "new_comment": "", + "comment": "Ash Wednesday.", + "messages": { + "de": "Aschermittwoch", + "en_GB": "Ash Wednesday", + "en_TL": "Ash Wednesday", + "en_US": "Ash Wednesday", + "es": "Miércoles de Ceniza", + "fr": "Mercredi des Cendres", + "fr_HT": "Mercredi des Cendres", + "ht": "Mèkredi Sann", + "pt_BR": "Início da Quaresma", + "pt_CV": "Quarta-feira de Cinzas", + "pt_TL": "Quarta-Feira de Cinzas", + "tet": "Kuarta-Feira Sinzas", + "th": "วันพุธรับเถ้า", + "uk": "Попільна середа" + }, + "countries": [ + "BR", + "CV", + "HT", + "KY", + "TL" + ] + }, + { + "id": "ashura", + "msgid": "Ashura", + "new_comment": "", + "comment": "Ashura.", + "messages": { + "ar": { + "BD": "عاشوراء", + "BH": "عاشوراء", + "DZ": "عاشورة", + "IQ": "عاشوراء", + "LB": "عاشوراء", + "LY": "عاشوراء" + }, + "bn": { + "BD": "আশুরা", + "IN": "মহরম" + }, + "en_BD": "Ashura", + "en_GM": "Yawmul Ashura", + "en_IN": "Muharram", + "en_PK": "Ashura", + "en_US": "Ashura", + "fa_AF": "عاشورا", + "fa_IR": "عاشورای حسینی", + "fr": "Achoura", + "fr_SN": "Tamxarit", + "gu": "મોહરમ", + "hi": "मुहर्रम", + "kab": "Ɛacura", + "kn": "ಮೊಹರಂ ಕಡೆ ದಿನ", + "ml": "മുഹറം", + "mr": "मोहरम", + "pa": "ਮੁਹੱਰਮ", + "ps_AF": "عاشورا", + "ta": "முஹர்ரம்", + "te": "మొహర్రం", + "ur_PK": "عاشورہ" + }, + "countries": [ + "AF", + "BD", + "BH", + "DZ", + "GM", + "IN", + "IQ", + "IR", + "LB", + "LY", + "PK", + "SN", + "XNSE" + ] + }, + { + "id": "assam_day", + "msgid": "Assam Day", + "new_comment": "", + "comment": "Assam Day.", + "messages": { + "bn": "অসম দিবস", + "en_IN": "Assam Day", + "en_US": "Assam Day", + "gu": "આસામ દિવસ", + "hi": "असम दिवस", + "kn": "ಅಸ್ಸಾಂ ದಿನೋತ್ಸವ", + "ml": "അസം ദിനം", + "mr": "आसाम दिन", + "pa": "ਅਸਾਮ ਦਿਵਸ", + "ta": "அஸ்ஸாம் நாள்", + "te": "అస్సాం దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "assassination_attempt_on_president_reagan_markets_close_at_3_17pm", + "msgid": "Assassination attempt on President Reagan (markets close at 3:17pm)", + "new_comment": "", + "comment": "Assassination attempt on President Reagan (markets close at 3:17pm).", + "messages": { + "en_US": "Assassination attempt on President Reagan (markets close at 3:17pm)", + "gu": "રાષ્ટ્રપતિ રેગન પર હત્યાનો પ્રયાસ (બજારો બપોરે 3:17 વાગ્યે બંધ થાય છે)", + "hi": "राष्ट्रपति रीगन पर हत्या का प्रयास (बाज़ार दोपहर 3:17 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "assassination_of_president_john_f_kennedy_markets_close_at_2_07pm", + "msgid": "Assassination of President John F. Kennedy (markets close at 2:07pm)", + "new_comment": "", + "comment": "Assassination of President John F. Kennedy (markets close at 2:07pm).", + "messages": { + "en_US": "Assassination of President John F. Kennedy (markets close at 2:07pm)", + "gu": "રાષ્ટ્રપતિ જોન એફ. કેનેડીની હત્યા (બજારો બપોરે 2:07 વાગ્યે બંધ થાય છે)", + "hi": "राष्ट्रपति जॉन एफ. कैनेडी की हत्या (बाज़ार दोपहर 2:07 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "assault_and_capture_of_cape_arica", + "msgid": "Assault and Capture of Cape Arica", + "new_comment": "", + "comment": "Assault and Capture of Cape Arica.", + "messages": { + "en_US": "Assault and Capture of Cape Arica", + "es": "Asalto y Toma del Morro de Arica", + "uk": "Штурм і захоплення Морро-де-Аріка" + }, + "countries": [ + "CL" + ] + }, + { + "id": "assumption_day", + "msgid": "Assumption Day", + "new_comment": "", + "comment": "Assumption Day.", + "messages": { + "ar": { + "DZ": "عيد انتقال السيدة العذراء", + "LB": "عيد انتقال العذراء" + }, + "ca": { + "AD": "Assumpció", + "ES": "Assumpció de la Verge" + }, + "de": "Mariä Himmelfahrt", + "en_BF": "Assumption Day", + "en_CI": "Assumption Day", + "en_GM": "Feast of the Assumption", + "en_MO": "Assumption Day", + "en_MU": "Assumption of the Blessed Virgin Mary", + "en_SC": "Assumption Day", + "en_US": "Assumption Day", + "es": { + "AR": "Día de la Asunción", + "CL": "Asunción de la Virgen", + "CO": "La Asunción", + "CV": "Asunción de Nuestra Señora", + "ES": "Asunción de la Virgen", + "GT": "Día de la Asunción", + "HT": "Asunción de María" + }, + "fr": { + "BE": "Assomption", + "BF": "Assomption", + "CF": "Assomption", + "CH": "Assomption", + "CI": "Fête de l'Assomption", + "CV": "Assomption de Notre-Dame", + "DZ": "Assomption", + "FR": "Assomption", + "GA": "Assomption de Marie", + "GN": "Assomption", + "LB": "Assomption", + "LU": "Assomption", + "RW": "Assomption", + "TG": "Assomption" + }, + "fr_BI": "Assomption", + "fr_BJ": "Jour de l'Assomption", + "fr_HT": "Assomption de Marie", + "fr_MC": "Le jour de l'Assomption", + "fr_NE": "Assomption", + "fr_SN": "Assomption", + "hr": "Velika Gospa", + "ht": "Sipozisyon Mari", + "id": "Mikraj Santa Maria", + "it": { + "CH": "Assunzione di Maria", + "SM": "Assunzione della B.V. Maria" + }, + "it_IT": "Maria Santissima Assunta", + "kab": "Ass n walluy n tmaryam", + "lb": "Léiffrawëschdag", + "lt": "Žolinė (Švč. Mergelės Marijos ėmimo į dangų diena)", + "mg": "Fiakaran'ny Masina Maria tany an-danitra", + "nl": "O. L. V. Hemelvaart", + "pl": "Wniebowzięcie Najświętszej Marii Panny", + "pt_CV": "Dia da Assunção", + "pt_MO": "Assunção de Nossa Senhora", + "pt_PT": "Assunção de Nossa Senhora", + "rw": "Ijyanwa mu Ijuru rya Bikiramariya", + "sl": "Marijino vnebovzetje", + "th": "วันสมโภชแม่พระรับเกียรติยกขึ้นสวรรค์", + "uk": "Внебовзяття Пресвятої Діви Марії", + "zh_CN": "圣母升天", + "zh_MO": "聖母升天" + }, + "countries": [ + "AD", + "AR", + "AT", + "BE", + "BF", + "BI", + "BJ", + "CF", + "CH", + "CI", + "CL", + "CO", + "CV", + "DE", + "DZ", + "ES", + "FR", + "GA", + "GM", + "GN", + "GT", + "HR", + "HT", + "ID", + "IT", + "LB", + "LT", + "LU", + "MC", + "MG", + "MO", + "MU", + "NE", + "PL", + "PT", + "RW", + "SC", + "SI", + "SM", + "SN", + "TG" + ] + }, + { + "id": "assumption_of_mary_day_1", + "msgid": "Assumption Of Mary Day", + "new_comment": "", + "comment": "Assumption Of Mary Day.", + "messages": { + "en_US": "Assumption Of Mary Day", + "it_IT": "Assunzione della Beata Vergine Maria", + "th": "วันสมโภชแม่พระรับเกียรติยกขึ้นสวรรค์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "assumption_of_mary_day_2", + "msgid": "Assumption of Mary Day", + "new_comment": "", + "comment": "Assumption of Mary Day.", + "messages": { + "en_US": "Assumption of Mary Day", + "it": "Assunzione di Maria Santissima", + "th": "วันสมโภชแม่พระรับเกียรติยกขึ้นสวรรค์" + }, + "countries": [ + "VA" + ] + }, + { + "id": "asturias_day", + "msgid": "Asturias Day", + "new_comment": "", + "comment": "Asturias Day.", + "messages": { + "ca": "Dia d'Astúries", + "en_US": "Asturias Day", + "es": "Día de Asturias", + "th": "วันอัสตูเรียส", + "uk": "День Астурії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "asuncion_foundation_s_day", + "msgid": "Asuncion Foundation's Day", + "new_comment": "", + "comment": "Asuncion Foundation's Day.", + "messages": { + "en_US": "Asuncion Foundation's Day", + "es": "Día de la Fundación de Asunción", + "uk": "День заснування Асунсьйона" + }, + "countries": [ + "PY" + ] + }, + { + "id": "atiu_gospel_day", + "msgid": "Atiu Gospel Day", + "new_comment": "", + "comment": "Atiu Gospel Day.", + "messages": { + "en_CK": "Atiu Gospel Day", + "en_US": "Atiu Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "augsburg_peace_festival", + "msgid": "Augsburg Peace Festival", + "new_comment": "", + "comment": "Augsburg Peace Festival.", + "messages": { + "de": "Augsburger Hohes Friedensfest", + "en_US": "Augsburg Peace Festival", + "th": "วันเทศกาลสันติภาพเอาก์สบวร์ก", + "uk": "Аугсбурзьке свято миру" + }, + "countries": [ + "DE" + ] + }, + { + "id": "august_bank_holiday", + "msgid": "August Bank Holiday", + "new_comment": "", + "comment": "August Bank Holiday.", + "messages": { + "en_GB": "August Bank Holiday", + "en_US": "August Bank Holiday" + }, + "countries": [ + "SH" + ] + }, + { + "id": "august_monday", + "msgid": "August Monday", + "new_comment": "", + "comment": "August Monday.", + "messages": { + "en_AI": "August Monday", + "en_US": "August Monday" + }, + "countries": [ + "AI" + ] + }, + { + "id": "august_thursday", + "msgid": "August Thursday", + "new_comment": "", + "comment": "August Thursday.", + "messages": { + "en_AI": "August Thursday", + "en_US": "August Thursday" + }, + "countries": [ + "AI" + ] + }, + { + "id": "australia_day", + "msgid": "Australia Day", + "new_comment": "", + "comment": "Australia Day.", + "messages": { + "coa_CC": "Hari Australia", + "en_AU": "Australia Day", + "en_CC": "Australia Day", + "en_CX": "Australia Day", + "en_NF": "Australia Day", + "en_US": "Australia Day", + "th": "วันชาติออสเตรเลีย" + }, + "countries": [ + "AU", + "CC", + "CX", + "NF" + ] + }, + { + "id": "autonomy_day", + "msgid": "Autonomy Day", + "new_comment": "", + "comment": "Autonomy Day.", + "messages": { + "en_US": "Autonomy Day", + "pt_BR": "Dia da Autonomia", + "pt_ST": "Dia da Autonomia do Príncipe", + "uk": "День автономії" + }, + "countries": [ + "BR", + "ST" + ] + }, + { + "id": "autumn_break", + "msgid": "Autumn Break", + "new_comment": "", + "comment": "Autumn Break.", + "messages": { + "de": "Herbstferien", + "en_US": "Autumn Break", + "th": "ปิดเทอมฤดูใบไม้ร่วง", + "uk": "Осінні канікули" + }, + "countries": [ + "DE" + ] + }, + { + "id": "autumnal_equinox_day", + "msgid": "Autumnal Equinox Day", + "new_comment": "", + "comment": "Autumnal Equinox Day.", + "messages": { + "en_US": "Autumnal Equinox Day", + "ja": "秋分の日", + "th": "วันศารทวิษุวัต" + }, + "countries": [ + "JP" + ] + }, + { + "id": "aymara_new_year", + "msgid": "Aymara New Year", + "new_comment": "", + "comment": "Aymara New Year.", + "messages": { + "en_US": "Aymara New Year", + "es": "Año Nuevo Aymara Amazónico", + "uk": "Новий рік Аймара" + }, + "countries": [ + "BO" + ] + }, + { + "id": "baba_banda_singh_bahadur_s_birthday", + "msgid": "Baba Banda Singh Bahadur's Birthday", + "new_comment": "", + "comment": "Baba Banda Singh Bahadur's Birthday.", + "messages": { + "bn": "বাবা বান্দা সিং বাহাদুরের জন্মজয়ন্তী", + "en_IN": "Baba Banda Singh Bahadur's Jayanti", + "en_US": "Baba Banda Singh Bahadur's Birthday", + "gu": "બાબા બંદા સિંહ બહાદુર જયંતિ", + "hi": "बाबा बंदा सिंह बहादुर जयंती", + "kn": "ಬಾಬಾ ಬಂದಾ ಸಿಂಗ್ ಬಹಾದೂರ್ ಜಯಂತಿ", + "ml": "ബാബാ ബന്ദാ സിംഗ് ബഹാദൂർ ജയന്തി", + "mr": "बाबा बंदा सिंह बहादूर जयंती", + "pa": "ਬਾਬਾ ਬੰਦਾ ਸਿੰਘ ਬਹਾਦਰ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "பாபா பண்டா சிங் பகதூர் ஜெயந்தி", + "te": "బాబా బందా సింగ్ బహదూర్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "back_office_work_load", + "msgid": "Back office work load", + "new_comment": "", + "comment": "Back office work load.", + "messages": { + "en_US": "Back office work load", + "gu": "બેક ઓફિસના કામનો બોજ", + "hi": "बैक ऑफिस काम का बोझ" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "baekbeom_kim_ku_s_funeral_ceremony", + "msgid": "Baekbeom Kim Ku's Funeral Ceremony", + "new_comment": "", + "comment": "Baekbeom Kim Ku's Funeral Ceremony.", + "messages": { + "en_US": "Baekbeom Kim Ku's Funeral Ceremony", + "ko": "백범 김구 선생 국민장 영결식", + "th": "พิธีศพ แพ็กบ็อม คิม กู" + }, + "countries": [ + "KR" + ] + }, + { + "id": "bahag_bihu", + "msgid": "Bahag Bihu", + "new_comment": "", + "comment": "Bahag Bihu.", + "messages": { + "bn": "বহাগ বিহু", + "en_IN": "Bahag Bihu", + "en_US": "Bahag Bihu", + "gu": "બહાગ બિહુ", + "hi": "बहाग बिहु", + "kn": "ಭಾಗ ಬಿಹು", + "ml": "ഭാഗം ബിഹു", + "mr": "बहाग बिहू", + "pa": "ਬਹਾਗ ਬਿਹੂ", + "ta": "பஹாக் பிஹு", + "te": "బహగ్ బిహు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bahia_independence_day", + "msgid": "Bahia Independence Day", + "new_comment": "", + "comment": "Bahia Independence Day.", + "messages": { + "en_US": "Bahia Independence Day", + "pt_BR": "Independência da Bahia", + "uk": "День незалежності Баїї" + }, + "countries": [ + "BR" + ] + }, + { + "id": "baisakhi", + "msgid": "Baisakhi", + "new_comment": "", + "comment": "Baisakhi.", + "messages": { + "bn": "বৈশাখী", + "en_IN": "Baisakhi", + "en_US": "Baisakhi", + "gu": "વૈસાખી", + "hi": "बैसाखी", + "kn": "ವೈಸಾಖಿ", + "ml": "വൈസാഖി", + "mr": "बैसाखी", + "pa": "ਵਿਸਾਖੀ", + "ta": "வைசாகி", + "te": "వైశాఖి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bak_full_moon_poya_day", + "msgid": "Bak Full Moon Poya Day", + "new_comment": "", + "comment": "Bak Full Moon Poya Day.", + "messages": { + "en_US": "Bak Full Moon Poya Day", + "si_LK": "බක් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "பக் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "bank_employee_day", + "msgid": "Bank Employee Day", + "new_comment": "", + "comment": "Bank Employee Day.", + "messages": { + "en_US": "Bank Employee Day", + "es": "Día del Empleado Bancario", + "uk": "День банківського працівника" + }, + "countries": [ + "XMEX" + ] + }, + { + "id": "bank_holiday", + "msgid": "Bank Holiday", + "new_comment": "", + "comment": "Bank Holiday.", + "messages": { + "de": "Bankschlusstag", + "en_AU": "Bank Holiday", + "en_GB": "Bank Holiday", + "en_GD": "Bank Holiday", + "en_US": "Bank Holiday", + "es": { + "AR": "Asueto bancario", + "CL": "Feriado bancario" + }, + "fr": "Jour de fermeture bancaire", + "ja": "銀行休業日", + "nl": "Banksluitingsdag", + "th": "วันหยุดธนาคาร", + "uk": "Банківський вихідний" + }, + "countries": [ + "AR", + "AU", + "BE", + "CL", + "GD", + "GI", + "JP" + ] + }, + { + "id": "bankers_day", + "msgid": "Bankers' Day", + "new_comment": "", + "comment": "Bankers' Day.", + "messages": { + "en_US": "Bankers' Day", + "es": "Día del Bancario", + "uk": "День банківських працівників" + }, + "countries": [ + "AR" + ] + }, + { + "id": "barth_lemy_boganda_day", + "msgid": "Barthélemy Boganda Day", + "new_comment": "", + "comment": "Barthélemy Boganda Day.", + "messages": { + "en_US": "Barthélemy Boganda Day", + "fr": "Journée Barthélemy Boganda" + }, + "countries": [ + "CF" + ] + }, + { + "id": "basant_panchami", + "msgid": "Basant Panchami", + "new_comment": "", + "comment": "Basant Panchami.", + "messages": { + "bn": "বসন্ত পঞ্চমী", + "en_IN": "Basant Panchami", + "en_US": "Basant Panchami", + "gu": "વસંત પંચમી", + "hi": "बसंत पंचमी", + "kn": "ವಸಂತ ಪಂಚಮಿ", + "ml": "വസന്ത പഞ്ചമി", + "mr": "बसंत पंचमी", + "pa": "ਬਸੰਤ ਪੰਚਮੀ", + "ta": "வசந்த பஞ்சமி", + "te": "వసంత పంచమి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "basant_panchami_shri_panchami", + "msgid": "Basant Panchami / Shri Panchami", + "new_comment": "", + "comment": "Basant Panchami / Shri Panchami.", + "messages": { + "bn": "বসন্ত পঞ্চমী / শ্রী পঞ্চমী", + "en_IN": "Basant Panchami / Shri Panchami", + "en_US": "Basant Panchami / Shri Panchami", + "gu": "વસંત પંચમી / શ્રી પંચમી", + "hi": "बसंत पंचमी / श्री पंचमी", + "kn": "ವಸಂತ ಪಂಚಮಿ / ಶ್ರೀ ಪಂಚಮಿ", + "ml": "വസന്ത പഞ്ചമി / ശ്രീ പഞ്ചമി", + "mr": "बसंत पंचमी / श्री पंचमी", + "pa": "ਬਸੰਤ ਪੰਚਮੀ / ਸ੍ਰੀ ਪੰਚਮੀ", + "ta": "வசந்த பஞ்சமி / ஸ்ரீ பஞ்சமி", + "te": "వసంత పంచమి / శ్రీ పంచమి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bathukamma_festival", + "msgid": "Bathukamma Festival", + "new_comment": "", + "comment": "Bathukamma Festival.", + "messages": { + "bn": "বাথুকাম্মা উৎসব", + "en_IN": "Bathukamma Festival", + "en_US": "Bathukamma Festival", + "gu": "બથુકમ્મા ઉત્સવ", + "hi": "बतुकम्मा महोत्सव", + "kn": "ಬತುಕಮ್ಮ ಹಬ್ಬ", + "ml": "ബത്തുകമ്മ ഉത്സവം", + "mr": "बथुकम्मा उत्सव", + "pa": "ਬਾਥੁਕੰਮਾ ਤਿਉਹਾਰ", + "ta": "பதுக்கம்மா திருவிழா", + "te": "బతుకమ్మ పండుగ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "battle_of_angamos", + "msgid": "Battle of Angamos Day", + "new_comment": "", + "comment": "Battle of Angamos.", + "messages": { + "en_US": "Battle of Angamos Day", + "es": "Combate de Angamos", + "uk": "День битви під Ангамосом" + }, + "countries": [ + "PE" + ] + }, + { + "id": "battle_of_arica_and_flag_day", + "msgid": "Battle of Arica and Flag Day", + "new_comment": "", + "comment": "Battle of Arica and Flag Day.", + "messages": { + "en_US": "Battle of Arica and Flag Day", + "es": "Batalla de Arica y Día de la Bandera", + "uk": "День битви за Аріку та День прапора" + }, + "countries": [ + "PE" + ] + }, + { + "id": "battle_of_ayacucho", + "msgid": "Battle of Ayacucho Day", + "new_comment": "", + "comment": "Battle of Ayacucho.", + "messages": { + "en_US": "Battle of Ayacucho Day", + "es": "Batalla de Ayacucho", + "uk": "День битви при Аякучо" + }, + "countries": [ + "PE" + ] + }, + { + "id": "battle_of_boyaca", + "msgid": "Battle of Boyacá", + "new_comment": "", + "comment": "Battle of Boyaca.", + "messages": { + "en_US": "Battle of Boyacá", + "es": "Batalla de Boyacá", + "uk": "Річниця перемоги при Бояка" + }, + "countries": [ + "CO" + ] + }, + { + "id": "battle_of_carabobo", + "msgid": "Battle of Carabobo", + "new_comment": "", + "comment": "Battle of Carabobo.", + "messages": { + "en_US": "Battle of Carabobo", + "es": "Batalla de Carabobo", + "uk": "День битви при Карабобо" + }, + "countries": [ + "VE" + ] + }, + { + "id": "battle_of_jun_n", + "msgid": "Battle of Junín Day", + "new_comment": "", + "comment": "Battle of Junín.", + "messages": { + "en_US": "Battle of Junín Day", + "es": "Batalla de Junín", + "uk": "День битви під Хуніном" + }, + "countries": [ + "PE" + ] + }, + { + "id": "battle_of_las_piedras", + "msgid": "Battle of Las Piedras", + "new_comment": "", + "comment": "Battle of Las Piedras.", + "messages": { + "en_US": "Battle of Las Piedras", + "es": "Batalla de Las Piedras", + "uk": "День битви при Лас-Пʼєдрас" + }, + "countries": [ + "UY" + ] + }, + { + "id": "battle_of_naefels_victory_day", + "msgid": "Battle of Naefels Victory Day", + "new_comment": "", + "comment": "Battle of Naefels Victory Day.", + "messages": { + "de": "Näfelser Fahrt", + "en_US": "Battle of Naefels Victory Day", + "fr": "Fahrtsfest", + "it": "Battaglia di Näfels", + "th": "วันรำลึกชัยชนะยุทธการเนเฟลส์", + "uk": "Свято перемоги під Нефельсом" + }, + "countries": [ + "CH" + ] + }, + { + "id": "battle_of_san_jacinto_day", + "msgid": "Battle of San Jacinto Day", + "new_comment": "", + "comment": "Battle of San Jacinto Day.", + "messages": { + "en_US": "Battle of San Jacinto Day", + "es": "Batalla de San Jacinto", + "uk": "Річниця битви під Сан-Хасінто" + }, + "countries": [ + "NI" + ] + }, + { + "id": "battle_of_the_boyne", + "msgid": "Battle of the Boyne", + "new_comment": "", + "comment": "Battle of the Boyne.", + "messages": { + "en_GB": "Battle of the Boyne", + "en_US": "Battle of the Boyne", + "th": "วันรำลึกยุทธการแม่น้ำบอยน์" + }, + "countries": [ + "GB" + ] + }, + { + "id": "beaches_day", + "msgid": "Beaches Day", + "new_comment": "", + "comment": "Beaches Day.", + "messages": { + "en_US": "Beaches Day", + "es": "Día de las Playas", + "uk": "День пляжів" + }, + "countries": [ + "UY" + ] + }, + { + "id": "beginning_of_ramadan", + "msgid": "Beginning of Ramadan", + "new_comment": "", + "comment": "Beginning of Ramadan.", + "messages": { + "en_US": "Beginning of Ramadan", + "ms_MY": "Awal Ramadan", + "th": "วันแรกการถือศีลอด" + }, + "countries": [ + "MY" + ] + }, + { + "id": "beginning_of_the_armed_struggle_day", + "msgid": "Liberation Movement Day", + "new_comment": "", + "comment": "Beginning of the Armed Struggle Day.", + "messages": { + "en_US": "Liberation Movement Day", + "pt_AO": "Dia do Início da Luta Armada", + "uk": "День початку збройної боротьби" + }, + "countries": [ + "AO" + ] + }, + { + "id": "beginning_of_the_armed_struggle_for_national_liberation_day", + "msgid": "Liberation Movement Day", + "new_comment": "", + "comment": "Beginning of the Armed Struggle for National Liberation Day.", + "messages": { + "en_US": "Liberation Movement Day", + "pt_AO": "Dia do Início da Luta Armada de Libertação Nacional", + "uk": "День початку збройної боротьби за національне визволення" + }, + "countries": [ + "AO" + ] + }, + { + "id": "bengali_new_year_s_day", + "msgid": "Bengali New Year's Day", + "new_comment": "", + "comment": "Bengali New Year's Day.", + "messages": { + "ar": "رأس السنة البنغالية", + "bn": "পহেলা বৈশাখ", + "en_BD": "Pohela Boishakh", + "en_US": "Bengali New Year's Day" + }, + "countries": [ + "BD" + ] + }, + { + "id": "beni_day", + "msgid": "Beni Day", + "new_comment": "", + "comment": "Beni Day.", + "messages": { + "en_US": "Beni Day", + "es": "Día del departamento de Beni", + "uk": "День департаменту Бені" + }, + "countries": [ + "BO" + ] + }, + { + "id": "benito_ju_rez_s_birthday", + "msgid": "Benito Juárez's birthday", + "new_comment": "", + "comment": "Benito Juárez's birthday.", + "messages": { + "en_US": "Benito Juárez's birthday", + "es": "Natalicio de Benito Juárez", + "uk": "Річниця Беніто Хуареса" + }, + "countries": [ + "MX", + "XMEX" + ] + }, + { + "id": "bennington_battle_day", + "msgid": "Bennington Battle Day", + "new_comment": "", + "comment": "Bennington Battle Day.", + "messages": { + "en_US": "Bennington Battle Day", + "th": "วันรำลึกยุทธการเบนนิงตัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "bermuda_day", + "msgid": "Bermuda Day", + "new_comment": "", + "comment": "Bermuda Day.", + "messages": { + "en_BM": "Bermuda Day", + "en_US": "Bermuda Day" + }, + "countries": [ + "BM" + ] + }, + { + "id": "betico_day", + "msgid": "Betico Day", + "new_comment": "", + "comment": "Betico Day.", + "messages": { + "en_US": "Betico Day", + "nl": "Beticodag", + "pap_AW": "Dia di Betico", + "uk": "День Бетіко" + }, + "countries": [ + "AW" + ] + }, + { + "id": "bhagat_singh_s_birthday", + "msgid": "Bhagat Singh's Birthday", + "new_comment": "", + "comment": "Bhagat Singh's Birthday.", + "messages": { + "bn": "ভগত সিংয়ের জন্মজয়ন্তী", + "en_IN": "Bhagat Singh's Jayanti", + "en_US": "Bhagat Singh's Birthday", + "gu": "ભગત સિંહ જયંતિ", + "hi": "भगत सिंह जयंती", + "kn": "ಭಗತ್ ಸಿಂಗ್ ಜಯಂತಿ", + "ml": "ഭഗത് സിംഗ് ജയന്തി", + "mr": "भगतसिंह जयंती", + "pa": "ਸ਼ਹੀਦ ਭਗਤ ਸਿੰਘ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "பகத் சிங் ஜெயந்தி", + "te": "భగత్ సింగ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bhai_dooj", + "msgid": "Bhai Dooj", + "new_comment": "", + "comment": "Bhai Dooj.", + "messages": { + "en_IN": "Bhau Bhij", + "en_US": "Bhai Dooj", + "gu": "ભાઈ બીજ", + "hi": "भाई दूज", + "mr": "भाऊबीज" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "bhai_duj", + "msgid": "Bhai Duj", + "new_comment": "", + "comment": "Bhai Duj.", + "messages": { + "bn": "ভাই দুজ", + "en_IN": "Bhai Duj", + "en_US": "Bhai Duj", + "gu": "ભાઈ દૂજ", + "hi": "भाई दूज", + "kn": "ಭಾಯಿ ದೂಜ್", + "ml": "ഭായ് ദൂജ്", + "mr": "भाई दूज", + "pa": "ਭਾਈ ਦੂਜ", + "ta": "பாய் தூஜ்", + "te": "భాయ్ దూజ్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bhai_tika", + "msgid": "Bhai Tika", + "new_comment": "", + "comment": "Bhai Tika.", + "messages": { + "en_US": "Bhai Tika", + "kn": "ಭಾಯಿ ತಿಕಾ", + "ne": "भाइटीका" + }, + "countries": [ + "NP" + ] + }, + { + "id": "bicentenary_of_the_battle_of_salta", + "msgid": "Bicentenary of the Battle of Salta", + "new_comment": "", + "comment": "Bicentenary of the Battle of Salta.", + "messages": { + "en_US": "Bicentenary of the Battle of Salta", + "es": "Bicentenario de la Batalla de Salta", + "uk": "200-річчя битви при Сальті" + }, + "countries": [ + "AR" + ] + }, + { + "id": "bicentenary_of_the_battle_of_tucuman", + "msgid": "Bicentenary of the Battle of Tucumán", + "new_comment": "", + "comment": "Bicentenary of the Battle of Tucuman.", + "messages": { + "en_US": "Bicentenary of the Battle of Tucumán", + "es": "Bicentenario de la Batalla de Tucumán", + "uk": "200-річчя битви при Тукумані" + }, + "countries": [ + "AR" + ] + }, + { + "id": "bicentenary_of_the_creation_and_first_oath_of_the_national_flag", + "msgid": "Bicentenary of the creation and first oath of the national flag", + "new_comment": "", + "comment": "Bicentenary of the creation and first oath of the national flag.", + "messages": { + "en_US": "Bicentenary of the creation and first oath of the national flag", + "es": "Bicentenario de la creación y primera jura de la bandera nacional", + "uk": "200-річчя створення та першої присяги державному прапору" + }, + "countries": [ + "AR" + ] + }, + { + "id": "bicentenary_of_the_inaugural_session_of_the_national_constituent_assembly_of_the_year_1813", + "msgid": "Bicentenary of the inaugural session of the National Constituent Assembly of the year 1813", + "new_comment": "", + "comment": "Bicentenary of the inaugural session of the National Constituent Assembly of the year 1813.", + "messages": { + "en_US": "Bicentenary of the inaugural session of the National Constituent Assembly of the year 1813", + "es": "Bicentenario de la sesión inaugural de la Asamblea Nacional Constituyente del año 1813", + "uk": "200-річчя інавгураційної сесії Національних установчих зборів 1813 року" + }, + "countries": [ + "AR" + ] + }, + { + "id": "bicentenary_of_the_may_revolution", + "msgid": "Bicentenary of the May Revolution", + "new_comment": "", + "comment": "Bicentenary of the May Revolution.", + "messages": { + "en_US": "Bicentenary of the May Revolution", + "es": "Bicentenario de la Revolución de Mayo", + "uk": "200-річчя Травневої революції" + }, + "countries": [ + "AR" + ] + }, + { + "id": "bicentennial_of_mexican_independence_bridge_day", + "msgid": "Bicentennial of Mexican Independence (Bridge day)", + "new_comment": "", + "comment": "Bicentennial of Mexican Independence (Bridge day).", + "messages": { + "en_US": "Bicentennial of Mexican Independence (Bridge day)", + "es": "Bicentenario de la Independencia de México (Día Puente)", + "uk": "200-річчя незалежності Мексики (додатковий вихідний)" + }, + "countries": [ + "XMEX" + ] + }, + { + "id": "big_day", + "msgid": "Big Day", + "new_comment": "", + "comment": "Big Day.", + "messages": { + "en_GB": "Big Day", + "en_US": "Big Day", + "tvl": "Po Lahi" + }, + "countries": [ + "TV" + ] + }, + { + "id": "bihar_day", + "msgid": "Bihar Day", + "new_comment": "", + "comment": "Bihar Day.", + "messages": { + "bn": "বিহার দিবস", + "en_IN": "Bihar Day", + "en_US": "Bihar Day", + "gu": "બિહાર દિવસ", + "hi": "बिहार दिवस", + "kn": "ಬಿಹಾರ್ ದಿನೋತ್ಸವ", + "ml": "ബിഹാർ ദിനം", + "mr": "बिहार दिन", + "pa": "ਬਿਹਾਰ ਦਿਵਸ", + "ta": "பீகார் நாள்", + "te": "బీహార్ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bijaya_dashami", + "msgid": "Bijaya Dashami", + "new_comment": "", + "comment": "Bijaya Dashami.", + "messages": { + "en_US": "Bijaya Dashami", + "kn": "ವಿಜಯ ದಶಮಿ", + "ne": "विजया दशमी" + }, + "countries": [ + "NP" + ] + }, + { + "id": "binara_full_moon_poya_day", + "msgid": "Binara Full Moon Poya Day", + "new_comment": "", + "comment": "Binara Full Moon Poya Day.", + "messages": { + "en_US": "Binara Full Moon Poya Day", + "si_LK": "බිනර පුර පසළොස්වක පෝය දිනය", + "ta_LK": "பினர முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "birth_anniversary_of_guru_rinpoche", + "msgid": "Birth Anniversary of Guru Rinpoche", + "new_comment": "", + "comment": "Birth Anniversary of Guru Rinpoche.", + "messages": { + "dz": "ཨོ་རྒྱན་གུ་རུ་རིན་པོ་ཆེའི་འཁྲུངས་སྐར་དུས་ཆེན་ངལ་གསོ།", + "en_US": "Birth Anniversary of Guru Rinpoche" + }, + "countries": [ + "BT" + ] + }, + { + "id": "birth_anniversary_of_his_majesty_the_king", + "msgid": "Birth Anniversary of His Majesty the King", + "new_comment": "", + "comment": "Birth Anniversary of His Majesty the King.", + "messages": { + "dz": "མི་དབང་མངའ་བདག་རིན་པོ་ཆེའི་འཁྲུངས་སྐར་དུས་ཆེན་ངལ་གསོལ།", + "en_US": "Birth Anniversary of His Majesty the King" + }, + "countries": [ + "BT" + ] + }, + { + "id": "birth_anniversary_of_jean_jacques_dessalines", + "msgid": "Birth Anniversary of Jean-Jacques Dessalines", + "new_comment": "", + "comment": "Birth Anniversary of Jean-Jacques Dessalines.", + "messages": { + "en_US": "Birth Anniversary of Jean-Jacques Dessalines", + "es": "Aniversario del Nacimiento de Jean-Jacques Dessalines", + "fr_HT": "Anniversaire de Naissance de Jean-Jacques Dessalines", + "ht": "Anivèsè Nesans Jean-Jacques Dessalines" + }, + "countries": [ + "HT" + ] + }, + { + "id": "birth_anniversary_of_the_3rd_druk_gyalpo", + "msgid": "Birth Anniversary of the 3rd Druk Gyalpo", + "new_comment": "", + "comment": "Birth Anniversary of the 3rd Druk Gyalpo.", + "messages": { + "dz": "མི་དབང་འབྲུག་རྒྱལ་གསུམ་པའི་འཁྲུངས་སྐར་དུས་ཆེན་ངལ་གསོལ།", + "en_US": "Birth Anniversary of the 3rd Druk Gyalpo" + }, + "countries": [ + "BT" + ] + }, + { + "id": "birth_anniversary_of_the_4th_druk_gyalpo_constitution_day", + "msgid": "Birth Anniversary of the 4th Druk Gyalpo - Constitution Day", + "new_comment": "", + "comment": "Birth Anniversary of the 4th Druk Gyalpo - Constitution Day.", + "messages": { + "dz": "མི་དབང་འབྲུག་རྒྱལ་བཞི་པའི་འཁྲུངས་སྐར་དུས་ཆེན་ངལ་གསོལ།", + "en_US": "Birth Anniversary of the 4th Druk Gyalpo - Constitution Day" + }, + "countries": [ + "BT" + ] + }, + { + "id": "birthday_of_artigas", + "msgid": "Birthday of Artigas", + "new_comment": "", + "comment": "Birthday of Artigas.", + "messages": { + "en_US": "Birthday of Artigas", + "es": "Natalicio de Artigas", + "uk": "Річниця Артігаса" + }, + "countries": [ + "UY" + ] + }, + { + "id": "birthday_of_eugenio_mar_a_de_hostos", + "msgid": "Birthday of Eugenio María de Hostos", + "new_comment": "", + "comment": "Birthday of Eugenio María de Hostos.", + "messages": { + "en_US": "Birthday of Eugenio María de Hostos", + "th": "วันเกิดเอวเฮนิโอ มารีอา เด โฮสโตส" + }, + "countries": [ + "US" + ] + }, + { + "id": "birthday_of_h_m_the_queen", + "msgid": "Birthday of H.M. the Queen", + "new_comment": "", + "comment": "Birthday of H.M. the Queen.", + "messages": { + "en_US": "Birthday of H.M. the Queen", + "nl": "Verjaardag van H.M. de Koningin" + }, + "countries": [ + "SR" + ] + }, + { + "id": "birthday_of_her_majesty_the_queen_mother_norodom_monineath_sihanouk_of_cambodia", + "msgid": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "new_comment": "", + "comment": "Birthday of Her Majesty the Queen-Mother NORODOM MONINEATH SIHANOUK of Cambodia.", + "messages": { + "en_US": "HM Queen Norodom Monineath Sihanouk the Queen-Mother's Birthday", + "km": "ព្រះរាជពិធីបុណ្យចម្រើនព្រះជន្ម សម្តេចព្រះមហាក្សត្រី ព្រះវររាជមាតា នរោត្តម មុនិនាថ សីហនុ", + "th": "พระราชพิธีเฉลิมพระชนมพรรษา สมเด็จพระบรมราชินี นโรดม มนีนาถ สีหนุ" + }, + "countries": [ + "KH" + ] + }, + { + "id": "birthday_of_his_majesty_preah_bat_samdech_preah_boromneath_norodom_sihamoni_king_of_cambodia", + "msgid": "HM King Norodom Sihamoni's Birthday", + "new_comment": "", + "comment": "Birthday of His Majesty Preah Bat Samdech Preah Boromneath NORODOM SIHAMONI, King of Cambodia.", + "messages": { + "en_US": "HM King Norodom Sihamoni's Birthday", + "km": "ព្រះរាជពិធីបុណ្យចម្រើនព្រះជន្ម ព្រះករុណា ព្រះបាទសម្តេចព្រះបរមនាថ នរោត្តម សីហមុនី", + "th": "พระราชพิธีเฉลิมพระชนมพรรษา พระบาทสมเด็จพระบรมนาถ นโรดมสีหมุนี พระมหากษัตริย์แห่งราชอาณาจักรกัมพูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "birthday_of_hm_yang_di_pertuan_agong", + "msgid": "Birthday of HM Yang di-Pertuan Agong", + "new_comment": "", + "comment": "Birthday of HM Yang di-Pertuan Agong.", + "messages": { + "en_US": "Birthday of HM Yang di-Pertuan Agong", + "ms_MY": "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong", + "th": "วันคล้ายวันพระราชสมภพสมเด็จพระราชาธิบดีแห่งมาเลเซีย" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_imam_ali", + "msgid": "Birthday of Imam Ali", + "new_comment": "", + "comment": "Birthday of Imam Ali.", + "messages": { + "en_US": "Birthday of Imam Ali", + "fa_IR": "ولادت امام علی علیه السلام و روز پدر" + }, + "countries": [ + "IR" + ] + }, + { + "id": "birthday_of_mahdi", + "msgid": "Birthday of Mahdi", + "new_comment": "", + "comment": "Birthday of Mahdi.", + "messages": { + "en_US": "Birthday of Mahdi", + "fa_IR": "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان" + }, + "countries": [ + "IR" + ] + }, + { + "id": "birthday_of_mamerto_esqui", + "msgid": "Birthday of Mamerto Esquiú", + "new_comment": "", + "comment": "Birthday of Mamerto Esquiú.", + "messages": { + "en_US": "Birthday of Mamerto Esquiú", + "es": "Natalicio de Fray Mamerto Esquiú", + "uk": "День народження Мамерто Ескуї" + }, + "countries": [ + "AR" + ] + }, + { + "id": "birthday_of_martin_luther_king_jr", + "msgid": "Birthday of Martin Luther King, Jr", + "new_comment": "", + "comment": "Birthday of Martin Luther King, Jr..", + "messages": { + "en_US": "Birthday of Martin Luther King, Jr.", + "th": "วันเกิดมาร์ติน ลูเทอร์ คิง จูเนียร์" + }, + "countries": [ + "US" + ] + }, + { + "id": "birthday_of_muhammad_and_imam_ja_far_al_sadiq", + "msgid": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "new_comment": "", + "comment": "Birthday of Muhammad and Imam Ja'far al-Sadiq.", + "messages": { + "en_US": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "fa_IR": "میلاد رسول اکرم و امام جعفر صادق علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "birthday_of_simon_bolivar", + "msgid": "Birthday of Simon Bolivar", + "new_comment": "", + "comment": "Birthday of Simon Bolivar.", + "messages": { + "en_US": "Birthday of Simon Bolivar", + "es": "Natalicio de Simón Bolívar", + "uk": "Річниця Сімона Болівара" + }, + "countries": [ + "VE" + ] + }, + { + "id": "birthday_of_the_governor_of_malacca", + "msgid": "Birthday of the Governor of Malacca", + "new_comment": "", + "comment": "Birthday of the Governor of Malacca.", + "messages": { + "en_US": "Birthday of the Governor of Malacca", + "ms_MY": "Hari Jadi Yang di-Pertua Negeri Melaka", + "th": "วันคล้ายวันเกิดผู้ว่าการรัฐมะละกา" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_governor_of_penang", + "msgid": "Birthday of the Governor of Penang", + "new_comment": "", + "comment": "Birthday of the Governor of Penang.", + "messages": { + "en_US": "Birthday of the Governor of Penang", + "ms_MY": "Hari Jadi Yang di-Pertua Negeri Pulau Pinang", + "th": "วันคล้ายวันเกิดผู้ว่าการรัฐปีนัง" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_governor_of_sabah", + "msgid": "Birthday of the Governor of Sabah", + "new_comment": "", + "comment": "Birthday of the Governor of Sabah.", + "messages": { + "en_US": "Birthday of the Governor of Sabah", + "ms_MY": "Hari Jadi Yang di-Pertua Negeri Sabah", + "th": "วันคล้ายวันเกิดผู้ว่าการรัฐซาบาห์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_governor_of_sarawak", + "msgid": "Birthday of the Governor of Sarawak", + "new_comment": "", + "comment": "Birthday of the Governor of Sarawak.", + "messages": { + "en_US": "Birthday of the Governor of Sarawak", + "ms_MY": "Hari Jadi Yang di-Pertua Negeri Sarawak", + "th": "วันคล้ายวันเกิดผู้ว่าการรัฐซาราวัก" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_heir_to_the_crown_of_tonga", + "msgid": "Birthday of the Heir to the Crown of Tonga", + "new_comment": "", + "comment": "Birthday of the Heir to the Crown of Tonga.", + "messages": { + "en_US": "Birthday of the Heir to the Crown of Tonga", + "to": "ʻAho ʻAloʻi ʻo e ʻEa ki he Kalauni ʻo Tonga" + }, + "countries": [ + "TO" + ] + }, + { + "id": "birthday_of_the_marshal_of_finland", + "msgid": "Birthday of the Marshal of Finland", + "new_comment": "", + "comment": "Birthday of the Marshal of Finland.", + "messages": { + "en_US": "Birthday of the Marshal of Finland", + "fi": "Suomen marsalkan syntymäpäivä", + "sv_FI": "Marskalken av Finland födelsedag", + "th": "วันคล้ายวันเกิดจอมพลแห่งฟินแลนด์", + "uk": "День народження маршала Фінляндії" + }, + "countries": [ + "FI" + ] + }, + { + "id": "birthday_of_the_raja_of_perlis", + "msgid": "Birthday of the Raja of Perlis", + "new_comment": "", + "comment": "Birthday of the Raja of Perlis.", + "messages": { + "en_US": "Birthday of the Raja of Perlis", + "ms_MY": "Hari Ulang Tahun Keputeraan Raja Perlis", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐปะลิส" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_reigning_sovereign_of_tonga", + "msgid": "Birthday of the Reigning Sovereign of Tonga", + "new_comment": "", + "comment": "Birthday of the Reigning Sovereign of Tonga.", + "messages": { + "en_US": "Birthday of the Reigning Sovereign of Tonga", + "to": "ʻAho ʻAloʻi ʻo ʻEne ʻAfio ko e Tuʻi ʻo Tonga ʻoku lolotonga Pule" + }, + "countries": [ + "TO" + ] + }, + { + "id": "birthday_of_the_sultan_of_johor", + "msgid": "Birthday of the Sultan of Johor", + "new_comment": "", + "comment": "Birthday of the Sultan of Johor.", + "messages": { + "en_US": "Birthday of the Sultan of Johor", + "ms_MY": "Hari Keputeraan Sultan Johor", + "th": "วันคล้ายวันพระราชสมภพสุลต่านแห่งรัฐยะโฮร์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_kedah", + "msgid": "Birthday of The Sultan of Kedah", + "new_comment": "", + "comment": "Birthday of The Sultan of Kedah.", + "messages": { + "en_US": "Birthday of The Sultan of Kedah", + "ms_MY": "Hari Keputeraan Sultan Kedah", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐเกดะห์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_kelantan", + "msgid": "Birthday of the Sultan of Kelantan", + "new_comment": "", + "comment": "Birthday of the Sultan of Kelantan.", + "messages": { + "en_US": "Birthday of the Sultan of Kelantan", + "ms_MY": "Hari Keputeraan Sultan Kelantan", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐกลันตัน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_negeri_sembilan", + "msgid": "Birthday of the Sultan of Negeri Sembilan", + "new_comment": "", + "comment": "Birthday of the Sultan of Negeri Sembilan.", + "messages": { + "en_US": "Birthday of the Sultan of Negeri Sembilan", + "ms_MY": "Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐเนเกรีเซมบิลัน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_pahang", + "msgid": "Birthday of the Sultan of Pahang", + "new_comment": "", + "comment": "Birthday of the Sultan of Pahang.", + "messages": { + "en_US": "Birthday of the Sultan of Pahang", + "ms_MY": "Hari Keputeraan Sultan Pahang", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐปะหัง" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_perak", + "msgid": "Birthday of the Sultan of Perak", + "new_comment": "", + "comment": "Birthday of the Sultan of Perak.", + "messages": { + "en_US": "Birthday of the Sultan of Perak", + "ms_MY": "Hari Keputeraan Sultan Perak", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐเประก์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_selangor", + "msgid": "Birthday of The Sultan of Selangor", + "new_comment": "", + "comment": "Birthday of The Sultan of Selangor.", + "messages": { + "en_US": "Birthday of The Sultan of Selangor", + "ms_MY": "Hari Keputeraan Sultan Selangor", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐสลังงอร์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "birthday_of_the_sultan_of_terengganu", + "msgid": "Birthday of the Sultan of Terengganu", + "new_comment": "", + "comment": "Birthday of the Sultan of Terengganu.", + "messages": { + "en_US": "Birthday of the Sultan of Terengganu", + "ms_MY": "Hari Keputeraan Sultan Terengganu", + "th": "วันคล้ายวันประสูติสุลต่านแห่งรัฐตรังกานู" + }, + "countries": [ + "MY" + ] + }, + { + "id": "black_awareness_day", + "msgid": "Black Awareness Day", + "new_comment": "", + "comment": "Black Awareness Day.", + "messages": { + "en_US": "Black Awareness Day", + "pt_BR": "Consciência Negra", + "uk": "День свідомості темношкірих" + }, + "countries": [ + "BR" + ] + }, + { + "id": "black_saturday", + "msgid": "Black Saturday", + "new_comment": "", + "comment": "Black Saturday.", + "messages": { + "en_PH": "Black Saturday", + "en_US": "Black Saturday", + "fil": "Sabado de Gloria", + "th": "วันเสาร์ศักดิ์สิทธิ์" + }, + "countries": [ + "PH" + ] + }, + { + "id": "blackout_in_new_york_city", + "msgid": "Blackout in New York City", + "new_comment": "", + "comment": "Blackout in New York City.", + "messages": { + "en_US": "Blackout in New York City", + "gu": "ન્યૂ યોર્ક શહેરમાં બ્લેકઆઉટ", + "hi": "न्यूयॉर्क शहर में ब्लैकआउट" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "blessed_rainy_day", + "msgid": "Blessed Rainy Day", + "new_comment": "", + "comment": "Blessed Rainy Day.", + "messages": { + "dz": "རྒྱལ་ཡོངས་ཁྲུས་བབས་ངལ་གསོ།", + "en_US": "Blessed Rainy Day" + }, + "countries": [ + "BT" + ] + }, + { + "id": "blizzard_of_1888", + "msgid": "Blizzard of 1888", + "new_comment": "", + "comment": "Blizzard of 1888.", + "messages": { + "en_US": "Blizzard of 1888", + "gu": "1888 નું હિમતોફાન", + "hi": "1888 का बर्फीला तूफान" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "boa_vista_municipality_day", + "msgid": "Boa Vista Municipality Day", + "new_comment": "", + "comment": "Boa Vista Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Boa Vista", + "en_US": "Boa Vista Municipality Day", + "es": "Día del Municipio de Boa Vista", + "fr": "Journée de la municipalité de Boa Vista", + "pt_CV": "Dia do Município da Boa Vista" + }, + "countries": [ + "CV" + ] + }, + { + "id": "bocage_day", + "msgid": "Bocage Day", + "new_comment": "", + "comment": "Bocage Day.", + "messages": { + "en_US": "Bocage Day", + "pt_PT": "Dia de Bocage", + "uk": "День Бокажі" + }, + "countries": [ + "PT" + ] + }, + { + "id": "bonaire_day", + "msgid": "Bonaire Day", + "new_comment": "", + "comment": "Bonaire Day.", + "messages": { + "en_BQ": "Bonaire Day", + "en_US": "Bonaire Day", + "nl": "Bonairedag", + "pap_BQ": "Dia di Boneiru" + }, + "countries": [ + "BQ" + ] + }, + { + "id": "bonalu", + "msgid": "Bonalu", + "new_comment": "", + "comment": "Bonalu.", + "messages": { + "bn": "বোনালু", + "en_IN": "Bonalu", + "en_US": "Bonalu", + "gu": "બોનાલુ", + "hi": "बोनालु", + "kn": "ಬೋನಾಲು", + "ml": "ബോനാലു", + "mr": "बोनालू", + "pa": "ਬੋਨਾਲੂ", + "ta": "போனாலு", + "te": "బోనాలు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "bonifacio_day", + "msgid": "Bonifacio Day", + "new_comment": "", + "comment": "Bonifacio Day.", + "messages": { + "en_PH": "Bonifacio Day", + "en_US": "Bonifacio Day", + "fil": "Araw ng Kabayanihan ni Bonifacio", + "th": "วันโบนีฟาซีโอ" + }, + "countries": [ + "PH" + ] + }, + { + "id": "boqueron_battle_day", + "msgid": "Boqueron Battle Day", + "new_comment": "", + "comment": "Boqueron Battle Day.", + "messages": { + "en_US": "Boqueron Battle Day", + "es": "Día de la Batalla de Boquerón", + "uk": "День битви за Бокерон" + }, + "countries": [ + "PY" + ] + }, + { + "id": "boun_awk_phansa_end_of_buddhist_lent", + "msgid": "End of Buddhist Lent", + "new_comment": "", + "comment": "Boun Awk Phansa (End of Buddhist Lent).", + "messages": { + "en_US": "End of Buddhist Lent", + "lo": "ວັນບຸນອອກພັນສາ", + "th": "วันออกพรรษา" + }, + "countries": [ + "LA" + ] + }, + { + "id": "boun_haw_khao_padapdin_rice_growing_festival", + "msgid": "Boun Haw Khao Padapdin", + "new_comment": "", + "comment": "Boun Haw Khao Padapdin (Rice Growing Festival).", + "messages": { + "en_US": "Boun Haw Khao Padapdin", + "lo": "ວັນບຸນຫໍ່ເຂົ້າປະດັບດິນ", + "th": "วันบุญข้าวประดับดิน" + }, + "countries": [ + "LA" + ] + }, + { + "id": "boun_haw_khao_salark_ancestor_festival", + "msgid": "Boun Haw Khao Salark", + "new_comment": "", + "comment": "Boun Haw Khao Salark (Ancestor Festival).", + "messages": { + "en_US": "Boun Haw Khao Salark", + "lo": "ວັນບຸນຫໍ່ເຂົ້າສະຫຼາກ", + "th": "วันข้าวบุญข้าวสาก" + }, + "countries": [ + "LA" + ] + }, + { + "id": "boun_khao_phansa_begin_of_buddhist_lent", + "msgid": "Begin of Buddhist Lent", + "new_comment": "", + "comment": "Boun Khao Phansa (Begin of Buddhist Lent).", + "messages": { + "en_US": "Begin of Buddhist Lent", + "lo": "ວັນບຸນເຂົ້າພັນສາ", + "th": "วันเข้าพรรษา" + }, + "countries": [ + "LA" + ] + }, + { + "id": "boun_suang_heua_vientiane_boat_racing_festival", + "msgid": "Vientiane Boat Racing Festival", + "new_comment": "", + "comment": "Boun Suang Heua (Vientiane Boat Racing Festival).", + "messages": { + "en_US": "Vientiane Boat Racing Festival", + "lo": "ວັນບຸນຊ່ວງເຮືອ ນະຄອນຫຼວງວຽງຈັນ", + "th": "วันงานบุญแข่งเรือ นครหลวงเวียงจันทน์" + }, + "countries": [ + "LA" + ] + }, + { + "id": "boun_that_luang_festival", + "msgid": "Boun That Luang Festival", + "new_comment": "", + "comment": "Boun That Luang Festival.", + "messages": { + "en_US": "Boun That Luang Festival", + "lo": "ວັນບຸນທາດຫລວງ", + "th": "วันงานพระธาตุหลวง" + }, + "countries": [ + "LA" + ] + }, + { + "id": "bounty_day", + "msgid": "Bounty Day", + "new_comment": "", + "comment": "Bounty Day.", + "messages": { + "en_NF": "Bounty Day", + "en_US": "Bounty Day" + }, + "countries": [ + "NF" + ] + }, + { + "id": "boxing_day", + "msgid": "Boxing Day", + "new_comment": "", + "comment": "Boxing Day.", + "messages": { + "ar": { + "CA": "يوم الملاكمة", + "SY": "يوم الصناديق", + "XTSE": "يوم الملاكمة" + }, + "coa_CC": "Hari Boxing", + "en_AI": "Boxing Day", + "en_AU": "Boxing Day", + "en_BM": "Boxing Day", + "en_CA": "Boxing Day", + "en_CC": "Boxing Day", + "en_CK": "Boxing Day", + "en_CX": "Boxing Day", + "en_GB": "Boxing Day", + "en_GD": "Boxing Day", + "en_GM": "Boxing Day", + "en_GS": "Boxing Day", + "en_KE": "Boxing Day", + "en_LC": "Boxing Day", + "en_MS": "Boxing Day", + "en_NF": "Boxing Day", + "en_NG": "Boxing Day", + "en_NU": "Boxing Day", + "en_SG": "Boxing Day", + "en_SL": "Boxing Day", + "en_TC": "Boxing Day", + "en_TK": "Boxing Day", + "en_TT": "Boxing Day", + "en_US": "Boxing Day", + "en_VC": "Boxing Day", + "en_VG": "Boxing Day", + "fr": { + "CA": "Boxing Day", + "RW": "Le lendemain de Noël", + "XTSE": "Boxing Day" + }, + "rw": "Umunsi ukurikira Noheli", + "sw": { + "KE": "Siku ya Ndondi", + "TZ": "Siku ya Kupeana Zawadi" + }, + "th": "วันเปิดกล่องของขวัญ", + "tkl": "Tua-aho Kilihimahi", + "to": "ʻAho 2 ʻo e Kilisimasi", + "tvl": "Aso Faipele" + }, + "countries": [ + "AI", + "AU", + "BM", + "CA", + "CC", + "CK", + "CX", + "FK", + "GB", + "GD", + "GI", + "GM", + "GS", + "KE", + "KY", + "LC", + "MS", + "NF", + "NG", + "NU", + "RW", + "SG", + "SH", + "SL", + "SY", + "TC", + "TK", + "TO", + "TT", + "TV", + "TZ", + "VC", + "VG", + "XTSE" + ] + }, + { + "id": "brava_municipality_day", + "msgid": "Brava Municipality Day", + "new_comment": "", + "comment": "Brava Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Brava", + "en_US": "Brava Municipality Day", + "es": "Día del Municipio de Brava", + "fr": "Journée de la municipalité de Brava", + "pt_CV": "Dia do Município da Brava" + }, + "countries": [ + "CV" + ] + }, + { + "id": "bread_day", + "msgid": "Bread Day", + "new_comment": "", + "comment": "Bread Day.", + "messages": { + "en_US": "Bread Day", + "hu": "A kenyér ünnepe", + "uk": "День хліба" + }, + "countries": [ + "HU" + ] + }, + { + "id": "bridge_holiday", + "msgid": "Bridge Holiday", + "new_comment": "", + "comment": "Bridge Holiday.", + "messages": { + "de": "Brückentag", + "en_BQ": "Bridge Holiday", + "en_US": "Bridge Holiday", + "fr": "Jour pont", + "it": "Giorno ponte", + "nl": "Brugdag", + "pap_BQ": "Dia Liber", + "th": "วันหยุดเพิ่มเติม", + "uk": "Проміжний вихідний" + }, + "countries": [ + "BQ", + "CH" + ] + }, + { + "id": "bridge_holiday_for_ascension_day", + "msgid": "Bridge Holiday for Ascension Day", + "new_comment": "", + "comment": "Bridge Holiday for Ascension Day.", + "messages": { + "de": "Brückentag nach Auffahrt", + "en_US": "Bridge Holiday for Ascension Day", + "fr": "Jour pont après l'Ascension", + "it": "Giorno ponte dopo l'Ascensione di Gesù", + "th": "วันหยุดเพิ่มเติมสำหรับวันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์", + "uk": "Проміжний вихідний після Вознесіння Господнього" + }, + "countries": [ + "CH" + ] + }, + { + "id": "bridge_public_holiday", + "msgid": "Bridge Public Holiday", + "new_comment": "", + "comment": "Bridge Public Holiday.", + "messages": { + "en_SC": "Bridge Public Holiday", + "en_US": "Bridge Public Holiday", + "es": "Feriado con fines turísticos", + "th": "วันหยุดพิเศษ (เพิ่มเติม)", + "uk": { + "AR": "Додатковий вихідний", + "TH": "Проміжний вихідний" + } + }, + "countries": [ + "AR", + "SC", + "TH" + ] + }, + { + "id": "british_columbia_day", + "msgid": "British Columbia Day", + "new_comment": "", + "comment": "British Columbia Day.", + "messages": { + "ar": "يوم كولومبيا البريطانية", + "en_CA": "British Columbia Day", + "en_US": "British Columbia Day", + "fr": "Jour de la Colombie Britannique", + "th": "วันบริติชโคลัมเบีย" + }, + "countries": [ + "CA" + ] + }, + { + "id": "british_forces_evacuation_day", + "msgid": "British Forces Evacuation Day", + "new_comment": "", + "comment": "British Forces Evacuation Day.", + "messages": { + "ar": "عيد إجلاء القوات البريطانية", + "en_US": "British Forces Evacuation Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "buddha_jayanti", + "msgid": "Buddha Jayanti", + "new_comment": "", + "comment": "Buddha Jayanti.", + "messages": { + "en_US": "Buddha Jayanti", + "kn": "ಬುದ್ಧ ಜಯಂತಿ", + "ne": "बुद्ध जयन्ती" + }, + "countries": [ + "NP" + ] + }, + { + "id": "buddha_purnima", + "msgid": "Buddha Purnima", + "new_comment": "", + "comment": "Buddha Purnima.", + "messages": { + "bn": "বুদ্ধ পূর্ণিমা", + "en_IN": "Buddha Purnima", + "en_US": "Buddha Purnima", + "gu": "બુદ્ધ પૂર્ણિમા", + "hi": "बुद्ध पूर्णिमा", + "kn": "ಬುದ್ಧ ಪೂರ್ಣಿಮ", + "ml": "ബുദ്ധ പൂർണ്ണിമ", + "mr": "बुध्द पौर्णिमा", + "pa": "ਬੁੱਧ ਪੂਰਨਿਮਾ", + "ta": "புத்தர் பௌர்ணமி", + "te": "బుద్ధ పూర్ణిమ" + }, + "countries": [ + "IN", + "XNSE" + ] + }, + { + "id": "buddha_s_birthday", + "msgid": "Buddha's Birthday", + "new_comment": "", + "comment": "Buddha's Birthday.", + "messages": { + "en_US": "Buddha's Birthday", + "ko": "석가탄신일", + "th": "วันประสูติของพระพุทธเจ้า" + }, + "countries": [ + "KR" + ] + }, + { + "id": "buddhist_lent_day", + "msgid": "Buddhist Lent Day", + "new_comment": "", + "comment": "Buddhist Lent Day.", + "messages": { + "en_US": "Buddhist Lent Day", + "th": "เข้าปุริมพรรษา", + "uk": "Початок буддистського посту" + }, + "countries": [ + "TH" + ] + }, + { + "id": "burial_ceremony_of_dr_hage_gottfried_geingob", + "msgid": "Burial ceremony of Dr. Hage Gottfried Geingob", + "new_comment": "", + "comment": "Burial ceremony of Dr. Hage Gottfried Geingob.", + "messages": { + "en_NA": "Burial ceremony of Dr. Hage Gottfried Geingob", + "en_US": "Burial ceremony of Dr. Hage Gottfried Geingob", + "uk": "Церемонія поховання Хаге Готтфріда Гейнгоба" + }, + "countries": [ + "NA" + ] + }, + { + "id": "burial_ceremony_of_dr_sam_shafiishuna_nujoma", + "msgid": "Burial ceremony of Dr. Sam Shafiishuna Nujoma", + "new_comment": "", + "comment": "Burial ceremony of Dr. Sam Shafiishuna Nujoma.", + "messages": { + "en_NA": "Burial ceremony of Dr. Sam Shafiishuna Nujoma", + "en_US": "Burial ceremony of Dr. Sam Shafiishuna Nujoma", + "uk": "Церемонія поховання Сема Шафіішуна Нуйоми" + }, + "countries": [ + "NA" + ] + }, + { + "id": "caacupe_virgin_day", + "msgid": "Caacupe Virgin Day", + "new_comment": "", + "comment": "Caacupe Virgin Day.", + "messages": { + "en_US": "Caacupe Virgin Day", + "es": "Día de la Virgen de Caacupé", + "uk": "День Богоматері Каакупе" + }, + "countries": [ + "PY" + ] + }, + { + "id": "canada_day", + "msgid": "Canada Day", + "new_comment": "", + "comment": "Canada Day.", + "messages": { + "ar": "يوم كندا", + "en_CA": "Canada Day", + "en_US": "Canada Day", + "fr": "Fête du Canada", + "th": "วันชาติแคนาดา" + }, + "countries": [ + "CA", + "XTSE" + ] + }, + { + "id": "canberra_day", + "msgid": "Canberra Day", + "new_comment": "", + "comment": "Canberra Day.", + "messages": { + "en_AU": "Canberra Day", + "en_US": "Canberra Day", + "th": "วันแคนเบอร์รา" + }, + "countries": [ + "AU" + ] + }, + { + "id": "candlemas", + "msgid": "Candlemas", + "new_comment": "", + "comment": "Candlemas.", + "messages": { + "de": "Mariä Lichtmess", + "en_US": "Candlemas", + "pl": "Oczyszczenie Najświętszej Marii Panny", + "uk": "Стрітення" + }, + "countries": [ + "LI", + "PL" + ] + }, + { + "id": "canonization_of_jos_gregorio_hern_ndez_and_mother_carmen_rendiles", + "msgid": "Canonization of José Gregorio Hernández and Mother Carmen Rendiles", + "new_comment": "", + "comment": "Canonization of José Gregorio Hernández and Mother Carmen Rendiles.", + "messages": { + "en_US": "Canonization of José Gregorio Hernández and Mother Carmen Rendiles", + "es": "Canonización de José Gregorio Hernández y la Madre Carmen Rendiles", + "uk": "Канонізація Хосе Ґреґоріо Ернандеса та Матері Кармен Ренділес" + }, + "countries": [ + "VE" + ] + }, + { + "id": "cantabria_institutions_day", + "msgid": "Cantabria Institutions Day", + "new_comment": "", + "comment": "Cantabria Institutions Day.", + "messages": { + "ca": "Dia de les Institucions de Cantàbria", + "en_US": "Cantabria Institutions Day", + "es": "Día de las Instituciones de Cantabria", + "th": "วันสถาบันแห่งกันตาเบรีย", + "uk": "День Інституцій Кантабрії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "capital_city_day", + "msgid": "Capital City Day", + "new_comment": "", + "comment": "Capital City Day.", + "messages": { + "en_US": "Capital City Day", + "mn": "Монгол Улсын нийслэл хотын өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "capital_day", + "msgid": "Capital Day", + "new_comment": "", + "comment": "Capital Day.", + "messages": { + "en_US": "Capital Day", + "kk": "Астана күні", + "mn": "Монгол Улсын Нийслэлийн өдөр", + "uk": "День Столиці" + }, + "countries": [ + "KZ", + "MN" + ] + }, + { + "id": "caricom_day", + "msgid": "CARICOM Day", + "new_comment": "", + "comment": "CARICOM Day.", + "messages": { + "en_GY": "CARICOM Day", + "en_US": "CARICOM Day" + }, + "countries": [ + "GY" + ] + }, + { + "id": "caricom_s_50th_anniversary", + "msgid": "CARICOM's 50th Anniversary", + "new_comment": "", + "comment": "CARICOM's 50th Anniversary.", + "messages": { + "en_GD": "CARICOM's 50th Anniversary", + "en_US": "CARICOM's 50th Anniversary" + }, + "countries": [ + "GD" + ] + }, + { + "id": "carnival", + "msgid": "Carnival", + "new_comment": "", + "comment": "Carnival.", + "messages": { + "ca": "Carnaval", + "en_US": "Carnival", + "es": "Carnaval", + "fr_HT": "Carnaval", + "ht": "Kanaval", + "pt_BR": "Carnaval", + "pt_PT": "Carnaval", + "uk": "Карнавал" + }, + "countries": [ + "AD", + "BO", + "BR", + "BVMF", + "EC", + "HT", + "PT", + "UY" + ] + }, + { + "id": "carnival_day", + "msgid": "Carnival Day", + "new_comment": "", + "comment": "Carnival Day.", + "messages": { + "en_US": "Carnival Day", + "nl": "Carnavalsdag", + "pt_AO": "Dia do Carnaval", + "uk": "Карнавал" + }, + "countries": [ + "AO", + "SX" + ] + }, + { + "id": "carnival_in_oruro", + "msgid": "Carnival in Oruro", + "new_comment": "", + "comment": "Carnival in Oruro.", + "messages": { + "en_US": "Carnival in Oruro", + "es": "Carnaval de Oruro", + "uk": "Карнавал Оруро" + }, + "countries": [ + "BO" + ] + }, + { + "id": "carnival_monday", + "msgid": "Carnival Monday", + "new_comment": "", + "comment": "Carnival Monday.", + "messages": { + "en_BQ": "Carnival Monday", + "en_GD": "Carnival Monday", + "en_TT": "Carnival Monday", + "en_US": "Carnival Monday", + "en_VC": "Carnival Monday", + "es": "Lunes de Carnaval", + "nl": { + "AW": "Carnavalsmaandag", + "BQ": "Dag na de carnavalsoptocht", + "CW": "De maandag na de Grote Karnaval" + }, + "pap_AW": "Dialuna despues di Carnaval Grandi", + "pap_BQ": "Djaluna di Carnaval", + "pap_CW": "Dialuna despues di Carnaval Grandi", + "uk": "Карнавальний понеділок" + }, + "countries": [ + "AR", + "AW", + "BQ", + "CW", + "GD", + "PA", + "TT", + "VC", + "VE" + ] + }, + { + "id": "carnival_tuesday", + "msgid": "Carnival Tuesday", + "new_comment": "", + "comment": "Carnival Tuesday.", + "messages": { + "de": "Faschingsdienstag", + "en_GD": "Carnival Tuesday", + "en_TT": "Carnival Tuesday", + "en_US": "Carnival Tuesday", + "en_VC": "Carnival Tuesday", + "es": "Martes de Carnaval", + "fr": "Mardi du Carnaval", + "pt_CV": "Terça-feira de Carnaval", + "uk": "Карнавальний вівторок" + }, + "countries": [ + "AR", + "CV", + "GD", + "PA", + "TT", + "VC", + "VE" + ] + }, + { + "id": "casimir_pulaski_day", + "msgid": "Casimir Pulaski Day", + "new_comment": "", + "comment": "Casimir Pulaski Day.", + "messages": { + "en_US": "Casimir Pulaski Day", + "th": "วันคาซิเมียร์ พูลาสกี้" + }, + "countries": [ + "US" + ] + }, + { + "id": "cassinga_day", + "msgid": "Cassinga Day", + "new_comment": "", + "comment": "Cassinga Day.", + "messages": { + "en_NA": "Cassinga Day", + "en_US": "Cassinga Day", + "uk": "День Кассінги" + }, + "countries": [ + "NA" + ] + }, + { + "id": "castile_and_le_n_day", + "msgid": "Castile and León Day", + "new_comment": "", + "comment": "Castile and León Day.", + "messages": { + "ca": "Festa de Castella i Lleó", + "en_US": "Castile and León Day", + "es": "Fiesta de Castilla y León", + "th": "วันกัสติยาและเลออน", + "uk": "День Кастилії і Леону" + }, + "countries": [ + "ES" + ] + }, + { + "id": "castilla_la_mancha_day", + "msgid": "Castilla-La Mancha Day", + "new_comment": "", + "comment": "Castilla-La Mancha Day.", + "messages": { + "ca": "Dia de Castella-la Manxa", + "en_US": "Castilla-La Mancha Day", + "es": "Día de Castilla-La Mancha", + "th": "วันกัสติยา-ลามันชา", + "uk": "День Кастилії-Ла-Манча" + }, + "countries": [ + "ES" + ] + }, + { + "id": "catamarca_autonomy_day", + "msgid": "Catamarca Autonomy Day", + "new_comment": "", + "comment": "Catamarca Autonomy Day.", + "messages": { + "en_US": "Catamarca Autonomy Day", + "es": "Autonomía de Catamarca", + "uk": "День автономії Катамарки" + }, + "countries": [ + "AR" + ] + }, + { + "id": "catch_up_day", + "msgid": "Catch Up Day", + "new_comment": "", + "comment": "Catch Up Day.", + "messages": { + "en_US": "Catch Up Day", + "gu": "કેચ અપ ડે (બાકી કામ પૂરું કરવાનો દિવસ)", + "hi": "लंबित कार्य पूरा करने का दिन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "catholic_christmas_day", + "msgid": "Catholic Christmas Day", + "new_comment": "", + "comment": "Catholic Christmas Day.", + "messages": { + "ar": "عيد الميلاد المجيد الغربي", + "be": "Нараджэнне Хрыстова (каталіцкае Раство)", + "bs": "Božić (Katolički)", + "en_US": "Catholic Christmas Day", + "ru": "Рождество Христово (католическое Рождество)", + "sq": "Krishtlindjet Katolike", + "sr": { + "BA": "Божић (Католички)", + "XK": "Katolički Božić" + }, + "th": "วันประสูติของพระคริสต์ (คริสต์มาสนิกายคาทอลิก)", + "uk": "Різдво Христове (католицьке)" + }, + "countries": [ + "BA", + "BY", + "PS", + "XK" + ] + }, + { + "id": "catholic_christmas_eve", + "msgid": "Catholic Christmas Eve", + "new_comment": "", + "comment": "Catholic Christmas Eve.", + "messages": { + "bs": "Badnji dan (Katolički)", + "en_US": "Catholic Christmas Eve", + "sr": "Бадњи дан (Католички)", + "uk": "Святий вечір (католицький)" + }, + "countries": [ + "BA" + ] + }, + { + "id": "catholic_easter", + "msgid": "Catholic Easter", + "new_comment": "", + "comment": "Catholic Easter.", + "messages": { + "be": "Каталiцкi Вялiкдзень", + "en_US": "Catholic Easter", + "ru": "Католическая Пасха", + "sq": "Pashkët Katolike", + "sr": "Katolički Uskrs", + "th": "วันอีสเตอร์นิกายคาทอลิก" + }, + "countries": [ + "BY", + "XK" + ] + }, + { + "id": "catholic_easter_monday", + "msgid": "Catholic Easter Monday", + "new_comment": "", + "comment": "Catholic Easter Monday.", + "messages": { + "ar": "اثنين الفصح عند الطوائف الكاثوليكية", + "bs": "Uskrsni ponedjeljak (Katolički)", + "en_US": "Catholic Easter Monday", + "fr": "Lundi de Pâques Catholique", + "sr": "Ускршњи понедељак (Католички)", + "uk": "Великодній понеділок (католицький)" + }, + "countries": [ + "BA", + "LB" + ] + }, + { + "id": "catholic_easter_sunday", + "msgid": "Catholic Easter Sunday", + "new_comment": "", + "comment": "Catholic Easter Sunday.", + "messages": { + "bs": "Uskrs (Katolički)", + "en_US": "Catholic Easter Sunday", + "sq": "E diela e Pashkëve Katolike", + "sr": "Ускрс (Католички)", + "uk": "Великдень (католицький)" + }, + "countries": [ + "AL", + "BA" + ] + }, + { + "id": "catholic_good_friday", + "msgid": "Catholic Good Friday", + "new_comment": "", + "comment": "Catholic Good Friday.", + "messages": { + "ar": "الجمعة العظيمة عند الطوائف الكاثوليكية", + "bs": "Veliki petak (Katolički)", + "en_US": "Catholic Good Friday", + "fr": "Vendredi Saint Catholique", + "sr": "Велики петак (Католички)", + "uk": "Страсна пʼятниця (католицька)" + }, + "countries": [ + "BA", + "LB" + ] + }, + { + "id": "ccm_party_founding_day", + "msgid": "CCM Party Founding Day", + "new_comment": "", + "comment": "CCM Party Founding Day.", + "messages": { + "en_US": "CCM Party Founding Day", + "sw": "Kuzaliwa kwa Chama cha Mapinduzi" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "celebration_of_600th_anniversary_of_the_death_of_dante", + "msgid": "Celebration of 600th anniversary of the death of Dante", + "new_comment": "", + "comment": "Celebration of 600th anniversary of the death of Dante.", + "messages": { + "en_US": "Celebration of 600th anniversary of the death of Dante", + "it_IT": "Celebrazione del sesto centenario dantesco", + "th": "วันครบรอบ 600 ปีการจากไปของดันเต" + }, + "countries": [ + "IT" + ] + }, + { + "id": "celebrations_of_san_salvador", + "msgid": "Celebrations of San Salvador", + "new_comment": "", + "comment": "Celebrations of San Salvador.", + "messages": { + "en_US": "Celebrations of San Salvador", + "es": "Celebración del Divino Salvador del Mundo", + "uk": "Свято Божественного Спасителя світу" + }, + "countries": [ + "SV" + ] + }, + { + "id": "centenary_of_the_revolt_of_dom_boaventura", + "msgid": "Centenary of the Revolt of Dom Boaventura", + "new_comment": "", + "comment": "Centenary of the Revolt of Dom Boaventura.", + "messages": { + "en_TL": "Centenary of the Revolt of Dom Boaventura", + "en_US": "Centenary of the Revolt of Dom Boaventura", + "pt_TL": "Centenário da Revolta de Dom Boaventura", + "tet": "Sentanáriu Revolta Dom Boaventura nian", + "th": "วันครบรอบ 100 ปีแห่งการลุกฮือของดอม โบอาเวนตูรา" + }, + "countries": [ + "TL" + ] + }, + { + "id": "centennial_of_george_washington_s_inauguration", + "msgid": "Centennial of George Washington's Inauguration", + "new_comment": "", + "comment": "Centennial of George Washington's Inauguration.", + "messages": { + "en_US": "Centennial of George Washington's Inauguration", + "gu": "જ્યોર્જ વોશિંગ્ટનના ઉદ્ઘાટનની શતાબ્દી", + "hi": "जॉर्ज वाशिंगटन के उद्घाटन की शताब्दी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "cesar_chavez_day", + "msgid": "Cesar Chavez Day", + "new_comment": "", + "comment": "Cesar Chavez Day.", + "messages": { + "en_US": "Cesar Chavez Day", + "th": "วันซีซาร์ ชาเวซ" + }, + "countries": [ + "US" + ] + }, + { + "id": "ceuta_day", + "msgid": "Ceuta Day", + "new_comment": "", + "comment": "Ceuta Day.", + "messages": { + "ca": "Dia de Ceuta", + "en_US": "Ceuta Day", + "es": "Día de Ceuta", + "th": "วันเซวตา", + "uk": "День Сеути" + }, + "countries": [ + "ES" + ] + }, + { + "id": "chaco_armistice_day", + "msgid": "Chaco Armistice Day", + "new_comment": "", + "comment": "Chaco Armistice Day.", + "messages": { + "en_US": "Chaco Armistice Day", + "es": "Día de la Paz del Chaco", + "uk": "День мирного договору в Чако" + }, + "countries": [ + "PY" + ] + }, + { + "id": "chaitra_sukladi", + "msgid": "Chaitra Sukladi", + "new_comment": "", + "comment": "Chaitra Sukladi.", + "messages": { + "bn": "চৈত্র শুক্লাদি", + "en_IN": "Chaitra Sukladi", + "en_US": "Chaitra Sukladi", + "gu": "ચૈત્ર શુક્લાડી", + "hi": "चैत्र शुक्लादि", + "kn": "ಚೈತ್ರ ಸುಕ್ಲಾಡಿ", + "ml": "ചൈത്ര ശുക്ലദി", + "mr": "चैत्र शुक्लादि", + "pa": "ਚੈਤਰਾ ਸ਼ੁਕਲਦੀ", + "ta": "சைத்ரா சுக்லாடி", + "te": "చైత్ర శుక్లాది" + }, + "countries": [ + "IN" + ] + }, + { + "id": "chakri_day", + "msgid": "Chakri Day", + "new_comment": "", + "comment": "Chakri Day.", + "messages": { + "en_US": "Chakri Day", + "th": "วันจักรี", + "uk": "День Чакрі" + }, + "countries": [ + "TH" + ] + }, + { + "id": "chakri_memorial_day", + "msgid": "Chakri Memorial Day", + "new_comment": "", + "comment": "Chakri Memorial Day.", + "messages": { + "en_US": "Chakri Memorial Day", + "th": "วันพระบาทสมเด็จพระพุทธยอดฟ้าจุฬาโลกมหาราช และวันที่ระลึกมหาจักรีบรมราชวงศ์", + "uk": "День памʼяті короля Рами I та династії Чакрі" + }, + "countries": [ + "TH" + ] + }, + { + "id": "change_of_federal_government", + "msgid": "Change of Federal Government", + "new_comment": "", + "comment": "Change of Federal Government.", + "messages": { + "en_US": "Change of Federal Government", + "es": "Transmisión del Poder Ejecutivo Federal", + "uk": "Передача федеральної виконавчої влади" + }, + "countries": [ + "MX", + "XMEX" + ] + }, + { + "id": "charter_day", + "msgid": "Charter Day", + "new_comment": "", + "comment": "Charter Day.", + "messages": { + "en_US": "Charter Day", + "gu": "ચાર્ટર ડે", + "hi": "चार्टर दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "cheongmyeong_festival", + "msgid": "Cheongmyeong Festival", + "new_comment": "", + "comment": "Cheongmyeong Festival.", + "messages": { + "en_US": "Cheongmyeong Festival", + "ko_KP": "청명" + }, + "countries": [ + "KP" + ] + }, + { + "id": "cheti_chand", + "msgid": "Cheti Chand", + "new_comment": "", + "comment": "Cheti Chand.", + "messages": { + "bn": "চেতি চাঁদ", + "en_IN": "Cheti Chand", + "en_US": "Cheti Chand", + "gu": "ચેતી ચંદ", + "hi": "चेटी चंड", + "kn": "ಚೇಟಿ ಚಂದ್", + "ml": "ചേതി ചന്ദ്", + "mr": "चेटी चंड", + "pa": "ਚੇਤੀ ਚੰਦ", + "ta": "செட்டி சந்த்", + "te": "చెట్టి చంద్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "chhath_parva", + "msgid": "Chhath Parva", + "new_comment": "", + "comment": "Chhath Parva.", + "messages": { + "en_US": "Chhath Parva", + "kn": "ಛತ್ ಹಬ್ಬ", + "ne": "छठ पर्व" + }, + "countries": [ + "NP" + ] + }, + { + "id": "chhath_puja", + "msgid": "Chhath Puja", + "new_comment": "", + "comment": "Chhath Puja.", + "messages": { + "bn": "ছঠ পূজা", + "en_IN": "Chhath Puja", + "en_US": "Chhath Puja", + "gu": "છઠ પૂજા", + "hi": "छठ पूजा", + "kn": "ಛಠ್ ಪೂಜೆ", + "ml": "ഛഠ് പൂജ", + "mr": "छठ पूजा", + "pa": "ਛੱਠ ਪੂਜਾ", + "ta": "சத் பூஜை", + "te": "ఛఠ్ పూజ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "chhatrapati_shivaji_maharaj_jayanti", + "msgid": "Chhatrapati Shivaji Maharaj Jayanti", + "new_comment": "", + "comment": "Chhatrapati Shivaji Maharaj Jayanti.", + "messages": { + "bn": "ছত্রপতি শিবাজী মহারাজ জয়ন্তী", + "en_IN": "Chhatrapati Shivaji Maharaj Jayanti", + "en_US": "Chhatrapati Shivaji Maharaj Jayanti", + "gu": "છત્રપતિ શિવાજી મહારાજ જયંતિ", + "hi": "छत्रपति शिवाजी महाराज जयंती", + "kn": "ಛತ್ರಪತಿ ಶಿವಾಜಿ ಮಹಾರಾಜ್ ಜಯಂತಿ", + "ml": "ചത്രപതി ശിവാജി മഹാരാജ ജയന്തി", + "mr": "छत्रपती शिवाजी महाराज जयंती", + "pa": "ਛਤਰਪਤੀ ਸ਼ਿਵਾਜੀ ਮਹਾਰਾਜ ਜਯੰਤੀ", + "ta": "சத்ரபதி சிவாஜி மகாராஜ் ஜெயந்தி", + "te": "ఛత్రపతి శివాజీ మహారాజ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "chhattisgarh_foundation_day", + "msgid": "Chhattisgarh Foundation Day", + "new_comment": "", + "comment": "Chhattisgarh Foundation Day.", + "messages": { + "bn": "ছত্তিশগড় প্রতিষ্ঠা দিবস", + "en_IN": "Chhattisgarh Foundation Day", + "en_US": "Chhattisgarh Foundation Day", + "gu": "છત્તીસગઢ સ્થાપના દિવસ", + "hi": "छत्तीसगढ़ स्थापना दिवस", + "kn": "ಛತ್ತೀಸ್‌ಗಢ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "ഛത്തീസ്ഗഢ് സ്ഥാപനദിനം", + "mr": "छत्तीसगड स्थापना दिन", + "pa": "ਛੱਤੀਸਗੜ੍ਹ ਸਥਾਪਨਾ ਦਿਵਸ", + "ta": "சத்தீஸ்கர் நாள்", + "te": "ఛత్తీస్‌గఢ్ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "children_s_day", + "msgid": "Children's Day", + "new_comment": "", + "comment": "Children's Day.", + "messages": { + "en_US": "Children's Day", + "es": "Día de los Niños", + "ja": "こどもの日", + "ko": "어린이날", + "mn": "Хүүхдийн баяр", + "ro": "Ziua Copilului", + "th": { + "CN": "วันเด็กสากล", + "JP": "วันเด็กแห่งชาติ", + "KR": "วันเด็ก", + "TW": "วันเด็กแห่งชาติ" + }, + "uk": { + "RO": "День захисту дітей", + "UY": "День дітей" + }, + "zh_CN": { + "CN": "六一儿童节", + "TW": "儿童节" + }, + "zh_TW": { + "CN": "六一兒童節", + "TW": "兒童節" + } + }, + "countries": [ + "CN", + "JP", + "KR", + "MN", + "RO", + "TW", + "UY" + ] + }, + { + "id": "children_s_rights_protection_day", + "msgid": "Children's Rights Protection Day", + "new_comment": "", + "comment": "Children's Rights Protection Day.", + "messages": { + "en_US": "Children's Rights Protection Day", + "hy": "Երեխաների իրավունքների պաշտպանության օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "chinese_cultural_renaissance_day", + "msgid": "Chinese Cultural Renaissance Day", + "new_comment": "", + "comment": "Chinese Cultural Renaissance Day.", + "messages": { + "en_US": "Chinese Cultural Renaissance Day", + "th": "วันเฉลิมฉลองวัฒนธรรมจีน", + "zh_CN": "中华文化复兴节", + "zh_TW": "中華文化復興節" + }, + "countries": [ + "TW" + ] + }, + { + "id": "chinese_new_year", + "msgid": "Chinese New Year", + "new_comment": "", + "comment": "Chinese New Year.", + "messages": { + "en_CX": "Chinese New Year", + "en_HK": "Lunar New Year's Day", + "en_PH": "Chinese New Year", + "en_SG": "Chinese New Year", + "en_US": "Chinese New Year", + "fil": "Bagong Taon ng mga Tsino", + "ms_MY": "Tahun Baharu Cina", + "my": "တရုတ်နှစ်သစ်ကူးနေ့", + "nl": "Chinees Nieuwjaar", + "th": "วันตรุษจีน", + "zh_CN": { + "HK": "农历年初一", + "TW": "春节" + }, + "zh_HK": "農曆年初一", + "zh_TW": "春節" + }, + "countries": [ + "CX", + "HK", + "MM", + "MY", + "PH", + "SG", + "SR", + "TW" + ] + }, + { + "id": "chinese_new_year_s_day", + "msgid": "Chinese New Year's Day", + "new_comment": "", + "comment": "Chinese New Year's Day.", + "messages": { + "en_MO": "Lunar New Year's Day", + "en_US": "Chinese New Year's Day", + "pt_MO": "1.º dia do Novo Ano Lunar", + "th": "วันตรุษจีน", + "zh_CN": "农历正月初一", + "zh_MO": "農曆正月初一" + }, + "countries": [ + "MO" + ] + }, + { + "id": "chinese_new_year_s_eve", + "msgid": "Chinese New Year's Eve", + "new_comment": "", + "comment": "Chinese New Year's Eve.", + "messages": { + "en_MO": "Lunar New Year's Eve", + "en_SG": "Chinese New Year's Eve", + "en_US": "Chinese New Year's Eve", + "pt_MO": "Véspera do Novo Ano Lunar", + "th": "วันก่อนวันตรุษจีน", + "zh_CN": "农历除夕", + "zh_MO": "農曆除夕", + "zh_TW": "農曆除夕" + }, + "countries": [ + "CN", + "MO", + "TW", + "XSES", + "XSHG" + ] + }, + { + "id": "chinese_new_year_s_eve_hk_xhkg", + "msgid": "Chinese New Year's Eve", + "new_comment": "The Simplified Chinese translation is taken from an official source (Chapter 149 of the General Holidays Ordinance, 2011 version)", + "comment": "Chinese New Year's Eve.", + "messages": { + "en_HK": "The day preceding Lunar New Year's Day", + "en_US": "Chinese New Year's Eve", + "th": "วันก่อนวันตรุษจีน", + "zh_CN": "农历年初一的前一日", + "zh_HK": "農曆年初一的前一日" + }, + "countries": [ + "HK", + "XHKG" + ] + }, + { + "id": "chinese_new_year_second_day", + "msgid": "Chinese New Year (Second Day)", + "new_comment": "", + "comment": "Chinese New Year (Second Day).", + "messages": { + "en_US": "Chinese New Year (Second Day)", + "ms_MY": "Tahun Baharu Cina (Hari Kedua)", + "th": "วันตรุษจีนวันที่สอง" + }, + "countries": [ + "MY" + ] + }, + { + "id": "chinese_new_year_spring_festival", + "msgid": "Chinese New Year (Spring Festival)", + "new_comment": "", + "comment": "Chinese New Year (Spring Festival).", + "messages": { + "en_US": "Chinese New Year (Spring Festival)", + "th": "วันตรุษจีน", + "zh_CN": "春节", + "zh_TW": "春節" + }, + "countries": [ + "CN" + ] + }, + { + "id": "chinese_new_year_spring_festival_extended_holiday", + "msgid": "Chinese New Year Extended Holiday", + "new_comment": "", + "comment": "Chinese New Year (Spring Festival) Extended Holiday.", + "messages": { + "en_US": "Chinese New Year Extended Holiday", + "th": "หยุดพิเศษวันตรุษจีน", + "zh_CN": "春节延长假期", + "zh_TW": "春節延長假期" + }, + "countries": [ + "CN" + ] + }, + { + "id": "chinese_spring_festival", + "msgid": "Chinese Spring Festival", + "new_comment": "", + "comment": "Chinese Spring Festival.", + "messages": { + "en_MU": "Chinese Spring Festival", + "en_US": "Chinese Spring Festival" + }, + "countries": [ + "MU" + ] + }, + { + "id": "chol_hamoed_pesach_passover_holiday", + "msgid": "Pesach holiday", + "new_comment": "", + "comment": "Chol HaMoed Pesach (Passover holiday).", + "messages": { + "en_US": "Pesach holiday", + "he": "חול המועד פסח", + "th": "เทศกาลเพสสะห์", + "uk": "Свято Песах" + }, + "countries": [ + "IL" + ] + }, + { + "id": "chol_hamoed_sukkot_feast_of_tabernacles_holiday", + "msgid": "Sukkot holiday", + "new_comment": "", + "comment": "Chol HaMoed Sukkot (Feast of Tabernacles holiday).", + "messages": { + "en_US": "Sukkot holiday", + "he": "חול המועד סוכות", + "th": "เทศกาลสุคคต", + "uk": "Свято Суккот" + }, + "countries": [ + "IL" + ] + }, + { + "id": "christmas", + "msgid": "Christmas", + "new_comment": "", + "comment": "Christmas.", + "messages": { + "bn": "বড়দিন", + "cnr": "Božić", + "en_IN": "Christmas", + "en_US": "Christmas", + "gu": "નાતાલ", + "hi": "क्रिसमस", + "kn": "ಕ್ರಿಸ್‌ಮಸ್", + "ml": "ക്രിസ്തുമസ്", + "mr": "ख्रिसमस", + "pa": "ਕ੍ਰਿਸਮਿਸ ਦਿਵਸ", + "ta": "கிறிஸ்துமஸ்", + "te": "క్రిస్మస్", + "uk": "Різдво Христове" + }, + "countries": [ + "IN", + "ME" + ] + }, + { + "id": "christmas_and_epiphany", + "msgid": "Christmas and Epiphany", + "new_comment": "", + "comment": "Christmas and Epiphany.", + "messages": { + "en_US": "Christmas and Epiphany", + "hy": "Սուրբ Ծնունդ եւ Հայտնություն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "christmas_and_family_day", + "msgid": "Christmas and Family Day", + "new_comment": "", + "comment": "Christmas and Family Day.", + "messages": { + "en_US": "Christmas and Family Day", + "pt_AO": "Dia de Natal e da Família", + "uk": "Різдво Христове та День родини" + }, + "countries": [ + "AO" + ] + }, + { + "id": "christmas_break", + "msgid": "Christmas Break", + "new_comment": "", + "comment": "Christmas Break.", + "messages": { + "de": "Weihnachtsferien", + "en_US": "Christmas Break", + "th": "ปิดเทอมคริสต์มาส", + "uk": "Різдвяні канікули" + }, + "countries": [ + "DE" + ] + }, + { + "id": "christmas_day", + "msgid": "Christmas Day", + "new_comment": "", + "comment": "Christmas Day.", + "messages": { + "am": "የገና ወይም የልደት በዓል", + "ar": { + "BD": "عيد الميلاد", + "CA": "عيد الميلاد", + "DJ": "عيد الميلاد المجيد", + "DZ": "عيد الميلاد", + "ET": "عيد الميلاد الإثيوبي (جنا)", + "IQ": "عيد الميلاد", + "JO": "عيد الميلاد المجيد", + "LB": "عيد الميلاد", + "SY": "عيد الميلاد", + "UA": "عيد الميلاد", + "XTSE": "عيد الميلاد" + }, + "ar_SD": "عيد الميلاد", + "bg": "Рождество Христово", + "bn": "বড়দিন", + "ca": { + "AD": "Nadal", + "ES": "Nativitat del Senyor" + }, + "coa_CC": "Hari Natal", + "cs": "1. svátek vánoční", + "da": "Juledag", + "de": { + "AT": "Christtag", + "BE": "Weihnachten", + "CH": "Weihnachten", + "CV": "Weihnachten", + "DE": "Erster Weihnachtstag", + "LI": "Weihnachten", + "LU": "Weihnachten", + "PL": "Erster Weihnachtstag", + "XETR": "Erster Weihnachtstag" + }, + "el": "Χριστούγεννα", + "en_AI": "Christmas Day", + "en_AU": "Christmas Day", + "en_BD": "Christmas Day", + "en_BF": "Christmas Day", + "en_BM": "Christmas Day", + "en_BQ": "Christmas Day", + "en_CA": "Christmas Day", + "en_CC": "Christmas Day", + "en_CI": "Christmas Day", + "en_CK": "Christmas Day", + "en_CX": "Christmas Day", + "en_CY": "Christmas Day", + "en_ET": "Christmas Holiday", + "en_FM": "Christmas Day", + "en_GB": "Christmas Day", + "en_GD": "Christmas Day", + "en_GM": "Christmas Day", + "en_GS": "Christmas Day", + "en_GY": "Christmas Day", + "en_HK": "Christmas Day", + "en_IN": "Christmas Day", + "en_KE": "Christmas Day", + "en_LC": "Christmas Day", + "en_MO": "Christmas Day", + "en_MS": "Christmas Day", + "en_MU": "Christmas Day", + "en_NA": "Christmas Day", + "en_NF": "Christmas Day", + "en_NG": "Christmas Day", + "en_NR": "Christmas Day", + "en_NU": "Christmas Day", + "en_PH": "Christmas Day", + "en_SC": "Christmas Day", + "en_SG": "Christmas Day", + "en_SL": "Christmas Day", + "en_TC": "Christmas Day", + "en_TK": "Christmas Day", + "en_TL": "Christmas Day", + "en_TT": "Christmas Day", + "en_US": "Christmas Day", + "en_VC": "Christmas Day", + "en_VG": "Christmas Day", + "es": { + "AR": "Navidad", + "BO": "Navidad", + "CL": "Navidad", + "CO": "Navidad", + "CR": "Navidad", + "CU": "Día de Navidad", + "CV": "Navidad", + "DO": "Día de Navidad", + "EC": "Navidad", + "ES": "Natividad del Señor", + "GQ": "Día de Navidad", + "GT": "Día de Navidad", + "HN": "Navidad", + "HT": "Navidad", + "MX": "Navidad", + "NI": "Navidad", + "PA": "Navidad", + "PE": "Navidad del Señor", + "PY": "Día de la Navidad", + "SV": "Navidad", + "VE": "Día de Navidad", + "XMAD": "Navidad", + "XMEX": "Navidad" + }, + "et": "esimene jõulupüha", + "fi": "Joulupäivä", + "fil": "Pasko", + "fo": "Jóladagur", + "fr": { + "BE": "Noël", + "BF": "Jour de Noël", + "CA": "Jour de Noël", + "CD": "Noël", + "CF": "Jour de Noël", + "CG": "Noël", + "CH": "Noël", + "CI": "Fête de Noël", + "CV": "Noël", + "DJ": "Noël", + "DZ": "Noël", + "FR": "Noël", + "GA": "Noël", + "GN": "Fête de Noël", + "LB": "Noël", + "LU": "Noël", + "ML": "Fête de Noël", + "RW": "Noël", + "TG": "Noël", + "XTSE": "Jour de Noël" + }, + "fr_BI": "Noël", + "fr_BJ": "Jour de Noël", + "fr_HT": "Noël", + "fr_MC": "Le jour de Noël", + "fr_NE": "Noël", + "fr_SN": "Noël", + "fy": "Eerste Krystdei", + "gu": "નાતાલનો દિવસ", + "hi": { + "XCME": "क्रिसमस दिवस", + "XNSE": "क्रिसमस डे", + "XNYS": "क्रिसमस दिवस" + }, + "hr": "Božić", + "ht": "Nwèl", + "hu": "Karácsony", + "id": "Hari Raya Natal", + "is": "Jóladagur", + "it": "Natale", + "it_IT": "Natale", + "ka": "ქრისტეშობა", + "kab": "Lɛid n tlalit", + "kl": "Juullip ullua", + "kn": "ಕ್ರಿಸ್ಮಸ್ ದಿನ", + "ko": "기독탄신일", + "ky": "Ыйса Пайгамбардын туулган күнү", + "lb": "Chrëschtdag", + "lt": "Šv. Kalėdų pirma diena", + "lv": "Pirmie Ziemassvētki", + "mg": "Fetin'ny noely", + "mk": "Божиќ", + "mr": "नाताळ", + "ms": "Hari Natal", + "ms_MY": "Hari Krismas", + "mt": "Il-Milied", + "my": "ခရစ္စမတ်နေ့", + "ne": "क्रिसमसको दिन", + "nl": { + "AW": "Eerste kerstdag", + "BE": "Kerstmis", + "BQ": "Eerste kerstdag", + "CW": "Eerste kerstdag", + "NL": "Eerste kerstdag", + "SR": "Eerste kerstdag", + "SX": "Eerste kerstdag" + }, + "no": { + "FO": "Første juledag", + "GL": "Juledag", + "NO": "Første juledag" + }, + "pap_AW": "Pasco di Nacemento", + "pap_BQ": "Pasku", + "pap_CW": "Pasku di Nasementu", + "pl": "Boże Narodzenie (pierwszy dzień)", + "pt_AO": "Dia do Natal", + "pt_BR": "Natal", + "pt_CV": "Dia do Natal", + "pt_GW": "Dia de Natal", + "pt_MO": "Natal", + "pt_PT": "Dia de Natal", + "pt_ST": "Natal", + "pt_TL": "Dia de Natal", + "ro": { + "MD": "Nașterea lui Iisus Hristos (Crăciunul)", + "RO": "Crăciunul" + }, + "ru": "Рождество Христово", + "ru_KG": "Рождество Христово", + "rw": "Noheli", + "si_LK": "නත්තල් උත්සව දිනය", + "sk": { + "CZ": "1. sviatok vianočný", + "SK": "Prvý sviatok vianočný" + }, + "sl": "božič", + "sq": "Krishtlindjet", + "sv": "Juldagen", + "sv_FI": "Juldagen", + "sw": { + "KE": "Siku ya Krismasi", + "TZ": "Kuzaliwa Kristo" + }, + "ta_LK": "நத்தார் பண்டிகை", + "tet": "Loron Natál", + "th": { + "AT": "วันคริสต์มาส", + "AU": "วันคริสต์มาส", + "BN": "วันคริสต์มาส", + "CA": "วันคริสต์มาส", + "CH": "วันคริสต์มาส", + "DE": "วันคริสต์มาสวันแรก", + "DK": "วันคริสต์มาส", + "ES": "วันคริสต์มาส", + "FI": "วันคริสต์มาส", + "FR": "วันคริสต์มาส", + "GB": "วันคริสต์มาส", + "HK": "วันคริสต์มาส", + "ID": "วันคริสต์มาส", + "IT": "วันคริสต์มาส", + "KR": "วันคริสต์มาส", + "MM": "วันคริสต์มาส", + "MO": "วันคริสต์มาส", + "MY": "วันคริสต์มาส", + "NL": "วันคริสต์มาสวันแรก", + "NO": "วันคริสต์มาสวันแรก", + "PH": "วันคริสต์มาส", + "RU": "วันคริสต์มาส", + "SE": "วันคริสต์มาส", + "SG": "วันคริสต์มาส", + "TL": "วันคริสต์มาส", + "UA": "วันคริสต์มาส", + "US": "วันคริสต์มาส", + "VA": "วันคริสต์มาส", + "XETR": "วันคริสต์มาสวันแรก", + "XTSE": "วันคริสต์มาส" + }, + "tkl": "Aho Kilihimahi", + "to": "ʻAho Kilisimasi", + "tvl": "Kilisimasi", + "uk": { + "AD": "Різдво Христове", + "AL": "Різдво Христове", + "AO": "Різдво Христове", + "AR": "Різдво Христове", + "AT": "Різдво Христове", + "AW": "Різдво Христове", + "BE": "Різдво Христове", + "BG": "Різдво Христове", + "BO": "Різдво Христове", + "BR": "Різдво Христове", + "BVMF": "Різдво Христове", + "CH": "Різдво Христове", + "CL": "Різдво Христове", + "CO": "Різдво Христове", + "CR": "Різдво Христове", + "CU": "Різдво Христове", + "CW": "Різдво Христове", + "CY": "Різдво Христове", + "CZ": "Різдво Христове", + "DE": "Перший день Різдва", + "DK": "Різдво Христове", + "DO": "Різдво Христове", + "EC": "Різдво Христове", + "EE": "Різдво Христове", + "ES": "Різдво Христове", + "FI": "Різдво Христове", + "FR": "Різдво Христове", + "GE": "Різдво Христове", + "GL": "Різдво Христове", + "GR": "Різдво Христове", + "HN": "Різдво Христове", + "HR": "Різдво Христове", + "HU": "Різдво Христове", + "ID": "Різдво Христове", + "IS": "Різдво Христове", + "LI": "Різдво Христове", + "LT": "Різдво Христове", + "LU": "Різдво Христове", + "LV": "Різдво Христове", + "MC": "Різдво Христове", + "MD": "Різдво Христове", + "MG": "Різдво Христове", + "MK": "Різдво Христове", + "MX": "Різдво Христове", + "NA": "Різдво Христове", + "NI": "Різдво Христове", + "NL": "Різдво Христове", + "NO": "Різдво Христове", + "PA": "Різдво Христове", + "PE": "Різдво Христове", + "PL": "Різдво Христове", + "PT": "Різдво Христове", + "PY": "Різдво Христове", + "RO": "Різдво Христове", + "SE": "Різдво Христове", + "SI": "Різдво Христове", + "SK": "Різдво Христове", + "SM": "Різдво Христове", + "SV": "Різдво Христове", + "UA": "Різдво Христове", + "VE": "Різдво Христове", + "XETR": "Перший день Різдва", + "XMEX": "Різдво Христове" + }, + "zh_CN": { + "HK": "圣诞节", + "MO": "圣诞", + "RU": "东正教圣诞节" + }, + "zh_HK": "聖誕節", + "zh_MO": "聖誕" + }, + "countries": [ + "AD", + "AI", + "AL", + "AO", + "AR", + "AT", + "AU", + "AW", + "BD", + "BE", + "BF", + "BG", + "BI", + "BJ", + "BM", + "BN", + "BO", + "BQ", + "BR", + "BVMF", + "CA", + "CC", + "CD", + "CF", + "CG", + "CH", + "CI", + "CK", + "CL", + "CO", + "CR", + "CU", + "CV", + "CW", + "CX", + "CY", + "CZ", + "DE", + "DJ", + "DK", + "DO", + "DZ", + "EC", + "EE", + "ES", + "ET", + "FI", + "FK", + "FM", + "FO", + "FR", + "GA", + "GB", + "GD", + "GE", + "GI", + "GL", + "GM", + "GN", + "GQ", + "GR", + "GS", + "GT", + "GW", + "GY", + "HK", + "HN", + "HR", + "HT", + "HU", + "ID", + "IQ", + "IS", + "IT", + "JO", + "KE", + "KG", + "KR", + "KY", + "LB", + "LC", + "LI", + "LK", + "LT", + "LU", + "LV", + "MC", + "MD", + "MG", + "MK", + "ML", + "MM", + "MO", + "MS", + "MT", + "MU", + "MX", + "MY", + "NA", + "NE", + "NF", + "NG", + "NI", + "NL", + "NO", + "NP", + "NR", + "NU", + "PA", + "PE", + "PH", + "PL", + "PT", + "PY", + "RO", + "RU", + "RW", + "SC", + "SD", + "SE", + "SG", + "SH", + "SI", + "SK", + "SL", + "SM", + "SN", + "SR", + "ST", + "SV", + "SX", + "SY", + "TC", + "TG", + "TK", + "TL", + "TO", + "TT", + "TV", + "TZ", + "UA", + "US", + "VA", + "VC", + "VE", + "VG", + "XCME", + "XETR", + "XMAD", + "XMEX", + "XNSE", + "XNYS", + "XTSE" + ] + }, + { + "id": "christmas_day_by_new_style", + "msgid": "Christmas Day (by new style)", + "new_comment": "", + "comment": "Christmas Day (by new style).", + "messages": { + "en_US": "Christmas Day (by new style)", + "ro": "Nașterea lui Iisus Hristos (Crăciunul pe stil nou)", + "uk": "Різдво Христове (за новим стилем)" + }, + "countries": [ + "MD" + ] + }, + { + "id": "christmas_day_by_old_style", + "msgid": "Christmas Day (by old style)", + "new_comment": "", + "comment": "Christmas Day (by old style).", + "messages": { + "en_US": "Christmas Day (by old style)", + "ro": "Nașterea lui Iisus Hristos (Crăciunul pe stil vechi)", + "uk": "Різдво Христове (за старим стилем)" + }, + "countries": [ + "MD" + ] + }, + { + "id": "christmas_eve", + "msgid": "Christmas Eve", + "new_comment": "", + "comment": "Christmas Eve.", + "messages": { + "ar": "عشية عيد الميلاد", + "bg": "Бъдни вечер", + "bn": "বড়দিনের আগের দিন", + "ca": "Vigília de Nadal", + "cnr": "Badnji dan", + "cs": "Štědrý den", + "da": "Juleaftensdag", + "de": { + "AT": "Heiliger Abend", + "CH": "Heiligabend", + "LI": "Heiligabend", + "PL": "Heiligabend", + "XETR": "Heiligabend", + "XSWX": "Heiligabend" + }, + "el": "Παραμονή Χριστουγέννων", + "en_AU": "Christmas Eve", + "en_CA": "Christmas Eve", + "en_CY": "Christmas Eve", + "en_GB": "Christmas Eve", + "en_HK": "Christmas Eve", + "en_IN": "Christmas Eve", + "en_MO": "Christmas Eve", + "en_PH": "Christmas Eve", + "en_SG": "Christmas Eve", + "en_US": "Christmas Eve", + "es": { + "CL": "Víspera de Navidad", + "VE": "Nochebuena", + "XBUE": "Nochebuena", + "XMAD": "Nochebuena" + }, + "et": "jõululaupäev", + "fi": "Jouluaatto", + "fil": "Bisperas ng Pasko", + "fo": "Jólaaftan", + "fr": "Veille de Noël", + "gu": { + "IN": "નાતાલની પૂર્વસંધ્યાએ", + "XCME": "નાતાલ પૂર્વસંધ્યા", + "XNYS": "નાતાલ પૂર્વસંધ્યા" + }, + "hi": "क्रिसमस की पूर्व संध्या", + "is": "Aðfangadagur", + "it": "Vigilia di Natale", + "it_IT": "Vigilia di Natale", + "kl": "Juulliaraq", + "kn": "ಕ್ರಿಸ್ಮಸ್ ಈವ್", + "lt": "Kūčių diena", + "lv": "Ziemassvētku vakars", + "mk": "Бадник", + "ml": "ക്രിസ്മസ് തലേന്ന്", + "mr": "ख्रिसमसच्या पूर्व संध्याकाळ", + "ms_MY": "Krismas (Eve)", + "no": "Julaften", + "pa": "ਕ੍ਰਿਸਮਿਸ ਦੀ ਪੂਰਵ ਸੰਧਿਆ", + "pl": "Wigilia Bożego Narodzenia", + "pt_BR": "Véspera de Natal", + "pt_MO": "Véspera de Natal", + "pt_PT": "Véspera de Natal", + "ru": "Рождественский сочельник", + "sk": "Štedrý deň", + "sv": "Julafton", + "sv_FI": "Julafton", + "ta": "கிறிஸ்துமஸ் ஈவ்", + "te": "క్రిస్మస్ ఈవ్", + "th": "วันคริสต์มาสอีฟ", + "uk": { + "AD": "Святий вечір", + "AT": "Святий вечір", + "BG": "Святий вечір", + "BR": "Святий вечір", + "CH": "Святий вечір", + "CL": "Святий вечір", + "CY": "Святий вечір", + "CZ": "Святий вечір", + "DK": "Святий вечір", + "EE": "Святий вечір", + "FI": "Святий вечір", + "GL": "Святий вечір", + "GR": "Святий вечір", + "IS": "Святий вечір", + "LI": "Святий вечір", + "LT": "Святий вечір", + "LV": "Святий вечір", + "ME": "Святий вечір", + "MK": "Святий вечір", + "PL": "Святий вечір", + "PT": "Святий вечір", + "SE": "Святий вечір", + "SK": "Святий вечір", + "SM": "Святий вечір", + "VE": "Святий вечір", + "XETR": "Святий вечір", + "XSWX": "Святвечір" + }, + "zh_CN": { + "MO": "圣诞前夕", + "XHKG": "平安夜" + }, + "zh_HK": "平安夜", + "zh_MO": "聖誕前夕" + }, + "countries": [ + "AD", + "AT", + "AU", + "BG", + "BR", + "CH", + "CL", + "CY", + "CZ", + "DK", + "EE", + "FI", + "FO", + "GL", + "GR", + "IN", + "IS", + "IT", + "LI", + "LT", + "LV", + "ME", + "MK", + "MO", + "MY", + "PH", + "PL", + "PT", + "SE", + "SK", + "SM", + "US", + "VA", + "VE", + "XBUE", + "XCME", + "XETR", + "XHKG", + "XLON", + "XMAD", + "XNYS", + "XSES", + "XSWX", + "XTSE" + ] + }, + { + "id": "christmas_eve_afternoon", + "msgid": "Christmas Eve (afternoon)", + "new_comment": "", + "comment": "Christmas Eve (afternoon).", + "messages": { + "de": "Heiligabend (Nachmittag)", + "en_US": "Christmas Eve (afternoon)", + "fr": "Veille de Noël (après-midi)", + "lb": "Hellegowend (nomëtteg)", + "uk": "Святий вечір (друга половина дня)" + }, + "countries": [ + "LU" + ] + }, + { + "id": "christmas_holiday", + "msgid": "Christmas Holiday", + "new_comment": "", + "comment": "Christmas Holiday.", + "messages": { + "en_GB": "Christmas Holiday", + "en_US": "Christmas Holiday" + }, + "countries": [ + "FK" + ] + }, + { + "id": "christmas_holidays", + "msgid": "Christmas Holidays", + "new_comment": "", + "comment": "Christmas Holidays.", + "messages": { + "en_US": "Christmas Holidays", + "hy": "նախածննդյան տոներ" + }, + "countries": [ + "AM" + ] + }, + { + "id": "christmas_joint_holiday", + "msgid": "Christmas Joint Holiday", + "new_comment": "", + "comment": "Christmas Joint Holiday.", + "messages": { + "en_US": "Christmas Joint Holiday", + "id": "Cuti Bersama Hari Raya Natal", + "th": "หยุดร่วมพิเศษวันคริสต์มาส", + "uk": "Додатковий вихідний на Різдво Христове" + }, + "countries": [ + "ID" + ] + }, + { + "id": "christmas_second_day", + "msgid": "Christmas Second Day", + "new_comment": "", + "comment": "Christmas Second Day.", + "messages": { + "en_US": "Christmas Second Day", + "th": "วันคริสต์มาสวันที่สอง" + }, + "countries": [ + "US" + ] + }, + { + "id": "chuquisaca_day", + "msgid": "Chuquisaca Day", + "new_comment": "", + "comment": "Chuquisaca Day.", + "messages": { + "en_US": "Chuquisaca Day", + "es": "Día del departamento de Chuquisaca", + "uk": "День департаменту Чукісака" + }, + "countries": [ + "BO" + ] + }, + { + "id": "chuseok", + "msgid": "Chuseok", + "new_comment": "", + "comment": "Chuseok.", + "messages": { + "en_US": "Chuseok", + "ko": "추석", + "ko_KP": "추석", + "th": "เทศกาลชูซอก" + }, + "countries": [ + "KP", + "KR" + ] + }, + { + "id": "chuuk_state_constitution_day", + "msgid": "Chuuk State Constitution Day", + "new_comment": "", + "comment": "Chuuk State Constitution Day.", + "messages": { + "en_FM": "Chuuk State Constitution Day", + "en_US": "Chuuk State Constitution Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "citizen_of_the_republic_of_armenia_day", + "msgid": "Citizen of the Republic of Armenia Day", + "new_comment": "", + "comment": "Citizen of the Republic of Armenia Day.", + "messages": { + "en_US": "Citizen of the Republic of Armenia Day", + "hy": "Հայաստանի Հանրապետության քաղաքացու օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "citizenship_day", + "msgid": "Citizenship Day", + "new_comment": "", + "comment": "Citizenship Day.", + "messages": { + "en_US": "Citizenship Day", + "fr": "Fête de la Citoyenneté", + "th": "วันแห่งความเป็นพลเมือง", + "uk": "День громадянства" + }, + "countries": [ + "FR", + "US" + ] + }, + { + "id": "civic_holiday", + "msgid": "Civic Holiday", + "new_comment": "", + "comment": "Civic Holiday.", + "messages": { + "ar": "عطلة المدنية", + "en_CA": "Civic Holiday", + "en_US": "Civic Holiday", + "fr": { + "CA": "Congé civique", + "XTSE": "Premier lundi d'août" + }, + "th": "วันหยุดราชการ" + }, + "countries": [ + "CA", + "XTSE" + ] + }, + { + "id": "closed_following_attacks_on_the_world_trade_center", + "msgid": "Closed following Attacks on the World Trade Center", + "new_comment": "", + "comment": "Closed following Attacks on the World Trade Center.", + "messages": { + "en_US": "Closed following Attacks on the World Trade Center", + "gu": "વર્લ્ડ ટ્રેડ સેન્ટર પરના હુમલા બાદ બંધ", + "hi": "वर्ल्ड ट्रेड सेंटर पर हमलों के बाद बंद" + }, + "countries": [ + "XCME", + "XNYS" + ] + }, + { + "id": "closed_saturday", + "msgid": "Closed Saturday", + "new_comment": "", + "comment": "Closed Saturday.", + "messages": { + "en_US": "Closed Saturday", + "gu": "શનિવારે બંધ", + "hi": "शनिवार को बंद" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "cochabamba_day", + "msgid": "Cochabamba Day", + "new_comment": "", + "comment": "Cochabamba Day.", + "messages": { + "en_US": "Cochabamba Day", + "es": "Día del departamento de Cochabamba", + "uk": "День департаменту Кочабамба" + }, + "countries": [ + "BO" + ] + }, + { + "id": "colon_day", + "msgid": "Colon Day", + "new_comment": "", + "comment": "Colon Day.", + "messages": { + "en_US": "Colon Day", + "es": "Día de Colón", + "uk": "День Колона" + }, + "countries": [ + "PA" + ] + }, + { + "id": "colony_day", + "msgid": "Colony Day", + "new_comment": "", + "comment": "Colony Day.", + "messages": { + "en_US": "Colony Day", + "en_VG": "Colony Day" + }, + "countries": [ + "VG" + ] + }, + { + "id": "columbian_celebration", + "msgid": "Columbian Celebration", + "new_comment": "", + "comment": "Columbian Celebration.", + "messages": { + "en_US": "Columbian Celebration", + "gu": "કોલમ્બિયન ઉજવણી", + "hi": "कोलंबियन उत्सव" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "columbus_day", + "msgid": "Columbus Day", + "new_comment": "", + "comment": "Columbus Day.", + "messages": { + "en_TC": "Columbus Day", + "en_US": "Columbus Day", + "es": "Día de la Raza", + "gu": "કોલંબસ ડે", + "hi": "कोलंबस दिवस", + "th": "วันโคลัมบัส", + "uk": "День Колумба" + }, + "countries": [ + "AR", + "CL", + "CO", + "HN", + "TC", + "US", + "UY", + "VE", + "XNYS" + ] + }, + { + "id": "columbus_day_american_indian_heritage_day_fraternal_day", + "msgid": "Columbus Day / American Indian Heritage Day / Fraternal Day", + "new_comment": "", + "comment": "Columbus Day / American Indian Heritage Day / Fraternal Day.", + "messages": { + "en_US": "Columbus Day / American Indian Heritage Day / Fraternal Day", + "th": "วันโคลัมบัส / วันอนุรักษ์มรดกชนพื้นเมืองอเมริกัน / วันภราดรภาพ" + }, + "countries": [ + "US" + ] + }, + { + "id": "columbus_day_and_puerto_rico_friendship_day", + "msgid": "Columbus Day and Puerto Rico Friendship Day", + "new_comment": "", + "comment": "Columbus Day and Puerto Rico Friendship Day.", + "messages": { + "en_US": "Columbus Day and Puerto Rico Friendship Day", + "th": "วันโคลัมบัส และวันมิตรภาพกับเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "columbus_day_fraternal_day", + "msgid": "Columbus Day / Fraternal Day", + "new_comment": "", + "comment": "Columbus Day / Fraternal Day.", + "messages": { + "en_US": "Columbus Day / Fraternal Day", + "th": "วันโคลัมบัส / วันภราดรภาพ" + }, + "countries": [ + "US" + ] + }, + { + "id": "coming_of_age_day", + "msgid": "Coming of Age Day", + "new_comment": "", + "comment": "Coming of Age Day.", + "messages": { + "en_US": "Coming of Age Day", + "ja": "成人の日", + "th": "วันฉลองบรรลุนิติภาวะ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "commemoration_day", + "msgid": "Commemoration Day", + "new_comment": "", + "comment": "Commemoration Day.", + "messages": { + "ar": "يوم الشهيد", + "en_US": "Commemoration Day", + "th": "วันรำลึกผู้อุทิศตน" + }, + "countries": [ + "AE" + ] + }, + { + "id": "commemoration_day_of_the_lifting_of_martial_law", + "msgid": "Commemoration Day of the Lifting of Martial Law", + "new_comment": "", + "comment": "Commemoration Day of the Lifting of Martial Law.", + "messages": { + "en_US": "Commemoration Day of the Lifting of Martial Law", + "th": "วันรำลึกการยกเลิกกฎอัยการศึก", + "zh_CN": "解严纪念日", + "zh_TW": "解嚴紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "commemoration_of_atat_rk_youth_and_sports_day", + "msgid": "Commemoration of Atatürk, Youth and Sports Day", + "new_comment": "", + "comment": "Commemoration of Atatürk, Youth and Sports Day.", + "messages": { + "en_US": "Commemoration of Atatürk, Youth and Sports Day", + "tr": "Atatürk'ü Anma, Gençlik ve Spor Bayramı", + "uk": "День вшанування памʼяті Ататюрка, молоді та спорту" + }, + "countries": [ + "TR" + ] + }, + { + "id": "commemoration_of_the_apollo_11_moon_landing", + "msgid": "Commemoration of the Apollo 11 Moon Landing", + "new_comment": "", + "comment": "Commemoration of the Apollo 11 Moon Landing.", + "messages": { + "en_US": "Commemoration of the Apollo 11 Moon Landing", + "ko": "아폴로 11호 달 착륙 기념", + "th": "วันรำลึกการลงจอดบนดวงจันทร์สำเร็จของยานอะพอลโล 11" + }, + "countries": [ + "KR" + ] + }, + { + "id": "commemoration_of_the_assassination_of_national_hero_prince_louis_rwagasore", + "msgid": "Commemoration of the Assassination of National Hero, Prince Louis Rwagasore", + "new_comment": "", + "comment": "Commemoration of the Assassination of National Hero, Prince Louis Rwagasore.", + "messages": { + "en_US": "Commemoration of the Assassination of National Hero, Prince Louis Rwagasore", + "fr_BI": "Commémoration de l'Assassinat du Héros National, le Prince Louis Rwagasore" + }, + "countries": [ + "BI" + ] + }, + { + "id": "commemoration_of_the_assassination_of_president_cyprien_ntaryamira", + "msgid": "Commemoration of the Assassination of President Cyprien Ntaryamira", + "new_comment": "", + "comment": "Commemoration of the Assassination of President Cyprien Ntaryamira.", + "messages": { + "en_US": "Commemoration of the Assassination of President Cyprien Ntaryamira", + "fr_BI": "Commémoration de l'Assassinat du Président Cyprien Ntaryamira" + }, + "countries": [ + "BI" + ] + }, + { + "id": "commemoration_of_the_assassination_of_president_melchior_ndadaye", + "msgid": "Commemoration of the Assassination of President Melchior Ndadaye", + "new_comment": "", + "comment": "Commemoration of the Assassination of President Melchior Ndadaye.", + "messages": { + "en_US": "Commemoration of the Assassination of President Melchior Ndadaye", + "fr_BI": "Commémoration de l'Assassinat du Président Melchior Ndadaye" + }, + "countries": [ + "BI" + ] + }, + { + "id": "commemoration_of_the_assault_of_the_moncada_garrison", + "msgid": "Commemoration of the Assault of the Moncada garrison", + "new_comment": "", + "comment": "Commemoration of the Assault of the Moncada garrison.", + "messages": { + "en_US": "Commemoration of the Assault of the Moncada garrison", + "es": "Conmemoración del asalto a Moncada", + "uk": "Вшанування памʼяті штурму Монкади" + }, + "countries": [ + "CU" + ] + }, + { + "id": "commemoration_of_the_battle_of_caseros", + "msgid": "Commemoration of the Battle of Caseros", + "new_comment": "", + "comment": "Commemoration of the Battle of Caseros.", + "messages": { + "en_US": "Commemoration of the Battle of Caseros", + "es": "Conmemoración de la Batalla de Caseros", + "uk": "День битви під Касеросом" + }, + "countries": [ + "AR" + ] + }, + { + "id": "commemoration_of_the_battle_of_vertieres", + "msgid": "Commemoration of the Battle of Vertieres", + "new_comment": "", + "comment": "Commemoration of the Battle of Vertieres.", + "messages": { + "en_US": "Commemoration of the Battle of Vertieres", + "es": "Conmemoración de la Batalla de Vertières", + "fr_HT": "Commémoration de la Bataille de Vertières", + "ht": "Komemorasyon batay Vertières" + }, + "countries": [ + "HT" + ] + }, + { + "id": "commemoration_of_the_dead", + "msgid": "Commemoration of the Dead", + "new_comment": "", + "comment": "Commemoration of the Dead.", + "messages": { + "en_US": "Commemoration of the Dead", + "it": "Commemorazione dei defunti", + "uk": "День вшанування померлих" + }, + "countries": [ + "SM" + ] + }, + { + "id": "commemoration_of_the_saddam_baath_crimes_against_the_iraqi_people", + "msgid": "Commemoration of the Saddam Baath crimes against the Iraqi people", + "new_comment": "", + "comment": "Commemoration of the Saddam Baath crimes against the Iraqi people.", + "messages": { + "ar": "ذكرى جرائم البعث والأنفال والهجوم على حلبجة", + "en_US": "Commemoration of the Saddam Baath crimes against the Iraqi people" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "commemoration_of_the_workers_shot_in_the_patagonian_strikes", + "msgid": "Commemoration of the workers shot in the Patagonian Strikes", + "new_comment": "", + "comment": "Commemoration of the workers shot in the Patagonian Strikes.", + "messages": { + "en_US": "Commemoration of the workers shot in the Patagonian Strikes", + "es": "Conmemoración a los obreros fusilados en las Huelgas Patagónicas", + "uk": "Вшанування пам'яті робітників, розстріляних під час Патагонських страйків" + }, + "countries": [ + "AR" + ] + }, + { + "id": "commencement_of_the_armed_struggle", + "msgid": "Commencement of the Armed Struggle", + "new_comment": "", + "comment": "Commencement of the Armed Struggle.", + "messages": { + "ar": "اندلاع الكفاح المسلح", + "en_US": "Commencement of the Armed Struggle", + "es": "Inicio de la lucha armada", + "fr": "Déclenchement de la lutte armée" + }, + "countries": [ + "EH" + ] + }, + { + "id": "commerce_day", + "msgid": "Commerce Day", + "new_comment": "", + "comment": "Commerce Day.", + "messages": { + "en_US": "Commerce Day", + "is": "Frídagur verslunarmanna", + "uk": "День торгівлі" + }, + "countries": [ + "IS" + ] + }, + { + "id": "commonwealth_covenant_day", + "msgid": "Commonwealth Covenant Day", + "new_comment": "", + "comment": "Commonwealth Covenant Day.", + "messages": { + "en_US": "Commonwealth Covenant Day", + "th": "วันปฏิญญาเครือรัฐ" + }, + "countries": [ + "US" + ] + }, + { + "id": "commonwealth_cultural_day", + "msgid": "Commonwealth Cultural Day", + "new_comment": "", + "comment": "Commonwealth Cultural Day.", + "messages": { + "en_US": "Commonwealth Cultural Day", + "th": "วันวัฒนธรรมแห่งเครือรัฐ" + }, + "countries": [ + "US" + ] + }, + { + "id": "commonwealth_day", + "msgid": "Commonwealth Day", + "new_comment": "", + "comment": "Commonwealth Day.", + "messages": { + "en_GB": "Commonwealth Day", + "en_GY": "Commonwealth Day", + "en_TC": "Commonwealth Day", + "en_US": "Commonwealth Day", + "en_VG": "Commonwealth Day", + "tvl": "Aso Atefenua" + }, + "countries": [ + "GI", + "GY", + "TC", + "TV", + "VG" + ] + }, + { + "id": "compensatory_rest_day_for_s", + "msgid": "Compensatory rest day for %s", + "new_comment": "", + "comment": "Compensatory rest day for %s.", + "messages": { + "en_MO": "Compensatory rest day for %s", + "en_US": "Compensatory rest day for %s", + "pt_MO": "Dia de descanso compensatório relativo ao %s", + "th": "ชดเชย%s", + "zh_CN": "%s的补假", + "zh_MO": "%s的補假" + }, + "countries": [ + "MO" + ] + }, + { + "id": "compensatory_rest_day_for_s_estimated", + "msgid": "Compensatory rest day for %s (estimated)", + "new_comment": "", + "comment": "Compensatory rest day for %s (estimated).", + "messages": { + "en_MO": "Compensatory rest day for %s (estimated)", + "en_US": "Compensatory rest day for %s (estimated)", + "pt_MO": "Dia de descanso compensatório relativo ao %s (estimado)", + "th": "ชดเชย%s (โดยประมาณ)", + "zh_CN": "%s的补假(推定)", + "zh_MO": "%s的補假(推定)" + }, + "countries": [ + "MO" + ] + }, + { + "id": "con_edison_power_failure_in_lower_manhattan_markets_close_at_3_28pm", + "msgid": "Con Edison power failure in lower Manhattan (markets close at 3:28pm)", + "new_comment": "", + "comment": "Con Edison power failure in lower Manhattan (markets close at 3:28pm).", + "messages": { + "en_US": "Con Edison power failure in lower Manhattan (markets close at 3:28pm)", + "gu": "નીચલા મેનહટનમાં કોન એડિસન પાવર નિષ્ફળતા (બજારો બપોરે 3:28 વાગ્યે બંધ થાય છે)", + "hi": "लोअर मैनहट्टन में कॉन एडिसन पावर विफलता (बाज़ार दोपहर 3:28 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "confederate_memorial_day", + "msgid": "Confederate Memorial Day", + "new_comment": "", + "comment": "Confederate Memorial Day.", + "messages": { + "en_US": "Confederate Memorial Day", + "th": "วันรำลึกถึงฝ่ายสมาพันธรัฐ" + }, + "countries": [ + "US" + ] + }, + { + "id": "confucius_birthday", + "msgid": "Confucius' Birthday", + "new_comment": "", + "comment": "Confucius' Birthday.", + "messages": { + "en_US": "Confucius' Birthday", + "th": "วันขงจื๊อ", + "zh_CN": "孔子诞辰纪念日", + "zh_TW": "孔子誕辰紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "congolese_genocide_memorial_day", + "msgid": "Congolese Genocide Memorial Day", + "new_comment": "", + "comment": "Congolese Genocide Memorial Day.", + "messages": { + "en_US": "Congolese Genocide Memorial Day", + "fr": "Journée commémorative du génocide Congolais" + }, + "countries": [ + "CD" + ] + }, + { + "id": "constitution_and_state_flag_day", + "msgid": "Constitution and State Flag Day", + "new_comment": "", + "comment": "Constitution and State Flag Day.", + "messages": { + "en_US": "Constitution and State Flag Day", + "ru": "День Конституции Туркменистана и Государственного флага Туркменистана", + "tk": "Türkmenistanyň Konstitusiýasynyň we Döwlet baýdagynyň güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "constitution_day", + "msgid": "Constitution Day", + "new_comment": "", + "comment": "Constitution Day.", + "messages": { + "az": "Konstitusiya Günü", + "be": "Дзень Канстытуцыі", + "ca": { + "AD": "Dia de la Constitució", + "ES": "Dia de la Constitució Espanyola" + }, + "da": "Grundlovsdag", + "en_AI": "Constitution Day", + "en_CK": "Constitution Day", + "en_GB": "Constitution Day", + "en_NR": "Constitution Day", + "en_NU": "Constitution Day", + "en_SC": "Constitution Day", + "en_TC": "Constitution Day", + "en_US": "Constitution Day", + "es": { + "DO": "Día de la Constitución", + "ES": "Día de la Constitución Española", + "GQ": "Día de la Constitución", + "MX": "Día de la Constitución", + "PA": "Día de la Constitución", + "UY": "Jura de la Constitución", + "XMEX": "Día de la Constitución" + }, + "fo": "Grundlógardagur", + "hy": "Սահմանադրության օր", + "is": "Stjórnarskrárdagur", + "ja": "憲法記念日", + "kk": "Қазақстан Республикасының Конституциясы күні", + "km": "ទិវាប្រកាសរដ្ឋធម្មនុញ្ញ", + "kn": "ಸಂವಿಧಾನ ದಿನ", + "ko": "제헌절", + "ky": "Кыргыз Республикасынын Конституция күнү", + "mn": "Монгол Улсын Үндсэн хуулийн өдөр", + "ne": "संविधान दिवस", + "nl": "Dag van de Constitutie", + "no": "Grunnlovsdag", + "ru": { + "BY": "День Конституции", + "RU": "День Конституции Российской Федерации", + "TJ": "День Конституции Республики Таджикистан" + }, + "ru_KG": "День Конституции Кыргызской Республики", + "sk": "Deň Ústavy Slovenskej republiky", + "sq": "Dita e Kushtetutës së Republikës së Kosovës", + "sr": "Dan Ustava Republike Kosova", + "sv": "Grundlagsdag", + "tg": "Рӯзи Конститутсияи Ҷумҳурии Тоҷикистон", + "th": { + "BY": "วันรัฐธรรมนูญ", + "DK": "วันรัฐธรรมนูญ", + "ES": "วันรัฐธรรมนูญสเปน", + "JP": "วันรัฐธรรมนูญ", + "KH": "วันรัฐธรรมนูญ", + "KR": "วันรัฐธรรมนูญ", + "NO": "วันรัฐธรรมนูญ", + "RU": "วันรัฐธรรมนูญสหพันธรัฐรัสเซีย", + "TH": "วันรัฐธรรมนูญ", + "TW": "วันรัฐธรรมนูญ", + "US": "วันรัฐธรรมนูญ" + }, + "to": "ʻAho Konisitutone", + "uk": { + "AD": "День Конституції", + "AZ": "День Конституції", + "DK": "День Конституції", + "DO": "День Конституції", + "ES": "День Конституції Іспанії", + "KZ": "День Конституції Республіки Казахстан", + "MX": "День Конституції", + "NO": "День Конституції", + "PA": "День Конституції", + "SK": "День конституції Словацької Республіки", + "TH": "День Конституції", + "UY": "День присяги Конституції", + "UZ": "День Конституції Республіки Узбекистан", + "XMEX": "День Конституції" + }, + "uz": "Oʻzbekiston Respublikasi Konstitutsiyasi kuni", + "zh_CN": { + "RU": "宪法日", + "TW": "行宪纪念日" + }, + "zh_TW": "行憲紀念日" + }, + "countries": [ + "AD", + "AI", + "AM", + "AZ", + "BY", + "CK", + "DK", + "DO", + "ES", + "FO", + "GQ", + "JP", + "KG", + "KH", + "KR", + "KY", + "KZ", + "MN", + "MX", + "NO", + "NP", + "NR", + "NU", + "PA", + "RU", + "SC", + "SK", + "SX", + "TC", + "TH", + "TJ", + "TO", + "TW", + "US", + "UY", + "UZ", + "XK", + "XMEX" + ] + }, + { + "id": "constitution_day_holiday", + "msgid": "Constitution Day Holiday", + "new_comment": "", + "comment": "Constitution Day Holiday.", + "messages": { + "en_NU": "Constitution Day Holiday", + "en_US": "Constitution Day Holiday" + }, + "countries": [ + "NU" + ] + }, + { + "id": "constitution_oath_day", + "msgid": "Constitution Oath Day", + "new_comment": "", + "comment": "Constitution Oath Day.", + "messages": { + "en_US": "Constitution Oath Day", + "es": "Día de la Jura de la Constitución Nacional", + "uk": "День присяги національній Конституції" + }, + "countries": [ + "PY" + ] + }, + { + "id": "constitution_petition_day", + "msgid": "Constitution Petition Day", + "new_comment": "", + "comment": "Constitution Petition Day.", + "messages": { + "en_US": "Constitution Petition Day", + "th": "วันขอพระราชทานรัฐธรรมนูญ", + "uk": "День конституційної петиції" + }, + "countries": [ + "TH" + ] + }, + { + "id": "constitutional_assembly_convocation_day", + "msgid": "Constitutional Assembly Convocation Day", + "new_comment": "", + "comment": "Constitutional Assembly Convocation Day.", + "messages": { + "en_US": "Constitutional Assembly Convocation Day", + "lv": "Latvijas Republikas Satversmes sapulces sasaukšanas diena", + "ru": "День созыва Учредительного собрания Латвийской Республики", + "uk": "День скликання Конституційних зборів Латвійської Республіки" + }, + "countries": [ + "LV" + ] + }, + { + "id": "constitutionalist_revolution", + "msgid": "Constitutionalist Revolution", + "new_comment": "", + "comment": "Constitutionalist Revolution.", + "messages": { + "en_US": "Constitutionalist Revolution", + "pt_BR": "Revolução Constitucionalista", + "uk": "День Конституціоналістської революції" + }, + "countries": [ + "BR" + ] + }, + { + "id": "cook_islands_gospel_day", + "msgid": "Cook Islands Gospel Day", + "new_comment": "", + "comment": "Cook Islands Gospel Day.", + "messages": { + "en_CK": "Cook Islands Gospel Day", + "en_US": "Cook Islands Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "coptic_christmas_day", + "msgid": "Coptic Christmas Day", + "new_comment": "", + "comment": "Coptic Christmas Day.", + "messages": { + "ar_EG": "عيد الميلاد المجيد", + "ar_SD": "عيد الميلاد المجيد", + "en_US": "Coptic Christmas Day", + "fr": "Fête de Noël" + }, + "countries": [ + "EG", + "SD" + ] + }, + { + "id": "coptic_easter", + "msgid": "Coptic Easter", + "new_comment": "", + "comment": "Coptic Easter.", + "messages": { + "ar_SD": "عيد الفصح القبطي", + "en_US": "Coptic Easter" + }, + "countries": [ + "SD" + ] + }, + { + "id": "coronation_day", + "msgid": "Coronation Day", + "new_comment": "", + "comment": "Coronation Day.", + "messages": { + "en_US": "Coronation Day", + "th": "พระราชพิธีฉัตรมงคล", + "uk": "День королівської коронації" + }, + "countries": [ + "TH" + ] + }, + { + "id": "coronation_day_of_his_majesty_preah_bat_samdech_preah_boromneath_norodom_sihamoni_king_of_cambodia", + "msgid": "HM King Norodom Sihamoni's Coronation Day", + "new_comment": "", + "comment": "Coronation Day of His Majesty Preah Bat Samdech Preah Boromneath NORODOM SIHAMONI, King of\nCambodia.", + "messages": { + "en_US": "HM King Norodom Sihamoni's Coronation Day", + "km": "ព្រះរាជពិធីគ្រងព្រះបរមរាជសម្បត្តិ របស់ ព្រះករុណា ព្រះបាទសម្តេចព្រះបរមនាថ នរោត្តម សីហមុនី ព្រះមហាក្សត្រនៃព្រះរាជាណាចក្រកម្ពុជា", + "th": "พระราชพิธีเฉลิมฉลองการขึ้นครองราชสมบัติ พระบาทสมเด็จพระบรมนาถ นโรดมสีหมุนี พระมหากษัตริย์แห่งราชอาณาจักรกัมพูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "coronation_of_charles_iii", + "msgid": "Coronation of Charles III", + "new_comment": "", + "comment": "Coronation of Charles III.", + "messages": { + "en_GB": "Coronation of Charles III", + "en_US": "Coronation of Charles III", + "en_VG": "The King's Coronation", + "th": "พระราชพิธีราชาภิเษกของสมเด็จพระเจ้าชาลส์ที่ 3 แห่งสหราชอาณาจักร" + }, + "countries": [ + "GB", + "VG" + ] + }, + { + "id": "coronation_of_his_majesty_king_charles_iii", + "msgid": "Coronation of His Majesty King Charles III", + "new_comment": "", + "comment": "Coronation of His Majesty King Charles III.", + "messages": { + "en_GB": "Coronation of His Majesty King Charles III", + "en_US": "Coronation of His Majesty King Charles III" + }, + "countries": [ + "SH" + ] + }, + { + "id": "coronation_of_his_majesty_the_king", + "msgid": "Coronation of His Majesty the King", + "new_comment": "", + "comment": "Coronation of His Majesty the King.", + "messages": { + "dz": "མི་དབང་མངའ་བདག་རིན་པོ་ཆེའི་གསེར་ཁྲི་མངའ་གསོལ་གྱི་དུས་ཆེན་ངལ་གསོལ།", + "en_US": "Coronation of His Majesty the King" + }, + "countries": [ + "BT" + ] + }, + { + "id": "coronation_of_king_charles_iii", + "msgid": "Coronation of King Charles III", + "new_comment": "", + "comment": "Coronation of King Charles III.", + "messages": { + "en_MS": "Coronation of King Charles III", + "en_US": "Coronation of King Charles III" + }, + "countries": [ + "MS" + ] + }, + { + "id": "coronation_of_king_edward_vii_of_england", + "msgid": "Coronation of King Edward VII of England", + "new_comment": "", + "comment": "Coronation of King Edward VII of England.", + "messages": { + "en_US": "Coronation of King Edward VII of England", + "gu": "ઇંગ્લેન્ડના રાજા એડવર્ડ સાતમાનો રાજ્યાભિષેક", + "hi": "इंग्लैंड के राजा एडवर्ड सप्तम का राज्याभिषेक" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "corpus_christi", + "msgid": "Corpus Christi", + "new_comment": "", + "comment": "Corpus Christi.", + "messages": { + "ca": "Corpus Christi", + "de": "Fronleichnam", + "en_GD": "Corpus Christi", + "en_LC": "Corpus Christi", + "en_MO": "Corpus Christi", + "en_SC": "The Fete Dieu", + "en_TL": "Corpus Christi", + "en_TT": "Corpus Christi", + "en_US": "Corpus Christi", + "es": { + "AR": "Corpus Christi", + "BO": "Corpus Christi", + "CL": "Corpus Christi", + "CO": "Corpus Christi", + "DO": "Corpus Christi", + "ES": "Corpus Christi", + "GQ": "Corpus Christi", + "HT": "Fête-Dieu" + }, + "fr": "Fête-Dieu", + "fr_HT": "Fête-Dieu", + "fr_MC": "Le jour de la Fête Dieu", + "hr": "Tijelovo", + "ht": "Fèt Dye", + "it": "Corpus Domini", + "it_IT": "Corpus Domini", + "pl": "Dzień Bożego Ciała", + "pt_BR": "Corpus Christi", + "pt_MO": "Corpo de Deus", + "pt_PT": "Corpo de Deus", + "pt_TL": "Festa do Corpo de Deus", + "tet": "Festa Korpu de Deus", + "th": "วันสมโภชพระคริสตวรกาย", + "uk": "Свято Тіла і Крові Христових", + "zh_CN": "基督圣体圣血节", + "zh_MO": "基督聖體聖血節" + }, + "countries": [ + "AR", + "AT", + "BO", + "BR", + "BVMF", + "CH", + "CL", + "CO", + "DE", + "DO", + "ES", + "GD", + "GQ", + "HR", + "HT", + "IT", + "LC", + "LI", + "MC", + "MO", + "PL", + "PT", + "SC", + "SM", + "TL", + "TT" + ] + }, + { + "id": "corpus_domini", + "msgid": "Corpus Domini", + "new_comment": "", + "comment": "Corpus Domini.", + "messages": { + "en_US": "Corpus Domini", + "it": "Corpus Domini", + "th": "วันสมโภชพระคริสตวรกาย" + }, + "countries": [ + "VA" + ] + }, + { + "id": "creation_of_the_federal_territory", + "msgid": "Creation of the Federal Territory", + "new_comment": "", + "comment": "Creation of the Federal Territory.", + "messages": { + "en_US": "Creation of the Federal Territory", + "pt_BR": "Criação do Território Federal", + "uk": "День створення федеральної території" + }, + "countries": [ + "BR" + ] + }, + { + "id": "creation_of_the_polisario_front", + "msgid": "Creation of the Polisario Front", + "new_comment": "", + "comment": "Creation of the Polisario Front.", + "messages": { + "ar": "تأسيس الجبهة الشعبية لتحرير الساقية الحمراء ووادي الذهب", + "en_US": "Creation of the Polisario Front", + "es": "Creación del Frente POLISARIO", + "fr": "Création du Front POLISARIO" + }, + "countries": [ + "EH" + ] + }, + { + "id": "cry_of_asencio", + "msgid": "Cry of Asencio", + "new_comment": "", + "comment": "Cry of Asencio.", + "messages": { + "en_US": "Cry of Asencio", + "es": "Grito de Asencio", + "uk": "День заклику Асенціо" + }, + "countries": [ + "UY" + ] + }, + { + "id": "cultural_diversity_day", + "msgid": "Cultural Diversity Day", + "new_comment": "", + "comment": "Cultural Diversity Day.", + "messages": { + "en_US": "Cultural Diversity Day", + "es": "Día de la Diversidad Cultural", + "uk": "День культурного різноманіття" + }, + "countries": [ + "UY" + ] + }, + { + "id": "culture_day", + "msgid": "Culture Day", + "new_comment": "", + "comment": "Culture Day.", + "messages": { + "en_US": "Culture Day", + "ja": "文化の日", + "th": "วันวัฒนธรรม" + }, + "countries": [ + "JP" + ] + }, + { + "id": "cultures_day", + "msgid": "Cultures Day", + "new_comment": "", + "comment": "Cultures Day.", + "messages": { + "en_US": "Cultures Day", + "es": "Día de las Culturas", + "uk": "День культур" + }, + "countries": [ + "CR" + ] + }, + { + "id": "cup_match_day", + "msgid": "Cup Match Day", + "new_comment": "", + "comment": "Cup Match Day.", + "messages": { + "en_BM": "Cup Match Day", + "en_US": "Cup Match Day" + }, + "countries": [ + "BM" + ] + }, + { + "id": "cura_ao_day", + "msgid": "Curaçao Day", + "new_comment": "", + "comment": "Curaçao Day.", + "messages": { + "en_US": "Curaçao Day", + "nl": "Dag van Land Curaçao", + "pap_CW": "Dia di Pais Kòrsou", + "uk": "День Кюрасао" + }, + "countries": [ + "CW" + ] + }, + { + "id": "cyclone_day", + "msgid": "Cyclone Day", + "new_comment": "", + "comment": "Cyclone Day.", + "messages": { + "en_GB": "Cyclone Day", + "en_US": "Cyclone Day", + "tvl": "Aso o te matagi" + }, + "countries": [ + "TV" + ] + }, + { + "id": "cyprus_independence_day", + "msgid": "Cyprus Independence Day", + "new_comment": "", + "comment": "Cyprus Independence Day.", + "messages": { + "el": "Ημέρα της Κυπριακής Ανεξαρτησίας", + "en_CY": "Cyprus Independence Day", + "en_US": "Cyprus Independence Day", + "uk": "День незалежності Кіпру" + }, + "countries": [ + "CY" + ] + }, + { + "id": "cyprus_national_day", + "msgid": "Cyprus National Day", + "new_comment": "", + "comment": "Cyprus National Day.", + "messages": { + "el": "Εθνική Ημέρα Κύπρου", + "en_CY": "Cyprus National Day", + "en_US": "Cyprus National Day", + "uk": "Національне свято Кіпру" + }, + "countries": [ + "CY" + ] + }, + { + "id": "daeboreum", + "msgid": "Daeboreum", + "new_comment": "", + "comment": "Daeboreum.", + "messages": { + "en_US": "Daeboreum", + "ko_KP": "대보름" + }, + "countries": [ + "KP" + ] + }, + { + "id": "dano", + "msgid": "Dano", + "new_comment": "", + "comment": "Dano.", + "messages": { + "en_US": "Dano", + "ko_KP": "단오" + }, + "countries": [ + "KP" + ] + }, + { + "id": "dassain", + "msgid": "Dassain", + "new_comment": "", + "comment": "Dassain.", + "messages": { + "dz": "ལྷོ་མཚམས་ད་སའིན་ངལ་གསོ།", + "en_US": "Dassain" + }, + "countries": [ + "BT" + ] + }, + { + "id": "date_of_founding_of_mpla_labor_party", + "msgid": "Date of Founding of MPLA - Labor Party", + "new_comment": "", + "comment": "Date of Founding of MPLA - Labor Party.", + "messages": { + "en_US": "Date of Founding of MPLA - Labor Party", + "pt_AO": "Data da Fundacao do MPLA - Partido do Trabalho", + "uk": "Дата заснування НРВА - партії праці" + }, + "countries": [ + "AO" + ] + }, + { + "id": "day_after_assumption_of_mary", + "msgid": "Day After Assumption of Mary", + "new_comment": "", + "comment": "Day After Assumption of Mary.", + "messages": { + "en_US": "Day After Assumption of Mary", + "it": "Giorno Successivo all'Assunzione di Maria Santissima", + "th": "วันหลังวันสมโภชแม่พระรับเกียรติยกขึ้นสวรรค์" + }, + "countries": [ + "VA" + ] + }, + { + "id": "day_after_christmas", + "msgid": "Day After Christmas", + "new_comment": "", + "comment": "Day After Christmas.", + "messages": { + "el": "Επομένη Χριστουγέννων", + "en_CY": "Day After Christmas", + "en_GY": "Day After Christmas", + "en_US": "Day After Christmas", + "gu": "નાતાલ પછીનો દિવસ", + "hi": "क्रिसमस के बाद का दिन", + "th": "วันหลังวันคริสต์มาส", + "uk": "Другий день Різдва" + }, + "countries": [ + "CY", + "GY", + "US", + "XNYS" + ] + }, + { + "id": "day_after_eid_al_adha", + "msgid": "Day after Eid al-Adha", + "new_comment": "", + "comment": "Day after Eid al-Adha.", + "messages": { + "en_US": "Day after Eid al-Adha", + "fr": "Lendemain de la Tabaski", + "fr_NE": "Lendemain de la Tabaski" + }, + "countries": [ + "GN", + "NE" + ] + }, + { + "id": "day_after_independence_day", + "msgid": "Day after Independence Day", + "new_comment": "", + "comment": "Day after Independence Day.", + "messages": { + "en_US": "Day after Independence Day", + "gu": "સ્વતંત્રતા દિવસ પછીનો દિવસ", + "hi": "स्वतंत्रता दिवस के बाद का दिन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "day_after_new_year_s_day", + "msgid": "Day after New Year's Day", + "new_comment": "", + "comment": "Day after New Year's Day.", + "messages": { + "en_CK": "Day after New Year's Day", + "en_MU": "Day after New Year's Day", + "en_US": "Day after New Year's Day", + "fr": "Le lendemain du Nouvel An", + "rw": "Umunsi ukurikira Ubunani" + }, + "countries": [ + "CK", + "MU", + "RW" + ] + }, + { + "id": "day_after_night_of_power", + "msgid": "Day after Night of Power", + "new_comment": "", + "comment": "Day after Night of Power.", + "messages": { + "en_CI": "Day after Lailatou-Kadr", + "en_US": "Day after Night of Power", + "fr": { + "CI": "Lendemain de la Nuit du Destin", + "GN": "Lendemain de la nuit Lailatoul Qadr" + } + }, + "countries": [ + "CI", + "GN" + ] + }, + { + "id": "day_after_prophet_s_birthday", + "msgid": "Day after Prophet's Birthday", + "new_comment": "", + "comment": "Day after Prophet's Birthday.", + "messages": { + "en_CI": "Day after Maouloud", + "en_US": "Day after Prophet's Birthday", + "fr": { + "CI": "Lendemain de l'Anniversaire de la Naissance du Prophète Mahomet", + "GN": "Lendemain de la nuit du Maoloud" + } + }, + "countries": [ + "CI", + "GN" + ] + }, + { + "id": "day_after_thanksgiving", + "msgid": "Day After Thanksgiving", + "new_comment": "", + "comment": "Day After Thanksgiving.", + "messages": { + "en_US": "Day After Thanksgiving", + "th": "วันหลังวันขอบคุณพระเจ้า" + }, + "countries": [ + "US" + ] + }, + { + "id": "day_after_thanksgiving_day", + "msgid": "Day after Thanksgiving Day", + "new_comment": "", + "comment": "Day after Thanksgiving Day.", + "messages": { + "en_US": "Day after Thanksgiving Day", + "gu": "થેંક્સગિવિંગ ડે પછીનો દિવસ", + "hi": "थैंक्सगिविंग डे के बाद का दिन" + }, + "countries": [ + "XCME", + "XNYS" + ] + }, + { + "id": "day_after_the_s", + "msgid": "Day after the %s", + "new_comment": "", + "comment": "Day after the %s.", + "messages": { + "en_CI": "Day after the %s", + "en_US": "Day after the %s", + "fr": "Lendemain de la %s" + }, + "countries": [ + "CI", + "GN" + ] + }, + { + "id": "day_after_the_s_estimated", + "msgid": "Day after the %s (estimated)", + "new_comment": "", + "comment": "Day after the %s (estimated).", + "messages": { + "en_CI": "Day after the %s (estimated)", + "en_US": "Day after the %s (estimated)", + "fr": "Lendemain de la %s (estimé)" + }, + "countries": [ + "CI", + "GN" + ] + }, + { + "id": "day_before_ascension_day", + "msgid": "Day before Ascension Day", + "new_comment": "", + "comment": "Day before Ascension Day.", + "messages": { + "de": "Vortag vor Auffahrt", + "en_US": "Day before Ascension Day", + "fr": "Veille de l'Ascension", + "it": "Vigilia dell'Ascensione di Gesù", + "sv": "Dag före Kristi himmelsfärdsdag", + "th": "วันก่อนวันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์", + "uk": "Переддень Вознесіння Господнього" + }, + "countries": [ + "CH", + "SE" + ] + }, + { + "id": "day_before_assumption_of_mary", + "msgid": "Day Before Assumption of Mary", + "new_comment": "", + "comment": "Day Before Assumption of Mary.", + "messages": { + "en_US": "Day Before Assumption of Mary", + "it": "Vigilia dell'Assunzione di Maria Santissima", + "th": "วันก่อนวันสมโภชแม่พระรับเกียรติยกขึ้นสวรรค์" + }, + "countries": [ + "VA" + ] + }, + { + "id": "day_before_christmas_eve", + "msgid": "Day before Christmas Eve", + "new_comment": "", + "comment": "Day before Christmas Eve.", + "messages": { + "en_US": "Day before Christmas Eve", + "sv": "Dag före Julafton", + "th": "วันก่อนวันคริสต์มาสอีฟ", + "uk": "День перед Святим вечором" + }, + "countries": [ + "SE" + ] + }, + { + "id": "day_before_decoration_day", + "msgid": "Day before Decoration Day", + "new_comment": "", + "comment": "Day before Decoration Day.", + "messages": { + "en_US": "Day before Decoration Day", + "gu": "ડેકોરેશન ડે નો આગલો દિવસ", + "hi": "डेकोरेशन डे से एक दिन पहले" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "day_before_good_friday", + "msgid": "Day before Good Friday", + "new_comment": "", + "comment": "Day before Good Friday.", + "messages": { + "de": "Vortag vor Karfreitag", + "en_US": "Day before Good Friday", + "fr": "Veille du Vendredi saint", + "it": "Vigilia del Venerdì Santo", + "th": "วันก่อนวันศุกร์ประเสริฐ", + "uk": "Переддень Страсної пʼятниці" + }, + "countries": [ + "CH" + ] + }, + { + "id": "day_before_independence_day", + "msgid": "Day before Independence Day", + "new_comment": "", + "comment": "Day before Independence Day.", + "messages": { + "en_US": "Day before Independence Day", + "gu": "સ્વતંત્રતા દિવસનો આગલો દિવસ", + "hi": "स्वतंत्रता दिवस से पहले का दिन" + }, + "countries": [ + "XCME", + "XNYS" + ] + }, + { + "id": "day_before_midsummer_eve", + "msgid": "Day before Midsummer Eve", + "new_comment": "", + "comment": "Day before Midsummer Eve.", + "messages": { + "en_US": "Day before Midsummer Eve", + "sv": "Dag före Midsommarafton", + "th": "วันก่อนวันก่อนวันกลางฤดูร้อน", + "uk": "За два дні до літнього сонцестояння" + }, + "countries": [ + "SE" + ] + }, + { + "id": "day_before_new_year_s_eve", + "msgid": "Day before New Year's Eve", + "new_comment": "", + "comment": "Day before New Year's Eve.", + "messages": { + "en_US": "Day before New Year's Eve", + "sv": "Dag före Nyårsafton", + "th": "วันก่อนวันสิ้นปี", + "uk": "За два дні до Нового року" + }, + "countries": [ + "SE" + ] + }, + { + "id": "day_before_pentecost_eve", + "msgid": "Day before Pentecost Eve", + "new_comment": "", + "comment": "Day before Pentecost Eve.", + "messages": { + "en_US": "Day before Pentecost Eve", + "sv": "Dag före Pingstafton", + "th": "วันก่อนวันก่อนวันสมโภชพระจิตเจ้า", + "uk": "За два дні до Пʼятидесятниці" + }, + "countries": [ + "SE" + ] + }, + { + "id": "day_before_sinhala_and_tamil_new_year", + "msgid": "Day Before Sinhala and Tamil New Year", + "new_comment": "", + "comment": "Day Before Sinhala and Tamil New Year.", + "messages": { + "en_US": "Day Before Sinhala and Tamil New Year", + "si_LK": "සිංහල හා දෙමළ අලුත් අවුරුදු දිනට පෙර දිනය", + "ta_LK": "சிங்கள, தமிழ் புத்தாண்டிற்கு முன்னைய தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "day_following_christmas", + "msgid": "Day following Christmas", + "new_comment": "", + "comment": "Day following Christmas.", + "messages": { + "en_NR": "Day following Christmas", + "en_US": "Day following Christmas" + }, + "countries": [ + "NR" + ] + }, + { + "id": "day_following_independence_day", + "msgid": "Day following Independence Day", + "new_comment": "", + "comment": "Day following Independence Day.", + "messages": { + "en_NR": "Day following Independence Day", + "en_US": "Day following Independence Day" + }, + "countries": [ + "NR" + ] + }, + { + "id": "day_following_saint_joseph_s_day", + "msgid": "Day following Saint Joseph's Day", + "new_comment": "", + "comment": "Day following Saint Joseph's Day.", + "messages": { + "ca": "Dia següent a Sant Josep", + "en_US": "Day following Saint Joseph's Day", + "es": "Día siguiente a San José", + "th": "วันหลังวันสมโภชนักบุญโยเซฟ", + "uk": "День наступний за Днем Святого Йосипа" + }, + "countries": [ + "ES" + ] + }, + { + "id": "day_following_vesak_full_moon_poya_day", + "msgid": "Day Following Vesak Full Moon Poya Day", + "new_comment": "", + "comment": "Day Following Vesak Full Moon Poya Day.", + "messages": { + "en_US": "Day Following Vesak Full Moon Poya Day", + "si_LK": "වෙසක් පුර පසළොස්වක පෝය දිනට පසු දිනය", + "ta_LK": "வெசாக் முழு நோன்மதி தினத்திற்கு அடுத்த நாள்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "day_of_action_for_tolerance_and_respect_among_peoples", + "msgid": "Day of Action for Tolerance and Respect among Peoples", + "new_comment": "", + "comment": "Day of Action for Tolerance and Respect among Peoples.", + "messages": { + "en_US": "Day of Action for Tolerance and Respect among Peoples", + "es": "Día de acción por la tolerancia y el respeto entre los pueblos", + "uk": "День дій на підтримку толерантності та поваги між народами" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_affirmation_of_argentine_rights_over_the_malvinas_islands_and_antarctic_sector", + "msgid": "Day of Affirmation of Argentine Rights over the Malvinas, Islands and Antarctic Sector", + "new_comment": "", + "comment": "Day of Affirmation of Argentine Rights over the Malvinas, Islands and Antarctic Sector.", + "messages": { + "en_US": "Day of Affirmation of Argentine Rights over the Malvinas, Islands and Antarctic Sector", + "es": "Día de la Afirmación de los Derechos Argentinos sobre las Malvinas, Islas y Sector Antártico", + "uk": "День утвердження прав Аргентини на Мальвінські острови, Aнтарктичний сектор та острови" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_arafah", + "msgid": "Day of Arafah", + "new_comment": "", + "comment": "Day of Arafah.", + "messages": { + "ar": { + "AE": "وقفة عرفة", + "DJ": "يوم عرفة", + "IQ": "يوم عرفة", + "JO": "يوم عرفة", + "KW": "يوم عرفة", + "LY": "يوم عرفة", + "SA": "يوم عرفة", + "TN": "يوم عرفة" + }, + "ar_EG": "وقفة عيد الأضحى المبارك", + "bn": "আরাফাত দিবস", + "dv": "ޙައްޖުދުވަސް", + "en_US": "Day of Arafah", + "fa_AF": "روز عرفه", + "fr": { + "DJ": "Arafat", + "EG": "Le jour d'Arafat" + }, + "ms_MY": "Hari Arafah", + "ps_AF": "د عرفه ورځ", + "th": "วันอารอฟะห์" + }, + "countries": [ + "AE", + "AF", + "DJ", + "EG", + "IQ", + "JO", + "KW", + "LY", + "MV", + "MY", + "SA", + "TN" + ] + }, + { + "id": "day_of_bulgarian_enlightenment_and_culture_and_slavonic_alphabet", + "msgid": "Day of Bulgarian Enlightenment and Culture and Slavonic Alphabet", + "new_comment": "", + "comment": "Day of Bulgarian Enlightenment and Culture and Slavonic Alphabet.", + "messages": { + "bg": "Ден на българската просвета и култура и на славянската писменост", + "en_US": "Day of Bulgarian Enlightenment and Culture and Slavonic Alphabet", + "uk": "День болгарської освіти і культури та словʼянської писемності" + }, + "countries": [ + "BG" + ] + }, + { + "id": "day_of_cam_es_portugal_and_the_portuguese_race", + "msgid": "Day of Camões, Portugal, and the Portuguese Race", + "new_comment": "", + "comment": "Day of Camões, Portugal, and the Portuguese Race.", + "messages": { + "en_US": "Day of Camões, Portugal, and the Portuguese Race", + "pt_PT": "Dia de Camões, de Portugal e da Raça", + "uk": "День Камоенса, Португалії і Раси" + }, + "countries": [ + "PT" + ] + }, + { + "id": "day_of_children_s_rights", + "msgid": "Day of Children's Rights", + "new_comment": "", + "comment": "Day of Children's Rights.", + "messages": { + "en_US": "Day of Children's Rights", + "fi": "Lapsen oikeuksien päivä", + "sv_FI": "Barnkonventionens dag", + "th": "วันสิทธิเด็ก", + "uk": "День прав дитини" + }, + "countries": [ + "FI" + ] + }, + { + "id": "day_of_consent_and_reconciliation", + "msgid": "Day of consent and reconciliation", + "new_comment": "", + "comment": "Day of consent and reconciliation.", + "messages": { + "en_US": "Day of consent and reconciliation", + "ru": "День согласия и примирения", + "th": "วันแห่งความตกลงและการปรองดอง", + "zh_CN": "和解和谐日" + }, + "countries": [ + "RU" + ] + }, + { + "id": "day_of_declaration_of_sovereignty", + "msgid": "Day of Declaration of Sovereignty", + "new_comment": "", + "comment": "Day of Declaration of Sovereignty.", + "messages": { + "en_US": "Day of Declaration of Sovereignty", + "et": "taassünnipäev", + "uk": "День Декларації суверенітету" + }, + "countries": [ + "EE" + ] + }, + { + "id": "day_of_defenders_of_ukraine", + "msgid": "Day of defenders of Ukraine", + "new_comment": "", + "comment": "Day of defenders of Ukraine.", + "messages": { + "ar": "يوم المدافعين عن أوكرانيا", + "en_US": "Day of defenders of Ukraine", + "th": "วันแห่งผู้พิทักษ์ยูเครน", + "uk": "День захисників і захисниць України" + }, + "countries": [ + "UA" + ] + }, + { + "id": "day_of_dew_and_saint_john", + "msgid": "Day of Dew and Saint John", + "new_comment": "", + "comment": "Day of Dew and Saint John.", + "messages": { + "en_US": "Day of Dew and Saint John", + "lt": "Rasos ir Joninių diena", + "uk": "День роси та День Івана Купала" + }, + "countries": [ + "LT" + ] + }, + { + "id": "day_of_establishment_of_br_ko_district", + "msgid": "Day of establishment of Brčko District", + "new_comment": "", + "comment": "Day of establishment of Brčko District.", + "messages": { + "bs": "Dan uspostavljanja Brčko distrikta", + "en_US": "Day of establishment of Brčko District", + "sr": "Дан успостављања Брчко дистрикта", + "uk": "День заснування округу Брчко" + }, + "countries": [ + "BA" + ] + }, + { + "id": "day_of_family_sanctity_and_respect_for_parents", + "msgid": "Day of Family Sanctity and Respect for Parents", + "new_comment": "", + "comment": "Day of Family Sanctity and Respect for Parents.", + "messages": { + "en_US": "Day of Family Sanctity and Respect for Parents", + "ka": "ოჯახის სიწმინდისა და მშობლების პატივისცემის დღე", + "uk": "День святості родини та поваги до батьків" + }, + "countries": [ + "GE" + ] + }, + { + "id": "day_of_freedoms", + "msgid": "Day of Freedoms", + "new_comment": "", + "comment": "Day of Freedoms.", + "messages": { + "en_US": "Day of Freedoms", + "nl": "Keti Koti Dey" + }, + "countries": [ + "SR" + ] + }, + { + "id": "day_of_indigenous_resistance", + "msgid": "Day of Indigenous Resistance", + "new_comment": "", + "comment": "Day of Indigenous Resistance.", + "messages": { + "en_US": "Day of Indigenous Resistance", + "es": "Día de la Resistencia Indígena", + "uk": "День спротиву корінних народів" + }, + "countries": [ + "VE" + ] + }, + { + "id": "day_of_installation_of_the_15th_yang_di_pertuan_agong", + "msgid": "Day of Installation of the 15th Yang di-Pertuan Agong", + "new_comment": "", + "comment": "Day of Installation of the 15th Yang di-Pertuan Agong.", + "messages": { + "en_US": "Day of Installation of the 15th Yang di-Pertuan Agong", + "ms_MY": "Hari Pertabalan Yang di-Pertuan Agong ke-15", + "th": "พระราชพิธีสถาปนาสมเด็จพระราชาธิบดีแห่งมาเลเซีย องค์ที่ 15" + }, + "countries": [ + "MY" + ] + }, + { + "id": "day_of_installation_of_the_16th_yang_di_pertuan_agong", + "msgid": "Day of Installation of the 16th Yang di-Pertuan Agong", + "new_comment": "", + "comment": "Day of Installation of the 16th Yang di-Pertuan Agong.", + "messages": { + "en_US": "Day of Installation of the 16th Yang di-Pertuan Agong", + "ms_MY": "Hari Pertabalan Yang di-Pertuan Agong ke-16", + "th": "พระราชพิธีสถาปนาสมเด็จพระราชาธิบดีแห่งมาเลเซีย องค์ที่ 16" + }, + "countries": [ + "MY" + ] + }, + { + "id": "day_of_king_amador", + "msgid": "Day of King Amador", + "new_comment": "", + "comment": "Day of King Amador.", + "messages": { + "en_US": "Day of King Amador", + "pt_ST": "Dia do Rei Amador" + }, + "countries": [ + "ST" + ] + }, + { + "id": "day_of_liberation_and_renewal", + "msgid": "Day of Liberation and Renewal", + "new_comment": "", + "comment": "Day of Liberation and Renewal.", + "messages": { + "en_US": "Day of Liberation and Renewal", + "nl": "Dag van Bevrijding en Vernieuwing" + }, + "countries": [ + "SR" + ] + }, + { + "id": "day_of_liberation_from_fascism", + "msgid": "Day of liberation from Fascism", + "new_comment": "", + "comment": "Day of liberation from Fascism.", + "messages": { + "cs": "Den osvobození od fašismu", + "en_US": "Day of liberation from Fascism", + "sk": "Deň oslobodenia od fašizmu", + "uk": "День визволення від фашизму" + }, + "countries": [ + "CZ" + ] + }, + { + "id": "day_of_loyalty_and_love_for_supreme_commander_hugo_ch_vez_and_the_fatherland", + "msgid": "Day of Loyalty and Love for Supreme Commander Hugo Chávez and the Fatherland", + "new_comment": "", + "comment": "Day of Loyalty and Love for Supreme Commander Hugo Chávez and the Fatherland.", + "messages": { + "en_US": "Day of Loyalty and Love for Supreme Commander Hugo Chávez and the Fatherland", + "es": "Día de la Lealtad y el Amor al Comandante Supremo Hugo Chávez y a la Patria", + "uk": "День вірності та любові до Верховного командувача Уго Чавеса і Батьківщини" + }, + "countries": [ + "VE" + ] + }, + { + "id": "day_of_memory_and_honor", + "msgid": "Day of Memory and Honor", + "new_comment": "", + "comment": "Day of Memory and Honor.", + "messages": { + "en_US": "Day of Memory and Honor", + "uk": "День памʼяті і шани", + "uz": "Xotira va qadrlash kuni" + }, + "countries": [ + "UZ" + ] + }, + { + "id": "day_of_memory_of_general_don_mart_n_miguel_de_g_emes", + "msgid": "Day of Memory of General Don Martín Miguel de Güemes", + "new_comment": "", + "comment": "Day of Memory of General Don Martín Miguel de Güemes.", + "messages": { + "en_US": "Day of Memory of General Don Martín Miguel de Güemes", + "es": "Dia de la memoria del Guerrero de la Independencia y Gobernador de la Provincia de Salta General Don Martín Miguel de Güemes", + "uk": "День памʼяті генерала Мартіна Мігеля де Гуемеса" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_mourning_for_hm_king_bhumibol_adulyadej", + "msgid": "Day of Mourning for HM King Bhumibol Adulyadej", + "new_comment": "", + "comment": "Day of Mourning for HM King Bhumibol Adulyadej.", + "messages": { + "en_US": "Day of Mourning for HM King Bhumibol Adulyadej", + "th": "วันหยุดพิเศษ (ร่วมถวายอาลัย ส่งดวงพระวิญญาณพระบรมศพ)", + "uk": "День жалоби за Його Величністю королем Пуміпоном Адульядетом" + }, + "countries": [ + "TH" + ] + }, + { + "id": "day_of_mourning_for_honourable_moses_garoeb", + "msgid": "Day of Mourning for Honourable Moses Garoeb", + "new_comment": "", + "comment": "Day of Mourning for Honourable Moses Garoeb.", + "messages": { + "en_NA": "Day of Mourning for Honourable Moses Garoeb", + "en_US": "Day of Mourning for Honourable Moses Garoeb", + "uk": "День жалоби за Мозесом Гароебом" + }, + "countries": [ + "NA" + ] + }, + { + "id": "day_of_mourning_for_king_abdullah", + "msgid": "Day of Mourning for King Abdullah", + "new_comment": "", + "comment": "Day of Mourning for King Abdullah.", + "messages": { + "ar": "يوم حداد على الملك عبد الله", + "bn": "রাজা আবদুল্লাহর জন্য শোক দিবস", + "en_US": "Day of Mourning for King Abdullah" + }, + "countries": [ + "SA" + ] + }, + { + "id": "day_of_mourning_for_president_muhammadu_buhari", + "msgid": "Day of Mourning for President Muhammadu Buhari", + "new_comment": "", + "comment": "Day of Mourning for President Muhammadu Buhari.", + "messages": { + "en_NG": "Day of Mourning for President Muhammadu Buhari", + "en_US": "Day of Mourning for President Muhammadu Buhari" + }, + "countries": [ + "NG" + ] + }, + { + "id": "day_of_mourning_for_president_umaru_yar_adua", + "msgid": "Day of Mourning for President Umaru Yar'Adua", + "new_comment": "", + "comment": "Day of Mourning for President Umaru Yar'Adua.", + "messages": { + "en_NG": "Day of Mourning for President Umaru Yar'Adua", + "en_US": "Day of Mourning for President Umaru Yar'Adua" + }, + "countries": [ + "NG" + ] + }, + { + "id": "day_of_mourning_for_queen_elizabeth_ii", + "msgid": "Day of Mourning for Queen Elizabeth II", + "new_comment": "", + "comment": "Day of Mourning for Queen Elizabeth II.", + "messages": { + "en_KE": "Day of Mourning for Queen Elizabeth II", + "en_US": "Day of Mourning for Queen Elizabeth II", + "sw": "Siku ya Maombolezo kwa Malkia Elizabeth II" + }, + "countries": [ + "KE" + ] + }, + { + "id": "day_of_national_minorities_of_the_republic_of_armenia", + "msgid": "Day of National Minorities of the Republic of Armenia", + "new_comment": "", + "comment": "Day of National Minorities of the Republic of Armenia.", + "messages": { + "en_US": "Day of National Minorities of the Republic of Armenia", + "hy": "Հայաստանի Հանրապետության ազգային փոքրամասնությունների օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_national_mourning", + "msgid": "Day of National Mourning", + "new_comment": "", + "comment": "Day of National Mourning.", + "messages": { + "en_US": "Day of National Mourning", + "kn": "ರಾಷ್ಟ್ರೀಯ ಶೋಕ ದಿನ", + "ne": "राष्ट्रिय शोक दिवस" + }, + "countries": [ + "NP" + ] + }, + { + "id": "day_of_our_lady_of_immaculate_conception_and_timor_leste_patroness", + "msgid": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "new_comment": "", + "comment": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness.", + "messages": { + "en_TL": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "en_US": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "pt_TL": "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + "tet": "Loron Nossa Senhora da Imaculada Conceição, mahein Timor-Leste nian", + "th": "วันสมโภชแม่พระผู้ปฏิสนธินิรมลและแม่พระองค์อุปถัมภ์แห่งติมอร์-เลสเต" + }, + "countries": [ + "TL" + ] + }, + { + "id": "day_of_our_lady_of_the_rosary_of_chiquinquir", + "msgid": "Day of Our Lady of the Rosary of Chiquinquirá", + "new_comment": "", + "comment": "Day of Our Lady of the Rosary of Chiquinquirá.", + "messages": { + "en_US": "Day of Our Lady of the Rosary of Chiquinquirá", + "es": "Día de Nuestra Señora del Rosario de Chiquinquirá", + "uk": "День Богоматері Розарію з Чікінкіри" + }, + "countries": [ + "CO" + ] + }, + { + "id": "day_of_our_lady_of_the_seven_sorrows", + "msgid": "Day of Our Lady of the Seven Sorrows", + "new_comment": "", + "comment": "Day of Our Lady of the Seven Sorrows.", + "messages": { + "en_US": "Day of Our Lady of the Seven Sorrows", + "sk": "Sedembolestná Panna Mária", + "uk": "День Божої Матері семи скорбот" + }, + "countries": [ + "SK" + ] + }, + { + "id": "day_of_our_lady_of_victory", + "msgid": "Day of Our Lady of Victory", + "new_comment": "", + "comment": "Day of Our Lady of Victory.", + "messages": { + "ca": "Dia de la Mare de Déu de la Victòria", + "en_US": "Day of Our Lady of Victory", + "es": "Día de Nuestra Señora la Virgen de la Victoria", + "th": "วันแม่พระแห่งชัยชนะ", + "uk": "День Пресвятої Богородиці Перемоги" + }, + "countries": [ + "ES" + ] + }, + { + "id": "day_of_people_s_unity", + "msgid": "Day of People's Unity", + "new_comment": "", + "comment": "Day of People's Unity.", + "messages": { + "be": "Дзень народнага адзінства", + "en_US": "Day of People's Unity", + "ru": "День народного единства", + "th": "วันแห่งความสามัคคีของประชาชน" + }, + "countries": [ + "BY" + ] + }, + { + "id": "day_of_portugal_cam_es_and_the_portuguese_communities", + "msgid": "Day of Portugal, Camões, and the Portuguese Communities", + "new_comment": "", + "comment": "Day of Portugal, Camões, and the Portuguese Communities.", + "messages": { + "en_MO": "Day of Portugal, Camões, and the Portuguese Communities", + "en_US": "Day of Portugal, Camões, and the Portuguese Communities", + "pt_MO": "Dia de Portugal, de Camões e das Comunidades Portuguesas", + "pt_PT": "Dia de Portugal, de Camões e das Comunidades Portuguesas", + "th": "วันชาติโปรตุเกส วันกาม๊อยช์ และวันแห่งประชาคมโปรตุเกส", + "uk": "День Португалії, Камоенса і португальських громад", + "zh_CN": "葡国日、贾梅士日暨葡侨日", + "zh_MO": "葡國日、賈梅士日暨葡僑日" + }, + "countries": [ + "MO", + "PT" + ] + }, + { + "id": "day_of_prayer_and_thanksgiving", + "msgid": "Day of Prayer and Thanksgiving", + "new_comment": "", + "comment": "Day of Prayer and Thanksgiving.", + "messages": { + "en_MS": "Day of Prayer and Thanksgiving", + "en_US": "Day of Prayer and Thanksgiving" + }, + "countries": [ + "MS" + ] + }, + { + "id": "day_of_rejoicing", + "msgid": "Day of Rejoicing", + "new_comment": "", + "comment": "Day of Rejoicing.", + "messages": { + "en_US": "Day of Rejoicing", + "ro": "Paștele blajinilor", + "uk": "Проводи" + }, + "countries": [ + "MD" + ] + }, + { + "id": "day_of_remembrance_and_victory_over_nazism_in_world_war_ii_1939_1945", + "msgid": "Day of Remembrance and Victory over Nazism in World War II 1939-1945", + "new_comment": "", + "comment": "Day of Remembrance and Victory over Nazism in World War II 1939-1945.", + "messages": { + "ar": "يوم إحياء الذكرى والانتصار على النازية في الحرب العالمية الثانية 1939-1945", + "en_US": "Day of Remembrance and Victory over Nazism in World War II 1939-1945", + "th": "วันแห่งความทรงจำและชัยชนะเหนือระบอบชาติสังคมนิยมในสงครามโลกครั้งที่สอง 1939-1945", + "uk": "День памʼяті та перемоги над нацизмом у Другій світовій війні 1939-1945 років" + }, + "countries": [ + "UA" + ] + }, + { + "id": "day_of_remembrance_for_the_dead", + "msgid": "Day of Remembrance for the Dead", + "new_comment": "", + "comment": "Day of Remembrance for the Dead.", + "messages": { + "en_US": "Day of Remembrance for the Dead", + "sl": "dan spomina na mrtve", + "uk": "День памʼяті померлих" + }, + "countries": [ + "SI" + ] + }, + { + "id": "day_of_remembrance_for_the_fallen_defenders_of_the_fatherland", + "msgid": "Day of Remembrance for the Fallen Defenders of the Fatherland", + "new_comment": "", + "comment": "Day of Remembrance for the Fallen Defenders of the Fatherland.", + "messages": { + "en_US": "Day of Remembrance for the Fallen Defenders of the Fatherland", + "hy": "Հայրենիքի պաշտպանության համար զոհվածների հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_for_truth_and_justice", + "msgid": "Day of Remembrance for Truth and Justice", + "new_comment": "", + "comment": "Day of Remembrance for Truth and Justice.", + "messages": { + "en_US": "Day of Remembrance for Truth and Justice", + "es": "Día de la Memoria por la Verdad y la Justicia", + "uk": "День памʼяті заради правди та правосуддя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_remembrance_of_the_dead", + "msgid": "Day of Remembrance of the Dead", + "new_comment": "", + "comment": "Day of Remembrance of the Dead.", + "messages": { + "en_US": "Day of Remembrance of the Dead", + "hy": "Մեռելոց հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_of_the_repressed", + "msgid": "Day of Remembrance of the Repressed", + "new_comment": "", + "comment": "Day of Remembrance of the Repressed.", + "messages": { + "en_US": "Day of Remembrance of the Repressed", + "hy": "Բռնադատվածների հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_of_the_victims_of_armenian_genocide", + "msgid": "Day of Remembrance of the Victims of Armenian Genocide", + "new_comment": "", + "comment": "Day of Remembrance of the Victims of Armenian Genocide.", + "messages": { + "en_US": "Day of Remembrance of the Victims of Armenian Genocide", + "hy": "Հայոց ցեղասպանության զոհերի հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_of_the_victims_of_genocide", + "msgid": "Day of Remembrance of the Victims of Genocide", + "new_comment": "", + "comment": "Day of Remembrance of the Victims of Genocide.", + "messages": { + "en_US": "Day of Remembrance of the Victims of Genocide", + "hy": "Ցեղասպանության զոհերի հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_of_the_victims_of_the_massacres_organized_in_the_azerbaijan_ssr_and_the_protection_of_the_rights_of_the_deported_armenian_population", + "msgid": "Day of Remembrance of the Victims of the Massacres Organized in the Azerbaijan SSR and the Protection of the Rights of the Deported Armenian Population", + "new_comment": "", + "comment": "Day of Remembrance of the Victims of the Massacres Organized in the Azerbaijan SSR and the\nProtection of the Rights of the Deported Armenian Population.", + "messages": { + "en_US": "Day of Remembrance of the Victims of the Massacres Organized in the Azerbaijan SSR and the Protection of the Rights of the Deported Armenian Population", + "hy": "Ադրբեջանական ԽՍՀ-ում կազմակերպված ջարդերի զոհերի հիշատակի եւ բռնագաղթված հայ բնակչության իրավունքների պաշտպանության օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_remembrance_of_the_victims_of_the_sinjar_yazidi_genocide_of_2014", + "msgid": "Day of Remembrance of the Victims of the Sinjar Yazidi Genocide of 2014", + "new_comment": "", + "comment": "Day of Remembrance of the Victims of the Sinjar Yazidi Genocide of 2014.", + "messages": { + "en_US": "Day of Remembrance of the Victims of the Sinjar Yazidi Genocide of 2014", + "hy": "2014 թվականի՝ Սինջարի եզդիների ցեղասպանության զոհերի հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_restoration_of_independence_of_lithuania", + "msgid": "Day of Restoration of Independence of Lithuania", + "new_comment": "", + "comment": "Day of Restoration of Independence of Lithuania.", + "messages": { + "en_US": "Day of Restoration of Independence of Lithuania", + "lt": "Lietuvos nepriklausomybės atkūrimo diena", + "uk": "День відновлення незалежності Литви" + }, + "countries": [ + "LT" + ] + }, + { + "id": "day_of_restoration_of_the_state_of_lithuania", + "msgid": "Day of Restoration of the State of Lithuania", + "new_comment": "", + "comment": "Day of Restoration of the State of Lithuania.", + "messages": { + "en_US": "Day of Restoration of the State of Lithuania", + "lt": "Lietuvos valstybės atkūrimo diena", + "uk": "День відновлення Литовської держави" + }, + "countries": [ + "LT" + ] + }, + { + "id": "day_of_revival_unity_and_poetry_of_magtymguly_pyragy", + "msgid": "Day of Revival, Unity and Poetry of Magtymguly Pyragy", + "new_comment": "", + "comment": "Day of Revival, Unity and Poetry of Magtymguly Pyragy.", + "messages": { + "en_US": "Day of Revival, Unity and Poetry of Magtymguly Pyragy", + "ru": "День возрождения, единства и поэзии Махтумкули Фраги", + "tk": "Galkynyş, Agzybirlik we Magtymguly Pyragynyň şygryýet güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "day_of_silence", + "msgid": "Day of Silence", + "new_comment": "", + "comment": "Day of Silence.", + "messages": { + "en_US": "Day of Silence", + "id": "Hari Suci Nyepi", + "th": "วันแห่งความเงียบ", + "uk": "День тиші" + }, + "countries": [ + "ID" + ] + }, + { + "id": "day_of_silence_joint_holiday", + "msgid": "Day of Silence Joint Holiday", + "new_comment": "", + "comment": "Day of Silence Joint Holiday.", + "messages": { + "en_US": "Day of Silence Joint Holiday", + "id": "Cuti Bersama Hari Suci Nyepi", + "th": "หยุดร่วมพิเศษวันแห่งความเงียบ", + "uk": "Додатковий вихідний на Священний день тиші" + }, + "countries": [ + "ID" + ] + }, + { + "id": "day_of_songun", + "msgid": "Day of Songun", + "new_comment": "", + "comment": "Day of Songun.", + "messages": { + "en_US": "Day of Songun", + "ko_KP": "선군절" + }, + "countries": [ + "KP" + ] + }, + { + "id": "day_of_the_adoption_of_the_declaration_of_sovereignty_of_the_russian_federation", + "msgid": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "new_comment": "", + "comment": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation.", + "messages": { + "en_US": "Day of the Adoption of the Declaration of Sovereignty of the Russian Federation", + "ru": "День принятия Декларации о государственном суверенитете Российской Федерации", + "th": "วันประกาศใช้คำประกาศอำนาจอธิปไตยรัฐแห่งสหพันธรัฐรัสเซีย", + "zh_CN": "俄罗斯联邦国家主权宣言通过日" + }, + "countries": [ + "RU" + ] + }, + { + "id": "day_of_the_armed_forces_for_the_national_liberation_of_timor_leste_falintil", + "msgid": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "new_comment": "", + "comment": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL).", + "messages": { + "en_TL": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "en_US": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "pt_TL": "Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)", + "tet": "Loron Forsa Armada Libertasaun Nasionál Timor-Leste (FALINTIL) nian", + "th": "วันกองกำลังปลดปล่อยแห่งชาติติมอร์-เลสเต (FALINTIL)" + }, + "countries": [ + "TL" + ] + }, + { + "id": "day_of_the_autonomous_region_of_madeira", + "msgid": "Day of the Autonomous Region of Madeira", + "new_comment": "", + "comment": "Day of the Autonomous Region of Madeira.", + "messages": { + "en_US": "Day of the Autonomous Region of Madeira", + "pt_PT": "Dia da Região Autónoma da Madeira", + "uk": "День автономного регіону Мадейра" + }, + "countries": [ + "PT" + ] + }, + { + "id": "day_of_the_autonomous_region_of_madeira_and_the_madeiran_communities", + "msgid": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "new_comment": "", + "comment": "Day of the Autonomous Region of Madeira and the Madeiran Communities.", + "messages": { + "en_US": "Day of the Autonomous Region of Madeira and the Madeiran Communities", + "pt_PT": "Dia da Região Autónoma da Madeira e das Comunidades Madeirenses", + "uk": "День автономного регіону Мадейра та мадейрських громад" + }, + "countries": [ + "PT" + ] + }, + { + "id": "day_of_the_autonomous_region_of_the_azores", + "msgid": "Day of the Autonomous Region of the Azores", + "new_comment": "", + "comment": "Day of the Autonomous Region of the Azores.", + "messages": { + "en_US": "Day of the Autonomous Region of the Azores", + "pt_PT": "Dia da Região Autónoma dos Açores", + "uk": "День автономного регіону Азорських островів" + }, + "countries": [ + "PT" + ] + }, + { + "id": "day_of_the_balearic_islands", + "msgid": "Day of the Balearic Islands", + "new_comment": "", + "comment": "Day of the Balearic Islands.", + "messages": { + "ca": "Dia de les Illes Balears", + "en_US": "Day of the Balearic Islands", + "es": "Día de las Islas Baleares", + "th": "วันหมู่เกาะบาเลอาริก", + "uk": "День Балеарських островів" + }, + "countries": [ + "ES" + ] + }, + { + "id": "day_of_the_beginning_of_the_armed_struggle", + "msgid": "Day of the Beginning of the Armed Struggle", + "new_comment": "", + "comment": "Day of the Beginning of the Armed Struggle.", + "messages": { + "en_US": "Day of the Beginning of the Armed Struggle", + "pt_GW": "Dia do Início da Luta Armada" + }, + "countries": [ + "GW" + ] + }, + { + "id": "day_of_the_black_person_and_afro_costa_rican_culture", + "msgid": "Day of the Black Person and Afro-Costa Rican Culture", + "new_comment": "", + "comment": "Day of the Black Person and Afro-Costa Rican Culture.", + "messages": { + "en_US": "Day of the Black Person and Afro-Costa Rican Culture", + "es": "Día de la Persona Negra y la Cultura Afrocostarricense", + "uk": "День чорношкірої людини та афро-костариканської культури" + }, + "countries": [ + "CR" + ] + }, + { + "id": "day_of_the_canary_islands", + "msgid": "Day of the Canary Islands", + "new_comment": "", + "comment": "Day of the Canary Islands.", + "messages": { + "ca": "Dia de les Canàries", + "en_US": "Day of the Canary Islands", + "es": "Día de Canarias", + "th": "วันหมู่เกาะคานารี", + "uk": "День Канарських островів" + }, + "countries": [ + "ES" + ] + }, + { + "id": "day_of_the_condemnation_and_prevention_of_genocides", + "msgid": "Day of the Condemnation and Prevention of Genocides", + "new_comment": "", + "comment": "Day of the Condemnation and Prevention of Genocides.", + "messages": { + "en_US": "Day of the Condemnation and Prevention of Genocides", + "hy": "Ցեղասպանությունների դատապարտման եւ կանխարգելման օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "day_of_the_constitution_of_turkmenistan_and_poetry_of_magtymguly_pyragy", + "msgid": "Day of the Constitution of Turkmenistan and Poetry of Magtymguly Pyragy", + "new_comment": "", + "comment": "Day of the Constitution of Turkmenistan and Poetry of Magtymguly Pyragy.", + "messages": { + "en_US": "Day of the Constitution of Turkmenistan and Poetry of Magtymguly Pyragy", + "ru": "День Конституции Туркменистана и поэзии Махтумкули Фраги", + "tk": "Türkmenistanyň Konstitusiýasynyň we Makhtumkuli Pyragynyň şygryýet güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "day_of_the_constitution_of_ukraine", + "msgid": "Day of the Constitution of Ukraine", + "new_comment": "", + "comment": "Day of the Constitution of Ukraine.", + "messages": { + "ar": "يوم الدستور في أوكرانيا", + "en_US": "Day of the Constitution of Ukraine", + "th": "วันรัฐธรรมนูญยูเครน", + "uk": "День Конституції України" + }, + "countries": [ + "UA" + ] + }, + { + "id": "day_of_the_dead", + "msgid": "Day of the Dead", + "new_comment": "", + "comment": "Day of the Dead.", + "messages": { + "en_US": "Day of the Dead", + "es": "Día de Muertos", + "fr_HT": "Fête des Morts", + "ht": "Jou Mouri", + "uk": "День мертвих" + }, + "countries": [ + "HT", + "XMEX" + ] + }, + { + "id": "day_of_the_death_of_juan_facundo_quiroga", + "msgid": "Day of the Death of Juan Facundo Quiroga", + "new_comment": "", + "comment": "Day of the Death of Juan Facundo Quiroga.", + "messages": { + "en_US": "Day of the Death of Juan Facundo Quiroga", + "es": "Día del fallecimiento de Juan Facundo Quiroga", + "uk": "День смерті Хуана Факундо Кіроги" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_the_establishment_of_the_independent_czech_slovak_state", + "msgid": "Day of the Establishment of the Independent Czech-Slovak State", + "new_comment": "", + "comment": "Day of the Establishment of the Independent Czech-Slovak State.", + "messages": { + "en_US": "Day of the Establishment of the Independent Czech-Slovak State", + "sk": "Deň vzniku samostatného česko-slovenského štátu", + "uk": "День створення незалежної чесько-словацької держави" + }, + "countries": [ + "SK" + ] + }, + { + "id": "day_of_the_establishment_of_the_slovak_republic", + "msgid": "Day of the Establishment of the Slovak Republic", + "new_comment": "", + "comment": "Day of the Establishment of the Slovak Republic.", + "messages": { + "en_US": "Day of the Establishment of the Slovak Republic", + "sk": "Deň vzniku Slovenskej republiky", + "uk": "День утворення Словацької Республіки" + }, + "countries": [ + "SK" + ] + }, + { + "id": "day_of_the_fatherland_s_defenders_and_the_armed_forces_of_the_republic_of_belarus", + "msgid": "Day of the Fatherland's Defenders and the Armed Forces of the Republic of Belarus", + "new_comment": "", + "comment": "Day of the Fatherland's Defenders and the Armed Forces of the Republic of Belarus.", + "messages": { + "be": "Дзень абаронцаў Айчыны і Узброеных Сіл Рэспублікі Беларусь", + "en_US": "Day of the Fatherland's Defenders and the Armed Forces of the Republic of Belarus", + "ru": "День защитников Отечества и Вооруженных Сил Республики Беларусь", + "th": "วันพิทักษ์ปิตุภูมิและกองทัพแห่งสาธารณรัฐเบลารุส" + }, + "countries": [ + "BY" + ] + }, + { + "id": "day_of_the_finnish_flag", + "msgid": "Day of the Finnish Flag", + "new_comment": "", + "comment": "Day of the Finnish Flag.", + "messages": { + "en_US": "Day of the Finnish Flag", + "fi": "Suomen lipun päivä", + "sv_FI": "Finlands flaggas dag", + "th": "วันธงชาติฟินแลนด์", + "uk": "День прапора Фінляндії" + }, + "countries": [ + "FI" + ] + }, + { + "id": "day_of_the_flood", + "msgid": "Day of the Flood", + "new_comment": "", + "comment": "Day of the Flood.", + "messages": { + "en_GB": "Day of the Flood", + "en_US": "Day of the Flood", + "tvl": "Bogin te Ieka" + }, + "countries": [ + "TV" + ] + }, + { + "id": "day_of_the_great_october_socialist_revolution", + "msgid": "Day of the Great October Socialist Revolution", + "new_comment": "", + "comment": "Day of the Great October Socialist Revolution.", + "messages": { + "en_US": "Day of the Great October Socialist Revolution", + "ky": "Улуу Октябрь социалисттик революциясынын күнү", + "ru_KG": "День Великой Октябрьской социалистической революции" + }, + "countries": [ + "KG" + ] + }, + { + "id": "day_of_the_holy_brothers_cyril_and_methodius_bulgarian_alphabet_enlightenment_culture_and_slavonic_literature", + "msgid": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "new_comment": "", + "comment": "Day of the Holy Brothers Cyril and Methodius, Bulgarian Alphabet, Enlightenment, Culture and\nSlavonic Literature.", + "messages": { + "bg": "Ден на светите братя Кирил и Методий, на българската азбука, просвета и култура и на славянската книжовност", + "en_US": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", + "uk": "День святих братів Кирила і Мефодія, болгарської писемності, освіти і культури та словʼянської літератури" + }, + "countries": [ + "BG" + ] + }, + { + "id": "day_of_the_house_of_ariki", + "msgid": "Day of the House of Ariki", + "new_comment": "", + "comment": "Day of the House of Ariki.", + "messages": { + "en_CK": "Ra o te Ui Ariki", + "en_US": "Day of the House of Ariki" + }, + "countries": [ + "CK" + ] + }, + { + "id": "day_of_the_latvian_ice_hockey_team_s_bronze_medal_win_at_the_2023_iihf_world_championship", + "msgid": "Day of the Latvian Ice Hockey Team's Bronze Medal Win at the 2023 IIHF World Championship", + "new_comment": "", + "comment": "Day of the Latvian Ice Hockey Team's Bronze Medal Win at the 2023 IIHF World Championship.", + "messages": { + "en_US": "Day of the Latvian Ice Hockey Team's Bronze Medal Win at the 2023 IIHF World Championship", + "lv": "Diena, kad Latvijas hokeja komanda ieguva bronzas medaļu 2023. gada Pasaules hokeja čempionātā", + "ru": "День завоевания сборной Латвии по хоккею бронзовой медали чемпионата мира по хоккею 2023 года", + "uk": "День здобуття збірною Латвії з хокею бронзової медалі Чемпіонату світу" + }, + "countries": [ + "LV" + ] + }, + { + "id": "day_of_the_maroons", + "msgid": "Day of the Maroons", + "new_comment": "", + "comment": "Day of the Maroons.", + "messages": { + "en_US": "Day of the Maroons", + "nl": "Dag der Marrons" + }, + "countries": [ + "SR" + ] + }, + { + "id": "day_of_the_municipality_of_ilhas", + "msgid": "Day of the Municipality of Ilhas", + "new_comment": "", + "comment": "Day of the Municipality of Ilhas.", + "messages": { + "en_MO": "Day of the Municipality of Ilhas", + "en_US": "Day of the Municipality of Ilhas", + "pt_MO": "Dia do Município das Ilhas", + "th": "วันเทศบาลอิลฮาส", + "zh_CN": "海岛市日", + "zh_MO": "海島市日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "day_of_the_namibian_women_and_international_human_rights_day", + "msgid": "Day of the Namibian Women and International Human Rights Day", + "new_comment": "", + "comment": "Day of the Namibian Women and International Human Rights Day.", + "messages": { + "en_NA": "Day of the Namibian Women and International Human Rights Day", + "en_US": "Day of the Namibian Women and International Human Rights Day", + "uk": "День намібійських жінок та Міжнародний день прав людини" + }, + "countries": [ + "NA" + ] + }, + { + "id": "day_of_the_national_coat_of_arms_of_the_republic_of_belarus_the_national_flag_of_the_republic_of_belarus_and_the_national_anthem_of_the_republic_of_belarus", + "msgid": "Day of the National Coat of Arms of the Republic of Belarus, the National Flag of the Republic of Belarus and the National Anthem of the Republic of Belarus", + "new_comment": "", + "comment": "Day of the National Coat of Arms of the Republic of Belarus, the National Flag of the Republic\nof Belarus and the National Anthem of the Republic of Belarus.", + "messages": { + "be": "Дзень Дзяржаўнага сцяга, Дзяржаўнага герба і Дзяржаўнага гімна Рэспублікі Беларусь", + "en_US": "Day of the National Coat of Arms of the Republic of Belarus, the National Flag of the Republic of Belarus and the National Anthem of the Republic of Belarus", + "ru": "День Государственного флага, Государственного герба и Государственного гимна Республики Беларусь", + "th": "วันธงชาติ ตราแผ่นดิน และเพลงชาติแห่งสาธารณรัฐเบลารุส" + }, + "countries": [ + "BY" + ] + }, + { + "id": "day_of_the_national_rebellion", + "msgid": "Day of the National Rebellion", + "new_comment": "", + "comment": "Day of the National Rebellion.", + "messages": { + "en_US": "Day of the National Rebellion", + "es": "Día de la Rebeldía Nacional", + "uk": "День національного повстання" + }, + "countries": [ + "CU" + ] + }, + { + "id": "day_of_the_pastoral_visit_of_his_holiness_pope_francis_to_latvia", + "msgid": "Day of the Pastoral Visit of His Holiness Pope Francis to Latvia", + "new_comment": "", + "comment": "Day of the Pastoral Visit of His Holiness Pope Francis to Latvia.", + "messages": { + "en_US": "Day of the Pastoral Visit of His Holiness Pope Francis to Latvia", + "lv": "Viņa Svētības pāvesta Franciska pastorālās vizītes Latvijā diena", + "ru": "День пастырского визита Его Святейшества Папы Франциска в Латвию", + "uk": "День пастирського візиту Його Святості Папи Франциска до Латвії" + }, + "countries": [ + "LV" + ] + }, + { + "id": "day_of_the_people_s_april_revolution", + "msgid": "Day of the People's April Revolution", + "new_comment": "", + "comment": "Day of the People's April Revolution.", + "messages": { + "en_US": "Day of the People's April Revolution", + "ky": "Элдик Апрель революциясы күнү", + "ru_KG": "День народной Апрельской революции" + }, + "countries": [ + "KG" + ] + }, + { + "id": "day_of_the_people_s_revolution", + "msgid": "Day of the People's Revolution", + "new_comment": "", + "comment": "Day of the People's Revolution.", + "messages": { + "en_US": "Day of the People's Revolution", + "ky": "Элдик революция күнү", + "ru_KG": "День народной революции" + }, + "countries": [ + "KG" + ] + }, + { + "id": "day_of_the_province_of_tierra_del_fuego_antarctica_and_the_south_atlantic_islands", + "msgid": "Day of the Province of Tierra del Fuego, Antarctica and the South Atlantic Islands", + "new_comment": "", + "comment": "Day of the Province of Tierra del Fuego, Antarctica and the South Atlantic Islands.", + "messages": { + "en_US": "Day of the Province of Tierra del Fuego, Antarctica and the South Atlantic Islands", + "es": "Día de la Provincia de Tierra del Fuego, Antártida e Islas del Atlántico Sur", + "uk": "День провінції Вогняна Земля, Антарктиди і Південноатлантичних островів" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_the_shining_star", + "msgid": "Day of the Shining Star", + "new_comment": "", + "comment": "Day of the Shining Star.", + "messages": { + "en_US": "Day of the Shining Star", + "ko_KP": "광명성절" + }, + "countries": [ + "KP" + ] + }, + { + "id": "day_of_the_struggle_of_simon_kimbangu_and_african_consciousness", + "msgid": "Day of the Struggle of Simon Kimbangu and African Consciousness", + "new_comment": "", + "comment": "Day of the Struggle of Simon Kimbangu and African Consciousness.", + "messages": { + "en_US": "Day of the Struggle of Simon Kimbangu and African Consciousness", + "fr": "Journée du combat de Simon Kimbangu et de la conscience africaine" + }, + "countries": [ + "CD" + ] + }, + { + "id": "day_of_the_sun", + "msgid": "Day of the Sun", + "new_comment": "", + "comment": "Day of the Sun.", + "messages": { + "en_US": "Day of the Sun", + "ko_KP": "태양절" + }, + "countries": [ + "KP" + ] + }, + { + "id": "day_of_the_virgin_of_the_rosary_of_r_o_blanco_and_paypaya", + "msgid": "Day of the Virgin of the Rosary of Río Blanco and Paypaya", + "new_comment": "", + "comment": "Day of the Virgin of the Rosary of Río Blanco and Paypaya.", + "messages": { + "en_US": "Day of the Virgin of the Rosary of Río Blanco and Paypaya", + "es": "Día de la Virgen del Rosario de Río Blanco y Paypaya", + "uk": "День Богородиці Вервиці Ріо-Бланко і Пайпаї" + }, + "countries": [ + "AR" + ] + }, + { + "id": "day_of_unity_of_the_peoples_of_belarus_and_russia", + "msgid": "Day of Unity of the Peoples of Belarus and Russia", + "new_comment": "", + "comment": "Day of Unity of the Peoples of Belarus and Russia.", + "messages": { + "be": "Дзень яднання народаў Беларусі і Расіі", + "en_US": "Day of Unity of the Peoples of Belarus and Russia", + "ru": "День единения народов Беларуси и России", + "th": "วันแห่งความสามัคคีของประชาชนเบลารุสและรัสเซีย" + }, + "countries": [ + "BY" + ] + }, + { + "id": "day_of_uprising_against_occupation", + "msgid": "Day of Uprising Against Occupation", + "new_comment": "", + "comment": "Day of Uprising Against Occupation.", + "messages": { + "en_US": "Day of Uprising Against Occupation", + "sl": "dan upora proti okupatorju", + "uk": "День спротиву окупантам" + }, + "countries": [ + "SI" + ] + }, + { + "id": "day_of_valor", + "msgid": "Day of Valor", + "new_comment": "", + "comment": "Day of Valor.", + "messages": { + "en_PH": "Araw ng Kagitingan", + "en_US": "Day of Valor", + "fil": "Araw ng Kagitingan", + "th": "วันแห่งความกล้าหาญ" + }, + "countries": [ + "PH" + ] + }, + { + "id": "day_of_victory_in_the_great_fatherland_liberation_war", + "msgid": "Day of Victory in the Great Fatherland Liberation War", + "new_comment": "", + "comment": "Day of Victory in the Great Fatherland Liberation War.", + "messages": { + "en_US": "Day of Victory in the Great Fatherland Liberation War", + "ko_KP": "조국해방전쟁승리기념일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "day_of_victory_over_fascism", + "msgid": "Day of Victory over Fascism", + "new_comment": "", + "comment": "Day of Victory over Fascism.", + "messages": { + "en_US": "Day of Victory over Fascism", + "ka": "ფაშიზმზე გამარჯვების დღე", + "sk": "Deň víťazstva nad fašizmom", + "uk": "День перемоги над фашизмом" + }, + "countries": [ + "GE", + "SK" + ] + }, + { + "id": "day_of_victory_over_nazism_in_world_war_ii_victory_day", + "msgid": "Day of Victory over Nazism in World War II (Victory Day)", + "new_comment": "", + "comment": "Day of Victory over Nazism in World War II (Victory Day).", + "messages": { + "ar": "يوم النصر على النازية في الحرب العالمية الثانية (يوم النصر)", + "en_US": "Day of Victory over Nazism in World War II (Victory Day)", + "th": "วันแห่งชัยชนะเหนือระบอบชาติสังคมนิยมในสงครามโลกครั้งที่สอง (วันแห่งชัยชนะ)", + "uk": "День перемоги над нацизмом у Другій світовій війні (День перемоги)" + }, + "countries": [ + "UA" + ] + }, + { + "id": "day_of_victory_over_the_genocidal_regime", + "msgid": "Day of Victory over the Genocidal Regime", + "new_comment": "", + "comment": "Day of Victory over the Genocidal Regime.", + "messages": { + "en_US": "Day of Victory over the Genocidal Regime", + "km": "ទិវាជ័យជម្នះលើរបបប្រល័យពូជសាសន៍", + "th": "วันชัยชนะเหนือระบอบฆ่าล้างเผ่าพันธุ์เขมรแดง" + }, + "countries": [ + "KH" + ] + }, + { + "id": "day_off_substituted_from_s", + "msgid": "Day off (substituted from %s)", + "new_comment": "", + "comment": "Day off (substituted from %s).", + "messages": { + "ar": "يوم عطلة (استبدل من %s)", + "az": "İstirahət günü (%s ilə əvəz edilmişdir)", + "be": "Выходны (перанесены з %s)", + "bg": "Почивен ден (прехвърлен от %s)", + "en_US": "Day off (substituted from %s)", + "hu": "Pihenőnap (%s-től helyettesítve)", + "hy": "Հանգստյան օր (հետաձգվել է %s թվականից)", + "kk": "Демалыс күні (%s бастап ауыстырылды)", + "ky": "Эс алуу күнү (%s күнүнөн которулган)", + "lv": "Brīvdiena (pārcelta no %s)", + "my": "အလုပ်ပိတ်ရက် (%s မှ ပြန်လဲထားသည်)", + "ru": "Выходной (перенесено с %s)", + "ru_KG": "Выходной (перенесено с %s)", + "th": "วันหยุด (แทน %s)", + "uk": "Вихідний день (перенесено з %s)", + "uz": "Dam olish kuni (%s dan koʻchirilgan)", + "vi": "Ngày nghỉ (thay cho ngày %s)", + "zh_CN": "休息日(由 %s 调休)", + "zh_TW": "放假日(%s 補班)" + }, + "countries": [ + "AM", + "AZ", + "BG", + "BY", + "CN", + "HU", + "KG", + "KZ", + "LV", + "MM", + "RU", + "TW", + "UA", + "UZ", + "VN" + ] + }, + { + "id": "dayak_festival_day", + "msgid": "Dayak Festival Day", + "new_comment": "", + "comment": "Dayak Festival Day.", + "messages": { + "en_US": "Dayak Festival Day", + "ms_MY": "Perayaan Hari Gawai Dayak", + "th": "วันเทศกาลกาไวดายัค" + }, + "countries": [ + "MY" + ] + }, + { + "id": "days_of_history_and_commemoration_of_ancestors", + "msgid": "Days of History and Commemoration of Ancestors", + "new_comment": "", + "comment": "Days of History and Commemoration of Ancestors.", + "messages": { + "en_US": "Days of History and Commemoration of Ancestors", + "ky": "Тарых жана ата-бабаларды эскерүү күндөрү", + "ru_KG": "Дни истории и памяти предков" + }, + "countries": [ + "KG" + ] + }, + { + "id": "dayton_agreement_day", + "msgid": "Dayton Agreement Day", + "new_comment": "", + "comment": "Dayton Agreement Day.", + "messages": { + "bs": "Dan uspostave Opšteg okvirnog sporazuma za mir u Bosni i Hercegovini", + "en_US": "Dayton Agreement Day", + "sr": "Дан успоставе Општег оквирног споразума за мир у Босни и Херцеговини", + "uk": "День укладання Загальної рамкової угоди про мир у Боснії та Герцеговині" + }, + "countries": [ + "BA" + ] + }, + { + "id": "death_anniversary_of_zhabdrung", + "msgid": "Death Anniversary of Zhabdrung", + "new_comment": "", + "comment": "Death Anniversary of Zhabdrung.", + "messages": { + "dz": "མཐུ་ཆེན་ཆོས་ཀྱི་རྒྱལ་པོའི་དུས་ཆེན་ངལ་གསོལ།", + "en_US": "Death Anniversary of Zhabdrung" + }, + "countries": [ + "BT" + ] + }, + { + "id": "death_of_dessalines", + "msgid": "Death of Dessalines", + "new_comment": "", + "comment": "Death of Dessalines.", + "messages": { + "en_US": "Death of Dessalines", + "es": "Muerte de Dessalines", + "fr_HT": "Mort de Dessalines", + "ht": "Lanmò Desalin" + }, + "countries": [ + "HT" + ] + }, + { + "id": "death_of_imam_khomeini", + "msgid": "Death of Imam Khomeini", + "new_comment": "", + "comment": "Death of Imam Khomeini.", + "messages": { + "en_US": "Death of Imam Khomeini", + "fa_IR": "رحلت حضرت امام خمینی" + }, + "countries": [ + "IR" + ] + }, + { + "id": "death_of_king_edward_vii_of_england", + "msgid": "Death of King Edward VII of England", + "new_comment": "", + "comment": "Death of King Edward VII of England.", + "messages": { + "en_US": "Death of King Edward VII of England", + "gu": "ઇંગ્લેન્ડના રાજા એડવર્ડ સાતમાનું અવસાન", + "hi": "इंग्लैंड के राजा एडवर्ड सप्तम का निधन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "death_of_president_warren_g_harding", + "msgid": "Death of President Warren G. Harding", + "new_comment": "", + "comment": "Death of President Warren G. Harding.", + "messages": { + "en_US": "Death of President Warren G. Harding", + "gu": "રાષ્ટ્રપતિ વોરેન જી. હાર્ડિંગનું અવસાન", + "hi": "राष्ट्रपति वारेन जी. हार्डिंग का निधन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "death_of_president_william_mckinley", + "msgid": "Death of President William McKinley", + "new_comment": "", + "comment": "Death of President William McKinley.", + "messages": { + "en_US": "Death of President William McKinley", + "gu": "રાષ્ટ્રપતિ વિલિયમ મેકકિન્લીનું અવસાન", + "hi": "राष्ट्रपति विलियम मैककिनले का निधन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "death_of_prophet_muhammad_and_martyrdom_of_hasan_ibn_ali", + "msgid": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "new_comment": "", + "comment": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali.", + "messages": { + "en_US": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "fa_IR": "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "death_of_sheikh_khalifa_bin_zayed_al_nahyan", + "msgid": "Death of Sheikh Khalifa bin Zayed Al Nahyan", + "new_comment": "", + "comment": "Death of Sheikh Khalifa bin Zayed Al Nahyan.", + "messages": { + "ar": "وفاة الشيخ خليفة بن زايد آل نهيان", + "en_US": "Death of Sheikh Khalifa bin Zayed Al Nahyan", + "th": "วันไว้ทุกข์แห่งชาติแด่ชีค คาลิฟา บิน ซายิด อัล นาห์ยัน" + }, + "countries": [ + "AE" + ] + }, + { + "id": "declaration_of_independence", + "msgid": "Declaration of Independence", + "new_comment": "", + "comment": "Declaration of Independence.", + "messages": { + "en_US": "Declaration of Independence", + "es": "Declaración de la Independencia", + "uk": "День проголошення незалежності" + }, + "countries": [ + "VE" + ] + }, + { + "id": "declaration_of_independence_day", + "msgid": "Declaration of Independence Day", + "new_comment": "", + "comment": "Declaration of Independence Day.", + "messages": { + "en_US": "Declaration of Independence Day", + "ms_MY": "Hari Pengisytiharan Tarikh Kemerdekaan", + "th": "วันรำลึกการประกาศอิสรภาพ" + }, + "countries": [ + "MY" + ] + }, + { + "id": "declaration_of_independence_of_quito", + "msgid": "Declaration of Independence of Quito", + "new_comment": "", + "comment": "Declaration of Independence of Quito.", + "messages": { + "en_US": "Declaration of Independence of Quito", + "es": "Primer Grito de Independencia", + "uk": "День незалежності Кіто" + }, + "countries": [ + "EC" + ] + }, + { + "id": "declaration_of_malacca_as_a_historical_city", + "msgid": "Declaration of Malacca as a Historical City", + "new_comment": "", + "comment": "Declaration of Malacca as a Historical City.", + "messages": { + "en_US": "Declaration of Malacca as a Historical City", + "ms_MY": "Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah", + "th": "วันรำลึกการประกาศมะละกาเป็นเมืองประวัติศาสตร์" + }, + "countries": [ + "MY" + ] + }, + { + "id": "declared_public_holiday", + "msgid": "Declared Public Holiday", + "new_comment": "", + "comment": "Declared Public Holiday.", + "messages": { + "en_AU": "Declared Public Holiday", + "en_US": "Declared Public Holiday", + "th": "วันหยุดพิเศษ (ตามประกาศ)" + }, + "countries": [ + "AU" + ] + }, + { + "id": "defender_of_the_fatherland_day", + "msgid": "Defender of the Fatherland Day", + "new_comment": "", + "comment": "Defender of the Fatherland Day.", + "messages": { + "en_US": "Defender of the Fatherland Day", + "kk": "Отан Қорғаушы күні", + "ru": "День защитника Отечества", + "th": "วันพิทักษ์ปิตุภูมิ", + "uk": "День захисника Вітчизни", + "zh_CN": "祖国保卫者日" + }, + "countries": [ + "KZ", + "RU" + ] + }, + { + "id": "defender_of_ukraine_day", + "msgid": "Defender of Ukraine Day", + "new_comment": "", + "comment": "Defender of Ukraine Day.", + "messages": { + "ar": "يوم المدافع عن أوكرانيا", + "en_US": "Defender of Ukraine Day", + "th": "วันผู้พิทักษ์ยูเครน", + "uk": "День захисника України" + }, + "countries": [ + "UA" + ] + }, + { + "id": "defender_s_day", + "msgid": "Defender's Day", + "new_comment": "", + "comment": "Defender's Day.", + "messages": { + "en_US": "Defender's Day", + "hy": "Երկրապահի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "democracy_and_freedom_day", + "msgid": "Democracy and Freedom Day", + "new_comment": "", + "comment": "Democracy and Freedom Day.", + "messages": { + "de": "Tag der Demokratie und Freiheit", + "en_US": "Democracy and Freedom Day", + "es": "Día de la Libertad y la Democracia", + "fr": "Journée de la liberté et de la démocratie", + "pt_CV": "Dia da Liberdade e da Democracia" + }, + "countries": [ + "CV" + ] + }, + { + "id": "democracy_and_human_rights_day", + "msgid": "Democracy and Human Rights Day", + "new_comment": "", + "comment": "Democracy and Human Rights Day.", + "messages": { + "en_US": "Democracy and Human Rights Day", + "mn": "Ардчилал, хүний эрхийн өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "democracy_and_national_unity_day", + "msgid": "Democracy and National Unity Day", + "new_comment": "", + "comment": "Democracy and National Unity Day.", + "messages": { + "en_US": "Democracy and National Unity Day", + "tr": "Demokrasi ve Millî Birlik Günü", + "uk": "День демократії та національної єдності" + }, + "countries": [ + "TR" + ] + }, + { + "id": "democracy_day", + "msgid": "Democracy Day", + "new_comment": "", + "comment": "Democracy Day.", + "messages": { + "en_NG": "Democracy Day", + "en_US": "Democracy Day", + "es": "Día de la Democracia", + "uk": "День демократії" + }, + "countries": [ + "NG", + "UY" + ] + }, + { + "id": "descending_day_of_lord_buddha", + "msgid": "Descending Day of Lord Buddha", + "new_comment": "", + "comment": "Descending Day of Lord Buddha.", + "messages": { + "dz": "རྒྱལ་བ་ལྷ་ལས་བབས་པའི་དུས་ཆེན་ངལ་གསོ།", + "en_US": "Descending Day of Lord Buddha" + }, + "countries": [ + "BT" + ] + }, + { + "id": "descent_of_saint_dominic", + "msgid": "Descent of Saint Dominic", + "new_comment": "", + "comment": "Descent of Saint Dominic.", + "messages": { + "en_US": "Descent of Saint Dominic", + "es": "Bajada de Santo Domingo", + "uk": "Спуск Святого Домініка" + }, + "countries": [ + "NI" + ] + }, + { + "id": "diamond_jubilee_celebration_of_her_majesty_the_queen", + "msgid": "Diamond Jubilee Celebration of Her Majesty The Queen", + "new_comment": "", + "comment": "Diamond Jubilee Celebration of Her Majesty The Queen.", + "messages": { + "en_AI": "Diamond Jubilee Celebration of Her Majesty The Queen", + "en_US": "Diamond Jubilee Celebration of Her Majesty The Queen" + }, + "countries": [ + "AI" + ] + }, + { + "id": "diamond_jubilee_of_elizabeth_ii", + "msgid": "Diamond Jubilee of Elizabeth II", + "new_comment": "", + "comment": "Diamond Jubilee of Elizabeth II.", + "messages": { + "en_GB": "Diamond Jubilee of Elizabeth II", + "en_US": "Diamond Jubilee of Elizabeth II", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 60 ปี สมเด็จพระราชินีนาถ" + }, + "countries": [ + "GB" + ] + }, + { + "id": "discovery_day", + "msgid": "Discovery Day", + "new_comment": "", + "comment": "Discovery Day.", + "messages": { + "ar": "يوم الاكتشاف", + "en_CA": "Discovery Day", + "en_GB": "Discovery Day", + "en_US": "Discovery Day", + "es": "Día del Descubrimiento", + "fr": "Jour de la Découverte", + "fr_HT": "Jour de la Découverte", + "ht": "Jounen Dekouvèt", + "th": "วันค้นพบ" + }, + "countries": [ + "CA", + "HT", + "KY" + ] + }, + { + "id": "discovery_of_america", + "msgid": "Discovery of America", + "new_comment": "", + "comment": "Discovery of America.", + "messages": { + "en_US": "Discovery of America", + "pt_BR": "Descobrimento da América", + "uk": "День відкриття Америки" + }, + "countries": [ + "BR" + ] + }, + { + "id": "discovery_of_brazil", + "msgid": "Discovery of Brazil", + "new_comment": "", + "comment": "Discovery of Brazil.", + "messages": { + "en_US": "Discovery of Brazil", + "pt_BR": "Descobrimento do Brasil", + "uk": "День відкриття Бразилії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "discovery_of_pr_ncipe_island", + "msgid": "Discovery of Príncipe Island", + "new_comment": "", + "comment": "Discovery of Príncipe Island.", + "messages": { + "en_US": "Discovery of Príncipe Island", + "pt_ST": "Descobrimento da Ilha do Príncipe" + }, + "countries": [ + "ST" + ] + }, + { + "id": "discovery_of_puerto_rico_day", + "msgid": "Discovery of Puerto Rico Day", + "new_comment": "", + "comment": "Discovery of Puerto Rico Day.", + "messages": { + "en_US": "Discovery of Puerto Rico Day", + "th": "วันค้นพบเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "diwali", + "msgid": "Diwali", + "new_comment": "", + "comment": "Diwali.", + "messages": { + "bn": "দীপাবলি", + "en_GY": "Deepavali", + "en_IN": "Diwali (Deepavali)", + "en_KE": "Diwali", + "en_MU": "Divali", + "en_SG": "Deepavali", + "en_TT": "Divali", + "en_US": { + "GY": "Diwali", + "IN": "Diwali (Deepavali)", + "KE": "Diwali", + "LK": "Diwali", + "MM": "Diwali", + "MU": "Diwali", + "MY": "Diwali", + "SG": "Diwali", + "SR": "Diwali", + "TT": "Diwali", + "US": "Diwali" + }, + "gu": "દિવાળી (દીપાવલી)", + "hi": "दिवाली (दीपावली)", + "kn": "ದೀಪಾವಳಿ", + "ml": "ദീപാവലി", + "mr": "दिवाळी (दीपवाली)", + "ms_MY": "Hari Deepavali", + "my": "ဒီပါဝလီနေ့", + "nl": "Divali", + "pa": "ਦੀਵਾਲੀ (ਦੀਪਵਾਲੀ)", + "si_LK": "දීපවාලි උත්සව දිනය", + "sw": "Diwali", + "ta": "தீபாவளி", + "ta_LK": "தீபாவளிப் பண்டிகை தினம்", + "te": "దీపావళి", + "th": "วันดีปาวลี" + }, + "countries": [ + "GY", + "IN", + "KE", + "LK", + "MM", + "MU", + "MY", + "SG", + "SR", + "TT", + "US" + ] + }, + { + "id": "diwali_balipratipada", + "msgid": "Diwali Balipratipada", + "new_comment": "", + "comment": "Diwali Balipratipada.", + "messages": { + "en_IN": "Diwali Balipratipada", + "en_US": "Diwali Balipratipada", + "gu": "દિવાળી બલિપ્રતિપદા", + "hi": "दिवाली बलिप्रतिपदा", + "mr": "दिवाळी बलिप्रतिपदा" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "diwali_lakshmi_puja", + "msgid": "Diwali Lakshmi Puja", + "new_comment": "", + "comment": "Diwali Lakshmi Puja.", + "messages": { + "en_IN": "Diwali Laxmi Pujan", + "en_US": "Diwali Lakshmi Puja", + "gu": "દિવાળી લક્ષ્મી પૂજન", + "hi": "दिवाली लक्ष्मी पूजन", + "mr": "दिवाळी लक्ष्मीपूजन" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "diwali_south_india", + "msgid": "Diwali (South India)", + "new_comment": "", + "comment": "Diwali (South India).", + "messages": { + "bn": "দীপাবলি (দক্ষিণ ভারত)", + "en_IN": "Deepavali (South India)", + "en_US": "Diwali (South India)", + "gu": "દીપાવલી (દક્ષિણ ભારત)", + "hi": "दीपावली (दक्षिण भारत)", + "kn": "ದೀಪಾವಳಿ (ದಕ್ಷಿಣ ಭಾರತ)", + "ml": "ദീപാവലി (ദക്ഷിണേന്ത്യ)", + "mr": "दीपावली (दक्षिण भारत)", + "pa": "ਦੀਪਾਵਲੀ (ਦੱਖਣੀ ਭਾਰਤ)", + "ta": "தீபாவளி (தென்னிந்தியா)", + "te": "దీపావళి (దక్షిణ భారతదేశం)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "dolyatra", + "msgid": "Dolyatra", + "new_comment": "", + "comment": "Dolyatra.", + "messages": { + "bn": "দোলযাত্রা", + "en_IN": "Dolyatra", + "en_US": "Dolyatra", + "gu": "Dolyatra", + "hi": "दोलयात्रा", + "kn": "ದೋಲಯಾತ್ರೆ", + "ml": "ദോലയാത്ര", + "mr": "दोलयात्रा", + "pa": "ਦੋਲਯਾਤਰਾ", + "ta": "தோலயாத்திரை", + "te": "దోలయాత్ర" + }, + "countries": [ + "IN" + ] + }, + { + "id": "dominion_day", + "msgid": "Dominion Day", + "new_comment": "", + "comment": "Dominion Day.", + "messages": { + "ar": "يوم دومينيون", + "en_CA": "Dominion Day", + "en_US": "Dominion Day", + "fr": "Jour du dominion", + "th": "วันราชอาณาจักรเครือจักรภพ" + }, + "countries": [ + "CA" + ] + }, + { + "id": "dormition_of_the_mother_of_god", + "msgid": "Dormition of the Mother of God", + "new_comment": "", + "comment": "Dormition of the Mother of God.", + "messages": { + "el": "Κοίμηση της Θεοτόκου", + "en_CY": "Dormition of the Mother of God", + "en_US": "Dormition of the Mother of God", + "ka": "მარიამობა", + "mk": "Успение на Пресвета Богородица", + "ro": "Adormirea Maicii Domnului", + "uk": "Успіння Пресвятої Богородиці" + }, + "countries": [ + "CY", + "GE", + "GR", + "MK", + "RO" + ] + }, + { + "id": "double_ninth_festival", + "msgid": "Double Ninth Festival", + "new_comment": "", + "comment": "Double Ninth Festival.", + "messages": { + "en_HK": "Chung Yeung Festival", + "en_MO": "Chung Yeung Festival (Festival of Ancestors)", + "en_US": "Double Ninth Festival", + "pt_MO": "Chong Yeong (Culto dos Antepassados)", + "th": "วันไหว้บรรพบุรุษ", + "zh_CN": "重阳节", + "zh_HK": "重陽節", + "zh_MO": "重陽節" + }, + "countries": [ + "HK", + "MO" + ] + }, + { + "id": "downfall_of_the_dergue_regime_day", + "msgid": "Downfall of the Dergue Regime Day", + "new_comment": "", + "comment": "Downfall of the Dergue Regime Day.", + "messages": { + "am": "ደርግ የወደቀበት ቀን", + "ar": "يوم سقوط نظام الدرج", + "en_ET": "Downfall of the Dergue Regime Day", + "en_US": "Downfall of the Dergue Regime Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "dr_b_r_ambedkar_jayanti", + "msgid": "Dr. B. R. Ambedkar Jayanti", + "new_comment": "", + "comment": "Dr. B. R. Ambedkar Jayanti.", + "messages": { + "en_IN": "Dr. Baba Saheb Ambedkar Jayanti", + "en_US": "Dr. B. R. Ambedkar Jayanti", + "gu": "ડૉ. બાબાસાહેબ આંબેડકર જયંતિ", + "hi": "डॉ. बाबा साहेब अम्बेडकर जयंती", + "mr": "डॉ. बाबासाहेब आंबेडकर जयंती" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "dr_b_r_ambedkar_s_birthday", + "msgid": "Dr. B. R. Ambedkar's Birthday", + "new_comment": "", + "comment": "Dr. B. R. Ambedkar's Birthday.", + "messages": { + "bn": "ড. বি. আর. আম্বেদকর জয়ন্তী", + "en_IN": "Dr. B. R. Ambedkar's Jayanti", + "en_US": "Dr. B. R. Ambedkar's Birthday", + "gu": "ડૉ. બી. આર. આંબેડકર જયંતિ", + "hi": "डॉ. बी.आर. आम्बेडकर जयंती", + "kn": "ಡಾ ಬಿ.ಆರ್.ಅಂಬೇಡ್ಕರ್ ಜಯಂತಿ", + "ml": "ഡോ. ബി. ആർ. അംബേദ്കർ ജയന്തി", + "mr": "डॉ. बाबासाहेब आंबेडकर जयंती", + "pa": "ਜਨਮ ਦਿਨ ਡਾ: ਬੀ.ਆਰ. ਅੰਬੇਡਕਰ", + "ta": "டாக்டர் பி. ஆர். அம்பேத்கர் ஜெயந்தி", + "te": "డా. బి.ఆర్. అంబేద్కర్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "dr_martin_luther_king_jr_and_robert_e_lee_s_birthdays", + "msgid": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", + "new_comment": "", + "comment": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays.", + "messages": { + "en_US": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", + "th": "วันเกิด ดร. มาร์ติน ลูเทอร์ คิง จูเนียร์และโรเบิร์ต อี. ลี" + }, + "countries": [ + "US" + ] + }, + { + "id": "dr_martin_luther_king_jr_civil_rights_day", + "msgid": "Dr. Martin Luther King Jr. / Civil Rights Day", + "new_comment": "", + "comment": "Dr. Martin Luther King Jr. / Civil Rights Day.", + "messages": { + "en_US": "Dr. Martin Luther King Jr. / Civil Rights Day", + "th": "วัน ดร. มาร์ติน ลูเทอร์ คิง จูเนียร์ / วันสิทธิพลเมือง" + }, + "countries": [ + "US" + ] + }, + { + "id": "dr_martin_luther_king_jr_day", + "msgid": "Dr. Martin Luther King, Jr. Day", + "new_comment": "", + "comment": "Dr. Martin Luther King, Jr. Day.", + "messages": { + "en_US": "Dr. Martin Luther King, Jr. Day", + "gu": "ડૉ. માર્ટિન લ્યુથર કિંગ, જુનિયર ડે", + "hi": "डॉ. मार्टिन लूथर किंग, जूनियर डे" + }, + "countries": [ + "XCME" + ] + }, + { + "id": "dr_sun_yat_sen_s_birthday", + "msgid": "Dr. Sun Yat-sen's Birthday", + "new_comment": "", + "comment": "Dr. Sun Yat-sen's Birthday.", + "messages": { + "en_US": "Dr. Sun Yat-sen's Birthday", + "th": "วันคล้ายวันเกิด ดร.ซุนยัตเซ็น", + "zh_CN": "国父诞辰纪念日", + "zh_TW": "國父誕辰紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "dr_sun_yat_sen_s_memorial_day", + "msgid": "Dr. Sun Yat-sen's Memorial Day", + "new_comment": "", + "comment": "Dr. Sun Yat-sen's Memorial Day.", + "messages": { + "en_US": "Dr. Sun Yat-sen's Memorial Day", + "th": "วันรำลึกถึงการอสัญกรรม ดร.ซุนยัตเซ็น", + "zh_CN": "国父逝世纪念日", + "zh_TW": "國父逝世紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "draft_registration_day", + "msgid": "Draft Registration Day", + "new_comment": "", + "comment": "Draft Registration Day.", + "messages": { + "en_US": "Draft Registration Day", + "gu": "ડ્રાફ્ટ નોંધણી દિવસ", + "hi": "ड्राफ्ट पंजीकरण दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "dragon_boat_festival", + "msgid": "Dragon Boat Festival", + "new_comment": "", + "comment": "Dragon Boat Festival.", + "messages": { + "en_HK": "Tuen Ng Festival", + "en_MO": "Tung Ng Festival (Dragon Boat Festival)", + "en_US": "Dragon Boat Festival", + "pt_MO": "Tung Ng (Barco Dragão)", + "th": "วันไหว้บ๊ะจ่าง", + "zh_CN": "端午节", + "zh_HK": "端午節", + "zh_MO": "端午節", + "zh_TW": "端午節" + }, + "countries": [ + "CN", + "HK", + "MO", + "TW" + ] + }, + { + "id": "duruthu_full_moon_poya_day", + "msgid": "Duruthu Full Moon Poya Day", + "new_comment": "", + "comment": "Duruthu Full Moon Poya Day.", + "messages": { + "en_US": "Duruthu Full Moon Poya Day", + "si_LK": "දුරුතු පුර පසළොස්වක පෝය දිනය", + "ta_LK": "துருத்து முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "dussehra", + "msgid": "Dussehra", + "new_comment": "", + "comment": "Dussehra.", + "messages": { + "bn": "বিজয়া দশমী", + "en_IN": "Dussehra", + "en_US": "Dussehra", + "gu": "દશેરા", + "hi": "दशहरा", + "kn": "ವಿಜಯದಶಮಿ", + "ml": "ദശര", + "mr": "दसरा", + "pa": "ਦੁਸਹਿਰਾ", + "ta": "விஜயதசமி", + "te": "విజయదశమి" + }, + "countries": [ + "IN", + "XNSE" + ] + }, + { + "id": "dussehra_mahanavami", + "msgid": "Dussehra (Mahanavami)", + "new_comment": "", + "comment": "Dussehra (Mahanavami).", + "messages": { + "bn": "দশেরা (মহানবমী)", + "en_IN": "Dussehra (Mahanavami)", + "en_US": "Dussehra (Mahanavami)", + "gu": "દશેરા (મહાનવમી)", + "hi": "दशहरा (महानवमी)", + "kn": "ದಸರಾ (ಮಹಾನವಮಿ)", + "ml": "ദസറ (മഹാനവമി)", + "mr": "दसरा (महानवमी)", + "pa": "ਦੁਸਹਿਰਾ (ਮਹਾਨਵਮੀ)", + "ta": "தசரா (மகாநவமி)", + "te": "దసరా (మహానవమి)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "dussehra_mahashtami", + "msgid": "Dussehra (Mahashtami)", + "new_comment": "", + "comment": "Dussehra (Mahashtami).", + "messages": { + "bn": "দশেরা (মহাষ্টমী)", + "en_IN": "Dussehra (Mahashtami)", + "en_US": "Dussehra (Mahashtami)", + "gu": "દશેરા (મહાષ્ટમી)", + "hi": "दशहरा (महाष्टमी)", + "kn": "ದಸರಾ (ಮಹಾಷ್ಟಮಿ)", + "ml": "ദസറ (മഹാഷ്ടമി)", + "mr": "दसरा (महाष्टमी)", + "pa": "ਦੁਸਹਿਰਾ (ਮਹਾਅਸ਼ਟਮੀ)", + "ta": "தசரா (மகாஷ்டமி)", + "te": "దసరా (మహాష్టమి)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "dussehra_saptami", + "msgid": "Dussehra (Saptami)", + "new_comment": "", + "comment": "Dussehra (Saptami).", + "messages": { + "bn": "দশেরা (সপ্তমী)", + "en_IN": "Dussehra (Saptami)", + "en_US": "Dussehra (Saptami)", + "gu": "દશેરા (સપ્તમી)", + "hi": "दशहरा (सप्तमी)", + "kn": "ದಸರಾ (ಸಪ್ತಮಿ)", + "ml": "ദസറ (സപ്തമി)", + "mr": "दसरा (सप्तमी)", + "pa": "ਦੁਸਹਿਰਾ (ਸਪਤਮੀ)", + "ta": "தசரா (சப்தமி)", + "te": "దసరా (సప్తమి)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "duwadashi_dashain", + "msgid": "Duwadashi (Dashain)", + "new_comment": "", + "comment": "Duwadashi (Dashain).", + "messages": { + "en_US": "Duwadashi (Dashain)", + "kn": "ದ್ವಾದಶಿ (ದಸರಾ)", + "ne": "दुवादशी (दशैं)" + }, + "countries": [ + "NP" + ] + }, + { + "id": "dzyady_all_souls_day", + "msgid": "Dzyady (All Souls' Day)", + "new_comment": "", + "comment": "Dzyady (All Souls' Day).", + "messages": { + "be": "Дзень памяці", + "en_US": "Dzyady (All Souls' Day)", + "ru": "День памяти", + "th": "ดียาดี (วันภาวนาอุทิศแด่ผู้ล่วงลับ)" + }, + "countries": [ + "BY" + ] + }, + { + "id": "earthquake_victims_remembrance_day", + "msgid": "Earthquake Victims Remembrance Day", + "new_comment": "", + "comment": "Earthquake Victims Remembrance Day.", + "messages": { + "en_US": "Earthquake Victims Remembrance Day", + "hy": "Երկրաշարժի զոհերի հիշատակի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "earthquake_victims_remembrance_day_and_disaster_resilience_day", + "msgid": "Earthquake Victims Remembrance Day and Disaster Resilience Day", + "new_comment": "", + "comment": "Earthquake Victims Remembrance Day and Disaster Resilience Day.", + "messages": { + "en_US": "Earthquake Victims Remembrance Day and Disaster Resilience Day", + "hy": "Երկրաշարժի զոհերի հիշատակի եւ աղետներին դիմակայունության օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "easter", + "msgid": "Easter", + "new_comment": "", + "comment": "Easter.", + "messages": { + "ar": "عيد الفصح المجيد", + "bg": "Великден", + "cnr": "Uskrs", + "en_US": "Easter", + "hu": "Húsvét", + "ro": "Paștele", + "uk": "Великдень" + }, + "countries": [ + "BG", + "HU", + "MD", + "ME", + "PS", + "RO" + ] + }, + { + "id": "easter_monday", + "msgid": "Easter Monday", + "new_comment": "", + "comment": "Easter Monday.", + "messages": { + "ar": "إثنين الفصح", + "bn": "ইস্টারের পরের সোমবার", + "ca": "Dilluns de Pasqua", + "coa_CC": "Isnin Paskah", + "cs": "Velikonoční pondělí", + "da": "Anden påskedag", + "de": "Ostermontag", + "el": { + "CY": "Δευτέρα της Διακαινησίμου", + "GR": "Δευτέρα του Πάσχα" + }, + "en_AI": "Easter Monday", + "en_AU": "Easter Monday", + "en_BF": "Easter Monday", + "en_BQ": "Easter Monday", + "en_CA": "Easter Monday", + "en_CC": "Easter Monday", + "en_CI": "Easter Monday", + "en_CK": "Easter Monday", + "en_CY": "Easter Monday", + "en_GB": "Easter Monday", + "en_GD": "Easter Monday", + "en_GM": "Easter Monday", + "en_GS": "Easter Monday", + "en_GY": "Easter Monday", + "en_HK": "Easter Monday", + "en_IN": "Easter Monday", + "en_KE": "Easter Monday", + "en_LC": "Easter Monday", + "en_MS": "Easter Monday", + "en_NA": "Easter Monday", + "en_NF": "Easter Monday", + "en_NG": "Easter Monday", + "en_NR": "Easter Monday", + "en_NU": "Easter Monday", + "en_SC": "Easter Monday", + "en_SG": "Easter Monday", + "en_SL": "Easter Monday", + "en_TC": "Easter Monday", + "en_TK": "Easter Monday", + "en_TT": "Easter Monday", + "en_US": "Easter Monday", + "en_VC": "Easter Monday", + "en_VG": "Easter Monday", + "es": "Lunes de Pascua", + "fi": "Toinen pääsiäispäivä", + "fo": "Annar páskadagur", + "fr": "Lundi de Pâques", + "fr_BJ": "Lundi de Pâques", + "fr_MC": "Le Lundi de Pâques", + "fr_NE": "Lundi de Pâques", + "fr_SN": "Lundi de Pâques", + "fy": "Peaskemoandei", + "gu": "ઈસ્ટર સોમવાર", + "hi": "ईस्टर सोमवार", + "hr": "Uskrsni ponedjeljak", + "hu": "Húsvét Hétfő", + "id": "Hari kedua Paskah", + "is": "Annar í páskum", + "it": { + "CH": "Lunedì dell'Angelo", + "SM": "Lunedì dell'angelo", + "VA": "Lunedì dell'Angelo" + }, + "it_IT": "Lunedì dell'Angelo", + "ka": "შავი ორშაბათი", + "kab": "Letni n tfaska", + "kl": "Poorskip-aappaa", + "kn": "ಈಸ್ಟರ್ ಸೋಮವಾರ", + "lb": "Ouschterméindeg", + "lt": "Antroji šv. Velykų diena", + "lv": "Otrās Lieldienas", + "mg": "Alatsinain'ny paska", + "mk": "Велигден", + "ml": "ഈസ്റ്റർ തിങ്കളാഴ്ച", + "mr": "इस्टर सोमवार", + "nl": { + "AW": "Tweede paasdag", + "BE": "Paasmaandag", + "BQ": "Tweede paasdag", + "CW": "Tweede paasdag", + "NL": "Tweede paasdag", + "SR": "Tweede paasdag", + "SX": "Tweede paasdag" + }, + "no": "Andre påskedag", + "pa": "ਈਸਟਰ ਸੋਮਵਾਰ", + "pap_AW": "Di dos dia di Pasco di Resureccion", + "pap_BQ": "Di dos dia di Pasku di Resurekshon", + "pap_CW": "Di dos dia di Pasku di Resurekshon", + "pl": "Poniedziałek Wielkanocny", + "ru": "Пасхальный понедельник", + "rw": "Ku wa mbere wa Pasika", + "sk": "Veľkonočný pondelok", + "sl": "velikonočni ponedeljek", + "sr": "Други дан Васкрса", + "sv": "Annandag påsk", + "sv_FI": "Annandag påsk", + "sw": "Jumatatu ya Pasaka", + "ta": "ஈஸ்டர் திங்கட்கிழமை", + "te": "ఈస్టర్ సోమవారం", + "th": "วันจันทร์อีสเตอร์", + "tkl": "Ahogafua o te Eheta", + "to": "Monite ʻo e Toetuʻu", + "tvl": "Toe Tu aso gafua", + "uk": "Великодній понеділок", + "zh_CN": "复活节星期一", + "zh_HK": "復活節星期一" + }, + "countries": [ + "AD", + "AI", + "AT", + "AU", + "AW", + "BE", + "BF", + "BJ", + "BQ", + "CA", + "CC", + "CF", + "CG", + "CH", + "CI", + "CK", + "CW", + "CY", + "CZ", + "DE", + "DK", + "DZ", + "ES", + "FI", + "FO", + "FR", + "GA", + "GB", + "GD", + "GE", + "GI", + "GL", + "GM", + "GN", + "GR", + "GS", + "GY", + "HK", + "HR", + "HU", + "ID", + "IN", + "IQ", + "IS", + "IT", + "KE", + "KY", + "LC", + "LI", + "LT", + "LU", + "LV", + "MC", + "MG", + "MK", + "ML", + "MS", + "NA", + "NE", + "NF", + "NG", + "NL", + "NO", + "NR", + "NU", + "PL", + "RS", + "RW", + "SC", + "SE", + "SG", + "SH", + "SI", + "SK", + "SL", + "SM", + "SN", + "SR", + "SX", + "TC", + "TG", + "TK", + "TO", + "TT", + "TV", + "TZ", + "US", + "VA", + "VC", + "VG", + "XETR", + "XMAD" + ] + }, + { + "id": "easter_saturday", + "msgid": "Easter Saturday", + "new_comment": "", + "comment": "Easter Saturday.", + "messages": { + "en_AU": "Easter Saturday", + "en_SC": "Easter Saturday", + "en_US": "Easter Saturday", + "th": "วันเสาร์อีสเตอร์" + }, + "countries": [ + "AU", + "SC" + ] + }, + { + "id": "easter_spring_break", + "msgid": "Easter/Spring Break", + "new_comment": "", + "comment": "Easter/Spring Break.", + "messages": { + "de": "Oster-/Frühjahrsferien", + "en_US": "Easter/Spring Break", + "th": "ปิดเทอมอีสเตอร์/ฤดูใบไม้ผลิ", + "uk": "Великодні/весняні канікули" + }, + "countries": [ + "DE" + ] + }, + { + "id": "easter_sunday", + "msgid": "Easter Sunday", + "new_comment": "", + "comment": "Easter Sunday.", + "messages": { + "am": "የትንሳኤ(ፋሲካ) በዓል", + "ar": { + "ET": "عيد القيامة (فاسيكا)", + "IQ": "أحد الفصح" + }, + "bn": "ইস্টার রবিবার", + "da": "Påskedag", + "de": { + "BE": "Ostern", + "CH": "Ostersonntag", + "CV": "Ostersonntag", + "DE": "Ostersonntag", + "LI": "Ostersonntag", + "PL": "Ostersonntag" + }, + "el": "Κυριακή του Πάσχα", + "en_AI": "Easter Sunday", + "en_AU": "Easter Sunday", + "en_BQ": "Easter Sunday", + "en_CY": "Easter Sunday", + "en_ET": "Easter", + "en_IN": "Easter Sunday", + "en_US": "Easter Sunday", + "es": { + "CV": "Domingo de Pascua", + "HT": "Pascua", + "PE": "Domingo de Resurrección", + "PY": "Domingo de Resurrección" + }, + "et": "ülestõusmispühade 1. püha", + "fi": "Pääsiäispäivä", + "fo": "Páskadagur", + "fr": { + "BE": "Pâques", + "CH": "Jour de Pâques", + "CV": "Dimanche de Pâques", + "GA": "Pâques" + }, + "fr_BJ": "Jour de Pâques", + "fr_HT": "Pâques", + "fy": "Peaskesnein", + "gu": "ઈસ્ટર સન્ડે", + "hi": "ईस्टर रविवार", + "hr": "Uskrs", + "ht": "Pak", + "id": "Kebangkitan Yesus Kristus", + "is": "Páskadagur", + "it": { + "CH": "Pasqua", + "SM": "Pasqua", + "VA": "Pasqua di Resurrezione" + }, + "it_IT": "Pasqua", + "ka": "აღდგომა", + "kl": "Poorskip ullua", + "kn": "ಈಸ್ಟರ್ ಭಾನುವಾರ", + "lt": "Šv. Velykos", + "lv": "Pirmās Lieldienas", + "mg": "Fetin'ny paska", + "ml": "ഈസ്റ്റർ", + "mr": "ईस्टर रविवार", + "nl": { + "BE": "Pasen", + "BQ": "Eerste paasdag", + "CW": "Paasdag", + "NL": "Eerste paasdag", + "SX": "Eerste paasdag" + }, + "no": "Første påskedag", + "pa": "ਈਸਟਰ ਐਤਵਾਰ", + "pap_BQ": "Pasku di Resurekshon", + "pap_CW": "Pasku di Resurekshon", + "pl": "Niedziela Wielkanocna", + "pt_CV": "Páscoa", + "pt_GW": "Páscoa", + "pt_PT": "Páscoa", + "ru": "Пасха", + "sl": "velikonočna nedelja", + "sr": "Васкрс", + "sv": "Påskdagen", + "sv_FI": "Påskdagen", + "sw": "Sikukuu ya Pasaka", + "ta": "ஈஸ்டர் ஞாயிறு", + "te": "ఈస్టర్ ఆదివారం", + "th": "วันอาทิตย์อีสเตอร์", + "uk": "Великдень" + }, + "countries": [ + "AI", + "AU", + "BE", + "BJ", + "BQ", + "CH", + "CV", + "CW", + "CY", + "DE", + "DK", + "EE", + "ET", + "FI", + "FO", + "GA", + "GE", + "GL", + "GW", + "HR", + "HT", + "ID", + "IN", + "IQ", + "IS", + "IT", + "LI", + "LT", + "LV", + "MG", + "NL", + "NO", + "PE", + "PL", + "PT", + "PY", + "RS", + "SE", + "SI", + "SM", + "SX", + "TZ", + "US", + "VA" + ] + }, + { + "id": "easter_sunday_pascha", + "msgid": "Easter Sunday (Pascha)", + "new_comment": "", + "comment": "Easter Sunday (Pascha).", + "messages": { + "ar": "عيد الفصح", + "en_US": "Easter Sunday (Pascha)", + "th": "วันอาทิตย์อีสเตอร์", + "uk": "Великдень (Пасха)" + }, + "countries": [ + "UA" + ] + }, + { + "id": "easter_tuesday", + "msgid": "Easter Tuesday", + "new_comment": "", + "comment": "Easter Tuesday.", + "messages": { + "el": "Τρίτη της Διακαινησίμου", + "en_AU": "Easter Tuesday", + "en_CY": "Easter Tuesday", + "en_NR": "Easter Tuesday", + "en_US": "Easter Tuesday", + "it": "Martedì in Albis", + "th": "วันอังคารอีสเตอร์", + "uk": "Великодній вівторок" + }, + "countries": [ + "AU", + "CY", + "NR", + "VA" + ] + }, + { + "id": "ecological_state_day", + "msgid": "Ecological State Day", + "new_comment": "", + "comment": "Ecological State Day.", + "messages": { + "cnr": "Dan Ekološke države", + "en_US": "Ecological State Day", + "uk": "День екологічної держави" + }, + "countries": [ + "ME" + ] + }, + { + "id": "edsa_people_power_revolution_anniversary", + "msgid": "EDSA People Power Revolution Anniversary", + "new_comment": "", + "comment": "EDSA People Power Revolution Anniversary.", + "messages": { + "en_PH": "EDSA People Power Revolution Anniversary", + "en_US": "EDSA People Power Revolution Anniversary", + "fil": "Anibersaryo ng Rebolusyon sa EDSA", + "th": "วันครบรอบการปฏิวัติพลังประชาชนเอ็ดซา" + }, + "countries": [ + "PH" + ] + }, + { + "id": "eid_al_adha", + "msgid": "Eid al-Adha", + "new_comment": "", + "comment": "Eid al-Adha.", + "messages": { + "am": "የኢድ አልአድሃ (አረፋ)", + "ar": { + "AE": "عيد الأضحى", + "BD": "عيد الأضحى", + "BH": "عيد الأضحى", + "DJ": "عيد الأضحى", + "DZ": "عيد الأضحى", + "EH": "عيد الأضحى المبارك", + "ET": "عيد الأضحى", + "IQ": "عيد الأضحى", + "JO": "عيد الأضحى", + "KW": "عيد الأضحى", + "LB": "عيد الأضحى", + "LY": "عيد الأضحى", + "MA": "عيد الأضحى", + "MR": "عيد الأضحى", + "OM": "عيد الأضحى", + "PS": "عيد الأضحى المبارك", + "SY": "عيد الأضحى", + "TN": "عيد الأضحى", + "YE": "عيد الأضحى" + }, + "ar_EG": "عيد الأضحى المبارك", + "ar_QA": "عيد الأضحى", + "ar_SD": "عيد الأضحى المبارك", + "az": "Qurban bayrami", + "bn": { + "BD": "ঈদুল আজহা", + "IN": "ঈদ-উল-জুহা (বকরিদ)" + }, + "bs": "Kurban Bajram", + "ca": "Festa del Sacrifici-Aid Al Adha", + "cnr": "Kurbanski bajram", + "coa_CC": "Hari Raya Haji", + "dv": "އަޟްޙާޢީދު ދުވަސް", + "en_BD": "Eid-ul-Adha", + "en_BF": "Eid al-Adha", + "en_CC": "Eid al-Adha", + "en_CI": "Aid-El-Kebir", + "en_CX": "Hari Raya Haji", + "en_ET": "Eid al-Adha", + "en_GM": "Tobaski", + "en_GY": "Eid-Ul-Azha", + "en_IN": { + "IN": "Id-ul-Zuha (Bakrid)", + "XNSE": "Bakri Id" + }, + "en_KE": "Idd-ul-Azha", + "en_NG": "Id el Kabir", + "en_PH": "Eid'l Adha", + "en_PK": "Eid-ul-Adha", + "en_SG": "Hari Raya Haji", + "en_SL": "Eid al-Adha", + "en_TL": "Idul Adha", + "en_US": "Eid al-Adha", + "es": { + "AR": "Día de la Fiesta del Sacrificio (Id Al-Adha)", + "EH": "Eid al-Adha", + "ES": "Fiesta del Sacrificio-Aid Al Adha" + }, + "fa_AF": "عید قربانی", + "fa_IR": "عید سعید قربان", + "fil": "Eid al-Adha", + "fr": { + "BF": "Jour de Tabaski", + "CF": "Aïd al-Adha", + "CI": "Fête de la Tabaski", + "DJ": "Eid al-Adha", + "DZ": "Aïd el-Adha", + "EG": "Aïd Al-Adha", + "EH": "Aïd al-Adha", + "GA": "Fête du sacrifice", + "GN": "Jour de la Tabaski", + "LB": "Adha", + "MA": "Fête du sacrifice", + "ML": "Journée de la Tabaski", + "RW": "Aïd al-Adha", + "TG": "Tabaski" + }, + "fr_BI": "Aid-El-Adha", + "fr_BJ": "Jour de la Tabaski", + "fr_NE": "Tabaski", + "fr_SN": "Journée de la Tabaski", + "gu": { + "IN": "ઈદ-ઉલ-ઝુહા (બકરી ઈદ)", + "XNSE": "બકરી ઈદ" + }, + "hi": { + "IN": "ईद-उल-ज़ुहा (बकरीद)", + "XNSE": "बकरीद" + }, + "id": "Hari Raya Idul Adha", + "kab": "Lɛid tameqrant", + "kk": "Құрбан айт", + "kn": { + "IN": "ಈದ್-ಉಲ್-ಜುಹಾ (ಬಕ್ರೀದ್)", + "NP": "ಈದ್ ಅಲ್-ಅಧಾ" + }, + "ky": "Курман айт", + "mk": "Курбан Бајрам", + "ml": "ഈദുൽ സുഹ (ബക്രീദ്)", + "mr": { + "IN": "ईद-उल-जुहा (बकरीद)", + "XNSE": "बकरी ईद" + }, + "ms": "Hari Raya Aidil Adha", + "ms_MY": "Hari Raya Qurban", + "my": "အီဒုလ်အဿွဟာနေ့", + "ne": "बकर ईद (ईद उल अजहा)", + "nl": "Ied-Ul-Adha", + "pa": "ਈਦ-ਉਲ-ਜ਼ੁਹਾ (ਬਕਰੀਦ)", + "ps_AF": "عید قربانی", + "pt_GW": "Tabaski", + "pt_TL": "Idul Adha", + "ru": { + "TJ": "Курбан-байрам", + "TM": "Курбан байрам" + }, + "ru_KG": "Курман айт", + "rw": "Eid al-Adha", + "si_LK": "ඊදුල් අල්හා", + "sq": { + "AL": "Dita e Kurban Bajramit", + "XK": "Bajrami i Vogël, dita e parë" + }, + "sr": { + "BA": "Курбан Бајрам", + "XK": "Kurban Bajram, prvi dan" + }, + "sw": { + "KE": "Sikukuu ya Idd-ul-Azha", + "TZ": "Eid El Hajj" + }, + "ta": "ஈதுல் ஸுஹா (பக்ரீத்)", + "ta_LK": "ஈதுல் அழ்ஹா", + "te": "ఈద్-ఉల్-జుహా (బక్రీద్)", + "tet": "Idul Adha", + "tg": "Рӯзи иди Қурбон", + "th": "วันอีดิ้ลอัฎฮา", + "tk": "Gurban baýramy", + "tr": "Kurban Bayramı", + "uk": "Курбан-байрам", + "ur_PK": "عید الاضحی", + "uz": "Qurbon hayit" + }, + "countries": [ + "AE", + "AF", + "AL", + "AR", + "AZ", + "BA", + "BD", + "BF", + "BH", + "BI", + "BJ", + "BN", + "CC", + "CF", + "CI", + "CX", + "DJ", + "DZ", + "EG", + "EH", + "ES", + "ET", + "GA", + "GM", + "GN", + "GW", + "GY", + "ID", + "IN", + "IQ", + "IR", + "JO", + "KE", + "KG", + "KW", + "KZ", + "LB", + "LK", + "LY", + "MA", + "ME", + "MK", + "ML", + "MM", + "MR", + "MV", + "MY", + "NE", + "NG", + "NP", + "OM", + "PH", + "PK", + "PS", + "QA", + "RW", + "SD", + "SG", + "SL", + "SN", + "SR", + "SY", + "TG", + "TJ", + "TL", + "TM", + "TN", + "TR", + "TZ", + "UZ", + "XK", + "XNSE", + "YE" + ] + }, + { + "id": "eid_al_adha_holiday", + "msgid": "Eid al-Adha Holiday", + "new_comment": "", + "comment": "Eid al-Adha Holiday.", + "messages": { + "ar": "عطلة عيد الأضحى", + "bn": "ঈদুল আযহার ছুটি", + "dv": "އަޟްޙާޢީދުގެ މުނާސަބަތުގައި", + "en_NG": "Id el Kabir Holiday", + "en_US": "Eid al-Adha Holiday", + "fr": "Eid al-Adha deuxième jour", + "th": "เทศกาลอีดิ้ลอัฎฮา" + }, + "countries": [ + "AE", + "DJ", + "JO", + "KW", + "MV", + "NG", + "SA", + "TN" + ] + }, + { + "id": "eid_al_adha_joint_holiday", + "msgid": "Eid al-Adha Joint Holiday", + "new_comment": "", + "comment": "Eid al-Adha Joint Holiday.", + "messages": { + "en_US": "Eid al-Adha Joint Holiday", + "id": "Cuti Bersama Hari Raya Idul Adha", + "th": "หยุดร่วมพิเศษวันอีดิ้ลอัฎฮา", + "uk": "Додатковий вихідний на Курбан-байрам" + }, + "countries": [ + "ID" + ] + }, + { + "id": "eid_al_adha_second_day", + "msgid": "Eid al-Adha (Second Day)", + "new_comment": "", + "comment": "Eid al-Adha (Second Day).", + "messages": { + "en_US": "Eid al-Adha (Second Day)", + "ms_MY": "Hari Raya Qurban (Hari Kedua)", + "th": "วันอีดิ้ลอัฎฮาวันที่สอง" + }, + "countries": [ + "MY" + ] + }, + { + "id": "eid_al_fitr", + "msgid": "Eid al-Fitr", + "new_comment": "", + "comment": "Eid al-Fitr.", + "messages": { + "am": "የኢድ አልፈጥር", + "ar": { + "AE": "عيد الفطر", + "BD": "عيد الفطر", + "BH": "عيد الفطر", + "DJ": "عيد الفطر", + "DZ": "عيد الفطر", + "EH": "عيد الفطر المبارك", + "ET": "عيد الفطر", + "IQ": "عيد الفطر", + "JO": "عيد الفطر", + "KW": "عيد الفطر", + "LB": "عيد الفطر", + "LY": "عيد الفطر", + "MA": "عيد الفطر", + "MR": "عيد الفطر", + "OM": "عيد الفطر", + "PS": "عيد الفطر السعيد", + "SY": "عيد الفطر", + "TN": "عيد الفطر", + "YE": "عيد الفطر" + }, + "ar_EG": "عيد الفطر المبارك", + "ar_QA": "عيد الفطر", + "ar_SD": "عيد الفطر المبارك", + "az": "Ramazan bayrami", + "bn": { + "BD": "ঈদুল ফিতর", + "IN": "ঈদ-উল-ফিতর" + }, + "bs": "Ramazanski Bajram", + "ca": "Festa de l'Eid Fitr", + "cnr": "Ramazanski bajram", + "coa_CC": "Hari Raya Puasa", + "dv": "ފިޠުރުޢީދު ދުވަސް", + "en_BD": "Eid-ul-Fitr", + "en_BF": "Eid al-Fitr", + "en_CC": "Eid al-Fitr", + "en_CI": "Aid-El-Fitr", + "en_CX": "Hari Raya Puasa", + "en_ET": "Eid al-Fitr", + "en_GM": "Koriteh", + "en_IN": { + "IN": "Id-ul-Fitr", + "XNSE": "Id-Ul-Fitr (Ramadan Eid)" + }, + "en_KE": "Idd-ul-Fitr", + "en_MU": "Eid-ul-Fitr", + "en_NG": "Id el Fitr", + "en_PH": "Eid'l Fitr", + "en_PK": "Eid-ul-Fitr", + "en_SG": "Hari Raya Puasa", + "en_SL": "Eid al-Fitr", + "en_TL": "Idul Fitri", + "en_TT": "Eid-Ul-Fitr", + "en_US": "Eid al-Fitr", + "es": { + "AR": "Día posterior a la culminación del ayuno (Id Al-Fitr)", + "EH": "Eid al-Fitr", + "ES": "Fiesta del Eid Fitr" + }, + "fa_AF": "عید فطر", + "fa_IR": "عید سعید فطر", + "fil": "Eid al-Fitr", + "fr": { + "BF": "Jour de Ramadan", + "CF": "Aïd al-Fitr", + "CI": "Fête de fin du Ramadan", + "DJ": "Eid al-Fitr", + "DZ": "Aïd el-Fitr", + "EG": "Aïd-Al-Fitr", + "EH": "Aïd el-Fitr", + "GA": "Fin du Ramadan", + "GN": "Jour de l'Aïd el-Fitr", + "LB": "Eid El Fitr", + "MA": "Fête de la rupture du jeûne", + "ML": "Journée de la Fête du Ramadan", + "RW": "Aïd el-Fitr", + "TG": "l'Aïd El-Fitr" + }, + "fr_BI": "Aid-El-Fithr", + "fr_BJ": "Jour du Ramadan", + "fr_NE": "Korité", + "fr_SN": "Journée de la Korité", + "gu": { + "IN": "ઈદ-ઉલ-ફિત્ર", + "XNSE": "રમઝાન ઈદ (ઈદ-ઉલ-ફિત્ર)" + }, + "hi": { + "IN": "ईद-उल-फितर", + "XNSE": "ईद-उल-फितर (रमज़ान ईद)" + }, + "id": "Hari Raya Idul Fitri", + "kab": "Lɛid tamezyant", + "kn": { + "IN": "ಈದ್-ಉಲ್-ಫಿತರ್", + "NP": "ಈದ್ ಅಲ್-ಫಿತರ್" + }, + "ky": "Орозо айт", + "mk": "Рамазан Бајрам", + "ml": "ഈദ്-ഉൽ-ഫിത്തർ", + "mr": "रमझान ईद (ईद-उल-फितर)", + "ms": "Hari Raya Aidil Fitri", + "ms_MY": "Hari Raya Puasa", + "ne": "ईद (ईद उल फित्र)", + "nl": "Ied-Ul-Fitre", + "pa": "ਈਦ-ਉੱਲ-ਫਿਤਰ", + "ps_AF": "عید فطر", + "pt_GW": "Korité", + "pt_TL": "Idul Fitri", + "ru": { + "TJ": "Ураза-байрам", + "TM": "Ораза байрам" + }, + "ru_KG": "Орозо айт", + "rw": "Eid El Fitr", + "si_LK": "ඊදුල් ෆීතර්", + "sq": { + "AL": "Dita e Bajramit të Madh", + "XK": "Bajrami i Madh, dita e parë" + }, + "sr": { + "BA": "Рамазански Бајрам", + "XK": "Fiter Bajram, prvi dan" + }, + "sw": { + "KE": "Sikukuu ya Idd-ul-Fitr", + "TZ": "Eid El-Fitri" + }, + "ta": "ஈத் உல்-பித்ர்", + "ta_LK": "ஈதுல் பித்ர்", + "te": "ఈద్-ఉల్-ఫితర్", + "tet": "Idul-Fitri", + "tg": "Рӯзи иди Рамазон", + "th": "วันอีฎิ้ลฟิตริ", + "tk": "Oraza baýramy", + "tr": "Ramazan Bayramı", + "uk": "Рамазан-байрам", + "ur_PK": "عید الفطر", + "uz": "Roʻza hayit" + }, + "countries": [ + "AE", + "AF", + "AL", + "AR", + "AZ", + "BA", + "BD", + "BF", + "BH", + "BI", + "BJ", + "BN", + "CC", + "CF", + "CI", + "CX", + "DJ", + "DZ", + "EG", + "EH", + "ES", + "ET", + "GA", + "GM", + "GN", + "GW", + "ID", + "IN", + "IQ", + "IR", + "JO", + "KE", + "KG", + "KW", + "LB", + "LK", + "LY", + "MA", + "ME", + "MK", + "ML", + "MR", + "MU", + "MV", + "MY", + "NE", + "NG", + "NP", + "OM", + "PH", + "PK", + "PS", + "QA", + "RW", + "SD", + "SG", + "SL", + "SN", + "SR", + "SY", + "TG", + "TJ", + "TL", + "TM", + "TN", + "TR", + "TT", + "TZ", + "UZ", + "XK", + "XNSE", + "YE" + ] + }, + { + "id": "eid_al_fitr_additional_holiday", + "msgid": "Eid al-Fitr (additional holiday)", + "new_comment": "", + "comment": "Eid al-Fitr (additional holiday).", + "messages": { + "en_US": "Eid al-Fitr (additional holiday)", + "ms_MY": "Hari Raya Puasa (pergantian hari)", + "th": "วันอีฎิ้ลฟิตริ (เพิ่มเติม)" + }, + "countries": [ + "MY" + ] + }, + { + "id": "eid_al_fitr_holiday", + "msgid": "Eid al-Fitr Holiday", + "new_comment": "", + "comment": "Eid al-Fitr Holiday.", + "messages": { + "ar": "عطلة عيد الفطر", + "bn": "ঈদুল ফিতরের ছুটি", + "dv": "ފިޠުރުޢީދުގެ މުނާސަބަތުގައި", + "en_NG": "Id el Fitr Holiday", + "en_US": "Eid al-Fitr Holiday", + "fa_IR": "تعطیل به مناسبت عید سعید فطر", + "fr": "Eid al-Fitr deuxième jour", + "th": "เทศกาลอีฎิ้ลฟิตริ" + }, + "countries": [ + "AE", + "DJ", + "IR", + "JO", + "KW", + "MV", + "NG", + "SA", + "TN" + ] + }, + { + "id": "eid_al_fitr_joint_holiday", + "msgid": "Eid al-Fitr Joint Holiday", + "new_comment": "", + "comment": "Eid al-Fitr Joint Holiday.", + "messages": { + "en_US": "Eid al-Fitr Joint Holiday", + "id": "Cuti Bersama Hari Raya Idul Fitri", + "th": "หยุดร่วมพิเศษวันอีฎิ้ลฟิตริ", + "uk": "Додатковий вихідний на Курбан-байрам" + }, + "countries": [ + "ID" + ] + }, + { + "id": "eid_al_fitr_second_day_1", + "msgid": "Eid al-Fitr (Second Day)", + "new_comment": "", + "comment": "Eid al-Fitr (Second Day).", + "messages": { + "en_US": "Eid al-Fitr (Second Day)", + "ms_MY": "Hari Raya Puasa (Hari Kedua)", + "th": "วันอีฎิ้ลฟิตริวันที่สอง" + }, + "countries": [ + "MY" + ] + }, + { + "id": "eid_al_fitr_second_day_2", + "msgid": "Eid al-Fitr Second Day", + "new_comment": "", + "comment": "Eid al-Fitr Second Day.", + "messages": { + "en_US": "Eid al-Fitr Second Day", + "id": "Hari kedua dari Hari Raya Idul Fitri", + "th": "วันอีฎิ้ลฟิตริวันที่สอง", + "uk": "Другий день Рамазан-байрам" + }, + "countries": [ + "ID" + ] + }, + { + "id": "eid_al_fitr_third_day", + "msgid": "Eid al-Fitr (Third Day)", + "new_comment": "", + "comment": "Eid al-Fitr (Third Day).", + "messages": { + "en_US": "Eid al-Fitr (Third Day)", + "ms_MY": "Hari Raya Puasa (Hari Ketiga)", + "th": "วันอีฎิ้ลฟิตริวันที่สาม" + }, + "countries": [ + "MY" + ] + }, + { + "id": "eid_al_ghadir", + "msgid": "Eid al-Ghadir", + "new_comment": "", + "comment": "Eid al-Ghadir.", + "messages": { + "ar": "عيد الغدير", + "bn": "ঈদ-এ-গাদীর", + "en_IN": "Eid-e-Ghadeer", + "en_US": "Eid al-Ghadir", + "fa_IR": "عید سعید غدیر خم", + "gu": "ઈદ-એ-ગદીર", + "hi": "ईद-ए-ग़दीर", + "kn": "ಈದ್-ಎ-ಘದೀರ್", + "ml": "ഈദ്-എ-ഗദീർ", + "mr": "ईद-ए-गदीर", + "pa": "ਈਦ-ਏ-ਗਦੀਰ", + "ta": "ஈத்-எ-கதீர்", + "te": "ఈద్-ఎ-గదీర్" + }, + "countries": [ + "IN", + "IQ", + "IR" + ] + }, + { + "id": "eight_hours_day", + "msgid": "Eight Hours Day", + "new_comment": "", + "comment": "Eight Hours Day.", + "messages": { + "en_AU": "Eight Hours Day", + "en_US": "Eight Hours Day", + "th": "วันแปดชั่วโมง (วันแรงงาน)" + }, + "countries": [ + "AU" + ] + }, + { + "id": "eino_leino_day_day_of_summer_and_poetry", + "msgid": "Eino Leino Day, Day of Summer and Poetry", + "new_comment": "", + "comment": "Eino Leino Day, Day of Summer and Poetry.", + "messages": { + "en_US": "Eino Leino Day, Day of Summer and Poetry", + "fi": "Eino Leinon päivä, runon ja suven päivä", + "sv_FI": "Eino Leino-dagen, diktens och sommarens dag", + "th": "วันไอนอ ไลโน, วันแห่งบทกวีและฤดูร้อน", + "uk": "День Ейно Лейно, День літа та поезії" + }, + "countries": [ + "FI" + ] + }, + { + "id": "ekadashi_dashain", + "msgid": "Ekadashi (Dashain)", + "new_comment": "", + "comment": "Ekadashi (Dashain).", + "messages": { + "en_US": "Ekadashi (Dashain)", + "kn": "ಏಕಾದಶಿ (ದಸರಾ)", + "ne": "एकादशी (दशैं)" + }, + "countries": [ + "NP" + ] + }, + { + "id": "elders_day", + "msgid": "Elders' Day", + "new_comment": "", + "comment": "Elders' Day.", + "messages": { + "en_US": "Elders' Day", + "mn": "Ахмадын өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "election_day", + "msgid": "Election Day", + "new_comment": "", + "comment": "Election Day.", + "messages": { + "en_KE": "Election Day", + "en_US": "Election Day", + "gu": "ચૂંટણીનો દિવસ", + "hi": "चुनाव दिवस", + "mk": "Ден на изборите", + "sw": "Siku ya Uchaguzi", + "th": "วันเลือกตั้ง", + "uk": "День виборів" + }, + "countries": [ + "KE", + "MK", + "US", + "XNYS" + ] + }, + { + "id": "elections_special_non_working_day", + "msgid": "Elections special (non-working) day", + "new_comment": "", + "comment": "Elections special (non-working) day.", + "messages": { + "en_PH": "Elections special (non-working) day", + "en_US": "Elections special (non-working) day", + "fil": "Araw ng Halalan (Walang Trabajo)", + "th": "วันหยุดพิเศษ (เลือกตั้ง)" + }, + "countries": [ + "PH" + ] + }, + { + "id": "electoral_college_election_day", + "msgid": "Electoral College Election Day", + "new_comment": "", + "comment": "Electoral College Election Day.", + "messages": { + "en_US": "Electoral College Election Day", + "ko": "선거를 위한 선거인단 선일", + "th": "วันเลือกตั้งคณะผู้เลือกตั้ง" + }, + "countries": [ + "KR" + ] + }, + { + "id": "elevation_of_amazonas_to_province", + "msgid": "Elevation of Amazonas to province", + "new_comment": "", + "comment": "Elevation of Amazonas to province.", + "messages": { + "en_US": "Elevation of Amazonas to province", + "pt_BR": "Elevação do Amazonas à categoria de província", + "uk": "День піднесення Амазонас до категорії провінцій" + }, + "countries": [ + "BR" + ] + }, + { + "id": "emancipation_day", + "msgid": "Emancipation Day", + "new_comment": "", + "comment": "Emancipation Day.", + "messages": { + "en_BM": "Emancipation Day", + "en_BQ": "Emancipation Day", + "en_GB": "Emancipation Day", + "en_GD": "Emancipation Day", + "en_GY": "Emancipation Day", + "en_LC": "Emancipation Day", + "en_MS": "Emancipation Day", + "en_TC": "Emancipation Day", + "en_US": "Emancipation Day", + "en_VC": "Emancipation Day", + "nl": { + "BQ": "Emancipatiedag", + "SX": "Dag van de Bevrijding" + }, + "pap_BQ": "Dia di Emansipashon", + "th": "วันเลิกทาส", + "to": "ʻAho Tauʻataina" + }, + "countries": [ + "BM", + "BQ", + "GD", + "GY", + "KY", + "LC", + "MS", + "SX", + "TC", + "TO", + "US", + "VC" + ] + }, + { + "id": "emancipation_day_in_texas", + "msgid": "Emancipation Day In Texas", + "new_comment": "", + "comment": "Emancipation Day In Texas.", + "messages": { + "en_US": "Emancipation Day In Texas", + "th": "วันเลิกทาสในเท็กซัส" + }, + "countries": [ + "US" + ] + }, + { + "id": "emancipation_monday", + "msgid": "Emancipation Monday", + "new_comment": "", + "comment": "Emancipation Monday.", + "messages": { + "en_US": "Emancipation Monday", + "en_VG": "Emancipation Monday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "emancipation_tuesday", + "msgid": "Emancipation Tuesday", + "new_comment": "", + "comment": "Emancipation Tuesday.", + "messages": { + "en_US": "Emancipation Tuesday", + "en_VG": "Emancipation Tuesday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "emancipation_wednesday", + "msgid": "Emancipation Wednesday", + "new_comment": "", + "comment": "Emancipation Wednesday.", + "messages": { + "en_US": "Emancipation Wednesday", + "en_VG": "Emancipation Wednesday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "emergency_lockdown_2011_thailand_floods", + "msgid": "Emergency Lockdown (2011 Thailand Floods)", + "new_comment": "", + "comment": "Emergency Lockdown (2011 Thailand Floods).", + "messages": { + "en_US": "Emergency Lockdown (2011 Thailand Floods)", + "th": "วันหยุดพิเศษ (มหาอุทกภัย พ.ศ. 2554)", + "uk": "Надзвичайний стан (повінь 2011 року)" + }, + "countries": [ + "TH" + ] + }, + { + "id": "emergency_lockdown_thai_military_coup_d_tat", + "msgid": "Emergency Lockdown (Thai Military Coup d'état)", + "new_comment": "", + "comment": "Emergency Lockdown (Thai Military Coup d'état).", + "messages": { + "en_US": "Emergency Lockdown (Thai Military Coup d'état)", + "th": "วันหยุดพิเศษ (คมช.)", + "uk": "Надзвичайний стан (військовий переворот)" + }, + "countries": [ + "TH" + ] + }, + { + "id": "emergency_lockdown_thai_political_unrest", + "msgid": "Emergency Lockdown (Thai Political Unrest)", + "new_comment": "", + "comment": "Emergency Lockdown (Thai Political Unrest).", + "messages": { + "en_US": "Emergency Lockdown (Thai Political Unrest)", + "th": "วันหยุดพิเศษ (การเมือง)", + "uk": "Надзвичайний стан (політичні заворушення)" + }, + "countries": [ + "TH" + ] + }, + { + "id": "emperor_s_birthday", + "msgid": "Emperor's Birthday", + "new_comment": "", + "comment": "Emperor's Birthday.", + "messages": { + "en_US": "Emperor's Birthday", + "ja": "天皇誕生日", + "th": "วันคล้ายวันพระราชสมภพ สมเด็จพระจักรพรรดินารุฮิโตะ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "end_of_year_holiday", + "msgid": "End of Year Holiday", + "new_comment": "", + "comment": "End of Year Holiday.", + "messages": { + "en_US": "End of Year Holiday", + "ko": "연말휴장일", + "th": "วันหยุดสิ้นปี" + }, + "countries": [ + "XKRX" + ] + }, + { + "id": "enlarged_temporary_quarters_in_produce_exchange", + "msgid": "Enlarged temporary quarters in Produce Exchange", + "new_comment": "", + "comment": "Enlarged temporary quarters in Produce Exchange.", + "messages": { + "en_US": "Enlarged temporary quarters in Produce Exchange", + "gu": "પ્રોડ્યુસ એક્સચેન્જમાં વિસ્તૃત હંગામી ક્વાર્ટર્સ", + "hi": "प्रोड्यूस एक्सचेंज में विस्तारित अस्थायी क्वार्टर" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "enthronement_ceremony", + "msgid": "Emperor's Enthronement Day", + "new_comment": "", + "comment": "Enthronement ceremony.", + "messages": { + "en_US": "Emperor's Enthronement Day", + "ja": "即位礼正殿の儀が行われる日", + "th": "พระราชพิธีจักรพรรดิยาภิเษกของสมเด็จพระจักรพรรดิ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "enthronement_day", + "msgid": "Emperor's Enthronement Day", + "new_comment": "", + "comment": "Enthronement day.", + "messages": { + "en_US": "Emperor's Enthronement Day", + "ja": "天皇の即位の日", + "th": "พระราชพิธีขึ้นครองราชย์ของสมเด็จพระจักรพรรดิ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "environment_day", + "msgid": "Environment Day", + "new_comment": "", + "comment": "Environment Day.", + "messages": { + "en_GS": "Environment Day", + "en_US": "Environment Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "environmental_protection_days", + "msgid": "Environmental Protection Days", + "new_comment": "", + "comment": "Environmental Protection Days.", + "messages": { + "en_US": "Environmental Protection Days", + "mn": "Байгаль орчныг хамгаалах өдрүүд" + }, + "countries": [ + "MN" + ] + }, + { + "id": "epiphany", + "msgid": "Epiphany", + "new_comment": "", + "comment": "Epiphany.", + "messages": { + "am": "የጥምቀት በዓል", + "ar": { + "ET": "عيد الغطاس الإثيوبي (طمقت)", + "PS": "عيد الغطاس" + }, + "ca": "Reis", + "da": "Helligtrekongersdag", + "de": "Heilige Drei Könige", + "el": { + "CY": "Ημέρα των Θεοφανίων", + "GR": "Θεοφάνεια" + }, + "en_CY": "Epiphany", + "en_ET": "Epiphany", + "en_US": "Epiphany", + "es": { + "AR": "Día de Reyes", + "CO": "Día de los Reyes Magos", + "DO": "Día de los Santos Reyes", + "ES": "Epifanía del Señor" + }, + "fi": "Loppiainen", + "fr": "Épiphanie", + "hr": "Bogojavljenje ili Sveta tri kralja", + "is": "Þrettándinn", + "it": { + "CH": "Epifania", + "SM": "Epifania", + "VA": "Epifania del Signore" + }, + "it_IT": "Epifania", + "ka": "ნათლისღება", + "kl": "Kunngit pingasut ulluat", + "mk": "Богојавление", + "no": "Helligtrekongersdag", + "pl": "Święto Trzech Króli", + "ro": "Botezul Domnului - Boboteaza", + "sk": "Zjavenie Pána (Traja králi a vianočný sviatok pravoslávnych kresťanov)", + "sv": "Trettondedag jul", + "sv_FI": "Trettondag", + "th": "วันสมโภชพระคริสต์แสดงองค์", + "uk": "Богоявлення" + }, + "countries": [ + "AD", + "AR", + "AT", + "CH", + "CO", + "CY", + "DE", + "DO", + "ES", + "ET", + "FI", + "GE", + "GL", + "GR", + "HR", + "IT", + "LI", + "MK", + "PL", + "PS", + "RO", + "SE", + "SM", + "US", + "VA" + ] + }, + { + "id": "epiphany_eve", + "msgid": "Epiphany Eve", + "new_comment": "", + "comment": "Epiphany Eve.", + "messages": { + "ca": "Vigília de Reis", + "en_US": "Epiphany Eve", + "uk": "Переддень Богоявлення" + }, + "countries": [ + "AD" + ] + }, + { + "id": "epiphany_sk", + "msgid": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "new_comment": "", + "comment": "Epiphany.", + "messages": { + "en_US": "Epiphany (Three Kings' Day and Orthodox Christmas)", + "sk": "Zjavenie Pána (Traja králi a vianočný sviatok pravoslávnych kresťanov)", + "uk": "Богоявлення (Три царі і православне Різдво Христове)" + }, + "countries": [ + "SK" + ] + }, + { + "id": "esala_full_moon_poya_day", + "msgid": "Esala Full Moon Poya Day", + "new_comment": "", + "comment": "Esala Full Moon Poya Day.", + "messages": { + "en_US": "Esala Full Moon Poya Day", + "si_LK": "ඇසල පුර පසළොස්වක පෝය දිනය", + "ta_LK": "எசல முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "escaldes_engordany_festival", + "msgid": "Escaldes-Engordany Festival", + "new_comment": "", + "comment": "Escaldes-Engordany Festival.", + "messages": { + "ca": "Festa Major d'Escaldes-Engordany", + "en_US": "Escaldes-Engordany Festival", + "uk": "Свято парафії Ескальдес-Енгордань" + }, + "countries": [ + "AD" + ] + }, + { + "id": "establishment_day_of_the_bol", + "msgid": "Establishment Day of the BOL", + "new_comment": "", + "comment": "Establishment Day of the BOL.", + "messages": { + "en_US": "Establishment Day of the BOL", + "lo": "ວັນສ້າງຕັ້ງທະນາຄານແຫ່ງ ສປປ ລາວ", + "th": "วันก่อตั้งธนาคารแห่ง สปป. ลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "establishment_day_of_the_lao_people_s_revolutionary_party", + "msgid": "Establishment Day of the Lao People's Revolutionary Party", + "new_comment": "", + "comment": "Establishment Day of the Lao People's Revolutionary Party.", + "messages": { + "en_US": "Establishment Day of the Lao People's Revolutionary Party", + "lo": "ວັນສ້າງຕັ້ງພັກປະຊາຊົນປະຕິວັດລາວ", + "th": "วันก่อตั้งพรรคประชาชนปฏิวัติลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "establishment_day_of_the_lao_women_s_union", + "msgid": "Establishment Day of the Lao Women's Union", + "new_comment": "", + "comment": "Establishment Day of the Lao Women's Union.", + "messages": { + "en_US": "Establishment Day of the Lao Women's Union", + "lo": "ວັນສ້າງຕັ້ງສະຫະພັນແມ່ຍິງລາວ", + "th": "วันก่อตั้งสหภาพแม่หญิงลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "ethiopian_martyrs_day", + "msgid": "Ethiopian Martyrs' Day", + "new_comment": "", + "comment": "Ethiopian Martyrs' Day.", + "messages": { + "am": "የሰማዕታት ቀን", + "ar": "يوم الشهداء", + "en_ET": "Ethiopian Martyrs' Day", + "en_US": "Ethiopian Martyrs' Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "ethiopian_new_year", + "msgid": "Ethiopian New Year", + "new_comment": "", + "comment": "Ethiopian New Year.", + "messages": { + "am": "የዘመን መለወጫ (እንቁጣጣሽ) በዓል", + "ar": "رأس السنة الإثيوبية (إنكوتاتاش)", + "en_ET": "New Year (Enkutatash)", + "en_US": "Ethiopian New Year" + }, + "countries": [ + "ET" + ] + }, + { + "id": "ethiopian_patriots_victory_day", + "msgid": "Ethiopian Patriots' Victory Day", + "new_comment": "", + "comment": "Ethiopian Patriots' Victory Day.", + "messages": { + "am": "የአርበኞች (የድል) ቀን በዓል", + "ar": "يوم انتصار الوطنيين الإثيوبيين", + "en_ET": "Ethiopian Patriots' Victory Day", + "en_US": "Ethiopian Patriots' Victory Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "europe_day", + "msgid": "Europe Day", + "new_comment": "", + "comment": "Europe Day.", + "messages": { + "de": "Europatag", + "en_US": "Europe Day", + "fi": "Eurooppa-päivä", + "fr": "Jour de l'Europe", + "lb": "Europadag", + "ro": "Ziua Europei", + "sq": "Dita e Evropës", + "sr": "Dan Evrope", + "sv_FI": "Europadagen", + "th": "วันยุโรป", + "uk": "День Європи" + }, + "countries": [ + "FI", + "LU", + "MD", + "XK" + ] + }, + { + "id": "evacuation_commemoration_day", + "msgid": "Evacuation Commemoration Day", + "new_comment": "", + "comment": "Evacuation Commemoration Day.", + "messages": { + "en_GB": "Evacuation Commemoration Day", + "en_US": "Evacuation Commemoration Day" + }, + "countries": [ + "GI" + ] + }, + { + "id": "evacuation_day", + "msgid": "Evacuation Day", + "new_comment": "", + "comment": "Evacuation Day.", + "messages": { + "ar": "عيد الجلاء", + "ar_EG": "عيد الجلاء", + "en_US": "Evacuation Day", + "fr": "Jour d'évacuation" + }, + "countries": [ + "EG", + "TN", + "YE" + ] + }, + { + "id": "evangelical_day", + "msgid": "Evangelical Day", + "new_comment": "", + "comment": "Evangelical Day.", + "messages": { + "en_US": "Evangelical Day", + "pt_BR": "Dia do Evangélico", + "uk": "Євангельський день" + }, + "countries": [ + "BR" + ] + }, + { + "id": "exaltation_of_the_holy_cross_day", + "msgid": "Exaltation of the Holy Cross Day", + "new_comment": "", + "comment": "Exaltation of the Holy Cross Day.", + "messages": { + "en_US": "Exaltation of the Holy Cross Day", + "es": "Día de la Exaltación de la Santa Cruz", + "uk": "День Воздвиження Хреста Господнього" + }, + "countries": [ + "AR" + ] + }, + { + "id": "extremadura_day", + "msgid": "Extremadura Day", + "new_comment": "", + "comment": "Extremadura Day.", + "messages": { + "ca": "Dia d'Extremadura", + "en_US": "Extremadura Day", + "es": "Día de Extremadura", + "th": "วันเอกซ์เตรมาดูรา", + "uk": "День Естремадури" + }, + "countries": [ + "ES" + ] + }, + { + "id": "fagu_poornima", + "msgid": "Fagu Poornima", + "new_comment": "", + "comment": "Fagu Poornima.", + "messages": { + "en_US": "Fagu Poornima", + "kn": "ಫಾಗು ಹುಣ್ಣಿಮೆ", + "ne": "फागुपूर्णिमा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "fagu_poornima_terai", + "msgid": "Fagu Poornima (Terai)", + "new_comment": "", + "comment": "Fagu Poornima (Terai).", + "messages": { + "en_US": "Fagu Poornima (Terai)", + "kn": "ಫಾಗು ಹುಣ್ಣಿಮೆ (ತರಾಯಿ)", + "ne": "फागुपूर्णिमा (तराई)" + }, + "countries": [ + "NP" + ] + }, + { + "id": "falkland_day", + "msgid": "Falkland Day", + "new_comment": "", + "comment": "Falkland Day.", + "messages": { + "en_GB": "Falkland Day", + "en_US": "Falkland Day" + }, + "countries": [ + "FK" + ] + }, + { + "id": "false_armistice_report", + "msgid": "False armistice report", + "new_comment": "", + "comment": "False armistice report.", + "messages": { + "en_US": "False armistice report", + "gu": "ખોટો યુદ્ધવિરામ અહેવાલ", + "hi": "झूठी युद्धविराम रिपोर्ट" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "family_community_day", + "msgid": "Family & Community Day", + "new_comment": "", + "comment": "Family & Community Day.", + "messages": { + "en_AU": "Family & Community Day", + "en_US": "Family & Community Day", + "th": "วันครอบครัวและชุมชน" + }, + "countries": [ + "AU" + ] + }, + { + "id": "family_day", + "msgid": "Family Day", + "new_comment": "", + "comment": "Family Day.", + "messages": { + "ar": "يوم العائلة", + "en_CA": "Family Day", + "en_NA": "Family Day", + "en_US": "Family Day", + "es": "Día de la Familia", + "fr": "Fête de la famille", + "hy": "Ընտանիքի օր", + "mn": "Гэр бүлийн өдөр", + "pt_AO": "Dia da Família", + "pt_MZ": "Dia da Família", + "th": "วันครอบครัว", + "uk": "День родини" + }, + "countries": [ + "AM", + "AO", + "CA", + "MN", + "MZ", + "NA", + "US", + "UY", + "VE", + "XTSE" + ] + }, + { + "id": "fasting_and_humiliation_day", + "msgid": "Fasting and Humiliation Day", + "new_comment": "", + "comment": "Fasting and Humiliation Day.", + "messages": { + "en_US": "Fasting and Humiliation Day", + "th": "วันถือศีลอดและถ่อมตนต่อพระเจ้า" + }, + "countries": [ + "US" + ] + }, + { + "id": "fat_thursday", + "msgid": "Fat Thursday", + "new_comment": "", + "comment": "Fat Thursday.", + "messages": { + "en_US": "Fat Thursday", + "it_IT": "Giovedì grasso", + "th": "วันพฤหัสบดีอ้วน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "fat_tuesday", + "msgid": "Fat Tuesday", + "new_comment": "", + "comment": "Fat Tuesday.", + "messages": { + "en_US": "Fat Tuesday", + "es": "Martes Gordo", + "fr_HT": "Mardi Gras", + "ht": "Madi Gras" + }, + "countries": [ + "HT" + ] + }, + { + "id": "father_s_day", + "msgid": "Father's Day", + "new_comment": "", + "comment": "Father's Day.", + "messages": { + "de": "Vatertag", + "en_US": "Father's Day", + "es": "Día del Padre", + "fi": "Isänpäivä", + "fr": "Fête des Pères", + "hy": "Հայրերի օր", + "lt": "Tėvo diena", + "mg": "Fetin'ny ray", + "pt_CV": "Dia dos Pais", + "sv_FI": "Fars dag", + "th": "วันพ่อ", + "uk": "День батька" + }, + "countries": [ + "AM", + "CV", + "FI", + "LT", + "MG", + "SV", + "US" + ] + }, + { + "id": "fatherland_defender_s_day", + "msgid": "Fatherland Defender's Day", + "new_comment": "", + "comment": "Fatherland Defender's Day.", + "messages": { + "en_US": "Fatherland Defender's Day", + "ky": "Мекенди коргоочулардын күнү", + "ru_KG": "День защитника Отечества" + }, + "countries": [ + "KG" + ] + }, + { + "id": "feast_of_creation", + "msgid": "Feast of Creation", + "new_comment": "", + "comment": "Feast of Creation.", + "messages": { + "ar": "عيد الخليقة", + "en_US": "Feast of Creation" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "feast_of_holy_etchmiadzin", + "msgid": "Feast of Holy Etchmiadzin", + "new_comment": "", + "comment": "Feast of Holy Etchmiadzin.", + "messages": { + "en_US": "Feast of Holy Etchmiadzin", + "hy": "Սուրբ Էջմիածնի տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "feast_of_lady_of_perpetual_help_patroness_of_haiti", + "msgid": "Feast of Lady of Perpetual Help, Patroness of Haiti", + "new_comment": "", + "comment": "Feast of Lady of Perpetual Help, Patroness of Haiti.", + "messages": { + "en_US": "Feast of Lady of Perpetual Help, Patroness of Haiti", + "es": "Fiesta de Nuestra Señora del Perpetuo Socorro, patrona de Haití", + "fr_HT": "Fête de Notre-Dame du Perpétuel Secours, patronne d'Haiti", + "ht": "Fèt Manman Pèpetyèl Sekou, Patwòn Peyi Dayiti" + }, + "countries": [ + "HT" + ] + }, + { + "id": "feast_of_our_lady_of_graces", + "msgid": "Feast of Our Lady of Graces", + "new_comment": "", + "comment": "Feast of Our Lady of Graces.", + "messages": { + "en_US": "Feast of Our Lady of Graces", + "pt_PT": "Dia de Nossa Senhora das Graças", + "uk": "День Богоматері Милосердя" + }, + "countries": [ + "PT" + ] + }, + { + "id": "feast_of_our_lady_of_m_rcoles", + "msgid": "Feast of Our Lady of Mércoles", + "new_comment": "", + "comment": "Feast of Our Lady of Mércoles.", + "messages": { + "en_US": "Feast of Our Lady of Mércoles", + "pt_PT": "Dia de Nossa Senhora de Mércoles", + "uk": "День Богоматері Меркольської" + }, + "countries": [ + "PT" + ] + }, + { + "id": "feast_of_our_lady_of_sorrows", + "msgid": "Feast of Our Lady of Sorrows", + "new_comment": "", + "comment": "Feast of Our Lady of Sorrows.", + "messages": { + "en_US": "Feast of Our Lady of Sorrows", + "pt_PT": "Dia de Nossa Senhora da Agonia", + "uk": "День Богоматері Страждання" + }, + "countries": [ + "PT" + ] + }, + { + "id": "feast_of_our_lady_of_the_angels", + "msgid": "Feast of Our Lady of the Angels", + "new_comment": "", + "comment": "Feast of Our Lady of the Angels.", + "messages": { + "en_US": "Feast of Our Lady of the Angels", + "es": "Fiesta de Nuestra Señora de los Ángeles", + "uk": "Свято Богоматері Ангелів" + }, + "countries": [ + "CR" + ] + }, + { + "id": "feast_of_our_lady_of_victories", + "msgid": "Feast of Our Lady of Victories", + "new_comment": "", + "comment": "Feast of Our Lady of Victories.", + "messages": { + "en_US": "Feast of Our Lady of Victories", + "mt": "Jum il-Vitorja" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_saint_joseph", + "msgid": "Feast of Saint Joseph", + "new_comment": "", + "comment": "Feast of Saint Joseph.", + "messages": { + "en_US": "Feast of Saint Joseph", + "mt": "Il-Festa ta' San Ġużepp" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_saint_paul_s_shipwreck", + "msgid": "Feast of Saint Paul's Shipwreck", + "new_comment": "", + "comment": "Feast of Saint Paul's Shipwreck.", + "messages": { + "en_US": "Feast of Saint Paul's Shipwreck", + "mt": "Il-Festa tan-Nawfraġju ta' San Pawl" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_saint_peter_and_saint_paul", + "msgid": "Feast of Saint Peter and Saint Paul", + "new_comment": "", + "comment": "Feast of Saint Peter and Saint Paul.", + "messages": { + "en_US": "Feast of Saint Peter and Saint Paul", + "mt": "Il-Festa ta' San Pietru u San Pawl" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_saint_peter_chanel", + "msgid": "Feast of Saint Peter Chanel", + "new_comment": "", + "comment": "Feast of Saint Peter Chanel.", + "messages": { + "en_US": "Feast of Saint Peter Chanel", + "fr": "Saint Pierre Chanel", + "th": "วันสมโภชนักบุญเปโตร ชาเนล", + "uk": "День Святого Пʼєра Шанеля" + }, + "countries": [ + "FR" + ] + }, + { + "id": "feast_of_saint_simon_the_zealot", + "msgid": "Feast of Saint Simon the Zealot", + "new_comment": "", + "comment": "Feast of Saint Simon the Zealot.", + "messages": { + "en_US": "Feast of Saint Simon the Zealot", + "es": "Fiesta de San Simón Apóstol", + "uk": "Свято святого апостола Симона Зилота" + }, + "countries": [ + "VE" + ] + }, + { + "id": "feast_of_san_salvador", + "msgid": "Feast of San Salvador", + "new_comment": "", + "comment": "Feast of San Salvador.", + "messages": { + "en_US": "Feast of San Salvador", + "es": "Fiesta de San Salvador", + "uk": "Свято Спасителя" + }, + "countries": [ + "SV" + ] + }, + { + "id": "feast_of_the_annunciation", + "msgid": "Feast of the Annunciation", + "new_comment": "", + "comment": "Feast of the Annunciation.", + "messages": { + "ar": "عيد بشارة السيدة مريم العذراء", + "en_US": "Feast of the Annunciation", + "fr": "Annonciation", + "sv": "Marie bebådelsedag", + "th": "วันสมโภชแม่พระรับสาร", + "uk": "Благовіщення" + }, + "countries": [ + "LB", + "SE" + ] + }, + { + "id": "feast_of_the_assembly", + "msgid": "Feast of the Assembly", + "new_comment": "", + "comment": "Feast of the Assembly.", + "messages": { + "ar": "عيد الجمعية", + "en_US": "Feast of the Assembly" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "feast_of_the_assumption", + "msgid": "Feast of the Assumption", + "new_comment": "", + "comment": "Feast of the Assumption.", + "messages": { + "en_US": "Feast of the Assumption", + "mt": "Il-Festa ta' Santa Marija" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_the_immaculate_conception", + "msgid": "Feast of the Immaculate Conception", + "new_comment": "", + "comment": "Feast of the Immaculate Conception", + "messages": { + "en_US": "Feast of the Immaculate Conception", + "mt": "Il-Festa tal-Immakulata Kunċizzjoni" + }, + "countries": [ + "MT" + ] + }, + { + "id": "feast_of_z", + "msgid": "Feast of Êzî", + "new_comment": "", + "comment": "Feast of Êzî.", + "messages": { + "ar": "عيد إيزي", + "en_US": "Feast of Êzî" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "feasts_of_the_lord_and_the_virgin_of_miracle", + "msgid": "Feasts of the Lord and the Virgin of Miracle", + "new_comment": "", + "comment": "Feasts of the Lord and the Virgin of Miracle.", + "messages": { + "en_US": "Feasts of the Lord and the Virgin of Miracle", + "es": "Festividades del Señor y de la Virgen del Milagro", + "uk": "Свято Господа та Богородиці Чуда" + }, + "countries": [ + "AR" + ] + }, + { + "id": "february_8_revolution", + "msgid": "February 8 Revolution", + "new_comment": "", + "comment": "February 8 Revolution.", + "messages": { + "ar": "ثورة 8 شباط", + "en_US": "February 8 Revolution" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "federal_day_of_thanksgiving_repentance_and_prayer", + "msgid": "Federal Day of Thanksgiving, Repentance, and Prayer", + "new_comment": "", + "comment": "Federal Day of Thanksgiving, Repentance, and Prayer.", + "messages": { + "de": "Eidgenössischer Bettag", + "en_US": "Federal Day of Thanksgiving, Repentance, and Prayer", + "fr": "Jeûne fédéral", + "it": "Digiuno federale", + "th": "วันอธิษฐานแห่งชาติสวิตเซอร์แลนด์", + "uk": "Швейцарський національний день молитви" + }, + "countries": [ + "CH" + ] + }, + { + "id": "federal_territory_day", + "msgid": "Federal Territory Day", + "new_comment": "", + "comment": "Federal Territory Day.", + "messages": { + "en_US": "Federal Territory Day", + "ms_MY": "Hari Wilayah Persekutuan", + "th": "วันเขตสหพันธรัฐ" + }, + "countries": [ + "MY" + ] + }, + { + "id": "federated_states_of_micronesia_day", + "msgid": "Federated States of Micronesia Day", + "new_comment": "", + "comment": "Federated States of Micronesia Day.", + "messages": { + "en_FM": "Federated States of Micronesia Day", + "en_US": "Federated States of Micronesia Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "festival_day", + "msgid": "Festival Day", + "new_comment": "", + "comment": "Festival Day.", + "messages": { + "en_MS": "Festival Day", + "en_US": "Festival Day" + }, + "countries": [ + "MS" + ] + }, + { + "id": "festival_monday", + "msgid": "Festival Monday", + "new_comment": "", + "comment": "Festival Monday.", + "messages": { + "en_US": "Festival Monday", + "en_VG": "Festival Monday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "festival_tuesday", + "msgid": "Festival Tuesday", + "new_comment": "", + "comment": "Festival Tuesday.", + "messages": { + "en_US": "Festival Tuesday", + "en_VG": "Festival Tuesday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "festival_wednesday", + "msgid": "Festival Wednesday", + "new_comment": "", + "comment": "Festival Wednesday.", + "messages": { + "en_US": "Festival Wednesday", + "en_VG": "Festival Wednesday" + }, + "countries": [ + "VG" + ] + }, + { + "id": "fifa_world_cup_2022_victory_day", + "msgid": "FIFA World Cup 2022 Victory Day", + "new_comment": "", + "comment": "FIFA World Cup 2022 Victory Day.", + "messages": { + "en_US": "FIFA World Cup 2022 Victory Day", + "es": "Día de la Victoria de la Copa Mundial de la FIFA 2022", + "uk": "День перемоги збірної Аргентини на Чемпіонаті світу з футболу 2022" + }, + "countries": [ + "AR" + ] + }, + { + "id": "fifth_day_of_lunar_new_year", + "msgid": "Fifth Day of Lunar New Year", + "new_comment": "", + "comment": "Fifth Day of Lunar New Year.", + "messages": { + "en_US": "Fifth Day of Lunar New Year", + "th": "วันตรุษเต๊ตวันที่ห้า", + "vi": "Mùng năm Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "final_departure_of_r_m_s_st_helena", + "msgid": "Final Departure of R.M.S. St Helena", + "new_comment": "", + "comment": "Final Departure of R.M.S. St Helena.", + "messages": { + "en_GB": "Final Departure of R.M.S. St Helena", + "en_US": "Final Departure of R.M.S. St Helena" + }, + "countries": [ + "SH" + ] + }, + { + "id": "finding_of_true_cross", + "msgid": "Finding of True Cross", + "new_comment": "", + "comment": "Finding of True Cross.", + "messages": { + "am": "የመስቀል በዓል", + "ar": "عيد الصليب (مسقل)", + "en_ET": "Meskel Holiday", + "en_US": "Finding of True Cross" + }, + "countries": [ + "ET" + ] + }, + { + "id": "finland_s_nature_day", + "msgid": "Finland's Nature Day", + "new_comment": "", + "comment": "Finland's Nature Day.", + "messages": { + "en_US": "Finland's Nature Day", + "fi": "Suomen luonnon päivä", + "sv_FI": "Den finska naturens dag", + "th": "วันสิ่งแวดล้อมฟินแลนด์", + "uk": "День природи Фінляндії" + }, + "countries": [ + "FI" + ] + }, + { + "id": "finnish_swedish_heritage_day_svenska_dagen", + "msgid": "Finnish Swedish Heritage Day, svenska dagen", + "new_comment": "", + "comment": "Finnish Swedish Heritage Day, svenska dagen.", + "messages": { + "en_US": "Finnish Swedish Heritage Day, svenska dagen", + "fi": "Ruotsalaisuuden päivä, Kustaa Aadolfin päivä", + "sv_FI": "Svenska dagen, Gustav Adolfsdagen", + "th": "วันมรดกสวีเดน-ฟินแลนด์, วันกุสตาฟวัส อดอลฟัส", + "uk": "День фінської шведської спадщини, шведський день" + }, + "countries": [ + "FI" + ] + }, + { + "id": "first_day_of_ramadan", + "msgid": "First Day of Ramadan", + "new_comment": "", + "comment": "First Day of Ramadan.", + "messages": { + "dv": "ރަމަޟާން މަސް ފެށޭ ދުވަސް", + "en_US": "First Day of Ramadan", + "fa_AF": "اول رمضان", + "fr": "Ramadan", + "ms": "Hari Pertama Berpuasa", + "ps_AF": "د روژې لومړۍ نیټه", + "th": "วันแรกการถือศีลอด" + }, + "countries": [ + "AF", + "BN", + "MV", + "TG" + ] + }, + { + "id": "first_day_of_summer", + "msgid": "First Day of Summer", + "new_comment": "", + "comment": "First Day of Summer.", + "messages": { + "en_US": "First Day of Summer", + "is": "Sumardagurinn fyrsti", + "uk": "Перший день літа" + }, + "countries": [ + "IS" + ] + }, + { + "id": "first_lady_yuk_young_soo_s_funeral_ceremony", + "msgid": "First Lady Yuk Young-soo's Funeral Ceremony", + "new_comment": "", + "comment": "First Lady Yuk Young-soo's Funeral Ceremony.", + "messages": { + "en_US": "First Lady Yuk Young-soo's Funeral Ceremony", + "ko": "대통령 영부인 육영수 여사 국민장 영결식", + "th": "พิธีศพสุภาพสตรีหมายเลขหนึ่ง ยุก ย็อง-ซู" + }, + "countries": [ + "KR" + ] + }, + { + "id": "first_martyr", + "msgid": "First Martyr", + "new_comment": "", + "comment": "First Martyr.", + "messages": { + "ar": "يوم الشهيد الأول", + "en_US": "First Martyr", + "es": "Primer mártir", + "fr": "Premier martyr" + }, + "countries": [ + "EH" + ] + }, + { + "id": "first_president_day", + "msgid": "First President Day", + "new_comment": "", + "comment": "First President Day.", + "messages": { + "en_US": "First President Day", + "kk": "Қазақстан Республикасының Тұңғыш Президенті күні", + "uk": "День першого президента Республіки Казахстан" + }, + "countries": [ + "KZ" + ] + }, + { + "id": "first_sermon_of_lord_buddha", + "msgid": "First Sermon of Lord Buddha", + "new_comment": "", + "comment": "First Sermon of Lord Buddha.", + "messages": { + "dz": "སྟོན་པ་མཆོག་ཝ་ར་ན་སིར་བདེན་བཞིའི་ཆོས་འཁོར་བསྐོར་བའི་དུས་ཆེན་ངལ་གསོ།", + "en_US": "First Sermon of Lord Buddha" + }, + "countries": [ + "BT" + ] + }, + { + "id": "flag_and_independence_day", + "msgid": "Flag and Independence Day", + "new_comment": "", + "comment": "Flag and Independence Day.", + "messages": { + "en_US": "Flag and Independence Day", + "sq": "Dita Flamurit dhe e Pavarësisë", + "uk": "День прапора та незалежності" + }, + "countries": [ + "AL" + ] + }, + { + "id": "flag_day", + "msgid": "Flag Day", + "new_comment": "", + "comment": "Flag Day.", + "messages": { + "en_US": "Flag Day", + "gu": "ફ્લેગ ડે", + "hi": "झंडा दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "flag_day_and_university_day", + "msgid": "Flag Day and University Day", + "new_comment": "", + "comment": "Flag Day and University Day.", + "messages": { + "en_US": "Flag Day and University Day", + "es": "Fiesta de la Bandera y la Universidad", + "fr_HT": "Fête du Drapeau et de l'Université", + "ht": "Jounen Drapo ak Inivèsite" + }, + "countries": [ + "HT" + ] + }, + { + "id": "flag_day_of_the_finnish_defense_forces", + "msgid": "Flag Day of the Finnish Defense Forces", + "new_comment": "", + "comment": "Flag Day of the Finnish Defense Forces.", + "messages": { + "en_US": "Flag Day of the Finnish Defense Forces", + "fi": "Puolustusvoimain lippujuhlan päivä", + "sv_FI": "Dagen för försvarets fanfest", + "th": "วันกองกำลังป้องกันฟินแลนด์", + "uk": "День прапора фінських сил оборони" + }, + "countries": [ + "FI" + ] + }, + { + "id": "flora_duffy_day", + "msgid": "Flora Duffy Day", + "new_comment": "", + "comment": "Flora Duffy Day.", + "messages": { + "en_BM": "Flora Duffy Day", + "en_US": "Flora Duffy Day" + }, + "countries": [ + "BM" + ] + }, + { + "id": "folk_day", + "msgid": "Folk Day", + "new_comment": "", + "comment": "Folk Day.", + "messages": { + "en_US": "Folk Day", + "ko": "민속의 날", + "th": "วันเทศกาลพื้นบ้าน" + }, + "countries": [ + "KR" + ] + }, + { + "id": "foundation_day", + "msgid": "Foundation Day", + "new_comment": "", + "comment": "Foundation Day.", + "messages": { + "en_AU": "Foundation Day", + "en_NF": "Foundation Day", + "en_US": "Foundation Day", + "ja": "建国記念の日", + "th": { + "AU": "วันสถาปนา", + "JP": "วันชาติญี่ปุ่น" + } + }, + "countries": [ + "AU", + "JP", + "NF" + ] + }, + { + "id": "foundation_day_of_the_korean_children_s_union", + "msgid": "Foundation Day of the Korean Children's Union", + "new_comment": "", + "comment": "Foundation Day of the Korean Children's Union.", + "messages": { + "en_US": "Foundation Day of the Korean Children's Union", + "ko_KP": "조선소년단 창립절" + }, + "countries": [ + "KP" + ] + }, + { + "id": "foundation_day_of_the_workers_party_of_korea", + "msgid": "Foundation Day of the Workers' Party of Korea", + "new_comment": "", + "comment": "Foundation Day of the Workers' Party of Korea.", + "messages": { + "en_US": "Foundation Day of the Workers' Party of Korea", + "ko_KP": "조선로동당창건일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "foundation_of_goi_nia", + "msgid": "Foundation of Goiânia", + "new_comment": "", + "comment": "Foundation of Goiânia.", + "messages": { + "en_US": "Foundation of Goiânia", + "pt_BR": "Pedra fundamental de Goiânia", + "uk": "День заснування Гоянії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "foundation_of_goi_s_city", + "msgid": "Foundation of Goiás city", + "new_comment": "", + "comment": "Foundation of Goiás city.", + "messages": { + "en_US": "Foundation of Goiás city", + "pt_BR": "Fundação da cidade de Goiás", + "uk": "День заснування міста Гояс" + }, + "countries": [ + "BR" + ] + }, + { + "id": "foundation_of_rome", + "msgid": "Foundation of Rome", + "new_comment": "", + "comment": "Foundation of Rome.", + "messages": { + "en_US": "Foundation of Rome", + "it_IT": "Natale di Roma", + "th": "วันสถาปนากรุงโรม" + }, + "countries": [ + "IT" + ] + }, + { + "id": "founding_anniversary_of_iglesia_ni_cristo", + "msgid": "Founding Anniversary of Iglesia ni Cristo", + "new_comment": "", + "comment": "Founding Anniversary of Iglesia ni Cristo.", + "messages": { + "en_PH": "Founding Anniversary of Iglesia ni Cristo", + "en_US": "Founding Anniversary of Iglesia ni Cristo", + "fil": "Anibersaryo ng Pagkatatag ng Iglesia ni Cristo", + "th": "วันครบรอบการสถาปนานิกายคริสตจักรของพระคริสต์" + }, + "countries": [ + "PH" + ] + }, + { + "id": "founding_day", + "msgid": "Founding Day Holiday", + "new_comment": "", + "comment": "Founding Day.", + "messages": { + "ar": "يوم التأسيسي", + "bn": "প্রতিষ্ঠা দিবস", + "en_US": "Founding Day Holiday" + }, + "countries": [ + "SA" + ] + }, + { + "id": "founding_day_of_the_dprk", + "msgid": "Founding Day of the DPRK", + "new_comment": "", + "comment": "Founding Day of the DPRK.", + "messages": { + "en_US": "Founding Day of the DPRK", + "ko_KP": "조선민주주의인민공화국창건일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "founding_day_of_the_korean_people_s_army", + "msgid": "Founding Day of the Korean People's Army", + "new_comment": "", + "comment": "Founding Day of the Korean People's Army.", + "messages": { + "en_US": "Founding Day of the Korean People's Army", + "ko_KP": "조선인민군창건일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "founding_day_of_the_korean_people_s_revolutionary_army", + "msgid": "Founding Day of the Korean People's Revolutionary Army", + "new_comment": "", + "comment": "Founding Day of the Korean People's Revolutionary Army.", + "messages": { + "en_US": "Founding Day of the Korean People's Revolutionary Army", + "ko_KP": "조선인민혁명군 창건일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "founding_day_of_the_republic_of_china", + "msgid": "Founding Day of the Republic of China", + "new_comment": "", + "comment": "Founding Day of the Republic of China.", + "messages": { + "en_US": "Founding Day of the Republic of China", + "th": "วันสถาปนาสาธารณรัฐจีน(ไต้หวัน)", + "zh_CN": "中华民国开国纪念日", + "zh_TW": "中華民國開國紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "founding_of_acre", + "msgid": "Founding of Acre", + "new_comment": "", + "comment": "Founding of Acre.", + "messages": { + "en_US": "Founding of Acre", + "pt_BR": "Aniversário do Acre", + "uk": "День заснування Акрі" + }, + "countries": [ + "BR" + ] + }, + { + "id": "founding_of_brasilia", + "msgid": "Founding of Brasilia", + "new_comment": "", + "comment": "Founding of Brasilia.", + "messages": { + "en_US": "Founding of Brasilia", + "pt_BR": "Fundação de Brasília", + "uk": "День заснування Бразиліа" + }, + "countries": [ + "BR" + ] + }, + { + "id": "fourth_day_of_lunar_new_year", + "msgid": "Fourth Day of Lunar New Year", + "new_comment": "", + "comment": "Fourth Day of Lunar New Year.", + "messages": { + "en_US": "Fourth Day of Lunar New Year", + "th": "วันตรุษเต๊ตวันที่สี่", + "vi": "Mùng bốn Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "frances_xavier_cabrini_day", + "msgid": "Frances Xavier Cabrini Day", + "new_comment": "", + "comment": "Frances Xavier Cabrini Day.", + "messages": { + "en_US": "Frances Xavier Cabrini Day", + "th": "วันฟรานเซส ซาเวียร์ คาบรินี" + }, + "countries": [ + "US" + ] + }, + { + "id": "franco_thai_war_armistice_day", + "msgid": "Franco-Thai War Armistice Day", + "new_comment": "", + "comment": "Franco-Thai War Armistice Day.", + "messages": { + "en_US": "Franco-Thai War Armistice Day", + "th": "วันลงนามในสัญญาพักรบระหว่างประเทศไทยกับประเทศอินโดจีนฝรั่งเศส", + "uk": "День підписання перемирʼя між Таїландом та Францією" + }, + "countries": [ + "TH" + ] + }, + { + "id": "freedom_and_constitution_day", + "msgid": "Freedom and Constitution Day", + "new_comment": "", + "comment": "Freedom and Constitution Day.", + "messages": { + "en_US": "Freedom and Constitution Day", + "tr": "Hürriyet ve Anayasa Bayramı", + "uk": "День Свободи та Конституції" + }, + "countries": [ + "TR" + ] + }, + { + "id": "freedom_and_independence_of_american_peoples", + "msgid": "Freedom and Independence of American Peoples", + "new_comment": "", + "comment": "Freedom and Independence of American Peoples.", + "messages": { + "en_US": "Freedom and Independence of American Peoples", + "pt_BR": "Liberdade e Independência dos Povos Americanos", + "uk": "День свободи та незалежності американських народів" + }, + "countries": [ + "BR" + ] + }, + { + "id": "freedom_day", + "msgid": "Freedom Day", + "new_comment": "", + "comment": "Freedom Day.", + "messages": { + "bg": "Ден на свободата", + "en_MO": "Freedom Day", + "en_US": "Freedom Day", + "mt": "Jum il-Ħelsien", + "pt_MO": "Dia da Liberdade", + "pt_PT": "Dia da Liberdade", + "th": "วันแห่งเสรีภาพ", + "uk": "День свободи", + "zh_CN": "自由日", + "zh_MO": "自由日" + }, + "countries": [ + "BG", + "MO", + "MT", + "PT" + ] + }, + { + "id": "friday_after_ascension_day", + "msgid": "Friday after Ascension Day", + "new_comment": "", + "comment": "Friday after Ascension Day.", + "messages": { + "de": "Freitag nach Christi Himmelfahrt", + "en_US": "Friday after Ascension Day", + "fr": "Vendredi suivant l'Ascension", + "nl": "Vrijdag na O. L. H. Hemelvaart", + "uk": "Пʼятниця після Вознесіння Господнього" + }, + "countries": [ + "BE" + ] + }, + { + "id": "friday_after_christmas_day", + "msgid": "Friday after Christmas Day", + "new_comment": "", + "comment": "Friday after Christmas Day.", + "messages": { + "en_US": "Friday after Christmas Day", + "gu": "નાતાલના દિવસ પછીનો શુક્રવાર", + "hi": "क्रिसमस के दिन के बाद का शुक्रवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "friday_after_independence_day", + "msgid": "Friday after Independence Day", + "new_comment": "", + "comment": "Friday after Independence Day.", + "messages": { + "en_US": "Friday after Independence Day", + "gu": "સ્વતંત્રતા દિવસ પછીનો શુક્રવાર", + "hi": "स्वतंत्रता दिवस के बाद का शुक्रवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "friday_after_thanksgiving", + "msgid": "Friday After Thanksgiving", + "new_comment": "", + "comment": "Friday After Thanksgiving.", + "messages": { + "en_US": "Friday After Thanksgiving", + "th": "ศุกร์หลังวันขอบคุณพระเจ้า" + }, + "countries": [ + "US" + ] + }, + { + "id": "friday_after_thanksgiving_day", + "msgid": "Friday after Thanksgiving Day", + "new_comment": "", + "comment": "Friday after Thanksgiving Day.", + "messages": { + "en_US": "Friday after Thanksgiving Day", + "gu": "થેંક્સગિવીંગ ડે પછીનો શુક્રવાર", + "hi": "थैंक्सगिविंग डे के बाद का शुक्रवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "friday_before_the_afl_grand_final", + "msgid": "Friday before the AFL Grand Final", + "new_comment": "", + "comment": "Friday before the AFL Grand Final.", + "messages": { + "en_AU": "Friday before the AFL Grand Final", + "en_US": "Friday before the AFL Grand Final", + "th": "วันศุกร์ก่อนวันแข่งฟุตบอลออสเตรเลีย (AFL) รอบสุดท้าย" + }, + "countries": [ + "AU" + ] + }, + { + "id": "fsm_veterans_of_foreign_wars_day", + "msgid": "FSM Veterans of Foreign Wars Day", + "new_comment": "", + "comment": "FSM Veterans of Foreign Wars Day.", + "messages": { + "en_FM": "FSM Veterans of Foreign Wars Day", + "en_US": "FSM Veterans of Foreign Wars Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "full_moon_day_of_kason", + "msgid": "Full Moon Day of Kason", + "new_comment": "", + "comment": "Full Moon Day of Kason.", + "messages": { + "en_US": "Full Moon Day of Kason", + "my": "ကဆုန်လပြည့်နေ့", + "th": "วันเพ็ญเดือนกะโซน" + }, + "countries": [ + "MM" + ] + }, + { + "id": "full_moon_day_of_tabaung", + "msgid": "Full Moon Day of Tabaung", + "new_comment": "", + "comment": "Full Moon Day of Tabaung.", + "messages": { + "en_US": "Full Moon Day of Tabaung", + "my": "တပေါင်းလပြည့်နေ့", + "th": "วันเพ็ญเดือนดะบ้อง" + }, + "countries": [ + "MM" + ] + }, + { + "id": "full_moon_day_of_tazaungmon", + "msgid": "Full Moon Day of Tazaungmon", + "new_comment": "", + "comment": "Full Moon Day of Tazaungmon.", + "messages": { + "en_US": "Full Moon Day of Tazaungmon", + "my": "တန်ဆောင်တိုင်လပြည့်နေ့", + "th": "วันเพ็ญเดือนดะซองโม่น" + }, + "countries": [ + "MM" + ] + }, + { + "id": "full_moon_day_of_waso", + "msgid": "Full Moon Day of Waso", + "new_comment": "", + "comment": "Full Moon Day of Waso.", + "messages": { + "en_US": "Full Moon Day of Waso", + "my": "ဝါဆိုလပြည့်နေ့", + "th": "วันเพ็ญเดือนวาโซ" + }, + "countries": [ + "MM" + ] + }, + { + "id": "fulpati", + "msgid": "Fulpati", + "new_comment": "", + "comment": "Fulpati.", + "messages": { + "en_US": "Fulpati", + "kn": "ಫುಲ್ಪಾತಿ", + "ne": "फुलपाती" + }, + "countries": [ + "NP" + ] + }, + { + "id": "funeral_ceremonies_of_fernando_la_sama_de_ara_jo", + "msgid": "Funeral Ceremonies of Fernando 'La Sama' de Araújo", + "new_comment": "", + "comment": "Funeral Ceremonies of Fernando 'La Sama' de Araújo.", + "messages": { + "en_TL": "Funeral Ceremonies of Fernando 'La Sama' de Araújo", + "en_US": "Funeral Ceremonies of Fernando 'La Sama' de Araújo", + "pt_TL": "Cerimónias Fúnebres de Fernando 'La Sama' de Araújo", + "tet": "Serimónia Fúnebre Fernando 'La Sama' de Araújo nian", + "th": "พิธีศพเฟอร์นันโด 'ลา ซามา' เด อาเราโฆ" + }, + "countries": [ + "TL" + ] + }, + { + "id": "funeral_of_former_nyse_president_seymour_l_cromwell", + "msgid": "Funeral of former NYSE president Seymour L. Cromwell", + "new_comment": "", + "comment": "Funeral of former NYSE president Seymour L. Cromwell.", + "messages": { + "en_US": "Funeral of former NYSE president Seymour L. Cromwell", + "gu": "ભૂતપૂર્વ NYSE પ્રમુખ સીમોર એલ. ક્રોમવેલના અંતિમ સંસ્કાર", + "hi": "पूर्व एनवाईएसई अध्यक्ष सेमोर एल. क्रॉमवेल का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_calvin_coolidge", + "msgid": "Funeral of former President Calvin Coolidge", + "new_comment": "", + "comment": "Funeral of former President Calvin Coolidge.", + "messages": { + "en_US": "Funeral of former President Calvin Coolidge", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ કેલ્વિન કુલિજના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति केल्विन कूलिज का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_dwight_d_eisenhower", + "msgid": "Funeral of former President Dwight D. Eisenhower", + "new_comment": "", + "comment": "Funeral of former President Dwight D. Eisenhower.", + "messages": { + "en_US": "Funeral of former President Dwight D. Eisenhower", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ ડ્વાઇટ ડી. આઇઝનહોવરના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति ड्वाइट डी. आइजनहावर का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_grover_cleveland", + "msgid": "Funeral of former President Grover Cleveland", + "new_comment": "", + "comment": "Funeral of former President Grover Cleveland.", + "messages": { + "en_US": "Funeral of former President Grover Cleveland", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ ગ્રોવર ક્લેવલેન્ડના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति ग्रोवर क्लीवलैंड का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_harry_s_truman", + "msgid": "Funeral of former President Harry S. Truman", + "new_comment": "", + "comment": "Funeral of former President Harry S. Truman.", + "messages": { + "en_US": "Funeral of former President Harry S. Truman", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ હેરી એસ. ટ્રુમેનના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति हैरी एस. ट्रूमैन का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_herbert_c_hoover", + "msgid": "Funeral of former President Herbert C. Hoover", + "new_comment": "", + "comment": "Funeral of former President Herbert C. Hoover.", + "messages": { + "en_US": "Funeral of former President Herbert C. Hoover", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ હર્બર્ટ સી. હૂવરના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति हर्बर्ट सी. हूवर का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_lyndon_b_johnson", + "msgid": "Funeral of former President Lyndon B. Johnson", + "new_comment": "", + "comment": "Funeral of former President Lyndon B. Johnson.", + "messages": { + "en_US": "Funeral of former President Lyndon B. Johnson", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ લિન્ડન બી. જોહ્ન્સનના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति लिंडन बी. जॉनसन का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_richard_m_nixon", + "msgid": "Funeral of former President Richard M. Nixon", + "new_comment": "", + "comment": "Funeral of former President Richard M. Nixon.", + "messages": { + "en_US": "Funeral of former President Richard M. Nixon", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ રિચાર્ડ એમ. નિક્સનના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति रिचर्ड एम. निक्सन का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_theodore_roosevelt", + "msgid": "Funeral of former President Theodore Roosevelt", + "new_comment": "", + "comment": "Funeral of former President Theodore Roosevelt.", + "messages": { + "en_US": "Funeral of former President Theodore Roosevelt", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ થિયોડોર રૂઝવેલ્ટના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति थियोडोर रूजवेल्ट का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_ulysses_s_grant", + "msgid": "Funeral of former President Ulysses S. Grant", + "new_comment": "", + "comment": "Funeral of former President Ulysses S. Grant.", + "messages": { + "en_US": "Funeral of former President Ulysses S. Grant", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ યુલિસિસ એસ. ગ્રાન્ટના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति यूलिसिस एस. ग्रांट का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_william_howard_taft", + "msgid": "Funeral of former President William Howard Taft", + "new_comment": "", + "comment": "Funeral of former President William Howard Taft.", + "messages": { + "en_US": "Funeral of former President William Howard Taft", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ વિલિયમ હોવર્ડ ટાફ્ટના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति विलियम हॉवर्ड टैफ्ट का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_former_president_woodrow_wilson", + "msgid": "Funeral of former President Woodrow Wilson", + "new_comment": "", + "comment": "Funeral of former President Woodrow Wilson.", + "messages": { + "en_US": "Funeral of former President Woodrow Wilson", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ વુડ્રો વિલ્સનના અંતિમ સંસ્કાર", + "hi": "पूर्व राष्ट्रपति वुडरो विल्सन का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_president_john_f_kennedy", + "msgid": "Funeral of President John F. Kennedy", + "new_comment": "", + "comment": "Funeral of President John F. Kennedy.", + "messages": { + "en_US": "Funeral of President John F. Kennedy", + "gu": "રાષ્ટ્રપતિ જોન એફ. કેનેડીના અંતિમ સંસ્કાર", + "hi": "राष्ट्रपति जॉन एफ. कैनेडी का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_president_warren_g_harding", + "msgid": "Funeral of President Warren G. Harding", + "new_comment": "", + "comment": "Funeral of President Warren G. Harding.", + "messages": { + "en_US": "Funeral of President Warren G. Harding", + "gu": "રાષ્ટ્રપતિ વોરેન જી. હાર્ડિંગના અંતિમ સંસ્કાર", + "hi": "राष्ट्रपति वारेन जी. हार्डिंग का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_president_william_mckinley", + "msgid": "Funeral of President William McKinley", + "new_comment": "", + "comment": "Funeral of President William McKinley.", + "messages": { + "en_US": "Funeral of President William McKinley", + "gu": "રાષ્ટ્રપતિ વિલિયમ મેકકિન્લીના અંતિમ સંસ્કાર", + "hi": "राष्ट्रपति विलियम मैककिनले का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_queen_elizabeth_ii", + "msgid": "Funeral of Her Majesty the Queen Elizabeth II", + "new_comment": "", + "comment": "Funeral of Queen Elizabeth II.", + "messages": { + "ar": "جنازة جلالة الملكة اليزابيث الثانية", + "en_CA": "Funeral of Her Majesty the Queen Elizabeth II", + "en_US": "Funeral of Her Majesty the Queen Elizabeth II", + "fr": "Funéraire de sa majesté la reine Elizabeth II", + "th": "พระราชพิธีพระบรมศพของสมเด็จพระราชินีนาถเอลิซาเบธที่ 2" + }, + "countries": [ + "CA" + ] + }, + { + "id": "funeral_of_queen_victoria_of_england", + "msgid": "Funeral of Queen Victoria of England", + "new_comment": "", + "comment": "Funeral of Queen Victoria of England.", + "messages": { + "en_US": "Funeral of Queen Victoria of England", + "gu": "ઇંગ્લેન્ડના મહારાણી વિક્ટોરિયાના અંતિમ સંસ્કાર", + "hi": "इंग्लैंड की महारानी विक्टोरिया का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_the_former_president_france_albert_ren", + "msgid": "Funeral of the Former President France Albert René", + "new_comment": "", + "comment": "Funeral of the Former President France Albert René.", + "messages": { + "en_SC": "Funeral of the Former President France Albert René", + "en_US": "Funeral of the Former President France Albert René" + }, + "countries": [ + "SC" + ] + }, + { + "id": "funeral_of_vice_president_garret_a_hobart", + "msgid": "Funeral of Vice-President Garret A. Hobart", + "new_comment": "", + "comment": "Funeral of Vice-President Garret A. Hobart.", + "messages": { + "en_US": "Funeral of Vice-President Garret A. Hobart", + "gu": "ઉપરાષ્ટ્રપતિ ગેરેટ એ. હોબાર્ટના અંતિમ સંસ્કાર", + "hi": "उपराष्ट्रपति गैरेट ए. होबार्ट का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "funeral_of_vice_president_james_s_sherman", + "msgid": "Funeral of Vice-President James S. Sherman", + "new_comment": "", + "comment": "Funeral of Vice-President James S. Sherman.", + "messages": { + "en_US": "Funeral of Vice-President James S. Sherman", + "gu": "ઉપરાષ્ટ્રપતિ જેમ્સ એસ. શેરમનના અંતિમ સંસ્કાર", + "hi": "उपराष्ट्रपति जेम्स एस. शेरमन का अंतिम संस्कार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "g20_leaders_summit", + "msgid": "G20 Leaders' Summit", + "new_comment": "", + "comment": "G20 Leaders' Summit.", + "messages": { + "en_US": "G20 Leaders' Summit", + "es": "Cumbre de Líderes del Grupo de los 20 (G20)", + "uk": "Саміт лідерів Групи двадцяти (G20)" + }, + "countries": [ + "AR" + ] + }, + { + "id": "gai_tihar", + "msgid": "Gai Tihar", + "new_comment": "", + "comment": "Gai Tihar.", + "messages": { + "en_US": "Gai Tihar", + "kn": "ಗೋ ತಿಹಾರ್", + "ne": "गाई तिहार" + }, + "countries": [ + "NP" + ] + }, + { + "id": "galician_literature_day", + "msgid": "Galician Literature Day", + "new_comment": "", + "comment": "Galician Literature Day.", + "messages": { + "ca": "Dia de les Lletres Gallegues", + "en_US": "Galician Literature Day", + "es": "Día de las Letras Gallegas", + "th": "วันวรรณกรรมกาลิเซีย", + "uk": "День галісійської літератури" + }, + "countries": [ + "ES" + ] + }, + { + "id": "galician_national_day", + "msgid": "Galician National Day", + "new_comment": "", + "comment": "Galician National Day.", + "messages": { + "ca": "Dia Nacional de Galícia", + "en_US": "Galician National Day", + "es": "Día Nacional de Galicia", + "th": "วันชาติกาลิเซีย", + "uk": "Національний день Галісії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "gandhi_jayanti", + "msgid": "Gandhi Jayanti", + "new_comment": "", + "comment": "Gandhi Jayanti.", + "messages": { + "en_IN": "Mahatma Gandhi Jayanti", + "en_US": "Gandhi Jayanti", + "gu": "મહાત્મા ગાંધી જયંતિ", + "hi": "महात्मा गांधी जयंती", + "mr": "महात्मा गांधी जयंती" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "ganesh_chaturthi", + "msgid": "Ganesh Chaturthi", + "new_comment": "", + "comment": "Ganesh Chaturthi.", + "messages": { + "bn": "গণেশ চতুর্থী", + "en_IN": "Ganesh Chaturthi", + "en_MU": "Ganesh Chaturthi", + "en_US": "Ganesh Chaturthi", + "gu": "ગણેશ ચતુર્થી", + "hi": "गणेश चतुर्थी", + "kn": "ಗಣೇಶ ಚತುರ್ಥಿ", + "ml": "ഗണേശ ചതുർത്ഥി", + "mr": "गणेश चतुर्थी", + "pa": "ਵਿਨਾਇਕ ਚਤੁਰਥੀ", + "ta": "கணேஷ் சதுர்த்தி", + "te": "గణేశ చవితి" + }, + "countries": [ + "IN", + "MU", + "XNSE" + ] + }, + { + "id": "ganesh_chaturthi_vinayak_chaturthi", + "msgid": "Ganesh Chaturthi / Vinayak Chaturthi", + "new_comment": "", + "comment": "Ganesh Chaturthi / Vinayak Chaturthi.", + "messages": { + "bn": "গণেশ চতুর্থী / বিনায়ক চতুর্থী", + "en_IN": "Ganesh Chaturthi / Vinayak Chaturthi", + "en_US": "Ganesh Chaturthi / Vinayak Chaturthi", + "gu": "ગણેશ ચતુર્થી / વિનાયક ચતુર્થી", + "hi": "गणेश चतुर्थी / विनायक चतुर्थी", + "kn": "ಗಣೇಶ ಚತುರ್ಥಿ / ವಿನಾಯಕ ಚತುರ್ಥಿ", + "ml": "ഗണേശ ചതുർത്ഥി / വിനായക ചതുർത്ഥി", + "mr": "गणेश चतुर्थी / विनायक चतुर्थी", + "pa": "ਗਣੇਸ਼ ਚਤੁਰਥੀ / ਵਿਨਾਇਕ ਚਤੁਰਥੀ", + "ta": "விநாயகர் சதுர்த்தி / விநாயக சதுர்த்தி", + "te": "గణేశ చవితి / వినాయక చవితి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "gaucho_day", + "msgid": "Gaucho Day", + "new_comment": "", + "comment": "Gaucho Day.", + "messages": { + "en_US": "Gaucho Day", + "pt_BR": "Dia do Gaúcho", + "uk": "День Гаучо" + }, + "countries": [ + "BR" + ] + }, + { + "id": "general_election_additional_holiday", + "msgid": "General election additional holiday", + "new_comment": "", + "comment": "General election additional holiday.", + "messages": { + "en_US": "General election additional holiday", + "ms_MY": "Cuti Peristiwa (pilihan raya umum)", + "th": "วันหยุดพิเศษ (การเลือกตั้งทั่วไป)" + }, + "countries": [ + "MY" + ] + }, + { + "id": "general_election_day", + "msgid": "General Election Day", + "new_comment": "", + "comment": "General Election Day.", + "messages": { + "en_GB": "General Election Day", + "en_NA": "General Election Day", + "en_SC": "General Election Day", + "en_US": "General Election Day", + "id": "Hari Pemilihan Umum", + "pt_AO": "Dia de eleições gerais", + "th": "วันเลือกตั้งทั่วไป", + "uk": "День загальних виборів" + }, + "countries": [ + "AO", + "ID", + "KY", + "NA", + "SC" + ] + }, + { + "id": "general_prayer_day", + "msgid": "General Prayer Day", + "new_comment": "", + "comment": "General Prayer Day.", + "messages": { + "en_US": "General Prayer Day", + "fr": "Journée de prière générale" + }, + "countries": [ + "CF" + ] + }, + { + "id": "genevan_fast", + "msgid": "Genevan Fast", + "new_comment": "", + "comment": "Genevan Fast.", + "messages": { + "de": "Genfer Bettag", + "en_US": "Genevan Fast", + "fr": "Jeûne genevois", + "it": "Digiuno ginevrino", + "th": "วันถือศีลอดเจนีวา", + "uk": "Женевський піст" + }, + "countries": [ + "CH" + ] + }, + { + "id": "genghis_khan_s_birthday", + "msgid": "Genghis Khan's Birthday", + "new_comment": "", + "comment": "Genghis Khan's Birthday.", + "messages": { + "en_US": "Genghis Khan's Birthday", + "mn": "Их Эзэн Чингис хааны өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "genocide_remembrance_day", + "msgid": "Genocide Remembrance Day", + "new_comment": "", + "comment": "Genocide Remembrance Day.", + "messages": { + "en_NA": "Genocide Remembrance Day", + "en_US": "Genocide Remembrance Day", + "uk": "День памʼяті жертв геноциду" + }, + "countries": [ + "NA" + ] + }, + { + "id": "george_town_heritage_day", + "msgid": "George Town Heritage Day", + "new_comment": "", + "comment": "George Town Heritage Day.", + "messages": { + "en_US": "George Town Heritage Day", + "ms_MY": "Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia", + "th": "วันครบรอบการประกาศจอร์จทาวน์เป็นมรดกโลก" + }, + "countries": [ + "MY" + ] + }, + { + "id": "george_washington_day", + "msgid": "George Washington Day", + "new_comment": "", + "comment": "George Washington Day.", + "messages": { + "en_US": "George Washington Day", + "th": "วันจอร์จ วอชิงตัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "george_washington_day_presidents_day_and_the_day_of_the_hero_and_the_illustrious_woman_of_puerto_rico", + "msgid": "George Washington Day, Presidents' Day, and the Day of the Hero and the Illustrious Woman of Puerto Rico", + "new_comment": "", + "comment": "George Washington Day, Presidents' Day, and the Day of the Hero and the Illustrious Woman of\nPuerto Rico.", + "messages": { + "en_US": "George Washington Day, Presidents' Day, and the Day of the Hero and the Illustrious Woman of Puerto Rico", + "th": "วันจอร์จ วอชิงตัน, วันประธานาธิบดี และวันวีรบุรุษและสตรีผู้ทรงเกียรติแห่งเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "george_washington_day_presidents_day_and_the_day_of_the_women_and_men_heroes_of_puerto_rico", + "msgid": "George Washington Day, Presidents' Day, and the Day of the Women and Men Heroes of Puerto Rico", + "new_comment": "", + "comment": "George Washington Day, Presidents' Day, and the Day of the Women and Men Heroes of Puerto Rico.", + "messages": { + "en_US": "George Washington Day, Presidents' Day, and the Day of the Women and Men Heroes of Puerto Rico", + "th": "วันจอร์จ วอชิงตัน, วันประธานาธิบดี และวันวีรบุรุษและวีรสตรีแห่งเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "george_washington_day_presidents_day_and_the_puerto_rican_heroes_day", + "msgid": "George Washington Day, Presidents' Day, and the Puerto Rican Heroes Day", + "new_comment": "", + "comment": "George Washington Day, Presidents' Day, and the Puerto Rican Heroes Day.", + "messages": { + "en_US": "George Washington Day, Presidents' Day, and the Puerto Rican Heroes Day", + "th": "วันจอร์จ วอชิงตัน, วันประธานาธิบดี และวันวีรบุรุษเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "george_washington_s_birthday_and_daisy_gatson_bates_day", + "msgid": "George Washington's Birthday and Daisy Gatson Bates Day", + "new_comment": "", + "comment": "George Washington's Birthday and Daisy Gatson Bates Day.", + "messages": { + "en_US": "George Washington's Birthday and Daisy Gatson Bates Day", + "th": "วันเกิดจอร์จ วอชิงตันและวันเดซี่ แกตสัน เบตส์" + }, + "countries": [ + "US" + ] + }, + { + "id": "george_washington_thomas_jefferson_s_birthday", + "msgid": "George Washington & Thomas Jefferson's Birthday", + "new_comment": "", + "comment": "George Washington & Thomas Jefferson's Birthday.", + "messages": { + "en_US": "George Washington & Thomas Jefferson's Birthday", + "th": "วันเกิดจอร์จ วอชิงตัน และทอมัส เจฟเฟอร์สัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "german_unity_day", + "msgid": "German Unity Day", + "new_comment": "", + "comment": "German Unity Day.", + "messages": { + "de": "Tag der Deutschen Einheit", + "en_US": "German Unity Day", + "th": "วันรวมชาติเยอรมัน", + "uk": "День німецької єдності" + }, + "countries": [ + "DE", + "XETR" + ] + }, + { + "id": "ghatasthapana", + "msgid": "Ghatasthapana", + "new_comment": "", + "comment": "Ghatasthapana.", + "messages": { + "en_US": "Ghatasthapana", + "kn": "ಘಟಸ್ಥಾಪನಾ", + "ne": "घटस्थापना" + }, + "countries": [ + "NP" + ] + }, + { + "id": "gibraltar_national_day", + "msgid": "Gibraltar National Day", + "new_comment": "", + "comment": "Gibraltar National Day.", + "messages": { + "en_GB": "Gibraltar National Day", + "en_US": "Gibraltar National Day" + }, + "countries": [ + "GI" + ] + }, + { + "id": "glorifying_of_the_mother_of_god", + "msgid": "Glorifying Mother of God", + "new_comment": "", + "comment": "Glorifying of the Mother of God.", + "messages": { + "el": "Σύναξη της Υπεραγίας Θεοτόκου", + "en_US": "Glorifying Mother of God", + "uk": "Собор Пресвятої Богородиці" + }, + "countries": [ + "GR" + ] + }, + { + "id": "glorious_july_revolution_day", + "msgid": "Glorious July Revolution Day", + "new_comment": "", + "comment": "Glorious July Revolution Day.", + "messages": { + "ar": "عيد ثورة يوليو المجيدة", + "en_US": "Glorious July Revolution Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "goa_liberation_day", + "msgid": "Goa Liberation Day", + "new_comment": "", + "comment": "Goa Liberation Day.", + "messages": { + "bn": "গোয়া মুক্তি দিবস", + "en_IN": "Goa Liberation Day", + "en_US": "Goa Liberation Day", + "gu": "ગોવા મુક્તિ દિવસ", + "hi": "गोवा मुक्ति दिवस", + "kn": "ಗೋವಾ ವಿಮೋಚನ ದಿನೋತ್ಸವ", + "ml": "ഗോവ മോചനദിനം", + "mr": "गोवा मुक्ती दिन", + "pa": "ਗੋਆ ਮੁਕਤੀ ਦਿਵਸ", + "ta": "கோவா விடுதலை நாள்", + "te": "గోవా విమోచన దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "gobardhan_pooja", + "msgid": "Gobardhan Pooja", + "new_comment": "", + "comment": "Gobardhan Pooja.", + "messages": { + "en_US": "Gobardhan Pooja", + "kn": "ಗೋವರ್ಧನ ಪೂಜೆ", + "ne": "गोवर्धन पूजा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "golden_jubilee", + "msgid": "Golden Jubilee", + "new_comment": "", + "comment": "Golden Jubilee.", + "messages": { + "en_GB": "Golden Jubilee", + "en_US": "Golden Jubilee", + "tvl": "Te Po o Tefolaha" + }, + "countries": [ + "TV" + ] + }, + { + "id": "golden_jubilee_of_elizabeth_ii", + "msgid": "Golden Jubilee of Elizabeth II", + "new_comment": "", + "comment": "Golden Jubilee of Elizabeth II.", + "messages": { + "en_GB": "Golden Jubilee of Elizabeth II", + "en_US": "Golden Jubilee of Elizabeth II", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 50 ปี สมเด็จพระราชินีนาถ" + }, + "countries": [ + "GB" + ] + }, + { + "id": "good_friday", + "msgid": "Good Friday", + "new_comment": "", + "comment": "Good Friday.", + "messages": { + "am": "የስቅለት በዓል", + "ar": { + "CA": "الجمعة العظيمة", + "ET": "الجمعة العظيمة (سقلَت)", + "PS": "الجمعة العظيمة", + "XTSE": "الجمعة العظيمة" + }, + "bg": "Велики петък", + "bn": "গুড ফ্রাইডে", + "ca": "Divendres Sant", + "cnr": "Veliki petak", + "coa_CC": "Jumat Agung", + "cs": "Velký pátek", + "da": "Langfredag", + "de": "Karfreitag", + "el": "Μεγάλη Παρασκευή", + "en_AI": "Good Friday", + "en_AU": "Good Friday", + "en_BM": "Good Friday", + "en_BQ": "Good Friday", + "en_CA": "Good Friday", + "en_CC": "Good Friday", + "en_CK": "Good Friday", + "en_CX": "Good Friday", + "en_CY": "Good Friday", + "en_ET": "Good Friday", + "en_FM": "Good Friday", + "en_GB": "Good Friday", + "en_GD": "Good Friday", + "en_GM": "Good Friday", + "en_GS": "Good Friday", + "en_GY": "Good Friday", + "en_HK": "Good Friday", + "en_IN": "Good Friday", + "en_KE": "Good Friday", + "en_LC": "Good Friday", + "en_MO": "Good Friday", + "en_MS": "Good Friday", + "en_NA": "Good Friday", + "en_NF": "Good Friday", + "en_NG": "Good Friday", + "en_NR": "Good Friday", + "en_NU": "Good Friday", + "en_PH": "Good Friday", + "en_SC": "Good Friday", + "en_SG": "Good Friday", + "en_SL": "Good Friday", + "en_TC": "Good Friday", + "en_TK": "Good Friday", + "en_TL": "Holy Friday", + "en_TT": "Good Friday", + "en_US": "Good Friday", + "en_VC": "Good Friday", + "en_VG": "Good Friday", + "es": "Viernes Santo", + "et": "suur reede", + "fi": "Pitkäperjantai", + "fil": "Biyernes Santo", + "fo": "Langifríggjadagur", + "fr": { + "BE": "Vendredi Saint", + "CA": "Vendredi saint", + "CH": "Vendredi saint", + "CV": "Vendredi Saint", + "FR": "Vendredi saint", + "LU": "Vendredi Saint", + "RW": "Vendredi Saint", + "XTSE": "Vendredi saint" + }, + "fr_HT": "Vendredi Saint", + "fy": "Goedfreed", + "gu": { + "IN": "ગુડ ફ્રાઈડે", + "XCME": "ગુડ ફ્રાઇડે", + "XNSE": "ગુડ ફ્રાઇડે", + "XNYS": "ગુડ ફ્રાઇડે" + }, + "hi": "गुड फ्राइडे", + "ht": "Vandredi Sen", + "hu": "Nagypéntek", + "id": "Wafat Yesus Kristus", + "is": "Föstudagurinn langi", + "it": "Venerdì Santo", + "it_IT": "Venerdì santo", + "ka": "წითელი პარასკევი", + "kl": "Tallimanngorneq tannaartoq", + "kn": "ಗುಡ್ ಫ್ರೈಡೆ", + "lb": "Karfreideg", + "lv": "Lielā Piektdiena", + "mk": "Велики Петок", + "ml": "ദുഃഖവെള്ളി", + "mr": "गुड फ्रायडे", + "ms_MY": "Good Friday", + "mt": "Il-Ġimgħa l-Kbira", + "nl": "Goede vrijdag", + "no": "Langfredag", + "pa": "ਗੁੱਡ ਫਰਾਈਡੇ", + "pap_AW": "Bierna Santo", + "pap_BQ": "Bièrnèsantu", + "pap_CW": "Bièrnèsantu", + "pt_AO": "Sexta-Feira Santa", + "pt_BR": "Sexta-feira Santa", + "pt_CV": "Sexta-feira Santa", + "pt_MO": "Sexta-Feira Santa", + "pt_PT": "Sexta-feira Santa", + "pt_TL": "Sexta-Feira Santa", + "ro": "Vinerea Mare", + "ru": "Страстная пятница", + "rw": "Umunsi wa Gatanu Mutagatifu", + "si_LK": "මහ සිකුරාදා දිනය", + "sk": "Veľký piatok", + "sr": "Велики петак", + "sv": "Långfredagen", + "sv_FI": "Långfredagen", + "sw": "Ijumaa Kuu", + "ta": "புனித வெள்ளி", + "ta_LK": "பெரிய வெள்ளிக்கிழமை", + "te": "గుడ్ ఫ్రైడే", + "tet": "Sesta-Feira Santa", + "th": "วันศุกร์ประเสริฐ", + "tkl": "Ahofalaile Lelei", + "to": "Falaite Lelei", + "tvl": "Aso toe tu", + "uk": "Страсна пʼятниця", + "zh_CN": { + "HK": "耶稣受难节", + "MO": "圣周星期五" + }, + "zh_HK": "耶穌受難節", + "zh_MO": "聖周星期五" + }, + "countries": [ + "AD", + "AI", + "AO", + "AR", + "AT", + "AU", + "AW", + "BE", + "BG", + "BM", + "BO", + "BQ", + "BR", + "BVMF", + "CA", + "CC", + "CH", + "CK", + "CL", + "CO", + "CR", + "CU", + "CV", + "CW", + "CX", + "CY", + "CZ", + "DE", + "DK", + "DO", + "EC", + "EE", + "ES", + "ET", + "FI", + "FK", + "FM", + "FO", + "FR", + "GB", + "GD", + "GE", + "GI", + "GL", + "GM", + "GQ", + "GR", + "GS", + "GT", + "GY", + "HK", + "HN", + "HT", + "HU", + "ID", + "IN", + "IS", + "IT", + "KE", + "KY", + "LC", + "LI", + "LK", + "LU", + "LV", + "ME", + "MK", + "MO", + "MS", + "MT", + "MY", + "NA", + "NF", + "NG", + "NI", + "NL", + "NO", + "NR", + "NU", + "PA", + "PE", + "PH", + "PS", + "PT", + "PY", + "RO", + "RS", + "RW", + "SC", + "SE", + "SG", + "SH", + "SK", + "SL", + "SR", + "SV", + "SX", + "TC", + "TK", + "TL", + "TO", + "TT", + "TV", + "TZ", + "US", + "VA", + "VC", + "VE", + "VG", + "XCME", + "XETR", + "XMAD", + "XMEX", + "XNSE", + "XNYS", + "XTSE" + ] + }, + { + "id": "gospel_day", + "msgid": "Gospel Day", + "new_comment": "", + "comment": "Gospel Day.", + "messages": { + "en_FM": "Gospel Day", + "en_GB": "Gospel Day", + "en_US": "Gospel Day", + "tvl": "Te Aso o te Tala Lei" + }, + "countries": [ + "FM", + "TV" + ] + }, + { + "id": "govardhan_puja", + "msgid": "Govardhan Puja", + "new_comment": "", + "comment": "Govardhan Puja.", + "messages": { + "bn": "গোবর্ধন পূজা", + "en_IN": "Govardhan Puja", + "en_US": "Govardhan Puja", + "gu": "ગોવર્ધન પૂજા", + "hi": "गोवर्धन पूजा", + "kn": "ಗೋವರ್ಧನ ಪೂಜೆ", + "ml": "ഗോവർധന പൂജ", + "mr": "गोवर्धन पूजा", + "pa": "ਗੋਵਰਧਨ ਪੂਜਾ", + "ta": "கோவர்தன் பூஜை", + "te": "గోవర్ధన పూజ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "government_holiday", + "msgid": "Government Holiday", + "new_comment": "", + "comment": "Government Holiday.", + "messages": { + "en_GB": "Government Holiday", + "en_US": "Government Holiday" + }, + "countries": [ + "FK" + ] + }, + { + "id": "gr_o_par_joining_to_independence_of_brazil", + "msgid": "Grão-Pará joining to independence of Brazil", + "new_comment": "", + "comment": "Grão-Pará joining to independence of Brazil.", + "messages": { + "en_US": "Grão-Pará joining to independence of Brazil", + "pt_BR": "Adesão do Grão-Pará à independência do Brasil", + "uk": "День приєдання Гран-Пара до незалежності Бразилії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "grand_magal_of_touba", + "msgid": "Grand Magal of Touba", + "new_comment": "", + "comment": "Grand Magal of Touba.", + "messages": { + "en_US": "Grand Magal of Touba", + "fr_SN": "Grand Magal de Touba" + }, + "countries": [ + "SN" + ] + }, + { + "id": "grant_s_birthday", + "msgid": "Grant's Birthday", + "new_comment": "", + "comment": "Grant's Birthday.", + "messages": { + "en_US": "Grant's Birthday", + "gu": "ગ્રાન્ટનો જન્મદિવસ", + "hi": "ग्रांट का जन्मदिन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "great_al_fateh_revolution_day", + "msgid": "Great Al-Fateh Revolution Day", + "new_comment": "", + "comment": "Great Al-Fateh Revolution Day.", + "messages": { + "ar": "عيد الفاتح العظيم", + "en_US": "Great Al-Fateh Revolution Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "great_day_of_jujuy", + "msgid": "Great Day of Jujuy", + "new_comment": "", + "comment": "Great Day of Jujuy.", + "messages": { + "en_US": "Great Day of Jujuy", + "es": "Día Grande de Jujuy", + "uk": "Великий День Хухуя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "great_day_of_prayers", + "msgid": "Great Prayer Day", + "new_comment": "", + "comment": "Great Day of Prayers.", + "messages": { + "da": "Store bededag", + "en_US": "Great Prayer Day", + "th": "วันแห่งการอธิษฐานใหญ่", + "uk": "День загальної молитви" + }, + "countries": [ + "DK" + ] + }, + { + "id": "great_feast", + "msgid": "Great Feast", + "new_comment": "", + "comment": "Great Feast.", + "messages": { + "ar": "يوما عيد البنجة", + "en_US": "Great Feast" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "great_military_parade_day", + "msgid": "Great Military Parade Day", + "new_comment": "", + "comment": "Great Military Parade Day.", + "messages": { + "en_US": "Great Military Parade Day", + "es": "Día de la Gran Parada Militar", + "uk": "День Великого військового параду" + }, + "countries": [ + "PE" + ] + }, + { + "id": "great_october_socialist_revolution_day", + "msgid": "Great October Socialist Revolution Day", + "new_comment": "", + "comment": "Great October Socialist Revolution Day.", + "messages": { + "en_US": "Great October Socialist Revolution Day", + "hu": "A nagy októberi szocialista forradalom ünnepe", + "uk": "День Великої Жовтневої соціалістичної революції" + }, + "countries": [ + "HU" + ] + }, + { + "id": "great_prayer_day", + "msgid": "Great Prayer Day", + "new_comment": "", + "comment": "Great Prayer Day.", + "messages": { + "da": "Store bededag", + "en_US": "Great Prayer Day", + "fi": "Suuri rukouspäivä", + "fo": "Dýri biðidagur", + "is": "Kóngsbænadagur", + "kl": "Ulloq qinuffiusoq", + "no": "Store bededag", + "sv": "Stora bönedagen", + "uk": "День загальної молитви" + }, + "countries": [ + "FO", + "GL" + ] + }, + { + "id": "greek_independence_day", + "msgid": "Greek Independence Day", + "new_comment": "", + "comment": "Greek Independence Day.", + "messages": { + "el": "Ημέρα της Ελληνικής Ανεξαρτησίας", + "en_CY": "Greek Independence Day", + "en_US": "Greek Independence Day", + "uk": "День незалежності Греції" + }, + "countries": [ + "CY" + ] + }, + { + "id": "green_march", + "msgid": "Green March", + "new_comment": "", + "comment": "Green March.", + "messages": { + "ar": "ذكرى المسيرة الخضراء", + "en_US": "Green March", + "fr": "La marche verte" + }, + "countries": [ + "MA" + ] + }, + { + "id": "green_monday", + "msgid": "Green Monday", + "new_comment": "", + "comment": "Green Monday.", + "messages": { + "el": "Καθαρά Δευτέρα", + "en_CY": "Green Monday", + "en_US": "Green Monday", + "uk": "Чистий понеділок" + }, + "countries": [ + "CY", + "GR" + ] + }, + { + "id": "greenery_day", + "msgid": "Greenery Day", + "new_comment": "", + "comment": "Greenery Day.", + "messages": { + "en_US": "Greenery Day", + "ja": "みどりの日", + "th": "วันพฤกษชาติ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "gregorian_easter_sunday", + "msgid": "Gregorian Easter Sunday", + "new_comment": "", + "comment": "Gregorian Easter Sunday.", + "messages": { + "ar": "عيد الفصح حسب التقويم الغربي", + "en_US": "Gregorian Easter Sunday" + }, + "countries": [ + "SY" + ] + }, + { + "id": "groundhog_day", + "msgid": "Groundhog Day", + "new_comment": "", + "comment": "Groundhog Day.", + "messages": { + "en_US": "Groundhog Day", + "th": "วันกราวน์ฮ็อก" + }, + "countries": [ + "US" + ] + }, + { + "id": "guam_discovery_day", + "msgid": "Guam Discovery Day", + "new_comment": "", + "comment": "Guam Discovery Day.", + "messages": { + "en_US": "Guam Discovery Day", + "th": "วันค้นพบกวม" + }, + "countries": [ + "US" + ] + }, + { + "id": "gudi_padwa", + "msgid": "Gudi Padwa", + "new_comment": "", + "comment": "Gudi Padwa.", + "messages": { + "bn": "গুড়ি পাড়ওয়া", + "en_IN": "Gudi Padwa", + "en_US": "Gudi Padwa", + "gu": "ગુડી પડવો", + "hi": "गुडी पाडवा", + "kn": "ಗುಡಿ ಪಾಡ್ವ", + "ml": "ഗുഡി പദ്വ", + "mr": "गुढीपाडवा", + "pa": "ਗੁੜੀ ਪਦਵਾ", + "ta": "குடி பாத்வா", + "te": "గుడి పడ్వా" + }, + "countries": [ + "IN" + ] + }, + { + "id": "gujarat_day", + "msgid": "Gujarat Day", + "new_comment": "", + "comment": "Gujarat Day.", + "messages": { + "bn": "গুজরাট দিবস", + "en_IN": "Gujarat Day", + "en_US": "Gujarat Day", + "gu": "ગુજરાત સ્થાપના દિવસ", + "hi": "गुजरात दिवस", + "kn": "ಗುಜರಾತ್ ದಿನೋತ್ಸವ", + "ml": "ഗുജറാത്ത് ദിനം", + "mr": "गुजरात दिन", + "pa": "ਗੁਜਰਾਤ ਦਿਵਸ", + "ta": "குஜராத் நாள்", + "te": "గుజరాత్ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "gujarati_new_year", + "msgid": "Gujarati New Year", + "new_comment": "", + "comment": "Gujarati New Year.", + "messages": { + "bn": "গুজরাটি নববর্ষ", + "en_IN": "Vikram Samvat New Year", + "en_US": "Gujarati New Year", + "gu": "વિક્રમ સંવત નૂતન વર્ષ", + "hi": "गुजराती नव वर्ष", + "kn": "ಗುಜರಾತಿ ಹೊಸ ವರ್ಷ", + "ml": "ഗുജറാത്തി പുതുവർഷം", + "mr": "गुजराती नववर्ष", + "pa": "ਗੁਜਰਾਤੀ ਨਵਾਂ ਸਾਲ", + "ta": "குஜராத்தி புத்தாண்டு", + "te": "గుజరాతీ నూతన సంవత్సరం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_arjun_dev_s_martyrdom_day", + "msgid": "Guru Arjun Dev's Martyrdom Day", + "new_comment": "", + "comment": "Guru Arjun Dev's Martyrdom Day.", + "messages": { + "bn": "গুরু অর্জুন দেবের শহীদ দিবস", + "en_IN": "Guru Arjun Dev's Shaheedi Diwas", + "en_US": "Guru Arjun Dev's Martyrdom Day", + "gu": "ગુરુ અર્જન દેવ શહીદી દિવસ", + "hi": "गुरु अर्जन देव शहीदी दिवस", + "kn": "ಗುರು ಅರ್ಜನ್ ದೇವ್ ಶಹೀದಿ ದಿನ", + "ml": "ഗുരു അർജൻ ദേവ് ശഹീദ് ദിനം", + "mr": "गुरु अर्जन देव शहीद दिन", + "pa": "ਸ਼੍ਰੀ ਗੁਰੂ ਅਰਜਨ ਦੇਵ ਜੀ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "குரு அர்ஜன் தேவ் ஷஹீதி தினம்", + "te": "గురు అర్జున్ దేవ్ షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_gobind_singh_s_birthday", + "msgid": "Guru Gobind Singh's Birthday", + "new_comment": "", + "comment": "Guru Gobind Singh's Birthday.", + "messages": { + "bn": "গুরু গোবিন্দ সিং এর জন্মদিন", + "en_IN": "Guru Gobind Singh's Jayanti", + "en_US": "Guru Gobind Singh's Birthday", + "gu": "ગુરુ ગોવિંદ સિંહનો જન્મદિવસ", + "hi": "गुरु गोविंद सिंह का जन्मदिन", + "kn": "ಗುರು ಗೋವಿಂದ ಸಿಂಗ್ ಅವರ ಜನ್ಮದಿನ", + "ml": "ഗുരു ഗോബിന്ദ് സിംഗിന്റെ ജന്മദിനം", + "mr": "गुरु गोबिंद सिंग यांचा वाढदिवस", + "pa": "ਗੁਰੂ ਗੋਬਿੰਦ ਸਿੰਘ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "குரு கோவிந்த் சிங்கின் பிறந்தநாள்", + "te": "గురు గోవింద్ సింగ్ పుట్టినరోజు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_nabha_dass_s_birthday", + "msgid": "Guru Nabha Dass's Birthday", + "new_comment": "", + "comment": "Guru Nabha Dass's Birthday.", + "messages": { + "bn": "গুরু নাভা দাসের জন্মজয়ন্তী", + "en_IN": "Guru Nabha Dass's Jayanti", + "en_US": "Guru Nabha Dass's Birthday", + "gu": "ગુરુ નાભા દાસ જયંતિ", + "hi": "गुरु नाभा दास जयंती", + "kn": "ಗುರು ನಾಭಾ ದಾಸ್ ಜಯಂತಿ", + "ml": "ഗുരു നാഭാ ദാസ് ജയന്തി", + "mr": "गुरु नाभा दास जयंती", + "pa": "ਗੁਰੂ ਨਾਭਾ ਦਾਸ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "குரு நாபா தாஸ் ஜெயந்தி", + "te": "గురు నాభా దాస్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_nanak_jayanti", + "msgid": "Guru Nanak Jayanti", + "new_comment": "", + "comment": "Guru Nanak Jayanti.", + "messages": { + "en_IN": "Guru Nanak Jayanti", + "en_US": "Guru Nanak Jayanti", + "gu": "ગુરુ નાનક જયંતિ", + "hi": "गुरु नानक जयंती", + "mr": "गुरुनानक जयंती" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "guru_nanak_s_birthday", + "msgid": "Guru Nanak's Birthday", + "new_comment": "", + "comment": "Guru Nanak's Birthday.", + "messages": { + "bn": "গুরু নানক জয়ন্তী", + "en_IN": "Guru Nanak's Jayanti", + "en_US": "Guru Nanak's Birthday", + "gu": "ગુરુ નાનક જયંતિ", + "hi": "गुरु नानक जयंती", + "kn": "ಗುರು ನಾನಕ್ ಜಯಂತಿ", + "ml": "ഗുരു നാനക് ജയന്തി", + "mr": "गुरुनानक जयंती", + "pa": "ਗੁਰਪੁਰਬ ਸਾਹਿਬ ਸ੍ਰੀ ਗੁਰੂ ਨਾਨਕ ਦੇਵ ਜੀ", + "ta": "குரு நானக் ஜெயந்தி", + "te": "గురునానక్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_rabindranath_s_birthday", + "msgid": "Guru Rabindranath's Birthday", + "new_comment": "", + "comment": "Guru Rabindranath's Birthday.", + "messages": { + "bn": "গুরু রবীন্দ্রনাথের জয়ন্তী", + "en_IN": "Guru Rabindranath's Jayanti", + "en_US": "Guru Rabindranath's Birthday", + "gu": "ગુરુ રવીન્દ્રનાથ જયંતિ", + "hi": "गुरु रवींद्रनाथ जयंती", + "kn": "ಗುರು ರವೀಂದ್ರನಾಥ್ ಜಯಂತಿ", + "ml": "ഗുരു രവീന്ദ്രനാഥ് ജയന്തി", + "mr": "गुरु रवींद्रनाथ जयंती", + "pa": "ਗੁਰੂ ਰਬਿੰਦਰਨਾਥ ਜਯੰਤੀ", + "ta": "குரு ரவீந்திரநாத் ஜெயந்தி", + "te": "గురు రవీంద్రనాథ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_ravi_das_s_birthday", + "msgid": "Guru Ravi Das's Birthday", + "new_comment": "", + "comment": "Guru Ravi Das's Birthday.", + "messages": { + "bn": "গুরু রবি দাসের জন্মদিন", + "en_IN": "Guru Ravi Das's Jayanti", + "en_US": "Guru Ravi Das's Birthday", + "gu": "ગુરુ રવિદાસનો જન્મદિવસ", + "hi": "गुरु रवि दास का जन्मदिन", + "kn": "ಗುರು ರವಿದಾಸರ ಜನ್ಮದಿನ", + "ml": "ഗുരു രവി ദാസിന്റെ ജന്മദിനം", + "mr": "गुरु रविदास जयंती", + "pa": "ਗੁਰੂ ਰਵਿਦਾਸ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "குரு ரவி தாஸின் பிறந்தநாள்", + "te": "గురు రవిదాస్ పుట్టినరోజు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "guru_tegh_bahadur_s_martyrdom_day", + "msgid": "Guru Tegh Bahadur's Martyrdom Day", + "new_comment": "", + "comment": "Guru Tegh Bahadur's Martyrdom Day.", + "messages": { + "bn": "গুরু তেগ বাহাদুরের শাহাদত দিবস", + "en_IN": "Guru Tegh Bahadur's Shaheedi Diwas", + "en_US": "Guru Tegh Bahadur's Martyrdom Day", + "gu": "ગુરુ તેગ બહાદુરનો શહીદ દિવસ", + "hi": "गुरु तेग बहादुर का शहीदी दिवस", + "kn": "ಗುರು ತೇಜ್ ಬಹದ್ದೂರ್ ಅವರ ಹುತಾತ್ಮ ದಿನ", + "ml": "ഗുരു തേജ് ബഹാദൂറിൻ്റെ രക്തസാക്ഷിത്വ ദിനം", + "mr": "गुरु तेग बहादूर यांचा हुतात्मा दिन", + "pa": "ਗੁਰੂ ਤੇਗ ਬਹਾਦਰ ਜੀ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "குரு தேக் பகதூர் தியாகி தினம்", + "te": "గురు తేగ్ బహదూర్ అమరవీర దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "gyalpo_lhosar", + "msgid": "Gyalpo Lhosar", + "new_comment": "", + "comment": "Gyalpo Lhosar.", + "messages": { + "en_US": "Gyalpo Lhosar", + "kn": "ಗ್ಯಾಲ್ಪೊ ಲ್ಹೋಸಾರ್", + "ne": "ग्याल्पो ल्होसार" + }, + "countries": [ + "NP" + ] + }, + { + "id": "half_day_special_bank_holiday", + "msgid": "Half-Day Special Bank Holiday", + "new_comment": "", + "comment": "Half-Day Special Bank Holiday.", + "messages": { + "en_US": "Half-Day Special Bank Holiday", + "si_LK": "දින භාගයක විශේෂ බැංකු නිවාඩු දිනය", + "ta_LK": "அரை நாள் விசேட வங்கி விடுமுறை" + }, + "countries": [ + "LK" + ] + }, + { + "id": "halloween", + "msgid": "Halloween", + "new_comment": "", + "comment": "Halloween.", + "messages": { + "en_US": "Halloween", + "th": "วันฮาโลวีน" + }, + "countries": [ + "US" + ] + }, + { + "id": "hangul_day", + "msgid": "Hangul Day", + "new_comment": "", + "comment": "Hangul Day.", + "messages": { + "en_US": "Hangul Day", + "ko": "한글날", + "th": "วันฮันกึล" + }, + "countries": [ + "KR" + ] + }, + { + "id": "hanshi_festival", + "msgid": "Hanshi Festival", + "new_comment": "", + "comment": "Hanshi Festival.", + "messages": { + "en_US": "Hanshi Festival", + "ko_KP": "한식" + }, + "countries": [ + "KP" + ] + }, + { + "id": "hanukkah", + "msgid": "Hanukkah", + "new_comment": "", + "comment": "Hanukkah.", + "messages": { + "en_US": "Hanukkah", + "he": "חנוכה", + "th": "เทศกาลฮานุกกะห์", + "uk": "Ханука" + }, + "countries": [ + "IL" + ] + }, + { + "id": "happy_day", + "msgid": "Happy Day", + "new_comment": "", + "comment": "Happy Day.", + "messages": { + "en_GB": "Happy Day", + "en_US": "Happy Day", + "tvl": "Te Aso Fiafia" + }, + "countries": [ + "TV" + ] + }, + { + "id": "harela", + "msgid": "Harela", + "new_comment": "", + "comment": "Harela.", + "messages": { + "bn": "হরেলা", + "en_IN": "Harela", + "en_US": "Harela", + "gu": "હરેલા", + "hi": "हरेला", + "kn": "ಹರೇಲಾ", + "ml": "ഹരേല", + "mr": "हरेला", + "pa": "ਹਰੇਲਾ", + "ta": "ஹரேலா", + "te": "హరేలా" + }, + "countries": [ + "IN" + ] + }, + { + "id": "haryana_day", + "msgid": "Haryana Day", + "new_comment": "", + "comment": "Haryana Day.", + "messages": { + "bn": "হরিয়ানা দিবস", + "en_IN": "Haryana Day", + "en_US": "Haryana Day", + "gu": "હરિયાણા દિવસ", + "hi": "हरियाणा दिवस", + "kn": "ಹರ್ಯಾಣ ದಿನ", + "ml": "ഹരിയാന ദിനം", + "mr": "हरियाणा दिन", + "pa": "ਹਰਿਆਣਾ ਦਿਵਸ", + "ta": "ஹரியானா நாள்", + "te": "హర్యానా దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "haryana_war_heroes_martyrdom_day", + "msgid": "Haryana War Heroes' Martyrdom Day", + "new_comment": "", + "comment": "Haryana War Heroes' Martyrdom Day.", + "messages": { + "bn": "হরিয়ানার যুদ্ধবীরদের শহীদ দিবস", + "en_IN": "Haryana War Heroes' Shaheedi Diwas", + "en_US": "Haryana War Heroes' Martyrdom Day", + "gu": "હરિયાણાના યુદ્ધવીરોનો શહીદી દિવસ", + "hi": "हरियाणा के युद्ध वीरों का शहीदी दिवस", + "kn": "ಹರಿಯಾಣದ ಯುದ್ಧ ವೀರರ ಶಹೀದಿ ದಿನ", + "ml": "ഹരിയാനയിലെ യുദ്ധവീരരുടെ ശഹീദ് ദിനം", + "mr": "हरियाणाच्या युद्धवीरांचा शहीद दिन", + "pa": "ਹਰਿਆਣਾ ਦੇ ਯੁੱਧ ਵੀਰਾਂ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "ஹரியானா போர்வீரர்களின் ஷஹீதி தினம்", + "te": "హర్యానా యుద్ధ వీరుల షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "health_protection_day", + "msgid": "Health Protection Day", + "new_comment": "", + "comment": "Health Protection Day.", + "messages": { + "en_US": "Health Protection Day", + "mn": "Эрүүл мэндийг хамгаалах өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "heat", + "msgid": "Heat", + "new_comment": "", + "comment": "Heat.", + "messages": { + "en_US": "Heat", + "gu": "ગરમી", + "hi": "गर्मी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "heat_and_to_allow_offices_to_catch_up_on_work", + "msgid": "Heat and to allow offices to catch up on work", + "new_comment": "", + "comment": "Heat and to allow offices to catch up on work.", + "messages": { + "en_US": "Heat and to allow offices to catch up on work", + "gu": "ગરમી અને ઓફિસોને તેમનું બાકી કામ પૂરું કરવા દેવા માટે", + "hi": "गर्मी और कार्यालयों को काम पूरा करने की अनुमति देने के लिए" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "heatless_day", + "msgid": "Heatless Day", + "new_comment": "", + "comment": "Heatless Day.", + "messages": { + "en_US": "Heatless Day", + "gu": "હીટલેસ ડે (ગરમી વગરનો દિવસ)", + "hi": "ऊष्मारहित दिन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "heavy_snow", + "msgid": "Heavy Snow", + "new_comment": "", + "comment": "Heavy Snow.", + "messages": { + "en_US": "Heavy Snow", + "gu": "ભારે હિમવર્ષા", + "hi": "भारी बर्फबारी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "heavy_volume_to_allow_member_firm_offices_to_catch_up_on_work", + "msgid": "Heavy volume. To allow member firm offices to catch up on work", + "new_comment": "", + "comment": "Heavy volume. To allow member firm offices to catch up on work.", + "messages": { + "en_US": "Heavy volume. To allow member firm offices to catch up on work", + "gu": "ભારે વોલ્યુમ. સભ્ય પેઢીની ઓફિસોને તેમનું બાકી કામ પૂરું કરવા દેવા માટે", + "hi": "भारी मात्रा। सदस्य फर्म कार्यालयों को अपना काम पूरा करने की अनुमति देने के लिए" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "heir_to_the_throne_s_birthday", + "msgid": "Heir to the Throne's Birthday", + "new_comment": "", + "comment": "Heir to the Throne's Birthday.", + "messages": { + "en_GB": "Heir to the Throne's Birthday", + "en_US": "Heir to the Throne's Birthday", + "tvl": "Aso fanau o te sui ote Tupu" + }, + "countries": [ + "TV" + ] + }, + { + "id": "heritage_day", + "msgid": "Heritage Day", + "new_comment": "", + "comment": "Heritage Day.", + "messages": { + "ar": "يوم التراث", + "en_CA": "Heritage Day", + "en_US": "Heritage Day", + "fr": "Fête du Patrimoine", + "th": "วันมรดก" + }, + "countries": [ + "CA" + ] + }, + { + "id": "heroes_and_foreparents_day", + "msgid": "Heroes and Foreparents Day", + "new_comment": "", + "comment": "Heroes and Foreparents Day.", + "messages": { + "en_US": "Heroes and Foreparents Day", + "en_VG": "Heroes and Foreparents Day" + }, + "countries": [ + "VG" + ] + }, + { + "id": "heroes_day", + "msgid": "Heroes' Day", + "new_comment": "", + "comment": "Heroes' Day.", + "messages": { + "en_NA": "Heroes' Day", + "en_US": "Heroes' Day", + "id": "Hari Pahlawan", + "pt_MZ": "Dia dos Heróis Moçambicanos", + "th": "วันวีรบุรุษอินโดนีเซีย", + "uk": { + "ID": "День Героїв", + "MZ": "День героїв Мозамбіку", + "NA": "День Героїв" + } + }, + "countries": [ + "ID", + "MZ", + "NA" + ] + }, + { + "id": "himachal_day", + "msgid": "Himachal Day", + "new_comment": "", + "comment": "Himachal Day.", + "messages": { + "bn": "হিমাচল দিবস", + "en_IN": "Himachal Day", + "en_US": "Himachal Day", + "gu": "હિમાચલ દિવસ", + "hi": "हिमाचल दिवस", + "kn": "ಹಿಮಾಚಲ್ ದಿನೋತ್ಸವ", + "ml": "ഹിമാചൽ ദിനം", + "mr": "हिमाचल दिन", + "pa": "ਹਿਮਾਚਲ ਦਿਵਸ", + "ta": "இமாச்சல் நாள்", + "te": "హిమాచల్ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_birthday_anniversary", + "msgid": "HM King Bhumibol Adulyadej's Birthday", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej Birthday Anniversary.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej's Birthday", + "th": "วันเฉลิมพระชนมพรรษาพระบาทสมเด็จพระปรมินทรมหาภูมิพลอดุลยเดช บรมนาถบพิตร", + "uk": "День народження Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_memorial_day", + "msgid": "HM King Bhumibol Adulyadej Memorial Day", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej Memorial Day.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej Memorial Day", + "th": "วันนวมินทรมหาราช", + "uk": "День памʼяті Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_s_60th_anniversary_of_accession_event", + "msgid": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej's 60th Anniversary of Accession Event", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 60 ปี พ.ศ. 2549", + "uk": "60-та річниця сходження на престол Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_s_golden_jubilee", + "msgid": "HM King Bhumibol Adulyadej's Golden Jubilee", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej's Golden Jubilee.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej's Golden Jubilee", + "th": "พระราชพิธีกาญจนาภิเษก พ.ศ. 2539", + "uk": "Золотий ювілей Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_s_royal_cremation_ceremony", + "msgid": "HM King Bhumibol Adulyadej's Royal Cremation Ceremony", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej's Royal Cremation Ceremony.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej's Royal Cremation Ceremony", + "th": "วันพระราชพิธีถวายพระเพลิงพระบรมศพพระบาทสมเด็จพระปรมินทรมหาภูมิพลอดุลยเดช", + "uk": "Церемонія кремації Його Величності короля Пуміпона Адульядета" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_bhumibol_adulyadej_the_great_s_birthday_anniversary", + "msgid": "HM King Bhumibol Adulyadej the Great's Birthday", + "new_comment": "", + "comment": "HM King Bhumibol Adulyadej the Great's Birthday Anniversary.", + "messages": { + "en_US": "HM King Bhumibol Adulyadej the Great's Birthday", + "th": "วันคล้ายวันเฉลิมพระชนมพรรษาพระบาทสมเด็จพระบรมชนกาธิเบศร มหาภูมิพลอดุลยเดชมหาราช บรมนาถบพิตร", + "uk": "Річниця дня народження Його Величності короля Пуміпона Адульядета Великого" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_chulalongkorn_memorial_day", + "msgid": "HM King Chulalongkorn Memorial Day", + "new_comment": "", + "comment": "HM King Chulalongkorn Memorial Day.", + "messages": { + "en_US": "HM King Chulalongkorn Memorial Day", + "th": "วันปิยมหาราช", + "uk": "День памʼяті Його Величності короля Чулалонгкорна" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_maha_vajiralongkorn_s_birthday", + "msgid": "HM King Maha Vajiralongkorn's Birthday", + "new_comment": "", + "comment": "HM King Maha Vajiralongkorn's Birthday.", + "messages": { + "en_US": "HM King Maha Vajiralongkorn's Birthday", + "th": "วันเฉลิมพระชนมพรรษาพระบาทสมเด็จพระปรเมนทรรามาธิบดีศรีสินทรมหาวชิราลงกรณ พระวชิรเกล้าเจ้าอยู่หัว", + "uk": "День народження Його Величності короля Маха Вачіралонгкорна" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_maha_vajiralongkorn_s_coronation_celebrations", + "msgid": "HM King Maha Vajiralongkorn's Coronation Celebrations", + "new_comment": "", + "comment": "HM King Maha Vajiralongkorn's Coronation Celebrations.", + "messages": { + "en_US": "HM King Maha Vajiralongkorn's Coronation Celebrations", + "th": "พระราชพิธีบรมราชาภิเษก พระบาทสมเด็จพระวชิรเกล้าเจ้าอยู่หัว", + "uk": "Коронація Його Величності короля Маха Вачіралонгкорна" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_king_ramkhamhaeng_memorial_day", + "msgid": "HM King Ramkhamhaeng Memorial Day", + "new_comment": "", + "comment": "HM King Ramkhamhaeng Memorial Day.", + "messages": { + "en_US": "HM King Ramkhamhaeng Memorial Day", + "th": "วันพ่อขุนรามคำแหงมหาราช", + "uk": "День памʼяті короля Рамкхамхенга" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_queen_rambai_barni_s_royal_cremation_ceremony", + "msgid": "HM Queen Rambai Barni's Royal Cremation Ceremony", + "new_comment": "", + "comment": "HM Queen Rambai Barni's Royal Cremation Ceremony.", + "messages": { + "en_US": "HM Queen Rambai Barni's Royal Cremation Ceremony", + "th": "วันพระราชพิธีถวายพระเพลิงพระบรมศพสมเด็จพระนางเจ้ารำไพพรรณี", + "uk": "Церемонія кремації Її Величності королеви Рамбай Барні" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_queen_sirikit_s_birthday", + "msgid": "HM Queen Sirikit's Birthday", + "new_comment": "", + "comment": "HM Queen Sirikit's Birthday.", + "messages": { + "en_US": "HM Queen Sirikit's Birthday", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ", + "uk": "День народження Її Величності королеви Сірікіт" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_queen_sirikit_the_queen_mother_s_birthday", + "msgid": "HM Queen Sirikit The Queen Mother's Birthday", + "new_comment": "", + "comment": "HM Queen Sirikit the Queen Mother's Birthday.", + "messages": { + "en_US": "HM Queen Sirikit The Queen Mother's Birthday", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระบรมราชชนนีพันปีหลวง", + "uk": "День народження Її Величності королеви-матері Сірікіт" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hm_queen_suthida_s_birthday", + "msgid": "HM Queen Suthida's Birthday", + "new_comment": "", + "comment": "HM Queen Suthida's Birthday.", + "messages": { + "en_US": "HM Queen Suthida's Birthday", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระนางเจ้าสุทิดา พัชรสุธาพิมลลักษณ พระบรมราชินี", + "uk": "День народження Її Величності королеви Сутіди" + }, + "countries": [ + "TH" + ] + }, + { + "id": "hola_mohalla", + "msgid": "Hola Mohalla", + "new_comment": "", + "comment": "Hola Mohalla.", + "messages": { + "bn": "হোলা মোহল্লা", + "en_IN": "Hola Mohalla", + "en_US": "Hola Mohalla", + "gu": "હોળા મોહલ્લા", + "hi": "होला मोहल्ला", + "kn": "ಹೋಲಾ ಮೊಹಲ್ಲಾ", + "ml": "ഹോലാ മൊഹല്ലാ", + "mr": "होला मोहल्ला", + "pa": "ਹੋਲਾ ਮੁਹੱਲਾ", + "ta": "ஹோலா மொஹல்லா", + "te": "హోలా మొహల్లా" + }, + "countries": [ + "IN" + ] + }, + { + "id": "holi", + "msgid": "Holi", + "new_comment": "", + "comment": "Holi.", + "messages": { + "bn": "হোলি", + "en_GY": "Phagwah", + "en_IN": "Holi", + "en_US": "Holi", + "gu": "હોળી", + "hi": "होली", + "kn": "ಹೋಳಿ ಹಬ್ಬ", + "ml": "ഹോളി", + "mr": "होळी", + "nl": "Holi-Phagwa", + "pa": "ਹੋਲੀ", + "ta": "ஹோலி", + "te": "హోలీ" + }, + "countries": [ + "GY", + "IN", + "SR", + "XNSE" + ] + }, + { + "id": "holiday_for_the_national_team_s_victory_in_the_world_cup", + "msgid": "Holiday for the National Team's Victory in the World Cup", + "new_comment": "", + "comment": "Holiday for the National Team's Victory in the World Cup.", + "messages": { + "ar": "عطلة فوز المنتخب في كأس العالم", + "bn": "বিশ্বকাপে জাতীয় দলের জয়ের ছুটি", + "en_US": "Holiday for the National Team's Victory in the World Cup" + }, + "countries": [ + "SA" + ] + }, + { + "id": "holiday_of_spring_and_labor", + "msgid": "Holiday of Spring and Labor", + "new_comment": "", + "comment": "Holiday of Spring and Labor.", + "messages": { + "en_US": "Holiday of Spring and Labor", + "ru": "Праздник Весны и Труда", + "th": "วันหยุดเทศกาลฤดูใบไม้ผลิและแรงงาน", + "zh_CN": "春天与劳动节" + }, + "countries": [ + "RU" + ] + }, + { + "id": "holiday_of_svetitskhovloba_robe_of_jesus", + "msgid": "Holiday of Svetitskhovloba, Robe of Jesus", + "new_comment": "", + "comment": "Holiday of Svetitskhovloba, Robe of Jesus.", + "messages": { + "en_US": "Holiday of Svetitskhovloba, Robe of Jesus", + "ka": "მცხეთობის", + "uk": "Свято Светіцховлоба, Ризи Господньої" + }, + "countries": [ + "GE" + ] + }, + { + "id": "holika_dahan", + "msgid": "Holika Dahan", + "new_comment": "", + "comment": "Holika Dahan.", + "messages": { + "bn": "হোলিকা দহন", + "en_IN": "Holika Dahan", + "en_US": "Holika Dahan", + "gu": "હોલિકા દહન", + "hi": "होलिका दहन", + "kn": "ಹೋಲಿಕಾ ದಹನ್", + "ml": "ഹോളിക ദഹൻ", + "mr": "होलिका दहन", + "pa": "ਹੋਲਿਕਾ ਦਹਨ", + "ta": "ஹோலிகா தஹான்", + "te": "హోలికా దహన్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "holy_saturday", + "msgid": "Holy Saturday", + "new_comment": "", + "comment": "Holy Saturday.", + "messages": { + "ar": "سبت النور", + "bg": "Велика събота", + "el": "Μεγάλο Σάββατο", + "en_CY": "Holy Saturday", + "en_MO": "Holy Saturday", + "en_SG": "Holy Saturday", + "en_US": "Holy Saturday", + "es": { + "CL": "Sábado Santo", + "GT": "Sábado Santo", + "HN": "Sábado de Gloria", + "SV": "Sábado Santo" + }, + "it": "Sabato Santo", + "ka": "დიდი შაბათი", + "pt_MO": "Sábado Santo", + "sr": "Велика субота", + "sv": "Påskafton", + "th": "วันเสาร์ศักดิ์สิทธิ์", + "uk": "Велика субота", + "zh_CN": "圣周星期六", + "zh_MO": "聖周星期六" + }, + "countries": [ + "BG", + "CL", + "CY", + "GE", + "GT", + "HN", + "MO", + "PS", + "RS", + "SE", + "SG", + "SV", + "VA" + ] + }, + { + "id": "holy_thursday", + "msgid": "Holy Thursday", + "new_comment": "", + "comment": "Holy Thursday.", + "messages": { + "ar": "خميس الغسل", + "de": "Gründonnerstag", + "en_US": "Holy Thursday", + "es": "Jueves Santo", + "fr": "Jeudi Saint", + "pt_BR": "Quinta-feira Santa", + "pt_CV": "Quinta-Feira Santa", + "th": "วันพฤหัสศักดิ์สิทธิ์", + "uk": "Великий четвер" + }, + "countries": [ + "BVMF", + "CV", + "PS", + "US" + ] + }, + { + "id": "homecoming_of_27th_division", + "msgid": "Homecoming of 27th Division", + "new_comment": "", + "comment": "Homecoming of 27th Division.", + "messages": { + "en_US": "Homecoming of 27th Division", + "gu": "27મા ડિવિઝનની ઘરવાપસી", + "hi": "27वें डिवीजन की घर वापसी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "hong_kong_s_a_r_establishment_day", + "msgid": "Hong Kong S.A.R. Establishment Day", + "new_comment": "", + "comment": "Hong Kong S.A.R. Establishment Day.", + "messages": { + "en_HK": "Hong Kong Special Administrative Region Establishment Day", + "en_US": "Hong Kong S.A.R. Establishment Day", + "th": "วันสถาปนาเขตบริหารพิเศษฮ่องกง", + "zh_CN": "香港特别行政区成立纪念日", + "zh_HK": "香港特別行政區成立紀念日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "humanity_day", + "msgid": "Humanity Day", + "new_comment": "", + "comment": "Humanity Day.", + "messages": { + "en_US": "Humanity Day", + "es": "Día de la Humanidad", + "uk": "День людяності" + }, + "countries": [ + "UY" + ] + }, + { + "id": "hung_kings_commemoration_day", + "msgid": "Hung Kings' Commemoration Day", + "new_comment": "", + "comment": "Hung Kings' Commemoration Day.", + "messages": { + "en_US": "Hung Kings' Commemoration Day", + "th": "วันสักการะบูชาบรรพกษัตริย์หุ่ง", + "vi": "Ngày Giỗ Tổ Hùng Vương" + }, + "countries": [ + "VN" + ] + }, + { + "id": "hurricane_gloria", + "msgid": "Hurricane Gloria", + "new_comment": "", + "comment": "Hurricane Gloria.", + "messages": { + "en_US": "Hurricane Gloria", + "gu": "વાવાઝોડું ગ્લોરિયા", + "hi": "तूफान ग्लोरिया" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "hurricane_sandy", + "msgid": "Hurricane Sandy", + "new_comment": "", + "comment": "Hurricane Sandy.", + "messages": { + "en_US": "Hurricane Sandy", + "gu": "હરિકેન સેન્ડી", + "hi": "हरिकेन सैंडी" + }, + "countries": [ + "XCME", + "XNYS" + ] + }, + { + "id": "hurricane_watch", + "msgid": "Hurricane watch", + "new_comment": "", + "comment": "Hurricane watch.", + "messages": { + "en_US": "Hurricane watch", + "gu": "વાવાઝોડાની ચેતવણી", + "hi": "तूफान की चेतावनी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "ibumin_earoeni_day", + "msgid": "Ibumin Earoeni Day", + "new_comment": "", + "comment": "Ibumin Earoeni Day.", + "messages": { + "en_NR": "Ibumin Earoeni Day", + "en_US": "Ibumin Earoeni Day" + }, + "countries": [ + "NR" + ] + }, + { + "id": "il_full_moon_poya_day", + "msgid": "Il Full Moon Poya Day", + "new_comment": "", + "comment": "Il Full Moon Poya Day.", + "messages": { + "en_US": "Il Full Moon Poya Day", + "si_LK": "ඉල් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "இல் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "immaculate_conception", + "msgid": "Immaculate Conception", + "new_comment": "", + "comment": "Immaculate Conception.", + "messages": { + "ca": "Immaculada Concepció", + "de": "Mariä Empfängnis", + "en_MO": "Immaculate Conception", + "en_PH": "Feast of the Immaculate Conception of Mary", + "en_SC": "The Feast of the Immaculate Conception", + "en_US": "Immaculate Conception", + "es": { + "AR": "Inmaculada Concepción de María", + "CL": "La Inmaculada Concepción", + "CO": "La Inmaculada Concepción", + "ES": "Inmaculada Concepción", + "GQ": "Festividad de la Inmaculada Concepción de María", + "NI": "Concepción de María", + "PE": "Inmaculada Concepción" + }, + "fil": "Dakilang Kapistahan ng Kalinis-linisang Paglilihi sa Mahal na Birheng Maria", + "fr": "Immaculée Conception", + "fr_MC": "Le jour de l'Immaculée Conception", + "it": "Immacolata Concezione", + "it_IT": "Immacolata Concezione", + "pt_MO": "Imaculada Conceição", + "pt_PT": "Imaculada Conceição", + "th": "วันสมโภชแม่พระผู้ปฏิสนธินิรมล", + "uk": "Непорочне зачаття Діви Марії", + "zh_CN": "圣母无原罪瞻礼", + "zh_MO": "聖母無原罪瞻禮" + }, + "countries": [ + "AD", + "AR", + "AT", + "CH", + "CL", + "CO", + "ES", + "GQ", + "IT", + "LI", + "MC", + "MO", + "NI", + "PE", + "PH", + "PT", + "SC", + "SM", + "VA" + ] + }, + { + "id": "immaculate_conception_of_the_blessed_virgin_mary", + "msgid": "Immaculate Conception of the Blessed Virgin Mary", + "new_comment": "", + "comment": "Immaculate Conception of the Blessed Virgin Mary.", + "messages": { + "de": "Mariä Empfängnis", + "en_US": "Immaculate Conception of the Blessed Virgin Mary", + "pl": "Niepokalane Poczęcie Najświętszej Marii Panny", + "uk": "Непорочне зачаття Діви Марії" + }, + "countries": [ + "PL" + ] + }, + { + "id": "inauguration_day", + "msgid": "Inauguration Day", + "new_comment": "", + "comment": "Inauguration Day.", + "messages": { + "en_KE": "Inauguration Day", + "en_US": "Inauguration Day", + "sw": "Siku ya Uzinduzi", + "th": "วันสาบานตนประธานาธิบดี" + }, + "countries": [ + "KE", + "US" + ] + }, + { + "id": "inauguration_of_east_african_economic_community", + "msgid": "Inauguration of East African Economic Community", + "new_comment": "", + "comment": "Inauguration of East African Economic Community.", + "messages": { + "en_US": "Inauguration of East African Economic Community", + "sw": "Uzinduzi wa Jumuiya ya Kiuchumi ya Afrika Mashariki" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "independence_and_national_liberation_front_day", + "msgid": "Independence and National Liberation Front Day", + "new_comment": "", + "comment": "Independence and National Liberation Front Day.", + "messages": { + "ar": "عيد الاستقلال وجبهة التحرير الوطني", + "en_US": "Independence and National Liberation Front Day", + "fr": "Fête de l'Indépendance et du F.L.N.", + "kab": "Ass n uzarug d tirni n weslelli aɣelnaw" + }, + "countries": [ + "DZ" + ] + }, + { + "id": "independence_and_republic_day", + "msgid": "Independence and Republic Day", + "new_comment": "", + "comment": "Independence and Republic Day.", + "messages": { + "en_MU": "Independence and Republic Day", + "en_US": "Independence and Republic Day", + "sw": "Uhuru na Jamhuri" + }, + "countries": [ + "MU", + "TZ" + ] + }, + { + "id": "independence_and_unity_day", + "msgid": "Independence and Unity Day", + "new_comment": "", + "comment": "Independence and Unity Day.", + "messages": { + "en_US": "Independence and Unity Day", + "sl": "dan samostojnosti in enotnosti", + "uk": "День незалежності та єднання" + }, + "countries": [ + "SI" + ] + }, + { + "id": "independence_day", + "msgid": "Independence Day", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "ar": "عيد الاستقلال", + "ar_SD": "عيد الاستقلال", + "bn": "স্বাধীনতা দিবস", + "bs": "Dan nezavisnosti", + "cnr": "Dan nezavisnosti", + "de": "Fest der Unabhängigkeit", + "dv": "މިނިވަން ދުވަސް", + "el": "Εικοστή Πέμπτη Μαρτίου", + "en_BD": "Independence Day", + "en_BF": "Independence Day", + "en_CI": "Independence Day", + "en_FM": "Independence Day", + "en_GD": "Independence Day", + "en_GM": "Independence Day", + "en_GY": "Independence Day", + "en_IN": "Independence Day", + "en_KE": "Independence Day", + "en_LC": "Independence Day", + "en_NA": "Independence Day", + "en_NR": "Independence Day", + "en_PH": "Independence Day", + "en_PK": "Independence Day", + "en_SC": "Independence Day", + "en_SL": "Independence Day", + "en_TT": "Independence Day", + "en_US": "Independence Day", + "en_VC": "Independence Day", + "es": "Día de la Independencia", + "et": "iseseisvuspäev", + "fi": "Itsenäisyyspäivä", + "fil": "Araw ng Kalayaan", + "fr": { + "BF": "Fête nationale", + "CD": "Journée de l'indépendance", + "CF": "Jour de l'indépendance", + "CH": "Commémoration du plébiscite", + "CI": "Fête Nationale", + "DJ": "Fête de l'indépendance", + "DZ": "Fête de l'Indépendance", + "GA": "Jour de l'indépendance", + "MA": "Fête de l'indépendance", + "RW": "Journée de l'Indépendance", + "TG": "Fête de l'indépendance" + }, + "fr_BI": "Anniversaire de l'Indépendance", + "fr_NE": "Jour de l'indépendance", + "fr_SN": "Fête de l'Indépendance", + "gu": "સ્વતંત્રતા દિવસ", + "hi": "स्वतंत्रता दिवस", + "hr": "Dan neovisnosti", + "hy": "Անկախության օր", + "it": "Festa dell'Indipendenza", + "ka": "დამოუკიდებლობის დღე", + "kab": "Ass n uzarug", + "kk": "Тəуелсіздік күні", + "kn": "ಸ್ವಾತಂತ್ರ್ಯ ದಿನಾಚರಣೆ", + "mg": "Fetin'ny fahaleovantena", + "mk": "Ден на независноста", + "ml": "സ്വാതന്ത്ര്യദിനം", + "mr": "स्वातंत्र्य दिन", + "mt": "Jum l-Indipendenza", + "my": "လွတ်လပ်ရေးနေ့", + "nl": "Onafhankelijkheidsdag", + "pa": "ਸੁਤੰਤਰਤਾ ਦਿਵਸ", + "pt_AO": "Dia da Independência", + "pt_GW": "Dia da Independência", + "pt_ST": "Dia da Independência", + "rw": "Umunsi w'Ubwigenge", + "si_LK": "නිදහස් සමරු දිනය", + "sl": "dan samostojnosti", + "sr": "Дан независности", + "sv_FI": "Självständighetsdagen", + "sw": "Siku ya Uhuru", + "ta": "சுதந்திர தினம்", + "ta_LK": "சுதந்திர தினம்", + "te": "స్వాతంత్ర దినోత్సవం", + "th": { + "CH": "วันประกาศเอกราชจูรา", + "FI": "วันประกาศอิสรภาพฟินแลนด์", + "MM": "วันเอกราช", + "PH": "วันประกาศเอกราชสาธารณรัฐฟิลิปปินส์", + "US": "วันประกาศอิสรภาพ" + }, + "uk": "День незалежності", + "ur_PK": "یوم آزادی", + "uz": "Mustaqillik kuni" + }, + "countries": [ + "AM", + "AO", + "AR", + "BA", + "BD", + "BF", + "BI", + "CD", + "CF", + "CH", + "CI", + "CL", + "CO", + "CR", + "DJ", + "DZ", + "EE", + "FI", + "FM", + "GA", + "GD", + "GE", + "GM", + "GT", + "GW", + "GY", + "HN", + "HR", + "IN", + "JO", + "KE", + "KZ", + "LC", + "LK", + "LY", + "MA", + "ME", + "MG", + "MK", + "MM", + "MR", + "MT", + "MV", + "MX", + "NA", + "NE", + "NI", + "NR", + "PE", + "PH", + "PK", + "PS", + "RW", + "SC", + "SD", + "SI", + "SL", + "SN", + "SR", + "ST", + "SV", + "SY", + "TG", + "TN", + "TT", + "US", + "UZ", + "VC", + "VE", + "XCME", + "XMEX", + "XNSE", + "XNYS" + ] + }, + { + "id": "independence_day_az_cv_gq_mz_py", + "msgid": "National Independence Day", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "az": "Milli Müstəqillik Günü", + "de": "Unabhängigkeitstag", + "en_US": "Independence Day", + "es": "Día de la Independencia Nacional", + "fr": "Fête de l'Indépendance Nationale", + "pt_CV": "Dia da Independência Nacional", + "pt_MZ": "Dia da Independência Nacional", + "uk": { + "MZ": "День національної незалежності", + "PY": "День незалежності" + } + }, + "countries": [ + "AZ", + "CV", + "GQ", + "MZ", + "PY" + ] + }, + { + "id": "independence_day_bg", + "msgid": "Independence Day of Bulgaria", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "bg": "Ден на Независимостта на България", + "en_US": "Independence Day", + "uk": "День незалежності Болгарії" + }, + "countries": [ + "BG" + ] + }, + { + "id": "independence_day_bo", + "msgid": "Independence Day of Bolivia", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "es": "Día de la Independencia de Bolivia", + "uk": "День незалежності Болівії" + }, + "countries": [ + "BO" + ] + }, + { + "id": "independence_day_br_bvmf", + "msgid": "Independence Day of Brazil", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "pt_BR": "Independência do Brasil", + "uk": "День незалежності Бразилії" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "independence_day_cu", + "msgid": "Start of the Wars of Independence", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "es": "Inicio de las Guerras de Independencia", + "uk": "Початок війни за незалежність" + }, + "countries": [ + "CU" + ] + }, + { + "id": "independence_day_gn", + "msgid": "Anniversary of the Independence of Guinea", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "fr": "Fête anniversaire de l'indépendance de la Guinée" + }, + "countries": [ + "GN" + ] + }, + { + "id": "independence_day_gr", + "msgid": "25th March (Independence Day)", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "el": "Εικοστή Πέμπτη Μαρτίου", + "en_US": "Independence Day", + "uk": "День незалежності" + }, + "countries": [ + "GR" + ] + }, + { + "id": "independence_day_holiday", + "msgid": "Independence Day Holiday", + "new_comment": "", + "comment": "Independence Day Holiday.", + "messages": { + "ar": "عطلة عيد الاستقلال", + "en_US": "Independence Day Holiday", + "fr": { + "DJ": "Fête de l'indépendance deuxième jour", + "GA": "Fête de l'indépendance" + } + }, + "countries": [ + "DJ", + "GA" + ] + }, + { + "id": "independence_day_id", + "msgid": "Independence Day of the Republic of Indonesia", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "id": "Hari Kemerdekaan Republik Indonesia", + "th": "วันประกาศอิสรภาพสาธารณรัฐอินโดนีเซีย", + "uk": "День незалежності Республіки Індонезія" + }, + "countries": [ + "ID" + ] + }, + { + "id": "independence_day_joint_holiday", + "msgid": "Independence Day Joint Holiday", + "new_comment": "", + "comment": "Independence Day Joint Holiday.", + "messages": { + "en_US": "Independence Day Joint Holiday", + "id": "Cuti Bersama Hari Kemerdekaan Republik Indonesia", + "th": "หยุดร่วมพิเศษวันประกาศอิสรภาพสาธารณรัฐอินโดนีเซีย", + "uk": "Додатковий вихідний на День незалежності Республіки Індонезія" + }, + "countries": [ + "ID" + ] + }, + { + "id": "independence_day_kg", + "msgid": "Independence Day of the Kyrgyz Republic", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "ky": "Кыргыз Республикасынын Көз карандысыздыгынын күнү", + "ru_KG": "День независимости Кыргызской Республики" + }, + "countries": [ + "KG" + ] + }, + { + "id": "independence_day_lb", + "msgid": "Independence Anniversary", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "ar": "ذكرى الاستقلال", + "en_US": "Independence Day", + "fr": "Fête Nationale" + }, + "countries": [ + "LB" + ] + }, + { + "id": "independence_day_of_the_republic_of_belarus_day_of_the_republic", + "msgid": "Independence Day of the Republic of Belarus (Day of the Republic)", + "new_comment": "", + "comment": "Independence Day of the Republic of Belarus (Day of the Republic).", + "messages": { + "be": "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)", + "en_US": "Independence Day of the Republic of Belarus (Day of the Republic)", + "ru": "День Независимости Республики Беларусь (День Республики)", + "th": "วันประกาศอิสรภาพแห่งสาธารณรัฐเบลารุส (วันสาธารณรัฐ)" + }, + "countries": [ + "BY" + ] + }, + { + "id": "independence_day_pa", + "msgid": "Panama's Independence from Spain Day", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "es": "Independencia de Panamá de España", + "uk": "День незалежності від Іспанії" + }, + "countries": [ + "PA" + ] + }, + { + "id": "independence_day_tj", + "msgid": "National Independence Day of the Republic of Tajikistan", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "ru": "День Государственной независимости Республики Таджикистан", + "tg": "Рӯзи Истиқлолияти давлатии Ҷумҳурии Тоҷикистон" + }, + "countries": [ + "TJ" + ] + }, + { + "id": "independence_day_tm", + "msgid": "Independence Day of Turkmenistan", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "ru": "День независимости", + "tk": "Türkmenistanyň Garaşsyzlyk güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "independence_day_ua", + "msgid": "Independence Day of Ukraine", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "ar": "عيد استقلال أوكرانيا", + "en_US": "Independence Day", + "th": "วันประกาศอิสรภาพยูเครน", + "uk": "День незалежності України" + }, + "countries": [ + "UA" + ] + }, + { + "id": "independence_day_xk", + "msgid": "Independence Day of the Republic of Kosovo", + "new_comment": "", + "comment": "Independence Day.", + "messages": { + "en_US": "Independence Day", + "sq": "Dita e Pavarësisë së Republikës së Kosovës", + "sr": "Dan Nezavisnosti Republike Kosova" + }, + "countries": [ + "XK" + ] + }, + { + "id": "independence_declaration_day", + "msgid": "Independence Declaration Day", + "new_comment": "", + "comment": "Independence Declaration Day.", + "messages": { + "en_US": "Independence Declaration Day", + "es": "Declaratoria de la Independencia", + "lo": "ວັນປະກາດເອກະລາດ", + "th": "วันประกาศเอกราช", + "uk": "День проголошення незалежності" + }, + "countries": [ + "LA", + "UY" + ] + }, + { + "id": "independence_movement_day", + "msgid": "Independence Movement Day", + "new_comment": "", + "comment": "Independence Movement Day.", + "messages": { + "en_US": "Independence Movement Day", + "ko": "삼일절", + "th": "วันอิสรภาพ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "independence_national_day", + "msgid": "Independence (National) Day", + "new_comment": "", + "comment": "Independence (National) Day.", + "messages": { + "en_SC": "Independence (National) Day", + "en_US": "Independence (National) Day" + }, + "countries": [ + "SC" + ] + }, + { + "id": "independence_of_cartagena", + "msgid": "Independence of Cartagena", + "new_comment": "", + "comment": "Independence of Cartagena.", + "messages": { + "en_US": "Independence of Cartagena", + "es": "Independencia de Cartagena", + "uk": "День незалежності Картахени" + }, + "countries": [ + "CO" + ] + }, + { + "id": "independence_of_cuenca", + "msgid": "Independence of Cuenca", + "new_comment": "", + "comment": "Independence of Cuenca.", + "messages": { + "en_US": "Independence of Cuenca", + "es": "Independencia de Cuenca", + "uk": "День незалежності Куенки" + }, + "countries": [ + "EC" + ] + }, + { + "id": "independence_of_guayaquil", + "msgid": "Independence of Guayaquil", + "new_comment": "", + "comment": "Independence of Guayaquil.", + "messages": { + "en_US": "Independence of Guayaquil", + "es": "Independencia de Guayaquil", + "uk": "День незалежності Гуаякіля" + }, + "countries": [ + "EC" + ] + }, + { + "id": "independence_restoration_day", + "msgid": "Independence Restoration Day", + "new_comment": "", + "comment": "Independence Restoration Day.", + "messages": { + "az": "Müstəqilliyin Bərpası Günü", + "en_US": "Independence Restoration Day", + "et": "taasiseseisvumispäev", + "uk": "День відновлення незалежності" + }, + "countries": [ + "AZ", + "EE" + ] + }, + { + "id": "independent_czech_state_restoration_day", + "msgid": "Independent Czech State Restoration Day", + "new_comment": "", + "comment": "Independent Czech State Restoration Day.", + "messages": { + "cs": "Den obnovy samostatného českého státu", + "en_US": "Independent Czech State Restoration Day", + "sk": "Deň obnovy samostatného českého štátu", + "uk": "День відновлення незалежної чеської держави" + }, + "countries": [ + "CZ" + ] + }, + { + "id": "independent_czechoslovak_state_day", + "msgid": "Independent Czechoslovak State Day", + "new_comment": "", + "comment": "Independent Czechoslovak State Day.", + "messages": { + "cs": "Den vzniku samostatného československého státu", + "en_US": "Independent Czechoslovak State Day", + "sk": "Deň vzniku samostatného československého štátu", + "uk": "День створення незалежної чехословацької держави" + }, + "countries": [ + "CZ" + ] + }, + { + "id": "indian_arrival_day", + "msgid": "Indian Arrival Day", + "new_comment": "", + "comment": "Indian Arrival Day.", + "messages": { + "en_TT": "Indian Arrival Day", + "en_US": "Indian Arrival Day" + }, + "countries": [ + "TT" + ] + }, + { + "id": "indigenous_people_day", + "msgid": "Indigenous People Day", + "new_comment": "", + "comment": "Indigenous People Day.", + "messages": { + "en_US": "Indigenous People Day", + "nl": "Dag der Inheemsen" + }, + "countries": [ + "SR" + ] + }, + { + "id": "indigenous_peoples_day", + "msgid": "Indigenous Peoples' Day", + "new_comment": "", + "comment": "Indigenous Peoples' Day.", + "messages": { + "en_US": "Indigenous Peoples' Day", + "th": "วันแห่งชนพื้นเมือง" + }, + "countries": [ + "US" + ] + }, + { + "id": "indigenous_peoples_day_columbus_day", + "msgid": "Indigenous Peoples' Day / Columbus Day", + "new_comment": "", + "comment": "Indigenous Peoples' Day / Columbus Day.", + "messages": { + "en_US": "Indigenous Peoples' Day / Columbus Day", + "th": "วันแห่งชนพื้นเมือง / วันโคลัมบัส" + }, + "countries": [ + "US" + ] + }, + { + "id": "integration_of_primorska_into_the_homeland", + "msgid": "Integration of Primorska into the Homeland", + "new_comment": "", + "comment": "Integration of Primorska into the Homeland.", + "messages": { + "en_US": "Integration of Primorska into the Homeland", + "sl": "priključitev Primorske k matični domovini", + "uk": "Приєднання Словенського Приморʼя до батьківщини" + }, + "countries": [ + "SI" + ] + }, + { + "id": "intellectual_property_protection_day", + "msgid": "Intellectual Property Protection Day", + "new_comment": "", + "comment": "Intellectual Property Protection Day.", + "messages": { + "en_US": "Intellectual Property Protection Day", + "mn": "Оюуны өмчийг хамгаалах өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "internal_autonomy_day", + "msgid": "Internal Autonomy Day", + "new_comment": "", + "comment": "Internal Autonomy Day.", + "messages": { + "en_US": "Internal Autonomy Day", + "fr": "Fête de l'autonomie", + "th": "วันปกครองตนเอง", + "uk": "День автономії" + }, + "countries": [ + "FR" + ] + }, + { + "id": "international_azerbaijanis_solidarity_day", + "msgid": "International Azerbaijanis Solidarity Day", + "new_comment": "", + "comment": "International Azerbaijanis Solidarity Day.", + "messages": { + "az": "Dünya azərbaycanlılarının həmrəyliyi günü", + "en_US": "International Azerbaijanis Solidarity Day", + "uk": "Всесвітній день солідарності азербайджанців" + }, + "countries": [ + "AZ" + ] + }, + { + "id": "international_bosniaks_day", + "msgid": "International Bosniaks Day", + "new_comment": "", + "comment": "International Bosniaks Day.", + "messages": { + "en_US": "International Bosniaks Day", + "mk": "Меѓународен ден на Бошњаците", + "uk": "Міжнародний день босняків" + }, + "countries": [ + "MK" + ] + }, + { + "id": "international_children_s_day", + "msgid": "International Children's Day", + "new_comment": "", + "comment": "International Children's Day.", + "messages": { + "de": "Weltkindertag", + "en_TL": "World Children's Day", + "en_US": "International Children's Day", + "es": "Día Mundial de la Infancia", + "fr": "Journée mondiale de l'enfance", + "km": "ទិវាកុមារអន្តរជាតិ", + "lo": "ວັນເດັກສາກົນ", + "pt_AO": "Dia Internacional da Criança", + "pt_CV": "Dia Mundial da Criança", + "pt_TL": "Dia Mundial da Criança", + "ro": "Ziua Ocrotirii Copilului", + "tet": "Loron Mundial ba Labarik", + "th": "วันเด็กสากล", + "uk": { + "AO": "Міжнародний день захисту дітей", + "MD": "День захисту дітей" + } + }, + "countries": [ + "AO", + "CV", + "KH", + "LA", + "MD", + "TL" + ] + }, + { + "id": "international_day_of_workers_solidarity", + "msgid": "International Day of Workers' Solidarity", + "new_comment": "", + "comment": "International Day of Workers' Solidarity.", + "messages": { + "en_US": "International Day of Workers' Solidarity", + "hy": "Աշխատավորների համերաշխության միջազգային օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "international_fraternalism_day", + "msgid": "International Fraternalism Day", + "new_comment": "", + "comment": "International Fraternalism Day.", + "messages": { + "en_US": "International Fraternalism Day", + "pt_MZ": "Dia da Fraternidade universal", + "uk": "День всесвітнього братерства" + }, + "countries": [ + "MZ" + ] + }, + { + "id": "international_human_rights_day", + "msgid": "International Human Rights Day", + "new_comment": "", + "comment": "International Human Rights Day.", + "messages": { + "en_NA": "International Human Rights Day", + "en_TL": "World Human Rights Day", + "en_US": "International Human Rights Day", + "km": "ទិវាសិទ្ធិមនុស្សអន្តរជាតិ", + "pt_TL": "Dia Mundial dos Direitos Humanos", + "tet": "Loron Mundiál Direitu Umanu", + "th": { + "KH": "วันสิทธิมนุษยชนโลก", + "TL": "วันสิทธิมนุษยชนสากล" + }, + "uk": "Міжнародний день прав людини" + }, + "countries": [ + "KH", + "NA", + "TL" + ] + }, + { + "id": "international_labor_day", + "msgid": "International Labor Day", + "new_comment": "", + "comment": "International Labor Day.", + "messages": { + "bs": "Međunarodni praznik rada", + "en_US": "International Labor Day", + "es": "Día Internacional del Trabajo", + "fr_BI": "Fête Internationale du Travail", + "fr_NE": "Journée internationale du travail", + "id": "Hari Buruh Internasional", + "km": "ទិវាពលកម្មអន្តរជាតិ", + "kn": "ಅಂತರರಾಷ್ಟ್ರೀಯ ಕಾರ್ಮಿಕ ದಿನ", + "lo": "ວັນກຳມະກອນສາກົນ", + "ne": "अन्तर्राष्ट्रिय श्रम दिवस", + "sq": "Dita Ndërkombëtare e Punës", + "sr": { + "BA": "Међународни празник рада", + "XK": "Međunarodni Dan Rada" + }, + "th": { + "ID": "วันแรงงานสากล", + "KH": "วันแรงงานสากล", + "LA": "วันกรรมกรสากล", + "VN": "วันแรงงานสากล" + }, + "uk": "Міжнародний день праці", + "vi": "Ngày Quốc tế Lao động" + }, + "countries": [ + "BA", + "BI", + "CR", + "GQ", + "ID", + "KH", + "LA", + "NE", + "NP", + "VN", + "XK" + ] + }, + { + "id": "international_neutrality_day", + "msgid": "International Neutrality Day", + "new_comment": "", + "comment": "International Neutrality Day.", + "messages": { + "en_US": "International Neutrality Day", + "ru": "Международный день нейтралитета", + "tk": "Halkara Bitaraplyk güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "international_new_year_day", + "msgid": "International New Year Day", + "new_comment": "", + "comment": "International New Year Day.", + "messages": { + "en_US": "International New Year Day", + "km": "ទិវាចូលឆ្នាំសាកល", + "th": "วันปีใหม่สากล" + }, + "countries": [ + "KH" + ] + }, + { + "id": "international_nowruz_day", + "msgid": "International Nowruz Day", + "new_comment": "", + "comment": "International Nowruz Day.", + "messages": { + "en_US": "International Nowruz Day", + "ru": "Международный праздник Навруз", + "tg": "Иди байналмилалии Наврӯз" + }, + "countries": [ + "TJ" + ] + }, + { + "id": "international_romani_day", + "msgid": "International Romani Day", + "new_comment": "", + "comment": "International Romani Day.", + "messages": { + "en_US": "International Romani Day", + "mk": "Меѓународен ден на Ромите", + "uk": "Міжнародний день ромів" + }, + "countries": [ + "MK" + ] + }, + { + "id": "international_trade_fair", + "msgid": "International Trade Fair", + "new_comment": "", + "comment": "International Trade Fair.", + "messages": { + "en_US": "International Trade Fair", + "sw": "Sabasaba" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "international_women_s_day", + "msgid": "International Women's Day", + "new_comment": "", + "comment": "International Women's Day.", + "messages": { + "ar": "يوم المراة العالمي", + "bn": "আন্তর্জাতিক নারী দিবস", + "en_BF": "International Women's Day", + "en_IN": "International Women's Day", + "en_NR": "International Women's Day", + "en_SL": "International Women's Day", + "en_US": "International Women's Day", + "es": "Día Internacional de la Mujer", + "fr": "Journée internationale de la femme", + "gu": "આંતરરાષ્ટ્રીય મહિલા દિવસ", + "hi": "अंतर्राष्ट्रीय महिला दिवस", + "hy": "Կանանց միջազգային օր", + "ka": "ქალთა საერთაშორისო დღე", + "kk": "Халықаралық әйелдер күні", + "kn": "ಅಂತರರಾಷ್ಟ್ರೀಯ ಮಹಿಳಾ ದಿನ", + "ko_KP": "국제부녀절", + "ky": "Аялдардын эл аралык күнү", + "ml": "അന്താരാഷ്ട്ര വനിതാ ദിനം", + "mn": "Олон улсын эмэгтэйчүүдийн өдөр", + "mr": "आंतरराष्ट्रीय महिला दिन", + "ne": "अन्तर्राष्ट्रिय महिला दिवस", + "pa": "ਅੰਤਰਰਾਸ਼ਟਰੀ ਮਹਿਲਾ ਦਿਵਸ", + "pt_AO": "Dia Internacional da Mulher", + "pt_BR": "Dia Internacional da Mulher", + "pt_GW": "Dia Internacional da Mulher", + "ro": "Ziua internatională a femeii", + "ru": "Международный женский день", + "ru_KG": "Международный женский день", + "ta": "சர்வதேச மகளிர் தினம்", + "te": "అంతర్జాతీయ మహిళా దినోత్సవం", + "th": "วันสตรีสากล", + "tk": "Halkara zenanlar güni", + "uk": "Міжнародний жіночий день", + "zh_CN": "国际妇女节", + "zh_TW": "國際婦女節" + }, + "countries": [ + "AM", + "AO", + "BF", + "BR", + "CN", + "GE", + "GQ", + "GW", + "IN", + "KG", + "KP", + "KZ", + "MD", + "MN", + "NP", + "NR", + "PS", + "RU", + "SL", + "TH", + "TM", + "UA" + ] + }, + { + "id": "international_women_s_rights_day", + "msgid": "International Women's Rights Day", + "new_comment": "", + "comment": "International Women's Rights Day.", + "messages": { + "en_US": "International Women's Rights Day", + "km": "ទិវាអន្តរជាតិនារី", + "lo": "ວັນແມ່ຍິງສາກົນ", + "th": "วันสตรีสากล" + }, + "countries": [ + "KH", + "LA" + ] + }, + { + "id": "international_worker_s_day", + "msgid": "International Worker's Day", + "new_comment": "", + "comment": "International Worker's Day.", + "messages": { + "dv": "ބައިނަލްއަޤްވާމީ މަސައްކަތްތެރިންގެ ދުވަސް", + "en_SL": "International Worker's Day", + "en_TL": "World Labour Day", + "en_US": "International Worker's Day", + "es": "Dia Mundial del Trabajador", + "pt_AO": "Dia Internacional do Trabalhador", + "pt_TL": "Dia Mundial do Trabalhador", + "tet": "Loron Mundiál Serbisu-na'in sira nian", + "th": "วันกรรมกรสากล", + "uk": "Міжнародний день трудящих" + }, + "countries": [ + "AO", + "MV", + "SL", + "TL", + "VE" + ] + }, + { + "id": "international_workers_day", + "msgid": "International Workers' Day", + "new_comment": "", + "comment": "International Workers' Day.", + "messages": { + "am": "የዓለም የሠራተኞች (የላብአደሮች) ቀን", + "ar": "اليوم العالمي للعمال", + "da": "Arbejdernes kampdag", + "en_ET": "International Workers' Day", + "en_US": "International Workers' Day", + "es": "Día Internacional de los Trabajadores", + "fa_AF": "روز جهانی کارگر", + "fi": "Kansainvälinen työn päivä", + "is": "Frídagur verkalýðsins", + "kl": "Sulisartut ulluat", + "ko_KP": "전세계근로자들의 국제적명절", + "lt": "Tarptautinė darbo diena", + "no": "Arbeidernes internasjonale kampdag", + "ps_AF": "د کارګرو نړیواله ورځ", + "pt_MZ": "Dia Internacional dos Trabalhadores", + "si_LK": "ලොක කම්කරු දිනය", + "sq": "Dita Ndërkombëtare e Punëtorëve", + "sv": "Internationella arbetardagen", + "sw": "Sikukuu ya Wafanyakazi Ulimwenguni", + "ta_LK": "சர்வதேச தொழிலாளர்கள் தினம்", + "uk": { + "AL": "Міжнародний день трудящих", + "CU": "Міжнародний день трудящих", + "GL": "День трудящих", + "LT": "Міжнародний день трудящих", + "MZ": "Міжнародний день трудящих" + } + }, + "countries": [ + "AF", + "AL", + "CU", + "ET", + "GL", + "KP", + "LK", + "LT", + "MZ", + "TZ" + ] + }, + { + "id": "international_workers_solidarity_day", + "msgid": "International Workers' Solidarity Day", + "new_comment": "", + "comment": "International Workers' Solidarity Day.", + "messages": { + "ar": "يوم التضامن العمالي العالمي", + "en_US": "International Workers' Solidarity Day", + "et": "töörahva rahvusvahelise solidaarsuse päev", + "ky": "Эмгекчилердин эл аралык тилектештик күнү", + "ro": "Ziua internaţională a solidarităţii oamenilor muncii", + "ru": { + "RU": "День международной солидарности трудящихся", + "TJ": "Международный день солидарности трудящихся" + }, + "ru_KG": "День международной солидарности трудящихся", + "tg": "Рӯзи байналхалқии якдилии меҳнаткашон", + "th": "วันสมานฉันท์กรรมกรสากล", + "uk": "День міжнародної солідарності трудящих", + "zh_CN": "国际工人团结日" + }, + "countries": [ + "EE", + "KG", + "MD", + "RU", + "TJ", + "UA" + ] + }, + { + "id": "investiture_of_captains_regent", + "msgid": "Investiture of Captains Regent", + "new_comment": "", + "comment": "Investiture of Captains Regent.", + "messages": { + "en_US": "Investiture of Captains Regent", + "it": "Investitura Capitani Reggenti", + "uk": "Інвеститура капітанів-регентів" + }, + "countries": [ + "SM" + ] + }, + { + "id": "iqbal_day", + "msgid": "Iqbal Day", + "new_comment": "", + "comment": "Iqbal Day.", + "messages": { + "en_PK": "Iqbal Day", + "en_US": "Iqbal Day", + "ur_PK": "یوم اقبال" + }, + "countries": [ + "PK" + ] + }, + { + "id": "iranian_oil_industry_nationalization_day", + "msgid": "Iranian Oil Industry Nationalization Day", + "new_comment": "", + "comment": "Iranian Oil Industry Nationalization Day.", + "messages": { + "en_US": "Iranian Oil Industry Nationalization Day", + "fa_IR": "روز ملی شدن صنعت نفت ایران" + }, + "countries": [ + "IR" + ] + }, + { + "id": "islamic_emirate_victory_day", + "msgid": "Islamic Emirate Victory Day", + "new_comment": "", + "comment": "Islamic Emirate Victory Day.", + "messages": { + "en_US": "Islamic Emirate Victory Day", + "fa_AF": "روز پیروزی امارت اسلامی", + "ps_AF": "د اسلامي امارت د بریا ورځ" + }, + "countries": [ + "AF" + ] + }, + { + "id": "islamic_new_year", + "msgid": "Islamic New Year", + "new_comment": "", + "comment": "Islamic New Year.", + "messages": { + "ar": "رأس السنة الهجرية", + "ar_EG": "رأس السنة الهجرية", + "ar_SD": "رأس السنة الهجرية", + "coa_CC": "Tahun Baru Hijriah", + "dv": "ހިޖުރީ އާ އަހަރު ފެށޭ ދުވަސް", + "en_CC": "Islamic New Year", + "en_US": "Islamic New Year", + "es": { + "AR": "Año Nuevo Musulmán (Hégira)", + "EH": "Primer día del año de la Hégira" + }, + "fr": { + "DJ": "Nouvel an musulman", + "DZ": "Awal Moharram", + "EG": "Fête de l'Hégire", + "EH": "Premier jour de l'an de l'Hégire", + "MA": "Nouvel an musulman" + }, + "fr_NE": "Jour de l'An musulman", + "id": "Tahun Baru Islam", + "kab": "Aseggas amaynut ahijri", + "ms": "Awal Tahun Hijrah", + "ms_MY": "Awal Muharam", + "th": "วันขึ้นปีใหม่อิสลาม", + "uk": "Ісламський Новий рік" + }, + "countries": [ + "AE", + "AR", + "BH", + "BN", + "CC", + "DJ", + "DZ", + "EG", + "EH", + "ID", + "IQ", + "JO", + "KW", + "MA", + "MR", + "MV", + "MY", + "NE", + "OM", + "PS", + "SD", + "SY", + "TN" + ] + }, + { + "id": "islamic_new_year_day", + "msgid": "Islamic New Year Day", + "new_comment": "", + "comment": "Islamic New Year Day.", + "messages": { + "ar": "عيد رأس السنة الهجرية", + "en_US": "Islamic New Year Day", + "fr": "Hégire" + }, + "countries": [ + "LB", + "LY", + "YE" + ] + }, + { + "id": "islamic_new_year_joint_holiday", + "msgid": "Islamic New Year Joint Holiday", + "new_comment": "", + "comment": "Islamic New Year Joint Holiday.", + "messages": { + "en_US": "Islamic New Year Joint Holiday", + "id": "Cuti Bersama Tahun Baru Islam", + "th": "หยุดร่วมพิเศษวันขึ้นปีใหม่อิสลาม", + "uk": "Додатковий вихідний на Ісламський Новий рік" + }, + "countries": [ + "ID" + ] + }, + { + "id": "islamic_republic_day", + "msgid": "Islamic Republic Day", + "new_comment": "", + "comment": "Islamic Republic Day.", + "messages": { + "en_US": "Islamic Republic Day", + "fa_IR": "روز جمهوری اسلامی" + }, + "countries": [ + "IR" + ] + }, + { + "id": "islamic_revolution_day", + "msgid": "Islamic Revolution Day", + "new_comment": "", + "comment": "Islamic Revolution Day.", + "messages": { + "en_US": "Islamic Revolution Day", + "fa_IR": "پیروزی انقلاب اسلامی" + }, + "countries": [ + "IR" + ] + }, + { + "id": "islander_day", + "msgid": "Islander Day", + "new_comment": "", + "comment": "Islander Day.", + "messages": { + "ar": "يوم الجزيرة", + "en_CA": "Islander Day", + "en_US": "Islander Day", + "fr": "Fête des Insulaires", + "th": "วันชาวเกาะ (พรินซ์เอดเวิร์ดไอแลนด์)" + }, + "countries": [ + "CA" + ] + }, + { + "id": "isra_and_mi_raj", + "msgid": "Isra' and Mi'raj", + "new_comment": "", + "comment": "Isra' and Mi'raj.", + "messages": { + "ar": { + "AE": "ليلة المعراج", + "DJ": "الإسراء والمعراج", + "JO": "ليلة المعراج", + "KW": "ليلة المعراج", + "LY": "ذكرى الإسراء والمعراج", + "OM": "الإسراء والمعراج", + "PS": "ذكرى الإسراء والمعراج", + "YE": "ذكرى الإسراء والمعراج" + }, + "bn": "শব-ই-মেরাজ", + "en_IN": "Shab-I-Miraj", + "en_US": "Isra' and Mi'raj", + "fa_IR": "مبعث رسول اکرم (ص)", + "fr": "Al Isra et Al Mirague", + "gu": "શબ-એ-મેરાજ", + "hi": "शब-ए-मेराज", + "id": "Isra Mikraj Nabi Muhammad", + "kn": "ಶಬ್-ಎ-ಮೆರಾಜ್", + "ml": "ഷബ്-എ-മെറാജ്", + "mr": "शब-ए-मेराज", + "ms": "Israk dan Mikraj", + "ms_MY": "Israk dan Mikraj", + "pa": "ਸ਼ਬ-ਏ-ਮੇਰਾਜ", + "ta": "ஷப்-எ-மெராஜ்", + "te": "షబ్-ఎ-మీరాజ్", + "th": "วันเมี๊ยะราจ", + "uk": "Вознесіння пророка Мухаммада" + }, + "countries": [ + "AE", + "BN", + "DJ", + "ID", + "IN", + "IR", + "JO", + "KW", + "LY", + "MY", + "OM", + "PS", + "YE" + ] + }, + { + "id": "italian_forces_evacuation_day", + "msgid": "Italian Forces Evacuation Day", + "new_comment": "", + "comment": "Italian Forces Evacuation Day.", + "messages": { + "ar": "عيد إجلاء الطليان", + "en_US": "Italian Forces Evacuation Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "italy_day", + "msgid": "Italy Day", + "new_comment": "", + "comment": "Italy Day.", + "messages": { + "en_US": "Italy Day", + "es": "Día de Italia", + "uk": "День Італії" + }, + "countries": [ + "UY" + ] + }, + { + "id": "j_v_snellman_day", + "msgid": "J. V. Snellman Day", + "new_comment": "", + "comment": "J. V. Snellman Day.", + "messages": { + "en_US": "J. V. Snellman Day", + "fi": "J.V. Snellmanin päivä", + "sv_FI": "Snellmansdagen", + "th": "วันเจ.วี. สเนลล์มาน", + "uk": "День Ю. В. Снелльмана" + }, + "countries": [ + "FI" + ] + }, + { + "id": "j_v_snellman_day_day_of_finnish_heritage", + "msgid": "J. V. Snellman Day, Day of Finnish Heritage", + "new_comment": "", + "comment": "J. V. Snellman Day, Day of Finnish Heritage.", + "messages": { + "en_US": "J. V. Snellman Day, Day of Finnish Heritage", + "fi": "J.V. Snellmanin päivä, suomalaisuuden päivä", + "sv_FI": "Snellmansdagen, finskhetens dag", + "th": "วันเจ.วี. สเนลล์มาน, วันมรดกฟินแลนด์", + "uk": "День Ю. В. Снелльмана, День фінської спадщини" + }, + "countries": [ + "FI" + ] + }, + { + "id": "jags_mccartney_day", + "msgid": "JAGS McCartney Day", + "new_comment": "", + "comment": "JAGS McCartney Day.", + "messages": { + "en_TC": "JAGS McCartney Day", + "en_US": "JAGS McCartney Day" + }, + "countries": [ + "TC" + ] + }, + { + "id": "james_ronald_webster_day", + "msgid": "James Ronald Webster Day", + "new_comment": "", + "comment": "James Ronald Webster Day.", + "messages": { + "en_AI": "James Ronald Webster Day", + "en_US": "James Ronald Webster Day" + }, + "countries": [ + "AI" + ] + }, + { + "id": "jamhuri_day", + "msgid": "Jamhuri Day", + "new_comment": "", + "comment": "Jamhuri Day.", + "messages": { + "en_KE": "Jamhuri Day", + "en_US": "Jamhuri Day", + "sw": "Siku ya Jamhuri" + }, + "countries": [ + "KE" + ] + }, + { + "id": "jan_hus_day", + "msgid": "Jan Hus Day", + "new_comment": "", + "comment": "Jan Hus Day.", + "messages": { + "cs": "Den upálení mistra Jana Husa", + "en_US": "Jan Hus Day", + "sk": "Deň upálenia majstra Jána Husa", + "uk": "День спалення Яна Гуса" + }, + "countries": [ + "CZ" + ] + }, + { + "id": "janai_poornima", + "msgid": "Janai Poornima", + "new_comment": "", + "comment": "Janai Poornima.", + "messages": { + "en_US": "Janai Poornima", + "kn": "ಜನೈ ಪೂರ್ಣಿಮಾ", + "ne": "जनै पूर्णिमा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "janmashtami_smarta", + "msgid": "Janmashtami (Smarta)", + "new_comment": "", + "comment": "Janmashtami (Smarta).", + "messages": { + "bn": "জন্মাষ্টমী (স্মার্ত)", + "en_IN": "Janmashtami (Smarta)", + "en_US": "Janmashtami (Smarta)", + "gu": "જન્માષ્ટમી (સ્માર્ત)", + "hi": "जन्माष्टमी (स्मार्त)", + "kn": "ಜನ್ಮಾಷ್ಟಮಿ (ಸ್ಮಾರ್ತ)", + "ml": "ജന്മാഷ്ടമി (സ്മാർത്ത)", + "mr": "गोकुळाष्टमी (स्मार्त)", + "pa": "ਜਨਮਾਸ਼ਟਮੀ (ਸਮਾਰਤ)", + "ta": "ஜனமாஷ்டமி (ஸ்மார்த்த)", + "te": "జన్మాష్టమి (స్మార్త)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "janmashtami_vaishnava", + "msgid": "Janmashtami (Vaishnava)", + "new_comment": "", + "comment": "Janmashtami (Vaishnava).", + "messages": { + "bn": "জন্মাষ্টমী (বৈষ্ণব)", + "en_IN": "Janmashtami (Vaishnava)", + "en_US": "Janmashtami (Vaishnava)", + "gu": "જન્માષ્ટમી (વૈષ્ણવ)", + "hi": "जन्माष्टमी (वैष्णव)", + "kn": "ಜನ್ಮಾಷ್ಟಮಿ (ವೈಷ್ಣವ)", + "ml": "ജന്മാഷ്ടമി (വൈഷ്ണവ)", + "mr": "गोकुळाष्टमी (वैष्णव)", + "pa": "ਜਨਮਾਸ਼ਟਮੀ (ਵੈਸ਼ਨਵ)", + "ta": "ஜனமாஷ்டமி (வைஷ்ணவ)", + "te": "జన్మాష్టమి (వైష్ణవ)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "january_25th_revolution_and_national_police_day", + "msgid": "January 25th Revolution and National Police Day", + "new_comment": "", + "comment": "January 25th Revolution and National Police Day.", + "messages": { + "ar_EG": "ثورة ٢٥ يناير وعيد الشرطة", + "en_US": "January 25th Revolution and National Police Day", + "fr": "Révolution de 25 Janvier et la fête de la Police" + }, + "countries": [ + "EG" + ] + }, + { + "id": "jean_sibelius_day_day_of_finnish_music", + "msgid": "Jean Sibelius Day, Day of Finnish Music", + "new_comment": "", + "comment": "Jean Sibelius Day, Day of Finnish Music.", + "messages": { + "en_US": "Jean Sibelius Day, Day of Finnish Music", + "fi": "Jean Sibeliuksen päivä, suomalaisen musiikin päivä", + "sv_FI": "Sibeliusdagen, den finländska musikens dag", + "th": "วันฌอง ซิเบลิอุส, วันดนตรีฟินแลนด์", + "uk": "День Жана Сібеліуса, День фінської музики" + }, + "countries": [ + "FI" + ] + }, + { + "id": "jefferson_davis_birthday", + "msgid": "Jefferson Davis Birthday", + "new_comment": "", + "comment": "Jefferson Davis Birthday.", + "messages": { + "en_US": "Jefferson Davis Birthday", + "th": "วันเกิดเจฟเฟอร์สัน เดวิส" + }, + "countries": [ + "US" + ] + }, + { + "id": "jharkhand_formation_day", + "msgid": "Jharkhand Formation Day", + "new_comment": "", + "comment": "Jharkhand Formation Day.", + "messages": { + "bn": "ঝাড়খণ্ড গঠন দিবস", + "en_IN": "Jharkhand Formation Day", + "en_US": "Jharkhand Formation Day", + "gu": "ઝારખંડ સ્થાપના દિવસ", + "hi": "झारखंड स्थापना दिवस", + "kn": "ಜಾರ್ಖಂಡ್ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "ഝാർഖണ്ഡ് രൂപീകരണദിനം", + "mr": "झारखंड स्थापना दिन", + "pa": "ਝਾਰਖੰਡ ਗਠਨ ਦਿਵਸ", + "ta": "ஜார்கண்ட் உருவாக்க நாள்", + "te": "ఝార్ఖండ్ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "john_pombe_magufuli_inauguration_day", + "msgid": "John Pombe Magufuli Inauguration Day", + "new_comment": "", + "comment": "John Pombe Magufuli Inauguration Day.", + "messages": { + "en_US": "John Pombe Magufuli Inauguration Day", + "sw": "Sikukuu ya Kuapishwa kwa John Pombe Magufuli" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "john_pombe_magufuli_s_funeral", + "msgid": "John Pombe Magufuli's Funeral", + "new_comment": "", + "comment": "John Pombe Magufuli's Funeral.", + "messages": { + "en_US": "John Pombe Magufuli's Funeral", + "sw": "Mazishi ya John Pombe Magufuli" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "joint_memorial_service_for_fallen_soldiers", + "msgid": "Joint Memorial Service for Fallen Soldiers", + "new_comment": "", + "comment": "Joint Memorial Service for Fallen Soldiers.", + "messages": { + "en_US": "Joint Memorial Service for Fallen Soldiers", + "ko": "전몰군인 합동위령제", + "th": "วันร่วมรำลึกทหารที่เสียชีวิต" + }, + "countries": [ + "KR" + ] + }, + { + "id": "jor_mela_fatehgarh_sahib", + "msgid": "Jor Mela Fatehgarh Sahib", + "new_comment": "", + "comment": "Jor Mela Fatehgarh Sahib.", + "messages": { + "bn": "জোড় মেলা ফতেহগড় সাহিব", + "en_IN": "Jor Mela Fatehgarh Sahib", + "en_US": "Jor Mela Fatehgarh Sahib", + "gu": "જોડ મેળો ફતેહગઢ સાહિબ", + "hi": "जोड़ मेला फतेहगढ़ साहिब", + "kn": "ಜೋರ್ ಮೇಳಾ ಫತೇಹಗಢ ಸಾಹಿಬ್", + "ml": "ജോർ മേള ഫതേഹ്ഗഡ് സാഹിബ്", + "mr": "जोर मेळा फतेहगढ साहिब", + "pa": "ਜੋੜ ਮੇਲਾ ਫਤਿਹਗੜ੍ਹ ਸਾਹਿਬ", + "ta": "ஜோர் மேளா ஃபதேகர்க் சாஹிப்", + "te": "జోర్ మేళా ఫతేహ్‌గఢ్ సాహిబ్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "jos_celso_barbosa_day", + "msgid": "José Celso Barbosa Day", + "new_comment": "", + "comment": "José Celso Barbosa Day.", + "messages": { + "en_US": "José Celso Barbosa Day", + "th": "วันโฮเซ เซลโซ บาร์โบซา" + }, + "countries": [ + "US" + ] + }, + { + "id": "jos_de_diego_day", + "msgid": "José de Diego Day", + "new_comment": "", + "comment": "José de Diego Day.", + "messages": { + "en_US": "José de Diego Day", + "th": "วันโฮเซ เด ดิเอโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "juan_pablo_duarte_day", + "msgid": "Juan Pablo Duarte Day", + "new_comment": "", + "comment": "Juan Pablo Duarte Day.", + "messages": { + "en_US": "Juan Pablo Duarte Day", + "es": "Día de Duarte", + "uk": "День Дуарте" + }, + "countries": [ + "DO" + ] + }, + { + "id": "juan_santamar_a_day", + "msgid": "Juan Santamaría Day", + "new_comment": "", + "comment": "Juan Santamaría Day.", + "messages": { + "en_US": "Juan Santamaría Day", + "es": "Día de Juan Santamaría", + "uk": "День Хуана Сантамарії" + }, + "countries": [ + "CR" + ] + }, + { + "id": "jujuy_exodus_day", + "msgid": "Jujuy Exodus Day", + "new_comment": "", + "comment": "Jujuy Exodus Day.", + "messages": { + "en_US": "Jujuy Exodus Day", + "es": "Día del Éxodo Jujeño", + "uk": "День Виходу Хухуя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "jujuy_political_autonomy_day", + "msgid": "Jujuy Political Autonomy Day", + "new_comment": "", + "comment": "Jujuy Political Autonomy Day.", + "messages": { + "en_US": "Jujuy Political Autonomy Day", + "es": "Autonomía Política de Jujuy", + "uk": "День політичної автономії Хухуя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "julian_easter_sunday", + "msgid": "Julian Easter Sunday", + "new_comment": "", + "comment": "Julian Easter Sunday.", + "messages": { + "ar": "عيد الفصح حسب التقويم الشرقي", + "en_US": "Julian Easter Sunday" + }, + "countries": [ + "SY" + ] + }, + { + "id": "july_14_revolution", + "msgid": "July 14 Revolution", + "new_comment": "", + "comment": "July 14 Revolution.", + "messages": { + "ar": "ثورة 14 تموز", + "en_US": "July 14 Revolution" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "july_17_revolution", + "msgid": "July 17 Revolution", + "new_comment": "", + "comment": "July 17 Revolution.", + "messages": { + "ar": "ثورة 17 تموز", + "en_US": "July 17 Revolution" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "july_22_revolution_day", + "msgid": "July 22 Revolution Day", + "new_comment": "", + "comment": "July 22 Revolution Day.", + "messages": { + "en_GM": "July 22 Revolution Day", + "en_US": "July 22 Revolution Day" + }, + "countries": [ + "GM" + ] + }, + { + "id": "july_23_revolution_day", + "msgid": "July 23 Revolution Day", + "new_comment": "", + "comment": "July 23 Revolution Day.", + "messages": { + "ar_EG": "عيد ثورة ٢٣ يوليو", + "en_US": "July 23 Revolution Day", + "fr": "Fête de la Révolution du 23 Juillet" + }, + "countries": [ + "EG" + ] + }, + { + "id": "july_mass_uprising_day", + "msgid": "July Mass Uprising Day", + "new_comment": "", + "comment": "July Mass Uprising Day.", + "messages": { + "ar": "يوم الانتفاضة الشعبية في يوليو", + "bn": "জুলাই গণ-অভ্যুত্থান দিবস", + "en_BD": "July Mass Uprising Day", + "en_US": "July Mass Uprising Day" + }, + "countries": [ + "BD" + ] + }, + { + "id": "jumu_atul_wida", + "msgid": "Jumu'atul-Wida", + "new_comment": "", + "comment": "Jumu'atul-Wida.", + "messages": { + "ar": "جمعة الوداع", + "bn": { + "BD": "জুমাতুল বিদা", + "IN": "জামাত-উল-ভিদা" + }, + "en_BD": "Jumu'atul-Wida", + "en_IN": "Jamat-Ul-Vida", + "en_US": "Jumu'atul-Wida", + "gu": "જમાત-ઉલ-વિદા", + "hi": "जमात-उल-विदा", + "kn": "ಜಮಾತ್-ಉಲ್-ವಿದಾ", + "ml": "ജമാഅത്ത്-ഉൽ-വിദ", + "mr": "जमात-उल-विदा", + "pa": "ਜਮਾਤ-ਉਲ-ਵਿਦਾ", + "ta": "ஜமாத்-உல்-விடா", + "te": "జమాత్-ఉల్-విదా" + }, + "countries": [ + "BD", + "IN" + ] + }, + { + "id": "june_30_revolution_day", + "msgid": "June 30 Revolution Day", + "new_comment": "", + "comment": "June 30 Revolution Day.", + "messages": { + "ar_EG": "عيد ثورة ٣٠ يونيو", + "en_US": "June 30 Revolution Day", + "fr": "Fête de la Révolution du 30 Juin" + }, + "countries": [ + "EG" + ] + }, + { + "id": "juneteenth_day", + "msgid": "Juneteenth Day", + "new_comment": "", + "comment": "Juneteenth Day.", + "messages": { + "en_US": "Juneteenth Day", + "gu": "જુનટીન્થ ડે", + "hi": "जूनटीन्थ डे" + }, + "countries": [ + "XCME" + ] + }, + { + "id": "juneteenth_national_independence_day", + "msgid": "Juneteenth National Independence Day", + "new_comment": "", + "comment": "Juneteenth National Independence Day.", + "messages": { + "en_US": "Juneteenth National Independence Day", + "gu": "જુનટીન્થ રાષ્ટ્રીય સ્વતંત્રતા દિવસ", + "hi": "जूनटीन्थ राष्ट्रीय स्वतंत्रता दिवस", + "th": "วันประกาศอิสรภาพแห่งชาติจูนทีนท์" + }, + "countries": [ + "US", + "XNYS" + ] + }, + { + "id": "kalevala_day_day_of_finnish_culture", + "msgid": "Kalevala Day, Day of Finnish Culture", + "new_comment": "", + "comment": "Kalevala Day, Day of Finnish Culture.", + "messages": { + "en_US": "Kalevala Day, Day of Finnish Culture", + "fi": "Kalevalan päivä, suomalaisen kulttuurin päivä", + "sv_FI": "Kalevaladagen, den finska kulturens dag", + "th": "วันกาเลวาลา, วันวัฒนธรรมฟินแลนด์", + "uk": "День Калевали, День фінської культури" + }, + "countries": [ + "FI" + ] + }, + { + "id": "kamehameha_day", + "msgid": "Kamehameha Day", + "new_comment": "", + "comment": "Kamehameha Day.", + "messages": { + "en_US": "Kamehameha Day", + "th": "วันคาเมฮาเมฮา" + }, + "countries": [ + "US" + ] + }, + { + "id": "karaka_chaturthi_karwa_chouth", + "msgid": "Karaka Chaturthi (Karwa Chouth)", + "new_comment": "", + "comment": "Karaka Chaturthi (Karwa Chouth).", + "messages": { + "bn": "কারাকা চতুর্থী (কারওয়া চৌথ)", + "en_IN": "Karaka Chaturthi (Karwa Chouth)", + "en_US": "Karaka Chaturthi (Karwa Chouth)", + "gu": "કરકા ચતુર્થી (કરવા ચોથ)", + "hi": "कराका चतुर्थी (करवा चौथ)", + "kn": "ಕರಕ ಚತುರ್ಥಿ (ಕರ್ವಾ ಚೌತ್)", + "ml": "കാരക ചതുർത്ഥി (കർവാ ചൗത്ത്)", + "mr": "करक चतुर्थी (करवा चौथ)", + "pa": "ਕਰਕ ਚਤੁਰਥੀ (ਕਰਵਾ ਚੌਥ)", + "ta": "காரக சதுர்த்தி (கர்வா சௌத்)", + "te": "కరక చతుర్థి (కర్వా చౌత్)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "karen_new_year", + "msgid": "Karen New Year", + "new_comment": "", + "comment": "Karen New Year.", + "messages": { + "en_US": "Karen New Year", + "my": "ကရင်နှစ်သစ်ကူးနေ့", + "th": "วันขึ้นปีใหม่กะเหรี่ยง" + }, + "countries": [ + "MM" + ] + }, + { + "id": "karnataka_rajyotsav", + "msgid": "Karnataka Rajyotsava", + "new_comment": "", + "comment": "Karnataka Rajyotsav.", + "messages": { + "bn": "কর্ণাটক রাজ্যোৎসব", + "en_IN": "Karnataka Rajyotsava", + "en_US": "Karnataka Rajyotsava", + "gu": "કર્ણાટક રાજ્યોત્સવ", + "hi": "कर्नाटक राज्योत्सव", + "kn": "ಕನ್ನಡ ರಾಜ್ಯೋತ್ಸವ", + "ml": "കർണാടക രാജ്യോത്സവം", + "mr": "कर्नाटक राज्योत्सव", + "pa": "ਕਰਨਾਟਕ ਰਾਜਯੋਤਸਵ", + "ta": "கர்நாடக ராஜ்யோற்சவம்", + "te": "కర్ణాటక రాజ్యోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "kartar_singh_sarabha_s_martyrdom_day", + "msgid": "Kartar Singh Sarabha's Martyrdom Day", + "new_comment": "", + "comment": "Kartar Singh Sarabha's Martyrdom Day.", + "messages": { + "bn": "কর্তার সিং সারাভার শহীদ দিবস", + "en_IN": "Kartar Singh Sarabha's Shaheedi Diwas", + "en_US": "Kartar Singh Sarabha's Martyrdom Day", + "gu": "કરતાર સિંહ સરાભાનો શહીદી દિવસ", + "hi": "करतार सिंह सराभा शहीदी दिवस", + "kn": "ಕರ್ತಾರ್ ಸಿಂಗ್ ಸರಾಭಾ ಶಹೀದಿ ದಿನ", + "ml": "കർത്താർ സിംഗ് സരാഭയുടെ ശഹീദ് ദിനം", + "mr": "करतार सिंह सराभा शहीद दिन", + "pa": "ਕਰਤਾਰ ਸਿੰਘ ਸਰਾਭਾ ਜੀ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "கர்தார் சிங் சராபாவின் ஷஹீதி தினம்", + "te": "కర్తార్ సింగ్ సరాభా షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "karwa_chouth", + "msgid": "Karwa Chouth", + "new_comment": "", + "comment": "Karwa Chouth.", + "messages": { + "bn": "করওয়া চৌথ", + "en_IN": "Karwa Chouth", + "en_US": "Karwa Chouth", + "gu": "કરવા ચોથ", + "hi": "करवा चौथ", + "kn": "ಕರ್ವಾ ಚೌತ್", + "ml": "കർവാ ചൗത്", + "mr": "करवा चौथ", + "pa": "ਕਰਵਾ ਚੌਥ", + "ta": "கர்வா சௌத்", + "te": "కర్వా చౌత్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "kashmir_solidarity_day", + "msgid": "Kashmir Solidarity Day", + "new_comment": "", + "comment": "Kashmir Solidarity Day.", + "messages": { + "en_PK": "Kashmir Solidarity Day", + "en_US": "Kashmir Solidarity Day", + "ur_PK": "یوم یکجہتی کشمیر" + }, + "countries": [ + "PK" + ] + }, + { + "id": "kazakhstan_s_people_solidarity_holiday", + "msgid": "Kazakhstan's People Solidarity Holiday", + "new_comment": "", + "comment": "Kazakhstan's People Solidarity Holiday.", + "messages": { + "en_US": "Kazakhstan's People Solidarity Holiday", + "kk": "Қазақстан халқының бірлігі мерекесі", + "uk": "Свято єдності народу Казахстану" + }, + "countries": [ + "KZ" + ] + }, + { + "id": "kenyatta_day", + "msgid": "Kenyatta Day", + "new_comment": "", + "comment": "Kenyatta Day.", + "messages": { + "en_KE": "Kenyatta Day", + "en_US": "Kenyatta Day", + "sw": "Siku ya Kenyatta" + }, + "countries": [ + "KE" + ] + }, + { + "id": "kerala_foundation_day", + "msgid": "Kerala Foundation Day", + "new_comment": "", + "comment": "Kerala Foundation Day.", + "messages": { + "bn": "কেরালা প্রতিষ্ঠা দিবস", + "en_IN": "Kerala Foundation Day", + "en_US": "Kerala Foundation Day", + "gu": "કેરળ સ્થાપના દિવસ", + "hi": "केरल स्थापना दिवस", + "kn": "ಕೇರಳ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "കേരളപ്പിറവി", + "mr": "केरळ स्थापना दिन", + "pa": "ਕੇਰਲ ਸਥਾਪਨਾ ਦਿਵਸ", + "ta": "கேரள நாள்", + "te": "కేరళ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "khmer_new_year_s_day", + "msgid": "Khmer New Year's Day", + "new_comment": "", + "comment": "Khmer New Year's Day.", + "messages": { + "en_US": "Khmer New Year's Day", + "km": "ពិធីបុណ្យចូលឆ្នាំថ្មីប្រពៃណីជាតិ", + "th": "เทศกาลขึ้นปีใหม่ประเพณี" + }, + "countries": [ + "KH" + ] + }, + { + "id": "khmer_new_year_s_replacement_holiday", + "msgid": "Khmer New Year's Replacement Holiday", + "new_comment": "", + "comment": "Khmer New Year's Replacement Holiday.", + "messages": { + "en_US": "Khmer New Year's Replacement Holiday", + "km": "ថ្ងៃឈប់សម្រាកសងជំនួសឲ្យពិធីបុណ្យចូលឆ្នាំថ្មីប្រពៃណីជាតិ", + "th": "วันหยุดชดเชยเทศกาลขึ้นปีใหม่ประเพณี" + }, + "countries": [ + "KH" + ] + }, + { + "id": "kim_il_sung_s_birthday", + "msgid": "Kim Il-Sung's Birthday", + "new_comment": "", + "comment": "Kim Il-Sung's Birthday.", + "messages": { + "en_US": "Kim Il-Sung's Birthday", + "ko_KP": "김일성의 생일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "kim_jong_il_s_birthday", + "msgid": "Kim Jong Il's Birthday", + "new_comment": "", + "comment": "Kim Jong Il's Birthday.", + "messages": { + "en_US": "Kim Jong Il's Birthday", + "ko_KP": "김정일의 생일" + }, + "countries": [ + "KP" + ] + }, + { + "id": "king_abdullah_s_return_from_medical_treatment_abroad", + "msgid": "King Abdullah's Return from Medical Treatment Abroad", + "new_comment": "", + "comment": "King Abdullah's Return from Medical Treatment Abroad.", + "messages": { + "ar": "عطلة رسمية بمناسبة عودة الملك عبد الله", + "bn": "রাজা আবদুল্লাহর প্রত্যাবর্তন উপলক্ষে সরকারি ছুটি", + "en_US": "King Abdullah's Return from Medical Treatment Abroad" + }, + "countries": [ + "SA" + ] + }, + { + "id": "king_charles_iii_s_coronation", + "msgid": "King Charles III's Coronation", + "new_comment": "", + "comment": "King Charles III's Coronation.", + "messages": { + "en_GB": { + "FK": "HM The King's Coronation", + "KY": "Coronation of His Majesty King Charles III" + }, + "en_GS": "Coronation of King Charles III", + "en_US": "King Charles III's Coronation" + }, + "countries": [ + "FK", + "GS", + "KY" + ] + }, + { + "id": "king_s_birthday", + "msgid": "King's Birthday", + "new_comment": "", + "comment": "King's Birthday.", + "messages": { + "coa_CC": "Hari Ulang Tahun Raja", + "en_AI": "Celebration of the Birthday of His Majesty the King", + "en_AU": "King's Birthday", + "en_CC": "King's Birthday", + "en_GB": { + "FK": "HM The King's Birthday", + "GI": "King's Birthday", + "KY": "King's Birthday", + "SH": "King's Birthday", + "TV": "King's Birthday" + }, + "en_GS": "King's Birthday", + "en_MS": "King's Birthday", + "en_NF": "King's Birthday", + "en_NU": "King's Birthday", + "en_TC": "King's Birthday", + "en_US": "King's Birthday", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระราชาธิบดี", + "tvl": "Asofanau Tupu" + }, + "countries": [ + "AI", + "AU", + "CC", + "FK", + "GI", + "GS", + "KY", + "MS", + "NF", + "NU", + "SH", + "TC", + "TV" + ] + }, + { + "id": "king_s_day", + "msgid": "King's Day", + "new_comment": "", + "comment": "King's Day.", + "messages": { + "en_BQ": "King's Day", + "en_US": "King's Day", + "fy": "Keningsdei", + "nl": "Koningsdag", + "pap_AW": "Aña di Rey", + "pap_BQ": "Dia di Rei", + "pap_CW": "Dia di Rey", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระราชาธิบดี", + "uk": "День короля" + }, + "countries": [ + "AW", + "BQ", + "CW", + "NL", + "SX" + ] + }, + { + "id": "kingdom_day", + "msgid": "Kingdom Day", + "new_comment": "", + "comment": "Kingdom Day.", + "messages": { + "en_US": "Kingdom Day", + "nl": "Koninkrijksdag", + "pap_CW": "Dia di Reino", + "uk": "День Королівства" + }, + "countries": [ + "CW", + "SX" + ] + }, + { + "id": "knabenschiessen", + "msgid": "Knabenschiessen", + "new_comment": "", + "comment": "Knabenschiessen.", + "messages": { + "de": "Knabenschiessen", + "en_US": "Knabenschiessen", + "fr": "Knabenschiessen", + "it": "Knabenschiessen", + "th": "คนาเบนชิสเซน", + "uk": "Кнабеншісен" + }, + "countries": [ + "CH" + ] + }, + { + "id": "knowledge_and_literacy_day", + "msgid": "Knowledge and Literacy Day", + "new_comment": "", + "comment": "Knowledge and Literacy Day.", + "messages": { + "en_US": "Knowledge and Literacy Day", + "hy": "Գիտելիքի եւ դպրության օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "knowledge_writing_and_literacy_day", + "msgid": "Knowledge, Writing and Literacy Day", + "new_comment": "", + "comment": "Knowledge, Writing and Literacy Day.", + "messages": { + "en_US": "Knowledge, Writing and Literacy Day", + "hy": "Գիտելիքի, գրի եւ դպրության օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "korean_new_year", + "msgid": "Korean New Year", + "new_comment": "", + "comment": "Korean New Year.", + "messages": { + "en_US": "Korean New Year", + "ko": "설날", + "ko_KP": "설명절", + "th": "เทศกาลซอลลัล" + }, + "countries": [ + "KP", + "KR" + ] + }, + { + "id": "kosrae_disability_day", + "msgid": "Kosrae Disability Day", + "new_comment": "", + "comment": "Kosrae Disability Day.", + "messages": { + "en_FM": "Kosrae Disability Day", + "en_US": "Kosrae Disability Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "kosrae_liberation_day", + "msgid": "Kosrae Liberation Day", + "new_comment": "", + "comment": "Kosrae Liberation Day.", + "messages": { + "en_FM": "Kosrae Liberation Day", + "en_US": "Kosrae Liberation Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "kosrae_state_constitution_day", + "msgid": "Kosrae State Constitution Day", + "new_comment": "", + "comment": "Kosrae State Constitution Day.", + "messages": { + "en_FM": "Kosrae State Constitution Day", + "en_US": "Kosrae State Constitution Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "la_paz_day", + "msgid": "La Paz Day", + "new_comment": "", + "comment": "La Paz Day.", + "messages": { + "en_US": "La Paz Day", + "es": "Día del departamento de La Paz", + "uk": "День департаменту Ла-Пас" + }, + "countries": [ + "BO" + ] + }, + { + "id": "la_rioja_day", + "msgid": "La Rioja Day", + "new_comment": "", + "comment": "La Rioja Day.", + "messages": { + "ca": "Dia de La Rioja", + "en_US": "La Rioja Day", + "es": "Día de La Rioja", + "th": "วันลารีโอฆา", + "uk": "День Ріохи" + }, + "countries": [ + "ES" + ] + }, + { + "id": "la_rioja_foundation_day", + "msgid": "La Rioja Foundation Day", + "new_comment": "", + "comment": "La Rioja Foundation Day.", + "messages": { + "en_US": "La Rioja Foundation Day", + "es": "Día de la fundación de La Rioja", + "uk": "День заснування Ла-Ріохи" + }, + "countries": [ + "AR" + ] + }, + { + "id": "la_tablada", + "msgid": "La Tablada", + "new_comment": "", + "comment": "La Tablada.", + "messages": { + "en_US": "La Tablada", + "es": "La Tablada", + "uk": "Ла Таблада" + }, + "countries": [ + "BO" + ] + }, + { + "id": "labor_and_social_concord_day", + "msgid": "Labor and Social Concord Day", + "new_comment": "", + "comment": "Labor and Social Concord Day.", + "messages": { + "en_US": "Labor and Social Concord Day", + "fr": "Fête du Travail et de la Concorde sociale", + "th": "วันแรงงานและความสมานฉันท์ทางสังคม", + "uk": "День праці та Суспільної згоди" + }, + "countries": [ + "FR" + ] + }, + { + "id": "labor_day", + "msgid": "Labor Day", + "new_comment": "", + "comment": "Labor Day.", + "messages": { + "ar": { + "BH": "عيد العمال", + "CA": "عيد العمال", + "DJ": "عيد العمال", + "DZ": "عيد العمال", + "IQ": "عيد العمال العالمي", + "JO": "عيد العمال", + "LB": "عيد العمل", + "LY": "عيد العمال", + "MA": "عيد العمال", + "MR": "عيد العمال", + "PS": "عيد العمال", + "SY": "عيد العمال", + "TN": "عيد العمال", + "UA": "عيد العمال", + "XTSE": "عيد العمال", + "YE": "عيد العمال" + }, + "ar_EG": "عيد العمال", + "be": "Свята працы", + "ca": { + "AD": "Festa del treball", + "ES": "Festa del Treball" + }, + "cnr": "Praznik rada", + "cs": "Svátek práce", + "de": { + "AT": "Staatsfeiertag", + "BE": "Tag der Arbeit", + "CH": "Tag der Arbeit", + "DE": "Erster Mai", + "LI": "Tag der Arbeit", + "LU": "Tag der Arbeit", + "XETR": "Erster Mai" + }, + "el": { + "CY": "Πρωτομαγιά", + "GR": "Εργατική Πρωτομαγιά" + }, + "en_AI": "Labour Day", + "en_AU": "Labour Day", + "en_BF": "Labour Day", + "en_BM": "Labour Day", + "en_BQ": "Labour Day", + "en_CA": "Labour Day", + "en_CI": "Labor Day", + "en_CX": "Labour Day", + "en_CY": "Labour Day", + "en_GD": "Labour Day", + "en_GM": "Labour Day", + "en_GY": "Labour Day", + "en_HK": "Labour Day", + "en_KE": "Labour Day", + "en_LC": "Labour Day", + "en_MO": "Labour Day", + "en_MS": "Labour Day", + "en_MU": "Labour Day", + "en_PH": "Labor Day", + "en_PK": "Labour Day", + "en_SC": "Labour Day", + "en_SG": "Labour Day", + "en_TT": "Labour Day", + "en_US": "Labor Day", + "es": { + "AR": "Día del Trabajo", + "BO": "Día del Trabajo", + "CL": "Día Nacional del Trabajo", + "CO": "Día del Trabajo", + "DO": "Día del Trabajo", + "EC": "Día del Trabajo", + "ES": "Fiesta del Trabajo", + "GT": "Día del Trabajo", + "HN": "Día del Trabajo", + "MX": "Día del Trabajo", + "NI": "Día del Trabajo", + "PA": "Día del Trabajo", + "PE": "Día del Trabajo", + "SV": "Día del Trabajo", + "XMAD": "Día del Trabajo", + "XMEX": "Día del Trabajo" + }, + "fil": "Araw ng Paggawa", + "fr": { + "BE": "Fête du Travail", + "BF": "Fête du travail", + "CA": "Fête du Travail", + "CD": "Fête du travail", + "CF": "Fête du Travail", + "CG": "Fête du Travail", + "CH": "Fête du Travail", + "CI": "Fête du travail", + "DJ": "Fête du travail", + "DZ": "Fête du Travail", + "EG": "Fête du Travail", + "FR": "Fête du Travail", + "GA": "Fête du Travail", + "GN": "Fête du Travail", + "LB": "Fête du Travail", + "LU": "Fête du Travail", + "MA": "Fête du Travail", + "ML": "Fête du Travail", + "RW": "Journée du Travail", + "TG": "Fête du travail", + "XTSE": "Fête du Travail" + }, + "fr_BJ": "Fête du Travail", + "fr_MC": "Le jour de la Fête du Travail", + "fr_SN": "Fête du Travail", + "gu": "શ્રમ દિવસ", + "hi": "श्रम दिवस", + "hr": "Praznik rada", + "hu": "A Munka ünnepe", + "hy": "Աշխատանքի օր", + "is": "Verkalýðsdagurinn", + "it": "Festa del lavoro", + "it_IT": "Festa del Lavoro", + "kab": "Ass n yixeddamen", + "ko": "노동절", + "ky": "Эмгек майрамы", + "lb": "Dag vun der Aarbecht", + "lv": "Darba svētki", + "mg": "Fetin'ny asa", + "mk": "Ден на трудот", + "ms_MY": "Hari Pekerja", + "nl": "Dag van de Arbeid", + "no": "Arbeidernes dag", + "pap_AW": "Dia di Obrero", + "pap_BQ": "Dia di labor", + "pap_CW": "Dia di Obrero", + "pt_MO": "Dia do Trabalhador", + "pt_PT": "Dia do Trabalhador", + "ro": "Ziua Muncii", + "ru": { + "BY": "Праздник труда", + "LV": "День труда" + }, + "ru_KG": "Праздник труда", + "rw": "Umunsi Mukuru w'Umurimo", + "sk": "Sviatok práce", + "sl": "praznik dela", + "sr": "Празник рада", + "sw": "Siku ya Kazi", + "th": "วันแรงงาน", + "uk": "День праці", + "ur_PK": "یوم مزدور", + "zh_CN": "劳动节", + "zh_HK": "勞動節", + "zh_MO": "勞動節", + "zh_TW": "勞動節" + }, + "countries": [ + "AD", + "AI", + "AM", + "AR", + "AT", + "AU", + "AW", + "BE", + "BF", + "BH", + "BJ", + "BM", + "BO", + "BQ", + "BY", + "CA", + "CD", + "CF", + "CG", + "CH", + "CI", + "CL", + "CN", + "CO", + "CW", + "CX", + "CY", + "CZ", + "DE", + "DJ", + "DO", + "DZ", + "EC", + "EG", + "ES", + "FR", + "GA", + "GD", + "GM", + "GN", + "GR", + "GT", + "GY", + "HK", + "HN", + "HR", + "HU", + "IQ", + "IS", + "IT", + "JO", + "KE", + "KG", + "KR", + "LB", + "LC", + "LI", + "LU", + "LV", + "LY", + "MA", + "MC", + "ME", + "MG", + "MK", + "ML", + "MO", + "MR", + "MS", + "MU", + "MX", + "MY", + "NI", + "NO", + "PA", + "PE", + "PH", + "PK", + "PS", + "PT", + "RO", + "RS", + "RW", + "SC", + "SG", + "SI", + "SK", + "SN", + "SR", + "SV", + "SX", + "SY", + "TG", + "TN", + "TT", + "TW", + "UA", + "US", + "XCME", + "XETR", + "XMAD", + "XMEX", + "XNYS", + "XTAI", + "XTSE", + "YE" + ] + }, + { + "id": "labor_day_and_international_workers_solidarity_day", + "msgid": "Labor Day and International Workers' Solidarity Day", + "new_comment": "", + "comment": "Labor Day and International Workers' Solidarity Day.", + "messages": { + "bg": "Ден на труда и на международната работническа солидарност", + "en_US": "Labor Day and International Workers' Solidarity Day", + "uk": "День праці та міжнародної солідарності трудящих" + }, + "countries": [ + "BG" + ] + }, + { + "id": "labor_thanksgiving_day", + "msgid": "Labor Thanksgiving Day", + "new_comment": "", + "comment": "Labor Thanksgiving Day.", + "messages": { + "en_US": "Labor Thanksgiving Day", + "ja": "勤労感謝の日", + "th": "วันขอบคุณแรงงาน" + }, + "countries": [ + "JP" + ] + }, + { + "id": "labour_and_solidarity_day", + "msgid": "Labour and Solidarity Day", + "new_comment": "", + "comment": "Labour and Solidarity Day.", + "messages": { + "en_US": "Labour and Solidarity Day", + "tr": "Emek ve Dayanışma Günü", + "uk": "День праці та солідарності" + }, + "countries": [ + "TR" + ] + }, + { + "id": "lady_of_altagracia", + "msgid": "Lady of Altagracia", + "new_comment": "", + "comment": "Lady of Altagracia.", + "messages": { + "en_US": "Lady of Altagracia", + "es": "Día de la Altagracia", + "uk": "День Богоматері Альтаграсія" + }, + "countries": [ + "DO" + ] + }, + { + "id": "lady_of_camarin_day", + "msgid": "Lady of Camarin Day", + "new_comment": "", + "comment": "Lady of Camarin Day.", + "messages": { + "en_US": "Lady of Camarin Day", + "th": "วันแม่พระแห่งคามาริน" + }, + "countries": [ + "US" + ] + }, + { + "id": "lag_ba_omer_lag_baomer", + "msgid": "Lag BaOmer", + "new_comment": "", + "comment": "Lag Ba'omer (Lag BaOmer).", + "messages": { + "en_US": "Lag BaOmer", + "he": "ל״ג בעומר", + "th": "วันแล็ก บาโอเมอร์", + "uk": "Лаг ба-Омер" + }, + "countries": [ + "IL" + ] + }, + { + "id": "land_s_autonomy_day", + "msgid": "Åland's Autonomy Day", + "new_comment": "", + "comment": "Åland's Autonomy Day.", + "messages": { + "en_US": "Åland's Autonomy Day", + "fi": "Ahvenanmaan itsehallintopäivä", + "sv_FI": "Ålands självstyrelsedag", + "th": "วันปกครองตนเองหมู่เกาะโอลันด์", + "uk": "День автономії Аландських островів" + }, + "countries": [ + "FI" + ] + }, + { + "id": "landing_of_the_33_patriots", + "msgid": "Landing of the 33 Patriots", + "new_comment": "", + "comment": "Landing of the 33 Patriots.", + "messages": { + "en_US": "Landing of the 33 Patriots", + "es": "Desembarco de los 33 Orientales", + "uk": "День висадки 33 патріотів" + }, + "countries": [ + "UY" + ] + }, + { + "id": "lao_federation_of_trade_union_s_day", + "msgid": "Lao Federation of Trade Union's Day", + "new_comment": "", + "comment": "Lao Federation of Trade Union's Day.", + "messages": { + "en_US": "Lao Federation of Trade Union's Day", + "lo": "ວັນສ້າງຕັ້ງສະຫະພັນກໍາມະບານລາວ", + "th": "วันก่อตั้งสหพันธ์กำมะบานลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_national_constitution_day", + "msgid": "Lao National Constitution Day", + "new_comment": "", + "comment": "Lao National Constitution Day.", + "messages": { + "en_US": "Lao National Constitution Day", + "lo": "ວັນລັດຖະທໍາມະນູນແຫ່ງຊາດ", + "th": "วันรัฐธรรมนูญแห่งชาติ" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_national_day", + "msgid": "Lao National Day", + "new_comment": "", + "comment": "Lao National Day.", + "messages": { + "en_US": "Lao National Day", + "lo": "ວັນຊາດ", + "th": "วันชาติ สปป. ลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_national_mass_media_and_publishing_day", + "msgid": "Lao National Mass Media and Publishing Day", + "new_comment": "", + "comment": "Lao National Mass Media and Publishing Day.", + "messages": { + "en_US": "Lao National Mass Media and Publishing Day", + "lo": "ວັນສື່ມວນຊົນແຫ່ງຊາດ ແລະ ວັນພິມຈໍາໜ່າຍ", + "th": "วันสื่อสารมวลชนและการพิมพ์แห่งชาติ" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_new_year_s_day", + "msgid": "Lao New Year's Day", + "new_comment": "", + "comment": "Lao New Year's Day.", + "messages": { + "en_US": "Lao New Year's Day", + "lo": "ບຸນປີໃໝ່ລາວ", + "th": "วันปีใหม่ลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_new_year_s_day_special", + "msgid": "Lao New Year's Day (Special)", + "new_comment": "", + "comment": "Lao New Year's Day (Special).", + "messages": { + "en_US": "Lao New Year's Day (Special)", + "lo": "ພັກບຸນປີໃໝ່ລາວ", + "th": "ชดเชยวันปีใหม่ลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_people_s_armed_force_day", + "msgid": "Lao People's Armed Force Day", + "new_comment": "", + "comment": "Lao People's Armed Force Day.", + "messages": { + "en_US": "Lao People's Armed Force Day", + "lo": "ວັນສ້າງຕັ້ງກອງທັບປະຊາຊົນລາວ", + "th": "วันก่อตั้งกองทัพประชาชนลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_people_s_revolutionary_youth_union_day", + "msgid": "Lao People's Revolutionary Youth Union Day", + "new_comment": "", + "comment": "Lao People's Revolutionary Youth Union Day.", + "messages": { + "en_US": "Lao People's Revolutionary Youth Union Day", + "lo": "ວັນສ້າງຕັ້ງສູນກາງຊາວໜຸ່ມປະຊາຊົນປະຕິວັດລາວ", + "th": "วันก่อตั้งศูนย์ซาวหนุ่มประชาชนปฏิวัติลาว" + }, + "countries": [ + "LA" + ] + }, + { + "id": "lao_year_end_bank_holiday", + "msgid": "Lao Year-End Bank Holiday", + "new_comment": "", + "comment": "Lao Year-End Bank Holiday.", + "messages": { + "en_US": "Lao Year-End Bank Holiday", + "lo": "ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ", + "th": "วันหยุดสิ้นปีของสถาบันการเงิน" + }, + "countries": [ + "LA" + ] + }, + { + "id": "last_day_of_carnival", + "msgid": "Last Day of Carnival", + "new_comment": "", + "comment": "Last Day of Carnival.", + "messages": { + "en_US": "Last Day of Carnival", + "it_IT": "Ultimo giorno di carnevale", + "th": "วันสุดท้ายของเทศกาลคาร์นิวัล" + }, + "countries": [ + "IT" + ] + }, + { + "id": "last_day_of_the_year", + "msgid": "Last Day of the Year", + "new_comment": "", + "comment": "Last Day of the Year.", + "messages": { + "en_US": "Last Day of the Year", + "it": "Ultimo giorno dell'anno", + "it_IT": "Ultimo giorno dell'anno", + "th": "วันสิ้นปี" + }, + "countries": [ + "IT", + "VA" + ] + }, + { + "id": "last_day_of_year", + "msgid": "Last Day of Year", + "new_comment": "", + "comment": "Last Day of Year.", + "messages": { + "en_US": "Last Day of Year", + "fa_IR": "آخرین روز سال" + }, + "countries": [ + "IR" + ] + }, + { + "id": "late_president_chiang_kai_shek_s_birthday", + "msgid": "Late President Chiang Kai-shek's Birthday", + "new_comment": "", + "comment": "Late President Chiang Kai-shek's Birthday.", + "messages": { + "en_US": "Late President Chiang Kai-shek's Birthday", + "th": "วันคล้ายวันเกิดอดีตประธานาธิบดีเจียงไคเช็ก", + "zh_CN": "先总统 蔣公诞辰纪念日", + "zh_TW": "先總統 蔣公誕辰紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "late_president_chiang_kai_shek_s_memorial_day", + "msgid": "Late President Chiang Kai-shek's Memorial Day", + "new_comment": "", + "comment": "Late President Chiang Kai-shek's Memorial Day.", + "messages": { + "en_US": "Late President Chiang Kai-shek's Memorial Day", + "th": "วันรำลึกถึงการอสัญกรรมอดีตประธานาธิบดีเจียงไคเช็ก", + "zh_CN": "先总统蔣公逝世纪念日", + "zh_TW": "先總統蔣公逝世紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "late_summer_bank_holiday", + "msgid": "Late Summer Bank Holiday", + "new_comment": "", + "comment": "Late Summer Bank Holiday.", + "messages": { + "en_GB": "Late Summer Bank Holiday", + "en_US": "Late Summer Bank Holiday", + "th": "วันหยุดช่วงปลายฤดูร้อนของธนาคาร" + }, + "countries": [ + "GB", + "GI" + ] + }, + { + "id": "lavity_stoutt_s_birthday", + "msgid": "Lavity Stoutt's Birthday", + "new_comment": "", + "comment": "Lavity Stoutt's Birthday.", + "messages": { + "en_US": "Lavity Stoutt's Birthday", + "en_VG": "The Anniversary of the Birth of Hamilton Lavity Stoutt" + }, + "countries": [ + "VG" + ] + }, + { + "id": "laxmi_pooja", + "msgid": "Laxmi Pooja", + "new_comment": "", + "comment": "Laxmi Pooja.", + "messages": { + "en_US": "Laxmi Pooja", + "kn": "ಲಕ್ಷ್ಮಿ ಪೂಜೆ", + "ne": "लक्ष्मीपूजा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "laylat_al_qadr", + "msgid": "Laylat al-Qadr", + "new_comment": "", + "comment": "Laylat al-Qadr.", + "messages": { + "ar": "ليلة القدر", + "bn": "শবে কদর", + "en_BD": "Shab-e-Qadr", + "en_GM": "Lialat-Ul-Qadr", + "en_US": "Laylat al-Qadr", + "fr_NE": "Laylat al-Qadr" + }, + "countries": [ + "BD", + "GM", + "NE" + ] + }, + { + "id": "lee_jackson_day", + "msgid": "Lee Jackson Day", + "new_comment": "", + "comment": "Lee Jackson Day.", + "messages": { + "en_US": "Lee Jackson Day", + "th": "วันลี-แจ็กสัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "legislative_election_day", + "msgid": "Legislative Election Day", + "new_comment": "", + "comment": "Legislative Election Day.", + "messages": { + "en_US": "Legislative Election Day", + "id": "Hari Pemilihan Legislatif", + "th": "วันเลือกตั้งสมาชิกสภาผู้แทนราษฎร", + "uk": "День парламентських виборів" + }, + "countries": [ + "ID" + ] + }, + { + "id": "liberation_day", + "msgid": "Liberation Day", + "new_comment": "", + "comment": "Liberation Day.", + "messages": { + "ar": { + "KW": "يوم التحرير", + "LY": "يوم التحرير", + "SY": "عيد التحرير", + "YE": "ثورة 14 أكتوبر المجيدة" + }, + "bg": "Ден на Освобождението на България от османско иго", + "cs": "Den osvobození", + "en_FM": "Liberation Day", + "en_GB": "Liberation Day", + "en_GS": "Liberation Day", + "en_SC": "Liberation Day", + "en_US": "Liberation Day", + "es": "Triunfo de la Revolución", + "fa_AF": "روز آزادی", + "fr": { + "GA": "Journée de la Libération", + "RW": "Journée de la Libération", + "TG": "Fête de la libération nationale" + }, + "fy": "Befrijingsdei", + "hu": "A felszabadulás ünnepe", + "it_IT": "Anniversario della Liberazione", + "ko": "광복절", + "ko_KP": "조국해방절", + "nl": "Bevrijdingsdag", + "ps_AF": "د ازادۍ ورځ", + "rw": "Umunsi wo Kwibohora", + "sk": "Deň oslobodenia", + "sq": "Dita e Çlirimit", + "th": { + "IT": "วันปลดปล่อย", + "KR": "วันฉลองอิสรภาพ", + "NL": "วันประกาศอิสรภาพ" + }, + "uk": { + "AL": "День визволення", + "BG": "День визволення Болгарії від османського іга", + "CU": "Тріумф революції", + "CZ": "День визволення", + "HU": "День визволення", + "NL": "День визволення" + } + }, + "countries": [ + "AF", + "AL", + "BG", + "CU", + "CZ", + "FK", + "FM", + "GA", + "GS", + "HU", + "IT", + "KP", + "KR", + "KW", + "LY", + "NL", + "RW", + "SC", + "SY", + "TG", + "YE" + ] + }, + { + "id": "liberation_day_guam", + "msgid": "Liberation Day (Guam)", + "new_comment": "", + "comment": "Liberation Day (Guam).", + "messages": { + "en_US": "Liberation Day (Guam)", + "th": "วันปลดปล่อย (กวม)" + }, + "countries": [ + "US" + ] + }, + { + "id": "liberation_day_reunification_day", + "msgid": "Liberation Day/Reunification Day", + "new_comment": "", + "comment": "Liberation Day/Reunification Day.", + "messages": { + "en_US": "Liberation Day/Reunification Day", + "th": "วันปลดปล่อยภาคใต้เพื่อรวมชาติ", + "vi": "Ngày Chiến thắng" + }, + "countries": [ + "VN" + ] + }, + { + "id": "liberty_day", + "msgid": "Liberty Day", + "new_comment": "", + "comment": "Liberty Day.", + "messages": { + "en_US": "Liberty Day", + "gu": "લિબર્ટી ડે", + "hi": "लिबर्टी डे", + "th": "วันเลิกทาส" + }, + "countries": [ + "US", + "XNYS" + ] + }, + { + "id": "lincoln_s_and_washington_s_birthdays", + "msgid": "Lincoln's and Washington's Birthdays", + "new_comment": "", + "comment": "Lincoln's and Washington's Birthdays.", + "messages": { + "en_US": "Lincoln's and Washington's Birthdays", + "th": "วันลิงคอล์นและวอชิงตัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "lincoln_s_birthday", + "msgid": "Lincoln's Birthday", + "new_comment": "", + "comment": "Lincoln's Birthday.", + "messages": { + "en_US": "Lincoln's Birthday", + "gu": "લિંકનનો જન્મદિવસ", + "hi": "लिंकन का जन्मदिन", + "th": "วันเกิดลิงคอล์น" + }, + "countries": [ + "US", + "XNYS" + ] + }, + { + "id": "lincoln_washington_presidents_day", + "msgid": "Lincoln/Washington Presidents' Day", + "new_comment": "", + "comment": "Lincoln/Washington Presidents' Day.", + "messages": { + "en_US": "Lincoln/Washington Presidents' Day", + "th": "วันประธานาธิบดีลิงคอล์น/วอชิงตัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "little_feast", + "msgid": "Little Feast", + "new_comment": "", + "comment": "Little Feast.", + "messages": { + "ar": "عيد الصغير", + "en_US": "Little Feast" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "local_election_day", + "msgid": "Local Election Day", + "new_comment": "", + "comment": "Local Election Day.", + "messages": { + "en_TL": "Local Election Day", + "en_US": "Local Election Day", + "id": "Hari Pemilihan Kepala Daerah", + "ko": "지방선거일", + "pt_TL": "Dia de eleições locais", + "tet": "Loron eleisaun lokál nian", + "th": "วันเลือกตั้งท้องถิ่น", + "uk": "День місцевих виборів" + }, + "countries": [ + "ID", + "KR", + "TL" + ] + }, + { + "id": "local_self_government_day", + "msgid": "Local Self-Government Day", + "new_comment": "", + "comment": "Local Self-Government Day.", + "messages": { + "en_US": "Local Self-Government Day", + "hy": "Տեղական ինքնակառավարման օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "lohri", + "msgid": "Lohri", + "new_comment": "", + "comment": "Lohri.", + "messages": { + "bn": "লোহরি", + "en_IN": "Lohri", + "en_US": "Lohri", + "gu": "લોહરી", + "hi": "लोहड़ी", + "kn": "ಲೋಹ್ರಿ", + "ml": "ലോഹരി", + "mr": "लोहरी", + "pa": "ਲੋਹੜੀ", + "ta": "லோஹ்ரி", + "te": "లోహ్రీ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "lord_buddha_s_parinirvana", + "msgid": "Lord Buddha's Parinirvana", + "new_comment": "", + "comment": "Lord Buddha's Parinirvana.", + "messages": { + "dz": "སངས་རྒྱས་བཅོམ་ལྡན་འདས་ཀྱི་དུས་ཆེན་ལྔ་འཛོམས་ངལ་གསོལ།", + "en_US": "Lord Buddha's Parinirvana" + }, + "countries": [ + "BT" + ] + }, + { + "id": "lord_shri_parshuram_s_birthday", + "msgid": "Lord Shri Parshuram's Birthday", + "new_comment": "", + "comment": "Lord Shri Parshuram's Birthday.", + "messages": { + "bn": "ভগবান শ্রী পরশুরামের জন্মজয়ন্তী", + "en_IN": "Bhagvan Shri Parshuram's Jayanti", + "en_US": "Lord Shri Parshuram's Birthday", + "gu": "ભગવાન શ્રી પરશુરામ જયંતિ", + "hi": "भगवान श्री परशुराम जयंती", + "kn": "ಭಗವಾನ್ ಶ್ರೀ ಪರಶುರಾಮ ಜಯಂತಿ", + "ml": "ഭഗവാൻ ശ്രീ പരശുരാമ ജയന്തി", + "mr": "भगवान श्री परशुराम जयंती", + "pa": "ਭਗਵਾਨ ਸ਼੍ਰੀ ਪਰਸ਼ੁਰਾਮ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "பகவான் ஸ்ரீ பரசுராமர் ஜெயந்தி", + "te": "భగవాన్ శ్రీ పరశురామ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "los_santos_uprising_day", + "msgid": "Los Santos Uprising Day", + "new_comment": "", + "comment": "Los Santos Uprising Day.", + "messages": { + "en_US": "Los Santos Uprising Day", + "es": "Primer Grito de Independencia", + "uk": "День початку повстання у Лос-Сантос" + }, + "countries": [ + "PA" + ] + }, + { + "id": "losar", + "msgid": "Losar", + "new_comment": "", + "comment": "Losar.", + "messages": { + "dz": "གནམ་ལོ་གསར་ཚེས་ཀྱིས་དུས་སྟོན་ངལ་གསོལ།", + "en_US": "Losar" + }, + "countries": [ + "BT" + ] + }, + { + "id": "louis_riel_day", + "msgid": "Louis Riel Day", + "new_comment": "", + "comment": "Louis Riel Day.", + "messages": { + "ar": "يوم لويس رئيل", + "en_CA": "Louis Riel Day", + "en_US": "Louis Riel Day", + "fr": "Journée Louis Riel", + "th": "วันหลุยส์เรียล (แมนิโทบา)" + }, + "countries": [ + "CA" + ] + }, + { + "id": "loy_krathong", + "msgid": "Loy Krathong", + "new_comment": "", + "comment": "Loy Krathong.", + "messages": { + "en_US": "Loy Krathong", + "th": "วันลอยกระทง", + "uk": "Лой Кратонг" + }, + "countries": [ + "TH" + ] + }, + { + "id": "luis_mu_oz_rivera_day", + "msgid": "Luis Muñoz Rivera Day", + "new_comment": "", + "comment": "Luis Muñoz Rivera Day.", + "messages": { + "en_US": "Luis Muñoz Rivera Day", + "th": "วันหลุยส์ มุญโญซ ริเบรา" + }, + "countries": [ + "US" + ] + }, + { + "id": "lunar_new_year", + "msgid": "Lunar New Year", + "new_comment": "", + "comment": "Lunar New Year.", + "messages": { + "en_US": "Lunar New Year", + "id": "Tahun Baru Imlek", + "mn": "Цагаан сар", + "ms": "Tahun Baru Cina", + "th": { + "BN": "วันตรุษจีน", + "ID": "วันตรุษจีน", + "VN": "วันตรุษเต๊ต" + }, + "uk": "Китайський Новий рік", + "vi": "Tết Nguyên Đán" + }, + "countries": [ + "BN", + "ID", + "MN", + "VN" + ] + }, + { + "id": "lunar_new_year_joint_holiday", + "msgid": "Lunar New Year Joint Holiday", + "new_comment": "", + "comment": "Lunar New Year Joint Holiday.", + "messages": { + "en_US": "Lunar New Year Joint Holiday", + "id": "Cuti Bersama Tahun Baru Imlek", + "th": "หยุดร่วมพิเศษวันตรุษจีน", + "uk": "Додатковий вихідний на Китайський Новий рік" + }, + "countries": [ + "ID" + ] + }, + { + "id": "lunar_new_year_s_eve", + "msgid": "Lunar New Year's Eve", + "new_comment": "", + "comment": "Lunar New Year's Eve.", + "messages": { + "en_US": "Lunar New Year's Eve", + "th": "วันก่อนวันตรุษเต๊ต", + "vi": "Giao thừa Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "lyndon_baines_johnson_day", + "msgid": "Lyndon Baines Johnson Day", + "new_comment": "", + "comment": "Lyndon Baines Johnson Day.", + "messages": { + "en_US": "Lyndon Baines Johnson Day", + "th": "วันลินดอน เบนส์ จอห์นสัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "macao_s_a_r_establishment_day", + "msgid": "Macao S.A.R. Establishment Day", + "new_comment": "", + "comment": "Macao S.A.R. Establishment Day.", + "messages": { + "en_MO": "Macao S.A.R. Establishment Day", + "en_US": "Macao S.A.R. Establishment Day", + "pt_MO": "Dia Comemorativo do Estabelecimento da Região Administrativa Especial de Macau", + "th": "วันสถาปนาเขตบริหารพิเศษมาเก๊า", + "zh_CN": "澳门特别行政区成立纪念日", + "zh_MO": "澳門特別行政區成立紀念日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "macau_city_day", + "msgid": "Macau City Day", + "new_comment": "", + "comment": "Macau City Day.", + "messages": { + "en_MO": "Macau City Day", + "en_US": "Macau City Day", + "pt_MO": "Dia da Cidade de Macau", + "th": "วันเมืองมาเก๊า", + "zh_CN": "澳门市日", + "zh_MO": "澳門市日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "macedonian_revolutionary_struggle_day", + "msgid": "Macedonian Revolutionary Struggle Day", + "new_comment": "", + "comment": "Macedonian Revolutionary Struggle Day.", + "messages": { + "en_US": "Macedonian Revolutionary Struggle Day", + "mk": "Ден на македонската револуционерна борба", + "uk": "День македонської революційної боротьби" + }, + "countries": [ + "MK" + ] + }, + { + "id": "madaraka_day", + "msgid": "Madaraka Day", + "new_comment": "", + "comment": "Madaraka Day.", + "messages": { + "en_KE": "Madaraka Day", + "en_US": "Madaraka Day", + "sw": "Siku ya Madaraka" + }, + "countries": [ + "KE" + ] + }, + { + "id": "madhya_pradesh_foundation_day", + "msgid": "Madhya Pradesh Foundation Day", + "new_comment": "", + "comment": "Madhya Pradesh Foundation Day.", + "messages": { + "bn": "মধ্যপ্রদেশ প্রতিষ্ঠা দিবস", + "en_IN": "Madhya Pradesh Foundation Day", + "en_US": "Madhya Pradesh Foundation Day", + "gu": "મધ્ય પ્રદેશ સ્થાપના દિવસ", + "hi": "मध्य प्रदेश स्थापना दिवस", + "kn": "ಮಧ್ಯ ಪ್ರದೇಶ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "മധ്യപ്രദേശ് സ്ഥാപനദിനം", + "mr": "मध्य प्रदेश स्थापना दिन", + "pa": "ਮੱਧ ਪ੍ਰਦੇਸ਼ ਸਥਾਪਨਾ ਦਿਵਸ", + "ta": "மத்திய பிரதேச நாள்", + "te": "మధ్యప్రదేశ్ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "madrid_day", + "msgid": "Madrid Day", + "new_comment": "", + "comment": "Madrid Day.", + "messages": { + "ca": "Festa de la Comunitat de Madrid", + "en_US": "Madrid Day", + "es": "Fiesta de la Comunidad de Madrid", + "th": "วันมาดริด", + "uk": "День Мадрида" + }, + "countries": [ + "ES" + ] + }, + { + "id": "magh_bihu", + "msgid": "Magh Bihu", + "new_comment": "", + "comment": "Magh Bihu.", + "messages": { + "bn": "মাঘ বিহু", + "en_IN": "Magh Bihu", + "en_US": "Magh Bihu", + "gu": "માઘ બિહુ", + "hi": "माघ बिहू", + "kn": "ಮಾಘ್ ಬಿಹು", + "ml": "മാഘ് ബിഹു", + "mr": "माघ बिहू", + "pa": "ਮਾਘ ਬਿਹੂ", + "ta": "மாக் பிஹூ", + "te": "భోగాలీ బిహు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maghe_sankranti", + "msgid": "Maghe Sankranti", + "new_comment": "", + "comment": "Maghe Sankranti.", + "messages": { + "en_US": "Maghe Sankranti", + "kn": "ಮಾಘ ಸಂಕ್ರಾಂತಿ", + "ne": "माघे संक्रान्ति" + }, + "countries": [ + "NP" + ] + }, + { + "id": "maha_ashtami", + "msgid": "Maha Ashtami", + "new_comment": "", + "comment": "Maha Ashtami.", + "messages": { + "en_US": "Maha Ashtami", + "kn": "ಮಹಾ ಅಷ್ಟಮಿ", + "ne": "महा अष्टमी" + }, + "countries": [ + "NP" + ] + }, + { + "id": "maha_chakri_memorial_day", + "msgid": "Maha Chakri Memorial Day", + "new_comment": "", + "comment": "Maha Chakri Memorial Day.", + "messages": { + "en_US": "Maha Chakri Memorial Day", + "th": "วันที่ระลึกมหาจักรี", + "uk": "День памʼяті Чакрі" + }, + "countries": [ + "TH" + ] + }, + { + "id": "maha_navami", + "msgid": "Maha Navami", + "new_comment": "", + "comment": "Maha Navami.", + "messages": { + "en_US": "Maha Navami", + "kn": "ಮಹಾ ನವಮಿ", + "ne": "महा नवमी" + }, + "countries": [ + "NP" + ] + }, + { + "id": "maha_shivaratri", + "msgid": "Maha Shivaratri", + "new_comment": "", + "comment": "Maha Shivaratri.", + "messages": { + "bn": "মহাশিবরাত্রি", + "en_IN": "Maha Shivaratri", + "en_MU": "Maha Shivaratree", + "en_US": "Maha Shivaratri", + "gu": "મહાશિવરાત્રી", + "hi": "महाशिवरात्रि", + "kn": { + "IN": "ಮಹಾ ಶಿವರಾತ್ರಿ", + "NP": "ಮಹಾಶಿವರಾತ್ರಿ" + }, + "ml": "മഹാ ശിവരാത്രി", + "mr": "महाशिवरात्री", + "ne": "महाशिवरात्रि", + "pa": "ਮਹਾ ਸ਼ਿਵਰਾਤਰੀ", + "ta": "மகா சிவராத்திரி", + "te": "మహాశివరాత్రి" + }, + "countries": [ + "IN", + "MU", + "NP", + "XNSE" + ] + }, + { + "id": "maha_sivarathri_day", + "msgid": "Maha Sivarathri Day", + "new_comment": "", + "comment": "Maha Sivarathri Day.", + "messages": { + "en_US": "Maha Sivarathri Day", + "si_LK": "මහ සිවරාත්රි දිනය", + "ta_LK": "மகா சிவராத்திரி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "maha_vishuva_sankranti", + "msgid": "Maha Vishuva Sankranti / Pana Sankranti", + "new_comment": "", + "comment": "Maha Vishuva Sankranti.", + "messages": { + "bn": "মহা বিষুব সংক্রান্তি / পানা সংক্রান্তি", + "en_IN": "Maha Vishuva Sankranti / Pana Sankranti", + "en_US": "Maha Vishuva Sankranti / Pana Sankranti", + "gu": "મહા વિષુવ સંક્રાંતિ / પાના સંક્રાંતિ", + "hi": "महा विषुव संक्रांति / पण संक्रांति", + "kn": "ಮಹಾ ವಿಷುವ ಸಂಕ್ರಾಂತಿ / ಪನ ಸಂಕ್ರಾಂತಿ", + "ml": "മഹാ വിഷുവ സംക്രാന്തി / പനാ സംക്രാന്തി", + "mr": "महाविश्व संक्रांती / पण संक्रांती", + "pa": "ਮਹਾਂ ਵਿਸ਼ੁਵ ਸੰਕ੍ਰਾਂਤੀ / ਪਾਨਾ ਸੰਕ੍ਰਾਂਤੀ", + "ta": "மகா விஷுவ சங்கராந்தி / பானா சங்கராந்தி", + "te": "మహా విషువ సంక్రాంతి / పానా సంక్రాంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "mahanavami", + "msgid": "Mahanavami", + "new_comment": "", + "comment": "Mahanavami.", + "messages": { + "bn": "মহানবমী", + "en_IN": "Mahanavami", + "en_US": "Mahanavami", + "gu": "મહાનવમી", + "hi": "महानवमी", + "kn": "ಮಹಾನವಮಿ", + "ml": "മഹാനവമി", + "mr": "महानवमी", + "pa": "ਮਹਾਨਵਮੀ", + "ta": "மகா நவமி", + "te": "మహానవమి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maharaj_agrasen_s_birthday", + "msgid": "Maharaj Agrasen's Birthday", + "new_comment": "", + "comment": "Maharaj Agrasen's Birthday.", + "messages": { + "bn": "মহারাজা অগ্রসেনের জন্মজয়ন্তী", + "en_IN": "Maharaj Agrasen's Jayanti", + "en_US": "Maharaj Agrasen's Birthday", + "gu": "મહારાજા અગ્રસેન જયંતિ", + "hi": "महाराज अग्रसेन जयंती", + "kn": "ಮಹಾರಾಜ ಅಗ್ರಸೇನ್ ಜಯಂತಿ", + "ml": "മഹാരാജ അഗ്രസേൻ ജയന്തി", + "mr": "महाराज अग्रसेन जयंती", + "pa": "ਮਹਾਰਾਜਾ ਅਗਰਸੈਨ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "மகாராஜா அகர்சேன் ஜெயந்தி", + "te": "మహారాజా అగ్రసేన్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maharaja_hari_singh_s_birthday", + "msgid": "Maharaja Hari Singh's Birthday", + "new_comment": "", + "comment": "Maharaja Hari Singh's Birthday.", + "messages": { + "bn": "মহারাজা হরি সিংয়ের জন্মজয়ন্তী", + "en_IN": "Maharaja Hari Singh's Jayanti", + "en_US": "Maharaja Hari Singh's Birthday", + "gu": "મહારાજા હરિ સિંહ જયંતિ", + "hi": "महाराजा हरि सिंह जयंती", + "kn": "ಮಹಾರಾಜ ಹರಿ ಸಿಂಗ್ ಜಯಂತಿ", + "ml": "മഹാരാജാ ഹരി സിംഗ് ജയന്തി", + "mr": "महाराजा हरि सिंह जयंती", + "pa": "ਮਹਾਰਾਜਾ ਹਰੀ ਸਿੰਘ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "மகாராஜா ஹரி சிங் ஜெயந்தி", + "te": "మహారాజా హరి సింగ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maharaja_ranjit_singh_s_death_anniversary", + "msgid": "Maharaja Ranjit Singh's Death Anniversary", + "new_comment": "", + "comment": "Maharaja Ranjit Singh's Death Anniversary.", + "messages": { + "bn": "মহারাজা রণজিৎ সিংয়ের মৃত্যুবার্ষিকী", + "en_IN": "Maharaja Ranjit Singh's Death Anniversary", + "en_US": "Maharaja Ranjit Singh's Death Anniversary", + "gu": "મહારાજા રણજીત સિંહની પુણ્યતિથિ", + "hi": "महाराज रणजीत सिंह पुण्यतिथि", + "kn": "ಮಹಾರಾಜ ರಣಜಿತ್ ಸಿಂಗ್ ಪುಣ್ಯತಿಥಿ", + "ml": "മഹാരാജാ രഞ്ജിത് സിംഗിന്റെ ചരമവാർഷികം", + "mr": "महाराज रणजीत सिंह पुण्यतिथी", + "pa": "ਮਹਾਰਾਜਾ ਰਣਜੀਤ ਸਿੰਘ ਜੀ ਦੀ ਬਰਸੀ", + "ta": "மகாராஜா ரஞ்சித் சிங்கின் நினைவு நாள்", + "te": "మహారాజా రంజిత్ సింగ్ వర్ధంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maharana_pratap_s_birthday", + "msgid": "Maharana Pratap's Birthday", + "new_comment": "", + "comment": "Maharana Pratap's Birthday.", + "messages": { + "bn": "মহারানা প্রতাপ জয়ন্তী", + "en_IN": "Maharana Pratap's Jayanti", + "en_US": "Maharana Pratap's Birthday", + "gu": "મહારાણા પ્રતાપ જયંતિ", + "hi": "महाराणा प्रताप जयंती", + "kn": "ಮಹಾರಾಣಾ ಪ್ರತಾಪ್ ಜಯಂತಿ", + "ml": "മഹാരാണ പ്രതാപ് ജയന്തി", + "mr": "महाराणा प्रताप जयंती", + "pa": "ਮਹਾਰਾਣਾ ਪ੍ਰਤਾਪ ਜਯੰਤੀ", + "ta": "மகாராணா பிரதாப் ஜெயந்தி", + "te": "మహారాణా ప్రతాప్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maharashtra_day", + "msgid": "Maharashtra Day", + "new_comment": "", + "comment": "Maharashtra Day.", + "messages": { + "bn": "মহারাষ্ট্র দিবস", + "en_IN": "Maharashtra Day", + "en_US": "Maharashtra Day", + "gu": "મહારાષ્ટ્ર દિવસ", + "hi": "महाराष्ट्र दिवस", + "kn": "ಮಹಾರಾಷ್ಟ್ರ ದಿನೋತ್ಸವ", + "ml": "മഹാരാഷ്ട്ര ദിനം", + "mr": "महाराष्ट्र दिन", + "pa": "ਮਹਾਰਾਸ਼ਟਰ ਦਿਵਸ", + "ta": "மகாராஷ்டிரா நாள்", + "te": "మహారాష్ట్ర దినోత్సవం" + }, + "countries": [ + "IN", + "XNSE" + ] + }, + { + "id": "maharishi_valmiki_s_birthday", + "msgid": "Maharishi Valmiki's Birthday", + "new_comment": "", + "comment": "Maharishi Valmiki's Birthday.", + "messages": { + "bn": "মহার্ষি বাল্মীকি জয়ন্তী", + "en_IN": "Maharshi Valmiki's Jayanti", + "en_US": "Maharishi Valmiki's Birthday", + "gu": "મહર્ષિ વાલ્મિકી જયંતિ", + "hi": "महर्षि वाल्मीकि जयंती", + "kn": "ಮಹರ್ಷಿ ವಾಲ್ಮೀಕಿ ಜಯಂತಿ", + "ml": "മഹർഷി വാൽമീകി ജയന്തി", + "mr": "महर्षी वाल्मिकी जयंती", + "pa": "ਮਹਾਰਿਸ਼ੀ ਵਾਲਮੀਕੀ ਜਯੰਤੀ", + "ta": "மகரிஷி வால்மீகி ஜெயந்தி", + "te": "మహర్షి వాల్మీకి జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "mahatma_gandhi_s_birthday", + "msgid": "Mahatma Gandhi's Birthday", + "new_comment": "", + "comment": "Mahatma Gandhi's Birthday.", + "messages": { + "bn": "মহাত্মা গান্ধী জয়ন্তী", + "en_IN": "Mahatma Gandhi's Jayanti", + "en_US": "Mahatma Gandhi's Birthday", + "gu": "મહાત્મા ગાંધી જયંતિ", + "hi": "महात्मा गांधी जयंती", + "kn": "ಮಹಾತ್ಮ ಗಾಂಧಿ ಜಯಂತಿ", + "ml": "മഹാത്മാ ഗാന്ധി ജയന്തി", + "mr": "महात्मा गांधी जयंती", + "pa": "ਜਨਮ ਦਿਵਸ ਮਹਾਤਮਾ ਗਾਂਧੀ ਜੀ", + "ta": "மகாத்மா காந்தி ஜெயந்தி", + "te": "మహాత్మా గాంధీ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "mahavir_jayanti", + "msgid": "Mahavir Jayanti", + "new_comment": "", + "comment": "Mahavir Jayanti.", + "messages": { + "en_IN": "Mahavir Jayanti", + "en_US": "Mahavir Jayanti", + "gu": "મહાવીર જયંતિ", + "hi": "महावीर जयंती", + "mr": "महावीर जन्म कल्याणक" + }, + "countries": [ + "XNSE" + ] + }, + { + "id": "mahavira_s_birthday", + "msgid": "Mahavira's Birthday", + "new_comment": "", + "comment": "Mahavira's Birthday.", + "messages": { + "bn": "মহাবীর জয়ন্তী", + "en_IN": "Mahavir Jayanti", + "en_US": "Mahavira's Birthday", + "gu": "મહાવીર જયંતિ", + "hi": "महावीर जयंती", + "kn": "ಮಹಾವೀರ ಜಯಂತಿ", + "ml": "മഹാവീർ ജയന്തി", + "mr": "महावीर जन्म कल्याणक", + "pa": "ਮਹਾਵੀਰ ਜੈਯੰਤੀ", + "ta": "மகாவீர் ஜெயந்தி", + "te": "మహావీర్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "maio_municipality_day", + "msgid": "Maio Municipality Day", + "new_comment": "", + "comment": "Maio Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Maio", + "en_US": "Maio Municipality Day", + "es": "Día del Municipio de Maio", + "fr": "Journée de la municipalité de Maio", + "pt_CV": "Dia do Município do Maio" + }, + "countries": [ + "CV" + ] + }, + { + "id": "makar_sankranti", + "msgid": "Uttarayan", + "new_comment": "", + "comment": "Makar Sankranti.", + "messages": { + "bn": "উত্তরায়ণ", + "en_IN": "Uttarayan", + "en_US": "Uttarayan", + "gu": "ઉત્તરાયણ", + "hi": "उत्तरायण", + "kn": "ಉತ್ತರಾಯಣ", + "ml": "ഉത്തരായൻ", + "mr": "उत्तरायण", + "pa": "ਉੱਤਰਾਯਣ", + "ta": "உத்தராயண் நாள்", + "te": "ఉత్తరాయణం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "makha_bousa_festival", + "msgid": "Makha Bousa Festival", + "new_comment": "", + "comment": "Makha Bousa Festival.", + "messages": { + "en_US": "Makha Bousa Festival", + "lo": "ວັນບຸນມາຂະບູຊາ", + "th": "วันมาฆบูชา" + }, + "countries": [ + "LA" + ] + }, + { + "id": "makha_bucha", + "msgid": "Makha Bucha", + "new_comment": "", + "comment": "Makha Bucha.", + "messages": { + "en_US": "Makha Bucha", + "th": "วันมาฆบูชา", + "uk": "Маха Буча" + }, + "countries": [ + "TH" + ] + }, + { + "id": "makha_bucha_the_fourfold_assembly_day", + "msgid": "Makha Bucha, the Fourfold Assembly Day", + "new_comment": "", + "comment": "Makha Bucha, the Fourfold Assembly Day.", + "messages": { + "en_US": "Makha Bucha, the Fourfold Assembly Day", + "th": "มาฆบูชา จาตุรงฅ์สันนิบาต", + "uk": "Маха Буча, День чотиристороннього зібрання" + }, + "countries": [ + "TH" + ] + }, + { + "id": "malaysia_cup_holiday", + "msgid": "Malaysia Cup Holiday", + "new_comment": "", + "comment": "Malaysia Cup Holiday.", + "messages": { + "en_US": "Malaysia Cup Holiday", + "ms_MY": "Cuti Piala Malaysia", + "th": "วันหยุดพิเศษการแข่งขันฟุตบอลมาเลเซียคัพ" + }, + "countries": [ + "MY" + ] + }, + { + "id": "malaysia_day", + "msgid": "Malaysia Day", + "new_comment": "", + "comment": "Malaysia Day.", + "messages": { + "en_US": "Malaysia Day", + "ms_MY": "Hari Malaysia", + "th": "วันเฉลิมฉลองการจัดตั้งสหพันธรัฐมาเลเซีย" + }, + "countries": [ + "MY" + ] + }, + { + "id": "malvinas_memorial_day", + "msgid": "Malvinas Memorial Day", + "new_comment": "", + "comment": "Malvinas Memorial Day.", + "messages": { + "en_US": "Malvinas Memorial Day", + "es": "Día de los Caídos en Malvinas", + "uk": "День памʼяті на Мальвінах" + }, + "countries": [ + "AR" + ] + }, + { + "id": "mangaia_gospel_day", + "msgid": "Mangaia Gospel Day", + "new_comment": "", + "comment": "Mangaia Gospel Day.", + "messages": { + "en_CK": "Mangaia Gospel Day", + "en_US": "Mangaia Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "manihiki_gospel_day", + "msgid": "Manihiki Gospel Day", + "new_comment": "", + "comment": "Manihiki Gospel Day.", + "messages": { + "en_CK": "Manihiki Gospel Day", + "en_US": "Manihiki Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "manu_a_islands_cession_day", + "msgid": "Manu'a Islands Cession Day", + "new_comment": "", + "comment": "Manu'a Islands Cession Day.", + "messages": { + "en_US": "Manu'a Islands Cession Day", + "th": "วันส่งมอบหมู่เกาะมานูอา" + }, + "countries": [ + "US" + ] + }, + { + "id": "many_firms_changed_office_locations", + "msgid": "Many firms changed office locations", + "new_comment": "", + "comment": "Many firms changed office locations.", + "messages": { + "en_US": "Many firms changed office locations", + "gu": "ઘણી પેઢીઓએ ઓફિસના સ્થાનો બદલ્યા", + "hi": "कई फर्मों ने कार्यालय के स्थान बदले" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "maranh_o_joining_to_independence_of_brazil", + "msgid": "Maranhão joining to independence of Brazil", + "new_comment": "", + "comment": "Maranhão joining to independence of Brazil.", + "messages": { + "en_US": "Maranhão joining to independence of Brazil", + "pt_BR": "Adesão do Maranhão à independência do Brasil", + "uk": "День приєдання Мараньяна до незалежності Бразилії" + }, + "countries": [ + "BR" + ] + }, + { + "id": "march_bank_holiday", + "msgid": "March Bank Holiday", + "new_comment": "", + "comment": "March Bank Holiday.", + "messages": { + "ar_QA": "عطلة البنك", + "en_US": "March Bank Holiday" + }, + "countries": [ + "QA" + ] + }, + { + "id": "mardi_gras", + "msgid": "Mardi Gras", + "new_comment": "", + "comment": "Mardi Gras.", + "messages": { + "en_US": "Mardi Gras", + "th": "วันมาร์ดิกราส์" + }, + "countries": [ + "US" + ] + }, + { + "id": "margaret_thatcher_day", + "msgid": "Margaret Thatcher Day", + "new_comment": "", + "comment": "Margaret Thatcher Day.", + "messages": { + "en_GB": "Margaret Thatcher Day", + "en_US": "Margaret Thatcher Day" + }, + "countries": [ + "FK" + ] + }, + { + "id": "marine_day", + "msgid": "Marine Day", + "new_comment": "", + "comment": "Marine Day.", + "messages": { + "en_US": "Marine Day", + "ja": "海の日", + "th": "วันแห่งทะเล" + }, + "countries": [ + "JP" + ] + }, + { + "id": "market_closed_computer_failure", + "msgid": "Market Closed (Computer Failure)", + "new_comment": "", + "comment": "Market Closed (Computer Failure).", + "messages": { + "ar": "السوق مغلق (عطل في الكمبيوتر)", + "en_CA": "Market Closed (Computer Failure)", + "en_US": "Market Closed (Computer Failure)", + "fr": "Marché fermé (panne informatique)", + "th": "ตลาดปิด (ระบบคอมพิวเตอร์ขัดข้อง)" + }, + "countries": [ + "XTSE" + ] + }, + { + "id": "martin_luther_king_jr_day", + "msgid": "Martin Luther King Jr. Day", + "new_comment": "", + "comment": "Martin Luther King Jr. Day.", + "messages": { + "en_US": "Martin Luther King Jr. Day", + "gu": "માર્ટિન લ્યુથર કિંગ જુનિયર દિવસ", + "hi": "मार्टिन लूथर किंग जूनियर दिवस", + "th": "วันมาร์ติน ลูเทอร์ คิง จูเนียร์" + }, + "countries": [ + "US", + "XNYS" + ] + }, + { + "id": "martin_luther_king_jr_idaho_human_rights_day", + "msgid": "Martin Luther King Jr. / Idaho Human Rights Day", + "new_comment": "", + "comment": "Martin Luther King Jr. / Idaho Human Rights Day.", + "messages": { + "en_US": "Martin Luther King Jr. / Idaho Human Rights Day", + "th": "วันมาร์ติน ลูเทอร์ คิง จูเนียร์ / วันสิทธิมนุษยชนไอดาโฮ" + }, + "countries": [ + "US" + ] + }, + { + "id": "martin_luther_king_jr_robert_e_lee_s_birthday", + "msgid": "Martin Luther King, Jr & Robert E. Lee's Birthday", + "new_comment": "", + "comment": "Martin Luther King, Jr & Robert E. Lee's Birthday.", + "messages": { + "en_US": "Martin Luther King, Jr & Robert E. Lee's Birthday", + "th": "วันเกิดมาร์ติน ลูเทอร์ คิง จูเนียร์และโรเบิร์ต อี. ลี" + }, + "countries": [ + "US" + ] + }, + { + "id": "martin_luther_king_jr_s_birthday", + "msgid": "Martin Luther King Jr.'s Birthday", + "new_comment": "", + "comment": "Martin Luther King Jr.'s Birthday.", + "messages": { + "en_US": "Martin Luther King Jr.'s Birthday", + "th": "วันเกิดมาร์ติน ลูเทอร์ คิง จูเนียร์" + }, + "countries": [ + "US" + ] + }, + { + "id": "martyr_s_day", + "msgid": "Martyr's Day", + "new_comment": "", + "comment": "Martyr's Day.", + "messages": { + "en_US": "Martyr's Day", + "kn": "ಹುತಾತ್ಮರ ದಿನ", + "ne": "शहीद दिवस" + }, + "countries": [ + "NP" + ] + }, + { + "id": "martyrdom_of_ali_al_rida", + "msgid": "Martyrdom of Ali al-Rida", + "new_comment": "", + "comment": "Martyrdom of Ali al-Rida.", + "messages": { + "en_US": "Martyrdom of Ali al-Rida", + "fa_IR": "شهادت امام رضا علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "martyrdom_of_fatima", + "msgid": "Martyrdom of Fatima", + "new_comment": "", + "comment": "Martyrdom of Fatima.", + "messages": { + "en_US": "Martyrdom of Fatima", + "fa_IR": "شهادت حضرت فاطمه زهرا سلام الله علیها" + }, + "countries": [ + "IR" + ] + }, + { + "id": "martyrdom_of_hasan_al_askari", + "msgid": "Martyrdom of Hasan al-Askari", + "new_comment": "", + "comment": "Martyrdom of Hasan al-Askari.", + "messages": { + "en_US": "Martyrdom of Hasan al-Askari", + "fa_IR": "شهادت امام حسن عسکری علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "martyrdom_of_imam_ali", + "msgid": "Martyrdom of Imam Ali", + "new_comment": "", + "comment": "Martyrdom of Imam Ali.", + "messages": { + "en_US": "Martyrdom of Imam Ali", + "fa_IR": "شهادت حضرت علی علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "martyrdom_of_imam_ja_far_al_sadiq", + "msgid": "Martyrdom of Imam Ja'far al-Sadiq", + "new_comment": "", + "comment": "Martyrdom of Imam Ja'far al-Sadiq.", + "messages": { + "en_US": "Martyrdom of Imam Ja'far al-Sadiq", + "fa_IR": "شهادت امام جعفر صادق علیه السلام" + }, + "countries": [ + "IR" + ] + }, + { + "id": "martyrs_day", + "msgid": "Martyrs' Day", + "new_comment": "", + "comment": "Martyrs' Day.", + "messages": { + "ar": { + "EH": "يوم الشهداء", + "LB": "عيد الشهداء", + "LY": "يوم الشهيد", + "SY": "عيد الشهداء", + "TN": "عيد الشهداء" + }, + "az": "Ümumxalq hüzn günü", + "en_BF": "Martyrs' Day", + "en_US": "Martyrs' Day", + "es": { + "EH": "Día de los mártires", + "PA": "Día de los Mártires" + }, + "fa_AF": "روز شهیدان", + "fr": { + "BF": "Journée nationale des martyrs", + "CD": "Martyrs de l'indépendance", + "EH": "Journée des martyrs", + "LB": "Journée des Martyrs", + "ML": "Journée du 26 mars", + "TG": "Fête des Martyrs" + }, + "fr_BJ": "Journée des Martyrs", + "mg": "Fetin'ny mahery fo", + "my": "အာဇာနည်နေ့", + "ps_AF": "د شهیدانو ورځ", + "pt_ST": "Dia dos Mártires", + "th": "วันผู้เสียสละแห่งพม่า", + "uk": { + "AZ": "День національної скорботи", + "MG": "День мучеників", + "PA": "День мучеників" + } + }, + "countries": [ + "AF", + "AZ", + "BF", + "BJ", + "CD", + "EH", + "LB", + "LY", + "MG", + "ML", + "MM", + "PA", + "ST", + "SY", + "TG", + "TN" + ] + }, + { + "id": "martyrs_day_and_international_mother_language_day", + "msgid": "Martyrs' Day and International Mother Language Day", + "new_comment": "", + "comment": "Martyrs' Day and International Mother Language Day.", + "messages": { + "ar": "يوم الشهداء واليوم الدولي للغة الأم", + "bn": "শহীদ দিবস ও আন্তর্জাতিক মাতৃভাষা দিবস", + "en_BD": "Shaheed Day and International Mother Language Day", + "en_US": "Martyrs' Day and International Mother Language Day" + }, + "countries": [ + "BD" + ] + }, + { + "id": "martyrs_of_colonial_repression_day", + "msgid": "Martyrs of Colonial Repression Day", + "new_comment": "", + "comment": "Martyrs of Colonial Repression Day.", + "messages": { + "en_US": "Martyrs of Colonial Repression Day", + "pt_AO": "Dia dos Mártires da Repressão Colonial", + "uk": "День памʼяті жертв колоніальних репресій" + }, + "countries": [ + "AO" + ] + }, + { + "id": "mary_prince_day", + "msgid": "Mary Prince Day", + "new_comment": "", + "comment": "Mary Prince Day.", + "messages": { + "en_BM": "Mary Prince Day", + "en_US": "Mary Prince Day" + }, + "countries": [ + "BM" + ] + }, + { + "id": "mashujaa_day", + "msgid": "Mashujaa Day", + "new_comment": "", + "comment": "Mashujaa Day.", + "messages": { + "en_KE": "Mashujaa Day", + "en_US": "Mashujaa Day", + "sw": "Siku ya Mashujaa" + }, + "countries": [ + "KE" + ] + }, + { + "id": "mat_ri_i", + "msgid": "Matāri'i", + "new_comment": "", + "comment": "Matāri'i.", + "messages": { + "en_US": "Matāri'i", + "fr": "Matāri'i", + "th": "วันขึ้นปีใหม่โพลินีเซีย (มาตารีอิ)", + "uk": "Матаарії" + }, + "countries": [ + "FR" + ] + }, + { + "id": "mauke_gospel_day", + "msgid": "Mauke Gospel Day", + "new_comment": "", + "comment": "Mauke Gospel Day.", + "messages": { + "en_CK": "Mauke Gospel Day", + "en_US": "Mauke Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "maundy_thursday", + "msgid": "Maundy Thursday", + "new_comment": "", + "comment": "Maundy Thursday.", + "messages": { + "ca": "Dijous Sant", + "da": "Skærtorsdag", + "en_PH": "Maundy Thursday", + "en_TL": "Holy Thursday", + "en_US": "Maundy Thursday", + "es": "Jueves Santo", + "fi": "Kiirastorstai", + "fil": "Huwebes Santo", + "fo": "Skírhósdagur", + "fr_HT": "Jeudi Saint", + "ht": "Jedi Sant", + "is": "Skírdagur", + "it": "Giovedì Santo", + "kl": "Sisamanngortoq illernartoq", + "no": "Skjærtorsdag", + "pt_TL": "Quinta-Feira Santa", + "sv": "Skärtorsdagen", + "tet": "Quinta-Feira Santa", + "th": { + "DK": "วันพฤหัสศักดิ์สิทธิ์", + "ES": "วันพฤหัสศักดิ์สิทธิ์", + "NO": "วันพฤหัสศักดิ์สิทธิ์", + "PH": "วันพฤหัสบดีศักดิ์สิทธิ์", + "SE": "วันพฤหัสศักดิ์สิทธิ์", + "TL": "วันพฤหัสศักดิ์สิทธิ์", + "VA": "วันพฤหัสศักดิ์สิทธิ์" + }, + "uk": "Великий четвер" + }, + "countries": [ + "AD", + "AR", + "CO", + "CR", + "DK", + "ES", + "FO", + "GL", + "GQ", + "GT", + "HN", + "HT", + "IS", + "NI", + "NO", + "PE", + "PH", + "PY", + "SE", + "SV", + "TL", + "VA", + "VE", + "XMEX" + ] + }, + { + "id": "may_16_military_coup_d_etat_anniversary", + "msgid": "May 16 Military Coup d'Etat Anniversary", + "new_comment": "", + "comment": "May 16 Military Coup d'Etat Anniversary.", + "messages": { + "en_US": "May 16 Military Coup d'Etat Anniversary", + "ko": "5.16 군사혁명 기념일", + "th": "วันครบรอบการรัฐประหาร 16 พ.ค." + }, + "countries": [ + "KR" + ] + }, + { + "id": "may_day", + "msgid": "May Day", + "new_comment": "", + "comment": "May Day.", + "messages": { + "ar": "الأول من مايو", + "bn": "মে দিবস", + "en_AU": "May Day", + "en_BD": "May Day", + "en_GB": "May Day", + "en_IN": "May Day", + "en_US": "May Day", + "et": "kevadpüha", + "fi": "Vappu", + "fr": "1er mai", + "gu": "મજૂર દિવસ", + "hi": "मजदूर दिवस", + "mr": "कामगार दिन", + "my": "မေဒေးနေ့", + "sv": "Första maj", + "sv_FI": "Första maj", + "th": { + "AU": "วันเมย์เดย์ (วันแรงงาน)", + "FI": "วันเมย์เดย์ (วันแรงงาน)", + "FR": "วันเมย์เดย์", + "GB": "วันเมย์เดย์", + "MM": "วันเมย์เดย์ (วันแรงงาน)", + "SE": "วันเมย์เดย์ (วันแรงงาน)" + }, + "uk": { + "EE": "День весни", + "FI": "Ваппу", + "FR": "Перше травня", + "SE": "Перше травня" + } + }, + "countries": [ + "AU", + "BD", + "EE", + "FI", + "FR", + "GB", + "GI", + "MM", + "SE", + "XNSE" + ] + }, + { + "id": "may_holidays", + "msgid": "May Holidays", + "new_comment": "", + "comment": "May Holidays.", + "messages": { + "en_US": "May Holidays", + "ky": "Май каникулдары", + "ru_KG": "Майские каникулы" + }, + "countries": [ + "KG" + ] + }, + { + "id": "may_revolution_day", + "msgid": "May Revolution Day", + "new_comment": "", + "comment": "May Revolution Day.", + "messages": { + "en_US": "May Revolution Day", + "es": "Día de la Revolución de Mayo", + "uk": "День Травневої революції" + }, + "countries": [ + "AR" + ] + }, + { + "id": "mazingira_day", + "msgid": "Mazingira Day", + "new_comment": "", + "comment": "Mazingira Day.", + "messages": { + "en_KE": "Mazingira Day", + "en_US": "Mazingira Day", + "sw": "Siku ya Mazingira" + }, + "countries": [ + "KE" + ] + }, + { + "id": "meak_bochea_day", + "msgid": "Meak Bochea Day", + "new_comment": "", + "comment": "Meak Bochea Day.", + "messages": { + "en_US": "Meak Bochea Day", + "km": "ពិធីបុណ្យមាឃបូជា", + "th": "วันมาฆบูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "medin_full_moon_poya_day", + "msgid": "Medin Full Moon Poya Day", + "new_comment": "", + "comment": "Medin Full Moon Poya Day.", + "messages": { + "en_US": "Medin Full Moon Poya Day", + "si_LK": "මැදින් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "மெதின் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "meeting_of_two_worlds_day", + "msgid": "Meeting of Two Worlds' Day", + "new_comment": "", + "comment": "Meeting of Two Worlds' Day.", + "messages": { + "en_US": "Meeting of Two Worlds' Day", + "es": "Día del Encuentro de dos Mundos", + "uk": "День зустрічі двох світів" + }, + "countries": [ + "CL" + ] + }, + { + "id": "melbourne_cup_day", + "msgid": "Melbourne Cup Day", + "new_comment": "", + "comment": "Melbourne Cup Day.", + "messages": { + "en_AU": "Melbourne Cup Day", + "en_US": "Melbourne Cup Day", + "th": "วันเมลเบิร์นคัพ" + }, + "countries": [ + "AU" + ] + }, + { + "id": "melilla_day", + "msgid": "Melilla Day", + "new_comment": "", + "comment": "Melilla Day.", + "messages": { + "ca": "Dia de Melilla", + "en_US": "Melilla Day", + "es": "Día de Melilla", + "th": "วันเมลียา", + "uk": "День Мелільї" + }, + "countries": [ + "ES" + ] + }, + { + "id": "memorial_day", + "msgid": "Memorial Day", + "new_comment": "", + "comment": "Memorial Day.", + "messages": { + "ar": "يوم الذكرى", + "az": "Anım Günü", + "en_CA": "Memorial Day", + "en_TL": "Memorial Day", + "en_US": "Memorial Day", + "fr": "Jour de mémorial", + "gu": "મેમોરિયલ ડે", + "hi": "मेमोरियल डे", + "ko": "현충일", + "pt_TL": "Dia da Memória", + "ru": "День поминовения", + "tet": "Loron Memória nian", + "th": { + "CA": "วันรำลึก (นิวฟันด์แลนด์และแลบราดอร์)", + "KR": "วันรำลึกวีรชน", + "TL": "วันรำลึกวีรชน", + "US": "วันรำลึก" + }, + "tk": "Hatyra güni", + "uk": "День памʼяті" + }, + "countries": [ + "AZ", + "CA", + "KR", + "TL", + "TM", + "US", + "XCME", + "XNYS" + ] + }, + { + "id": "memorial_day_of_genocide_perpetrated_against_the_tutsi_in_1994", + "msgid": "Memorial Day of Genocide perpetrated against the Tutsi in 1994", + "new_comment": "", + "comment": "Memorial Day of Genocide perpetrated against the Tutsi in 1994.", + "messages": { + "en_US": "Memorial Day of Genocide perpetrated against the Tutsi in 1994", + "fr": "Journée commémorative du Génocide perpétré contre les Tutsi en 1994", + "rw": "Umunsi wo Kwibuka Jenoside yakorewe Abatutsi mu 1994" + }, + "countries": [ + "RW" + ] + }, + { + "id": "memorial_day_of_political_victims", + "msgid": "Memorial Day of Political Victims", + "new_comment": "", + "comment": "Memorial Day of Political Victims.", + "messages": { + "en_US": "Memorial Day of Political Victims", + "mn": "Улс төрийн хэлмэгдэгсдийн дурсгалын өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "merit_making_ceremony_for_the_royal_ashes_and_the_coronation_day", + "msgid": "Merit-making Ceremony for the Royal Ashes and the Coronation Day", + "new_comment": "", + "comment": "Merit-making Ceremony for the Royal Ashes and the Coronation Day.", + "messages": { + "en_US": "Merit-making Ceremony for the Royal Ashes and the Coronation Day", + "th": "ทำบุญพระบรมอัษฐิ และพระราชพิธีฉัตรมงคล", + "uk": "Церемонія вшанування королівського праху та День коронації" + }, + "countries": [ + "TH" + ] + }, + { + "id": "merit_making_ceremony_for_the_royal_ashes_of_hm_king_chulalongkorn", + "msgid": "Merit-making Ceremony for the Royal Ashes of HM King Chulalongkorn", + "new_comment": "", + "comment": "Merit-making Ceremony for the Royal Ashes of HM King Chulalongkorn.", + "messages": { + "en_US": "Merit-making Ceremony for the Royal Ashes of HM King Chulalongkorn", + "th": "ทำบุญพระบรมอัษฐิพระพุทธเจ้าหลวง", + "uk": "Церемонія вшанування королівського праху Його Величності короля Чулалонгкорна" + }, + "countries": [ + "TH" + ] + }, + { + "id": "meshadi_tamil_new_year_s_day", + "msgid": "Meshadi (Tamil New Year's Day)", + "new_comment": "", + "comment": "Meshadi (Tamil New Year's Day).", + "messages": { + "bn": "মেশাদি (তামিল নববর্ষের দিন)", + "en_IN": "Meshadi (Tamil New Year's Day)", + "en_US": "Meshadi (Tamil New Year's Day)", + "gu": "મેશાદી (તમિલ નવા વર્ષનો દિવસ)", + "hi": "मेषदी (तमिल नव वर्ष दिवस)", + "kn": "ಮೇಷಾದಿ (ತಮಿಳು ಹೊಸ ವರ್ಷದ ದಿನ)", + "ml": "മേഷാദി (തമിഴ് പുതുവത്സര ദിനം)", + "mr": "मेशादी (तमिळ नववर्षाचा दिवस)", + "pa": "ਮੇਸ਼ਾਦੀ (ਤਾਮਿਲ ਨਵੇਂ ਸਾਲ ਦਾ ਦਿਨ)", + "ta": "மேஷாடி (தமிழ் புத்தாண்டு தினம்)", + "te": "మేషాది (తమిళ్ నూతన సంవత్సరం)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "mha_pooja", + "msgid": "Mha Pooja", + "new_comment": "", + "comment": "Mha Pooja.", + "messages": { + "en_US": "Mha Pooja", + "kn": "ಮ್ಹಾ ಪೂಜೆ", + "ne": "म्ह पूजा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "mi_careme", + "msgid": "Mi-Careme", + "new_comment": "", + "comment": "Mi-Careme.", + "messages": { + "en_US": "Mi-Careme", + "fr": "Mi-Carême", + "th": "วันเฉลิมฉลองกลางเทศกาลมหาพรต", + "uk": "Свято Мі-Карем" + }, + "countries": [ + "FR" + ] + }, + { + "id": "micronesian_culture_and_tradition_day", + "msgid": "Micronesian Culture and Tradition Day", + "new_comment": "", + "comment": "Micronesian Culture and Tradition Day.", + "messages": { + "en_FM": "Micronesian Culture and Tradition Day", + "en_US": "Micronesian Culture and Tradition Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "mid_autumn_festival", + "msgid": "Mid-Autumn Festival", + "new_comment": "", + "comment": "Mid-Autumn Festival.", + "messages": { + "en_HK": "Chinese Mid-Autumn Festival", + "en_MO": "Chong Chao (Mid-Autumn) Festival", + "en_US": "Mid-Autumn Festival", + "pt_MO": "Chong Chao (Bolo Lunar)", + "th": "วันไหว้พระจันทร์", + "zh_CN": "中秋节", + "zh_HK": "中秋節", + "zh_MO": "中秋節", + "zh_TW": "中秋節" + }, + "countries": [ + "CN", + "HK", + "MO", + "TW" + ] + }, + { + "id": "mid_sha_ban", + "msgid": "Mid-Sha'ban", + "new_comment": "", + "comment": "Mid-Sha'ban.", + "messages": { + "ar": "ليلة النصف من شعبان", + "bn": "শবে বরাত", + "en_BD": "Shab-e-Barat", + "en_US": "Mid-Sha'ban" + }, + "countries": [ + "BD" + ] + }, + { + "id": "mid_winter_day", + "msgid": "Mid-winter Day", + "new_comment": "", + "comment": "Mid-winter Day.", + "messages": { + "en_GS": "Mid-winter Day", + "en_US": "Mid-winter Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "mid_year_closing_day", + "msgid": "Mid-Year Closing Day", + "new_comment": "", + "comment": "Mid-Year Closing Day.", + "messages": { + "en_US": "Mid-Year Closing Day", + "th": "วันหยุดภาคครึ่งปีของสถาบันการเงินและสถาบันการเงินเฉพาะกิจ", + "uk": "Вихідний середини року для фінансових установ" + }, + "countries": [ + "TH" + ] + }, + { + "id": "midsummer_day", + "msgid": "Midsummer Day", + "new_comment": "", + "comment": "Midsummer Day.", + "messages": { + "en_US": "Midsummer Day", + "et": "jaanipäev", + "fi": "Juhannuspäivä", + "lv": "Jāņu diena", + "ru": "Янов день", + "sv": "Midsommardagen", + "sv_FI": "Midsommardagen", + "th": { + "FI": "วันมิดซัมเมอร์ (วันกลางฤดูร้อน)", + "SE": "วันกลางฤดูร้อน" + }, + "uk": { + "EE": "День літнього сонцестояння", + "FI": "День літнього сонцестояння", + "LV": "Янів день", + "SE": "День літнього сонцестояння" + } + }, + "countries": [ + "EE", + "FI", + "LV", + "SE" + ] + }, + { + "id": "midsummer_eve", + "msgid": "Midsummer Eve", + "new_comment": "", + "comment": "Midsummer Eve.", + "messages": { + "en_US": "Midsummer Eve", + "fi": "Juhannusaatto", + "lv": "Līgo diena", + "ru": "Лиго", + "sv": "Midsommarafton", + "sv_FI": "Midsommarafton", + "th": { + "FI": "วันมิดซัมเมอร์อีฟ (วันก่อนวันกลางฤดูร้อน)", + "SE": "วันก่อนวันกลางฤดูร้อน" + }, + "uk": { + "FI": "Переддень літнього сонцестояння", + "LV": "Ліго", + "SE": "Переддень літнього сонцестояння" + } + }, + "countries": [ + "FI", + "LV", + "SE" + ] + }, + { + "id": "miina_sillanp_day_day_of_civic_participation", + "msgid": "Miina Sillanpää Day, Day of Civic Participation", + "new_comment": "", + "comment": "Miina Sillanpää Day, Day of Civic Participation.", + "messages": { + "en_US": "Miina Sillanpää Day, Day of Civic Participation", + "fi": "Miina Sillanpään ja kansalaisvaikuttamisen päivä", + "sv_FI": "Miina Sillanpää-dagen, medborgarinflytandets dag", + "th": "วันมีนา ซิลลันแป, วันส่งเสริมการมีส่วนร่วมของพลเมือง", + "uk": "День Міїни Сілланпяя, День громадянської активності" + }, + "countries": [ + "FI" + ] + }, + { + "id": "mikael_agricola_day_day_of_the_finnish_language", + "msgid": "Mikael Agricola Day, Day of the Finnish Language", + "new_comment": "", + "comment": "Mikael Agricola Day, Day of the Finnish Language.", + "messages": { + "en_US": "Mikael Agricola Day, Day of the Finnish Language", + "fi": "Mikael Agricolan päivä, suomen kielen päivä", + "sv_FI": "Mikael Agricoladagen, finska språkets dag", + "th": "วันมิคาเอล อากริโคลา, วันภาษาฟินแลนด์", + "uk": "День Мікаеля Аґріколи, День фінської мови" + }, + "countries": [ + "FI" + ] + }, + { + "id": "military_day", + "msgid": "Military Day", + "new_comment": "", + "comment": "Military Day.", + "messages": { + "en_US": "Military Day", + "mn": "Монгол цэргийн өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "millennium_celebrations", + "msgid": "Millennium Celebrations", + "new_comment": "", + "comment": "Millennium Celebrations.", + "messages": { + "en_GB": "Millennium Celebrations", + "en_US": "Millennium Celebrations", + "th": "วันเฉลิมฉลองสหัสวรรษ" + }, + "countries": [ + "GB" + ] + }, + { + "id": "minna_canth_day_day_of_equality", + "msgid": "Minna Canth Day, Day of Equality", + "new_comment": "", + "comment": "Minna Canth Day, Day of Equality.", + "messages": { + "en_US": "Minna Canth Day, Day of Equality", + "fi": "Minna Canthin päivä, tasa-arvon päivä", + "sv_FI": "Minna Canth-dagen, jämställdhetsdagen", + "th": "วันมินน่า คานท์, วันแห่งความเสมอภาค", + "uk": "День Мінни Кант, День рівності" + }, + "countries": [ + "FI" + ] + }, + { + "id": "miracle_day", + "msgid": "Miracle Day", + "new_comment": "", + "comment": "Miracle Day.", + "messages": { + "en_US": "Miracle Day", + "es": "Día del Milagro", + "uk": "День дива" + }, + "countries": [ + "AR" + ] + }, + { + "id": "missionary_day", + "msgid": "Missionary Day", + "new_comment": "", + "comment": "Missionary Day.", + "messages": { + "en_US": "Missionary Day", + "fr": "Arrivée de l'Évangile", + "th": "วันคริสตธรรมมาถึง", + "uk": "День місіонерів" + }, + "countries": [ + "FR" + ] + }, + { + "id": "mitiaro_gospel_day", + "msgid": "Mitiaro Gospel Day", + "new_comment": "", + "comment": "Mitiaro Gospel Day.", + "messages": { + "en_CK": "Mitiaro Gospel Day", + "en_US": "Mitiaro Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "mizoram_state_day", + "msgid": "Mizoram State Day", + "new_comment": "", + "comment": "Mizoram State Day.", + "messages": { + "bn": "মিজোরাম প্রতিষ্ঠা দিবস", + "en_IN": "Mizoram State Day", + "en_US": "Mizoram State Day", + "gu": "મિઝોરમ રાજ્ય દિવસ", + "hi": "मिज़ोरम राज्य दिवस", + "kn": "ಮಿಜೋರಾಂ ರಾಜ್ಯ ದಿನೋತ್ಸವ", + "ml": "മിസോരം സംസ്ഥാനദിനം", + "mr": "मिझोराम राज्य दिन", + "pa": "ਮਿਜ਼ੋਰਮ ਰਾਜ ਦਿਵਸ", + "ta": "மிசோரம் மாநில நாள்", + "te": "మిజోరాం రాష్ట్ర దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "moi_day", + "msgid": "Moi Day", + "new_comment": "", + "comment": "Moi Day.", + "messages": { + "en_KE": "Moi Day", + "en_US": "Moi Day", + "sw": "Siku ya Moi" + }, + "countries": [ + "KE" + ] + }, + { + "id": "mojahedin_s_victory_day", + "msgid": "Mojahedin's Victory Day", + "new_comment": "", + "comment": "Mojahedin's Victory Day.", + "messages": { + "en_US": "Mojahedin's Victory Day", + "fa_AF": "روز پیروزی مجاهدین", + "ps_AF": "مجاهدو د بریا ورځ" + }, + "countries": [ + "AF" + ] + }, + { + "id": "monday_after_pentecost", + "msgid": "Monday after Pentecost", + "new_comment": "", + "comment": "Monday after Pentecost.", + "messages": { + "en_HK": "Monday after Pentecost", + "en_US": "Monday after Pentecost", + "th": "วันจันทร์หลังวันสมโภชพระจิตเจ้า", + "zh_CN": "圣灵降临节后星期一", + "zh_HK": "靈降臨節後星期一" + }, + "countries": [ + "HK" + ] + }, + { + "id": "monday_after_remembrance_day", + "msgid": "Monday after Remembrance Day", + "new_comment": "", + "comment": "Monday after Remembrance Day.", + "messages": { + "en_HK": "Monday after Remembrance Day", + "en_US": "Monday after Remembrance Day", + "th": "วันจันทร์หลังวันรำลึก", + "zh_CN": "和平纪念日后星期一", + "zh_HK": "和平紀念日後星期一" + }, + "countries": [ + "HK" + ] + }, + { + "id": "monday_before_ash_wednesday", + "msgid": "Monday before Ash Wednesday", + "new_comment": "", + "comment": "Monday before Ash Wednesday.", + "messages": { + "en_US": "Monday before Ash Wednesday", + "nl": "Maandag voor Aswoensdag", + "pap_AW": "Dialuna prome cu diaranson di shinish", + "uk": "Понеділок перед Попільною середою" + }, + "countries": [ + "AW" + ] + }, + { + "id": "monday_before_decoration_day", + "msgid": "Monday before Decoration Day", + "new_comment": "", + "comment": "Monday before Decoration Day.", + "messages": { + "en_US": "Monday before Decoration Day", + "gu": "ડેકોરેશન ડે પહેલાંનો સોમવાર", + "hi": "डेकोरेशन डे से पहले का सोमवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "monday_before_independence_day", + "msgid": "Monday before Independence Day", + "new_comment": "", + "comment": "Monday before Independence Day.", + "messages": { + "en_US": "Monday before Independence Day", + "gu": "સ્વતંત્રતા દિવસ પહેલાંનો સોમવાર", + "hi": "स्वतंत्रता दिवस से पहले का सोमवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "monday_following_s", + "msgid": "Monday following %s", + "new_comment": "", + "comment": "Monday following %s.", + "messages": { + "ca": "Dilluns següent a %s", + "en_US": "Monday following %s", + "es": "Lunes siguiente a %s", + "th": "วันจันทร์หลัง%s", + "uk": "Понеділок після %s" + }, + "countries": [ + "ES" + ] + }, + { + "id": "monday_following_s_estimated", + "msgid": "Monday following %s (estimated)", + "new_comment": "", + "comment": "Monday following %s (estimated).", + "messages": { + "ca": "Dilluns següent a %s (estimat)", + "en_US": "Monday following %s (estimated)", + "es": "Lunes siguiente a %s (estimado)", + "th": "วันจันทร์หลัง%s (โดยประมาณ)", + "uk": "Понеділок після %s (приблизна дата)" + }, + "countries": [ + "ES" + ] + }, + { + "id": "morazan_s_day", + "msgid": "Morazan's Day", + "new_comment": "", + "comment": "Morazan's Day.", + "messages": { + "en_US": "Morazan's Day", + "es": "Día de Morazán", + "uk": "День Морасана" + }, + "countries": [ + "HN" + ] + }, + { + "id": "morazan_weekend", + "msgid": "Morazan Weekend", + "new_comment": "", + "comment": "Morazan Weekend.", + "messages": { + "en_US": "Morazan Weekend", + "es": "Semana Morazánica", + "uk": "Тиждень Морасана" + }, + "countries": [ + "HN" + ] + }, + { + "id": "mosteiros_municipality_day", + "msgid": "Mosteiros Municipality Day", + "new_comment": "", + "comment": "Mosteiros Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Mosteiros", + "en_US": "Mosteiros Municipality Day", + "es": "Día del Municipio de Mosteiros", + "fr": "Journée de la municipalité des Mosteiros", + "pt_CV": "Dia do Município dos Mosteiros" + }, + "countries": [ + "CV" + ] + }, + { + "id": "mother_language_day", + "msgid": "Mother Language Day", + "new_comment": "", + "comment": "Mother Language Day.", + "messages": { + "en_US": "Mother Language Day", + "hy": "Մայրենի լեզվի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "mother_s_day", + "msgid": "Mother's Day", + "new_comment": "", + "comment": "Mother's Day.", + "messages": { + "ar": "عيد الأم", + "de": "Muttertag", + "en_US": "Mother's Day", + "es": "Día de la Madre", + "fi": "Äitienpäivä", + "fr": "Fête des Mères", + "ka": "დედის დღე", + "ko_KP": "어머니날", + "lt": "Motinos diena", + "lv": "Mātes diena", + "mg": "Fetin'ny reny", + "pt_CV": "Dia das Mães", + "ru": { + "LV": "День матери", + "TJ": "День Матери" + }, + "sv_FI": "Mors dag", + "tg": "Рӯзи Модар", + "th": "วันแม่", + "uk": "День матері" + }, + "countries": [ + "CR", + "CV", + "FI", + "GE", + "KP", + "LT", + "LV", + "MG", + "NI", + "PA", + "SV", + "SY", + "TJ", + "US" + ] + }, + { + "id": "mother_teresa_beatification_day", + "msgid": "Mother Teresa Beatification Day", + "new_comment": "", + "comment": "Mother Teresa Beatification Day.", + "messages": { + "en_US": "Mother Teresa Beatification Day", + "sq": "Dita e Lumturimit të Shenjt Terezës", + "uk": "День беатифікації матері Терези" + }, + "countries": [ + "AL" + ] + }, + { + "id": "mother_teresa_canonization_day", + "msgid": "Mother Teresa Canonization Day", + "new_comment": "", + "comment": "Mother Teresa Canonization Day.", + "messages": { + "en_US": "Mother Teresa Canonization Day", + "sq": "Dita e Shenjtërimit të Shenjt Terezës", + "uk": "День канонізації матері Терези" + }, + "countries": [ + "AL" + ] + }, + { + "id": "motherhood_and_beauty_day", + "msgid": "Motherhood and Beauty Day", + "new_comment": "", + "comment": "Motherhood and Beauty Day.", + "messages": { + "en_US": "Motherhood and Beauty Day", + "hy": "Մայրության և գեղեցկության տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "motherhood_beauty_and_love_day", + "msgid": "Motherhood, Beauty and Love Day", + "new_comment": "", + "comment": "Motherhood, Beauty and Love Day.", + "messages": { + "en_US": "Motherhood, Beauty and Love Day", + "hy": "Մայրության, գեղեցկության եւ սիրո տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "mountain_day", + "msgid": "Mountain Day", + "new_comment": "", + "comment": "Mountain Day.", + "messages": { + "en_US": "Mountain Day", + "ja": "山の日", + "th": "วันแห่งภูเขา" + }, + "countries": [ + "JP" + ] + }, + { + "id": "mourning_day_of_the_late_king_father_norodom_sihanouk_of_cambodia", + "msgid": "HM King Norodom Sihanouk Mourning Day", + "new_comment": "", + "comment": "Mourning Day of the Late King-Father NORODOM SIHANOUK of Cambodia.", + "messages": { + "en_US": "HM King Norodom Sihanouk Mourning Day", + "km": "ទិវាប្រារព្ឋពិធីគោរពព្រះវិញ្ញាណក្ខន្ឋ ព្រះករុណា ព្រះបាទសម្តេចព្រះ នរោត្តម សីហនុ ព្រះមហាវីរក្សត្រ ព្រះវររាជបិតាឯករាជ្យ បូរណភាពទឹកដី និងឯកភាពជាតិខ្មែរ ព្រះបរមរតនកោដ្ឋ", + "th": "วันสดุดีพระบาทสมเด็จพระบรมนาถนโรดม สีหนุ พระบิดาแห่งเอกราช บูรณภาพแห่งดินแดน และเอกภาพของชาติกัมพูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "mourning_the_death_of_her_majesty_the_queen_elizabeth_ii", + "msgid": "Mourning the Death of Her Majesty The Queen Elizabeth II", + "new_comment": "", + "comment": "Mourning the Death of Her Majesty The Queen Elizabeth II.", + "messages": { + "en_AI": "Mourning the Death of Her Majesty The Queen Elizabeth II", + "en_US": "Mourning the Death of Her Majesty The Queen Elizabeth II" + }, + "countries": [ + "AI" + ] + }, + { + "id": "moved_to_temporary_quarters_in_produce_exchange", + "msgid": "Moved to temporary quarters in Produce Exchange", + "new_comment": "", + "comment": "Moved to temporary quarters in Produce Exchange.", + "messages": { + "en_US": "Moved to temporary quarters in Produce Exchange", + "gu": "પ્રોડ્યુસ એક્સચેન્જમાં હંગામી ક્વાર્ટર્સમાં ખસેડવામાં આવ્યા", + "hi": "प्रोड्यूस एक्सचेंज में अस्थायी क्वार्टर में स्थानांतरित" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "municipal_elections", + "msgid": "Municipal elections", + "new_comment": "", + "comment": "Municipal elections.", + "messages": { + "az": "Bələdiyyə seçkiləri", + "en_US": "Municipal elections", + "uk": "Місцеві вибори" + }, + "countries": [ + "AZ" + ] + }, + { + "id": "municipal_holiday_of_faro", + "msgid": "Municipal Holiday of Faro", + "new_comment": "", + "comment": "Municipal Holiday of Faro.", + "messages": { + "en_US": "Municipal Holiday of Faro", + "pt_PT": "Dia do Município de Faro", + "uk": "День муніципалітету Фару" + }, + "countries": [ + "PT" + ] + }, + { + "id": "municipal_holiday_of_guarda", + "msgid": "Municipal Holiday of Guarda", + "new_comment": "", + "comment": "Municipal Holiday of Guarda.", + "messages": { + "en_US": "Municipal Holiday of Guarda", + "pt_PT": "Dia do Município da Guarda", + "uk": "День муніципалітету Гуарда" + }, + "countries": [ + "PT" + ] + }, + { + "id": "municipal_holiday_of_leiria", + "msgid": "Municipal Holiday of Leiria", + "new_comment": "", + "comment": "Municipal Holiday of Leiria.", + "messages": { + "en_US": "Municipal Holiday of Leiria", + "pt_PT": "Dia do Município de Leiria", + "uk": "День муніципалітету Лейрія" + }, + "countries": [ + "PT" + ] + }, + { + "id": "municipal_holiday_of_portalegre", + "msgid": "Municipal Holiday of Portalegre", + "new_comment": "", + "comment": "Municipal Holiday of Portalegre.", + "messages": { + "en_US": "Municipal Holiday of Portalegre", + "pt_PT": "Dia do Município de Portalegre", + "uk": "День муніципалітету Порталегре" + }, + "countries": [ + "PT" + ] + }, + { + "id": "murcia_day", + "msgid": "Murcia Day", + "new_comment": "", + "comment": "Murcia Day.", + "messages": { + "ca": "Dia de la Regió de Múrcia", + "en_US": "Murcia Day", + "es": "Día de la Región de Murcia", + "th": "วันมูร์เซีย", + "uk": "День Мурсії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "myanmar_new_year", + "msgid": "Myanmar New Year", + "new_comment": "", + "comment": "Myanmar New Year.", + "messages": { + "en_US": "Myanmar New Year", + "my": "မြန်မာနှစ်သစ်ကူး ရုံးပိတ်ရက်များ", + "th": "วันตะจาน" + }, + "countries": [ + "MM" + ] + }, + { + "id": "nagaland_state_inauguration_day", + "msgid": "Nagaland State Inauguration Day", + "new_comment": "", + "comment": "Nagaland State Inauguration Day.", + "messages": { + "bn": "নাগাল্যান্ড প্রতিষ্ঠা দিবস", + "en_IN": "Nagaland State Inauguration Day", + "en_US": "Nagaland State Inauguration Day", + "gu": "નાગાલેન્ડ રાજ્ય ઉદ્ઘાટન દિવસ", + "hi": "नागालैंड राज्य उद्घाटन दिवस", + "kn": "ನಾಗಾಲ್ಯಾಂಡ್ ರಾಜ್ಯ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "നാഗാലാൻഡ് സംസ്ഥാനാരംഭദിനം", + "mr": "नागालँड राज्य उद्घाटन दिन", + "pa": "ਨਾਗਾਲੈਂਡ ਰਾਜ ਦਾ ਉਦਘਾਟਨ ਦਿਵਸ", + "ta": "நாகலாந்து மாநில தொடக்க நாள்", + "te": "నాగాలాండ్ రాష్ట్ర ప్రారంభ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "name_day_of_the_holy_father", + "msgid": "Name Day of the Holy Father", + "new_comment": "", + "comment": "Name Day of the Holy Father.", + "messages": { + "en_US": "Name Day of the Holy Father", + "it": "Onomastico del Santo Padre", + "th": "วันฉลองพระนามเดิมสมเด็จพระสันตะปาปา" + }, + "countries": [ + "VA" + ] + }, + { + "id": "nanumaga_day", + "msgid": "Nanumaga Day", + "new_comment": "", + "comment": "Nanumaga Day.", + "messages": { + "en_GB": "Nanumaga Day", + "en_US": "Nanumaga Day", + "tvl": "Aho o te Fakavae" + }, + "countries": [ + "TV" + ] + }, + { + "id": "naraka_chaturdashi", + "msgid": "Naraka Chaturdashi", + "new_comment": "", + "comment": "Naraka Chaturdashi.", + "messages": { + "bn": "নরক চতুর্দশী", + "en_IN": "Naraka Chaturdashi", + "en_US": "Naraka Chaturdashi", + "gu": "નરક ચતુર્દશી", + "hi": "नरक चतुर्दशी", + "kn": "ನರಕ ಚತುರ್ದಶಿ", + "ml": "നരക ചതുർദസി", + "mr": "नरक चतुर्दशी", + "pa": "ਨਰਕ ਚਤੁਰਦਾਸੀ", + "ta": "நரக சதுர்தாசி", + "te": "నరక చతుర్దశి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "natal_day", + "msgid": "Natal Day", + "new_comment": "", + "comment": "Natal Day.", + "messages": { + "ar": "يوم التأسيس", + "en_CA": "Natal Day", + "en_US": "Natal Day", + "fr": "Jour de la Fondation", + "th": "วันสถาปนา" + }, + "countries": [ + "CA" + ] + }, + { + "id": "national_aboriginal_day", + "msgid": "National Aboriginal Day", + "new_comment": "", + "comment": "National Aboriginal Day.", + "messages": { + "ar": "اليوم الوطني للسكان الأصليين", + "en_CA": "National Aboriginal Day", + "en_US": "National Aboriginal Day", + "fr": "Journée nationale des Autochtones", + "th": "วันชนพื้นเมือง (นอร์ทเวสต์เทร์ริทอรีส์)" + }, + "countries": [ + "CA" + ] + }, + { + "id": "national_anthem_and_flag_day", + "msgid": "National Anthem and Flag Day", + "new_comment": "", + "comment": "National Anthem and Flag Day.", + "messages": { + "en_US": "National Anthem and Flag Day", + "nl": "Nationale vlag en volkslied", + "pap_AW": "Dia di Himno y Bandera", + "pap_CW": "Dia di Himno i Bandera", + "uk": "День державного гімну та прапора" + }, + "countries": [ + "AW", + "CW" + ] + }, + { + "id": "national_arbor_day", + "msgid": "National Arbor Day", + "new_comment": "", + "comment": "National Arbor Day.", + "messages": { + "en_US": "National Arbor Day", + "lo": "ວັນປູກຕົ້ນໄມ້ແຫ່ງຊາດ", + "th": "วันปลูกต้นไม้แห่งชาติ" + }, + "countries": [ + "LA" + ] + }, + { + "id": "national_artist_day", + "msgid": "National Artist Day", + "new_comment": "", + "comment": "National Artist Day.", + "messages": { + "en_US": "National Artist Day", + "th": "วันศิลปินแห่งชาติ", + "uk": "Національний день художника" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_assembly_election_day", + "msgid": "National Assembly Election Day", + "new_comment": "", + "comment": "National Assembly Election Day.", + "messages": { + "en_US": "National Assembly Election Day", + "ko": "국회의원 선거일", + "th": "วันเลือกตั้งสมัชชาแห่งชาติ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "national_aviation_day", + "msgid": "National Aviation Day", + "new_comment": "", + "comment": "National Aviation Day.", + "messages": { + "en_US": "National Aviation Day", + "th": "วันการบินแห่งชาติ", + "uk": "Національний день авіації" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_banking_holiday", + "msgid": "National Banking Holiday", + "new_comment": "", + "comment": "National Banking Holiday.", + "messages": { + "en_US": "National Banking Holiday", + "gu": "રાષ્ટ્રીય બેંકિંગ રજા", + "hi": "राष्ट्रीय बैंकिंग अवकाश" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "national_census_day_2010", + "msgid": "National Census Day 2010", + "new_comment": "", + "comment": "National Census Day 2010.", + "messages": { + "en_US": "National Census Day 2010", + "es": "Censo Nacional 2010", + "uk": "День національного перепису 2010" + }, + "countries": [ + "AR" + ] + }, + { + "id": "national_census_day_2022", + "msgid": "National Census Day 2022", + "new_comment": "", + "comment": "National Census Day 2022.", + "messages": { + "en_US": "National Census Day 2022", + "es": "Censo Nacional 2022", + "uk": "День національного перепису 2022" + }, + "countries": [ + "AR" + ] + }, + { + "id": "national_children_s_day", + "msgid": "National Children's Day", + "new_comment": "", + "comment": "National Children's Day.", + "messages": { + "en_GB": "National Children's Day", + "en_US": "National Children's Day", + "th": "วันเด็กแห่งชาติ", + "tvl": "Aso Tamaliki", + "uk": "Національний день дітей" + }, + "countries": [ + "TH", + "TV" + ] + }, + { + "id": "national_concord_day", + "msgid": "National Concord Day", + "new_comment": "", + "comment": "National Concord Day.", + "messages": { + "en_US": "National Concord Day", + "fr_NE": "Fête nationale de la Concorde" + }, + "countries": [ + "NE" + ] + }, + { + "id": "national_conference_for_unification_election_day", + "msgid": "National Conference for Unification Election Day", + "new_comment": "", + "comment": "National Conference for Unification Election Day.", + "messages": { + "en_US": "National Conference for Unification Election Day", + "ko": "통일주체국민회의 선거일", + "th": "วันเลือกตั้งสมัชชาแห่งชาติเพื่อการรวมชาติ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "national_day", + "msgid": "National Day", + "new_comment": "", + "comment": "National Day.", + "messages": { + "ar": { + "AE": "اليوم الوطني", + "BH": "العيد الوطني", + "KW": "اليوم الوطني", + "OM": "يوم وطني", + "SA": "اليوم الوطني" + }, + "bn": "জাতীয় দিবস", + "ca": "Festa Nacional d'Espanya", + "da": "Nationaldag", + "de": { + "AT": "Nationalfeiertag", + "BE": "Nationalfeiertag", + "CH": "Nationalfeiertag", + "LI": "Staatsfeiertag", + "LU": "Nationalfeiertag", + "PL": "Nationalfeiertag" + }, + "dv": "ޤައުމީ ދުވަސް", + "dz": "རྒྱལ་ཡོངས་དུས་ཆེན་གྱི་ངལ་གསོལ།", + "en_HK": "National Day", + "en_LC": "National Day", + "en_NG": "National Day", + "en_SC": "National Day", + "en_SG": "National Day", + "en_US": { + "AE": "National Day", + "AT": "National Day", + "BE": "National Day", + "BH": "National Day", + "BJ": "National Day", + "BN": "National Day", + "BT": "National Day", + "CF": "National Day", + "CG": "National Day", + "CH": "National Day", + "CN": "National Day", + "ES": "National Day", + "FR": "National Day", + "GL": "National Day", + "HK": "National Day", + "HU": "National Day", + "IS": "National Day", + "KW": "National Day", + "LC": "National Day", + "LI": "National Day", + "LU": "National Day", + "MM": "National Day", + "MV": "National Day", + "MY": "National Day", + "NE": "National Day", + "NG": "National Day", + "OM": "National Day", + "PL": "National Day", + "RO": "National Day", + "SA": "National Day Holiday", + "SC": "National Day", + "SE": "National Day", + "SG": "National Day", + "TH": "National Day", + "TW": "National Day", + "VN": "National Day" + }, + "es": "Fiesta Nacional de España", + "fi": "Kansallispäivä", + "fr": { + "BE": "Fête nationale", + "CF": "Fête nationale", + "CG": "Fête Nationale", + "CH": "Fête nationale", + "FR": "Fête nationale", + "LU": "Fête nationale" + }, + "fr_BJ": "Fête Nationale", + "fr_NE": "Fête nationale", + "hu": "Nemzeti ünnep", + "is": { + "GL": "Þjóðhátíðardagur", + "IS": "Þjóðhátíðardagurinn" + }, + "it": "Festa nazionale", + "kl": "Ullortuneq", + "lb": "Nationalfeierdag", + "ms": "Hari Kebangsaan", + "ms_MY": "Hari Kebangsaan", + "my": "အမျိုးသားနေ့", + "nl": "Nationale feestdag", + "no": "Nasjonaldag", + "pl": "Święto Państwowe", + "ro": "Ziua Națională a României", + "sv": { + "GL": "Nationaldag", + "SE": "Nationaldagen" + }, + "th": { + "AE": "วันชาติสหรัฐอาหรับเอมิเรตส์", + "AT": "วันชาติออสเตรีย", + "BN": "วันชาติบรูไน", + "CH": "วันชาติสวิตเซอร์แลนด์", + "CN": "วันชาติจีน", + "ES": "วันชาติสเปน", + "FR": "วันชาติฝรั่งเศส", + "HK": "วันชาติจีน", + "MM": "วันชาติ", + "MY": "วันชาติมาเลเซีย", + "SE": "วันชาติสวีเดน", + "SG": "วันชาติสิงคโปร์", + "TH": "วันชาติ", + "TW": "วันชาติสาธารณรัฐจีน(ไต้หวัน)", + "VN": "วันชาติเวียตนาม" + }, + "uk": { + "AT": "Національне свято", + "BE": "Національне свято", + "CH": "Національне свято", + "ES": "Національний день Іспанії", + "FR": "Національне свято", + "GL": "Національне свято", + "HU": "Національне свято", + "IS": "Національне свято", + "LI": "Національне свято", + "LU": "Національне свято", + "PL": "Національне свято", + "RO": "Національний день Румунії", + "SE": "Національний день", + "TH": "Національний день" + }, + "vi": "Quốc khánh", + "zh_CN": { + "CN": "国庆节", + "HK": "国庆日", + "TW": "国庆日" + }, + "zh_HK": "國慶日", + "zh_TW": { + "CN": "國慶節", + "TW": "國慶日" + } + }, + "countries": [ + "AE", + "AT", + "BE", + "BH", + "BJ", + "BN", + "BT", + "CF", + "CG", + "CH", + "CN", + "ES", + "FR", + "GL", + "HK", + "HU", + "IS", + "KW", + "LC", + "LI", + "LU", + "MM", + "MV", + "MY", + "NE", + "NG", + "OM", + "PL", + "RO", + "SA", + "SC", + "SE", + "SG", + "TH", + "TW", + "VN" + ] + }, + { + "id": "national_day_for_truth_and_reconciliation", + "msgid": "National Day for Truth and Reconciliation", + "new_comment": "", + "comment": "National Day for Truth and Reconciliation.", + "messages": { + "ar": "اليوم الوطني للحقيقة والمصالحة", + "en_CA": "National Day for Truth and Reconciliation", + "en_US": "National Day for Truth and Reconciliation", + "fr": "Journée nationale de la vérité et de la réconciliation", + "th": "วันชาติแห่งความจริงและการปรองดอง" + }, + "countries": [ + "CA" + ] + }, + { + "id": "national_day_of_catalonia", + "msgid": "National Day of Catalonia", + "new_comment": "", + "comment": "National Day of Catalonia.", + "messages": { + "ca": "Diada Nacional de Catalunya", + "en_US": "National Day of Catalonia", + "es": "Fiesta Nacional de Cataluña", + "th": "วันชาติคาตาลูญญา", + "uk": "Національний день Каталонії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "national_day_of_mourning", + "msgid": "National Day of Mourning", + "new_comment": "", + "comment": "National Day of Mourning.", + "messages": { + "en_MS": "National Day of Mourning", + "en_US": "National Day of Mourning" + }, + "countries": [ + "MS" + ] + }, + { + "id": "national_day_of_mourning_for_former_president_george_h_w_bush", + "msgid": "National Day of Mourning for former President George H. W. Bush", + "new_comment": "", + "comment": "National Day of Mourning for former President George H. W. Bush.", + "messages": { + "en_US": "National Day of Mourning for former President George H. W. Bush", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ જ્યોર્જ એચ. ડબ્લ્યુ. બુશ માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "पूर्व राष्ट्रपति जॉर्ज एच. डब्लू. बुश के लिए राष्ट्रीय शोक दिवस", + "th": "วันไว้ทุกข์แห่งชาติแด่อดีตประธานาธิบดีจอร์จ เอช. ดับเบิลยู. บุช" + }, + "countries": [ + "US", + "XCME", + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_former_president_gerald_r_ford", + "msgid": "National Day of Mourning for former President Gerald R. Ford", + "new_comment": "", + "comment": "National Day of Mourning for former President Gerald R. Ford.", + "messages": { + "en_US": "National Day of Mourning for former President Gerald R. Ford", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ ગેરાલ્ડ આર. ફોર્ડ માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "पूर्व राष्ट्रपति जेराल्ड आर. फोर्ड के लिए राष्ट्रीय शोक दिवस", + "th": "วันไว้ทุกข์แห่งชาติแด่อดีตประธานาธิบดีเจอรัลด์ อาร์. ฟอร์ด" + }, + "countries": [ + "US", + "XCME", + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_former_president_jimmy_carter", + "msgid": "National Day of Mourning for former President Jimmy Carter", + "new_comment": "", + "comment": "National Day of Mourning for former President Jimmy Carter.", + "messages": { + "en_US": "National Day of Mourning for former President Jimmy Carter", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ જિમી કાર્ટર માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "पूर्व राष्ट्रपति जिमी कार्टर के लिए राष्ट्रीय शोक दिवस", + "th": "วันไว้ทุกข์แห่งชาติแด่อดีตประธานาธิบดีจิมมี คาร์เตอร์" + }, + "countries": [ + "US", + "XCME", + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_former_president_ronald_reagan", + "msgid": "National Day of Mourning for former President Ronald Reagan", + "new_comment": "", + "comment": "National Day of Mourning for former President Ronald Reagan.", + "messages": { + "en_US": "National Day of Mourning for former President Ronald Reagan", + "gu": "ભૂતપૂર્વ રાષ્ટ્રપતિ રોનાલ્ડ રેગન માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "पूर्व राष्ट्रपति रोनाल्ड रीगन के लिए राष्ट्रीय शोक दिवस", + "th": "วันไว้ทุกข์แห่งชาติแด่อดีตประธานาธิบดีโรนัลด์ เรแกน" + }, + "countries": [ + "US", + "XCME", + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_martin_luther_king_jr", + "msgid": "National Day of Mourning for Martin Luther King, Jr", + "new_comment": "", + "comment": "National Day of Mourning for Martin Luther King, Jr.", + "messages": { + "en_US": "National Day of Mourning for Martin Luther King, Jr.", + "gu": "માર્ટિન લ્યુથર કિંગ જુનિયર માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "मार्टिन लूथर किंग, जूनियर के लिए राष्ट्रीय शोक दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_president_franklin_d_roosevelt", + "msgid": "National Day of Mourning for President Franklin D. Roosevelt", + "new_comment": "", + "comment": "National Day of Mourning for President Franklin D. Roosevelt.", + "messages": { + "en_US": "National Day of Mourning for President Franklin D. Roosevelt", + "gu": "રાષ્ટ્રપતિ ફ્રેન્કલિન ડી. રૂઝવેલ્ટ માટે રાષ્ટ્રીય શોક દિવસ", + "hi": "राष्ट्रपति फ्रैंकलिन डी. रूजवेल्ट के लिए राष्ट्रीय शोक दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "national_day_of_mourning_for_queen_elizabeth_ii", + "msgid": "National Day of Mourning for Queen Elizabeth II", + "new_comment": "", + "comment": "National Day of Mourning for Queen Elizabeth II.", + "messages": { + "coa_CC": "Hari Berkabung Negara untuk Ratu Elizabeth II", + "en_AU": "National Day of Mourning for Queen Elizabeth II", + "en_CC": "National Day of Mourning for Queen Elizabeth II", + "en_CX": "National Day of Mourning for Queen Elizabeth II", + "en_NF": "National Day of Mourning for Queen Elizabeth II", + "en_US": "National Day of Mourning for Queen Elizabeth II", + "th": "วันไว้ทุกข์แห่งชาติแด่สมเด็จพระราชินีนาถเอลิซาเบธที่ 2" + }, + "countries": [ + "AU", + "CC", + "CX", + "NF" + ] + }, + { + "id": "national_day_of_participation_for_the_lunar_exploration", + "msgid": "National Day of Participation for the Lunar Exploration", + "new_comment": "", + "comment": "National Day of Participation for the Lunar Exploration.", + "messages": { + "en_US": "National Day of Participation for the Lunar Exploration", + "gu": "ચંદ્ર અન્વેષણ માટે રાષ્ટ્રીય ભાગીદારી દિવસ", + "hi": "चंद्र अन्वेषण के लिए राष्ट्रीय भागीदारी दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "national_day_of_patriotism_and_commemoration_of_the_death_of_president_pierre_nkurunziza", + "msgid": "National Day of Patriotism and Commemoration of the Death of President Pierre Nkurunziza", + "new_comment": "", + "comment": "National Day of Patriotism and Commemoration of the Death of President Pierre Nkurunziza.", + "messages": { + "en_US": "National Day of Patriotism and Commemoration of the Death of President Pierre Nkurunziza", + "fr_BI": "Journée Nationale du Patriotisme et Commémoration de la Mort du Président Pierre Nkurunziza" + }, + "countries": [ + "BI" + ] + }, + { + "id": "national_day_of_prayer_and_thanksgiving", + "msgid": "National Day of Prayer and Thanksgiving", + "new_comment": "", + "comment": "National Day of Prayer and Thanksgiving.", + "messages": { + "en_MS": "National Day of Prayer and Thanksgiving", + "en_US": "National Day of Prayer and Thanksgiving" + }, + "countries": [ + "MS" + ] + }, + { + "id": "national_day_of_rebirth_of_poland", + "msgid": "National Day of Rebirth of Poland", + "new_comment": "", + "comment": "National Day of Rebirth of Poland.", + "messages": { + "de": "Nationalfeiertag der Wiedergeburt Polens", + "en_US": "National Day of Rebirth of Poland", + "pl": "Narodowe Święto Odrodzenia Polski", + "uk": "День національного відродження Польщі" + }, + "countries": [ + "PL" + ] + }, + { + "id": "national_day_of_remembrance", + "msgid": "National Day of Remembrance", + "new_comment": "", + "comment": "National Day of Remembrance.", + "messages": { + "en_US": "National Day of Remembrance", + "km": "ទិវាជាតិនៃការចងចាំ", + "th": "วันแห่งความทรงจำ" + }, + "countries": [ + "KH" + ] + }, + { + "id": "national_day_of_remembrance_for_truth_and_justice", + "msgid": "National Day of Remembrance for Truth and Justice", + "new_comment": "", + "comment": "National Day of Remembrance for Truth and Justice.", + "messages": { + "en_US": "National Day of Remembrance for Truth and Justice", + "es": "Día Nacional de la Memoria por la Verdad y la Justicia", + "uk": "Національний день памʼяті заради правди та правосуддя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "national_day_of_thanksgiving", + "msgid": "National Day of Thanksgiving", + "new_comment": "", + "comment": "National Day of Thanksgiving.", + "messages": { + "en_TC": "National Day of Thanksgiving", + "en_US": "National Day of Thanksgiving" + }, + "countries": [ + "TC" + ] + }, + { + "id": "national_day_of_the_evangelical_and_protestant_churches", + "msgid": "Reformation Day", + "new_comment": "", + "comment": "National Day of the Evangelical and Protestant Churches.", + "messages": { + "en_US": "Reformation Day", + "es": "Día Nacional de las Iglesias Evangélicas y Protestantes", + "uk": "День Реформації" + }, + "countries": [ + "CL" + ] + }, + { + "id": "national_day_of_the_people_s_republic_of_china", + "msgid": "National Day of the People's Republic of China", + "new_comment": "", + "comment": "National Day of the People's Republic of China.", + "messages": { + "en_MO": "National Day of the People's Republic of China", + "en_US": "National Day of the People's Republic of China", + "pt_MO": "Implantação da República Popular da China", + "th": "วันชาติจีน", + "zh_CN": "中华人民共和国国庆日", + "zh_MO": "中華人民共和國國慶日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "national_day_of_the_republic_of_china", + "msgid": "National Day of the Republic of China", + "new_comment": "", + "comment": "National Day of the Republic of China.", + "messages": { + "en_HK": "National Day of the Republic of China", + "en_US": "National Day of the Republic of China", + "th": "วันชาติสาธารณรัฐจีน(ไต้หวัน)", + "zh_CN": "中华民国国庆日", + "zh_HK": "中華民國國慶日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "national_day_of_the_republic_of_mali", + "msgid": "National Day of the Republic of Mali", + "new_comment": "", + "comment": "National Day of the Republic of Mali.", + "messages": { + "en_US": "National Day of the Republic of Mali", + "fr": "Fête Nationale de la République du Mali" + }, + "countries": [ + "ML" + ] + }, + { + "id": "national_day_of_the_third_of_may", + "msgid": "National Day of the Third of May", + "new_comment": "", + "comment": "National Day of the Third of May.", + "messages": { + "de": "Nationalfeiertag am 3. Mai", + "en_US": "National Day of the Third of May", + "pl": "Święto Narodowe Trzeciego Maja", + "uk": "Національне свято Третього Травня" + }, + "countries": [ + "PL" + ] + }, + { + "id": "national_day_of_zumbi_and_black_awareness", + "msgid": "National Day of Zumbi and Black Awareness", + "new_comment": "", + "comment": "National Day of Zumbi and Black Awareness.", + "messages": { + "en_US": "National Day of Zumbi and Black Awareness", + "pt_BR": "Dia Nacional de Zumbi e da Consciência Negra", + "uk": "Національний день Зумбі та свідомості темношкірих" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "national_democracy_day", + "msgid": "National Democracy Day", + "new_comment": "", + "comment": "National Democracy Day.", + "messages": { + "en_US": "National Democracy Day", + "kn": "ರಾಷ್ಟ್ರೀಯ ಪ್ರಜಾಪ್ರಭುತ್ವ ದಿನ", + "ne": "राष्ट्रिय प्रजातन्त्र दिवस" + }, + "countries": [ + "NP" + ] + }, + { + "id": "national_dignity_day", + "msgid": "National Dignity Day", + "new_comment": "", + "comment": "National Dignity Day.", + "messages": { + "en_US": "National Dignity Day", + "es": "Día de la Dignidad Nacional", + "uk": "День національної гідності" + }, + "countries": [ + "BO" + ] + }, + { + "id": "national_environmental_sanitation_day", + "msgid": "National Environmental Sanitation Day", + "new_comment": "", + "comment": "National Environmental Sanitation Day.", + "messages": { + "ar": "يوم وطني للإصحاح البيئي", + "en_US": "National Environmental Sanitation Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "national_father_s_day", + "msgid": "National Father's Day", + "new_comment": "", + "comment": "National Father's Day.", + "messages": { + "en_US": "National Father's Day", + "th": "วันพ่อแห่งชาติ", + "uk": "Національний день батька" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_festival_and_people_s_revolution_anniversary", + "msgid": "National Festival and People's Revolution Anniversary", + "new_comment": "", + "comment": "National Festival and People's Revolution Anniversary.", + "messages": { + "en_US": "National Festival and People's Revolution Anniversary", + "mn": "Үндэсний их баяр наадам, Ардын хувьсгалын ойн баяр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "national_flag_day", + "msgid": "National Flag Day", + "new_comment": "", + "comment": "National Flag Day.", + "messages": { + "az": "Azərbaycan Respublikasının Dövlət bayrağı günü", + "da": "Flagdag", + "en_US": "National Flag Day", + "fo": "Flaggdagur", + "is": "Fánadagur", + "mn": "Монгол Улсын төрийн далбааны өдөр", + "no": "Flaggdag", + "sv": "Flaggdagen", + "uk": "День державного прапора" + }, + "countries": [ + "AZ", + "FO", + "MN" + ] + }, + { + "id": "national_forest_conservation_day", + "msgid": "National Forest Conservation Day", + "new_comment": "", + "comment": "National Forest Conservation Day.", + "messages": { + "en_US": "National Forest Conservation Day", + "th": "วันอนุรักษ์ทรัพยากรป่าไม้ของชาติ", + "uk": "Національний день охорони лісів" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_foundation_day", + "msgid": "National Foundation Day", + "new_comment": "", + "comment": "National Foundation Day.", + "messages": { + "en_US": "National Foundation Day", + "ko": "개천절", + "th": "วันสถาปนาประเทศ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "national_freedom_and_independence_day", + "msgid": "National Freedom and Independence Day", + "new_comment": "", + "comment": "National Freedom and Independence Day.", + "messages": { + "en_US": "National Freedom and Independence Day", + "mn": "Үндэсний эрх чөлөө, тусгаар тогтнолоо сэргээсний баярын өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "national_freedom_day", + "msgid": "National Freedom Day", + "new_comment": "", + "comment": "National Freedom Day.", + "messages": { + "en_US": "National Freedom Day", + "mn": "Үндэсний эрх чөлөөний өдөр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "national_heritage_day", + "msgid": "National Heritage Day", + "new_comment": "", + "comment": "National Heritage Day.", + "messages": { + "en_TC": "National Heritage Day", + "en_US": "National Heritage Day" + }, + "countries": [ + "TC" + ] + }, + { + "id": "national_hero_laurent_d_sir_kabila_day", + "msgid": "National Hero Laurent Désiré Kabila Day", + "new_comment": "", + "comment": "National Hero Laurent Désiré Kabila Day.", + "messages": { + "en_US": "National Hero Laurent Désiré Kabila Day", + "fr": "Journée du héros national Laurent Désiré Kabila" + }, + "countries": [ + "CD" + ] + }, + { + "id": "national_hero_patrice_emery_lumumba_day", + "msgid": "National Hero Patrice Emery Lumumba Day", + "new_comment": "", + "comment": "National Hero Patrice Emery Lumumba Day.", + "messages": { + "en_US": "National Hero Patrice Emery Lumumba Day", + "fr": "Journée du héros national Patrice Emery Lumumba" + }, + "countries": [ + "CD" + ] + }, + { + "id": "national_heroes_and_heroines_day", + "msgid": "National Heroes and Heroines Day", + "new_comment": "", + "comment": "National Heroes and Heroines Day.", + "messages": { + "en_AI": "National Heroes and Heroines Day", + "en_US": "National Heroes and Heroines Day" + }, + "countries": [ + "AI" + ] + }, + { + "id": "national_heroes_day_1", + "msgid": "National Heroes Day", + "new_comment": "", + "comment": "National Heroes Day.", + "messages": { + "de": "Tag der Nationalhelden", + "en_BM": "National Heroes Day", + "en_GB": "National Heroes Day", + "en_PH": "National Heroes Day", + "en_TC": "National Heroes Day", + "en_TL": "National Heroes Day", + "en_US": "National Heroes Day", + "es": "Día de la Nacionalidad y de los Héroes Nacionales", + "fil": "Araw ng mga Bayani", + "fr": "Journée de la nationalité et des héros nationaux", + "pt_CV": "Dia da Nacionalidade e dos Heróis Nacionais", + "pt_TL": "Dia dos Heróis Nacionais", + "tet": "Loron Eroi Nasionál sira nian", + "th": "วันวีรบุรุษแห่งชาติ" + }, + "countries": [ + "BM", + "CV", + "KY", + "PH", + "TC", + "TL" + ] + }, + { + "id": "national_heroes_day_2", + "msgid": "National Heroes' Day", + "new_comment": "", + "comment": "National Heroes' Day.", + "messages": { + "en_GD": "National Heroes' Day", + "en_US": "National Heroes' Day", + "en_VC": "National Heroes' Day", + "fr": "Journée Nationale des Héros", + "pt_AO": "Dia do Fundador da Nação e do Herói Nacional", + "pt_GW": "Dia dos Heróis Nacionais", + "rw": "Umunsi w'Intwari", + "uk": "День засновника нації та національного героя" + }, + "countries": [ + "AO", + "GD", + "GW", + "RW", + "VC" + ] + }, + { + "id": "national_holiday", + "msgid": "National Holiday", + "new_comment": "", + "comment": "National Holiday.", + "messages": { + "en_US": "National Holiday", + "es": { + "CL": "Fiestas Patrias", + "PY": "Feriado Nacional" + }, + "it_IT": "Festa Nazionale", + "ja": "国民の休日", + "th": "วันหยุดพิเศษ (เพิ่มเติม)", + "uk": "Національне свято" + }, + "countries": [ + "CL", + "IT", + "JP", + "PY" + ] + }, + { + "id": "national_holidays", + "msgid": "National Holidays", + "new_comment": "", + "comment": "National Holidays.", + "messages": { + "en_US": "National Holidays", + "es": "Fiesta Nacional", + "uk": "Національне свято" + }, + "countries": [ + "VE" + ] + }, + { + "id": "national_holidays_special", + "msgid": "National Holidays (Special)", + "new_comment": "", + "comment": "National Holidays (Special).", + "messages": { + "en_TL": "National Holidays (Special)", + "en_US": "National Holidays (Special)", + "pt_TL": "Feriados Nacionais (Especiais)", + "tet": "Feriadu Nasional (Espesial)", + "th": "วันหยุดพิเศษ (เพิ่มเติม)" + }, + "countries": [ + "TL" + ] + }, + { + "id": "national_independence_day", + "msgid": "National Independence Day", + "new_comment": "", + "comment": "National Independence Day.", + "messages": { + "az": "Milli Müstəqillik Günü", + "de": "Tag der Nationalen Unabhängigkeit", + "en_US": "National Independence Day", + "es": "Día de la Independencia Nacional", + "fr": "Fête de l'Indépendance Nationale", + "fr_HT": "Fête de l'Indépendance Nationale", + "ht": "Jounen Endepandans Nasyonal", + "km": "ពិធីបុណ្យឯករាជ្យជាតិ", + "pt_AO": "Dia da Independência Nacional", + "pt_CV": "Dia da Independência Nacional", + "pt_MZ": "Dia da Independência Nacional", + "th": "วันประกาศเอกราชจากฝรั่งเศส", + "uk": "День національної незалежності" + }, + "countries": [ + "AO", + "AZ", + "CV", + "DO", + "GQ", + "HT", + "KH", + "MZ", + "PY" + ] + }, + { + "id": "national_independence_day_100th_anniversary", + "msgid": "National Independence Day - 100th anniversary", + "new_comment": "", + "comment": "National Independence Day - 100th anniversary.", + "messages": { + "de": "Nationalfeiertag der Unabhängigkeit - 100. Jahrestag", + "en_US": "National Independence Day - 100th anniversary", + "pl": "Narodowe Święto Niepodległości - 100-lecie", + "uk": "100-а річниця Дня незалежності" + }, + "countries": [ + "PL" + ] + }, + { + "id": "national_independence_day_pl", + "msgid": "National Day of Independence", + "new_comment": "", + "comment": "National Independence Day.", + "messages": { + "de": "Nationalfeiertag der Unabhängigkeit", + "en_US": "National Independence Day", + "pl": "Narodowe Święto Niepodległości", + "uk": "День незалежності" + }, + "countries": [ + "PL" + ] + }, + { + "id": "national_indigenous_peoples_day", + "msgid": "National Indigenous Peoples Day", + "new_comment": "", + "comment": "National Indigenous Peoples Day.", + "messages": { + "en_US": "National Indigenous Peoples Day", + "es": "Día Nacional de los Pueblos Indígenas", + "uk": "Національний день корінних народів" + }, + "countries": [ + "CL" + ] + }, + { + "id": "national_labor_day", + "msgid": "National Labor Day", + "new_comment": "", + "comment": "National Labor Day.", + "messages": { + "en_US": "National Labor Day", + "th": "วันแรงงานแห่งชาติ", + "uk": "Національний день праці" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_language_day", + "msgid": "National Language Day", + "new_comment": "", + "comment": "National Language Day.", + "messages": { + "en_US": "National Language Day", + "ro": "Limba noastră", + "uk": "День рідної мови" + }, + "countries": [ + "MD" + ] + }, + { + "id": "national_liberation_day", + "msgid": "National Liberation Day", + "new_comment": "", + "comment": "National Liberation Day.", + "messages": { + "az": "Azərbaycan xalqının milli qurtuluş günü", + "en_US": "National Liberation Day", + "es": "Día de la Liberación Nacional", + "uk": { + "AZ": "День національного визволення азербайджанського народу", + "CL": "День національного визволення" + } + }, + "countries": [ + "AZ", + "CL" + ] + }, + { + "id": "national_literary_cultural_and_book_days", + "msgid": "National Literary, Cultural and Book Days", + "new_comment": "", + "comment": "National Literary, Cultural and Book Days.", + "messages": { + "en_US": "National Literary, Cultural and Book Days", + "mn": "Үндэсний бичиг соёл, номын өдрүүд" + }, + "countries": [ + "MN" + ] + }, + { + "id": "national_memorial_day", + "msgid": "National Memorial Day", + "new_comment": "", + "comment": "National Memorial Day.", + "messages": { + "en_US": "National Memorial Day", + "ru": "Национальный день поминовения", + "tk": "Milli ýatlama güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "national_mother_s_day", + "msgid": "National Mother's Day", + "new_comment": "", + "comment": "National Mother's Day.", + "messages": { + "en_US": "National Mother's Day", + "th": "วันแม่แห่งชาติ", + "uk": "Національний день матері" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_mourning_day", + "msgid": "National Mourning Day", + "new_comment": "", + "comment": "National Mourning Day.", + "messages": { + "ar": "اليوم الوطني للحداد", + "bn": "জাতীয় শোক দিবস", + "en_BD": "National Mourning Day", + "en_US": "National Mourning Day", + "es": "Día de Duelo Nacional", + "uk": "День національної скорботи" + }, + "countries": [ + "BD", + "PA" + ] + }, + { + "id": "national_patriots_day", + "msgid": "National Patriots' Day", + "new_comment": "", + "comment": "National Patriots' Day.", + "messages": { + "ar": "يوم الوطنيين", + "en_CA": "National Patriots' Day", + "en_US": "National Patriots' Day", + "fr": "Journée nationale des patriotes", + "th": "วันรำลึกกลุ่มแปตรีออต (ควิเบก)" + }, + "countries": [ + "CA" + ] + }, + { + "id": "national_peace_day", + "msgid": "National Peace Day", + "new_comment": "", + "comment": "National Peace Day.", + "messages": { + "en_CI": "National Peace Day", + "en_US": "National Peace Day", + "fr": "Journée Nationale de la Paix" + }, + "countries": [ + "CI" + ] + }, + { + "id": "national_petroleum_day", + "msgid": "National Petroleum Day", + "new_comment": "", + "comment": "National Petroleum Day.", + "messages": { + "en_US": "National Petroleum Day", + "es": "Día del Petróleo Nacional", + "uk": "Національний день нафти" + }, + "countries": [ + "AR" + ] + }, + { + "id": "national_police_day", + "msgid": "Police Day", + "new_comment": "", + "comment": "National Police Day.", + "messages": { + "ar_EG": "عيد الشرطة", + "en_US": "Police Day", + "fr": "Fête de la Police" + }, + "countries": [ + "EG" + ] + }, + { + "id": "national_population_and_housing_census", + "msgid": "National Population and Housing Census", + "new_comment": "", + "comment": "National Population and Housing Census.", + "messages": { + "en_US": "National Population and Housing Census", + "es": "Censo Nacional de Población y Vivienda", + "uk": "Національний перепис населення та житла" + }, + "countries": [ + "CL" + ] + }, + { + "id": "national_population_and_housing_census_day", + "msgid": "National Population and Housing Census Day", + "new_comment": "", + "comment": "National Population and Housing Census Day.", + "messages": { + "en_US": "National Population and Housing Census Day", + "sw": "Siku ya Sensa ya Kitaifa ya Watu na Makazi" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "national_revival_day", + "msgid": "National Revival Day", + "new_comment": "", + "comment": "National Revival Day.", + "messages": { + "az": "Milli Dirçəliş Günü", + "en_US": "National Revival Day", + "uk": "День національного відродження" + }, + "countries": [ + "AZ" + ] + }, + { + "id": "national_science_day", + "msgid": "National Science Day", + "new_comment": "", + "comment": "National Science Day.", + "messages": { + "en_US": "National Science Day", + "th": "วันวิทยาศาสตร์แห่งชาติ", + "uk": "Національний день науки" + }, + "countries": [ + "TH" + ] + }, + { + "id": "national_sovereignty_and_children_s_day", + "msgid": "National Sovereignty and Children's Day", + "new_comment": "", + "comment": "National Sovereignty and Children's Day.", + "messages": { + "en_US": "National Sovereignty and Children's Day", + "tr": "Ulusal Egemenlik ve Çocuk Bayramı", + "uk": "День національної незалежності та дітей" + }, + "countries": [ + "TR" + ] + }, + { + "id": "national_sovereignty_day", + "msgid": "National Sovereignty Day", + "new_comment": "", + "comment": "National Sovereignty Day.", + "messages": { + "en_US": "National Sovereignty Day", + "es": "Día de la Soberanía Nacional", + "fr_HT": "Fête de la Souveraineté Nationale", + "ht": "Jounen Nasyonal Souverènte", + "tr": "Ulusal Egemenlik Bayramı", + "uk": { + "AR": "День національного суверенітету", + "TR": "День національної незалежності" + } + }, + "countries": [ + "AR", + "HT", + "TR" + ] + }, + { + "id": "national_spiritual_baptist_day", + "msgid": "National Spiritual Baptist Day", + "new_comment": "", + "comment": "National Spiritual Baptist Day.", + "messages": { + "en_US": "National Spiritual Baptist Day", + "en_VC": "National Spiritual Baptist Day" + }, + "countries": [ + "VC" + ] + }, + { + "id": "national_sports_day", + "msgid": "National Sports Day", + "new_comment": "", + "comment": "National Sports Day.", + "messages": { + "ar_QA": "اليوم الوطني للرياضة", + "en_US": "National Sports Day" + }, + "countries": [ + "QA" + ] + }, + { + "id": "national_symbols_day", + "msgid": "National Symbols Day", + "new_comment": "", + "comment": "National Symbols Day.", + "messages": { + "en_US": "National Symbols Day", + "es": "Día de los Símbolos Patrios", + "uk": "День національних символів" + }, + "countries": [ + "PA" + ] + }, + { + "id": "national_teacher_day", + "msgid": "National Teacher Day", + "new_comment": "", + "comment": "National Teacher Day.", + "messages": { + "en_US": "National Teacher Day", + "lo": "ວັນຄູແຫ່ງຊາດ", + "th": "วันครูแห่งชาติ" + }, + "countries": [ + "LA" + ] + }, + { + "id": "national_tree_growing_day", + "msgid": "National Tree Growing Day", + "new_comment": "", + "comment": "National Tree Growing Day.", + "messages": { + "en_KE": "National Tree Growing Day", + "en_US": "National Tree Growing Day", + "sw": "Siku ya Kitaifa ya Kupanda Miti" + }, + "countries": [ + "KE" + ] + }, + { + "id": "national_unity_day", + "msgid": "National Unity Day", + "new_comment": "", + "comment": "National Unity Day.", + "messages": { + "ar": "عيد الوحدة الوطنية", + "en_US": "National Unity Day", + "es": { + "CL": "Día de la Unidad Nacional", + "EH": "Fiesta de la unidad nacional" + }, + "fr": "Fête de l'unité nationale", + "it_IT": "Giorno dell'unità nazionale", + "ka": "ეროვნული ერთიანობის დღე", + "ru": "День Национального единства", + "tg": "Рӯзи Ваҳдати миллӣ", + "th": "วันเอกภาพแห่งชาติ", + "uk": "День національної єдності" + }, + "countries": [ + "CL", + "EH", + "GE", + "IT", + "TJ" + ] + }, + { + "id": "national_uprising_day", + "msgid": "National Uprising Day", + "new_comment": "", + "comment": "National Uprising Day.", + "messages": { + "en_US": "National Uprising Day", + "lo": "ວັນຍຶດອຳນາດທົ່ວປະເທດ", + "mk": "Ден на народното востание", + "th": "วันยึดอำนาจทั่วประเทศ", + "uk": "День народного повстання" + }, + "countries": [ + "LA", + "MK" + ] + }, + { + "id": "national_victory_and_freedom_day", + "msgid": "National Victory and Freedom Day", + "new_comment": "", + "comment": "National Victory and Freedom Day.", + "messages": { + "de": "Nationalfeiertag des Sieges und der Freiheit", + "en_US": "National Victory and Freedom Day", + "pl": "Narodowe Święto Zwycięstwa i Wolności", + "uk": "Національне свято перемоги та свободи" + }, + "countries": [ + "PL" + ] + }, + { + "id": "national_war_veterans_day", + "msgid": "National War Veterans' Day", + "new_comment": "", + "comment": "National War Veterans' Day.", + "messages": { + "en_US": "National War Veterans' Day", + "fi": "Kansallinen veteraanipäivä", + "sv_FI": "Nationella veterandagen", + "th": "วันทหารผ่านศึกแห่งชาติ", + "uk": "Національний день ветеранів" + }, + "countries": [ + "FI" + ] + }, + { + "id": "national_women_s_day", + "msgid": "National Women's Day", + "new_comment": "", + "comment": "National Women's Day.", + "messages": { + "en_TL": "National Women's Day", + "en_US": "National Women's Day", + "pt_TL": "Dia Nacional da Mulher", + "tet": "Loron Nasionál Feto", + "th": "วันสตรีแห่งชาติ" + }, + "countries": [ + "TL" + ] + }, + { + "id": "national_workers_day", + "msgid": "National Workers' Day", + "new_comment": "", + "comment": "National Workers' Day.", + "messages": { + "en_US": "National Workers' Day", + "en_VC": "National Workers' Day" + }, + "countries": [ + "VC" + ] + }, + { + "id": "national_youth_day", + "msgid": "National Youth Day", + "new_comment": "", + "comment": "National Youth Day.", + "messages": { + "en_GB": "National Youth Day", + "en_NR": "National Youth Day", + "en_TC": "National Youth Day", + "en_TL": "National Youth Day", + "en_US": "National Youth Day", + "pt_TL": "Dia Nacional da Juventude", + "sq": "Dita Kombëtare e Rinisë", + "tet": "Loron Nasionál Foin-Sa'e sira nian", + "th": "วันเยาวชนแห่งชาติ", + "tvl": "Aso tupulaga", + "uk": "Національний день молоді" + }, + "countries": [ + "AL", + "NR", + "TC", + "TL", + "TV" + ] + }, + { + "id": "nations_nationalities_and_peoples_day", + "msgid": "Nations, Nationalities and Peoples Day", + "new_comment": "", + "comment": "Nations, Nationalities and Peoples Day.", + "messages": { + "am": "የብሔር ብሔረሰቦች ቀን", + "ar": "يوم الأمم والقوميات والشعوب", + "en_ET": "Ethiopian National Unity Day (Ethiopian Nations and Nationalities) Day", + "en_US": "Nations, Nationalities and Peoples Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "nationwide_latvian_song_and_dance_celebration_final_day", + "msgid": "Nationwide Latvian Song and Dance Celebration Final Day", + "new_comment": "", + "comment": "Nationwide Latvian Song and Dance Celebration Final Day.", + "messages": { + "en_US": "Nationwide Latvian Song and Dance Celebration Final Day", + "lv": "Vispārējo latviešu Dziesmu un deju svētku noslēguma diena", + "ru": "День закрытия Всеобщего латышского праздника песни и танца", + "uk": "День закриття загальнолатвійського фестивалю пісні і танцю" + }, + "countries": [ + "LV" + ] + }, + { + "id": "native_american_heritage_day", + "msgid": "Native American Heritage Day", + "new_comment": "", + "comment": "Native American Heritage Day.", + "messages": { + "en_US": "Native American Heritage Day", + "th": "วันอนุรักษ์มรดกชนพื้นเมืองอเมริกัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "native_americans_day", + "msgid": "Native Americans' Day", + "new_comment": "", + "comment": "Native Americans' Day.", + "messages": { + "en_US": "Native Americans' Day", + "th": "วันชนพื้นเมืองอเมริกัน" + }, + "countries": [ + "US" + ] + }, + { + "id": "nativity_of_bernardo_o_higgins_chill_n_and_chill_n_viejo_communes", + "msgid": "Nativity of Bernardo O'Higgins (Chillán and Chillán Viejo communes)", + "new_comment": "", + "comment": "Nativity of Bernardo O'Higgins (Chillán and Chillán Viejo communes)", + "messages": { + "en_US": "Nativity of Bernardo O'Higgins (Chillán and Chillán Viejo communes)", + "es": "Nacimiento del Prócer de la Independencia (Chillán y Chillán Viejo)", + "uk": "Річниця Бернардо ОʼГіґґінса (свято комун Чіллан і Чіллан Вʼєхо)" + }, + "countries": [ + "CL" + ] + }, + { + "id": "nativity_of_mary", + "msgid": "Nativity of Mary", + "new_comment": "", + "comment": "Nativity of Mary.", + "messages": { + "de": "Mariä Geburt", + "en_US": "Nativity of Mary", + "it_IT": "Natività della Beata Vergine Maria", + "th": "วันฉลองแม่พระบังเกิด", + "uk": "Різдво Пресвятої Богородиці" + }, + "countries": [ + "IT", + "LI" + ] + }, + { + "id": "nature_s_day", + "msgid": "Nature's Day", + "new_comment": "", + "comment": "Nature's Day.", + "messages": { + "en_US": "Nature's Day", + "fa_IR": "روز طبیعت" + }, + "countries": [ + "IR" + ] + }, + { + "id": "naval_glories_day", + "msgid": "Navy Day", + "new_comment": "", + "comment": "Naval Glories Day.", + "messages": { + "en_US": "Navy Day", + "es": "Día de las Glorias Navales", + "uk": "День військово-морської слави" + }, + "countries": [ + "CL" + ] + }, + { + "id": "navy_day", + "msgid": "Navy Day", + "new_comment": "", + "comment": "Navy Day.", + "messages": { + "en_US": "Navy Day", + "gu": "નેવી ડે (નૌકાદળ દિવસ)", + "hi": "नौसेना दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "nawam_full_moon_poya_day", + "msgid": "Nawam Full Moon Poya Day", + "new_comment": "", + "comment": "Nawam Full Moon Poya Day.", + "messages": { + "en_US": "Nawam Full Moon Poya Day", + "si_LK": "නවම් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "நவம் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "nepali_new_year", + "msgid": "Nepali New Year", + "new_comment": "", + "comment": "Nepali New Year.", + "messages": { + "en_US": "Nepali New Year", + "kn": "ನೇಪಾಳಿ ಹೊಸ ವರ್ಷ", + "ne": "नेपाली नयाँ वर्ष" + }, + "countries": [ + "NP" + ] + }, + { + "id": "nevada_day", + "msgid": "Nevada Day", + "new_comment": "", + "comment": "Nevada Day.", + "messages": { + "en_US": "Nevada Day", + "th": "วันเนวาดา" + }, + "countries": [ + "US" + ] + }, + { + "id": "new_brunswick_day", + "msgid": "New Brunswick Day", + "new_comment": "", + "comment": "New Brunswick Day.", + "messages": { + "ar": "يوم نيو برونزويك", + "en_CA": "New Brunswick Day", + "en_US": "New Brunswick Day", + "fr": "Jour du Nouveau Brunswick", + "th": "วันนิวบรันสวิก" + }, + "countries": [ + "CA" + ] + }, + { + "id": "new_government_celebration_day", + "msgid": "New Government Celebration Day", + "new_comment": "", + "comment": "New Government Celebration Day.", + "messages": { + "en_US": "New Government Celebration Day", + "ko": "신정부 경축의 날", + "th": "วันเฉลิมฉลองรัฐบาลใหม่" + }, + "countries": [ + "KR" + ] + }, + { + "id": "new_harvest_days", + "msgid": "New Harvest Days", + "new_comment": "", + "comment": "New Harvest Days.", + "messages": { + "en_US": "New Harvest Days", + "mn": "Шинэ ургацын өдрүүд" + }, + "countries": [ + "MN" + ] + }, + { + "id": "new_punjab_day", + "msgid": "New Punjab Day", + "new_comment": "", + "comment": "New Punjab Day.", + "messages": { + "bn": "নতুন পাঞ্জাব দিবস", + "en_IN": "New Punjab Day", + "en_US": "New Punjab Day", + "gu": "નવો પંજાબ દિવસ", + "hi": "नया पंजाब दिवस", + "kn": "ಹೊಸ ಪಂಜಾಬ್ ದಿನೋತ್ಸವ", + "ml": "പുതിയ പഞ്ചാബ് ദിനം", + "mr": "नवीन पंजाब दिन", + "pa": "ਨਵਾਂ ਪੰਜਾਬ ਦਿਵਸ", + "ta": "நியூ பஞ்சாப் நாள்", + "te": "కొత్త పంజాబ్ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "new_year_holiday", + "msgid": "New Year Holiday", + "new_comment": "", + "comment": "New Year Holiday.", + "messages": { + "en_GB": "New Year Holiday", + "en_SC": "New Year Holiday", + "en_US": "New Year Holiday", + "th": "หยุดวันขึ้นปีใหม่" + }, + "countries": [ + "GB", + "SC" + ] + }, + { + "id": "new_year_holidays", + "msgid": "New Year Holidays", + "new_comment": "", + "comment": "New Year Holidays.", + "messages": { + "en_US": "New Year Holidays", + "ky": "Жаңы жылдык каникулдар", + "ru": "Новогодние каникулы", + "ru_KG": "Новогодние каникулы", + "th": "วันหยุดขึ้นปีใหม่", + "zh_CN": "元旦假期" + }, + "countries": [ + "KG", + "RU" + ] + }, + { + "id": "new_year_s_day", + "msgid": "New Year's Day", + "new_comment": "", + "comment": "New Year's Day.", + "messages": { + "ar": { + "AE": "رأس السنة الميلادية", + "BH": "رأس السنة الميلادية", + "CA": "رأس السنة الميلادية", + "DJ": "رأس السنة الميلادية", + "DZ": "رأس السنة الميلادية", + "IQ": "رأس السنة الميلادية", + "JO": "رأس السنة الميلادية", + "KW": "رأس السنة الميلادية", + "LB": "رأس السنة الميلادية", + "MA": "رأس السنة الميلادية", + "MR": "رأس السنة الميلادية", + "PS": "رأس السنة الميلادي", + "SY": "عيد رأس السنة الميلادية", + "TN": "رأس السنة الميلادية", + "UA": "رأس السنة الميلادية", + "XTSE": "يوم السنة الجديدة" + }, + "ar_QA": "رأس السنة الميلادية", + "az": "Yeni il bayramı", + "be": "Новы год", + "bg": "Нова година", + "bn": "নববর্ষের দিন", + "bs": "Nova godina", + "ca": "Cap d'Any", + "cnr": "Nova godina", + "coa_CC": "Hari Tahun Baru", + "cs": "Nový rok", + "da": "Nytårsdag", + "de": { + "AT": "Neujahr", + "BE": "Neujahr", + "CH": "Neujahrstag", + "CV": "Neujahr", + "DE": "Neujahr", + "LI": "Neujahr", + "LU": "Neujahr", + "PL": "Neujahr", + "XETR": "Neujahr" + }, + "dv": "މީލާދީ އާ އަހަރު ފެށޭ ދުވަސް", + "el": "Πρωτοχρονιά", + "en_AI": "New Year's Day", + "en_AU": "New Year's Day", + "en_BF": "New Year's Day", + "en_BM": "New Year's Day", + "en_BQ": "New Year's Day", + "en_CA": "New Year's Day", + "en_CC": "New Year's Day", + "en_CI": "New Year's Day", + "en_CK": "New Year's Day", + "en_CX": "New Year's Day", + "en_CY": "New Year's Day", + "en_FM": "New Year's Day", + "en_GB": "New Year's Day", + "en_GD": "New Year's Day", + "en_GM": "New Year's Day", + "en_GS": "New Year's Day", + "en_GY": "New Year's Day", + "en_HK": "The first day of January", + "en_IN": { + "IN": "New Year's Day", + "XNSE": "New Year" + }, + "en_KE": "New Year's Day", + "en_LC": "New Year's Day", + "en_MO": "New Year's Day", + "en_MS": "New Year's Day", + "en_MU": "New Year's Day", + "en_NA": "New Year's Day", + "en_NF": "New Year's Day", + "en_NG": "New Year's Day", + "en_NR": "New Year's Day", + "en_NU": "New Year's Day", + "en_PH": "New Year's Day", + "en_SC": "New Year's Day", + "en_SG": "New Year's Day", + "en_SL": "New Year's Day", + "en_TC": "New Year's Day", + "en_TK": "New Year's Day", + "en_TL": "New Year's Day", + "en_TT": "New Year's Day", + "en_US": "New Year's Day", + "en_VC": "New Year's Day", + "en_VG": "New Year's Day", + "es": "Año Nuevo", + "et": "uusaasta", + "fi": "Uudenvuodenpäivä", + "fil": "Bagong Taon", + "fo": "Nýggjársdagur", + "fr": { + "BE": "Nouvel An", + "BF": "Jour de l'An", + "CA": "Jour de l'an", + "CD": "Nouvel an", + "CF": "Jour de l'an", + "CG": "Jour de l'An", + "CH": "Nouvel An", + "CI": "1er janvier", + "CV": "Nouvel An", + "DJ": "Nouvel an", + "DZ": "Jour de l'An Grégorien", + "FR": "Jour de l'an", + "GA": "Jour de l'an", + "GN": "Fête du Nouvel an", + "LB": "Nouvel An", + "LU": "Jour de l'An", + "MA": "Nouvel an", + "ML": "Jour de l'An", + "RW": "Nouvel An", + "TG": "Jour de l'an", + "XTSE": "Jour de l'an" + }, + "fr_BI": "Jour de l'an", + "fr_BJ": "Fête du Nouvel An", + "fr_HT": "Nouvel An", + "fr_MC": "Le jour de l'An", + "fr_NE": "Jour de l'An", + "fr_SN": "Jour de l'an", + "fy": "Nijjiersdei", + "gu": "નવા વર્ષનો દિવસ", + "hi": { + "IN": "नए साल का दिन", + "XCME": "नव वर्ष दिवस", + "XNSE": "नया साल", + "XNYS": "नव वर्ष दिवस" + }, + "hr": "Nova godina", + "ht": "Nouvèl Ane", + "hu": "Újév", + "hy": "Նոր տարվա օր", + "id": "Tahun Baru Masehi", + "is": "Nýársdagur", + "it": "Capodanno", + "it_IT": "Capodanno", + "ja": "元日", + "ka": "ახალი წელი", + "kab": "Aseggas amaynut", + "kk": "Жаңа жыл", + "kl": "Ukiortaaq", + "kn": "ಹೊಸ ವರ್ಷದ ದಿನ", + "ko": "신정연휴", + "ko_KP": "양력설", + "ky": "Жаңы жыл", + "lb": "Neijoerschdag", + "lo": "ວັນປີໃໝ່ສາກົນ", + "lt": "Naujųjų metų diena", + "lv": "Jaungada diena", + "mg": "Taom-baovao", + "mk": "Нова Година", + "ml": "പുതുവത്സര ദിനം", + "mn": "Шинэ жил", + "mr": { + "IN": "नवीन वर्षाचा दिवस", + "XNSE": "नवीन वर्ष" + }, + "ms": "Awal Tahun Masihi", + "ms_MY": "Tahun Baharu", + "mt": "L-Ewwel tas-Sena", + "my": "နိုင်ငံတကာနှစ်သစ်ကူးနေ့", + "nl": { + "AW": "Nieuwjaarsdag", + "BE": "Nieuwjaar", + "BQ": "Nieuwjaarsdag", + "CW": "Nieuwjaarsdag", + "NL": "Nieuwjaarsdag", + "SR": "Nieuwjaarsdag", + "SX": "Nieuwjaarsdag" + }, + "no": { + "FO": "Nyttårsdag", + "GL": "Nyttårsdag", + "NO": "Første nyttårsdag" + }, + "pa": "ਨਵੇਂ ਸਾਲ ਦਾ ਦਿਨ", + "pap_AW": "Aña Nobo", + "pap_BQ": "Aña nobo", + "pap_CW": "Aña Nobo", + "pl": "Nowy Rok", + "pt_AO": "Dia do Ano Novo", + "pt_CV": "Ano Novo", + "pt_GW": "Ano Novo", + "pt_MO": "Fraternidade Universal", + "pt_PT": "Ano Novo", + "pt_ST": "Ano Novo", + "pt_TL": "Dia de Ano Novo", + "ro": "Anul Nou", + "ru": "Новый год", + "ru_KG": "Новый год", + "rw": "Ubunani", + "sk": "Nový rok", + "sl": "novo leto", + "sq": { + "AL": "Festat e Vitit të Ri", + "XK": "Viti i Ri" + }, + "sr": { + "BA": "Нова година", + "RS": "Нова година", + "XK": "Nova godina" + }, + "sv": "Nyårsdagen", + "sv_FI": "Nyårsdagen", + "sw": { + "KE": "Siku ya Mwaka Mpya", + "TZ": "Mwaka Mpya" + }, + "ta": "புத்தாண்டு தினம்", + "te": "కొత్త సంవత్సరం రోజు", + "tet": "Loron Tinan-Foun nian", + "tg": "Соли Нав", + "th": { + "AE": "วันขึ้นปีใหม่", + "AT": "วันขึ้นปีใหม่", + "AU": "วันขึ้นปีใหม่", + "BN": "วันขึ้นปีใหม่", + "BY": "วันขึ้นปีใหม่", + "CA": "วันขึ้นปีใหม่", + "CH": "วันขึ้นปีใหม่", + "CN": "วันปีใหม่สากล", + "DE": "วันขึ้นปีใหม่", + "DK": "วันขึ้นปีใหม่", + "ES": "วันขึ้นปีใหม่", + "FI": "วันขึ้นปีใหม่", + "FR": "วันขึ้นปีใหม่", + "GB": "วันขึ้นปีใหม่", + "HK": "วันขึ้นปีใหม่", + "ID": "วันขึ้นปีใหม่", + "IT": "วันขึ้นปีใหม่", + "JP": "วันขึ้นปีใหม่", + "KR": "วันปีใหม่สากล", + "LA": "วันปีใหม่สากล", + "MM": "วันขึ้นปีใหม่", + "MO": "วันขึ้นปีใหม่", + "MY": "วันขึ้นปีใหม่", + "NL": "วันขึ้นปีใหม่", + "NO": "วันขึ้นปีใหม่", + "PH": "วันขึ้นปีใหม่", + "RU": "วันขึ้นปีใหม่", + "SE": "วันขึ้นปีใหม่", + "SG": "วันขึ้นปีใหม่", + "TH": "วันขึ้นปีใหม่", + "TL": "วันขึ้นปีใหม่", + "UA": "วันขึ้นปีใหม่", + "US": "วันขึ้นปีใหม่", + "VN": "วันปีใหม่สากล", + "XETR": "วันขึ้นปีใหม่", + "XTSE": "วันขึ้นปีใหม่" + }, + "tk": "Täze ýyl", + "tkl": "Aho Tauhaga Fou", + "to": "ʻUluaki ʻAho ʻo e Taʻu Foʻou", + "tr": "Yılbaşı", + "tvl": "Tausaga Fou", + "uk": "Новий рік", + "uz": "Yangi yil", + "vi": "Tết Dương lịch", + "zh_CN": { + "CN": "元旦", + "HK": "一月一日", + "MO": "元旦", + "RU": "元旦" + }, + "zh_HK": "一月一日", + "zh_MO": "元旦", + "zh_TW": "元旦" + }, + "countries": [ + "AD", + "AE", + "AI", + "AL", + "AM", + "AO", + "AR", + "AT", + "AU", + "AW", + "AZ", + "BA", + "BE", + "BF", + "BG", + "BH", + "BI", + "BJ", + "BM", + "BN", + "BO", + "BQ", + "BY", + "CA", + "CC", + "CD", + "CF", + "CG", + "CH", + "CI", + "CK", + "CL", + "CN", + "CO", + "CR", + "CV", + "CW", + "CX", + "CY", + "CZ", + "DE", + "DJ", + "DK", + "DO", + "DZ", + "EC", + "EE", + "ES", + "FI", + "FK", + "FM", + "FO", + "FR", + "GA", + "GB", + "GD", + "GE", + "GI", + "GL", + "GM", + "GN", + "GQ", + "GR", + "GS", + "GT", + "GW", + "GY", + "HK", + "HN", + "HR", + "HT", + "HU", + "ID", + "IN", + "IQ", + "IS", + "IT", + "JO", + "JP", + "KE", + "KG", + "KP", + "KR", + "KW", + "KY", + "KZ", + "LA", + "LB", + "LC", + "LI", + "LT", + "LU", + "LV", + "MA", + "MC", + "MD", + "ME", + "MG", + "MK", + "ML", + "MM", + "MN", + "MO", + "MR", + "MS", + "MT", + "MU", + "MV", + "MX", + "MY", + "NA", + "NE", + "NF", + "NG", + "NI", + "NL", + "NO", + "NR", + "NU", + "PA", + "PE", + "PH", + "PL", + "PS", + "PT", + "PY", + "QA", + "RO", + "RS", + "RU", + "RW", + "SC", + "SE", + "SG", + "SH", + "SI", + "SL", + "SM", + "SN", + "SR", + "ST", + "SV", + "SX", + "SY", + "TC", + "TG", + "TH", + "TJ", + "TK", + "TL", + "TM", + "TN", + "TO", + "TR", + "TT", + "TV", + "TZ", + "UA", + "US", + "UY", + "UZ", + "VC", + "VE", + "VG", + "VN", + "XCME", + "XETR", + "XK", + "XMAD", + "XMEX", + "XNSE", + "XNYS", + "XTSE" + ] + }, + { + "id": "new_year_s_eve", + "msgid": "New Year's Eve", + "new_comment": "", + "comment": "New Year's Eve.", + "messages": { + "ca": "Vigília de Cap d'Any", + "da": "Nytårsaften", + "de": { + "AT": "Silvester", + "CH": "Vortag vor Neujahr", + "LI": "Silvester", + "LU": "Silvester", + "XETR": "Silvester", + "XSWX": "Vortag vor Neujahr" + }, + "el": "Παραμονή Πρωτοχρονιάς", + "en_AU": "New Year's Eve", + "en_GB": "New Year's Eve", + "en_HK": "New Year's Eve", + "en_MO": "New Year's Eve", + "en_PH": "Last Day of the Year", + "en_SG": "New Year's Eve", + "en_US": "New Year's Eve", + "es": { + "CU": "Fiesta de Fin de Año", + "VE": "Fiesta de Fin de Año", + "XMAD": "Nochevieja" + }, + "fi": "Uudenvuodenaatto", + "fil": "Bisperas ng Bagong Taon", + "fo": "Nýggjársaftan", + "fr": { + "CH": "Réveillon du Nouvel An", + "LU": "Saint-Sylvestre", + "XSWX": "Réveillon de la Saint-Sylvestre" + }, + "gu": "નવા વર્ષની પૂર્વસંધ્યા", + "hi": "नव वर्ष की पूर्व संध्या", + "hy": "Նոր տարվա գիշեր", + "is": "Gamlársdagur", + "it": { + "CH": "Vigilia di Capodanno", + "SM": "Ultimo dell'anno", + "XSWX": "Vigilia di Capodanno" + }, + "kl": "Ukiortaami", + "lb": "Silvester", + "lv": "Vecgada diena", + "nl": "Oudejaarsavond", + "no": "Nyttårsaften", + "pap_CW": "Vispu di Aña Nobo", + "pt_BR": "Véspera de Ano-Novo", + "pt_MO": "Véspera do Dia da Fraternidade Universal", + "pt_PT": "Véspera de Ano Novo", + "ru": "Канун Нового года", + "sv": "Nyårsafton", + "th": "วันสิ้นปี", + "uk": "Переддень Нового року", + "zh_CN": { + "MO": "除夕", + "XHKG": "新年前夕" + }, + "zh_HK": "新年前夕", + "zh_MO": "除夕" + }, + "countries": [ + "AD", + "AM", + "AT", + "AU", + "BR", + "CH", + "CU", + "CW", + "DK", + "FO", + "GL", + "GR", + "IS", + "LI", + "LU", + "LV", + "MO", + "PH", + "PT", + "SE", + "SM", + "TH", + "US", + "VE", + "XETR", + "XHKG", + "XLON", + "XMAD", + "XNYS", + "XSES", + "XSWX" + ] + }, + { + "id": "new_year_s_holiday", + "msgid": "New Year's Holiday", + "new_comment": "", + "comment": "New Year's Holiday.", + "messages": { + "ar_QA": "عطلة رأس السنة", + "en_LC": "New Year's Holiday", + "en_US": "New Year's Holiday" + }, + "countries": [ + "LC", + "QA" + ] + }, + { + "id": "new_year_s_joint_holiday", + "msgid": "New Year's Joint Holiday", + "new_comment": "", + "comment": "New Year's Joint Holiday.", + "messages": { + "en_US": "New Year's Joint Holiday", + "id": "Cuti Bersama Tahun Baru Masehi", + "th": "หยุดร่วมพิเศษวันขึ้นปีใหม่", + "uk": "Додатковий вихідний на Новий рік" + }, + "countries": [ + "ID" + ] + }, + { + "id": "night_of_forgiveness", + "msgid": "Night of Forgiveness", + "new_comment": "", + "comment": "Night of Forgiveness.", + "messages": { + "ar": "ليلة النصف من شعبان", + "en_US": "Night of Forgiveness" + }, + "countries": [ + "LY" + ] + }, + { + "id": "nikini_full_moon_poya_day", + "msgid": "Nikini Full Moon Poya Day", + "new_comment": "", + "comment": "Nikini Full Moon Poya Day.", + "messages": { + "en_US": "Nikini Full Moon Poya Day", + "si_LK": "නිකිණි පුර පසළොස්වක පෝය දිනය", + "ta_LK": "நிக்கினி முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "ninoy_aquino_day", + "msgid": "Ninoy Aquino Day", + "new_comment": "", + "comment": "Ninoy Aquino Day.", + "messages": { + "en_PH": "Ninoy Aquino Day", + "en_US": "Ninoy Aquino Day", + "fil": "Araw ng Kabayanihan ni Ninoy Aquino", + "th": "วันนินอย อากีโน" + }, + "countries": [ + "PH" + ] + }, + { + "id": "niutao_day", + "msgid": "Niutao Day", + "new_comment": "", + "comment": "Niutao Day.", + "messages": { + "en_GB": "Niutao Day", + "en_US": "Niutao Day", + "tvl": "Te Aso o te Setema" + }, + "countries": [ + "TV" + ] + }, + { + "id": "njegos_day", + "msgid": "Njegos Day", + "new_comment": "", + "comment": "Njegos Day.", + "messages": { + "cnr": "Njegošev dan", + "en_US": "Njegos Day", + "uk": "День Нєґоша" + }, + "countries": [ + "ME" + ] + }, + { + "id": "no_cable_settlement", + "msgid": "No cable settlement", + "new_comment": "", + "comment": "No cable settlement.", + "messages": { + "en_US": "No cable settlement", + "es": "Sin liquidación cable" + }, + "countries": [ + "XBUE" + ] + }, + { + "id": "no_local_settlement", + "msgid": "No local settlement", + "new_comment": "", + "comment": "No local settlement.", + "messages": { + "en_US": "No local settlement", + "es": "Sin liquidación local" + }, + "countries": [ + "XBUE" + ] + }, + { + "id": "no_trading_market_opens_only_for_clearing_settlement", + "msgid": "No Trading (Market opens only for Clearing & Settlement)", + "new_comment": "", + "comment": "No Trading (Market opens only for Clearing & Settlement).", + "messages": { + "en_US": "No Trading (Market opens only for Clearing & Settlement)", + "th": "ไม่มีการซื้อขาย (เปิดทำการชำระราคาและส่งมอบหลักทรัพย์เท่านั้น)", + "zh_CN": "无交易(仅办理结算交割)", + "zh_TW": "無交易(僅辦理結算交割)" + }, + "countries": [ + "XTAI" + ] + }, + { + "id": "non_working_day", + "msgid": "Non-working day", + "new_comment": "", + "comment": "Non-working day.", + "messages": { + "bg": "Неприсъствен ден", + "en_US": "Non-working day", + "uk": "Неробочий день" + }, + "countries": [ + "BG" + ] + }, + { + "id": "nooruz_holiday", + "msgid": "Nooruz Holiday", + "new_comment": "", + "comment": "Nooruz Holiday.", + "messages": { + "en_US": "Nooruz Holiday", + "ky": "Элдик Нооруз майрамы", + "ru_KG": "Народный праздник Нооруз" + }, + "countries": [ + "KG" + ] + }, + { + "id": "nowruz", + "msgid": "Nowruz", + "new_comment": "", + "comment": "Nowruz.", + "messages": { + "ar": "عيد نوروز", + "bn": "নওরোজ", + "en_IN": "Nauroz", + "en_US": "Nowruz", + "fa_AF": "نوروز", + "fa_IR": "جشن نوروز", + "gu": "નવરોઝ", + "hi": "नौरोज़", + "kn": "ನೌರೋಜ್", + "ml": "നൗറോസ്", + "mr": "नौरोज", + "pa": "ਨੌਰੋਜ਼", + "ps_AF": "نوروز", + "ta": "நவ்ரோஸ்", + "te": "నౌరోజ్", + "uk": "Свято Новруз", + "uz": "Navroʻz bayrami" + }, + "countries": [ + "AF", + "IN", + "IQ", + "IR", + "UZ" + ] + }, + { + "id": "nowruz_day", + "msgid": "Nowruz Day", + "new_comment": "", + "comment": "Nowruz Day.", + "messages": { + "en_US": "Nowruz Day", + "sq": "Dita e Nevruzit", + "uk": "Свято Новруз" + }, + "countries": [ + "AL" + ] + }, + { + "id": "nowruz_holiday", + "msgid": "Nowruz Holiday", + "new_comment": "", + "comment": "Nowruz Holiday.", + "messages": { + "en_US": "Nowruz Holiday", + "fa_IR": "عیدنوروز", + "kk": "Наурыз мейрамы", + "uk": "Свято Новруз" + }, + "countries": [ + "IR", + "KZ" + ] + }, + { + "id": "nra_demonstration", + "msgid": "NRA demonstration", + "new_comment": "", + "comment": "NRA demonstration.", + "messages": { + "en_US": "NRA demonstration", + "gu": "NRA પ્રદર્શન", + "hi": "एनआरए प्रदर्शन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "nukufetau_day", + "msgid": "Nukufetau Day", + "new_comment": "", + "comment": "Nukufetau Day.", + "messages": { + "en_GB": "Nukufetau Day", + "en_US": "Nukufetau Day", + "tvl": "Te Aso O Tutasi" + }, + "countries": [ + "TV" + ] + }, + { + "id": "nunavut_day", + "msgid": "Nunavut Day", + "new_comment": "", + "comment": "Nunavut Day.", + "messages": { + "ar": "يوم نونافوت", + "en_CA": "Nunavut Day", + "en_US": "Nunavut Day", + "fr": "Jour du Nunavut", + "th": "วันนูนาวุต" + }, + "countries": [ + "CA" + ] + }, + { + "id": "nuzul_al_quran", + "msgid": "Nuzul Al Quran", + "new_comment": "", + "comment": "Nuzul Al Quran.", + "messages": { + "en_US": "Nuzul Al Quran", + "id": "Nuzululqur'an", + "th": "วันนูซุลอัลกุรอาน", + "uk": "Річниця обʼявлення Корану" + }, + "countries": [ + "ID" + ] + }, + { + "id": "nuzul_al_quran_day", + "msgid": "Nuzul Al-Quran Day", + "new_comment": "", + "comment": "Nuzul Al-Quran Day.", + "messages": { + "en_US": "Nuzul Al-Quran Day", + "ms_MY": "Hari Nuzul Al-Quran", + "th": "วันนูซุลอัลกุรอาน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "occupation_day", + "msgid": "Occupation Day", + "new_comment": "", + "comment": "Occupation Day.", + "messages": { + "en_US": "Occupation Day", + "th": "วันยึดครอง" + }, + "countries": [ + "US" + ] + }, + { + "id": "october_revolution_day", + "msgid": "October Revolution Day", + "new_comment": "", + "comment": "October Revolution Day.", + "messages": { + "am": "የጥቅምት አብዮት ቀን", + "ar": "يوم ثورة أكتوبر", + "be": "Дзень Кастрычніцкай рэвалюцыі", + "en_ET": "October Revolution Day", + "en_US": "October Revolution Day", + "ru": "День Октябрьской революции", + "th": "วันครบรอบการปฏิวัติเดือนตุลาคม" + }, + "countries": [ + "BY", + "ET" + ] + }, + { + "id": "odisha_day", + "msgid": "Odisha Day (Utkala Dibasa)", + "new_comment": "", + "comment": "Odisha Day.", + "messages": { + "bn": "ওড়িশা দিবস (উৎকল দিবস)", + "en_IN": "Odisha Day (Utkala Dibasa)", + "en_US": "Odisha Day (Utkala Dibasa)", + "gu": "ઓડિશા દિવસ (ઉત્કલ દિવસ)", + "hi": "ओडिशा दिवस (उत्कल दिवस)", + "kn": "ಒಡಿಶಾ ದಿನೋತ್ಸವ (ಉತ್ಕಲ ದಿವಸ)", + "ml": "ഉത്കൽ ദിവസ്", + "mr": "ओडिशा दिन (उत्कल दिन)", + "pa": "ਓਡੀਸ਼ਾ ਦਿਵਸ (ਉਤਕਲ ਦਿਵਸ)", + "ta": "ஒடிசா நாள் (உத்கல திவசம்)", + "te": "ఒడిశా దినోత్సవం (ఉత్కల దివస)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "official_holiday", + "msgid": "Official Holiday", + "new_comment": "", + "comment": "Official Holiday.", + "messages": { + "bg": "Официален празник", + "en_US": "Official Holiday", + "uk": "Державне свято" + }, + "countries": [ + "BG" + ] + }, + { + "id": "ohi_day", + "msgid": "Ohi Day", + "new_comment": "", + "comment": "Ohi Day.", + "messages": { + "el": "Ημέρα του Όχι", + "en_CY": "Ohi Day", + "en_US": "Ohi Day", + "uk": "День Охі" + }, + "countries": [ + "CY", + "GR" + ] + }, + { + "id": "onam", + "msgid": "Onam", + "new_comment": "", + "comment": "Onam.", + "messages": { + "bn": "ওনাম", + "en_IN": "Onam", + "en_US": "Onam", + "gu": "ઓણમ", + "hi": "ओणम", + "kn": "ಓಣಂ", + "ml": "ഓണം", + "mr": "ओणम", + "pa": "ਓਨਮ", + "ta": "ஓணம்", + "te": "ఓణం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "open_town_hall", + "msgid": "Open Town Hall", + "new_comment": "", + "comment": "Open Town Hall.", + "messages": { + "en_US": "Open Town Hall", + "es": "Cabildo Abierto", + "uk": "День відкритих зборів" + }, + "countries": [ + "UY" + ] + }, + { + "id": "opening_of_new_nyse_building", + "msgid": "Opening of new NYSE building", + "new_comment": "", + "comment": "Opening of new NYSE building.", + "messages": { + "en_US": "Opening of new NYSE building", + "gu": "નવી NYSE ઇમારતનું ઉદ્ઘાટન", + "hi": "नई एनवाईएसई इमारत का उद्घाटन" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "orangemen_s_day", + "msgid": "Orangemen's Day", + "new_comment": "", + "comment": "Orangemen's Day.", + "messages": { + "ar": "يوم رجال البرتقال", + "en_CA": "Orangemen's Day", + "en_US": "Orangemen's Day", + "fr": "Journée des Orangistes", + "th": "วันออเรนจ์เมนส์" + }, + "countries": [ + "CA" + ] + }, + { + "id": "orthodox_christmas", + "msgid": "Orthodox Christmas", + "new_comment": "", + "comment": "Orthodox Christmas.", + "messages": { + "en_US": "Orthodox Christmas", + "kk": "Православиелік Рождество", + "uk": "Православне Різдво" + }, + "countries": [ + "KZ" + ] + }, + { + "id": "orthodox_christmas_day", + "msgid": "Orthodox Christmas Day", + "new_comment": "", + "comment": "Orthodox Christmas Day.", + "messages": { + "ar": "عيد الميلاد المجيد الشرقي", + "be": "Нараджэнне Хрыстова (праваслаўнае Раство)", + "bs": "Božić (Pravoslavni)", + "en_US": "Orthodox Christmas Day", + "ru": "Рождество Христово (православное Рождество)", + "sq": "Krishtlindjet Ortodokse", + "sr": { + "BA": "Божић (Православни)", + "RS": "Божић", + "XK": "Pravoslavni Božić" + }, + "th": "วันประสูติของพระคริสต์ (คริสต์มาสนิกายออร์โธดอกซ์)", + "uk": "Різдво Христове (православне)" + }, + "countries": [ + "BA", + "BY", + "PS", + "RS", + "XK" + ] + }, + { + "id": "orthodox_christmas_eve", + "msgid": "Orthodox Christmas Eve", + "new_comment": "", + "comment": "Orthodox Christmas Eve.", + "messages": { + "bs": "Badnji dan (Pravoslavni)", + "en_US": "Orthodox Christmas Eve", + "sr": "Бадњи дан (Православни)", + "uk": "Святий вечір (православний)" + }, + "countries": [ + "BA" + ] + }, + { + "id": "orthodox_easter", + "msgid": "Orthodox Easter", + "new_comment": "", + "comment": "Orthodox Easter.", + "messages": { + "be": "Праваслаўны Вялiкдзень", + "en_US": "Orthodox Easter", + "ru": "Православная Пасха", + "sq": "Pashkët Ortodokse", + "sr": "Pravoslavni Uskrs", + "th": "วันอีสเตอร์นิกายออร์โธดอกซ์" + }, + "countries": [ + "BY", + "XK" + ] + }, + { + "id": "orthodox_easter_monday", + "msgid": "Orthodox Easter Monday", + "new_comment": "", + "comment": "Orthodox Easter Monday.", + "messages": { + "ar": "اثنين الفصح عند الطوائف الأرثوذكسية", + "bs": "Uskrsni ponedjeljak (Pravoslavni)", + "en_US": "Orthodox Easter Monday", + "fr": "Lundi de Pâques Orthodoxe", + "sr": "Ускршњи понедељак (Православни)", + "uk": "Великодній понеділок (православний)" + }, + "countries": [ + "BA", + "LB" + ] + }, + { + "id": "orthodox_easter_sunday", + "msgid": "Orthodox Easter Sunday", + "new_comment": "", + "comment": "Orthodox Easter Sunday.", + "messages": { + "bs": "Vaskrs (Pravoslavni)", + "en_US": "Orthodox Easter Sunday", + "sq": "E diela e Pashkëve Ortodokse", + "sr": "Васкрс (Православни)", + "uk": "Великдень (православний)" + }, + "countries": [ + "AL", + "BA" + ] + }, + { + "id": "orthodox_easter_tuesday", + "msgid": "Orthodox Easter Tuesday", + "new_comment": "", + "comment": "Orthodox Easter Tuesday.", + "messages": { + "ar": "ثلاثاء الفصح للطوائف الأرثوذكسية", + "en_US": "Orthodox Easter Tuesday", + "fr": "Mardi de Pâques Orthodoxe" + }, + "countries": [ + "LB" + ] + }, + { + "id": "orthodox_good_friday", + "msgid": "Orthodox Good Friday", + "new_comment": "", + "comment": "Orthodox Good Friday.", + "messages": { + "ar": "الجمعة العظيمة عند الطوائف الأرثوذكسية", + "bs": "Veliki petak (Pravoslavni)", + "en_US": "Orthodox Good Friday", + "fr": "Vendredi Saint Orthodoxe", + "sr": "Велики петак (Православни)", + "uk": "Страсна пʼятниця (православна)" + }, + "countries": [ + "BA", + "LB" + ] + }, + { + "id": "orthodox_holy_saturday", + "msgid": "Orthodox Holy Saturday", + "new_comment": "", + "comment": "Orthodox Holy Saturday.", + "messages": { + "ar": "سبت النور للطائفة الأرثوذكسية", + "en_US": "Orthodox Holy Saturday", + "fr": "Samedi Saint Orthodoxe" + }, + "countries": [ + "LB" + ] + }, + { + "id": "orthodox_new_year", + "msgid": "Orthodox New Year", + "new_comment": "", + "comment": "Orthodox New Year.", + "messages": { + "bs": "Pravoslavna Nova godina", + "en_US": "Orthodox New Year", + "sr": "Православна Нова година", + "uk": "Православний Новий рік" + }, + "countries": [ + "BA" + ] + }, + { + "id": "orthodox_new_year_s_day", + "msgid": "Orthodox New Year's Day", + "new_comment": "", + "comment": "Orthodox New Year's Day.", + "messages": { + "ar": "عيد رأس السنة الشرقي", + "en_US": "Orthodox New Year's Day" + }, + "countries": [ + "PS" + ] + }, + { + "id": "oued_ed_dahab_day", + "msgid": "Oued Ed-Dahab Day", + "new_comment": "", + "comment": "Oued Ed-Dahab Day.", + "messages": { + "ar": "ذكرى استرجاع إقليم وادي الذهب", + "en_US": "Oued Ed-Dahab Day", + "fr": "Allégeance Oued Eddahab" + }, + "countries": [ + "MA" + ] + }, + { + "id": "our_lady_of_aparecida", + "msgid": "Our Lady of Aparecida", + "new_comment": "", + "comment": "Our Lady of Aparecida.", + "messages": { + "en_US": "Our Lady of Aparecida", + "pt_BR": "Nossa Senhora Aparecida", + "uk": "День Богоматері Апаресіди" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "our_lady_of_assumption", + "msgid": "Our Lady of Assumption", + "new_comment": "", + "comment": "Our Lady of Assumption.", + "messages": { + "en_US": "Our Lady of Assumption", + "pt_BR": "Nossa Senhora da Assunção", + "uk": "День Богоматері Внебовзяття" + }, + "countries": [ + "BR" + ] + }, + { + "id": "our_lady_of_bien_aparecida", + "msgid": "Our Lady of Bien Aparecida", + "new_comment": "", + "comment": "Our Lady of Bien Aparecida.", + "messages": { + "ca": "La Bien Aparecida", + "en_US": "Our Lady of Bien Aparecida", + "es": "La Bien Aparecida", + "th": "วันแม่พระแห่งอาปาเรซิดา", + "uk": "День Пресвятої Богородиці Обʼявленої" + }, + "countries": [ + "ES" + ] + }, + { + "id": "our_lady_of_graces", + "msgid": "Our Lady of Graces", + "new_comment": "", + "comment": "Our Lady of Graces.", + "messages": { + "en_US": "Our Lady of Graces", + "it_IT": "Madonna delle Grazie", + "th": "วันแม่พระแห่งพระหรรษทาน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_health", + "msgid": "Our Lady of Health", + "new_comment": "", + "comment": "Our Lady of Health.", + "messages": { + "en_US": "Our Lady of Health", + "it_IT": "Madonna della Salute", + "th": "วันแม่พระแห่งสุขภาพ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_mercedes_day", + "msgid": "Our Lady of Mercedes Day", + "new_comment": "", + "comment": "Our Lady of Mercedes Day.", + "messages": { + "en_US": "Our Lady of Mercedes Day", + "es": "Día de las Mercedes", + "uk": "День Богоматері Милосердя" + }, + "countries": [ + "DO" + ] + }, + { + "id": "our_lady_of_mercy", + "msgid": "Our Lady of Mercy", + "new_comment": "", + "comment": "Our Lady of Mercy.", + "messages": { + "en_US": "Our Lady of Mercy", + "it_IT": "Nostra Signora della Misericordia", + "th": "วันแม่พระแห่งความเมตตา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_meritxell", + "msgid": "Our Lady of Meritxell", + "new_comment": "", + "comment": "Our Lady of Meritxell.", + "messages": { + "ca": "Nostra Senyora de Meritxell", + "en_US": "Our Lady of Meritxell", + "uk": "День Богоматері Мерічелльської" + }, + "countries": [ + "AD" + ] + }, + { + "id": "our_lady_of_monte_berico", + "msgid": "Our Lady of Monte Berico", + "new_comment": "", + "comment": "Our Lady of Monte Berico.", + "messages": { + "en_US": "Our Lady of Monte Berico", + "it_IT": "Madonna di Monte Berico", + "th": "วันแม่พระแห่งมอนเต เบริโก" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_mount_carmel", + "msgid": "Our Lady of Mount Carmel", + "new_comment": "", + "comment": "Our Lady of Mount Carmel.", + "messages": { + "en_US": "Our Lady of Mount Carmel", + "es": "Virgen del Carmen", + "uk": "Матір Божа Кармельська" + }, + "countries": [ + "CL" + ] + }, + { + "id": "our_lady_of_nativity", + "msgid": "Our Lady of Nativity", + "new_comment": "", + "comment": "Our Lady of Nativity.", + "messages": { + "en_US": "Our Lady of Nativity", + "pt_BR": "Nossa Senhora da Natividade", + "uk": "День Богоматері Різдва" + }, + "countries": [ + "BR" + ] + }, + { + "id": "our_lady_of_penha", + "msgid": "Our Lady of Penha", + "new_comment": "", + "comment": "Our Lady of Penha.", + "messages": { + "en_US": "Our Lady of Penha", + "pt_BR": "Nossa Senhora da Penha", + "uk": "День Богоматері Пенья" + }, + "countries": [ + "BR" + ] + }, + { + "id": "our_lady_of_rocio", + "msgid": "Our Lady of Rocio", + "new_comment": "", + "comment": "Our Lady of Rocio.", + "messages": { + "en_US": "Our Lady of Rocio", + "pt_BR": "Nossa Senhora do Rocio", + "uk": "День Богоматері Росіо" + }, + "countries": [ + "BR" + ] + }, + { + "id": "our_lady_of_the_bruna", + "msgid": "Our Lady of the Bruna", + "new_comment": "", + "comment": "Our Lady of the Bruna.", + "messages": { + "en_US": "Our Lady of the Bruna", + "it_IT": "Madonna della Bruna", + "th": "วันแม่พระแห่งบรูนา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_the_fire", + "msgid": "Our Lady of the Fire", + "new_comment": "", + "comment": "Our Lady of the Fire.", + "messages": { + "en_US": "Our Lady of the Fire", + "it_IT": "Madonna del Fuoco", + "th": "วันแม่พระแห่งไฟ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_the_letter", + "msgid": "Our Lady of the Letter", + "new_comment": "", + "comment": "Our Lady of the Letter.", + "messages": { + "en_US": "Our Lady of the Letter", + "it_IT": "Madonna della Lettera", + "th": "วันแม่พระแห่งราชสาส์น" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_the_pilerio", + "msgid": "Our Lady of the Pilerio", + "new_comment": "", + "comment": "Our Lady of the Pilerio.", + "messages": { + "en_US": "Our Lady of the Pilerio", + "it_IT": "Madonna del Pilerio", + "th": "วันแม่พระแห่งปิเลรีโอ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_the_seven_veils", + "msgid": "Our Lady of the Seven Veils", + "new_comment": "", + "comment": "Our Lady of the Seven Veils.", + "messages": { + "en_US": "Our Lady of the Seven Veils", + "it_IT": "Madonna dei Sette Veli", + "th": "วันแม่พระแห่งผ้าคลุมทั้งเจ็ด" + }, + "countries": [ + "IT" + ] + }, + { + "id": "our_lady_of_the_snows", + "msgid": "Our Lady of the Snows", + "new_comment": "", + "comment": "Our Lady of the Snows.", + "messages": { + "en_US": "Our Lady of the Snows", + "it_IT": "Nostra Signora della Neve", + "th": "วันแม่พระแห่งหิมะ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "overlapping_of_the_day_following_national_day_of_the_people_s_republic_of_china_and_the_day_following_mid_autumn_festival", + "msgid": "Overlapping of the Day following National Day of the People's Republic of China and the Day following Mid-Autumn Festival", + "new_comment": "", + "comment": "Overlapping of the Day following National Day of the People's Republic of China and the Day\nfollowing Mid-Autumn Festival.", + "messages": { + "en_MO": "Overlapping of the Day following National Day of the People's Republic of China and the Day following Chong Chao (Mid-Autumn) Festival", + "en_US": "Overlapping of the Day following National Day of the People's Republic of China and the Day following Mid-Autumn Festival", + "pt_MO": "Sobreposição do Dia seguinte à Implantação da República Popular da China e do Dia seguinte ao Chong Chao (Bolo Lunar)", + "th": "วันหยุดชดเชยเนื่องในโอกาสวันหลังวันชาติจีนและวันหลังวันไหว้พระจันทร์หยุดตรงกัน", + "zh_CN": "中华人民共和国国庆日翌日及中秋节翌日重迭", + "zh_MO": "中華人民共和國國慶日翌日及中秋節翌日重疊" + }, + "countries": [ + "MO" + ] + }, + { + "id": "overlapping_of_the_day_following_national_day_of_the_people_s_republic_of_china_and_the_double_ninth_festival", + "msgid": "Overlapping of the Day following National Day of the People's Republic of China and the Double Ninth Festival", + "new_comment": "", + "comment": "Overlapping of the Day following National Day of the People's Republic of China and the Double\nNinth Festival.", + "messages": { + "en_MO": "Overlapping of the Day following National Day of the People's Republic of China and the Chung Yeung Festival (Festival of Ancestors)", + "en_US": "Overlapping of the Day following National Day of the People's Republic of China and the Double Ninth Festival", + "pt_MO": "Sobreposição do Dia seguinte à Implantação da República Popular da China e do Chong Yeong (Culto dos Antepassados)", + "th": "วันหยุดชดเชยเนื่องในโอกาสวันหลังวันชาติจีนและวันไหว้บรรพบุรุษหยุดตรงกัน", + "zh_CN": "中华人民共和国国庆日翌日及重阳节重迭", + "zh_MO": "中華人民共和國國慶日翌日及重陽節重疊" + }, + "countries": [ + "MO" + ] + }, + { + "id": "overlapping_of_the_national_day_of_the_people_s_republic_of_china_and_the_day_following_mid_autumn_festival", + "msgid": "Overlapping of the National Day of the People's Republic of China and the Day following Mid-Autumn Festival", + "new_comment": "", + "comment": "Overlapping of the National Day of the People's Republic of China and the Day following Mid-\nAutumn Festival.", + "messages": { + "en_MO": "Overlapping of the National Day of the People's Republic of China and the Day following Chong Chao (Mid-Autumn) Festival", + "en_US": "Overlapping of the National Day of the People's Republic of China and the Day following Mid-Autumn Festival", + "pt_MO": "Sobreposição da Implantação da República Popular da China e do Dia seguinte ao Chong Chao (Bolo Lunar)", + "th": "วันหยุดชดเชยเนื่องในโอกาสวันชาติจีนและวันหลังวันไหว้พระจันทร์หยุดตรงกัน", + "zh_CN": "中华人民共和国国庆日及中秋节翌日重迭", + "zh_MO": "中華人民共和國國慶日及中秋節翌日重疊" + }, + "countries": [ + "MO" + ] + }, + { + "id": "pa_l_municipality_day", + "msgid": "Paúl Municipality Day", + "new_comment": "", + "comment": "Paúl Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Paúl", + "en_US": "Paúl Municipality Day", + "es": "Día del Municipio de Paúl", + "fr": "Journée de la municipalité de Paúl", + "pt_CV": "Dia do Município do Paúl" + }, + "countries": [ + "CV" + ] + }, + { + "id": "pa_s_vasco_day", + "msgid": "País Vasco Day", + "new_comment": "", + "comment": "País Vasco Day.", + "messages": { + "ca": "Dia del País Basc", + "en_US": "País Vasco Day", + "es": "Día del País Vasco", + "th": "วันแคว้นบาสก์", + "uk": "День Країни Басків" + }, + "countries": [ + "ES" + ] + }, + { + "id": "pachamama_day", + "msgid": "Pachamama Day", + "new_comment": "", + "comment": "Pachamama Day.", + "messages": { + "en_US": "Pachamama Day", + "es": "Día de la Pachamama", + "uk": "День Пачамами" + }, + "countries": [ + "AR" + ] + }, + { + "id": "pakistan_day", + "msgid": "Pakistan Day", + "new_comment": "", + "comment": "Pakistan Day.", + "messages": { + "en_PK": "Pakistan Day", + "en_US": "Pakistan Day", + "ur_PK": "یوم پاکستان" + }, + "countries": [ + "PK" + ] + }, + { + "id": "palm_sunday", + "msgid": "Palm Sunday", + "new_comment": "", + "comment": "Palm Sunday.", + "messages": { + "ar": "أحد الشعانين", + "en_US": "Palm Sunday" + }, + "countries": [ + "PS" + ] + }, + { + "id": "palmerston_gospel_day", + "msgid": "Palmerston Gospel Day", + "new_comment": "", + "comment": "Palmerston Gospel Day.", + "messages": { + "en_CK": "Palmerston Gospel Day", + "en_US": "Palmerston Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "panamerican_day", + "msgid": "Panamerican Day", + "new_comment": "", + "comment": "Panamerican Day.", + "messages": { + "en_US": "Panamerican Day", + "es": "Día de las Américas", + "uk": "День Америки" + }, + "countries": [ + "HN" + ] + }, + { + "id": "pancasila_day", + "msgid": "Pancasila Day", + "new_comment": "", + "comment": "Pancasila Day.", + "messages": { + "en_US": "Pancasila Day", + "id": "Hari Lahir Pancasila", + "th": "วันปัญจศีล", + "uk": "День Панчасіла" + }, + "countries": [ + "ID" + ] + }, + { + "id": "pando_day", + "msgid": "Pando Day", + "new_comment": "", + "comment": "Pando Day.", + "messages": { + "en_US": "Pando Day", + "es": "Día del departamento de Pando", + "uk": "День департаменту Пандо" + }, + "countries": [ + "BO" + ] + }, + { + "id": "paperwork_crisis", + "msgid": "Paperwork Crisis", + "new_comment": "", + "comment": "Paperwork Crisis.", + "messages": { + "en_US": "Paperwork Crisis", + "gu": "પેપરવર્ક કટોકટી", + "hi": "कागजी कार्रवाई का संकट" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "parade_for_colonel_charles_a_lindbergh", + "msgid": "Parade for Colonel Charles A. Lindbergh", + "new_comment": "", + "comment": "Parade for Colonel Charles A. Lindbergh.", + "messages": { + "en_US": "Parade for Colonel Charles A. Lindbergh", + "gu": "કર્નલ ચાર્લ્સ એ. લિન્ડબર્ગ માટે પરેડ", + "hi": "कर्नल चार्ल्स ए. लिंडबर्ग के लिए परेड" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "parade_of_77th_division", + "msgid": "Parade of 77th Division", + "new_comment": "", + "comment": "Parade of 77th Division.", + "messages": { + "en_US": "Parade of 77th Division", + "gu": "77મા ડિવિઝનની પરેડ", + "hi": "77वें डिवीजन की परेड" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "parade_of_national_guard", + "msgid": "Parade of National Guard", + "new_comment": "", + "comment": "Parade of National Guard.", + "messages": { + "en_US": "Parade of National Guard", + "gu": "નેશનલ ગાર્ડની પરેડ", + "hi": "नेशनल गार्ड की परेड" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "parents_day", + "msgid": "Parents' Day", + "new_comment": "", + "comment": "Parents' Day.", + "messages": { + "en_US": "Parents' Day", + "fr": "Fête des parents" + }, + "countries": [ + "CD" + ] + }, + { + "id": "paris_peace_agreement_s_day", + "msgid": "Paris Peace Agreement's Day", + "new_comment": "", + "comment": "Paris Peace Agreement's Day.", + "messages": { + "en_US": "Paris Peace Agreement's Day", + "km": "ទិវារំលឹកសន្ធិសញ្ញាសន្តិភាពទីក្រុងប៉ារីស", + "th": "วันรำลึกข้อตกลงสันติภาพกรุงปารีส" + }, + "countries": [ + "KH" + ] + }, + { + "id": "parish_foundation_day", + "msgid": "Parish foundation day", + "new_comment": "", + "comment": "Parish foundation day.", + "messages": { + "ca": "Diada de la creació de la parròquia", + "en_US": "Parish foundation day", + "uk": "День створення парафії" + }, + "countries": [ + "AD" + ] + }, + { + "id": "parliamentary_election_day", + "msgid": "Parliamentary Election Day", + "new_comment": "", + "comment": "Parliamentary Election Day.", + "messages": { + "en_SC": "Parliamentary Election Day", + "en_TL": "Parliamentary Election Day", + "en_US": "Parliamentary Election Day", + "pt_TL": "Dia de Eleições Parlamentares", + "tet": "Loron Eleisaun Parlamentár nian", + "th": "วันเลือกตั้งสมาชิกรัฐสภา" + }, + "countries": [ + "SC", + "TL" + ] + }, + { + "id": "parsi_new_year", + "msgid": "Parsi New Year", + "new_comment": "", + "comment": "Parsi New Year.", + "messages": { + "bn": "পার্সি নববর্ষ", + "en_IN": "Parsi New Year", + "en_US": "Parsi New Year", + "gu": "પારસી નવું વર્ષ", + "hi": "पारसी नव वर्ष", + "kn": "ಪಾರ್ಸಿ ಹೊಸ ವರ್ಷ", + "ml": "പാർസി പുതുവർഷം", + "mr": "पारशी नववर्ष", + "pa": "ਪਾਰਸੀ ਨਵਾਂ ਸਾਲ", + "ta": "பார்சி புத்தாண்டு", + "te": "పార్సీ నూతన సంవత్సరం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "parsi_new_year_shahenshahi", + "msgid": "Parsi New Year (Shahenshahi)", + "new_comment": "", + "comment": "Parsi New Year (Shahenshahi).", + "messages": { + "bn": "পারসি নববর্ষ (শাহেনশাহী)", + "en_IN": "Parsi New Year (Shahenshahi)", + "en_US": "Parsi New Year (Shahenshahi)", + "gu": "પારસી નવું વર્ષ (શાહેનશાહી)", + "hi": "पारसी नव वर्ष (शहंशाही)", + "kn": "ಪಾರ್ಸಿ ಹೊಸ ವರ್ಷ (ಶಹನ್ಶಾಹಿ)", + "ml": "പാർസി പുതുവർഷം (ഷഹൻഷാഹി)", + "mr": "पारसी नवीन वर्ष (शहेनशाही)", + "pa": "ਪਾਰਸੀ ਨਵਾਂ ਸਾਲ (ਸ਼ਾਹਨਸ਼ਾਹੀ)", + "ta": "பார்சி புத்தாண்டு (ஷாஹென்ஷாஹி)", + "te": "పార్సీ నూతన సంవత్సరం (షహన్‌షాహీ)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "pass_to_the_immortality_of_general_don_jos_de_san_mart_n", + "msgid": "Pass to the Immortality of General Don José de San Martín", + "new_comment": "", + "comment": "Pass to the Immortality of General Don José de San Martín.", + "messages": { + "en_US": "Pass to the Immortality of General Don José de San Martín", + "es": "Paso a la Inmortalidad del General Don José de San Martín", + "uk": "День памʼяті генерала Хосе де Сан-Мартіна" + }, + "countries": [ + "AR" + ] + }, + { + "id": "pass_to_the_immortality_of_general_don_manuel_belgrano", + "msgid": "Pass to the Immortality of General Don Manuel Belgrano", + "new_comment": "", + "comment": "Pass to the Immortality of General Don Manuel Belgrano.", + "messages": { + "en_US": "Pass to the Immortality of General Don Manuel Belgrano", + "es": "Paso a la Inmortalidad del General Don Manuel Belgrano", + "uk": "День памʼяті генерала Мануеля Бельграно" + }, + "countries": [ + "AR" + ] + }, + { + "id": "pass_to_the_immortality_of_general_don_mart_n_miguel_de_g_emes", + "msgid": "Pass to the Immortality of General Don Martín Miguel de Güemes", + "new_comment": "", + "comment": "Pass to the Immortality of General Don Martín Miguel de Güemes.", + "messages": { + "en_US": "Pass to the Immortality of General Don Martín Miguel de Güemes", + "es": "Paso a la Inmortalidad del General Don Martín Miguel de Güemes", + "uk": "День памʼяті генерала Мартіна Мігеля де Гуемеса" + }, + "countries": [ + "AR" + ] + }, + { + "id": "patriots_day_1", + "msgid": "Patriots Day", + "new_comment": "", + "comment": "Patriots Day.", + "messages": { + "en_US": "Patriots Day", + "es": "Día de los Héroes de la Patria", + "uk": "День національних героїв" + }, + "countries": [ + "PY" + ] + }, + { + "id": "patriots_day_2", + "msgid": "Patriots' Day", + "new_comment": "", + "comment": "Patriots' Day.", + "messages": { + "en_US": "Patriots' Day", + "mn": "Эх орончдын өдөр", + "th": "วันแพทริออต" + }, + "countries": [ + "MN", + "US" + ] + }, + { + "id": "patron_saint_festival_of_annob_n", + "msgid": "Patron Saint Festival of Annobón", + "new_comment": "", + "comment": "Patron Saint Festival of Annobón.", + "messages": { + "en_US": "Patron Saint Festival of Annobón", + "es": "Fiesta Patronal de Annobón" + }, + "countries": [ + "GQ" + ] + }, + { + "id": "pchum_ben_day", + "msgid": "Pchum Ben Day", + "new_comment": "", + "comment": "Pchum Ben Day.", + "messages": { + "en_US": "Pchum Ben Day", + "km": "ពិធីបុណ្យភ្ផុំបិណ្ឌ", + "th": "เทศกาลงานวันสาร์ทภจุมบิณฑ์เขมร" + }, + "countries": [ + "KH" + ] + }, + { + "id": "peace_accord_day", + "msgid": "Peace Accord Day", + "new_comment": "", + "comment": "Peace Accord Day.", + "messages": { + "bn": "শান্তি চুক্তি দিবস", + "en_IN": "Remna Ni", + "en_US": "Peace Accord Day", + "gu": "શાંતિ કરાર દિવસ", + "hi": "शांति समझौता दिवस", + "kn": "ಶಾಂತಿ ಒಪ್ಪಂದ ದಿನ", + "ml": "സമാധാന കരാർ ദിനം", + "mr": "शांतता करार दिन", + "pa": "ਸ਼ਾਂਤੀ ਸਮਝੌਤਾ ਦਿਵਸ", + "ta": "அமைதி ஒப்பந்த நாள்", + "te": "శాంతి ఒప్పంద దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "peace_and_national_reconciliation_day", + "msgid": "Peace and National Reconciliation Day", + "new_comment": "", + "comment": "Peace and National Reconciliation Day.", + "messages": { + "en_US": "Peace and National Reconciliation Day", + "pt_AO": "Dia da Paz e Reconciliação Nacional", + "uk": "День миру та національного примирення" + }, + "countries": [ + "AO" + ] + }, + { + "id": "peace_and_reconciliation_day", + "msgid": "Peace and Reconciliation Day", + "new_comment": "", + "comment": "Peace and Reconciliation Day.", + "messages": { + "en_US": "Peace and Reconciliation Day", + "pt_MZ": "Dia da Paz e Reconciliação", + "uk": "День миру та примирення" + }, + "countries": [ + "MZ" + ] + }, + { + "id": "peace_day_in_cambodia", + "msgid": "Peace Day in Cambodia", + "new_comment": "", + "comment": "Peace Day in Cambodia.", + "messages": { + "en_US": "Peace Day in Cambodia", + "km": "ទិវាសន្តិភាពនៅកម្ពុជា", + "th": "วันสันติภาพกัมพูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "peace_memorial_day", + "msgid": "Peace Memorial Day", + "new_comment": "", + "comment": "Peace Memorial Day.", + "messages": { + "en_US": "Peace Memorial Day", + "th": "วันรำลึกสันติภาพ", + "zh_CN": "和平纪念日", + "zh_TW": "和平紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "peace_proclamation_day", + "msgid": "Peace Proclamation Day", + "new_comment": "", + "comment": "Peace Proclamation Day.", + "messages": { + "en_US": "Peace Proclamation Day", + "th": "วันประกาศสันติภาพ", + "uk": "День проголошення миру" + }, + "countries": [ + "TH" + ] + }, + { + "id": "peasants_day", + "msgid": "Peasants' Day", + "new_comment": "", + "comment": "Peasants' Day.", + "messages": { + "en_US": "Peasants' Day", + "my": "တောင်သူလယ်သမားနေ့", + "sw": "Sikukuu ya Wakulima", + "th": "วันชาวนา" + }, + "countries": [ + "MM", + "TZ" + ] + }, + { + "id": "peat_cutting_day", + "msgid": "Peat Cutting Day", + "new_comment": "", + "comment": "Peat Cutting Day.", + "messages": { + "en_GB": "Peat Cutting Day", + "en_US": "Peat Cutting Day" + }, + "countries": [ + "FK" + ] + }, + { + "id": "pending_outbreak_of_world_war_i", + "msgid": "Pending outbreak of World War I", + "new_comment": "", + "comment": "Pending outbreak of World War I.", + "messages": { + "en_US": "Pending outbreak of World War I", + "gu": "પ્રથમ વિશ્વ યુદ્ધની શરૂઆત બાકી", + "hi": "प्रथम विश्व युद्ध का आसन्न प्रकोप" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "peniamina_gospel_day", + "msgid": "Peniamina Gospel Day", + "new_comment": "", + "comment": "Peniamina Gospel Day.", + "messages": { + "en_NU": "Peniamina Gospel Day", + "en_US": "Peniamina Gospel Day" + }, + "countries": [ + "NU" + ] + }, + { + "id": "penrhyn_gospel_day", + "msgid": "Penrhyn Gospel Day", + "new_comment": "", + "comment": "Penrhyn Gospel Day.", + "messages": { + "en_CK": "Penrhyn Gospel Day", + "en_US": "Penrhyn Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "pentecost", + "msgid": "Pentecost", + "new_comment": "", + "comment": "Pentecost.", + "messages": { + "ar": { + "PS": "أحد العنصرة", + "UA": "عيد العنصرة" + }, + "da": "Pinsedag", + "de": { + "BE": "Pfingsten", + "CH": "Pfingstsonntag", + "DE": "Pfingstsonntag", + "LI": "Pfingstsonntag", + "PL": "Pfingsten" + }, + "en_BQ": "Whit Sunday", + "en_US": "Pentecost", + "et": "nelipühade 1. püha", + "fi": "Helluntaipäivä", + "fo": "Hvítusunnudagur", + "fr": { + "BE": "Pentecôte", + "CH": "Jour de Pentecôte", + "GA": "Pentecôte" + }, + "fr_BJ": "Jour de Pentecôte", + "fy": "Pinkstersnein", + "hu": "Pünkösd", + "is": "Hvítasunnudagur", + "it": "Domenica di Pentecoste", + "kl": "Piinsip ullua", + "lv": "Vasarsvētki", + "mg": "Pentekosta", + "mk": "Духовден", + "nl": { + "BE": "Pinksteren", + "BQ": "Eerste pinksterdag", + "CW": "Pinksterzondag", + "NL": "Eerste pinksterdag", + "SX": "Eerste pinksterdag" + }, + "no": "Første pinsedag", + "pap_BQ": "Dia di Pentekòste", + "pap_CW": "Domingo di Pentekòstès", + "pl": "Zielone Świątki", + "ro": "Rusaliile", + "ru": "Пятидесятница", + "sl": "binkoštna nedelja", + "sv": "Pingstdagen", + "sv_FI": "Pingst", + "th": "วันสมโภชพระจิตเจ้า", + "uk": { + "BE": "Пʼятидесятниця", + "CH": "Пʼятидесятниця", + "CW": "Пʼятидесятниця", + "DE": "Пʼятидесятниця", + "DK": "Пʼятидесятниця", + "EE": "Пʼятидесятниця", + "FI": "Пʼятидесятниця", + "GL": "Пʼятидесятниця", + "HU": "Пʼятидесятниця", + "IS": "Пʼятидесятниця", + "LI": "Пʼятидесятниця", + "LV": "Пʼятидесятниця", + "MG": "Пʼятидесятниця", + "MK": "Пʼятидесятниця", + "NL": "Пʼятидесятниця", + "NO": "Пʼятидесятниця", + "PL": "Пʼятидесятниця", + "RO": "Пʼятидесятниця", + "SE": "Пʼятидесятниця", + "SI": "Пʼятидесятниця", + "UA": "Трійця" + } + }, + "countries": [ + "BE", + "BJ", + "BQ", + "CH", + "CW", + "DE", + "DK", + "EE", + "FI", + "FO", + "GA", + "GL", + "HU", + "IS", + "LI", + "LV", + "MG", + "MK", + "NL", + "NO", + "PL", + "PS", + "RO", + "SE", + "SI", + "SX", + "UA" + ] + }, + { + "id": "pentecost_eve", + "msgid": "Pentecost Eve", + "new_comment": "", + "comment": "Pentecost Eve.", + "messages": { + "en_US": "Pentecost Eve", + "sv": "Pingstafton", + "th": "วันก่อนวันสมโภชพระจิตเจ้า", + "uk": "Переддень Пʼятидесятниці" + }, + "countries": [ + "SE" + ] + }, + { + "id": "pentecost_monday", + "msgid": "Pentecost Monday", + "new_comment": "", + "comment": "Pentecost Monday.", + "messages": { + "ar": "إثنين العنصرة", + "ca": { + "AD": "Dilluns de Pentecosta", + "ES": "Dia de la Pasqua Granada" + }, + "da": "Anden pinsedag", + "de": "Pfingstmontag", + "el": "Δευτέρα του Αγίου Πνεύματος", + "en_AI": "Whit Monday", + "en_CI": "Pentecost Monday", + "en_CY": "Pentecost", + "en_GB": "Whit Monday", + "en_GD": "Whit Monday", + "en_LC": "Whit Monday", + "en_MS": "Whit Monday", + "en_US": "Pentecost Monday", + "en_VC": "Whit Monday", + "en_VG": "Whit Monday", + "es": "Día de la Pascua Granada", + "fi": "Toinen helluntaipäivä", + "fo": "Annar hvítusunnudagur", + "fr": "Lundi de Pentecôte", + "fr_BJ": "Lundi de Pentecôte", + "fr_MC": "Le Lundi de Pentecôte", + "fr_NE": "Lundi de Pentecôte", + "fr_SN": "Lundi de Pentecôte", + "fy": "Pinkstermoandei", + "hu": "Pünkösdhétfő", + "id": "Hari kedua Pentakosta", + "is": "Annar í hvítasunnu", + "it": "Lunedì di Pentecoste", + "it_IT": "Lunedì di Pentecoste", + "kab": "Letni n pentikust", + "kl": "Piinsip-aappaa", + "lb": "Péngschtméindeg", + "mg": "Alatsinain'ny pentekosta", + "nl": { + "BE": "Pinkstermaandag", + "NL": "Tweede pinksterdag" + }, + "no": "Andre pinsedag", + "pl": "Drugi dzień Zielonych Świątek", + "sv": "Annandag pingst", + "th": "วันจันทร์หลังวันสมโภชพระจิตเจ้า", + "uk": "Другий день Пʼятидесятниці" + }, + "countries": [ + "AD", + "AI", + "AT", + "BE", + "BJ", + "CF", + "CG", + "CH", + "CI", + "CY", + "DE", + "DK", + "DZ", + "ES", + "FO", + "FR", + "GA", + "GB", + "GD", + "GL", + "GR", + "HU", + "ID", + "IS", + "IT", + "LC", + "LI", + "LU", + "MC", + "MG", + "MS", + "NE", + "NL", + "NO", + "PL", + "SE", + "SH", + "SN", + "TG", + "VC", + "VG", + "XETR" + ] + }, + { + "id": "people_s_authority_day", + "msgid": "People's Authority Day", + "new_comment": "", + "comment": "People's Authority Day.", + "messages": { + "ar": "عید إعلان سلطة الشعب", + "en_US": "People's Authority Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "people_s_sovereignty_day", + "msgid": "People's Sovereignty Day", + "new_comment": "", + "comment": "People's Sovereignty Day.", + "messages": { + "en_US": "People's Sovereignty Day", + "fr_BJ": "Journée de la Souveraineté de Peuple" + }, + "countries": [ + "BJ" + ] + }, + { + "id": "people_war_s_day", + "msgid": "People War's Day", + "new_comment": "", + "comment": "People War's Day.", + "messages": { + "en_US": "People War's Day", + "kn": "ಜನಯುದ್ಧ ದಿನ", + "ne": "जनयुद्ध दिवस" + }, + "countries": [ + "NP" + ] + }, + { + "id": "pernambuco_revolution_of_1817", + "msgid": "Pernambuco Revolution of 1817", + "new_comment": "", + "comment": "Pernambuco Revolution of 1817.", + "messages": { + "en_US": "Pernambuco Revolution of 1817", + "pt_BR": "Revolução Pernambucana de 1817", + "uk": "День Пернамбуканської революції 1817 року" + }, + "countries": [ + "BR" + ] + }, + { + "id": "peruvian_air_force_day", + "msgid": "Peruvian Air Force Day", + "new_comment": "", + "comment": "Peruvian Air Force Day.", + "messages": { + "en_US": "Peruvian Air Force Day", + "es": "Día de la Fuerza Aérea del Perú", + "uk": "День Повітряних сил Перу" + }, + "countries": [ + "PE" + ] + }, + { + "id": "pesach", + "msgid": "Pesach", + "new_comment": "", + "comment": "Pesach.", + "messages": { + "ar": { + "DZ": "عيد الفصح اليهودي", + "IQ": "عيد الفصح" + }, + "cnr": "Pasha", + "en_US": "Pesach", + "es": "Pascua Judía (Pésaj)", + "fr": "Pisah", + "kab": "Lɛid n tfaska n udayen", + "uk": "Песах" + }, + "countries": [ + "AR", + "DZ", + "IQ", + "ME" + ] + }, + { + "id": "pesach_passover", + "msgid": "Pesach", + "new_comment": "", + "comment": "Pesach (Passover).", + "messages": { + "en_US": "Pesach", + "he": "פסח", + "th": "วันเพสสะห์", + "uk": "Песах" + }, + "countries": [ + "IL" + ] + }, + { + "id": "pesta_kaamatan", + "msgid": "Pesta Kaamatan", + "new_comment": "", + "comment": "Pesta Kaamatan.", + "messages": { + "en_US": "Pesta Kaamatan", + "ms_MY": "Pesta Kaamatan", + "th": "เทศกาลกามะตัน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "physical_education_day", + "msgid": "Physical Education Day", + "new_comment": "", + "comment": "Physical Education Day.", + "messages": { + "en_US": "Physical Education Day", + "ja": "体育の日", + "th": "วันพลศึกษา" + }, + "countries": [ + "JP" + ] + }, + { + "id": "piau_day", + "msgid": "Piauí Day", + "new_comment": "", + "comment": "Piauí Day.", + "messages": { + "en_US": "Piauí Day", + "pt_BR": "Dia do Piauí", + "uk": "День Піауї" + }, + "countries": [ + "BR" + ] + }, + { + "id": "picnic_day", + "msgid": "Picnic Day", + "new_comment": "", + "comment": "Picnic Day.", + "messages": { + "en_AU": "Picnic Day", + "en_US": "Picnic Day", + "th": "วันปิกนิก" + }, + "countries": [ + "AU" + ] + }, + { + "id": "pidjiguiti_day", + "msgid": "Pidjiguiti Day", + "new_comment": "", + "comment": "Pidjiguiti Day.", + "messages": { + "en_US": "Pidjiguiti Day", + "pt_GW": "Dia de Pidjiguiti" + }, + "countries": [ + "GW" + ] + }, + { + "id": "pioneer_day", + "msgid": "Pioneer Day", + "new_comment": "", + "comment": "Pioneer Day.", + "messages": { + "en_US": "Pioneer Day", + "th": "วันผู้บุกเบิก" + }, + "countries": [ + "US" + ] + }, + { + "id": "platinum_jubilee_of_elizabeth_ii", + "msgid": "Platinum Jubilee of Elizabeth II", + "new_comment": "", + "comment": "Platinum Jubilee of Elizabeth II.", + "messages": { + "en_GB": "Platinum Jubilee of Elizabeth II", + "en_MS": "Platinum Jubilee of Elizabeth II", + "en_US": "Platinum Jubilee of Elizabeth II", + "en_VG": "Queen Elizabeth II's Platinum Jubilee", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 70 ปี สมเด็จพระราชินีนาถ" + }, + "countries": [ + "GB", + "MS", + "VG" + ] + }, + { + "id": "plebiscite_1902_trevelin", + "msgid": "Plebiscite 1902 Trevelin", + "new_comment": "", + "comment": "Plebiscite 1902 Trevelin.", + "messages": { + "en_US": "Plebiscite 1902 Trevelin", + "es": "Plebiscito 1902 Trevelin", + "uk": "Річниця плебісциту 1902 року" + }, + "countries": [ + "AR" + ] + }, + { + "id": "plurinational_state_foundation_day", + "msgid": "Plurinational State Foundation Day", + "new_comment": "", + "comment": "Plurinational State Foundation Day.", + "messages": { + "en_US": "Plurinational State Foundation Day", + "es": "Día de la Creación del Estado Plurinacional de Bolivia", + "uk": "День створення Багатонаціональної Держави Болівія" + }, + "countries": [ + "BO" + ] + }, + { + "id": "pohela_boisakh", + "msgid": "Pohela Boishakh", + "new_comment": "", + "comment": "Pohela Boisakh.", + "messages": { + "bn": "পহেলা বৈশাখ", + "en_IN": "Pohela Boishakh", + "en_US": "Pohela Boishakh", + "gu": "પોહેલા બોઈશાખ", + "hi": "पोहेला बोइशाख", + "kn": "ಪೊಹೆಲಾ ಬೊಯಿಶಾಖ್", + "ml": "പൊഹേലാ ബൈശാഖ്", + "mr": "पोहेला बैशाख", + "pa": "ਪੋਹੇਲਾ ਬੋਸ਼ਾਖ", + "ta": "பொஹேலா பொய்ஷாக்", + "te": "పొహెలా బొయిషాఖ్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "pohnpei_constitution_day", + "msgid": "Pohnpei Constitution Day", + "new_comment": "", + "comment": "Pohnpei Constitution Day.", + "messages": { + "en_FM": "Pohnpei Constitution Day", + "en_US": "Pohnpei Constitution Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "pohnpei_cultural_day", + "msgid": "Pohnpei Cultural Day", + "new_comment": "", + "comment": "Pohnpei Cultural Day.", + "messages": { + "en_FM": "Pohnpei Cultural Day", + "en_US": "Pohnpei Cultural Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "political_emancipation_of_alagoas", + "msgid": "Political Emancipation of Alagoas", + "new_comment": "", + "comment": "Political Emancipation of Alagoas.", + "messages": { + "en_US": "Political Emancipation of Alagoas", + "pt_BR": "Emancipação Política de Alagoas", + "uk": "День політичного звільнення Алагоаса" + }, + "countries": [ + "BR" + ] + }, + { + "id": "political_emancipation_of_paran", + "msgid": "Political Emancipation of Paraná", + "new_comment": "", + "comment": "Political Emancipation of Paraná.", + "messages": { + "en_US": "Political Emancipation of Paraná", + "pt_BR": "Emancipação do Paraná", + "uk": "День політичного звільнення Парани" + }, + "countries": [ + "BR" + ] + }, + { + "id": "polling_day", + "msgid": "Polling Day", + "new_comment": "", + "comment": "Polling Day.", + "messages": { + "en_SG": "Polling Day", + "en_US": "Polling Day", + "th": "วันเลือกตั้ง" + }, + "countries": [ + "SG" + ] + }, + { + "id": "pongal", + "msgid": "Pongal", + "new_comment": "", + "comment": "Pongal.", + "messages": { + "bn": "পোঙ্গল", + "en_IN": "Pongal", + "en_US": "Pongal", + "gu": "પોંગલ", + "hi": "पोंगल", + "kn": "ಪೊಂಗಲ್", + "ml": "പൊങ്കൽ", + "mr": "पोंगल", + "pa": "ਪੋਂਗਲ", + "ta": "பொங்கல்", + "te": "పొంగల్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "pope_francis_visit_day", + "msgid": "Pope Francis' Visit Day", + "new_comment": "", + "comment": "Pope Francis' Visit Day.", + "messages": { + "ar": "يوم زيارة البابا فرنسيس", + "en_US": "Pope Francis' Visit Day", + "th": "สมเด็จพระสันตะปาปาฟรานซิสเสด็จเยือนสหรัฐอาหรับเอมิเรตส์" + }, + "countries": [ + "AE" + ] + }, + { + "id": "popular_consultation_day", + "msgid": "Popular Consultation Day", + "new_comment": "", + "comment": "Popular Consultation Day.", + "messages": { + "en_TL": "Popular Consultation Day", + "en_US": "Popular Consultation Day", + "pt_TL": "Dia da Consulta Popular", + "tet": "Loron Konsulta Populár nian", + "th": "วันรำลึกการลงประชามติเอกราช" + }, + "countries": [ + "TL" + ] + }, + { + "id": "popular_revolution_commemoration_day", + "msgid": "Popular Revolution Commemoration Day", + "new_comment": "", + "comment": "Popular Revolution Commemoration Day.", + "messages": { + "am": "የአብዮት ቀን", + "ar": "يوم الثورة الشعبية", + "en_ET": "Popular Revolution Commemoration Day", + "en_US": "Popular Revolution Commemoration Day" + }, + "countries": [ + "ET" + ] + }, + { + "id": "porto_novo_municipality_day", + "msgid": "Porto Novo Municipality Day", + "new_comment": "", + "comment": "Porto Novo Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Porto Novo", + "en_US": "Porto Novo Municipality Day", + "es": "Día del Municipio de Porto Novo", + "fr": "Journée de la municipalité de Porto Novo", + "pt_CV": "Dia do Município do Porto Novo" + }, + "countries": [ + "CV" + ] + }, + { + "id": "portugal_day", + "msgid": "Portugal Day", + "new_comment": "", + "comment": "Portugal Day.", + "messages": { + "en_US": "Portugal Day", + "pt_PT": "Dia de Portugal", + "uk": "День Португалії" + }, + "countries": [ + "PT" + ] + }, + { + "id": "portuguese_welcome_170th_anniversary", + "msgid": "Portuguese Welcome 170th Anniversary", + "new_comment": "", + "comment": "Portuguese Welcome 170th Anniversary.", + "messages": { + "en_BM": "Portuguese Welcome 170th Anniversary", + "en_US": "Portuguese Welcome 170th Anniversary" + }, + "countries": [ + "BM" + ] + }, + { + "id": "poson_full_moon_poya_day", + "msgid": "Poson Full Moon Poya Day", + "new_comment": "", + "comment": "Poson Full Moon Poya Day.", + "messages": { + "en_US": "Poson Full Moon Poya Day", + "si_LK": "පොසොන් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "பொசொன் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "possession_day", + "msgid": "Possession Day", + "new_comment": "", + "comment": "Possession Day.", + "messages": { + "en_GS": "Possession Day", + "en_US": "Possession Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "potos_day", + "msgid": "Potosí Day", + "new_comment": "", + "comment": "Potosí Day.", + "messages": { + "en_US": "Potosí Day", + "es": "Día del departamento de Potosí", + "uk": "День департаменту Потосі" + }, + "countries": [ + "BO" + ] + }, + { + "id": "praia_municipality_day", + "msgid": "Praia Municipality Day", + "new_comment": "", + "comment": "Praia Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Praia", + "en_US": "Praia Municipality Day", + "es": "Día del Municipio de Praia", + "fr": "Journée de la municipalité de Praia", + "pt_CV": "Dia do Município da Praia" + }, + "countries": [ + "CV" + ] + }, + { + "id": "pratihar_shashthi_or_surya_shashthi_chhat_puja", + "msgid": "Pratihar Shashthi or Surya Shashthi (Chhat Puja)", + "new_comment": "", + "comment": "Pratihar Shashthi or Surya Shashthi (Chhat Puja).", + "messages": { + "bn": "প্রতিহার ষষ্ঠী বা সূর্য ষষ্ঠী (ছট পূজা)", + "en_IN": "Pratihar Shashthi or Surya Shashthi (Chhat Puja)", + "en_US": "Pratihar Shashthi or Surya Shashthi (Chhat Puja)", + "gu": "પ્રતિહાર ષષ્ઠી અથવા સૂર્ય ષષ્ઠી (છટ પૂજા)", + "hi": "प्रतिहार षष्ठी या सूर्य षष्ठी (छठ पूजा)", + "kn": "ಪ್ರತಿಹಾರ್ ಷಷ್ಠಿ ಅಥವಾ ಸೂರ್ಯ ಷಷ್ಠಿ (ಛತ್ ಪೂಜೆ)", + "ml": "പ്രതിഹാർ ഷഷ്ഠി അല്ലെങ്കിൽ സൂര്യ ഷഷ്ഠി (ഛത് പൂജ)", + "mr": "प्रतिहार षष्ठी किंवा सूर्य षष्ठी (छठ पूजा)", + "pa": "ਪ੍ਰਤਿਹਾਰ ਸ਼ਸ਼ਠੀ ਜਾਂ ਸੂਰਜ ਸ਼ਸ਼ਠੀ (ਛਟ ਪੂਜਾ)", + "ta": "பிரதிஹார் ஷஷ்டி அல்லது சூர்ய ஷஷ்டி (சட் பூஜை)", + "te": "ప్రతిహార్ షష్ఠి లేదా సూర్య షష్ఠి (ఛత్ పూజ)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "prayer_monday", + "msgid": "Prayer Monday", + "new_comment": "", + "comment": "Prayer Monday.", + "messages": { + "de": "Bettagsmontag", + "en_US": "Prayer Monday", + "fr": "Lundi du Jeûne fédéral", + "it": "Lunedì del digiuno federale", + "th": "วันจันทร์หลังวันอธิษฐานแห่งชาติสวิตเซอร์แลนด์", + "uk": "Молитовний понеділок" + }, + "countries": [ + "CH" + ] + }, + { + "id": "pre_eren_s_day_the_slovenian_cultural_holiday", + "msgid": "Prešeren's Day, the Slovenian Cultural Holiday", + "new_comment": "", + "comment": "Prešeren's Day, the Slovenian Cultural Holiday.", + "messages": { + "en_US": "Prešeren's Day, the Slovenian Cultural Holiday", + "sl": "Prešernov dan, slovenski kulturni praznik", + "uk": "День Прешерена, свято словенської культури" + }, + "countries": [ + "SI" + ] + }, + { + "id": "pre_holiday_day_workday_shortened_by_3_hours", + "msgid": "Pre-holiday day (workday shortened by 3 hours)", + "new_comment": "", + "comment": "Pre-holiday day (workday shortened by 3 hours).", + "messages": { + "en_US": "Pre-holiday day (workday shortened by 3 hours)", + "et": "pühade-eelne päev (tööpäev lüheneb 3 tunni võrra)", + "uk": "Передсвятковий робочий день (скорочений на 3 години)" + }, + "countries": [ + "EE" + ] + }, + { + "id": "president_kaysone_phomvihane_s_birthday", + "msgid": "President Kaysone Phomvihane's Birthday", + "new_comment": "", + "comment": "President Kaysone Phomvihane's Birthday.", + "messages": { + "en_US": "President Kaysone Phomvihane's Birthday", + "lo": "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ໄກສອນ ພົມວິຫານ", + "th": "วันคล้ายวันเกิดท่านประธานไกสอน พมวิหาน" + }, + "countries": [ + "LA" + ] + }, + { + "id": "president_moi_memorial_day", + "msgid": "President Moi Memorial Day", + "new_comment": "", + "comment": "President Moi Memorial Day.", + "messages": { + "en_KE": "President Moi Memorial Day", + "en_US": "President Moi Memorial Day", + "sw": "Siku ya Kumbukumbu ya Rais Moi" + }, + "countries": [ + "KE" + ] + }, + { + "id": "president_park_chung_hee_s_funeral_ceremony", + "msgid": "President Park Chung Hee's Funeral Ceremony", + "new_comment": "", + "comment": "President Park Chung Hee's Funeral Ceremony.", + "messages": { + "en_US": "President Park Chung Hee's Funeral Ceremony", + "ko": "박정희 대통령 국장 영결식", + "th": "พิธีศพประธานาธิบดี พัก จ็อง-ฮี" + }, + "countries": [ + "KR" + ] + }, + { + "id": "president_s_day", + "msgid": "President's Day", + "new_comment": "", + "comment": "President's Day.", + "messages": { + "en_US": "President's Day", + "es": "Natalicio de Su Excelencia el Presidente de la República", + "gu": "પ્રેસિડેન્ટ્સ ડે", + "hi": "प्रेसिडेंट्स डे", + "th": "วันประธานาธิบดี" + }, + "countries": [ + "GQ", + "US", + "XCME" + ] + }, + { + "id": "president_souphanouvong_s_birthday", + "msgid": "President Souphanouvong's Birthday", + "new_comment": "", + "comment": "President Souphanouvong's Birthday.", + "messages": { + "en_US": "President Souphanouvong's Birthday", + "lo": "ວັນຄ້າຍວັນເກີດ ທ່ານ ປະທານ ສຸພານຸວົງ", + "th": "วันคล้ายวันเกิดท่านประธานสุภานุวงศ์" + }, + "countries": [ + "LA" + ] + }, + { + "id": "president_syngman_rhee_s_birthday", + "msgid": "President Syngman Rhee's Birthday", + "new_comment": "", + "comment": "President Syngman Rhee's Birthday.", + "messages": { + "en_US": "President Syngman Rhee's Birthday", + "ko": "이승만 대통령 탄신일", + "th": "วันคล้ายวันเกิดประธานาธิบดี อี ซึง-มัน" + }, + "countries": [ + "KR" + ] + }, + { + "id": "presidential_decree_holiday", + "msgid": "Presidential decree holiday", + "new_comment": "", + "comment": "Presidential decree holiday.", + "messages": { + "ar": "العطلة بمرسوم رئاسي", + "en_US": "Presidential decree holiday", + "th": "วันหยุดตามประกาศคำสั่งประธานาธิบดี", + "uk": "Вихідний згідно указу Президента" + }, + "countries": [ + "UA" + ] + }, + { + "id": "presidential_election_day", + "msgid": "Presidential Election Day", + "new_comment": "", + "comment": "Presidential Election Day.", + "messages": { + "en_SC": "Presidential Election Day", + "en_TL": "Presidential Election Day", + "en_US": "Presidential Election Day", + "id": "Hari Pemilihan Presiden", + "ko": "대통령 선거일", + "pt_TL": "Dia da Eleição Presidencial", + "tet": "Loron Eleisaun Prezidensiál nian", + "th": "วันเลือกตั้งประธานาธิบดี", + "uk": "День президентських виборів" + }, + "countries": [ + "ID", + "KR", + "SC", + "TL" + ] + }, + { + "id": "presidential_elections", + "msgid": "Presidential elections", + "new_comment": "", + "comment": "Presidential elections.", + "messages": { + "az": "Prezidenti seçkiləri", + "en_US": "Presidential elections", + "uk": "Президентські вибори" + }, + "countries": [ + "AZ" + ] + }, + { + "id": "presidential_inauguration_day", + "msgid": "Presidential Inauguration Day", + "new_comment": "", + "comment": "Presidential Inauguration Day.", + "messages": { + "en_NG": "Presidential Inauguration Day", + "en_US": "Presidential Inauguration Day", + "es": { + "PA": "Toma posesión del Presidente de la república", + "UY": "Inauguración del Presidente de la República" + }, + "ko": "대통령 취임식", + "th": "วันสาบานตนประธานาธิบดี", + "uk": "Інавгурація Президента Республіки" + }, + "countries": [ + "KR", + "NG", + "PA", + "UY" + ] + }, + { + "id": "presidents_day_1", + "msgid": "Presidents Day", + "new_comment": "", + "comment": "Presidents Day.", + "messages": { + "en_FM": "Presidents Day", + "en_US": "Presidents Day", + "th": "วันประธานาธิบดี" + }, + "countries": [ + "FM", + "US" + ] + }, + { + "id": "presidents_day_2", + "msgid": "Presidents' Day", + "new_comment": "", + "comment": "Presidents' Day.", + "messages": { + "en_US": "Presidents' Day", + "th": "วันประธานาธิบดี" + }, + "countries": [ + "US" + ] + }, + { + "id": "primary_election_day", + "msgid": "Primary Election Day", + "new_comment": "", + "comment": "Primary Election Day.", + "messages": { + "en_US": "Primary Election Day", + "th": "วันเลือกตั้งขั้นต้น" + }, + "countries": [ + "US" + ] + }, + { + "id": "primo_trubar_day", + "msgid": "Primož Trubar Day", + "new_comment": "", + "comment": "Primož Trubar Day.", + "messages": { + "en_US": "Primož Trubar Day", + "sl": "dan Primoža Trubarja", + "uk": "День Приможа Трубара" + }, + "countries": [ + "SI" + ] + }, + { + "id": "prince_jonah_kuhio_kalanianaole_day", + "msgid": "Prince Jonah Kuhio Kalanianaole Day", + "new_comment": "", + "comment": "Prince Jonah Kuhio Kalanianaole Day.", + "messages": { + "en_US": "Prince Jonah Kuhio Kalanianaole Day", + "th": "วันเจ้าชายโจนาห์ คูฮิโอ คาลานิอาเนาโอะเล" + }, + "countries": [ + "US" + ] + }, + { + "id": "prince_s_day", + "msgid": "Prince's Day", + "new_comment": "", + "comment": "Prince's Day.", + "messages": { + "en_US": "Prince's Day", + "fr_MC": "Le jour de la Fête de S.A.S. le Prince Souverain", + "uk": "День Князя" + }, + "countries": [ + "MC" + ] + }, + { + "id": "prithvi_jayanti", + "msgid": "Prithvi Jayanti", + "new_comment": "", + "comment": "Prithvi Jayanti.", + "messages": { + "en_US": "Prithvi Jayanti", + "kn": "ಪೃಥ್ವಿ ಜಯಂತಿ", + "ne": "पृथ्वी जयन्ती" + }, + "countries": [ + "NP" + ] + }, + { + "id": "proclamation_ceremony_of_crown_prince_al_muhtadee_billah_of_brunei", + "msgid": "Proclamation Ceremony of Crown Prince Al-Muhtadee Billah of Brunei", + "new_comment": "", + "comment": "Proclamation Ceremony of Crown Prince Al-Muhtadee Billah of Brunei.", + "messages": { + "en_US": "Proclamation Ceremony of Crown Prince Al-Muhtadee Billah of Brunei", + "ms": "Istiadat Pengisytiharan Duli Pengiran Muda Mahkota Al-Muhtadee Billah", + "th": "พระราชพิธีสถาปนาเจ้าชายอัลมุห์ตาดี บิลละห์ มกุฎราชกุมารแห่งบรูไน" + }, + "countries": [ + "BN" + ] + }, + { + "id": "proclamation_day", + "msgid": "Proclamation Day", + "new_comment": "", + "comment": "Proclamation Day.", + "messages": { + "en_AU": "Proclamation Day", + "en_US": "Proclamation Day", + "th": "วันสถาปนา" + }, + "countries": [ + "AU" + ] + }, + { + "id": "proclamation_of_declaration_of_independence_day", + "msgid": "Proclamation of Declaration of Independence Day", + "new_comment": "", + "comment": "Proclamation of Declaration of Independence Day.", + "messages": { + "en_US": "Proclamation of Declaration of Independence Day", + "lv": "Latvijas Republikas Neatkarības deklarācijas pasludināšanas diena", + "ru": "День провозглашения Декларации независимости Латвийской Республики", + "uk": "День проголошення декларації незалежності Латвійської Республіки" + }, + "countries": [ + "LV" + ] + }, + { + "id": "proclamation_of_independence_day", + "msgid": "Proclamation of Independence Day", + "new_comment": "", + "comment": "Proclamation of Independence Day.", + "messages": { + "ar": "ذكرى تقديم وثيقة الاستقلال", + "en_BF": "Proclamation of Independence Day", + "en_TL": "Proclamation of Independence Day", + "en_US": "Proclamation of Independence Day", + "fr": { + "BF": "Proclamation de l'Indépendance", + "MA": "Manifeste de l'indépendance" + }, + "pt_TL": "Dia da Proclamação da Independência", + "tet": "Loron Proklamasaun Independénsia nian", + "th": "วันประกาศเอกราชติมอร์-เลสเต" + }, + "countries": [ + "BF", + "MA", + "TL" + ] + }, + { + "id": "proclamation_of_soviet_republic_day", + "msgid": "Proclamation of Soviet Republic Day", + "new_comment": "", + "comment": "Proclamation of Soviet Republic Day.", + "messages": { + "en_US": "Proclamation of Soviet Republic Day", + "hu": "A Tanácsköztársaság kikiáltásának ünnepe", + "uk": "День проголошення радянської республіки" + }, + "countries": [ + "HU" + ] + }, + { + "id": "proclamation_of_the_sadr", + "msgid": "Proclamation of the SADR", + "new_comment": "", + "comment": "Proclamation of the SADR.", + "messages": { + "ar": "إعلان الجمهورية العربية الصحراوية الديمقراطية", + "en_US": "Proclamation of the SADR", + "es": "Proclamación de la República Árabe Saharaui Democrática", + "fr": "Proclamation de la République arabe sahraouie démocratique" + }, + "countries": [ + "EH" + ] + }, + { + "id": "production_day", + "msgid": "Production Day", + "new_comment": "", + "comment": "Production Day.", + "messages": { + "en_US": "Production Day", + "fr_BJ": "Fête de la Production" + }, + "countries": [ + "BJ" + ] + }, + { + "id": "prophet_muhammad_s_birthday", + "msgid": "Prophet Muhammad's Birthday", + "new_comment": "", + "comment": "Prophet Muhammad's Birthday.", + "messages": { + "ar": "عيد المولد النبوي", + "en_US": "Prophet Muhammad's Birthday", + "fr": "Anniversaire du prophète Muhammad", + "ms_MY": "Hari Keputeraan Nabi Muhammad S.A.W.", + "th": "วันเมาลิดนบี" + }, + "countries": [ + "DJ", + "MY" + ] + }, + { + "id": "prophet_s_baptism", + "msgid": "Prophet's Baptism", + "new_comment": "", + "comment": "Prophet's Baptism.", + "messages": { + "en_US": "Prophet's Baptism", + "fr": "Journée du Maouloud (Baptême du Prophète)" + }, + "countries": [ + "ML" + ] + }, + { + "id": "prophet_s_birthday", + "msgid": "Prophet's Birthday", + "new_comment": "", + "comment": "Prophet's Birthday.", + "messages": { + "am": "የመውሊድ በዓል", + "ar": { + "AE": "عيد المولد النبوي", + "BD": "المولد النبوي الشريف", + "BH": "المولد النبوي الشريف", + "DZ": "عيد المولد النبوي", + "EH": "المولد النبوي الشريف", + "ET": "عيد المولد النبوي", + "IQ": "المولد النبوي الشريف", + "JO": "عيد المولد النبوي", + "KW": "عيد المولد النبوي", + "LB": "ذكرى المولد النبوي الشريف", + "LY": "ذكرى المولد النبوي الشريف", + "MA": "عيد المولد النبوي", + "MR": "المولد النبوي الشريف", + "OM": "مولد النبي", + "PS": "ذكرى المولد النبوي الشريف", + "SY": "عيد المولد النبوي الشريف", + "TN": "عيد المولد النبوي", + "YE": "المولد النبوي" + }, + "ar_EG": "المولد النبوي الشريف", + "ar_SD": "المولد النبوي الشريف", + "bn": { + "BD": "ঈদে মিলাদুন্নবী", + "IN": "মিলাদ-উন-নবী" + }, + "coa_CC": "Hari Maulaud Nabi", + "dv": "ކީރިތި ރަސޫލާގެ ޢީދުމީލާދު", + "en_BD": "Eid-e-Miladunnabi", + "en_BF": "Mawlid", + "en_CC": "Prophet's Birthday", + "en_ET": "Mawlid", + "en_GM": "Mawlid Nabi", + "en_GY": "Youman Nabi", + "en_IN": { + "IN": "Milad-un-Nabi", + "XNSE": "Id-E-Milad-Un-Nabi" + }, + "en_NG": "Id el Maulud", + "en_PK": "Eid Milad-un-Nabi", + "en_SL": "Prophet's Birthday", + "en_US": "Prophet's Birthday", + "es": "Santo Nacimiento del Profeta", + "fa_AF": "میلاد پیامبر", + "fr": { + "BF": "Mouloud", + "DZ": "El-Mawlid Ennabawi Echarif", + "EG": "Naissance du Prophète", + "EH": "Naissance du Prophète", + "LB": "Naissance du Prophète", + "MA": "Anniversaire du prophète", + "ML": "Journée du Mawloud" + }, + "fr_BJ": "Journée Maouloud", + "fr_NE": "Mouloud", + "fr_SN": "Journée du Maouloud", + "gu": { + "IN": "મિલાદ-ઉન-નબી", + "XNSE": "ઈદ-એ-મિલાદ" + }, + "hi": "मिलाद-उन-नबी", + "id": "Maulid Nabi Muhammad", + "kab": "Lmulud", + "kn": "ಈದ್-ಮಿಲಾದ್", + "ml": "മിലാദ്-ഉന്നബി", + "mr": "ईद-ए-मिलाद", + "ms": "Maulidur Rasul", + "pa": "ਮਿਲਾਦ-ਉੱਨ-ਨਬੀ", + "ps_AF": "د پیغمبر الله صلی الله علیه وسلم د میلاد ورځ", + "si_LK": "නබි නායකතුමාගේ උපන් දිනය", + "sw": "Maulidi", + "ta": "மீலாது உல் நபி", + "ta_LK": "நபிகள் நாயகத்தின் பிறந்த தினம்", + "te": "మిలాద్-ఉన్-నబీ", + "th": "วันเมาลิดนบี", + "uk": "День народження пророка Мухаммада", + "ur_PK": "عید میلاد النبی" + }, + "countries": [ + "AE", + "AF", + "BD", + "BF", + "BH", + "BJ", + "BN", + "CC", + "DZ", + "EG", + "EH", + "ET", + "GM", + "GY", + "ID", + "IN", + "IQ", + "JO", + "KW", + "LB", + "LK", + "LY", + "MA", + "ML", + "MR", + "MV", + "NE", + "NG", + "OM", + "PK", + "PS", + "SD", + "SL", + "SN", + "SY", + "TN", + "TZ", + "XNSE", + "YE" + ] + }, + { + "id": "prophet_s_birthday_joint_holiday", + "msgid": "Prophet's Birthday Joint Holiday", + "new_comment": "", + "comment": "Prophet's Birthday Joint Holiday.", + "messages": { + "en_US": "Prophet's Birthday Joint Holiday", + "id": "Cuti Bersama Maulid Nabi Muhammad", + "th": "หยุดร่วมพิเศษวันเมาลิดนบี", + "uk": "Додатковий вихідний на День народження пророка Мухаммада" + }, + "countries": [ + "ID" + ] + }, + { + "id": "prophet_yahya_s_birthday", + "msgid": "Prophet Yahya's Birthday", + "new_comment": "", + "comment": "Prophet Yahya's Birthday.", + "messages": { + "ar": "مولد النبي يحيى عليه السلام", + "en_US": "Prophet Yahya's Birthday" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "provincial_autonomy_day", + "msgid": "Provincial Autonomy Day", + "new_comment": "", + "comment": "Provincial Autonomy Day.", + "messages": { + "en_US": "Provincial Autonomy Day", + "es": "Día de la Autonomía Provincial", + "uk": "День провінційної автономії" + }, + "countries": [ + "AR" + ] + }, + { + "id": "provincial_day_of_remembrance_for_truth_and_justice", + "msgid": "Provincial Day of Remembrance for Truth and Justice", + "new_comment": "", + "comment": "Provincial Day of Remembrance for Truth and Justice.", + "messages": { + "en_US": "Provincial Day of Remembrance for Truth and Justice", + "es": "Día Provincial de la Memoria por la Verdad y la Justicia", + "uk": "Провінційний день памʼяті заради правди та правосуддя" + }, + "countries": [ + "AR" + ] + }, + { + "id": "provisional_constitution_day", + "msgid": "Provisional Constitution Day", + "new_comment": "", + "comment": "Provisional Constitution Day.", + "messages": { + "en_US": "Provisional Constitution Day", + "th": "วันรัฐธรรมนูญชั่วคราว", + "uk": "День тимчасової Конституції" + }, + "countries": [ + "TH" + ] + }, + { + "id": "public_health_holiday", + "msgid": "Public Health Holiday", + "new_comment": "", + "comment": "Public Health Holiday.", + "messages": { + "en_US": "Public Health Holiday", + "en_VC": "Public Health Holiday" + }, + "countries": [ + "VC" + ] + }, + { + "id": "public_holiday", + "msgid": "Public Holiday", + "new_comment": "", + "comment": "Public Holiday.", + "messages": { + "ar": "عطلة رسمية", + "bn": "সাধারণ ছুটি", + "en_BD": "Public Holiday", + "en_BM": "Public Holiday", + "en_GY": "Public Holiday", + "en_MU": "Public Holiday", + "en_NA": "Public Holiday", + "en_US": "Public Holiday", + "es": "Asueto adicional", + "fa_IR": "تعطیلی عمومی", + "fr": "Jour férié", + "fr_MC": "Jour férié", + "fr_SN": "Jour férié", + "it_IT": "Giorno Festivo", + "ka": "უქმე დღე", + "sq": "Ditë pushimi", + "th": "วันหยุดพิเศษ (เพิ่มเติม)", + "tr": "Genel tati̇l", + "uk": { + "AL": "Вихідний день", + "GE": "Вихідний день", + "MC": "Державне свято", + "NA": "Вихідний день", + "PY": "Додатковий вихідний", + "TR": "Загальний вихідний" + } + }, + "countries": [ + "AL", + "BD", + "BM", + "GA", + "GE", + "GY", + "IR", + "IT", + "LY", + "MC", + "MU", + "NA", + "PY", + "SN", + "TR" + ] + }, + { + "id": "public_holiday_for_elections", + "msgid": "Public Holiday for Elections", + "new_comment": "", + "comment": "Public Holiday for Elections.", + "messages": { + "en_NG": "Public Holiday for Elections", + "en_US": "Public Holiday for Elections" + }, + "countries": [ + "NG" + ] + }, + { + "id": "public_holiday_for_presidential_election_preparation", + "msgid": "Public holiday for Presidential election preparation", + "new_comment": "", + "comment": "Public holiday for Presidential election preparation.", + "messages": { + "en_CI": "Public holiday for Presidential election preparation", + "en_US": "Public holiday for Presidential election preparation", + "fr": "Jour férié pour la préparation de l'élection présidentielle" + }, + "countries": [ + "CI" + ] + }, + { + "id": "public_humiliation_and_prayer_day", + "msgid": "Public Humiliation and Prayer Day", + "new_comment": "", + "comment": "Public Humiliation and Prayer Day.", + "messages": { + "en_US": "Public Humiliation and Prayer Day", + "th": "วันถ่อมตนร่วมกันและสวดภาวนา" + }, + "countries": [ + "US" + ] + }, + { + "id": "public_sector_holiday_1", + "msgid": "Public Sector Holiday", + "new_comment": "", + "comment": "Public Sector Holiday.", + "messages": { + "en_US": "Public Sector Holiday", + "si_LK": "රාජ්ය අංශයේ නිවාඩු දිනය", + "ta_LK": "பொதுத்துறை விடுமுறை" + }, + "countries": [ + "LK" + ] + }, + { + "id": "public_sector_holiday_2", + "msgid": "Public sector holiday", + "new_comment": "", + "comment": "Public sector holiday.", + "messages": { + "en_US": "Public sector holiday", + "es": "Asueto de la Administración Pública", + "uk": "Вихідний державних установ" + }, + "countries": [ + "PY" + ] + }, + { + "id": "public_servant_s_day", + "msgid": "Public Servant's Day", + "new_comment": "", + "comment": "Public Servant's Day.", + "messages": { + "en_US": "Public Servant's Day", + "pt_BR": "Dia do Servidor Público", + "uk": "День громадського службовця" + }, + "countries": [ + "BR" + ] + }, + { + "id": "public_thanksgiving_and_prayer_day", + "msgid": "Public Thanksgiving and Prayer Day", + "new_comment": "", + "comment": "Public Thanksgiving and Prayer Day.", + "messages": { + "en_US": "Public Thanksgiving and Prayer Day", + "th": "วันขอบคุณพระเจ้าร่วมกันและสวดภาวนา" + }, + "countries": [ + "US" + ] + }, + { + "id": "puducherry_de_jure_transfer_day", + "msgid": "Puducherry De Jure Transfer Day", + "new_comment": "", + "comment": "Puducherry De Jure Transfer Day.", + "messages": { + "bn": "পুদুচেরি আইনি হস্তান্তর দিবস", + "en_IN": "Puducherry De Jure Transfer Day", + "en_US": "Puducherry De Jure Transfer Day", + "gu": "પુડુચેરી ડી જ્યુર ટ્રાન્સફર દિવસ", + "hi": "पुडुचेरी डी ज्यूर स्थानांतरण दिवस", + "kn": "ಪುದುಚ್ಚೇರಿ ಕಾನೂನು ಹಸ್ತಾಂತರ ದಿನೋತ್ಸವ", + "ml": "പുതുച്ചേരി നിയമപരമായ കൈമാറ്റദിനം", + "mr": "पुदुचेरी कायदेशीर हस्तांतरण दिन", + "pa": "ਪੁਡੂਚੇਰੀ ਡੀ ਜਿਊਰ ਟ੍ਰਾਂਸਫਰ ਦਿਵਸ", + "ta": "புதுச்சேரி சட்டபூர்வ பரிமாற்ற நாள்", + "te": "పుదుచ్చేరి చట్టబద్ధ బదిలీ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "puducherry_liberation_day", + "msgid": "Puducherry Liberation Day", + "new_comment": "", + "comment": "Puducherry Liberation Day.", + "messages": { + "bn": "পুদুচেরি মুক্তি দিবস", + "en_IN": "Puducherry Liberation Day", + "en_US": "Puducherry Liberation Day", + "gu": "પુડુચેરી મુક્તિ દિવસ", + "hi": "पुडुचेरी मुक्ति दिवस", + "kn": "ಪುದುಚ್ಚೇರಿ ವಿಮೋಚನ ದಿನೋತ್ಸವ", + "ml": "പുതുച്ചേരി മോചനദിനം", + "mr": "पुदुचेरी मुक्ती दिन", + "pa": "ਪੁਡੂਚੇਰੀ ਮੁਕਤੀ ਦਿਵਸ", + "ta": "புதுச்சேரி விடுதலை நாள்", + "te": "పుదుచ్చేరి విమోచన దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "puerto_rican_culture_and_discovery_of_puerto_rico_day", + "msgid": "Puerto Rican Culture and Discovery of Puerto Rico Day", + "new_comment": "", + "comment": "Puerto Rican Culture and Discovery of Puerto Rico Day.", + "messages": { + "en_US": "Puerto Rican Culture and Discovery of Puerto Rico Day", + "th": "วันวัฒนธรรมเปอร์โตริโกและการค้นพบเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "puerto_rican_identity_day", + "msgid": "Puerto Rican Identity Day", + "new_comment": "", + "comment": "Puerto Rican Identity Day.", + "messages": { + "en_US": "Puerto Rican Identity Day", + "th": "วันเอกลักษณ์เปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "puerto_rico_constitution_day", + "msgid": "Puerto Rico Constitution Day", + "new_comment": "", + "comment": "Puerto Rico Constitution Day.", + "messages": { + "en_US": "Puerto Rico Constitution Day", + "th": "วันรัฐธรรมนูญเปอร์โตริโก" + }, + "countries": [ + "US" + ] + }, + { + "id": "pukapuka_gospel_day", + "msgid": "Pukapuka Gospel Day", + "new_comment": "", + "comment": "Pukapuka Gospel Day.", + "messages": { + "en_CK": "Pukapuka Gospel Day", + "en_US": "Pukapuka Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "purim", + "msgid": "Purim", + "new_comment": "", + "comment": "Purim.", + "messages": { + "en_US": "Purim", + "he": "פורים", + "th": "เทศกาลปูริม", + "uk": "Пурім" + }, + "countries": [ + "IL" + ] + }, + { + "id": "puthandu", + "msgid": "Puthandu (Tamil New Year)", + "new_comment": "", + "comment": "Puthandu.", + "messages": { + "bn": "পুত্থান্ডু (তামিল নববর্ষ)", + "en_IN": "Puthandu (Tamil New Year)", + "en_US": "Puthandu (Tamil New Year)", + "gu": "પુથંડુ (તમિલ નવું વર્ષ)", + "hi": "पुत्ताण्डु (तमिल नव वर्ष)", + "kn": "ಪುತ್ತಾಂಡು (ತಮಿಳು ಹೊಸ ವರ್ಷ)", + "ml": "പുത്താണ്ട് (തമിഴ് പുതുവർഷം)", + "mr": "पुथंडू (तमिळ नववर्ष)", + "pa": "ਪੁਥੰਡੂ (ਤਾਮਿਲ ਨਵਾਂ ਸਾਲ)", + "ta": "புத்தாண்டு (தமிழ் புத்தாண்டு)", + "te": "పుతండు (తమిళ నూతన సంవత్సరం)" + }, + "countries": [ + "IN" + ] + }, + { + "id": "qatar_national_day", + "msgid": "Qatar National Day", + "new_comment": "", + "comment": "Qatar National Day.", + "messages": { + "ar_QA": "اليوم الوطني لقطر", + "en_US": "Qatar National Day" + }, + "countries": [ + "QA" + ] + }, + { + "id": "quaid_e_azam_day", + "msgid": "Quaid-e-Azam Day", + "new_comment": "", + "comment": "Quaid-e-Azam Day.", + "messages": { + "en_PK": "Quaid-e-Azam Day", + "en_US": "Quaid-e-Azam Day", + "ur_PK": "یوم قائداعظم" + }, + "countries": [ + "PK" + ] + }, + { + "id": "queen_elizabeth_ii_s_diamond_jubilee", + "msgid": "Queen Elizabeth II's Diamond Jubilee", + "new_comment": "", + "comment": "Queen Elizabeth II's Diamond Jubilee.", + "messages": { + "en_GB": "Queen Elizabeth II's Diamond Jubilee", + "en_US": "Queen Elizabeth II's Diamond Jubilee" + }, + "countries": [ + "KY" + ] + }, + { + "id": "queen_elizabeth_ii_s_funeral", + "msgid": "Queen Elizabeth II's Funeral", + "new_comment": "", + "comment": "Queen Elizabeth II's Funeral.", + "messages": { + "en_GB": "Queen Elizabeth II's Funeral", + "en_NU": "Queen Elizabeth II's Funeral", + "en_US": "Queen Elizabeth II's Funeral" + }, + "countries": [ + "FK", + "KY", + "NU" + ] + }, + { + "id": "queen_elizabeth_ii_s_platinum_jubilee", + "msgid": "Queen Elizabeth II's Platinum Jubilee", + "new_comment": "", + "comment": "Queen Elizabeth II's Platinum Jubilee.", + "messages": { + "en_GB": "Queen Elizabeth II's Platinum Jubilee", + "en_US": "Queen Elizabeth II's Platinum Jubilee" + }, + "countries": [ + "SH" + ] + }, + { + "id": "queen_elizabeth_ii_s_state_funeral", + "msgid": "Queen Elizabeth II's State Funeral", + "new_comment": "", + "comment": "Queen Elizabeth II's State Funeral.", + "messages": { + "en_GB": "Queen Elizabeth II's State Funeral", + "en_US": "Queen Elizabeth II's State Funeral" + }, + "countries": [ + "SH" + ] + }, + { + "id": "queen_s_birthday", + "msgid": "Queen's Birthday", + "new_comment": "", + "comment": "Queen's Birthday.", + "messages": { + "coa_CC": "Hari Ulang Tahun Ratu", + "en_AI": "Celebration of the Birthday of Her Majesty the Queen", + "en_AU": "Queen's Birthday", + "en_BM": "Queen's Birthday", + "en_CC": "Queen's Birthday", + "en_GB": { + "FK": "HM The Queen's Birthday", + "GI": "Queen's Birthday", + "KY": "Queen's Birthday", + "SH": "Queen's Birthday", + "TV": "Queen's Birthday" + }, + "en_HK": "Queen's Birthday", + "en_MS": "Queen's Birthday", + "en_NF": "Queen's Birthday", + "en_NU": "Queen's Birthday", + "en_TC": "Queen's Birthday", + "en_US": "Queen's Birthday", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระราชินีนาถ", + "tvl": "Asofanau Fafine", + "zh_CN": "英女王生日", + "zh_HK": "英女皇壽辰" + }, + "countries": [ + "AI", + "AU", + "BM", + "CC", + "FK", + "GI", + "HK", + "KY", + "MS", + "NF", + "NU", + "SH", + "TC", + "TV" + ] + }, + { + "id": "queen_s_day", + "msgid": "Queen's Day", + "new_comment": "", + "comment": "Queen's Day.", + "messages": { + "en_BQ": "Queen's Day", + "en_US": "Queen's Day", + "fy": "Keninginnedei", + "nl": "Koninginnedag", + "pap_AW": "Aña di La Reina", + "pap_BQ": "Dia di Reina", + "pap_CW": "Dia di la Reina", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระราชินีนาถ", + "uk": "День королеви" + }, + "countries": [ + "AW", + "BQ", + "CW", + "NL", + "SX" + ] + }, + { + "id": "queen_s_diamond_jubilee", + "msgid": "Queen's Diamond Jubilee", + "new_comment": "", + "comment": "Queen's Diamond Jubilee.", + "messages": { + "en_AU": "Queen's Diamond Jubilee", + "en_GB": "Queen's Diamond Jubilee", + "en_US": "Queen's Diamond Jubilee", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 60 ปี สมเด็จพระราชินีนาถ" + }, + "countries": [ + "AU", + "GI" + ] + }, + { + "id": "queen_s_platinum_jubilee", + "msgid": "Queen's Platinum Jubilee", + "new_comment": "", + "comment": "Queen's Platinum Jubilee.", + "messages": { + "en_GB": "Platinum Jubilee", + "en_US": "Queen's Platinum Jubilee" + }, + "countries": [ + "GI" + ] + }, + { + "id": "rabindra_jayanti", + "msgid": "Rabindra Jayanti", + "new_comment": "", + "comment": "Rabindra Jayanti.", + "messages": { + "bn": "রবীন্দ্র জয়ন্তী", + "en_IN": "Rabindra Jayanti", + "en_US": "Rabindra Jayanti", + "gu": "રવીન્દ્ર જયંતિ", + "hi": "रवींद्र जयंती", + "kn": "ರವೀಂದ್ರ ಜಯಂತಿ", + "ml": "രബീന്ദ്ര ജയന്തി", + "mr": "रवींद्र जयंती", + "pa": "ਰਬਿੰਦਰ ਜੈਅੰਤੀ", + "ta": "ரபீந்திர ஜெயந்தி", + "te": "రవీంద్ర జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "radunitsa_day_of_rejoicing", + "msgid": "Radunitsa (Day of Rejoicing)", + "new_comment": "", + "comment": "Radunitsa (Day of Rejoicing).", + "messages": { + "be": "Радаўніца", + "en_US": "Radunitsa (Day of Rejoicing)", + "ru": "Радуница", + "th": "ราเดาว์นิตซา (วันแห่งความยินดี)" + }, + "countries": [ + "BY" + ] + }, + { + "id": "rafik_hariri_memorial_day", + "msgid": "Rafik Hariri Memorial Day", + "new_comment": "", + "comment": "Rafik Hariri Memorial Day.", + "messages": { + "ar": "يوم ذكرى رفيق الحريري", + "en_US": "Rafik Hariri Memorial Day", + "fr": "Commémoration de l'assassinat du PM Rafic Hariri" + }, + "countries": [ + "LB" + ] + }, + { + "id": "railroad_strike", + "msgid": "Railroad strike", + "new_comment": "", + "comment": "Railroad strike.", + "messages": { + "en_US": "Railroad strike", + "gu": "રેલવે હડતાલ", + "hi": "रेलवे हड़ताल" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "rajasthan_day", + "msgid": "Rajasthan Day", + "new_comment": "", + "comment": "Rajasthan Day.", + "messages": { + "bn": "রাজস্থান দিবস", + "en_IN": "Rajasthan Day", + "en_US": "Rajasthan Day", + "gu": "રાજસ્થાન દિવસ", + "hi": "राजस्थान दिवस", + "kn": "ರಾಜಸ್ಥಾನ ದಿನೋತ್ಸವ", + "ml": "രാജസ്ഥാൻ ദിനം", + "mr": "राजस्थान दिन", + "pa": "ਰਾਜਸਥਾਨ ਦਿਵਸ", + "ta": "ராஜஸ்தான் நாள்", + "te": "రాజస్థాన్ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "rakahanga_gospel_day", + "msgid": "Rakahanga Gospel Day", + "new_comment": "", + "comment": "Rakahanga Gospel Day.", + "messages": { + "en_CK": "Rakahanga Gospel Day", + "en_US": "Rakahanga Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "raksha_bandhan", + "msgid": "Raksha Bandhan", + "new_comment": "", + "comment": "Raksha Bandhan.", + "messages": { + "bn": "রাখি বন্ধন", + "en_IN": "Raksha Bandhan", + "en_US": "Raksha Bandhan", + "gu": "રક્ષાબંધન", + "hi": "रक्षाबंधन", + "kn": "ರಕ್ಷಾ ಬಂಧನ", + "ml": "രക്ഷാ ബന്ധൻ", + "mr": "रक्षाबंधन", + "pa": "ਰੱਖੜੀ", + "ta": "ரக்ஷா பந்தன்", + "te": "రాఖీ పౌర్ణమి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "ram_navami", + "msgid": "Ram Navami", + "new_comment": "", + "comment": "Ram Navami.", + "messages": { + "bn": "রাম নবমী", + "en_IN": "Ram Navami", + "en_US": "Ram Navami", + "gu": "રામ નવમી", + "hi": { + "IN": "रामनवमी", + "XNSE": "राम नवमी" + }, + "kn": { + "IN": "ಶ್ರೀ ರಾಮನವಮಿ", + "NP": "ರಾಮ ನವಮಿ" + }, + "ml": "രാമ നവമി", + "mr": "रामनवमी", + "ne": "राम नवमी", + "pa": "ਰਾਮ ਨੌਮੀ", + "ta": "ராம நவமி", + "te": "శ్రీరామనవమి" + }, + "countries": [ + "IN", + "NP", + "XNSE" + ] + }, + { + "id": "rarotonga_gospel_day", + "msgid": "Rarotonga Gospel Day", + "new_comment": "", + "comment": "Rarotonga Gospel Day.", + "messages": { + "en_CK": "Rarotonga Gospel Day", + "en_US": "Rarotonga Gospel Day" + }, + "countries": [ + "CK" + ] + }, + { + "id": "rath_yatra", + "msgid": "Rath Yatra", + "new_comment": "", + "comment": "Rath Yatra.", + "messages": { + "bn": "রথযাত্রা", + "en_IN": "Rath Yatra", + "en_US": "Rath Yatra", + "gu": "રથ યાત્રા", + "hi": "रथ यात्रा", + "kn": "ರಥ ಯಾತ್ರೆ", + "ml": "രഥയാത്ര", + "mr": "रथ यात्रा", + "pa": "ਰੱਥ ਯਾਤਰਾ", + "ta": "ரத யாத்திரை", + "te": "రథ యాత్ర" + }, + "countries": [ + "IN" + ] + }, + { + "id": "ratting_day", + "msgid": "Ratting Day", + "new_comment": "", + "comment": "Ratting Day.", + "messages": { + "en_GB": "Ratting Day", + "en_US": "Ratting Day" + }, + "countries": [ + "SH" + ] + }, + { + "id": "reception_day_of_the_hudson_fulton_celebration", + "msgid": "Reception Day of the Hudson-Fulton Celebration", + "new_comment": "", + "comment": "Reception Day of the Hudson-Fulton Celebration.", + "messages": { + "en_US": "Reception Day of the Hudson-Fulton Celebration", + "gu": "હડસન-ફુલ્ટન ઉજવણીનો રિસેપ્શન ડે", + "hi": "हडसन-फुल्टन उत्सव का स्वागत दिवस" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "reconciliation_day", + "msgid": "Reconciliation Day", + "new_comment": "", + "comment": "Reconciliation Day.", + "messages": { + "en_AU": "Reconciliation Day", + "en_US": "Reconciliation Day", + "fr": "Fête de la Réconciliation", + "th": "วันแห่งการปรองดอง" + }, + "countries": [ + "AU", + "CG" + ] + }, + { + "id": "referendum_day", + "msgid": "Referendum Day", + "new_comment": "", + "comment": "Referendum Day.", + "messages": { + "en_GB": "Referendum Day", + "en_US": "Referendum Day" + }, + "countries": [ + "KY" + ] + }, + { + "id": "reformation_day", + "msgid": "Reformation Day", + "new_comment": "", + "comment": "Reformation Day.", + "messages": { + "de": "Reformationstag", + "en_US": "Reformation Day", + "sl": "dan reformacije", + "th": "วันแห่งการปฏิรูป", + "uk": "День Реформації" + }, + "countries": [ + "DE", + "SI", + "XETR" + ] + }, + { + "id": "regional_election_day", + "msgid": "Regional Election Day", + "new_comment": "", + "comment": "Regional Election Day.", + "messages": { + "en_NA": "Regional Election Day", + "en_US": "Regional Election Day", + "uk": "День місцевих виборів" + }, + "countries": [ + "NA" + ] + }, + { + "id": "remembrance_day", + "msgid": "Remembrance Day", + "new_comment": "", + "comment": "Remembrance Day.", + "messages": { + "ar": "يوم الذكرى", + "en_BM": "Remembrance Day", + "en_CA": "Remembrance Day", + "en_GB": "Remembrance Day", + "en_US": "Remembrance Day", + "fi": "Kaatuneitten muistopäivä", + "fr": "Jour du Souvenir", + "fr_BJ": "Journée de Souvenir", + "hr": "Dan sjećanja na žrtve Domovinskog rata i Dan sjećanja na žrtvu Vukovara i Škabrnje", + "sv_FI": "De stupades dag", + "th": "วันรำลึก", + "uk": { + "FI": "День ветеранів Національної війни", + "HR": "День памʼяті жертв Вітчизняної війни та жертв Вуковара і Шкабрні" + } + }, + "countries": [ + "BJ", + "BM", + "CA", + "FI", + "HR", + "KY" + ] + }, + { + "id": "renaissance_day", + "msgid": "Renaissance Day", + "new_comment": "", + "comment": "Renaissance Day.", + "messages": { + "ar": "يوم النهضة", + "en_US": "Renaissance Day" + }, + "countries": [ + "OM" + ] + }, + { + "id": "renovation_day", + "msgid": "Renovation Day", + "new_comment": "", + "comment": "Renovation Day.", + "messages": { + "en_US": "Renovation Day", + "fr": "Journée de la rénovation" + }, + "countries": [ + "GA" + ] + }, + { + "id": "repentance_and_prayer_day", + "msgid": "Repentance and Prayer Day", + "new_comment": "", + "comment": "Repentance and Prayer Day.", + "messages": { + "de": "Buß- und Bettag", + "en_US": "Repentance and Prayer Day", + "th": "วันแห่งการอธิษฐานและการกลับใจ", + "uk": "День молитви та покаяння" + }, + "countries": [ + "DE" + ] + }, + { + "id": "republic_constitution_day", + "msgid": "Republic Constitution Day", + "new_comment": "", + "comment": "Republic Constitution Day.", + "messages": { + "en_US": "Republic Constitution Day", + "pt_BR": "Constituição da República", + "uk": "День Конституції республіки" + }, + "countries": [ + "BR" + ] + }, + { + "id": "republic_day", + "msgid": "Republic Day", + "new_comment": "", + "comment": "Republic Day.", + "messages": { + "ar": "عيد الجمهورية", + "az": "Respublika Günü", + "bn": "প্রজাতন্ত্র দিবস", + "de": "Jahrestag der Ausrufung der Republik", + "dv": "ޖުމްހޫރީ ދުވަސް", + "en_GY": "Republic Day", + "en_IN": "Republic Day", + "en_MO": "Republic Day", + "en_TT": "Republic Day", + "en_US": "Republic Day", + "fr": { + "CG": "Jour de la République", + "CH": "Instauration de la République" + }, + "gu": "પ્રજાસત્તાક દિવસ", + "hi": "गणतंत्र दिवस", + "hy": "Հանրապետության օր", + "it": "Giorno della Repubblica", + "it_IT": "Festa della Repubblica", + "kk": "Республика күні", + "kn": { + "IN": "ಗಣರಾಜ್ಯೋತ್ಸವ", + "NP": "ಗಣರಾಜ್ಯ ದಿನ" + }, + "mg": "Fetin'ny Repoblika", + "mk": "Ден на Републиката", + "ml": "റിപ്പബ്ലിക് ദിനം", + "mn": "Бүгд Найрамдах Улс тунхагласан өдөр", + "mr": "प्रजासत्ताक दिन", + "mt": "Jum ir-Repubblika", + "ne": "गणतन्त्र दिवस", + "nl": "Dag van de Republiek", + "pa": "ਗਣਤੰਤਰ ਦਿਵਸ", + "pt_MO": "Implantação da República Portuguesa", + "pt_PT": "Implantação da República", + "ta": "குடியரசு நாள்", + "te": "గణతంత్ర దినోత్సవం", + "th": { + "CH": "วันครบรอบการสถาปนาสาธารณรัฐนอยชาแตล", + "IT": "วันสาธารณรัฐอิตาลี", + "MO": "วันสถาปนาสาธารณรัฐโปรตุเกส" + }, + "tr": "Cumhuriyet Bayramı", + "uk": { + "AZ": "День Республіки", + "CH": "Річниця проголошення Республіки", + "KZ": "День Республіки", + "MG": "День Республіки", + "MK": "День Республіки", + "PT": "День Республіки", + "TR": "День Республіки" + }, + "zh_CN": "葡萄牙共和国成立日", + "zh_MO": "葡萄牙共和國國慶日" + }, + "countries": [ + "AM", + "AZ", + "CG", + "CH", + "GY", + "IN", + "IT", + "KZ", + "MG", + "MK", + "MN", + "MO", + "MT", + "MV", + "NP", + "PT", + "SR", + "TN", + "TR", + "TT", + "XNSE" + ] + }, + { + "id": "republic_holiday", + "msgid": "Republic Holiday", + "new_comment": "", + "comment": "Republic Holiday.", + "messages": { + "en_US": "Republic Holiday", + "mn": "Бүгд Найрамдах Улс тунхагласны баяр" + }, + "countries": [ + "MN" + ] + }, + { + "id": "republic_of_korea_s_united_nations_recognition_celebrations", + "msgid": "Republic of Korea's United Nations Recognition Celebrations", + "new_comment": "", + "comment": "Republic of Korea's United Nations Recognition Celebrations.", + "messages": { + "en_US": "Republic of Korea's United Nations Recognition Celebrations", + "ko": "국제연합의 대한민국 정부 승인 경축 국민대회", + "th": "เฉลิมฉลองการยอมรับของรัฐบาลสาธารณรัฐเกาหลีโดยสหประชาชาติ" + }, + "countries": [ + "KR" + ] + }, + { + "id": "republic_of_latvia_proclamation_day", + "msgid": "Republic of Latvia Proclamation Day", + "new_comment": "", + "comment": "Republic of Latvia Proclamation Day.", + "messages": { + "en_US": "Republic of Latvia Proclamation Day", + "lv": "Latvijas Republikas Proklamēšanas diena", + "ru": "День провозглашения Латвийской Республики", + "uk": "День проголошення Латвійської Республіки" + }, + "countries": [ + "LV" + ] + }, + { + "id": "republic_of_moldova_independence_day", + "msgid": "Republic of Moldova Independence Day", + "new_comment": "", + "comment": "Republic of Moldova Independence Day.", + "messages": { + "en_US": "Republic of Moldova Independence Day", + "ro": "Ziua independenţei Republicii Moldova", + "uk": "День незалежності Республіки Молдова" + }, + "countries": [ + "MD" + ] + }, + { + "id": "republic_proclamation_day", + "msgid": "Republic Proclamation Day", + "new_comment": "", + "comment": "Republic Proclamation Day.", + "messages": { + "en_US": "Republic Proclamation Day", + "pt_BR": "Proclamação da República", + "uk": "День проголошення республіки" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "resistance_and_liberation_day", + "msgid": "Resistance and Liberation Day", + "new_comment": "", + "comment": "Resistance and Liberation Day.", + "messages": { + "ar": "عيد المقاومة والتحرير", + "en_US": "Resistance and Liberation Day", + "fr": "Résistance et Libération" + }, + "countries": [ + "LB" + ] + }, + { + "id": "respect_for_cultural_diversity_day", + "msgid": "Respect for Cultural Diversity Day", + "new_comment": "", + "comment": "Respect for Cultural Diversity Day.", + "messages": { + "en_US": "Respect for Cultural Diversity Day", + "es": "Día del Respeto a la Diversidad Cultural", + "uk": "День поваги до культурного різноманіття" + }, + "countries": [ + "AR" + ] + }, + { + "id": "respect_for_the_aged_day", + "msgid": "Respect for the Aged Day", + "new_comment": "", + "comment": "Respect for the Aged Day.", + "messages": { + "en_US": "Respect for the Aged Day", + "ja": "敬老の日", + "th": "วันเคารพผู้สูงอายุ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "restoration_day", + "msgid": "Restoration Day", + "new_comment": "", + "comment": "Restoration Day.", + "messages": { + "de": "Wiederherstellung der Republik", + "en_US": "Restoration Day", + "es": "Día de la Restauración", + "fr": "Restauration de la République", + "it": "Restaurazione della Repubblica", + "th": "วันกอบกู้เอกราชสาธารณรัฐเจนีวา", + "uk": { + "CH": "День відновлення республіки", + "DO": "День реставрації" + } + }, + "countries": [ + "CH", + "DO" + ] + }, + { + "id": "restoration_of_independence_day", + "msgid": "Restoration of Independence Day", + "new_comment": "", + "comment": "Restoration of Independence Day.", + "messages": { + "en_MO": "Restoration of Independence Day", + "en_TL": "Restoration of Independence Day", + "en_US": "Restoration of Independence Day", + "lv": "Latvijas Republikas Neatkarības atjaunošanas diena", + "pt_MO": "Restauração da Independência", + "pt_PT": "Restauração da Independência", + "pt_TL": "Dia da Restauração da Independência", + "ru": "День восстановления независимости Латвийской Республики", + "tet": "Loron Restaurasaun Independénsia nian", + "th": { + "MO": "วันรำลึกการกอบกู้เอกราชโปรตุเกส", + "TL": "วันรำลึกการกอบกู้เอกราชติมอร์-เลสเต" + }, + "uk": { + "LV": "День відновлення незалежности Латвійської Республіки", + "PT": "День відновлення незалежності" + }, + "zh_CN": "恢复独立纪念日", + "zh_MO": "恢復獨立紀念日" + }, + "countries": [ + "LV", + "MO", + "PT", + "TL" + ] + }, + { + "id": "return_of_general_john_j_pershing", + "msgid": "Return of General John J. Pershing", + "new_comment": "", + "comment": "Return of General John J. Pershing.", + "messages": { + "en_US": "Return of General John J. Pershing", + "gu": "જનરલ જોન જે. પર્શિંગનું પુનરાગમન", + "hi": "जनरल जॉन जे. पर्शिंग की वापसी" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "return_of_primorska_into_the_homeland", + "msgid": "Return of Primorska into the Homeland", + "new_comment": "", + "comment": "Return of Primorska into the Homeland.", + "messages": { + "en_US": "Return of Primorska into the Homeland", + "sl": "vrnitev Primorske k matični domovini", + "uk": "Повернення Словенського Приморʼя до батьківщини" + }, + "countries": [ + "SI" + ] + }, + { + "id": "revolution_and_armed_forces_day", + "msgid": "Revolution and Armed Forces Day", + "new_comment": "", + "comment": "Revolution and Armed Forces Day.", + "messages": { + "en_US": "Revolution and Armed Forces Day", + "fr": "Journée de la Révolution et des Forces Armées" + }, + "countries": [ + "CD" + ] + }, + { + "id": "revolution_and_youth_day_january_14", + "msgid": "Revolution and Youth Day", + "new_comment": "", + "comment": "Revolution and Youth Day - January 14", + "messages": { + "ar": "عيد الثورة والشباب", + "en_US": "Revolution and Youth Day" + }, + "countries": [ + "TN" + ] + }, + { + "id": "revolution_day", + "msgid": "Revolution Day", + "new_comment": "", + "comment": "Revolution Day.", + "messages": { + "ar": { + "DZ": "عيد الثورة", + "MA": "ذكرى ثورة الملك و الشعب", + "SY": "الثورة السورية", + "YE": "ثورة 26 سبتمبر المجيدة" + }, + "en_BF": "Revolution Day", + "en_US": "Revolution Day", + "es": "Día de la Revolución", + "fr": { + "BF": "Soulèvement populaire", + "DZ": "Fête de la Révolution", + "MA": "La révolution du roi et du peuple" + }, + "kab": "Ass n tegrawla", + "my": "တော်လှန်ရေးနေ့", + "th": "วันครบรอบการปฏิวัติ", + "uk": "День революції" + }, + "countries": [ + "BF", + "DZ", + "GT", + "MA", + "MM", + "MX", + "NI", + "SY", + "XMEX", + "YE" + ] + }, + { + "id": "revolutionary_martyrs_memorial_day", + "msgid": "Revolutionary Martyrs Memorial Day", + "new_comment": "", + "comment": "Revolutionary Martyrs Memorial Day.", + "messages": { + "en_US": "Revolutionary Martyrs Memorial Day", + "th": "วันสดุดีวีรชนแห่งการปฏิวัติ", + "zh_CN": "革命先烈纪念日", + "zh_TW": "革命先烈紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "ribeira_brava_municipality_day", + "msgid": "Ribeira Brava Municipality Day", + "new_comment": "", + "comment": "Ribeira Brava Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Ribeira Brava", + "en_US": "Ribeira Brava Municipality Day", + "es": "Día del Municipio de Ribeira Brava", + "fr": "Journée de la municipalité de Ribeira Brava", + "pt_CV": "Dia do Município de Ribeira Brava" + }, + "countries": [ + "CV" + ] + }, + { + "id": "ribeira_grande_de_santiago_municipality_day", + "msgid": "Ribeira Grande de Santiago Municipality Day", + "new_comment": "", + "comment": "Ribeira Grande de Santiago Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Ribeira Grande de Santiago", + "en_US": "Ribeira Grande de Santiago Municipality Day", + "es": "Día del Municipio de Ribeira Grande de Santiago", + "fr": "Journée de la municipalité de Ribeira Grande de Santiago", + "pt_CV": "Dia do Município de Ribeira Grande de Santiago" + }, + "countries": [ + "CV" + ] + }, + { + "id": "ribeira_grande_municipality_day", + "msgid": "Ribeira Grande Municipality Day", + "new_comment": "", + "comment": "Ribeira Grande Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Ribeira Grande", + "en_US": "Ribeira Grande Municipality Day", + "es": "Día del Municipio de Ribeira Grande", + "fr": "Journée de la municipalité de Ribeira Grande", + "pt_CV": "Dia do Município de Ribeira Grande" + }, + "countries": [ + "CV" + ] + }, + { + "id": "rincon_day", + "msgid": "Rincon Day", + "new_comment": "", + "comment": "Rincon Day.", + "messages": { + "en_BQ": "Rincon Day", + "en_US": "Rincon Day", + "nl": "Rincondag", + "pap_BQ": "Dia di Rincon" + }, + "countries": [ + "BQ" + ] + }, + { + "id": "rio_grande_do_norte_day", + "msgid": "Rio Grande do Norte Day", + "new_comment": "", + "comment": "Rio Grande do Norte Day.", + "messages": { + "en_US": "Rio Grande do Norte Day", + "pt_BR": "Dia do Rio Grande do Norte", + "uk": "День Ріо-Гранді-ду-Норті" + }, + "countries": [ + "BR" + ] + }, + { + "id": "rizal_day", + "msgid": "Rizal Day", + "new_comment": "", + "comment": "Rizal Day.", + "messages": { + "en_PH": "Rizal Day", + "en_US": "Rizal Day", + "fil": "Araw ng Kabayanihan ni Rizal", + "th": "วันรีซัล" + }, + "countries": [ + "PH" + ] + }, + { + "id": "robert_e_lee_s_birthday", + "msgid": "Robert E. Lee's Birthday", + "new_comment": "", + "comment": "Robert E. Lee's Birthday.", + "messages": { + "en_US": "Robert E. Lee's Birthday", + "th": "วันเกิดโรเบิร์ต อี. ลี" + }, + "countries": [ + "US" + ] + }, + { + "id": "ronphos_handover", + "msgid": "RONPHOS Handover", + "new_comment": "", + "comment": "RONPHOS Handover.", + "messages": { + "en_NR": "RONPHOS Handover", + "en_US": "RONPHOS Handover" + }, + "countries": [ + "NR" + ] + }, + { + "id": "rose_of_lima_day", + "msgid": "Rose of Lima Day", + "new_comment": "", + "comment": "Rose of Lima Day.", + "messages": { + "en_US": "Rose of Lima Day", + "es": "Santa Rosa de Lima", + "uk": "День Святої Рози Лімської" + }, + "countries": [ + "PE" + ] + }, + { + "id": "rosh_hashanah", + "msgid": "Rosh Hashanah", + "new_comment": "", + "comment": "Rosh Hashanah.", + "messages": { + "ar": "رأس السنة العبرية", + "en_US": "Rosh Hashanah", + "es": "Año Nuevo Judío (Rosh Hashana)", + "fr": "Roch Achana", + "kab": "Ixef n useggas n udayen", + "uk": "Рош га-Шана" + }, + "countries": [ + "AR", + "DZ" + ] + }, + { + "id": "rosh_hashanah_new_year", + "msgid": "Rosh Hashanah", + "new_comment": "", + "comment": "Rosh Hashanah (New Year).", + "messages": { + "en_US": "Rosh Hashanah", + "he": "ראש השנה", + "th": "เทศกาลรอช ฮาชานาห์ (วันปีใหม่ยิว)", + "uk": "Рош га-Шана" + }, + "countries": [ + "IL" + ] + }, + { + "id": "royal_ploughing_ceremony", + "msgid": "Royal Ploughing Ceremony", + "new_comment": "", + "comment": "Royal Ploughing Ceremony.", + "messages": { + "en_US": "Royal Ploughing Ceremony", + "km": "ព្រះរាជពិធីច្រត់ព្រះនង្គ័ល", + "th": { + "KH": "พระราชพิธีบุญจรดพระนังคัลแรกนาขวัญ", + "TH": "วันพืชมงคล" + }, + "uk": "Церемонія королівської оранки" + }, + "countries": [ + "KH", + "TH" + ] + }, + { + "id": "royal_thai_armed_forces_day", + "msgid": "Royal Thai Armed Forces Day", + "new_comment": "", + "comment": "Royal Thai Armed Forces Day.", + "messages": { + "en_US": "Royal Thai Armed Forces Day", + "th": "วันกองทัพไทย", + "uk": "День Королівських збройних сил Таїланду" + }, + "countries": [ + "TH" + ] + }, + { + "id": "royal_wedding_of_crown_prince_al_muhtadee_billah_and_crown_princess_sarah_of_brunei", + "msgid": "Royal Wedding of Crown Prince Al-Muhtadee Billah and Crown Princess Sarah of Brunei", + "new_comment": "", + "comment": "Royal Wedding of Crown Prince Al-Muhtadee Billah and Crown Princess Sarah of Brunei.", + "messages": { + "en_US": "Royal Wedding of Crown Prince Al-Muhtadee Billah and Crown Princess Sarah of Brunei", + "ms": "Istiadat Perkahwinan Diraja Brunei 2004", + "th": "พระราชพิธีอภิเษกสมรส เจ้าฟ้าชายฮัจญี อัล-มุห์ตาดี บิลลาห์ มกุฎราชกุมารแห่งบรูไน และเจ้าหญิงซาราห์ พระวรชายา" + }, + "countries": [ + "BN" + ] + }, + { + "id": "royal_wedding_of_prince_william_kate_middleton", + "msgid": "Royal Wedding of Prince William & Kate Middleton", + "new_comment": "", + "comment": "Royal Wedding of Prince William & Kate Middleton.", + "messages": { + "en_AI": "Royal Wedding of Prince William & Kate Middleton", + "en_US": "Royal Wedding of Prince William & Kate Middleton" + }, + "countries": [ + "AI" + ] + }, + { + "id": "rudolf_maister_day", + "msgid": "Rudolf Maister Day", + "new_comment": "", + "comment": "Rudolf Maister Day.", + "messages": { + "en_US": "Rudolf Maister Day", + "sl": "dan Rudolfa Maistra", + "uk": "День Рудольфа Майстера" + }, + "countries": [ + "SI" + ] + }, + { + "id": "runeberg_day", + "msgid": "Runeberg Day", + "new_comment": "", + "comment": "Runeberg Day.", + "messages": { + "en_US": "Runeberg Day", + "fi": "Runebergin päivä", + "sv_FI": "Runebergsdagen", + "th": "วันรูนแบร์ก", + "uk": "День Рунеберга" + }, + "countries": [ + "FI" + ] + }, + { + "id": "russia_day", + "msgid": "Russia Day", + "new_comment": "", + "comment": "Russia Day.", + "messages": { + "en_US": "Russia Day", + "ru": "День России", + "th": "วันชาติรัสเซีย", + "zh_CN": "俄罗斯日" + }, + "countries": [ + "RU" + ] + }, + { + "id": "s_adjusted_holiday", + "msgid": "%s (Adjusted Holiday)", + "new_comment": "", + "comment": "%s (Adjusted Holiday).", + "messages": { + "en_US": "%s (Adjusted Holiday)", + "th": "ชดเชย%s", + "zh_CN": "%s(补假)", + "zh_TW": "%s(調整放假)" + }, + "countries": [ + "XTAI" + ] + }, + { + "id": "s_adjusted_holiday_estimated", + "msgid": "%s (Adjusted Holiday, estimated)", + "new_comment": "", + "comment": "%s (Adjusted Holiday, estimated).", + "messages": { + "en_US": "%s (Adjusted Holiday, estimated)", + "th": "ชดเชย%s (โดยประมาณ)", + "zh_CN": "%s(补假,推定)", + "zh_TW": "%s(調整放假,推定)" + }, + "countries": [ + "XTAI" + ] + }, + { + "id": "s_afternoon", + "msgid": "%s (Afternoon)", + "new_comment": "", + "comment": "%s (Afternoon).", + "messages": { + "en_MO": "%s (Afternoon)", + "en_US": "%s (Afternoon)", + "pt_MO": "%s (na parte da tarde)", + "th": "%s (ครึ่งบ่าย)", + "zh_CN": "%s(下午)", + "zh_MO": "%s(下午)" + }, + "countries": [ + "MO" + ] + }, + { + "id": "s_estimated", + "msgid": "%s (estimated)", + "new_comment": "", + "comment": "%s (estimated).", + "messages": { + "am": "%s (ግምት)", + "ar": { + "AE": "%s (تقديري)", + "BD": "%s (المقدرة)", + "BH": "%s (تقديري)", + "DJ": "%s (تقديري)", + "DZ": "%s (تقديري)", + "EH": "%s (تقديري)", + "ET": "%s (تقديري)", + "IQ": "%s (تقديري)", + "JO": "%s (تقديري)", + "KW": "%s (تقديري)", + "LB": "%s (تقديري)", + "LY": "%s (تقديري)", + "MA": "%s (تقديري)", + "MR": "%s (تقديري)", + "OM": "%s (تقديري)", + "PS": "%s (تقديري)", + "SA": "%s (تقديري)", + "SY": "%s (تقديري)", + "TN": "%s (تقديري)", + "YE": "%s (تقديري)" + }, + "ar_EG": "%s (تقديري)", + "ar_QA": "%s (تقديري)", + "ar_SD": "%s (تقديري)", + "az": "%s (təxmini)", + "bn": "%s (আনুমানিক)", + "bs": "%s (procijenjeno)", + "ca": "%s (estimat)", + "cnr": "%s (procijenjeno)", + "coa_CC": "%s (dianggarkan)", + "dv": "%s (އަންދާޒާކުރި)", + "dz": "%s (ཚོད་དཔག་གི།)", + "en_BD": "%s (estimated)", + "en_BF": "%s (estimated)", + "en_CC": "%s (estimated)", + "en_CI": "%s (estimated)", + "en_CX": "%s (estimated)", + "en_ET": "%s (estimated)", + "en_GM": "%s (estimated)", + "en_GY": "%s (estimated)", + "en_HK": "%s (estimated)", + "en_IN": "%s (estimated)", + "en_KE": "%s (estimated)", + "en_MO": "%s (estimated)", + "en_MU": "%s (estimated)", + "en_NG": "%s (estimated)", + "en_PH": "%s (estimated)", + "en_PK": "%s (estimated)", + "en_SG": "%s (estimated)", + "en_SL": "%s (estimated)", + "en_TL": "%s (estimated)", + "en_TT": "%s (estimated)", + "en_US": "%s (estimated)", + "es": "%s (estimado)", + "fa_AF": "%s (برآورد شده)", + "fa_IR": "%s (تخمینی)", + "fil": "%s (tinatayang)", + "fr": "%s (estimé)", + "fr_BI": "%s (estimé)", + "fr_BJ": "%s (estimé)", + "fr_NE": "%s (estimé)", + "fr_SN": "%s (estimé)", + "gu": "%s (અંદાજિત)", + "hi": "%s (अनुमानित)", + "id": "%s (perkiraan)", + "kab": "%s (s useqreb)", + "kk": "%s (бағаланған)", + "kn": "%s (ಅಂದಾಜು)", + "ko": "%s (추정)", + "ko_KP": "%s (추정된)", + "ky": "%s (болжолдуу)", + "mk": "%s (проценето)", + "ml": "%s (അനുമാനം)", + "mn": "%s (урьдчилсан)", + "mr": "%s (अंदाजे)", + "ms": "%s (anggaran)", + "ms_MY": "%s (anggaran)", + "my": "%s (ခန့်မှန်း)", + "ne": "%s (अनुमानित)", + "nl": "%s (geschat)", + "pa": "%s (ਅਨੁਮਾਨਿਤ)", + "ps_AF": "%s (اټکل)", + "pt_GW": "%s (prevista)", + "pt_MO": "%s (estimado)", + "pt_TL": "%s (aproximada)", + "ru": "%s (приблизительная дата)", + "ru_KG": "%s (приблизительная дата)", + "rw": "%s (yagereranijwe)", + "si_LK": "%s (අනුමානිත)", + "sq": "%s (e vlerësuar)", + "sr": { + "BA": "%s (процењено)", + "XK": "%s (procenjeno)" + }, + "sw": { + "KE": "%s (inakadiriwa)", + "TZ": "%s (makisio)" + }, + "ta": "%s (மதிப்பிடப்பட்டது)", + "ta_LK": "%s (அனுமானம்)", + "te": "%s (అంచనా)", + "tet": "%s (kalkula)", + "tg": "%s (таҳминан)", + "th": "%s (โดยประมาณ)", + "tk": "%s (çak edilýär)", + "tr": "%s (tahmini)", + "uk": "%s (приблизна дата)", + "ur_PK": "%s (اندازاً)", + "uz": "%s (taxminiy)", + "vi": "%s (dự kiến)", + "zh_CN": "%s(推定)", + "zh_HK": "%s(推定)", + "zh_MO": "%s(推定)", + "zh_TW": "%s(推定)" + }, + "countries": [ + "AE", + "AF", + "AL", + "AR", + "AZ", + "BA", + "BD", + "BF", + "BH", + "BI", + "BJ", + "BN", + "BT", + "CC", + "CF", + "CI", + "CN", + "CX", + "DJ", + "DZ", + "EG", + "EH", + "ES", + "ET", + "GA", + "GM", + "GN", + "GW", + "GY", + "HK", + "ID", + "IN", + "IQ", + "IR", + "JO", + "KE", + "KG", + "KP", + "KR", + "KW", + "KZ", + "LB", + "LK", + "LY", + "MA", + "ME", + "MK", + "ML", + "MM", + "MN", + "MO", + "MR", + "MU", + "MV", + "MY", + "NE", + "NG", + "NP", + "OM", + "PH", + "PK", + "PS", + "QA", + "RW", + "SA", + "SD", + "SG", + "SL", + "SN", + "SR", + "SY", + "TG", + "TJ", + "TL", + "TM", + "TN", + "TR", + "TT", + "TW", + "TZ", + "US", + "UZ", + "VN", + "XK", + "XNSE", + "YE" + ] + }, + { + "id": "s_from_12pm", + "msgid": "%s (from 12pm)", + "new_comment": "", + "comment": "%s (from 12pm).", + "messages": { + "en_US": "%s (from 12pm)", + "th": "%s (ตั้งแต่ 12:00 น.)" + }, + "countries": [ + "US" + ] + }, + { + "id": "s_from_1pm", + "msgid": "%s (from 1pm)", + "new_comment": "", + "comment": "%s (from 1pm).", + "messages": { + "ca": "%s (a partir de les 13h)", + "en_US": "%s (from 1pm)", + "is": "%s (frá kl. 13.00)", + "tr": "%s (saat 13.00'ten)", + "uk": "%s (з 13:00)" + }, + "countries": [ + "AD", + "IS", + "TR" + ] + }, + { + "id": "s_from_2pm", + "msgid": "%s (from 2pm)", + "new_comment": "", + "comment": "%s (from 2pm).", + "messages": { + "bg": "%s (след 14 ч.)", + "en_US": "%s (from 2pm)", + "sv": "%s (från kl. 14.00)", + "th": "%s (ตั้งแต่ 14:00 น.)", + "uk": "%s (з 14:00)" + }, + "countries": [ + "BG", + "SE" + ] + }, + { + "id": "s_from_6pm", + "msgid": "%s (from 6pm)", + "new_comment": "", + "comment": "%s (from 6pm).", + "messages": { + "en_AU": "%s (from 6pm)", + "en_US": "%s (from 6pm)", + "th": "%s (ตั้งแต่ 18:00 น.)" + }, + "countries": [ + "AU" + ] + }, + { + "id": "s_from_7pm", + "msgid": "%s (from 7pm)", + "new_comment": "", + "comment": "%s (from 7pm).", + "messages": { + "en_AU": "%s (from 7pm)", + "en_US": "%s (from 7pm)", + "th": "%s (ตั้งแต่ 19:00 น.)" + }, + "countries": [ + "AU" + ] + }, + { + "id": "s_half_day_closing", + "msgid": "%s (half-day closing)", + "new_comment": "", + "comment": "%s (half-day closing).", + "messages": { + "en_US": "%s (half-day closing)", + "th": "%s (ปิดครึ่งวัน)" + }, + "countries": [ + "US" + ] + }, + { + "id": "s_half_day_trading_day", + "msgid": "%s (Half-Day Trading Day)", + "new_comment": "", + "comment": "%s (Half-Day Trading Day).", + "messages": { + "en_HK": "%s (Half-Day Trading Day)", + "en_US": "%s (Half-Day Trading Day)", + "th": "%s (วันซื้อขายครึ่งวัน)", + "zh_CN": "%s(半日交易日)", + "zh_HK": "%s(半日交易日)" + }, + "countries": [ + "XHKG" + ] + }, + { + "id": "s_in_lieu", + "msgid": "%s (in lieu)", + "new_comment": "", + "comment": "%s (in lieu).", + "messages": { + "en_US": { + "LA": "%s (in lieu)", + "MY": "%s (observed)", + "TH": "%s (in lieu)" + }, + "lo": "ພັກຊົດເຊີຍ%s", + "ms_MY": "Cuti %s", + "th": "ชดเชย%s", + "uk": "%s (вихідний)" + }, + "countries": [ + "LA", + "MY", + "TH" + ] + }, + { + "id": "s_markets_close_at_11_00am", + "msgid": "%s (markets close at 11:00am)", + "new_comment": "", + "comment": "%s (markets close at 11:00am).", + "messages": { + "en_US": "%s (markets close at 11:00am)", + "gu": "%s (બજારો સવારે 11:00 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार सुबह 11:00 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_close_at_12_00_p_m_sgt", + "msgid": "%s (markets close at 12:00 p.m. SGT)", + "new_comment": "", + "comment": "%s (markets close at 12:00 p.m. SGT).", + "messages": { + "en_SG": "%s (markets close at 12:00 p.m. SGT)", + "en_US": "%s (markets close at 12:00 p.m. SGT)", + "th": "%s (ตลาดปิดเวลา 12:00 น. SGT)" + }, + "countries": [ + "XSES" + ] + }, + { + "id": "s_markets_close_at_12_00pm", + "msgid": "%s (markets close at 12:00pm)", + "new_comment": "", + "comment": "%s (markets close at 12:00pm).", + "messages": { + "en_US": "%s (markets close at 12:00pm)", + "gu": "%s (બજારો બપોરે 12:00 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 12:00 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_close_at_12_30pm", + "msgid": "%s (markets close at 12:30pm)", + "new_comment": "", + "comment": "%s (markets close at 12:30pm).", + "messages": { + "en_GB": "%s (markets close at 12:30pm)", + "en_US": "%s (markets close at 12:30pm)", + "gu": "%s (બજારો બપોરે 12:30 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 12:30 बजे बंद होते हैं)", + "th": "%s (ตลาดปิดเวลา 12:30 น.)" + }, + "countries": [ + "XLON", + "XNYS" + ] + }, + { + "id": "s_markets_close_at_14_00_cet", + "msgid": "%s (markets close at 14:00 CET)", + "new_comment": "", + "comment": "%s (markets close at 14:00 CET).", + "messages": { + "en_US": "%s (markets close at 14:00 CET)", + "es": "%s (los mercados cierran a las 14:00 CET)" + }, + "countries": [ + "XMAD" + ] + }, + { + "id": "s_markets_close_at_1_00_p_m_et", + "msgid": "%s (markets close at 1:00 p.m. ET)", + "new_comment": "", + "comment": "%s (markets close at 1:00 p.m. ET).", + "messages": { + "ar": "%s (تغلق الأسواق في الساعة 1:00 مساءً بالتوقيت الشرقي)", + "en_CA": "%s (markets close at 1:00 p.m. ET)", + "en_US": "%s (markets close at 1:00 p.m. ET)", + "fr": "%s (fermeture des marchés à 13h00 HE)", + "th": "%s (ตลาดปิดเวลา 13:00 น. ตามเวลา ET)" + }, + "countries": [ + "XTSE" + ] + }, + { + "id": "s_markets_close_at_1_00pm", + "msgid": "%s (markets close at 1:00pm)", + "new_comment": "", + "comment": "%s (markets close at 1:00pm).", + "messages": { + "en_US": "%s (markets close at 1:00pm)", + "gu": "%s (બજારો બપોરે 1:00 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 1:00 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_close_at_2_00pm", + "msgid": "%s (markets close at 2:00pm)", + "new_comment": "", + "comment": "%s (markets close at 2:00pm).", + "messages": { + "en_US": "%s (markets close at 2:00pm)", + "gu": "%s (બજારો બપોરે 2:00 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 2:00 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_close_at_2_30pm", + "msgid": "%s (markets close at 2:30pm)", + "new_comment": "", + "comment": "%s (markets close at 2:30pm).", + "messages": { + "en_US": "%s (markets close at 2:30pm)", + "gu": "%s (બજારો બપોરે 2:30 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 2:30 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_close_at_3_00pm", + "msgid": "%s (markets close at 3:00pm)", + "new_comment": "", + "comment": "%s (markets close at 3:00pm).", + "messages": { + "en_US": "%s (markets close at 3:00pm)", + "es": "%s (el mercado cierra a las 15:00)", + "gu": "%s (બજારો બપોરે 3:00 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 3:00 बजे बंद होते हैं)" + }, + "countries": [ + "XBUE", + "XNYS" + ] + }, + { + "id": "s_markets_close_at_3_30pm", + "msgid": "%s (markets close at 3:30pm)", + "new_comment": "", + "comment": "%s (markets close at 3:30pm).", + "messages": { + "en_US": "%s (markets close at 3:30pm)", + "gu": "%s (બજારો બપોરે 3:30 વાગ્યે બંધ થાય છે)", + "hi": "%s (बाज़ार दोपहर 3:30 बजे बंद होते हैं)" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "s_markets_pause_at_10_30am_ct", + "msgid": "%s (markets pause at 10:30am CT)", + "new_comment": "", + "comment": "%s (markets pause at 10:30am CT)", + "messages": { + "en_US": "%s (markets pause at 10:30am CT)", + "gu": "%s (બજારો સવારે 10:30 વાગ્યે CT સમયે થોભે છે)", + "hi": "%s (बाज़ार सुबह 10:30 बजे CT पर रुकते हैं)" + }, + "countries": [ + "XCME" + ] + }, + { + "id": "s_markets_pause_at_12_00pm_ct", + "msgid": "%s (markets pause at 12:00pm CT)", + "new_comment": "", + "comment": "%s (markets pause at 12:00pm CT)", + "messages": { + "en_US": "%s (markets pause at 12:00pm CT)", + "gu": "%s (બજારો બપોરે 12:00 વાગ્યે CT સમયે થોભે છે)", + "hi": "%s (बाज़ार दोपहर 12:00 बजे CT पर रुकते हैं)" + }, + "countries": [ + "XCME" + ] + }, + { + "id": "s_o_domingos_municipality_day", + "msgid": "São Domingos Municipality Day", + "new_comment": "", + "comment": "São Domingos Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Domingos", + "en_US": "São Domingos Municipality Day", + "es": "Día del Municipio de São Domingos", + "fr": "Journée de la municipalité de São Domingos", + "pt_CV": "Dia do Município de São Domingos" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_o_filipe_municipality_day", + "msgid": "São Filipe Municipality Day", + "new_comment": "", + "comment": "São Filipe Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Filipe", + "en_US": "São Filipe Municipality Day", + "es": "Día del Municipio de São Filipe", + "fr": "Journée de la municipalité de São Filipe", + "pt_CV": "Dia do Município de São Filipe" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_o_louren_o_day", + "msgid": "São Lourenço Day", + "new_comment": "", + "comment": "São Lourenço Day.", + "messages": { + "en_US": "São Lourenço Day", + "pt_ST": "Dia de São Lourenço" + }, + "countries": [ + "ST" + ] + }, + { + "id": "s_o_louren_o_dos_rg_os_municipality_day", + "msgid": "São Lourenço dos Órgãos Municipality Day", + "new_comment": "", + "comment": "São Lourenço dos Órgãos Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Lourenço dos Órgãos", + "en_US": "São Lourenço dos Órgãos Municipality Day", + "es": "Día del Municipio de São Lourenço dos Órgãos", + "fr": "Journée de la municipalité de São Lourenço dos Órgãos", + "pt_CV": "Dia do Município de São Lourenço dos Órgãos" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_o_miguel_municipality_day", + "msgid": "São Miguel Municipality Day", + "new_comment": "", + "comment": "São Miguel Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Miguel", + "en_US": "São Miguel Municipality Day", + "es": "Día del Municipio de São Miguel", + "fr": "Journée de la municipalité de São Miguel", + "pt_CV": "Dia do Município de São Miguel" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_o_paulo_city_anniversary", + "msgid": "São Paulo City Anniversary", + "new_comment": "", + "comment": "São Paulo City Anniversary.", + "messages": { + "en_US": "São Paulo City Anniversary", + "pt_BR": "Aniversário da Cidade de São Paulo", + "uk": "Річниця міста Сан-Паулу" + }, + "countries": [ + "BR" + ] + }, + { + "id": "s_o_salvador_do_mundo_municipality_day", + "msgid": "São Salvador do Mundo Municipality Day", + "new_comment": "", + "comment": "São Salvador do Mundo Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Salvador do Mundo", + "en_US": "São Salvador do Mundo Municipality Day", + "es": "Día del Municipio de São Salvador do Mundo", + "fr": "Journée de la municipalité de São Salvador do Mundo", + "pt_CV": "Dia do Município de São Salvador do Mundo" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_o_tom_day", + "msgid": "São Tomé Day", + "new_comment": "", + "comment": "São Tomé Day.", + "messages": { + "en_US": "São Tomé Day", + "pt_ST": "Dia de São Tomé" + }, + "countries": [ + "ST" + ] + }, + { + "id": "s_o_vicente_municipality_day", + "msgid": "São Vicente Municipality Day", + "new_comment": "", + "comment": "São Vicente Municipality Day.", + "messages": { + "de": "Tag der Gemeinde São Vicente", + "en_US": "São Vicente Municipality Day", + "es": "Día del Municipio de São Vicente", + "fr": "Journée de la municipalité de São Vicente", + "pt_CV": "Dia do Município de São Vicente" + }, + "countries": [ + "CV" + ] + }, + { + "id": "s_observed", + "msgid": "%s (observed)", + "new_comment": "", + "comment": "%s (observed).", + "messages": { + "ar": "%s (يوم تعويضي)", + "ar_EG": "%s (يوم تعويضي)", + "az": "%s (müşahidə olunur)", + "bg": "%s (почивен ден)", + "bn": "%s (পালিত)", + "bs": "%s (slobodan dan)", + "cnr": "%s (neradni dan)", + "coa_CC": "%s (disambut)", + "el": "%s (παρατηρήθηκε)", + "en_AI": "%s (observed)", + "en_AU": "%s (observed)", + "en_BF": "%s (observed)", + "en_BM": "%s (observed)", + "en_CA": "%s (observed)", + "en_CC": "%s (observed)", + "en_CK": "%s (observed)", + "en_CX": "%s (observed)", + "en_FM": "%s (observed)", + "en_GB": "%s (observed)", + "en_GD": "%s (observed)", + "en_GM": "%s (observed)", + "en_GS": "%s (observed)", + "en_GY": "%s (observed)", + "en_HK": "%s (observed)", + "en_KE": "%s (observed)", + "en_LC": "%s (observed)", + "en_NA": "%s (observed)", + "en_NF": "%s (observed)", + "en_NG": "%s (observed)", + "en_NR": "%s (observed)", + "en_NU": "%s (observed)", + "en_SC": "%s (observed)", + "en_SG": "%s (observed)", + "en_SL": "%s (observed)", + "en_TT": "%s (observed)", + "en_US": { + "AI": "%s (observed)", + "AL": "%s (observed)", + "AO": "Day off for %s", + "AR": "%s (observed)", + "AU": "%s (observed)", + "AZ": "%s (observed)", + "BA": "%s (observed)", + "BF": "%s (observed)", + "BG": "%s (observed)", + "BI": "%s (observed)", + "BM": "%s (observed)", + "BN": "%s (observed)", + "BO": "%s (observed)", + "CA": "%s (observed)", + "CC": "%s (observed)", + "CD": "%s (observed)", + "CK": "%s (observed)", + "CN": "%s (observed)", + "CO": "%s (observed)", + "CR": "%s (observed)", + "CU": "%s (observed)", + "CX": "%s (observed)", + "EC": "%s (observed)", + "EG": "%s (observed)", + "FK": "%s (observed)", + "FM": "%s (observed)", + "GB": "%s (observed)", + "GD": "%s (observed)", + "GI": "%s (observed)", + "GM": "%s (observed)", + "GQ": "%s (observed)", + "GR": "%s (observed)", + "GS": "%s (observed)", + "GY": "%s (observed)", + "HK": "%s (observed)", + "ID": "%s (observed)", + "IL": "%s (observed)", + "KE": "%s (observed)", + "KG": "%s (observed)", + "KY": "%s (observed)", + "KZ": "%s (observed)", + "LB": "%s (observed)", + "LC": "%s (observed)", + "LV": "%s (observed)", + "MC": "%s (observed)", + "ME": "%s (observed)", + "MK": "%s (observed)", + "MZ": "%s (observed)", + "NA": "%s (observed)", + "NE": "%s (observed)", + "NF": "%s (observed)", + "NG": "%s (observed)", + "NR": "%s (observed)", + "NU": "%s (observed)", + "PA": "%s (observed)", + "RS": "%s (observed)", + "RU": "%s (observed)", + "RW": "%s (observed)", + "SA": "%s (observed)", + "SC": "%s (observed)", + "SG": "%s (observed)", + "SH": "%s (observed)", + "SL": "%s (observed)", + "SN": "%s (observed)", + "ST": "%s (observed)", + "TM": "%s (observed)", + "TO": "%s (observed)", + "TT": "%s (observed)", + "TV": "%s (observed)", + "TW": "%s (observed)", + "TZ": "%s (observed)", + "UA": "%s (observed)", + "US": "%s (observed)", + "UZ": "%s (observed)", + "VC": "%s (observed)", + "VG": "%s (observed)", + "VN": "%s (observed)", + "XK": "%s (observed)", + "XNYS": "%s (observed)", + "YE": "%s (observed)" + }, + "en_VC": "%s (observed)", + "en_VG": "%s (observed)", + "es": { + "AR": "%s (observado)", + "BO": "%s (observado)", + "CO": "%s (observado)", + "CR": "%s (observado)", + "CU": "%s (observado)", + "EC": "%s (observado)", + "GQ": "%s (observado)", + "PA": "%s (puente)" + }, + "fr": "%s (observé)", + "fr_BI": "%s (observé)", + "fr_MC": "%s (reporté)", + "fr_NE": "%s (observé)", + "fr_SN": "%s (observé)", + "gu": "%s (મનાવવામાં આવે છે)", + "he": "%s (נצפה)", + "hi": "%s (मनाया गया)", + "id": "Pegangti %s", + "kk": "%s (қайта белгіленген демалыс)", + "ky": "%s (көрүлгөн күнү)", + "lv": "%s (brīvdiena)", + "mk": "%s (неработен ден)", + "ms": "%s (diperhatikan)", + "pt_AO": "%s (ponte)", + "pt_MZ": "%s (ponte)", + "pt_ST": "%s (observado)", + "ru": "%s (выходной)", + "ru_KG": "%s (выходной)", + "rw": "%s (yizihijwe)", + "sq": "%s (ditë pushimi e shtyrë)", + "sr": { + "BA": "%s (слободан дан)", + "RS": "%s (слободан дан)", + "XK": "%s (slobodan dan)" + }, + "sw": { + "KE": "%s (imezingatiwa)", + "TZ": "Badala ya %s" + }, + "th": "ชดเชย%s", + "tk": "%s (dynç güni)", + "to": "%s (fakatokangaʻi)", + "tvl": "%s (fakamatakuga)", + "uk": "%s (вихідний)", + "uz": "%s (koʻchirilgan)", + "vi": "%s (nghỉ bù)", + "zh_CN": "%s(补假)", + "zh_HK": "%s(補假)", + "zh_TW": "%s(補假)" + }, + "countries": [ + "AI", + "AL", + "AO", + "AR", + "AU", + "AZ", + "BA", + "BF", + "BG", + "BI", + "BM", + "BN", + "BO", + "CA", + "CC", + "CD", + "CK", + "CN", + "CO", + "CR", + "CU", + "CX", + "EC", + "EG", + "FK", + "FM", + "GB", + "GD", + "GI", + "GM", + "GQ", + "GR", + "GS", + "GY", + "HK", + "ID", + "IL", + "KE", + "KG", + "KY", + "KZ", + "LB", + "LC", + "LV", + "MC", + "ME", + "MK", + "MZ", + "NA", + "NE", + "NF", + "NG", + "NR", + "NU", + "PA", + "RS", + "RU", + "RW", + "SA", + "SC", + "SG", + "SH", + "SL", + "SN", + "ST", + "TM", + "TO", + "TT", + "TV", + "TW", + "TZ", + "UA", + "US", + "UZ", + "VC", + "VG", + "VN", + "XK", + "XNYS", + "YE" + ] + }, + { + "id": "s_observed_estimated", + "msgid": "%s (observed, estimated)", + "new_comment": "", + "comment": "%s (observed, estimated).", + "messages": { + "ar": "%s (يوم تعويضي تقديري)", + "bn": "%s (পালিত, আনুমানিক)", + "en_HK": "%s (observed, estimated)", + "en_SG": "%s (observed, estimated)", + "en_US": "%s (observed, estimated)", + "es": "%s (observado, estimado)", + "fr": "%s (observé, estimé)", + "ru": "%s (выходной, приблизительная дата)", + "th": "ชดเชย%s (โดยประมาณ)", + "tk": "%s (dynç güni, çak edilýär)", + "uk": "%s (вихідний, приблизна дата)", + "zh_CN": "%s(补假,推定)", + "zh_HK": "%s(補假,推定)", + "zh_TW": "%s(補假,推定)" + }, + "countries": [ + "TM" + ] + }, + { + "id": "s_observed_estimated_2", + "msgid": "%s (observed, estimated)", + "new_comment": "", + "comment": "%s (observed, estimated).", + "messages": { + "ar": "%s (يوم تعويضي تقديري)", + "ar_EG": "%s (يوم تعويضي تقديري)", + "az": "%s (müşahidə olunur, təxmini)", + "bn": "%s (পালিত, আনুমানিক)", + "bs": "%s (slobodan dan, procijenjeno)", + "cnr": "%s (neradni dan, procijenjeno)", + "coa_CC": "%s (disambut, dianggarkan)", + "en_BF": "%s (observed, estimated)", + "en_CC": "%s (observed, estimated)", + "en_CX": "%s (observed, estimated)", + "en_GM": "%s (observed, estimated)", + "en_GY": "%s (observed, estimated)", + "en_HK": "%s (observed, estimated)", + "en_KE": "%s (observed, estimated)", + "en_NG": "%s (observed, estimated)", + "en_SG": "%s (observed, estimated)", + "en_SL": "%s (observed, estimated)", + "en_TT": "%s (observed, estimated)", + "en_US": "%s (observed, estimated)", + "es": "%s (observado, estimado)", + "fr": "%s (observé, estimé)", + "fr_BI": "%s (observé, estimé)", + "fr_NE": "%s (observé, estimé)", + "fr_SN": "%s (observé, estimé)", + "id": "Pegangti %s (perkiraan)", + "kk": "%s (қайта белгіленген демалыс, бағаланған)", + "ky": "%s (көрүлгөн күнү, болжолдуу)", + "mk": "%s (неработен ден, проценето)", + "ms": "%s (diperhatikan, anggaran)", + "ms_MY": "Cuti %s (anggaran)", + "ru_KG": "%s (выходной, приблизительная дата)", + "rw": "%s (yizihijwe, yagereranijwe)", + "sq": "%s (ditë pushimi e shtyrë, e vlerësuar)", + "sr": { + "BA": "%s (слободан дан, процењено)", + "XK": "%s (slobodan dan, procenjeno)" + }, + "sw": { + "KE": "%s (inazingatiwa, inakadiriwa)", + "TZ": "Badala ya %s (makisio)" + }, + "th": "ชดเชย%s (โดยประมาณ)", + "uk": "%s (вихідний, приблизна дата)", + "uz": "%s (koʻchirilgan, taxminiy)", + "vi": "%s (nghỉ bù, dự kiến)", + "zh_CN": "%s(补假,推定)", + "zh_HK": "%s(補假,推定)", + "zh_TW": "%s(補假,推定)" + }, + "countries": [ + "AL", + "AR", + "AZ", + "BA", + "BF", + "BI", + "BN", + "CC", + "CN", + "CX", + "EG", + "GM", + "GY", + "HK", + "ID", + "KE", + "KG", + "KZ", + "LB", + "ME", + "MK", + "MY", + "NE", + "NG", + "RW", + "SA", + "SG", + "SL", + "SN", + "TT", + "TW", + "TZ", + "US", + "UZ", + "VN", + "XK", + "YE" + ] + }, + { + "id": "saba_day", + "msgid": "Saba Day", + "new_comment": "", + "comment": "Saba Day.", + "messages": { + "en_BQ": "Saba Day", + "en_US": "Saba Day", + "nl": "Sabadag", + "pap_BQ": "Dia di Saba" + }, + "countries": [ + "BQ" + ] + }, + { + "id": "saba_saba_day", + "msgid": "Saba Saba Day", + "new_comment": "", + "comment": "Saba Saba Day.", + "messages": { + "en_US": "Saba Saba Day", + "sw": "Saba Saba" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "sabang_day", + "msgid": "Sabang Day", + "new_comment": "", + "comment": "Sabang Day.", + "messages": { + "en_US": "Sabang Day", + "ko": "사방의 날", + "th": "วันซาบัง" + }, + "countries": [ + "KR" + ] + }, + { + "id": "sacred_heart", + "msgid": "Sacred Heart", + "new_comment": "", + "comment": "Sacred Heart.", + "messages": { + "en_US": "Sacred Heart", + "es": "Sagrado Corazón", + "uk": "Свято Найсвятішого Серця Ісуса" + }, + "countries": [ + "CO" + ] + }, + { + "id": "saint_abbondius_s_day", + "msgid": "Saint Abbondius's Day", + "new_comment": "", + "comment": "Saint Abbondius's Day.", + "messages": { + "en_US": "Saint Abbondius's Day", + "it_IT": "Sant'Abbondio", + "th": "วันสมโภชนักบุญอับบอนดิอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_agatha_s_day", + "msgid": "Saint Agatha's Day", + "new_comment": "", + "comment": "Saint Agatha's Day.", + "messages": { + "en_US": "Saint Agatha's Day", + "it_IT": "Sant'Agata", + "th": "วันสมโภชนักบุญอากาธา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_albert_of_trapani_s_day", + "msgid": "Saint Albert of Trapani's Day", + "new_comment": "", + "comment": "Saint Albert of Trapani's Day.", + "messages": { + "en_US": "Saint Albert of Trapani's Day", + "it_IT": "Sant'Alberto degli Abati", + "th": "วันสมโภชนักบุญอัลเบิร์ตแห่งทราปานี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_alexander_of_bergamo_s_day", + "msgid": "Saint Alexander of Bergamo's Day", + "new_comment": "", + "comment": "Saint Alexander of Bergamo's Day.", + "messages": { + "en_US": "Saint Alexander of Bergamo's Day", + "it_IT": "Sant'Alessandro di Bergamo", + "th": "วันสมโภชนักบุญอเล็กซานเดอร์แห่งแบร์กาโม" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_ambrose_s_day", + "msgid": "Saint Ambrose's Day", + "new_comment": "", + "comment": "Saint Ambrose's Day.", + "messages": { + "en_US": "Saint Ambrose's Day", + "it_IT": "Sant'Ambrogio", + "th": "วันสมโภชนักบุญอัมโบรซีอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_andrew_s_day", + "msgid": "Saint Andrew's Day", + "new_comment": "", + "comment": "Saint Andrew's Day.", + "messages": { + "en_GB": "Saint Andrew's Day", + "en_US": "Saint Andrew's Day", + "ka": "წმინდა ანდრია პირველწოდებულის დღე", + "ro": "Sfântul Apostol Andrei, cel Întâi chemat, Ocrotitorul României", + "th": "วันนักบุญแอนดรูว์", + "uk": { + "GE": "День Святого Андрія Первозваного", + "RO": "День Святого Андрія Первозваного, захисника Румунії" + } + }, + "countries": [ + "GB", + "GE", + "RO" + ] + }, + { + "id": "saint_ansanus_s_day", + "msgid": "Saint Ansanus's Day", + "new_comment": "", + "comment": "Saint Ansanus's Day.", + "messages": { + "en_US": "Saint Ansanus's Day", + "it_IT": "Sant'Ansano", + "th": "วันสมโภชนักบุญอันซานุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_anselm_of_baggio_s_day", + "msgid": "Saint Anselm of Baggio's Day", + "new_comment": "", + "comment": "Saint Anselm of Baggio's Day.", + "messages": { + "en_US": "Saint Anselm of Baggio's Day", + "it_IT": "Sant'Anselmo da Baggio", + "th": "วันสมโภชนักบุญแอนเซล์มแห่งบัดโจ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_anthony_of_padua_s_day", + "msgid": "Saint Anthony of Padua's Day", + "new_comment": "", + "comment": "Saint Anthony of Padua's Day.", + "messages": { + "en_US": "Saint Anthony of Padua's Day", + "it_IT": "Sant'Antonio di Padova", + "th": "วันสมโภชนักบุญอันตนแห่งปาดัว" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_anthony_s_day", + "msgid": "Saint Anthony's Day", + "new_comment": "", + "comment": "Saint Anthony's Day.", + "messages": { + "ca": "Sant Antoni", + "en_US": "Saint Anthony's Day", + "es": "San Antonio", + "pt_PT": "Dia de Santo António", + "th": "วันสมโภชนักบุญอันตน", + "uk": "День Святого Антонія" + }, + "countries": [ + "AD", + "ES", + "PT" + ] + }, + { + "id": "saint_antoninus_of_piacenza_s_day", + "msgid": "Saint Antoninus of Piacenza's Day", + "new_comment": "", + "comment": "Saint Antoninus of Piacenza's Day.", + "messages": { + "en_US": "Saint Antoninus of Piacenza's Day", + "it_IT": "Sant'Antonino di Piacenza", + "th": "วันสมโภชนักบุญอันโตนีนุสแห่งปิอาเชนซา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_apollinaris_s_day", + "msgid": "Saint Apollinaris's Day", + "new_comment": "", + "comment": "Saint Apollinaris's Day.", + "messages": { + "en_US": "Saint Apollinaris's Day", + "it_IT": "Sant'Apollinare", + "th": "วันสมโภชนักบุญอปอลลินาริส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_archelaus_s_day", + "msgid": "Saint Archelaus's Day", + "new_comment": "", + "comment": "Saint Archelaus's Day.", + "messages": { + "en_US": "Saint Archelaus's Day", + "it_IT": "Sant'Archelao", + "th": "วันสมโภชนักบุญอาร์เคลาอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_barbara_s_day", + "msgid": "Saint Barbara's Day", + "new_comment": "", + "comment": "Saint Barbara's Day.", + "messages": { + "en_US": "Saint Barbara's Day", + "it_IT": "Santa Barbara", + "th": "วันสมโภชนักบุญบาร์บารา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_bartholomew_s_day", + "msgid": "Saint Bartholomew's Day", + "new_comment": "", + "comment": "Saint Bartholomew's Day.", + "messages": { + "en_US": "Saint Bartholomew's Day", + "it_IT": "San Bartolomeo apostolo", + "th": "วันสมโภชนักบุญบาร์โธโลมิว อัครสาวก" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_bassianus_s_day", + "msgid": "Saint Bassianus's Day", + "new_comment": "", + "comment": "Saint Bassianus's Day.", + "messages": { + "en_US": "Saint Bassianus's Day", + "it_IT": "San Bassiano", + "th": "วันสมโภชนักบุญบัสสิอานัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_baudolino_s_day", + "msgid": "Saint Baudolino's Day", + "new_comment": "", + "comment": "Saint Baudolino's Day.", + "messages": { + "en_US": "Saint Baudolino's Day", + "it_IT": "San Baudolino", + "th": "วันสมโภชนักบุญเบาโดลิโน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_bellinus_s_day", + "msgid": "Saint Bellinus's Day", + "new_comment": "", + "comment": "Saint Bellinus's Day.", + "messages": { + "en_US": "Saint Bellinus's Day", + "it_IT": "San Bellino", + "th": "วันสมโภชนักบุญเบลลินัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_berardo_s_day", + "msgid": "Saint Berardo's Day", + "new_comment": "", + "comment": "Saint Berardo's Day.", + "messages": { + "en_US": "Saint Berardo's Day", + "it_IT": "San Berardo da Pagliara", + "th": "วันสมโภชนักบุญเบราร์โด" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_berchtold_s_day", + "msgid": "Saint Berchtold's Day", + "new_comment": "", + "comment": "Saint Berchtold's Day.", + "messages": { + "de": "Berchtoldstag", + "en_US": "Saint Berchtold's Day", + "fr": "Saint-Berchtold", + "it": "Giorno di Bertoldo", + "th": "วันสมโภชนักบุญแบร์กโทลด์", + "uk": "День Святого Бертольда" + }, + "countries": [ + "CH", + "LI", + "XSWX" + ] + }, + { + "id": "saint_catald_s_day", + "msgid": "Saint Catald's Day", + "new_comment": "", + "comment": "Saint Catald's Day.", + "messages": { + "en_US": "Saint Catald's Day", + "it_IT": "San Cataldo", + "th": "วันสมโภชนักบุญกาตัลโด" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_catherine_of_alexandria_day", + "msgid": "Saint Catherine of Alexandria Day", + "new_comment": "", + "comment": "Saint Catherine of Alexandria Day.", + "messages": { + "en_US": "Saint Catherine of Alexandria Day", + "pt_BR": "Dia de Santa Catarina de Alexandria", + "uk": "День Святої Катерини Александрійської" + }, + "countries": [ + "BR" + ] + }, + { + "id": "saint_cetteus_s_day", + "msgid": "Saint Cetteus's Day", + "new_comment": "", + "comment": "Saint Cetteus's Day.", + "messages": { + "en_US": "Saint Cetteus's Day", + "it_IT": "San Cetteo", + "th": "วันสมโภชนักบุญเชตเทอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_clare_of_assisi_s_day", + "msgid": "Saint Clare of Assisi's Day", + "new_comment": "", + "comment": "Saint Clare of Assisi's Day.", + "messages": { + "en_US": "Saint Clare of Assisi's Day", + "it_IT": "Santa Chiara d'Assisi", + "th": "วันสมโภชนักบุญคลาราแห่งอัสซีซี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_clement_of_ohrid_day", + "msgid": "Saint Clement of Ohrid Day", + "new_comment": "", + "comment": "Saint Clement of Ohrid Day.", + "messages": { + "en_US": "Saint Clement of Ohrid Day", + "mk": "Свети Климент Охридски", + "uk": "День Святого Климента Охридського" + }, + "countries": [ + "MK" + ] + }, + { + "id": "saint_crescentinus_s_day", + "msgid": "Saint Crescentinus's Day", + "new_comment": "", + "comment": "Saint Crescentinus's Day.", + "messages": { + "en_US": "Saint Crescentinus's Day", + "it_IT": "San Crescentino", + "th": "วันสมโภชนักบุญเครสเซนตีนุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_cyriacus_s_day", + "msgid": "Saint Cyriacus's Day", + "new_comment": "", + "comment": "Saint Cyriacus's Day.", + "messages": { + "en_US": "Saint Cyriacus's Day", + "it_IT": "San Ciriaco", + "th": "วันสมโภชนักบุญไซริอาคุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_devote_s_day", + "msgid": "Saint Devote's Day", + "new_comment": "", + "comment": "Saint Devote's Day.", + "messages": { + "en_US": "Saint Devote's Day", + "fr_MC": "Le jour de la Sainte-Dévote", + "uk": "День Святої Девоти" + }, + "countries": [ + "MC" + ] + }, + { + "id": "saint_dionysius_s_day", + "msgid": "Saint Dionysius's Day", + "new_comment": "", + "comment": "Saint Dionysius's Day.", + "messages": { + "en_US": "Saint Dionysius's Day", + "it_IT": "San Dionigi", + "th": "วันสมโภชนักบุญไดโอนีซีอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_donatus_of_arezzo_s_day", + "msgid": "Saint Donatus of Arezzo's Day", + "new_comment": "", + "comment": "Saint Donatus of Arezzo's Day.", + "messages": { + "en_US": "Saint Donatus of Arezzo's Day", + "it_IT": "San Donato d'Arezzo", + "th": "วันสมโภชนักบุญโดนาโตแห่งอาเรซโซ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_elizabeth_s_day", + "msgid": "Saint Elizabeth's Day", + "new_comment": "", + "comment": "Saint Elizabeth's Day.", + "messages": { + "en_US": "Saint Elizabeth's Day", + "pt_PT": "Dia de Santa Isabel", + "uk": "День Святої Єлизавети" + }, + "countries": [ + "PT" + ] + }, + { + "id": "saint_emidius_s_day", + "msgid": "Saint Emidius's Day", + "new_comment": "", + "comment": "Saint Emidius's Day.", + "messages": { + "en_US": "Saint Emidius's Day", + "it_IT": "Sant'Emidio", + "th": "วันสมโภชนักบุญอีมิดีอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_eusebius_of_vercelli_s_day", + "msgid": "Saint Eusebius of Vercelli's Day", + "new_comment": "", + "comment": "Saint Eusebius of Vercelli's Day.", + "messages": { + "en_US": "Saint Eusebius of Vercelli's Day", + "it_IT": "Sant'Eusebio di Vercelli", + "th": "วันสมโภชนักบุญเอวเซบิโอแห่งแวร์แชลลี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_florian_s_day", + "msgid": "Saint Florian's Day", + "new_comment": "", + "comment": "Saint Florian's Day.", + "messages": { + "de": "Hl. Florian", + "en_US": "Saint Florian's Day", + "th": "วันสมโภชนักบุญฟลอเรียน", + "uk": "День Святого Флоріана" + }, + "countries": [ + "AT" + ] + }, + { + "id": "saint_francis_of_assisi_patron_saint_of_italy", + "msgid": "Saint Francis of Assisi, Patron Saint of Italy", + "new_comment": "", + "comment": "Saint Francis of Assisi, Patron Saint of Italy.", + "messages": { + "en_US": "Saint Francis of Assisi, Patron Saint of Italy", + "it_IT": "Festa nazionale di San Francesco d'Assisi, patrono d'Italia", + "th": "วันสมโภชนักบุญฟรังซิสแห่งอัสซีซีและนักบุญอุปถัมภ์แห่งอิตาลี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_francis_of_assisi_s_day", + "msgid": "Saint Francis of Assisi's Day", + "new_comment": "", + "comment": "Saint Francis of Assisi's Day.", + "messages": { + "en_US": "Saint Francis of Assisi's Day", + "it_IT": "San Francesco d'Assisi", + "th": "วันสมโภชนักบุญฟรังซิสแห่งอัสซีซี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_francis_xavier_s_day", + "msgid": "Saint Francis Xavier's Day", + "new_comment": "", + "comment": "Saint Francis Xavier's Day.", + "messages": { + "ca": "Sant Francesc Xavier", + "en_US": "Saint Francis Xavier's Day", + "es": "San Francisco Javier", + "th": "วันสมโภชนักบุญฟรังซิสเซเวียร์", + "uk": "День Святого Франциска Ксаверія" + }, + "countries": [ + "ES" + ] + }, + { + "id": "saint_gaudentius_s_day", + "msgid": "Saint Gaudentius's Day", + "new_comment": "", + "comment": "Saint Gaudentius's Day.", + "messages": { + "en_US": "Saint Gaudentius's Day", + "it_IT": "San Gaudenzio", + "th": "วันสมโภชนักบุญกอเดนทีอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_geminianus_s_day", + "msgid": "Saint Geminianus's Day", + "new_comment": "", + "comment": "Saint Geminianus's Day.", + "messages": { + "en_US": "Saint Geminianus's Day", + "it_IT": "San Geminiano", + "th": "วันสมโภชนักบุญเกมีเนียนุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_george_s_day", + "msgid": "Saint George's Day", + "new_comment": "", + "comment": "Saint George's Day.", + "messages": { + "ar": "عيد القديس جورج", + "ca": "Dia de Sant Jordi", + "en_CA": "Saint George's Day", + "en_US": "Saint George's Day", + "es": "Día de San Jorge", + "fr": "Fête de la Saint-Georges", + "it_IT": "San Giorgio Martire", + "ka": "გიორგობა", + "pt_BR": "São Jorge", + "th": { + "CA": "วันเซนต์จอร์จ (นิวฟันด์แลนด์และแลบราดอร์)", + "ES": "วันสมโภชนักบุญจอร์จ", + "IT": "วันสมโภชนักบุญจอร์จ" + }, + "uk": "День Святого Георгія" + }, + "countries": [ + "BR", + "CA", + "ES", + "GE", + "IT" + ] + }, + { + "id": "saint_george_s_day_day_of_the_bulgarian_army", + "msgid": "Saint George's Day, Day of the Bulgarian Army", + "new_comment": "", + "comment": "Saint George's Day, Day of the Bulgarian Army.", + "messages": { + "bg": "Гергьовден, Ден на храбростта и Българската армия", + "en_US": "Saint George's Day, Day of the Bulgarian Army", + "uk": "День Святого Георгія та День хоробрості і болгарської армії" + }, + "countries": [ + "BG" + ] + }, + { + "id": "saint_gerard_of_potenza_s_day", + "msgid": "Saint Gerard of Potenza's Day", + "new_comment": "", + "comment": "Saint Gerard of Potenza's Day.", + "messages": { + "en_US": "Saint Gerard of Potenza's Day", + "it_IT": "San Gerardo di Potenza", + "th": "วันสมโภชนักบุญเยราร์ดแห่งโปเตนซา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_gerland_s_day", + "msgid": "Saint Gerland's Day", + "new_comment": "", + "comment": "Saint Gerland's Day.", + "messages": { + "en_US": "Saint Gerland's Day", + "it_IT": "San Gerlando", + "th": "วันสมโภชนักบุญเกอร์ลันโด" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_grat_s_day", + "msgid": "Saint Grat's Day", + "new_comment": "", + "comment": "Saint Grat's Day.", + "messages": { + "en_US": "Saint Grat's Day", + "it_IT": "San Grato", + "th": "วันสมโภชนักบุญกราตัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_helena_day", + "msgid": "Saint Helena Day", + "new_comment": "", + "comment": "Saint Helena Day.", + "messages": { + "en_GB": "Saint Helena Day", + "en_US": "Saint Helena Day" + }, + "countries": [ + "SH" + ] + }, + { + "id": "saint_hilary_of_poitiers_s_day", + "msgid": "Saint Hilary of Poitiers's Day", + "new_comment": "", + "comment": "Saint Hilary of Poitiers's Day.", + "messages": { + "en_US": "Saint Hilary of Poitiers's Day", + "it_IT": "Sant'Ilario di Poitiers", + "th": "วันสมโภชนักบุญฮิลารีแห่งปัวตีเย" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_homobonus_s_day", + "msgid": "Saint Homobonus's Day", + "new_comment": "", + "comment": "Saint Homobonus's Day.", + "messages": { + "en_US": "Saint Homobonus's Day", + "it_IT": "Sant'Omobono", + "th": "วันสมโภชนักบุญโฮโมโบนุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_james_day", + "msgid": "Saint James' Day", + "new_comment": "", + "comment": "Saint James' Day.", + "messages": { + "ca": "Sant Jaume Apòstol", + "en_US": "Saint James' Day", + "es": { + "AR": "Día del Apóstol Santiago", + "ES": "Santiago Apóstol" + }, + "pt_BR": "São Tiago", + "th": "วันสมโภชนักบุญยากอบ อัครสาวก", + "uk": "День Святого Якова" + }, + "countries": [ + "AR", + "BR", + "ES" + ] + }, + { + "id": "saint_james_s_day", + "msgid": "Saint James's Day", + "new_comment": "", + "comment": "Saint James's Day.", + "messages": { + "en_US": "Saint James's Day", + "it_IT": "San Jacopo", + "th": "วันสมโภชนักบุญยากอบ อัครสาวก" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_januarius_s_day", + "msgid": "Saint Januarius's Day", + "new_comment": "", + "comment": "Saint Januarius's Day.", + "messages": { + "en_US": "Saint Januarius's Day", + "it_IT": "San Gennaro", + "th": "วันสมโภชนักบุญเจนนาโร" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_joanna_s_day", + "msgid": "Saint Joanna's Day", + "new_comment": "", + "comment": "Saint Joanna's Day.", + "messages": { + "en_US": "Saint Joanna's Day", + "pt_PT": "Dia de Santa Joana", + "uk": "День Святої Йоанни" + }, + "countries": [ + "PT" + ] + }, + { + "id": "saint_john_bosco_s_day", + "msgid": "Saint John Bosco's Day", + "new_comment": "", + "comment": "Saint John Bosco's Day.", + "messages": { + "en_US": "Saint John Bosco's Day", + "es": "Homenaje al Patrono de la Provincia San Juan Bosco", + "uk": "День Святого Івана Боско" + }, + "countries": [ + "AR" + ] + }, + { + "id": "saint_john_s_day", + "msgid": "Saint John's Day", + "new_comment": "", + "comment": "Saint John's Day.", + "messages": { + "en_US": "Saint John's Day", + "it_IT": "San Giovanni Battista", + "pt_BR": "São João", + "pt_PT": "Dia de São João", + "th": "วันสมโภชนักบุญยอห์นผู้ให้บัพติศมา", + "uk": "День Святого Івана" + }, + "countries": [ + "BR", + "IT", + "PT" + ] + }, + { + "id": "saint_john_the_baptist", + "msgid": "Saint John the Baptist", + "new_comment": "", + "comment": "Saint John the Baptist.", + "messages": { + "ca": "Sant Joan", + "en_US": "Saint John the Baptist", + "es": "San Juan", + "ro": "Soborul Sfântului Proroc Ioan Botezătorul", + "th": "วันสมโภชนักบุญยอห์น แบปติสต์บังเกิด", + "uk": "День Івана Хрестителя" + }, + "countries": [ + "ES", + "RO" + ] + }, + { + "id": "saint_john_the_baptist_day", + "msgid": "Saint John the Baptist Day", + "new_comment": "", + "comment": "Saint John the Baptist Day.", + "messages": { + "ar": "عيد القديس جان بابتيست", + "en_CA": "Saint Jean Baptiste Day", + "en_US": "Saint John the Baptist Day", + "fr": "Fête nationale du Québec", + "th": "วันแซงต์-ฌ็อง-บาติสต์ (ควิเบก)" + }, + "countries": [ + "CA" + ] + }, + { + "id": "saint_john_the_evangelist_s_day", + "msgid": "Saint John the Evangelist's Day", + "new_comment": "", + "comment": "Saint John the Evangelist's Day.", + "messages": { + "en_US": "Saint John the Evangelist's Day", + "it": "San Giovanni", + "th": "วันสมโภชนักบุญยอห์น" + }, + "countries": [ + "VA" + ] + }, + { + "id": "saint_joseph_s_day", + "msgid": "Saint Joseph's Day", + "new_comment": "", + "comment": "Saint Joseph's Day.", + "messages": { + "ca": "Sant Josep", + "de": { + "AT": "Hl. Josef", + "CH": "Josefstag", + "LI": "Josefstag" + }, + "en_US": "Saint Joseph's Day", + "es": { + "CO": "Día de San José", + "ES": "San José" + }, + "fr": "Saint-Joseph", + "it": "San Giuseppe", + "it_IT": "San Giuseppe", + "pt_BR": "São José", + "pt_PT": "Dia de São José", + "th": "วันสมโภชนักบุญโยเซฟ", + "uk": "День Святого Йосипа" + }, + "countries": [ + "AT", + "BR", + "CH", + "CO", + "ES", + "IT", + "LI", + "PT", + "VA" + ] + }, + { + "id": "saint_joseph_s_day_transfer", + "msgid": "Saint Joseph's Day Transfer", + "new_comment": "", + "comment": "Saint Joseph's Day Transfer.", + "messages": { + "ca": "Trasllat de Sant Josep", + "en_US": "Saint Joseph's Day Transfer", + "es": "Traslado de San José", + "th": "ชดเชยวันสมโภชนักบุญโยเซฟ", + "uk": "Перенесений День Святого Йосипа" + }, + "countries": [ + "ES" + ] + }, + { + "id": "saint_joseph_the_worker", + "msgid": "Saint Joseph the Worker's Day", + "new_comment": "", + "comment": "Saint Joseph the Worker.", + "messages": { + "en_US": "Saint Joseph the Worker's Day", + "it": "San Giuseppe Artigiano", + "th": "วันฉลองนักบุญโยเซฟ กรรมกร" + }, + "countries": [ + "VA" + ] + }, + { + "id": "saint_julia_s_day", + "msgid": "Saint Julia's Day", + "new_comment": "", + "comment": "Saint Julia's Day.", + "messages": { + "en_US": "Saint Julia's Day", + "it_IT": "Santa Giulia", + "th": "วันสมโภชนักบุญจูเลีย" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_julian_s_day", + "msgid": "Saint Julian's Day", + "new_comment": "", + "comment": "Saint Julian's Day.", + "messages": { + "ca": "Sant Julià", + "en_US": "Saint Julian's Day", + "uk": "День Святого Юліана" + }, + "countries": [ + "AD" + ] + }, + { + "id": "saint_julian_the_hospitaller_s_day", + "msgid": "Saint Julian the Hospitaller's Day", + "new_comment": "", + "comment": "Saint Julian the Hospitaller's Day.", + "messages": { + "en_US": "Saint Julian the Hospitaller's Day", + "it_IT": "San Giuliano l'ospitaliere", + "th": "วันสมโภชนักบุญยูเลียนผู้ใจบุญ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_justin_of_chieti_s_day", + "msgid": "Saint Justin of Chieti's Day", + "new_comment": "", + "comment": "Saint Justin of Chieti's Day.", + "messages": { + "en_US": "Saint Justin of Chieti's Day", + "it_IT": "San Giustino di Chieti", + "th": "วันสมโภชนักบุญยุสตินแห่งคีเอตี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_justus_s_day", + "msgid": "Saint Justus's Day", + "new_comment": "", + "comment": "Saint Justus's Day.", + "messages": { + "en_US": "Saint Justus's Day", + "it_IT": "San Giusto", + "th": "วันสมโภชนักบุญจัสตุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_lawrence_s_day", + "msgid": "Saint Lawrence's Day", + "new_comment": "", + "comment": "Saint Lawrence's Day.", + "messages": { + "en_US": "Saint Lawrence's Day", + "it_IT": "San Lorenzo", + "th": "วันสมโภชนักบุญลอเรนซ์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_leoluca_s_day", + "msgid": "Saint Leoluca's Day", + "new_comment": "", + "comment": "Saint Leoluca's Day.", + "messages": { + "en_US": "Saint Leoluca's Day", + "it_IT": "San Leoluca", + "th": "วันสมโภชนักบุญเลโอลูคา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_leonard_of_porto_maurizio_s_day", + "msgid": "Saint Leonard of Porto Maurizio's Day", + "new_comment": "", + "comment": "Saint Leonard of Porto Maurizio's Day.", + "messages": { + "en_US": "Saint Leonard of Porto Maurizio's Day", + "it_IT": "San Leonardo da Porto Maurizio", + "th": "วันสมโภชนักบุญลีโอนาร์ดแห่งปอร์โต เมาริตซีโอ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_leopold_s_day", + "msgid": "Saint Leopold's Day", + "new_comment": "", + "comment": "Saint Leopold's Day.", + "messages": { + "de": "Hl. Leopold", + "en_US": "Saint Leopold's Day", + "th": "วันสมโภชนักบุญลีโอโพลด์", + "uk": "День Святого Леопольда" + }, + "countries": [ + "AT" + ] + }, + { + "id": "saint_liberal_s_day", + "msgid": "Saint Liberal's Day", + "new_comment": "", + "comment": "Saint Liberal's Day.", + "messages": { + "en_US": "Saint Liberal's Day", + "it_IT": "San Liberale", + "th": "วันสมโภชนักบุญลิเบอราลิสแห่งเตรวิโซ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_louis_the_king_of_france_s_day", + "msgid": "Saint Louis the King of France's Day", + "new_comment": "", + "comment": "Saint Louis the King of France's Day.", + "messages": { + "en_US": "Saint Louis the King of France's Day", + "es": "Día de San Luis Rey de Francia", + "uk": "День Святого Людовика" + }, + "countries": [ + "AR" + ] + }, + { + "id": "saint_lucy_s_day", + "msgid": "Saint Lucy's Day", + "new_comment": "", + "comment": "Saint Lucy's Day.", + "messages": { + "en_US": "Saint Lucy's Day", + "it_IT": "Santa Lucia", + "th": "วันสมโภชนักบุญลูซี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_maria_goretti_s_day", + "msgid": "Saint Maria Goretti's Day", + "new_comment": "", + "comment": "Saint Maria Goretti's Day.", + "messages": { + "en_US": "Saint Maria Goretti's Day", + "it_IT": "Santa Maria Goretti", + "th": "วันสมโภชนักบุญมารีอา กอเรตตี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_marinus_day_anniversary_of_the_founding_of_the_republic", + "msgid": "Saint Marinus' Day, Anniversary of the Founding of the Republic", + "new_comment": "", + "comment": "Saint Marinus' Day, Anniversary of the Founding of the Republic.", + "messages": { + "en_US": "Saint Marinus' Day, Anniversary of the Founding of the Republic", + "it": "San Marino, Anniversario di Fondazione della Repubblica", + "uk": "Річниця заснування Республіки та День Святого Марина" + }, + "countries": [ + "SM" + ] + }, + { + "id": "saint_mark_s_day", + "msgid": "Saint Mark's Day", + "new_comment": "", + "comment": "Saint Mark's Day.", + "messages": { + "en_US": "Saint Mark's Day", + "it_IT": "San Marco Evangelista", + "th": "วันสมโภชนักบุญมาระโก ผู้นิพนธ์พระวรสาร" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_maron_s_day", + "msgid": "Saint Maron's Day", + "new_comment": "", + "comment": "Saint Maron's Day.", + "messages": { + "ar": "عيد مار مارون", + "en_US": "Saint Maron's Day", + "fr": "Saint-Maron" + }, + "countries": [ + "LB" + ] + }, + { + "id": "saint_martin_s_day", + "msgid": "Saint Martin's Day", + "new_comment": "", + "comment": "Saint Martin's Day.", + "messages": { + "de": "Hl. Martin", + "en_US": "Saint Martin's Day", + "it_IT": "San Martino", + "th": "วันสมโภชนักบุญมาร์ติน", + "uk": "День Святого Мартина" + }, + "countries": [ + "AT", + "IT" + ] + }, + { + "id": "saint_matthew_s_day", + "msgid": "Saint Matthew's Day", + "new_comment": "", + "comment": "Saint Matthew's Day.", + "messages": { + "en_US": "Saint Matthew's Day", + "it_IT": "San Matteo Evangelista", + "pt_PT": "Dia de São Mateus", + "th": "วันสมโภชนักบุญมัทธิว อัครสาวก", + "uk": "День Святого Матвія" + }, + "countries": [ + "IT", + "PT" + ] + }, + { + "id": "saint_maximus_of_aveia_s_day", + "msgid": "Saint Maximus of Aveia's Day", + "new_comment": "", + "comment": "Saint Maximus of Aveia's Day.", + "messages": { + "en_US": "Saint Maximus of Aveia's Day", + "it_IT": "San Massimo d'Aveia", + "th": "วันสมโภชนักบุญมักซีมุสแห่งอาเวอา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_michael_of_engolasters_day", + "msgid": "Saint Michael of Engolasters' Day", + "new_comment": "", + "comment": "Saint Michael of Engolasters' Day.", + "messages": { + "ca": "Sant Miquel d'Engolasters", + "en_US": "Saint Michael of Engolasters' Day", + "uk": "День Святого Михаїла Енголастерського" + }, + "countries": [ + "AD" + ] + }, + { + "id": "saint_michael_the_archangel_s_day", + "msgid": "Saint Michael the Archangel's Day", + "new_comment": "", + "comment": "Saint Michael the Archangel's Day.", + "messages": { + "en_US": "Saint Michael the Archangel's Day", + "es": "San Miguel Arcángel", + "it_IT": "San Michele Arcangelo", + "th": "วันฉลองอัครทูตสวรรค์ มีคาเอล", + "uk": "День Святого Архангела Михаїла" + }, + "countries": [ + "AR", + "IT" + ] + }, + { + "id": "saint_modestinus_s_day", + "msgid": "Saint Modestinus's Day", + "new_comment": "", + "comment": "Saint Modestinus's Day.", + "messages": { + "en_US": "Saint Modestinus's Day", + "it_IT": "San Modestino", + "th": "วันสมโภชนักบุญโมเดสตินัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_nicholas_of_fl_e", + "msgid": "Saint Nicholas of Flüe", + "new_comment": "", + "comment": "Saint Nicholas of Flüe.", + "messages": { + "de": "Bruder Klaus", + "en_US": "Saint Nicholas of Flüe", + "fr": "Fête de Saint-Nicolas-de-Flüe", + "it": "San Nicolao della Flue", + "th": "วันสมโภชนักบุญนิโคลัสแห่งฟลือเออ", + "uk": "День Святого Ніклауса з Флюе" + }, + "countries": [ + "CH" + ] + }, + { + "id": "saint_nicholas_s_day", + "msgid": "Saint Nicholas's Day", + "new_comment": "", + "comment": "Saint Nicholas's Day.", + "messages": { + "en_US": "Saint Nicholas's Day", + "it_IT": "San Nicola", + "th": "วันสมโภชนักบุญนิโคลัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_nicholas_the_pilgrim_s_day", + "msgid": "Saint Nicholas the Pilgrim's Day", + "new_comment": "", + "comment": "Saint Nicholas the Pilgrim's Day.", + "messages": { + "en_US": "Saint Nicholas the Pilgrim's Day", + "it_IT": "San Nicola Pellegrino", + "th": "วันสมโภชนักบุญนิโคลัสผู้แสวงบุญ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_olaf_s_day", + "msgid": "Saint Olaf's Day", + "new_comment": "", + "comment": "Saint Olaf's Day.", + "messages": { + "da": "Olavsdag", + "en_US": "Saint Olaf's Day", + "fo": "Ólavsøkudagur", + "is": "Ólafsdagur", + "no": "Olavsdag", + "sv": "Olafsdagen" + }, + "countries": [ + "FO" + ] + }, + { + "id": "saint_olaf_s_eve", + "msgid": "Saint Olaf's Eve", + "new_comment": "", + "comment": "Saint Olaf's Eve.", + "messages": { + "da": "Olavsaften", + "en_US": "Saint Olaf's Eve", + "fo": "Ólavsøkuaftan", + "is": "Ólafsnótt", + "no": "Olavsaften", + "sv": "Olafsafton" + }, + "countries": [ + "FO" + ] + }, + { + "id": "saint_orontius_s_day", + "msgid": "Saint Orontius's Day", + "new_comment": "", + "comment": "Saint Orontius's Day.", + "messages": { + "en_US": "Saint Orontius's Day", + "it_IT": "Sant'Oronzo", + "th": "วันสมโภชนักบุญโอรอนเทียส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_patrick_s_day", + "msgid": "Saint Patrick's Day", + "new_comment": "", + "comment": "Saint Patrick's Day.", + "messages": { + "ar": "عيد القديس باتريك", + "en_CA": "Saint Patrick's Day", + "en_GB": "Saint Patrick's Day", + "en_MS": "Saint Patrick's Day", + "en_US": "Saint Patrick's Day", + "fr": "Fête de la Saint-Patrick", + "th": { + "CA": "วันเซนต์แพทริก (นิวฟันด์แลนด์และแลบราดอร์)", + "GB": "วันนักบุญแพทริก", + "US": "วันนักบุญแพทริก" + } + }, + "countries": [ + "CA", + "GB", + "MS", + "US" + ] + }, + { + "id": "saint_paulinus_of_lucca_s_day", + "msgid": "Saint Paulinus of Lucca's Day", + "new_comment": "", + "comment": "Saint Paulinus of Lucca's Day.", + "messages": { + "en_US": "Saint Paulinus of Lucca's Day", + "it_IT": "San Paolino di Lucca", + "th": "วันสมโภชนักบุญเปาลีนุสแห่งลุกกา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_peter_and_saint_paul_s_day", + "msgid": "Saint Peter and Saint Paul's Day", + "new_comment": "", + "comment": "Saint Peter and Saint Paul's Day.", + "messages": { + "de": "Peter und Paul", + "en_US": "Saint Peter and Saint Paul's Day", + "es": "San Pedro y San Pablo", + "th": "วันสมโภชนักบุญเปโตรและเปาโล", + "uk": "День Святих Петра і Павла" + }, + "countries": [ + "AT", + "CL", + "CO", + "PE" + ] + }, + { + "id": "saint_peter_celestine_s_day", + "msgid": "Saint Peter Celestine's Day", + "new_comment": "", + "comment": "Saint Peter Celestine's Day.", + "messages": { + "en_US": "Saint Peter Celestine's Day", + "it_IT": "San Pietro Celestino", + "th": "วันสมโภชนักบุญเปโตร เซเลสทีน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_peter_s_day", + "msgid": "Saint Peter's Day", + "new_comment": "", + "comment": "Saint Peter's Day.", + "messages": { + "ca": "Sant Pere", + "en_US": "Saint Peter's Day", + "pt_BR": "São Pedro", + "pt_PT": "Dia de São Pedro", + "uk": "День Святого Петра" + }, + "countries": [ + "AD", + "BR", + "PT" + ] + }, + { + "id": "saint_petronius_s_day", + "msgid": "Saint Petronius's Day", + "new_comment": "", + "comment": "Saint Petronius's Day.", + "messages": { + "en_US": "Saint Petronius's Day", + "it_IT": "San Petronio", + "th": "วันสมโภชนักบุญเปโตรเนียส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_pontian_s_day", + "msgid": "Saint Pontian's Day", + "new_comment": "", + "comment": "Saint Pontian's Day.", + "messages": { + "en_US": "Saint Pontian's Day", + "it_IT": "San Ponziano", + "th": "วันสมโภชนักบุญปอนเทียน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_prosper_of_reggio_s_day", + "msgid": "Saint Prosper of Reggio's Day", + "new_comment": "", + "comment": "Saint Prosper of Reggio's Day.", + "messages": { + "en_US": "Saint Prosper of Reggio's Day", + "it_IT": "San Prospero Vescovo", + "th": "วันสมโภชนักบุญพรอสเปอร์แห่งเรจจิโอ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_ranieri_s_day", + "msgid": "Saint Ranieri's Day", + "new_comment": "", + "comment": "Saint Ranieri's Day.", + "messages": { + "en_US": "Saint Ranieri's Day", + "it_IT": "San Ranieri", + "th": "วันสมโภชนักบุญรานีเอรี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_richard_of_andria_s_day", + "msgid": "Saint Richard of Andria's Day", + "new_comment": "", + "comment": "Saint Richard of Andria's Day.", + "messages": { + "en_US": "Saint Richard of Andria's Day", + "it_IT": "San Riccardo di Andria", + "th": "วันสมโภชนักบุญริชาร์ดแห่งอันเดรีย" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_roch_s_day", + "msgid": "Saint Roch's Day", + "new_comment": "", + "comment": "Saint Roch's Day.", + "messages": { + "ca": "Sant Roc", + "en_US": "Saint Roch's Day", + "uk": "День Святого Роха" + }, + "countries": [ + "AD" + ] + }, + { + "id": "saint_roger_s_day", + "msgid": "Saint Roger's Day", + "new_comment": "", + "comment": "Saint Roger's Day.", + "messages": { + "en_US": "Saint Roger's Day", + "it_IT": "San Ruggero", + "th": "วันสมโภชนักบุญโรเจอร์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_rosalia_s_day", + "msgid": "Saint Rosalia's Day", + "new_comment": "", + "comment": "Saint Rosalia's Day.", + "messages": { + "en_US": "Saint Rosalia's Day", + "it_IT": "Santa Rosalia", + "th": "วันสมโภชนักบุญโรซาเลีย" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_rose_of_viterbo_s_day", + "msgid": "Saint Rose of Viterbo's Day", + "new_comment": "", + "comment": "Saint Rose of Viterbo's Day.", + "messages": { + "en_US": "Saint Rose of Viterbo's Day", + "it_IT": "Santa Rosa da Viterbo", + "th": "วันสมโภชนักบุญโรซาแห่งวิแตร์โบ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_rupert_s_day", + "msgid": "Saint Rupert's Day", + "new_comment": "", + "comment": "Saint Rupert's Day.", + "messages": { + "de": "Hl. Rupert", + "en_US": "Saint Rupert's Day", + "th": "วันสมโภชนักบุญรูเพิร์ตแห่งซาลซ์บูร์ก", + "uk": "День Святого Руперта" + }, + "countries": [ + "AT" + ] + }, + { + "id": "saint_saturninus_of_cagliari_s_day", + "msgid": "Saint Saturninus of Cagliari's Day", + "new_comment": "", + "comment": "Saint Saturninus of Cagliari's Day.", + "messages": { + "en_US": "Saint Saturninus of Cagliari's Day", + "it_IT": "San Saturnino di Cagliari", + "th": "วันสมโภชนักบุญซาเทอร์นินัสแห่งคัลยารี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_sava_s_day", + "msgid": "Saint Sava's Day", + "new_comment": "", + "comment": "Saint Sava's Day.", + "messages": { + "en_US": "Saint Sava's Day", + "mk": "Свети Сава", + "uk": "День Святого Сави" + }, + "countries": [ + "MK" + ] + }, + { + "id": "saint_sebastian_s_day", + "msgid": "Saint Sebastian's Day", + "new_comment": "", + "comment": "Saint Sebastian's Day.", + "messages": { + "en_US": "Saint Sebastian's Day", + "it_IT": "San Sebastiano", + "th": "วันสมโภชนักบุญเซบาสเตียน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_secundus_of_asti_s_day", + "msgid": "Saint Secundus of Asti's Day", + "new_comment": "", + "comment": "Saint Secundus of Asti's Day.", + "messages": { + "en_US": "Saint Secundus of Asti's Day", + "it_IT": "San Secondo di Asti", + "th": "วันสมโภชนักบุญเซคุนดุสแห่งแอสตี้" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_silverius_s_day", + "msgid": "Saint Silverius's Day", + "new_comment": "", + "comment": "Saint Silverius's Day.", + "messages": { + "en_US": "Saint Silverius's Day", + "it_IT": "San Silverio", + "th": "วันสมโภชนักบุญซิลเวริอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_stephen_s_day", + "msgid": "Saint Stephen's Day", + "new_comment": "", + "comment": "Saint Stephen's Day.", + "messages": { + "ca": "Sant Esteve", + "de": { + "AT": "Stephanstag", + "CH": "Stephanstag", + "LI": "Stephanstag", + "LU": "Zweiter Weihnachtsfeiertag" + }, + "en_US": "Saint Stephen's Day", + "es": "San Esteban", + "fr": "Saint-Étienne", + "hr": "Sveti Stjepan", + "it": { + "CH": "Giorno di Santo Stefano", + "SM": "Santo Stefano", + "VA": "Santo Stefano" + }, + "it_IT": "Santo Stefano", + "lb": "Stiefesdag", + "th": "วันสมโภชนักบุญสเตเฟน", + "uk": "День Святого Стефана" + }, + "countries": [ + "AD", + "AT", + "CH", + "ES", + "FR", + "HR", + "IT", + "LI", + "LU", + "SM", + "VA", + "XMAD" + ] + }, + { + "id": "saint_syrus_s_day", + "msgid": "Saint Syrus's Day", + "new_comment": "", + "comment": "Saint Syrus's Day.", + "messages": { + "en_US": "Saint Syrus's Day", + "it_IT": "San Siro", + "th": "วันสมโภชนักบุญไซรัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_terentius_of_pesaro_s_day", + "msgid": "Saint Terentius of Pesaro's Day", + "new_comment": "", + "comment": "Saint Terentius of Pesaro's Day.", + "messages": { + "en_US": "Saint Terentius of Pesaro's Day", + "it_IT": "San Terenzio di Pesaro", + "th": "วันสมโภชนักบุญเทเรนทิอัสแห่งเปซาโร" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_theodore_of_amasea_and_saint_lawrence_of_brindisi_s_day", + "msgid": "Saint Theodore of Amasea and Saint Lawrence of Brindisi's Day", + "new_comment": "", + "comment": "Saint Theodore of Amasea and Saint Lawrence of Brindisi's Day.", + "messages": { + "en_US": "Saint Theodore of Amasea and Saint Lawrence of Brindisi's Day", + "it_IT": "San Teodoro d'Amasea e San Lorenzo da Brindisi", + "th": "วันสมโภชนักบุญธีโอดอร์แห่งอมาเซียและลอว์เรนซ์แห่งบรินดีซี" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_ursula_s_day", + "msgid": "Saint Ursula's Day", + "new_comment": "", + "comment": "Saint Ursula's Day.", + "messages": { + "en_US": "Saint Ursula's Day", + "en_VG": "Saint Ursula's Day" + }, + "countries": [ + "VG" + ] + }, + { + "id": "saint_valentine_s_day", + "msgid": "Saint Valentine's Day", + "new_comment": "", + "comment": "Saint Valentine's Day.", + "messages": { + "en_US": "Saint Valentine's Day", + "it_IT": "San Valentino", + "th": "วันสมโภชนักบุญวาเลนไทน์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_vardanants_day", + "msgid": "Saint Vardanants' Day", + "new_comment": "", + "comment": "Saint Vardanants' Day.", + "messages": { + "en_US": "Saint Vardanants' Day", + "hy": "Սուրբ Վարդանանց տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "saint_victor_the_moor_s_day", + "msgid": "Saint Victor the Moor's Day", + "new_comment": "", + "comment": "Saint Victor the Moor's Day.", + "messages": { + "en_US": "Saint Victor the Moor's Day", + "it_IT": "San Vittore il Moro", + "th": "วันสมโภชนักบุญวิคตอร์ผู้เป็นมัวร์" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_vigilius_s_day", + "msgid": "Saint Vigilius's Day", + "new_comment": "", + "comment": "Saint Vigilius's Day.", + "messages": { + "en_US": "Saint Vigilius's Day", + "it_IT": "San Vigilio", + "th": "วันสมโภชนักบุญวีจีลีโอ" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_vitalian_s_day", + "msgid": "Saint Vitalian's Day", + "new_comment": "", + "comment": "Saint Vitalian's Day.", + "messages": { + "en_US": "Saint Vitalian's Day", + "it_IT": "San Vitaliano", + "th": "วันสมโภชนักบุญวิตาเลียน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saint_zeno_s_day", + "msgid": "Saint Zeno's Day", + "new_comment": "", + "comment": "Saint Zeno's Day.", + "messages": { + "en_US": "Saint Zeno's Day", + "it_IT": "San Zeno", + "th": "วันสมโภชนักบุญเซโน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saints_cyril_and_methodius_day", + "msgid": "Saints Cyril and Methodius Day", + "new_comment": "", + "comment": "Saints Cyril and Methodius Day.", + "messages": { + "cs": "Den slovanských věrozvěstů Cyrila a Metoděje", + "en_US": "Saints Cyril and Methodius Day", + "mk": "Светите Кирил и Методиј - Ден на сесловенските просветители", + "sk": { + "CZ": "Deň slovanských vierozvestcov Cyrila a Metoda", + "SK": "Sviatok svätého Cyrila a svätého Metoda" + }, + "uk": { + "CZ": "День Святих Кирила та Мефодія", + "MK": "День Святих Кирила та Мефодія, всесловʼянських просвітителів", + "SK": "День Святих Кирила та Мефодія" + } + }, + "countries": [ + "CZ", + "MK", + "SK" + ] + }, + { + "id": "saints_faustinus_and_jovita_s_day", + "msgid": "Saints Faustinus and Jovita's Day", + "new_comment": "", + "comment": "Saints Faustinus and Jovita's Day.", + "messages": { + "en_US": "Saints Faustinus and Jovita's Day", + "it_IT": "Santi Faustino e Giovita", + "th": "วันสมโภชนักบุญเฟาสตินัสและโยวิตา" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saints_gervasius_and_protasius_s_day", + "msgid": "Saints Gervasius and Protasius's Day", + "new_comment": "", + "comment": "Saints Gervasius and Protasius's Day.", + "messages": { + "en_US": "Saints Gervasius and Protasius's Day", + "it_IT": "San Gervasio e San Protasio", + "th": "วันสมโภชนักบุญเจอร์วาซีอุสและโปรตาซีอุส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saints_hermagoras_and_fortunatus_s_day", + "msgid": "Saints Hermagoras and Fortunatus's Day", + "new_comment": "", + "comment": "Saints Hermagoras and Fortunatus's Day.", + "messages": { + "en_US": "Saints Hermagoras and Fortunatus's Day", + "it_IT": "Santi Ermacora e Fortunato", + "th": "วันสมโภชนักบุญเฮอร์มากอรัสและฟอร์จูนาทัส" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saints_hilary_and_tatian_s_day", + "msgid": "Saints Hilary and Tatian's Day", + "new_comment": "", + "comment": "Saints Hilary and Tatian's Day.", + "messages": { + "en_US": "Saints Hilary and Tatian's Day", + "it_IT": "Santi Ilario e Taziano", + "th": "วันสมโภชนักบุญฮิลารีและทาเทียน" + }, + "countries": [ + "IT" + ] + }, + { + "id": "saints_peter_and_paul", + "msgid": "Saints Peter and Paul", + "new_comment": "", + "comment": "Saints Peter and Paul.", + "messages": { + "de": "Peter und Paul", + "en_US": "Saints Peter and Paul", + "fr": "Saint-Pierre et Paul", + "it": "Santi Pietro e Paolo", + "it_IT": "Santi Apostoli Pietro e Paolo", + "th": "วันสมโภชนักบุญเปโตรและเปาโล", + "uk": "День Святих Петра і Павла" + }, + "countries": [ + "CH", + "IT" + ] + }, + { + "id": "saints_peter_and_paul_day", + "msgid": "Saints Peter and Paul Day", + "new_comment": "", + "comment": "Saints Peter and Paul Day.", + "messages": { + "de": "Fest der Apostelfürsten Petrus und Paulus", + "en_US": "Saints Peter and Paul Day", + "fr": "Saints Pierre et Paul", + "pl": "Uroczystość Świętych Apostołów Piotra i Pawła", + "th": "วันสมโภชนักบุญเปโตรและเปาโล", + "uk": { + "FR": "День Святих Петра і Павла", + "PL": "День святих апостолів Петра і Павла" + } + }, + "countries": [ + "FR", + "PL" + ] + }, + { + "id": "saints_peter_and_paul_s_day", + "msgid": "Saints Peter and Paul's Day", + "new_comment": "", + "comment": "Saints Peter and Paul's Day.", + "messages": { + "en_US": "Saints Peter and Paul's Day", + "it": "Santi Pietro e Paolo", + "it_IT": "Santi Pietro e Paolo", + "th": "วันสมโภชนักบุญเปโตรและเปาโล" + }, + "countries": [ + "IT", + "VA" + ] + }, + { + "id": "sal_municipality_day", + "msgid": "Sal Municipality Day", + "new_comment": "", + "comment": "Sal Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Sal", + "en_US": "Sal Municipality Day", + "es": "Día del Municipio de Sal", + "fr": "Journée de la municipalité de Sal", + "pt_CV": "Dia do Município do Sal" + }, + "countries": [ + "CV" + ] + }, + { + "id": "samvatsari_day", + "msgid": "Samvatsari Day", + "new_comment": "", + "comment": "Samvatsari Day.", + "messages": { + "bn": "সংবৎসরী দিবস", + "en_IN": "Samvatsari Day", + "en_US": "Samvatsari Day", + "gu": "સંવત્સરી દિવસ", + "hi": "संवत्सरी दिवस", + "kn": "ಸಂವತ್ಸರಿ ದಿನ", + "ml": "സംവത്സരി ദിനം", + "mr": "संवत्सरी दिन", + "pa": "ਸੰਵਤਸਰੀ ਦਿਵਸ", + "ta": "சம்வத்சரி தினம்", + "te": "సంవత్సరి దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "san_jacinto_day", + "msgid": "San Jacinto Day", + "new_comment": "", + "comment": "San Jacinto Day.", + "messages": { + "en_US": "San Jacinto Day", + "th": "วันรำลึกยุทธการซานฮาซินโต" + }, + "countries": [ + "US" + ] + }, + { + "id": "sant_juli_de_l_ria_festival", + "msgid": "Sant Julià de Lòria Festival", + "new_comment": "", + "comment": "Sant Julià de Lòria Festival.", + "messages": { + "ca": "Festa Major de Sant Julià de Lòria", + "en_US": "Sant Julià de Lòria Festival", + "uk": "Свято парафії Сант-Жулія-де-Лорія" + }, + "countries": [ + "AD" + ] + }, + { + "id": "sant_kabir_s_birthday", + "msgid": "Sant Kabir's Birthday", + "new_comment": "", + "comment": "Sant Kabir's Birthday.", + "messages": { + "bn": "সন্ত কবীরের জন্মজয়ন্তী", + "en_IN": "Sant Kabir's Jayanti", + "en_US": "Sant Kabir's Birthday", + "gu": "સંત કબીર જયંતિ", + "hi": "संत कबीर जयंती", + "kn": "ಸಂತ ಕಬೀರ ಜಯಂತಿ", + "ml": "സന്ത് കബീർ ജയന്തി", + "mr": "संत कबीर जयंती", + "pa": "ਸੰਤ ਕਬੀਰ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "சாந்த் கபீர் ஜெயந்தி", + "te": "సంత్ కబీర్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "santa_catarina_de_santiago_municipality_day", + "msgid": "Santa Catarina de Santiago Municipality Day", + "new_comment": "", + "comment": "Santa Catarina de Santiago Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Santa Catarina de Santiago", + "en_US": "Santa Catarina de Santiago Municipality Day", + "es": "Día del Municipio de Santa Catarina de Santiago", + "fr": "Journée de la municipalité de Santa Catarina de Santiago", + "pt_CV": "Dia do Município de Santa Catarina de Santiago" + }, + "countries": [ + "CV" + ] + }, + { + "id": "santa_catarina_do_fogo_municipality_day", + "msgid": "Santa Catarina do Fogo Municipality Day", + "new_comment": "", + "comment": "Santa Catarina do Fogo Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Santa Catarina do Fogo", + "en_US": "Santa Catarina do Fogo Municipality Day", + "es": "Día del Municipio de Santa Catarina do Fogo", + "fr": "Journée de la municipalité de Santa Catarina do Fogo", + "pt_CV": "Dia do Município de Santa Catarina do Fogo" + }, + "countries": [ + "CV" + ] + }, + { + "id": "santa_catarina_state_day", + "msgid": "Santa Catarina State Day", + "new_comment": "", + "comment": "Santa Catarina State Day.", + "messages": { + "en_US": "Santa Catarina State Day", + "pt_BR": "Dia do Estado de Santa Catarina", + "uk": "День штату Санта-Катарина" + }, + "countries": [ + "BR" + ] + }, + { + "id": "santa_cruz_day", + "msgid": "Santa Cruz Day", + "new_comment": "", + "comment": "Santa Cruz Day.", + "messages": { + "en_US": "Santa Cruz Day", + "es": "Día del departamento de Santa Cruz", + "uk": "День департаменту Санта-Круз" + }, + "countries": [ + "BO" + ] + }, + { + "id": "santa_cruz_municipality_day", + "msgid": "Santa Cruz Municipality Day", + "new_comment": "", + "comment": "Santa Cruz Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Santa Cruz", + "en_US": "Santa Cruz Municipality Day", + "es": "Día del Municipio de Santa Cruz", + "fr": "Journée de la municipalité de Santa Cruz", + "pt_CV": "Dia do Município de Santa Cruz" + }, + "countries": [ + "CV" + ] + }, + { + "id": "santa_maria_of_africa", + "msgid": "Santa Maria of Africa", + "new_comment": "", + "comment": "Santa Maria of Africa.", + "messages": { + "ca": "Nostra Senyora d'Àfrica", + "en_US": "Santa Maria of Africa", + "es": "Nuestra Señora de África", + "th": "วันแม่พระแห่งแอฟริกา", + "uk": "День Пресвятої Богородиці Африканської" + }, + "countries": [ + "ES" + ] + }, + { + "id": "santo_ant_o_island_day", + "msgid": "Santo Antão Island Day", + "new_comment": "", + "comment": "Santo Antão Island Day.", + "messages": { + "de": "Tag der Insel Santo Antão", + "en_US": "Santo Antão Island Day", + "es": "Día de la Isla de Santo Antão", + "fr": "Journée de l'île de Santo Antão", + "pt_CV": "Dia da Ilha de Santo Antão" + }, + "countries": [ + "CV" + ] + }, + { + "id": "saragarhi_day", + "msgid": "Saragarhi Day", + "new_comment": "", + "comment": "Saragarhi Day.", + "messages": { + "bn": "সারাগড়ি দিবস", + "en_IN": "Saragarhi Day", + "en_US": "Saragarhi Day", + "gu": "સારાગઢી દિવસ", + "hi": "सारागढ़ी दिवस", + "kn": "ಸಾರಾಗಢಿ ದಿನ", + "ml": "സാരാഗഢി ദിനം", + "mr": "सारागढी दिन", + "pa": "ਸਾਰਾਗੜ੍ਹੀ ਦਿਵਸ", + "ta": "சாராகர்ஹி தினம்", + "te": "సారాగఢి దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "sarawak_independence_day", + "msgid": "Sarawak Independence Day", + "new_comment": "", + "comment": "Sarawak Independence Day.", + "messages": { + "en_US": "Sarawak Independence Day", + "ms_MY": "Hari Kemerdekaan Sarawak", + "th": "วันประกาศเอกราชรัฐซาราวัก" + }, + "countries": [ + "MY" + ] + }, + { + "id": "sardar_vallabhbhai_patel_jayanti", + "msgid": "Sardar Vallabhbhai Patel Jayanti", + "new_comment": "", + "comment": "Sardar Vallabhbhai Patel Jayanti.", + "messages": { + "bn": "সরদার বল্লভভাই প্যাটেল জয়ন্তী", + "en_IN": "Sardar Vallabhbhai Patel Jayanti", + "en_US": "Sardar Vallabhbhai Patel Jayanti", + "gu": "સરદાર વલ્લભભાઈ પટેલ જયંતિ", + "hi": "सरदार वल्लभभाई पटेल जयंती", + "kn": "ಸರ್ದಾರ್ ವಲ್ಲಭಭಾಯಿ ಪಟೇಲ್ ಜಯಂತಿ", + "ml": "സർദാർ വല്ലഭായി പട്ടേൽ ജയന്തി", + "mr": "सरदार वल्लभभाई पटेल जयंती", + "pa": "ਸਰਦਾਰ ਵੱਲਭ ਭਾਈ ਪਟੇਲ ਜਯੰਤੀ", + "ta": "சர்தார் வல்லபாய் படேல் ஜெயந்தி", + "te": "సర్దార్ వల్లభభాయి పటేల్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "saskatchewan_day", + "msgid": "Saskatchewan Day", + "new_comment": "", + "comment": "Saskatchewan Day.", + "messages": { + "ar": "يوم ساسكاتشوان", + "en_CA": "Saskatchewan Day", + "en_US": "Saskatchewan Day", + "fr": "Jour du Saskatchewan", + "th": "วันซัสแคตเชวัน" + }, + "countries": [ + "CA" + ] + }, + { + "id": "satguru_ram_singh_s_birthday", + "msgid": "Satguru Ram Singh's Birthday", + "new_comment": "", + "comment": "Satguru Ram Singh's Birthday.", + "messages": { + "bn": "সতগুরু রাম সিংয়ের জন্মজয়ন্তী", + "en_IN": "Satguru Ram Singh's Jayanti", + "en_US": "Satguru Ram Singh's Birthday", + "gu": "સતગુરુ રામ સિંહ જયંતિ", + "hi": "सतगुरु राम सिंह जयंती", + "kn": "ಸತ್ಗುರು ರಾಮ್ ಸಿಂಗ್ ಜಯಂತಿ", + "ml": "സത്‌ഗുരു റാം സിംഗ് ജയന്തി", + "mr": "सतगुरू राम सिंह जयंती", + "pa": "ਸਤਿਗੁਰੂ ਰਾਮ ਸਿੰਘ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "சத்குரு ராம் சிங் ஜெயந்தி", + "te": "సత్‌గురు రామ్ సింగ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "saturday_after_christmas_day", + "msgid": "Saturday after Christmas Day", + "new_comment": "", + "comment": "Saturday after Christmas Day.", + "messages": { + "en_US": "Saturday after Christmas Day", + "gu": "નાતાલના દિવસ પછીનો શનિવાર", + "hi": "क्रिसमस के दिन के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_columbus_day", + "msgid": "Saturday after Columbus Day", + "new_comment": "", + "comment": "Saturday after Columbus Day.", + "messages": { + "en_US": "Saturday after Columbus Day", + "gu": "કોલંબસ ડે પછીનો શનિવાર", + "hi": "कोलंबस दिवस के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_decoration_day", + "msgid": "Saturday after Decoration Day", + "new_comment": "", + "comment": "Saturday after Decoration Day.", + "messages": { + "en_US": "Saturday after Decoration Day", + "gu": "ડેકોરેશન ડે પછીનો શનિવાર", + "hi": "डेकोरेशन डे के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_good_friday", + "msgid": "Saturday after Good Friday", + "new_comment": "", + "comment": "Saturday after Good Friday.", + "messages": { + "en_US": "Saturday after Good Friday", + "gu": "ગુડ ફ્રાઈડે પછીનો શનિવાર", + "hi": "गुड फ्राइडे के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_independence_day", + "msgid": "Saturday after Independence Day", + "new_comment": "", + "comment": "Saturday after Independence Day.", + "messages": { + "en_US": "Saturday after Independence Day", + "gu": "સ્વતંત્રતા દિવસ પછીનો શનિવાર", + "hi": "स्वतंत्रता दिवस के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_lincoln_s_birthday", + "msgid": "Saturday after Lincoln's Birthday", + "new_comment": "", + "comment": "Saturday after Lincoln's Birthday.", + "messages": { + "en_US": "Saturday after Lincoln's Birthday", + "gu": "લિંકનના જન્મદિવસ પછીનો શનિવાર", + "hi": "लिंकन के जन्मदिन के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_after_washington_s_birthday", + "msgid": "Saturday after Washington's Birthday", + "new_comment": "", + "comment": "Saturday after Washington's Birthday.", + "messages": { + "en_US": "Saturday after Washington's Birthday", + "gu": "વોશિંગ્ટનના જન્મદિવસ પછીનો શનિવાર", + "hi": "वाशिंगटन के जन्मदिन के बाद का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_christmas", + "msgid": "Saturday before Christmas Day", + "new_comment": "", + "comment": "Saturday before Christmas.", + "messages": { + "en_US": "Saturday before Christmas Day", + "gu": "નાતાલના દિવસ પહેલાંનો શનિવાર", + "hi": "क्रिसमस के दिन से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_christmas_eve", + "msgid": "Saturday before Christmas Eve", + "new_comment": "", + "comment": "Saturday before Christmas Eve.", + "messages": { + "en_US": "Saturday before Christmas Eve", + "gu": "નાતાલની આગલી રાત પહેલાંનો શનિવાર", + "hi": "क्रिसमस की पूर्व संध्या से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_decoration_day", + "msgid": "Saturday before Decoration Day", + "new_comment": "", + "comment": "Saturday before Decoration Day.", + "messages": { + "en_US": "Saturday before Decoration Day", + "gu": "ડેકોરેશન ડે પહેલાંનો શનિવાર", + "hi": "डेकोरेशन डे से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_independence_day", + "msgid": "Saturday before Independence Day", + "new_comment": "", + "comment": "Saturday before Independence Day.", + "messages": { + "en_US": "Saturday before Independence Day", + "gu": "સ્વતંત્રતા દિવસ પહેલાંનો શનિવાર", + "hi": "स्वतंत्रता दिवस से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_labor_day", + "msgid": "Saturday before Labor Day", + "new_comment": "", + "comment": "Saturday before Labor Day.", + "messages": { + "en_US": "Saturday before Labor Day", + "gu": "શ્રમ દિવસ પહેલાંનો શનિવાર", + "hi": "श्रम दिवस से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_lincoln_s_birthday", + "msgid": "Saturday before Lincoln's Birthday", + "new_comment": "", + "comment": "Saturday before Lincoln's Birthday.", + "messages": { + "en_US": "Saturday before Lincoln's Birthday", + "gu": "લિંકનના જન્મદિવસ પહેલાંનો શનિવાર", + "hi": "लिंकन के जन्मदिन से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_new_year_s_day", + "msgid": "Saturday before New Year's Day", + "new_comment": "", + "comment": "Saturday before New Year's Day.", + "messages": { + "en_US": "Saturday before New Year's Day", + "gu": "નવા વર્ષના દિવસ પહેલાંનો શનિવાર", + "hi": "नव वर्ष के दिन से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "saturday_before_washington_s_birthday", + "msgid": "Saturday before Washington's Birthday", + "new_comment": "", + "comment": "Saturday before Washington's Birthday.", + "messages": { + "en_US": "Saturday before Washington's Birthday", + "gu": "વોશિંગ્ટનના જન્મદિવસ પહેલાંનો શનિવાર", + "hi": "वाशिंगटन के जन्मदिन से पहले का शनिवार" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "scotland_s_participation_in_the_fifa_world_cup_final", + "msgid": "Scotland's participation in the FIFA World Cup final", + "new_comment": "", + "comment": "Scotland's participation in the FIFA World Cup final.", + "messages": { + "en_GB": "Scotland's participation in the FIFA World Cup final", + "en_US": "Scotland's participation in the FIFA World Cup final", + "th": "เฉลิมฉลองสกอตแลนด์เข้ารอบฟุตบอลโลกรอบ 16 ทีมสุดท้าย" + }, + "countries": [ + "GB" + ] + }, + { + "id": "sechsel_uten", + "msgid": "Sechseläuten", + "new_comment": "", + "comment": "Sechseläuten.", + "messages": { + "de": "Sechseläuten", + "en_US": "Sechseläuten", + "fr": "Sechseläuten", + "it": "Sechseläuten", + "th": "เซ็กเซ่ะเล๊าเท่น", + "uk": "Зексельйотен" + }, + "countries": [ + "CH" + ] + }, + { + "id": "second_day_of_christmas", + "msgid": "Second Day of Christmas", + "new_comment": "", + "comment": "Second Day of Christmas.", + "messages": { + "cs": "2. svátek vánoční", + "da": "Anden juledag", + "de": "Zweiter Weihnachtstag", + "en_BQ": "Second Day of Christmas", + "en_US": "Second Day of Christmas", + "et": "teine jõulupüha", + "fi": "Tapaninpäivä", + "fo": "Annar jóladagur", + "fy": "Twadde Krystdei", + "hu": "Karácsony másnapja", + "is": "Annar í jólum", + "kl": "Juullip-aappaa", + "lt": "Šv. Kalėdų antra diena", + "lv": "Otrie Ziemassvētki", + "nl": "Tweede kerstdag", + "no": "Andre juledag", + "pap_AW": "Di dos dia di Pasco di Nacemento", + "pap_BQ": "Di dos dia di Pasku", + "pap_CW": "Di dos dia di Pasku di Nasementu", + "pl": "Boże Narodzenie (drugi dzień)", + "pt_PT": "26 de Dezembro", + "ru": "Второй день Рождества", + "sk": { + "CZ": "2. sviatok vianočný", + "SK": "Druhý sviatok vianočný" + }, + "sv": "Annandag jul", + "sv_FI": "Annandag jul", + "th": "วันคริสต์มาสวันที่สอง", + "uk": "Другий день Різдва" + }, + "countries": [ + "AW", + "BQ", + "CW", + "CZ", + "DE", + "DK", + "EE", + "FI", + "FO", + "GL", + "HU", + "IS", + "LT", + "LV", + "NL", + "NO", + "PL", + "PT", + "SE", + "SK", + "SR", + "SX", + "XETR" + ] + }, + { + "id": "second_day_of_eid_al_fitr", + "msgid": "Second Day of Eid al-Fitr", + "new_comment": "", + "comment": "Second Day of Eid al-Fitr.", + "messages": { + "en_SG": "Second Day of Hari Raya Puasa", + "en_US": "Second Day of Eid al-Fitr", + "th": "วันอีฎิ้ลฟิตริวันที่สอง" + }, + "countries": [ + "SG" + ] + }, + { + "id": "second_day_of_lunar_new_year", + "msgid": "Second Day of Lunar New Year", + "new_comment": "", + "comment": "Second Day of Lunar New Year.", + "messages": { + "en_US": "Second Day of Lunar New Year", + "th": "วันตรุษเต๊ตวันที่สอง", + "vi": "Mùng hai Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "second_day_of_queen_elizabeth_ii_and_her_husband_s_visit_to_hong_kong", + "msgid": "Second day of Queen Elizabeth II and her husband's visit to Hong Kong", + "new_comment": "", + "comment": "Second day of Queen Elizabeth II and her husband's visit to Hong Kong.", + "messages": { + "en_HK": "Second day of Queen Elizabeth II and her husband's visit to Hong Kong", + "en_US": "Second day of Queen Elizabeth II and her husband's visit to Hong Kong", + "th": "วันที่สองของการเสด็จเยือนฮ่องกงของ่สมเด็จพระราชินีนาถเอลิซาเบธที่ 2 และพระราชสวามี", + "zh_CN": "英女王伊丽莎白二世伉俪访港的第二天", + "zh_HK": "英女王伊利沙伯二世伉儷訪港的第二天" + }, + "countries": [ + "HK" + ] + }, + { + "id": "second_republic_day", + "msgid": "Second Republic Day", + "new_comment": "", + "comment": "Second Republic Day.", + "messages": { + "en_US": "Second Republic Day", + "fr": "Jour de la Deuxième République" + }, + "countries": [ + "GN" + ] + }, + { + "id": "self_government_day", + "msgid": "Self Government Day", + "new_comment": "", + "comment": "Self Government Day.", + "messages": { + "en_FM": "Self Government Day", + "en_US": "Self Government Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "selk_nam_genocide_day", + "msgid": "Selk'Nam Genocide Day", + "new_comment": "", + "comment": "Selk'Nam Genocide Day.", + "messages": { + "en_US": "Selk'Nam Genocide Day", + "es": "Día del Genocidio Selk'Nam", + "uk": "День геноциду народу селькнам" + }, + "countries": [ + "AR" + ] + }, + { + "id": "senegambia_confederation_day", + "msgid": "Senegambia Confederation Day", + "new_comment": "", + "comment": "Senegambia Confederation Day.", + "messages": { + "en_US": "Senegambia Confederation Day", + "fr_SN": "Fête de la Confédération de la Sénégambie" + }, + "countries": [ + "SN" + ] + }, + { + "id": "separation_day", + "msgid": "Separation Day", + "new_comment": "", + "comment": "Separation Day.", + "messages": { + "en_AI": "Separation Day", + "en_US": "Separation Day", + "es": "Separación de Panamá de Colombia", + "uk": "День відокремлення від Колумбії" + }, + "countries": [ + "AI", + "PA" + ] + }, + { + "id": "sergipe_political_emancipation_day", + "msgid": "Sergipe Political Emancipation Day", + "new_comment": "", + "comment": "Sergipe Political Emancipation Day.", + "messages": { + "en_US": "Sergipe Political Emancipation Day", + "pt_BR": "Emancipação política de Sergipe", + "uk": "День політичного звільнення Сержипі" + }, + "countries": [ + "BR" + ] + }, + { + "id": "sette_giugno", + "msgid": "Sette Giugno", + "new_comment": "", + "comment": "Sette Giugno.", + "messages": { + "en_US": "Sette Giugno", + "mt": "Sette Giugno" + }, + "countries": [ + "MT" + ] + }, + { + "id": "severe_weather_conditions", + "msgid": "Severe weather conditions", + "new_comment": "", + "comment": "Severe weather conditions.", + "messages": { + "en_US": "Severe weather conditions", + "gu": "હવામાનની ગંભીર પરિસ્થિતિઓ", + "hi": "गंभीर मौसम की स्थिति" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "seward_s_day", + "msgid": "Seward's Day", + "new_comment": "", + "comment": "Seward's Day.", + "messages": { + "en_US": "Seward's Day", + "th": "วันซีเวิร์ด" + }, + "countries": [ + "US" + ] + }, + { + "id": "sg50_public_holiday", + "msgid": "SG50 Public Holiday", + "new_comment": "", + "comment": "SG50 Public Holiday.", + "messages": { + "en_SG": "SG50 Public Holiday", + "en_US": "SG50 Public Holiday", + "th": "วันครบรอบ 50 ปีการประกาศเอกราชสิงค์โปร์" + }, + "countries": [ + "SG" + ] + }, + { + "id": "shackleton_day", + "msgid": "Shackleton Day", + "new_comment": "", + "comment": "Shackleton Day.", + "messages": { + "en_GS": "Shackleton Day", + "en_US": "Shackleton Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "shaheed_e_azam_bhagat_singh_sukhdev_and_rajguru_s_martyrdom_day", + "msgid": "Shaheed-e-Azam Bhagat Singh, Sukhdev and Rajguru's Martyrdom Day", + "new_comment": "", + "comment": "Shaheed-e-Azam Bhagat Singh, Sukhdev and Rajguru's Martyrdom Day.", + "messages": { + "bn": "শহীদ-এ-আজম ভগত সিং, সুখদেব ও রাজগুরুর শহীদ দিবস", + "en_IN": "Shaheed-e-Azam Bhagat Singh, Sukhdev and Rajguru's Shaheedi Diwas", + "en_US": "Shaheed-e-Azam Bhagat Singh, Sukhdev and Rajguru's Martyrdom Day", + "gu": "શહીદ-એ-આઝમ ભગત સિંહ, સુખદેવ અને રાજગુરુનો શહીદી દિવસ", + "hi": "शहीद-ए-आज़म भगत सिंह, सुखदेव और राजगुरु शहीदी दिवस", + "kn": "ಶಹೀದ್-ಎ-ಆಝಂ ಭಗತ್ ಸಿಂಗ್, ಸುಖದೇವ್ ಮತ್ತು ರಾಜಗುರು ಶಹೀದಿ ದಿನ", + "ml": "ഷഹീദ്-എ-ആസം ഭഗത് സിംഗ്, സുഖ്ദേവ്, രാജ്ഗുരു എന്നിവരുടെ ശഹീദ് ദിനം", + "mr": "शहीद-ए-आझम भगतसिंह, सुखदेव आणि राजगुरू शहीद दिन", + "pa": "ਸ਼ਹੀਦ-ਏ-ਆਜ਼ਮ ਭਗਤ ਸਿੰਘ, ਸੁਖਦੇਵ ਅਤੇ ਰਾਜਗੁਰੂ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "ஷஹீத்-எ-ஆசம் பகத் சிங், சுக்தேவ் மற்றும் ராஜ்குருவின் ஷஹீதி தினம்", + "te": "షహీద్-ఎ-ఆజమ్ భగత్ సింగ్, సుఖ్‌దేవ్ మరియు రాజ్‌గురు షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "shaheed_udham_singh_s_birthday", + "msgid": "Shaheed Udham Singh's Birthday", + "new_comment": "", + "comment": "Shaheed Udham Singh's Birthday.", + "messages": { + "bn": "শহীদ উধম সিংয়ের জন্মজয়ন্তী", + "en_IN": "Shaheed Udham Singh's Jayanti", + "en_US": "Shaheed Udham Singh's Birthday", + "gu": "શહીદ ઊધમ સિંહ જયંતિ", + "hi": "शहीद ऊधम सिंह जयंती", + "kn": "ಶಹೀದ್ ಉದಮ್ ಸಿಂಗ್ ಜಯಂತಿ", + "ml": "ശഹീദ് ഉദം സിംഗ് ജയന്തി", + "mr": "शहीद उधम सिंह जयंती", + "pa": "ਸ਼ਹੀਦ ਊਧਮ ਸਿੰਘ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "ஷஹீத் உதம் சிங் ஜெயந்தி", + "te": "షహీద్ ఉదమ్ సింగ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "shaheed_udham_singh_s_martyrdom_day", + "msgid": "Shaheed Udham Singh's Martyrdom Day", + "new_comment": "", + "comment": "Shaheed Udham Singh's Martyrdom Day.", + "messages": { + "bn": "শহীদ উধম সিংয়ের শহীদ দিবস", + "en_IN": "Shaheed Udham Singh's Shaheedi Diwas", + "en_US": "Shaheed Udham Singh's Martyrdom Day", + "gu": "શહીદ ઊધમ સિંહનો શહીદી દિવસ", + "hi": "शहीद ऊधम सिंह शहीदी दिवस", + "kn": "ಶಹೀದ್ ಉದಮ್ ಸಿಂಗ್ ಶಹೀದಿ ದಿನ", + "ml": "ശഹീദ് ഉദം സിംഗിന്റെ ശഹീദ് ദിനം", + "mr": "शहीद उधम सिंह शहीद दिन", + "pa": "ਸ਼ਹੀਦ ਊਧਮ ਸਿੰਘ ਜੀ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "ஷஹீத் உதம் சிங்கின் ஷஹீதி தினம்", + "te": "షహీద్ ఉదమ్ సింగ్ షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "shavuot", + "msgid": "Shavuot", + "new_comment": "", + "comment": "Shavuot.", + "messages": { + "en_US": "Shavuot", + "he": "שבועות", + "th": "วันชาวูโอท", + "uk": "Шавуот" + }, + "countries": [ + "IL" + ] + }, + { + "id": "sheikh_mujibur_rahman_s_birthday", + "msgid": "Sheikh Mujibur Rahman's Birthday", + "new_comment": "", + "comment": "Sheikh Mujibur Rahman's Birthday.", + "messages": { + "ar": "عيد ميلاد الشيخ مجيب الرحمن", + "bn": "জাতির পিতা বঙ্গবন্ধু শেখ মুজিবুর রহমান এর জন্মদিবস", + "en_BD": "Father of the Nation Bangabandhu Sheikh Mujibur Rahman's Birthday", + "en_US": "Sheikh Mujibur Rahman's Birthday" + }, + "countries": [ + "BD" + ] + }, + { + "id": "shivaji_s_birthday", + "msgid": "Shivaji's Birthday", + "new_comment": "", + "comment": "Shivaji's Birthday.", + "messages": { + "bn": "শিবাজীর জয়ন্তী", + "en_IN": "Shivaji's Jayanti", + "en_US": "Shivaji's Birthday", + "gu": "શિવાજીની જયંતિ", + "hi": "शिवाजी जयंती", + "kn": "ಶಿವಾಜಿ ಜಯಂತಿ", + "ml": "ശിവാജി ജയന്തി", + "mr": "शिवाजी जयंती", + "pa": "ਸ਼ਿਵਾਜੀ ਜਯੰਤੀ", + "ta": "சிவாஜி ஜெயந்தி", + "te": "శివాజీ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "shortened_hours_following_market_break", + "msgid": "Shortened hours following market break", + "new_comment": "", + "comment": "Shortened hours following market break.", + "messages": { + "en_US": "Shortened hours following market break", + "gu": "બજારમાં કડાકા બાદ ટૂંકા કરાયેલા કલાકો", + "hi": "बाजार में गिरावट के बाद काम के घंटे कम किए गए" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "show_day", + "msgid": "Show Day", + "new_comment": "", + "comment": "Show Day.", + "messages": { + "en_NF": "Show Day", + "en_US": "Show Day" + }, + "countries": [ + "NF" + ] + }, + { + "id": "showa_day", + "msgid": "Showa Day", + "new_comment": "", + "comment": "Showa Day.", + "messages": { + "en_US": "Showa Day", + "ja": "昭和の日", + "th": "วันโชวะ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "shree_krishna_janmashtami", + "msgid": "Shree Krishna Janmashtami", + "new_comment": "", + "comment": "Shree Krishna Janmashtami.", + "messages": { + "en_US": "Shree Krishna Janmashtami", + "kn": "ಶ್ರೀಕೃಷ್ಣ ಜನ್ಮಾಷ್ಟಮಿ", + "ne": "श्रीकृष्ण जन्माष्टमी" + }, + "countries": [ + "NP" + ] + }, + { + "id": "shri_panchami", + "msgid": "Shri Panchami", + "new_comment": "", + "comment": "Shri Panchami.", + "messages": { + "bn": "শ্রী পঞ্চমী", + "en_IN": "Shri Panchami", + "en_US": "Shri Panchami", + "gu": "શ્રી પંચમી", + "hi": "श्री पंचमी", + "kn": "ಶ್ರೀ ಪಂಚಮಿ", + "ml": "ശ്രീ പഞ്ചമി", + "mr": "श्री पंचमी", + "pa": "ਸ੍ਰੀ ਪੰਚਮੀ", + "ta": "ஸ்ரீ பஞ்சமி", + "te": "శ్రీ పంచమి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "shrove_monday", + "msgid": "Shrove Monday", + "new_comment": "", + "comment": "Shrove Monday.", + "messages": { + "en_US": "Shrove Monday", + "es": "Lunes de Carnaval", + "fr_HT": "Lundi Gras", + "ht": "Lendi Gras" + }, + "countries": [ + "HT" + ] + }, + { + "id": "shrove_tuesday", + "msgid": "Shrove Tuesday", + "new_comment": "", + "comment": "Shrove Tuesday.", + "messages": { + "ca": "Dimarts de Carnaval", + "de": "Fasnachtsdienstag", + "en_US": "Shrove Tuesday", + "es": "Martes de Carnaval", + "th": "วันอังคารคาร์นิวัล", + "uk": "Масний вівторок" + }, + "countries": [ + "ES", + "LI" + ] + }, + { + "id": "shvi_i_shel_pesach_seventh_day_of_passover", + "msgid": "Seventh day of Pesach", + "new_comment": "", + "comment": "Shvi'i shel Pesach (Seventh day of Passover)", + "messages": { + "en_US": "Seventh day of Pesach", + "he": "שביעי של פסח", + "th": "วันเพสสะห์วันที่เจ็ด", + "uk": "Сьомий день Песаха" + }, + "countries": [ + "IL" + ] + }, + { + "id": "sigd", + "msgid": "Sigd", + "new_comment": "", + "comment": "Sigd.", + "messages": { + "en_US": "Sigd", + "he": "סיגד", + "th": "เทศกาลซิกด์", + "uk": "Сігд" + }, + "countries": [ + "IL" + ] + }, + { + "id": "signing_of_the_petropolis_treaty", + "msgid": "Signing of the Petropolis Treaty", + "new_comment": "", + "comment": "Signing of the Petropolis Treaty.", + "messages": { + "en_US": "Signing of the Petropolis Treaty", + "pt_BR": "Assinatura do Tratado de Petrópolis", + "uk": "День підписання Петрополіського договору" + }, + "countries": [ + "BR" + ] + }, + { + "id": "sikkim_state_day", + "msgid": "Sikkim State Day", + "new_comment": "", + "comment": "Sikkim State Day.", + "messages": { + "bn": "সিকিম প্রতিষ্ঠা দিবস", + "en_IN": "Sikkim State Day", + "en_US": "Sikkim State Day", + "gu": "સિક્કિમ રાજ્ય દિવસ", + "hi": "सिक्किम राज्य दिवस", + "kn": "ಸಿಕ್ಕಿಂ ರಾಜ್ಯ ದಿನೋತ್ಸವ", + "ml": "സിക്കിം സംസ്ഥാനദിനം", + "mr": "सिक्कीम राज्य दिन", + "pa": "ਸਿੱਕਮ ਰਾਜ ਦਿਵਸ", + "ta": "சிக்கிம் மாநில நாள்", + "te": "సిక్కిం రాష్ట్ర దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "silver_jubilee_of_elizabeth_ii", + "msgid": "Silver Jubilee of Elizabeth II", + "new_comment": "", + "comment": "Silver Jubilee of Elizabeth II.", + "messages": { + "en_GB": "Silver Jubilee of Elizabeth II", + "en_US": "Silver Jubilee of Elizabeth II", + "th": "พระราชพิธีฉลองสิริราชสมบัติครบ 25 ปี สมเด็จพระราชินีนาถ" + }, + "countries": [ + "GB" + ] + }, + { + "id": "simchat_torah_shemini_atzeret", + "msgid": "Simchat Torah / Shemini Atzeret", + "new_comment": "", + "comment": "Simchat Torah / Shemini Atzeret.", + "messages": { + "en_US": "Simchat Torah / Shemini Atzeret", + "he": "שמחת תורה/שמיני עצרת", + "th": "วันซิมหัต โทราห์/วันเชมินี อัตเซเรต", + "uk": "Сімхат Тора / Шміні Ацерет" + }, + "countries": [ + "IL" + ] + }, + { + "id": "sinai_liberation_day", + "msgid": "Sinai Liberation Day", + "new_comment": "", + "comment": "Sinai Liberation Day.", + "messages": { + "ar_EG": "عيد تحرير سيناء", + "en_US": "Sinai Liberation Day", + "fr": "Fête de la Libération du Sinaï" + }, + "countries": [ + "EG" + ] + }, + { + "id": "sinhala_and_tamil_new_year", + "msgid": "Sinhala and Tamil New Year", + "new_comment": "", + "comment": "Sinhala and Tamil New Year.", + "messages": { + "en_US": "Sinhala and Tamil New Year", + "si_LK": "සිංහල හා දෙමළ අලුත් අවුරුදු දිනය", + "ta_LK": "சிங்கள, தமிழ் புத்தாண்டு தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "sino_japanese_war_victory_day", + "msgid": "Sino-Japanese War Victory Day", + "new_comment": "", + "comment": "Sino-Japanese War Victory Day.", + "messages": { + "en_HK": "Sino-Japanese War Victory Day", + "en_US": "Sino-Japanese War Victory Day", + "th": "วันรำลึกชัยชนะสงครามต่อต้านญี่ปุ่น", + "zh_CN": "抗日战争胜利纪念日", + "zh_HK": "抗日戰爭勝利紀念日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "sint_maarten_day", + "msgid": "Sint Maarten Day", + "new_comment": "", + "comment": "Sint Maarten Day.", + "messages": { + "en_US": "Sint Maarten Day", + "nl": "Sint-Maartensdag" + }, + "countries": [ + "SX" + ] + }, + { + "id": "sir_chottu_ram_s_birthday", + "msgid": "Sir Chottu Ram's Birthday", + "new_comment": "", + "comment": "Sir Chottu Ram's Birthday.", + "messages": { + "bn": "স্যার ছোট্টু রামের জন্মজয়ন্তী", + "en_IN": "Sir Chottu Ram's Jayanti", + "en_US": "Sir Chottu Ram's Birthday", + "gu": "સર છોટુ રામ જયંતિ", + "hi": "सर छोटू राम जयंती", + "kn": "ಸರ್ ಛೋಟು ರಾಮ್ ಜಯಂತಿ", + "ml": "സർ ഛോട്ടു റാം ജയന്തി", + "mr": "सर छोटू राम जयंती", + "pa": "ਸਰ ਛੋਟੂ ਰਾਮ ਜੀ ਦਾ ਜਨਮ ਦਿਹਾੜਾ", + "ta": "சர் சோட்டு ராம் ஜெயந்தி", + "te": "సర్ చోటూ రామ్ జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "sir_hammer_deroburt_day", + "msgid": "Sir Hammer DeRoburt Day", + "new_comment": "", + "comment": "Sir Hammer DeRoburt Day.", + "messages": { + "en_NR": "Sir Hammer DeRoburt Day", + "en_US": "Sir Hammer DeRoburt Day" + }, + "countries": [ + "NR" + ] + }, + { + "id": "sixth_day_of_lunar_new_year", + "msgid": "Sixth Day of Lunar New Year", + "new_comment": "", + "comment": "Sixth Day of Lunar New Year.", + "messages": { + "en_US": "Sixth Day of Lunar New Year", + "th": "วันตรุษเต๊ตวันที่หก", + "vi": "Mùng sáu Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "slovak_national_uprising_anniversary", + "msgid": "Slovak National Uprising Anniversary", + "new_comment": "", + "comment": "Slovak National Uprising Anniversary.", + "messages": { + "en_US": "Slovak National Uprising Anniversary", + "sk": "Výročie Slovenského národného povstania", + "uk": "Річниця Словацького національного повстання" + }, + "countries": [ + "SK" + ] + }, + { + "id": "slovenian_sport_s_day", + "msgid": "Slovenian Sport's Day", + "new_comment": "", + "comment": "Slovenian Sport's Day.", + "messages": { + "en_US": "Slovenian Sport's Day", + "sl": "dan slovenskega športa", + "uk": "День словенського спорту" + }, + "countries": [ + "SI" + ] + }, + { + "id": "snowstorm", + "msgid": "Snowstorm", + "new_comment": "", + "comment": "Snowstorm.", + "messages": { + "en_US": "Snowstorm", + "gu": "બરફનું તોફાન", + "hi": "बर्फीला तूफान" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "socialist_constitution_day", + "msgid": "Socialist Constitution Day", + "new_comment": "", + "comment": "Socialist Constitution Day.", + "messages": { + "en_US": "Socialist Constitution Day", + "ko_KP": "사회주의헌법절" + }, + "countries": [ + "KP" + ] + }, + { + "id": "solemnity_of_holy_trinity", + "msgid": "Solemnity of Holy Trinity", + "new_comment": "", + "comment": "Solemnity of Holy Trinity.", + "messages": { + "en_US": "Solemnity of Holy Trinity", + "it": "Solennità della Santissima Trinità", + "th": "วันสมโภชพระตรีเอกภาพ" + }, + "countries": [ + "VA" + ] + }, + { + "id": "solemnity_of_mary_mother_of_god", + "msgid": "Solemnity of Mary, Mother of God", + "new_comment": "", + "comment": "Solemnity of Mary, Mother of God.", + "messages": { + "en_US": "Solemnity of Mary, Mother of God", + "it": "Solennità di Maria Santissima Madre di Dio", + "th": "วันสมโภชพระนางมารีอา พระชนนีพระเป็นเจ้า" + }, + "countries": [ + "VA" + ] + }, + { + "id": "solemnity_of_pentecost", + "msgid": "Solemnity of Pentecost", + "new_comment": "", + "comment": "Solemnity of Pentecost.", + "messages": { + "en_US": "Solemnity of Pentecost", + "it": "Solennità della Pentecoste", + "th": "วันสมโภชพระจิตเจ้า" + }, + "countries": [ + "VA" + ] + }, + { + "id": "solidarity_day", + "msgid": "Solidarity Day", + "new_comment": "", + "comment": "Solidarity Day.", + "messages": { + "en_US": "Solidarity Day", + "sl": "dan solidarnosti", + "uk": "День солідарності" + }, + "countries": [ + "SI" + ] + }, + { + "id": "somers_day", + "msgid": "Somers Day", + "new_comment": "", + "comment": "Somers Day.", + "messages": { + "en_BM": "Somers Day", + "en_US": "Somers Day" + }, + "countries": [ + "BM" + ] + }, + { + "id": "sonam_lhochhar", + "msgid": "Sonam Lhochhar", + "new_comment": "", + "comment": "Sonam Lhochhar.", + "messages": { + "en_US": "Sonam Lhochhar", + "kn": "ಸೋನಮ್ ಲ್ಹೋಛಾರ್", + "ne": "सोनम ल्होछार" + }, + "countries": [ + "NP" + ] + }, + { + "id": "songkran_festival", + "msgid": "Songkran Festival", + "new_comment": "", + "comment": "Songkran Festival.", + "messages": { + "en_US": "Songkran Festival", + "th": "วันสงกรานต์", + "uk": "Тайський Новий рік" + }, + "countries": [ + "TH" + ] + }, + { + "id": "songkran_new_year", + "msgid": "Songkran New Year", + "new_comment": "", + "comment": "Songkran New Year.", + "messages": { + "en_US": "Songkran New Year", + "th": "ตะรุษะสงกรานต์", + "uk": "Тайський Новий рік" + }, + "countries": [ + "TH" + ] + }, + { + "id": "songkran_new_year_holidays", + "msgid": "Songkran New Year Holidays", + "new_comment": "", + "comment": "Songkran New Year Holidays.", + "messages": { + "en_US": "Songkran New Year Holidays", + "th": "พระราชพิธีตะรุษะสงกรานต์ แลนักขัตฤกษ์", + "uk": "Святкування Тайського Нового року" + }, + "countries": [ + "TH" + ] + }, + { + "id": "southern_africa_liberation_day", + "msgid": "Southern Africa Liberation Day", + "new_comment": "", + "comment": "Southern Africa Liberation Day.", + "messages": { + "en_US": "Southern Africa Liberation Day", + "pt_AO": "Dia da Libertação da África Austral", + "uk": "День визволення південної Африки" + }, + "countries": [ + "AO" + ] + }, + { + "id": "sovereign_s_birthday", + "msgid": "Sovereign's Birthday", + "new_comment": "", + "comment": "Sovereign's Birthday.", + "messages": { + "en_CK": "Sovereign's Birthday", + "en_US": "Sovereign's Birthday", + "en_VG": "Sovereign's Birthday" + }, + "countries": [ + "CK", + "VG" + ] + }, + { + "id": "sovereignty_day", + "msgid": "Sovereignty Day", + "new_comment": "", + "comment": "Sovereignty Day.", + "messages": { + "en_US": "Sovereignty Day", + "sl": "dan suverenosti", + "uk": "День суверенітету" + }, + "countries": [ + "SI" + ] + }, + { + "id": "soviet_victory_day", + "msgid": "Soviet Victory Day", + "new_comment": "", + "comment": "Soviet Victory Day.", + "messages": { + "en_US": "Soviet Victory Day", + "fa_AF": "روز پیروزی شوروی", + "ps_AF": "د شوروی د بریالیتوب ورځ" + }, + "countries": [ + "AF" + ] + }, + { + "id": "spain_day", + "msgid": "Spain Day", + "new_comment": "", + "comment": "Spain Day.", + "messages": { + "en_US": "Spain Day", + "es": "Día de España", + "uk": "День Іспанії" + }, + "countries": [ + "UY" + ] + }, + { + "id": "special_bank_holiday", + "msgid": "Special Bank Holiday", + "new_comment": "", + "comment": "Special Bank Holiday.", + "messages": { + "en_US": "Special Bank Holiday", + "lo": "ມື້ປິດການໃຫ້ບໍລິການຂອງທະນາຄານຕົວແທນ", + "si_LK": "විශේෂ බැංකු නිවාඩු දිනය", + "ta_LK": "விசேட வங்கி விடுமுறை", + "th": "วันหยุดทำการพิเศษของสถาบันการเงิน" + }, + "countries": [ + "LA", + "LK" + ] + }, + { + "id": "special_in_lieu_holiday", + "msgid": "Special In-Lieu Holiday", + "new_comment": "", + "comment": "Special In-Lieu Holiday.", + "messages": { + "en_US": "Special In-Lieu Holiday", + "th": "วันหยุดชดเชย", + "uk": "Додатковий вихідний" + }, + "countries": [ + "TH" + ] + }, + { + "id": "special_king_s_coronation_bank_holiday", + "msgid": "Special King's Coronation Bank Holiday", + "new_comment": "", + "comment": "Special King's Coronation Bank Holiday.", + "messages": { + "en_GB": "Special King's Coronation Bank Holiday", + "en_US": "Special King's Coronation Bank Holiday" + }, + "countries": [ + "GI" + ] + }, + { + "id": "special_public_holiday", + "msgid": "Special Public Holiday", + "new_comment": "", + "comment": "Special Public Holiday.", + "messages": { + "en_AI": "Special Public Holiday", + "en_AU": "Special Public Holiday", + "en_MS": "Special Public Holiday", + "en_US": "Special Public Holiday", + "km": "ថ្ងៃឈប់សម្រាកសងជំនួស", + "si_LK": "විශේෂ රජයේ නිවාඩු දිනය", + "ta_LK": "விசேட பொது விடுமுறை", + "th": { + "AU": "วันหยุดพิเศษ", + "KH": "วันหยุดชดเชย" + } + }, + "countries": [ + "AI", + "AU", + "KH", + "LK", + "MS" + ] + }, + { + "id": "spiritual_baptist_liberation_day", + "msgid": "Spiritual Baptist Liberation Day", + "new_comment": "", + "comment": "Spiritual Baptist Liberation Day.", + "messages": { + "en_TT": "Spiritual Baptist Liberation Day", + "en_US": "Spiritual Baptist Liberation Day" + }, + "countries": [ + "TT" + ] + }, + { + "id": "sports_day", + "msgid": "Sports Day", + "new_comment": "", + "comment": "Sports Day.", + "messages": { + "en_US": "Sports Day", + "ja": "スポーツの日", + "th": "วันกีฬาแห่งชาติ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "spring_bank_holiday", + "msgid": "Spring Bank Holiday", + "new_comment": "", + "comment": "Spring Bank Holiday.", + "messages": { + "en_GB": "Spring Bank Holiday", + "en_US": "Spring Bank Holiday", + "th": "วันหยุดฤดูใบไม้ผลิของธนาคาร" + }, + "countries": [ + "GB", + "GI" + ] + }, + { + "id": "spring_day", + "msgid": "Spring Day", + "new_comment": "", + "comment": "Spring Day.", + "messages": { + "en_US": "Spring Day", + "tr": "Bahar Bayramı", + "uk": "День весни" + }, + "countries": [ + "TR" + ] + }, + { + "id": "spring_festival", + "msgid": "Spring Festival", + "new_comment": "", + "comment": "Spring Festival.", + "messages": { + "ar_EG": "عيد شم النسيم", + "az": "Novruz bayramı", + "en_US": "Spring Festival", + "fr": "Cham Al-Nessim", + "ru": "Национальный праздник весны", + "tk": "Milli bahar baýramy", + "uk": "Свято Новруз" + }, + "countries": [ + "AZ", + "EG", + "TM" + ] + }, + { + "id": "squeeze_day", + "msgid": "Squeeze day", + "new_comment": "", + "comment": "Squeeze day.", + "messages": { + "en_US": "Squeeze day", + "sv": "Klämdag", + "th": "วันหยุดพิเศษ", + "uk": "Проміжний вихідний" + }, + "countries": [ + "SE" + ] + }, + { + "id": "state_banking_holiday", + "msgid": "State Banking Holiday", + "new_comment": "", + "comment": "State Banking Holiday.", + "messages": { + "en_US": "State Banking Holiday", + "gu": "રાજ્ય બેંકિંગ રજા", + "hi": "राज्य बैंकिंग अवकाश" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "state_charter_day", + "msgid": "State Charter Day", + "new_comment": "", + "comment": "State Charter Day.", + "messages": { + "en_FM": "State Charter Day", + "en_US": "State Charter Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "state_creation_day", + "msgid": "State Creation Day", + "new_comment": "", + "comment": "State Creation Day.", + "messages": { + "en_US": "State Creation Day", + "pt_BR": "Criação do Estado", + "uk": "День створення штату" + }, + "countries": [ + "BR" + ] + }, + { + "id": "state_flag_day", + "msgid": "State Flag Day", + "new_comment": "", + "comment": "State Flag Day.", + "messages": { + "en_US": "State Flag Day", + "ru": "День государственного флага", + "tk": "Türkmenistanyň Döwlet baýdagynyň güni" + }, + "countries": [ + "TM" + ] + }, + { + "id": "state_foundation_day", + "msgid": "State Foundation Day", + "new_comment": "", + "comment": "State Foundation Day.", + "messages": { + "en_US": "State Foundation Day", + "hu": "Az államalapítás ünnepe", + "uk": "День заснування держави" + }, + "countries": [ + "HU" + ] + }, + { + "id": "state_founding_day", + "msgid": "State Founding Day", + "new_comment": "", + "comment": "State Founding Day.", + "messages": { + "en_US": "State Founding Day", + "pt_BR": "Fundação do Estado", + "uk": "День заснування штату" + }, + "countries": [ + "BR" + ] + }, + { + "id": "state_funeral_for_former_president_mwai_kibaki", + "msgid": "State Funeral for Former President Mwai Kibaki", + "new_comment": "", + "comment": "State Funeral for Former President Mwai Kibaki.", + "messages": { + "en_KE": "State Funeral for Former President Mwai Kibaki", + "en_US": "State Funeral for Former President Mwai Kibaki", + "sw": "Mazishi ya Kiserikali ya Aliyekuwa Rais Mwai Kibaki" + }, + "countries": [ + "KE" + ] + }, + { + "id": "state_funeral_of_akilisi_pohiva", + "msgid": "State Funeral of Akilisi Pohiva", + "new_comment": "", + "comment": "State Funeral of Akilisi Pohiva.", + "messages": { + "en_US": "State Funeral of Akilisi Pohiva", + "to": "Meʻafakaʻeiki ʻo e Siteiti ʻAkilisi Pōhiva" + }, + "countries": [ + "TO" + ] + }, + { + "id": "state_funeral_of_emperor_sh_wa", + "msgid": "Emperor Shōwa Funeral Ceremony", + "new_comment": "", + "comment": "State Funeral of Emperor Shōwa.", + "messages": { + "en_US": "Emperor Shōwa Funeral Ceremony", + "ja": "大喪の礼", + "th": "พระราชพิธีพระบรมศพของสมเด็จพระจักรพรรดิโชวะ" + }, + "countries": [ + "JP" + ] + }, + { + "id": "state_funeral_of_honourable_ralph_t_o_neal", + "msgid": "State Funeral of Honourable Ralph T. O'Neal", + "new_comment": "", + "comment": "State Funeral of Honourable Ralph T. O'Neal.", + "messages": { + "en_US": "State Funeral of Honourable Ralph T. O'Neal", + "en_VG": "State Funeral of Honourable Ralph T. O'Neal" + }, + "countries": [ + "VG" + ] + }, + { + "id": "state_funeral_of_queen_elizabeth_ii", + "msgid": "State Funeral of Queen Elizabeth II", + "new_comment": "", + "comment": "State Funeral of Queen Elizabeth II.", + "messages": { + "en_GB": "State Funeral of Queen Elizabeth II", + "en_US": "State Funeral of Queen Elizabeth II", + "th": "พระราชพิธีพระบรมศพของสมเด็จพระราชินีนาถเอลิซาเบธที่ 2" + }, + "countries": [ + "GB" + ] + }, + { + "id": "state_holiday", + "msgid": "State Holiday", + "new_comment": "", + "comment": "State Holiday.", + "messages": { + "en_US": "State Holiday", + "th": "วันหยุดประจำรัฐ" + }, + "countries": [ + "US" + ] + }, + { + "id": "state_symbols_day", + "msgid": "State Symbols' Day", + "new_comment": "", + "comment": "State Symbols' Day.", + "messages": { + "en_US": "State Symbols' Day", + "hy": "Պետական խորհրդանիշների օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "state_worker_s_day", + "msgid": "State Worker's Day", + "new_comment": "", + "comment": "State Worker's Day.", + "messages": { + "en_US": "State Worker's Day", + "es": "Día del Trabajador del Estado", + "uk": "День державного службовця" + }, + "countries": [ + "AR" + ] + }, + { + "id": "statehood_day", + "msgid": "Statehood Day", + "new_comment": "", + "comment": "Statehood Day.", + "messages": { + "bn": "রাজ্য প্রতিষ্ঠা দিবস", + "bs": "Dan državnosti", + "cnr": "Dan državnosti", + "cs": "Den české státnosti", + "en_IN": "Statehood Day", + "en_US": "Statehood Day", + "gu": "રાજ્ય સ્થાપના દિવસ", + "hi": "राज्य स्थापना दिवस", + "hr": "Dan državnosti", + "kn": "ರಾಜ್ಯ ಸ್ಥಾಪನಾ ದಿನ", + "lt": "Valstybės (Lietuvos karaliaus Mindaugo karūnavimo) ir Tautiškos giesmės diena", + "ml": "സംസ്ഥാന രൂപീകരണ ദിനം", + "mr": "राज्य स्थापना दिन", + "pa": "ਰਾਜ ਸਥਾਪਨਾ ਦਿਵਸ", + "sk": "Deň českej štátnosti", + "sl": "dan državnosti", + "sr": { + "BA": "Дан државности", + "RS": "Дан државности Србије" + }, + "ta": "மாநில உருவாக்க நாள்", + "te": "రాష్ట్ర అవతరణ దినోత్సవం", + "th": "วันครบรอบการได้รัฐภาพ", + "uk": { + "BA": "День державності", + "CZ": "День чеської державності", + "HR": "День державності", + "LT": "День державності та День національного гімну", + "ME": "День державності", + "SI": "День державності" + } + }, + "countries": [ + "BA", + "CZ", + "HR", + "IN", + "LT", + "ME", + "RS", + "SI", + "US" + ] + }, + { + "id": "statia_day", + "msgid": "Statia Day", + "new_comment": "", + "comment": "Statia Day.", + "messages": { + "en_BQ": "Statia Day", + "en_US": "Statia Day", + "nl": "Statiadag", + "pap_BQ": "Dia di Statia" + }, + "countries": [ + "BQ" + ] + }, + { + "id": "statute_of_autonomy_of_melilla_day", + "msgid": "Statute of Autonomy of Melilla Day", + "new_comment": "", + "comment": "Statute of Autonomy of Melilla Day.", + "messages": { + "ca": "Estatut d'Autonomia de la Ciutat de Melilla", + "en_US": "Statute of Autonomy of Melilla Day", + "es": "Estatuto de Autonomía de la Ciudad de Melilla", + "th": "วันกฎธรรมนูญปกครองตนเองแห่งเมืองเมลียา", + "uk": "День Статуту автономії міста Мелілья" + }, + "countries": [ + "ES" + ] + }, + { + "id": "struggle_for_freedom_and_democracy_day", + "msgid": "Struggle for Freedom and Democracy Day", + "new_comment": "", + "comment": "Struggle for Freedom and Democracy Day.", + "messages": { + "cs": "Den boje za svobodu a demokracii", + "en_US": "Struggle for Freedom and Democracy Day", + "sk": "Deň boja za slobodu a demokraciu", + "uk": "День боротьби за свободу та демократію" + }, + "countries": [ + "CZ", + "SK" + ] + }, + { + "id": "struggle_for_freedom_and_democracy_day_and_international_students_day", + "msgid": "Struggle for Freedom and Democracy Day and International Students' Day", + "new_comment": "", + "comment": "Struggle for Freedom and Democracy Day and International Students' Day.", + "messages": { + "cs": "Den boje za svobodu a demokracii a Mezinárodní den studentstva", + "en_US": "Struggle for Freedom and Democracy Day and International Students' Day", + "sk": "Deň boja za slobodu a demokraciu a Medzinárodný deň študentstva", + "uk": "День боротьби за свободу та демократію і Міжнародний день студентів" + }, + "countries": [ + "CZ" + ] + }, + { + "id": "students_and_youth_day", + "msgid": "Students and Youth Day", + "new_comment": "", + "comment": "Students and Youth Day.", + "messages": { + "en_US": "Students and Youth Day", + "hy": "Ուսանողների եւ երիտասարդների օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "substitute_holiday", + "msgid": "Substitute Holiday", + "new_comment": "", + "comment": "Substitute Holiday.", + "messages": { + "en_US": "Substitute Holiday", + "ja": "振替休日", + "th": "วันหยุดชดเชย" + }, + "countries": [ + "JP" + ] + }, + { + "id": "substituted_date_format", + "msgid": "%m/%d/%Y", + "new_comment": "", + "comment": "Substituted date format.", + "messages": { + "ar": "%d/%m/%Y", + "az": "%d.%m.%Y", + "be": "%d.%m.%Y", + "bg": "%d.%m.%Y", + "en_US": "%m/%d/%Y", + "hu": "%Y. %m. %d.", + "hy": "%d.%m.%Y", + "kk": "%d.%m.%Y", + "ky": "%d.%m.%Y", + "lv": "%d.%m.%Y", + "my": "%d-%m-%Y", + "ru": "%d.%m.%Y", + "ru_KG": "%d.%m.%Y", + "th": "%d/%m/%Y", + "uk": "%d.%m.%Y", + "uz": "%d/%m %Y", + "vi": "%d/%m/%Y", + "zh_CN": "%Y-%m-%d", + "zh_TW": "%Y-%m-%d" + }, + "countries": [ + "AM", + "AZ", + "BG", + "BY", + "CN", + "HU", + "KG", + "KZ", + "LV", + "MM", + "RU", + "TW", + "UA", + "UZ", + "VN" + ] + }, + { + "id": "sukkot", + "msgid": "Sukkot", + "new_comment": "", + "comment": "Sukkot.", + "messages": { + "ar": "عيد المظلة", + "en_US": "Sukkot" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "sukkot_feast_of_tabernacles", + "msgid": "Sukkot", + "new_comment": "", + "comment": "Sukkot (Feast of Tabernacles).", + "messages": { + "en_US": "Sukkot", + "he": "סוכות", + "th": "วันสุคคต", + "uk": "Суккот" + }, + "countries": [ + "IL" + ] + }, + { + "id": "sultan_hassanal_bolkiah_s_birthday", + "msgid": "Sultan Hassanal Bolkiah's Birthday", + "new_comment": "", + "comment": "Sultan Hassanal Bolkiah's Birthday.", + "messages": { + "en_US": "Sultan Hassanal Bolkiah's Birthday", + "ms": "Hari Keputeraan KDYMM Sultan Brunei", + "th": "วันเฉลิมพระชนมพรรษาสมเด็จพระราชาธิบดีสุลต่านฮัสซานัล โบลเกียห์" + }, + "countries": [ + "BN" + ] + }, + { + "id": "sultan_hassanal_bolkiah_s_golden_jubilee_celebration", + "msgid": "Sultan Hassanal Bolkiah's Golden Jubilee", + "new_comment": "", + "comment": "Sultan Hassanal Bolkiah's Golden Jubilee celebration.", + "messages": { + "en_US": "Sultan Hassanal Bolkiah's Golden Jubilee", + "ms": "Jubli Emas Sultan Hassanal Bolkiah", + "th": "พระราชพิธีกาญจนาภิเษกสมเด็จพระราชาธิบดีสุลต่านฮัสซานัล โบลเกียห์" + }, + "countries": [ + "BN" + ] + }, + { + "id": "sultan_s_accession_day", + "msgid": "Sultan's Accession Day", + "new_comment": "", + "comment": "Sultan's Accession Day.", + "messages": { + "ar": "اليوم الوطني لتولي السلطان", + "en_US": "Sultan's Accession Day" + }, + "countries": [ + "OM" + ] + }, + { + "id": "summer_bank_holiday", + "msgid": "Summer Bank Holiday", + "new_comment": "", + "comment": "Summer Bank Holiday.", + "messages": { + "en_GB": "Summer Bank Holiday", + "en_US": "Summer Bank Holiday", + "th": "วันหยุดฤดูร้อนของธนาคาร" + }, + "countries": [ + "GB", + "GI" + ] + }, + { + "id": "summer_break", + "msgid": "Summer Break", + "new_comment": "", + "comment": "Summer Break.", + "messages": { + "de": "Sommerferien", + "en_US": "Summer Break", + "th": "ปิดเทอมฤดูร้อน", + "uk": "Літні канікули" + }, + "countries": [ + "DE" + ] + }, + { + "id": "summer_day", + "msgid": "Summer Day", + "new_comment": "", + "comment": "Summer Day.", + "messages": { + "en_US": "Summer Day", + "sq": "Dita e Verës", + "uk": "День літа" + }, + "countries": [ + "AL" + ] + }, + { + "id": "sunday", + "msgid": "Sunday", + "new_comment": "", + "comment": "Sunday.", + "messages": { + "en_US": "Sunday", + "no": "Søndag", + "sv": "Söndag", + "th": "วันอาทิตย์", + "uk": "Неділя" + }, + "countries": [ + "NO", + "SE" + ] + }, + { + "id": "susan_b_anthony_day", + "msgid": "Susan B. Anthony Day", + "new_comment": "", + "comment": "Susan B. Anthony Day.", + "messages": { + "en_US": "Susan B. Anthony Day", + "th": "วันซูซาน บี. แอนโทนี" + }, + "countries": [ + "US" + ] + }, + { + "id": "swami_dayanand_saraswati_s_birthday", + "msgid": "Swami Dayanand Saraswati's Birthday", + "new_comment": "", + "comment": "Swami Dayanand Saraswati's Birthday.", + "messages": { + "bn": "স্বামী দয়ানন্দ সরস্বতী জয়ন্তী", + "en_IN": "Swami Dayanand Saraswati's Jayanti", + "en_US": "Swami Dayanand Saraswati's Birthday", + "gu": "સ્વામી દયાનંદ સરસ્વતી જયંતિ", + "hi": "स्वामी दयानंद सरस्वती जयंती", + "kn": "ಸ್ವಾಮಿ ದಯಾನಂದ ಸರಸ್ವತಿ ಜಯಂತಿ", + "ml": "സ്വാമി ദയാനന്ദ സരസ്വതി ജയന്തി", + "mr": "स्वामी दयानंद सरस्वती जयंती", + "pa": "ਸਵਾਮੀ ਦਯਾਨੰਦ ਸਰਸਵਤੀ ਜਯੰਤੀ", + "ta": "சுவாமி தயானந்த சரஸ்வதி ஜெயந்தி", + "te": "స్వామి దయానంద్ సరస్వతి జయంతి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "syrian_revolution_day", + "msgid": "Syrian Revolution Day", + "new_comment": "", + "comment": "Syrian Revolution Day.", + "messages": { + "ar": "عيد ثورة سوريا", + "en_US": "Syrian Revolution Day" + }, + "countries": [ + "LY" + ] + }, + { + "id": "ta_anit_ester_fast_of_esther", + "msgid": "Ta'anit Ester", + "new_comment": "", + "comment": "Ta'anit Ester (Fast of Esther).", + "messages": { + "en_US": "Ta'anit Ester", + "he": "תענית אסתר", + "th": "วันทาอานิต เอสเธอร์", + "uk": "Тааніт-Естер" + }, + "countries": [ + "IL" + ] + }, + { + "id": "taba_liberation_day", + "msgid": "Taba Liberation Day", + "new_comment": "", + "comment": "Taba Liberation Day.", + "messages": { + "ar_EG": "عيد تحرير طابا", + "en_US": "Taba Liberation Day", + "fr": "Fête de la libération de Taba" + }, + "countries": [ + "EG" + ] + }, + { + "id": "taiwan_restoration_and_guningtou_victory_memorial_day", + "msgid": "Taiwan Restoration and Guningtou Victory Memorial Day", + "new_comment": "", + "comment": "Taiwan Restoration and Guningtou Victory Memorial Day.", + "messages": { + "en_US": "Taiwan Restoration and Guningtou Victory Memorial Day", + "th": "วันรำลึกการทวงคืนไต้หวันและชัยชนะยุทธการกู่หนิงโถว", + "zh_CN": "臺灣光復節", + "zh_TW": "臺灣光復暨金門古寧頭大捷紀念日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "taiwan_retrocession_day", + "msgid": "Taiwan Retrocession Day", + "new_comment": "", + "comment": "Taiwan Retrocession Day.", + "messages": { + "en_US": "Taiwan Retrocession Day", + "th": "วันฉลองกลับคืนสู่มาตุภูมิของไต้หวัน", + "zh_CN": "台湾光复节", + "zh_TW": "臺灣光復節" + }, + "countries": [ + "TW" + ] + }, + { + "id": "taiwan_united_nations_day", + "msgid": "Taiwan United Nations Day", + "new_comment": "", + "comment": "Taiwan United Nations Day.", + "messages": { + "en_US": "Taiwan United Nations Day", + "th": "วันรำลึกถึงบทบาทสาธารณรัฐจีน(ไต้หวัน)ในสหประชาชาติ", + "zh_CN": "台湾联合国日", + "zh_TW": "臺灣聯合國日" + }, + "countries": [ + "TW" + ] + }, + { + "id": "takai_commission_holiday", + "msgid": "Takai Commission Holiday", + "new_comment": "", + "comment": "Takai Commission Holiday.", + "messages": { + "en_NU": "Takai Commission Holiday", + "en_US": "Takai Commission Holiday" + }, + "countries": [ + "NU" + ] + }, + { + "id": "tamil_thai_pongal_day", + "msgid": "Tamil Thai Pongal Day", + "new_comment": "", + "comment": "Tamil Thai Pongal Day.", + "messages": { + "en_US": "Tamil Thai Pongal Day", + "si_LK": "දෙමළ තෛපොංැලල් දිනය", + "ta_LK": "தமிழ் தைப்பொங்கல் தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "tamu_lhochhar", + "msgid": "Tamu Lhochhar", + "new_comment": "", + "comment": "Tamu Lhochhar.", + "messages": { + "en_US": "Tamu Lhochhar", + "kn": "ತಾಮು ಲ್ಹೋಸಾರ್", + "ne": "तमु ल्हाेसार" + }, + "countries": [ + "NP" + ] + }, + { + "id": "tanzania_general_election_day", + "msgid": "Tanzania General Election Day", + "new_comment": "", + "comment": "Tanzania General Election Day.", + "messages": { + "en_US": "Tanzania General Election Day", + "sw": "Sikukuu ya Uchaguzi Mkuu wa Tanzania" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "taoism_day", + "msgid": "Taoism Day", + "new_comment": "", + "comment": "Taoism Day.", + "messages": { + "en_US": "Taoism Day", + "th": "วันเต๋า", + "zh_CN": "道教节", + "zh_TW": "道教節" + }, + "countries": [ + "TW" + ] + }, + { + "id": "tarrafal_de_s_o_nicolau_municipality_day", + "msgid": "Tarrafal de São Nicolau Municipality Day", + "new_comment": "", + "comment": "Tarrafal de São Nicolau Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Tarrafal de São Nicolau", + "en_US": "Tarrafal de São Nicolau Municipality Day", + "es": "Día del Municipio de Tarrafal de São Nicolau", + "fr": "Journée de la municipalité de Tarrafal de São Nicolau", + "pt_CV": "Dia do Município do Tarrafal de São Nicolau" + }, + "countries": [ + "CV" + ] + }, + { + "id": "tarrafal_de_santiago_municipality_day", + "msgid": "Tarrafal de Santiago Municipality Day", + "new_comment": "", + "comment": "Tarrafal de Santiago Municipality Day.", + "messages": { + "de": "Tag der Gemeinde Tarrafal de Santiago", + "en_US": "Tarrafal de Santiago Municipality Day", + "es": "Día del Municipio de Tarrafal de Santiago", + "fr": "Journée de la municipalité de Tarrafal de Santiago", + "pt_CV": "Dia do Município do Tarrafal de Santiago" + }, + "countries": [ + "CV" + ] + }, + { + "id": "tasua", + "msgid": "Tasua", + "new_comment": "", + "comment": "Tasua.", + "messages": { + "en_US": "Tasua", + "fa_IR": "تاسوعای حسینی" + }, + "countries": [ + "IR" + ] + }, + { + "id": "taxpayer_day", + "msgid": "Taxpayer Day", + "new_comment": "", + "comment": "Taxpayer Day.", + "messages": { + "en_US": "Taxpayer Day", + "hy": "Հարկ վճարողի օր" + }, + "countries": [ + "AM" + ] + }, + { + "id": "teacher_s_day", + "msgid": "Teacher's Day", + "new_comment": "", + "comment": "Teacher's Day.", + "messages": { + "ar": "عيد المعلم", + "en_US": "Teacher's Day", + "es": "Día del Maestro", + "hy": "Ուսուցչի օր", + "th": "วันครู", + "uk": "День учителя", + "zh_CN": "教师节", + "zh_TW": "教師節" + }, + "countries": [ + "AM", + "AR", + "TH", + "TW", + "YE" + ] + }, + { + "id": "teachers_and_instructors_day", + "msgid": "Teachers and Instructors Day", + "new_comment": "", + "comment": "Teachers and Instructors Day.", + "messages": { + "en_US": "Teachers and Instructors Day", + "uk": "День вчителя і наставника", + "uz": "Oʻqituvchi va murabbiylar kuni" + }, + "countries": [ + "UZ" + ] + }, + { + "id": "tehuelches_and_mapuches_declare_loyalty_to_the_argentine_flag", + "msgid": "Tehuelches and Mapuches declare loyalty to the Argentine flag", + "new_comment": "", + "comment": "Tehuelches and Mapuches declare loyalty to the Argentine flag.", + "messages": { + "en_US": "Tehuelches and Mapuches declare loyalty to the Argentine flag", + "es": "Tehuelches y Mapuches declaran lealtad a la bandera Argentina", + "uk": "День присяги теуелче та мапуче на вірність аргентинському прапору" + }, + "countries": [ + "AR" + ] + }, + { + "id": "telangana_formation_day", + "msgid": "Telangana Formation Day", + "new_comment": "", + "comment": "Telangana Formation Day.", + "messages": { + "bn": "তেলেঙ্গানা গঠন দিবস", + "en_IN": "Telangana Formation Day", + "en_US": "Telangana Formation Day", + "gu": "તેલંગાણા સ્થાપના દિવસ", + "hi": "तेलंगाना स्थापना दिवस", + "kn": "ತೆಲಂಗಾಣ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "തെലങ്കാന രൂപീകരണദിനം", + "mr": "तेलंगणा स्थापना दिन", + "pa": "ਤੇਲੰਗਾਨਾ ਗਠਨ ਦਿਵਸ", + "ta": "தெலுங்கானா உருவாக்க நாள்", + "te": "తెలంగాణ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "temporary_public_holiday", + "msgid": "Temporary Public Holiday", + "new_comment": "", + "comment": "Temporary Public Holiday.", + "messages": { + "en_US": "Temporary Public Holiday", + "ko": "임시공휴일", + "th": "วันหยุดพิเศษ (เพิ่มเติม)" + }, + "countries": [ + "KR" + ] + }, + { + "id": "tercentenary_holiday", + "msgid": "Tercentenary Holiday", + "new_comment": "", + "comment": "Tercentenary Holiday.", + "messages": { + "en_GB": "Tercentenary Holiday", + "en_US": "Tercentenary Holiday" + }, + "countries": [ + "GI" + ] + }, + { + "id": "territory_day", + "msgid": "Territory Day", + "new_comment": "", + "comment": "Territory Day.", + "messages": { + "en_CX": "Territory Day", + "en_US": "Territory Day", + "en_VG": "Territory Day", + "fr": "Fête du Territoire", + "th": "วันก่อตั้งดินแดน", + "uk": "День Території" + }, + "countries": [ + "CX", + "FR", + "VG" + ] + }, + { + "id": "terry_fox_day", + "msgid": "Terry Fox Day", + "new_comment": "", + "comment": "Terry Fox Day.", + "messages": { + "ar": "يوم تيري فوكس", + "en_CA": "Terry Fox Day", + "en_US": "Terry Fox Day", + "fr": "Journée Terry Fox", + "th": "วันเทร์รี ฟอกซ์" + }, + "countries": [ + "CA" + ] + }, + { + "id": "texas_independence_day", + "msgid": "Texas Independence Day", + "new_comment": "", + "comment": "Texas Independence Day.", + "messages": { + "en_US": "Texas Independence Day", + "th": "วันประกาศอิสรภาพเท็กซัส" + }, + "countries": [ + "US" + ] + }, + { + "id": "thadingyut_holidays", + "msgid": "Thadingyut Holidays", + "new_comment": "", + "comment": "Thadingyut Holidays.", + "messages": { + "en_US": "Thadingyut Holidays", + "my": "သီတင်းကျွတ်ပိတ်ရက်များ", + "th": "วันเทศกาลตะดิ่งจุ๊ต" + }, + "countries": [ + "MM" + ] + }, + { + "id": "thai_election_day", + "msgid": "Thai Election Day", + "new_comment": "", + "comment": "Thai Election Day.", + "messages": { + "en_US": "Thai Election Day", + "th": "วันเลือกตั้ง", + "uk": "День виборів" + }, + "countries": [ + "TH" + ] + }, + { + "id": "thai_national_flag_day", + "msgid": "Thai National Flag Day", + "new_comment": "", + "comment": "Thai National Flag Day.", + "messages": { + "en_US": "Thai National Flag Day", + "th": "วันพระราชทานธงชาติไทย", + "uk": "День національного прапора Таїланду" + }, + "countries": [ + "TH" + ] + }, + { + "id": "thai_veterans_day", + "msgid": "Thai Veterans Day", + "new_comment": "", + "comment": "Thai Veterans Day.", + "messages": { + "en_US": "Thai Veterans Day", + "th": "วันทหารผ่านศึก", + "uk": "День ветеранів" + }, + "countries": [ + "TH" + ] + }, + { + "id": "thaipusam", + "msgid": "Thaipusam", + "new_comment": "", + "comment": "Thaipusam.", + "messages": { + "en_MU": "Thaipoosam Cavadee", + "en_US": "Thaipusam", + "ms_MY": "Hari Thaipusam", + "th": "วันไทปูซัม" + }, + "countries": [ + "MU", + "MY" + ] + }, + { + "id": "thanksgiving_day", + "msgid": "Thanksgiving Day", + "new_comment": "", + "comment": "Thanksgiving Day.", + "messages": { + "ar": "عيد الشكر", + "en_CA": "Thanksgiving Day", + "en_FM": "Thanksgiving Day", + "en_GD": "Thanksgiving Day", + "en_LC": "Thanksgiving Day", + "en_NF": "Thanksgiving Day", + "en_US": "Thanksgiving Day", + "fr": "Action de grâce", + "gu": "થેંક્સગિવિંગ ડે", + "hi": "थैंक्सगिविंग डे", + "th": "วันขอบคุณพระเจ้า" + }, + "countries": [ + "CA", + "FM", + "GD", + "LC", + "NF", + "US", + "XCME", + "XNYS", + "XTSE" + ] + }, + { + "id": "the_battle_of_pichincha", + "msgid": "The Battle of Pichincha", + "new_comment": "", + "comment": "The Battle of Pichincha.", + "messages": { + "en_US": "The Battle of Pichincha", + "es": "Batalla de Pichincha", + "uk": "День битви біля Пічинча" + }, + "countries": [ + "EC" + ] + }, + { + "id": "the_buddha_s_birthday", + "msgid": "The Buddha's Birthday", + "new_comment": "", + "comment": "The Buddha's Birthday.", + "messages": { + "en_HK": "The Birthday of the Buddha", + "en_MO": "The Buddha's Birthday (Feast of Buddha)", + "en_US": "The Buddha's Birthday", + "mn": "Бурхан багшийн Их дүйчин өдөр", + "pt_MO": "Dia do Buda", + "th": "วันวิสาขบูชา", + "zh_CN": { + "HK": "佛诞", + "MO": "佛诞节", + "TW": "佛陀诞辰纪念日" + }, + "zh_HK": "佛誕", + "zh_MO": "佛誕節", + "zh_TW": "佛陀誕辰紀念日" + }, + "countries": [ + "HK", + "MN", + "MO", + "TW" + ] + }, + { + "id": "the_coronation_of_his_majesty_king_charles_iii", + "msgid": "The Coronation of His Majesty King Charles III", + "new_comment": "", + "comment": "The Coronation of His Majesty King Charles III.", + "messages": { + "en_BM": "The Coronation of His Majesty King Charles III", + "en_US": "The Coronation of His Majesty King Charles III" + }, + "countries": [ + "BM" + ] + }, + { + "id": "the_crown_prince_marriage_ceremony", + "msgid": "The Crown Prince Marriage Ceremony", + "new_comment": "", + "comment": "The Crown Prince marriage ceremony.", + "messages": { + "en_US": "The Crown Prince Marriage Ceremony", + "ja": "結婚の儀", + "th": "พิธีเสกสมรสมกุฎราชกุมาร" + }, + "countries": [ + "JP" + ] + }, + { + "id": "the_day_before_easter", + "msgid": "The Day before Easter", + "new_comment": "", + "comment": "The Day before Easter.", + "messages": { + "en_MO": "The Day before Easter", + "en_US": "The Day before Easter", + "pt_MO": "Véspera da Ressurreição de Cristo", + "th": "วันก่อนวันอาทิตย์อีสเตอร์", + "zh_CN": "复活节前日", + "zh_MO": "復活節前日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_day_following_double_ninth_festival", + "msgid": "The day following Double Ninth Festival", + "new_comment": "", + "comment": "The day following Double Ninth Festival.", + "messages": { + "en_HK": "The day following Chung Yeung Festival", + "en_US": "The day following Double Ninth Festival", + "th": "วันหลังวันไหว้บรรพบุรุษ", + "zh_CN": "重阳节翌日", + "zh_HK": "重陽節翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_dragon_boat_festival", + "msgid": "The day following Dragon Boat Festival", + "new_comment": "", + "comment": "The day following Dragon Boat Festival.", + "messages": { + "en_HK": "The day following Tuen Ng Festival", + "en_US": "The day following Dragon Boat Festival", + "th": "วันหลังวันไหว้บ๊ะจ่าง", + "zh_CN": "端午节翌日", + "zh_HK": "端午節翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_easter_monday", + "msgid": "The day following Easter Monday", + "new_comment": "", + "comment": "The day following Easter Monday.", + "messages": { + "en_HK": "The day following Easter Monday", + "en_US": "The day following Easter Monday", + "th": "วันหลังวันจันทร์อีสเตอร์", + "zh_CN": "复活节星期一翌日", + "zh_HK": "復活節星期一翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_good_friday", + "msgid": "The day following Good Friday", + "new_comment": "", + "comment": "The day following Good Friday.", + "messages": { + "en_HK": "The day following Good Friday", + "en_US": "The day following Good Friday", + "th": "วันหลังวันศุกร์ประเสริฐ", + "zh_CN": "耶稣受难节翌日", + "zh_HK": "耶穌受難節翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_hong_kong_s_a_r_establishment_day", + "msgid": "The day following Hong Kong S.A.R. Establishment Day", + "new_comment": "", + "comment": "The day following Hong Kong S.A.R. Establishment Day.", + "messages": { + "en_HK": "The day following Hong Kong Special Administrative Region Establishment Day", + "en_US": "The day following Hong Kong S.A.R. Establishment Day", + "th": "วันหลังวันสถาปนาเขตบริหารพิเศษฮ่องกง", + "zh_CN": "香港特别行政区成立纪念日翌日", + "zh_HK": "香港特別行政區成立紀念日翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_labor_day", + "msgid": "The day following Labor Day", + "new_comment": "", + "comment": "The day following Labor Day.", + "messages": { + "en_HK": "The day following Labour Day", + "en_US": "The day following Labor Day", + "th": "วันหลังวันแรงงาน", + "zh_CN": "劳动节翌日", + "zh_HK": "勞動節翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_mid_autumn_festival", + "msgid": "The Day following Mid-Autumn Festival", + "new_comment": "", + "comment": "The Day following Mid-Autumn Festival.", + "messages": { + "en_HK": "The day following the Chinese Mid-Autumn Festival", + "en_MO": "The Day following Chong Chao (Mid-Autumn) Festival", + "en_US": "The Day following Mid-Autumn Festival", + "pt_MO": "Dia seguinte ao Chong Chao (Bolo Lunar)", + "th": "วันหลังวันไหว้พระจันทร์", + "zh_CN": "中秋节翌日", + "zh_HK": "中秋節翌日", + "zh_MO": "中秋節翌日" + }, + "countries": [ + "HK", + "MO" + ] + }, + { + "id": "the_day_following_national_day", + "msgid": "The day following National Day", + "new_comment": "", + "comment": "The day following National Day.", + "messages": { + "en_HK": "The day following National Day", + "en_US": "The day following National Day", + "th": "วันหลังวันชาติจีน", + "zh_CN": "国庆日翌日", + "zh_HK": "國慶日翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_national_day_of_the_people_s_republic_of_china", + "msgid": "The day following National Day of the People's Republic of China", + "new_comment": "", + "comment": "The day following National Day of the People's Republic of China.", + "messages": { + "en_MO": "The day following National Day of the People's Republic of China", + "en_US": "The day following National Day of the People's Republic of China", + "pt_MO": "Dia seguinte à Implantação da República Popular da China", + "th": "วันหลังวันชาติจีน", + "zh_CN": "中华人民共和国国庆日翌日", + "zh_MO": "中華人民共和國國慶日翌日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_day_following_new_year_s_day", + "msgid": "The day following New Year's Day", + "new_comment": "", + "comment": "The day following New Year's Day.", + "messages": { + "en_HK": "The day following the first day of January", + "en_US": "The day following New Year's Day", + "th": "วันหลังวันขึ้นปีใหม่", + "zh_CN": "一月一日翌日", + "zh_HK": "一月一日翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_the_buddha_s_birthday", + "msgid": "The day following the Buddha's Birthday", + "new_comment": "", + "comment": "The day following the Buddha's Birthday.", + "messages": { + "en_HK": "The day following the Birthday of the Buddha", + "en_US": "The day following the Buddha's Birthday", + "th": "วันหลังวันวิสาขบูชา", + "zh_CN": "佛诞翌日", + "zh_HK": "佛誕翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_following_the_handover_of_macau_to_china_and_the_establishment_of_the_macau_special_administrative_region_of_the_people_s_republic_of_china", + "msgid": "The day following the Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "new_comment": "", + "comment": "The day following the Handover of Macau to China and the Establishment of the Macau Special\nAdministrative Region of the People's Republic of China.", + "messages": { + "en_MO": "The day following the Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "en_US": "The day following the Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "pt_MO": "Dia seguinte ao do Retorno de Macau à Mãe-Pátria e do Estabelecimento da Região Administrativa Especial de Macau da República Popular da China", + "th": "วันหลังวันส่งมอบมาเก๊ากลับคืนสู่จีนและการสถาปนาเขตบริหารพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน", + "zh_CN": "澳门回归祖国暨中华人民共和国澳门特别行政区成立日翌日", + "zh_MO": "澳門回歸祖國暨中華人民共和國澳門特別行政區成立日翌日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_day_following_tomb_sweeping_day", + "msgid": "The day following Tomb-Sweeping Day", + "new_comment": "", + "comment": "The day following Tomb-Sweeping Day.", + "messages": { + "en_HK": "The day following Ching Ming Festival", + "en_US": "The day following Tomb-Sweeping Day", + "th": "วันหลังวันเช็งเม้ง", + "zh_CN": "清明节翌日", + "zh_HK": "清明節翌日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_day_maldives_embraced_islam", + "msgid": "The Day Maldives Embraced Islam", + "new_comment": "", + "comment": "The Day Maldives Embraced Islam.", + "messages": { + "dv": "ރާއްޖެ އިސްލާމްވީ ދުވަސް", + "en_US": "The Day Maldives Embraced Islam" + }, + "countries": [ + "MV" + ] + }, + { + "id": "the_day_of_ascension_of_jesus_christ_into_heaven", + "msgid": "The Day of Ascension of Jesus Christ into Heaven", + "new_comment": "", + "comment": "The Day of Ascension of Jesus Christ into Heaven.", + "messages": { + "en_TL": "The Day of Ascension of Jesus Christ into Heaven", + "en_US": "The Day of Ascension of Jesus Christ into Heaven", + "pt_TL": "Dia da Ascensão de Jesus Cristo ao Céu", + "tet": "Loron Ascensão do Senhor Jesus Cristo hi'it An ba Lalehan nian", + "th": "วันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์" + }, + "countries": [ + "TL" + ] + }, + { + "id": "the_day_of_the_bombing", + "msgid": "The Day of the Bombing", + "new_comment": "", + "comment": "The Day of the Bombing.", + "messages": { + "en_GB": "The Day of the Bombing", + "en_US": "The Day of the Bombing", + "tvl": "Te Aso o te Paula" + }, + "countries": [ + "TV" + ] + }, + { + "id": "the_day_of_the_people_s_awakeners", + "msgid": "The Day of the People's Awakeners", + "new_comment": "", + "comment": "The Day of the People's Awakeners.", + "messages": { + "bg": "Ден на народните будители", + "en_US": "The Day of the People's Awakeners", + "uk": "День національних будителів" + }, + "countries": [ + "BG" + ] + }, + { + "id": "the_day_preceding_s", + "msgid": "The day preceding %s", + "new_comment": "", + "comment": "The day preceding %s.", + "messages": { + "en_US": "The day preceding %s", + "ko": "%s 전날", + "th": "วันก่อน%s" + }, + "countries": [ + "KR" + ] + }, + { + "id": "the_duke_of_edinburgh_s_visit", + "msgid": "The Duke of Edinburgh's Visit", + "new_comment": "", + "comment": "The Duke of Edinburgh's Visit.", + "messages": { + "en_GB": "The Duke of Edinburgh's Visit", + "en_US": "The Duke of Edinburgh's Visit" + }, + "countries": [ + "SH" + ] + }, + { + "id": "the_fallas", + "msgid": "The Fallas", + "new_comment": "", + "comment": "The Fallas.", + "messages": { + "ca": "Dilluns de les Falles", + "en_US": "The Fallas", + "es": "Lunes de Fallas", + "th": "วันจันทร์เทศกาลเผาหุ่นฟายัส", + "uk": "Фальяс" + }, + "countries": [ + "ES" + ] + }, + { + "id": "the_fifth_day_of_chinese_new_year", + "msgid": "The fifth day of Chinese New Year", + "new_comment": "", + "comment": "The fifth day of Chinese New Year.", + "messages": { + "en_MO": "The fifth day of Lunar New Year", + "en_US": "The fifth day of Chinese New Year", + "pt_MO": "5.º dia do Novo Ano Lunar", + "th": "วันตรุษจีนวันที่ห้า", + "zh_CN": "农历正月初五", + "zh_MO": "農曆正月初五" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_first_weekday_after_christmas_day", + "msgid": "The first weekday after Christmas Day", + "new_comment": "", + "comment": "The first weekday after Christmas Day.", + "messages": { + "en_HK": "The first weekday after Christmas Day", + "en_US": "The first weekday after Christmas Day", + "th": "วันหลังวันคริสต์มาส", + "zh_CN": "圣诞节后第一个周日", + "zh_HK": "聖誕節後第一個周日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_first_working_day_after_s", + "msgid": "The first working day after %s", + "new_comment": "", + "comment": "The first working day after %s.", + "messages": { + "en_MO": "The first working day after %s", + "en_US": "The first working day after %s", + "pt_MO": "1.º dia útil após %s", + "th": "วันทำงานวันแรกหลัง%s", + "zh_CN": "%s后首个工作日", + "zh_MO": "%s後首個工作日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_first_working_day_after_s_estimated", + "msgid": "The first working day after %s (estimated)", + "new_comment": "", + "comment": "The first working day after %s (estimated).", + "messages": { + "en_MO": "The first working day after %s (estimated)", + "en_US": "The first working day after %s (estimated)", + "pt_MO": "1.º dia útil após %s (estimado)", + "th": "วันทำงานวันแรกหลัง%s (โดยประมาณ)", + "zh_CN": "%s后首个工作日(推定)", + "zh_MO": "%s後首個工作日(推定)" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_fourth_day_of_chinese_new_year", + "msgid": "The fourth day of Chinese New Year", + "new_comment": "", + "comment": "The fourth day of Chinese New Year.", + "messages": { + "en_HK": "The fourth day of Lunar New Year", + "en_MO": "The fourth day of Lunar New Year", + "en_US": "The fourth day of Chinese New Year", + "pt_MO": "4.º dia do Novo Ano Lunar", + "th": "วันตรุษจีนวันที่สี่", + "zh_CN": { + "HK": "农历年初四", + "MO": "农历正月初四" + }, + "zh_HK": "農曆年初四", + "zh_MO": "農曆正月初四" + }, + "countries": [ + "HK", + "MO" + ] + }, + { + "id": "the_great_march_of_1949_and_restoration_day", + "msgid": "The Great March of 1949 and Restoration Day", + "new_comment": "", + "comment": "The Great March of 1949 and Restoration Day.", + "messages": { + "en_US": "The Great March of 1949 and Restoration Day", + "en_VG": "The Great March of 1949 and Restoration Day" + }, + "countries": [ + "VG" + ] + }, + { + "id": "the_handover_of_macau_to_china_and_the_establishment_of_the_macau_special_administrative_region_of_the_people_s_republic_of_china", + "msgid": "The Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "new_comment": "", + "comment": "The Handover of Macau to China and the Establishment of the Macau Special Administrative Region\nof the People's Republic of China.", + "messages": { + "en_MO": "The Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "en_US": "The Handover of Macau to China and the Establishment of the Macau Special Administrative Region of the People's Republic of China", + "pt_MO": "Dia do Retorno de Macau à Mãe-Pátria e do Estabelecimento da Região Administrativa Especial de Macau da República Popular da China", + "th": "วันส่งมอบมาเก๊ากลับคืนสู่จีนและการสถาปนาเขตบริหารพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน", + "zh_CN": "澳门回归祖国暨中华人民共和国澳门特别行政区成立日", + "zh_MO": "澳門回歸祖國暨中華人民共和國澳門特別行政區成立日" + }, + "countries": [ + "MO" + ] + }, + { + "id": "the_king_s_birthday", + "msgid": "The King's Birthday", + "new_comment": "", + "comment": "The King's Birthday.", + "messages": { + "en_US": "The King's Birthday", + "th": "เฉลิมพระชนมพรรษา", + "uk": "День народження Його Величності" + }, + "countries": [ + "TH" + ] + }, + { + "id": "the_mwalimu_nyerere_day_and_climax_of_the_uhuru_torch_race", + "msgid": "The Mwalimu Nyerere Day and Climax of the Uhuru Torch Race", + "new_comment": "", + "comment": "The Mwalimu Nyerere Day and Climax of the Uhuru Torch Race.", + "messages": { + "en_US": "The Mwalimu Nyerere Day and Climax of the Uhuru Torch Race", + "sw": "Kumbukumbu ya Mwalimu Nyerere na Kilele cha mbio za Mwenge" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "the_national_day_for_wildlife_and_aquatic_animal_conservation", + "msgid": "The National Day for Wildlife and Aquatic Animal Conservation", + "new_comment": "", + "comment": "The National Day for Wildlife and Aquatic Animal Conservation.", + "messages": { + "en_US": "The National Day for Wildlife and Aquatic Animal Conservation", + "lo": "ວັນປ່ອຍປາ ແລະ ວັນອະນຸລັກສັດນ້ຳ-ສັດປ່າແຫ່ງຊາດ", + "th": "วันอนุรักษ์สัตว์น้ำ สัตว์ป่า และวันปล่อยปลาแห่งชาติ" + }, + "countries": [ + "LA" + ] + }, + { + "id": "the_queen_s_birthday", + "msgid": "The Queen's Birthday", + "new_comment": "", + "comment": "The Queen's Birthday.", + "messages": { + "en_GS": "The Queen's Birthday", + "en_US": "The Queen's Birthday" + }, + "countries": [ + "GS" + ] + }, + { + "id": "the_queen_s_platinum_jubilee", + "msgid": "The Queen's Platinum Jubilee", + "new_comment": "", + "comment": "The Queen's Platinum Jubilee.", + "messages": { + "en_GS": "The Queen's Platinum Jubilee", + "en_US": "The Queen's Platinum Jubilee" + }, + "countries": [ + "GS" + ] + }, + { + "id": "the_royal_queensland_show", + "msgid": "The Royal Queensland Show", + "new_comment": "", + "comment": "The Royal Queensland Show.", + "messages": { + "en_AU": "The Royal Queensland Show", + "en_US": "The Royal Queensland Show", + "th": "เทศกาลรอยัลควีนส์แลนด์โชว์" + }, + "countries": [ + "AU" + ] + }, + { + "id": "the_second_day_following_mid_autumn_festival", + "msgid": "The Second Day following Mid-Autumn Festival", + "new_comment": "", + "comment": "The Second Day following Mid-Autumn Festival.", + "messages": { + "en_HK": "The second day following the Chinese Mid-Autumn Festival", + "en_US": "The Second Day following Mid-Autumn Festival", + "th": "วันไหว้พระจันทร์วันที่สอง", + "zh_CN": "中秋节后第二日", + "zh_HK": "中秋節後第二日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_second_day_of_chinese_new_year", + "msgid": "The second day of Chinese New Year", + "new_comment": "", + "comment": "The second day of Chinese New Year.", + "messages": { + "en_HK": "The second day of Lunar New Year", + "en_MO": "The second day of Lunar New Year", + "en_US": "The second day of Chinese New Year", + "pt_MO": "2.º dia do Novo Ano Lunar", + "th": "วันตรุษจีนวันที่สอง", + "zh_CN": { + "HK": "农历年初二", + "MO": "农历正月初二" + }, + "zh_HK": "農曆年初二", + "zh_MO": "農曆正月初二" + }, + "countries": [ + "HK", + "MO" + ] + }, + { + "id": "the_second_day_of_s", + "msgid": "The second day of %s", + "new_comment": "", + "comment": "The second day of %s.", + "messages": { + "en_US": "The second day of %s", + "ko": "%s 다음날", + "th": "วันหลัง%s" + }, + "countries": [ + "KR" + ] + }, + { + "id": "the_second_weekday_after_christmas_day", + "msgid": "The second weekday after Christmas Day", + "new_comment": "", + "comment": "The second weekday after Christmas Day.", + "messages": { + "en_HK": "The second weekday after Christmas Day", + "en_US": "The second weekday after Christmas Day", + "th": "วันที่สองหลังวันคริสต์มาส", + "zh_CN": "圣诞节后第二个周日", + "zh_HK": "聖誕節後第二個周日" + }, + "countries": [ + "HK" + ] + }, + { + "id": "the_sheikh_abeid_amani_karume_day", + "msgid": "The Sheikh Abeid Amani Karume Day", + "new_comment": "", + "comment": "The Sheikh Abeid Amani Karume Day.", + "messages": { + "en_US": "The Sheikh Abeid Amani Karume Day", + "sw": "Siku ya kumbukumbu ya Rais wa Kwanza wa Serikali ya Mapinduzi Zanzibar Sheikh Abeid Amani Karume" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "the_sultan_of_johor_hol", + "msgid": "The Sultan of Johor Hol", + "new_comment": "", + "comment": "The Sultan of Johor Hol.", + "messages": { + "en_US": "The Sultan of Johor Hol", + "ms_MY": "Hari Hol Almarhum Sultan Iskandar", + "th": "วันคล้ายวันสวรรคตสุลต่านแห่งรัฐยะโฮร์องค์ก่อน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "the_sultan_of_pahang_hol", + "msgid": "The Sultan of Pahang Hol", + "new_comment": "", + "comment": "The Sultan of Pahang Hol.", + "messages": { + "en_US": "The Sultan of Pahang Hol", + "ms_MY": "Hari Hol Sultan Pahang", + "th": "วันคล้ายวันสิ้นพระชนม์สุลต่านแห่งรัฐปะหังองค์ก่อน" + }, + "countries": [ + "MY" + ] + }, + { + "id": "the_third_day_of_chinese_new_year", + "msgid": "The third day of Chinese New Year", + "new_comment": "", + "comment": "The third day of Chinese New Year.", + "messages": { + "en_HK": "The third day of Lunar New Year", + "en_MO": "The third day of Lunar New Year", + "en_US": "The third day of Chinese New Year", + "pt_MO": "3.º dia do Novo Ano Lunar", + "th": "วันตรุษจีนวันที่สาม", + "zh_CN": { + "HK": "农历年初三", + "MO": "农历正月初三" + }, + "zh_HK": "農曆年初三", + "zh_MO": "農曆正月初三" + }, + "countries": [ + "HK", + "MO" + ] + }, + { + "id": "thimphu_drubchoe", + "msgid": "Thimphu Drubchoe", + "new_comment": "", + "comment": "Thimphu Drubchoe.", + "messages": { + "dz": "ཐིམ་རྫོང་ལྷ་མོའི་དངོས་འཆམ་མཇལ་རྒྱུའི་ངལ་གསོ།", + "en_US": "Thimphu Drubchoe" + }, + "countries": [ + "BT" + ] + }, + { + "id": "thimphu_tshechu", + "msgid": "Thimphu Tshechu", + "new_comment": "", + "comment": "Thimphu Tshechu.", + "messages": { + "dz": "ཐིམ་ཕུ་ཚེས་བཅུའི་ངལ་གསོ།", + "en_US": "Thimphu Tshechu" + }, + "countries": [ + "BT" + ] + }, + { + "id": "third_day_of_lunar_new_year", + "msgid": "Third Day of Lunar New Year", + "new_comment": "", + "comment": "Third Day of Lunar New Year.", + "messages": { + "en_US": "Third Day of Lunar New Year", + "th": "วันตรุษเต๊ตวันที่สาม", + "vi": "Mùng ba Tết Nguyên Đán" + }, + "countries": [ + "VN" + ] + }, + { + "id": "third_term_constitutional_referendum_day", + "msgid": "Third-term Constitutional Referendum Day", + "new_comment": "", + "comment": "Third-term Constitutional Referendum Day.", + "messages": { + "en_US": "Third-term Constitutional Referendum Day", + "ko": "삼선 헌법 개정 국민투표일", + "th": "วันลงประชามติแก้ไขรัฐธรรมนูญเรื่องการเข้ารับตำแหน่งสมัยที่ 3" + }, + "countries": [ + "KR" + ] + }, + { + "id": "thiruvalluvar_day_mattu_pongal", + "msgid": "Thiruvalluvar Day / Mattu Pongal", + "new_comment": "", + "comment": "Thiruvalluvar Day / Mattu Pongal.", + "messages": { + "bn": "তিরুভাল্লুভার দিবস / মাট্টু পোঙ্গল", + "en_IN": "Thiruvalluvar Day / Mattu Pongal", + "en_US": "Thiruvalluvar Day / Mattu Pongal", + "gu": "તિરુવલ્લુવર દિવસ / મટ્ટુ પોંગલ", + "hi": "तिरुवल्लुवर दिवस / मट्टू पोंगल", + "kn": "ತಿರುವಳ್ಳುವರ್ ದಿನೋತ್ಸವ / ಮಟ್ಟು ಪೊಂಗಲ್", + "ml": "തിരുവള്ളുവർ ദിനം / മട്ടു പൊങ്കൽ", + "mr": "तिरुवल्लुवर दिन / मट्टू पोंगल", + "pa": "ਤਿਰੂਵੱਲੂਵਰ ਦਿਵਸ / ਮੱਟੂ ਪੋਂਗਲ", + "ta": "திருவள்ளுவர் நாள் / மாட்டுப் பொங்கல்", + "te": "తిరువళ్ళువర్ దినోత్సవం / మట్టు పొంగల్" + }, + "countries": [ + "IN" + ] + }, + { + "id": "three_kings_day", + "msgid": "Three Kings Day", + "new_comment": "", + "comment": "Three Kings Day.", + "messages": { + "en_US": "Three Kings Day", + "th": "วันสมโภชพระคริสต์แสดงองค์" + }, + "countries": [ + "US" + ] + }, + { + "id": "throne_day", + "msgid": "Throne Day", + "new_comment": "", + "comment": "Throne Day.", + "messages": { + "ar": "عيد العرش", + "en_US": "Throne Day", + "fr": "Fête du Trône" + }, + "countries": [ + "MA" + ] + }, + { + "id": "tihar_holiday", + "msgid": "Tihar Holiday", + "new_comment": "", + "comment": "Tihar Holiday.", + "messages": { + "en_US": "Tihar Holiday", + "kn": "ತಿಹಾರ್ ರಜೆ", + "ne": "तिहार बिदा" + }, + "countries": [ + "NP" + ] + }, + { + "id": "tinkunaco_festival", + "msgid": "Tinkunaco Festival", + "new_comment": "", + "comment": "Tinkunaco Festival.", + "messages": { + "en_US": "Tinkunaco Festival", + "es": "Día del Tinkunaco Riojano", + "uk": "Свято Тінкунако" + }, + "countries": [ + "AR" + ] + }, + { + "id": "tiradentes_day", + "msgid": "Tiradentes' Day", + "new_comment": "", + "comment": "Tiradentes' Day.", + "messages": { + "en_US": "Tiradentes' Day", + "pt_BR": "Tiradentes", + "uk": "День Тирадентіса" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "tiradentes_execution", + "msgid": "Tiradentes' Execution", + "new_comment": "", + "comment": "Tiradentes' Execution.", + "messages": { + "en_US": "Tiradentes' Execution", + "pt_BR": "Execução de Tiradentes", + "uk": "День страти Тирадентіса" + }, + "countries": [ + "BR" + ] + }, + { + "id": "tisha_b_av_tisha_b_av_fast", + "msgid": "Tisha B'Av", + "new_comment": "", + "comment": "Tisha B'Av (Tisha B'Av, fast).", + "messages": { + "en_US": "Tisha B'Av", + "he": "תשעה באב", + "th": "วันทิชอา เบอัฟ", + "uk": "Тиша Бе-Ав" + }, + "countries": [ + "IL" + ] + }, + { + "id": "tishreen_liberation_war_day", + "msgid": "Tishreen Liberation War Day", + "new_comment": "", + "comment": "Tishreen Liberation War Day.", + "messages": { + "ar": "ذكرى حرب تشرين التحريرية", + "en_US": "Tishreen Liberation War Day" + }, + "countries": [ + "SY" + ] + }, + { + "id": "to_allow_offices_to_catch_up_on_work", + "msgid": "To allow offices to catch up on work", + "new_comment": "", + "comment": "To allow offices to catch up on work.", + "messages": { + "en_US": "To allow offices to catch up on work", + "gu": "ઓફિસોને તેમનું બાકી કામ પૂરું કરવા દેવા માટે", + "hi": "कार्यालयों को अपना काम पूरा करने की अनुमति देने के लिए" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "tokehega_day", + "msgid": "Tokehega Day", + "new_comment": "", + "comment": "Tokehega Day.", + "messages": { + "en_TK": "Tokehega Day", + "en_US": "Tokehega Day", + "tkl": "Aho o te Tokehega" + }, + "countries": [ + "TK" + ] + }, + { + "id": "tomb_sweeping_day", + "msgid": "Tomb-Sweeping Day", + "new_comment": "", + "comment": "Tomb-Sweeping Day.", + "messages": { + "en_HK": "Ching Ming Festival", + "en_MO": "Ching Ming Festival", + "en_US": "Tomb-Sweeping Day", + "pt_MO": "Cheng Ming (Dia de Finados)", + "th": "วันเช็งเม้ง", + "zh_CN": { + "CN": "清明节", + "HK": "清明节", + "MO": "清明节", + "TW": "民族扫墓节" + }, + "zh_HK": "清明節", + "zh_MO": "清明節", + "zh_TW": { + "CN": "清明節", + "TW": "民族掃墓節" + } + }, + "countries": [ + "CN", + "HK", + "MO", + "TW" + ] + }, + { + "id": "tonga_rugby_public_holiday", + "msgid": "Tonga Rugby Public Holiday", + "new_comment": "", + "comment": "Tonga Rugby Public Holiday.", + "messages": { + "en_US": "Tonga Rugby Public Holiday", + "to": "ʻAho malolo ʻakapulu ʻa Tonga" + }, + "countries": [ + "TO" + ] + }, + { + "id": "toothfish_day", + "msgid": "Toothfish Day", + "new_comment": "", + "comment": "Toothfish Day.", + "messages": { + "en_GS": "Toothfish Day", + "en_US": "Toothfish Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "toothfish_end_of_season_day", + "msgid": "Toothfish (End of Season) Day", + "new_comment": "", + "comment": "Toothfish (End of Season) Day.", + "messages": { + "en_GS": "Toothfish (end of season) Day", + "en_US": "Toothfish (End of Season) Day" + }, + "countries": [ + "GS" + ] + }, + { + "id": "tourism_week", + "msgid": "Tourism Week", + "new_comment": "", + "comment": "Tourism Week.", + "messages": { + "en_US": "Tourism Week", + "es": "Semana de Turismo", + "uk": "Тиждень туризму" + }, + "countries": [ + "UY" + ] + }, + { + "id": "town_meeting_day", + "msgid": "Town Meeting Day", + "new_comment": "", + "comment": "Town Meeting Day.", + "messages": { + "en_US": "Town Meeting Day", + "th": "วันประชาคมท้องถิ่น" + }, + "countries": [ + "US" + ] + }, + { + "id": "traditional_day_of_offering", + "msgid": "Traditional Day of Offering", + "new_comment": "", + "comment": "Traditional Day of Offering.", + "messages": { + "dz": "སྔར་སྲོལ་འབུལ་བའི་ལོ་གསར་གྱི་ངལ་གསོལ།", + "en_US": "Traditional Day of Offering" + }, + "countries": [ + "BT" + ] + }, + { + "id": "transfer_day", + "msgid": "Transfer Day", + "new_comment": "", + "comment": "Transfer Day.", + "messages": { + "en_US": "Transfer Day", + "th": "วันส่งมอบดินแดน" + }, + "countries": [ + "US" + ] + }, + { + "id": "transit_strike", + "msgid": "Transit strike", + "new_comment": "", + "comment": "Transit strike.", + "messages": { + "en_US": "Transit strike", + "gu": "પરિવહન હડતાલ", + "hi": "परिवहन हड़ताल" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "translators_day", + "msgid": "Translators' Day", + "new_comment": "", + "comment": "Translators' Day.", + "messages": { + "en_US": "Translators' Day", + "hy": "Թարգմանչաց տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "tree_planting_day", + "msgid": "Tree Planting Day", + "new_comment": "", + "comment": "Tree Planting Day.", + "messages": { + "en_US": "Tree Planting Day", + "ko": "식목일", + "th": "วันปลูกต้นไม้" + }, + "countries": [ + "KR" + ] + }, + { + "id": "truman_day", + "msgid": "Truman Day", + "new_comment": "", + "comment": "Truman Day.", + "messages": { + "en_US": "Truman Day", + "th": "วันทรูแมน" + }, + "countries": [ + "US" + ] + }, + { + "id": "tt_bank_holiday", + "msgid": "TT Bank Holiday", + "new_comment": "", + "comment": "TT Bank Holiday.", + "messages": { + "en_GB": "TT Bank Holiday", + "en_US": "TT Bank Holiday", + "th": "วันแข่งไอร์ออฟแมน ทีที" + }, + "countries": [ + "IM" + ] + }, + { + "id": "turkish_language_teaching_day", + "msgid": "Turkish Language Teaching Day", + "new_comment": "", + "comment": "Turkish Language Teaching Day.", + "messages": { + "en_US": "Turkish Language Teaching Day", + "mk": "Ден на настава на турски јазик", + "uk": "День викладання турецької мови" + }, + "countries": [ + "MK" + ] + }, + { + "id": "tuvalu_day", + "msgid": "Tuvalu Day", + "new_comment": "", + "comment": "Tuvalu Day.", + "messages": { + "en_GB": "Tuvalu Day", + "en_US": "Tuvalu Day", + "tvl": "Tutokotasi" + }, + "countries": [ + "TV" + ] + }, + { + "id": "twelfth_night", + "msgid": "Twelfth Night", + "new_comment": "", + "comment": "Twelfth Night.", + "messages": { + "en_US": "Twelfth Night", + "sv": "Trettondagsafton", + "th": "วันก่อนวันสมโภชพระคริสต์แสดงองค์", + "uk": "Дванадцята ніч" + }, + "countries": [ + "SE" + ] + }, + { + "id": "tynwald_day", + "msgid": "Tynwald Day", + "new_comment": "", + "comment": "Tynwald Day.", + "messages": { + "en_GB": "Tynwald Day", + "en_US": "Tynwald Day", + "th": "วันไทน์วอลด์" + }, + "countries": [ + "IM" + ] + }, + { + "id": "ugadi", + "msgid": "Ugadi", + "new_comment": "", + "comment": "Ugadi.", + "messages": { + "bn": "উগাদি", + "en_IN": "Ugadi", + "en_MU": "Ougadi", + "en_US": "Ugadi", + "gu": "ઉગાડી", + "hi": "उगादि", + "kn": "ಯುಗಾದಿ ಹಬ್ಬ", + "ml": "ഉഗാദി", + "mr": "उगाडी", + "pa": "ਉਗਾਦੀ", + "ta": "உகாதி", + "te": "ఉగాది" + }, + "countries": [ + "IN", + "MU" + ] + }, + { + "id": "uk_royal_wedding", + "msgid": "UK Royal Wedding", + "new_comment": "", + "comment": "UK Royal Wedding.", + "messages": { + "en_GB": "UK Royal Wedding", + "en_US": "UK Royal Wedding" + }, + "countries": [ + "KY" + ] + }, + { + "id": "ukrainian_statehood_day", + "msgid": "Ukrainian Statehood Day", + "new_comment": "", + "comment": "Ukrainian Statehood Day.", + "messages": { + "ar": "يوم الدولة الأوكرانية", + "en_US": "Ukrainian Statehood Day", + "th": "วันรัฐยูเครน", + "uk": "День Української Державності" + }, + "countries": [ + "UA" + ] + }, + { + "id": "umuganura_day", + "msgid": "Umuganura Day", + "new_comment": "", + "comment": "Umuganura Day.", + "messages": { + "en_US": "Umuganura Day", + "fr": "Journée d'Umuganura", + "rw": "Umunsi w'Umuganura" + }, + "countries": [ + "RW" + ] + }, + { + "id": "unduvap_full_moon_poya_day", + "msgid": "Unduvap Full Moon Poya Day", + "new_comment": "", + "comment": "Unduvap Full Moon Poya Day.", + "messages": { + "en_US": "Unduvap Full Moon Poya Day", + "si_LK": "උඳුවප් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "உந்துவப் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "unification_day", + "msgid": "Unification Day", + "new_comment": "", + "comment": "Unification Day.", + "messages": { + "bg": "Ден на Съединението", + "en_US": "Unification Day", + "uk": "День обʼєднання" + }, + "countries": [ + "BG" + ] + }, + { + "id": "unification_of_prekmurje_slovenes_with_the_mother_nation", + "msgid": "Unification of Prekmurje Slovenes with the Mother Nation", + "new_comment": "", + "comment": "Unification of Prekmurje Slovenes with the Mother Nation.", + "messages": { + "en_US": "Unification of Prekmurje Slovenes with the Mother Nation", + "sl": "združitev prekmurskih Slovencev z matičnim narodom", + "uk": "Обʼєднання прекмурських словенців з материнською нацією" + }, + "countries": [ + "SI" + ] + }, + { + "id": "unification_of_the_romanian_principalities_day", + "msgid": "Unification of the Romanian Principalities Day", + "new_comment": "", + "comment": "Unification of the Romanian Principalities Day.", + "messages": { + "en_US": "Unification of the Romanian Principalities Day", + "ro": "Ziua Unirii Principatelor Române", + "uk": "День обʼєднання Дунайських князівств" + }, + "countries": [ + "RO" + ] + }, + { + "id": "union_celebrations", + "msgid": "Union Celebrations", + "new_comment": "", + "comment": "Union Celebrations.", + "messages": { + "en_US": "Union Celebrations", + "sw": "Muungano wa Tanzania" + }, + "countries": [ + "TZ" + ] + }, + { + "id": "union_day", + "msgid": "Union Day", + "new_comment": "", + "comment": "Union Day.", + "messages": { + "en_US": "Union Day", + "my": "ပြည်ထောင်စုနေ့", + "sw": "Sikukuu ya Muungano", + "th": "วันสหภาพ" + }, + "countries": [ + "MM", + "TZ" + ] + }, + { + "id": "united_nations_day", + "msgid": "United Nations Day", + "new_comment": "", + "comment": "United Nations Day.", + "messages": { + "en_FM": "United Nations Day", + "en_US": "United Nations Day", + "fi": "YK:n päivä", + "ko": "국제연합일", + "sv_FI": "FN-dagen", + "th": "วันสหประชาชาติ", + "uk": "День ООН" + }, + "countries": [ + "FI", + "FM", + "KR", + "TH" + ] + }, + { + "id": "unity_day", + "msgid": "Unity Day", + "new_comment": "", + "comment": "Unity Day.", + "messages": { + "ar": "اليوم الوطني للجمهورية اليمنية", + "en_US": "Unity Day", + "fr_BI": "Fête de l'Unité", + "ru": "День народного единства", + "th": "วันเอกภาพแห่งชาติ", + "zh_CN": "人民团结日" + }, + "countries": [ + "BI", + "RU", + "YE" + ] + }, + { + "id": "universal_fraternization_day", + "msgid": "Universal Fraternization Day", + "new_comment": "", + "comment": "Universal Fraternization Day.", + "messages": { + "en_US": "Universal Fraternization Day", + "pt_BR": "Confraternização Universal", + "uk": "День всесвітнього братання" + }, + "countries": [ + "BR", + "BVMF" + ] + }, + { + "id": "up_formation_day", + "msgid": "UP Formation Day", + "new_comment": "", + "comment": "UP Formation Day.", + "messages": { + "bn": "উত্তরপ্রদেশ গঠন দিবস", + "en_IN": "UP Formation Day", + "en_US": "UP Formation Day", + "gu": "યુપી સ્થાપના દિવસ", + "hi": "यूपी स्थापना दिवस", + "kn": "ಉತ್ತರ ಪ್ರದೇಶ ಸ್ಥಾಪನಾ ದಿನ", + "ml": "ഉത്തർപ്രദേശ് രൂപീകരണദിനം", + "mr": "यूपी स्थापना दिन", + "pa": "ਯੂਪੀ ਗਠਨ ਦਿਵਸ", + "ta": "உத்தரப்பிரதேச உருவாக்க நாள்", + "te": "ఉత్తర ప్రదేశ్ అవతరణ దినోత్సవం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "uprising_day", + "msgid": "Uprising Day", + "new_comment": "", + "comment": "Uprising Day.", + "messages": { + "ar": "يوم الانتفاضة", + "en_US": "Uprising Day", + "es": "Día de la insurrección", + "fr": "Jour de l'insurrection" + }, + "countries": [ + "EH" + ] + }, + { + "id": "urua_u_and_cunha_martyrs_day", + "msgid": "Uruaçu and Cunhaú Martyrs Day", + "new_comment": "", + "comment": "Uruaçu and Cunhaú Martyrs Day.", + "messages": { + "en_US": "Uruaçu and Cunhaú Martyrs Day", + "pt_BR": "Mártires de Cunhaú e Uruaçu", + "uk": "День мучеників Куньяу та Уруасу" + }, + "countries": [ + "BR" + ] + }, + { + "id": "utamaduni_day", + "msgid": "Utamaduni Day", + "new_comment": "", + "comment": "Utamaduni Day.", + "messages": { + "en_KE": "Utamaduni Day", + "en_US": "Utamaduni Day", + "sw": "Siku ya Utamaduni" + }, + "countries": [ + "KE" + ] + }, + { + "id": "uzhavar_thirunal", + "msgid": "Uzhavar Thirunal", + "new_comment": "", + "comment": "Uzhavar Thirunal.", + "messages": { + "bn": "উঝাভার থিরুনাল", + "en_IN": "Uzhavar Thirunal", + "en_US": "Uzhavar Thirunal", + "gu": "ઉઝાવર થિરુનલ", + "hi": "उझावर थिरुनल", + "kn": "ಉಳವರ್ ತಿರುನಾಲ್", + "ml": "ഉഴവർ തിരുനാൾ", + "mr": "उझावर थिरुनल", + "pa": "ਉਝਾਵਰ ਥਿਰੂਨਲ", + "ta": "உழவர் திருநாள்", + "te": "రైతుల పండుగ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "v_centennial_of_the_circumnavigation_of_the_world", + "msgid": "V Centennial of the Circumnavigation of the World", + "new_comment": "", + "comment": "V Centennial of the Circumnavigation of the World.", + "messages": { + "ca": "V Centenari de la Volta al Món", + "en_US": "V Centennial of the Circumnavigation of the World", + "es": "V Centenario Vuelta al Mundo", + "th": "วันครบรอบ 500 ปีการเดินเรือรอบโลก", + "uk": "V Сторіччя навколосвітньої подорожі" + }, + "countries": [ + "ES" + ] + }, + { + "id": "v_j_day_end_of_world_war_ii", + "msgid": "V-J Day. End of World War II", + "new_comment": "", + "comment": "V-J Day. End of World War II.", + "messages": { + "en_US": "V-J Day. End of World War II", + "gu": "વી-જે ડે. બીજા વિશ્વયુદ્ધનો અંત", + "hi": "वी-जे डे। द्वितीय विश्व युद्ध का अंत" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "vaisakhadi", + "msgid": "Vaisakhadi", + "new_comment": "", + "comment": "Vaisakhadi.", + "messages": { + "bn": "বৈশাখাদি", + "en_IN": "Vaisakhadi", + "en_US": "Vaisakhadi", + "gu": "વૈશાખડી", + "hi": "वैसाखडी", + "kn": "ವೈಶಾಖಾದಿ", + "ml": "വൈശാഖാദി", + "mr": "वैशाखाडी", + "pa": "ਵੈਸਾਖਦੀ", + "ta": "வைசாகதி", + "te": "వైశాఖాది" + }, + "countries": [ + "IN" + ] + }, + { + "id": "vaisakhi", + "msgid": "Vaisakhi", + "new_comment": "", + "comment": "Vaisakhi.", + "messages": { + "bn": "বৈশাখী", + "en_IN": "Vaisakhi", + "en_US": "Vaisakhi", + "gu": "વૈશાખી", + "hi": "वैसाखी", + "kn": "ವೈಶಾಖಿ", + "ml": "വൈശാഖി", + "mr": "वैशाखी", + "pa": "ਵਿਸਾਖੀ", + "ta": "வைசாகி", + "te": "వైశాఖి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "valencian_community_day", + "msgid": "Valencian Community Day", + "new_comment": "", + "comment": "Valencian Community Day.", + "messages": { + "ca": "Dia de la Comunitat Valenciana", + "en_US": "Valencian Community Day", + "es": "Día de la Comunidad Valenciana", + "th": "วันแคว้นบาเลนเซีย", + "uk": "День Валенсії" + }, + "countries": [ + "ES" + ] + }, + { + "id": "valentine_s_day", + "msgid": "Valentine's Day", + "new_comment": "", + "comment": "Valentine's Day.", + "messages": { + "en_US": "Valentine's Day", + "th": "วันวาเลนไทน์" + }, + "countries": [ + "US" + ] + }, + { + "id": "vap_full_moon_poya_day", + "msgid": "Vap Full Moon Poya Day", + "new_comment": "", + "comment": "Vap Full Moon Poya Day.", + "messages": { + "en_US": "Vap Full Moon Poya Day", + "si_LK": "වප් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "வப் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "veer_kesari_chand_s_martyrdom_day", + "msgid": "Veer Kesari Chand's Martyrdom Day", + "new_comment": "", + "comment": "Veer Kesari Chand's Martyrdom Day.", + "messages": { + "bn": "বীর কেশরী চাঁদের শহীদ দিবস", + "en_IN": "Veer Kesari Chand's Shaheedi Diwas", + "en_US": "Veer Kesari Chand's Martyrdom Day", + "gu": "વીર કેસરી ચંદનો શહીદી દિવસ", + "hi": "वीर केसरी चंद शहीदी दिवस", + "kn": "ವೀರ ಕೇಸರಿ ಚಂದ್ ಶಹೀದಿ ದಿನ", + "ml": "വീർ കേസരി ചന്ദിന്റെ ശഹീദ് ദിനം", + "mr": "वीर केसरी चंद शहीद दिन", + "pa": "ਵੀਰ ਕੇਸਰੀ ਚੰਦ ਦਾ ਸ਼ਹੀਦੀ ਦਿਹਾੜਾ", + "ta": "வீர கேசரி சந்தின் ஷஹீதி தினம்", + "te": "వీర్ కేసరి చంద్ షహీది దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "vernal_equinox_day", + "msgid": "Vernal Equinox Day", + "new_comment": "", + "comment": "Vernal Equinox Day.", + "messages": { + "en_US": "Vernal Equinox Day", + "ja": "春分の日", + "th": "วันวสันตวิษุวัต" + }, + "countries": [ + "JP" + ] + }, + { + "id": "vesak_day", + "msgid": "Vesak Day", + "new_comment": "", + "comment": "Vesak Day.", + "messages": { + "en_SG": "Vesak Day", + "en_US": "Vesak Day", + "id": "Hari Raya Waisak", + "ms_MY": "Hari Wesak", + "th": "วันวิสาขบูชา", + "uk": "День народження Будди" + }, + "countries": [ + "ID", + "MY", + "SG" + ] + }, + { + "id": "vesak_full_moon_poya_day", + "msgid": "Vesak Full Moon Poya Day", + "new_comment": "", + "comment": "Vesak Full Moon Poya Day.", + "messages": { + "en_US": "Vesak Full Moon Poya Day", + "si_LK": "වෙසක් පුර පසළොස්වක පෝය දිනය", + "ta_LK": "வெசாக் முழு நோன்மதி தினம்" + }, + "countries": [ + "LK" + ] + }, + { + "id": "vesak_joint_holiday", + "msgid": "Vesak Joint Holiday", + "new_comment": "", + "comment": "Vesak Joint Holiday.", + "messages": { + "en_US": "Vesak Joint Holiday", + "id": "Cuti Bersama Hari Raya Waisak", + "th": "หยุดร่วมพิเศษวันวิสาขบูชา", + "uk": "Додатковий вихідний на День народження Будди" + }, + "countries": [ + "ID" + ] + }, + { + "id": "veteran_s_day", + "msgid": "Veteran's Day", + "new_comment": "", + "comment": "Veteran's Day.", + "messages": { + "en_TL": "Veterans Day", + "en_US": "Veteran's Day", + "gu": "વેટરન્સ ડે", + "hi": "वेटरन्स डे", + "pt_TL": "Dia dos Veteranos", + "tet": "Loron Veteranu sira nian", + "th": "วันทหารผ่านศึก" + }, + "countries": [ + "TL", + "XNYS" + ] + }, + { + "id": "veteran_s_day_and_the_fallen_in_the_malvinas_war", + "msgid": "Veteran's Day and the Fallen in the Malvinas War", + "new_comment": "", + "comment": "Veteran's Day and the Fallen in the Malvinas War.", + "messages": { + "en_US": "Veteran's Day and the Fallen in the Malvinas War", + "es": "Día del Veterano y de los Caidos en la Guerra de Malvinas", + "uk": "День ветеранів та загиблих на Мальвінській війні" + }, + "countries": [ + "AR" + ] + }, + { + "id": "veterans_day", + "msgid": "Veterans Day", + "new_comment": "", + "comment": "Veterans Day.", + "messages": { + "en_US": "Veterans Day", + "th": "วันทหารผ่านศึก" + }, + "countries": [ + "US" + ] + }, + { + "id": "vice_presidential_election", + "msgid": "Vice Presidential Election", + "new_comment": "", + "comment": "Vice Presidential Election.", + "messages": { + "en_US": "Vice Presidential Election", + "ko": "부통령 선거일", + "th": "วันเลือกตั้งรองประธานาธิบดี" + }, + "countries": [ + "KR" + ] + }, + { + "id": "victor_schoelcher_day", + "msgid": "Victor Schoelcher Day", + "new_comment": "", + "comment": "Victor Schoelcher Day.", + "messages": { + "en_US": "Victor Schoelcher Day", + "fr": "Fête de Victor Schoelcher", + "th": "วันวิกตอร์ เชลแชร์", + "uk": "День Віктора Шольшера" + }, + "countries": [ + "FR" + ] + }, + { + "id": "victoria_day", + "msgid": "Victoria Day", + "new_comment": "", + "comment": "Victoria Day.", + "messages": { + "ar": "يوم فيكتوريا", + "en_CA": "Victoria Day", + "en_US": "Victoria Day", + "fr": "Fête de la Reine", + "th": "วันวิคตอเรีย" + }, + "countries": [ + "CA", + "XTSE" + ] + }, + { + "id": "victory_and_homeland_thanksgiving_day", + "msgid": "Victory and Homeland Thanksgiving Day", + "new_comment": "", + "comment": "Victory and Homeland Thanksgiving Day.", + "messages": { + "en_US": "Victory and Homeland Thanksgiving Day", + "hr": "Dan pobjede i domovinske zahvalnosti", + "uk": "День перемоги і подяки вітчизні" + }, + "countries": [ + "HR" + ] + }, + { + "id": "victory_and_homeland_thanksgiving_day_and_croatian_veterans_day", + "msgid": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "new_comment": "", + "comment": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day.", + "messages": { + "en_US": "Victory and Homeland Thanksgiving Day and Croatian Veterans Day", + "hr": "Dan pobjede i domovinske zahvalnosti i Dan hrvatskih branitelja", + "uk": "День перемоги і подяки вітчизні та День хорватських захисників" + }, + "countries": [ + "HR" + ] + }, + { + "id": "victory_and_peace_day", + "msgid": "Victory and Peace Day", + "new_comment": "", + "comment": "Victory and Peace Day.", + "messages": { + "en_US": "Victory and Peace Day", + "hy": "Հաղթանակի և Խաղաղության տոն" + }, + "countries": [ + "AM" + ] + }, + { + "id": "victory_day", + "msgid": "Victory Day", + "new_comment": "", + "comment": "Victory Day.", + "messages": { + "ar": { + "BD": "عيد النصر", + "UA": "يوم النصر", + "YE": "ذكرى 7 يوليو" + }, + "az": "Zəfər Günü", + "be": "Дзень Перамогі", + "bn": "বিজয় দিবস", + "bs": "Dan pobjede nad fašizmom", + "cs": "Den vítězství", + "dv": "ނަޞްރުގެ ދުވަސް", + "en_BD": "Victory Day", + "en_US": "Victory Day", + "es": "Día de la Victoria", + "et": "võidupüha", + "fr": "Fête de la Victoire", + "it_IT": "Anniversario della Vittoria", + "kk": "Жеңіс күні", + "ky": "Жеңиш күнү", + "pt_MZ": "Dia da Vitória", + "ru": { + "BY": "День Победы", + "RU": "День Победы", + "TJ": "День Победы в Великой Отечественной войне", + "TM": "День Победы в Великой Отечественной войне 1941-1945 годов" + }, + "ru_KG": "День Победы", + "sk": "Deň víťazstva", + "sr": "Дан побједе над фашизмом", + "tg": "Рӯзи Ғалаба дар Ҷанги Бузурги Ватанӣ", + "th": "วันแห่งชัยชนะ", + "tk": "1941-1945-nji ýyllaryň Beýik Watançylyk urşunda ýeňiş güni", + "tr": "Zafer Bayramı", + "uk": { + "AZ": "День Перемоги", + "BA": "День перемоги над фашизмом", + "CU": "День Перемоги", + "CZ": "День Перемоги", + "EE": "День Перемоги", + "FR": "День Перемоги", + "KZ": "День Перемоги", + "MZ": "День Перемоги", + "TR": "День Перемоги", + "UA": "День Перемоги", + "UZ": "День Перемоги" + }, + "uz": "Gʻalaba kuni", + "zh_CN": "胜利日" + }, + "countries": [ + "AZ", + "BA", + "BD", + "BY", + "CU", + "CZ", + "EE", + "FR", + "IT", + "KG", + "KZ", + "MV", + "MZ", + "RU", + "TJ", + "TM", + "TR", + "UA", + "US", + "UZ", + "YE" + ] + }, + { + "id": "victory_day_and_commemoration_of_the_heroes_fallen_for_independence_of_fatherland", + "msgid": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "new_comment": "", + "comment": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland.", + "messages": { + "en_US": "Victory Day and Commemoration of the heroes fallen for Independence of Fatherland", + "ro": "Ziua Victoriei și a comemorării eroilor căzuţi pentru Independenţa Patriei", + "uk": "День Перемоги та вшанування памʼяті героїв, полеглих за незалежність Батьківщини" + }, + "countries": [ + "MD" + ] + }, + { + "id": "victory_over_fascism_day", + "msgid": "Victory over Fascism Day", + "new_comment": "", + "comment": "Victory over Fascism Day.", + "messages": { + "az": "Faşizm üzərində qələbə günü", + "en_US": "Victory over Fascism Day", + "uk": "День перемоги над фашизмом" + }, + "countries": [ + "AZ" + ] + }, + { + "id": "vinayak_chaturthi", + "msgid": "Vinayak Chaturthi", + "new_comment": "", + "comment": "Vinayak Chaturthi.", + "messages": { + "bn": "বিনায়ক চতুর্থী", + "en_IN": "Vinayak Chaturthi", + "en_US": "Vinayak Chaturthi", + "gu": "વિનાયક ચતુર્થી", + "hi": "विनायक चतुर्थी", + "kn": "ವಿನಾಯಕ ಚತುರ್ಥಿ", + "ml": "ഗണേശ ചതുർത്ഥി", + "mr": "गणेश चतुर्थी", + "pa": "ਵਿਨਾਇਕ ਚਤੁਰਥੀ", + "ta": "விநாயக சதுர்த்தி", + "te": "గణేశ చవితి" + }, + "countries": [ + "IN" + ] + }, + { + "id": "virgin_islands_day", + "msgid": "Virgin Islands Day", + "new_comment": "", + "comment": "Virgin Islands Day.", + "messages": { + "en_US": "Virgin Islands Day", + "en_VG": "Virgin Islands Day" + }, + "countries": [ + "VG" + ] + }, + { + "id": "virgin_mary_of_can_lich", + "msgid": "Virgin Mary of Canòlich", + "new_comment": "", + "comment": "Virgin Mary of Canòlich.", + "messages": { + "ca": "Diada de Canòlich", + "en_US": "Virgin Mary of Canòlich", + "uk": "День Богоматері Каноліхської" + }, + "countries": [ + "AD" + ] + }, + { + "id": "visaka_bochea_day", + "msgid": "Visaka Bochea Day", + "new_comment": "", + "comment": "Visaka Bochea Day.", + "messages": { + "en_US": "Visaka Bochea Day", + "km": "ពិធីបុណ្យវិសាខបូជា", + "th": "วันวิสาขบูชา" + }, + "countries": [ + "KH" + ] + }, + { + "id": "visakha_bousa_festival", + "msgid": "Visakha Bousa Festival", + "new_comment": "", + "comment": "Visakha Bousa Festival.", + "messages": { + "en_US": "Visakha Bousa Festival", + "lo": "ວັນບຸນວິສາຂະບູຊາ", + "th": "วันวิสาขบูชา" + }, + "countries": [ + "LA" + ] + }, + { + "id": "visakha_bucha", + "msgid": "Visakha Bucha", + "new_comment": "", + "comment": "Visakha Bucha.", + "messages": { + "en_US": "Visakha Bucha", + "th": "วิสาขะบูชา", + "uk": "Вісака Буча" + }, + "countries": [ + "TH" + ] + }, + { + "id": "vishu", + "msgid": "Vishu", + "new_comment": "", + "comment": "Vishu.", + "messages": { + "bn": "বিশু", + "en_IN": "Vishu", + "en_US": "Vishu", + "gu": "વિશુ", + "hi": "विशु", + "kn": "ವಿಷು", + "ml": "വിഷു", + "mr": "विशू", + "pa": "ਵਿਸ਼ੂ", + "ta": "விசு", + "te": "విషు" + }, + "countries": [ + "IN" + ] + }, + { + "id": "vishwakarma_day", + "msgid": "Vishwakarma Day", + "new_comment": "", + "comment": "Vishwakarma Day.", + "messages": { + "bn": "বিশ্বকর্মা দিবস", + "en_IN": "Vishwakarma Day", + "en_US": "Vishwakarma Day", + "gu": "વિશ્વકર્મા દિવસ", + "hi": "विश्वकर्मा दिवस", + "kn": "ವಿಶ್ವಕರ್ಮ ದಿನ", + "ml": "വിശ്വകർമ ദിനം", + "mr": "विश्वकर्मा दिन", + "pa": "ਵਿਸ਼ਵਕਰਮਾ ਦਿਵਸ", + "ta": "விஸ்வகர்மா தினம்", + "te": "విశ్వకర్మ దినం" + }, + "countries": [ + "IN" + ] + }, + { + "id": "vishwakarma_puja", + "msgid": "Vishwakarma Puja", + "new_comment": "", + "comment": "Vishwakarma Puja.", + "messages": { + "bn": "বিশ্বকর্মা পূজা", + "en_IN": "Vishwakarma Puja", + "en_US": "Vishwakarma Puja", + "gu": "વિશ્વકર્મા પૂજા", + "hi": "विश्वकर्मा पूजा", + "kn": "ವಿಶ್ವಕರ್ಮ ಪೂಜೆ", + "ml": "വിശ്വകർമ പൂജ", + "mr": "विश्वकर्मा पूजा", + "pa": "ਵਿਸ਼ਵਕਰਮਾ ਪੂਜਾ", + "ta": "விஸ்வகர்மா பூஜை", + "te": "విశ్వకర్మ పూజ" + }, + "countries": [ + "IN" + ] + }, + { + "id": "visit_of_his_holiness_pope_francis_to_timor_leste", + "msgid": "Visit of His Holiness Pope Francis to Timor-Leste", + "new_comment": "", + "comment": "Visit of His Holiness Pope Francis to Timor-Leste.", + "messages": { + "en_TL": "Visit of His Holiness Pope Francis to Timor-Leste", + "en_US": "Visit of His Holiness Pope Francis to Timor-Leste", + "pt_TL": "Visita de Sua Santidade o Papa Francisco a Timor-Leste", + "tet": "Vizita Sua Santidade Papa Francisco mai Timor-Leste", + "th": "การเสด็จเยือนติมอร์-เลสเตของสมเด็จพระสันตะปาปาฟรานซิส" + }, + "countries": [ + "TL" + ] + }, + { + "id": "visit_of_pope_francis_to_kenya", + "msgid": "Visit of Pope Francis to Kenya", + "new_comment": "", + "comment": "Visit of Pope Francis to Kenya.", + "messages": { + "en_KE": "Visit of Pope Francis to Kenya", + "en_US": "Visit of Pope Francis to Kenya", + "sw": "Ziara ya Papa Francis nchini Kenya" + }, + "countries": [ + "KE" + ] + }, + { + "id": "visitation_of_mary_day", + "msgid": "Visitation of Mary Day", + "new_comment": "", + "comment": "Visitation of Mary Day.", + "messages": { + "en_US": "Visitation of Mary Day", + "it_IT": "Madonna della Visitazione", + "th": "วันแม่พระเสด็จเยี่ยม" + }, + "countries": [ + "IT" + ] + }, + { + "id": "vlachs_national_day", + "msgid": "Vlachs National Day", + "new_comment": "", + "comment": "Vlachs National Day.", + "messages": { + "en_US": "Vlachs National Day", + "mk": "Национален ден на Власите", + "uk": "Національний день влахів" + }, + "countries": [ + "MK" + ] + }, + { + "id": "vodoun_festival", + "msgid": "Vodoun Festival", + "new_comment": "", + "comment": "Vodoun Festival.", + "messages": { + "en_US": "Vodoun Festival", + "fr_BJ": "Fête annuelle des religions traditionnelles" + }, + "countries": [ + "BJ" + ] + }, + { + "id": "volume_activity", + "msgid": "Volume activity", + "new_comment": "", + "comment": "Volume activity.", + "messages": { + "en_US": "Volume activity", + "gu": "વોલ્યુમ પ્રવૃત્તિ", + "hi": "वॉल्यूम गतिविधि" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "wall_street_explosion", + "msgid": "Wall Street explosion", + "new_comment": "", + "comment": "Wall Street explosion.", + "messages": { + "en_US": "Wall Street explosion", + "gu": "વોલ સ્ટ્રીટ વિસ્ફોટ", + "hi": "वॉल स्ट्रीट विस्फोट" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "walpurgis_night", + "msgid": "Walpurgis Night", + "new_comment": "", + "comment": "Walpurgis Night.", + "messages": { + "en_US": "Walpurgis Night", + "sv": "Valborgsmässoafton", + "th": "คืนวัลเพอร์กิส", + "uk": "Вальпургієва ніч" + }, + "countries": [ + "SE" + ] + }, + { + "id": "walvis_bay_reintegration_day", + "msgid": "Walvis Bay Reintegration Day", + "new_comment": "", + "comment": "Walvis Bay Reintegration Day.", + "messages": { + "en_NA": "Walvis Bay Reintegration Day", + "en_US": "Walvis Bay Reintegration Day", + "uk": "День реінтеграції Волфіш-Бей" + }, + "countries": [ + "NA" + ] + }, + { + "id": "war_veteran_s_day", + "msgid": "War Veteran's Day", + "new_comment": "", + "comment": "War Veteran's Day.", + "messages": { + "en_US": "War Veteran's Day", + "es": "Día del Veterano de Guerra", + "uk": "День ветеранів війни" + }, + "countries": [ + "AR" + ] + }, + { + "id": "washington_and_lincoln_day", + "msgid": "Washington and Lincoln Day", + "new_comment": "", + "comment": "Washington and Lincoln Day.", + "messages": { + "en_US": "Washington and Lincoln Day", + "th": "วันวอชิงตันและลิงคอล์น" + }, + "countries": [ + "US" + ] + }, + { + "id": "washington_lincoln_day", + "msgid": "Washington-Lincoln Day", + "new_comment": "", + "comment": "Washington-Lincoln Day.", + "messages": { + "en_US": "Washington-Lincoln Day", + "th": "วันวอชิงตัน-ลิงคอล์น" + }, + "countries": [ + "US" + ] + }, + { + "id": "washington_s_and_lincoln_s_birthday", + "msgid": "Washington's and Lincoln's Birthday", + "new_comment": "", + "comment": "Washington's and Lincoln's Birthday.", + "messages": { + "en_US": "Washington's and Lincoln's Birthday", + "th": "วันเกิดวอชิงตันและลิงคอล์น" + }, + "countries": [ + "US" + ] + }, + { + "id": "washington_s_birthday", + "msgid": "Washington's Birthday", + "new_comment": "", + "comment": "Washington's Birthday.", + "messages": { + "en_US": "Washington's Birthday", + "gu": "વોશિંગ્ટનનો જન્મદિવસ", + "hi": "वाशिंगटन का जन्मदिन", + "th": "วันเกิดวอชิงตัน" + }, + "countries": [ + "US", + "XNYS" + ] + }, + { + "id": "water_festival", + "msgid": "Water Festival", + "new_comment": "", + "comment": "Water Festival.", + "messages": { + "en_US": "Water Festival", + "km": "ព្រះរាជពិធីបុណ្យអុំទូក បណ្តែតប្រទីប និងសំពះព្រះខែអកអំបុក", + "th": "พระราชพิธีบุญแข่งเรือลอยกระทงไฟไหว้พระจันทร์และกินข้าวเม่า" + }, + "countries": [ + "KH" + ] + }, + { + "id": "wedding_of_charles_and_diana", + "msgid": "Wedding of Charles and Diana", + "new_comment": "", + "comment": "Wedding of Charles and Diana.", + "messages": { + "en_GB": "Wedding of Charles and Diana", + "en_US": "Wedding of Charles and Diana", + "th": "พระราชพิธีอภิเษกสมรสระหว่างไดอาน่า สเปนเซอร์และเจ้าฟ้าชายชาร์ลส์ เจ้าชายแห่งเวลส์" + }, + "countries": [ + "GB" + ] + }, + { + "id": "wedding_of_prince_charles_and_diana", + "msgid": "Wedding of Prince Charles and Diana", + "new_comment": "", + "comment": "Wedding of Prince Charles and Diana.", + "messages": { + "en_HK": "Wedding of Prince Charles and Diana", + "en_US": "Wedding of Prince Charles and Diana", + "th": "พระราชพิธีอภิเษกสมรสระหว่างไดอาน่า สเปนเซอร์และเจ้าฟ้าชายชาร์ลส์ เจ้าชายแห่งเวลส์", + "zh_CN": "英国王储查尔斯王子与戴安娜婚礼", + "zh_HK": "英國王儲查理斯王子與戴安娜婚禮" + }, + "countries": [ + "HK" + ] + }, + { + "id": "wedding_of_william_and_catherine", + "msgid": "Wedding of William and Catherine", + "new_comment": "", + "comment": "Wedding of William and Catherine.", + "messages": { + "en_GB": "Wedding of William and Catherine", + "en_US": "Wedding of William and Catherine", + "th": "พระราชพิธีเสกสมรสระหว่างเจ้าชายวิลเลียมกับแคเธอริน มิดเดิลตัน" + }, + "countries": [ + "GB" + ] + }, + { + "id": "welcome_of_naval_commanders", + "msgid": "Welcome of naval commanders", + "new_comment": "", + "comment": "Welcome of naval commanders.", + "messages": { + "en_US": "Welcome of naval commanders", + "gu": "નૌકાદળના કમાન્ડરોનું સ્વાગત", + "hi": "नौसेना कमांडरों का स्वागत" + }, + "countries": [ + "XNYS" + ] + }, + { + "id": "west_virginia_day", + "msgid": "West Virginia Day", + "new_comment": "", + "comment": "West Virginia Day.", + "messages": { + "en_US": "West Virginia Day", + "th": "วันเวสต์เวอร์จิเนีย" + }, + "countries": [ + "US" + ] + }, + { + "id": "western_australia_day", + "msgid": "Western Australia Day", + "new_comment": "", + "comment": "Western Australia Day.", + "messages": { + "en_AU": "Western Australia Day", + "en_US": "Western Australia Day", + "th": "วันเวสเทิร์นออสเตรเลีย" + }, + "countries": [ + "AU" + ] + }, + { + "id": "white_sunday", + "msgid": "White Sunday", + "new_comment": "", + "comment": "White Sunday.", + "messages": { + "en_US": "White Sunday", + "th": "วันอาทิตย์ขาว" + }, + "countries": [ + "US" + ] + }, + { + "id": "winter_break", + "msgid": "Winter Break", + "new_comment": "", + "comment": "Winter Break.", + "messages": { + "de": "Winterferien", + "en_US": "Winter Break", + "th": "ปิดเทอมฤดูหนาว", + "uk": "Зимові канікули" + }, + "countries": [ + "DE" + ] + }, + { + "id": "winter_midterm_bank_holiday", + "msgid": "Winter Midterm Bank Holiday", + "new_comment": "", + "comment": "Winter Midterm Bank Holiday.", + "messages": { + "en_GB": "Winter Midterm Bank Holiday", + "en_US": "Winter Midterm Bank Holiday" + }, + "countries": [ + "GI" + ] + }, + { + "id": "winter_solstice", + "msgid": "Winter Solstice", + "new_comment": "", + "comment": "Winter Solstice.", + "messages": { + "dz": "དགུན་ཉི་ལྡོག་གི་ངལ་གསོལ།", + "en_HK": "Chinese Winter Solstice Festival", + "en_MO": "Winter Solstice", + "en_US": "Winter Solstice", + "pt_MO": "Solstício de Inverno", + "th": "วันตงจื้อ(เหมายัน)", + "zh_CN": { + "HK": "冬节", + "MO": "冬至" + }, + "zh_HK": "冬節", + "zh_MO": "冬至" + }, + "countries": [ + "BT", + "HK", + "MO" + ] + }, + { + "id": "women_s_day", + "msgid": "Women's Day", + "new_comment": "", + "comment": "Women's Day.", + "messages": { + "ar": "عيد المرأة", + "az": "Qadınlar günü", + "be": "Дзень жанчын", + "de": "Frauentag", + "en_FM": "Women's Day", + "en_US": "Women's Day", + "fr_BJ": "Journée de la Femme", + "hy": "Կանանց տոն", + "ky": "Аялдар күнү", + "mg": "Fetin'ny vehivavy", + "pt_MZ": "Dia da Mulher Moçambicana", + "ru": "День женщин", + "ru_KG": "День женщин", + "th": { + "BY": "วันสตรี", + "DE": "วันสตรี", + "TW": "วันสตรีสากล" + }, + "uk": { + "AZ": "День жінок", + "DE": "День жінок", + "MG": "День жінок", + "MZ": "День жінок Мозамбіку", + "UZ": "День жінок" + }, + "uz": "Xotin-qizlar kuni", + "zh_CN": "妇女节", + "zh_TW": "婦女節" + }, + "countries": [ + "AM", + "AZ", + "BJ", + "BY", + "DE", + "FM", + "KG", + "MG", + "MZ", + "TN", + "TW", + "UZ" + ] + }, + { + "id": "women_s_rights_day", + "msgid": "Women's Rights Day", + "new_comment": "", + "comment": "Women's Rights Day.", + "messages": { + "en_US": "Women's Rights Day", + "fr": "Journée des droits de la femme" + }, + "countries": [ + "GA" + ] + }, + { + "id": "worker_s_day", + "msgid": "Worker's Day", + "new_comment": "", + "comment": "Worker's Day.", + "messages": { + "de": "Tag der Arbeit", + "en_US": "Worker's Day", + "es": "Día del Trabajador", + "fr": "Fête du travail", + "mt": "Jum il-Ħaddiem", + "pt_BR": "Dia do Trabalhador", + "pt_CV": "Dia do Trabalhador", + "pt_GW": "Dia do Trabalhador", + "pt_ST": "Dia do Trabalhador", + "uk": "День трудящих" + }, + "countries": [ + "BR", + "BVMF", + "CV", + "GW", + "MT", + "ST" + ] + }, + { + "id": "workers_day", + "msgid": "Workers' Day", + "new_comment": "", + "comment": "Workers' Day.", + "messages": { + "da": "Arbejdernes kampdag", + "en_NA": "Workers' Day", + "en_NG": "Workers' Day", + "en_US": "Workers' Day", + "es": "Día de los Trabajadores", + "it": "Festa dei lavoratori", + "ko": "근로자의날", + "th": "วันกรรมกร", + "uk": "День трудящих" + }, + "countries": [ + "DK", + "KR", + "NA", + "NG", + "PY", + "SM", + "UY", + "XKRX" + ] + }, + { + "id": "workers_memorial_day", + "msgid": "Workers' Memorial Day", + "new_comment": "", + "comment": "Workers' Memorial Day.", + "messages": { + "en_GB": "Workers' Memorial Day", + "en_US": "Workers' Memorial Day" + }, + "countries": [ + "GI" + ] + }, + { + "id": "world_children_s_day", + "msgid": "World Children's Day", + "new_comment": "", + "comment": "World Children's Day.", + "messages": { + "de": "Weltkindertag", + "en_US": "World Children's Day", + "th": "วันเด็กสากล", + "uk": "Всесвітній день дітей" + }, + "countries": [ + "DE" + ] + }, + { + "id": "y2k_changeover", + "msgid": "Y2K changeover", + "new_comment": "", + "comment": "Y2K changeover.", + "messages": { + "en_NA": "Y2K changeover", + "en_US": "Y2K changeover", + "uk": "Y2K-перехід" + }, + "countries": [ + "NA" + ] + }, + { + "id": "yap_day", + "msgid": "Yap Day", + "new_comment": "", + "comment": "Yap Day.", + "messages": { + "en_FM": "Yap Day", + "en_US": "Yap Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "yap_state_constitution_day", + "msgid": "Yap State Constitution Day", + "new_comment": "", + "comment": "Yap State Constitution Day.", + "messages": { + "en_FM": "Yap State Constitution Day", + "en_US": "Yap State Constitution Day" + }, + "countries": [ + "FM" + ] + }, + { + "id": "yazidi_new_year", + "msgid": "Yazidi New Year", + "new_comment": "", + "comment": "Yazidi New Year.", + "messages": { + "ar": "رأس السنة الإيزيدية", + "en_US": "Yazidi New Year" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "yazidi_summer_festival", + "msgid": "Yazidi Summer Festival", + "new_comment": "", + "comment": "Yazidi Summer Festival.", + "messages": { + "ar": "مهرجان الصيف اليزيدي", + "en_US": "Yazidi Summer Festival" + }, + "countries": [ + "IQ" + ] + }, + { + "id": "year_end_market_holiday", + "msgid": "Year-end market holiday", + "new_comment": "", + "comment": "Year-end market holiday.", + "messages": { + "en_US": "Year-end market holiday", + "es": "Feriado bursátil de fin de año" + }, + "countries": [ + "XBUE" + ] + }, + { + "id": "yom_ha_atzmaut_independence_day", + "msgid": "Independence Day", + "new_comment": "", + "comment": "Yom Ha-Atzmaut (Independence Day).", + "messages": { + "en_US": "Independence Day", + "he": "יום העצמאות", + "th": "วันชาติอิสราเอล", + "uk": "День незалежності" + }, + "countries": [ + "IL" + ] + }, + { + "id": "yom_hazikaron_fallen_soldiers_and_victims_of_terrorism_remembrance_day", + "msgid": "Remembrance Day", + "new_comment": "", + "comment": "Yom Hazikaron (Fallen Soldiers and Victims of Terrorism Remembrance Day).", + "messages": { + "en_US": "Remembrance Day", + "he": "יום הזיכרון לחללי מערכות ישראל ונפגעי פעולות האיבה", + "th": "วันรำลึกถึงทหารผู้สละชีพและเหยื่อการก่อการร้าย", + "uk": "День памʼяті" + }, + "countries": [ + "IL" + ] + }, + { + "id": "yom_kippur", + "msgid": "Yom Kippur", + "new_comment": "", + "comment": "Yom Kippur.", + "messages": { + "ar": "عيد الغفران", + "cnr": "Jom Kipur", + "en_US": "Yom Kippur", + "es": "Día del Perdón (Iom Kipur)", + "fr": "Youm Kippour", + "kab": "Ass n usuref", + "mk": "Јом Кипур", + "uk": "Йом Кіпур" + }, + "countries": [ + "AR", + "DZ", + "IQ", + "ME", + "MK" + ] + }, + { + "id": "yom_kippur_day_of_atonement", + "msgid": "Yom Kippur", + "new_comment": "", + "comment": "Yom Kippur (Day of Atonement).", + "messages": { + "en_US": "Yom Kippur", + "he": "יום כיפור", + "th": "วันยม คิปปูร์", + "uk": "Йом Кіпур" + }, + "countries": [ + "IL" + ] + }, + { + "id": "yom_yerushalayim_jerusalem_day", + "msgid": "Jerusalem Day", + "new_comment": "", + "comment": "Yom Yerushalayim (Jerusalem Day).", + "messages": { + "en_US": "Jerusalem Day", + "he": "יום ירושלים", + "th": "วันเยรูซาเล็ม", + "uk": "День Єрусалиму" + }, + "countries": [ + "IL" + ] + }, + { + "id": "youm_e_takbeer", + "msgid": "Youm-e-Takbeer", + "new_comment": "", + "comment": "Youm-e-Takbeer.", + "messages": { + "en_PK": "Youm-e-Takbeer", + "en_US": "Youm-e-Takbeer", + "ur_PK": "یوم تکبیر" + }, + "countries": [ + "PK" + ] + }, + { + "id": "youth_and_sports_day", + "msgid": "Youth and Sports Day", + "new_comment": "", + "comment": "Youth and Sports Day.", + "messages": { + "en_US": "Youth and Sports Day", + "tr": "Gençlik ve Spor Bayramı", + "uk": "День молоді та спорту" + }, + "countries": [ + "TR" + ] + }, + { + "id": "youth_day", + "msgid": "Youth Day", + "new_comment": "", + "comment": "Youth Day.", + "messages": { + "ar": "عيد الشباب", + "en_US": "Youth Day", + "fr": { + "CD": "Journée de la Jeunesse", + "GA": "Fête de la Jeunesse", + "MA": "Fête de la Jeunesse" + }, + "fr_BJ": "Journée de la Jeunesse Béninoise", + "ko_KP": "청년절", + "mn": "Залуучуудын өдөр", + "th": { + "CN": "วันเยาวชนแห่งชาติจีน", + "TW": "วันเยาวชน" + }, + "zh_CN": { + "CN": "五四青年节", + "TW": "青年节" + }, + "zh_TW": { + "CN": "五四青年節", + "TW": "青年節" + } + }, + "countries": [ + "BJ", + "CD", + "CN", + "GA", + "KP", + "MA", + "MN", + "TW" + ] + }, + { + "id": "yushin_constitution_referendum_day", + "msgid": "Yushin Constitution Referendum Day", + "new_comment": "", + "comment": "Yushin Constitution Referendum Day.", + "messages": { + "en_US": "Yushin Constitution Referendum Day", + "ko": "유신헌법 국민투표일", + "th": "วันลงประชามติแก้ไขรัฐธรรมนูญฉบับยูชิน" + }, + "countries": [ + "KR" + ] + }, + { + "id": "zanzibar_revolution_day", + "msgid": "Zanzibar Revolution Day", + "new_comment": "", + "comment": "Zanzibar Revolution Day.", + "messages": { + "en_US": "Zanzibar Revolution Day", + "sw": "Mapinduzi ya Zanzibar" + }, + "countries": [ + "TZ" + ] + } +] diff --git a/scripts/l10n/json_builder.py b/scripts/l10n/json_builder.py new file mode 100644 index 0000000000..436d10202a --- /dev/null +++ b/scripts/l10n/json_builder.py @@ -0,0 +1,303 @@ +#!/usr/bin/env python3 + + +# holidays +# -------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +"""Build a JSON file mapping holiday strings across all locales. + +Run with: + python scripts/l10n/json_builder.py + +To rebuild from scratch, replacing the existing file: + python scripts/l10n/json_builder.py --refresh + +To split a holiday entry into a country-specific dedicated msgid: + python scripts/l10n/json_builder.py --split [ ...] + --new-id --msgid + +Examples: + python scripts/l10n/json_builder.py --split "Epiphany." SK --new-id epiphany_sk + python scripts/l10n/json_builder.py --split "New Year's Day." CN KR LA VN + --new-id international_new_year --msgid "International New Year" + +This generates the file: + * scripts/l10n/holidays_l10n.json + +A backup of the previous file is saved to: + * scripts/l10n/holidays_l10n.json.bak +""" + +import argparse +import json +import re +import shutil +import sys +from collections import Counter, defaultdict +from pathlib import Path + +from polib import pofile + +_ID_RE = re.compile(r"[^a-z0-9]+") + + +class IntermediateJsonBuilder: + """Builds and manages the JSON file mapping holiday strings across all locales.""" + + def __init__(self) -> None: + arg_parser = argparse.ArgumentParser(description="Build JSON from .po translation files.") + mode = arg_parser.add_mutually_exclusive_group() + mode.add_argument( + "--refresh", + action="store_true", + help="Rebuild from scratch, replacing the existing file after backup.", + ) + mode.add_argument( + "--split", + nargs="+", + metavar="ARG", + help="Split a holiday entry: [ ...]", + ) + arg_parser.add_argument( + "--new-id", + help="New ID for the split entry (auto-generated if not provided)", + type=str, + ) + arg_parser.add_argument( + "--msgid", + help="Explicit msgid for the split entry (derived from en_US if not provided)", + type=str, + ) + self.args = arg_parser.parse_args() + + self.locale_path = Path("holidays/locale") + self.output_path = Path("scripts/l10n/holidays_l10n.json") + self.backup_path = Path("scripts/l10n/holidays_l10n.json.bak") + self.lang_countries: dict[str, set[str]] = {} + for po_path in self.locale_path.rglob("*.po"): + self.lang_countries.setdefault(po_path.parents[1].name, set()).add(po_path.stem) + + def _make_id(self, text: str) -> str: + return _ID_RE.sub("_", text.lower()).strip("_") + + def _deduplicate_ids(self, grouped: dict) -> None: + """Ensure all IDs are unique by appending a counter to duplicates.""" + counts = Counter(entry["id"] for entry in grouped.values()) + seen: defaultdict[str, int] = defaultdict(int) + for entry in sorted(grouped.values(), key=lambda x: x["comment"]): + if counts[base_id := entry["id"]] > 1: + seen[base_id] += 1 + entry["id"] = f"{base_id}_{seen[base_id]}" + + def _get_msgid(self, messages: dict) -> str: + """Derive msgid from en_US translation or use explicit override.""" + en_us = messages.get("en_US", "") + if isinstance(en_us, dict): + en_us = next(iter(en_us.values()), "") + return en_us.removesuffix(".") + + def _flatten_translation_dict(self, translations: dict[str, str]) -> str | dict[str, str]: + values = iter(translations.values()) + first = next(values) + return first if all(v == first for v in values) else translations + + def _filter_messages(self, messages: dict, countries: set[str], *, include: bool) -> dict: + """Keep or remove translations for the specified countries.""" + result = {} + for lang, value in messages.items(): + if isinstance(value, dict): + filtered = { + country: translation + for country, translation in value.items() + if (country in countries) == include + } + if filtered: + result[lang] = self._flatten_translation_dict(filtered) + else: + filtered_countries = ( + self.lang_countries[lang] & countries + if include + else self.lang_countries[lang] - countries + ) + if filtered_countries: + result[lang] = value + + return result + + def _flatten_messages(self, messages: dict) -> dict: + """Flatten per-country messages to a single string where all countries agree.""" + return { + lang: self._flatten_translation_dict(dict(sorted(translations.items()))) + for lang, translations in sorted(messages.items()) + } + + def _remove_countries_from_messages(self, messages: dict, countries: set[str]) -> dict: + """Remove countries from nested language dicts, reflattening where possible.""" + return self._filter_messages(messages, countries, include=False) + + def _extract_group_messages(self, messages: dict, countries: set[str]) -> dict: + """Extract translations relevant to a group of countries.""" + return self._filter_messages(messages, countries, include=True) + + def _merge_with_existing(self, fresh: list) -> list: + """Merge fresh build with existing JSON, preserving manual edits and split entries.""" + if not self.output_path.exists(): + return fresh + + with self.output_path.open(encoding="utf-8") as f: + existing = json.load(f) + + existing_by_comment = { + entry["comment"]: entry + for entry in existing + if entry["id"] == self._make_id(entry["comment"]) + } + + for entry in fresh: + if existing_entry := existing_by_comment.get(entry["comment"]): + entry["id"] = existing_entry["id"] + entry["new_comment"] = existing_entry["new_comment"] + + fresh_comments = {entry["comment"] for entry in fresh} + fresh_ids = {entry["id"] for entry in fresh} + + split_entries = [ + e for e in existing if e["comment"] in fresh_comments and e["id"] not in fresh_ids + ] + + fresh_by_comment = {e["comment"]: e for e in fresh} + split_countries: dict[str, set] = defaultdict(set) + for split_entry in split_entries: + split_countries[split_entry["comment"]].update(split_entry["countries"]) + + for comment, countries in split_countries.items(): + if comment not in fresh_by_comment: + continue + source = fresh_by_comment[comment] + source["countries"] -= countries + source["messages"] = self._remove_countries_from_messages( + source["messages"], countries + ) + + return fresh + split_entries + + def out_to_file(self, output: list) -> None: + for entry in output: + entry["countries"] = sorted(entry["countries"]) + output.sort(key=lambda x: x["id"]) + self.output_path.write_text( # NOSONAR + json.dumps(output, ensure_ascii=False, indent=2) + "\n", encoding="utf-8", newline="\n" + ) + + def _build(self) -> None: + """Build or update the JSON file.""" + grouped: dict[str, dict] = {} + for lang, countries in self.lang_countries.items(): + for country_code in countries: + po_file_path = self.locale_path / lang / "LC_MESSAGES" / f"{country_code}.po" + for po_entry in pofile(str(po_file_path)): + translation = po_entry.msgstr or po_entry.msgid + comment = po_entry.comment + entry = grouped.setdefault( + comment, + { + "id": self._make_id(comment), + "msgid": "", + "new_comment": "", + "comment": comment, + "messages": {}, + "countries": set(), + }, + ) + entry["messages"].setdefault(lang, {})[country_code] = translation + entry["countries"].add(country_code) + + self._deduplicate_ids(grouped) + + output = list(grouped.values()) + for entry in output: + entry["messages"] = self._flatten_messages(entry["messages"]) + entry["msgid"] = self._get_msgid(entry["messages"]) + + if self.output_path.exists(): + shutil.copy(self.output_path, self.backup_path) + print(f"Backup saved to: {self.backup_path}") + print("Note: if you have split entries, compare with the backup.") + + if not self.args.refresh: + output = self._merge_with_existing(output) + + self.out_to_file(output) + print(f"Total unique holidays: {len(output)}") + print(f"Saved to: {self.output_path}") + + def _split(self) -> None: + """Split a holiday entry into a country-specific dedicated msgid.""" + if not self.output_path.exists(): + print(f"Error: {self.output_path} not found. Run json_builder.py first.") + sys.exit(1) + + with self.output_path.open(encoding="utf-8") as f: + data = json.load(f) + + comment = self.args.split[0] + country_codes = set(self.args.split[1:]) + + source = next( + (e for e in data if e["comment"] == comment and country_codes <= set(e["countries"])), + None, + ) + if not source: + print(f"Error: no entry found with comment {comment!r} containing {country_codes}") + sys.exit(1) + + entry_id = self.args.new_id or self._make_id( + f"{comment} {' '.join(sorted(country_codes))}" + ) + new_messages = self._extract_group_messages(source["messages"], country_codes) + new_entry = { + "id": entry_id, + "msgid": self.args.msgid or self._get_msgid(new_messages), + "new_comment": f"??? {source['new_comment']}" if source["new_comment"] else "", + "comment": comment, + "messages": new_messages, + "countries": country_codes, + } + + source["messages"] = self._remove_countries_from_messages( + source["messages"], country_codes + ) + source["countries"] = set(source["countries"]) - country_codes + + data.append(new_entry) + self.out_to_file(data) + + print(f"Split {sorted(country_codes)} from {comment!r}") + print(f"New entry ID: {entry_id}") + print(f"New entry msgid: {new_entry['msgid']}") + print(f"Remaining countries in source: {len(source['countries'])}") + print(f"Countries in new entry: {len(new_entry['countries'])}") + print(f"Languages in new entry: {len(new_entry['messages'])}") + + def run(self) -> None: + """Parse arguments and run the build or split process.""" + if self.args.split: + if len(self.args.split) < 2: + print("Error: --split requires a comment and at least one country code") + sys.exit(1) + self._split() + else: + self._build() + + +if __name__ == "__main__": + IntermediateJsonBuilder().run() diff --git a/scripts/l10n/replace_tr_strings.py b/scripts/l10n/replace_tr_strings.py new file mode 100644 index 0000000000..a27e533b93 --- /dev/null +++ b/scripts/l10n/replace_tr_strings.py @@ -0,0 +1,193 @@ +#!/usr/bin/env python3 +# holidays +# -------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +"""Replace tr() string arguments in .py files with new msgid keys. + +Run with: + python scripts/l10n/replace_tr_strings.py + python scripts/l10n/replace_tr_strings.py --country bulgaria +""" + +import argparse +import ast +import json +from pathlib import Path + +_JSON_PATH = Path("scripts/l10n/holidays_l10n.json") + + +def build_reverse_map(data: list[dict]) -> tuple[dict[str, str], dict[str, set[str]]]: + """Build reverse lookup: translation string -> msgid. + + Only includes strings that unambiguously map to exactly one msgid + across all languages to avoid incorrect replacements. + """ + candidates: dict[str, set[str]] = {} + for entry in data: + msgid = entry.get("msgid", "") + for lang, val in entry["messages"].items(): + if isinstance(val, str): + candidates.setdefault(val, set()).add(msgid) + ambiguous = {val: msgids for val, msgids in candidates.items() if len(msgids) > 1} + return { + val: next(iter(msgids)) for val, msgids in candidates.items() if len(msgids) == 1 + }, ambiguous + + +def build_comment_map(data: list[dict]) -> dict[str, str]: + """Build lookup: msgid -> new_comment (empty string if none).""" + return {entry["msgid"]: entry.get("new_comment", "") for entry in data if entry.get("msgid")} + + +def _char_offset_from_byte_offset(line: str, byte_offset: int) -> int: + encoded = 0 + for i, ch in enumerate(line): + if encoded == byte_offset: + return i + encoded += len(ch.encode("utf-8")) + if encoded == byte_offset: + return len(line) + raise ValueError(f"byte offset {byte_offset} does not fall on a character boundary") + + +def replace_tr_calls( + source: str, + reverse_map: dict[str, str], + comment_map: dict[str, str], + ambiguous_map: dict[str, set[str]] | None = None, + path: str = "", +) -> tuple[str, int]: + """Replace tr() string arguments with msgid keys and update comments above.""" + lines = source.splitlines(keepends=True) + try: + tree = ast.parse(source) + except SyntaxError: + return source, 0 + + changes = [] + for node in ast.walk(tree): + if isinstance(node, ast.Call): + is_tr = (isinstance(node.func, ast.Name) and node.func.id == "tr") or ( + isinstance(node.func, ast.Attribute) and node.func.attr == "tr" + ) + if is_tr and node.args and isinstance(node.args[0], ast.Constant): + arg = node.args[0] + s = arg.value + if not isinstance(s, str): + continue + if arg.end_lineno is None or arg.end_col_offset is None: + continue + if s in reverse_map and reverse_map[s] != s: + changes.append((arg, s, reverse_map[s])) + elif ambiguous_map and s in ambiguous_map: + print(f"WARNING: ambiguous string in {path} line {arg.lineno}: {s!r}") + print(f" maps to: {ambiguous_map[s]}") + + line_starts = [0] + for line in lines: + line_starts.append(line_starts[-1] + len(line)) + + def to_char_offset(lineno, byte_col): + return line_starts[lineno - 1] + _char_offset_from_byte_offset(lines[lineno - 1], byte_col) + + spans = [] + for arg, old, new in changes: + start = to_char_offset(arg.lineno, arg.col_offset) + end = to_char_offset(arg.end_lineno, arg.end_col_offset) + spans.append((start, end, repr(new))) + + for arg, old, new in changes: + new_msgid = reverse_map.get(old, "") + new_comment = comment_map.get(new_msgid, None) + if new_comment is None: + continue + # Find all consecutive comment lines above the tr() call + comment_end_lineno = arg.lineno - 2 + if comment_end_lineno < 0: + continue + comment_line = lines[comment_end_lineno] + stripped = comment_line.lstrip() + # If line above string is tr( itself, look one more line up + if stripped.startswith("tr(") or stripped == "tr(": + comment_end_lineno -= 1 + if comment_end_lineno < 0: + continue + comment_line = lines[comment_end_lineno] + stripped = comment_line.lstrip() + if not stripped.startswith("#"): + continue + indent = comment_line[: len(comment_line) - len(stripped)] + # Walk backwards to find start of multi-line comment + comment_start_lineno = comment_end_lineno + while comment_start_lineno > 0: + prev = lines[comment_start_lineno - 1].lstrip() + if prev.startswith("#"): + comment_start_lineno -= 1 + else: + break + start = line_starts[comment_start_lineno] + end = line_starts[comment_end_lineno + 1] + if new_comment: + spans.append((start, end, f"{indent}# {new_comment}\n")) + else: + spans.append((start, end, "")) + + source = "".join(lines) + for start, end, new_val in sorted(spans, key=lambda c: c[0], reverse=True): + source = source[:start] + new_val + source[end:] + + return source, len(changes) + + +def main() -> None: + arg_parser = argparse.ArgumentParser( + description="Replace tr() strings with msgid keys and update l10n comments." + ) + arg_parser.add_argument( + "--country", + type=str, + help="Process a single country file (e.g. bulgaria).", + ) + args = arg_parser.parse_args() + + with _JSON_PATH.open(encoding="utf-8") as f: + data = json.load(f) + + reverse_map, ambiguous_map = build_reverse_map(data) + comment_map = build_comment_map(data) + print(f"Reverse map entries: {len(reverse_map)}") + + if args.country: + paths = [Path(f"holidays/countries/{args.country}.py")] + else: + paths = list(Path("holidays/countries").glob("*.py")) + paths += list(Path("holidays/financial").glob("*.py")) + + total_replacements = 0 + for path in sorted(paths): + if path.stem == "__init__": + continue + source = path.read_text(encoding="utf-8") + new_source, count = replace_tr_calls( + source, reverse_map, comment_map, ambiguous_map, str(path) + ) + if count > 0: + total_replacements += count + print(f"{path} - {count} replacements") + path.write_text(new_source, encoding="utf-8", newline="\n") + + print(f"\nTotal replacements: {total_replacements}") + + +if __name__ == "__main__": + main()