diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 11e1119bc..326808fe0 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,4 +3,4 @@ # For more information on CODEOWNERS, see: # https://help.github.com/en/articles/about-code-owners -* @arkid15r @KJhellico +* @arkid15r @KJhellico @PPsyrius diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index bac02b061..857251585 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,13 +2,13 @@ blank_issues_enabled: false contact_links: - name: General question - url: https://github.com/vacanza/python-holidays/discussions/new?category=q-a + url: https://github.com/vacanza/holidays/discussions/new?category=q-a about: Ask a question - name: Bug Report - url: https://github.com/vacanza/python-holidays/issues/new?template=bug_report.md + url: https://github.com/vacanza/holidays/issues/new?template=bug_report.md about: Report an issue - name: Feature Request - url: https://github.com/vacanza/python-holidays/issues/new?template=feature_request.md + url: https://github.com/vacanza/holidays/issues/new?template=feature_request.md about: Suggest an idea diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b4863046e..1e8a46816 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,5 +1,5 @@ ## Proposed change @@ -25,7 +25,7 @@ Your PR description goes here. - [ ] Dependency update (version deprecation/pin/upgrade) - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] Breaking change (a code change causing existing functionality to break) -- [ ] New feature (new python-holidays functionality in general) +- [ ] New feature (new `holidays` functionality in general) ## Checklist @@ -41,5 +41,5 @@ Your PR description goes here. Thanks again for your contribution! --> -[contributing-guidelines]: https://github.com/vacanza/python-holidays/blob/dev/CONTRIBUTING.rst -[docs]: https://github.com/vacanza/python-holidays/tree/dev/docs/source +[contributing-guidelines]: https://github.com/vacanza/holidays/blob/dev/CONTRIBUTING.rst +[docs]: https://github.com/vacanza/holidays/tree/dev/docs/source diff --git a/.github/labeler.yml b/.github/labeler.yml index 3c2e715d2..daf82a55e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,7 +1,7 @@ ci: - changed-files: - any-glob-to-any-file: - - .github/** + - .github/workflows/** doc: - changed-files: diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b5197e60e..2834684ef 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -2,12 +2,16 @@ name: CI/CD on: merge_group: + pull_request: branches: - dev - main - v1 - pull_request: push: + branches: + - dev + - main + - v1 workflow_dispatch: env: @@ -98,7 +102,7 @@ jobs: make test - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.5.0 + uses: codecov/codecov-action@v4.6.0 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -219,7 +223,7 @@ jobs: publish-main: name: Publish generated artifacts if: | - github.repository == 'vacanza/python-holidays' && + github.repository == 'vacanza/holidays' && github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') environment: main @@ -250,5 +254,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release upload --repo vacanza/python-holidays ${{ github.ref_name }} dist/* - gh release upload --repo vacanza/python-holidays ${{ github.ref_name }} holidays-*-sbom.json + gh release upload --repo vacanza/holidays ${{ github.ref_name }} dist/* + gh release upload --repo vacanza/holidays ${{ github.ref_name }} holidays-*-sbom.json diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml index 531da47e2..5cbb8c424 100644 --- a/.github/workflows/pre-commit-autoupdate.yml +++ b/.github/workflows/pre-commit-autoupdate.yml @@ -11,7 +11,7 @@ env: jobs: auto-update: name: Update pre-commit hooks - if: ${{ github.repository == 'vacanza/python-holidays' }} + if: ${{ github.repository == 'vacanza/holidays' }} permissions: contents: write pull-requests: write @@ -40,7 +40,7 @@ jobs: pre-commit autoupdate pre-commit run --all-files - - uses: peter-evans/create-pull-request@v7.0.1 + - uses: peter-evans/create-pull-request@v7.0.5 with: base: dev body: Update pre-commit hooks to their latest versions. diff --git a/.github/workflows/update-snapshots.yml b/.github/workflows/update-snapshots.yml index 3728f1310..fac6d0fee 100644 --- a/.github/workflows/update-snapshots.yml +++ b/.github/workflows/update-snapshots.yml @@ -9,7 +9,7 @@ on: jobs: update-snapshots: name: Update snapshots - if: github.repository == 'vacanza/python-holidays' + if: github.repository == 'vacanza/holidays' permissions: contents: write pull-requests: write @@ -40,7 +40,7 @@ jobs: run: | make snapshot - - uses: peter-evans/create-pull-request@v7.0.1 + - uses: peter-evans/create-pull-request@v7.0.5 with: base: dev body: Automatically generated snapshots update. diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1244fc437..3477d2de9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-ast - id: check-builtin-literals @@ -8,9 +8,6 @@ repos: - id: end-of-file-fixer exclude_types: - rst - - id: fix-encoding-pragma - args: - - --remove - id: mixed-line-ending args: - --fix=lf @@ -18,8 +15,15 @@ repos: exclude_types: - rst + - repo: https://github.com/asottile/pyupgrade + rev: v3.17.0 + hooks: + - id: pyupgrade + args: + - --py38-plus + - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.5 + rev: v0.6.9 hooks: - id: ruff - id: ruff-format @@ -35,7 +39,7 @@ repos: - docs/file_header.txt - repo: https://github.com/pycqa/bandit - rev: 1.7.9 + rev: 1.7.10 hooks: - id: bandit additional_dependencies: @@ -76,7 +80,7 @@ repos: - id: rst-backticks - repo: https://github.com/tox-dev/tox-ini-fmt - rev: '1.4.0' + rev: '1.4.1' hooks: - id: tox-ini-fmt @@ -89,4 +93,4 @@ repos: name: run `make check` pass_filenames: false stages: - - push + - pre-push diff --git a/AUTHORS b/AUTHORS index 8b3f50ac3..f8cb57a6a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,5 @@ -Python Holidays Authors -======================= +Holidays Authors +================ Aaron Picht Aart Goossens @@ -139,4 +139,5 @@ Tudor Văran Victor Luna Victor Miti Ville Skyttä +Vu Nhat Chuong Youhei Sakurai diff --git a/CHANGES b/CHANGES index 966319a4e..d17eb305d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +Version 0.58 +============ + +Released October 7, 2024 + +- Add Congo holidays (#2037 by @PPsyrius) +- Add Saint Kitts & Nevis holidays (#2005 by @PPsyrius, @arkid15r) +- Add Vietnamese translation of VietNam holidays (#2025 by @vunhatchuong, @arkid15r) +- Update Kazakhstan holidays: add substituted holidays, localization (#2023 by @KJhellico) +- Update Malaysia holidays: add `th` localization (#2030 by @PPsyrius) +- Update Singapore holidays: add `en_SG`, `en_US`, `th` localization (#2031 by @PPsyrius) +- Update Sweden holidays: add `th` localization (#2029 by @PPsyrius) +- Update Azerbaijan holidays in 2024 (#2018 by @KJhellico) +- Update Curaçao holidays: add HALF_DAY holidays (#2039 by @KJhellico) +- Update Japan holidays (#2013 by @KJhellico) +- Update Nicaragua holidays (#2011 by @KJhellico) +- Update Taiwan holidays (#2026 by @KJhellico, @arkid15r) +- Update US holidays: American Samoa holidays (#2017 by @KJhellico) +- Update United States holidays: fix Washington's Birthday in GA & IN (#2014 by @KJhellico) +- Update `ci` label configuration (#2009 by @arkid15r) +- Update apostrophes: change `’` to `'` (#2016 by @arkid15r) +- Update working day related calculations (#2010 by @KJhellico, @arkid15r) +- Add @PPsyrius to CODEOWNERS (#2008 by @arkid15r) +- Move to `holidays` from `python-holidays` (#2027 by @arkid15r) +- Remove deprecated `fix-encoding-pragma`, add `pyupgrade` (#2007 by @PPsyrius, @arkid15r) + Version 0.57 ============ diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 969602109..879a0c636 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -2,8 +2,8 @@ Contributing ============ -.. _prs: https://github.com/vacanza/python-holidays/pulls -.. _`dev branch`: https://github.com/vacanza/python-holidays/tree/dev +.. _prs: https://github.com/vacanza/holidays/pulls +.. _`dev branch`: https://github.com/vacanza/holidays/tree/dev Basics @@ -99,7 +99,7 @@ If the translation already exists you'll just need to update it with the new template entries (your .po file editor may help you to do that with no hassle). Please also add tests (see already translated countries tests for examples). -The .mo files are generated automatically for the tests and the python-holidays +The .mo files are generated automatically for the tests and the holidays package so you shouldn't worry about it. Just don't forget to initialize the ``setUpClass`` properly: @@ -113,7 +113,7 @@ initialize the ``setUpClass`` properly: Build sphinx documentation -------------------------- -.. _readthedocs.io: https://python-holidays.readthedocs.io/ +.. _readthedocs.io: https://holidays.readthedocs.io/ The project provides a Sphinx documentation source under ``./docs/source``, published online on `readthedocs.io`_. @@ -128,9 +128,9 @@ __ https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html Contributors ------------ -.. __: https://github.com/vacanza/python-holidays/blob/dev/AUTHORS -.. |contributors| image:: https://img.shields.io/github/contributors/vacanza/python-holidays - :target: https://github.com/vacanza/python-holidays/graphs/contributors +.. __: https://github.com/vacanza/holidays/blob/dev/AUTHORS +.. |contributors| image:: https://img.shields.io/github/contributors/vacanza/holidays + :target: https://github.com/vacanza/holidays/graphs/contributors :alt: contributors In order to keep the list of contributors up to date we encourage you add your diff --git a/README.rst b/README.rst index 641c9962e..19960d789 100644 --- a/README.rst +++ b/README.rst @@ -15,20 +15,20 @@ flexible as possible. :target: https://pypi.org/project/holidays :alt: PyPI version -.. |release date| image:: https://img.shields.io/github/release-date/vacanza/python-holidays?color=41B5BE&style=flat - :target: https://github.com/vacanza/python-holidays/releases +.. |release date| image:: https://img.shields.io/github/release-date/vacanza/holidays?color=41B5BE&style=flat + :target: https://github.com/vacanza/holidays/releases :alt: PyPI release date -.. |status| image:: https://img.shields.io/github/actions/workflow/status/vacanza/python-holidays/ci-cd.yml?branch=dev&color=41BE4A&style=flat - :target: https://github.com/vacanza/python-holidays/actions/workflows/ci-cd.yml?query=branch%3Adev +.. |status| image:: https://img.shields.io/github/actions/workflow/status/vacanza/holidays/ci-cd.yml?branch=dev&color=41BE4A&style=flat + :target: https://github.com/vacanza/holidays/actions/workflows/ci-cd.yml?query=branch%3Adev :alt: CI/CD status -.. |documentation| image:: https://img.shields.io/readthedocs/python-holidays?color=41BE4A&style=flat - :target: https://python-holidays.readthedocs.io/en/latest/?badge=latest +.. |documentation| image:: https://img.shields.io/readthedocs/holidays?color=41BE4A&style=flat + :target: https://holidays.readthedocs.io/en/latest/?badge=latest :alt: Documentation status -.. |license| image:: https://img.shields.io/github/license/vacanza/python-holidays?color=41B5BE&style=flat - :target: https://github.com/vacanza/python-holidays/blob/dev/LICENSE +.. |license| image:: https://img.shields.io/github/license/vacanza/holidays?color=41B5BE&style=flat + :target: https://github.com/vacanza/holidays/blob/dev/LICENSE :alt: License .. |python versions| image:: https://img.shields.io/pypi/pyversions/holidays?label=python&color=41B5BE&style=flat @@ -39,24 +39,24 @@ flexible as possible. :target: https://github.com/astral-sh/ruff :alt: Code style -.. |coverage| image:: https://img.shields.io/codecov/c/github/vacanza/python-holidays/dev?color=41B5BE&style=flat - :target: https://app.codecov.io/gh/vacanza/python-holidays +.. |coverage| image:: https://img.shields.io/codecov/c/github/vacanza/holidays/dev?color=41B5BE&style=flat + :target: https://app.codecov.io/gh/vacanza/holidays :alt: Code coverage -.. |stars| image:: https://img.shields.io/github/stars/vacanza/python-holidays?color=41BE4A&style=flat - :target: https://github.com/vacanza/python-holidays/stargazers +.. |stars| image:: https://img.shields.io/github/stars/vacanza/holidays?color=41BE4A&style=flat + :target: https://github.com/vacanza/holidays/stargazers :alt: GitHub stars -.. |forks| image:: https://img.shields.io/github/forks/vacanza/python-holidays?color=41BE4A&style=flat - :target: https://github.com/vacanza/python-holidays/forks +.. |forks| image:: https://img.shields.io/github/forks/vacanza/holidays?color=41BE4A&style=flat + :target: https://github.com/vacanza/holidays/forks :alt: GitHub forks -.. |contributors| image:: https://img.shields.io/github/contributors/vacanza/python-holidays?color=41BE4A&style=flat - :target: https://github.com/vacanza/python-holidays/graphs/contributors +.. |contributors| image:: https://img.shields.io/github/contributors/vacanza/holidays?color=41BE4A&style=flat + :target: https://github.com/vacanza/holidays/graphs/contributors :alt: GitHub contributors -.. |last commit| image:: https://img.shields.io/github/last-commit/vacanza/python-holidays/dev?color=41BE4A&style=flat - :target: https://github.com/vacanza/python-holidays/commits/dev +.. |last commit| image:: https://img.shields.io/github/last-commit/vacanza/holidays/dev?color=41BE4A&style=flat + :target: https://github.com/vacanza/holidays/commits/dev :alt: GitHub last commit +--------+------------------------------------------------+ @@ -82,7 +82,7 @@ The latest development (dev) version can be installed directly from GitHub: .. code-block:: shell - $ pip install --upgrade https://github.com/vacanza/python-holidays/tarball/dev + $ pip install --upgrade https://github.com/vacanza/holidays/tarball/dev All new features are always first pushed to dev branch, then released on main branch upon official version upgrades. @@ -90,7 +90,7 @@ main branch upon official version upgrades. Documentation ------------- -.. _Read the Docs: https://python-holidays.readthedocs.io/ +.. _Read the Docs: https://holidays.readthedocs.io/ The documentation is hosted on `Read the Docs`_. @@ -132,9 +132,9 @@ Some holidays may be only present in parts of a country: '2018-01-06' in us_holidays # False '2018-01-06' in us_pr_holidays # True -.. _python-holidays documentation: https://python-holidays.readthedocs.io/ +.. _holidays documentation: https://holidays.readthedocs.io/ -Please see the `python-holidays documentation`_ for additional examples and +Please see the `holidays documentation`_ for additional examples and detailed information. @@ -146,7 +146,7 @@ Available Countries .. _ISO 639-1 code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes .. _ISO 639-2 code: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes -We currently support 152 country codes. The standard way to refer to a country +We currently support 154 country codes. The standard way to refer to a country is by using its `ISO 3166-1 alpha-2 code`_, the same used for domain names, and for a subdivision its `ISO 3166-2 code`_. Some countries have common or foreign names or abbreviations as aliases for their subdivisions. These are defined in @@ -345,6 +345,11 @@ All other default values are highlighted with bold: - - en_US, **es**, uk - + * - Congo + - CG + - + - en_US, **fr** + - * - Costa Rica - CR - @@ -364,7 +369,7 @@ All other default values are highlighted with bold: - CW - - en_US, nl, **pap_CW**, uk - - + - HALF_DAY * - Cyprus - CY - @@ -558,7 +563,7 @@ All other default values are highlighted with bold: * - Kazakhstan - KZ - - - + - en_US, **kk**, uk - * - Kenya - KE @@ -618,7 +623,7 @@ All other default values are highlighted with bold: * - Malaysia - MY - States and federal territories: 01 (Johor, JHR), 02 (Kedah, KDH), 03 (Kelantan, KTN), 04 (Melaka, MLK), 05 (Negeri Sembilan, NSN), 06 (Pahang, PHG), 07 (Pulau Pinang, PNG), 08 (Perak, PRK), 09 (Perlis, PLS), 10 (Selangor, SGR), 11 (Terengganu, TRG), 12 (Sabah, SBH), 13 (Sarawak, SWK), 14 (WP Kuala Lumpur, KUL), 15 (WP Labuan, LBN), 16 (WP Putrajaya, PJY) - - en_US, **ms_MY** + - en_US, **ms_MY**, th - * - Maldives - MV @@ -687,7 +692,7 @@ All other default values are highlighted with bold: - * - Nicaragua - NI - - Departments: AN, AS, BO, CA, CI, CO, ES, GR, JI, LE, MD, **MN**, MS, MT, NS, RI, SJ + - Subdivisions: AN (Costa Caribe Norte), AS (Costa Caribe Sur), BO (Boaco), CA (Carazo), CI (Chinandega), CO (Chontales), ES (Estelí), GR (Granada), JI (Jinotega), LE (León), MD (Madriz), MN (Managua), MS (Masaya), MT (Matagalpa), NS (Nueva Segovia), RI (Rivas), SJ (Río San Juan) - en_US, **es**, uk - * - Nigeria @@ -770,6 +775,11 @@ All other default values are highlighted with bold: - - en_US, **ru** - + * - Saint Kitts and Nevis + - KN + - + - + - HALF_DAY, WORKDAY * - Samoa - WS - @@ -798,7 +808,7 @@ All other default values are highlighted with bold: * - Singapore - SG - - - + - **en_SG**, en_US, th - * - Slovakia - SK @@ -828,7 +838,7 @@ All other default values are highlighted with bold: * - Sweden - SE - - - en_US, **sv**, uk + - en_US, **sv**, th, uk - * - Switzerland - CH @@ -928,7 +938,7 @@ All other default values are highlighted with bold: * - Vietnam - VN - - - + - en_US, **vi** - * - Virgin Islands (U.S.) - VI @@ -978,9 +988,9 @@ following financial markets are available: Contributions ------------- -.. _Issues: https://github.com/vacanza/python-holidays/issues -.. _pull requests: https://github.com/vacanza/python-holidays/pulls -.. _here: https://github.com/vacanza/python-holidays/blob/dev/CONTRIBUTING.rst +.. _Issues: https://github.com/vacanza/holidays/issues +.. _pull requests: https://github.com/vacanza/holidays/pulls +.. _here: https://github.com/vacanza/holidays/blob/dev/CONTRIBUTING.rst Issues_ and `pull requests`_ are always welcome. Please see `here`_ for more information. @@ -988,7 +998,7 @@ Issues_ and `pull requests`_ are always welcome. Please see License ------- -.. __: https://github.com/vacanza/python-holidays/blob/dev/LICENSE +.. __: https://github.com/vacanza/holidays/blob/dev/LICENSE Code and documentation are available according to the MIT License (see LICENSE__). diff --git a/RELEASE.rst b/RELEASE.rst index be24a56ce..591ba8016 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,16 +1,16 @@ -How to release a new version of Python Holidays -=============================================== +How to release a new version of Holidays +======================================== - Finalize the current development version - switch to ``dev`` branch and pull the most recent changes - from https://github.com/vacanza/python-holidays remote ``dev`` branch. + from https://github.com/vacanza/holidays remote ``dev`` branch. - generate release notes by running ``make release-notes`` - insert the command's output into the top of ``CHANGES`` file (see previous release notes for consistent formatting) - commit the updated ``CHANGES`` file to ``dev`` branch with the following commit message 'Finalize v', e.g. 'Finalize v0.39' - - push changes to https://github.com/vacanza/python-holidays ``dev`` branch + - push changes to https://github.com/vacanza/holidays ``dev`` branch - make sure the push related CI/CD jobs have been completed successfully - Merge the finalized changes into ``main`` branch: @@ -22,12 +22,12 @@ How to release a new version of Python Holidays - merge the PR into ``main`` branch using 'Merge when ready' button - make sure the PR related CI/CD jobs have been completed successfully - make sure readthedocs.org documentation build jobs at - https://readthedocs.org/projects/python-holidays/builds/ + https://readthedocs.org/projects/holidays/builds/ have been completed successfully - Create a new release: - - open https://github.com/vacanza/python-holidays/releases page and click + - open https://github.com/vacanza/holidays/releases page and click on the 'Draft a new release' button - click on 'Choose a tag', enter 'v' into the input field (you should see something like 'Create a new tag: v0.39' on publish' @@ -41,7 +41,7 @@ How to release a new version of Python Holidays - check/uncheck the 'Set as the latest release' checkbox depending on the release status - save the draft (do not publish it yet) - - preview the release on https://github.com/vacanza/python-holidays/releases + - preview the release on https://github.com/vacanza/holidays/releases - after making sure everything looks right click 'Edit' and then 'Publish release' @@ -53,14 +53,14 @@ How to release a new version of Python Holidays - Finish the process with the following post-release actions: - - send "Python Holidays 'v' has been released!" (or similar) message + - send "Holidays 'v' has been released!" (or similar) message to Vacanza Team Slack #release channel - pull the recent changes from ``main`` branch into ``dev`` - - bump the Python Holidays version at ``holidays/__init__.py`` file + - bump the Holidays version at ``holidays/__init__.py`` file - create a commit with 'Initialize v' message, e.g. 'Initialize v0.40' and push it to ``dev`` branch (this may require running ``make package`` to pass the tests locally) - make sure ``dev`` branch **is not behind** the ``main`` branch (there will be a message on top of the - https://github.com/vacanza/python-holidays/tree/dev page in case it is) + https://github.com/vacanza/holidays/tree/dev page in case it is) - make sure the push related CI/CD jobs have been completed successfully diff --git a/docs/file_header.txt b/docs/file_header.txt index 151242a8a..0a0b4fbe2 100644 --- a/docs/file_header.txt +++ b/docs/file_header.txt @@ -7,5 +7,5 @@ Authors: Vacanza Team and individual contributors (see AUTHORS file) dr-prodigy (c) 2017-2023 ryanss (c) 2014-2017 - Website: https://github.com/vacanza/python-holidays + Website: https://github.com/vacanza/holidays License: MIT (see LICENSE file) diff --git a/docs/source/conf.py b/docs/source/conf.py index bd5c20013..f7d08c877 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # Configuration file for the Sphinx documentation builder. @@ -44,7 +44,7 @@ project = "holidays" copyright = str(date.today().year) -author = "dr-prodigy" +author = "Vacanza Team" version = holidays.__version__ @@ -79,7 +79,7 @@ # templates_path = ['_templates'] # The name of the Pygments (syntax highlighting) style to use. -# If not set, either the theme’s default style or 'sphinx' is selected for HTML +# If not set, either the theme's default style or 'sphinx' is selected for HTML # output. # pygments_style = "sphinx" @@ -112,7 +112,7 @@ # html_style = "css/custom.css" -# The “title” for HTML documentation generated with Sphinx’s own templates. +# The “title” for HTML documentation generated with Sphinx's own templates. # # html_title = ' v documentation' # default @@ -128,7 +128,7 @@ # # html_favicon = None # default -# A ‘Last updated on:’ timestamp is inserted at every page bottom, using the +# A 'Last updated on:' timestamp is inserted at every page bottom, using the # given strftime() format. The empty # string is equivalent to '%b %d, %Y' # (or a locale-dependent equivalent). # diff --git a/docs/source/examples.rst b/docs/source/examples.rst index 3cd7d696b..f43a76909 100644 --- a/docs/source/examples.rst +++ b/docs/source/examples.rst @@ -178,6 +178,42 @@ To get a list of other categories holidays (for countries that support them): 2023-12-25 Christmas Day 2023-12-26 Bank Holiday +Working day-related calculations +-------------------------------- + +To check if the specified date is a working day: + +.. code-block:: python + + >>> us_holidays = holidays.US(years=2024) # Weekends in the US are Saturday and Sunday. + >>> us_holidays.is_working_day("2024-01-01") # Monday, New Year's Day. + False + >>> us_holidays.is_working_day("2024-01-02") # Tuesday, ordinary day. + True + >>> us_holidays.is_working_day("2024-01-06") # Saturday, ordinary day. + False + >>> us_holidays.is_working_day("2024-01-15") # Monday, Martin Luther King Jr. Day. + False + +To find the nth working day after the specified date: + +.. code-block:: python + + >>> us_holidays.get_nth_working_day("2024-12-20", 5) + datetime.date(2024, 12, 30) + +Here we calculate the 5th working day after December 20, 2024. Working days are 23 (Mon), +24 (Tue), 26 (Thu), 27 (Fri), 30 (Mon); 21-22, 28-29 - weekends, 25 - Christmas Day. + +To calculate the number or working days between two specified dates: + +.. code-block:: python + + >>> us_holidays.get_working_days_count("2024-04-01", "2024-06-30") + 63 + +Here we calculate the number of working days in Q2 2024. + Date from holiday name ---------------------- diff --git a/docs/source/index.rst b/docs/source/index.rst index 91c594407..5a712760a 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,4 +1,4 @@ -.. python-holidays documentation master file, created by +.. holidays documentation master file, created by sphinx-quickstart on Sat Nov 27 12:00:54 2021. You can adapt this file completely to your liking, but it should at least contain the root ``toctree`` directive. diff --git a/holidays/__init__.py b/holidays/__init__.py index 3717dca99..e97984831 100644 --- a/holidays/__init__.py +++ b/holidays/__init__.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F403 @@ -23,7 +23,7 @@ from holidays.registry import EntityLoader from holidays.utils import * -__version__ = "0.57" +__version__ = "0.58" EntityLoader.load("countries", globals()) diff --git a/holidays/calendars/__init__.py b/holidays/calendars/__init__.py index fb0cf65b0..ff8bb182d 100644 --- a/holidays/calendars/__init__.py +++ b/holidays/calendars/__init__.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F401 diff --git a/holidays/calendars/buddhist.py b/holidays/calendars/buddhist.py index d8d28a1e1..ddf4cf24c 100644 --- a/holidays/calendars/buddhist.py +++ b/holidays/calendars/buddhist.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/chinese.py b/holidays/calendars/chinese.py index 48bb692f4..e37509daa 100644 --- a/holidays/calendars/chinese.py +++ b/holidays/calendars/chinese.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/custom.py b/holidays/calendars/custom.py index 364005f6c..1c88a9bde 100644 --- a/holidays/calendars/custom.py +++ b/holidays/calendars/custom.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/holidays/calendars/gregorian.py b/holidays/calendars/gregorian.py index 50ecdfaaa..18aeafc87 100644 --- a/holidays/calendars/gregorian.py +++ b/holidays/calendars/gregorian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -19,7 +19,7 @@ JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC = range(1, 13) -DAYS = set(str(d) for d in range(1, 32)) +DAYS = {str(d) for d in range(1, 32)} MONTHS = { m: i for i, m in enumerate( diff --git a/holidays/calendars/hebrew.py b/holidays/calendars/hebrew.py index 1935c0819..b7f39cee3 100644 --- a/holidays/calendars/hebrew.py +++ b/holidays/calendars/hebrew.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/hindu.py b/holidays/calendars/hindu.py index 5ef122058..bd7bd4a4f 100644 --- a/holidays/calendars/hindu.py +++ b/holidays/calendars/hindu.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/islamic.py b/holidays/calendars/islamic.py index 2f6a41651..b18488c27 100644 --- a/holidays/calendars/islamic.py +++ b/holidays/calendars/islamic.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/julian.py b/holidays/calendars/julian.py index 2ed6f054c..f361c03c7 100644 --- a/holidays/calendars/julian.py +++ b/holidays/calendars/julian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) JULIAN_CALENDAR = "JULIAN_CALENDAR" diff --git a/holidays/calendars/julian_revised.py b/holidays/calendars/julian_revised.py index 561f53f20..3140e45c3 100644 --- a/holidays/calendars/julian_revised.py +++ b/holidays/calendars/julian_revised.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) JULIAN_REVISED_CALENDAR = "JULIAN_REVISED_CALENDAR" diff --git a/holidays/calendars/persian.py b/holidays/calendars/persian.py index d6c4b8cc8..e6fcda449 100644 --- a/holidays/calendars/persian.py +++ b/holidays/calendars/persian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/calendars/thai.py b/holidays/calendars/thai.py index 7044b5371..268c729e7 100644 --- a/holidays/calendars/thai.py +++ b/holidays/calendars/thai.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -264,7 +264,7 @@ def __verify_calendar(calendar): f"Unknown calendar name: {calendar}. Use `KHMER_CALENDAR` or `THAI_CALENDAR`." ) - @lru_cache() + @lru_cache def _get_start_date(self, year: int) -> Optional[date]: """ Calculate the start date of that particular Thai Lunar Calendar Year. diff --git a/holidays/constants.py b/holidays/constants.py index d1f6c0972..d2ec90294 100644 --- a/holidays/constants.py +++ b/holidays/constants.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F401 diff --git a/holidays/countries/__init__.py b/holidays/countries/__init__.py index 02b7e237b..bb839fcf0 100644 --- a/holidays/countries/__init__.py +++ b/holidays/countries/__init__.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F401 @@ -45,6 +45,7 @@ from .chile import Chile, CL, CHL from .china import China, CN, CHN from .colombia import Colombia, CO, COL +from .congo import Congo, CG, COG from .costa_rica import CostaRica, CR, CRI from .croatia import Croatia, HR, HRV from .cuba import Cuba, CU, CUB @@ -130,6 +131,7 @@ from .puerto_rico import PuertoRico, PR, PRI, HolidaysPR from .romania import Romania, RO, ROU from .russia import Russia, RU, RUS +from .saint_kitts_and_nevis import SaintKittsAndNevis, KN, KNA from .samoa import Samoa, WS, WSM from .san_marino import SanMarino, SM, SMR from .saudi_arabia import SaudiArabia, SA, SAU diff --git a/holidays/countries/albania.py b/holidays/countries/albania.py index eb0e0b3b6..6dca95a15 100644 --- a/holidays/countries/albania.py +++ b/holidays/countries/albania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, MAR diff --git a/holidays/countries/algeria.py b/holidays/countries/algeria.py index bc06e07e4..1affb5b79 100644 --- a/holidays/countries/algeria.py +++ b/holidays/countries/algeria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/american_samoa.py b/holidays/countries/american_samoa.py index 52cfda484..2adac44a9 100644 --- a/holidays/countries/american_samoa.py +++ b/holidays/countries/american_samoa.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/andorra.py b/holidays/countries/andorra.py index 6f470c850..cacb5c3fd 100644 --- a/holidays/countries/andorra.py +++ b/holidays/countries/andorra.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/angola.py b/holidays/countries/angola.py index 4cf4d0d2a..c113352cc 100644 --- a/holidays/countries/angola.py +++ b/holidays/countries/angola.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/argentina.py b/holidays/countries/argentina.py index 7ec9935b4..c1e34e0ef 100644 --- a/holidays/countries/argentina.py +++ b/holidays/countries/argentina.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/armenia.py b/holidays/countries/armenia.py index a3db7e4a1..17fda98b4 100644 --- a/holidays/countries/armenia.py +++ b/holidays/countries/armenia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/aruba.py b/holidays/countries/aruba.py index 83cf64ff4..0d9ca52fc 100644 --- a/holidays/countries/aruba.py +++ b/holidays/countries/aruba.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/australia.py b/holidays/countries/australia.py index 8a63f4ef0..a5f121264 100644 --- a/holidays/countries/australia.py +++ b/holidays/countries/australia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/austria.py b/holidays/countries/austria.py index 1a4f16b8d..e27f4db5f 100644 --- a/holidays/countries/austria.py +++ b/holidays/countries/austria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/azerbaijan.py b/holidays/countries/azerbaijan.py index ed236b7eb..cd02b78d0 100644 --- a/holidays/countries/azerbaijan.py +++ b/holidays/countries/azerbaijan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -210,6 +210,7 @@ class AzerbaijanIslamicHolidays(_CustomIslamicHolidays): 2021: (JUL, 20), 2022: (JUL, 9), 2023: (JUN, 28), + 2024: (JUN, 16), } EID_AL_FITR_DATES = { @@ -246,6 +247,9 @@ class AzerbaijanStaticHolidays: # Day off (substituted from %s). substituted_label = tr("İstirahət günü (%s ilə əvəz edilmişdir)") + # Presidential elections. + presidential_elections = tr("Prezidenti seçkiləri") + special_public_holidays = { 2011: (AUG, 29, AUG, 27), 2013: ( @@ -256,8 +260,7 @@ class AzerbaijanStaticHolidays: (JAN, 3, DEC, 28, 2013), (JAN, 6, DEC, 29, 2013), ), - # Presidential elections. - 2018: (APR, 11, tr("Prezidenti seçkiləri")), + 2018: (APR, 11, presidential_elections), # Municipal elections. 2019: (DEC, 27, tr("Bələdiyyə seçkiləri")), 2020: ( @@ -280,6 +283,14 @@ class AzerbaijanStaticHolidays: (JUN, 30, JUN, 25), (NOV, 10, NOV, 4), ), + 2024: ( + (JAN, 4, DEC, 30, 2023), + (JAN, 5, JAN, 7), + (FEB, 7, presidential_elections), + (APR, 12, APR, 6), + (NOV, 12, NOV, 16), + (NOV, 13, NOV, 23), + ), } special_public_holidays_observed = { diff --git a/holidays/countries/bahamas.py b/holidays/countries/bahamas.py index 2d8811137..f7eb6e7c1 100644 --- a/holidays/countries/bahamas.py +++ b/holidays/countries/bahamas.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import SEP, DEC diff --git a/holidays/countries/bahrain.py b/holidays/countries/bahrain.py index ee1655d5e..9d01c00a8 100644 --- a/holidays/countries/bahrain.py +++ b/holidays/countries/bahrain.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/bangladesh.py b/holidays/countries/bangladesh.py index fc0803e7f..d76acf7a4 100644 --- a/holidays/countries/bangladesh.py +++ b/holidays/countries/bangladesh.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FRI, SAT diff --git a/holidays/countries/barbados.py b/holidays/countries/barbados.py index acc0bfbb2..00c124b38 100644 --- a/holidays/countries/barbados.py +++ b/holidays/countries/barbados.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, JUL diff --git a/holidays/countries/belarus.py b/holidays/countries/belarus.py index 838f7cbca..781a7831e 100644 --- a/holidays/countries/belarus.py +++ b/holidays/countries/belarus.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/belgium.py b/holidays/countries/belgium.py index 726b22fd5..cf72390e8 100644 --- a/holidays/countries/belgium.py +++ b/holidays/countries/belgium.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/belize.py b/holidays/countries/belize.py index 561cb3cad..3a943c9ac 100644 --- a/holidays/countries/belize.py +++ b/holidays/countries/belize.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/bolivia.py b/holidays/countries/bolivia.py index 11a07fbb6..623f0d5a3 100644 --- a/holidays/countries/bolivia.py +++ b/holidays/countries/bolivia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/bosnia_and_herzegovina.py b/holidays/countries/bosnia_and_herzegovina.py index 14c0f4394..0ca8b0649 100644 --- a/holidays/countries/bosnia_and_herzegovina.py +++ b/holidays/countries/bosnia_and_herzegovina.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/botswana.py b/holidays/countries/botswana.py index 9bfcf50ef..e898a17f0 100644 --- a/holidays/countries/botswana.py +++ b/holidays/countries/botswana.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JUL diff --git a/holidays/countries/brazil.py b/holidays/countries/brazil.py index 1a271cd81..9ec71a13c 100644 --- a/holidays/countries/brazil.py +++ b/holidays/countries/brazil.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/brunei.py b/holidays/countries/brunei.py index b53b7a559..9df846f72 100644 --- a/holidays/countries/brunei.py +++ b/holidays/countries/brunei.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/bulgaria.py b/holidays/countries/bulgaria.py index 9403f6b9f..94833b133 100644 --- a/holidays/countries/bulgaria.py +++ b/holidays/countries/bulgaria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/burkina_faso.py b/holidays/countries/burkina_faso.py index 31cc0ff2e..52add844e 100644 --- a/holidays/countries/burkina_faso.py +++ b/holidays/countries/burkina_faso.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomIslamicHolidays diff --git a/holidays/countries/burundi.py b/holidays/countries/burundi.py index 1f88c5e05..1cfcf2cfb 100644 --- a/holidays/countries/burundi.py +++ b/holidays/countries/burundi.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, IslamicHolidays, InternationalHolidays diff --git a/holidays/countries/cambodia.py b/holidays/countries/cambodia.py index 808a9058b..2a1155854 100644 --- a/holidays/countries/cambodia.py +++ b/holidays/countries/cambodia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/cameroon.py b/holidays/countries/cameroon.py index f13c8e185..d68d01c60 100644 --- a/holidays/countries/cameroon.py +++ b/holidays/countries/cameroon.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomIslamicHolidays diff --git a/holidays/countries/canada.py b/holidays/countries/canada.py index 71db4f1f2..ae62cafef 100644 --- a/holidays/countries/canada.py +++ b/holidays/countries/canada.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/chad.py b/holidays/countries/chad.py index 7c51650ea..0c4ea4595 100644 --- a/holidays/countries/chad.py +++ b/holidays/countries/chad.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomIslamicHolidays diff --git a/holidays/countries/chile.py b/holidays/countries/chile.py index f1f01cc90..3e2bea150 100644 --- a/holidays/countries/chile.py +++ b/holidays/countries/chile.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/china.py b/holidays/countries/china.py index 4a8c0b1b0..f07eb9421 100644 --- a/holidays/countries/china.py +++ b/holidays/countries/china.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr @@ -220,7 +220,7 @@ class ChinaStaticHolidays: # Mid-Autumn Festival. mid_autumn_festival = tr("中秋节") - # 70th Anniversary of the Victory of the Chinese People’s War of Resistance against + # 70th Anniversary of the Victory of the Chinese People's War of Resistance against # Japanese Aggression and the World Anti-Fascist War. victory_70_anniversary = tr("中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日") diff --git a/holidays/countries/colombia.py b/holidays/countries/colombia.py index 2a6fe6183..067be2517 100644 --- a/holidays/countries/colombia.py +++ b/holidays/countries/colombia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/congo.py b/holidays/countries/congo.py new file mode 100644 index 000000000..5c8b7efa8 --- /dev/null +++ b/holidays/countries/congo.py @@ -0,0 +1,82 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +from gettext import gettext as tr + +from holidays.groups import ChristianHolidays, InternationalHolidays +from holidays.holiday_base import HolidayBase + + +class Congo(HolidayBase, ChristianHolidays, InternationalHolidays): + """ + References: + - Loi N° 2-94: + - http://mokili.free.fr/jours_feries.php + - Loi N° l8-20l0: + - https://www.finances.gouv.cg/sites/default/files/documents/n¯18-2010%20du%2027%20novembre%202010.PDF + + Cross-Checked With: + - https://en.wikipedia.org/wiki/Public_holidays_in_the_Republic_of_the_Congo + """ + + country = "CG" + default_language = "fr" + supported_languages = ("en_US", "fr") + + def __init__(self, *args, **kwargs) -> None: + ChristianHolidays.__init__(self) + InternationalHolidays.__init__(self) + super().__init__(*args, **kwargs) + + def _populate_public_holidays(self): + # Loi N° 2-94 of 1 March 1994 + if self._year <= 1993: + return None + + # New Year's Day. + self._add_new_years_day(tr("Jour de l'An")) + + # Easter Monday. + self._add_easter_monday(tr("Lundi de Pâques")) + + # Labor Day. + self._add_labor_day(tr("Fête du Travail")) + + # Ascension Day. + self._add_ascension_thursday(tr("Ascension")) + + # Whit Monday. + self._add_whit_monday(tr("Lundi de Pentecôte")) + + # Reconciliation Day. + self._add_holiday_jun_10(tr("Fête de la Réconciliation")) + + # National Day. + self._add_holiday_aug_15(tr("Fête Nationale")) + + # All Saints' Day. + self._add_all_saints_day(tr("Toussaint")) + + if self._year >= 2010: + # Republic Day. + self._add_holiday_nov_28(tr("Jour de la République")) + + # Christmas Day. + self._add_christmas_day(tr("Noël")) + + +class CG(Congo): + pass + + +class COG(Congo): + pass diff --git a/holidays/countries/costa_rica.py b/holidays/countries/costa_rica.py index c5d49f6a8..cb0930eb6 100644 --- a/holidays/countries/costa_rica.py +++ b/holidays/countries/costa_rica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/croatia.py b/holidays/countries/croatia.py index 0bf8d1023..ed22e7cb5 100644 --- a/holidays/countries/croatia.py +++ b/holidays/countries/croatia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/cuba.py b/holidays/countries/cuba.py index 99b99a455..03556fa04 100644 --- a/holidays/countries/cuba.py +++ b/holidays/countries/cuba.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/curacao.py b/holidays/countries/curacao.py index 391e8c5db..49725a971 100644 --- a/holidays/countries/curacao.py +++ b/holidays/countries/curacao.py @@ -7,13 +7,14 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date from gettext import gettext as tr from holidays.calendars.gregorian import APR, MAY, _timedelta +from holidays.constants import HALF_DAY, PUBLIC from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -22,13 +23,11 @@ class Curacao(HolidayBase, ChristianHolidays, InternationalHolidays): """ https://loketdigital.gobiernu.cw/Loket/product/571960bbe1e5fe8712b10a1323630e70 https://en.wikipedia.org/wiki/Public_holidays_in_Cura%C3%A7ao - - New Year's Eve (Vispu di Aña Nobo) is a half-day public holiday, though - this isn't supported by Python Holidays so it won't be implemented. """ country = "CW" default_language = "pap_CW" + supported_categories = (HALF_DAY, PUBLIC) supported_languages = ("en_US", "nl", "pap_CW", "uk") def __init__(self, *args, **kwargs): @@ -136,6 +135,13 @@ def _populate_public_holidays(self): # Second Day of Christmas self._add_christmas_day_two(tr("Di dos dia di Pasku di Nasementu")) + def _populate_half_day_holidays(self): + if self._year <= 1953: + return None + + # New Year's Eve. + self._add_new_years_eve(tr("Vispu di Aña Nobo")) + class CW(Curacao): pass diff --git a/holidays/countries/cyprus.py b/holidays/countries/cyprus.py index 05cff38e3..f3aac8a1c 100644 --- a/holidays/countries/cyprus.py +++ b/holidays/countries/cyprus.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/czechia.py b/holidays/countries/czechia.py index ba7832e64..888037afa 100644 --- a/holidays/countries/czechia.py +++ b/holidays/countries/czechia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/denmark.py b/holidays/countries/denmark.py index d7bdb6b7a..25aea5249 100644 --- a/holidays/countries/denmark.py +++ b/holidays/countries/denmark.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/djibouti.py b/holidays/countries/djibouti.py index ca7577673..a9338122c 100644 --- a/holidays/countries/djibouti.py +++ b/holidays/countries/djibouti.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/dominica.py b/holidays/countries/dominica.py index f8a3034f5..aeb36bc24 100644 --- a/holidays/countries/dominica.py +++ b/holidays/countries/dominica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, JUL, SEP diff --git a/holidays/countries/dominican_republic.py b/holidays/countries/dominican_republic.py index eb6625856..d0a02c4bb 100644 --- a/holidays/countries/dominican_republic.py +++ b/holidays/countries/dominican_republic.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/ecuador.py b/holidays/countries/ecuador.py index e77e5ca46..2e5acd7b6 100644 --- a/holidays/countries/ecuador.py +++ b/holidays/countries/ecuador.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/egypt.py b/holidays/countries/egypt.py index 9efe368cc..3fe78a236 100644 --- a/holidays/countries/egypt.py +++ b/holidays/countries/egypt.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/el_salvador.py b/holidays/countries/el_salvador.py index 01a787b85..397f7c10e 100644 --- a/holidays/countries/el_salvador.py +++ b/holidays/countries/el_salvador.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/estonia.py b/holidays/countries/estonia.py index 26486159c..922240393 100644 --- a/holidays/countries/estonia.py +++ b/holidays/countries/estonia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/eswatini.py b/holidays/countries/eswatini.py index 13bb3cb9b..d6396335d 100644 --- a/holidays/countries/eswatini.py +++ b/holidays/countries/eswatini.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/holidays/countries/ethiopia.py b/holidays/countries/ethiopia.py index 34ddc4e46..63da9f102 100644 --- a/holidays/countries/ethiopia.py +++ b/holidays/countries/ethiopia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from calendar import isleap diff --git a/holidays/countries/finland.py b/holidays/countries/finland.py index 9b405f45c..67db91008 100644 --- a/holidays/countries/finland.py +++ b/holidays/countries/finland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/france.py b/holidays/countries/france.py index 76c8f72e0..663e2f61a 100644 --- a/holidays/countries/france.py +++ b/holidays/countries/france.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/gabon.py b/holidays/countries/gabon.py index 31f94ccd8..8ac8aeab3 100644 --- a/holidays/countries/gabon.py +++ b/holidays/countries/gabon.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomIslamicHolidays diff --git a/holidays/countries/georgia.py b/holidays/countries/georgia.py index 0aa2d9ee4..988efeaf3 100644 --- a/holidays/countries/georgia.py +++ b/holidays/countries/georgia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/germany.py b/holidays/countries/germany.py index 9328ce3af..771e2ca6f 100644 --- a/holidays/countries/germany.py +++ b/holidays/countries/germany.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/ghana.py b/holidays/countries/ghana.py index 025f3fc44..324ad587c 100644 --- a/holidays/countries/ghana.py +++ b/holidays/countries/ghana.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays, IslamicHolidays diff --git a/holidays/countries/greece.py b/holidays/countries/greece.py index fcacb9177..61450d374 100644 --- a/holidays/countries/greece.py +++ b/holidays/countries/greece.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/greenland.py b/holidays/countries/greenland.py index 91d4fae71..e75d6af25 100644 --- a/holidays/countries/greenland.py +++ b/holidays/countries/greenland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/guam.py b/holidays/countries/guam.py index 88099b042..0d2e9e357 100644 --- a/holidays/countries/guam.py +++ b/holidays/countries/guam.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/guatemala.py b/holidays/countries/guatemala.py index 033616f0a..6bdb66a80 100644 --- a/holidays/countries/guatemala.py +++ b/holidays/countries/guatemala.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/haiti.py b/holidays/countries/haiti.py index 2d7259cce..a4b5ad681 100644 --- a/holidays/countries/haiti.py +++ b/holidays/countries/haiti.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/honduras.py b/holidays/countries/honduras.py index 3edfe3237..9c5ef8834 100644 --- a/holidays/countries/honduras.py +++ b/holidays/countries/honduras.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/hongkong.py b/holidays/countries/hongkong.py index b9458acee..b6a57b371 100644 --- a/holidays/countries/hongkong.py +++ b/holidays/countries/hongkong.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/hungary.py b/holidays/countries/hungary.py index f57d43f71..8dbcd997a 100644 --- a/holidays/countries/hungary.py +++ b/holidays/countries/hungary.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/iceland.py b/holidays/countries/iceland.py index 7947f12d6..4a88ee0bb 100644 --- a/holidays/countries/iceland.py +++ b/holidays/countries/iceland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/india.py b/holidays/countries/india.py index 59432c7bc..b6a5e4fd8 100644 --- a/holidays/countries/india.py +++ b/holidays/countries/india.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/holidays/countries/indonesia.py b/holidays/countries/indonesia.py index b5ae4e3b0..e833a0d0e 100644 --- a/holidays/countries/indonesia.py +++ b/holidays/countries/indonesia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/iran.py b/holidays/countries/iran.py index 364c51aa2..d49d593a2 100644 --- a/holidays/countries/iran.py +++ b/holidays/countries/iran.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/ireland.py b/holidays/countries/ireland.py index 7df326bab..71c3235f6 100644 --- a/holidays/countries/ireland.py +++ b/holidays/countries/ireland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FEB, MAR, SEP, DEC diff --git a/holidays/countries/isle_of_man.py b/holidays/countries/isle_of_man.py index c875553a3..2828deaa6 100644 --- a/holidays/countries/isle_of_man.py +++ b/holidays/countries/isle_of_man.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.countries.united_kingdom import UnitedKingdom, UnitedKingdomStaticHolidays diff --git a/holidays/countries/israel.py b/holidays/countries/israel.py index 733f5b793..c4f3f9509 100644 --- a/holidays/countries/israel.py +++ b/holidays/countries/israel.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/italy.py b/holidays/countries/italy.py index 18e14c135..efe769b0d 100644 --- a/holidays/countries/italy.py +++ b/holidays/countries/italy.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import MAR diff --git a/holidays/countries/jamaica.py b/holidays/countries/jamaica.py index e8ef449e4..c9538634f 100644 --- a/holidays/countries/jamaica.py +++ b/holidays/countries/jamaica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/japan.py b/holidays/countries/japan.py index 83f3793c2..de8da4beb 100644 --- a/holidays/countries/japan.py +++ b/holidays/countries/japan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -51,29 +51,34 @@ def __init__(self, *args, **kwargs) -> None: kwargs.setdefault("observed_rule", SUN_TO_NEXT_WORKDAY) super().__init__(*args, **kwargs) + def _is_observed(self, dt: date) -> bool: + return dt >= date(1973, APR, 12) + def _populate_observed(self, dts: Set[date]) -> None: # When a national holiday falls on Sunday, next working day - # shall become a public holiday (振替休日) - substitute holidays. + # shall become a public holiday (振替休日) - substitute holiday. for dt in sorted(dts): - is_observed, dt_observed = self._add_observed( - dt, - # Substitute Holiday. - name=tr("振替休日"), - show_observed_label=False, - ) - if is_observed: - dts.add(dt_observed) # type: ignore[arg-type] - - # A weekday between national holidays becomes - # a holiday too (国民の休日) - national holidays. - for dt in dts: - if _timedelta(dt, +2) not in dts: - continue - dt_observed = _timedelta(dt, +1) - if self._is_sunday(dt_observed) or dt_observed in dts: - continue - # National Holiday. - self._add_holiday(tr("国民の休日"), dt_observed) + # Substitute Holiday. + self._add_observed(dt, name=tr("振替休日"), show_observed_label=False) + + # A weekday between national holidays becomes a holiday too (国民の休日) - + # national holiday. + # In 1986-2006 it was only May 4 (between Constitution Day and Children's Day). + # Since 2006, it may be only the day between Respect for the Aged Day and + # Autumnal Equinox Day (in September). + if self._year <= 1985: + return None + if self._year <= 2006: + may_4 = (MAY, 4) + if not self._is_monday(may_4) and not self._is_sunday(may_4): + # National Holiday. + self._add_holiday(tr("国民の休日"), may_4) + else: + for dt in dts: + if dt.month == SEP and _timedelta(dt, +2) in dts: + # National Holiday. + self._add_holiday(tr("国民の休日"), _timedelta(dt, +1)) + break def _populate_public_holidays(self): if self._year < 1949 or self._year > 2099: @@ -147,11 +152,7 @@ def _populate_public_holidays(self): } # Mountain Day. name = tr("山の日") - dts_observed.add( - self._add_holiday(name, dates[self._year]) - if self._year in dates - else self._add_holiday_aug_11(name) - ) + dts_observed.add(self._add_holiday(name, dates.get(self._year, (AUG, 11)))) if self._year >= 1966: # Respect for the Aged Day. @@ -204,6 +205,7 @@ def _populate_bank_holidays(self): # Bank Holiday. name = tr("銀行休業日") + self._add_new_years_day(name) self._add_new_years_day_two(name) self._add_new_years_day_three(name) self._add_new_years_eve(name) diff --git a/holidays/countries/jersey.py b/holidays/countries/jersey.py index 68f5e29d4..c79630b53 100644 --- a/holidays/countries/jersey.py +++ b/holidays/countries/jersey.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/jordan.py b/holidays/countries/jordan.py index 49a8f8dbc..e7ab398e5 100644 --- a/holidays/countries/jordan.py +++ b/holidays/countries/jordan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/kazakhstan.py b/holidays/countries/kazakhstan.py index 6c21b49e5..5f7467a58 100644 --- a/holidays/countries/kazakhstan.py +++ b/holidays/countries/kazakhstan.py @@ -7,30 +7,90 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) +from gettext import gettext as tr + +from holidays.calendars import _CustomIslamicHolidays +from holidays.calendars.gregorian import JAN, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC from holidays.calendars.julian import JULIAN_CALENDAR -from holidays.groups import ChristianHolidays, InternationalHolidays, IslamicHolidays +from holidays.groups import ( + ChristianHolidays, + InternationalHolidays, + IslamicHolidays, + StaticHolidays, +) from holidays.observed_holiday_base import ObservedHolidayBase, SAT_SUN_TO_NEXT_WORKDAY -class Kazakhstan(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays): +class Kazakhstan( + ObservedHolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays, StaticHolidays +): """ References: - - https://www.officeholidays.com/countries/kazakhstan/2020 - - https://egov.kz/cms/en/articles/holidays-calend - https://en.wikipedia.org/wiki/Public_holidays_in_Kazakhstan - - https://adilet.zan.kz/rus/docs/Z010000267%5F/history + - https://egov.kz/cms/en/articles/holidays-calend + - https://adilet.zan.kz/kaz/docs/Z010000267%5F/history + - https://adilet.zan.kz/kaz/docs/Z990000493%5F#z63 + + Substituted holidays: + - `2000 `_ + - 2001: ``_, + ``_, + ``_ + - `2002 `_ + - 2003: ``_, + ``_ + - 2005: ``_, + ``_, + ``_ + - 2006: ``_, + ``_ + - 2007: ``_, + ``_, + ``_, + ``_, + ``_ + - `2008 `_ + - `2009 `_ + - 2010: ``_, + ``_ + - 2011: ``_, + ``_ + - 2012: ``_, + ``_, + ``_ + - 2013: ``_, + ``_, + ``_ + - `2014 `_ + - `2016 `_ + - `2017 `_ + - `2018 `_ + - `2019 `_ + - `2020 `_ + - `2021 `_ + - `2022 `_ + - `2023 `_ + - `2024 `_ """ country = "KZ" - observed_label = "%s (observed)" + default_language = "kk" + # %s (estimated). + estimated_label = tr("%s (бағаланған)") + # %s (observed). + observed_label = tr("%s (қайта белгіленген демалыс)") + # %s (observed, estimated). + observed_estimated_label = tr("%s (қайта белгіленген демалыс, бағаланған)") + supported_languages = ("en_US", "kk", "uk") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, JULIAN_CALENDAR) InternationalHolidays.__init__(self) - IslamicHolidays.__init__(self) + IslamicHolidays.__init__(self, KazakhstanIslamicHolidays) + StaticHolidays.__init__(self, KazakhstanStaticHolidays) kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_WORKDAY) kwargs.setdefault("observed_since", 2002) super().__init__(*args, **kwargs) @@ -42,56 +102,60 @@ def _populate_public_holidays(self): dts_observed = set() - # New Year's holiday (2 days) - name = "New Year" + # New Year's Day. + name = tr("Жаңа жыл") dts_observed.add(self._add_new_years_day(name)) dts_observed.add(self._add_new_years_day_two(name)) - # Orthodox Christmas (nonworking day, without extending) if self._year >= 2006: - self._add_christmas_day("Orthodox Christmas") + # Orthodox Christmas. + self._add_christmas_day(tr("Православиелік Рождество")) - # International Women's Day - dts_observed.add(self._add_womens_day("International Women's Day")) + # International Women's Day. + dts_observed.add(self._add_womens_day(tr("Халықаралық әйелдер күні"))) - # Nauryz holiday if self._year >= 2002: - name = "Nauryz holiday" + # Nowruz holiday. + name = tr("Наурыз мейрамы") dts_observed.add(self._add_holiday_mar_22(name)) if self._year >= 2010: dts_observed.add(self._add_holiday_mar_21(name)) dts_observed.add(self._add_holiday_mar_23(name)) - # Kazakhstan People Solidarity Holiday - dts_observed.add(self._add_labor_day("Kazakhstan People Solidarity Holiday")) + # Kazakhstan's People Solidarity Holiday. + dts_observed.add(self._add_labor_day(tr("Қазақстан халқының бірлігі мерекесі"))) - # Defender of the Fatherland Day if self._year >= 2013: - dts_observed.add(self._add_holiday_may_7("Defender of the Fatherland Day")) + # Defender of the Fatherland Day. + dts_observed.add(self._add_holiday_may_7(tr("Отан Қорғаушы күні"))) - # Victory Day - dts_observed.add(self._add_world_war_two_victory_day("Victory Day")) + # Victory Day. + dt = self._add_world_war_two_victory_day(tr("Жеңіс күні")) + if self._year != 2020: + dts_observed.add(dt) - # Capital Day if self._year >= 2009: - dts_observed.add(self._add_holiday_jul_6("Capital Day")) + # Capital Day. + dts_observed.add(self._add_holiday_jul_6(tr("Астана күні"))) - # Constitution Day of the Republic of Kazakhstan if self._year >= 1996: dts_observed.add( - self._add_holiday_aug_30("Constitution Day of the Republic of Kazakhstan") + # Constitution Day. + self._add_holiday_aug_30(tr("Қазақстан Республикасының Конституциясы күні")) ) - # Republic Day if 1994 <= self._year <= 2008 or self._year >= 2022: - dts_observed.add(self._add_holiday_oct_25("Republic Day")) + # Republic Day. + dts_observed.add(self._add_holiday_oct_25(tr("Республика күні"))) - # First President Day if 2012 <= self._year <= 2021: - dts_observed.add(self._add_holiday_dec_1("First President Day")) + dts_observed.add( + # First President Day. + self._add_holiday_dec_1(tr("Қазақстан Республикасының Тұңғыш Президенті күні")) + ) - # Kazakhstan Independence Day - name = "Kazakhstan Independence Day" + # Independence Day. + name = tr("Тəуелсіздік күні") dts_observed.add(self._add_holiday_dec_16(name)) if 2002 <= self._year <= 2021: dts_observed.add(self._add_holiday_dec_17(name)) @@ -99,9 +163,9 @@ def _populate_public_holidays(self): if self.observed: self._populate_observed(dts_observed) - # Kurban Ait (nonworking day, without extending) if self._year >= 2006: - self._add_eid_al_adha_day("Kurban Ait") + # Eid al-Adha. + self._add_eid_al_adha_day(tr("Құрбан айт")) class KZ(Kazakhstan): @@ -110,3 +174,120 @@ class KZ(Kazakhstan): class KAZ(Kazakhstan): pass + + +class KazakhstanIslamicHolidays(_CustomIslamicHolidays): + EID_AL_ADHA_DATES = { + 2006: (JAN, 10), + 2007: (DEC, 20), + 2008: (DEC, 8), + 2009: (NOV, 27), + 2010: (NOV, 16), + 2011: (NOV, 6), + 2012: (OCT, 26), + 2013: (OCT, 15), + 2014: (OCT, 4), + 2015: (SEP, 24), + 2016: (SEP, 12), + 2017: (SEP, 1), + 2018: (AUG, 21), + 2019: (AUG, 11), + 2020: (JUL, 31), + 2021: (JUL, 20), + 2022: (JUL, 9), + 2023: (JUN, 28), + 2024: (JUN, 16), + } + + +class KazakhstanStaticHolidays: + # Substituted date format. + substituted_date_format = tr("%d.%m.%Y") + # Day off (substituted from %s). + substituted_label = tr("Демалыс күні (%s бастап ауыстырылды)") + + special_public_holidays = { + 2000: (MAY, 8, MAY, 6), + 2001: ( + (MAR, 9, MAR, 11), + (MAR, 23, MAR, 25), + (APR, 30, APR, 28), + (DEC, 31, DEC, 29), + ), + 2002: (MAY, 10, MAY, 12), + 2003: ( + (MAY, 2, MAY, 4), + (DEC, 15, DEC, 13), + ), + 2005: ( + (MAR, 7, MAR, 5), + (MAR, 21, MAR, 19), + (AUG, 29, AUG, 27), + (OCT, 24, OCT, 22), + ), + 2006: ( + (JAN, 11, JAN, 14), + (MAY, 8, MAY, 6), + ), + 2007: ( + (MAR, 9, MAR, 11), + (MAR, 23, MAR, 25), + (AUG, 31, SEP, 2), + (OCT, 26, OCT, 28), + (DEC, 31, DEC, 29), + ), + 2008: (MAY, 2, MAY, 4), + 2009: (DEC, 18, DEC, 20), + 2010: ( + (JAN, 8, JAN, 10), + (JUL, 5, JUL, 3), + ), + 2011: ( + (MAR, 7, MAR, 5), + (AUG, 29, AUG, 27), + ), + 2012: ( + (MAR, 9, MAR, 11), + (APR, 30, APR, 28), + (DEC, 31, DEC, 29), + ), + 2013: ( + (MAY, 10, MAY, 4), + (OCT, 14, OCT, 12), + ), + 2014: ( + (JAN, 3, DEC, 28, 2013), + (MAY, 2, MAY, 4), + (MAY, 8, MAY, 11), + ), + 2016: (MAR, 7, MAR, 5), + 2017: ( + (MAR, 20, MAR, 18), + (JUL, 7, JUL, 1), + ), + 2018: ( + (MAR, 9, MAR, 3), + (APR, 30, APR, 28), + (MAY, 8, MAY, 5), + (AUG, 31, AUG, 25), + (DEC, 31, DEC, 29), + ), + 2019: (MAY, 10, MAY, 4), + 2020: ( + (JAN, 3, JAN, 5), + (MAY, 8, MAY, 11), + (DEC, 18, DEC, 20), + ), + 2021: (JUL, 5, JUL, 3), + 2022: ( + (MAR, 7, MAR, 5), + (AUG, 29, AUG, 27), + (OCT, 24, OCT, 22), + ), + 2023: (JUL, 7, JUL, 1), + 2024: (MAY, 8, MAY, 4), + } + + special_public_holidays_observed = { + 2020: (MAY, 8, MAY, 11), + } diff --git a/holidays/countries/kenya.py b/holidays/countries/kenya.py index 8947a903f..beafaa48e 100644 --- a/holidays/countries/kenya.py +++ b/holidays/countries/kenya.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FEB, APR, AUG, SEP diff --git a/holidays/countries/kuwait.py b/holidays/countries/kuwait.py index d8140d729..20155f5a1 100644 --- a/holidays/countries/kuwait.py +++ b/holidays/countries/kuwait.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/kyrgyzstan.py b/holidays/countries/kyrgyzstan.py index d52550713..ac2146434 100644 --- a/holidays/countries/kyrgyzstan.py +++ b/holidays/countries/kyrgyzstan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.julian import JULIAN_CALENDAR diff --git a/holidays/countries/laos.py b/holidays/countries/laos.py index 932afcc83..99efb499c 100644 --- a/holidays/countries/laos.py +++ b/holidays/countries/laos.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/latvia.py b/holidays/countries/latvia.py index 742b2dac9..356b5a4ea 100644 --- a/holidays/countries/latvia.py +++ b/holidays/countries/latvia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/lesotho.py b/holidays/countries/lesotho.py index bbdb92976..80d37487c 100644 --- a/holidays/countries/lesotho.py +++ b/holidays/countries/lesotho.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import MAY diff --git a/holidays/countries/liechtenstein.py b/holidays/countries/liechtenstein.py index e4fc2728b..481511195 100644 --- a/holidays/countries/liechtenstein.py +++ b/holidays/countries/liechtenstein.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/lithuania.py b/holidays/countries/lithuania.py index 6c27f0203..22ad8e43b 100644 --- a/holidays/countries/lithuania.py +++ b/holidays/countries/lithuania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/luxembourg.py b/holidays/countries/luxembourg.py index 0990d1344..7b6521c0c 100644 --- a/holidays/countries/luxembourg.py +++ b/holidays/countries/luxembourg.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/madagascar.py b/holidays/countries/madagascar.py index 83ea06276..abba740d7 100644 --- a/holidays/countries/madagascar.py +++ b/holidays/countries/madagascar.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/malawi.py b/holidays/countries/malawi.py index d30d5f22e..45c214f2c 100644 --- a/holidays/countries/malawi.py +++ b/holidays/countries/malawi.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/malaysia.py b/holidays/countries/malaysia.py index 9816fb7b2..98eebfc80 100644 --- a/holidays/countries/malaysia.py +++ b/holidays/countries/malaysia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr @@ -121,7 +121,7 @@ class Malaysia( "WP Putrajaya": "16", "PJY": "16", } - supported_languages = ("en_US", "ms_MY") + supported_languages = ("en_US", "ms_MY", "th") def __init__(self, *args, **kwargs): """ diff --git a/holidays/countries/maldives.py b/holidays/countries/maldives.py index 689fb0039..5daac707d 100644 --- a/holidays/countries/maldives.py +++ b/holidays/countries/maldives.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FRI, SAT diff --git a/holidays/countries/malta.py b/holidays/countries/malta.py index 1560b2f0d..fa2875af4 100644 --- a/holidays/countries/malta.py +++ b/holidays/countries/malta.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/marshall_islands.py b/holidays/countries/marshall_islands.py index 74523fce3..bb36f8e3e 100644 --- a/holidays/countries/marshall_islands.py +++ b/holidays/countries/marshall_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/holidays/countries/mauritania.py b/holidays/countries/mauritania.py index 50621357a..58274826c 100644 --- a/holidays/countries/mauritania.py +++ b/holidays/countries/mauritania.py @@ -7,18 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays -# License: MIT (see LICENSE file) - -# python-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: dr-prodigy (c) 2017-2023 -# ryanss (c) 2014-2017 -# Website: https://github.com/dr-prodigy/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FRI, SAT diff --git a/holidays/countries/mexico.py b/holidays/countries/mexico.py index 5085f95ac..6b63282f7 100644 --- a/holidays/countries/mexico.py +++ b/holidays/countries/mexico.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/moldova.py b/holidays/countries/moldova.py index 9f8d42afb..813224f1d 100644 --- a/holidays/countries/moldova.py +++ b/holidays/countries/moldova.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/monaco.py b/holidays/countries/monaco.py index 23aa76578..acf94ed4f 100644 --- a/holidays/countries/monaco.py +++ b/holidays/countries/monaco.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/montenegro.py b/holidays/countries/montenegro.py index 44383cfd1..917f218f0 100644 --- a/holidays/countries/montenegro.py +++ b/holidays/countries/montenegro.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.julian import JULIAN_CALENDAR diff --git a/holidays/countries/morocco.py b/holidays/countries/morocco.py index 0e462c9b3..152de2cc9 100644 --- a/holidays/countries/morocco.py +++ b/holidays/countries/morocco.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/mozambique.py b/holidays/countries/mozambique.py index e7a7d490d..a69f833fe 100644 --- a/holidays/countries/mozambique.py +++ b/holidays/countries/mozambique.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/namibia.py b/holidays/countries/namibia.py index 1757af71c..6e88cf804 100644 --- a/holidays/countries/namibia.py +++ b/holidays/countries/namibia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, DEC diff --git a/holidays/countries/netherlands.py b/holidays/countries/netherlands.py index e975bb2e5..ad655914c 100644 --- a/holidays/countries/netherlands.py +++ b/holidays/countries/netherlands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/new_zealand.py b/holidays/countries/new_zealand.py index b69e20f0c..9f42f3aea 100644 --- a/holidays/countries/new_zealand.py +++ b/holidays/countries/new_zealand.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/nicaragua.py b/holidays/countries/nicaragua.py index 921d27e74..d06d4eb2b 100644 --- a/holidays/countries/nicaragua.py +++ b/holidays/countries/nicaragua.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr @@ -17,6 +17,13 @@ class Nicaragua(HolidayBase, ChristianHolidays, InternationalHolidays): + """ + References: + - https://en.wikipedia.org/wiki/Public_holidays_in_Nicaragua + - http://legislacion.asamblea.gob.ni/Normaweb.nsf/($All)/FA251B3C54F5BAEF062571C40055736C?OpenDocument + - http://legislacion.asamblea.gob.ni/normaweb.nsf/($All)/3B28EC51ABE2787706258848005ADBB0?OpenDocument + """ + country = "NI" default_language = "es" subdivisions = ( @@ -38,14 +45,30 @@ class Nicaragua(HolidayBase, ChristianHolidays, InternationalHolidays): "RI", "SJ", ) + subdivisions_aliases = { + "Costa Caribe Norte": "AN", + "Costa Caribe Sur": "AS", + "Boaco": "BO", + "Carazo": "CA", + "Chinandega": "CI", + "Chontales": "CO", + "Estelí": "ES", + "Granada": "GR", + "Jinotega": "JI", + "León": "LE", + "Madriz": "MD", + "Managua": "MN", + "Masaya": "MS", + "Matagalpa": "MT", + "Nueva Segovia": "NS", + "Río San Juan": "SJ", + "Rivas": "RI", + } supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) InternationalHolidays.__init__(self) - # Default subdivision to MN; prov for backwards compatibility - if not kwargs.get("subdiv", kwargs.get("prov")): - kwargs["subdiv"] = "MN" super().__init__(*args, **kwargs) def _populate_public_holidays(self): @@ -61,6 +84,10 @@ def _populate_public_holidays(self): # Labor Day. self._add_labor_day(tr("Día del Trabajo")) + if self._year >= 2022: + # Mother's Day. + self._add_holiday_may_30(tr("Día de la Madre")) + if self._year >= 1979: # Revolution Day. self._add_holiday_jul_19(tr("Día de la Revolución")) diff --git a/holidays/countries/nigeria.py b/holidays/countries/nigeria.py index b33651237..2fdad49bb 100644 --- a/holidays/countries/nigeria.py +++ b/holidays/countries/nigeria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import FEB, MAY diff --git a/holidays/countries/north_macedonia.py b/holidays/countries/north_macedonia.py index 2e8eb9889..bb9265427 100644 --- a/holidays/countries/north_macedonia.py +++ b/holidays/countries/north_macedonia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.julian import JULIAN_CALENDAR diff --git a/holidays/countries/northern_mariana_islands.py b/holidays/countries/northern_mariana_islands.py index 3c3e46da8..c74996247 100644 --- a/holidays/countries/northern_mariana_islands.py +++ b/holidays/countries/northern_mariana_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/norway.py b/holidays/countries/norway.py index b93812047..7c12f284a 100644 --- a/holidays/countries/norway.py +++ b/holidays/countries/norway.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/pakistan.py b/holidays/countries/pakistan.py index 15c14dfaa..dcb3b1a98 100644 --- a/holidays/countries/pakistan.py +++ b/holidays/countries/pakistan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomIslamicHolidays diff --git a/holidays/countries/palau.py b/holidays/countries/palau.py index 290e33c49..d7f3c769e 100644 --- a/holidays/countries/palau.py +++ b/holidays/countries/palau.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import SEP, NOV diff --git a/holidays/countries/panama.py b/holidays/countries/panama.py index 60abadf7c..818c9d1f2 100644 --- a/holidays/countries/panama.py +++ b/holidays/countries/panama.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/papua_new_guinea.py b/holidays/countries/papua_new_guinea.py index d9cf9a782..dd7a2e38b 100644 --- a/holidays/countries/papua_new_guinea.py +++ b/holidays/countries/papua_new_guinea.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, FEB, MAR, APR, JUN, SEP, NOV diff --git a/holidays/countries/paraguay.py b/holidays/countries/paraguay.py index 4c3acd416..b54e6dafd 100644 --- a/holidays/countries/paraguay.py +++ b/holidays/countries/paraguay.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/peru.py b/holidays/countries/peru.py index 7881caf0f..74361817a 100644 --- a/holidays/countries/peru.py +++ b/holidays/countries/peru.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/philippines.py b/holidays/countries/philippines.py index 2a2887424..b43401635 100644 --- a/holidays/countries/philippines.py +++ b/holidays/countries/philippines.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars import _CustomChineseHolidays, _CustomIslamicHolidays diff --git a/holidays/countries/poland.py b/holidays/countries/poland.py index d97d02d5f..c293d8ffc 100644 --- a/holidays/countries/poland.py +++ b/holidays/countries/poland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/portugal.py b/holidays/countries/portugal.py index 16d061efa..8a59c5252 100644 --- a/holidays/countries/portugal.py +++ b/holidays/countries/portugal.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/puerto_rico.py b/holidays/countries/puerto_rico.py index 94b0f53ea..e3ac6aa98 100644 --- a/holidays/countries/puerto_rico.py +++ b/holidays/countries/puerto_rico.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/romania.py b/holidays/countries/romania.py index 7d4e94eb7..4e9fa66cc 100644 --- a/holidays/countries/romania.py +++ b/holidays/countries/romania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/russia.py b/holidays/countries/russia.py index cfd67d1e9..05589e9db 100644 --- a/holidays/countries/russia.py +++ b/holidays/countries/russia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/saint_kitts_and_nevis.py b/holidays/countries/saint_kitts_and_nevis.py new file mode 100644 index 000000000..990d76a06 --- /dev/null +++ b/holidays/countries/saint_kitts_and_nevis.py @@ -0,0 +1,183 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +from holidays.calendars.gregorian import FEB, MAR, APR, JUL, AUG, SEP, DEC, SUN +from holidays.constants import HALF_DAY, PUBLIC, WORKDAY +from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays +from holidays.observed_holiday_base import ObservedHolidayBase, SUN_TO_NEXT_MON, SUN_TO_NEXT_TUE + + +class SaintKittsAndNevis( + ObservedHolidayBase, ChristianHolidays, InternationalHolidays, StaticHolidays +): + """ + References: + - https://lawcommission.gov.kn/wp-content/documents/Revised-Acts-of-St-Kitts-and-Nevis/Revised-Acts-of-St-Kitts-and-Nevis-2009/Ch-23_23-Public-Holidays-Act.pdf + - https://web.archive.org/web/20220124000224/https://aglcskn.info/wp-content/documents/Act02and09TOC/Ch-23_23-Public-Holidays-Act.pdf + - https://en.wikipedia.org/wiki/Public_holidays_in_Saint_Kitts_and_Nevis + + Cross-Checked With: + - https://sknhcottawa.gov.kn/in-skn-national-public-holidays/ + - https://www.timeanddate.com/holidays/saint-kitts-and-nevis/ + + If Sovereign's Birthday, New Year's Day, Independence Day, or National Heroes Day + fall on a Sunday the next following Monday shall be a public holiday. + + Boxing Day—that is the day after Christmas Day, but if Christmas Day falls + on a Saturday, then the next following Monday shall be a public holiday, and if + Christmas Day falls on a Sunday, then the next following Monday and Tuesday + shall be public holidays. + + While Culturama Day (first started in 1974) and Carnival Day are never officially + included in the main Chapter 23.23 document, they're de facto added since at least + 2015 and should be considered as such. + """ + + country = "KN" + supported_categories = (HALF_DAY, PUBLIC, WORKDAY) + # %s (observed). + observed_label = "%s (observed)" + weekend = {SUN} + + def __init__(self, *args, **kwargs): + ChristianHolidays.__init__(self) + InternationalHolidays.__init__(self) + StaticHolidays.__init__(self, SaintKittsAndNevisStaticHolidays) + kwargs.setdefault("observed_rule", SUN_TO_NEXT_MON) + super().__init__(*args, **kwargs) + + def _populate_public_holidays(self): + # Public Holidays Act, Act 7 of 1983 Amendment. + if self._year <= 1982: + return None + + # Carnival Day. + self._add_observed(self._add_new_years_day("Carnival Day"), rule=SUN_TO_NEXT_TUE) + + # Carnival Day - Last Lap. + self._add_observed(self._add_new_years_day_two("Carnival Day - Last Lap")) + + # Good Friday. + self._add_good_friday("Good Friday") + + # Easter Monday. + self._add_easter_monday("Easter Monday") + + # Labour Day. + self._add_holiday_1st_mon_of_may("Labour Day") + + # While Sovereign's Birthday is officially listed in the Public Holidays Act, + # this was de facto never included in any released calendar since at least 2015. + + # Whit Monday. + self._add_whit_monday("Whit Monday") + + self._add_holiday_1st_mon_of_aug( + # Emancipation Day. + "Emancipation Day" + if self._year >= 1998 + # First Monday of August. + else "First Monday of August" + ) + + # Culturama Day - Last Lap. + self._add_holiday_1_day_past_1st_mon_of_aug("Culturama Day - Last Lap") + + if self._year >= 1998: + # National Heroes Day. + self._add_observed(self._add_holiday_sep_16("National Heroes Day")) + + # Independence Day. + self._add_observed(self._add_holiday_sep_19("Independence Day")) + + # Christmas Day. + self._add_observed(self._add_christmas_day("Christmas Day"), rule=SUN_TO_NEXT_TUE) + + # Boxing Day. + self._add_observed(self._add_christmas_day_two("Boxing Day")) + + def _populate_workday_holidays(self): + # August 25 was declared Kim Collins Day by the government of St. Kitts and Nevis + # in honour of one of the track star's most significant accomplishments, the gold + # at the World Championships in Paris, France in 2003. + if self._year >= 2003: + # Kim Collins Day. + self._add_holiday_aug_25("Kim Collins Day") + + +class KN(SaintKittsAndNevis): + pass + + +class KNA(SaintKittsAndNevis): + pass + + +class SaintKittsAndNevisStaticHolidays: + """ + References + - https://www.sknis.gov.kn/2023/07/17/state-funeral-accorded-to-sir-tapley-national-day-of-mourning-and-half-holiday-declared-for-july-20/ + - https://www.sknis.gov.kn/2022/12/30/public-holiday-notice-request-from-the-department-of-labour/ + - https://www.sknis.gov.kn/2022/08/06/prime-minister-drew-declares-monday-august-08-2022-as-a-public-holiday-in-st-kitts-and-nevis/ + - https://www.sknis.gov.kn/2022/04/20/nia-announces-half-holiday/ + - https://www.sknis.gov.kn/2021/07/26/governor-general-proclaims-tuesday-3rd-august-2021-as-a-public-holiday/ + - https://nia.gov.kn/culturama-47-rescheduled-to-independence-holiday-weekend-in-september/ + - https://www.sknis.gov.kn/2019/12/27/public-holidays-during-carnival-2019-2020/ + - https://www.sknis.gov.kn/2018/12/29/proclamations-from-his-excellency-the-governor-general-re-carnival-public-holidays/ + - https://www.sknis.gov.kn/2017/12/19/public-holiday-declared-for-nevis-today-after-the-ccms-solid-win-in-the-local-elections/ + - https://www.sknis.gov.kn/2017/04/13/employers-must-comply-with-law-for-work-performed-on-national-holidays-says-labour-department/ + - https://www.facebook.com/share/p/ZkpwKmyAzN4fEFP2/ + - https://www.facebook.com/share/p/Jc1uGgzGpj6zUzqB/ + - https://www.facebook.com/share/p/6GSgvcCWS3aenQh6/ + """ + + # Federal Election Victory Day. + federal_election_victory_day_name = "Federal Election Victory Day" + + # Children's Carnival Day. + childrens_carnival_day_name = "Children's Carnival Day" + + special_public_holidays = { + 2015: (FEB, 18, federal_election_victory_day_name), + 2017: ( + # National Clean Up Day. + (SEP, 20, "National Clean Up Day"), + # Local Election Victory Day. + (DEC, 19, "Local Election Victory Day"), + ), + 2022: (AUG, 8, federal_election_victory_day_name), + # 50th Anniversary of the Establishment of the Caribbean Community (CARICOM). + 2023: ( + JUL, + 4, + "50th Anniversary of the Establishment of the Caribbean Community (CARICOM)", + ), + } + special_half_day_holidays = { + 2017: ( + # The Passing of His Excellency Sir Probyn Inniss. + (MAR, 23, "The Passing of His Excellency Sir Probyn Inniss"), + # The Passing of His Excellency Sir Cuthbert Sebastian. + (APR, 10, "The Passing of His Excellency Sir Cuthbert Sebastian"), + ), + 2018: (DEC, 31, childrens_carnival_day_name), + 2019: (DEC, 31, childrens_carnival_day_name), + # 2022 Gulf Insurance Inter-Primary Schools Championship. + 2022: (APR, 27, "2022 Gulf Insurance Inter-Primary Schools Championship"), + 2023: ( + # The Passing of His Excellency Sir Tapley Seaton. + (JUL, 20, "The Passing of His Excellency Sir Tapley Seaton"), + (DEC, 30, childrens_carnival_day_name), + ), + # Junior Cultural Street Parade. + 2024: (AUG, 1, "Junior Cultural Street Parade"), + } diff --git a/holidays/countries/samoa.py b/holidays/countries/samoa.py index 05f028bd6..aa62ba935 100644 --- a/holidays/countries/samoa.py +++ b/holidays/countries/samoa.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/san_marino.py b/holidays/countries/san_marino.py index 0a96ac22a..a62bf670a 100644 --- a/holidays/countries/san_marino.py +++ b/holidays/countries/san_marino.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/countries/saudi_arabia.py b/holidays/countries/saudi_arabia.py index 3692ffdab..78c2d64cc 100644 --- a/holidays/countries/saudi_arabia.py +++ b/holidays/countries/saudi_arabia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/serbia.py b/holidays/countries/serbia.py index b541d1db2..64d3a266d 100644 --- a/holidays/countries/serbia.py +++ b/holidays/countries/serbia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/seychelles.py b/holidays/countries/seychelles.py index 44a955d4f..5cb3a47f2 100644 --- a/holidays/countries/seychelles.py +++ b/holidays/countries/seychelles.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/singapore.py b/holidays/countries/singapore.py index d799a9ffb..e78617e38 100644 --- a/holidays/countries/singapore.py +++ b/holidays/countries/singapore.py @@ -7,9 +7,11 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) +from gettext import gettext as tr + from holidays.calendars import ( _CustomBuddhistHolidays, _CustomChineseHolidays, @@ -40,7 +42,10 @@ class Singapore( StaticHolidays, ): country = "SG" - observed_label = "%s (observed)" + default_language = "en_SG" + # %s (observed). + observed_label = tr("%s (observed)") + supported_languages = ("en_SG", "en_US", "th") def __init__(self, *args, **kwargs): """ @@ -94,50 +99,51 @@ def __init__(self, *args, **kwargs): def _populate_public_holidays(self) -> None: dts_observed = set() - # New Year's Day - dts_observed.add(self._add_new_years_day("New Year's Day")) + # New Year's Day. + dts_observed.add(self._add_new_years_day(tr("New Year's Day"))) - # Chinese New Year (two days) - name = "Chinese New Year" + # Chinese New Year. + name = tr("Chinese New Year") dts_observed.add(self._add_chinese_new_years_day(name)) # type: ignore[arg-type] dts_observed.add(self._add_chinese_new_years_day_two(name)) # type: ignore[arg-type] - # Hari Raya Puasa (Eid al-Fitr) - dts_observed.update(self._add_eid_al_fitr_day("Hari Raya Puasa")) + # Eid al-Fitr. + dts_observed.update(self._add_eid_al_fitr_day(tr("Hari Raya Puasa"))) if self._year <= 1968: - self._add_eid_al_fitr_day_two("Second day of Hari Raya Puasa") + # Second Day of Eid al-Fitr. + self._add_eid_al_fitr_day_two(tr("Second Day of Hari Raya Puasa")) - # Hari Raya Haji (Eid al-Adha) - dts_observed.update(self._add_eid_al_adha_day("Hari Raya Haji")) + # Eid al-Adha. + dts_observed.update(self._add_eid_al_adha_day(tr("Hari Raya Haji"))) - # Good Friday - self._add_good_friday("Good Friday") + # Good Friday. + self._add_good_friday(tr("Good Friday")) if self._year <= 1968: - # Holy Saturday - self._add_holy_saturday("Holy Saturday") + # Holy Saturday. + self._add_holy_saturday(tr("Holy Saturday")) - # Easter Monday - self._add_easter_monday("Easter Monday") + # Easter Monday. + self._add_easter_monday(tr("Easter Monday")) - # Labour Day - dts_observed.add(self._add_labor_day("Labour Day")) + # Labor Day. + dts_observed.add(self._add_labor_day(tr("Labour Day"))) - # Vesak Day - dts_observed.add(self._add_vesak("Vesak Day")) # type: ignore[arg-type] + # Vesak Day. + dts_observed.add(self._add_vesak(tr("Vesak Day"))) # type: ignore[arg-type] - # National Day - dts_observed.add(self._add_holiday_aug_9("National Day")) + # National Day. + dts_observed.add(self._add_holiday_aug_9(tr("National Day"))) - # Deepavali (Diwali) - dts_observed.add(self._add_diwali("Deepavali")) # type: ignore[arg-type] + # Deepavali. + dts_observed.add(self._add_diwali(tr("Deepavali"))) # type: ignore[arg-type] - # Christmas Day - dts_observed.add(self._add_christmas_day("Christmas Day")) + # Christmas Day. + dts_observed.add(self._add_christmas_day(tr("Christmas Day"))) - # Boxing day (up to and including 1968) if self._year <= 1968: - self._add_christmas_day_two("Boxing Day") + # Boxing day. + self._add_christmas_day_two(tr("Boxing Day")) if self.observed: self._populate_observed(dts_observed) @@ -303,23 +309,29 @@ class SingaporeIslamicHolidays(_CustomIslamicHolidays): class SingaporeStaticHolidays: + """ + References + - https://www.mom.gov.sg/newsroom/press-releases/2015/sg50-public-holiday-on-7-august-2015 + - https://www.straitstimes.com/singapore/politics/singapore-presidential-election-2023-polling-day-on-sept-1-nomination-day-on-aug-22 + """ + + # Polling Day. + polling_day_name = tr("Polling Day") + special_public_holidays = { - 2001: (NOV, 3, "Polling Day"), - 2006: (MAY, 6, "Polling Day"), - 2011: (MAY, 7, "Polling Day"), + 2001: (NOV, 3, polling_day_name), + 2006: (MAY, 6, polling_day_name), + 2011: (MAY, 7, polling_day_name), 2015: ( - # SG50 Public holiday - # Announced on 14 March 2015 - # https://www.mom.gov.sg/newsroom/press-releases/2015/sg50-public-holiday-on-7-august-2015 - (AUG, 7, "SG50 Public Holiday"), - (SEP, 11, "Polling Day"), + # SG50 Public Holiday. + (AUG, 7, tr("SG50 Public Holiday")), + (SEP, 11, polling_day_name), ), - 2020: (JUL, 10, "Polling Day"), - # Announced in state-associated press on 12 August 2023 - # https://www.straitstimes.com/singapore/politics/singapore-presidential-election-2023-polling-day-on-sept-1-nomination-day-on-aug-22 - 2023: (SEP, 1, "Polling Day"), + 2020: (JUL, 10, polling_day_name), + 2023: (SEP, 1, polling_day_name), } special_public_holidays_observed = { - 2007: (JAN, 2, "Hari Raya Haji"), + # Eid al-Adha. + 2007: (JAN, 2, tr("Hari Raya Haji")), } diff --git a/holidays/countries/slovakia.py b/holidays/countries/slovakia.py index 02f872ebb..283668a30 100644 --- a/holidays/countries/slovakia.py +++ b/holidays/countries/slovakia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/slovenia.py b/holidays/countries/slovenia.py index ee15f0569..0fce3f34c 100644 --- a/holidays/countries/slovenia.py +++ b/holidays/countries/slovenia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/south_africa.py b/holidays/countries/south_africa.py index 31d9b4105..73cc85b6d 100644 --- a/holidays/countries/south_africa.py +++ b/holidays/countries/south_africa.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JAN, MAR, APR, MAY, JUN, AUG, NOV, DEC diff --git a/holidays/countries/south_korea.py b/holidays/countries/south_korea.py index 06bb979be..7505322b4 100644 --- a/holidays/countries/south_korea.py +++ b/holidays/countries/south_korea.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings @@ -429,20 +429,20 @@ class SouthKoreaStaticHolidays: # Provincial-level Local Elections. (AUG, 13, local_election_day), ), - # President Syngman Rhee’s Birthday. + # President Syngman Rhee's Birthday. 1957: (MAR, 26, syngman_rhee_birthday), 1958: ( # 4th National Assembly Election. (MAY, 2, national_assembly_election_day), - # President Syngman Rhee’s Birthday. + # President Syngman Rhee's Birthday. (MAR, 26, syngman_rhee_birthday), ), - # President Syngman Rhee’s Birthday. + # President Syngman Rhee's Birthday. 1959: (MAR, 26, syngman_rhee_birthday), 1960: ( # Sabang Day. (MAR, 16, tr("사방의 날")), - # President Syngman Rhee’s Birthday. + # President Syngman Rhee's Birthday. (MAR, 26, syngman_rhee_birthday), # 4th Presidential Election/5th Vice President Election. (MAR, 15, presidential_election_day), diff --git a/holidays/countries/spain.py b/holidays/countries/spain.py index 03790889d..06bd29d15 100644 --- a/holidays/countries/spain.py +++ b/holidays/countries/spain.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/sweden.py b/holidays/countries/sweden.py index 9302d0fa1..8176085ac 100644 --- a/holidays/countries/sweden.py +++ b/holidays/countries/sweden.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr @@ -34,7 +34,7 @@ class Sweden(HolidayBase, ChristianHolidays, InternationalHolidays): country = "SE" default_language = "sv" - supported_languages = ("en_US", "sv", "uk") + supported_languages = ("en_US", "sv", "th", "uk") def __init__(self, include_sundays=True, *args, **kwargs): """ diff --git a/holidays/countries/switzerland.py b/holidays/countries/switzerland.py index 0f4fc3189..497b72d0c 100644 --- a/holidays/countries/switzerland.py +++ b/holidays/countries/switzerland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/taiwan.py b/holidays/countries/taiwan.py index a2d9f51ae..f87ab7432 100644 --- a/holidays/countries/taiwan.py +++ b/holidays/countries/taiwan.py @@ -7,14 +7,31 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date from gettext import gettext as tr from typing import Set -from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, SEP, OCT, DEC +from holidays.calendars.gregorian import ( + JAN, + FEB, + MAR, + APR, + MAY, + JUN, + SEP, + OCT, + DEC, + MON, + TUE, + WED, + THU, + FRI, + SAT, + SUN, +) from holidays.groups import ChineseCalendarHolidays, InternationalHolidays, StaticHolidays from holidays.observed_holiday_base import ( ObservedHolidayBase, @@ -24,12 +41,14 @@ SAT_SUN_TO_NEXT_WORKDAY, ) +CHILDRENS_DAY_RULE = ObservedRule({MON: +1, TUE: -1, WED: -1, THU: +1, FRI: -1, SAT: -1, SUN: -2}) + class Taiwan(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHolidays, StaticHolidays): """ References: - https://en.wikipedia.org/wiki/Public_holidays_in_Taiwan - - https://www.officeholidays.com/countries/taiwan + - `2025 `_ - `2024 `_ - `2023 `_ - `2022 `_ @@ -65,9 +84,17 @@ def _populate_observed( ) -> None: if self._year < since: return None + + childrens_day = self.tr("兒童節") for dt in sorted(dts): - for name in self.get_list(dt): - self._add_observed(dt, name, rule) + names = self.get_list(dt) + for name in names: + self._add_observed( + dt, + name, + # Children's Day falls on the same day as Tomb Sweeping Day. + CHILDRENS_DAY_RULE if name == childrens_day and len(names) > 1 else rule, + ) def _populate_public_holidays(self): if self._year <= 1911: @@ -97,9 +124,7 @@ def _populate_public_holidays(self): if 1990 <= self._year <= 1999 or self._year >= 2011: # Children's Day. - apr_4 = self._add_holiday_apr_4(tr("兒童節")) - if self._year != 2021: - dts_observed.add(apr_4) + dts_observed.add(self._add_holiday_apr_4(tr("兒童節"))) if self._year >= 1972: # Tomb Sweeping Day. @@ -185,12 +210,9 @@ class TaiwanStaticHolidays: (OCT, 9, SEP, 23), ), 2024: (FEB, 8, FEB, 17), + 2025: (JAN, 27, FEB, 8), } special_public_holidays_observed = { 2013: (APR, 5, childrens_day), - 2016: (APR, 5, childrens_day), - 2017: (APR, 3, childrens_day), - 2021: (APR, 2, childrens_day), - 2024: (APR, 5, childrens_day), } diff --git a/holidays/countries/tanzania.py b/holidays/countries/tanzania.py index 422625f82..2b49062af 100644 --- a/holidays/countries/tanzania.py +++ b/holidays/countries/tanzania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/thailand.py b/holidays/countries/thailand.py index 0e4551500..9ccd2e07c 100644 --- a/holidays/countries/thailand.py +++ b/holidays/countries/thailand.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -38,7 +38,7 @@ class Thailand(ObservedHolidayBase, InternationalHolidays, StaticHolidays, ThaiC - `isranews.org `_ - https://resolution.soc.go.th/?prep_id=99159317 - https://resolution.soc.go.th/?prep_id=196007 - - https://github.com/vacanza/python-holidays/pull/929 + - https://github.com/vacanza/holidays/pull/929 - [New Year's Day] `wikisource.org `_ - [National Children's Day] diff --git a/holidays/countries/timor_leste.py b/holidays/countries/timor_leste.py index c6dcbeee3..351c53433 100644 --- a/holidays/countries/timor_leste.py +++ b/holidays/countries/timor_leste.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/tonga.py b/holidays/countries/tonga.py index 5ea79f8a0..8ea32c154 100644 --- a/holidays/countries/tonga.py +++ b/holidays/countries/tonga.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/tunisia.py b/holidays/countries/tunisia.py index 165ed938f..7a65d69dc 100644 --- a/holidays/countries/tunisia.py +++ b/holidays/countries/tunisia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/turkey.py b/holidays/countries/turkey.py index b5087d720..9a564582e 100644 --- a/holidays/countries/turkey.py +++ b/holidays/countries/turkey.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/ukraine.py b/holidays/countries/ukraine.py index b941aaed8..296aad09e 100644 --- a/holidays/countries/ukraine.py +++ b/holidays/countries/ukraine.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/united_arab_emirates.py b/holidays/countries/united_arab_emirates.py index 21a3057b0..bf290c741 100644 --- a/holidays/countries/united_arab_emirates.py +++ b/holidays/countries/united_arab_emirates.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/united_kingdom.py b/holidays/countries/united_kingdom.py index f248c78b8..729c31c92 100644 --- a/holidays/countries/united_kingdom.py +++ b/holidays/countries/united_kingdom.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from typing import Tuple, Union diff --git a/holidays/countries/united_states.py b/holidays/countries/united_states.py index 8a83bedca..25e960f2c 100644 --- a/holidays/countries/united_states.py +++ b/holidays/countries/united_states.py @@ -7,16 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from typing import Tuple, Union -from holidays.calendars.gregorian import DEC +from holidays.calendars.gregorian import MON, TUE, WED, THU, FRI, SAT, SUN from holidays.constants import PUBLIC, UNOFFICIAL from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.observed_holiday_base import ( ObservedHolidayBase, + ObservedRule, MON_TO_NEXT_TUE, FRI_TO_PREV_THU, SAT_TO_PREV_FRI, @@ -25,6 +26,10 @@ SAT_SUN_TO_NEXT_MON, ) +GA_IN_WASHINGTON_BIRTHDAY = ObservedRule( + {MON: +1, TUE: -1, WED: -1, THU: +1, FRI: -1, SAT: -2, SUN: -2} +) + class UnitedStates(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ @@ -43,6 +48,15 @@ class UnitedStates(ObservedHolidayBase, ChristianHolidays, InternationalHolidays Frances Xavier Cabrini Day: - https://leg.colorado.gov/sites/default/files/2020a_1031_signed.pdf + + Washington's Birthday (GA): + - https://www.gasupreme.us/court-information/holidays-2/ + + Washington's Birthday (IN): + - https://www.in.gov/spd/benefits/state-holidays/ + + American Samoa holidays: + - https://asbar.org/code-annotated/1-0501-public-holidays/ """ country = "US" @@ -187,6 +201,7 @@ def _populate_subdiv_holidays(self): "DE", "FL", "GA", + "IN", "NM", "PR", "VI", @@ -294,8 +309,16 @@ def _populate_subdiv_ar_public_holidays(self): self._add_holiday_feb_22(name) def _populate_subdiv_as_public_holidays(self): - # Christmas Eve - self._add_christmas_eve_holiday() + # American Samoa Flag Day + if self._year >= 1901: + self._add_observed(self._add_holiday_apr_17("American Samoa Flag Day")) + + # Manu'a Islands Cession Day + if self._year >= 1983: + self._add_observed(self._add_holiday_jul_16("Manu'a Islands Cession Day")) + + # White Sunday + self._add_holiday_2nd_sun_of_oct("White Sunday") def _populate_subdiv_az_public_holidays(self): # Martin Luther King Jr. Day @@ -404,11 +427,10 @@ def _populate_subdiv_ga_public_holidays(self): ) # Washington's Birthday - name = "Washington's Birthday" - if self._is_wednesday(DEC, 24): - self._add_holiday_dec_26(name) - else: - self._add_holiday_dec_24(name) + self._add_holiday( + "Washington's Birthday", + self._get_observed_date(self._christmas_day, rule=GA_IN_WASHINGTON_BIRTHDAY), + ) def _populate_subdiv_gu_public_holidays(self): # Guam Discovery Day @@ -490,6 +512,12 @@ def _populate_subdiv_in_public_holidays(self): if self._year >= 2010: self._add_holiday_1_day_past_4th_thu_of_nov("Lincoln's Birthday") + # Washington's Birthday + self._add_holiday( + "Washington's Birthday", + self._get_observed_date(self._christmas_day, rule=GA_IN_WASHINGTON_BIRTHDAY), + ) + def _populate_subdiv_ks_public_holidays(self): # Christmas Eve if self._year >= 2013: diff --git a/holidays/countries/united_states_minor_outlying_islands.py b/holidays/countries/united_states_minor_outlying_islands.py index e24cf2b8f..d53c5bdb3 100644 --- a/holidays/countries/united_states_minor_outlying_islands.py +++ b/holidays/countries/united_states_minor_outlying_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/united_states_virgin_islands.py b/holidays/countries/united_states_virgin_islands.py index 9733d332f..b81acfdaa 100644 --- a/holidays/countries/united_states_virgin_islands.py +++ b/holidays/countries/united_states_virgin_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.constants import PUBLIC, UNOFFICIAL diff --git a/holidays/countries/uruguay.py b/holidays/countries/uruguay.py index b7cfc4764..a4e53be4f 100644 --- a/holidays/countries/uruguay.py +++ b/holidays/countries/uruguay.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/uzbekistan.py b/holidays/countries/uzbekistan.py index ae300a3c0..8ee39c096 100644 --- a/holidays/countries/uzbekistan.py +++ b/holidays/countries/uzbekistan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/countries/vanuatu.py b/holidays/countries/vanuatu.py index 1a7dd53cb..7e6fe1622 100644 --- a/holidays/countries/vanuatu.py +++ b/holidays/countries/vanuatu.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import JUL, OCT diff --git a/holidays/countries/vatican_city.py b/holidays/countries/vatican_city.py index 7ba76e30c..09c05245d 100644 --- a/holidays/countries/vatican_city.py +++ b/holidays/countries/vatican_city.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays diff --git a/holidays/countries/venezuela.py b/holidays/countries/venezuela.py index e719af7bf..c949f0b14 100644 --- a/holidays/countries/venezuela.py +++ b/holidays/countries/venezuela.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr diff --git a/holidays/countries/vietnam.py b/holidays/countries/vietnam.py index fe2583f9d..231af59db 100644 --- a/holidays/countries/vietnam.py +++ b/holidays/countries/vietnam.py @@ -7,9 +7,11 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) +from gettext import gettext as tr + from holidays.groups import ChineseCalendarHolidays, InternationalHolidays from holidays.observed_holiday_base import ObservedHolidayBase, SAT_SUN_TO_NEXT_WORKDAY @@ -22,7 +24,10 @@ class Vietnam(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHoliday """ country = "VN" - observed_label = "%s (observed)" + # %s (observed). + observed_label = tr("%s (nghỉ bù)") + default_language = "vi" + supported_languages = ("en_US", "vi") def __init__(self, *args, **kwargs): ChineseCalendarHolidays.__init__(self) @@ -34,29 +39,38 @@ def _populate_public_holidays(self): dts_observed = set() # New Year's Day - dts_observed.add(self._add_new_years_day("International New Year's Day")) + dts_observed.add(self._add_new_years_day(tr("Tết Dương lịch"))) + + # Lunar New Year's Eve + self._add_chinese_new_years_eve(tr("Giao thừa Tết Nguyên Đán")) # Lunar New Year - self._add_chinese_new_years_eve("Vietnamese New Year's Eve") - self._add_chinese_new_years_day("Vietnamese New Year") - self._add_chinese_new_years_day_two("The second day of Tet Holiday") - self._add_chinese_new_years_day_three("The third day of Tet Holiday") - self._add_chinese_new_years_day_four("The forth day of Tet Holiday") - self._add_chinese_new_years_day_five("The fifth day of Tet Holiday") - - # Vietnamese Kings' Commemoration Day - # https://en.wikipedia.org/wiki/H%C3%B9ng_Kings%27_Festival + self._add_chinese_new_years_day(tr("Tết Nguyên Đán")) + + # Second Day of Lunar New Year + self._add_chinese_new_years_day_two(tr("Mùng hai Tết Nguyên Đán")) + + # Third Day of Lunar New Year + self._add_chinese_new_years_day_three(tr("Mùng ba Tết Nguyên Đán")) + + # Fourth Day of Lunar New Year + self._add_chinese_new_years_day_four(tr("Mùng bốn Tết Nguyên Đán")) + + # Fifth Day of Lunar New Year + self._add_chinese_new_years_day_five(tr("Mùng năm Tết Nguyên Đán")) + if self._year >= 2007: - dts_observed.add(self._add_hung_kings_day("Hung Kings Commemoration Day")) + # Hung Kings' Commemoration Day + dts_observed.add(self._add_hung_kings_day(tr("Ngày Giỗ Tổ Hùng Vương"))) # Liberation Day/Reunification Day - dts_observed.add(self._add_holiday_apr_30("Liberation Day/Reunification Day")) + dts_observed.add(self._add_holiday_apr_30(tr("Ngày Chiến thắng"))) # International Labor Day - dts_observed.add(self._add_labor_day("International Labor Day")) + dts_observed.add(self._add_labor_day(tr("Ngày Quốc tế Lao động"))) - # Independence Day - dts_observed.add(self._add_holiday_sep_2("Independence Day")) + # National Day + dts_observed.add(self._add_holiday_sep_2(tr("Quốc khánh"))) if self.observed: self._populate_observed(dts_observed) diff --git a/holidays/countries/zambia.py b/holidays/countries/zambia.py index d6376f7fc..bd346761f 100644 --- a/holidays/countries/zambia.py +++ b/holidays/countries/zambia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import MAR, JUL, AUG, SEP diff --git a/holidays/countries/zimbabwe.py b/holidays/countries/zimbabwe.py index 1d762f2b0..f37c1f68e 100644 --- a/holidays/countries/zimbabwe.py +++ b/holidays/countries/zimbabwe.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/deprecation.py b/holidays/deprecation.py index 58968e990..19ca1d7bc 100644 --- a/holidays/deprecation.py +++ b/holidays/deprecation.py @@ -7,12 +7,12 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) FUTURE_INCOMPATIBILITY_WARNING_TEMPLATE = """ -This is a future version incompatibility warning from Python Holidays library v{version} +This is a future version incompatibility warning from Holidays library v{version} to inform you about an upcoming change in our API versioning strategy that may affect your project's dependencies. Starting from version 1.0 onwards, we will be following a loose form of Semantic Versioning (SemVer, https://semver.org) to provide clearer communication regarding any @@ -25,7 +25,7 @@ avoid potentially unwanted upgrade to the version 1.0 when it's released (ETA 2024Q4 - 2025Q1). If you have any questions or concerns regarding this change, please don't hesitate to reach out -to us via https://github.com/vacanza/python-holidays/discussions/1800. +to us via https://github.com/vacanza/holidays/discussions/1800. """ diff --git a/holidays/financial/__init__.py b/holidays/financial/__init__.py index f35e08fd4..034880db9 100644 --- a/holidays/financial/__init__.py +++ b/holidays/financial/__init__.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F401 diff --git a/holidays/financial/european_central_bank.py b/holidays/financial/european_central_bank.py index 992df2356..03e2fc837 100644 --- a/holidays/financial/european_central_bank.py +++ b/holidays/financial/european_central_bank.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.calendars.gregorian import DEC diff --git a/holidays/financial/ice_futures_europe.py b/holidays/financial/ice_futures_europe.py index 164b3a7bc..10e8c3235 100644 --- a/holidays/financial/ice_futures_europe.py +++ b/holidays/financial/ice_futures_europe.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from holidays.groups import ChristianHolidays, InternationalHolidays diff --git a/holidays/financial/ny_stock_exchange.py b/holidays/financial/ny_stock_exchange.py index 4d2c899d9..2cc2ce27a 100644 --- a/holidays/financial/ny_stock_exchange.py +++ b/holidays/financial/ny_stock_exchange.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/__init__.py b/holidays/groups/__init__.py index b251477ee..587c61518 100644 --- a/holidays/groups/__init__.py +++ b/holidays/groups/__init__.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # flake8: noqa: F401 diff --git a/holidays/groups/buddhist.py b/holidays/groups/buddhist.py index f78270531..47394dd20 100644 --- a/holidays/groups/buddhist.py +++ b/holidays/groups/buddhist.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/chinese.py b/holidays/groups/chinese.py index c40a9df0c..f9abbd5a7 100644 --- a/holidays/groups/chinese.py +++ b/holidays/groups/chinese.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/christian.py b/holidays/groups/christian.py index 63d336b33..c91c4fe23 100644 --- a/holidays/groups/christian.py +++ b/holidays/groups/christian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/custom.py b/holidays/groups/custom.py index de28c6adc..dd54b26d5 100644 --- a/holidays/groups/custom.py +++ b/holidays/groups/custom.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/holidays/groups/hindu.py b/holidays/groups/hindu.py index cc646921c..2e6e29640 100644 --- a/holidays/groups/hindu.py +++ b/holidays/groups/hindu.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/international.py b/holidays/groups/international.py index de3639575..86ee8ee21 100644 --- a/holidays/groups/international.py +++ b/holidays/groups/international.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/islamic.py b/holidays/groups/islamic.py index 22e52055c..8e3b23588 100644 --- a/holidays/groups/islamic.py +++ b/holidays/groups/islamic.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/persian.py b/holidays/groups/persian.py index 15f623c11..dccc07c1a 100644 --- a/holidays/groups/persian.py +++ b/holidays/groups/persian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/groups/thai.py b/holidays/groups/thai.py index 312a6301c..b9e42d357 100644 --- a/holidays/groups/thai.py +++ b/holidays/groups/thai.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/helpers.py b/holidays/helpers.py index 261e8230f..0eb22d6f4 100644 --- a/holidays/helpers.py +++ b/holidays/helpers.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/holidays/holiday_base.py b/holidays/holiday_base.py index ea8f40159..10c7e5a89 100644 --- a/holidays/holiday_base.py +++ b/holidays/holiday_base.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) __all__ = ("DateLike", "HolidayBase", "HolidaySum") @@ -961,7 +961,7 @@ def get_named( raise AttributeError(f"Unknown lookup type: {lookup}") - def get_nth_workday(self, key: DateLike, n: int) -> date: + def get_nth_working_day(self, key: DateLike, n: int) -> date: """Return n-th working day from provided date (if n is positive) or n-th working day before provided date (if n is negative). """ @@ -969,22 +969,30 @@ def get_nth_workday(self, key: DateLike, n: int) -> date: dt = self.__keytransform__(key) for _ in range(abs(n)): dt = _timedelta(dt, direction) - while not self.is_workday(dt): + while not self.is_working_day(dt): dt = _timedelta(dt, direction) return dt - def get_workdays_number(self, key1: DateLike, key2: DateLike) -> int: - """Return the number of working days between two dates (not including the start date).""" - dt1 = self.__keytransform__(key1) - dt2 = self.__keytransform__(key2) - if dt1 == dt2: - return 0 + def get_working_days_count(self, start: DateLike, end: DateLike) -> int: + """Return the number of working days between two dates. + + The date range works in a closed interval fashion [start, end] so both + endpoints are included. + + :param start: + The range start date. + + :param end: + The range end date. + """ + dt1 = self.__keytransform__(start) + dt2 = self.__keytransform__(end) if dt1 > dt2: dt1, dt2 = dt2, dt1 + days = (dt2 - dt1).days + 1 + return sum(self.is_working_day(_timedelta(dt1, n)) for n in range(days)) - return sum(self.is_workday(_timedelta(dt1, n)) for n in range(1, (dt2 - dt1).days + 1)) - - def is_workday(self, key: DateLike) -> bool: + def is_working_day(self, key: DateLike) -> bool: """Return True if date is a working day (not a holiday or a weekend).""" dt = self.__keytransform__(key) return dt in self.weekend_workdays if self._is_weekend(dt) else dt not in self diff --git a/holidays/locale/am/LC_MESSAGES/ET.po b/holidays/locale/am/LC_MESSAGES/ET.po index 009bc044d..4ee2bcf4e 100644 --- a/holidays/locale/am/LC_MESSAGES/ET.po +++ b/holidays/locale/am/LC_MESSAGES/ET.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ethiopia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.44\n" +"Project-Id-Version: Holidays 0.44\n" "POT-Creation-Date: 2023-02-15 14:15-0800\n" "PO-Revision-Date: 2024-02-27 14:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/AE.po b/holidays/locale/ar/LC_MESSAGES/AE.po index 269c96dd5..adedf0318 100644 --- a/holidays/locale/ar/LC_MESSAGES/AE.po +++ b/holidays/locale/ar/LC_MESSAGES/AE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # United Arab Emirates holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 15:54+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/BH.po b/holidays/locale/ar/LC_MESSAGES/BH.po index 45af7bbcb..5b813e24d 100644 --- a/holidays/locale/ar/LC_MESSAGES/BH.po +++ b/holidays/locale/ar/LC_MESSAGES/BH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bahrain holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 15:52+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/CA.po b/holidays/locale/ar/LC_MESSAGES/CA.po index a28fa52a8..10da7c571 100644 --- a/holidays/locale/ar/LC_MESSAGES/CA.po +++ b/holidays/locale/ar/LC_MESSAGES/CA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Canada holidays ar localization (PoC). # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.32\n" +"Project-Id-Version: Holidays 0.32\n" "POT-Creation-Date: 2023-05-20 18:16-0700\n" "PO-Revision-Date: 2023-08-26 18:25+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/DJ.po b/holidays/locale/ar/LC_MESSAGES/DJ.po index 47ce32cd5..f46fcc546 100644 --- a/holidays/locale/ar/LC_MESSAGES/DJ.po +++ b/holidays/locale/ar/LC_MESSAGES/DJ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Djibouti holidays ar localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-07-15 20:58+0300\n" "PO-Revision-Date: 2024-01-22 13:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/DZ.po b/holidays/locale/ar/LC_MESSAGES/DZ.po index 6d5331e4b..0d7167225 100644 --- a/holidays/locale/ar/LC_MESSAGES/DZ.po +++ b/holidays/locale/ar/LC_MESSAGES/DZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Algeria holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 14:56+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/EG.po b/holidays/locale/ar/LC_MESSAGES/EG.po index c39b25967..97bd5fd37 100644 --- a/holidays/locale/ar/LC_MESSAGES/EG.po +++ b/holidays/locale/ar/LC_MESSAGES/EG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Egypt holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 15:50+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/ET.po b/holidays/locale/ar/LC_MESSAGES/ET.po index 1d3ca712f..4a8de7a10 100644 --- a/holidays/locale/ar/LC_MESSAGES/ET.po +++ b/holidays/locale/ar/LC_MESSAGES/ET.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ethiopia holidays ar localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.44\n" +"Project-Id-Version: Holidays 0.44\n" "POT-Creation-Date: 2024-02-27 14:42+0200\n" "PO-Revision-Date: 2024-02-27 14:51+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/JO.po b/holidays/locale/ar/LC_MESSAGES/JO.po index c445c11f3..a365d2750 100644 --- a/holidays/locale/ar/LC_MESSAGES/JO.po +++ b/holidays/locale/ar/LC_MESSAGES/JO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Jordan holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.47\n" +"Project-Id-Version: Holidays 0.47\n" "POT-Creation-Date: 2024-02-28 09:55-0800\n" "PO-Revision-Date: 2024-02-28 09:55-0800\n" "Last-Translator: Firas Kafri \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/KW.po b/holidays/locale/ar/LC_MESSAGES/KW.po index eec0f351f..42033bb28 100644 --- a/holidays/locale/ar/LC_MESSAGES/KW.po +++ b/holidays/locale/ar/LC_MESSAGES/KW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Kuwait holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.44\n" +"Project-Id-Version: Holidays 0.44\n" "POT-Creation-Date: 2024-02-28 09:55-0800\n" "PO-Revision-Date: 2024-02-28 09:55-0800\n" "Last-Translator: Jaemin Kim \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/MA.po b/holidays/locale/ar/LC_MESSAGES/MA.po index d8e60818d..7ec9c892e 100644 --- a/holidays/locale/ar/LC_MESSAGES/MA.po +++ b/holidays/locale/ar/LC_MESSAGES/MA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Morocco holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-07-05 17:41+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/SA.po b/holidays/locale/ar/LC_MESSAGES/SA.po index 8e7715a36..dea73fec8 100644 --- a/holidays/locale/ar/LC_MESSAGES/SA.po +++ b/holidays/locale/ar/LC_MESSAGES/SA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Saudi Arabia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-08-04 20:02+0300\n" "PO-Revision-Date: 2023-08-04 20:05+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/TN.po b/holidays/locale/ar/LC_MESSAGES/TN.po index 120f724d2..5dbaac2d8 100644 --- a/holidays/locale/ar/LC_MESSAGES/TN.po +++ b/holidays/locale/ar/LC_MESSAGES/TN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tunisia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 15:48+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ar/LC_MESSAGES/UA.po b/holidays/locale/ar/LC_MESSAGES/UA.po index a2147d5d4..a2ee8e90b 100644 --- a/holidays/locale/ar/LC_MESSAGES/UA.po +++ b/holidays/locale/ar/LC_MESSAGES/UA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ukraine holidays ar localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.55\n" +"Project-Id-Version: Holidays 0.55\n" "POT-Creation-Date: 2023-07-08 19:40+0300\n" "PO-Revision-Date: 2024-08-15 21:24+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/az/LC_MESSAGES/AZ.po b/holidays/locale/az/LC_MESSAGES/AZ.po index 702c096bf..3fac848a4 100644 --- a/holidays/locale/az/LC_MESSAGES/AZ.po +++ b/holidays/locale/az/LC_MESSAGES/AZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Azerbaijan holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:47+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/be/LC_MESSAGES/BY.po b/holidays/locale/be/LC_MESSAGES/BY.po index c249c490c..cb519250c 100644 --- a/holidays/locale/be/LC_MESSAGES/BY.po +++ b/holidays/locale/be/LC_MESSAGES/BY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belarus holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.34\n" +"Project-Id-Version: Holidays 0.34\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" "PO-Revision-Date: 2023-09-27 18:49+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/bg/LC_MESSAGES/BG.po b/holidays/locale/bg/LC_MESSAGES/BG.po index ebb60614b..c733c3fe8 100644 --- a/holidays/locale/bg/LC_MESSAGES/BG.po +++ b/holidays/locale/bg/LC_MESSAGES/BG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bulgaria holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-30 20:48+0300\n" "PO-Revision-Date: 2023-06-30 21:10+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/bs/LC_MESSAGES/BA.po b/holidays/locale/bs/LC_MESSAGES/BA.po index 0845a8734..4ce708b65 100644 --- a/holidays/locale/bs/LC_MESSAGES/BA.po +++ b/holidays/locale/bs/LC_MESSAGES/BA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bosnia and Herzegovina holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-26 18:31+0300\n" "PO-Revision-Date: 2023-06-26 18:34+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/cs/LC_MESSAGES/CZ.po b/holidays/locale/cs/LC_MESSAGES/CZ.po index 7bf0d2929..9cceca989 100644 --- a/holidays/locale/cs/LC_MESSAGES/CZ.po +++ b/holidays/locale/cs/LC_MESSAGES/CZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Czechia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:38+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/da/LC_MESSAGES/DK.po b/holidays/locale/da/LC_MESSAGES/DK.po index 93daa30b2..ee0065b14 100644 --- a/holidays/locale/da/LC_MESSAGES/DK.po +++ b/holidays/locale/da/LC_MESSAGES/DK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Denmark holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2023-11-12 16:36+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/da/LC_MESSAGES/GL.po b/holidays/locale/da/LC_MESSAGES/GL.po index 1934e9f65..80e0f2625 100644 --- a/holidays/locale/da/LC_MESSAGES/GL.po +++ b/holidays/locale/da/LC_MESSAGES/GL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greenland holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2024-05-30 16:36+0200\n" "Last-Translator: ~Klintrup \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/AT.po b/holidays/locale/de/LC_MESSAGES/AT.po index b8078ffbd..ac200d216 100644 --- a/holidays/locale/de/LC_MESSAGES/AT.po +++ b/holidays/locale/de/LC_MESSAGES/AT.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Austria holidays. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-01 17:13+0300\n" "PO-Revision-Date: 2023-04-01 17:15+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/BE.po b/holidays/locale/de/LC_MESSAGES/BE.po index f54d01995..15c34be35 100644 --- a/holidays/locale/de/LC_MESSAGES/BE.po +++ b/holidays/locale/de/LC_MESSAGES/BE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belgium holidays de localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.33\n" +"Project-Id-Version: Holidays 0.33\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-09-06 20:49+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/CH.po b/holidays/locale/de/LC_MESSAGES/CH.po index 340598c2e..98a07b631 100644 --- a/holidays/locale/de/LC_MESSAGES/CH.po +++ b/holidays/locale/de/LC_MESSAGES/CH.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Switzerland holidays. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-10 15:41+0300\n" "PO-Revision-Date: 2024-01-21 14:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/DE.po b/holidays/locale/de/LC_MESSAGES/DE.po index 57f5d88cc..5e75fd8d6 100644 --- a/holidays/locale/de/LC_MESSAGES/DE.po +++ b/holidays/locale/de/LC_MESSAGES/DE.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Germany holidays. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-04 16:13+0300\n" "PO-Revision-Date: 2023-04-09 18:41+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/LI.po b/holidays/locale/de/LC_MESSAGES/LI.po index 72eea57fa..b762bca71 100644 --- a/holidays/locale/de/LC_MESSAGES/LI.po +++ b/holidays/locale/de/LC_MESSAGES/LI.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Liechtenstein holidays. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-01 18:49+0300\n" "PO-Revision-Date: 2024-01-25 21:16+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/de/LC_MESSAGES/LU.po b/holidays/locale/de/LC_MESSAGES/LU.po index e6bf208a4..e9fde65af 100644 --- a/holidays/locale/de/LC_MESSAGES/LU.po +++ b/holidays/locale/de/LC_MESSAGES/LU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Luxembourg holidays de localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-03 19:43+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/el/LC_MESSAGES/CY.po b/holidays/locale/el/LC_MESSAGES/CY.po index db87bbb0c..46219a564 100644 --- a/holidays/locale/el/LC_MESSAGES/CY.po +++ b/holidays/locale/el/LC_MESSAGES/CY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cyprus holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" "PO-Revision-Date: 2023-02-16 08:50-0800\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/el/LC_MESSAGES/GR.po b/holidays/locale/el/LC_MESSAGES/GR.po index 0e02f932b..3d60b1ea3 100644 --- a/holidays/locale/el/LC_MESSAGES/GR.po +++ b/holidays/locale/el/LC_MESSAGES/GR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greece holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-27 18:57+0300\n" "PO-Revision-Date: 2023-07-27 18:59+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_AU/LC_MESSAGES/AU.po b/holidays/locale/en_AU/LC_MESSAGES/AU.po index b533bad4d..b961c8f36 100644 --- a/holidays/locale/en_AU/LC_MESSAGES/AU.po +++ b/holidays/locale/en_AU/LC_MESSAGES/AU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Australia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-09-05 12:21+0700\n" "PO-Revision-Date: 2024-09-05 12:28+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_CA/LC_MESSAGES/CA.po b/holidays/locale/en_CA/LC_MESSAGES/CA.po index b4fe52134..3c8478742 100644 --- a/holidays/locale/en_CA/LC_MESSAGES/CA.po +++ b/holidays/locale/en_CA/LC_MESSAGES/CA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Canada holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.32\n" +"Project-Id-Version: Holidays 0.32\n" "POT-Creation-Date: 2023-04-10 14:10+0300\n" "PO-Revision-Date: 2023-12-26 22:10+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_CY/LC_MESSAGES/CY.po b/holidays/locale/en_CY/LC_MESSAGES/CY.po index 31f39adf1..3fdca7b75 100644 --- a/holidays/locale/en_CY/LC_MESSAGES/CY.po +++ b/holidays/locale/en_CY/LC_MESSAGES/CY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cyprus holidays en_CY localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" "PO-Revision-Date: 2024-01-05 13:33+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_CY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_SC/LC_MESSAGES/SC.po b/holidays/locale/en_SC/LC_MESSAGES/SC.po index 0507450a3..c4efa1331 100644 --- a/holidays/locale/en_SC/LC_MESSAGES/SC.po +++ b/holidays/locale/en_SC/LC_MESSAGES/SC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Seychelles holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.45\n" +"Project-Id-Version: Holidays 0.45\n" "POT-Creation-Date: 2024-03-01 11:00+0700\n" "PO-Revision-Date: 2024-03-05 16:34+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_SC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_SG/LC_MESSAGES/SG.po b/holidays/locale/en_SG/LC_MESSAGES/SG.po new file mode 100644 index 000000000..e92825134 --- /dev/null +++ b/holidays/locale/en_SG/LC_MESSAGES/SG.po @@ -0,0 +1,98 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Singapore holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-02 15:30+0700\n" +"PO-Revision-Date: 2024-10-02 15:54+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: en_SG\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. %s (observed). +#, c-format +msgid "%s (observed)" +msgstr "" + +#. New Year's Day. +msgid "New Year's Day" +msgstr "" + +#. Chinese New Year. +msgid "Chinese New Year" +msgstr "" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "" + +#. Second Day of Eid al-Fitr. +msgid "Second Day of Hari Raya Puasa" +msgstr "" + +#. Eid al-Adha. +msgid "Hari Raya Haji" +msgstr "" + +#. Good Friday. +msgid "Good Friday" +msgstr "" + +#. Holy Saturday. +msgid "Holy Saturday" +msgstr "" + +#. Easter Monday. +msgid "Easter Monday" +msgstr "" + +#. Labor Day. +msgid "Labour Day" +msgstr "" + +#. Vesak Day. +#. type: ignore[arg-type] +msgid "Vesak Day" +msgstr "" + +#. National Day. +msgid "National Day" +msgstr "" + +#. Deepavali. +#. type: ignore[arg-type] +msgid "Deepavali" +msgstr "" + +#. Christmas Day. +msgid "Christmas Day" +msgstr "" + +#. Boxing day. +msgid "Boxing Day" +msgstr "" + +#. Polling Day. +msgid "Polling Day" +msgstr "" + +#. SG50 Public Holiday. +msgid "SG50 Public Holiday" +msgstr "" diff --git a/holidays/locale/en_US/LC_MESSAGES/AE.po b/holidays/locale/en_US/LC_MESSAGES/AE.po index 07f5dc9c1..5965e4df1 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AE.po +++ b/holidays/locale/en_US/LC_MESSAGES/AE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # United Arab Emirates holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2024-01-25 15:04+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AM.po b/holidays/locale/en_US/LC_MESSAGES/AM.po index 978825ecd..2bc815d3b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AM.po +++ b/holidays/locale/en_US/LC_MESSAGES/AM.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Armenia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" "PO-Revision-Date: 2024-01-23 20:51+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AO.po b/holidays/locale/en_US/LC_MESSAGES/AO.po index fbe9334ea..84c072f8e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AO.po +++ b/holidays/locale/en_US/LC_MESSAGES/AO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Angola holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AR.po b/holidays/locale/en_US/LC_MESSAGES/AR.po index 81434aafc..320e52b9d 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AR.po +++ b/holidays/locale/en_US/LC_MESSAGES/AR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Argentina holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2024-01-05 12:31+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AT.po b/holidays/locale/en_US/LC_MESSAGES/AT.po index 6a8b86ae1..26bd534d0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AT.po +++ b/holidays/locale/en_US/LC_MESSAGES/AT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Austria holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-04-01 17:13+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AU.po b/holidays/locale/en_US/LC_MESSAGES/AU.po index 2dd7902ac..ba982d565 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AU.po +++ b/holidays/locale/en_US/LC_MESSAGES/AU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Australia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-09-05 12:21+0700\n" "PO-Revision-Date: 2024-09-05 12:30+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AW.po b/holidays/locale/en_US/LC_MESSAGES/AW.po index e5d00746a..b69ade2a9 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AW.po +++ b/holidays/locale/en_US/LC_MESSAGES/AW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Aruba holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-09 23:12+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/AZ.po b/holidays/locale/en_US/LC_MESSAGES/AZ.po index d6c520a4c..c15963d08 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/AZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Azerbaijan holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:52+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BA.po b/holidays/locale/en_US/LC_MESSAGES/BA.po index 6cb4334d8..50bb6c18c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BA.po +++ b/holidays/locale/en_US/LC_MESSAGES/BA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bosnia and Herzegovina holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-06-26 18:31+0300\n" "PO-Revision-Date: 2024-01-23 20:44+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BE.po b/holidays/locale/en_US/LC_MESSAGES/BE.po index f13dce6f2..49a102d88 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BE.po +++ b/holidays/locale/en_US/LC_MESSAGES/BE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belgium holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-07 15:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BG.po b/holidays/locale/en_US/LC_MESSAGES/BG.po index bca2a492a..99b11257d 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BG.po +++ b/holidays/locale/en_US/LC_MESSAGES/BG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bulgaria holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-06-30 20:48+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BH.po b/holidays/locale/en_US/LC_MESSAGES/BH.po index 1d8d372ff..182beb90d 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BH.po +++ b/holidays/locale/en_US/LC_MESSAGES/BH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bahrain holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 16:02+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BN.po b/holidays/locale/en_US/LC_MESSAGES/BN.po index 74e8638e6..c0add72ea 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BN.po +++ b/holidays/locale/en_US/LC_MESSAGES/BN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Brunei holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: 2024-09-07 17:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BO.po b/holidays/locale/en_US/LC_MESSAGES/BO.po index 9fc827a2b..68ba27b12 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BO.po +++ b/holidays/locale/en_US/LC_MESSAGES/BO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bolivia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:51+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/BY.po b/holidays/locale/en_US/LC_MESSAGES/BY.po index 9ab168492..a63e120c0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BY.po +++ b/holidays/locale/en_US/LC_MESSAGES/BY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belarus holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.34\n" +"Project-Id-Version: Holidays 0.34\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" "PO-Revision-Date: 2023-09-27 18:50+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CA.po b/holidays/locale/en_US/LC_MESSAGES/CA.po index c4a5973c2..985326716 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CA.po +++ b/holidays/locale/en_US/LC_MESSAGES/CA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Canada holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-04-10 14:10+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CG.po b/holidays/locale/en_US/LC_MESSAGES/CG.po new file mode 100644 index 000000000..e020f50fe --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/CG.po @@ -0,0 +1,67 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Congo holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-04 18:14+0700\n" +"PO-Revision-Date: 2024-10-04 18:17+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Jour de l'An" +msgstr "New Year's Day" + +#. Easter Monday. +msgid "Lundi de Pâques" +msgstr "Easter Monday" + +#. Labor Day. +msgid "Fête du Travail" +msgstr "Labor Day" + +#. Ascension Day. +msgid "Ascension" +msgstr "Ascension Day" + +#. Whit Monday. +msgid "Lundi de Pentecôte" +msgstr "Whit Monday" + +#. Reconciliation Day. +msgid "Fête de la Réconciliation" +msgstr "Reconciliation Day" + +#. National Day. +msgid "Fête Nationale" +msgstr "National Day" + +#. All Saints' Day. +msgid "Toussaint" +msgstr "All Saints' Day" + +#. Republic Day. +msgid "Jour de la République" +msgstr "Republic Day" + +#. Christmas Day. +msgid "Noël" +msgstr "Christmas Day" diff --git a/holidays/locale/en_US/LC_MESSAGES/CH.po b/holidays/locale/en_US/LC_MESSAGES/CH.po index 185d47ced..f29d9fdb7 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CH.po +++ b/holidays/locale/en_US/LC_MESSAGES/CH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Switzerland holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-04-10 15:41+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CL.po b/holidays/locale/en_US/LC_MESSAGES/CL.po index 1b292cd37..e1ccfd433 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CL.po +++ b/holidays/locale/en_US/LC_MESSAGES/CL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chile holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.53\n" +"Project-Id-Version: Holidays 0.53\n" "POT-Creation-Date: 2023-02-28 16:42+0200\n" "PO-Revision-Date: 2024-07-08 17:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CN.po b/holidays/locale/en_US/LC_MESSAGES/CN.po index 575633d57..5ae66364e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CN.po +++ b/holidays/locale/en_US/LC_MESSAGES/CN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chinese holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" "PO-Revision-Date: 2024-01-18 11:42+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,12 +89,12 @@ msgstr "%m/%d/%Y" msgid "休息日(%s日起取代)" msgstr "Day off (substituted from %s)" -#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. 70th Anniversary of the Victory of the Chinese People's War of Resistance #. against Japanese #. Aggression and the World Anti-Fascist War. msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" msgstr "" -"70th Anniversary of the Victory of the Chinese People’s War of Resistance " +"70th Anniversary of the Victory of the Chinese People's War of Resistance " "against Japanese Aggression and the World Anti-Fascist War" #. Chinese New Year (Spring Festival) Extended Holiday. diff --git a/holidays/locale/en_US/LC_MESSAGES/CO.po b/holidays/locale/en_US/LC_MESSAGES/CO.po index 21da552e3..95017813e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CO.po +++ b/holidays/locale/en_US/LC_MESSAGES/CO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Colombia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2024-01-23 20:50+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CR.po b/holidays/locale/en_US/LC_MESSAGES/CR.po index c58be60ba..e4d234ff7 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CR.po +++ b/holidays/locale/en_US/LC_MESSAGES/CR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Costa Rica holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2024-01-23 17:38+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CU.po b/holidays/locale/en_US/LC_MESSAGES/CU.po index 00853fbf1..203bf6e02 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CU.po +++ b/holidays/locale/en_US/LC_MESSAGES/CU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cuba holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-04 14:20+0200\n" "PO-Revision-Date: 2024-01-23 21:01+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CW.po b/holidays/locale/en_US/LC_MESSAGES/CW.po index 077d335ba..b2bea7dd8 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CW.po +++ b/holidays/locale/en_US/LC_MESSAGES/CW.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Curacao holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-06-13 16:35+0700\n" -"PO-Revision-Date: \n" -"Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"PO-Revision-Date: 2024-10-05 22:08+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day msgid "Aña Nobo" @@ -78,3 +78,7 @@ msgstr "Christmas Day" #. Second Day of Christmas msgid "Di dos dia di Pasku di Nasementu" msgstr "Second Day of Christmas" + +#. New Year's Eve. +msgid "Vispu di Aña Nobo" +msgstr "New Year's Eve" diff --git a/holidays/locale/en_US/LC_MESSAGES/CY.po b/holidays/locale/en_US/LC_MESSAGES/CY.po index 27493fae4..ab90cfa28 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CY.po +++ b/holidays/locale/en_US/LC_MESSAGES/CY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cyprus holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" "PO-Revision-Date: 2024-01-05 13:23+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/CZ.po b/holidays/locale/en_US/LC_MESSAGES/CZ.po index 5952e8233..fc138c07e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/CZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Czechia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:46+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/DE.po b/holidays/locale/en_US/LC_MESSAGES/DE.po index 8f612e5d8..9cef7b141 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DE.po +++ b/holidays/locale/en_US/LC_MESSAGES/DE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Germany holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-04 16:13+0300\n" "PO-Revision-Date: 2023-04-09 18:42+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/DJ.po b/holidays/locale/en_US/LC_MESSAGES/DJ.po index 0afd43e3e..065f4fabc 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DJ.po +++ b/holidays/locale/en_US/LC_MESSAGES/DJ.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Djibouti holidays en_US localization. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-07-15 20:58+0300\n" "PO-Revision-Date: 2024-09-07 17:21+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/DK.po b/holidays/locale/en_US/LC_MESSAGES/DK.po index 91e677c00..0538f2b63 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DK.po +++ b/holidays/locale/en_US/LC_MESSAGES/DK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Denmark holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2023-11-12 16:36+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/DO.po b/holidays/locale/en_US/LC_MESSAGES/DO.po index 8fe994b47..137c3d83c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DO.po +++ b/holidays/locale/en_US/LC_MESSAGES/DO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Dominican Republic holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2024-01-22 13:55+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/DZ.po b/holidays/locale/en_US/LC_MESSAGES/DZ.po index c690bc2fd..ed1de1494 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/DZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Algeria holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 14:56+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/EC.po b/holidays/locale/en_US/LC_MESSAGES/EC.po index 3eef6cd68..13e96bcdc 100644 --- a/holidays/locale/en_US/LC_MESSAGES/EC.po +++ b/holidays/locale/en_US/LC_MESSAGES/EC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ecuador holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2024-01-23 21:03+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/EE.po b/holidays/locale/en_US/LC_MESSAGES/EE.po index 47f376eba..7f77c4137 100644 --- a/holidays/locale/en_US/LC_MESSAGES/EE.po +++ b/holidays/locale/en_US/LC_MESSAGES/EE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Estonia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:47+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/EG.po b/holidays/locale/en_US/LC_MESSAGES/EG.po index 291e4f97b..d5a6ec834 100644 --- a/holidays/locale/en_US/LC_MESSAGES/EG.po +++ b/holidays/locale/en_US/LC_MESSAGES/EG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Egypt holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2024-01-25 21:05+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/ES.po b/holidays/locale/en_US/LC_MESSAGES/ES.po index 1e3d711f1..57e3b2ec2 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ES.po +++ b/holidays/locale/en_US/LC_MESSAGES/ES.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Spain holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-12-26 19:23+0200\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/ET.po b/holidays/locale/en_US/LC_MESSAGES/ET.po index a2f4e567d..2b10a12a4 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ET.po +++ b/holidays/locale/en_US/LC_MESSAGES/ET.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ethiopia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.44\n" +"Project-Id-Version: Holidays 0.44\n" "POT-Creation-Date: 2023-02-15 14:15-0800\n" "PO-Revision-Date: 2024-02-27 14:49+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/FI.po b/holidays/locale/en_US/LC_MESSAGES/FI.po index 2c99a07bf..f9a6f9768 100644 --- a/holidays/locale/en_US/LC_MESSAGES/FI.po +++ b/holidays/locale/en_US/LC_MESSAGES/FI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Finland holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.54\n" +"Project-Id-Version: Holidays 0.54\n" "POT-Creation-Date: 2023-04-08 19:30+0300\n" "PO-Revision-Date: 2024-07-26 17:41+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/FR.po b/holidays/locale/en_US/LC_MESSAGES/FR.po index b37fb89fc..6c9c8fe55 100644 --- a/holidays/locale/en_US/LC_MESSAGES/FR.po +++ b/holidays/locale/en_US/LC_MESSAGES/FR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # France holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-23 14:44+0200\n" "PO-Revision-Date: 2023-03-23 14:47+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/GE.po b/holidays/locale/en_US/LC_MESSAGES/GE.po index 830303fc4..50f44143e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/GE.po +++ b/holidays/locale/en_US/LC_MESSAGES/GE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Georgia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2024-05-23 11:01+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/GL.po b/holidays/locale/en_US/LC_MESSAGES/GL.po index bb1923597..8a408bece 100644 --- a/holidays/locale/en_US/LC_MESSAGES/GL.po +++ b/holidays/locale/en_US/LC_MESSAGES/GL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greenland holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2023-11-12 16:36+0200\n" "Last-Translator: ~Klintrup \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/GR.po b/holidays/locale/en_US/LC_MESSAGES/GR.po index a1d37cebc..31720c023 100644 --- a/holidays/locale/en_US/LC_MESSAGES/GR.po +++ b/holidays/locale/en_US/LC_MESSAGES/GR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greece holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-27 18:57+0300\n" "PO-Revision-Date: 2023-07-27 19:01+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/GT.po b/holidays/locale/en_US/LC_MESSAGES/GT.po index e12aeb7a4..cddcc010a 100644 --- a/holidays/locale/en_US/LC_MESSAGES/GT.po +++ b/holidays/locale/en_US/LC_MESSAGES/GT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Guatemala holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2024-01-22 14:09+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/HN.po b/holidays/locale/en_US/LC_MESSAGES/HN.po index 817b3df54..427e9df6e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/HN.po +++ b/holidays/locale/en_US/LC_MESSAGES/HN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Honduras holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Holidays 0.25\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2024-01-05 12:38+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/HR.po b/holidays/locale/en_US/LC_MESSAGES/HR.po index d75b85640..73b84d5e1 100644 --- a/holidays/locale/en_US/LC_MESSAGES/HR.po +++ b/holidays/locale/en_US/LC_MESSAGES/HR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Croatia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/HT.po b/holidays/locale/en_US/LC_MESSAGES/HT.po index 20b85eb60..262501a9c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/HT.po +++ b/holidays/locale/en_US/LC_MESSAGES/HT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Haiti holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2024-08-19 13:57+0700\n" "PO-Revision-Date: 2024-08-20 10:00+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/HU.po b/holidays/locale/en_US/LC_MESSAGES/HU.po index c2c34265d..f71df0301 100644 --- a/holidays/locale/en_US/LC_MESSAGES/HU.po +++ b/holidays/locale/en_US/LC_MESSAGES/HU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Hungary holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-06-12 19:06+0300\n" "PO-Revision-Date: 2023-11-10 22:15+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/ID.po b/holidays/locale/en_US/LC_MESSAGES/ID.po index 7bfce97ad..4f0357b78 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ID.po +++ b/holidays/locale/en_US/LC_MESSAGES/ID.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Indonesia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-07-23 14:09+0300\n" "PO-Revision-Date: 2024-09-07 17:22+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/IL.po b/holidays/locale/en_US/LC_MESSAGES/IL.po index d12f7b9eb..90f28e9ee 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IL.po +++ b/holidays/locale/en_US/LC_MESSAGES/IL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Israel holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2023-07-18 17:57+0300\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/IR.po b/holidays/locale/en_US/LC_MESSAGES/IR.po index 321df68d9..f977048b8 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IR.po +++ b/holidays/locale/en_US/LC_MESSAGES/IR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Iran holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-08-03 18:21+0300\n" "PO-Revision-Date: 2024-09-07 17:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/IS.po b/holidays/locale/en_US/LC_MESSAGES/IS.po index a1d8c495e..e75da7162 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IS.po +++ b/holidays/locale/en_US/LC_MESSAGES/IS.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Iceland holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 14:31+0300\n" "PO-Revision-Date: 2023-04-09 14:32+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/JO.po b/holidays/locale/en_US/LC_MESSAGES/JO.po index e6358b806..ad44b7054 100644 --- a/holidays/locale/en_US/LC_MESSAGES/JO.po +++ b/holidays/locale/en_US/LC_MESSAGES/JO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Jordan holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-02-28 09:55-0800\n" "PO-Revision-Date: 2024-09-07 17:25+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/JP.po b/holidays/locale/en_US/LC_MESSAGES/JP.po index 1ea529286..1c2975375 100644 --- a/holidays/locale/en_US/LC_MESSAGES/JP.po +++ b/holidays/locale/en_US/LC_MESSAGES/JP.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Japan holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-23 15:45+0300\n" "PO-Revision-Date: 2023-07-23 15:47+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/KH.po b/holidays/locale/en_US/LC_MESSAGES/KH.po index a52b4a170..6a0d22b73 100644 --- a/holidays/locale/en_US/LC_MESSAGES/KH.po +++ b/holidays/locale/en_US/LC_MESSAGES/KH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cambodia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-07 20:10+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/KR.po b/holidays/locale/en_US/LC_MESSAGES/KR.po index 96f054507..8556e7eb6 100644 --- a/holidays/locale/en_US/LC_MESSAGES/KR.po +++ b/holidays/locale/en_US/LC_MESSAGES/KR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # South Korea holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-10-26 23:49+0700\n" "PO-Revision-Date: 2023-10-26 23:53+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/KW.po b/holidays/locale/en_US/LC_MESSAGES/KW.po index c59a73b34..f6f35521b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/KW.po +++ b/holidays/locale/en_US/LC_MESSAGES/KW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Kuwait holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-02-28 09:55-0800\n" "PO-Revision-Date: 2024-09-07 17:26+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/KZ.po b/holidays/locale/en_US/LC_MESSAGES/KZ.po new file mode 100644 index 000000000..48940de1b --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/KZ.po @@ -0,0 +1,103 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Kazakhstan holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-09-26 20:24+0300\n" +"PO-Revision-Date: 2024-09-26 20:33+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. %s (estimated). +#, c-format +msgid "%s (бағаланған)" +msgstr "%s (estimated)" + +#. %s (observed). +#, c-format +msgid "%s (қайта белгіленген демалыс)" +msgstr "%s (observed)" + +#. %s (observed, estimated). +#, c-format +msgid "%s (қайта белгіленген демалыс, бағаланған)" +msgstr "%s (observed, estimated)" + +#. New Year's Day. +msgid "Жаңа жыл" +msgstr "New Year's Day" + +#. Orthodox Christmas. +msgid "Православиелік Рождество" +msgstr "Orthodox Christmas" + +#. International Women's Day. +msgid "Халықаралық әйелдер күні" +msgstr "International Women's Day" + +#. Nowruz holiday. +msgid "Наурыз мейрамы" +msgstr "Nowruz holiday" + +#. Kazakhstan's People Solidarity Holiday. +msgid "Қазақстан халқының бірлігі мерекесі" +msgstr "Kazakhstan's People Solidarity Holiday" + +#. Defender of the Fatherland Day. +msgid "Отан Қорғаушы күні" +msgstr "Defender of the Fatherland Day" + +#. Victory Day. +msgid "Жеңіс күні" +msgstr "Victory Day" + +#. Capital Day. +msgid "Астана күні" +msgstr "Capital Day" + +#. Constitution Day. +msgid "Қазақстан Республикасының Конституциясы күні" +msgstr "Constitution Day" + +#. Republic Day. +msgid "Республика күні" +msgstr "Republic Day" + +#. First President Day. +msgid "Қазақстан Республикасының Тұңғыш Президенті күні" +msgstr "First President Day" + +#. Independence Day. +msgid "Тəуелсіздік күні" +msgstr "Independence Day" + +#. Eid al-Adha. +msgid "Құрбан айт" +msgstr "Eid al-Adha" + +#. Substituted date format. +msgid "%d.%m.%Y" +msgstr "%m/%d/%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "Демалыс күні (%s бастап ауыстырылды)" +msgstr "Day off (substituted from %s)" diff --git a/holidays/locale/en_US/LC_MESSAGES/LA.po b/holidays/locale/en_US/LC_MESSAGES/LA.po index 84a78bac7..71d831d06 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LA.po +++ b/holidays/locale/en_US/LC_MESSAGES/LA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Laos holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-09-11 15:10+0700\n" "PO-Revision-Date: 2024-01-02 21:55+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/LI.po b/holidays/locale/en_US/LC_MESSAGES/LI.po index fd9d2147c..dce838eba 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LI.po +++ b/holidays/locale/en_US/LC_MESSAGES/LI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Liechtenstein holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-04-01 17:13+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/LT.po b/holidays/locale/en_US/LC_MESSAGES/LT.po index bea7a0f3f..94231ea58 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LT.po +++ b/holidays/locale/en_US/LC_MESSAGES/LT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Lithuania holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-07 16:02+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/LU.po b/holidays/locale/en_US/LC_MESSAGES/LU.po index 8e0079eda..9cee83558 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LU.po +++ b/holidays/locale/en_US/LC_MESSAGES/LU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Luxembourg holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/LV.po b/holidays/locale/en_US/LC_MESSAGES/LV.po index 431d24762..a7b0c6c30 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LV.po +++ b/holidays/locale/en_US/LC_MESSAGES/LV.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Latvia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-07 16:02+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MA.po b/holidays/locale/en_US/LC_MESSAGES/MA.po index de7e26b67..8f7cbb0d5 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MA.po +++ b/holidays/locale/en_US/LC_MESSAGES/MA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Morocco holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-07-11 03:44+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MC.po b/holidays/locale/en_US/LC_MESSAGES/MC.po index e7174cf10..b2c277e0b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MC.po +++ b/holidays/locale/en_US/LC_MESSAGES/MC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Monaco holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2024-01-02 15:44+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MD.po b/holidays/locale/en_US/LC_MESSAGES/MD.po index 905c0cc8c..4f3f7091f 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MD.po +++ b/holidays/locale/en_US/LC_MESSAGES/MD.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Moldova holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.46\n" +"Project-Id-Version: Holidays 0.46\n" "POT-Creation-Date: 2023-03-22 21:58+0200\n" "PO-Revision-Date: 2024-03-20 21:12+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MG.po b/holidays/locale/en_US/LC_MESSAGES/MG.po index 736edaf2c..9915cef4b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MG.po +++ b/holidays/locale/en_US/LC_MESSAGES/MG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Madagascar holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-25 17:39+0300\n" "PO-Revision-Date: 2023-06-25 17:45+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MT.po b/holidays/locale/en_US/LC_MESSAGES/MT.po index 1e2a01417..56fbc6f91 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MT.po +++ b/holidays/locale/en_US/LC_MESSAGES/MT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Malta holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-06-27 19:10+0700\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MX.po b/holidays/locale/en_US/LC_MESSAGES/MX.po index a30d03e4f..9db1e3727 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MX.po +++ b/holidays/locale/en_US/LC_MESSAGES/MX.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mexico holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2024-01-23 20:55+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MY.po b/holidays/locale/en_US/LC_MESSAGES/MY.po index f98302d6c..45b85f17a 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MY.po +++ b/holidays/locale/en_US/LC_MESSAGES/MY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Malaysia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.49\n" +"Project-Id-Version: Holidays 0.49\n" "POT-Creation-Date: 2024-04-28 21:03+0300\n" "PO-Revision-Date: 2024-04-29 15:16+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/MZ.po b/holidays/locale/en_US/LC_MESSAGES/MZ.po index ea524db81..d0e80b9ed 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/MZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mozambique holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:26+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/NI.po b/holidays/locale/en_US/LC_MESSAGES/NI.po index 1d223e46f..3c177ea78 100644 --- a/holidays/locale/en_US/LC_MESSAGES/NI.po +++ b/holidays/locale/en_US/LC_MESSAGES/NI.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Nicaragua holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" -"PO-Revision-Date: 2024-01-05 12:43+0200\n" +"PO-Revision-Date: 2024-09-21 17:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.4\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day. msgid "Año Nuevo" @@ -43,6 +43,10 @@ msgstr "Good Friday" msgid "Día del Trabajo" msgstr "Labor Day" +#. Mother's Day. +msgid "Día de la Madre" +msgstr "Mother's Day" + #. Revolution Day. msgid "Día de la Revolución" msgstr "Revolution Day" diff --git a/holidays/locale/en_US/LC_MESSAGES/NL.po b/holidays/locale/en_US/LC_MESSAGES/NL.po index 5aa9c02ae..f6ba28855 100644 --- a/holidays/locale/en_US/LC_MESSAGES/NL.po +++ b/holidays/locale/en_US/LC_MESSAGES/NL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Netherlands holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 18:11+0300\n" "PO-Revision-Date: 2023-04-09 18:15+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/NO.po b/holidays/locale/en_US/LC_MESSAGES/NO.po index 6b3744820..0f097426d 100644 --- a/holidays/locale/en_US/LC_MESSAGES/NO.po +++ b/holidays/locale/en_US/LC_MESSAGES/NO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Norway holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 13:25+0300\n" "PO-Revision-Date: 2023-04-09 13:31+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/PE.po b/holidays/locale/en_US/LC_MESSAGES/PE.po index a6f6bcaa7..631334fcc 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PE.po +++ b/holidays/locale/en_US/LC_MESSAGES/PE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Peru holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-02-21 15:18+0200\n" "PO-Revision-Date: 2024-01-23 20:56+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/PL.po b/holidays/locale/en_US/LC_MESSAGES/PL.po index 036ae3eec..b5372b183 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PL.po +++ b/holidays/locale/en_US/LC_MESSAGES/PL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Poland holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2024-01-03 21:22+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/PT.po b/holidays/locale/en_US/LC_MESSAGES/PT.po index 6198aea71..d48798db3 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PT.po +++ b/holidays/locale/en_US/LC_MESSAGES/PT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Portugal holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-03-07 19:38+0700\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/PY.po b/holidays/locale/en_US/LC_MESSAGES/PY.po index 284e01f83..379f141d0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PY.po +++ b/holidays/locale/en_US/LC_MESSAGES/PY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Paraguay holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2024-01-05 12:44+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/RO.po b/holidays/locale/en_US/LC_MESSAGES/RO.po index 5742f76ab..98306774b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/RO.po +++ b/holidays/locale/en_US/LC_MESSAGES/RO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Romania holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-22 18:35+0200\n" "PO-Revision-Date: 2024-01-23 21:09+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/RS.po b/holidays/locale/en_US/LC_MESSAGES/RS.po index 5b968b194..d70d0c24b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/RS.po +++ b/holidays/locale/en_US/LC_MESSAGES/RS.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Serbia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-02-15 15:18-0800\n" "PO-Revision-Date: 2024-01-22 14:07+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/RU.po b/holidays/locale/en_US/LC_MESSAGES/RU.po index a00490071..e6e050c1e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/RU.po +++ b/holidays/locale/en_US/LC_MESSAGES/RU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Russia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2024-05-21 13:26+0700\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/SA.po b/holidays/locale/en_US/LC_MESSAGES/SA.po index c6064a527..42368d5fb 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SA.po +++ b/holidays/locale/en_US/LC_MESSAGES/SA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Saudi Arabia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-08-04 20:02+0300\n" "PO-Revision-Date: 2023-08-04 20:03+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/SC.po b/holidays/locale/en_US/LC_MESSAGES/SC.po index 539046685..5ccd9eb11 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SC.po +++ b/holidays/locale/en_US/LC_MESSAGES/SC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Seychelles holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.45\n" +"Project-Id-Version: Holidays 0.45\n" "POT-Creation-Date: 2024-03-01 11:00+0700\n" "PO-Revision-Date: 2024-03-05 16:34+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/SE.po b/holidays/locale/en_US/LC_MESSAGES/SE.po index 86023a212..4830a4051 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SE.po +++ b/holidays/locale/en_US/LC_MESSAGES/SE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Sweden holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-08 20:17+0300\n" "PO-Revision-Date: 2023-04-08 20:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/SG.po b/holidays/locale/en_US/LC_MESSAGES/SG.po new file mode 100644 index 000000000..618a0004c --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/SG.po @@ -0,0 +1,98 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Singapore holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-02 15:30+0700\n" +"PO-Revision-Date: 2024-10-02 15:54+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. %s (observed). +#, c-format +msgid "%s (observed)" +msgstr "%s (observed)" + +#. New Year's Day. +msgid "New Year's Day" +msgstr "New Year's Day" + +#. Chinese New Year. +msgid "Chinese New Year" +msgstr "Chinese New Year" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "Eid al-Fitr" + +#. Second Day of Eid al-Fitr. +msgid "Second Day of Hari Raya Puasa" +msgstr "Second Day of Eid al-Fitr" + +#. Eid al-Adha. +msgid "Hari Raya Haji" +msgstr "Eid al-Adha" + +#. Good Friday. +msgid "Good Friday" +msgstr "Good Friday" + +#. Holy Saturday. +msgid "Holy Saturday" +msgstr "Holy Saturday" + +#. Easter Monday. +msgid "Easter Monday" +msgstr "Easter Monday" + +#. Labor Day. +msgid "Labour Day" +msgstr "Labor Day" + +#. Vesak Day. +#. type: ignore[arg-type] +msgid "Vesak Day" +msgstr "Vesak Day" + +#. National Day. +msgid "National Day" +msgstr "National Day" + +#. Deepavali. +#. type: ignore[arg-type] +msgid "Deepavali" +msgstr "Deepavali" + +#. Christmas Day. +msgid "Christmas Day" +msgstr "Christmas Day" + +#. Boxing day. +msgid "Boxing Day" +msgstr "Boxing Day" + +#. Polling Day. +msgid "Polling Day" +msgstr "Polling Day" + +#. SG50 Public Holiday. +msgid "SG50 Public Holiday" +msgstr "SG50 Public Holiday" diff --git a/holidays/locale/en_US/LC_MESSAGES/SI.po b/holidays/locale/en_US/LC_MESSAGES/SI.po index 766ba46c9..6d88c60a3 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SI.po +++ b/holidays/locale/en_US/LC_MESSAGES/SI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovenia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 14:01+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/SK.po b/holidays/locale/en_US/LC_MESSAGES/SK.po index 6e17709a4..3781abb21 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SK.po +++ b/holidays/locale/en_US/LC_MESSAGES/SK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovakia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2023-05-10 17:13+0300\n" "PO-Revision-Date: 2024-08-31 18:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TH.po b/holidays/locale/en_US/LC_MESSAGES/TH.po index d48b66e19..eca17f65b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TH.po +++ b/holidays/locale/en_US/LC_MESSAGES/TH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Thailand holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-18 15:58-0700\n" "PO-Revision-Date: 2024-01-24 17:51+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TL.po b/holidays/locale/en_US/LC_MESSAGES/TL.po index a48323ecb..ad62744d0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TL.po +++ b/holidays/locale/en_US/LC_MESSAGES/TL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Timor-Leste holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2024-09-07 17:45+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TN.po b/holidays/locale/en_US/LC_MESSAGES/TN.po index 11b9579f9..50fce634c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TN.po +++ b/holidays/locale/en_US/LC_MESSAGES/TN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tunisia holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 16:08+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TO.po b/holidays/locale/en_US/LC_MESSAGES/TO.po index 1adcfafb4..4989cda43 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TO.po +++ b/holidays/locale/en_US/LC_MESSAGES/TO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tonga holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-10-24 19:30+0700\n" "PO-Revision-Date: 2023-10-24 19:36+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TR.po b/holidays/locale/en_US/LC_MESSAGES/TR.po index 749401434..dbfb5c356 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TR.po +++ b/holidays/locale/en_US/LC_MESSAGES/TR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Turkey holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-11-12 18:52+0200\n" "PO-Revision-Date: 2023-11-14 12:56+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TW.po b/holidays/locale/en_US/LC_MESSAGES/TW.po index cec5642b9..222ef9730 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TW.po +++ b/holidays/locale/en_US/LC_MESSAGES/TW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Taiwan holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.43\n" +"Project-Id-Version: Holidays 0.43\n" "POT-Creation-Date: 2023-11-24 16:16+0700\n" "PO-Revision-Date: 2024-02-07 19:37+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/TZ.po b/holidays/locale/en_US/LC_MESSAGES/TZ.po index 7905b6c91..59888ad22 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/TZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tanzania holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2023-10-07 15:05+0700\n" "PO-Revision-Date: 2024-09-07 17:41+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/UA.po b/holidays/locale/en_US/LC_MESSAGES/UA.po index d23200b9f..a485df189 100644 --- a/holidays/locale/en_US/LC_MESSAGES/UA.po +++ b/holidays/locale/en_US/LC_MESSAGES/UA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ukraine holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.55\n" +"Project-Id-Version: Holidays 0.55\n" "POT-Creation-Date: 2023-07-08 19:40+0300\n" "PO-Revision-Date: 2024-08-15 21:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/UY.po b/holidays/locale/en_US/LC_MESSAGES/UY.po index 8ac57c588..65b295989 100644 --- a/holidays/locale/en_US/LC_MESSAGES/UY.po +++ b/holidays/locale/en_US/LC_MESSAGES/UY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uruguay holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-17 14:06+0300\n" "PO-Revision-Date: 2023-07-17 14:11+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/UZ.po b/holidays/locale/en_US/LC_MESSAGES/UZ.po index c384b4926..54b1fd5b6 100644 --- a/holidays/locale/en_US/LC_MESSAGES/UZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/UZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uzbekistan holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-12-31 21:12+0200\n" "PO-Revision-Date: 2024-01-02 12:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/VE.po b/holidays/locale/en_US/LC_MESSAGES/VE.po index c04aa1219..8d621cf13 100644 --- a/holidays/locale/en_US/LC_MESSAGES/VE.po +++ b/holidays/locale/en_US/LC_MESSAGES/VE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Venezuela holidays en_US localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2023-03-05 12:58+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/en_US/LC_MESSAGES/VN.po b/holidays/locale/en_US/LC_MESSAGES/VN.po new file mode 100644 index 000000000..0f416b642 --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/VN.po @@ -0,0 +1,75 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Vietnam holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-09-27 15:50+0700\n" +"PO-Revision-Date: 2024-09-27 15:50+0700\n" +"Last-Translator: Vu Nhat Chuong \n" +"Language-Team: Holidays Localization Team\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" + +#. %s (observed). +#, c-format +msgid "%s (nghỉ bù)" +msgstr "%s (observed)" + +#. New Year's Day +msgid "Tết Dương lịch" +msgstr "New Year's Day" + +#. Lunar New Year's Eve +msgid "Giao thừa Tết Nguyên Đán" +msgstr "Lunar New Year's Eve" + +#. Lunar New Year +msgid "Tết Nguyên Đán" +msgstr "Lunar New Year" + +#. Second Day of Lunar New Year +msgid "Mùng hai Tết Nguyên Đán" +msgstr "The second day of Tet Holiday" + +#. Third Day of Lunar New Year +msgid "Mùng ba Tết Nguyên Đán" +msgstr "The third day of Tet Holiday" + +#. Fourth Day of Lunar New Year +msgid "Mùng bốn Tết Nguyên Đán" +msgstr "The fourth day of Tet Holiday" + +#. Fifth Day of Lunar New Year +msgid "Mùng năm Tết Nguyên Đán" +msgstr "The fifth day of Tet Holiday" + +#. Hung Kings' Commemoration Day +msgid "Ngày Giỗ Tổ Hùng Vương" +msgstr "Hung Kings' Commemoration Day" + +#. Liberation Day/Reunification Day +msgid "Ngày Chiến thắng" +msgstr "Liberation Day/Reunification Day" + +#. International Labor Day +msgid "Ngày Quốc tế Lao động" +msgstr "International Labor Day" + +#. National Day +msgid "Quốc khánh" +msgstr "National Day" diff --git a/holidays/locale/es/LC_MESSAGES/AR.po b/holidays/locale/es/LC_MESSAGES/AR.po index e9630e880..c4df7478e 100644 --- a/holidays/locale/es/LC_MESSAGES/AR.po +++ b/holidays/locale/es/LC_MESSAGES/AR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Argentina holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2023-05-03 18:35-0700\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/BO.po b/holidays/locale/es/LC_MESSAGES/BO.po index 994b6e753..fc40abad6 100644 --- a/holidays/locale/es/LC_MESSAGES/BO.po +++ b/holidays/locale/es/LC_MESSAGES/BO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bolivia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:49+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/CL.po b/holidays/locale/es/LC_MESSAGES/CL.po index 388a98d15..b3535325b 100644 --- a/holidays/locale/es/LC_MESSAGES/CL.po +++ b/holidays/locale/es/LC_MESSAGES/CL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chile holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.53\n" +"Project-Id-Version: Holidays 0.53\n" "POT-Creation-Date: 2023-02-28 16:42+0200\n" "PO-Revision-Date: 2024-07-08 17:19+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/CO.po b/holidays/locale/es/LC_MESSAGES/CO.po index ff09ba564..5728f3358 100644 --- a/holidays/locale/es/LC_MESSAGES/CO.po +++ b/holidays/locale/es/LC_MESSAGES/CO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Colombia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2023-02-19 17:16+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/CR.po b/holidays/locale/es/LC_MESSAGES/CR.po index a35317d07..87e629112 100644 --- a/holidays/locale/es/LC_MESSAGES/CR.po +++ b/holidays/locale/es/LC_MESSAGES/CR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Costa Rica holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2023-05-03 18:39-0700\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/CU.po b/holidays/locale/es/LC_MESSAGES/CU.po index 73e5c5fdf..e496c0844 100644 --- a/holidays/locale/es/LC_MESSAGES/CU.po +++ b/holidays/locale/es/LC_MESSAGES/CU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cuba holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-04 14:20+0200\n" "PO-Revision-Date: 2023-03-05 12:42+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/DO.po b/holidays/locale/es/LC_MESSAGES/DO.po index 8806fc453..14c183e47 100644 --- a/holidays/locale/es/LC_MESSAGES/DO.po +++ b/holidays/locale/es/LC_MESSAGES/DO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Dominican Republic holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2023-03-05 12:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/EC.po b/holidays/locale/es/LC_MESSAGES/EC.po index b8712a553..eb8c76a86 100644 --- a/holidays/locale/es/LC_MESSAGES/EC.po +++ b/holidays/locale/es/LC_MESSAGES/EC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ecuador holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2023-04-02 18:55+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/ES.po b/holidays/locale/es/LC_MESSAGES/ES.po index 54822def5..1c699a869 100644 --- a/holidays/locale/es/LC_MESSAGES/ES.po +++ b/holidays/locale/es/LC_MESSAGES/ES.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Spain holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.40\n" +"Project-Id-Version: Holidays 0.40\n" "POT-Creation-Date: 2023-12-26 19:23+0200\n" "PO-Revision-Date: 2023-12-26 19:32+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/GT.po b/holidays/locale/es/LC_MESSAGES/GT.po index 0973cd029..cb01340d0 100644 --- a/holidays/locale/es/LC_MESSAGES/GT.po +++ b/holidays/locale/es/LC_MESSAGES/GT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Guatemala holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2023-02-19 17:16+0200\n" "Last-Translator: Jorge Cadena \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/HN.po b/holidays/locale/es/LC_MESSAGES/HN.po index ff9380539..fab143556 100644 --- a/holidays/locale/es/LC_MESSAGES/HN.po +++ b/holidays/locale/es/LC_MESSAGES/HN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Honduras holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Holidays 0.25\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2023-03-05 12:44+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/HT.po b/holidays/locale/es/LC_MESSAGES/HT.po index 2286b2bde..959332029 100644 --- a/holidays/locale/es/LC_MESSAGES/HT.po +++ b/holidays/locale/es/LC_MESSAGES/HT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Haiti holidays es localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2024-08-19 13:57+0700\n" "PO-Revision-Date: 2024-08-20 10:00+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/MX.po b/holidays/locale/es/LC_MESSAGES/MX.po index 40adaf8a6..548d3c877 100644 --- a/holidays/locale/es/LC_MESSAGES/MX.po +++ b/holidays/locale/es/LC_MESSAGES/MX.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mexico holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2023-03-05 12:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/NI.po b/holidays/locale/es/LC_MESSAGES/NI.po index 4765d5896..da142f552 100644 --- a/holidays/locale/es/LC_MESSAGES/NI.po +++ b/holidays/locale/es/LC_MESSAGES/NI.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Nicaragua holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" -"PO-Revision-Date: 2023-03-05 12:43+0200\n" +"PO-Revision-Date: 2024-09-21 17:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day. msgid "Año Nuevo" @@ -43,6 +43,10 @@ msgstr "" msgid "Día del Trabajo" msgstr "" +#. Mother's Day. +msgid "Día de la Madre" +msgstr "" + #. Revolution Day. msgid "Día de la Revolución" msgstr "" diff --git a/holidays/locale/es/LC_MESSAGES/PE.po b/holidays/locale/es/LC_MESSAGES/PE.po index d8da5ba7a..0e49a380b 100644 --- a/holidays/locale/es/LC_MESSAGES/PE.po +++ b/holidays/locale/es/LC_MESSAGES/PE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Peru holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-02-21 15:18+0200\n" "PO-Revision-Date: 2023-02-21 15:18+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/PY.po b/holidays/locale/es/LC_MESSAGES/PY.po index 0c1f80036..a3bce9d76 100644 --- a/holidays/locale/es/LC_MESSAGES/PY.po +++ b/holidays/locale/es/LC_MESSAGES/PY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Paraguay holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2024-01-05 12:41+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/UY.po b/holidays/locale/es/LC_MESSAGES/UY.po index 8fd28af39..3db4c5e90 100644 --- a/holidays/locale/es/LC_MESSAGES/UY.po +++ b/holidays/locale/es/LC_MESSAGES/UY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uruguay holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-17 14:06+0300\n" "PO-Revision-Date: 2023-07-17 14:07+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/es/LC_MESSAGES/VE.po b/holidays/locale/es/LC_MESSAGES/VE.po index 998b2e6ae..9a7134c15 100644 --- a/holidays/locale/es/LC_MESSAGES/VE.po +++ b/holidays/locale/es/LC_MESSAGES/VE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Venezuela holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2023-03-05 12:44+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/et/LC_MESSAGES/EE.po b/holidays/locale/et/LC_MESSAGES/EE.po index a7b8765e4..e16f38066 100644 --- a/holidays/locale/et/LC_MESSAGES/EE.po +++ b/holidays/locale/et/LC_MESSAGES/EE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Estonia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:39+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fa/LC_MESSAGES/IR.po b/holidays/locale/fa/LC_MESSAGES/IR.po index 309435df7..45dca49e6 100644 --- a/holidays/locale/fa/LC_MESSAGES/IR.po +++ b/holidays/locale/fa/LC_MESSAGES/IR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Iran holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.31\n" +"Project-Id-Version: Holidays 0.31\n" "POT-Creation-Date: 2023-08-03 18:21+0300\n" "PO-Revision-Date: 2023-08-03 18:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fi/LC_MESSAGES/FI.po b/holidays/locale/fi/LC_MESSAGES/FI.po index c8395090a..855552991 100644 --- a/holidays/locale/fi/LC_MESSAGES/FI.po +++ b/holidays/locale/fi/LC_MESSAGES/FI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Finland holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.54\n" +"Project-Id-Version: Holidays 0.54\n" "POT-Creation-Date: 2023-04-08 19:30+0300\n" "PO-Revision-Date: 2024-07-26 17:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/BE.po b/holidays/locale/fr/LC_MESSAGES/BE.po index 58fb918ec..03899edd4 100644 --- a/holidays/locale/fr/LC_MESSAGES/BE.po +++ b/holidays/locale/fr/LC_MESSAGES/BE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belgium holidays fr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.33\n" +"Project-Id-Version: Holidays 0.33\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-09-06 20:51+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/CA.po b/holidays/locale/fr/LC_MESSAGES/CA.po index 429759b85..875e03cb4 100644 --- a/holidays/locale/fr/LC_MESSAGES/CA.po +++ b/holidays/locale/fr/LC_MESSAGES/CA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Canada holidays fr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.32\n" +"Project-Id-Version: Holidays 0.32\n" "POT-Creation-Date: 2023-04-10 14:10+0300\n" "PO-Revision-Date: 2023-08-26 18:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/CG.po b/holidays/locale/fr/LC_MESSAGES/CG.po new file mode 100644 index 000000000..7007f6e86 --- /dev/null +++ b/holidays/locale/fr/LC_MESSAGES/CG.po @@ -0,0 +1,67 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Congo holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-04 18:14+0700\n" +"PO-Revision-Date: 2024-10-04 18:17+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Jour de l'An" +msgstr "" + +#. Easter Monday. +msgid "Lundi de Pâques" +msgstr "" + +#. Labor Day. +msgid "Fête du Travail" +msgstr "" + +#. Ascension Day. +msgid "Ascension" +msgstr "" + +#. Whit Monday. +msgid "Lundi de Pentecôte" +msgstr "" + +#. Reconciliation Day. +msgid "Fête de la Réconciliation" +msgstr "" + +#. National Day. +msgid "Fête Nationale" +msgstr "" + +#. All Saints' Day. +msgid "Toussaint" +msgstr "" + +#. Republic Day. +msgid "Jour de la République" +msgstr "" + +#. Christmas Day. +msgid "Noël" +msgstr "" diff --git a/holidays/locale/fr/LC_MESSAGES/CH.po b/holidays/locale/fr/LC_MESSAGES/CH.po index 2a1da1c99..275dd8572 100644 --- a/holidays/locale/fr/LC_MESSAGES/CH.po +++ b/holidays/locale/fr/LC_MESSAGES/CH.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Switzerland holidays fr localization. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-10 15:41+0300\n" "PO-Revision-Date: 2024-01-21 14:48+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/DJ.po b/holidays/locale/fr/LC_MESSAGES/DJ.po index bd219bf4a..eb54f3a23 100644 --- a/holidays/locale/fr/LC_MESSAGES/DJ.po +++ b/holidays/locale/fr/LC_MESSAGES/DJ.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Djibouti holidays. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-15 20:58+0300\n" "PO-Revision-Date: 2023-07-15 21:00+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/DZ.po b/holidays/locale/fr/LC_MESSAGES/DZ.po index eb3c71c01..637321e4d 100644 --- a/holidays/locale/fr/LC_MESSAGES/DZ.po +++ b/holidays/locale/fr/LC_MESSAGES/DZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Algeria holidays fr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.33\n" +"Project-Id-Version: Holidays 0.33\n" "POT-Creation-Date: 2023-06-28 00:13+0100\n" "PO-Revision-Date: 2023-09-12 15:08+0100\n" "Last-Translator: Abdelkhalek Boukli Hacene \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/FR.po b/holidays/locale/fr/LC_MESSAGES/FR.po index 3b13dafb4..77244e95d 100644 --- a/holidays/locale/fr/LC_MESSAGES/FR.po +++ b/holidays/locale/fr/LC_MESSAGES/FR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # France holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-23 14:44+0200\n" "PO-Revision-Date: 2023-03-23 14:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/LU.po b/holidays/locale/fr/LC_MESSAGES/LU.po index 7ebc31067..d6943f54a 100644 --- a/holidays/locale/fr/LC_MESSAGES/LU.po +++ b/holidays/locale/fr/LC_MESSAGES/LU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Luxembourg holidays fr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 18:57+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/MA.po b/holidays/locale/fr/LC_MESSAGES/MA.po index 926ecb7df..81c25fa1c 100644 --- a/holidays/locale/fr/LC_MESSAGES/MA.po +++ b/holidays/locale/fr/LC_MESSAGES/MA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Morocco holidays fr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-15 19:53+0300\n" "PO-Revision-Date: 2023-07-15 20:02+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr/LC_MESSAGES/MC.po b/holidays/locale/fr/LC_MESSAGES/MC.po index 9cbe1ec22..e8f18e99c 100644 --- a/holidays/locale/fr/LC_MESSAGES/MC.po +++ b/holidays/locale/fr/LC_MESSAGES/MC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Monaco holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2023-02-20 12:00+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/fr_HT/LC_MESSAGES/HT.po b/holidays/locale/fr_HT/LC_MESSAGES/HT.po index d62d4649c..885ddbb8f 100644 --- a/holidays/locale/fr_HT/LC_MESSAGES/HT.po +++ b/holidays/locale/fr_HT/LC_MESSAGES/HT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Haiti holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2024-08-19 13:57+0700\n" "PO-Revision-Date: 2024-08-20 10:00+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: fr_HT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/he/LC_MESSAGES/IL.po b/holidays/locale/he/LC_MESSAGES/IL.po index cfb1a9ea0..b7c661e31 100644 --- a/holidays/locale/he/LC_MESSAGES/IL.po +++ b/holidays/locale/he/LC_MESSAGES/IL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Israel holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2023-07-18 17:57+0300\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/hr/LC_MESSAGES/HR.po b/holidays/locale/hr/LC_MESSAGES/HR.po index a46c8c484..6bbbafa0c 100644 --- a/holidays/locale/hr/LC_MESSAGES/HR.po +++ b/holidays/locale/hr/LC_MESSAGES/HR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Croatia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-23 19:21+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ht/LC_MESSAGES/HT.po b/holidays/locale/ht/LC_MESSAGES/HT.po index b77a11c29..5dddab24d 100644 --- a/holidays/locale/ht/LC_MESSAGES/HT.po +++ b/holidays/locale/ht/LC_MESSAGES/HT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Haiti holidays ht localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.56\n" +"Project-Id-Version: Holidays 0.56\n" "POT-Creation-Date: 2024-08-19 13:57+0700\n" "PO-Revision-Date: 2024-08-20 10:00+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: ht\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/hu/LC_MESSAGES/HU.po b/holidays/locale/hu/LC_MESSAGES/HU.po index ae4dbad39..582130b01 100644 --- a/holidays/locale/hu/LC_MESSAGES/HU.po +++ b/holidays/locale/hu/LC_MESSAGES/HU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Hungary holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-06-12 19:06+0300\n" "PO-Revision-Date: 2023-11-10 22:14+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/hy/LC_MESSAGES/AM.po b/holidays/locale/hy/LC_MESSAGES/AM.po index 08ab1073e..e02c5f720 100644 --- a/holidays/locale/hy/LC_MESSAGES/AM.po +++ b/holidays/locale/hy/LC_MESSAGES/AM.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Armenia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-02-15 20:06-0800\n" "PO-Revision-Date: 2023-02-16 08:57-0800\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/id/LC_MESSAGES/ID.po b/holidays/locale/id/LC_MESSAGES/ID.po index 5983eba35..e2aff91e2 100644 --- a/holidays/locale/id/LC_MESSAGES/ID.po +++ b/holidays/locale/id/LC_MESSAGES/ID.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Indonesia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-23 14:09+0300\n" "PO-Revision-Date: 2023-07-23 14:12+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/is/LC_MESSAGES/IS.po b/holidays/locale/is/LC_MESSAGES/IS.po index dbc43c514..c3b540a1e 100644 --- a/holidays/locale/is/LC_MESSAGES/IS.po +++ b/holidays/locale/is/LC_MESSAGES/IS.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Iceland holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 14:31+0300\n" "PO-Revision-Date: 2023-04-09 14:31+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/it/LC_MESSAGES/CH.po b/holidays/locale/it/LC_MESSAGES/CH.po index cab3ddbe3..5e76fcb38 100644 --- a/holidays/locale/it/LC_MESSAGES/CH.po +++ b/holidays/locale/it/LC_MESSAGES/CH.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Switzerland holidays it localization. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-10 15:41+0300\n" "PO-Revision-Date: 2024-01-21 14:48+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ja/LC_MESSAGES/JP.po b/holidays/locale/ja/LC_MESSAGES/JP.po index fdf233f85..ef62c03cb 100644 --- a/holidays/locale/ja/LC_MESSAGES/JP.po +++ b/holidays/locale/ja/LC_MESSAGES/JP.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Japan holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-23 15:45+0300\n" "PO-Revision-Date: 2023-07-23 15:47+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ka/LC_MESSAGES/GE.po b/holidays/locale/ka/LC_MESSAGES/GE.po index c0c4cd04c..bb742a6b2 100644 --- a/holidays/locale/ka/LC_MESSAGES/GE.po +++ b/holidays/locale/ka/LC_MESSAGES/GE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Georgia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2024-05-23 11:01+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/kk/LC_MESSAGES/KZ.po b/holidays/locale/kk/LC_MESSAGES/KZ.po new file mode 100644 index 000000000..b49d8b848 --- /dev/null +++ b/holidays/locale/kk/LC_MESSAGES/KZ.po @@ -0,0 +1,103 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Kazakhstan holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-09-26 20:24+0300\n" +"PO-Revision-Date: 2024-09-26 20:28+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. %s (estimated). +#, c-format +msgid "%s (бағаланған)" +msgstr "" + +#. %s (observed). +#, c-format +msgid "%s (қайта белгіленген демалыс)" +msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "%s (қайта белгіленген демалыс, бағаланған)" +msgstr "" + +#. New Year's Day. +msgid "Жаңа жыл" +msgstr "" + +#. Orthodox Christmas. +msgid "Православиелік Рождество" +msgstr "" + +#. International Women's Day. +msgid "Халықаралық әйелдер күні" +msgstr "" + +#. Nowruz holiday. +msgid "Наурыз мейрамы" +msgstr "" + +#. Kazakhstan's People Solidarity Holiday. +msgid "Қазақстан халқының бірлігі мерекесі" +msgstr "" + +#. Defender of the Fatherland Day. +msgid "Отан Қорғаушы күні" +msgstr "" + +#. Victory Day. +msgid "Жеңіс күні" +msgstr "" + +#. Capital Day. +msgid "Астана күні" +msgstr "" + +#. Constitution Day. +msgid "Қазақстан Республикасының Конституциясы күні" +msgstr "" + +#. Republic Day. +msgid "Республика күні" +msgstr "" + +#. First President Day. +msgid "Қазақстан Республикасының Тұңғыш Президенті күні" +msgstr "" + +#. Independence Day. +msgid "Тəуелсіздік күні" +msgstr "" + +#. Eid al-Adha. +msgid "Құрбан айт" +msgstr "" + +#. Substituted date format. +msgid "%d.%m.%Y" +msgstr "" + +#. Day off (substituted from %s). +#, c-format +msgid "Демалыс күні (%s бастап ауыстырылды)" +msgstr "" diff --git a/holidays/locale/kl/LC_MESSAGES/GL.po b/holidays/locale/kl/LC_MESSAGES/GL.po index 89d11aaa6..2b2c3dda3 100644 --- a/holidays/locale/kl/LC_MESSAGES/GL.po +++ b/holidays/locale/kl/LC_MESSAGES/GL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greenland holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2024-05-30 16:36+0200\n" "Last-Translator: ~Klintrup \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: kl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/km/LC_MESSAGES/KH.po b/holidays/locale/km/LC_MESSAGES/KH.po index 4ab744204..07b825478 100644 --- a/holidays/locale/km/LC_MESSAGES/KH.po +++ b/holidays/locale/km/LC_MESSAGES/KH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cambodia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-07 20:10+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ko/LC_MESSAGES/KR.po b/holidays/locale/ko/LC_MESSAGES/KR.po index e1277a25f..2ba983203 100644 --- a/holidays/locale/ko/LC_MESSAGES/KR.po +++ b/holidays/locale/ko/LC_MESSAGES/KR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # South Korea holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-10-26 23:49+0700\n" "PO-Revision-Date: 2023-10-26 23:54+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/lb/LC_MESSAGES/LU.po b/holidays/locale/lb/LC_MESSAGES/LU.po index 6b8c337b9..7becc005d 100644 --- a/holidays/locale/lb/LC_MESSAGES/LU.po +++ b/holidays/locale/lb/LC_MESSAGES/LU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Luxembourg holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: lb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/lo/LC_MESSAGES/LA.po b/holidays/locale/lo/LC_MESSAGES/LA.po index 81fe7c8bb..77d2c838f 100644 --- a/holidays/locale/lo/LC_MESSAGES/LA.po +++ b/holidays/locale/lo/LC_MESSAGES/LA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Laos holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-09-11 15:10+0700\n" "PO-Revision-Date: 2023-11-16 20:47+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/lt/LC_MESSAGES/LT.po b/holidays/locale/lt/LC_MESSAGES/LT.po index e9012d874..2eb5cf4a4 100644 --- a/holidays/locale/lt/LC_MESSAGES/LT.po +++ b/holidays/locale/lt/LC_MESSAGES/LT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Lithuania holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:39+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/lv/LC_MESSAGES/LV.po b/holidays/locale/lv/LC_MESSAGES/LV.po index de754c76e..cbaf598cb 100644 --- a/holidays/locale/lv/LC_MESSAGES/LV.po +++ b/holidays/locale/lv/LC_MESSAGES/LV.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Latvia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:39+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/mg/LC_MESSAGES/MG.po b/holidays/locale/mg/LC_MESSAGES/MG.po index db00aec7a..07286271d 100644 --- a/holidays/locale/mg/LC_MESSAGES/MG.po +++ b/holidays/locale/mg/LC_MESSAGES/MG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Madagascar holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-25 17:39+0300\n" "PO-Revision-Date: 2023-06-25 17:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: mg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ms/LC_MESSAGES/BN.po b/holidays/locale/ms/LC_MESSAGES/BN.po index b67a5a6f3..0cc56b15f 100644 --- a/holidays/locale/ms/LC_MESSAGES/BN.po +++ b/holidays/locale/ms/LC_MESSAGES/BN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Brunei holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ms_MY/LC_MESSAGES/MY.po b/holidays/locale/ms_MY/LC_MESSAGES/MY.po index 2504d37a5..607bfca1f 100644 --- a/holidays/locale/ms_MY/LC_MESSAGES/MY.po +++ b/holidays/locale/ms_MY/LC_MESSAGES/MY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Malaysia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.49\n" +"Project-Id-Version: Holidays 0.49\n" "POT-Creation-Date: 2024-04-28 21:03+0300\n" "PO-Revision-Date: 2024-04-28 21:06+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: ms_MY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/mt/LC_MESSAGES/MT.po b/holidays/locale/mt/LC_MESSAGES/MT.po index fc8d58fc6..13323ca4d 100644 --- a/holidays/locale/mt/LC_MESSAGES/MT.po +++ b/holidays/locale/mt/LC_MESSAGES/MT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Malta holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 19:10+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: mt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/nl/LC_MESSAGES/AW.po b/holidays/locale/nl/LC_MESSAGES/AW.po index 4b1c7b9c5..403d1e569 100644 --- a/holidays/locale/nl/LC_MESSAGES/AW.po +++ b/holidays/locale/nl/LC_MESSAGES/AW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Aruba holidays nl localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-09 23:12+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/nl/LC_MESSAGES/BE.po b/holidays/locale/nl/LC_MESSAGES/BE.po index 092544243..6dd4cdabe 100644 --- a/holidays/locale/nl/LC_MESSAGES/BE.po +++ b/holidays/locale/nl/LC_MESSAGES/BE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belgium holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.33\n" +"Project-Id-Version: Holidays 0.33\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-09-06 20:46+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/nl/LC_MESSAGES/CW.po b/holidays/locale/nl/LC_MESSAGES/CW.po index 8772fd104..a4081a7fb 100644 --- a/holidays/locale/nl/LC_MESSAGES/CW.po +++ b/holidays/locale/nl/LC_MESSAGES/CW.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Curacao holidays nl localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-06-13 16:35+0700\n" -"PO-Revision-Date: \n" -"Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"PO-Revision-Date: 2024-10-05 22:08+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays localization team\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day msgid "Aña Nobo" @@ -78,3 +78,7 @@ msgstr "Kerst" #. Second Day of Christmas msgid "Di dos dia di Pasku di Nasementu" msgstr "Tweede kerstdag" + +#. New Year's Eve. +msgid "Vispu di Aña Nobo" +msgstr "Oudejaarsavond" diff --git a/holidays/locale/nl/LC_MESSAGES/NL.po b/holidays/locale/nl/LC_MESSAGES/NL.po index b257f7e14..e635a10ec 100644 --- a/holidays/locale/nl/LC_MESSAGES/NL.po +++ b/holidays/locale/nl/LC_MESSAGES/NL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Netherlands holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 18:11+0300\n" "PO-Revision-Date: 2023-04-09 18:13+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/no/LC_MESSAGES/NO.po b/holidays/locale/no/LC_MESSAGES/NO.po index 172f1c7f1..1abd6000f 100644 --- a/holidays/locale/no/LC_MESSAGES/NO.po +++ b/holidays/locale/no/LC_MESSAGES/NO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Norway holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 13:25+0300\n" "PO-Revision-Date: 2023-04-09 13:27+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: no\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pap_AW/LC_MESSAGES/AW.po b/holidays/locale/pap_AW/LC_MESSAGES/AW.po index 17253939d..3b712e4f9 100644 --- a/holidays/locale/pap_AW/LC_MESSAGES/AW.po +++ b/holidays/locale/pap_AW/LC_MESSAGES/AW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Aruba holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-09 23:12+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pap_AW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pap_CW/LC_MESSAGES/CW.po b/holidays/locale/pap_CW/LC_MESSAGES/CW.po index 039430bd5..328fc45bb 100644 --- a/holidays/locale/pap_CW/LC_MESSAGES/CW.po +++ b/holidays/locale/pap_CW/LC_MESSAGES/CW.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Curaçao holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-06-13 16:35+0700\n" -"PO-Revision-Date: \n" -"Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"PO-Revision-Date: 2024-10-05 22:07+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays localization team\n" "Language: pap_CW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day msgid "Aña Nobo" @@ -78,3 +78,7 @@ msgstr "" #. Second Day of Christmas msgid "Di dos dia di Pasku di Nasementu" msgstr "" + +#. New Year's Eve. +msgid "Vispu di Aña Nobo" +msgstr "" diff --git a/holidays/locale/pl/LC_MESSAGES/PL.po b/holidays/locale/pl/LC_MESSAGES/PL.po index 4571018f0..e260b6b60 100644 --- a/holidays/locale/pl/LC_MESSAGES/PL.po +++ b/holidays/locale/pl/LC_MESSAGES/PL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Poland holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2023-02-16 09:00-0800\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pot/UA.pot b/holidays/locale/pot/UA.pot index d89a1d0f1..31634f99b 100644 --- a/holidays/locale/pot/UA.pot +++ b/holidays/locale/pot/UA.pot @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE -# This file is distributed under the same license as the Python Holidays package. +# This file is distributed under the same license as the Holidays package. # FIRST AUTHOR , 2024. #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.55\n" +"Project-Id-Version: Holidays 0.55\n" "POT-Creation-Date: 2024-08-15 21:21+0300\n" "PO-Revision-Date: 2024-08-15 21:21+0300\n" "Last-Translator: FULL NAME \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pt_AO/LC_MESSAGES/AO.po b/holidays/locale/pt_AO/LC_MESSAGES/AO.po index 983a275c4..7ff2ccfb3 100644 --- a/holidays/locale/pt_AO/LC_MESSAGES/AO.po +++ b/holidays/locale/pt_AO/LC_MESSAGES/AO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Angola holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:17+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pt_AO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po b/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po index 23237f8a5..43eef38b7 100644 --- a/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po +++ b/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mozambique holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:22+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pt_MZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pt_PT/LC_MESSAGES/PT.po b/holidays/locale/pt_PT/LC_MESSAGES/PT.po index 9d18045ea..853e8f722 100644 --- a/holidays/locale/pt_PT/LC_MESSAGES/PT.po +++ b/holidays/locale/pt_PT/LC_MESSAGES/PT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Portugal holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-03-07 19:38+0700\n" "PO-Revision-Date: 2023-02-20 19:10+0200\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/pt_TL/LC_MESSAGES/TL.po b/holidays/locale/pt_TL/LC_MESSAGES/TL.po index c90b1d917..206db9829 100644 --- a/holidays/locale/pt_TL/LC_MESSAGES/TL.po +++ b/holidays/locale/pt_TL/LC_MESSAGES/TL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Timor-Leste holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.36\n" +"Project-Id-Version: Holidays 0.36\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2023-10-14 08:26+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: pt_TL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ro/LC_MESSAGES/MD.po b/holidays/locale/ro/LC_MESSAGES/MD.po index 0150c11d7..b4c9365ca 100644 --- a/holidays/locale/ro/LC_MESSAGES/MD.po +++ b/holidays/locale/ro/LC_MESSAGES/MD.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Moldova holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.46\n" +"Project-Id-Version: Holidays 0.46\n" "POT-Creation-Date: 2023-03-22 21:58+0200\n" "PO-Revision-Date: 2024-03-20 21:12+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ro/LC_MESSAGES/RO.po b/holidays/locale/ro/LC_MESSAGES/RO.po index 29673ba1d..9f918ee05 100644 --- a/holidays/locale/ro/LC_MESSAGES/RO.po +++ b/holidays/locale/ro/LC_MESSAGES/RO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Romania holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-22 18:35+0200\n" "PO-Revision-Date: 2023-03-22 21:28+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/ru/LC_MESSAGES/RU.po b/holidays/locale/ru/LC_MESSAGES/RU.po index 4a25052a3..8b9a5a3c5 100644 --- a/holidays/locale/ru/LC_MESSAGES/RU.po +++ b/holidays/locale/ru/LC_MESSAGES/RU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Russia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.29\n" +"Project-Id-Version: Holidays 0.29\n" "POT-Creation-Date: 2023-02-15 08:13-0800\n" "PO-Revision-Date: 2024-05-21 13:26+0700\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sk/LC_MESSAGES/CZ.po b/holidays/locale/sk/LC_MESSAGES/CZ.po index da6f8841f..7f09b0fe7 100644 --- a/holidays/locale/sk/LC_MESSAGES/CZ.po +++ b/holidays/locale/sk/LC_MESSAGES/CZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Czechia holidays sk localization. -# This file is distributed under the same license as the Python Holidays package. +# This file is distributed under the same license as the Holidays package. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.38\n" +"Project-Id-Version: Holidays 0.38\n" "POT-Creation-Date: 2023-11-24 00:14+0100\n" "PO-Revision-Date: 2023-11-24 00:17+0100\n" "Last-Translator: Jose Riha \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sk/LC_MESSAGES/SK.po b/holidays/locale/sk/LC_MESSAGES/SK.po index 69063f928..639b04106 100644 --- a/holidays/locale/sk/LC_MESSAGES/SK.po +++ b/holidays/locale/sk/LC_MESSAGES/SK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovakia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Holidays 0.25\n" "POT-Creation-Date: 2023-05-10 17:13+0300\n" "PO-Revision-Date: 2023-11-10 15:16+0100\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sl/LC_MESSAGES/SI.po b/holidays/locale/sl/LC_MESSAGES/SI.po index e858f2a3b..151fc32d4 100644 --- a/holidays/locale/sl/LC_MESSAGES/SI.po +++ b/holidays/locale/sl/LC_MESSAGES/SI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovenia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 13:41+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sr/LC_MESSAGES/BA.po b/holidays/locale/sr/LC_MESSAGES/BA.po index 1c431bb7c..37ebd05f1 100644 --- a/holidays/locale/sr/LC_MESSAGES/BA.po +++ b/holidays/locale/sr/LC_MESSAGES/BA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bosnia and Herzegovina holidays sr localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-26 18:31+0300\n" "PO-Revision-Date: 2023-06-26 18:46+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sr/LC_MESSAGES/RS.po b/holidays/locale/sr/LC_MESSAGES/RS.po index b0193c61d..eac8b09a7 100644 --- a/holidays/locale/sr/LC_MESSAGES/RS.po +++ b/holidays/locale/sr/LC_MESSAGES/RS.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Serbia holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" +"Project-Id-Version: Holidays 0.26\n" "POT-Creation-Date: 2023-02-15 15:18-0800\n" "PO-Revision-Date: 2023-02-16 09:01-0800\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sv/LC_MESSAGES/SE.po b/holidays/locale/sv/LC_MESSAGES/SE.po index 255a863f4..317fd92c0 100644 --- a/holidays/locale/sv/LC_MESSAGES/SE.po +++ b/holidays/locale/sv/LC_MESSAGES/SE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Sweden holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-08 20:17+0300\n" "PO-Revision-Date: 2023-04-08 20:22+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sv_FI/LC_MESSAGES/FI.po b/holidays/locale/sv_FI/LC_MESSAGES/FI.po index f20e0c596..f03c99606 100644 --- a/holidays/locale/sv_FI/LC_MESSAGES/FI.po +++ b/holidays/locale/sv_FI/LC_MESSAGES/FI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Finland holidays sv_FI localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.54\n" +"Project-Id-Version: Holidays 0.54\n" "POT-Creation-Date: 2023-04-08 19:30+0300\n" "PO-Revision-Date: 2024-07-26 17:42+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sv_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/sw/LC_MESSAGES/TZ.po b/holidays/locale/sw/LC_MESSAGES/TZ.po index ec503ea69..403dfdb71 100644 --- a/holidays/locale/sw/LC_MESSAGES/TZ.po +++ b/holidays/locale/sw/LC_MESSAGES/TZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tanzania holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Holidays 0.35\n" "POT-Creation-Date: 2023-10-07 15:05+0700\n" "PO-Revision-Date: 2023-10-07 15:16+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: sw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/tet/LC_MESSAGES/TL.po b/holidays/locale/tet/LC_MESSAGES/TL.po index dca77e104..9e3b5d650 100644 --- a/holidays/locale/tet/LC_MESSAGES/TL.po +++ b/holidays/locale/tet/LC_MESSAGES/TL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Timor-Leste holidays tet localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.36\n" +"Project-Id-Version: Holidays 0.36\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2023-10-14 08:29+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: tet\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/AU.po b/holidays/locale/th/LC_MESSAGES/AU.po index 0fb098784..771d37fc2 100644 --- a/holidays/locale/th/LC_MESSAGES/AU.po +++ b/holidays/locale/th/LC_MESSAGES/AU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Australia holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-09-05 12:21+0700\n" "PO-Revision-Date: 2024-09-05 12:31+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/BN.po b/holidays/locale/th/LC_MESSAGES/BN.po index ea0862050..527372157 100644 --- a/holidays/locale/th/LC_MESSAGES/BN.po +++ b/holidays/locale/th/LC_MESSAGES/BN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Brunei holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/CA.po b/holidays/locale/th/LC_MESSAGES/CA.po index a7d42a4d7..8916296e1 100644 --- a/holidays/locale/th/LC_MESSAGES/CA.po +++ b/holidays/locale/th/LC_MESSAGES/CA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Canada holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.32\n" +"Project-Id-Version: Holidays 0.32\n" "POT-Creation-Date: 2023-02-24 17:37+0700\n" "PO-Revision-Date: 2023-08-26 18:27+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/CN.po b/holidays/locale/th/LC_MESSAGES/CN.po index 154cd686b..ea9818008 100644 --- a/holidays/locale/th/LC_MESSAGES/CN.po +++ b/holidays/locale/th/LC_MESSAGES/CN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chinese holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" "PO-Revision-Date: 2024-01-18 11:42+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ msgstr "%d/%m/%Y" msgid "休息日(%s日起取代)" msgstr "วันหยุด (แทน %s)" -#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. 70th Anniversary of the Victory of the Chinese People's War of Resistance #. against Japanese #. Aggression and the World Anti-Fascist War. msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" diff --git a/holidays/locale/th/LC_MESSAGES/DE.po b/holidays/locale/th/LC_MESSAGES/DE.po index c40f4cbce..2cd20febf 100644 --- a/holidays/locale/th/LC_MESSAGES/DE.po +++ b/holidays/locale/th/LC_MESSAGES/DE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Germany holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.57\n" +"Project-Id-Version: Holidays 0.57\n" "POT-Creation-Date: 2024-09-05 23:21+0700\n" "PO-Revision-Date: 2024-09-05 23:23+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/JP.po b/holidays/locale/th/LC_MESSAGES/JP.po index 82640562c..bc609a724 100644 --- a/holidays/locale/th/LC_MESSAGES/JP.po +++ b/holidays/locale/th/LC_MESSAGES/JP.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Japan holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-09-11 10:20+0700\n" "PO-Revision-Date: 2023-11-10 11:20+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/KH.po b/holidays/locale/th/LC_MESSAGES/KH.po index 114501044..6b68ca9a8 100644 --- a/holidays/locale/th/LC_MESSAGES/KH.po +++ b/holidays/locale/th/LC_MESSAGES/KH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cambodia holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-07 20:10+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/KR.po b/holidays/locale/th/LC_MESSAGES/KR.po index 81e61274d..9005f8079 100644 --- a/holidays/locale/th/LC_MESSAGES/KR.po +++ b/holidays/locale/th/LC_MESSAGES/KR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # South Korea holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-10-26 23:49+0700\n" "PO-Revision-Date: 2023-10-26 23:54+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/LA.po b/holidays/locale/th/LC_MESSAGES/LA.po index 5893b8c79..aa2277f12 100644 --- a/holidays/locale/th/LC_MESSAGES/LA.po +++ b/holidays/locale/th/LC_MESSAGES/LA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Laos holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-09-11 15:10+0700\n" "PO-Revision-Date: 2023-11-16 20:48+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/MY.po b/holidays/locale/th/LC_MESSAGES/MY.po new file mode 100644 index 000000000..9b22bbce3 --- /dev/null +++ b/holidays/locale/th/LC_MESSAGES/MY.po @@ -0,0 +1,250 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Malaysia holidays th localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-01 15:58+0700\n" +"PO-Revision-Date: 2024-10-02 14:47+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.2\n" +"X-Generator: Poedit 3.5\n" + +#. %s (estimated). +#, c-format +msgid "%s (anggaran)" +msgstr "%s (โดยประมาณ)" + +#. %s (in lieu). +#, c-format +msgid "Cuti %s" +msgstr "ชดเชย%s" + +#. %s (observed, estimated). +#, c-format +msgid "Cuti %s (anggaran)" +msgstr "ชดเชย%s (โดยประมาณ)" + +#. Chinese New Year. +msgid "Tahun Baharu Cina" +msgstr "วันตรุษจีน" + +#. Chinese New Year (Second Day). +msgid "Tahun Baharu Cina (Hari Kedua)" +msgstr "วันตรุษจีนวันที่สอง" + +#. Vesak Day. +msgid "Hari Wesak" +msgstr "วันวิสาขบูชา" + +#. Labor Day. +msgid "Hari Pekerja" +msgstr "วันแรงงาน" + +#. Birthday of HM Yang di-Pertuan Agong. +msgid "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong" +msgstr "วันคล้ายวันพระราชสมภพสมเด็จพระราชาธิบดีแห่งมาเลเซีย" + +#. National Day. +msgid "Hari Kebangsaan" +msgstr "วันชาติมาเลเซีย" + +#. Malaysia Day. +msgid "Hari Malaysia" +msgstr "วันเฉลิมฉลองการจัดตั้งสหพันธรัฐมาเลเซีย" + +#. Christmas Day. +msgid "Hari Krismas" +msgstr "วันคริสต์มาส" + +#. Islamic New Year. +msgid "Awal Muharam" +msgstr "วันขึ้นปีใหม่อิสลาม" + +#. Prophet Muhammad's Birthday. +msgid "Hari Keputeraan Nabi Muhammad S.A.W." +msgstr "วันเมาลิดนบี" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "วันอีฎิ้ลฟิตริ" + +#. Eid al-Fitr (Second Day). +msgid "Hari Raya Puasa (Hari Kedua)" +msgstr "วันอีฎิ้ลฟิตริวันที่สอง" + +#. Eid al-Adha. +msgid "Hari Raya Qurban" +msgstr "วันอีดิ้ลอัฎฮา" + +#. Deepavali. +msgid "Hari Deepavali" +msgstr "วันดีปาวลี" + +#. Thaipusam. +msgid "Hari Thaipusam" +msgstr "วันไทปูซัม" + +#. Birthday of the Sultan of Johor. +msgid "Hari Keputeraan Sultan Johor" +msgstr "วันคล้ายวันพระราชสมภพสุลต่านแห่งรัฐยะโฮร์" + +#. The Sultan of Johor Hol. +msgid "Hari Hol Almarhum Sultan Iskandar" +msgstr "วันคล้ายวันสวรรคตสุลต่านแห่งรัฐยะโฮร์องค์ก่อน" + +#. Beginning of Ramadan. +msgid "Awal Ramadan" +msgstr "วันแรกการถือศีลอด" + +#. Birthday of The Sultan of Kedah. +msgid "Hari Keputeraan Sultan Kedah" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐเกดะห์" + +#. Isra' and Mi'raj. +msgid "Israk dan Mikraj" +msgstr "วันเมี๊ยะราจ" + +#. Eid al-Adha (Second Day). +msgid "Hari Raya Qurban (Hari Kedua)" +msgstr "วันอีดิ้ลอัฎฮาวันที่สอง" + +#. Birthday of the Sultan of Kelantan. +msgid "Hari Keputeraan Sultan Kelantan" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐกลันตัน" + +#. Nuzul Al-Quran Day. +msgid "Hari Nuzul Al-Quran" +msgstr "วันนูซุลอัลกุรอาน" + +#. New Year's Day. +msgid "Tahun Baharu" +msgstr "วันขึ้นปีใหม่" + +#. Federal Territory Day. +msgid "Hari Wilayah Persekutuan" +msgstr "วันเขตสหพันธรัฐ" + +#. Pesta Kaamatan. +msgid "Pesta Kaamatan" +msgstr "เทศกาลกามะตัน" + +#. Declaration of Independence Day. +msgid "Hari Pengisytiharan Tarikh Kemerdekaan" +msgstr "วันรำลึกการประกาศอิสรภาพ" + +#. Declaration of Malacca as a Historical City. +msgid "Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah" +msgstr "วันรำลึกการประกาศมะละกาเป็นเมืองประวัติศาสตร์" + +#. Birthday of the Governor of Malacca. +msgid "Hari Jadi Yang di-Pertua Negeri Melaka" +msgstr "วันคล้ายวันเกิดผู้ว่าการรัฐมะละกา" + +#. Birthday of the Sultan of Negeri Sembilan. +msgid "Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐเนเกรีเซมบิลัน" + +#. The Sultan of Pahang Hol. +msgid "Hari Hol Sultan Pahang" +msgstr "วันคล้ายวันสิ้นพระชนม์สุลต่านแห่งรัฐปะหังองค์ก่อน" + +#. Birthday of the Sultan of Pahang. +msgid "Hari Keputeraan Sultan Pahang" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐปะหัง" + +#. Birthday of the Raja of Perlis. +msgid "Hari Ulang Tahun Keputeraan Raja Perlis" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐปะลิส" + +#. George Town Heritage Day. +msgid "Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia" +msgstr "วันครบรอบการประกาศจอร์จทาวน์เป็นมรดกโลก" + +#. Birthday of the Governor of Penang. +msgid "Hari Jadi Yang di-Pertua Negeri Pulau Pinang" +msgstr "วันคล้ายวันเกิดผู้ว่าการรัฐปีนัง" + +#. Birthday of the Sultan of Perak. +msgid "Hari Keputeraan Sultan Perak" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐเประก์" + +#. Good Friday. +msgid "Good Friday" +msgstr "วันศุกร์ประเสริฐ" + +#. Birthday of the Governor of Sabah. +msgid "Hari Jadi Yang di-Pertua Negeri Sabah" +msgstr "วันคล้ายวันเกิดผู้ว่าการรัฐซาบาห์" + +#. Christmas Eve. +msgid "Christmas Eve" +msgstr "วันคริสต์มาสอีฟ" + +#. Birthday of The Sultan of Selangor. +msgid "Hari Keputeraan Sultan Selangor" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐสลังงอร์" + +#. Dayak Festival Day. +msgid "Perayaan Hari Gawai Dayak" +msgstr "วันเทศกาลกาไวดายัค" + +#. Birthday of the Governor of Sarawak. +msgid "Hari Jadi Yang di-Pertua Negeri Sarawak" +msgstr "วันคล้ายวันเกิดผู้ว่าการรัฐซาราวัก" + +#. Sarawak Independence Day. +msgid "Hari Kemerdekaan Sarawak" +msgstr "วันประกาศเอกราชรัฐซาราวัก" + +#. Anniversary of the Installation of the Sultan of Terengganu. +msgid "Hari Ulang Tahun Pertabalan Sultan Terengganu" +msgstr "วันครบรอบพระราชพิธีสถาปนาสุลต่านแห่งรัฐตรังกานู" + +#. Birthday of the Sultan of Terengganu. +msgid "Hari Keputeraan Sultan Terengganu" +msgstr "วันคล้ายวันประสูติสุลต่านแห่งรัฐตรังกานู" + +#. Arafat Day. +msgid "Hari Arafah" +msgstr "วันอารอฟะห์" + +#. General election additional holiday. +msgid "Cuti Peristiwa (pilihan raya umum)" +msgstr "วันหยุดพิเศษ (การเลือกตั้งทั่วไป)" + +#. Malaysia Cup Holiday. +msgid "Cuti Piala Malaysia" +msgstr "วันหยุดพิเศษการแข่งขันฟุตบอลมาเลเซียคัพ" + +#. Day of Installation of the 15th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-15" +msgstr "พระราชพิธีสถาปนาสมเด็จพระราชาธิบดีแห่งมาเลเซีย องค์ที่ 15" + +#. Day of Installation of the 16th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-16" +msgstr "พระราชพิธีสถาปนาสมเด็จพระราชาธิบดีแห่งมาเลเซีย องค์ที่ 16" + +#. Eid al-Fitr (additional holiday). +msgid "Hari Raya Puasa (pergantian hari)" +msgstr "วันอีฎิ้ลฟิตริ (เพิ่มเติม)" + +#. Additional holiday in commemoration of the 2017 SEA Games. +msgid "Cuti tambahan sempena memperingati SAT 2017" +msgstr "วันหยุดเพิ่มเติมเนื่องในโอกาสการแข่งขันกีฬาซีเกมส์ปี 2017" diff --git a/holidays/locale/th/LC_MESSAGES/SE.po b/holidays/locale/th/LC_MESSAGES/SE.po new file mode 100644 index 000000000..32ef20edf --- /dev/null +++ b/holidays/locale/th/LC_MESSAGES/SE.po @@ -0,0 +1,104 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Sweden holidays th localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-01 14:12+0700\n" +"PO-Revision-Date: 2024-10-01 14:12+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Nyårsdagen" +msgstr "วันขึ้นปีใหม่" + +#. Epiphany. +msgid "Trettondedag jul" +msgstr "วันสมโภชพระคริสต์แสดงองค์" + +#. Feast of the Annunciation. +msgid "Jungfru Marie bebådelsedag" +msgstr "วันสมโภชแม่พระรับสาร" + +#. Good Friday. +msgid "Långfredagen" +msgstr "วันศุกร์ประเสริฐ" + +#. Easter Sunday. +msgid "Påskdagen" +msgstr "วันอาทิตย์อีสเตอร์" + +#. Easter Monday. +msgid "Annandag påsk" +msgstr "วันจันทร์อีสเตอร์" + +#. May Day. +msgid "Första maj" +msgstr "วันเมย์เดย์ (วันแรงงาน)" + +#. Ascension Day. +msgid "Kristi himmelsfärdsdag" +msgstr "วันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์" + +#. National Day of Sweden. +msgid "Sveriges nationaldag" +msgstr "วันชาติสวีเดน" + +#. Whit Sunday. +msgid "Pingstdagen" +msgstr "วันสมโภชพระจิตเจ้า" + +#. Whit Monday. +msgid "Annandag pingst" +msgstr "วันจันทร์หลังวันสมโภชพระจิตเจ้า" + +#. Midsummer Eve. +msgid "Midsommarafton" +msgstr "วันก่อนวันกลางฤดูร้อน" + +#. Midsummer Day. +msgid "Midsommardagen" +msgstr "วันกลางฤดูร้อน" + +#. All Saints' Day. +msgid "Alla helgons dag" +msgstr "วันสมโภชนักบุญทั้งหลาย" + +#. Christmas Eve. +msgid "Julafton" +msgstr "วันคริสต์มาสอีฟ" + +#. Christmas Day. +msgid "Juldagen" +msgstr "วันคริสต์มาส" + +#. Second Day of Christmas. +msgid "Annandag jul" +msgstr "วันคริสต์มาสวันที่สอง" + +#. New Year's Eve. +msgid "Nyårsafton" +msgstr "วันสิ้นปี" + +#. Sunday. +msgid "Söndag" +msgstr "วันอาทิตย์" diff --git a/holidays/locale/th/LC_MESSAGES/SG.po b/holidays/locale/th/LC_MESSAGES/SG.po new file mode 100644 index 000000000..f55fb2e3c --- /dev/null +++ b/holidays/locale/th/LC_MESSAGES/SG.po @@ -0,0 +1,98 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Singapore holidays th localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-10-02 15:30+0700\n" +"PO-Revision-Date: 2024-10-02 16:06+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Holidays Localization Team\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.3\n" +"X-Generator: Poedit 3.5\n" + +#. %s (observed). +#, c-format +msgid "%s (observed)" +msgstr "ชดเชย%s" + +#. New Year's Day. +msgid "New Year's Day" +msgstr "วันขึ้นปีใหม่" + +#. Chinese New Year. +msgid "Chinese New Year" +msgstr "วันตรุษจีน" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "วันอีฎิ้ลฟิตริ" + +#. Second Day of Eid al-Fitr. +msgid "Second Day of Hari Raya Puasa" +msgstr "วันอีฎิ้ลฟิตริวันที่สอง" + +#. Eid al-Adha. +msgid "Hari Raya Haji" +msgstr "วันอีดิ้ลอัฎฮา" + +#. Good Friday. +msgid "Good Friday" +msgstr "วันศุกร์ประเสริฐ" + +#. Holy Saturday. +msgid "Holy Saturday" +msgstr "วันเสาร์ศักดิ์สิทธิ์" + +#. Easter Monday. +msgid "Easter Monday" +msgstr "วันจันทร์อีสเตอร์" + +#. Labor Day. +msgid "Labour Day" +msgstr "วันแรงงาน" + +#. Vesak Day. +#. type: ignore[arg-type] +msgid "Vesak Day" +msgstr "วันวิสาขบูชา" + +#. National Day. +msgid "National Day" +msgstr "วันชาติสิงคโปร์" + +#. Deepavali. +#. type: ignore[arg-type] +msgid "Deepavali" +msgstr "วันดีปาวลี" + +#. Christmas Day. +msgid "Christmas Day" +msgstr "วันคริสต์มาส" + +#. Boxing day. +msgid "Boxing Day" +msgstr "วันเปิดกล่องของขวัญ" + +#. Polling Day. +msgid "Polling Day" +msgstr "วันเลือกตั้ง" + +#. SG50 Public Holiday. +msgid "SG50 Public Holiday" +msgstr "วันครบรอบ 50 ปีการประกาศเอกราชสิงค์โปร์" diff --git a/holidays/locale/th/LC_MESSAGES/TH.po b/holidays/locale/th/LC_MESSAGES/TH.po index 2a36c3caa..18d13f229 100644 --- a/holidays/locale/th/LC_MESSAGES/TH.po +++ b/holidays/locale/th/LC_MESSAGES/TH.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Thailand holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: 2023-11-30 21:09+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/th/LC_MESSAGES/TW.po b/holidays/locale/th/LC_MESSAGES/TW.po index aec48d656..0be28fb21 100644 --- a/holidays/locale/th/LC_MESSAGES/TW.po +++ b/holidays/locale/th/LC_MESSAGES/TW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Taiwan holidays th localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.43\n" +"Project-Id-Version: Holidays 0.43\n" "POT-Creation-Date: 2023-11-24 16:16+0700\n" "PO-Revision-Date: 2024-02-07 19:37+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/to/LC_MESSAGES/TO.po b/holidays/locale/to/LC_MESSAGES/TO.po index 811e9e195..23cbecbbf 100644 --- a/holidays/locale/to/LC_MESSAGES/TO.po +++ b/holidays/locale/to/LC_MESSAGES/TO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Tonga holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-10-24 19:30+0700\n" "PO-Revision-Date: 2023-10-24 19:38+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: to\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/tr/LC_MESSAGES/TR.po b/holidays/locale/tr/LC_MESSAGES/TR.po index 40574722b..cbf685417 100644 --- a/holidays/locale/tr/LC_MESSAGES/TR.po +++ b/holidays/locale/tr/LC_MESSAGES/TR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Turkey holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-11-12 18:52+0200\n" "PO-Revision-Date: 2023-11-14 12:53+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/AO.po b/holidays/locale/uk/LC_MESSAGES/AO.po index 9a1d0154d..ab7715c58 100644 --- a/holidays/locale/uk/LC_MESSAGES/AO.po +++ b/holidays/locale/uk/LC_MESSAGES/AO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Angola holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:30+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/AR.po b/holidays/locale/uk/LC_MESSAGES/AR.po index 692113bb0..d78bad761 100644 --- a/holidays/locale/uk/LC_MESSAGES/AR.po +++ b/holidays/locale/uk/LC_MESSAGES/AR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Argentina holidays Ukrainian translation. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2024-01-15 18:59+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/AT.po b/holidays/locale/uk/LC_MESSAGES/AT.po index a2ebe20dc..c56218a87 100644 --- a/holidays/locale/uk/LC_MESSAGES/AT.po +++ b/holidays/locale/uk/LC_MESSAGES/AT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Austria holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-01 17:13+0300\n" "PO-Revision-Date: 2023-04-01 17:27+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/AW.po b/holidays/locale/uk/LC_MESSAGES/AW.po index 16109fd44..a6025f295 100644 --- a/holidays/locale/uk/LC_MESSAGES/AW.po +++ b/holidays/locale/uk/LC_MESSAGES/AW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Aruba holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.27\n" "POT-Creation-Date: 2023-06-09 23:12+0700\n" "PO-Revision-Date: \n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/AZ.po b/holidays/locale/uk/LC_MESSAGES/AZ.po index 521862efa..bcc0e474c 100644 --- a/holidays/locale/uk/LC_MESSAGES/AZ.po +++ b/holidays/locale/uk/LC_MESSAGES/AZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Azerbaijan holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:55+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/BA.po b/holidays/locale/uk/LC_MESSAGES/BA.po index c2d90198e..59e0a0f7c 100644 --- a/holidays/locale/uk/LC_MESSAGES/BA.po +++ b/holidays/locale/uk/LC_MESSAGES/BA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bosnia and Herzegovina holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-26 18:31+0300\n" "PO-Revision-Date: 2023-06-26 18:59+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/BE.po b/holidays/locale/uk/LC_MESSAGES/BE.po index d5ae4b03e..50e2e2af0 100644 --- a/holidays/locale/uk/LC_MESSAGES/BE.po +++ b/holidays/locale/uk/LC_MESSAGES/BE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Belgium holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.33\n" +"Project-Id-Version: Holidays 0.33\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-09-06 20:53+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/BG.po b/holidays/locale/uk/LC_MESSAGES/BG.po index 37a67f761..e7ec9a043 100644 --- a/holidays/locale/uk/LC_MESSAGES/BG.po +++ b/holidays/locale/uk/LC_MESSAGES/BG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bulgaria holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-30 20:48+0300\n" "PO-Revision-Date: 2023-06-30 21:19+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/BO.po b/holidays/locale/uk/LC_MESSAGES/BO.po index 17199d30d..de18ef3b8 100644 --- a/holidays/locale/uk/LC_MESSAGES/BO.po +++ b/holidays/locale/uk/LC_MESSAGES/BO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Bolivia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:59+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CH.po b/holidays/locale/uk/LC_MESSAGES/CH.po index 00e6f28f4..de0e8493e 100644 --- a/holidays/locale/uk/LC_MESSAGES/CH.po +++ b/holidays/locale/uk/LC_MESSAGES/CH.po @@ -7,17 +7,17 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Switzerland holidays uk localization. msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-10 15:41+0300\n" "PO-Revision-Date: 2024-01-21 14:49+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CL.po b/holidays/locale/uk/LC_MESSAGES/CL.po index 8cde14c60..7764d28a7 100644 --- a/holidays/locale/uk/LC_MESSAGES/CL.po +++ b/holidays/locale/uk/LC_MESSAGES/CL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chile holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.53\n" +"Project-Id-Version: Holidays 0.53\n" "POT-Creation-Date: 2023-02-28 16:42+0200\n" "PO-Revision-Date: 2024-07-08 17:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CO.po b/holidays/locale/uk/LC_MESSAGES/CO.po index 515686840..29896cd33 100644 --- a/holidays/locale/uk/LC_MESSAGES/CO.po +++ b/holidays/locale/uk/LC_MESSAGES/CO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Colombia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-01 15:30-0800\n" "PO-Revision-Date: 2023-05-03 18:38-0700\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CR.po b/holidays/locale/uk/LC_MESSAGES/CR.po index 6d6b4eb5b..7a067718d 100644 --- a/holidays/locale/uk/LC_MESSAGES/CR.po +++ b/holidays/locale/uk/LC_MESSAGES/CR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Costa Rica holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2023-05-03 18:42-0700\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CU.po b/holidays/locale/uk/LC_MESSAGES/CU.po index 9ca564739..fa60ec9b0 100644 --- a/holidays/locale/uk/LC_MESSAGES/CU.po +++ b/holidays/locale/uk/LC_MESSAGES/CU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cuba holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-04 14:20+0200\n" "PO-Revision-Date: 2023-03-05 13:11+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CW.po b/holidays/locale/uk/LC_MESSAGES/CW.po index 48cd30852..9f3ac4353 100644 --- a/holidays/locale/uk/LC_MESSAGES/CW.po +++ b/holidays/locale/uk/LC_MESSAGES/CW.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Curacao holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-06-13 16:35+0700\n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2024-10-05 22:09+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day msgid "Aña Nobo" @@ -78,3 +78,7 @@ msgstr "Різдво Христове" #. Second Day of Christmas msgid "Di dos dia di Pasku di Nasementu" msgstr "Другий день Різдва" + +#. New Year's Eve. +msgid "Vispu di Aña Nobo" +msgstr "Переддень Нового року" diff --git a/holidays/locale/uk/LC_MESSAGES/CY.po b/holidays/locale/uk/LC_MESSAGES/CY.po index 782b45767..3dd4f0785 100644 --- a/holidays/locale/uk/LC_MESSAGES/CY.po +++ b/holidays/locale/uk/LC_MESSAGES/CY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Cyprus holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" "PO-Revision-Date: 2024-01-05 14:18+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/CZ.po b/holidays/locale/uk/LC_MESSAGES/CZ.po index df88c8fef..6d2d762e2 100644 --- a/holidays/locale/uk/LC_MESSAGES/CZ.po +++ b/holidays/locale/uk/LC_MESSAGES/CZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Czechia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 16:11+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/DE.po b/holidays/locale/uk/LC_MESSAGES/DE.po index 2f35ceeea..a19313a8d 100644 --- a/holidays/locale/uk/LC_MESSAGES/DE.po +++ b/holidays/locale/uk/LC_MESSAGES/DE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Germany holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-04 16:13+0300\n" "PO-Revision-Date: 2023-04-09 18:42+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/DK.po b/holidays/locale/uk/LC_MESSAGES/DK.po index 14fd7093b..9dee6f495 100644 --- a/holidays/locale/uk/LC_MESSAGES/DK.po +++ b/holidays/locale/uk/LC_MESSAGES/DK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Denmark holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-04-09 13:45+0300\n" "PO-Revision-Date: 2023-11-12 16:36+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/DO.po b/holidays/locale/uk/LC_MESSAGES/DO.po index 4d85f014a..d06d8e138 100644 --- a/holidays/locale/uk/LC_MESSAGES/DO.po +++ b/holidays/locale/uk/LC_MESSAGES/DO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Dominican Republic holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2023-03-05 14:05+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/EC.po b/holidays/locale/uk/LC_MESSAGES/EC.po index 50b165785..70095535d 100644 --- a/holidays/locale/uk/LC_MESSAGES/EC.po +++ b/holidays/locale/uk/LC_MESSAGES/EC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ecuador holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2023-04-02 19:02+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/EE.po b/holidays/locale/uk/LC_MESSAGES/EE.po index 620ac4e92..1742fb41b 100644 --- a/holidays/locale/uk/LC_MESSAGES/EE.po +++ b/holidays/locale/uk/LC_MESSAGES/EE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Estonia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 16:16+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/ES.po b/holidays/locale/uk/LC_MESSAGES/ES.po index 2c9c4acb1..345d98fbe 100644 --- a/holidays/locale/uk/LC_MESSAGES/ES.po +++ b/holidays/locale/uk/LC_MESSAGES/ES.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Spain holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.40\n" +"Project-Id-Version: Holidays 0.40\n" "POT-Creation-Date: 2023-12-26 19:23+0200\n" "PO-Revision-Date: 2023-12-26 19:58+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/FI.po b/holidays/locale/uk/LC_MESSAGES/FI.po index 5c7401fbe..e80224819 100644 --- a/holidays/locale/uk/LC_MESSAGES/FI.po +++ b/holidays/locale/uk/LC_MESSAGES/FI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Finland holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.54\n" +"Project-Id-Version: Holidays 0.54\n" "POT-Creation-Date: 2023-04-08 19:30+0300\n" "PO-Revision-Date: 2024-07-26 17:41+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/FR.po b/holidays/locale/uk/LC_MESSAGES/FR.po index a6b1f9bf5..20d88a00b 100644 --- a/holidays/locale/uk/LC_MESSAGES/FR.po +++ b/holidays/locale/uk/LC_MESSAGES/FR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # France holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-03-23 14:44+0200\n" "PO-Revision-Date: 2024-01-23 20:54+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/GE.po b/holidays/locale/uk/LC_MESSAGES/GE.po index 8b9cbd79b..0a72d0812 100644 --- a/holidays/locale/uk/LC_MESSAGES/GE.po +++ b/holidays/locale/uk/LC_MESSAGES/GE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Georgia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.50\n" +"Project-Id-Version: Holidays 0.50\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2024-05-23 11:01+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/GR.po b/holidays/locale/uk/LC_MESSAGES/GR.po index 796be9dda..78f0366a2 100644 --- a/holidays/locale/uk/LC_MESSAGES/GR.po +++ b/holidays/locale/uk/LC_MESSAGES/GR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Greece holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-27 18:57+0300\n" "PO-Revision-Date: 2023-07-27 19:16+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/HN.po b/holidays/locale/uk/LC_MESSAGES/HN.po index 295778bb4..6ec5da25a 100644 --- a/holidays/locale/uk/LC_MESSAGES/HN.po +++ b/holidays/locale/uk/LC_MESSAGES/HN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Honduras holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Holidays 0.25\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2023-03-05 13:31+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/HR.po b/holidays/locale/uk/LC_MESSAGES/HR.po index 291d7f04e..6afd07030 100644 --- a/holidays/locale/uk/LC_MESSAGES/HR.po +++ b/holidays/locale/uk/LC_MESSAGES/HR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Croatia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-01-23 19:22+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/HU.po b/holidays/locale/uk/LC_MESSAGES/HU.po index eb1910f59..b8bf20fb1 100644 --- a/holidays/locale/uk/LC_MESSAGES/HU.po +++ b/holidays/locale/uk/LC_MESSAGES/HU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Hungary holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-06-12 19:06+0300\n" "PO-Revision-Date: 2023-11-10 22:16+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/ID.po b/holidays/locale/uk/LC_MESSAGES/ID.po index 92dc0a027..93153d29d 100644 --- a/holidays/locale/uk/LC_MESSAGES/ID.po +++ b/holidays/locale/uk/LC_MESSAGES/ID.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Indonesia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-23 14:09+0300\n" "PO-Revision-Date: 2023-07-23 14:28+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/IL.po b/holidays/locale/uk/LC_MESSAGES/IL.po index 9c44fa222..2346e1245 100644 --- a/holidays/locale/uk/LC_MESSAGES/IL.po +++ b/holidays/locale/uk/LC_MESSAGES/IL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Israel holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Holidays 0.39\n" "POT-Creation-Date: 2023-07-18 17:31+0300\n" "PO-Revision-Date: 2023-07-18 17:57+0300\n" "Last-Translator: Arkadii Yakovets \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/IS.po b/holidays/locale/uk/LC_MESSAGES/IS.po index 3ea900559..5d3efa9ac 100644 --- a/holidays/locale/uk/LC_MESSAGES/IS.po +++ b/holidays/locale/uk/LC_MESSAGES/IS.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Iceland holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 14:31+0300\n" "PO-Revision-Date: 2023-04-09 14:32+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/KZ.po b/holidays/locale/uk/LC_MESSAGES/KZ.po new file mode 100644 index 000000000..0860c5d57 --- /dev/null +++ b/holidays/locale/uk/LC_MESSAGES/KZ.po @@ -0,0 +1,103 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Kazakhstan holidays uk localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-09-26 20:24+0300\n" +"PO-Revision-Date: 2024-09-26 20:33+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. %s (estimated). +#, c-format +msgid "%s (бағаланған)" +msgstr "%s (приблизна дата)" + +#. %s (observed). +#, c-format +msgid "%s (қайта белгіленген демалыс)" +msgstr "%s (вихідний)" + +#. %s (observed, estimated). +#, c-format +msgid "%s (қайта белгіленген демалыс, бағаланған)" +msgstr "%s (вихідний, приблизна дата)" + +#. New Year's Day. +msgid "Жаңа жыл" +msgstr "Новий рік" + +#. Orthodox Christmas. +msgid "Православиелік Рождество" +msgstr "Православне Різдво" + +#. International Women's Day. +msgid "Халықаралық әйелдер күні" +msgstr "Міжнародний жіночий день" + +#. Nowruz holiday. +msgid "Наурыз мейрамы" +msgstr "Свято Новруз" + +#. Kazakhstan's People Solidarity Holiday. +msgid "Қазақстан халқының бірлігі мерекесі" +msgstr "Свято єдності народу Казахстану" + +#. Defender of the Fatherland Day. +msgid "Отан Қорғаушы күні" +msgstr "День захисника Вітчизни" + +#. Victory Day. +msgid "Жеңіс күні" +msgstr "День Перемоги" + +#. Capital Day. +msgid "Астана күні" +msgstr "День Столиці" + +#. Constitution Day. +msgid "Қазақстан Республикасының Конституциясы күні" +msgstr "День Конституції Республіки Казахстан" + +#. Republic Day. +msgid "Республика күні" +msgstr "День Республіки" + +#. First President Day. +msgid "Қазақстан Республикасының Тұңғыш Президенті күні" +msgstr "День першого президента Республіки Казахстан" + +#. Independence Day. +msgid "Тəуелсіздік күні" +msgstr "День незалежності" + +#. Eid al-Adha. +msgid "Құрбан айт" +msgstr "Курбан-байрам" + +#. Substituted date format. +msgid "%d.%m.%Y" +msgstr "%d.%m.%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "Демалыс күні (%s бастап ауыстырылды)" +msgstr "Вихідний день (перенесено з %s)" diff --git a/holidays/locale/uk/LC_MESSAGES/LI.po b/holidays/locale/uk/LC_MESSAGES/LI.po index f4ffd997d..af02faaae 100644 --- a/holidays/locale/uk/LC_MESSAGES/LI.po +++ b/holidays/locale/uk/LC_MESSAGES/LI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Liechtenstein holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-04-01 18:49+0300\n" "PO-Revision-Date: 2024-01-25 21:17+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/LT.po b/holidays/locale/uk/LC_MESSAGES/LT.po index 1bf761ed9..2b0227e47 100644 --- a/holidays/locale/uk/LC_MESSAGES/LT.po +++ b/holidays/locale/uk/LC_MESSAGES/LT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Lithuania holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.44\n" +"Project-Id-Version: Holidays 0.44\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2024-03-01 15:04+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/LU.po b/holidays/locale/uk/LC_MESSAGES/LU.po index 77506f41c..496f3399d 100644 --- a/holidays/locale/uk/LC_MESSAGES/LU.po +++ b/holidays/locale/uk/LC_MESSAGES/LU.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Luxembourg holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 17:06+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/LV.po b/holidays/locale/uk/LC_MESSAGES/LV.po index f69bc0e8b..c915501e5 100644 --- a/holidays/locale/uk/LC_MESSAGES/LV.po +++ b/holidays/locale/uk/LC_MESSAGES/LV.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Latvia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 16:59+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/MC.po b/holidays/locale/uk/LC_MESSAGES/MC.po index 74091daa1..5fec72b3a 100644 --- a/holidays/locale/uk/LC_MESSAGES/MC.po +++ b/holidays/locale/uk/LC_MESSAGES/MC.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Monaco holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2024-01-02 18:34+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/MD.po b/holidays/locale/uk/LC_MESSAGES/MD.po index eb0aea922..f658540bd 100644 --- a/holidays/locale/uk/LC_MESSAGES/MD.po +++ b/holidays/locale/uk/LC_MESSAGES/MD.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Moldova holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.46\n" +"Project-Id-Version: Holidays 0.46\n" "POT-Creation-Date: 2023-03-22 21:58+0200\n" "PO-Revision-Date: 2024-03-20 21:12+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/MG.po b/holidays/locale/uk/LC_MESSAGES/MG.po index 37b5de68b..c58664040 100644 --- a/holidays/locale/uk/LC_MESSAGES/MG.po +++ b/holidays/locale/uk/LC_MESSAGES/MG.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Madagascar holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-25 17:39+0300\n" "PO-Revision-Date: 2023-06-25 17:51+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/MX.po b/holidays/locale/uk/LC_MESSAGES/MX.po index 8ea5ff93c..3e9d26cb8 100644 --- a/holidays/locale/uk/LC_MESSAGES/MX.po +++ b/holidays/locale/uk/LC_MESSAGES/MX.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mexico holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2023-03-05 14:07+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/MZ.po b/holidays/locale/uk/LC_MESSAGES/MZ.po index b67eaedc4..c874b27a3 100644 --- a/holidays/locale/uk/LC_MESSAGES/MZ.po +++ b/holidays/locale/uk/LC_MESSAGES/MZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Mozambique holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:30+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/NI.po b/holidays/locale/uk/LC_MESSAGES/NI.po index b1c256792..1be0a45e8 100644 --- a/holidays/locale/uk/LC_MESSAGES/NI.po +++ b/holidays/locale/uk/LC_MESSAGES/NI.po @@ -7,25 +7,25 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Nicaragua holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Holidays 0.58\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" -"PO-Revision-Date: 2023-06-14 18:50+0300\n" +"PO-Revision-Date: 2024-09-21 17:40+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.5\n" #. New Year's Day. msgid "Año Nuevo" @@ -43,6 +43,10 @@ msgstr "Страсна пʼятниця" msgid "Día del Trabajo" msgstr "День праці" +#. Mother's Day. +msgid "Día de la Madre" +msgstr "День матері" + #. Revolution Day. msgid "Día de la Revolución" msgstr "День революції" diff --git a/holidays/locale/uk/LC_MESSAGES/NL.po b/holidays/locale/uk/LC_MESSAGES/NL.po index abdef28dc..f159af697 100644 --- a/holidays/locale/uk/LC_MESSAGES/NL.po +++ b/holidays/locale/uk/LC_MESSAGES/NL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Netherlands holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 18:11+0300\n" "PO-Revision-Date: 2023-04-09 18:19+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/NO.po b/holidays/locale/uk/LC_MESSAGES/NO.po index 8ac4a6ec7..531386256 100644 --- a/holidays/locale/uk/LC_MESSAGES/NO.po +++ b/holidays/locale/uk/LC_MESSAGES/NO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Norway holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-09 13:25+0300\n" "PO-Revision-Date: 2023-04-09 13:33+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/PE.po b/holidays/locale/uk/LC_MESSAGES/PE.po index bd56d9353..651e85b04 100644 --- a/holidays/locale/uk/LC_MESSAGES/PE.po +++ b/holidays/locale/uk/LC_MESSAGES/PE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Peru holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.21\n" +"Project-Id-Version: Holidays 0.21\n" "POT-Creation-Date: 2023-03-01 15:30-0800\n" "PO-Revision-Date: 2023-03-05 13:24+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/PL.po b/holidays/locale/uk/LC_MESSAGES/PL.po index 46bd42349..80aa43fb4 100644 --- a/holidays/locale/uk/LC_MESSAGES/PL.po +++ b/holidays/locale/uk/LC_MESSAGES/PL.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Poland holidays Ukrainian translation. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Holidays 0.20\n" "POT-Creation-Date: 2023-02-14 20:19+0200\n" "PO-Revision-Date: 2024-01-02 19:09+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/PT.po b/holidays/locale/uk/LC_MESSAGES/PT.po index 37147a9b9..2195b7396 100644 --- a/holidays/locale/uk/LC_MESSAGES/PT.po +++ b/holidays/locale/uk/LC_MESSAGES/PT.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Portugal holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-07 19:38+0700\n" "PO-Revision-Date: 2023-12-30 19:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/PY.po b/holidays/locale/uk/LC_MESSAGES/PY.po index 06b605eb5..de7bb3c27 100644 --- a/holidays/locale/uk/LC_MESSAGES/PY.po +++ b/holidays/locale/uk/LC_MESSAGES/PY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Paraguay holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" "PO-Revision-Date: 2024-01-05 12:45+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/RO.po b/holidays/locale/uk/LC_MESSAGES/RO.po index 89c6cd6f6..b621055a0 100644 --- a/holidays/locale/uk/LC_MESSAGES/RO.po +++ b/holidays/locale/uk/LC_MESSAGES/RO.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Romania holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-22 18:35+0200\n" "PO-Revision-Date: 2023-03-22 21:28+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/SE.po b/holidays/locale/uk/LC_MESSAGES/SE.po index a3ae0c96d..998a9e47b 100644 --- a/holidays/locale/uk/LC_MESSAGES/SE.po +++ b/holidays/locale/uk/LC_MESSAGES/SE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Sweden holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Holidays 0.23\n" "POT-Creation-Date: 2023-04-08 20:17+0300\n" "PO-Revision-Date: 2023-04-08 20:27+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/SI.po b/holidays/locale/uk/LC_MESSAGES/SI.po index 01bd32039..430851f95 100644 --- a/holidays/locale/uk/LC_MESSAGES/SI.po +++ b/holidays/locale/uk/LC_MESSAGES/SI.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovenia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.28\n" +"Project-Id-Version: Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 13:17+0300\n" "PO-Revision-Date: 2023-06-27 17:11+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/SK.po b/holidays/locale/uk/LC_MESSAGES/SK.po index a6162b6a4..3cda20419 100644 --- a/holidays/locale/uk/LC_MESSAGES/SK.po +++ b/holidays/locale/uk/LC_MESSAGES/SK.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Slovakia holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Holidays 0.25\n" "POT-Creation-Date: 2023-05-10 17:13+0300\n" "PO-Revision-Date: 2023-11-10 15:24+0100\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/TR.po b/holidays/locale/uk/LC_MESSAGES/TR.po index 8042120ec..a41e9be4d 100644 --- a/holidays/locale/uk/LC_MESSAGES/TR.po +++ b/holidays/locale/uk/LC_MESSAGES/TR.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Turkey holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.37\n" +"Project-Id-Version: Holidays 0.37\n" "POT-Creation-Date: 2023-11-12 18:52+0200\n" "PO-Revision-Date: 2023-11-14 12:55+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/UA.po b/holidays/locale/uk/LC_MESSAGES/UA.po index ec1298e63..563aed8a3 100644 --- a/holidays/locale/uk/LC_MESSAGES/UA.po +++ b/holidays/locale/uk/LC_MESSAGES/UA.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Ukraine holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.55\n" +"Project-Id-Version: Holidays 0.55\n" "POT-Creation-Date: 2023-07-08 19:40+0300\n" "PO-Revision-Date: 2024-08-15 21:23+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/UY.po b/holidays/locale/uk/LC_MESSAGES/UY.po index 8eac1baed..3403218c7 100644 --- a/holidays/locale/uk/LC_MESSAGES/UY.po +++ b/holidays/locale/uk/LC_MESSAGES/UY.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uruguay holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Holidays 0.30\n" "POT-Creation-Date: 2023-07-17 14:06+0300\n" "PO-Revision-Date: 2023-07-17 14:20+0300\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/UZ.po b/holidays/locale/uk/LC_MESSAGES/UZ.po index 0a224091e..4c5a513ca 100644 --- a/holidays/locale/uk/LC_MESSAGES/UZ.po +++ b/holidays/locale/uk/LC_MESSAGES/UZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uzbekistan holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-12-31 21:12+0200\n" "PO-Revision-Date: 2024-01-02 12:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uk/LC_MESSAGES/VE.po b/holidays/locale/uk/LC_MESSAGES/VE.po index 56be22a06..e848abc86 100644 --- a/holidays/locale/uk/LC_MESSAGES/VE.po +++ b/holidays/locale/uk/LC_MESSAGES/VE.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Venezuela holidays uk localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Holidays 0.22\n" "POT-Creation-Date: 2023-03-05 12:23+0200\n" "PO-Revision-Date: 2023-03-05 13:38+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/uz/LC_MESSAGES/UZ.po b/holidays/locale/uz/LC_MESSAGES/UZ.po index 56a514340..5e7fb9292 100644 --- a/holidays/locale/uz/LC_MESSAGES/UZ.po +++ b/holidays/locale/uz/LC_MESSAGES/UZ.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Uzbekistan holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.41\n" +"Project-Id-Version: Holidays 0.41\n" "POT-Creation-Date: 2023-12-31 21:12+0200\n" "PO-Revision-Date: 2024-01-02 12:46+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays Localization Team\n" +"Language-Team: Holidays Localization Team\n" "Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/vi/LC_MESSAGES/VN.po b/holidays/locale/vi/LC_MESSAGES/VN.po new file mode 100644 index 000000000..9ce748db1 --- /dev/null +++ b/holidays/locale/vi/LC_MESSAGES/VN.po @@ -0,0 +1,75 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Vietnam holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.58\n" +"POT-Creation-Date: 2024-09-27 15:50+0700\n" +"PO-Revision-Date: 2024-09-27 15:50+0700\n" +"Last-Translator: Vu Nhat Chuong \n" +"Language-Team: Holidays Localization Team\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" + +#. %s (observed). +#, c-format +msgid "%s (nghỉ bù)" +msgstr "" + +#. New Year's Day +msgid "Tết Dương lịch" +msgstr "" + +#. Lunar New Year's Eve +msgid "Giao thừa Tết Nguyên Đán" +msgstr "" + +#. Lunar New Year +msgid "Tết Nguyên Đán" +msgstr "" + +#. Second Day of Lunar New Year +msgid "Mùng hai Tết Nguyên Đán" +msgstr "" + +#. Third Day of Lunar New Year +msgid "Mùng ba Tết Nguyên Đán" +msgstr "" + +#. Fourth Day of Lunar New Year +msgid "Mùng bốn Tết Nguyên Đán" +msgstr "" + +#. Fifth Day of Lunar New Year +msgid "Mùng năm Tết Nguyên Đán" +msgstr "" + +#. Hung Kings' Commemoration Day +msgid "Ngày Giỗ Tổ Hùng Vương" +msgstr "" + +#. Liberation Day/Reunification Day +msgid "Ngày Chiến thắng" +msgstr "" + +#. International Labor Day +msgid "Ngày Quốc tế Lao động" +msgstr "" + +#. National Day +msgid "Quốc khánh" +msgstr "" diff --git a/holidays/locale/zh_CN/LC_MESSAGES/CN.po b/holidays/locale/zh_CN/LC_MESSAGES/CN.po index b7ad41067..6d827ea8e 100644 --- a/holidays/locale/zh_CN/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_CN/LC_MESSAGES/CN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chinese holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" "PO-Revision-Date: 2024-01-18 11:43+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ msgstr "" msgid "休息日(%s日起取代)" msgstr "" -#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. 70th Anniversary of the Victory of the Chinese People's War of Resistance #. against Japanese #. Aggression and the World Anti-Fascist War. msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" diff --git a/holidays/locale/zh_CN/LC_MESSAGES/TW.po b/holidays/locale/zh_CN/LC_MESSAGES/TW.po index f7919c3b9..610f67f46 100644 --- a/holidays/locale/zh_CN/LC_MESSAGES/TW.po +++ b/holidays/locale/zh_CN/LC_MESSAGES/TW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Taiwan holidays zh_CN localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.43\n" +"Project-Id-Version: Holidays 0.43\n" "POT-Creation-Date: 2023-11-24 16:16+0700\n" "PO-Revision-Date: 2024-02-07 19:36+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/locale/zh_TW/LC_MESSAGES/CN.po b/holidays/locale/zh_TW/LC_MESSAGES/CN.po index 508d78388..eb72b4c17 100644 --- a/holidays/locale/zh_TW/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_TW/LC_MESSAGES/CN.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Chinese holidays zh_TW localization. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Holidays 0.42\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" "PO-Revision-Date: 2024-01-18 11:43+0700\n" "Last-Translator: PPsyrius \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ msgstr "%Y-%m-%d" msgid "休息日(%s日起取代)" msgstr "休息日(%s日起取代)" -#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. 70th Anniversary of the Victory of the Chinese People's War of Resistance #. against Japanese #. Aggression and the World Anti-Fascist War. msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" diff --git a/holidays/locale/zh_TW/LC_MESSAGES/TW.po b/holidays/locale/zh_TW/LC_MESSAGES/TW.po index 05dd24b66..caa098d47 100644 --- a/holidays/locale/zh_TW/LC_MESSAGES/TW.po +++ b/holidays/locale/zh_TW/LC_MESSAGES/TW.po @@ -7,18 +7,18 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) # # Taiwan holidays. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.43\n" +"Project-Id-Version: Holidays 0.43\n" "POT-Creation-Date: 2023-11-24 16:16+0700\n" "PO-Revision-Date: 2024-02-07 19:36+0200\n" "Last-Translator: ~Jhellico \n" -"Language-Team: Python Holidays localization team\n" +"Language-Team: Holidays localization team\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/holidays/mixins.py b/holidays/mixins.py index 6a2b6f3e8..524e6e05d 100644 --- a/holidays/mixins.py +++ b/holidays/mixins.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 5fc3a7d1a..6b90ef1cd 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/holidays/registry.py b/holidays/registry.py index fbb3c646a..c127df9fb 100644 --- a/holidays/registry.py +++ b/holidays/registry.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import importlib @@ -52,6 +52,7 @@ "chile": ("Chile", "CL", "CHL"), "china": ("China", "CN", "CHN"), "colombia": ("Colombia", "CO", "COL"), + "congo": ("Congo", "CG", "COG"), "costa_rica": ("CostaRica", "CR", "CRI"), "croatia": ("Croatia", "HR", "HRV"), "cuba": ("Cuba", "CU", "CUB"), @@ -137,6 +138,7 @@ "puerto_rico": ("PuertoRico", "PR", "PRI", "HolidaysPR"), "romania": ("Romania", "RO", "ROU"), "russia": ("Russia", "RU", "RUS"), + "saint_kitts_and_nevis": ("SaintKittsAndNevis", "KN", "KNA"), "samoa": ("Samoa", "WS", "WSM"), "san_marino": ("SanMarino", "SM", "SMR"), "saudi_arabia": ("SaudiArabia", "SA", "SAU"), @@ -199,7 +201,7 @@ def __init__(self, path: str, *args, **kwargs) -> None: """Set up a lazy loader.""" if args: raise TypeError( - "This is a python-holidays entity loader class. " + "This is a holidays entity loader class. " "For entity inheritance purposes please import a class you " "want to derive from directly: e.g., " "`from holidays.countries import Entity` or " diff --git a/holidays/utils.py b/holidays/utils.py index 76413fe89..249141f8b 100755 --- a/holidays/utils.py +++ b/holidays/utils.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) __all__ = ( @@ -306,7 +306,7 @@ def _list_localized_entities(entity_codes: Iterable[str]) -> Dict[str, List[str] return localized_countries -@lru_cache() +@lru_cache def list_localized_countries(include_aliases=True) -> Dict[str, List[str]]: """ Get all localized countries and languages they support. @@ -323,7 +323,7 @@ def list_localized_countries(include_aliases=True) -> Dict[str, List[str]]: return _list_localized_entities(EntityLoader.get_country_codes(include_aliases)) -@lru_cache() +@lru_cache def list_localized_financial(include_aliases=True) -> Dict[str, List[str]]: """ Get all localized financial markets and languages they support. @@ -358,7 +358,7 @@ def _list_supported_entities(entity_codes: Iterable[str]) -> Dict[str, List[str] } -@lru_cache() +@lru_cache def list_supported_countries(include_aliases=True) -> Dict[str, List[str]]: """ Get all supported countries and their subdivisions. @@ -373,7 +373,7 @@ def list_supported_countries(include_aliases=True) -> Dict[str, List[str]]: return _list_supported_entities(EntityLoader.get_country_codes(include_aliases)) -@lru_cache() +@lru_cache def list_supported_financial(include_aliases=True) -> Dict[str, List[str]]: """ Get all supported financial markets and their subdivisions. diff --git a/pyproject.toml b/pyproject.toml index 134568253..2ecee71c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,9 +29,9 @@ maintainers = [ ] [project.urls] -Repository = "https://github.com/vacanza/python-holidays/" -Documentation = "https://python-holidays.readthedocs.io/en/latest/" -Changelog = "https://github.com/vacanza/python-holidays/releases" +Repository = "https://github.com/vacanza/holidays/" +Documentation = "https://holidays.readthedocs.io/en/latest/" +Changelog = "https://github.com/vacanza/holidays/releases" Downloads = "https://pypi.org/project/holidays/" [tool.bandit] diff --git a/requirements/build.txt b/requirements/build.txt index fc2130bb0..8e99acc34 100644 --- a/requirements/build.txt +++ b/requirements/build.txt @@ -1,3 +1,3 @@ build==1.2.2 -cyclonedx-bom==4.5.0 +cyclonedx-bom==4.6.1 polib==1.2.0 diff --git a/requirements/dev.txt b/requirements/dev.txt index 24dea55ac..8bb67420d 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -4,10 +4,10 @@ build==1.2.2 convertdate==2.4.0 gitpython==3.1.43 hijridate==2.5.0 -lingva==5.0.3 +lingva==5.0.4 pre-commit==3.8.0 pygithub==2.4.0 -ruff==0.6.4 -tox==4.18.1 +ruff==0.6.8 +tox==4.21.1 urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability diff --git a/requirements/tests.txt b/requirements/tests.txt index b07a6cffc..4e4d502ea 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -1,9 +1,9 @@ # Test requirements. coverage==7.6.1 -importlib-metadata==8.4.0 +importlib-metadata==8.5.0 numpy<2.0.0; python_version < '3.9' -numpy==2.0.1; python_version == '3.9' +numpy==2.0.2; python_version == '3.9' numpy==2.1.1; python_version > '3.9' polib==1.2.0 pytest-cov==5.0.0 diff --git a/scripts/calendar/asian_generator.py b/scripts/calendar/asian_generator.py index a6143eb04..acea28ebb 100644 --- a/scripts/calendar/asian_generator.py +++ b/scripts/calendar/asian_generator.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -250,7 +250,7 @@ def __init__(self) -> None: self.LUNAR_END_DATE = (2099, 12, 30) self.SOLAR_END_DATE = date(2100, 2, 18) - @lru_cache() + @lru_cache def _get_leap_month(self, lunar_year: int) -> int: """ Return the number of the leap month if one exists in the year, @@ -275,7 +275,7 @@ def _lunar_year_days(self, year: int) -> int: days += day return days - @lru_cache() + @lru_cache def _span_days(self, year: int) -> int: """ Return the number of days elapsed since self.SOLAR_START_DATE to the diff --git a/scripts/calendar/hebrew_generator.py b/scripts/calendar/hebrew_generator.py index 9a4da1344..0ef31870a 100644 --- a/scripts/calendar/hebrew_generator.py +++ b/scripts/calendar/hebrew_generator.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/scripts/calendar/islamic_generator.py b/scripts/calendar/islamic_generator.py index 71d4f5cfe..0405bf8cf 100644 --- a/scripts/calendar/islamic_generator.py +++ b/scripts/calendar/islamic_generator.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from pathlib import Path diff --git a/scripts/generate_release_notes.py b/scripts/generate_release_notes.py index 074e94b6b..0b6e4deb4 100755 --- a/scripts/generate_release_notes.py +++ b/scripts/generate_release_notes.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import argparse @@ -34,7 +34,7 @@ Released {month} {day}, {year} """ IGNORED_CONTRIBUTORS = {"dependabot[bot]", "github-actions[bot]"} -REPOSITORY_NAME = "vacanza/python-holidays" +REPOSITORY_NAME = "vacanza/holidays" class ReleaseNotesGenerator: @@ -246,7 +246,7 @@ def print_release_notes(self): year=today.year, ) ) - print("\n".join((f"- {pr[0]} ({pr[1]})" for pr in self.sorted_pull_requests))) + print("\n".join(f"- {pr[0]} ({pr[1]})" for pr in self.sorted_pull_requests)) else: print(f"No changes since {self.latest_tag_name} release.") diff --git a/scripts/generate_snapshots.py b/scripts/generate_snapshots.py index aa8373416..0b2d50818 100755 --- a/scripts/generate_snapshots.py +++ b/scripts/generate_snapshots.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import argparse diff --git a/scripts/l10n/generate_mo_files.py b/scripts/l10n/generate_mo_files.py index 2ebe34aa7..93ae1e6e7 100755 --- a/scripts/l10n/generate_mo_files.py +++ b/scripts/l10n/generate_mo_files.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from pathlib import Path diff --git a/scripts/l10n/generate_po_files.py b/scripts/l10n/generate_po_files.py index 2376cedae..32d9f94b7 100755 --- a/scripts/l10n/generate_po_files.py +++ b/scripts/l10n/generate_po_files.py @@ -9,7 +9,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import importlib @@ -35,7 +35,7 @@ def update_po_file(po_path: str, pot_path: str, package_version: str) -> None: # Update the project version if po file entries translation has changed only. if po_file != po_file_initial: - po_file.metadata["Project-Id-Version"] = f"Python Holidays {package_version}" + po_file.metadata["Project-Id-Version"] = f"Holidays {package_version}" # Save the file each time in order to capture all other changes properly. po_file.save(po_path) @@ -83,7 +83,7 @@ def process_countries(self): "-o", f"{pot_file_path}", "--package-name", - "Python Holidays", + "Holidays", "--package-version", package_version, "--width", @@ -97,7 +97,7 @@ def process_countries(self): pot_file = pofile(pot_file_path) pot_file.metadata.update( { - "Language-Team": "Python Holidays Localization Team", + "Language-Team": "Holidays Localization Team", "PO-Revision-Date": pot_file.metadata["POT-Creation-Date"], } ) diff --git a/setup.py b/setup.py index 00692727b..ab10ce5df 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from setuptools import setup diff --git a/snapshots/countries/AS_COMMON.json b/snapshots/countries/AS_COMMON.json index 77141c783..5ea0cd3c5 100644 --- a/snapshots/countries/AS_COMMON.json +++ b/snapshots/countries/AS_COMMON.json @@ -4,87 +4,92 @@ "1950-02-14": "Valentine's Day", "1950-02-22": "Washington's Birthday", "1950-03-17": "Saint Patrick's Day", + "1950-04-17": "American Samoa Flag Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", + "1950-10-08": "White Sunday", "1950-10-12": "Columbus Day", "1950-10-31": "Halloween", "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", - "1950-12-22": "Christmas Eve (observed)", - "1950-12-24": "Christmas Eve", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-02-14": "Valentine's Day", "1951-02-22": "Washington's Birthday", "1951-03-17": "Saint Patrick's Day", + "1951-04-17": "American Samoa Flag Day", "1951-05-30": "Memorial Day", "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", + "1951-10-14": "White Sunday", "1951-10-31": "Halloween", "1951-11-11": "Armistice Day", "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", - "1951-12-24": "Christmas Eve", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-02-14": "Valentine's Day", "1952-02-22": "Washington's Birthday", "1952-03-17": "Saint Patrick's Day", + "1952-04-17": "American Samoa Flag Day", "1952-05-30": "Memorial Day", "1952-07-04": "Independence Day", "1952-09-01": "Labor Day", - "1952-10-12": "Columbus Day", + "1952-10-12": "Columbus Day; White Sunday", "1952-10-31": "Halloween", "1952-11-11": "Armistice Day", "1952-11-27": "Thanksgiving", - "1952-12-24": "Christmas Eve", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Valentine's Day", "1953-02-22": "Washington's Birthday", "1953-03-17": "Saint Patrick's Day", + "1953-04-17": "American Samoa Flag Day", "1953-05-30": "Memorial Day", "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", + "1953-10-11": "White Sunday", "1953-10-12": "Columbus Day", "1953-10-31": "Halloween", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", - "1953-12-24": "Christmas Eve", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-02-14": "Valentine's Day", "1954-02-22": "Washington's Birthday", "1954-03-17": "Saint Patrick's Day", + "1954-04-16": "American Samoa Flag Day (observed)", + "1954-04-17": "American Samoa Flag Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", + "1954-10-10": "White Sunday", "1954-10-12": "Columbus Day", "1954-10-31": "Halloween", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-23": "Christmas Eve (observed)", - "1954-12-24": "Christmas Day (observed); Christmas Eve", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-14": "Valentine's Day", "1955-02-22": "Washington's Birthday", "1955-03-17": "Saint Patrick's Day", + "1955-04-17": "American Samoa Flag Day", + "1955-04-18": "American Samoa Flag Day (observed)", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", "1955-09-05": "Labor Day", + "1955-10-09": "White Sunday", "1955-10-12": "Columbus Day", "1955-10-31": "Halloween", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", - "1955-12-23": "Christmas Eve (observed)", - "1955-12-24": "Christmas Eve", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", @@ -92,69 +97,73 @@ "1956-02-14": "Valentine's Day", "1956-02-22": "Washington's Birthday", "1956-03-17": "Saint Patrick's Day", + "1956-04-17": "American Samoa Flag Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", + "1956-10-14": "White Sunday", "1956-10-31": "Halloween", "1956-11-11": "Veterans Day", "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", - "1956-12-24": "Christmas Eve", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-14": "Valentine's Day", "1957-02-22": "Washington's Birthday", "1957-03-17": "Saint Patrick's Day", + "1957-04-17": "American Samoa Flag Day", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", "1957-09-02": "Labor Day", "1957-10-12": "Columbus Day", + "1957-10-13": "White Sunday", "1957-10-31": "Halloween", "1957-11-11": "Veterans Day", "1957-11-28": "Thanksgiving", - "1957-12-24": "Christmas Eve", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-14": "Valentine's Day", "1958-02-22": "Washington's Birthday", "1958-03-17": "Saint Patrick's Day", + "1958-04-17": "American Samoa Flag Day", "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", "1958-09-01": "Labor Day", - "1958-10-12": "Columbus Day", + "1958-10-12": "Columbus Day; White Sunday", "1958-10-31": "Halloween", "1958-11-11": "Veterans Day", "1958-11-27": "Thanksgiving", - "1958-12-24": "Christmas Eve", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-14": "Valentine's Day", "1959-02-22": "Washington's Birthday", "1959-03-17": "Saint Patrick's Day", + "1959-04-17": "American Samoa Flag Day", "1959-05-30": "Memorial Day", "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", + "1959-10-11": "White Sunday", "1959-10-12": "Columbus Day", "1959-10-31": "Halloween", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", - "1959-12-24": "Christmas Eve", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-02-14": "Valentine's Day", "1960-02-22": "Washington's Birthday", "1960-03-17": "Saint Patrick's Day", + "1960-04-17": "American Samoa Flag Day", + "1960-04-18": "American Samoa Flag Day (observed)", "1960-05-30": "Memorial Day", "1960-07-04": "Independence Day", "1960-09-05": "Labor Day", + "1960-10-09": "White Sunday", "1960-10-12": "Columbus Day", "1960-10-31": "Halloween", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", - "1960-12-23": "Christmas Eve (observed)", - "1960-12-24": "Christmas Eve", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", @@ -162,87 +171,93 @@ "1961-02-14": "Valentine's Day", "1961-02-22": "Washington's Birthday", "1961-03-17": "Saint Patrick's Day", + "1961-04-17": "American Samoa Flag Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", + "1961-10-08": "White Sunday", "1961-10-12": "Columbus Day", "1961-10-31": "Halloween", "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", - "1961-12-22": "Christmas Eve (observed)", - "1961-12-24": "Christmas Eve", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-02-14": "Valentine's Day", "1962-02-22": "Washington's Birthday", "1962-03-17": "Saint Patrick's Day", + "1962-04-17": "American Samoa Flag Day", "1962-05-30": "Memorial Day", "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", + "1962-10-14": "White Sunday", "1962-10-31": "Halloween", "1962-11-11": "Veterans Day", "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", - "1962-12-24": "Christmas Eve", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-14": "Valentine's Day", "1963-02-22": "Washington's Birthday", "1963-03-17": "Saint Patrick's Day", + "1963-04-17": "American Samoa Flag Day", "1963-05-30": "Memorial Day", "1963-07-04": "Independence Day", "1963-09-02": "Labor Day", "1963-10-12": "Columbus Day", + "1963-10-13": "White Sunday", "1963-10-31": "Halloween", "1963-11-11": "Veterans Day", "1963-11-28": "Thanksgiving", - "1963-12-24": "Christmas Eve", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-14": "Valentine's Day", "1964-02-22": "Washington's Birthday", "1964-03-17": "Saint Patrick's Day", + "1964-04-17": "American Samoa Flag Day", "1964-05-30": "Memorial Day", "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", + "1964-10-11": "White Sunday", "1964-10-12": "Columbus Day", "1964-10-31": "Halloween", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", - "1964-12-24": "Christmas Eve", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-02-14": "Valentine's Day", "1965-02-22": "Washington's Birthday", "1965-03-17": "Saint Patrick's Day", + "1965-04-16": "American Samoa Flag Day (observed)", + "1965-04-17": "American Samoa Flag Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", + "1965-10-10": "White Sunday", "1965-10-12": "Columbus Day", "1965-10-31": "Halloween", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-23": "Christmas Eve (observed)", - "1965-12-24": "Christmas Day (observed); Christmas Eve", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-14": "Valentine's Day", "1966-02-22": "Washington's Birthday", "1966-03-17": "Saint Patrick's Day", + "1966-04-17": "American Samoa Flag Day", + "1966-04-18": "American Samoa Flag Day (observed)", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", "1966-09-05": "Labor Day", + "1966-10-09": "White Sunday", "1966-10-12": "Columbus Day", "1966-10-31": "Halloween", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", - "1966-12-23": "Christmas Eve (observed)", - "1966-12-24": "Christmas Eve", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", @@ -250,155 +265,165 @@ "1967-02-14": "Valentine's Day", "1967-02-22": "Washington's Birthday", "1967-03-17": "Saint Patrick's Day", + "1967-04-17": "American Samoa Flag Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", + "1967-10-08": "White Sunday", "1967-10-12": "Columbus Day", "1967-10-31": "Halloween", "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", - "1967-12-22": "Christmas Eve (observed)", - "1967-12-24": "Christmas Eve", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", "1968-02-14": "Valentine's Day", "1968-02-22": "Washington's Birthday", "1968-03-17": "Saint Patrick's Day", + "1968-04-17": "American Samoa Flag Day", "1968-05-30": "Memorial Day", "1968-07-04": "Independence Day", "1968-09-02": "Labor Day", "1968-10-12": "Columbus Day", + "1968-10-13": "White Sunday", "1968-10-31": "Halloween", "1968-11-11": "Veterans Day", "1968-11-28": "Thanksgiving", - "1968-12-24": "Christmas Eve", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-14": "Valentine's Day", "1969-02-22": "Washington's Birthday", "1969-03-17": "Saint Patrick's Day", + "1969-04-17": "American Samoa Flag Day", "1969-05-30": "Memorial Day", "1969-07-04": "Independence Day", "1969-09-01": "Labor Day", - "1969-10-12": "Columbus Day", + "1969-10-12": "Columbus Day; White Sunday", "1969-10-31": "Halloween", "1969-11-11": "Veterans Day", "1969-11-27": "Thanksgiving", - "1969-12-24": "Christmas Eve", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-02-14": "Valentine's Day", "1970-02-22": "Washington's Birthday", "1970-03-17": "Saint Patrick's Day", + "1970-04-17": "American Samoa Flag Day", "1970-05-30": "Memorial Day", "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", + "1970-10-11": "White Sunday", "1970-10-12": "Columbus Day", "1970-10-31": "Halloween", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", - "1970-12-24": "Christmas Eve", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-02-14": "Valentine's Day", "1971-02-15": "Washington's Birthday", "1971-03-17": "Saint Patrick's Day", + "1971-04-16": "American Samoa Flag Day (observed)", + "1971-04-17": "American Samoa Flag Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", + "1971-10-10": "White Sunday", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-10-31": "Halloween", "1971-11-25": "Thanksgiving", - "1971-12-23": "Christmas Eve (observed)", - "1971-12-24": "Christmas Day (observed); Christmas Eve", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-14": "Valentine's Day", "1972-02-21": "Washington's Birthday", "1972-03-17": "Saint Patrick's Day", + "1972-04-17": "American Samoa Flag Day", "1972-05-29": "Memorial Day", "1972-07-04": "Independence Day", "1972-09-04": "Labor Day", + "1972-10-08": "White Sunday", "1972-10-09": "Columbus Day", "1972-10-23": "Veterans Day", "1972-10-31": "Halloween", "1972-11-23": "Thanksgiving", - "1972-12-22": "Christmas Eve (observed)", - "1972-12-24": "Christmas Eve", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-02-14": "Valentine's Day", "1973-02-19": "Washington's Birthday", "1973-03-17": "Saint Patrick's Day", + "1973-04-17": "American Samoa Flag Day", "1973-05-28": "Memorial Day", "1973-07-04": "Independence Day", "1973-09-03": "Labor Day", "1973-10-08": "Columbus Day", + "1973-10-14": "White Sunday", "1973-10-22": "Veterans Day", "1973-10-31": "Halloween", "1973-11-22": "Thanksgiving", - "1973-12-24": "Christmas Eve", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-02-14": "Valentine's Day", "1974-02-18": "Washington's Birthday", "1974-03-17": "Saint Patrick's Day", + "1974-04-17": "American Samoa Flag Day", "1974-05-27": "Memorial Day", "1974-07-04": "Independence Day", "1974-09-02": "Labor Day", + "1974-10-13": "White Sunday", "1974-10-14": "Columbus Day", "1974-10-28": "Veterans Day", "1974-10-31": "Halloween", "1974-11-28": "Thanksgiving", - "1974-12-24": "Christmas Eve", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-14": "Valentine's Day", "1975-02-17": "Washington's Birthday", "1975-03-17": "Saint Patrick's Day", + "1975-04-17": "American Samoa Flag Day", "1975-05-26": "Memorial Day", "1975-07-04": "Independence Day", "1975-09-01": "Labor Day", + "1975-10-12": "White Sunday", "1975-10-13": "Columbus Day", "1975-10-27": "Veterans Day", "1975-10-31": "Halloween", "1975-11-27": "Thanksgiving", - "1975-12-24": "Christmas Eve", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-02-14": "Valentine's Day", "1976-02-16": "Washington's Birthday", "1976-03-17": "Saint Patrick's Day", + "1976-04-16": "American Samoa Flag Day (observed)", + "1976-04-17": "American Samoa Flag Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", + "1976-10-10": "White Sunday", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-10-31": "Halloween", "1976-11-25": "Thanksgiving", - "1976-12-23": "Christmas Eve (observed)", - "1976-12-24": "Christmas Day (observed); Christmas Eve", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-14": "Valentine's Day", "1977-02-21": "Washington's Birthday", "1977-03-17": "Saint Patrick's Day", + "1977-04-17": "American Samoa Flag Day", + "1977-04-18": "American Samoa Flag Day (observed)", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", "1977-09-05": "Labor Day", + "1977-10-09": "White Sunday", "1977-10-10": "Columbus Day", "1977-10-24": "Veterans Day", "1977-10-31": "Halloween", "1977-11-24": "Thanksgiving", - "1977-12-23": "Christmas Eve (observed)", - "1977-12-24": "Christmas Eve", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", @@ -406,87 +431,95 @@ "1978-02-14": "Valentine's Day", "1978-02-20": "Washington's Birthday", "1978-03-17": "Saint Patrick's Day", + "1978-04-17": "American Samoa Flag Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", + "1978-10-08": "White Sunday", "1978-10-09": "Columbus Day", "1978-10-31": "Halloween", "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", - "1978-12-22": "Christmas Eve (observed)", - "1978-12-24": "Christmas Eve", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-14": "Valentine's Day", "1979-02-19": "Washington's Birthday", "1979-03-17": "Saint Patrick's Day", + "1979-04-17": "American Samoa Flag Day", "1979-05-28": "Memorial Day", "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", + "1979-10-14": "White Sunday", "1979-10-31": "Halloween", "1979-11-11": "Veterans Day", "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", - "1979-12-24": "Christmas Eve", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-02-14": "Valentine's Day", "1980-02-18": "Washington's Birthday", "1980-03-17": "Saint Patrick's Day", + "1980-04-17": "American Samoa Flag Day", "1980-05-26": "Memorial Day", "1980-07-04": "Independence Day", "1980-09-01": "Labor Day", + "1980-10-12": "White Sunday", "1980-10-13": "Columbus Day", "1980-10-31": "Halloween", "1980-11-11": "Veterans Day", "1980-11-27": "Thanksgiving", - "1980-12-24": "Christmas Eve", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-02-14": "Valentine's Day", "1981-02-16": "Washington's Birthday", "1981-03-17": "Saint Patrick's Day", + "1981-04-17": "American Samoa Flag Day", "1981-05-25": "Memorial Day", "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", + "1981-10-11": "White Sunday", "1981-10-12": "Columbus Day", "1981-10-31": "Halloween", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", - "1981-12-24": "Christmas Eve", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-02-14": "Valentine's Day", "1982-02-15": "Washington's Birthday", "1982-03-17": "Saint Patrick's Day", + "1982-04-16": "American Samoa Flag Day (observed)", + "1982-04-17": "American Samoa Flag Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", + "1982-10-10": "White Sunday", "1982-10-11": "Columbus Day", "1982-10-31": "Halloween", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-23": "Christmas Eve (observed)", - "1982-12-24": "Christmas Day (observed); Christmas Eve", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-14": "Valentine's Day", "1983-02-21": "Washington's Birthday", "1983-03-17": "Saint Patrick's Day", + "1983-04-17": "American Samoa Flag Day", + "1983-04-18": "American Samoa Flag Day (observed)", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", + "1983-07-15": "Manu'a Islands Cession Day (observed)", + "1983-07-16": "Manu'a Islands Cession Day", "1983-09-05": "Labor Day", + "1983-10-09": "White Sunday", "1983-10-10": "Columbus Day", "1983-10-31": "Halloween", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", - "1983-12-23": "Christmas Eve (observed)", - "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", @@ -494,72 +527,83 @@ "1984-02-14": "Valentine's Day", "1984-02-20": "Washington's Birthday", "1984-03-17": "Saint Patrick's Day", + "1984-04-17": "American Samoa Flag Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", + "1984-07-16": "Manu'a Islands Cession Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", + "1984-10-14": "White Sunday", "1984-10-31": "Halloween", "1984-11-11": "Veterans Day", "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", - "1984-12-24": "Christmas Eve", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-14": "Valentine's Day", "1985-02-18": "Washington's Birthday", "1985-03-17": "Saint Patrick's Day", + "1985-04-17": "American Samoa Flag Day", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", + "1985-07-16": "Manu'a Islands Cession Day", "1985-09-02": "Labor Day", + "1985-10-13": "White Sunday", "1985-10-14": "Columbus Day", "1985-10-31": "Halloween", "1985-11-11": "Veterans Day", "1985-11-28": "Thanksgiving", - "1985-12-24": "Christmas Eve", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-20": "Martin Luther King Jr. Day", "1986-02-14": "Valentine's Day", "1986-02-17": "Washington's Birthday", "1986-03-17": "Saint Patrick's Day", + "1986-04-17": "American Samoa Flag Day", "1986-05-26": "Memorial Day", "1986-07-04": "Independence Day", + "1986-07-16": "Manu'a Islands Cession Day", "1986-09-01": "Labor Day", + "1986-10-12": "White Sunday", "1986-10-13": "Columbus Day", "1986-10-31": "Halloween", "1986-11-11": "Veterans Day", "1986-11-27": "Thanksgiving", - "1986-12-24": "Christmas Eve", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-19": "Martin Luther King Jr. Day", "1987-02-14": "Valentine's Day", "1987-02-16": "Washington's Birthday", "1987-03-17": "Saint Patrick's Day", + "1987-04-17": "American Samoa Flag Day", "1987-05-25": "Memorial Day", "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", + "1987-07-16": "Manu'a Islands Cession Day", "1987-09-07": "Labor Day", + "1987-10-11": "White Sunday", "1987-10-12": "Columbus Day", "1987-10-31": "Halloween", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", - "1987-12-24": "Christmas Eve", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-01-18": "Martin Luther King Jr. Day", "1988-02-14": "Valentine's Day", "1988-02-15": "Washington's Birthday", "1988-03-17": "Saint Patrick's Day", + "1988-04-17": "American Samoa Flag Day", + "1988-04-18": "American Samoa Flag Day (observed)", "1988-05-30": "Memorial Day", "1988-07-04": "Independence Day", + "1988-07-15": "Manu'a Islands Cession Day (observed)", + "1988-07-16": "Manu'a Islands Cession Day", "1988-09-05": "Labor Day", + "1988-10-09": "White Sunday", "1988-10-10": "Columbus Day", "1988-10-31": "Halloween", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", - "1988-12-23": "Christmas Eve (observed)", - "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", @@ -568,76 +612,87 @@ "1989-02-14": "Valentine's Day", "1989-02-20": "Washington's Birthday", "1989-03-17": "Saint Patrick's Day", + "1989-04-17": "American Samoa Flag Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", + "1989-07-16": "Manu'a Islands Cession Day", + "1989-07-17": "Manu'a Islands Cession Day (observed)", "1989-09-04": "Labor Day", + "1989-10-08": "White Sunday", "1989-10-09": "Columbus Day", "1989-10-31": "Halloween", "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", - "1989-12-22": "Christmas Eve (observed)", - "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-15": "Martin Luther King Jr. Day", "1990-02-14": "Valentine's Day", "1990-02-19": "Washington's Birthday", "1990-03-17": "Saint Patrick's Day", + "1990-04-17": "American Samoa Flag Day", "1990-05-28": "Memorial Day", "1990-07-04": "Independence Day", + "1990-07-16": "Manu'a Islands Cession Day", "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", + "1990-10-14": "White Sunday", "1990-10-31": "Halloween", "1990-11-11": "Veterans Day", "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", - "1990-12-24": "Christmas Eve", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-14": "Valentine's Day", "1991-02-18": "Washington's Birthday", "1991-03-17": "Saint Patrick's Day", + "1991-04-17": "American Samoa Flag Day", "1991-05-27": "Memorial Day", "1991-07-04": "Independence Day", + "1991-07-16": "Manu'a Islands Cession Day", "1991-09-02": "Labor Day", + "1991-10-13": "White Sunday", "1991-10-14": "Columbus Day", "1991-10-31": "Halloween", "1991-11-11": "Veterans Day", "1991-11-28": "Thanksgiving", - "1991-12-24": "Christmas Eve", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", "1992-02-14": "Valentine's Day", "1992-02-17": "Washington's Birthday", "1992-03-17": "Saint Patrick's Day", + "1992-04-17": "American Samoa Flag Day", "1992-05-25": "Memorial Day", "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", + "1992-07-16": "Manu'a Islands Cession Day", "1992-09-07": "Labor Day", + "1992-10-11": "White Sunday", "1992-10-12": "Columbus Day", "1992-10-31": "Halloween", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", - "1992-12-24": "Christmas Eve", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-18": "Martin Luther King Jr. Day", "1993-02-14": "Valentine's Day", "1993-02-15": "Washington's Birthday", "1993-03-17": "Saint Patrick's Day", + "1993-04-16": "American Samoa Flag Day (observed)", + "1993-04-17": "American Samoa Flag Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", "1993-07-05": "Independence Day (observed)", + "1993-07-16": "Manu'a Islands Cession Day", "1993-09-06": "Labor Day", + "1993-10-10": "White Sunday", "1993-10-11": "Columbus Day", "1993-10-31": "Halloween", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-23": "Christmas Eve (observed)", - "1993-12-24": "Christmas Day (observed); Christmas Eve", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", @@ -645,15 +700,18 @@ "1994-02-14": "Valentine's Day", "1994-02-21": "Washington's Birthday", "1994-03-17": "Saint Patrick's Day", + "1994-04-17": "American Samoa Flag Day", + "1994-04-18": "American Samoa Flag Day (observed)", "1994-05-30": "Memorial Day", "1994-07-04": "Independence Day", + "1994-07-15": "Manu'a Islands Cession Day (observed)", + "1994-07-16": "Manu'a Islands Cession Day", "1994-09-05": "Labor Day", + "1994-10-09": "White Sunday", "1994-10-10": "Columbus Day", "1994-10-31": "Halloween", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", - "1994-12-23": "Christmas Eve (observed)", - "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", @@ -662,75 +720,86 @@ "1995-02-14": "Valentine's Day", "1995-02-20": "Washington's Birthday", "1995-03-17": "Saint Patrick's Day", + "1995-04-17": "American Samoa Flag Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", + "1995-07-16": "Manu'a Islands Cession Day", + "1995-07-17": "Manu'a Islands Cession Day (observed)", "1995-09-04": "Labor Day", + "1995-10-08": "White Sunday", "1995-10-09": "Columbus Day", "1995-10-31": "Halloween", "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", - "1995-12-22": "Christmas Eve (observed)", - "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-15": "Martin Luther King Jr. Day", "1996-02-14": "Valentine's Day", "1996-02-19": "Washington's Birthday", "1996-03-17": "Saint Patrick's Day", + "1996-04-17": "American Samoa Flag Day", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", + "1996-07-16": "Manu'a Islands Cession Day", "1996-09-02": "Labor Day", + "1996-10-13": "White Sunday", "1996-10-14": "Columbus Day", "1996-10-31": "Halloween", "1996-11-11": "Veterans Day", "1996-11-28": "Thanksgiving", - "1996-12-24": "Christmas Eve", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-20": "Martin Luther King Jr. Day", "1997-02-14": "Valentine's Day", "1997-02-17": "Washington's Birthday", "1997-03-17": "Saint Patrick's Day", + "1997-04-17": "American Samoa Flag Day", "1997-05-26": "Memorial Day", "1997-07-04": "Independence Day", + "1997-07-16": "Manu'a Islands Cession Day", "1997-09-01": "Labor Day", + "1997-10-12": "White Sunday", "1997-10-13": "Columbus Day", "1997-10-31": "Halloween", "1997-11-11": "Veterans Day", "1997-11-27": "Thanksgiving", - "1997-12-24": "Christmas Eve", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-19": "Martin Luther King Jr. Day", "1998-02-14": "Valentine's Day", "1998-02-16": "Washington's Birthday", "1998-03-17": "Saint Patrick's Day", + "1998-04-17": "American Samoa Flag Day", "1998-05-25": "Memorial Day", "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", + "1998-07-16": "Manu'a Islands Cession Day", "1998-09-07": "Labor Day", + "1998-10-11": "White Sunday", "1998-10-12": "Columbus Day", "1998-10-31": "Halloween", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", - "1998-12-24": "Christmas Eve", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-18": "Martin Luther King Jr. Day", "1999-02-14": "Valentine's Day", "1999-02-15": "Washington's Birthday", "1999-03-17": "Saint Patrick's Day", + "1999-04-16": "American Samoa Flag Day (observed)", + "1999-04-17": "American Samoa Flag Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", "1999-07-05": "Independence Day (observed)", + "1999-07-16": "Manu'a Islands Cession Day", "1999-09-06": "Labor Day", + "1999-10-10": "White Sunday", "1999-10-11": "Columbus Day", "1999-10-31": "Halloween", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-23": "Christmas Eve (observed)", - "1999-12-24": "Christmas Day (observed); Christmas Eve", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", @@ -738,75 +807,86 @@ "2000-02-14": "Valentine's Day", "2000-02-21": "Washington's Birthday", "2000-03-17": "Saint Patrick's Day", + "2000-04-17": "American Samoa Flag Day", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", + "2000-07-16": "Manu'a Islands Cession Day", + "2000-07-17": "Manu'a Islands Cession Day (observed)", "2000-09-04": "Labor Day", + "2000-10-08": "White Sunday", "2000-10-09": "Columbus Day", "2000-10-31": "Halloween", "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", - "2000-12-22": "Christmas Eve (observed)", - "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-14": "Valentine's Day", "2001-02-19": "Washington's Birthday", "2001-03-17": "Saint Patrick's Day", + "2001-04-17": "American Samoa Flag Day", "2001-05-28": "Memorial Day", "2001-07-04": "Independence Day", + "2001-07-16": "Manu'a Islands Cession Day", "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", + "2001-10-14": "White Sunday", "2001-10-31": "Halloween", "2001-11-11": "Veterans Day", "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", - "2001-12-24": "Christmas Eve", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-14": "Valentine's Day", "2002-02-18": "Washington's Birthday", "2002-03-17": "Saint Patrick's Day", + "2002-04-17": "American Samoa Flag Day", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", + "2002-07-16": "Manu'a Islands Cession Day", "2002-09-02": "Labor Day", + "2002-10-13": "White Sunday", "2002-10-14": "Columbus Day", "2002-10-31": "Halloween", "2002-11-11": "Veterans Day", "2002-11-28": "Thanksgiving", - "2002-12-24": "Christmas Eve", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", "2003-02-14": "Valentine's Day", "2003-02-17": "Washington's Birthday", "2003-03-17": "Saint Patrick's Day", + "2003-04-17": "American Samoa Flag Day", "2003-05-26": "Memorial Day", "2003-07-04": "Independence Day", + "2003-07-16": "Manu'a Islands Cession Day", "2003-09-01": "Labor Day", + "2003-10-12": "White Sunday", "2003-10-13": "Columbus Day", "2003-10-31": "Halloween", "2003-11-11": "Veterans Day", "2003-11-27": "Thanksgiving", - "2003-12-24": "Christmas Eve", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-19": "Martin Luther King Jr. Day", "2004-02-14": "Valentine's Day", "2004-02-16": "Washington's Birthday", "2004-03-17": "Saint Patrick's Day", + "2004-04-16": "American Samoa Flag Day (observed)", + "2004-04-17": "American Samoa Flag Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", "2004-07-05": "Independence Day (observed)", + "2004-07-16": "Manu'a Islands Cession Day", "2004-09-06": "Labor Day", + "2004-10-10": "White Sunday", "2004-10-11": "Columbus Day", "2004-10-31": "Halloween", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-23": "Christmas Eve (observed)", - "2004-12-24": "Christmas Day (observed); Christmas Eve", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", @@ -814,15 +894,18 @@ "2005-02-14": "Valentine's Day", "2005-02-21": "Washington's Birthday", "2005-03-17": "Saint Patrick's Day", + "2005-04-17": "American Samoa Flag Day", + "2005-04-18": "American Samoa Flag Day (observed)", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", + "2005-07-15": "Manu'a Islands Cession Day (observed)", + "2005-07-16": "Manu'a Islands Cession Day", "2005-09-05": "Labor Day", + "2005-10-09": "White Sunday", "2005-10-10": "Columbus Day", "2005-10-31": "Halloween", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", - "2005-12-23": "Christmas Eve (observed)", - "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", @@ -831,76 +914,87 @@ "2006-02-14": "Valentine's Day", "2006-02-20": "Washington's Birthday", "2006-03-17": "Saint Patrick's Day", + "2006-04-17": "American Samoa Flag Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", + "2006-07-16": "Manu'a Islands Cession Day", + "2006-07-17": "Manu'a Islands Cession Day (observed)", "2006-09-04": "Labor Day", + "2006-10-08": "White Sunday", "2006-10-09": "Columbus Day", "2006-10-31": "Halloween", "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", - "2006-12-22": "Christmas Eve (observed)", - "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-14": "Valentine's Day", "2007-02-19": "Washington's Birthday", "2007-03-17": "Saint Patrick's Day", + "2007-04-17": "American Samoa Flag Day", "2007-05-28": "Memorial Day", "2007-07-04": "Independence Day", + "2007-07-16": "Manu'a Islands Cession Day", "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", + "2007-10-14": "White Sunday", "2007-10-31": "Halloween", "2007-11-11": "Veterans Day", "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", - "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-21": "Martin Luther King Jr. Day", "2008-02-14": "Valentine's Day", "2008-02-18": "Washington's Birthday", "2008-03-17": "Saint Patrick's Day", + "2008-04-17": "American Samoa Flag Day", "2008-05-26": "Memorial Day", "2008-07-04": "Independence Day", + "2008-07-16": "Manu'a Islands Cession Day", "2008-09-01": "Labor Day", + "2008-10-12": "White Sunday", "2008-10-13": "Columbus Day", "2008-10-31": "Halloween", "2008-11-11": "Veterans Day", "2008-11-27": "Thanksgiving", - "2008-12-24": "Christmas Eve", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-02-14": "Valentine's Day", "2009-02-16": "Washington's Birthday", "2009-03-17": "Saint Patrick's Day", + "2009-04-17": "American Samoa Flag Day", "2009-05-25": "Memorial Day", "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", + "2009-07-16": "Manu'a Islands Cession Day", "2009-09-07": "Labor Day", + "2009-10-11": "White Sunday", "2009-10-12": "Columbus Day", "2009-10-31": "Halloween", "2009-11-11": "Veterans Day", "2009-11-26": "Thanksgiving", - "2009-12-24": "Christmas Eve", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-18": "Martin Luther King Jr. Day", "2010-02-14": "Valentine's Day", "2010-02-15": "Washington's Birthday", "2010-03-17": "Saint Patrick's Day", + "2010-04-16": "American Samoa Flag Day (observed)", + "2010-04-17": "American Samoa Flag Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", "2010-07-05": "Independence Day (observed)", + "2010-07-16": "Manu'a Islands Cession Day", "2010-09-06": "Labor Day", + "2010-10-10": "White Sunday", "2010-10-11": "Columbus Day", "2010-10-31": "Halloween", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-23": "Christmas Eve (observed)", - "2010-12-24": "Christmas Day (observed); Christmas Eve", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", @@ -908,15 +1002,18 @@ "2011-02-14": "Valentine's Day", "2011-02-21": "Washington's Birthday", "2011-03-17": "Saint Patrick's Day", + "2011-04-17": "American Samoa Flag Day", + "2011-04-18": "American Samoa Flag Day (observed)", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", + "2011-07-15": "Manu'a Islands Cession Day (observed)", + "2011-07-16": "Manu'a Islands Cession Day", "2011-09-05": "Labor Day", + "2011-10-09": "White Sunday", "2011-10-10": "Columbus Day", "2011-10-31": "Halloween", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", - "2011-12-23": "Christmas Eve (observed)", - "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", @@ -925,73 +1022,84 @@ "2012-02-14": "Valentine's Day", "2012-02-20": "Washington's Birthday", "2012-03-17": "Saint Patrick's Day", + "2012-04-17": "American Samoa Flag Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", + "2012-07-16": "Manu'a Islands Cession Day", "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", + "2012-10-14": "White Sunday", "2012-10-31": "Halloween", "2012-11-11": "Veterans Day", "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", - "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-14": "Valentine's Day", "2013-02-18": "Washington's Birthday", "2013-03-17": "Saint Patrick's Day", + "2013-04-17": "American Samoa Flag Day", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", + "2013-07-16": "Manu'a Islands Cession Day", "2013-09-02": "Labor Day", + "2013-10-13": "White Sunday", "2013-10-14": "Columbus Day", "2013-10-31": "Halloween", "2013-11-11": "Veterans Day", "2013-11-28": "Thanksgiving", - "2013-12-24": "Christmas Eve", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", "2014-02-14": "Valentine's Day", "2014-02-17": "Washington's Birthday", "2014-03-17": "Saint Patrick's Day", + "2014-04-17": "American Samoa Flag Day", "2014-05-26": "Memorial Day", "2014-07-04": "Independence Day", + "2014-07-16": "Manu'a Islands Cession Day", "2014-09-01": "Labor Day", + "2014-10-12": "White Sunday", "2014-10-13": "Columbus Day", "2014-10-31": "Halloween", "2014-11-11": "Veterans Day", "2014-11-27": "Thanksgiving", - "2014-12-24": "Christmas Eve", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-19": "Martin Luther King Jr. Day", "2015-02-14": "Valentine's Day", "2015-02-16": "Washington's Birthday", "2015-03-17": "Saint Patrick's Day", + "2015-04-17": "American Samoa Flag Day", "2015-05-25": "Memorial Day", "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", + "2015-07-16": "Manu'a Islands Cession Day", "2015-09-07": "Labor Day", + "2015-10-11": "White Sunday", "2015-10-12": "Columbus Day", "2015-10-31": "Halloween", "2015-11-11": "Veterans Day", "2015-11-26": "Thanksgiving", - "2015-12-24": "Christmas Eve", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-14": "Valentine's Day", "2016-02-15": "Washington's Birthday", "2016-03-17": "Saint Patrick's Day", + "2016-04-17": "American Samoa Flag Day", + "2016-04-18": "American Samoa Flag Day (observed)", "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", + "2016-07-15": "Manu'a Islands Cession Day (observed)", + "2016-07-16": "Manu'a Islands Cession Day", "2016-09-05": "Labor Day", + "2016-10-09": "White Sunday", "2016-10-10": "Columbus Day", "2016-10-31": "Halloween", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (observed)", - "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", @@ -1000,78 +1108,89 @@ "2017-02-14": "Valentine's Day", "2017-02-20": "Washington's Birthday", "2017-03-17": "Saint Patrick's Day", + "2017-04-17": "American Samoa Flag Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", + "2017-07-16": "Manu'a Islands Cession Day", + "2017-07-17": "Manu'a Islands Cession Day (observed)", "2017-09-04": "Labor Day", + "2017-10-08": "White Sunday", "2017-10-09": "Columbus Day", "2017-10-31": "Halloween", "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (observed)", - "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-14": "Valentine's Day", "2018-02-19": "Washington's Birthday", "2018-03-17": "Saint Patrick's Day", + "2018-04-17": "American Samoa Flag Day", "2018-05-28": "Memorial Day", "2018-07-04": "Independence Day", + "2018-07-16": "Manu'a Islands Cession Day", "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", + "2018-10-14": "White Sunday", "2018-10-31": "Halloween", "2018-11-11": "Veterans Day", "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", - "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-14": "Valentine's Day", "2019-02-18": "Washington's Birthday", "2019-03-17": "Saint Patrick's Day", + "2019-04-17": "American Samoa Flag Day", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", + "2019-07-16": "Manu'a Islands Cession Day", "2019-09-02": "Labor Day", + "2019-10-13": "White Sunday", "2019-10-14": "Columbus Day", "2019-10-31": "Halloween", "2019-11-11": "Veterans Day", "2019-11-28": "Thanksgiving", - "2019-12-24": "Christmas Eve", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", "2020-02-14": "Valentine's Day", "2020-02-17": "Washington's Birthday", "2020-03-17": "Saint Patrick's Day", + "2020-04-17": "American Samoa Flag Day", "2020-05-25": "Memorial Day", "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", + "2020-07-16": "Manu'a Islands Cession Day", "2020-09-07": "Labor Day", + "2020-10-11": "White Sunday", "2020-10-12": "Columbus Day", "2020-10-31": "Halloween", "2020-11-11": "Veterans Day", "2020-11-26": "Thanksgiving", - "2020-12-24": "Christmas Eve", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-14": "Valentine's Day", "2021-02-15": "Washington's Birthday", "2021-03-17": "Saint Patrick's Day", + "2021-04-16": "American Samoa Flag Day (observed)", + "2021-04-17": "American Samoa Flag Day", "2021-05-31": "Memorial Day", "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", "2021-07-05": "Independence Day (observed)", + "2021-07-16": "Manu'a Islands Cession Day", "2021-09-06": "Labor Day", + "2021-10-10": "White Sunday", "2021-10-11": "Columbus Day", "2021-10-31": "Halloween", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (observed)", - "2021-12-24": "Christmas Day (observed); Christmas Eve", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", @@ -1079,17 +1198,20 @@ "2022-02-14": "Valentine's Day", "2022-02-21": "Washington's Birthday", "2022-03-17": "Saint Patrick's Day", + "2022-04-17": "American Samoa Flag Day", + "2022-04-18": "American Samoa Flag Day (observed)", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", + "2022-07-15": "Manu'a Islands Cession Day (observed)", + "2022-07-16": "Manu'a Islands Cession Day", "2022-09-05": "Labor Day", + "2022-10-09": "White Sunday", "2022-10-10": "Columbus Day", "2022-10-31": "Halloween", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (observed)", - "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", @@ -1098,81 +1220,92 @@ "2023-02-14": "Valentine's Day", "2023-02-20": "Washington's Birthday", "2023-03-17": "Saint Patrick's Day", + "2023-04-17": "American Samoa Flag Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", + "2023-07-16": "Manu'a Islands Cession Day", + "2023-07-17": "Manu'a Islands Cession Day (observed)", "2023-09-04": "Labor Day", + "2023-10-08": "White Sunday", "2023-10-09": "Columbus Day", "2023-10-31": "Halloween", "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (observed)", - "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-15": "Martin Luther King Jr. Day", "2024-02-14": "Valentine's Day", "2024-02-19": "Washington's Birthday", "2024-03-17": "Saint Patrick's Day", + "2024-04-17": "American Samoa Flag Day", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", "2024-07-04": "Independence Day", + "2024-07-16": "Manu'a Islands Cession Day", "2024-09-02": "Labor Day", + "2024-10-13": "White Sunday", "2024-10-14": "Columbus Day", "2024-10-31": "Halloween", "2024-11-11": "Veterans Day", "2024-11-28": "Thanksgiving", - "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", "2025-02-14": "Valentine's Day", "2025-02-17": "Washington's Birthday", "2025-03-17": "Saint Patrick's Day", + "2025-04-17": "American Samoa Flag Day", "2025-05-26": "Memorial Day", "2025-06-19": "Juneteenth National Independence Day", "2025-07-04": "Independence Day", + "2025-07-16": "Manu'a Islands Cession Day", "2025-09-01": "Labor Day", + "2025-10-12": "White Sunday", "2025-10-13": "Columbus Day", "2025-10-31": "Halloween", "2025-11-11": "Veterans Day", "2025-11-27": "Thanksgiving", - "2025-12-24": "Christmas Eve", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-19": "Martin Luther King Jr. Day", "2026-02-14": "Valentine's Day", "2026-02-16": "Washington's Birthday", "2026-03-17": "Saint Patrick's Day", + "2026-04-17": "American Samoa Flag Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", + "2026-07-16": "Manu'a Islands Cession Day", "2026-09-07": "Labor Day", + "2026-10-11": "White Sunday", "2026-10-12": "Columbus Day", "2026-10-31": "Halloween", "2026-11-11": "Veterans Day", "2026-11-26": "Thanksgiving", - "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-14": "Valentine's Day", "2027-02-15": "Washington's Birthday", "2027-03-17": "Saint Patrick's Day", + "2027-04-16": "American Samoa Flag Day (observed)", + "2027-04-17": "American Samoa Flag Day", "2027-05-31": "Memorial Day", "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", "2027-07-05": "Independence Day (observed)", + "2027-07-16": "Manu'a Islands Cession Day", "2027-09-06": "Labor Day", + "2027-10-10": "White Sunday", "2027-10-11": "Columbus Day", "2027-10-31": "Halloween", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (observed)", - "2027-12-24": "Christmas Day (observed); Christmas Eve", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", @@ -1180,81 +1313,92 @@ "2028-02-14": "Valentine's Day", "2028-02-21": "Washington's Birthday", "2028-03-17": "Saint Patrick's Day", + "2028-04-17": "American Samoa Flag Day", "2028-05-29": "Memorial Day", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", + "2028-07-16": "Manu'a Islands Cession Day", + "2028-07-17": "Manu'a Islands Cession Day (observed)", "2028-09-04": "Labor Day", + "2028-10-08": "White Sunday", "2028-10-09": "Columbus Day", "2028-10-31": "Halloween", "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (observed)", - "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-14": "Valentine's Day", "2029-02-19": "Washington's Birthday", "2029-03-17": "Saint Patrick's Day", + "2029-04-17": "American Samoa Flag Day", "2029-05-28": "Memorial Day", "2029-06-19": "Juneteenth National Independence Day", "2029-07-04": "Independence Day", + "2029-07-16": "Manu'a Islands Cession Day", "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", + "2029-10-14": "White Sunday", "2029-10-31": "Halloween", "2029-11-11": "Veterans Day", "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", - "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-14": "Valentine's Day", "2030-02-18": "Washington's Birthday", "2030-03-17": "Saint Patrick's Day", + "2030-04-17": "American Samoa Flag Day", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", "2030-07-04": "Independence Day", + "2030-07-16": "Manu'a Islands Cession Day", "2030-09-02": "Labor Day", + "2030-10-13": "White Sunday", "2030-10-14": "Columbus Day", "2030-10-31": "Halloween", "2030-11-11": "Veterans Day", "2030-11-28": "Thanksgiving", - "2030-12-24": "Christmas Eve", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", "2031-02-14": "Valentine's Day", "2031-02-17": "Washington's Birthday", "2031-03-17": "Saint Patrick's Day", + "2031-04-17": "American Samoa Flag Day", "2031-05-26": "Memorial Day", "2031-06-19": "Juneteenth National Independence Day", "2031-07-04": "Independence Day", + "2031-07-16": "Manu'a Islands Cession Day", "2031-09-01": "Labor Day", + "2031-10-12": "White Sunday", "2031-10-13": "Columbus Day", "2031-10-31": "Halloween", "2031-11-11": "Veterans Day", "2031-11-27": "Thanksgiving", - "2031-12-24": "Christmas Eve", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-02-14": "Valentine's Day", "2032-02-16": "Washington's Birthday", "2032-03-17": "Saint Patrick's Day", + "2032-04-16": "American Samoa Flag Day (observed)", + "2032-04-17": "American Samoa Flag Day", "2032-05-31": "Memorial Day", "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", "2032-07-05": "Independence Day (observed)", + "2032-07-16": "Manu'a Islands Cession Day", "2032-09-06": "Labor Day", + "2032-10-10": "White Sunday", "2032-10-11": "Columbus Day", "2032-10-31": "Halloween", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (observed)", - "2032-12-24": "Christmas Day (observed); Christmas Eve", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", @@ -1262,17 +1406,20 @@ "2033-02-14": "Valentine's Day", "2033-02-21": "Washington's Birthday", "2033-03-17": "Saint Patrick's Day", + "2033-04-17": "American Samoa Flag Day", + "2033-04-18": "American Samoa Flag Day (observed)", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", + "2033-07-15": "Manu'a Islands Cession Day (observed)", + "2033-07-16": "Manu'a Islands Cession Day", "2033-09-05": "Labor Day", + "2033-10-09": "White Sunday", "2033-10-10": "Columbus Day", "2033-10-31": "Halloween", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (observed)", - "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", @@ -1281,82 +1428,93 @@ "2034-02-14": "Valentine's Day", "2034-02-20": "Washington's Birthday", "2034-03-17": "Saint Patrick's Day", + "2034-04-17": "American Samoa Flag Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", + "2034-07-16": "Manu'a Islands Cession Day", + "2034-07-17": "Manu'a Islands Cession Day (observed)", "2034-09-04": "Labor Day", + "2034-10-08": "White Sunday", "2034-10-09": "Columbus Day", "2034-10-31": "Halloween", "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (observed)", - "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-14": "Valentine's Day", "2035-02-19": "Washington's Birthday", "2035-03-17": "Saint Patrick's Day", + "2035-04-17": "American Samoa Flag Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", "2035-07-04": "Independence Day", + "2035-07-16": "Manu'a Islands Cession Day", "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", + "2035-10-14": "White Sunday", "2035-10-31": "Halloween", "2035-11-11": "Veterans Day", "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", - "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-21": "Martin Luther King Jr. Day", "2036-02-14": "Valentine's Day", "2036-02-18": "Washington's Birthday", "2036-03-17": "Saint Patrick's Day", + "2036-04-17": "American Samoa Flag Day", "2036-05-26": "Memorial Day", "2036-06-19": "Juneteenth National Independence Day", "2036-07-04": "Independence Day", + "2036-07-16": "Manu'a Islands Cession Day", "2036-09-01": "Labor Day", + "2036-10-12": "White Sunday", "2036-10-13": "Columbus Day", "2036-10-31": "Halloween", "2036-11-11": "Veterans Day", "2036-11-27": "Thanksgiving", - "2036-12-24": "Christmas Eve", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-19": "Martin Luther King Jr. Day", "2037-02-14": "Valentine's Day", "2037-02-16": "Washington's Birthday", "2037-03-17": "Saint Patrick's Day", + "2037-04-17": "American Samoa Flag Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", + "2037-07-16": "Manu'a Islands Cession Day", "2037-09-07": "Labor Day", + "2037-10-11": "White Sunday", "2037-10-12": "Columbus Day", "2037-10-31": "Halloween", "2037-11-11": "Veterans Day", "2037-11-26": "Thanksgiving", - "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-14": "Valentine's Day", "2038-02-15": "Washington's Birthday", "2038-03-17": "Saint Patrick's Day", + "2038-04-16": "American Samoa Flag Day (observed)", + "2038-04-17": "American Samoa Flag Day", "2038-05-31": "Memorial Day", "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", "2038-07-05": "Independence Day (observed)", + "2038-07-16": "Manu'a Islands Cession Day", "2038-09-06": "Labor Day", + "2038-10-10": "White Sunday", "2038-10-11": "Columbus Day", "2038-10-31": "Halloween", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (observed)", - "2038-12-24": "Christmas Day (observed); Christmas Eve", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", @@ -1364,17 +1522,20 @@ "2039-02-14": "Valentine's Day", "2039-02-21": "Washington's Birthday", "2039-03-17": "Saint Patrick's Day", + "2039-04-17": "American Samoa Flag Day", + "2039-04-18": "American Samoa Flag Day (observed)", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", + "2039-07-15": "Manu'a Islands Cession Day (observed)", + "2039-07-16": "Manu'a Islands Cession Day", "2039-09-05": "Labor Day", + "2039-10-09": "White Sunday", "2039-10-10": "Columbus Day", "2039-10-31": "Halloween", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (observed)", - "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", @@ -1383,79 +1544,90 @@ "2040-02-14": "Valentine's Day", "2040-02-20": "Washington's Birthday", "2040-03-17": "Saint Patrick's Day", + "2040-04-17": "American Samoa Flag Day", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", "2040-07-04": "Independence Day", + "2040-07-16": "Manu'a Islands Cession Day", "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", + "2040-10-14": "White Sunday", "2040-10-31": "Halloween", "2040-11-11": "Veterans Day", "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", - "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-14": "Valentine's Day", "2041-02-18": "Washington's Birthday", "2041-03-17": "Saint Patrick's Day", + "2041-04-17": "American Samoa Flag Day", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", "2041-07-04": "Independence Day", + "2041-07-16": "Manu'a Islands Cession Day", "2041-09-02": "Labor Day", + "2041-10-13": "White Sunday", "2041-10-14": "Columbus Day", "2041-10-31": "Halloween", "2041-11-11": "Veterans Day", "2041-11-28": "Thanksgiving", - "2041-12-24": "Christmas Eve", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", "2042-02-14": "Valentine's Day", "2042-02-17": "Washington's Birthday", "2042-03-17": "Saint Patrick's Day", + "2042-04-17": "American Samoa Flag Day", "2042-05-26": "Memorial Day", "2042-06-19": "Juneteenth National Independence Day", "2042-07-04": "Independence Day", + "2042-07-16": "Manu'a Islands Cession Day", "2042-09-01": "Labor Day", + "2042-10-12": "White Sunday", "2042-10-13": "Columbus Day", "2042-10-31": "Halloween", "2042-11-11": "Veterans Day", "2042-11-27": "Thanksgiving", - "2042-12-24": "Christmas Eve", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-01-19": "Martin Luther King Jr. Day", "2043-02-14": "Valentine's Day", "2043-02-16": "Washington's Birthday", "2043-03-17": "Saint Patrick's Day", + "2043-04-17": "American Samoa Flag Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", + "2043-07-16": "Manu'a Islands Cession Day", "2043-09-07": "Labor Day", + "2043-10-11": "White Sunday", "2043-10-12": "Columbus Day", "2043-10-31": "Halloween", "2043-11-11": "Veterans Day", "2043-11-26": "Thanksgiving", - "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-14": "Valentine's Day", "2044-02-15": "Washington's Birthday", "2044-03-17": "Saint Patrick's Day", + "2044-04-17": "American Samoa Flag Day", + "2044-04-18": "American Samoa Flag Day (observed)", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", + "2044-07-15": "Manu'a Islands Cession Day (observed)", + "2044-07-16": "Manu'a Islands Cession Day", "2044-09-05": "Labor Day", + "2044-10-09": "White Sunday", "2044-10-10": "Columbus Day", "2044-10-31": "Halloween", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (observed)", - "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", @@ -1464,82 +1636,93 @@ "2045-02-14": "Valentine's Day", "2045-02-20": "Washington's Birthday", "2045-03-17": "Saint Patrick's Day", + "2045-04-17": "American Samoa Flag Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", + "2045-07-16": "Manu'a Islands Cession Day", + "2045-07-17": "Manu'a Islands Cession Day (observed)", "2045-09-04": "Labor Day", + "2045-10-08": "White Sunday", "2045-10-09": "Columbus Day", "2045-10-31": "Halloween", "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (observed)", - "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-14": "Valentine's Day", "2046-02-19": "Washington's Birthday", "2046-03-17": "Saint Patrick's Day", + "2046-04-17": "American Samoa Flag Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", "2046-07-04": "Independence Day", + "2046-07-16": "Manu'a Islands Cession Day", "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", + "2046-10-14": "White Sunday", "2046-10-31": "Halloween", "2046-11-11": "Veterans Day", "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", - "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-14": "Valentine's Day", "2047-02-18": "Washington's Birthday", "2047-03-17": "Saint Patrick's Day", + "2047-04-17": "American Samoa Flag Day", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", "2047-07-04": "Independence Day", + "2047-07-16": "Manu'a Islands Cession Day", "2047-09-02": "Labor Day", + "2047-10-13": "White Sunday", "2047-10-14": "Columbus Day", "2047-10-31": "Halloween", "2047-11-11": "Veterans Day", "2047-11-28": "Thanksgiving", - "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", "2048-02-14": "Valentine's Day", "2048-02-17": "Washington's Birthday", "2048-03-17": "Saint Patrick's Day", + "2048-04-17": "American Samoa Flag Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", + "2048-07-16": "Manu'a Islands Cession Day", "2048-09-07": "Labor Day", + "2048-10-11": "White Sunday", "2048-10-12": "Columbus Day", "2048-10-31": "Halloween", "2048-11-11": "Veterans Day", "2048-11-26": "Thanksgiving", - "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-14": "Valentine's Day", "2049-02-15": "Washington's Birthday", "2049-03-17": "Saint Patrick's Day", + "2049-04-16": "American Samoa Flag Day (observed)", + "2049-04-17": "American Samoa Flag Day", "2049-05-31": "Memorial Day", "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", "2049-07-05": "Independence Day (observed)", + "2049-07-16": "Manu'a Islands Cession Day", "2049-09-06": "Labor Day", + "2049-10-10": "White Sunday", "2049-10-11": "Columbus Day", "2049-10-31": "Halloween", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (observed)", - "2049-12-24": "Christmas Day (observed); Christmas Eve", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", @@ -1547,17 +1730,20 @@ "2050-02-14": "Valentine's Day", "2050-02-21": "Washington's Birthday", "2050-03-17": "Saint Patrick's Day", + "2050-04-17": "American Samoa Flag Day", + "2050-04-18": "American Samoa Flag Day (observed)", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", + "2050-07-15": "Manu'a Islands Cession Day (observed)", + "2050-07-16": "Manu'a Islands Cession Day", "2050-09-05": "Labor Day", + "2050-10-09": "White Sunday", "2050-10-10": "Columbus Day", "2050-10-31": "Halloween", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (observed)", - "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/AZ_COMMON.json b/snapshots/countries/AZ_COMMON.json index f70f7b41e..95d1045d5 100644 --- a/snapshots/countries/AZ_COMMON.json +++ b/snapshots/countries/AZ_COMMON.json @@ -701,7 +701,10 @@ "2024-01-01": "New Year's Day", "2024-01-02": "New Year's Day", "2024-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2024-01-04": "Day off (substituted from 12/30/2023)", + "2024-01-05": "Day off (substituted from 01/07/2024)", "2024-01-20": "Martyrs' Day", + "2024-02-07": "Presidential elections", "2024-03-08": "Women's Day", "2024-03-20": "Spring Festival", "2024-03-21": "Spring Festival", @@ -712,20 +715,22 @@ "2024-03-26": "Spring Festival (observed)", "2024-04-10": "Eid al-Fitr", "2024-04-11": "Eid al-Fitr", + "2024-04-12": "Day off (substituted from 04/06/2024)", "2024-05-09": "Victory over Fascism Day", "2024-05-28": "Independence Day", "2024-06-15": "National Liberation Day", - "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated)", + "2024-06-16": "Eid al-Adha", + "2024-06-17": "Eid al-Adha", "2024-06-18": "National Liberation Day (observed)", - "2024-06-19": "Eid al-Adha (observed, estimated)", + "2024-06-19": "Eid al-Adha (observed)", "2024-06-26": "Armed Forces Day", "2024-09-27": "Memorial Day", "2024-10-18": "Independence Restoration Day", "2024-11-08": "Victory Day", "2024-11-09": "National Flag Day", "2024-11-11": "National Flag Day (observed)", - "2024-11-12": "Constitution Day", + "2024-11-12": "Constitution Day; Day off (substituted from 11/16/2024)", + "2024-11-13": "Day off (substituted from 11/23/2024)", "2024-11-17": "National Revival Day", "2024-12-31": "International Azerbaijanis Solidarity Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/CG_COMMON.json b/snapshots/countries/CG_COMMON.json new file mode 100644 index 000000000..f8a00a67b --- /dev/null +++ b/snapshots/countries/CG_COMMON.json @@ -0,0 +1,552 @@ +{ + "1994-01-01": "New Year's Day", + "1994-04-04": "Easter Monday", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", + "1994-05-23": "Whit Monday", + "1994-06-10": "Reconciliation Day", + "1994-08-15": "National Day", + "1994-11-01": "All Saints' Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", + "1995-06-05": "Whit Monday", + "1995-06-10": "Reconciliation Day", + "1995-08-15": "National Day", + "1995-11-01": "All Saints' Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-04-08": "Easter Monday", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", + "1996-05-27": "Whit Monday", + "1996-06-10": "Reconciliation Day", + "1996-08-15": "National Day", + "1996-11-01": "All Saints' Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-03-31": "Easter Monday", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", + "1997-05-19": "Whit Monday", + "1997-06-10": "Reconciliation Day", + "1997-08-15": "National Day", + "1997-11-01": "All Saints' Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-04-13": "Easter Monday", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", + "1998-06-01": "Whit Monday", + "1998-06-10": "Reconciliation Day", + "1998-08-15": "National Day", + "1998-11-01": "All Saints' Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-04-05": "Easter Monday", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", + "1999-05-24": "Whit Monday", + "1999-06-10": "Reconciliation Day", + "1999-08-15": "National Day", + "1999-11-01": "All Saints' Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", + "2000-06-10": "Reconciliation Day", + "2000-06-12": "Whit Monday", + "2000-08-15": "National Day", + "2000-11-01": "All Saints' Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-04-16": "Easter Monday", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", + "2001-06-04": "Whit Monday", + "2001-06-10": "Reconciliation Day", + "2001-08-15": "National Day", + "2001-11-01": "All Saints' Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-04-01": "Easter Monday", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", + "2002-05-20": "Whit Monday", + "2002-06-10": "Reconciliation Day", + "2002-08-15": "National Day", + "2002-11-01": "All Saints' Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-04-21": "Easter Monday", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", + "2003-06-09": "Whit Monday", + "2003-06-10": "Reconciliation Day", + "2003-08-15": "National Day", + "2003-11-01": "All Saints' Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-04-12": "Easter Monday", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", + "2004-05-31": "Whit Monday", + "2004-06-10": "Reconciliation Day", + "2004-08-15": "National Day", + "2004-11-01": "All Saints' Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-03-28": "Easter Monday", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", + "2005-05-16": "Whit Monday", + "2005-06-10": "Reconciliation Day", + "2005-08-15": "National Day", + "2005-11-01": "All Saints' Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", + "2006-06-05": "Whit Monday", + "2006-06-10": "Reconciliation Day", + "2006-08-15": "National Day", + "2006-11-01": "All Saints' Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-04-09": "Easter Monday", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", + "2007-05-28": "Whit Monday", + "2007-06-10": "Reconciliation Day", + "2007-08-15": "National Day", + "2007-11-01": "All Saints' Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-03-24": "Easter Monday", + "2008-05-01": "Ascension Day; Labor Day", + "2008-05-12": "Whit Monday", + "2008-06-10": "Reconciliation Day", + "2008-08-15": "National Day", + "2008-11-01": "All Saints' Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-04-13": "Easter Monday", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", + "2009-06-01": "Whit Monday", + "2009-06-10": "Reconciliation Day", + "2009-08-15": "National Day", + "2009-11-01": "All Saints' Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-04-05": "Easter Monday", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", + "2010-05-24": "Whit Monday", + "2010-06-10": "Reconciliation Day", + "2010-08-15": "National Day", + "2010-11-01": "All Saints' Day", + "2010-11-28": "Republic Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-04-25": "Easter Monday", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", + "2011-06-10": "Reconciliation Day", + "2011-06-13": "Whit Monday", + "2011-08-15": "National Day", + "2011-11-01": "All Saints' Day", + "2011-11-28": "Republic Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-04-09": "Easter Monday", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", + "2012-05-28": "Whit Monday", + "2012-06-10": "Reconciliation Day", + "2012-08-15": "National Day", + "2012-11-01": "All Saints' Day", + "2012-11-28": "Republic Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-04-01": "Easter Monday", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", + "2013-05-20": "Whit Monday", + "2013-06-10": "Reconciliation Day", + "2013-08-15": "National Day", + "2013-11-01": "All Saints' Day", + "2013-11-28": "Republic Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-04-21": "Easter Monday", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", + "2014-06-09": "Whit Monday", + "2014-06-10": "Reconciliation Day", + "2014-08-15": "National Day", + "2014-11-01": "All Saints' Day", + "2014-11-28": "Republic Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-06": "Easter Monday", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", + "2015-05-25": "Whit Monday", + "2015-06-10": "Reconciliation Day", + "2015-08-15": "National Day", + "2015-11-01": "All Saints' Day", + "2015-11-28": "Republic Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-28": "Easter Monday", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", + "2016-05-16": "Whit Monday", + "2016-06-10": "Reconciliation Day", + "2016-08-15": "National Day", + "2016-11-01": "All Saints' Day", + "2016-11-28": "Republic Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", + "2017-06-05": "Whit Monday", + "2017-06-10": "Reconciliation Day", + "2017-08-15": "National Day", + "2017-11-01": "All Saints' Day", + "2017-11-28": "Republic Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-04-02": "Easter Monday", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", + "2018-05-21": "Whit Monday", + "2018-06-10": "Reconciliation Day", + "2018-08-15": "National Day", + "2018-11-01": "All Saints' Day", + "2018-11-28": "Republic Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-22": "Easter Monday", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", + "2019-06-10": "Reconciliation Day; Whit Monday", + "2019-08-15": "National Day", + "2019-11-01": "All Saints' Day", + "2019-11-28": "Republic Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-13": "Easter Monday", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", + "2020-06-01": "Whit Monday", + "2020-06-10": "Reconciliation Day", + "2020-08-15": "National Day", + "2020-11-01": "All Saints' Day", + "2020-11-28": "Republic Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-05": "Easter Monday", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", + "2021-05-24": "Whit Monday", + "2021-06-10": "Reconciliation Day", + "2021-08-15": "National Day", + "2021-11-01": "All Saints' Day", + "2021-11-28": "Republic Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-04-18": "Easter Monday", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", + "2022-06-06": "Whit Monday", + "2022-06-10": "Reconciliation Day", + "2022-08-15": "National Day", + "2022-11-01": "All Saints' Day", + "2022-11-28": "Republic Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", + "2023-05-29": "Whit Monday", + "2023-06-10": "Reconciliation Day", + "2023-08-15": "National Day", + "2023-11-01": "All Saints' Day", + "2023-11-28": "Republic Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-04-01": "Easter Monday", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", + "2024-05-20": "Whit Monday", + "2024-06-10": "Reconciliation Day", + "2024-08-15": "National Day", + "2024-11-01": "All Saints' Day", + "2024-11-28": "Republic Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-21": "Easter Monday", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", + "2025-06-09": "Whit Monday", + "2025-06-10": "Reconciliation Day", + "2025-08-15": "National Day", + "2025-11-01": "All Saints' Day", + "2025-11-28": "Republic Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-06": "Easter Monday", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", + "2026-05-25": "Whit Monday", + "2026-06-10": "Reconciliation Day", + "2026-08-15": "National Day", + "2026-11-01": "All Saints' Day", + "2026-11-28": "Republic Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-29": "Easter Monday", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", + "2027-05-17": "Whit Monday", + "2027-06-10": "Reconciliation Day", + "2027-08-15": "National Day", + "2027-11-01": "All Saints' Day", + "2027-11-28": "Republic Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", + "2028-06-05": "Whit Monday", + "2028-06-10": "Reconciliation Day", + "2028-08-15": "National Day", + "2028-11-01": "All Saints' Day", + "2028-11-28": "Republic Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-04-02": "Easter Monday", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", + "2029-05-21": "Whit Monday", + "2029-06-10": "Reconciliation Day", + "2029-08-15": "National Day", + "2029-11-01": "All Saints' Day", + "2029-11-28": "Republic Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-22": "Easter Monday", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", + "2030-06-10": "Reconciliation Day; Whit Monday", + "2030-08-15": "National Day", + "2030-11-01": "All Saints' Day", + "2030-11-28": "Republic Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-14": "Easter Monday", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", + "2031-06-02": "Whit Monday", + "2031-06-10": "Reconciliation Day", + "2031-08-15": "National Day", + "2031-11-01": "All Saints' Day", + "2031-11-28": "Republic Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-29": "Easter Monday", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", + "2032-05-17": "Whit Monday", + "2032-06-10": "Reconciliation Day", + "2032-08-15": "National Day", + "2032-11-01": "All Saints' Day", + "2032-11-28": "Republic Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-04-18": "Easter Monday", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", + "2033-06-06": "Whit Monday", + "2033-06-10": "Reconciliation Day", + "2033-08-15": "National Day", + "2033-11-01": "All Saints' Day", + "2033-11-28": "Republic Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", + "2034-05-29": "Whit Monday", + "2034-06-10": "Reconciliation Day", + "2034-08-15": "National Day", + "2034-11-01": "All Saints' Day", + "2034-11-28": "Republic Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-26": "Easter Monday", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", + "2035-05-14": "Whit Monday", + "2035-06-10": "Reconciliation Day", + "2035-08-15": "National Day", + "2035-11-01": "All Saints' Day", + "2035-11-28": "Republic Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-14": "Easter Monday", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", + "2036-06-02": "Whit Monday", + "2036-06-10": "Reconciliation Day", + "2036-08-15": "National Day", + "2036-11-01": "All Saints' Day", + "2036-11-28": "Republic Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-06": "Easter Monday", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", + "2037-05-25": "Whit Monday", + "2037-06-10": "Reconciliation Day", + "2037-08-15": "National Day", + "2037-11-01": "All Saints' Day", + "2037-11-28": "Republic Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-26": "Easter Monday", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", + "2038-06-10": "Reconciliation Day", + "2038-06-14": "Whit Monday", + "2038-08-15": "National Day", + "2038-11-01": "All Saints' Day", + "2038-11-28": "Republic Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-04-11": "Easter Monday", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", + "2039-05-30": "Whit Monday", + "2039-06-10": "Reconciliation Day", + "2039-08-15": "National Day", + "2039-11-01": "All Saints' Day", + "2039-11-28": "Republic Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-04-02": "Easter Monday", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", + "2040-05-21": "Whit Monday", + "2040-06-10": "Reconciliation Day", + "2040-08-15": "National Day", + "2040-11-01": "All Saints' Day", + "2040-11-28": "Republic Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-22": "Easter Monday", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", + "2041-06-10": "Reconciliation Day; Whit Monday", + "2041-08-15": "National Day", + "2041-11-01": "All Saints' Day", + "2041-11-28": "Republic Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-07": "Easter Monday", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", + "2042-05-26": "Whit Monday", + "2042-06-10": "Reconciliation Day", + "2042-08-15": "National Day", + "2042-11-01": "All Saints' Day", + "2042-11-28": "Republic Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-30": "Easter Monday", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", + "2043-05-18": "Whit Monday", + "2043-06-10": "Reconciliation Day", + "2043-08-15": "National Day", + "2043-11-01": "All Saints' Day", + "2043-11-28": "Republic Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-18": "Easter Monday", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", + "2044-06-06": "Whit Monday", + "2044-06-10": "Reconciliation Day", + "2044-08-15": "National Day", + "2044-11-01": "All Saints' Day", + "2044-11-28": "Republic Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", + "2045-05-29": "Whit Monday", + "2045-06-10": "Reconciliation Day", + "2045-08-15": "National Day", + "2045-11-01": "All Saints' Day", + "2045-11-28": "Republic Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-26": "Easter Monday", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", + "2046-05-14": "Whit Monday", + "2046-06-10": "Reconciliation Day", + "2046-08-15": "National Day", + "2046-11-01": "All Saints' Day", + "2046-11-28": "Republic Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-15": "Easter Monday", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", + "2047-06-03": "Whit Monday", + "2047-06-10": "Reconciliation Day", + "2047-08-15": "National Day", + "2047-11-01": "All Saints' Day", + "2047-11-28": "Republic Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-06": "Easter Monday", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", + "2048-05-25": "Whit Monday", + "2048-06-10": "Reconciliation Day", + "2048-08-15": "National Day", + "2048-11-01": "All Saints' Day", + "2048-11-28": "Republic Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-19": "Easter Monday", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", + "2049-06-07": "Whit Monday", + "2049-06-10": "Reconciliation Day", + "2049-08-15": "National Day", + "2049-11-01": "All Saints' Day", + "2049-11-28": "Republic Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-04-11": "Easter Monday", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", + "2050-05-30": "Whit Monday", + "2050-06-10": "Reconciliation Day", + "2050-08-15": "National Day", + "2050-11-01": "All Saints' Day", + "2050-11-28": "Republic Day", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/CN_COMMON.json b/snapshots/countries/CN_COMMON.json index ccaa2c53f..17b549996 100644 --- a/snapshots/countries/CN_COMMON.json +++ b/snapshots/countries/CN_COMMON.json @@ -918,7 +918,7 @@ "2015-06-20": "Dragon Boat Festival", "2015-06-22": "Dragon Boat Festival (observed)", "2015-08-01": "Army Day", - "2015-09-03": "70th Anniversary of the Victory of the Chinese People\u2019s War of Resistance against Japanese Aggression and the World Anti-Fascist War", + "2015-09-03": "70th Anniversary of the Victory of the Chinese People's War of Resistance against Japanese Aggression and the World Anti-Fascist War", "2015-09-04": "Day off (substituted from 09/06/2015)", "2015-09-27": "Mid-Autumn Festival", "2015-10-01": "National Day", diff --git a/snapshots/countries/CW_COMMON.json b/snapshots/countries/CW_COMMON.json index 817d7b6c1..9868d1cc2 100644 --- a/snapshots/countries/CW_COMMON.json +++ b/snapshots/countries/CW_COMMON.json @@ -9,6 +9,7 @@ "1954-05-27": "Ascension Day", "1954-12-25": "Christmas Day", "1954-12-26": "Second Day of Christmas", + "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", "1955-02-21": "Carnival Monday", "1955-04-08": "Good Friday", @@ -19,6 +20,7 @@ "1955-05-19": "Ascension Day", "1955-12-25": "Christmas Day", "1955-12-26": "Second Day of Christmas", + "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", "1956-02-13": "Carnival Monday", "1956-03-30": "Good Friday", @@ -29,6 +31,7 @@ "1956-05-10": "Ascension Day", "1956-12-25": "Christmas Day", "1956-12-26": "Second Day of Christmas", + "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", "1957-03-04": "Carnival Monday", "1957-04-19": "Good Friday", @@ -39,6 +42,7 @@ "1957-05-30": "Ascension Day", "1957-12-25": "Christmas Day", "1957-12-26": "Second Day of Christmas", + "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", "1958-02-17": "Carnival Monday", "1958-04-04": "Good Friday", @@ -49,6 +53,7 @@ "1958-05-15": "Ascension Day", "1958-12-25": "Christmas Day", "1958-12-26": "Second Day of Christmas", + "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", "1959-02-09": "Carnival Monday", "1959-03-27": "Good Friday", @@ -59,6 +64,7 @@ "1959-05-07": "Ascension Day", "1959-12-25": "Christmas Day", "1959-12-26": "Second Day of Christmas", + "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", "1960-02-29": "Carnival Monday", "1960-04-15": "Good Friday", @@ -69,6 +75,7 @@ "1960-05-26": "Ascension Day", "1960-12-25": "Christmas Day", "1960-12-26": "Second Day of Christmas", + "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", "1961-02-13": "Carnival Monday", "1961-03-31": "Good Friday", @@ -79,6 +86,7 @@ "1961-05-11": "Ascension Day", "1961-12-25": "Christmas Day", "1961-12-26": "Second Day of Christmas", + "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", "1962-03-05": "Carnival Monday", "1962-04-20": "Good Friday", @@ -89,6 +97,7 @@ "1962-05-31": "Ascension Day", "1962-12-25": "Christmas Day", "1962-12-26": "Second Day of Christmas", + "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", "1963-02-25": "Carnival Monday", "1963-04-12": "Good Friday", @@ -99,6 +108,7 @@ "1963-05-23": "Ascension Day", "1963-12-25": "Christmas Day", "1963-12-26": "Second Day of Christmas", + "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-02-10": "Carnival Monday", "1964-03-27": "Good Friday", @@ -109,6 +119,7 @@ "1964-05-07": "Ascension Day", "1964-12-25": "Christmas Day", "1964-12-26": "Second Day of Christmas", + "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", "1965-03-01": "Carnival Monday", "1965-04-16": "Good Friday", @@ -119,6 +130,7 @@ "1965-05-27": "Ascension Day", "1965-12-25": "Christmas Day", "1965-12-26": "Second Day of Christmas", + "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-02-21": "Carnival Monday", "1966-04-08": "Good Friday", @@ -129,6 +141,7 @@ "1966-05-19": "Ascension Day", "1966-12-25": "Christmas Day", "1966-12-26": "Second Day of Christmas", + "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", "1967-02-06": "Carnival Monday", "1967-03-24": "Good Friday", @@ -139,6 +152,7 @@ "1967-05-04": "Ascension Day", "1967-12-25": "Christmas Day", "1967-12-26": "Second Day of Christmas", + "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", "1968-02-26": "Carnival Monday", "1968-04-12": "Good Friday", @@ -149,6 +163,7 @@ "1968-05-23": "Ascension Day", "1968-12-25": "Christmas Day", "1968-12-26": "Second Day of Christmas", + "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-02-17": "Carnival Monday", "1969-04-04": "Good Friday", @@ -159,6 +174,7 @@ "1969-05-15": "Ascension Day", "1969-12-25": "Christmas Day", "1969-12-26": "Second Day of Christmas", + "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-02-09": "Carnival Monday", "1970-03-27": "Good Friday", @@ -169,6 +185,7 @@ "1970-05-07": "Ascension Day", "1970-12-25": "Christmas Day", "1970-12-26": "Second Day of Christmas", + "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-02-22": "Carnival Monday", "1971-04-09": "Good Friday", @@ -179,6 +196,7 @@ "1971-05-20": "Ascension Day", "1971-12-25": "Christmas Day", "1971-12-26": "Second Day of Christmas", + "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", "1972-02-14": "Carnival Monday", "1972-03-31": "Good Friday", @@ -189,6 +207,7 @@ "1972-05-11": "Ascension Day", "1972-12-25": "Christmas Day", "1972-12-26": "Second Day of Christmas", + "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", "1973-03-05": "Carnival Monday", "1973-04-20": "Good Friday", @@ -199,6 +218,7 @@ "1973-05-31": "Ascension Day", "1973-12-25": "Christmas Day", "1973-12-26": "Second Day of Christmas", + "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", "1974-02-25": "Carnival Monday", "1974-04-12": "Good Friday", @@ -209,6 +229,7 @@ "1974-05-23": "Ascension Day", "1974-12-25": "Christmas Day", "1974-12-26": "Second Day of Christmas", + "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", "1975-02-10": "Carnival Monday", "1975-03-28": "Good Friday", @@ -219,6 +240,7 @@ "1975-05-08": "Ascension Day", "1975-12-25": "Christmas Day", "1975-12-26": "Second Day of Christmas", + "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", "1976-03-01": "Carnival Monday", "1976-04-16": "Good Friday", @@ -229,6 +251,7 @@ "1976-05-27": "Ascension Day", "1976-12-25": "Christmas Day", "1976-12-26": "Second Day of Christmas", + "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", "1977-02-21": "Carnival Monday", "1977-04-08": "Good Friday", @@ -239,6 +262,7 @@ "1977-05-19": "Ascension Day", "1977-12-25": "Christmas Day", "1977-12-26": "Second Day of Christmas", + "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", "1978-02-06": "Carnival Monday", "1978-03-24": "Good Friday", @@ -249,6 +273,7 @@ "1978-05-04": "Ascension Day", "1978-12-25": "Christmas Day", "1978-12-26": "Second Day of Christmas", + "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", "1979-02-26": "Carnival Monday", "1979-04-13": "Good Friday", @@ -259,6 +284,7 @@ "1979-05-24": "Ascension Day", "1979-12-25": "Christmas Day", "1979-12-26": "Second Day of Christmas", + "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", "1980-02-18": "Carnival Monday", "1980-04-04": "Good Friday", @@ -269,6 +295,7 @@ "1980-05-15": "Ascension Day", "1980-12-25": "Christmas Day", "1980-12-26": "Second Day of Christmas", + "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", "1981-03-02": "Carnival Monday", "1981-04-17": "Good Friday", @@ -279,6 +306,7 @@ "1981-05-28": "Ascension Day", "1981-12-25": "Christmas Day", "1981-12-26": "Second Day of Christmas", + "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", "1982-02-22": "Carnival Monday", "1982-04-09": "Good Friday", @@ -289,6 +317,7 @@ "1982-05-20": "Ascension Day", "1982-12-25": "Christmas Day", "1982-12-26": "Second Day of Christmas", + "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", "1983-02-14": "Carnival Monday", "1983-04-01": "Good Friday", @@ -299,6 +328,7 @@ "1983-05-12": "Ascension Day", "1983-12-25": "Christmas Day", "1983-12-26": "Second Day of Christmas", + "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", "1984-03-05": "Carnival Monday", "1984-04-20": "Good Friday", @@ -310,6 +340,7 @@ "1984-07-02": "National Anthem and Flag Day", "1984-12-25": "Christmas Day", "1984-12-26": "Second Day of Christmas", + "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", "1985-02-18": "Carnival Monday", "1985-04-05": "Good Friday", @@ -321,6 +352,7 @@ "1985-07-02": "National Anthem and Flag Day", "1985-12-25": "Christmas Day", "1985-12-26": "Second Day of Christmas", + "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", "1986-02-10": "Carnival Monday", "1986-03-28": "Good Friday", @@ -332,6 +364,7 @@ "1986-07-02": "National Anthem and Flag Day", "1986-12-25": "Christmas Day", "1986-12-26": "Second Day of Christmas", + "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", "1987-03-02": "Carnival Monday", "1987-04-17": "Good Friday", @@ -343,6 +376,7 @@ "1987-07-02": "National Anthem and Flag Day", "1987-12-25": "Christmas Day", "1987-12-26": "Second Day of Christmas", + "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", "1988-02-15": "Carnival Monday", "1988-04-01": "Good Friday", @@ -354,6 +388,7 @@ "1988-07-02": "National Anthem and Flag Day", "1988-12-25": "Christmas Day", "1988-12-26": "Second Day of Christmas", + "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", "1989-02-06": "Carnival Monday", "1989-03-24": "Good Friday", @@ -365,6 +400,7 @@ "1989-07-02": "National Anthem and Flag Day", "1989-12-25": "Christmas Day", "1989-12-26": "Second Day of Christmas", + "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", "1990-02-26": "Carnival Monday", "1990-04-13": "Good Friday", @@ -376,6 +412,7 @@ "1990-07-02": "National Anthem and Flag Day", "1990-12-25": "Christmas Day", "1990-12-26": "Second Day of Christmas", + "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", "1991-02-11": "Carnival Monday", "1991-03-29": "Good Friday", @@ -387,6 +424,7 @@ "1991-07-02": "National Anthem and Flag Day", "1991-12-25": "Christmas Day", "1991-12-26": "Second Day of Christmas", + "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", "1992-03-02": "Carnival Monday", "1992-04-17": "Good Friday", @@ -398,6 +436,7 @@ "1992-07-02": "National Anthem and Flag Day", "1992-12-25": "Christmas Day", "1992-12-26": "Second Day of Christmas", + "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", "1993-02-22": "Carnival Monday", "1993-04-09": "Good Friday", @@ -409,6 +448,7 @@ "1993-07-02": "National Anthem and Flag Day", "1993-12-25": "Christmas Day", "1993-12-26": "Second Day of Christmas", + "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", "1994-02-14": "Carnival Monday", "1994-04-01": "Good Friday", @@ -420,6 +460,7 @@ "1994-07-02": "National Anthem and Flag Day", "1994-12-25": "Christmas Day", "1994-12-26": "Second Day of Christmas", + "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", "1995-02-27": "Carnival Monday", "1995-04-14": "Good Friday", @@ -431,6 +472,7 @@ "1995-07-02": "National Anthem and Flag Day", "1995-12-25": "Christmas Day", "1995-12-26": "Second Day of Christmas", + "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", "1996-02-19": "Carnival Monday", "1996-04-05": "Good Friday", @@ -442,6 +484,7 @@ "1996-07-02": "National Anthem and Flag Day", "1996-12-25": "Christmas Day", "1996-12-26": "Second Day of Christmas", + "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", "1997-02-10": "Carnival Monday", "1997-03-28": "Good Friday", @@ -453,6 +496,7 @@ "1997-07-02": "National Anthem and Flag Day", "1997-12-25": "Christmas Day", "1997-12-26": "Second Day of Christmas", + "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival Monday", "1998-04-10": "Good Friday", @@ -464,6 +508,7 @@ "1998-07-02": "National Anthem and Flag Day", "1998-12-25": "Christmas Day", "1998-12-26": "Second Day of Christmas", + "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", "1999-02-15": "Carnival Monday", "1999-04-02": "Good Friday", @@ -475,6 +520,7 @@ "1999-07-02": "National Anthem and Flag Day", "1999-12-25": "Christmas Day", "1999-12-26": "Second Day of Christmas", + "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", "2000-03-06": "Carnival Monday", "2000-04-21": "Good Friday", @@ -486,6 +532,7 @@ "2000-07-02": "National Anthem and Flag Day", "2000-12-25": "Christmas Day", "2000-12-26": "Second Day of Christmas", + "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", "2001-02-26": "Carnival Monday", "2001-04-13": "Good Friday", @@ -497,6 +544,7 @@ "2001-07-02": "National Anthem and Flag Day", "2001-12-25": "Christmas Day", "2001-12-26": "Second Day of Christmas", + "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", "2002-02-11": "Carnival Monday", "2002-03-29": "Good Friday", @@ -508,6 +556,7 @@ "2002-07-02": "National Anthem and Flag Day", "2002-12-25": "Christmas Day", "2002-12-26": "Second Day of Christmas", + "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", "2003-03-03": "Carnival Monday", "2003-04-18": "Good Friday", @@ -519,6 +568,7 @@ "2003-07-02": "National Anthem and Flag Day", "2003-12-25": "Christmas Day", "2003-12-26": "Second Day of Christmas", + "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival Monday", "2004-04-09": "Good Friday", @@ -530,6 +580,7 @@ "2004-07-02": "National Anthem and Flag Day", "2004-12-25": "Christmas Day", "2004-12-26": "Second Day of Christmas", + "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", "2005-02-07": "Carnival Monday", "2005-03-25": "Good Friday", @@ -541,6 +592,7 @@ "2005-07-02": "National Anthem and Flag Day", "2005-12-25": "Christmas Day", "2005-12-26": "Second Day of Christmas", + "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", "2006-02-27": "Carnival Monday", "2006-04-14": "Good Friday", @@ -552,6 +604,7 @@ "2006-07-02": "National Anthem and Flag Day", "2006-12-25": "Christmas Day", "2006-12-26": "Second Day of Christmas", + "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", "2007-02-19": "Carnival Monday", "2007-04-06": "Good Friday", @@ -563,6 +616,7 @@ "2007-07-02": "National Anthem and Flag Day", "2007-12-25": "Christmas Day", "2007-12-26": "Second Day of Christmas", + "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", "2008-02-04": "Carnival Monday", "2008-03-21": "Good Friday", @@ -573,6 +627,7 @@ "2008-07-02": "National Anthem and Flag Day", "2008-12-25": "Christmas Day", "2008-12-26": "Second Day of Christmas", + "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival Monday", "2009-04-10": "Good Friday", @@ -584,6 +639,7 @@ "2009-07-02": "National Anthem and Flag Day", "2009-12-25": "Christmas Day", "2009-12-26": "Second Day of Christmas", + "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", "2010-02-15": "Carnival Monday", "2010-04-02": "Good Friday", @@ -596,6 +652,7 @@ "2010-10-10": "Cura\u00e7ao Day", "2010-12-25": "Christmas Day", "2010-12-26": "Second Day of Christmas", + "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", "2011-03-07": "Carnival Monday", "2011-04-22": "Good Friday", @@ -608,6 +665,7 @@ "2011-10-10": "Cura\u00e7ao Day", "2011-12-25": "Christmas Day", "2011-12-26": "Second Day of Christmas", + "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", "2012-02-20": "Carnival Monday", "2012-04-06": "Good Friday", @@ -620,6 +678,7 @@ "2012-10-10": "Cura\u00e7ao Day", "2012-12-25": "Christmas Day", "2012-12-26": "Second Day of Christmas", + "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", "2013-02-11": "Carnival Monday", "2013-03-29": "Good Friday", @@ -632,6 +691,7 @@ "2013-10-10": "Cura\u00e7ao Day", "2013-12-25": "Christmas Day", "2013-12-26": "Second Day of Christmas", + "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", "2014-03-03": "Carnival Monday", "2014-04-18": "Good Friday", @@ -644,6 +704,7 @@ "2014-10-10": "Cura\u00e7ao Day", "2014-12-25": "Christmas Day", "2014-12-26": "Second Day of Christmas", + "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", "2015-02-16": "Carnival Monday", "2015-04-03": "Good Friday", @@ -656,6 +717,7 @@ "2015-10-10": "Cura\u00e7ao Day", "2015-12-25": "Christmas Day", "2015-12-26": "Second Day of Christmas", + "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", "2016-02-08": "Carnival Monday", "2016-03-25": "Good Friday", @@ -668,6 +730,7 @@ "2016-10-10": "Cura\u00e7ao Day", "2016-12-25": "Christmas Day", "2016-12-26": "Second Day of Christmas", + "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", "2017-02-27": "Carnival Monday", "2017-04-14": "Good Friday", @@ -680,6 +743,7 @@ "2017-10-10": "Cura\u00e7ao Day", "2017-12-25": "Christmas Day", "2017-12-26": "Second Day of Christmas", + "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", "2018-02-12": "Carnival Monday", "2018-03-30": "Good Friday", @@ -692,6 +756,7 @@ "2018-10-10": "Cura\u00e7ao Day", "2018-12-25": "Christmas Day", "2018-12-26": "Second Day of Christmas", + "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", "2019-03-04": "Carnival Monday", "2019-04-19": "Good Friday", @@ -704,6 +769,7 @@ "2019-10-10": "Cura\u00e7ao Day", "2019-12-25": "Christmas Day", "2019-12-26": "Second Day of Christmas", + "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", "2020-02-24": "Carnival Monday", "2020-04-10": "Good Friday", @@ -716,6 +782,7 @@ "2020-10-10": "Cura\u00e7ao Day", "2020-12-25": "Christmas Day", "2020-12-26": "Second Day of Christmas", + "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", "2021-02-15": "Carnival Monday", "2021-04-02": "Good Friday", @@ -728,6 +795,7 @@ "2021-10-10": "Cura\u00e7ao Day", "2021-12-25": "Christmas Day", "2021-12-26": "Second Day of Christmas", + "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", "2022-02-28": "Carnival Monday", "2022-04-15": "Good Friday", @@ -740,6 +808,7 @@ "2022-10-10": "Cura\u00e7ao Day", "2022-12-25": "Christmas Day", "2022-12-26": "Second Day of Christmas", + "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", "2023-02-20": "Carnival Monday", "2023-04-07": "Good Friday", @@ -752,6 +821,7 @@ "2023-10-10": "Cura\u00e7ao Day", "2023-12-25": "Christmas Day", "2023-12-26": "Second Day of Christmas", + "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", "2024-02-12": "Carnival Monday", "2024-03-29": "Good Friday", @@ -764,6 +834,7 @@ "2024-10-10": "Cura\u00e7ao Day", "2024-12-25": "Christmas Day", "2024-12-26": "Second Day of Christmas", + "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", "2025-03-03": "Carnival Monday", "2025-04-18": "Good Friday", @@ -776,6 +847,7 @@ "2025-10-10": "Cura\u00e7ao Day", "2025-12-25": "Christmas Day", "2025-12-26": "Second Day of Christmas", + "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", "2026-02-16": "Carnival Monday", "2026-04-03": "Good Friday", @@ -788,6 +860,7 @@ "2026-10-10": "Cura\u00e7ao Day", "2026-12-25": "Christmas Day", "2026-12-26": "Second Day of Christmas", + "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", "2027-02-08": "Carnival Monday", "2027-03-26": "Good Friday", @@ -800,6 +873,7 @@ "2027-10-10": "Cura\u00e7ao Day", "2027-12-25": "Christmas Day", "2027-12-26": "Second Day of Christmas", + "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", "2028-02-28": "Carnival Monday", "2028-04-14": "Good Friday", @@ -812,6 +886,7 @@ "2028-10-10": "Cura\u00e7ao Day", "2028-12-25": "Christmas Day", "2028-12-26": "Second Day of Christmas", + "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", "2029-02-12": "Carnival Monday", "2029-03-30": "Good Friday", @@ -824,6 +899,7 @@ "2029-10-10": "Cura\u00e7ao Day", "2029-12-25": "Christmas Day", "2029-12-26": "Second Day of Christmas", + "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", "2030-03-04": "Carnival Monday", "2030-04-19": "Good Friday", @@ -836,6 +912,7 @@ "2030-10-10": "Cura\u00e7ao Day", "2030-12-25": "Christmas Day", "2030-12-26": "Second Day of Christmas", + "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", "2031-02-24": "Carnival Monday", "2031-04-11": "Good Friday", @@ -848,6 +925,7 @@ "2031-10-10": "Cura\u00e7ao Day", "2031-12-25": "Christmas Day", "2031-12-26": "Second Day of Christmas", + "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", "2032-02-09": "Carnival Monday", "2032-03-26": "Good Friday", @@ -860,6 +938,7 @@ "2032-10-10": "Cura\u00e7ao Day", "2032-12-25": "Christmas Day", "2032-12-26": "Second Day of Christmas", + "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", "2033-02-28": "Carnival Monday", "2033-04-15": "Good Friday", @@ -872,6 +951,7 @@ "2033-10-10": "Cura\u00e7ao Day", "2033-12-25": "Christmas Day", "2033-12-26": "Second Day of Christmas", + "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", "2034-02-20": "Carnival Monday", "2034-04-07": "Good Friday", @@ -884,6 +964,7 @@ "2034-10-10": "Cura\u00e7ao Day", "2034-12-25": "Christmas Day", "2034-12-26": "Second Day of Christmas", + "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", "2035-02-05": "Carnival Monday", "2035-03-23": "Good Friday", @@ -896,6 +977,7 @@ "2035-10-10": "Cura\u00e7ao Day", "2035-12-25": "Christmas Day", "2035-12-26": "Second Day of Christmas", + "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", "2036-02-25": "Carnival Monday", "2036-04-11": "Good Friday", @@ -908,6 +990,7 @@ "2036-10-10": "Cura\u00e7ao Day", "2036-12-25": "Christmas Day", "2036-12-26": "Second Day of Christmas", + "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", "2037-02-16": "Carnival Monday", "2037-04-03": "Good Friday", @@ -920,6 +1003,7 @@ "2037-10-10": "Cura\u00e7ao Day", "2037-12-25": "Christmas Day", "2037-12-26": "Second Day of Christmas", + "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival Monday", "2038-04-23": "Good Friday", @@ -932,6 +1016,7 @@ "2038-10-10": "Cura\u00e7ao Day", "2038-12-25": "Christmas Day", "2038-12-26": "Second Day of Christmas", + "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", "2039-02-21": "Carnival Monday", "2039-04-08": "Good Friday", @@ -944,6 +1029,7 @@ "2039-10-10": "Cura\u00e7ao Day", "2039-12-25": "Christmas Day", "2039-12-26": "Second Day of Christmas", + "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", "2040-02-13": "Carnival Monday", "2040-03-30": "Good Friday", @@ -956,6 +1042,7 @@ "2040-10-10": "Cura\u00e7ao Day", "2040-12-25": "Christmas Day", "2040-12-26": "Second Day of Christmas", + "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", "2041-03-04": "Carnival Monday", "2041-04-19": "Good Friday", @@ -968,6 +1055,7 @@ "2041-10-10": "Cura\u00e7ao Day", "2041-12-25": "Christmas Day", "2041-12-26": "Second Day of Christmas", + "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", "2042-02-17": "Carnival Monday", "2042-04-04": "Good Friday", @@ -980,6 +1068,7 @@ "2042-10-10": "Cura\u00e7ao Day", "2042-12-25": "Christmas Day", "2042-12-26": "Second Day of Christmas", + "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", "2043-02-09": "Carnival Monday", "2043-03-27": "Good Friday", @@ -992,6 +1081,7 @@ "2043-10-10": "Cura\u00e7ao Day", "2043-12-25": "Christmas Day", "2043-12-26": "Second Day of Christmas", + "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", "2044-02-29": "Carnival Monday", "2044-04-15": "Good Friday", @@ -1004,6 +1094,7 @@ "2044-10-10": "Cura\u00e7ao Day", "2044-12-25": "Christmas Day", "2044-12-26": "Second Day of Christmas", + "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", "2045-02-20": "Carnival Monday", "2045-04-07": "Good Friday", @@ -1016,6 +1107,7 @@ "2045-10-10": "Cura\u00e7ao Day", "2045-12-25": "Christmas Day", "2045-12-26": "Second Day of Christmas", + "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", "2046-02-05": "Carnival Monday", "2046-03-23": "Good Friday", @@ -1028,6 +1120,7 @@ "2046-10-10": "Cura\u00e7ao Day", "2046-12-25": "Christmas Day", "2046-12-26": "Second Day of Christmas", + "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", "2047-02-25": "Carnival Monday", "2047-04-12": "Good Friday", @@ -1040,6 +1133,7 @@ "2047-10-10": "Cura\u00e7ao Day", "2047-12-25": "Christmas Day", "2047-12-26": "Second Day of Christmas", + "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", "2048-02-17": "Carnival Monday", "2048-04-03": "Good Friday", @@ -1052,6 +1146,7 @@ "2048-10-10": "Cura\u00e7ao Day", "2048-12-25": "Christmas Day", "2048-12-26": "Second Day of Christmas", + "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", "2049-03-01": "Carnival Monday", "2049-04-16": "Good Friday", @@ -1064,6 +1159,7 @@ "2049-10-10": "Cura\u00e7ao Day", "2049-12-25": "Christmas Day", "2049-12-26": "Second Day of Christmas", + "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", "2050-02-21": "Carnival Monday", "2050-04-08": "Good Friday", @@ -1075,5 +1171,6 @@ "2050-07-02": "National Anthem and Flag Day", "2050-10-10": "Cura\u00e7ao Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Second Day of Christmas" + "2050-12-26": "Second Day of Christmas", + "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/JP_COMMON.json b/snapshots/countries/JP_COMMON.json index 1fe3cc0d4..95f9920c4 100644 --- a/snapshots/countries/JP_COMMON.json +++ b/snapshots/countries/JP_COMMON.json @@ -1,33 +1,29 @@ { - "1950-01-01": "New Year's Day", - "1950-01-02": "Bank Holiday; Substitute Holiday", + "1950-01-01": "Bank Holiday; New Year's Day", + "1950-01-02": "Bank Holiday", "1950-01-03": "Bank Holiday", "1950-01-15": "Coming of Age Day", - "1950-01-16": "Substitute Holiday", "1950-03-21": "Vernal Equinox Day", "1950-04-29": "Emperor's Birthday", "1950-05-03": "Constitution Day", - "1950-05-04": "National Holiday", "1950-05-05": "Children's Day", "1950-09-23": "Autumnal Equinox", "1950-11-03": "Culture Day", "1950-11-23": "Labor Thanksgiving Day", "1950-12-31": "Bank Holiday", - "1951-01-01": "New Year's Day", + "1951-01-01": "Bank Holiday; New Year's Day", "1951-01-02": "Bank Holiday", "1951-01-03": "Bank Holiday", "1951-01-15": "Coming of Age Day", "1951-03-21": "Vernal Equinox Day", "1951-04-29": "Emperor's Birthday", - "1951-04-30": "Substitute Holiday", "1951-05-03": "Constitution Day", - "1951-05-04": "National Holiday", "1951-05-05": "Children's Day", "1951-09-24": "Autumnal Equinox", "1951-11-03": "Culture Day", "1951-11-23": "Labor Thanksgiving Day", "1951-12-31": "Bank Holiday", - "1952-01-01": "New Year's Day", + "1952-01-01": "Bank Holiday; New Year's Day", "1952-01-02": "Bank Holiday", "1952-01-03": "Bank Holiday", "1952-01-15": "Coming of Age Day", @@ -38,80 +34,68 @@ "1952-09-23": "Autumnal Equinox", "1952-11-03": "Culture Day", "1952-11-23": "Labor Thanksgiving Day", - "1952-11-24": "Substitute Holiday", "1952-12-31": "Bank Holiday", - "1953-01-01": "New Year's Day", + "1953-01-01": "Bank Holiday; New Year's Day", "1953-01-02": "Bank Holiday", "1953-01-03": "Bank Holiday", "1953-01-15": "Coming of Age Day", "1953-03-21": "Vernal Equinox Day", "1953-04-29": "Emperor's Birthday", "1953-05-03": "Constitution Day", - "1953-05-04": "Substitute Holiday", "1953-05-05": "Children's Day", "1953-09-23": "Autumnal Equinox", "1953-11-03": "Culture Day", "1953-11-23": "Labor Thanksgiving Day", "1953-12-31": "Bank Holiday", - "1954-01-01": "New Year's Day", + "1954-01-01": "Bank Holiday; New Year's Day", "1954-01-02": "Bank Holiday", "1954-01-03": "Bank Holiday", "1954-01-15": "Coming of Age Day", "1954-03-21": "Vernal Equinox Day", - "1954-03-22": "Substitute Holiday", "1954-04-29": "Emperor's Birthday", "1954-05-03": "Constitution Day", - "1954-05-04": "National Holiday", "1954-05-05": "Children's Day", "1954-09-23": "Autumnal Equinox", "1954-11-03": "Culture Day", "1954-11-23": "Labor Thanksgiving Day", "1954-12-31": "Bank Holiday", - "1955-01-01": "New Year's Day", + "1955-01-01": "Bank Holiday; New Year's Day", "1955-01-02": "Bank Holiday", "1955-01-03": "Bank Holiday", "1955-01-15": "Coming of Age Day", "1955-03-21": "Vernal Equinox Day", "1955-04-29": "Emperor's Birthday", "1955-05-03": "Constitution Day", - "1955-05-04": "National Holiday", "1955-05-05": "Children's Day", "1955-09-24": "Autumnal Equinox", "1955-11-03": "Culture Day", "1955-11-23": "Labor Thanksgiving Day", "1955-12-31": "Bank Holiday", - "1956-01-01": "New Year's Day", - "1956-01-02": "Bank Holiday; Substitute Holiday", + "1956-01-01": "Bank Holiday; New Year's Day", + "1956-01-02": "Bank Holiday", "1956-01-03": "Bank Holiday", "1956-01-15": "Coming of Age Day", - "1956-01-16": "Substitute Holiday", "1956-03-21": "Vernal Equinox Day", "1956-04-29": "Emperor's Birthday", - "1956-04-30": "Substitute Holiday", "1956-05-03": "Constitution Day", - "1956-05-04": "National Holiday", "1956-05-05": "Children's Day", "1956-09-23": "Autumnal Equinox", - "1956-09-24": "Substitute Holiday", "1956-11-03": "Culture Day", "1956-11-23": "Labor Thanksgiving Day", "1956-12-31": "Bank Holiday", - "1957-01-01": "New Year's Day", + "1957-01-01": "Bank Holiday; New Year's Day", "1957-01-02": "Bank Holiday", "1957-01-03": "Bank Holiday", "1957-01-15": "Coming of Age Day", "1957-03-21": "Vernal Equinox Day", "1957-04-29": "Emperor's Birthday", "1957-05-03": "Constitution Day", - "1957-05-04": "National Holiday", "1957-05-05": "Children's Day", - "1957-05-06": "Substitute Holiday", "1957-09-23": "Autumnal Equinox", "1957-11-03": "Culture Day", - "1957-11-04": "Substitute Holiday", "1957-11-23": "Labor Thanksgiving Day", "1957-12-31": "Bank Holiday", - "1958-01-01": "New Year's Day", + "1958-01-01": "Bank Holiday; New Year's Day", "1958-01-02": "Bank Holiday", "1958-01-03": "Bank Holiday", "1958-01-15": "Coming of Age Day", @@ -122,9 +106,8 @@ "1958-09-23": "Autumnal Equinox", "1958-11-03": "Culture Day", "1958-11-23": "Labor Thanksgiving Day", - "1958-11-24": "Substitute Holiday", "1958-12-31": "Bank Holiday", - "1959-01-01": "New Year's Day", + "1959-01-01": "Bank Holiday; New Year's Day", "1959-01-02": "Bank Holiday", "1959-01-03": "Bank Holiday", "1959-01-15": "Coming of Age Day", @@ -132,105 +115,90 @@ "1959-04-10": "The Crown Prince Marriage Ceremony", "1959-04-29": "Emperor's Birthday", "1959-05-03": "Constitution Day", - "1959-05-04": "Substitute Holiday", "1959-05-05": "Children's Day", "1959-09-24": "Autumnal Equinox", "1959-11-03": "Culture Day", "1959-11-23": "Labor Thanksgiving Day", "1959-12-31": "Bank Holiday", - "1960-01-01": "New Year's Day", + "1960-01-01": "Bank Holiday; New Year's Day", "1960-01-02": "Bank Holiday", "1960-01-03": "Bank Holiday", "1960-01-15": "Coming of Age Day", "1960-03-20": "Vernal Equinox Day", - "1960-03-21": "Substitute Holiday", "1960-04-29": "Emperor's Birthday", "1960-05-03": "Constitution Day", - "1960-05-04": "National Holiday", "1960-05-05": "Children's Day", "1960-09-23": "Autumnal Equinox", "1960-11-03": "Culture Day", "1960-11-23": "Labor Thanksgiving Day", "1960-12-31": "Bank Holiday", - "1961-01-01": "New Year's Day", - "1961-01-02": "Bank Holiday; Substitute Holiday", + "1961-01-01": "Bank Holiday; New Year's Day", + "1961-01-02": "Bank Holiday", "1961-01-03": "Bank Holiday", "1961-01-15": "Coming of Age Day", - "1961-01-16": "Substitute Holiday", "1961-03-21": "Vernal Equinox Day", "1961-04-29": "Emperor's Birthday", "1961-05-03": "Constitution Day", - "1961-05-04": "National Holiday", "1961-05-05": "Children's Day", "1961-09-23": "Autumnal Equinox", "1961-11-03": "Culture Day", "1961-11-23": "Labor Thanksgiving Day", "1961-12-31": "Bank Holiday", - "1962-01-01": "New Year's Day", + "1962-01-01": "Bank Holiday; New Year's Day", "1962-01-02": "Bank Holiday", "1962-01-03": "Bank Holiday", "1962-01-15": "Coming of Age Day", "1962-03-21": "Vernal Equinox Day", "1962-04-29": "Emperor's Birthday", - "1962-04-30": "Substitute Holiday", "1962-05-03": "Constitution Day", - "1962-05-04": "National Holiday", "1962-05-05": "Children's Day", "1962-09-23": "Autumnal Equinox", - "1962-09-24": "Substitute Holiday", "1962-11-03": "Culture Day", "1962-11-23": "Labor Thanksgiving Day", "1962-12-31": "Bank Holiday", - "1963-01-01": "New Year's Day", + "1963-01-01": "Bank Holiday; New Year's Day", "1963-01-02": "Bank Holiday", "1963-01-03": "Bank Holiday", "1963-01-15": "Coming of Age Day", "1963-03-21": "Vernal Equinox Day", "1963-04-29": "Emperor's Birthday", "1963-05-03": "Constitution Day", - "1963-05-04": "National Holiday", "1963-05-05": "Children's Day", - "1963-05-06": "Substitute Holiday", "1963-09-24": "Autumnal Equinox", "1963-11-03": "Culture Day", - "1963-11-04": "Substitute Holiday", "1963-11-23": "Labor Thanksgiving Day", "1963-12-31": "Bank Holiday", - "1964-01-01": "New Year's Day", + "1964-01-01": "Bank Holiday; New Year's Day", "1964-01-02": "Bank Holiday", "1964-01-03": "Bank Holiday", "1964-01-15": "Coming of Age Day", "1964-03-20": "Vernal Equinox Day", "1964-04-29": "Emperor's Birthday", "1964-05-03": "Constitution Day", - "1964-05-04": "Substitute Holiday", "1964-05-05": "Children's Day", "1964-09-23": "Autumnal Equinox", "1964-11-03": "Culture Day", "1964-11-23": "Labor Thanksgiving Day", "1964-12-31": "Bank Holiday", - "1965-01-01": "New Year's Day", + "1965-01-01": "Bank Holiday; New Year's Day", "1965-01-02": "Bank Holiday", "1965-01-03": "Bank Holiday", "1965-01-15": "Coming of Age Day", "1965-03-21": "Vernal Equinox Day", - "1965-03-22": "Substitute Holiday", "1965-04-29": "Emperor's Birthday", "1965-05-03": "Constitution Day", - "1965-05-04": "National Holiday", "1965-05-05": "Children's Day", "1965-09-23": "Autumnal Equinox", "1965-11-03": "Culture Day", "1965-11-23": "Labor Thanksgiving Day", "1965-12-31": "Bank Holiday", - "1966-01-01": "New Year's Day", + "1966-01-01": "Bank Holiday; New Year's Day", "1966-01-02": "Bank Holiday", "1966-01-03": "Bank Holiday", "1966-01-15": "Coming of Age Day", "1966-03-21": "Vernal Equinox Day", "1966-04-29": "Emperor's Birthday", "1966-05-03": "Constitution Day", - "1966-05-04": "National Holiday", "1966-05-05": "Children's Day", "1966-09-15": "Respect for the Aged Day", "1966-09-23": "Autumnal Equinox", @@ -238,45 +206,37 @@ "1966-11-03": "Culture Day", "1966-11-23": "Labor Thanksgiving Day", "1966-12-31": "Bank Holiday", - "1967-01-01": "New Year's Day", - "1967-01-02": "Bank Holiday; Substitute Holiday", + "1967-01-01": "Bank Holiday; New Year's Day", + "1967-01-02": "Bank Holiday", "1967-01-03": "Bank Holiday", "1967-01-15": "Coming of Age Day", - "1967-01-16": "Substitute Holiday", "1967-02-11": "Foundation Day", "1967-03-21": "Vernal Equinox Day", "1967-04-29": "Emperor's Birthday", "1967-05-03": "Constitution Day", - "1967-05-04": "National Holiday", "1967-05-05": "Children's Day", "1967-09-15": "Respect for the Aged Day", "1967-09-24": "Autumnal Equinox", - "1967-09-25": "Substitute Holiday", "1967-10-10": "Physical Education Day", "1967-11-03": "Culture Day", "1967-11-23": "Labor Thanksgiving Day", "1967-12-31": "Bank Holiday", - "1968-01-01": "New Year's Day", + "1968-01-01": "Bank Holiday; New Year's Day", "1968-01-02": "Bank Holiday", "1968-01-03": "Bank Holiday", "1968-01-15": "Coming of Age Day", "1968-02-11": "Foundation Day", - "1968-02-12": "Substitute Holiday", "1968-03-20": "Vernal Equinox Day", "1968-04-29": "Emperor's Birthday", "1968-05-03": "Constitution Day", - "1968-05-04": "National Holiday", "1968-05-05": "Children's Day", - "1968-05-06": "Substitute Holiday", "1968-09-15": "Respect for the Aged Day", - "1968-09-16": "Substitute Holiday", "1968-09-23": "Autumnal Equinox", "1968-10-10": "Physical Education Day", "1968-11-03": "Culture Day", - "1968-11-04": "Substitute Holiday", "1968-11-23": "Labor Thanksgiving Day", "1968-12-31": "Bank Holiday", - "1969-01-01": "New Year's Day", + "1969-01-01": "Bank Holiday; New Year's Day", "1969-01-02": "Bank Holiday", "1969-01-03": "Bank Holiday", "1969-01-15": "Coming of Age Day", @@ -290,9 +250,8 @@ "1969-10-10": "Physical Education Day", "1969-11-03": "Culture Day", "1969-11-23": "Labor Thanksgiving Day", - "1969-11-24": "Substitute Holiday", "1969-12-31": "Bank Holiday", - "1970-01-01": "New Year's Day", + "1970-01-01": "Bank Holiday; New Year's Day", "1970-01-02": "Bank Holiday", "1970-01-03": "Bank Holiday", "1970-01-15": "Coming of Age Day", @@ -300,7 +259,6 @@ "1970-03-21": "Vernal Equinox Day", "1970-04-29": "Emperor's Birthday", "1970-05-03": "Constitution Day", - "1970-05-04": "Substitute Holiday", "1970-05-05": "Children's Day", "1970-09-15": "Respect for the Aged Day", "1970-09-23": "Autumnal Equinox", @@ -308,25 +266,22 @@ "1970-11-03": "Culture Day", "1970-11-23": "Labor Thanksgiving Day", "1970-12-31": "Bank Holiday", - "1971-01-01": "New Year's Day", + "1971-01-01": "Bank Holiday; New Year's Day", "1971-01-02": "Bank Holiday", "1971-01-03": "Bank Holiday", "1971-01-15": "Coming of Age Day", "1971-02-11": "Foundation Day", "1971-03-21": "Vernal Equinox Day", - "1971-03-22": "Substitute Holiday", "1971-04-29": "Emperor's Birthday", "1971-05-03": "Constitution Day", - "1971-05-04": "National Holiday", "1971-05-05": "Children's Day", "1971-09-15": "Respect for the Aged Day", "1971-09-24": "Autumnal Equinox", "1971-10-10": "Physical Education Day", - "1971-10-11": "Substitute Holiday", "1971-11-03": "Culture Day", "1971-11-23": "Labor Thanksgiving Day", "1971-12-31": "Bank Holiday", - "1972-01-01": "New Year's Day", + "1972-01-01": "Bank Holiday; New Year's Day", "1972-01-02": "Bank Holiday", "1972-01-03": "Bank Holiday", "1972-01-15": "Coming of Age Day", @@ -334,7 +289,6 @@ "1972-03-20": "Vernal Equinox Day", "1972-04-29": "Emperor's Birthday", "1972-05-03": "Constitution Day", - "1972-05-04": "National Holiday", "1972-05-05": "Children's Day", "1972-09-15": "Respect for the Aged Day", "1972-09-23": "Autumnal Equinox", @@ -342,17 +296,15 @@ "1972-11-03": "Culture Day", "1972-11-23": "Labor Thanksgiving Day", "1972-12-31": "Bank Holiday", - "1973-01-01": "New Year's Day", + "1973-01-01": "Bank Holiday; New Year's Day", "1973-01-02": "Bank Holiday", "1973-01-03": "Bank Holiday", "1973-01-15": "Coming of Age Day", "1973-02-11": "Foundation Day", - "1973-02-12": "Substitute Holiday", "1973-03-21": "Vernal Equinox Day", "1973-04-29": "Emperor's Birthday", "1973-04-30": "Substitute Holiday", "1973-05-03": "Constitution Day", - "1973-05-04": "National Holiday", "1973-05-05": "Children's Day", "1973-09-15": "Respect for the Aged Day", "1973-09-23": "Autumnal Equinox", @@ -361,7 +313,7 @@ "1973-11-03": "Culture Day", "1973-11-23": "Labor Thanksgiving Day", "1973-12-31": "Bank Holiday", - "1974-01-01": "New Year's Day", + "1974-01-01": "Bank Holiday; New Year's Day", "1974-01-02": "Bank Holiday", "1974-01-03": "Bank Holiday", "1974-01-15": "Coming of Age Day", @@ -369,7 +321,6 @@ "1974-03-21": "Vernal Equinox Day", "1974-04-29": "Emperor's Birthday", "1974-05-03": "Constitution Day", - "1974-05-04": "National Holiday", "1974-05-05": "Children's Day", "1974-05-06": "Substitute Holiday", "1974-09-15": "Respect for the Aged Day", @@ -380,7 +331,7 @@ "1974-11-04": "Substitute Holiday", "1974-11-23": "Labor Thanksgiving Day", "1974-12-31": "Bank Holiday", - "1975-01-01": "New Year's Day", + "1975-01-01": "Bank Holiday; New Year's Day", "1975-01-02": "Bank Holiday", "1975-01-03": "Bank Holiday", "1975-01-15": "Coming of Age Day", @@ -396,7 +347,7 @@ "1975-11-23": "Labor Thanksgiving Day", "1975-11-24": "Substitute Holiday", "1975-12-31": "Bank Holiday", - "1976-01-01": "New Year's Day", + "1976-01-01": "Bank Holiday; New Year's Day", "1976-01-02": "Bank Holiday", "1976-01-03": "Bank Holiday", "1976-01-15": "Coming of Age Day", @@ -404,7 +355,6 @@ "1976-03-20": "Vernal Equinox Day", "1976-04-29": "Emperor's Birthday", "1976-05-03": "Constitution Day", - "1976-05-04": "National Holiday", "1976-05-05": "Children's Day", "1976-09-15": "Respect for the Aged Day", "1976-09-23": "Autumnal Equinox", @@ -413,7 +363,7 @@ "1976-11-03": "Culture Day", "1976-11-23": "Labor Thanksgiving Day", "1976-12-31": "Bank Holiday", - "1977-01-01": "New Year's Day", + "1977-01-01": "Bank Holiday; New Year's Day", "1977-01-02": "Bank Holiday", "1977-01-03": "Bank Holiday", "1977-01-15": "Coming of Age Day", @@ -421,7 +371,6 @@ "1977-03-21": "Vernal Equinox Day", "1977-04-29": "Emperor's Birthday", "1977-05-03": "Constitution Day", - "1977-05-04": "National Holiday", "1977-05-05": "Children's Day", "1977-09-15": "Respect for the Aged Day", "1977-09-23": "Autumnal Equinox", @@ -429,7 +378,7 @@ "1977-11-03": "Culture Day", "1977-11-23": "Labor Thanksgiving Day", "1977-12-31": "Bank Holiday", - "1978-01-01": "New Year's Day", + "1978-01-01": "Bank Holiday; New Year's Day", "1978-01-02": "Bank Holiday; Substitute Holiday", "1978-01-03": "Bank Holiday", "1978-01-15": "Coming of Age Day", @@ -438,7 +387,6 @@ "1978-03-21": "Vernal Equinox Day", "1978-04-29": "Emperor's Birthday", "1978-05-03": "Constitution Day", - "1978-05-04": "National Holiday", "1978-05-05": "Children's Day", "1978-09-15": "Respect for the Aged Day", "1978-09-23": "Autumnal Equinox", @@ -446,7 +394,7 @@ "1978-11-03": "Culture Day", "1978-11-23": "Labor Thanksgiving Day", "1978-12-31": "Bank Holiday", - "1979-01-01": "New Year's Day", + "1979-01-01": "Bank Holiday; New Year's Day", "1979-01-02": "Bank Holiday", "1979-01-03": "Bank Holiday", "1979-01-15": "Coming of Age Day", @@ -456,7 +404,6 @@ "1979-04-29": "Emperor's Birthday", "1979-04-30": "Substitute Holiday", "1979-05-03": "Constitution Day", - "1979-05-04": "National Holiday", "1979-05-05": "Children's Day", "1979-09-15": "Respect for the Aged Day", "1979-09-24": "Autumnal Equinox", @@ -464,7 +411,7 @@ "1979-11-03": "Culture Day", "1979-11-23": "Labor Thanksgiving Day", "1979-12-31": "Bank Holiday", - "1980-01-01": "New Year's Day", + "1980-01-01": "Bank Holiday; New Year's Day", "1980-01-02": "Bank Holiday", "1980-01-03": "Bank Holiday", "1980-01-15": "Coming of Age Day", @@ -480,7 +427,7 @@ "1980-11-23": "Labor Thanksgiving Day", "1980-11-24": "Substitute Holiday", "1980-12-31": "Bank Holiday", - "1981-01-01": "New Year's Day", + "1981-01-01": "Bank Holiday; New Year's Day", "1981-01-02": "Bank Holiday", "1981-01-03": "Bank Holiday", "1981-01-15": "Coming of Age Day", @@ -496,7 +443,7 @@ "1981-11-03": "Culture Day", "1981-11-23": "Labor Thanksgiving Day", "1981-12-31": "Bank Holiday", - "1982-01-01": "New Year's Day", + "1982-01-01": "Bank Holiday; New Year's Day", "1982-01-02": "Bank Holiday", "1982-01-03": "Bank Holiday", "1982-01-15": "Coming of Age Day", @@ -505,7 +452,6 @@ "1982-03-22": "Substitute Holiday", "1982-04-29": "Emperor's Birthday", "1982-05-03": "Constitution Day", - "1982-05-04": "National Holiday", "1982-05-05": "Children's Day", "1982-09-15": "Respect for the Aged Day", "1982-09-23": "Autumnal Equinox", @@ -514,7 +460,7 @@ "1982-11-03": "Culture Day", "1982-11-23": "Labor Thanksgiving Day", "1982-12-31": "Bank Holiday", - "1983-01-01": "New Year's Day", + "1983-01-01": "Bank Holiday; New Year's Day", "1983-01-02": "Bank Holiday", "1983-01-03": "Bank Holiday", "1983-01-15": "Coming of Age Day", @@ -522,7 +468,6 @@ "1983-03-21": "Vernal Equinox Day", "1983-04-29": "Emperor's Birthday", "1983-05-03": "Constitution Day", - "1983-05-04": "National Holiday", "1983-05-05": "Children's Day", "1983-09-15": "Respect for the Aged Day", "1983-09-23": "Autumnal Equinox", @@ -530,7 +475,7 @@ "1983-11-03": "Culture Day", "1983-11-23": "Labor Thanksgiving Day", "1983-12-31": "Bank Holiday", - "1984-01-01": "New Year's Day", + "1984-01-01": "Bank Holiday; New Year's Day", "1984-01-02": "Bank Holiday; Substitute Holiday", "1984-01-03": "Bank Holiday", "1984-01-15": "Coming of Age Day", @@ -540,7 +485,6 @@ "1984-04-29": "Emperor's Birthday", "1984-04-30": "Substitute Holiday", "1984-05-03": "Constitution Day", - "1984-05-04": "National Holiday", "1984-05-05": "Children's Day", "1984-09-15": "Respect for the Aged Day", "1984-09-23": "Autumnal Equinox", @@ -549,7 +493,7 @@ "1984-11-03": "Culture Day", "1984-11-23": "Labor Thanksgiving Day", "1984-12-31": "Bank Holiday", - "1985-01-01": "New Year's Day", + "1985-01-01": "Bank Holiday; New Year's Day", "1985-01-02": "Bank Holiday", "1985-01-03": "Bank Holiday", "1985-01-15": "Coming of Age Day", @@ -557,7 +501,6 @@ "1985-03-21": "Vernal Equinox Day", "1985-04-29": "Emperor's Birthday", "1985-05-03": "Constitution Day", - "1985-05-04": "National Holiday", "1985-05-05": "Children's Day", "1985-05-06": "Substitute Holiday", "1985-09-15": "Respect for the Aged Day", @@ -568,7 +511,7 @@ "1985-11-04": "Substitute Holiday", "1985-11-23": "Labor Thanksgiving Day", "1985-12-31": "Bank Holiday", - "1986-01-01": "New Year's Day", + "1986-01-01": "Bank Holiday; New Year's Day", "1986-01-02": "Bank Holiday", "1986-01-03": "Bank Holiday", "1986-01-15": "Coming of Age Day", @@ -584,7 +527,7 @@ "1986-11-23": "Labor Thanksgiving Day", "1986-11-24": "Substitute Holiday", "1986-12-31": "Bank Holiday", - "1987-01-01": "New Year's Day", + "1987-01-01": "Bank Holiday; New Year's Day", "1987-01-02": "Bank Holiday", "1987-01-03": "Bank Holiday", "1987-01-15": "Coming of Age Day", @@ -600,7 +543,7 @@ "1987-11-03": "Culture Day", "1987-11-23": "Labor Thanksgiving Day", "1987-12-31": "Bank Holiday", - "1988-01-01": "New Year's Day", + "1988-01-01": "Bank Holiday; New Year's Day", "1988-01-02": "Bank Holiday", "1988-01-03": "Bank Holiday", "1988-01-15": "Coming of Age Day", @@ -617,7 +560,7 @@ "1988-11-03": "Culture Day", "1988-11-23": "Labor Thanksgiving Day", "1988-12-31": "Bank Holiday", - "1989-01-01": "New Year's Day", + "1989-01-01": "Bank Holiday; New Year's Day", "1989-01-02": "Bank Holiday; Substitute Holiday", "1989-01-03": "Bank Holiday", "1989-01-15": "Coming of Age Day", @@ -636,7 +579,7 @@ "1989-11-23": "Labor Thanksgiving Day", "1989-12-23": "Emperor's Birthday", "1989-12-31": "Bank Holiday", - "1990-01-01": "New Year's Day", + "1990-01-01": "Bank Holiday; New Year's Day", "1990-01-02": "Bank Holiday", "1990-01-03": "Bank Holiday", "1990-01-15": "Coming of Age Day", @@ -658,7 +601,7 @@ "1990-12-23": "Emperor's Birthday", "1990-12-24": "Substitute Holiday", "1990-12-31": "Bank Holiday", - "1991-01-01": "New Year's Day", + "1991-01-01": "Bank Holiday; New Year's Day", "1991-01-02": "Bank Holiday", "1991-01-03": "Bank Holiday", "1991-01-15": "Coming of Age Day", @@ -678,7 +621,7 @@ "1991-11-23": "Labor Thanksgiving Day", "1991-12-23": "Emperor's Birthday", "1991-12-31": "Bank Holiday", - "1992-01-01": "New Year's Day", + "1992-01-01": "Bank Holiday; New Year's Day", "1992-01-02": "Bank Holiday", "1992-01-03": "Bank Holiday", "1992-01-15": "Coming of Age Day", @@ -695,7 +638,7 @@ "1992-11-23": "Labor Thanksgiving Day", "1992-12-23": "Emperor's Birthday", "1992-12-31": "Bank Holiday", - "1993-01-01": "New Year's Day", + "1993-01-01": "Bank Holiday; New Year's Day", "1993-01-02": "Bank Holiday", "1993-01-03": "Bank Holiday", "1993-01-15": "Coming of Age Day", @@ -714,7 +657,7 @@ "1993-11-23": "Labor Thanksgiving Day", "1993-12-23": "Emperor's Birthday", "1993-12-31": "Bank Holiday", - "1994-01-01": "New Year's Day", + "1994-01-01": "Bank Holiday; New Year's Day", "1994-01-02": "Bank Holiday", "1994-01-03": "Bank Holiday", "1994-01-15": "Coming of Age Day", @@ -731,7 +674,7 @@ "1994-11-23": "Labor Thanksgiving Day", "1994-12-23": "Emperor's Birthday", "1994-12-31": "Bank Holiday", - "1995-01-01": "New Year's Day", + "1995-01-01": "Bank Holiday; New Year's Day", "1995-01-02": "Bank Holiday; Substitute Holiday", "1995-01-03": "Bank Holiday", "1995-01-15": "Coming of Age Day", @@ -749,7 +692,7 @@ "1995-11-23": "Labor Thanksgiving Day", "1995-12-23": "Emperor's Birthday", "1995-12-31": "Bank Holiday", - "1996-01-01": "New Year's Day", + "1996-01-01": "Bank Holiday; New Year's Day", "1996-01-02": "Bank Holiday", "1996-01-03": "Bank Holiday", "1996-01-15": "Coming of Age Day", @@ -771,7 +714,7 @@ "1996-11-23": "Labor Thanksgiving Day", "1996-12-23": "Emperor's Birthday", "1996-12-31": "Bank Holiday", - "1997-01-01": "New Year's Day", + "1997-01-01": "Bank Holiday; New Year's Day", "1997-01-02": "Bank Holiday", "1997-01-03": "Bank Holiday", "1997-01-15": "Coming of Age Day", @@ -790,7 +733,7 @@ "1997-11-24": "Substitute Holiday", "1997-12-23": "Emperor's Birthday", "1997-12-31": "Bank Holiday", - "1998-01-01": "New Year's Day", + "1998-01-01": "Bank Holiday; New Year's Day", "1998-01-02": "Bank Holiday", "1998-01-03": "Bank Holiday", "1998-01-15": "Coming of Age Day", @@ -808,7 +751,7 @@ "1998-11-23": "Labor Thanksgiving Day", "1998-12-23": "Emperor's Birthday", "1998-12-31": "Bank Holiday", - "1999-01-01": "New Year's Day", + "1999-01-01": "Bank Holiday; New Year's Day", "1999-01-02": "Bank Holiday", "1999-01-03": "Bank Holiday", "1999-01-15": "Coming of Age Day", @@ -828,7 +771,7 @@ "1999-11-23": "Labor Thanksgiving Day", "1999-12-23": "Emperor's Birthday", "1999-12-31": "Bank Holiday", - "2000-01-01": "New Year's Day", + "2000-01-01": "Bank Holiday; New Year's Day", "2000-01-02": "Bank Holiday", "2000-01-03": "Bank Holiday", "2000-01-10": "Coming of Age Day", @@ -846,7 +789,7 @@ "2000-11-23": "Labor Thanksgiving Day", "2000-12-23": "Emperor's Birthday", "2000-12-31": "Bank Holiday", - "2001-01-01": "New Year's Day", + "2001-01-01": "Bank Holiday; New Year's Day", "2001-01-02": "Bank Holiday", "2001-01-03": "Bank Holiday", "2001-01-08": "Coming of Age Day", @@ -868,7 +811,7 @@ "2001-12-23": "Emperor's Birthday", "2001-12-24": "Substitute Holiday", "2001-12-31": "Bank Holiday", - "2002-01-01": "New Year's Day", + "2002-01-01": "Bank Holiday; New Year's Day", "2002-01-02": "Bank Holiday", "2002-01-03": "Bank Holiday", "2002-01-14": "Coming of Age Day", @@ -889,7 +832,7 @@ "2002-11-23": "Labor Thanksgiving Day", "2002-12-23": "Emperor's Birthday", "2002-12-31": "Bank Holiday", - "2003-01-01": "New Year's Day", + "2003-01-01": "Bank Holiday; New Year's Day", "2003-01-02": "Bank Holiday", "2003-01-03": "Bank Holiday", "2003-01-13": "Coming of Age Day", @@ -907,7 +850,7 @@ "2003-11-24": "Substitute Holiday", "2003-12-23": "Emperor's Birthday", "2003-12-31": "Bank Holiday", - "2004-01-01": "New Year's Day", + "2004-01-01": "Bank Holiday; New Year's Day", "2004-01-02": "Bank Holiday", "2004-01-03": "Bank Holiday", "2004-01-12": "Coming of Age Day", @@ -925,7 +868,7 @@ "2004-11-23": "Labor Thanksgiving Day", "2004-12-23": "Emperor's Birthday", "2004-12-31": "Bank Holiday", - "2005-01-01": "New Year's Day", + "2005-01-01": "Bank Holiday; New Year's Day", "2005-01-02": "Bank Holiday", "2005-01-03": "Bank Holiday", "2005-01-10": "Coming of Age Day", @@ -944,7 +887,7 @@ "2005-11-23": "Labor Thanksgiving Day", "2005-12-23": "Emperor's Birthday", "2005-12-31": "Bank Holiday", - "2006-01-01": "New Year's Day", + "2006-01-01": "Bank Holiday; New Year's Day", "2006-01-02": "Bank Holiday; Substitute Holiday", "2006-01-03": "Bank Holiday", "2006-01-09": "Coming of Age Day", @@ -962,7 +905,7 @@ "2006-11-23": "Labor Thanksgiving Day", "2006-12-23": "Emperor's Birthday", "2006-12-31": "Bank Holiday", - "2007-01-01": "New Year's Day", + "2007-01-01": "Bank Holiday; New Year's Day", "2007-01-02": "Bank Holiday", "2007-01-03": "Bank Holiday", "2007-01-08": "Coming of Age Day", @@ -984,7 +927,7 @@ "2007-12-23": "Emperor's Birthday", "2007-12-24": "Substitute Holiday", "2007-12-31": "Bank Holiday", - "2008-01-01": "New Year's Day", + "2008-01-01": "Bank Holiday; New Year's Day", "2008-01-02": "Bank Holiday", "2008-01-03": "Bank Holiday", "2008-01-14": "Coming of Age Day", @@ -1004,7 +947,7 @@ "2008-11-24": "Substitute Holiday", "2008-12-23": "Emperor's Birthday", "2008-12-31": "Bank Holiday", - "2009-01-01": "New Year's Day", + "2009-01-01": "Bank Holiday; New Year's Day", "2009-01-02": "Bank Holiday", "2009-01-03": "Bank Holiday", "2009-01-12": "Coming of Age Day", @@ -1024,7 +967,7 @@ "2009-11-23": "Labor Thanksgiving Day", "2009-12-23": "Emperor's Birthday", "2009-12-31": "Bank Holiday", - "2010-01-01": "New Year's Day", + "2010-01-01": "Bank Holiday; New Year's Day", "2010-01-02": "Bank Holiday", "2010-01-03": "Bank Holiday", "2010-01-11": "Coming of Age Day", @@ -1043,7 +986,7 @@ "2010-11-23": "Labor Thanksgiving Day", "2010-12-23": "Emperor's Birthday", "2010-12-31": "Bank Holiday", - "2011-01-01": "New Year's Day", + "2011-01-01": "Bank Holiday; New Year's Day", "2011-01-02": "Bank Holiday", "2011-01-03": "Bank Holiday", "2011-01-10": "Coming of Age Day", @@ -1061,7 +1004,7 @@ "2011-11-23": "Labor Thanksgiving Day", "2011-12-23": "Emperor's Birthday", "2011-12-31": "Bank Holiday", - "2012-01-01": "New Year's Day", + "2012-01-01": "Bank Holiday; New Year's Day", "2012-01-02": "Bank Holiday; Substitute Holiday", "2012-01-03": "Bank Holiday", "2012-01-09": "Coming of Age Day", @@ -1081,7 +1024,7 @@ "2012-12-23": "Emperor's Birthday", "2012-12-24": "Substitute Holiday", "2012-12-31": "Bank Holiday", - "2013-01-01": "New Year's Day", + "2013-01-01": "Bank Holiday; New Year's Day", "2013-01-02": "Bank Holiday", "2013-01-03": "Bank Holiday", "2013-01-14": "Coming of Age Day", @@ -1101,7 +1044,7 @@ "2013-11-23": "Labor Thanksgiving Day", "2013-12-23": "Emperor's Birthday", "2013-12-31": "Bank Holiday", - "2014-01-01": "New Year's Day", + "2014-01-01": "Bank Holiday; New Year's Day", "2014-01-02": "Bank Holiday", "2014-01-03": "Bank Holiday", "2014-01-13": "Coming of Age Day", @@ -1121,7 +1064,7 @@ "2014-11-24": "Substitute Holiday", "2014-12-23": "Emperor's Birthday", "2014-12-31": "Bank Holiday", - "2015-01-01": "New Year's Day", + "2015-01-01": "Bank Holiday; New Year's Day", "2015-01-02": "Bank Holiday", "2015-01-03": "Bank Holiday", "2015-01-12": "Coming of Age Day", @@ -1141,7 +1084,7 @@ "2015-11-23": "Labor Thanksgiving Day", "2015-12-23": "Emperor's Birthday", "2015-12-31": "Bank Holiday", - "2016-01-01": "New Year's Day", + "2016-01-01": "Bank Holiday; New Year's Day", "2016-01-02": "Bank Holiday", "2016-01-03": "Bank Holiday", "2016-01-11": "Coming of Age Day", @@ -1161,7 +1104,7 @@ "2016-11-23": "Labor Thanksgiving Day", "2016-12-23": "Emperor's Birthday", "2016-12-31": "Bank Holiday", - "2017-01-01": "New Year's Day", + "2017-01-01": "Bank Holiday; New Year's Day", "2017-01-02": "Bank Holiday; Substitute Holiday", "2017-01-03": "Bank Holiday", "2017-01-09": "Coming of Age Day", @@ -1180,7 +1123,7 @@ "2017-11-23": "Labor Thanksgiving Day", "2017-12-23": "Emperor's Birthday", "2017-12-31": "Bank Holiday", - "2018-01-01": "New Year's Day", + "2018-01-01": "Bank Holiday; New Year's Day", "2018-01-02": "Bank Holiday", "2018-01-03": "Bank Holiday", "2018-01-08": "Coming of Age Day", @@ -1203,7 +1146,7 @@ "2018-12-23": "Emperor's Birthday", "2018-12-24": "Substitute Holiday", "2018-12-31": "Bank Holiday", - "2019-01-01": "New Year's Day", + "2019-01-01": "Bank Holiday; New Year's Day", "2019-01-02": "Bank Holiday", "2019-01-03": "Bank Holiday", "2019-01-14": "Coming of Age Day", @@ -1228,7 +1171,7 @@ "2019-11-04": "Substitute Holiday", "2019-11-23": "Labor Thanksgiving Day", "2019-12-31": "Bank Holiday", - "2020-01-01": "New Year's Day", + "2020-01-01": "Bank Holiday; New Year's Day", "2020-01-02": "Bank Holiday", "2020-01-03": "Bank Holiday", "2020-01-13": "Coming of Age Day", @@ -1249,7 +1192,7 @@ "2020-11-03": "Culture Day", "2020-11-23": "Labor Thanksgiving Day", "2020-12-31": "Bank Holiday", - "2021-01-01": "New Year's Day", + "2021-01-01": "Bank Holiday; New Year's Day", "2021-01-02": "Bank Holiday", "2021-01-03": "Bank Holiday", "2021-01-11": "Coming of Age Day", @@ -1269,7 +1212,7 @@ "2021-11-03": "Culture Day", "2021-11-23": "Labor Thanksgiving Day", "2021-12-31": "Bank Holiday", - "2022-01-01": "New Year's Day", + "2022-01-01": "Bank Holiday; New Year's Day", "2022-01-02": "Bank Holiday", "2022-01-03": "Bank Holiday", "2022-01-10": "Coming of Age Day", @@ -1288,7 +1231,7 @@ "2022-11-03": "Culture Day", "2022-11-23": "Labor Thanksgiving Day", "2022-12-31": "Bank Holiday", - "2023-01-01": "New Year's Day", + "2023-01-01": "Bank Holiday; New Year's Day", "2023-01-02": "Bank Holiday; Substitute Holiday", "2023-01-03": "Bank Holiday", "2023-01-09": "Coming of Age Day", @@ -1307,7 +1250,7 @@ "2023-11-03": "Culture Day", "2023-11-23": "Labor Thanksgiving Day", "2023-12-31": "Bank Holiday", - "2024-01-01": "New Year's Day", + "2024-01-01": "Bank Holiday; New Year's Day", "2024-01-02": "Bank Holiday", "2024-01-03": "Bank Holiday", "2024-01-08": "Coming of Age Day", @@ -1331,7 +1274,7 @@ "2024-11-04": "Substitute Holiday", "2024-11-23": "Labor Thanksgiving Day", "2024-12-31": "Bank Holiday", - "2025-01-01": "New Year's Day", + "2025-01-01": "Bank Holiday; New Year's Day", "2025-01-02": "Bank Holiday", "2025-01-03": "Bank Holiday", "2025-01-13": "Coming of Age Day", @@ -1353,7 +1296,7 @@ "2025-11-23": "Labor Thanksgiving Day", "2025-11-24": "Substitute Holiday", "2025-12-31": "Bank Holiday", - "2026-01-01": "New Year's Day", + "2026-01-01": "Bank Holiday; New Year's Day", "2026-01-02": "Bank Holiday", "2026-01-03": "Bank Holiday", "2026-01-12": "Coming of Age Day", @@ -1374,7 +1317,7 @@ "2026-11-03": "Culture Day", "2026-11-23": "Labor Thanksgiving Day", "2026-12-31": "Bank Holiday", - "2027-01-01": "New Year's Day", + "2027-01-01": "Bank Holiday; New Year's Day", "2027-01-02": "Bank Holiday", "2027-01-03": "Bank Holiday", "2027-01-11": "Coming of Age Day", @@ -1394,7 +1337,7 @@ "2027-11-03": "Culture Day", "2027-11-23": "Labor Thanksgiving Day", "2027-12-31": "Bank Holiday", - "2028-01-01": "New Year's Day", + "2028-01-01": "Bank Holiday; New Year's Day", "2028-01-02": "Bank Holiday", "2028-01-03": "Bank Holiday", "2028-01-10": "Coming of Age Day", @@ -1413,7 +1356,7 @@ "2028-11-03": "Culture Day", "2028-11-23": "Labor Thanksgiving Day", "2028-12-31": "Bank Holiday", - "2029-01-01": "New Year's Day", + "2029-01-01": "Bank Holiday; New Year's Day", "2029-01-02": "Bank Holiday", "2029-01-03": "Bank Holiday", "2029-01-08": "Coming of Age Day", @@ -1435,7 +1378,7 @@ "2029-11-03": "Culture Day", "2029-11-23": "Labor Thanksgiving Day", "2029-12-31": "Bank Holiday", - "2030-01-01": "New Year's Day", + "2030-01-01": "Bank Holiday; New Year's Day", "2030-01-02": "Bank Holiday", "2030-01-03": "Bank Holiday", "2030-01-14": "Coming of Age Day", @@ -1457,7 +1400,7 @@ "2030-11-04": "Substitute Holiday", "2030-11-23": "Labor Thanksgiving Day", "2030-12-31": "Bank Holiday", - "2031-01-01": "New Year's Day", + "2031-01-01": "Bank Holiday; New Year's Day", "2031-01-02": "Bank Holiday", "2031-01-03": "Bank Holiday", "2031-01-13": "Coming of Age Day", @@ -1479,7 +1422,7 @@ "2031-11-23": "Labor Thanksgiving Day", "2031-11-24": "Substitute Holiday", "2031-12-31": "Bank Holiday", - "2032-01-01": "New Year's Day", + "2032-01-01": "Bank Holiday; New Year's Day", "2032-01-02": "Bank Holiday", "2032-01-03": "Bank Holiday", "2032-01-12": "Coming of Age Day", @@ -1499,7 +1442,7 @@ "2032-11-03": "Culture Day", "2032-11-23": "Labor Thanksgiving Day", "2032-12-31": "Bank Holiday", - "2033-01-01": "New Year's Day", + "2033-01-01": "Bank Holiday; New Year's Day", "2033-01-02": "Bank Holiday", "2033-01-03": "Bank Holiday", "2033-01-10": "Coming of Age Day", @@ -1519,7 +1462,7 @@ "2033-11-03": "Culture Day", "2033-11-23": "Labor Thanksgiving Day", "2033-12-31": "Bank Holiday", - "2034-01-01": "New Year's Day", + "2034-01-01": "Bank Holiday; New Year's Day", "2034-01-02": "Bank Holiday; Substitute Holiday", "2034-01-03": "Bank Holiday", "2034-01-09": "Coming of Age Day", @@ -1538,7 +1481,7 @@ "2034-11-03": "Culture Day", "2034-11-23": "Labor Thanksgiving Day", "2034-12-31": "Bank Holiday", - "2035-01-01": "New Year's Day", + "2035-01-01": "Bank Holiday; New Year's Day", "2035-01-02": "Bank Holiday", "2035-01-03": "Bank Holiday", "2035-01-08": "Coming of Age Day", @@ -1560,7 +1503,7 @@ "2035-11-03": "Culture Day", "2035-11-23": "Labor Thanksgiving Day", "2035-12-31": "Bank Holiday", - "2036-01-01": "New Year's Day", + "2036-01-01": "Bank Holiday; New Year's Day", "2036-01-02": "Bank Holiday", "2036-01-03": "Bank Holiday", "2036-01-14": "Coming of Age Day", @@ -1581,7 +1524,7 @@ "2036-11-23": "Labor Thanksgiving Day", "2036-11-24": "Substitute Holiday", "2036-12-31": "Bank Holiday", - "2037-01-01": "New Year's Day", + "2037-01-01": "Bank Holiday; New Year's Day", "2037-01-02": "Bank Holiday", "2037-01-03": "Bank Holiday", "2037-01-12": "Coming of Age Day", @@ -1602,7 +1545,7 @@ "2037-11-03": "Culture Day", "2037-11-23": "Labor Thanksgiving Day", "2037-12-31": "Bank Holiday", - "2038-01-01": "New Year's Day", + "2038-01-01": "Bank Holiday; New Year's Day", "2038-01-02": "Bank Holiday", "2038-01-03": "Bank Holiday", "2038-01-11": "Coming of Age Day", @@ -1621,7 +1564,7 @@ "2038-11-03": "Culture Day", "2038-11-23": "Labor Thanksgiving Day", "2038-12-31": "Bank Holiday", - "2039-01-01": "New Year's Day", + "2039-01-01": "Bank Holiday; New Year's Day", "2039-01-02": "Bank Holiday", "2039-01-03": "Bank Holiday", "2039-01-10": "Coming of Age Day", @@ -1640,7 +1583,7 @@ "2039-11-03": "Culture Day", "2039-11-23": "Labor Thanksgiving Day", "2039-12-31": "Bank Holiday", - "2040-01-01": "New Year's Day", + "2040-01-01": "Bank Holiday; New Year's Day", "2040-01-02": "Bank Holiday; Substitute Holiday", "2040-01-03": "Bank Holiday", "2040-01-09": "Coming of Age Day", @@ -1660,7 +1603,7 @@ "2040-11-03": "Culture Day", "2040-11-23": "Labor Thanksgiving Day", "2040-12-31": "Bank Holiday", - "2041-01-01": "New Year's Day", + "2041-01-01": "Bank Holiday; New Year's Day", "2041-01-02": "Bank Holiday", "2041-01-03": "Bank Holiday", "2041-01-14": "Coming of Age Day", @@ -1682,7 +1625,7 @@ "2041-11-04": "Substitute Holiday", "2041-11-23": "Labor Thanksgiving Day", "2041-12-31": "Bank Holiday", - "2042-01-01": "New Year's Day", + "2042-01-01": "Bank Holiday; New Year's Day", "2042-01-02": "Bank Holiday", "2042-01-03": "Bank Holiday", "2042-01-13": "Coming of Age Day", @@ -1704,7 +1647,7 @@ "2042-11-23": "Labor Thanksgiving Day", "2042-11-24": "Substitute Holiday", "2042-12-31": "Bank Holiday", - "2043-01-01": "New Year's Day", + "2043-01-01": "Bank Holiday; New Year's Day", "2043-01-02": "Bank Holiday", "2043-01-03": "Bank Holiday", "2043-01-12": "Coming of Age Day", @@ -1725,7 +1668,7 @@ "2043-11-03": "Culture Day", "2043-11-23": "Labor Thanksgiving Day", "2043-12-31": "Bank Holiday", - "2044-01-01": "New Year's Day", + "2044-01-01": "Bank Holiday; New Year's Day", "2044-01-02": "Bank Holiday", "2044-01-03": "Bank Holiday", "2044-01-11": "Coming of Age Day", @@ -1745,7 +1688,7 @@ "2044-11-03": "Culture Day", "2044-11-23": "Labor Thanksgiving Day", "2044-12-31": "Bank Holiday", - "2045-01-01": "New Year's Day", + "2045-01-01": "Bank Holiday; New Year's Day", "2045-01-02": "Bank Holiday; Substitute Holiday", "2045-01-03": "Bank Holiday", "2045-01-09": "Coming of Age Day", @@ -1764,7 +1707,7 @@ "2045-11-03": "Culture Day", "2045-11-23": "Labor Thanksgiving Day", "2045-12-31": "Bank Holiday", - "2046-01-01": "New Year's Day", + "2046-01-01": "Bank Holiday; New Year's Day", "2046-01-02": "Bank Holiday", "2046-01-03": "Bank Holiday", "2046-01-08": "Coming of Age Day", @@ -1786,7 +1729,7 @@ "2046-11-03": "Culture Day", "2046-11-23": "Labor Thanksgiving Day", "2046-12-31": "Bank Holiday", - "2047-01-01": "New Year's Day", + "2047-01-01": "Bank Holiday; New Year's Day", "2047-01-02": "Bank Holiday", "2047-01-03": "Bank Holiday", "2047-01-14": "Coming of Age Day", @@ -1808,7 +1751,7 @@ "2047-11-04": "Substitute Holiday", "2047-11-23": "Labor Thanksgiving Day", "2047-12-31": "Bank Holiday", - "2048-01-01": "New Year's Day", + "2048-01-01": "Bank Holiday; New Year's Day", "2048-01-02": "Bank Holiday", "2048-01-03": "Bank Holiday", "2048-01-13": "Coming of Age Day", @@ -1829,7 +1772,7 @@ "2048-11-03": "Culture Day", "2048-11-23": "Labor Thanksgiving Day", "2048-12-31": "Bank Holiday", - "2049-01-01": "New Year's Day", + "2049-01-01": "Bank Holiday; New Year's Day", "2049-01-02": "Bank Holiday", "2049-01-03": "Bank Holiday", "2049-01-11": "Coming of Age Day", @@ -1849,7 +1792,7 @@ "2049-11-03": "Culture Day", "2049-11-23": "Labor Thanksgiving Day", "2049-12-31": "Bank Holiday", - "2050-01-01": "New Year's Day", + "2050-01-01": "Bank Holiday; New Year's Day", "2050-01-02": "Bank Holiday", "2050-01-03": "Bank Holiday", "2050-01-10": "Coming of Age Day", diff --git a/snapshots/countries/KN_COMMON.json b/snapshots/countries/KN_COMMON.json new file mode 100644 index 000000000..bdaafbf1d --- /dev/null +++ b/snapshots/countries/KN_COMMON.json @@ -0,0 +1,921 @@ +{ + "1983-01-01": "Carnival Day", + "1983-01-02": "Carnival Day - Last Lap", + "1983-01-03": "Carnival Day - Last Lap (observed)", + "1983-04-01": "Good Friday", + "1983-04-04": "Easter Monday", + "1983-05-02": "Labour Day", + "1983-05-23": "Whit Monday", + "1983-08-01": "First Monday of August", + "1983-08-02": "Culturama Day - Last Lap", + "1983-09-19": "Independence Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Boxing Day", + "1983-12-27": "Christmas Day (observed)", + "1984-01-01": "Carnival Day", + "1984-01-02": "Carnival Day - Last Lap", + "1984-01-03": "Carnival Day (observed)", + "1984-04-20": "Good Friday", + "1984-04-23": "Easter Monday", + "1984-05-07": "Labour Day", + "1984-06-11": "Whit Monday", + "1984-08-06": "First Monday of August", + "1984-08-07": "Culturama Day - Last Lap", + "1984-09-19": "Independence Day", + "1984-12-25": "Christmas Day", + "1984-12-26": "Boxing Day", + "1985-01-01": "Carnival Day", + "1985-01-02": "Carnival Day - Last Lap", + "1985-04-05": "Good Friday", + "1985-04-08": "Easter Monday", + "1985-05-06": "Labour Day", + "1985-05-27": "Whit Monday", + "1985-08-05": "First Monday of August", + "1985-08-06": "Culturama Day - Last Lap", + "1985-09-19": "Independence Day", + "1985-12-25": "Christmas Day", + "1985-12-26": "Boxing Day", + "1986-01-01": "Carnival Day", + "1986-01-02": "Carnival Day - Last Lap", + "1986-03-28": "Good Friday", + "1986-03-31": "Easter Monday", + "1986-05-05": "Labour Day", + "1986-05-19": "Whit Monday", + "1986-08-04": "First Monday of August", + "1986-08-05": "Culturama Day - Last Lap", + "1986-09-19": "Independence Day", + "1986-12-25": "Christmas Day", + "1986-12-26": "Boxing Day", + "1987-01-01": "Carnival Day", + "1987-01-02": "Carnival Day - Last Lap", + "1987-04-17": "Good Friday", + "1987-04-20": "Easter Monday", + "1987-05-04": "Labour Day", + "1987-06-08": "Whit Monday", + "1987-08-03": "First Monday of August", + "1987-08-04": "Culturama Day - Last Lap", + "1987-09-19": "Independence Day", + "1987-12-25": "Christmas Day", + "1987-12-26": "Boxing Day", + "1988-01-01": "Carnival Day", + "1988-01-02": "Carnival Day - Last Lap", + "1988-04-01": "Good Friday", + "1988-04-04": "Easter Monday", + "1988-05-02": "Labour Day", + "1988-05-23": "Whit Monday", + "1988-08-01": "First Monday of August", + "1988-08-02": "Culturama Day - Last Lap", + "1988-09-19": "Independence Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Boxing Day", + "1988-12-27": "Christmas Day (observed)", + "1989-01-01": "Carnival Day", + "1989-01-02": "Carnival Day - Last Lap", + "1989-01-03": "Carnival Day (observed)", + "1989-03-24": "Good Friday", + "1989-03-27": "Easter Monday", + "1989-05-01": "Labour Day", + "1989-05-15": "Whit Monday", + "1989-08-07": "First Monday of August", + "1989-08-08": "Culturama Day - Last Lap", + "1989-09-19": "Independence Day", + "1989-12-25": "Christmas Day", + "1989-12-26": "Boxing Day", + "1990-01-01": "Carnival Day", + "1990-01-02": "Carnival Day - Last Lap", + "1990-04-13": "Good Friday", + "1990-04-16": "Easter Monday", + "1990-05-07": "Labour Day", + "1990-06-04": "Whit Monday", + "1990-08-06": "First Monday of August", + "1990-08-07": "Culturama Day - Last Lap", + "1990-09-19": "Independence Day", + "1990-12-25": "Christmas Day", + "1990-12-26": "Boxing Day", + "1991-01-01": "Carnival Day", + "1991-01-02": "Carnival Day - Last Lap", + "1991-03-29": "Good Friday", + "1991-04-01": "Easter Monday", + "1991-05-06": "Labour Day", + "1991-05-20": "Whit Monday", + "1991-08-05": "First Monday of August", + "1991-08-06": "Culturama Day - Last Lap", + "1991-09-19": "Independence Day", + "1991-12-25": "Christmas Day", + "1991-12-26": "Boxing Day", + "1992-01-01": "Carnival Day", + "1992-01-02": "Carnival Day - Last Lap", + "1992-04-17": "Good Friday", + "1992-04-20": "Easter Monday", + "1992-05-04": "Labour Day", + "1992-06-08": "Whit Monday", + "1992-08-03": "First Monday of August", + "1992-08-04": "Culturama Day - Last Lap", + "1992-09-19": "Independence Day", + "1992-12-25": "Christmas Day", + "1992-12-26": "Boxing Day", + "1993-01-01": "Carnival Day", + "1993-01-02": "Carnival Day - Last Lap", + "1993-04-09": "Good Friday", + "1993-04-12": "Easter Monday", + "1993-05-03": "Labour Day", + "1993-05-31": "Whit Monday", + "1993-08-02": "First Monday of August", + "1993-08-03": "Culturama Day - Last Lap", + "1993-09-19": "Independence Day", + "1993-09-20": "Independence Day (observed)", + "1993-12-25": "Christmas Day", + "1993-12-26": "Boxing Day", + "1993-12-27": "Boxing Day (observed)", + "1994-01-01": "Carnival Day", + "1994-01-02": "Carnival Day - Last Lap", + "1994-01-03": "Carnival Day - Last Lap (observed)", + "1994-04-01": "Good Friday", + "1994-04-04": "Easter Monday", + "1994-05-02": "Labour Day", + "1994-05-23": "Whit Monday", + "1994-08-01": "First Monday of August", + "1994-08-02": "Culturama Day - Last Lap", + "1994-09-19": "Independence Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Boxing Day", + "1994-12-27": "Christmas Day (observed)", + "1995-01-01": "Carnival Day", + "1995-01-02": "Carnival Day - Last Lap", + "1995-01-03": "Carnival Day (observed)", + "1995-04-14": "Good Friday", + "1995-04-17": "Easter Monday", + "1995-05-01": "Labour Day", + "1995-06-05": "Whit Monday", + "1995-08-07": "First Monday of August", + "1995-08-08": "Culturama Day - Last Lap", + "1995-09-19": "Independence Day", + "1995-12-25": "Christmas Day", + "1995-12-26": "Boxing Day", + "1996-01-01": "Carnival Day", + "1996-01-02": "Carnival Day - Last Lap", + "1996-04-05": "Good Friday", + "1996-04-08": "Easter Monday", + "1996-05-06": "Labour Day", + "1996-05-27": "Whit Monday", + "1996-08-05": "First Monday of August", + "1996-08-06": "Culturama Day - Last Lap", + "1996-09-19": "Independence Day", + "1996-12-25": "Christmas Day", + "1996-12-26": "Boxing Day", + "1997-01-01": "Carnival Day", + "1997-01-02": "Carnival Day - Last Lap", + "1997-03-28": "Good Friday", + "1997-03-31": "Easter Monday", + "1997-05-05": "Labour Day", + "1997-05-19": "Whit Monday", + "1997-08-04": "First Monday of August", + "1997-08-05": "Culturama Day - Last Lap", + "1997-09-19": "Independence Day", + "1997-12-25": "Christmas Day", + "1997-12-26": "Boxing Day", + "1998-01-01": "Carnival Day", + "1998-01-02": "Carnival Day - Last Lap", + "1998-04-10": "Good Friday", + "1998-04-13": "Easter Monday", + "1998-05-04": "Labour Day", + "1998-06-01": "Whit Monday", + "1998-08-03": "Emancipation Day", + "1998-08-04": "Culturama Day - Last Lap", + "1998-09-16": "National Heroes Day", + "1998-09-19": "Independence Day", + "1998-12-25": "Christmas Day", + "1998-12-26": "Boxing Day", + "1999-01-01": "Carnival Day", + "1999-01-02": "Carnival Day - Last Lap", + "1999-04-02": "Good Friday", + "1999-04-05": "Easter Monday", + "1999-05-03": "Labour Day", + "1999-05-24": "Whit Monday", + "1999-08-02": "Emancipation Day", + "1999-08-03": "Culturama Day - Last Lap", + "1999-09-16": "National Heroes Day", + "1999-09-19": "Independence Day", + "1999-09-20": "Independence Day (observed)", + "1999-12-25": "Christmas Day", + "1999-12-26": "Boxing Day", + "1999-12-27": "Boxing Day (observed)", + "2000-01-01": "Carnival Day", + "2000-01-02": "Carnival Day - Last Lap", + "2000-01-03": "Carnival Day - Last Lap (observed)", + "2000-04-21": "Good Friday", + "2000-04-24": "Easter Monday", + "2000-05-01": "Labour Day", + "2000-06-12": "Whit Monday", + "2000-08-07": "Emancipation Day", + "2000-08-08": "Culturama Day - Last Lap", + "2000-09-16": "National Heroes Day", + "2000-09-19": "Independence Day", + "2000-12-25": "Christmas Day", + "2000-12-26": "Boxing Day", + "2001-01-01": "Carnival Day", + "2001-01-02": "Carnival Day - Last Lap", + "2001-04-13": "Good Friday", + "2001-04-16": "Easter Monday", + "2001-05-07": "Labour Day", + "2001-06-04": "Whit Monday", + "2001-08-06": "Emancipation Day", + "2001-08-07": "Culturama Day - Last Lap", + "2001-09-16": "National Heroes Day", + "2001-09-17": "National Heroes Day (observed)", + "2001-09-19": "Independence Day", + "2001-12-25": "Christmas Day", + "2001-12-26": "Boxing Day", + "2002-01-01": "Carnival Day", + "2002-01-02": "Carnival Day - Last Lap", + "2002-03-29": "Good Friday", + "2002-04-01": "Easter Monday", + "2002-05-06": "Labour Day", + "2002-05-20": "Whit Monday", + "2002-08-05": "Emancipation Day", + "2002-08-06": "Culturama Day - Last Lap", + "2002-09-16": "National Heroes Day", + "2002-09-19": "Independence Day", + "2002-12-25": "Christmas Day", + "2002-12-26": "Boxing Day", + "2003-01-01": "Carnival Day", + "2003-01-02": "Carnival Day - Last Lap", + "2003-04-18": "Good Friday", + "2003-04-21": "Easter Monday", + "2003-05-05": "Labour Day", + "2003-06-09": "Whit Monday", + "2003-08-04": "Emancipation Day", + "2003-08-05": "Culturama Day - Last Lap", + "2003-08-25": "Kim Collins Day", + "2003-09-16": "National Heroes Day", + "2003-09-19": "Independence Day", + "2003-12-25": "Christmas Day", + "2003-12-26": "Boxing Day", + "2004-01-01": "Carnival Day", + "2004-01-02": "Carnival Day - Last Lap", + "2004-04-09": "Good Friday", + "2004-04-12": "Easter Monday", + "2004-05-03": "Labour Day", + "2004-05-31": "Whit Monday", + "2004-08-02": "Emancipation Day", + "2004-08-03": "Culturama Day - Last Lap", + "2004-08-25": "Kim Collins Day", + "2004-09-16": "National Heroes Day", + "2004-09-19": "Independence Day", + "2004-09-20": "Independence Day (observed)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Boxing Day", + "2004-12-27": "Boxing Day (observed)", + "2005-01-01": "Carnival Day", + "2005-01-02": "Carnival Day - Last Lap", + "2005-01-03": "Carnival Day - Last Lap (observed)", + "2005-03-25": "Good Friday", + "2005-03-28": "Easter Monday", + "2005-05-02": "Labour Day", + "2005-05-16": "Whit Monday", + "2005-08-01": "Emancipation Day", + "2005-08-02": "Culturama Day - Last Lap", + "2005-08-25": "Kim Collins Day", + "2005-09-16": "National Heroes Day", + "2005-09-19": "Independence Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Boxing Day", + "2005-12-27": "Christmas Day (observed)", + "2006-01-01": "Carnival Day", + "2006-01-02": "Carnival Day - Last Lap", + "2006-01-03": "Carnival Day (observed)", + "2006-04-14": "Good Friday", + "2006-04-17": "Easter Monday", + "2006-05-01": "Labour Day", + "2006-06-05": "Whit Monday", + "2006-08-07": "Emancipation Day", + "2006-08-08": "Culturama Day - Last Lap", + "2006-08-25": "Kim Collins Day", + "2006-09-16": "National Heroes Day", + "2006-09-19": "Independence Day", + "2006-12-25": "Christmas Day", + "2006-12-26": "Boxing Day", + "2007-01-01": "Carnival Day", + "2007-01-02": "Carnival Day - Last Lap", + "2007-04-06": "Good Friday", + "2007-04-09": "Easter Monday", + "2007-05-07": "Labour Day", + "2007-05-28": "Whit Monday", + "2007-08-06": "Emancipation Day", + "2007-08-07": "Culturama Day - Last Lap", + "2007-08-25": "Kim Collins Day", + "2007-09-16": "National Heroes Day", + "2007-09-17": "National Heroes Day (observed)", + "2007-09-19": "Independence Day", + "2007-12-25": "Christmas Day", + "2007-12-26": "Boxing Day", + "2008-01-01": "Carnival Day", + "2008-01-02": "Carnival Day - Last Lap", + "2008-03-21": "Good Friday", + "2008-03-24": "Easter Monday", + "2008-05-05": "Labour Day", + "2008-05-12": "Whit Monday", + "2008-08-04": "Emancipation Day", + "2008-08-05": "Culturama Day - Last Lap", + "2008-08-25": "Kim Collins Day", + "2008-09-16": "National Heroes Day", + "2008-09-19": "Independence Day", + "2008-12-25": "Christmas Day", + "2008-12-26": "Boxing Day", + "2009-01-01": "Carnival Day", + "2009-01-02": "Carnival Day - Last Lap", + "2009-04-10": "Good Friday", + "2009-04-13": "Easter Monday", + "2009-05-04": "Labour Day", + "2009-06-01": "Whit Monday", + "2009-08-03": "Emancipation Day", + "2009-08-04": "Culturama Day - Last Lap", + "2009-08-25": "Kim Collins Day", + "2009-09-16": "National Heroes Day", + "2009-09-19": "Independence Day", + "2009-12-25": "Christmas Day", + "2009-12-26": "Boxing Day", + "2010-01-01": "Carnival Day", + "2010-01-02": "Carnival Day - Last Lap", + "2010-04-02": "Good Friday", + "2010-04-05": "Easter Monday", + "2010-05-03": "Labour Day", + "2010-05-24": "Whit Monday", + "2010-08-02": "Emancipation Day", + "2010-08-03": "Culturama Day - Last Lap", + "2010-08-25": "Kim Collins Day", + "2010-09-16": "National Heroes Day", + "2010-09-19": "Independence Day", + "2010-09-20": "Independence Day (observed)", + "2010-12-25": "Christmas Day", + "2010-12-26": "Boxing Day", + "2010-12-27": "Boxing Day (observed)", + "2011-01-01": "Carnival Day", + "2011-01-02": "Carnival Day - Last Lap", + "2011-01-03": "Carnival Day - Last Lap (observed)", + "2011-04-22": "Good Friday", + "2011-04-25": "Easter Monday", + "2011-05-02": "Labour Day", + "2011-06-13": "Whit Monday", + "2011-08-01": "Emancipation Day", + "2011-08-02": "Culturama Day - Last Lap", + "2011-08-25": "Kim Collins Day", + "2011-09-16": "National Heroes Day", + "2011-09-19": "Independence Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Boxing Day", + "2011-12-27": "Christmas Day (observed)", + "2012-01-01": "Carnival Day", + "2012-01-02": "Carnival Day - Last Lap", + "2012-01-03": "Carnival Day (observed)", + "2012-04-06": "Good Friday", + "2012-04-09": "Easter Monday", + "2012-05-07": "Labour Day", + "2012-05-28": "Whit Monday", + "2012-08-06": "Emancipation Day", + "2012-08-07": "Culturama Day - Last Lap", + "2012-08-25": "Kim Collins Day", + "2012-09-16": "National Heroes Day", + "2012-09-17": "National Heroes Day (observed)", + "2012-09-19": "Independence Day", + "2012-12-25": "Christmas Day", + "2012-12-26": "Boxing Day", + "2013-01-01": "Carnival Day", + "2013-01-02": "Carnival Day - Last Lap", + "2013-03-29": "Good Friday", + "2013-04-01": "Easter Monday", + "2013-05-06": "Labour Day", + "2013-05-20": "Whit Monday", + "2013-08-05": "Emancipation Day", + "2013-08-06": "Culturama Day - Last Lap", + "2013-08-25": "Kim Collins Day", + "2013-09-16": "National Heroes Day", + "2013-09-19": "Independence Day", + "2013-12-25": "Christmas Day", + "2013-12-26": "Boxing Day", + "2014-01-01": "Carnival Day", + "2014-01-02": "Carnival Day - Last Lap", + "2014-04-18": "Good Friday", + "2014-04-21": "Easter Monday", + "2014-05-05": "Labour Day", + "2014-06-09": "Whit Monday", + "2014-08-04": "Emancipation Day", + "2014-08-05": "Culturama Day - Last Lap", + "2014-08-25": "Kim Collins Day", + "2014-09-16": "National Heroes Day", + "2014-09-19": "Independence Day", + "2014-12-25": "Christmas Day", + "2014-12-26": "Boxing Day", + "2015-01-01": "Carnival Day", + "2015-01-02": "Carnival Day - Last Lap", + "2015-02-18": "Federal Election Victory Day", + "2015-04-03": "Good Friday", + "2015-04-06": "Easter Monday", + "2015-05-04": "Labour Day", + "2015-05-25": "Whit Monday", + "2015-08-03": "Emancipation Day", + "2015-08-04": "Culturama Day - Last Lap", + "2015-08-25": "Kim Collins Day", + "2015-09-16": "National Heroes Day", + "2015-09-19": "Independence Day", + "2015-12-25": "Christmas Day", + "2015-12-26": "Boxing Day", + "2016-01-01": "Carnival Day", + "2016-01-02": "Carnival Day - Last Lap", + "2016-03-25": "Good Friday", + "2016-03-28": "Easter Monday", + "2016-05-02": "Labour Day", + "2016-05-16": "Whit Monday", + "2016-08-01": "Emancipation Day", + "2016-08-02": "Culturama Day - Last Lap", + "2016-08-25": "Kim Collins Day", + "2016-09-16": "National Heroes Day", + "2016-09-19": "Independence Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "Boxing Day", + "2016-12-27": "Christmas Day (observed)", + "2017-01-01": "Carnival Day", + "2017-01-02": "Carnival Day - Last Lap", + "2017-01-03": "Carnival Day (observed)", + "2017-03-23": "The Passing of His Excellency Sir Probyn Inniss", + "2017-04-10": "The Passing of His Excellency Sir Cuthbert Sebastian", + "2017-04-14": "Good Friday", + "2017-04-17": "Easter Monday", + "2017-05-01": "Labour Day", + "2017-06-05": "Whit Monday", + "2017-08-07": "Emancipation Day", + "2017-08-08": "Culturama Day - Last Lap", + "2017-08-25": "Kim Collins Day", + "2017-09-16": "National Heroes Day", + "2017-09-19": "Independence Day", + "2017-09-20": "National Clean Up Day", + "2017-12-19": "Local Election Victory Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "Boxing Day", + "2018-01-01": "Carnival Day", + "2018-01-02": "Carnival Day - Last Lap", + "2018-03-30": "Good Friday", + "2018-04-02": "Easter Monday", + "2018-05-07": "Labour Day", + "2018-05-21": "Whit Monday", + "2018-08-06": "Emancipation Day", + "2018-08-07": "Culturama Day - Last Lap", + "2018-08-25": "Kim Collins Day", + "2018-09-16": "National Heroes Day", + "2018-09-17": "National Heroes Day (observed)", + "2018-09-19": "Independence Day", + "2018-12-25": "Christmas Day", + "2018-12-26": "Boxing Day", + "2018-12-31": "Children's Carnival Day", + "2019-01-01": "Carnival Day", + "2019-01-02": "Carnival Day - Last Lap", + "2019-04-19": "Good Friday", + "2019-04-22": "Easter Monday", + "2019-05-06": "Labour Day", + "2019-06-10": "Whit Monday", + "2019-08-05": "Emancipation Day", + "2019-08-06": "Culturama Day - Last Lap", + "2019-08-25": "Kim Collins Day", + "2019-09-16": "National Heroes Day", + "2019-09-19": "Independence Day", + "2019-12-25": "Christmas Day", + "2019-12-26": "Boxing Day", + "2019-12-31": "Children's Carnival Day", + "2020-01-01": "Carnival Day", + "2020-01-02": "Carnival Day - Last Lap", + "2020-04-10": "Good Friday", + "2020-04-13": "Easter Monday", + "2020-05-04": "Labour Day", + "2020-06-01": "Whit Monday", + "2020-08-03": "Emancipation Day", + "2020-08-04": "Culturama Day - Last Lap", + "2020-08-25": "Kim Collins Day", + "2020-09-16": "National Heroes Day", + "2020-09-19": "Independence Day", + "2020-12-25": "Christmas Day", + "2020-12-26": "Boxing Day", + "2021-01-01": "Carnival Day", + "2021-01-02": "Carnival Day - Last Lap", + "2021-04-02": "Good Friday", + "2021-04-05": "Easter Monday", + "2021-05-03": "Labour Day", + "2021-05-24": "Whit Monday", + "2021-08-02": "Emancipation Day", + "2021-08-03": "Culturama Day - Last Lap", + "2021-08-25": "Kim Collins Day", + "2021-09-16": "National Heroes Day", + "2021-09-19": "Independence Day", + "2021-09-20": "Independence Day (observed)", + "2021-12-25": "Christmas Day", + "2021-12-26": "Boxing Day", + "2021-12-27": "Boxing Day (observed)", + "2022-01-01": "Carnival Day", + "2022-01-02": "Carnival Day - Last Lap", + "2022-01-03": "Carnival Day - Last Lap (observed)", + "2022-04-15": "Good Friday", + "2022-04-18": "Easter Monday", + "2022-04-27": "2022 Gulf Insurance Inter-Primary Schools Championship", + "2022-05-02": "Labour Day", + "2022-06-06": "Whit Monday", + "2022-08-01": "Emancipation Day", + "2022-08-02": "Culturama Day - Last Lap", + "2022-08-08": "Federal Election Victory Day", + "2022-08-25": "Kim Collins Day", + "2022-09-16": "National Heroes Day", + "2022-09-19": "Independence Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Boxing Day", + "2022-12-27": "Christmas Day (observed)", + "2023-01-01": "Carnival Day", + "2023-01-02": "Carnival Day - Last Lap", + "2023-01-03": "Carnival Day (observed)", + "2023-04-07": "Good Friday", + "2023-04-10": "Easter Monday", + "2023-05-01": "Labour Day", + "2023-05-29": "Whit Monday", + "2023-07-04": "50th Anniversary of the Establishment of the Caribbean Community (CARICOM)", + "2023-07-20": "The Passing of His Excellency Sir Tapley Seaton", + "2023-08-07": "Emancipation Day", + "2023-08-08": "Culturama Day - Last Lap", + "2023-08-25": "Kim Collins Day", + "2023-09-16": "National Heroes Day", + "2023-09-19": "Independence Day", + "2023-12-25": "Christmas Day", + "2023-12-26": "Boxing Day", + "2023-12-30": "Children's Carnival Day", + "2024-01-01": "Carnival Day", + "2024-01-02": "Carnival Day - Last Lap", + "2024-03-29": "Good Friday", + "2024-04-01": "Easter Monday", + "2024-05-06": "Labour Day", + "2024-05-20": "Whit Monday", + "2024-08-01": "Junior Cultural Street Parade", + "2024-08-05": "Emancipation Day", + "2024-08-06": "Culturama Day - Last Lap", + "2024-08-25": "Kim Collins Day", + "2024-09-16": "National Heroes Day", + "2024-09-19": "Independence Day", + "2024-12-25": "Christmas Day", + "2024-12-26": "Boxing Day", + "2025-01-01": "Carnival Day", + "2025-01-02": "Carnival Day - Last Lap", + "2025-04-18": "Good Friday", + "2025-04-21": "Easter Monday", + "2025-05-05": "Labour Day", + "2025-06-09": "Whit Monday", + "2025-08-04": "Emancipation Day", + "2025-08-05": "Culturama Day - Last Lap", + "2025-08-25": "Kim Collins Day", + "2025-09-16": "National Heroes Day", + "2025-09-19": "Independence Day", + "2025-12-25": "Christmas Day", + "2025-12-26": "Boxing Day", + "2026-01-01": "Carnival Day", + "2026-01-02": "Carnival Day - Last Lap", + "2026-04-03": "Good Friday", + "2026-04-06": "Easter Monday", + "2026-05-04": "Labour Day", + "2026-05-25": "Whit Monday", + "2026-08-03": "Emancipation Day", + "2026-08-04": "Culturama Day - Last Lap", + "2026-08-25": "Kim Collins Day", + "2026-09-16": "National Heroes Day", + "2026-09-19": "Independence Day", + "2026-12-25": "Christmas Day", + "2026-12-26": "Boxing Day", + "2027-01-01": "Carnival Day", + "2027-01-02": "Carnival Day - Last Lap", + "2027-03-26": "Good Friday", + "2027-03-29": "Easter Monday", + "2027-05-03": "Labour Day", + "2027-05-17": "Whit Monday", + "2027-08-02": "Emancipation Day", + "2027-08-03": "Culturama Day - Last Lap", + "2027-08-25": "Kim Collins Day", + "2027-09-16": "National Heroes Day", + "2027-09-19": "Independence Day", + "2027-09-20": "Independence Day (observed)", + "2027-12-25": "Christmas Day", + "2027-12-26": "Boxing Day", + "2027-12-27": "Boxing Day (observed)", + "2028-01-01": "Carnival Day", + "2028-01-02": "Carnival Day - Last Lap", + "2028-01-03": "Carnival Day - Last Lap (observed)", + "2028-04-14": "Good Friday", + "2028-04-17": "Easter Monday", + "2028-05-01": "Labour Day", + "2028-06-05": "Whit Monday", + "2028-08-07": "Emancipation Day", + "2028-08-08": "Culturama Day - Last Lap", + "2028-08-25": "Kim Collins Day", + "2028-09-16": "National Heroes Day", + "2028-09-19": "Independence Day", + "2028-12-25": "Christmas Day", + "2028-12-26": "Boxing Day", + "2029-01-01": "Carnival Day", + "2029-01-02": "Carnival Day - Last Lap", + "2029-03-30": "Good Friday", + "2029-04-02": "Easter Monday", + "2029-05-07": "Labour Day", + "2029-05-21": "Whit Monday", + "2029-08-06": "Emancipation Day", + "2029-08-07": "Culturama Day - Last Lap", + "2029-08-25": "Kim Collins Day", + "2029-09-16": "National Heroes Day", + "2029-09-17": "National Heroes Day (observed)", + "2029-09-19": "Independence Day", + "2029-12-25": "Christmas Day", + "2029-12-26": "Boxing Day", + "2030-01-01": "Carnival Day", + "2030-01-02": "Carnival Day - Last Lap", + "2030-04-19": "Good Friday", + "2030-04-22": "Easter Monday", + "2030-05-06": "Labour Day", + "2030-06-10": "Whit Monday", + "2030-08-05": "Emancipation Day", + "2030-08-06": "Culturama Day - Last Lap", + "2030-08-25": "Kim Collins Day", + "2030-09-16": "National Heroes Day", + "2030-09-19": "Independence Day", + "2030-12-25": "Christmas Day", + "2030-12-26": "Boxing Day", + "2031-01-01": "Carnival Day", + "2031-01-02": "Carnival Day - Last Lap", + "2031-04-11": "Good Friday", + "2031-04-14": "Easter Monday", + "2031-05-05": "Labour Day", + "2031-06-02": "Whit Monday", + "2031-08-04": "Emancipation Day", + "2031-08-05": "Culturama Day - Last Lap", + "2031-08-25": "Kim Collins Day", + "2031-09-16": "National Heroes Day", + "2031-09-19": "Independence Day", + "2031-12-25": "Christmas Day", + "2031-12-26": "Boxing Day", + "2032-01-01": "Carnival Day", + "2032-01-02": "Carnival Day - Last Lap", + "2032-03-26": "Good Friday", + "2032-03-29": "Easter Monday", + "2032-05-03": "Labour Day", + "2032-05-17": "Whit Monday", + "2032-08-02": "Emancipation Day", + "2032-08-03": "Culturama Day - Last Lap", + "2032-08-25": "Kim Collins Day", + "2032-09-16": "National Heroes Day", + "2032-09-19": "Independence Day", + "2032-09-20": "Independence Day (observed)", + "2032-12-25": "Christmas Day", + "2032-12-26": "Boxing Day", + "2032-12-27": "Boxing Day (observed)", + "2033-01-01": "Carnival Day", + "2033-01-02": "Carnival Day - Last Lap", + "2033-01-03": "Carnival Day - Last Lap (observed)", + "2033-04-15": "Good Friday", + "2033-04-18": "Easter Monday", + "2033-05-02": "Labour Day", + "2033-06-06": "Whit Monday", + "2033-08-01": "Emancipation Day", + "2033-08-02": "Culturama Day - Last Lap", + "2033-08-25": "Kim Collins Day", + "2033-09-16": "National Heroes Day", + "2033-09-19": "Independence Day", + "2033-12-25": "Christmas Day", + "2033-12-26": "Boxing Day", + "2033-12-27": "Christmas Day (observed)", + "2034-01-01": "Carnival Day", + "2034-01-02": "Carnival Day - Last Lap", + "2034-01-03": "Carnival Day (observed)", + "2034-04-07": "Good Friday", + "2034-04-10": "Easter Monday", + "2034-05-01": "Labour Day", + "2034-05-29": "Whit Monday", + "2034-08-07": "Emancipation Day", + "2034-08-08": "Culturama Day - Last Lap", + "2034-08-25": "Kim Collins Day", + "2034-09-16": "National Heroes Day", + "2034-09-19": "Independence Day", + "2034-12-25": "Christmas Day", + "2034-12-26": "Boxing Day", + "2035-01-01": "Carnival Day", + "2035-01-02": "Carnival Day - Last Lap", + "2035-03-23": "Good Friday", + "2035-03-26": "Easter Monday", + "2035-05-07": "Labour Day", + "2035-05-14": "Whit Monday", + "2035-08-06": "Emancipation Day", + "2035-08-07": "Culturama Day - Last Lap", + "2035-08-25": "Kim Collins Day", + "2035-09-16": "National Heroes Day", + "2035-09-17": "National Heroes Day (observed)", + "2035-09-19": "Independence Day", + "2035-12-25": "Christmas Day", + "2035-12-26": "Boxing Day", + "2036-01-01": "Carnival Day", + "2036-01-02": "Carnival Day - Last Lap", + "2036-04-11": "Good Friday", + "2036-04-14": "Easter Monday", + "2036-05-05": "Labour Day", + "2036-06-02": "Whit Monday", + "2036-08-04": "Emancipation Day", + "2036-08-05": "Culturama Day - Last Lap", + "2036-08-25": "Kim Collins Day", + "2036-09-16": "National Heroes Day", + "2036-09-19": "Independence Day", + "2036-12-25": "Christmas Day", + "2036-12-26": "Boxing Day", + "2037-01-01": "Carnival Day", + "2037-01-02": "Carnival Day - Last Lap", + "2037-04-03": "Good Friday", + "2037-04-06": "Easter Monday", + "2037-05-04": "Labour Day", + "2037-05-25": "Whit Monday", + "2037-08-03": "Emancipation Day", + "2037-08-04": "Culturama Day - Last Lap", + "2037-08-25": "Kim Collins Day", + "2037-09-16": "National Heroes Day", + "2037-09-19": "Independence Day", + "2037-12-25": "Christmas Day", + "2037-12-26": "Boxing Day", + "2038-01-01": "Carnival Day", + "2038-01-02": "Carnival Day - Last Lap", + "2038-04-23": "Good Friday", + "2038-04-26": "Easter Monday", + "2038-05-03": "Labour Day", + "2038-06-14": "Whit Monday", + "2038-08-02": "Emancipation Day", + "2038-08-03": "Culturama Day - Last Lap", + "2038-08-25": "Kim Collins Day", + "2038-09-16": "National Heroes Day", + "2038-09-19": "Independence Day", + "2038-09-20": "Independence Day (observed)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Boxing Day", + "2038-12-27": "Boxing Day (observed)", + "2039-01-01": "Carnival Day", + "2039-01-02": "Carnival Day - Last Lap", + "2039-01-03": "Carnival Day - Last Lap (observed)", + "2039-04-08": "Good Friday", + "2039-04-11": "Easter Monday", + "2039-05-02": "Labour Day", + "2039-05-30": "Whit Monday", + "2039-08-01": "Emancipation Day", + "2039-08-02": "Culturama Day - Last Lap", + "2039-08-25": "Kim Collins Day", + "2039-09-16": "National Heroes Day", + "2039-09-19": "Independence Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Boxing Day", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "Carnival Day", + "2040-01-02": "Carnival Day - Last Lap", + "2040-01-03": "Carnival Day (observed)", + "2040-03-30": "Good Friday", + "2040-04-02": "Easter Monday", + "2040-05-07": "Labour Day", + "2040-05-21": "Whit Monday", + "2040-08-06": "Emancipation Day", + "2040-08-07": "Culturama Day - Last Lap", + "2040-08-25": "Kim Collins Day", + "2040-09-16": "National Heroes Day", + "2040-09-17": "National Heroes Day (observed)", + "2040-09-19": "Independence Day", + "2040-12-25": "Christmas Day", + "2040-12-26": "Boxing Day", + "2041-01-01": "Carnival Day", + "2041-01-02": "Carnival Day - Last Lap", + "2041-04-19": "Good Friday", + "2041-04-22": "Easter Monday", + "2041-05-06": "Labour Day", + "2041-06-10": "Whit Monday", + "2041-08-05": "Emancipation Day", + "2041-08-06": "Culturama Day - Last Lap", + "2041-08-25": "Kim Collins Day", + "2041-09-16": "National Heroes Day", + "2041-09-19": "Independence Day", + "2041-12-25": "Christmas Day", + "2041-12-26": "Boxing Day", + "2042-01-01": "Carnival Day", + "2042-01-02": "Carnival Day - Last Lap", + "2042-04-04": "Good Friday", + "2042-04-07": "Easter Monday", + "2042-05-05": "Labour Day", + "2042-05-26": "Whit Monday", + "2042-08-04": "Emancipation Day", + "2042-08-05": "Culturama Day - Last Lap", + "2042-08-25": "Kim Collins Day", + "2042-09-16": "National Heroes Day", + "2042-09-19": "Independence Day", + "2042-12-25": "Christmas Day", + "2042-12-26": "Boxing Day", + "2043-01-01": "Carnival Day", + "2043-01-02": "Carnival Day - Last Lap", + "2043-03-27": "Good Friday", + "2043-03-30": "Easter Monday", + "2043-05-04": "Labour Day", + "2043-05-18": "Whit Monday", + "2043-08-03": "Emancipation Day", + "2043-08-04": "Culturama Day - Last Lap", + "2043-08-25": "Kim Collins Day", + "2043-09-16": "National Heroes Day", + "2043-09-19": "Independence Day", + "2043-12-25": "Christmas Day", + "2043-12-26": "Boxing Day", + "2044-01-01": "Carnival Day", + "2044-01-02": "Carnival Day - Last Lap", + "2044-04-15": "Good Friday", + "2044-04-18": "Easter Monday", + "2044-05-02": "Labour Day", + "2044-06-06": "Whit Monday", + "2044-08-01": "Emancipation Day", + "2044-08-02": "Culturama Day - Last Lap", + "2044-08-25": "Kim Collins Day", + "2044-09-16": "National Heroes Day", + "2044-09-19": "Independence Day", + "2044-12-25": "Christmas Day", + "2044-12-26": "Boxing Day", + "2044-12-27": "Christmas Day (observed)", + "2045-01-01": "Carnival Day", + "2045-01-02": "Carnival Day - Last Lap", + "2045-01-03": "Carnival Day (observed)", + "2045-04-07": "Good Friday", + "2045-04-10": "Easter Monday", + "2045-05-01": "Labour Day", + "2045-05-29": "Whit Monday", + "2045-08-07": "Emancipation Day", + "2045-08-08": "Culturama Day - Last Lap", + "2045-08-25": "Kim Collins Day", + "2045-09-16": "National Heroes Day", + "2045-09-19": "Independence Day", + "2045-12-25": "Christmas Day", + "2045-12-26": "Boxing Day", + "2046-01-01": "Carnival Day", + "2046-01-02": "Carnival Day - Last Lap", + "2046-03-23": "Good Friday", + "2046-03-26": "Easter Monday", + "2046-05-07": "Labour Day", + "2046-05-14": "Whit Monday", + "2046-08-06": "Emancipation Day", + "2046-08-07": "Culturama Day - Last Lap", + "2046-08-25": "Kim Collins Day", + "2046-09-16": "National Heroes Day", + "2046-09-17": "National Heroes Day (observed)", + "2046-09-19": "Independence Day", + "2046-12-25": "Christmas Day", + "2046-12-26": "Boxing Day", + "2047-01-01": "Carnival Day", + "2047-01-02": "Carnival Day - Last Lap", + "2047-04-12": "Good Friday", + "2047-04-15": "Easter Monday", + "2047-05-06": "Labour Day", + "2047-06-03": "Whit Monday", + "2047-08-05": "Emancipation Day", + "2047-08-06": "Culturama Day - Last Lap", + "2047-08-25": "Kim Collins Day", + "2047-09-16": "National Heroes Day", + "2047-09-19": "Independence Day", + "2047-12-25": "Christmas Day", + "2047-12-26": "Boxing Day", + "2048-01-01": "Carnival Day", + "2048-01-02": "Carnival Day - Last Lap", + "2048-04-03": "Good Friday", + "2048-04-06": "Easter Monday", + "2048-05-04": "Labour Day", + "2048-05-25": "Whit Monday", + "2048-08-03": "Emancipation Day", + "2048-08-04": "Culturama Day - Last Lap", + "2048-08-25": "Kim Collins Day", + "2048-09-16": "National Heroes Day", + "2048-09-19": "Independence Day", + "2048-12-25": "Christmas Day", + "2048-12-26": "Boxing Day", + "2049-01-01": "Carnival Day", + "2049-01-02": "Carnival Day - Last Lap", + "2049-04-16": "Good Friday", + "2049-04-19": "Easter Monday", + "2049-05-03": "Labour Day", + "2049-06-07": "Whit Monday", + "2049-08-02": "Emancipation Day", + "2049-08-03": "Culturama Day - Last Lap", + "2049-08-25": "Kim Collins Day", + "2049-09-16": "National Heroes Day", + "2049-09-19": "Independence Day", + "2049-09-20": "Independence Day (observed)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Boxing Day", + "2049-12-27": "Boxing Day (observed)", + "2050-01-01": "Carnival Day", + "2050-01-02": "Carnival Day - Last Lap", + "2050-01-03": "Carnival Day - Last Lap (observed)", + "2050-04-08": "Good Friday", + "2050-04-11": "Easter Monday", + "2050-05-02": "Labour Day", + "2050-05-30": "Whit Monday", + "2050-08-01": "Emancipation Day", + "2050-08-02": "Culturama Day - Last Lap", + "2050-08-25": "Kim Collins Day", + "2050-09-16": "National Heroes Day", + "2050-09-19": "Independence Day", + "2050-12-25": "Christmas Day", + "2050-12-26": "Boxing Day", + "2050-12-27": "Christmas Day (observed)" +} diff --git a/snapshots/countries/KZ_COMMON.json b/snapshots/countries/KZ_COMMON.json index 1b1192122..fcf1d1045 100644 --- a/snapshots/countries/KZ_COMMON.json +++ b/snapshots/countries/KZ_COMMON.json @@ -1,969 +1,1018 @@ { - "1991-01-01": "New Year", - "1991-01-02": "New Year", + "1991-01-01": "New Year's Day", + "1991-01-02": "New Year's Day", "1991-03-08": "International Women's Day", - "1991-05-01": "Kazakhstan People Solidarity Holiday", + "1991-05-01": "Kazakhstan's People Solidarity Holiday", "1991-05-09": "Victory Day", - "1991-12-16": "Kazakhstan Independence Day", - "1992-01-01": "New Year", - "1992-01-02": "New Year", + "1991-12-16": "Independence Day", + "1992-01-01": "New Year's Day", + "1992-01-02": "New Year's Day", "1992-03-08": "International Women's Day", - "1992-05-01": "Kazakhstan People Solidarity Holiday", + "1992-05-01": "Kazakhstan's People Solidarity Holiday", "1992-05-09": "Victory Day", - "1992-12-16": "Kazakhstan Independence Day", - "1993-01-01": "New Year", - "1993-01-02": "New Year", + "1992-12-16": "Independence Day", + "1993-01-01": "New Year's Day", + "1993-01-02": "New Year's Day", "1993-03-08": "International Women's Day", - "1993-05-01": "Kazakhstan People Solidarity Holiday", + "1993-05-01": "Kazakhstan's People Solidarity Holiday", "1993-05-09": "Victory Day", - "1993-12-16": "Kazakhstan Independence Day", - "1994-01-01": "New Year", - "1994-01-02": "New Year", + "1993-12-16": "Independence Day", + "1994-01-01": "New Year's Day", + "1994-01-02": "New Year's Day", "1994-03-08": "International Women's Day", - "1994-05-01": "Kazakhstan People Solidarity Holiday", + "1994-05-01": "Kazakhstan's People Solidarity Holiday", "1994-05-09": "Victory Day", "1994-10-25": "Republic Day", - "1994-12-16": "Kazakhstan Independence Day", - "1995-01-01": "New Year", - "1995-01-02": "New Year", + "1994-12-16": "Independence Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day", "1995-03-08": "International Women's Day", - "1995-05-01": "Kazakhstan People Solidarity Holiday", + "1995-05-01": "Kazakhstan's People Solidarity Holiday", "1995-05-09": "Victory Day", "1995-10-25": "Republic Day", - "1995-12-16": "Kazakhstan Independence Day", - "1996-01-01": "New Year", - "1996-01-02": "New Year", + "1995-12-16": "Independence Day", + "1996-01-01": "New Year's Day", + "1996-01-02": "New Year's Day", "1996-03-08": "International Women's Day", - "1996-05-01": "Kazakhstan People Solidarity Holiday", + "1996-05-01": "Kazakhstan's People Solidarity Holiday", "1996-05-09": "Victory Day", - "1996-08-30": "Constitution Day of the Republic of Kazakhstan", + "1996-08-30": "Constitution Day", "1996-10-25": "Republic Day", - "1996-12-16": "Kazakhstan Independence Day", - "1997-01-01": "New Year", - "1997-01-02": "New Year", + "1996-12-16": "Independence Day", + "1997-01-01": "New Year's Day", + "1997-01-02": "New Year's Day", "1997-03-08": "International Women's Day", - "1997-05-01": "Kazakhstan People Solidarity Holiday", + "1997-05-01": "Kazakhstan's People Solidarity Holiday", "1997-05-09": "Victory Day", - "1997-08-30": "Constitution Day of the Republic of Kazakhstan", + "1997-08-30": "Constitution Day", "1997-10-25": "Republic Day", - "1997-12-16": "Kazakhstan Independence Day", - "1998-01-01": "New Year", - "1998-01-02": "New Year", + "1997-12-16": "Independence Day", + "1998-01-01": "New Year's Day", + "1998-01-02": "New Year's Day", "1998-03-08": "International Women's Day", - "1998-05-01": "Kazakhstan People Solidarity Holiday", + "1998-05-01": "Kazakhstan's People Solidarity Holiday", "1998-05-09": "Victory Day", - "1998-08-30": "Constitution Day of the Republic of Kazakhstan", + "1998-08-30": "Constitution Day", "1998-10-25": "Republic Day", - "1998-12-16": "Kazakhstan Independence Day", - "1999-01-01": "New Year", - "1999-01-02": "New Year", + "1998-12-16": "Independence Day", + "1999-01-01": "New Year's Day", + "1999-01-02": "New Year's Day", "1999-03-08": "International Women's Day", - "1999-05-01": "Kazakhstan People Solidarity Holiday", + "1999-05-01": "Kazakhstan's People Solidarity Holiday", "1999-05-09": "Victory Day", - "1999-08-30": "Constitution Day of the Republic of Kazakhstan", + "1999-08-30": "Constitution Day", "1999-10-25": "Republic Day", - "1999-12-16": "Kazakhstan Independence Day", - "2000-01-01": "New Year", - "2000-01-02": "New Year", + "1999-12-16": "Independence Day", + "2000-01-01": "New Year's Day", + "2000-01-02": "New Year's Day", "2000-03-08": "International Women's Day", - "2000-05-01": "Kazakhstan People Solidarity Holiday", + "2000-05-01": "Kazakhstan's People Solidarity Holiday", + "2000-05-08": "Day off (substituted from 05/06/2000)", "2000-05-09": "Victory Day", - "2000-08-30": "Constitution Day of the Republic of Kazakhstan", + "2000-08-30": "Constitution Day", "2000-10-25": "Republic Day", - "2000-12-16": "Kazakhstan Independence Day", - "2001-01-01": "New Year", - "2001-01-02": "New Year", + "2000-12-16": "Independence Day", + "2001-01-01": "New Year's Day", + "2001-01-02": "New Year's Day", "2001-03-08": "International Women's Day", - "2001-05-01": "Kazakhstan People Solidarity Holiday", + "2001-03-09": "Day off (substituted from 03/11/2001)", + "2001-03-23": "Day off (substituted from 03/25/2001)", + "2001-04-30": "Day off (substituted from 04/28/2001)", + "2001-05-01": "Kazakhstan's People Solidarity Holiday", "2001-05-09": "Victory Day", - "2001-08-30": "Constitution Day of the Republic of Kazakhstan", + "2001-08-30": "Constitution Day", "2001-10-25": "Republic Day", - "2001-12-16": "Kazakhstan Independence Day", - "2002-01-01": "New Year", - "2002-01-02": "New Year", + "2001-12-16": "Independence Day", + "2001-12-31": "Day off (substituted from 12/29/2001)", + "2002-01-01": "New Year's Day", + "2002-01-02": "New Year's Day", "2002-03-08": "International Women's Day", - "2002-03-22": "Nauryz holiday", - "2002-05-01": "Kazakhstan People Solidarity Holiday", + "2002-03-22": "Nowruz holiday", + "2002-05-01": "Kazakhstan's People Solidarity Holiday", "2002-05-09": "Victory Day", - "2002-08-30": "Constitution Day of the Republic of Kazakhstan", + "2002-05-10": "Day off (substituted from 05/12/2002)", + "2002-08-30": "Constitution Day", "2002-10-25": "Republic Day", - "2002-12-16": "Kazakhstan Independence Day", - "2002-12-17": "Kazakhstan Independence Day", - "2003-01-01": "New Year", - "2003-01-02": "New Year", + "2002-12-16": "Independence Day", + "2002-12-17": "Independence Day", + "2003-01-01": "New Year's Day", + "2003-01-02": "New Year's Day", "2003-03-08": "International Women's Day", "2003-03-10": "International Women's Day (observed)", - "2003-03-22": "Nauryz holiday", - "2003-03-24": "Nauryz holiday (observed)", - "2003-05-01": "Kazakhstan People Solidarity Holiday", + "2003-03-22": "Nowruz holiday", + "2003-03-24": "Nowruz holiday (observed)", + "2003-05-01": "Kazakhstan's People Solidarity Holiday", + "2003-05-02": "Day off (substituted from 05/04/2003)", "2003-05-09": "Victory Day", - "2003-08-30": "Constitution Day of the Republic of Kazakhstan", - "2003-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2003-08-30": "Constitution Day", + "2003-09-01": "Constitution Day (observed)", "2003-10-25": "Republic Day", "2003-10-27": "Republic Day (observed)", - "2003-12-16": "Kazakhstan Independence Day", - "2003-12-17": "Kazakhstan Independence Day", - "2004-01-01": "New Year", - "2004-01-02": "New Year", + "2003-12-15": "Day off (substituted from 12/13/2003)", + "2003-12-16": "Independence Day", + "2003-12-17": "Independence Day", + "2004-01-01": "New Year's Day", + "2004-01-02": "New Year's Day", "2004-03-08": "International Women's Day", - "2004-03-22": "Nauryz holiday", - "2004-05-01": "Kazakhstan People Solidarity Holiday", - "2004-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2004-03-22": "Nowruz holiday", + "2004-05-01": "Kazakhstan's People Solidarity Holiday", + "2004-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2004-05-09": "Victory Day", "2004-05-10": "Victory Day (observed)", - "2004-08-30": "Constitution Day of the Republic of Kazakhstan", + "2004-08-30": "Constitution Day", "2004-10-25": "Republic Day", - "2004-12-16": "Kazakhstan Independence Day", - "2004-12-17": "Kazakhstan Independence Day", - "2005-01-01": "New Year", - "2005-01-02": "New Year", - "2005-01-03": "New Year (observed)", - "2005-01-04": "New Year (observed)", + "2004-12-16": "Independence Day", + "2004-12-17": "Independence Day", + "2005-01-01": "New Year's Day", + "2005-01-02": "New Year's Day", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "New Year's Day (observed)", + "2005-03-07": "Day off (substituted from 03/05/2005)", "2005-03-08": "International Women's Day", - "2005-03-22": "Nauryz holiday", - "2005-05-01": "Kazakhstan People Solidarity Holiday", - "2005-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2005-03-21": "Day off (substituted from 03/19/2005)", + "2005-03-22": "Nowruz holiday", + "2005-05-01": "Kazakhstan's People Solidarity Holiday", + "2005-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2005-05-09": "Victory Day", - "2005-08-30": "Constitution Day of the Republic of Kazakhstan", + "2005-08-29": "Day off (substituted from 08/27/2005)", + "2005-08-30": "Constitution Day", + "2005-10-24": "Day off (substituted from 10/22/2005)", "2005-10-25": "Republic Day", - "2005-12-16": "Kazakhstan Independence Day", - "2005-12-17": "Kazakhstan Independence Day", - "2005-12-19": "Kazakhstan Independence Day (observed)", - "2006-01-01": "New Year", - "2006-01-02": "New Year", - "2006-01-03": "New Year (observed)", + "2005-12-16": "Independence Day", + "2005-12-17": "Independence Day", + "2005-12-19": "Independence Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day", + "2006-01-03": "New Year's Day (observed)", "2006-01-07": "Orthodox Christmas", - "2006-01-10": "Kurban Ait (estimated)", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Day off (substituted from 01/14/2006)", "2006-03-08": "International Women's Day", - "2006-03-22": "Nauryz holiday", - "2006-05-01": "Kazakhstan People Solidarity Holiday", + "2006-03-22": "Nowruz holiday", + "2006-05-01": "Kazakhstan's People Solidarity Holiday", + "2006-05-08": "Day off (substituted from 05/06/2006)", "2006-05-09": "Victory Day", - "2006-08-30": "Constitution Day of the Republic of Kazakhstan", + "2006-08-30": "Constitution Day", "2006-10-25": "Republic Day", - "2006-12-16": "Kazakhstan Independence Day", - "2006-12-17": "Kazakhstan Independence Day", - "2006-12-18": "Kazakhstan Independence Day (observed)", - "2006-12-19": "Kazakhstan Independence Day (observed)", - "2006-12-31": "Kurban Ait (estimated)", - "2007-01-01": "New Year", - "2007-01-02": "New Year", + "2006-12-16": "Independence Day", + "2006-12-17": "Independence Day", + "2006-12-18": "Independence Day (observed)", + "2006-12-19": "Independence Day (observed)", + "2007-01-01": "New Year's Day", + "2007-01-02": "New Year's Day", "2007-01-07": "Orthodox Christmas", "2007-03-08": "International Women's Day", - "2007-03-22": "Nauryz holiday", - "2007-05-01": "Kazakhstan People Solidarity Holiday", + "2007-03-09": "Day off (substituted from 03/11/2007)", + "2007-03-22": "Nowruz holiday", + "2007-03-23": "Day off (substituted from 03/25/2007)", + "2007-05-01": "Kazakhstan's People Solidarity Holiday", "2007-05-09": "Victory Day", - "2007-08-30": "Constitution Day of the Republic of Kazakhstan", + "2007-08-30": "Constitution Day", + "2007-08-31": "Day off (substituted from 09/02/2007)", "2007-10-25": "Republic Day", - "2007-12-16": "Kazakhstan Independence Day", - "2007-12-17": "Kazakhstan Independence Day", - "2007-12-18": "Kazakhstan Independence Day (observed)", - "2007-12-20": "Kurban Ait (estimated)", - "2008-01-01": "New Year", - "2008-01-02": "New Year", + "2007-10-26": "Day off (substituted from 10/28/2007)", + "2007-12-16": "Independence Day", + "2007-12-17": "Independence Day", + "2007-12-18": "Independence Day (observed)", + "2007-12-20": "Eid al-Adha", + "2007-12-31": "Day off (substituted from 12/29/2007)", + "2008-01-01": "New Year's Day", + "2008-01-02": "New Year's Day", "2008-01-07": "Orthodox Christmas", "2008-03-08": "International Women's Day", "2008-03-10": "International Women's Day (observed)", - "2008-03-22": "Nauryz holiday", - "2008-03-24": "Nauryz holiday (observed)", - "2008-05-01": "Kazakhstan People Solidarity Holiday", + "2008-03-22": "Nowruz holiday", + "2008-03-24": "Nowruz holiday (observed)", + "2008-05-01": "Kazakhstan's People Solidarity Holiday", + "2008-05-02": "Day off (substituted from 05/04/2008)", "2008-05-09": "Victory Day", - "2008-08-30": "Constitution Day of the Republic of Kazakhstan", - "2008-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2008-08-30": "Constitution Day", + "2008-09-01": "Constitution Day (observed)", "2008-10-25": "Republic Day", "2008-10-27": "Republic Day (observed)", - "2008-12-08": "Kurban Ait (estimated)", - "2008-12-16": "Kazakhstan Independence Day", - "2008-12-17": "Kazakhstan Independence Day", - "2009-01-01": "New Year", - "2009-01-02": "New Year", + "2008-12-08": "Eid al-Adha", + "2008-12-16": "Independence Day", + "2008-12-17": "Independence Day", + "2009-01-01": "New Year's Day", + "2009-01-02": "New Year's Day", "2009-01-07": "Orthodox Christmas", "2009-03-08": "International Women's Day", "2009-03-09": "International Women's Day (observed)", - "2009-03-22": "Nauryz holiday", - "2009-03-23": "Nauryz holiday (observed)", - "2009-05-01": "Kazakhstan People Solidarity Holiday", + "2009-03-22": "Nowruz holiday", + "2009-03-23": "Nowruz holiday (observed)", + "2009-05-01": "Kazakhstan's People Solidarity Holiday", "2009-05-09": "Victory Day", "2009-05-11": "Victory Day (observed)", "2009-07-06": "Capital Day", - "2009-08-30": "Constitution Day of the Republic of Kazakhstan", - "2009-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", - "2009-11-27": "Kurban Ait (estimated)", - "2009-12-16": "Kazakhstan Independence Day", - "2009-12-17": "Kazakhstan Independence Day", - "2010-01-01": "New Year", - "2010-01-02": "New Year", - "2010-01-04": "New Year (observed)", + "2009-08-30": "Constitution Day", + "2009-08-31": "Constitution Day (observed)", + "2009-11-27": "Eid al-Adha", + "2009-12-16": "Independence Day", + "2009-12-17": "Independence Day", + "2009-12-18": "Day off (substituted from 12/20/2009)", + "2010-01-01": "New Year's Day", + "2010-01-02": "New Year's Day", + "2010-01-04": "New Year's Day (observed)", "2010-01-07": "Orthodox Christmas", + "2010-01-08": "Day off (substituted from 01/10/2010)", "2010-03-08": "International Women's Day", - "2010-03-21": "Nauryz holiday", - "2010-03-22": "Nauryz holiday", - "2010-03-23": "Nauryz holiday", - "2010-03-24": "Nauryz holiday (observed)", - "2010-05-01": "Kazakhstan People Solidarity Holiday", - "2010-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2010-03-21": "Nowruz holiday", + "2010-03-22": "Nowruz holiday", + "2010-03-23": "Nowruz holiday", + "2010-03-24": "Nowruz holiday (observed)", + "2010-05-01": "Kazakhstan's People Solidarity Holiday", + "2010-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2010-05-09": "Victory Day", "2010-05-10": "Victory Day (observed)", + "2010-07-05": "Day off (substituted from 07/03/2010)", "2010-07-06": "Capital Day", - "2010-08-30": "Constitution Day of the Republic of Kazakhstan", - "2010-11-16": "Kurban Ait (estimated)", - "2010-12-16": "Kazakhstan Independence Day", - "2010-12-17": "Kazakhstan Independence Day", - "2011-01-01": "New Year", - "2011-01-02": "New Year", - "2011-01-03": "New Year (observed)", - "2011-01-04": "New Year (observed)", + "2010-08-30": "Constitution Day", + "2010-11-16": "Eid al-Adha", + "2010-12-16": "Independence Day", + "2010-12-17": "Independence Day", + "2011-01-01": "New Year's Day", + "2011-01-02": "New Year's Day", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "New Year's Day (observed)", "2011-01-07": "Orthodox Christmas", + "2011-03-07": "Day off (substituted from 03/05/2011)", "2011-03-08": "International Women's Day", - "2011-03-21": "Nauryz holiday", - "2011-03-22": "Nauryz holiday", - "2011-03-23": "Nauryz holiday", - "2011-05-01": "Kazakhstan People Solidarity Holiday", - "2011-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2011-03-21": "Nowruz holiday", + "2011-03-22": "Nowruz holiday", + "2011-03-23": "Nowruz holiday", + "2011-05-01": "Kazakhstan's People Solidarity Holiday", + "2011-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2011-05-09": "Victory Day", "2011-07-06": "Capital Day", - "2011-08-30": "Constitution Day of the Republic of Kazakhstan", - "2011-11-06": "Kurban Ait (estimated)", - "2011-12-16": "Kazakhstan Independence Day", - "2011-12-17": "Kazakhstan Independence Day", - "2011-12-19": "Kazakhstan Independence Day (observed)", - "2012-01-01": "New Year", - "2012-01-02": "New Year", - "2012-01-03": "New Year (observed)", + "2011-08-29": "Day off (substituted from 08/27/2011)", + "2011-08-30": "Constitution Day", + "2011-11-06": "Eid al-Adha", + "2011-12-16": "Independence Day", + "2011-12-17": "Independence Day", + "2011-12-19": "Independence Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day", + "2012-01-03": "New Year's Day (observed)", "2012-01-07": "Orthodox Christmas", "2012-03-08": "International Women's Day", - "2012-03-21": "Nauryz holiday", - "2012-03-22": "Nauryz holiday", - "2012-03-23": "Nauryz holiday", - "2012-05-01": "Kazakhstan People Solidarity Holiday", + "2012-03-09": "Day off (substituted from 03/11/2012)", + "2012-03-21": "Nowruz holiday", + "2012-03-22": "Nowruz holiday", + "2012-03-23": "Nowruz holiday", + "2012-04-30": "Day off (substituted from 04/28/2012)", + "2012-05-01": "Kazakhstan's People Solidarity Holiday", "2012-05-09": "Victory Day", "2012-07-06": "Capital Day", - "2012-08-30": "Constitution Day of the Republic of Kazakhstan", - "2012-10-26": "Kurban Ait (estimated)", + "2012-08-30": "Constitution Day", + "2012-10-26": "Eid al-Adha", "2012-12-01": "First President Day", "2012-12-03": "First President Day (observed)", - "2012-12-16": "Kazakhstan Independence Day", - "2012-12-17": "Kazakhstan Independence Day", - "2012-12-18": "Kazakhstan Independence Day (observed)", - "2013-01-01": "New Year", - "2013-01-02": "New Year", + "2012-12-16": "Independence Day", + "2012-12-17": "Independence Day", + "2012-12-18": "Independence Day (observed)", + "2012-12-31": "Day off (substituted from 12/29/2012)", + "2013-01-01": "New Year's Day", + "2013-01-02": "New Year's Day", "2013-01-07": "Orthodox Christmas", "2013-03-08": "International Women's Day", - "2013-03-21": "Nauryz holiday", - "2013-03-22": "Nauryz holiday", - "2013-03-23": "Nauryz holiday", - "2013-03-25": "Nauryz holiday (observed)", - "2013-05-01": "Kazakhstan People Solidarity Holiday", + "2013-03-21": "Nowruz holiday", + "2013-03-22": "Nowruz holiday", + "2013-03-23": "Nowruz holiday", + "2013-03-25": "Nowruz holiday (observed)", + "2013-05-01": "Kazakhstan's People Solidarity Holiday", "2013-05-07": "Defender of the Fatherland Day", "2013-05-09": "Victory Day", + "2013-05-10": "Day off (substituted from 05/04/2013)", "2013-07-06": "Capital Day", "2013-07-08": "Capital Day (observed)", - "2013-08-30": "Constitution Day of the Republic of Kazakhstan", - "2013-10-15": "Kurban Ait (estimated)", + "2013-08-30": "Constitution Day", + "2013-10-14": "Day off (substituted from 10/12/2013)", + "2013-10-15": "Eid al-Adha", "2013-12-01": "First President Day", "2013-12-02": "First President Day (observed)", - "2013-12-16": "Kazakhstan Independence Day", - "2013-12-17": "Kazakhstan Independence Day", - "2014-01-01": "New Year", - "2014-01-02": "New Year", + "2013-12-16": "Independence Day", + "2013-12-17": "Independence Day", + "2014-01-01": "New Year's Day", + "2014-01-02": "New Year's Day", + "2014-01-03": "Day off (substituted from 12/28/2013)", "2014-01-07": "Orthodox Christmas", "2014-03-08": "International Women's Day", "2014-03-10": "International Women's Day (observed)", - "2014-03-21": "Nauryz holiday", - "2014-03-22": "Nauryz holiday", - "2014-03-23": "Nauryz holiday", - "2014-03-24": "Nauryz holiday (observed)", - "2014-03-25": "Nauryz holiday (observed)", - "2014-05-01": "Kazakhstan People Solidarity Holiday", + "2014-03-21": "Nowruz holiday", + "2014-03-22": "Nowruz holiday", + "2014-03-23": "Nowruz holiday", + "2014-03-24": "Nowruz holiday (observed)", + "2014-03-25": "Nowruz holiday (observed)", + "2014-05-01": "Kazakhstan's People Solidarity Holiday", + "2014-05-02": "Day off (substituted from 05/04/2014)", "2014-05-07": "Defender of the Fatherland Day", + "2014-05-08": "Day off (substituted from 05/11/2014)", "2014-05-09": "Victory Day", "2014-07-06": "Capital Day", "2014-07-07": "Capital Day (observed)", - "2014-08-30": "Constitution Day of the Republic of Kazakhstan", - "2014-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", - "2014-10-04": "Kurban Ait (estimated)", + "2014-08-30": "Constitution Day", + "2014-09-01": "Constitution Day (observed)", + "2014-10-04": "Eid al-Adha", "2014-12-01": "First President Day", - "2014-12-16": "Kazakhstan Independence Day", - "2014-12-17": "Kazakhstan Independence Day", - "2015-01-01": "New Year", - "2015-01-02": "New Year", + "2014-12-16": "Independence Day", + "2014-12-17": "Independence Day", + "2015-01-01": "New Year's Day", + "2015-01-02": "New Year's Day", "2015-01-07": "Orthodox Christmas", "2015-03-08": "International Women's Day", "2015-03-09": "International Women's Day (observed)", - "2015-03-21": "Nauryz holiday", - "2015-03-22": "Nauryz holiday", - "2015-03-23": "Nauryz holiday", - "2015-03-24": "Nauryz holiday (observed)", - "2015-03-25": "Nauryz holiday (observed)", - "2015-05-01": "Kazakhstan People Solidarity Holiday", + "2015-03-21": "Nowruz holiday", + "2015-03-22": "Nowruz holiday", + "2015-03-23": "Nowruz holiday", + "2015-03-24": "Nowruz holiday (observed)", + "2015-03-25": "Nowruz holiday (observed)", + "2015-05-01": "Kazakhstan's People Solidarity Holiday", "2015-05-07": "Defender of the Fatherland Day", "2015-05-09": "Victory Day", "2015-05-11": "Victory Day (observed)", "2015-07-06": "Capital Day", - "2015-08-30": "Constitution Day of the Republic of Kazakhstan", - "2015-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", - "2015-09-23": "Kurban Ait (estimated)", + "2015-08-30": "Constitution Day", + "2015-08-31": "Constitution Day (observed)", + "2015-09-24": "Eid al-Adha", "2015-12-01": "First President Day", - "2015-12-16": "Kazakhstan Independence Day", - "2015-12-17": "Kazakhstan Independence Day", - "2016-01-01": "New Year", - "2016-01-02": "New Year", - "2016-01-04": "New Year (observed)", + "2015-12-16": "Independence Day", + "2015-12-17": "Independence Day", + "2016-01-01": "New Year's Day", + "2016-01-02": "New Year's Day", + "2016-01-04": "New Year's Day (observed)", "2016-01-07": "Orthodox Christmas", + "2016-03-07": "Day off (substituted from 03/05/2016)", "2016-03-08": "International Women's Day", - "2016-03-21": "Nauryz holiday", - "2016-03-22": "Nauryz holiday", - "2016-03-23": "Nauryz holiday", - "2016-05-01": "Kazakhstan People Solidarity Holiday", - "2016-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2016-03-21": "Nowruz holiday", + "2016-03-22": "Nowruz holiday", + "2016-03-23": "Nowruz holiday", + "2016-05-01": "Kazakhstan's People Solidarity Holiday", + "2016-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2016-05-07": "Defender of the Fatherland Day", "2016-05-09": "Victory Day", "2016-05-10": "Defender of the Fatherland Day (observed)", "2016-07-06": "Capital Day", - "2016-08-30": "Constitution Day of the Republic of Kazakhstan", - "2016-09-11": "Kurban Ait (estimated)", + "2016-08-30": "Constitution Day", + "2016-09-12": "Eid al-Adha", "2016-12-01": "First President Day", - "2016-12-16": "Kazakhstan Independence Day", - "2016-12-17": "Kazakhstan Independence Day", - "2016-12-19": "Kazakhstan Independence Day (observed)", - "2017-01-01": "New Year", - "2017-01-02": "New Year", - "2017-01-03": "New Year (observed)", + "2016-12-16": "Independence Day", + "2016-12-17": "Independence Day", + "2016-12-19": "Independence Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day", + "2017-01-03": "New Year's Day (observed)", "2017-01-07": "Orthodox Christmas", "2017-03-08": "International Women's Day", - "2017-03-21": "Nauryz holiday", - "2017-03-22": "Nauryz holiday", - "2017-03-23": "Nauryz holiday", - "2017-05-01": "Kazakhstan People Solidarity Holiday", + "2017-03-20": "Day off (substituted from 03/18/2017)", + "2017-03-21": "Nowruz holiday", + "2017-03-22": "Nowruz holiday", + "2017-03-23": "Nowruz holiday", + "2017-05-01": "Kazakhstan's People Solidarity Holiday", "2017-05-07": "Defender of the Fatherland Day", "2017-05-08": "Defender of the Fatherland Day (observed)", "2017-05-09": "Victory Day", "2017-07-06": "Capital Day", - "2017-08-30": "Constitution Day of the Republic of Kazakhstan", - "2017-09-01": "Kurban Ait (estimated)", + "2017-07-07": "Day off (substituted from 07/01/2017)", + "2017-08-30": "Constitution Day", + "2017-09-01": "Eid al-Adha", "2017-12-01": "First President Day", - "2017-12-16": "Kazakhstan Independence Day", - "2017-12-17": "Kazakhstan Independence Day", - "2017-12-18": "Kazakhstan Independence Day (observed)", - "2017-12-19": "Kazakhstan Independence Day (observed)", - "2018-01-01": "New Year", - "2018-01-02": "New Year", + "2017-12-16": "Independence Day", + "2017-12-17": "Independence Day", + "2017-12-18": "Independence Day (observed)", + "2017-12-19": "Independence Day (observed)", + "2018-01-01": "New Year's Day", + "2018-01-02": "New Year's Day", "2018-01-07": "Orthodox Christmas", "2018-03-08": "International Women's Day", - "2018-03-21": "Nauryz holiday", - "2018-03-22": "Nauryz holiday", - "2018-03-23": "Nauryz holiday", - "2018-05-01": "Kazakhstan People Solidarity Holiday", + "2018-03-09": "Day off (substituted from 03/03/2018)", + "2018-03-21": "Nowruz holiday", + "2018-03-22": "Nowruz holiday", + "2018-03-23": "Nowruz holiday", + "2018-04-30": "Day off (substituted from 04/28/2018)", + "2018-05-01": "Kazakhstan's People Solidarity Holiday", "2018-05-07": "Defender of the Fatherland Day", + "2018-05-08": "Day off (substituted from 05/05/2018)", "2018-05-09": "Victory Day", "2018-07-06": "Capital Day", - "2018-08-21": "Kurban Ait (estimated)", - "2018-08-30": "Constitution Day of the Republic of Kazakhstan", + "2018-08-21": "Eid al-Adha", + "2018-08-30": "Constitution Day", + "2018-08-31": "Day off (substituted from 08/25/2018)", "2018-12-01": "First President Day", "2018-12-03": "First President Day (observed)", - "2018-12-16": "Kazakhstan Independence Day", - "2018-12-17": "Kazakhstan Independence Day", - "2018-12-18": "Kazakhstan Independence Day (observed)", - "2019-01-01": "New Year", - "2019-01-02": "New Year", + "2018-12-16": "Independence Day", + "2018-12-17": "Independence Day", + "2018-12-18": "Independence Day (observed)", + "2018-12-31": "Day off (substituted from 12/29/2018)", + "2019-01-01": "New Year's Day", + "2019-01-02": "New Year's Day", "2019-01-07": "Orthodox Christmas", "2019-03-08": "International Women's Day", - "2019-03-21": "Nauryz holiday", - "2019-03-22": "Nauryz holiday", - "2019-03-23": "Nauryz holiday", - "2019-03-25": "Nauryz holiday (observed)", - "2019-05-01": "Kazakhstan People Solidarity Holiday", + "2019-03-21": "Nowruz holiday", + "2019-03-22": "Nowruz holiday", + "2019-03-23": "Nowruz holiday", + "2019-03-25": "Nowruz holiday (observed)", + "2019-05-01": "Kazakhstan's People Solidarity Holiday", "2019-05-07": "Defender of the Fatherland Day", "2019-05-09": "Victory Day", + "2019-05-10": "Day off (substituted from 05/04/2019)", "2019-07-06": "Capital Day", "2019-07-08": "Capital Day (observed)", - "2019-08-11": "Kurban Ait (estimated)", - "2019-08-30": "Constitution Day of the Republic of Kazakhstan", + "2019-08-11": "Eid al-Adha", + "2019-08-30": "Constitution Day", "2019-12-01": "First President Day", "2019-12-02": "First President Day (observed)", - "2019-12-16": "Kazakhstan Independence Day", - "2019-12-17": "Kazakhstan Independence Day", - "2020-01-01": "New Year", - "2020-01-02": "New Year", + "2019-12-16": "Independence Day", + "2019-12-17": "Independence Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "New Year's Day", + "2020-01-03": "Day off (substituted from 01/05/2020)", "2020-01-07": "Orthodox Christmas", "2020-03-08": "International Women's Day", "2020-03-09": "International Women's Day (observed)", - "2020-03-21": "Nauryz holiday", - "2020-03-22": "Nauryz holiday", - "2020-03-23": "Nauryz holiday", - "2020-03-24": "Nauryz holiday (observed)", - "2020-03-25": "Nauryz holiday (observed)", - "2020-05-01": "Kazakhstan People Solidarity Holiday", + "2020-03-21": "Nowruz holiday", + "2020-03-22": "Nowruz holiday", + "2020-03-23": "Nowruz holiday", + "2020-03-24": "Nowruz holiday (observed)", + "2020-03-25": "Nowruz holiday (observed)", + "2020-05-01": "Kazakhstan's People Solidarity Holiday", "2020-05-07": "Defender of the Fatherland Day", + "2020-05-08": "Day off (substituted from 05/11/2020)", "2020-05-09": "Victory Day", - "2020-05-11": "Victory Day (observed)", "2020-07-06": "Capital Day", - "2020-07-31": "Kurban Ait (estimated)", - "2020-08-30": "Constitution Day of the Republic of Kazakhstan", - "2020-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", + "2020-07-31": "Eid al-Adha", + "2020-08-30": "Constitution Day", + "2020-08-31": "Constitution Day (observed)", "2020-12-01": "First President Day", - "2020-12-16": "Kazakhstan Independence Day", - "2020-12-17": "Kazakhstan Independence Day", - "2021-01-01": "New Year", - "2021-01-02": "New Year", - "2021-01-04": "New Year (observed)", + "2020-12-16": "Independence Day", + "2020-12-17": "Independence Day", + "2020-12-18": "Day off (substituted from 12/20/2020)", + "2021-01-01": "New Year's Day", + "2021-01-02": "New Year's Day", + "2021-01-04": "New Year's Day (observed)", "2021-01-07": "Orthodox Christmas", "2021-03-08": "International Women's Day", - "2021-03-21": "Nauryz holiday", - "2021-03-22": "Nauryz holiday", - "2021-03-23": "Nauryz holiday", - "2021-03-24": "Nauryz holiday (observed)", - "2021-05-01": "Kazakhstan People Solidarity Holiday", - "2021-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2021-03-21": "Nowruz holiday", + "2021-03-22": "Nowruz holiday", + "2021-03-23": "Nowruz holiday", + "2021-03-24": "Nowruz holiday (observed)", + "2021-05-01": "Kazakhstan's People Solidarity Holiday", + "2021-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2021-05-07": "Defender of the Fatherland Day", "2021-05-09": "Victory Day", "2021-05-10": "Victory Day (observed)", + "2021-07-05": "Day off (substituted from 07/03/2021)", "2021-07-06": "Capital Day", - "2021-07-20": "Kurban Ait (estimated)", - "2021-08-30": "Constitution Day of the Republic of Kazakhstan", + "2021-07-20": "Eid al-Adha", + "2021-08-30": "Constitution Day", "2021-12-01": "First President Day", - "2021-12-16": "Kazakhstan Independence Day", - "2021-12-17": "Kazakhstan Independence Day", - "2022-01-01": "New Year", - "2022-01-02": "New Year", - "2022-01-03": "New Year (observed)", - "2022-01-04": "New Year (observed)", + "2021-12-16": "Independence Day", + "2021-12-17": "Independence Day", + "2022-01-01": "New Year's Day", + "2022-01-02": "New Year's Day", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "New Year's Day (observed)", "2022-01-07": "Orthodox Christmas", + "2022-03-07": "Day off (substituted from 03/05/2022)", "2022-03-08": "International Women's Day", - "2022-03-21": "Nauryz holiday", - "2022-03-22": "Nauryz holiday", - "2022-03-23": "Nauryz holiday", - "2022-05-01": "Kazakhstan People Solidarity Holiday", - "2022-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2022-03-21": "Nowruz holiday", + "2022-03-22": "Nowruz holiday", + "2022-03-23": "Nowruz holiday", + "2022-05-01": "Kazakhstan's People Solidarity Holiday", + "2022-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2022-05-07": "Defender of the Fatherland Day", "2022-05-09": "Victory Day", "2022-05-10": "Defender of the Fatherland Day (observed)", "2022-07-06": "Capital Day", - "2022-07-09": "Kurban Ait (estimated)", - "2022-08-30": "Constitution Day of the Republic of Kazakhstan", + "2022-07-09": "Eid al-Adha", + "2022-08-29": "Day off (substituted from 08/27/2022)", + "2022-08-30": "Constitution Day", + "2022-10-24": "Day off (substituted from 10/22/2022)", "2022-10-25": "Republic Day", - "2022-12-16": "Kazakhstan Independence Day", - "2023-01-01": "New Year", - "2023-01-02": "New Year", - "2023-01-03": "New Year (observed)", + "2022-12-16": "Independence Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day", + "2023-01-03": "New Year's Day (observed)", "2023-01-07": "Orthodox Christmas", "2023-03-08": "International Women's Day", - "2023-03-21": "Nauryz holiday", - "2023-03-22": "Nauryz holiday", - "2023-03-23": "Nauryz holiday", - "2023-05-01": "Kazakhstan People Solidarity Holiday", + "2023-03-21": "Nowruz holiday", + "2023-03-22": "Nowruz holiday", + "2023-03-23": "Nowruz holiday", + "2023-05-01": "Kazakhstan's People Solidarity Holiday", "2023-05-07": "Defender of the Fatherland Day", "2023-05-08": "Defender of the Fatherland Day (observed)", "2023-05-09": "Victory Day", - "2023-06-28": "Kurban Ait (estimated)", + "2023-06-28": "Eid al-Adha", "2023-07-06": "Capital Day", - "2023-08-30": "Constitution Day of the Republic of Kazakhstan", + "2023-07-07": "Day off (substituted from 07/01/2023)", + "2023-08-30": "Constitution Day", "2023-10-25": "Republic Day", - "2023-12-16": "Kazakhstan Independence Day", - "2023-12-18": "Kazakhstan Independence Day (observed)", - "2024-01-01": "New Year", - "2024-01-02": "New Year", + "2023-12-16": "Independence Day", + "2023-12-18": "Independence Day (observed)", + "2024-01-01": "New Year's Day", + "2024-01-02": "New Year's Day", "2024-01-07": "Orthodox Christmas", "2024-03-08": "International Women's Day", - "2024-03-21": "Nauryz holiday", - "2024-03-22": "Nauryz holiday", - "2024-03-23": "Nauryz holiday", - "2024-03-25": "Nauryz holiday (observed)", - "2024-05-01": "Kazakhstan People Solidarity Holiday", + "2024-03-21": "Nowruz holiday", + "2024-03-22": "Nowruz holiday", + "2024-03-23": "Nowruz holiday", + "2024-03-25": "Nowruz holiday (observed)", + "2024-05-01": "Kazakhstan's People Solidarity Holiday", "2024-05-07": "Defender of the Fatherland Day", + "2024-05-08": "Day off (substituted from 05/04/2024)", "2024-05-09": "Victory Day", - "2024-06-16": "Kurban Ait (estimated)", + "2024-06-16": "Eid al-Adha", "2024-07-06": "Capital Day", "2024-07-08": "Capital Day (observed)", - "2024-08-30": "Constitution Day of the Republic of Kazakhstan", + "2024-08-30": "Constitution Day", "2024-10-25": "Republic Day", - "2024-12-16": "Kazakhstan Independence Day", - "2025-01-01": "New Year", - "2025-01-02": "New Year", + "2024-12-16": "Independence Day", + "2025-01-01": "New Year's Day", + "2025-01-02": "New Year's Day", "2025-01-07": "Orthodox Christmas", "2025-03-08": "International Women's Day", "2025-03-10": "International Women's Day (observed)", - "2025-03-21": "Nauryz holiday", - "2025-03-22": "Nauryz holiday", - "2025-03-23": "Nauryz holiday", - "2025-03-24": "Nauryz holiday (observed)", - "2025-03-25": "Nauryz holiday (observed)", - "2025-05-01": "Kazakhstan People Solidarity Holiday", + "2025-03-21": "Nowruz holiday", + "2025-03-22": "Nowruz holiday", + "2025-03-23": "Nowruz holiday", + "2025-03-24": "Nowruz holiday (observed)", + "2025-03-25": "Nowruz holiday (observed)", + "2025-05-01": "Kazakhstan's People Solidarity Holiday", "2025-05-07": "Defender of the Fatherland Day", "2025-05-09": "Victory Day", - "2025-06-06": "Kurban Ait (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-07-06": "Capital Day", "2025-07-07": "Capital Day (observed)", - "2025-08-30": "Constitution Day of the Republic of Kazakhstan", - "2025-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2025-08-30": "Constitution Day", + "2025-09-01": "Constitution Day (observed)", "2025-10-25": "Republic Day", "2025-10-27": "Republic Day (observed)", - "2025-12-16": "Kazakhstan Independence Day", - "2026-01-01": "New Year", - "2026-01-02": "New Year", + "2025-12-16": "Independence Day", + "2026-01-01": "New Year's Day", + "2026-01-02": "New Year's Day", "2026-01-07": "Orthodox Christmas", "2026-03-08": "International Women's Day", "2026-03-09": "International Women's Day (observed)", - "2026-03-21": "Nauryz holiday", - "2026-03-22": "Nauryz holiday", - "2026-03-23": "Nauryz holiday", - "2026-03-24": "Nauryz holiday (observed)", - "2026-03-25": "Nauryz holiday (observed)", - "2026-05-01": "Kazakhstan People Solidarity Holiday", + "2026-03-21": "Nowruz holiday", + "2026-03-22": "Nowruz holiday", + "2026-03-23": "Nowruz holiday", + "2026-03-24": "Nowruz holiday (observed)", + "2026-03-25": "Nowruz holiday (observed)", + "2026-05-01": "Kazakhstan's People Solidarity Holiday", "2026-05-07": "Defender of the Fatherland Day", "2026-05-09": "Victory Day", "2026-05-11": "Victory Day (observed)", - "2026-05-27": "Kurban Ait (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-07-06": "Capital Day", - "2026-08-30": "Constitution Day of the Republic of Kazakhstan", - "2026-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", + "2026-08-30": "Constitution Day", + "2026-08-31": "Constitution Day (observed)", "2026-10-25": "Republic Day", "2026-10-26": "Republic Day (observed)", - "2026-12-16": "Kazakhstan Independence Day", - "2027-01-01": "New Year", - "2027-01-02": "New Year", - "2027-01-04": "New Year (observed)", + "2026-12-16": "Independence Day", + "2027-01-01": "New Year's Day", + "2027-01-02": "New Year's Day", + "2027-01-04": "New Year's Day (observed)", "2027-01-07": "Orthodox Christmas", "2027-03-08": "International Women's Day", - "2027-03-21": "Nauryz holiday", - "2027-03-22": "Nauryz holiday", - "2027-03-23": "Nauryz holiday", - "2027-03-24": "Nauryz holiday (observed)", - "2027-05-01": "Kazakhstan People Solidarity Holiday", - "2027-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2027-03-21": "Nowruz holiday", + "2027-03-22": "Nowruz holiday", + "2027-03-23": "Nowruz holiday", + "2027-03-24": "Nowruz holiday (observed)", + "2027-05-01": "Kazakhstan's People Solidarity Holiday", + "2027-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2027-05-07": "Defender of the Fatherland Day", "2027-05-09": "Victory Day", "2027-05-10": "Victory Day (observed)", - "2027-05-16": "Kurban Ait (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-07-06": "Capital Day", - "2027-08-30": "Constitution Day of the Republic of Kazakhstan", + "2027-08-30": "Constitution Day", "2027-10-25": "Republic Day", - "2027-12-16": "Kazakhstan Independence Day", - "2028-01-01": "New Year", - "2028-01-02": "New Year", - "2028-01-03": "New Year (observed)", - "2028-01-04": "New Year (observed)", + "2027-12-16": "Independence Day", + "2028-01-01": "New Year's Day", + "2028-01-02": "New Year's Day", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "New Year's Day (observed)", "2028-01-07": "Orthodox Christmas", "2028-03-08": "International Women's Day", - "2028-03-21": "Nauryz holiday", - "2028-03-22": "Nauryz holiday", - "2028-03-23": "Nauryz holiday", - "2028-05-01": "Kazakhstan People Solidarity Holiday", - "2028-05-05": "Kurban Ait (estimated)", + "2028-03-21": "Nowruz holiday", + "2028-03-22": "Nowruz holiday", + "2028-03-23": "Nowruz holiday", + "2028-05-01": "Kazakhstan's People Solidarity Holiday", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-07": "Defender of the Fatherland Day", "2028-05-08": "Defender of the Fatherland Day (observed)", "2028-05-09": "Victory Day", "2028-07-06": "Capital Day", - "2028-08-30": "Constitution Day of the Republic of Kazakhstan", + "2028-08-30": "Constitution Day", "2028-10-25": "Republic Day", - "2028-12-16": "Kazakhstan Independence Day", - "2028-12-18": "Kazakhstan Independence Day (observed)", - "2029-01-01": "New Year", - "2029-01-02": "New Year", + "2028-12-16": "Independence Day", + "2028-12-18": "Independence Day (observed)", + "2029-01-01": "New Year's Day", + "2029-01-02": "New Year's Day", "2029-01-07": "Orthodox Christmas", "2029-03-08": "International Women's Day", - "2029-03-21": "Nauryz holiday", - "2029-03-22": "Nauryz holiday", - "2029-03-23": "Nauryz holiday", - "2029-04-24": "Kurban Ait (estimated)", - "2029-05-01": "Kazakhstan People Solidarity Holiday", + "2029-03-21": "Nowruz holiday", + "2029-03-22": "Nowruz holiday", + "2029-03-23": "Nowruz holiday", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Kazakhstan's People Solidarity Holiday", "2029-05-07": "Defender of the Fatherland Day", "2029-05-09": "Victory Day", "2029-07-06": "Capital Day", - "2029-08-30": "Constitution Day of the Republic of Kazakhstan", + "2029-08-30": "Constitution Day", "2029-10-25": "Republic Day", - "2029-12-16": "Kazakhstan Independence Day", - "2029-12-17": "Kazakhstan Independence Day (observed)", - "2030-01-01": "New Year", - "2030-01-02": "New Year", + "2029-12-16": "Independence Day", + "2029-12-17": "Independence Day (observed)", + "2030-01-01": "New Year's Day", + "2030-01-02": "New Year's Day", "2030-01-07": "Orthodox Christmas", "2030-03-08": "International Women's Day", - "2030-03-21": "Nauryz holiday", - "2030-03-22": "Nauryz holiday", - "2030-03-23": "Nauryz holiday", - "2030-03-25": "Nauryz holiday (observed)", - "2030-04-13": "Kurban Ait (estimated)", - "2030-05-01": "Kazakhstan People Solidarity Holiday", + "2030-03-21": "Nowruz holiday", + "2030-03-22": "Nowruz holiday", + "2030-03-23": "Nowruz holiday", + "2030-03-25": "Nowruz holiday (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Kazakhstan's People Solidarity Holiday", "2030-05-07": "Defender of the Fatherland Day", "2030-05-09": "Victory Day", "2030-07-06": "Capital Day", "2030-07-08": "Capital Day (observed)", - "2030-08-30": "Constitution Day of the Republic of Kazakhstan", + "2030-08-30": "Constitution Day", "2030-10-25": "Republic Day", - "2030-12-16": "Kazakhstan Independence Day", - "2031-01-01": "New Year", - "2031-01-02": "New Year", + "2030-12-16": "Independence Day", + "2031-01-01": "New Year's Day", + "2031-01-02": "New Year's Day", "2031-01-07": "Orthodox Christmas", "2031-03-08": "International Women's Day", "2031-03-10": "International Women's Day (observed)", - "2031-03-21": "Nauryz holiday", - "2031-03-22": "Nauryz holiday", - "2031-03-23": "Nauryz holiday", - "2031-03-24": "Nauryz holiday (observed)", - "2031-03-25": "Nauryz holiday (observed)", - "2031-04-02": "Kurban Ait (estimated)", - "2031-05-01": "Kazakhstan People Solidarity Holiday", + "2031-03-21": "Nowruz holiday", + "2031-03-22": "Nowruz holiday", + "2031-03-23": "Nowruz holiday", + "2031-03-24": "Nowruz holiday (observed)", + "2031-03-25": "Nowruz holiday (observed)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-05-01": "Kazakhstan's People Solidarity Holiday", "2031-05-07": "Defender of the Fatherland Day", "2031-05-09": "Victory Day", "2031-07-06": "Capital Day", "2031-07-07": "Capital Day (observed)", - "2031-08-30": "Constitution Day of the Republic of Kazakhstan", - "2031-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2031-08-30": "Constitution Day", + "2031-09-01": "Constitution Day (observed)", "2031-10-25": "Republic Day", "2031-10-27": "Republic Day (observed)", - "2031-12-16": "Kazakhstan Independence Day", - "2032-01-01": "New Year", - "2032-01-02": "New Year", + "2031-12-16": "Independence Day", + "2032-01-01": "New Year's Day", + "2032-01-02": "New Year's Day", "2032-01-07": "Orthodox Christmas", "2032-03-08": "International Women's Day", - "2032-03-21": "Nauryz holiday", - "2032-03-22": "Kurban Ait (estimated); Nauryz holiday", - "2032-03-23": "Nauryz holiday", - "2032-03-24": "Nauryz holiday (observed)", - "2032-05-01": "Kazakhstan People Solidarity Holiday", - "2032-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2032-03-21": "Nowruz holiday", + "2032-03-22": "Eid al-Adha (estimated); Nowruz holiday", + "2032-03-23": "Nowruz holiday", + "2032-03-24": "Nowruz holiday (observed)", + "2032-05-01": "Kazakhstan's People Solidarity Holiday", + "2032-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2032-05-07": "Defender of the Fatherland Day", "2032-05-09": "Victory Day", "2032-05-10": "Victory Day (observed)", "2032-07-06": "Capital Day", - "2032-08-30": "Constitution Day of the Republic of Kazakhstan", + "2032-08-30": "Constitution Day", "2032-10-25": "Republic Day", - "2032-12-16": "Kazakhstan Independence Day", - "2033-01-01": "New Year", - "2033-01-02": "New Year", - "2033-01-03": "New Year (observed)", - "2033-01-04": "New Year (observed)", + "2032-12-16": "Independence Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "New Year's Day", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "New Year's Day (observed)", "2033-01-07": "Orthodox Christmas", "2033-03-08": "International Women's Day", - "2033-03-11": "Kurban Ait (estimated)", - "2033-03-21": "Nauryz holiday", - "2033-03-22": "Nauryz holiday", - "2033-03-23": "Nauryz holiday", - "2033-05-01": "Kazakhstan People Solidarity Holiday", - "2033-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-21": "Nowruz holiday", + "2033-03-22": "Nowruz holiday", + "2033-03-23": "Nowruz holiday", + "2033-05-01": "Kazakhstan's People Solidarity Holiday", + "2033-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2033-05-07": "Defender of the Fatherland Day", "2033-05-09": "Victory Day", "2033-05-10": "Defender of the Fatherland Day (observed)", "2033-07-06": "Capital Day", - "2033-08-30": "Constitution Day of the Republic of Kazakhstan", + "2033-08-30": "Constitution Day", "2033-10-25": "Republic Day", - "2033-12-16": "Kazakhstan Independence Day", - "2034-01-01": "New Year", - "2034-01-02": "New Year", - "2034-01-03": "New Year (observed)", + "2033-12-16": "Independence Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day", + "2034-01-03": "New Year's Day (observed)", "2034-01-07": "Orthodox Christmas", - "2034-03-01": "Kurban Ait (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "International Women's Day", - "2034-03-21": "Nauryz holiday", - "2034-03-22": "Nauryz holiday", - "2034-03-23": "Nauryz holiday", - "2034-05-01": "Kazakhstan People Solidarity Holiday", + "2034-03-21": "Nowruz holiday", + "2034-03-22": "Nowruz holiday", + "2034-03-23": "Nowruz holiday", + "2034-05-01": "Kazakhstan's People Solidarity Holiday", "2034-05-07": "Defender of the Fatherland Day", "2034-05-08": "Defender of the Fatherland Day (observed)", "2034-05-09": "Victory Day", "2034-07-06": "Capital Day", - "2034-08-30": "Constitution Day of the Republic of Kazakhstan", + "2034-08-30": "Constitution Day", "2034-10-25": "Republic Day", - "2034-12-16": "Kazakhstan Independence Day", - "2034-12-18": "Kazakhstan Independence Day (observed)", - "2035-01-01": "New Year", - "2035-01-02": "New Year", + "2034-12-16": "Independence Day", + "2034-12-18": "Independence Day (observed)", + "2035-01-01": "New Year's Day", + "2035-01-02": "New Year's Day", "2035-01-07": "Orthodox Christmas", - "2035-02-18": "Kurban Ait (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-08": "International Women's Day", - "2035-03-21": "Nauryz holiday", - "2035-03-22": "Nauryz holiday", - "2035-03-23": "Nauryz holiday", - "2035-05-01": "Kazakhstan People Solidarity Holiday", + "2035-03-21": "Nowruz holiday", + "2035-03-22": "Nowruz holiday", + "2035-03-23": "Nowruz holiday", + "2035-05-01": "Kazakhstan's People Solidarity Holiday", "2035-05-07": "Defender of the Fatherland Day", "2035-05-09": "Victory Day", "2035-07-06": "Capital Day", - "2035-08-30": "Constitution Day of the Republic of Kazakhstan", + "2035-08-30": "Constitution Day", "2035-10-25": "Republic Day", - "2035-12-16": "Kazakhstan Independence Day", - "2035-12-17": "Kazakhstan Independence Day (observed)", - "2036-01-01": "New Year", - "2036-01-02": "New Year", + "2035-12-16": "Independence Day", + "2035-12-17": "Independence Day (observed)", + "2036-01-01": "New Year's Day", + "2036-01-02": "New Year's Day", "2036-01-07": "Orthodox Christmas", - "2036-02-07": "Kurban Ait (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "International Women's Day", "2036-03-10": "International Women's Day (observed)", - "2036-03-21": "Nauryz holiday", - "2036-03-22": "Nauryz holiday", - "2036-03-23": "Nauryz holiday", - "2036-03-24": "Nauryz holiday (observed)", - "2036-03-25": "Nauryz holiday (observed)", - "2036-05-01": "Kazakhstan People Solidarity Holiday", + "2036-03-21": "Nowruz holiday", + "2036-03-22": "Nowruz holiday", + "2036-03-23": "Nowruz holiday", + "2036-03-24": "Nowruz holiday (observed)", + "2036-03-25": "Nowruz holiday (observed)", + "2036-05-01": "Kazakhstan's People Solidarity Holiday", "2036-05-07": "Defender of the Fatherland Day", "2036-05-09": "Victory Day", "2036-07-06": "Capital Day", "2036-07-07": "Capital Day (observed)", - "2036-08-30": "Constitution Day of the Republic of Kazakhstan", - "2036-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2036-08-30": "Constitution Day", + "2036-09-01": "Constitution Day (observed)", "2036-10-25": "Republic Day", "2036-10-27": "Republic Day (observed)", - "2036-12-16": "Kazakhstan Independence Day", - "2037-01-01": "New Year", - "2037-01-02": "New Year", + "2036-12-16": "Independence Day", + "2037-01-01": "New Year's Day", + "2037-01-02": "New Year's Day", "2037-01-07": "Orthodox Christmas", - "2037-01-26": "Kurban Ait (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "International Women's Day", "2037-03-09": "International Women's Day (observed)", - "2037-03-21": "Nauryz holiday", - "2037-03-22": "Nauryz holiday", - "2037-03-23": "Nauryz holiday", - "2037-03-24": "Nauryz holiday (observed)", - "2037-03-25": "Nauryz holiday (observed)", - "2037-05-01": "Kazakhstan People Solidarity Holiday", + "2037-03-21": "Nowruz holiday", + "2037-03-22": "Nowruz holiday", + "2037-03-23": "Nowruz holiday", + "2037-03-24": "Nowruz holiday (observed)", + "2037-03-25": "Nowruz holiday (observed)", + "2037-05-01": "Kazakhstan's People Solidarity Holiday", "2037-05-07": "Defender of the Fatherland Day", "2037-05-09": "Victory Day", "2037-05-11": "Victory Day (observed)", "2037-07-06": "Capital Day", - "2037-08-30": "Constitution Day of the Republic of Kazakhstan", - "2037-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", + "2037-08-30": "Constitution Day", + "2037-08-31": "Constitution Day (observed)", "2037-10-25": "Republic Day", "2037-10-26": "Republic Day (observed)", - "2037-12-16": "Kazakhstan Independence Day", - "2038-01-01": "New Year", - "2038-01-02": "New Year", - "2038-01-04": "New Year (observed)", + "2037-12-16": "Independence Day", + "2038-01-01": "New Year's Day", + "2038-01-02": "New Year's Day", + "2038-01-04": "New Year's Day (observed)", "2038-01-07": "Orthodox Christmas", - "2038-01-16": "Kurban Ait (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-03-08": "International Women's Day", - "2038-03-21": "Nauryz holiday", - "2038-03-22": "Nauryz holiday", - "2038-03-23": "Nauryz holiday", - "2038-03-24": "Nauryz holiday (observed)", - "2038-05-01": "Kazakhstan People Solidarity Holiday", - "2038-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2038-03-21": "Nowruz holiday", + "2038-03-22": "Nowruz holiday", + "2038-03-23": "Nowruz holiday", + "2038-03-24": "Nowruz holiday (observed)", + "2038-05-01": "Kazakhstan's People Solidarity Holiday", + "2038-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2038-05-07": "Defender of the Fatherland Day", "2038-05-09": "Victory Day", "2038-05-10": "Victory Day (observed)", "2038-07-06": "Capital Day", - "2038-08-30": "Constitution Day of the Republic of Kazakhstan", + "2038-08-30": "Constitution Day", "2038-10-25": "Republic Day", - "2038-12-16": "Kazakhstan Independence Day", - "2039-01-01": "New Year", - "2039-01-02": "New Year", - "2039-01-03": "New Year (observed)", - "2039-01-04": "New Year (observed)", - "2039-01-05": "Kurban Ait (estimated)", + "2038-12-16": "Independence Day", + "2039-01-01": "New Year's Day", + "2039-01-02": "New Year's Day", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "New Year's Day (observed)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-07": "Orthodox Christmas", "2039-03-08": "International Women's Day", - "2039-03-21": "Nauryz holiday", - "2039-03-22": "Nauryz holiday", - "2039-03-23": "Nauryz holiday", - "2039-05-01": "Kazakhstan People Solidarity Holiday", - "2039-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2039-03-21": "Nowruz holiday", + "2039-03-22": "Nowruz holiday", + "2039-03-23": "Nowruz holiday", + "2039-05-01": "Kazakhstan's People Solidarity Holiday", + "2039-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2039-05-07": "Defender of the Fatherland Day", "2039-05-09": "Victory Day", "2039-05-10": "Defender of the Fatherland Day (observed)", "2039-07-06": "Capital Day", - "2039-08-30": "Constitution Day of the Republic of Kazakhstan", + "2039-08-30": "Constitution Day", "2039-10-25": "Republic Day", - "2039-12-16": "Kazakhstan Independence Day", - "2039-12-26": "Kurban Ait (estimated)", - "2040-01-01": "New Year", - "2040-01-02": "New Year", - "2040-01-03": "New Year (observed)", + "2039-12-16": "Independence Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day", + "2040-01-03": "New Year's Day (observed)", "2040-01-07": "Orthodox Christmas", "2040-03-08": "International Women's Day", - "2040-03-21": "Nauryz holiday", - "2040-03-22": "Nauryz holiday", - "2040-03-23": "Nauryz holiday", - "2040-05-01": "Kazakhstan People Solidarity Holiday", + "2040-03-21": "Nowruz holiday", + "2040-03-22": "Nowruz holiday", + "2040-03-23": "Nowruz holiday", + "2040-05-01": "Kazakhstan's People Solidarity Holiday", "2040-05-07": "Defender of the Fatherland Day", "2040-05-09": "Victory Day", "2040-07-06": "Capital Day", - "2040-08-30": "Constitution Day of the Republic of Kazakhstan", + "2040-08-30": "Constitution Day", "2040-10-25": "Republic Day", - "2040-12-14": "Kurban Ait (estimated)", - "2040-12-16": "Kazakhstan Independence Day", - "2040-12-17": "Kazakhstan Independence Day (observed)", - "2041-01-01": "New Year", - "2041-01-02": "New Year", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-16": "Independence Day", + "2040-12-17": "Independence Day (observed)", + "2041-01-01": "New Year's Day", + "2041-01-02": "New Year's Day", "2041-01-07": "Orthodox Christmas", "2041-03-08": "International Women's Day", - "2041-03-21": "Nauryz holiday", - "2041-03-22": "Nauryz holiday", - "2041-03-23": "Nauryz holiday", - "2041-03-25": "Nauryz holiday (observed)", - "2041-05-01": "Kazakhstan People Solidarity Holiday", + "2041-03-21": "Nowruz holiday", + "2041-03-22": "Nowruz holiday", + "2041-03-23": "Nowruz holiday", + "2041-03-25": "Nowruz holiday (observed)", + "2041-05-01": "Kazakhstan's People Solidarity Holiday", "2041-05-07": "Defender of the Fatherland Day", "2041-05-09": "Victory Day", "2041-07-06": "Capital Day", "2041-07-08": "Capital Day (observed)", - "2041-08-30": "Constitution Day of the Republic of Kazakhstan", + "2041-08-30": "Constitution Day", "2041-10-25": "Republic Day", - "2041-12-04": "Kurban Ait (estimated)", - "2041-12-16": "Kazakhstan Independence Day", - "2042-01-01": "New Year", - "2042-01-02": "New Year", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-16": "Independence Day", + "2042-01-01": "New Year's Day", + "2042-01-02": "New Year's Day", "2042-01-07": "Orthodox Christmas", "2042-03-08": "International Women's Day", "2042-03-10": "International Women's Day (observed)", - "2042-03-21": "Nauryz holiday", - "2042-03-22": "Nauryz holiday", - "2042-03-23": "Nauryz holiday", - "2042-03-24": "Nauryz holiday (observed)", - "2042-03-25": "Nauryz holiday (observed)", - "2042-05-01": "Kazakhstan People Solidarity Holiday", + "2042-03-21": "Nowruz holiday", + "2042-03-22": "Nowruz holiday", + "2042-03-23": "Nowruz holiday", + "2042-03-24": "Nowruz holiday (observed)", + "2042-03-25": "Nowruz holiday (observed)", + "2042-05-01": "Kazakhstan's People Solidarity Holiday", "2042-05-07": "Defender of the Fatherland Day", "2042-05-09": "Victory Day", "2042-07-06": "Capital Day", "2042-07-07": "Capital Day (observed)", - "2042-08-30": "Constitution Day of the Republic of Kazakhstan", - "2042-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", + "2042-08-30": "Constitution Day", + "2042-09-01": "Constitution Day (observed)", "2042-10-25": "Republic Day", "2042-10-27": "Republic Day (observed)", - "2042-11-23": "Kurban Ait (estimated)", - "2042-12-16": "Kazakhstan Independence Day", - "2043-01-01": "New Year", - "2043-01-02": "New Year", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-12-16": "Independence Day", + "2043-01-01": "New Year's Day", + "2043-01-02": "New Year's Day", "2043-01-07": "Orthodox Christmas", "2043-03-08": "International Women's Day", "2043-03-09": "International Women's Day (observed)", - "2043-03-21": "Nauryz holiday", - "2043-03-22": "Nauryz holiday", - "2043-03-23": "Nauryz holiday", - "2043-03-24": "Nauryz holiday (observed)", - "2043-03-25": "Nauryz holiday (observed)", - "2043-05-01": "Kazakhstan People Solidarity Holiday", + "2043-03-21": "Nowruz holiday", + "2043-03-22": "Nowruz holiday", + "2043-03-23": "Nowruz holiday", + "2043-03-24": "Nowruz holiday (observed)", + "2043-03-25": "Nowruz holiday (observed)", + "2043-05-01": "Kazakhstan's People Solidarity Holiday", "2043-05-07": "Defender of the Fatherland Day", "2043-05-09": "Victory Day", "2043-05-11": "Victory Day (observed)", "2043-07-06": "Capital Day", - "2043-08-30": "Constitution Day of the Republic of Kazakhstan", - "2043-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", + "2043-08-30": "Constitution Day", + "2043-08-31": "Constitution Day (observed)", "2043-10-25": "Republic Day", "2043-10-26": "Republic Day (observed)", - "2043-11-12": "Kurban Ait (estimated)", - "2043-12-16": "Kazakhstan Independence Day", - "2044-01-01": "New Year", - "2044-01-02": "New Year", - "2044-01-04": "New Year (observed)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-16": "Independence Day", + "2044-01-01": "New Year's Day", + "2044-01-02": "New Year's Day", + "2044-01-04": "New Year's Day (observed)", "2044-01-07": "Orthodox Christmas", "2044-03-08": "International Women's Day", - "2044-03-21": "Nauryz holiday", - "2044-03-22": "Nauryz holiday", - "2044-03-23": "Nauryz holiday", - "2044-05-01": "Kazakhstan People Solidarity Holiday", - "2044-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2044-03-21": "Nowruz holiday", + "2044-03-22": "Nowruz holiday", + "2044-03-23": "Nowruz holiday", + "2044-05-01": "Kazakhstan's People Solidarity Holiday", + "2044-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2044-05-07": "Defender of the Fatherland Day", "2044-05-09": "Victory Day", "2044-05-10": "Defender of the Fatherland Day (observed)", "2044-07-06": "Capital Day", - "2044-08-30": "Constitution Day of the Republic of Kazakhstan", + "2044-08-30": "Constitution Day", "2044-10-25": "Republic Day", - "2044-10-31": "Kurban Ait (estimated)", - "2044-12-16": "Kazakhstan Independence Day", - "2045-01-01": "New Year", - "2045-01-02": "New Year", - "2045-01-03": "New Year (observed)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-12-16": "Independence Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day", + "2045-01-03": "New Year's Day (observed)", "2045-01-07": "Orthodox Christmas", "2045-03-08": "International Women's Day", - "2045-03-21": "Nauryz holiday", - "2045-03-22": "Nauryz holiday", - "2045-03-23": "Nauryz holiday", - "2045-05-01": "Kazakhstan People Solidarity Holiday", + "2045-03-21": "Nowruz holiday", + "2045-03-22": "Nowruz holiday", + "2045-03-23": "Nowruz holiday", + "2045-05-01": "Kazakhstan's People Solidarity Holiday", "2045-05-07": "Defender of the Fatherland Day", "2045-05-08": "Defender of the Fatherland Day (observed)", "2045-05-09": "Victory Day", "2045-07-06": "Capital Day", - "2045-08-30": "Constitution Day of the Republic of Kazakhstan", - "2045-10-21": "Kurban Ait (estimated)", + "2045-08-30": "Constitution Day", + "2045-10-21": "Eid al-Adha (estimated)", "2045-10-25": "Republic Day", - "2045-12-16": "Kazakhstan Independence Day", - "2045-12-18": "Kazakhstan Independence Day (observed)", - "2046-01-01": "New Year", - "2046-01-02": "New Year", + "2045-12-16": "Independence Day", + "2045-12-18": "Independence Day (observed)", + "2046-01-01": "New Year's Day", + "2046-01-02": "New Year's Day", "2046-01-07": "Orthodox Christmas", "2046-03-08": "International Women's Day", - "2046-03-21": "Nauryz holiday", - "2046-03-22": "Nauryz holiday", - "2046-03-23": "Nauryz holiday", - "2046-05-01": "Kazakhstan People Solidarity Holiday", + "2046-03-21": "Nowruz holiday", + "2046-03-22": "Nowruz holiday", + "2046-03-23": "Nowruz holiday", + "2046-05-01": "Kazakhstan's People Solidarity Holiday", "2046-05-07": "Defender of the Fatherland Day", "2046-05-09": "Victory Day", "2046-07-06": "Capital Day", - "2046-08-30": "Constitution Day of the Republic of Kazakhstan", - "2046-10-10": "Kurban Ait (estimated)", + "2046-08-30": "Constitution Day", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-25": "Republic Day", - "2046-12-16": "Kazakhstan Independence Day", - "2046-12-17": "Kazakhstan Independence Day (observed)", - "2047-01-01": "New Year", - "2047-01-02": "New Year", + "2046-12-16": "Independence Day", + "2046-12-17": "Independence Day (observed)", + "2047-01-01": "New Year's Day", + "2047-01-02": "New Year's Day", "2047-01-07": "Orthodox Christmas", "2047-03-08": "International Women's Day", - "2047-03-21": "Nauryz holiday", - "2047-03-22": "Nauryz holiday", - "2047-03-23": "Nauryz holiday", - "2047-03-25": "Nauryz holiday (observed)", - "2047-05-01": "Kazakhstan People Solidarity Holiday", + "2047-03-21": "Nowruz holiday", + "2047-03-22": "Nowruz holiday", + "2047-03-23": "Nowruz holiday", + "2047-03-25": "Nowruz holiday (observed)", + "2047-05-01": "Kazakhstan's People Solidarity Holiday", "2047-05-07": "Defender of the Fatherland Day", "2047-05-09": "Victory Day", "2047-07-06": "Capital Day", "2047-07-08": "Capital Day (observed)", - "2047-08-30": "Constitution Day of the Republic of Kazakhstan", - "2047-09-30": "Kurban Ait (estimated)", + "2047-08-30": "Constitution Day", + "2047-09-30": "Eid al-Adha (estimated)", "2047-10-25": "Republic Day", - "2047-12-16": "Kazakhstan Independence Day", - "2048-01-01": "New Year", - "2048-01-02": "New Year", + "2047-12-16": "Independence Day", + "2048-01-01": "New Year's Day", + "2048-01-02": "New Year's Day", "2048-01-07": "Orthodox Christmas", "2048-03-08": "International Women's Day", "2048-03-09": "International Women's Day (observed)", - "2048-03-21": "Nauryz holiday", - "2048-03-22": "Nauryz holiday", - "2048-03-23": "Nauryz holiday", - "2048-03-24": "Nauryz holiday (observed)", - "2048-03-25": "Nauryz holiday (observed)", - "2048-05-01": "Kazakhstan People Solidarity Holiday", + "2048-03-21": "Nowruz holiday", + "2048-03-22": "Nowruz holiday", + "2048-03-23": "Nowruz holiday", + "2048-03-24": "Nowruz holiday (observed)", + "2048-03-25": "Nowruz holiday (observed)", + "2048-05-01": "Kazakhstan's People Solidarity Holiday", "2048-05-07": "Defender of the Fatherland Day", "2048-05-09": "Victory Day", "2048-05-11": "Victory Day (observed)", "2048-07-06": "Capital Day", - "2048-08-30": "Constitution Day of the Republic of Kazakhstan", - "2048-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", - "2048-09-19": "Kurban Ait (estimated)", + "2048-08-30": "Constitution Day", + "2048-08-31": "Constitution Day (observed)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-10-25": "Republic Day", "2048-10-26": "Republic Day (observed)", - "2048-12-16": "Kazakhstan Independence Day", - "2049-01-01": "New Year", - "2049-01-02": "New Year", - "2049-01-04": "New Year (observed)", + "2048-12-16": "Independence Day", + "2049-01-01": "New Year's Day", + "2049-01-02": "New Year's Day", + "2049-01-04": "New Year's Day (observed)", "2049-01-07": "Orthodox Christmas", "2049-03-08": "International Women's Day", - "2049-03-21": "Nauryz holiday", - "2049-03-22": "Nauryz holiday", - "2049-03-23": "Nauryz holiday", - "2049-03-24": "Nauryz holiday (observed)", - "2049-05-01": "Kazakhstan People Solidarity Holiday", - "2049-05-03": "Kazakhstan People Solidarity Holiday (observed)", + "2049-03-21": "Nowruz holiday", + "2049-03-22": "Nowruz holiday", + "2049-03-23": "Nowruz holiday", + "2049-03-24": "Nowruz holiday (observed)", + "2049-05-01": "Kazakhstan's People Solidarity Holiday", + "2049-05-03": "Kazakhstan's People Solidarity Holiday (observed)", "2049-05-07": "Defender of the Fatherland Day", "2049-05-09": "Victory Day", "2049-05-10": "Victory Day (observed)", "2049-07-06": "Capital Day", - "2049-08-30": "Constitution Day of the Republic of Kazakhstan", - "2049-09-08": "Kurban Ait (estimated)", + "2049-08-30": "Constitution Day", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-25": "Republic Day", - "2049-12-16": "Kazakhstan Independence Day", - "2050-01-01": "New Year", - "2050-01-02": "New Year", - "2050-01-03": "New Year (observed)", - "2050-01-04": "New Year (observed)", + "2049-12-16": "Independence Day", + "2050-01-01": "New Year's Day", + "2050-01-02": "New Year's Day", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "New Year's Day (observed)", "2050-01-07": "Orthodox Christmas", "2050-03-08": "International Women's Day", - "2050-03-21": "Nauryz holiday", - "2050-03-22": "Nauryz holiday", - "2050-03-23": "Nauryz holiday", - "2050-05-01": "Kazakhstan People Solidarity Holiday", - "2050-05-02": "Kazakhstan People Solidarity Holiday (observed)", + "2050-03-21": "Nowruz holiday", + "2050-03-22": "Nowruz holiday", + "2050-03-23": "Nowruz holiday", + "2050-05-01": "Kazakhstan's People Solidarity Holiday", + "2050-05-02": "Kazakhstan's People Solidarity Holiday (observed)", "2050-05-07": "Defender of the Fatherland Day", "2050-05-09": "Victory Day", "2050-05-10": "Defender of the Fatherland Day (observed)", "2050-07-06": "Capital Day", - "2050-08-28": "Kurban Ait (estimated)", - "2050-08-30": "Constitution Day of the Republic of Kazakhstan", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-30": "Constitution Day", "2050-10-25": "Republic Day", - "2050-12-16": "Kazakhstan Independence Day" + "2050-12-16": "Independence Day" } diff --git a/snapshots/countries/NI_AN.json b/snapshots/countries/NI_AN.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_AN.json +++ b/snapshots/countries/NI_AN.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_AS.json b/snapshots/countries/NI_AS.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_AS.json +++ b/snapshots/countries/NI_AS.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_BO.json b/snapshots/countries/NI_BO.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_BO.json +++ b/snapshots/countries/NI_BO.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_CA.json b/snapshots/countries/NI_CA.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_CA.json +++ b/snapshots/countries/NI_CA.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_CI.json b/snapshots/countries/NI_CI.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_CI.json +++ b/snapshots/countries/NI_CI.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_CO.json b/snapshots/countries/NI_CO.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_CO.json +++ b/snapshots/countries/NI_CO.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_COMMON.json b/snapshots/countries/NI_COMMON.json index 2d5690d40..245acbf28 100644 --- a/snapshots/countries/NI_COMMON.json +++ b/snapshots/countries/NI_COMMON.json @@ -3,8 +3,6 @@ "1950-04-06": "Maundy Thursday", "1950-04-07": "Good Friday", "1950-05-01": "Labor Day", - "1950-08-01": "Descent of Saint Dominic", - "1950-08-10": "Ascent of Saint Dominic", "1950-09-14": "Battle of San Jacinto Day", "1950-09-15": "Independence Day", "1950-12-08": "Virgin's Day", @@ -13,8 +11,6 @@ "1951-03-22": "Maundy Thursday", "1951-03-23": "Good Friday", "1951-05-01": "Labor Day", - "1951-08-01": "Descent of Saint Dominic", - "1951-08-10": "Ascent of Saint Dominic", "1951-09-14": "Battle of San Jacinto Day", "1951-09-15": "Independence Day", "1951-12-08": "Virgin's Day", @@ -23,8 +19,6 @@ "1952-04-10": "Maundy Thursday", "1952-04-11": "Good Friday", "1952-05-01": "Labor Day", - "1952-08-01": "Descent of Saint Dominic", - "1952-08-10": "Ascent of Saint Dominic", "1952-09-14": "Battle of San Jacinto Day", "1952-09-15": "Independence Day", "1952-12-08": "Virgin's Day", @@ -33,8 +27,6 @@ "1953-04-02": "Maundy Thursday", "1953-04-03": "Good Friday", "1953-05-01": "Labor Day", - "1953-08-01": "Descent of Saint Dominic", - "1953-08-10": "Ascent of Saint Dominic", "1953-09-14": "Battle of San Jacinto Day", "1953-09-15": "Independence Day", "1953-12-08": "Virgin's Day", @@ -43,8 +35,6 @@ "1954-04-15": "Maundy Thursday", "1954-04-16": "Good Friday", "1954-05-01": "Labor Day", - "1954-08-01": "Descent of Saint Dominic", - "1954-08-10": "Ascent of Saint Dominic", "1954-09-14": "Battle of San Jacinto Day", "1954-09-15": "Independence Day", "1954-12-08": "Virgin's Day", @@ -53,8 +43,6 @@ "1955-04-07": "Maundy Thursday", "1955-04-08": "Good Friday", "1955-05-01": "Labor Day", - "1955-08-01": "Descent of Saint Dominic", - "1955-08-10": "Ascent of Saint Dominic", "1955-09-14": "Battle of San Jacinto Day", "1955-09-15": "Independence Day", "1955-12-08": "Virgin's Day", @@ -63,8 +51,6 @@ "1956-03-29": "Maundy Thursday", "1956-03-30": "Good Friday", "1956-05-01": "Labor Day", - "1956-08-01": "Descent of Saint Dominic", - "1956-08-10": "Ascent of Saint Dominic", "1956-09-14": "Battle of San Jacinto Day", "1956-09-15": "Independence Day", "1956-12-08": "Virgin's Day", @@ -73,8 +59,6 @@ "1957-04-18": "Maundy Thursday", "1957-04-19": "Good Friday", "1957-05-01": "Labor Day", - "1957-08-01": "Descent of Saint Dominic", - "1957-08-10": "Ascent of Saint Dominic", "1957-09-14": "Battle of San Jacinto Day", "1957-09-15": "Independence Day", "1957-12-08": "Virgin's Day", @@ -83,8 +67,6 @@ "1958-04-03": "Maundy Thursday", "1958-04-04": "Good Friday", "1958-05-01": "Labor Day", - "1958-08-01": "Descent of Saint Dominic", - "1958-08-10": "Ascent of Saint Dominic", "1958-09-14": "Battle of San Jacinto Day", "1958-09-15": "Independence Day", "1958-12-08": "Virgin's Day", @@ -93,8 +75,6 @@ "1959-03-26": "Maundy Thursday", "1959-03-27": "Good Friday", "1959-05-01": "Labor Day", - "1959-08-01": "Descent of Saint Dominic", - "1959-08-10": "Ascent of Saint Dominic", "1959-09-14": "Battle of San Jacinto Day", "1959-09-15": "Independence Day", "1959-12-08": "Virgin's Day", @@ -103,8 +83,6 @@ "1960-04-14": "Maundy Thursday", "1960-04-15": "Good Friday", "1960-05-01": "Labor Day", - "1960-08-01": "Descent of Saint Dominic", - "1960-08-10": "Ascent of Saint Dominic", "1960-09-14": "Battle of San Jacinto Day", "1960-09-15": "Independence Day", "1960-12-08": "Virgin's Day", @@ -113,8 +91,6 @@ "1961-03-30": "Maundy Thursday", "1961-03-31": "Good Friday", "1961-05-01": "Labor Day", - "1961-08-01": "Descent of Saint Dominic", - "1961-08-10": "Ascent of Saint Dominic", "1961-09-14": "Battle of San Jacinto Day", "1961-09-15": "Independence Day", "1961-12-08": "Virgin's Day", @@ -123,8 +99,6 @@ "1962-04-19": "Maundy Thursday", "1962-04-20": "Good Friday", "1962-05-01": "Labor Day", - "1962-08-01": "Descent of Saint Dominic", - "1962-08-10": "Ascent of Saint Dominic", "1962-09-14": "Battle of San Jacinto Day", "1962-09-15": "Independence Day", "1962-12-08": "Virgin's Day", @@ -133,8 +107,6 @@ "1963-04-11": "Maundy Thursday", "1963-04-12": "Good Friday", "1963-05-01": "Labor Day", - "1963-08-01": "Descent of Saint Dominic", - "1963-08-10": "Ascent of Saint Dominic", "1963-09-14": "Battle of San Jacinto Day", "1963-09-15": "Independence Day", "1963-12-08": "Virgin's Day", @@ -143,8 +115,6 @@ "1964-03-26": "Maundy Thursday", "1964-03-27": "Good Friday", "1964-05-01": "Labor Day", - "1964-08-01": "Descent of Saint Dominic", - "1964-08-10": "Ascent of Saint Dominic", "1964-09-14": "Battle of San Jacinto Day", "1964-09-15": "Independence Day", "1964-12-08": "Virgin's Day", @@ -153,8 +123,6 @@ "1965-04-15": "Maundy Thursday", "1965-04-16": "Good Friday", "1965-05-01": "Labor Day", - "1965-08-01": "Descent of Saint Dominic", - "1965-08-10": "Ascent of Saint Dominic", "1965-09-14": "Battle of San Jacinto Day", "1965-09-15": "Independence Day", "1965-12-08": "Virgin's Day", @@ -163,8 +131,6 @@ "1966-04-07": "Maundy Thursday", "1966-04-08": "Good Friday", "1966-05-01": "Labor Day", - "1966-08-01": "Descent of Saint Dominic", - "1966-08-10": "Ascent of Saint Dominic", "1966-09-14": "Battle of San Jacinto Day", "1966-09-15": "Independence Day", "1966-12-08": "Virgin's Day", @@ -173,8 +139,6 @@ "1967-03-23": "Maundy Thursday", "1967-03-24": "Good Friday", "1967-05-01": "Labor Day", - "1967-08-01": "Descent of Saint Dominic", - "1967-08-10": "Ascent of Saint Dominic", "1967-09-14": "Battle of San Jacinto Day", "1967-09-15": "Independence Day", "1967-12-08": "Virgin's Day", @@ -183,8 +147,6 @@ "1968-04-11": "Maundy Thursday", "1968-04-12": "Good Friday", "1968-05-01": "Labor Day", - "1968-08-01": "Descent of Saint Dominic", - "1968-08-10": "Ascent of Saint Dominic", "1968-09-14": "Battle of San Jacinto Day", "1968-09-15": "Independence Day", "1968-12-08": "Virgin's Day", @@ -193,8 +155,6 @@ "1969-04-03": "Maundy Thursday", "1969-04-04": "Good Friday", "1969-05-01": "Labor Day", - "1969-08-01": "Descent of Saint Dominic", - "1969-08-10": "Ascent of Saint Dominic", "1969-09-14": "Battle of San Jacinto Day", "1969-09-15": "Independence Day", "1969-12-08": "Virgin's Day", @@ -203,8 +163,6 @@ "1970-03-26": "Maundy Thursday", "1970-03-27": "Good Friday", "1970-05-01": "Labor Day", - "1970-08-01": "Descent of Saint Dominic", - "1970-08-10": "Ascent of Saint Dominic", "1970-09-14": "Battle of San Jacinto Day", "1970-09-15": "Independence Day", "1970-12-08": "Virgin's Day", @@ -213,8 +171,6 @@ "1971-04-08": "Maundy Thursday", "1971-04-09": "Good Friday", "1971-05-01": "Labor Day", - "1971-08-01": "Descent of Saint Dominic", - "1971-08-10": "Ascent of Saint Dominic", "1971-09-14": "Battle of San Jacinto Day", "1971-09-15": "Independence Day", "1971-12-08": "Virgin's Day", @@ -223,8 +179,6 @@ "1972-03-30": "Maundy Thursday", "1972-03-31": "Good Friday", "1972-05-01": "Labor Day", - "1972-08-01": "Descent of Saint Dominic", - "1972-08-10": "Ascent of Saint Dominic", "1972-09-14": "Battle of San Jacinto Day", "1972-09-15": "Independence Day", "1972-12-08": "Virgin's Day", @@ -233,8 +187,6 @@ "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-05-01": "Labor Day", - "1973-08-01": "Descent of Saint Dominic", - "1973-08-10": "Ascent of Saint Dominic", "1973-09-14": "Battle of San Jacinto Day", "1973-09-15": "Independence Day", "1973-12-08": "Virgin's Day", @@ -243,8 +195,6 @@ "1974-04-11": "Maundy Thursday", "1974-04-12": "Good Friday", "1974-05-01": "Labor Day", - "1974-08-01": "Descent of Saint Dominic", - "1974-08-10": "Ascent of Saint Dominic", "1974-09-14": "Battle of San Jacinto Day", "1974-09-15": "Independence Day", "1974-12-08": "Virgin's Day", @@ -253,8 +203,6 @@ "1975-03-27": "Maundy Thursday", "1975-03-28": "Good Friday", "1975-05-01": "Labor Day", - "1975-08-01": "Descent of Saint Dominic", - "1975-08-10": "Ascent of Saint Dominic", "1975-09-14": "Battle of San Jacinto Day", "1975-09-15": "Independence Day", "1975-12-08": "Virgin's Day", @@ -263,8 +211,6 @@ "1976-04-15": "Maundy Thursday", "1976-04-16": "Good Friday", "1976-05-01": "Labor Day", - "1976-08-01": "Descent of Saint Dominic", - "1976-08-10": "Ascent of Saint Dominic", "1976-09-14": "Battle of San Jacinto Day", "1976-09-15": "Independence Day", "1976-12-08": "Virgin's Day", @@ -273,8 +219,6 @@ "1977-04-07": "Maundy Thursday", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-08-01": "Descent of Saint Dominic", - "1977-08-10": "Ascent of Saint Dominic", "1977-09-14": "Battle of San Jacinto Day", "1977-09-15": "Independence Day", "1977-12-08": "Virgin's Day", @@ -283,8 +227,6 @@ "1978-03-23": "Maundy Thursday", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", - "1978-08-01": "Descent of Saint Dominic", - "1978-08-10": "Ascent of Saint Dominic", "1978-09-14": "Battle of San Jacinto Day", "1978-09-15": "Independence Day", "1978-12-08": "Virgin's Day", @@ -294,8 +236,6 @@ "1979-04-13": "Good Friday", "1979-05-01": "Labor Day", "1979-07-19": "Revolution Day", - "1979-08-01": "Descent of Saint Dominic", - "1979-08-10": "Ascent of Saint Dominic", "1979-09-14": "Battle of San Jacinto Day", "1979-09-15": "Independence Day", "1979-12-08": "Virgin's Day", @@ -305,8 +245,6 @@ "1980-04-04": "Good Friday", "1980-05-01": "Labor Day", "1980-07-19": "Revolution Day", - "1980-08-01": "Descent of Saint Dominic", - "1980-08-10": "Ascent of Saint Dominic", "1980-09-14": "Battle of San Jacinto Day", "1980-09-15": "Independence Day", "1980-12-08": "Virgin's Day", @@ -316,8 +254,6 @@ "1981-04-17": "Good Friday", "1981-05-01": "Labor Day", "1981-07-19": "Revolution Day", - "1981-08-01": "Descent of Saint Dominic", - "1981-08-10": "Ascent of Saint Dominic", "1981-09-14": "Battle of San Jacinto Day", "1981-09-15": "Independence Day", "1981-12-08": "Virgin's Day", @@ -327,8 +263,6 @@ "1982-04-09": "Good Friday", "1982-05-01": "Labor Day", "1982-07-19": "Revolution Day", - "1982-08-01": "Descent of Saint Dominic", - "1982-08-10": "Ascent of Saint Dominic", "1982-09-14": "Battle of San Jacinto Day", "1982-09-15": "Independence Day", "1982-12-08": "Virgin's Day", @@ -338,8 +272,6 @@ "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", "1983-07-19": "Revolution Day", - "1983-08-01": "Descent of Saint Dominic", - "1983-08-10": "Ascent of Saint Dominic", "1983-09-14": "Battle of San Jacinto Day", "1983-09-15": "Independence Day", "1983-12-08": "Virgin's Day", @@ -349,8 +281,6 @@ "1984-04-20": "Good Friday", "1984-05-01": "Labor Day", "1984-07-19": "Revolution Day", - "1984-08-01": "Descent of Saint Dominic", - "1984-08-10": "Ascent of Saint Dominic", "1984-09-14": "Battle of San Jacinto Day", "1984-09-15": "Independence Day", "1984-12-08": "Virgin's Day", @@ -360,8 +290,6 @@ "1985-04-05": "Good Friday", "1985-05-01": "Labor Day", "1985-07-19": "Revolution Day", - "1985-08-01": "Descent of Saint Dominic", - "1985-08-10": "Ascent of Saint Dominic", "1985-09-14": "Battle of San Jacinto Day", "1985-09-15": "Independence Day", "1985-12-08": "Virgin's Day", @@ -371,8 +299,6 @@ "1986-03-28": "Good Friday", "1986-05-01": "Labor Day", "1986-07-19": "Revolution Day", - "1986-08-01": "Descent of Saint Dominic", - "1986-08-10": "Ascent of Saint Dominic", "1986-09-14": "Battle of San Jacinto Day", "1986-09-15": "Independence Day", "1986-12-08": "Virgin's Day", @@ -382,8 +308,6 @@ "1987-04-17": "Good Friday", "1987-05-01": "Labor Day", "1987-07-19": "Revolution Day", - "1987-08-01": "Descent of Saint Dominic", - "1987-08-10": "Ascent of Saint Dominic", "1987-09-14": "Battle of San Jacinto Day", "1987-09-15": "Independence Day", "1987-12-08": "Virgin's Day", @@ -393,8 +317,6 @@ "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", "1988-07-19": "Revolution Day", - "1988-08-01": "Descent of Saint Dominic", - "1988-08-10": "Ascent of Saint Dominic", "1988-09-14": "Battle of San Jacinto Day", "1988-09-15": "Independence Day", "1988-12-08": "Virgin's Day", @@ -404,8 +326,6 @@ "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-07-19": "Revolution Day", - "1989-08-01": "Descent of Saint Dominic", - "1989-08-10": "Ascent of Saint Dominic", "1989-09-14": "Battle of San Jacinto Day", "1989-09-15": "Independence Day", "1989-12-08": "Virgin's Day", @@ -415,8 +335,6 @@ "1990-04-13": "Good Friday", "1990-05-01": "Labor Day", "1990-07-19": "Revolution Day", - "1990-08-01": "Descent of Saint Dominic", - "1990-08-10": "Ascent of Saint Dominic", "1990-09-14": "Battle of San Jacinto Day", "1990-09-15": "Independence Day", "1990-12-08": "Virgin's Day", @@ -426,8 +344,6 @@ "1991-03-29": "Good Friday", "1991-05-01": "Labor Day", "1991-07-19": "Revolution Day", - "1991-08-01": "Descent of Saint Dominic", - "1991-08-10": "Ascent of Saint Dominic", "1991-09-14": "Battle of San Jacinto Day", "1991-09-15": "Independence Day", "1991-12-08": "Virgin's Day", @@ -437,8 +353,6 @@ "1992-04-17": "Good Friday", "1992-05-01": "Labor Day", "1992-07-19": "Revolution Day", - "1992-08-01": "Descent of Saint Dominic", - "1992-08-10": "Ascent of Saint Dominic", "1992-09-14": "Battle of San Jacinto Day", "1992-09-15": "Independence Day", "1992-12-08": "Virgin's Day", @@ -448,8 +362,6 @@ "1993-04-09": "Good Friday", "1993-05-01": "Labor Day", "1993-07-19": "Revolution Day", - "1993-08-01": "Descent of Saint Dominic", - "1993-08-10": "Ascent of Saint Dominic", "1993-09-14": "Battle of San Jacinto Day", "1993-09-15": "Independence Day", "1993-12-08": "Virgin's Day", @@ -459,8 +371,6 @@ "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", "1994-07-19": "Revolution Day", - "1994-08-01": "Descent of Saint Dominic", - "1994-08-10": "Ascent of Saint Dominic", "1994-09-14": "Battle of San Jacinto Day", "1994-09-15": "Independence Day", "1994-12-08": "Virgin's Day", @@ -470,8 +380,6 @@ "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-07-19": "Revolution Day", - "1995-08-01": "Descent of Saint Dominic", - "1995-08-10": "Ascent of Saint Dominic", "1995-09-14": "Battle of San Jacinto Day", "1995-09-15": "Independence Day", "1995-12-08": "Virgin's Day", @@ -481,8 +389,6 @@ "1996-04-05": "Good Friday", "1996-05-01": "Labor Day", "1996-07-19": "Revolution Day", - "1996-08-01": "Descent of Saint Dominic", - "1996-08-10": "Ascent of Saint Dominic", "1996-09-14": "Battle of San Jacinto Day", "1996-09-15": "Independence Day", "1996-12-08": "Virgin's Day", @@ -492,8 +398,6 @@ "1997-03-28": "Good Friday", "1997-05-01": "Labor Day", "1997-07-19": "Revolution Day", - "1997-08-01": "Descent of Saint Dominic", - "1997-08-10": "Ascent of Saint Dominic", "1997-09-14": "Battle of San Jacinto Day", "1997-09-15": "Independence Day", "1997-12-08": "Virgin's Day", @@ -503,8 +407,6 @@ "1998-04-10": "Good Friday", "1998-05-01": "Labor Day", "1998-07-19": "Revolution Day", - "1998-08-01": "Descent of Saint Dominic", - "1998-08-10": "Ascent of Saint Dominic", "1998-09-14": "Battle of San Jacinto Day", "1998-09-15": "Independence Day", "1998-12-08": "Virgin's Day", @@ -514,8 +416,6 @@ "1999-04-02": "Good Friday", "1999-05-01": "Labor Day", "1999-07-19": "Revolution Day", - "1999-08-01": "Descent of Saint Dominic", - "1999-08-10": "Ascent of Saint Dominic", "1999-09-14": "Battle of San Jacinto Day", "1999-09-15": "Independence Day", "1999-12-08": "Virgin's Day", @@ -525,8 +425,6 @@ "2000-04-21": "Good Friday", "2000-05-01": "Labor Day", "2000-07-19": "Revolution Day", - "2000-08-01": "Descent of Saint Dominic", - "2000-08-10": "Ascent of Saint Dominic", "2000-09-14": "Battle of San Jacinto Day", "2000-09-15": "Independence Day", "2000-12-08": "Virgin's Day", @@ -536,8 +434,6 @@ "2001-04-13": "Good Friday", "2001-05-01": "Labor Day", "2001-07-19": "Revolution Day", - "2001-08-01": "Descent of Saint Dominic", - "2001-08-10": "Ascent of Saint Dominic", "2001-09-14": "Battle of San Jacinto Day", "2001-09-15": "Independence Day", "2001-12-08": "Virgin's Day", @@ -547,8 +443,6 @@ "2002-03-29": "Good Friday", "2002-05-01": "Labor Day", "2002-07-19": "Revolution Day", - "2002-08-01": "Descent of Saint Dominic", - "2002-08-10": "Ascent of Saint Dominic", "2002-09-14": "Battle of San Jacinto Day", "2002-09-15": "Independence Day", "2002-12-08": "Virgin's Day", @@ -558,8 +452,6 @@ "2003-04-18": "Good Friday", "2003-05-01": "Labor Day", "2003-07-19": "Revolution Day", - "2003-08-01": "Descent of Saint Dominic", - "2003-08-10": "Ascent of Saint Dominic", "2003-09-14": "Battle of San Jacinto Day", "2003-09-15": "Independence Day", "2003-12-08": "Virgin's Day", @@ -569,8 +461,6 @@ "2004-04-09": "Good Friday", "2004-05-01": "Labor Day", "2004-07-19": "Revolution Day", - "2004-08-01": "Descent of Saint Dominic", - "2004-08-10": "Ascent of Saint Dominic", "2004-09-14": "Battle of San Jacinto Day", "2004-09-15": "Independence Day", "2004-12-08": "Virgin's Day", @@ -580,8 +470,6 @@ "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", "2005-07-19": "Revolution Day", - "2005-08-01": "Descent of Saint Dominic", - "2005-08-10": "Ascent of Saint Dominic", "2005-09-14": "Battle of San Jacinto Day", "2005-09-15": "Independence Day", "2005-12-08": "Virgin's Day", @@ -591,8 +479,6 @@ "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-07-19": "Revolution Day", - "2006-08-01": "Descent of Saint Dominic", - "2006-08-10": "Ascent of Saint Dominic", "2006-09-14": "Battle of San Jacinto Day", "2006-09-15": "Independence Day", "2006-12-08": "Virgin's Day", @@ -602,8 +488,6 @@ "2007-04-06": "Good Friday", "2007-05-01": "Labor Day", "2007-07-19": "Revolution Day", - "2007-08-01": "Descent of Saint Dominic", - "2007-08-10": "Ascent of Saint Dominic", "2007-09-14": "Battle of San Jacinto Day", "2007-09-15": "Independence Day", "2007-12-08": "Virgin's Day", @@ -613,8 +497,6 @@ "2008-03-21": "Good Friday", "2008-05-01": "Labor Day", "2008-07-19": "Revolution Day", - "2008-08-01": "Descent of Saint Dominic", - "2008-08-10": "Ascent of Saint Dominic", "2008-09-14": "Battle of San Jacinto Day", "2008-09-15": "Independence Day", "2008-12-08": "Virgin's Day", @@ -624,8 +506,6 @@ "2009-04-10": "Good Friday", "2009-05-01": "Labor Day", "2009-07-19": "Revolution Day", - "2009-08-01": "Descent of Saint Dominic", - "2009-08-10": "Ascent of Saint Dominic", "2009-09-14": "Battle of San Jacinto Day", "2009-09-15": "Independence Day", "2009-12-08": "Virgin's Day", @@ -635,8 +515,6 @@ "2010-04-02": "Good Friday", "2010-05-01": "Labor Day", "2010-07-19": "Revolution Day", - "2010-08-01": "Descent of Saint Dominic", - "2010-08-10": "Ascent of Saint Dominic", "2010-09-14": "Battle of San Jacinto Day", "2010-09-15": "Independence Day", "2010-12-08": "Virgin's Day", @@ -646,8 +524,6 @@ "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", "2011-07-19": "Revolution Day", - "2011-08-01": "Descent of Saint Dominic", - "2011-08-10": "Ascent of Saint Dominic", "2011-09-14": "Battle of San Jacinto Day", "2011-09-15": "Independence Day", "2011-12-08": "Virgin's Day", @@ -657,8 +533,6 @@ "2012-04-06": "Good Friday", "2012-05-01": "Labor Day", "2012-07-19": "Revolution Day", - "2012-08-01": "Descent of Saint Dominic", - "2012-08-10": "Ascent of Saint Dominic", "2012-09-14": "Battle of San Jacinto Day", "2012-09-15": "Independence Day", "2012-12-08": "Virgin's Day", @@ -668,8 +542,6 @@ "2013-03-29": "Good Friday", "2013-05-01": "Labor Day", "2013-07-19": "Revolution Day", - "2013-08-01": "Descent of Saint Dominic", - "2013-08-10": "Ascent of Saint Dominic", "2013-09-14": "Battle of San Jacinto Day", "2013-09-15": "Independence Day", "2013-12-08": "Virgin's Day", @@ -679,8 +551,6 @@ "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", "2014-07-19": "Revolution Day", - "2014-08-01": "Descent of Saint Dominic", - "2014-08-10": "Ascent of Saint Dominic", "2014-09-14": "Battle of San Jacinto Day", "2014-09-15": "Independence Day", "2014-12-08": "Virgin's Day", @@ -690,8 +560,6 @@ "2015-04-03": "Good Friday", "2015-05-01": "Labor Day", "2015-07-19": "Revolution Day", - "2015-08-01": "Descent of Saint Dominic", - "2015-08-10": "Ascent of Saint Dominic", "2015-09-14": "Battle of San Jacinto Day", "2015-09-15": "Independence Day", "2015-12-08": "Virgin's Day", @@ -701,8 +569,6 @@ "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", "2016-07-19": "Revolution Day", - "2016-08-01": "Descent of Saint Dominic", - "2016-08-10": "Ascent of Saint Dominic", "2016-09-14": "Battle of San Jacinto Day", "2016-09-15": "Independence Day", "2016-12-08": "Virgin's Day", @@ -712,8 +578,6 @@ "2017-04-14": "Good Friday", "2017-05-01": "Labor Day", "2017-07-19": "Revolution Day", - "2017-08-01": "Descent of Saint Dominic", - "2017-08-10": "Ascent of Saint Dominic", "2017-09-14": "Battle of San Jacinto Day", "2017-09-15": "Independence Day", "2017-12-08": "Virgin's Day", @@ -723,8 +587,6 @@ "2018-03-30": "Good Friday", "2018-05-01": "Labor Day", "2018-07-19": "Revolution Day", - "2018-08-01": "Descent of Saint Dominic", - "2018-08-10": "Ascent of Saint Dominic", "2018-09-14": "Battle of San Jacinto Day", "2018-09-15": "Independence Day", "2018-12-08": "Virgin's Day", @@ -734,8 +596,6 @@ "2019-04-19": "Good Friday", "2019-05-01": "Labor Day", "2019-07-19": "Revolution Day", - "2019-08-01": "Descent of Saint Dominic", - "2019-08-10": "Ascent of Saint Dominic", "2019-09-14": "Battle of San Jacinto Day", "2019-09-15": "Independence Day", "2019-12-08": "Virgin's Day", @@ -745,8 +605,6 @@ "2020-04-10": "Good Friday", "2020-05-01": "Labor Day", "2020-07-19": "Revolution Day", - "2020-08-01": "Descent of Saint Dominic", - "2020-08-10": "Ascent of Saint Dominic", "2020-09-14": "Battle of San Jacinto Day", "2020-09-15": "Independence Day", "2020-12-08": "Virgin's Day", @@ -756,8 +614,6 @@ "2021-04-02": "Good Friday", "2021-05-01": "Labor Day", "2021-07-19": "Revolution Day", - "2021-08-01": "Descent of Saint Dominic", - "2021-08-10": "Ascent of Saint Dominic", "2021-09-14": "Battle of San Jacinto Day", "2021-09-15": "Independence Day", "2021-12-08": "Virgin's Day", @@ -766,9 +622,8 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", - "2022-08-01": "Descent of Saint Dominic", - "2022-08-10": "Ascent of Saint Dominic", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", "2022-12-08": "Virgin's Day", @@ -777,9 +632,8 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", - "2023-08-01": "Descent of Saint Dominic", - "2023-08-10": "Ascent of Saint Dominic", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", "2023-12-08": "Virgin's Day", @@ -788,9 +642,8 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", - "2024-08-01": "Descent of Saint Dominic", - "2024-08-10": "Ascent of Saint Dominic", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", "2024-12-08": "Virgin's Day", @@ -799,9 +652,8 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", - "2025-08-01": "Descent of Saint Dominic", - "2025-08-10": "Ascent of Saint Dominic", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", "2025-12-08": "Virgin's Day", @@ -810,9 +662,8 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", - "2026-08-01": "Descent of Saint Dominic", - "2026-08-10": "Ascent of Saint Dominic", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", "2026-12-08": "Virgin's Day", @@ -821,9 +672,8 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", - "2027-08-01": "Descent of Saint Dominic", - "2027-08-10": "Ascent of Saint Dominic", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", "2027-12-08": "Virgin's Day", @@ -832,9 +682,8 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", - "2028-08-01": "Descent of Saint Dominic", - "2028-08-10": "Ascent of Saint Dominic", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", "2028-12-08": "Virgin's Day", @@ -843,9 +692,8 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", - "2029-08-01": "Descent of Saint Dominic", - "2029-08-10": "Ascent of Saint Dominic", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", "2029-12-08": "Virgin's Day", @@ -854,9 +702,8 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", - "2030-08-01": "Descent of Saint Dominic", - "2030-08-10": "Ascent of Saint Dominic", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", "2030-12-08": "Virgin's Day", @@ -865,9 +712,8 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", - "2031-08-01": "Descent of Saint Dominic", - "2031-08-10": "Ascent of Saint Dominic", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", "2031-12-08": "Virgin's Day", @@ -876,9 +722,8 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", - "2032-08-01": "Descent of Saint Dominic", - "2032-08-10": "Ascent of Saint Dominic", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", "2032-12-08": "Virgin's Day", @@ -887,9 +732,8 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", - "2033-08-01": "Descent of Saint Dominic", - "2033-08-10": "Ascent of Saint Dominic", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", "2033-12-08": "Virgin's Day", @@ -898,9 +742,8 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", - "2034-08-01": "Descent of Saint Dominic", - "2034-08-10": "Ascent of Saint Dominic", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", "2034-12-08": "Virgin's Day", @@ -909,9 +752,8 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", - "2035-08-01": "Descent of Saint Dominic", - "2035-08-10": "Ascent of Saint Dominic", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", "2035-12-08": "Virgin's Day", @@ -920,9 +762,8 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", - "2036-08-01": "Descent of Saint Dominic", - "2036-08-10": "Ascent of Saint Dominic", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", "2036-12-08": "Virgin's Day", @@ -931,9 +772,8 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", - "2037-08-01": "Descent of Saint Dominic", - "2037-08-10": "Ascent of Saint Dominic", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", "2037-12-08": "Virgin's Day", @@ -942,9 +782,8 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", - "2038-08-01": "Descent of Saint Dominic", - "2038-08-10": "Ascent of Saint Dominic", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", "2038-12-08": "Virgin's Day", @@ -953,9 +792,8 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", - "2039-08-01": "Descent of Saint Dominic", - "2039-08-10": "Ascent of Saint Dominic", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", "2039-12-08": "Virgin's Day", @@ -964,9 +802,8 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", - "2040-08-01": "Descent of Saint Dominic", - "2040-08-10": "Ascent of Saint Dominic", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", "2040-12-08": "Virgin's Day", @@ -975,9 +812,8 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", - "2041-08-01": "Descent of Saint Dominic", - "2041-08-10": "Ascent of Saint Dominic", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", "2041-12-08": "Virgin's Day", @@ -986,9 +822,8 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", - "2042-08-01": "Descent of Saint Dominic", - "2042-08-10": "Ascent of Saint Dominic", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", "2042-12-08": "Virgin's Day", @@ -997,9 +832,8 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", - "2043-08-01": "Descent of Saint Dominic", - "2043-08-10": "Ascent of Saint Dominic", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", "2043-12-08": "Virgin's Day", @@ -1008,9 +842,8 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", - "2044-08-01": "Descent of Saint Dominic", - "2044-08-10": "Ascent of Saint Dominic", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", "2044-12-08": "Virgin's Day", @@ -1019,9 +852,8 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", - "2045-08-01": "Descent of Saint Dominic", - "2045-08-10": "Ascent of Saint Dominic", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", "2045-12-08": "Virgin's Day", @@ -1030,9 +862,8 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", - "2046-08-01": "Descent of Saint Dominic", - "2046-08-10": "Ascent of Saint Dominic", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", "2046-12-08": "Virgin's Day", @@ -1041,9 +872,8 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", - "2047-08-01": "Descent of Saint Dominic", - "2047-08-10": "Ascent of Saint Dominic", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", "2047-12-08": "Virgin's Day", @@ -1052,9 +882,8 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", - "2048-08-01": "Descent of Saint Dominic", - "2048-08-10": "Ascent of Saint Dominic", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", "2048-12-08": "Virgin's Day", @@ -1063,9 +892,8 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", - "2049-08-01": "Descent of Saint Dominic", - "2049-08-10": "Ascent of Saint Dominic", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", "2049-12-08": "Virgin's Day", @@ -1074,9 +902,8 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", - "2050-08-01": "Descent of Saint Dominic", - "2050-08-10": "Ascent of Saint Dominic", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", "2050-12-08": "Virgin's Day", diff --git a/snapshots/countries/NI_ES.json b/snapshots/countries/NI_ES.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_ES.json +++ b/snapshots/countries/NI_ES.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_GR.json b/snapshots/countries/NI_GR.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_GR.json +++ b/snapshots/countries/NI_GR.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_JI.json b/snapshots/countries/NI_JI.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_JI.json +++ b/snapshots/countries/NI_JI.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_LE.json b/snapshots/countries/NI_LE.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_LE.json +++ b/snapshots/countries/NI_LE.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_MD.json b/snapshots/countries/NI_MD.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_MD.json +++ b/snapshots/countries/NI_MD.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_MN.json b/snapshots/countries/NI_MN.json index 2d5690d40..6808f7e45 100644 --- a/snapshots/countries/NI_MN.json +++ b/snapshots/countries/NI_MN.json @@ -766,6 +766,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-08-01": "Descent of Saint Dominic", "2022-08-10": "Ascent of Saint Dominic", @@ -777,6 +778,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-08-01": "Descent of Saint Dominic", "2023-08-10": "Ascent of Saint Dominic", @@ -788,6 +790,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-08-01": "Descent of Saint Dominic", "2024-08-10": "Ascent of Saint Dominic", @@ -799,6 +802,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-08-01": "Descent of Saint Dominic", "2025-08-10": "Ascent of Saint Dominic", @@ -810,6 +814,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-08-01": "Descent of Saint Dominic", "2026-08-10": "Ascent of Saint Dominic", @@ -821,6 +826,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-08-01": "Descent of Saint Dominic", "2027-08-10": "Ascent of Saint Dominic", @@ -832,6 +838,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-08-01": "Descent of Saint Dominic", "2028-08-10": "Ascent of Saint Dominic", @@ -843,6 +850,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-08-01": "Descent of Saint Dominic", "2029-08-10": "Ascent of Saint Dominic", @@ -854,6 +862,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-08-01": "Descent of Saint Dominic", "2030-08-10": "Ascent of Saint Dominic", @@ -865,6 +874,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-08-01": "Descent of Saint Dominic", "2031-08-10": "Ascent of Saint Dominic", @@ -876,6 +886,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-08-01": "Descent of Saint Dominic", "2032-08-10": "Ascent of Saint Dominic", @@ -887,6 +898,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-08-01": "Descent of Saint Dominic", "2033-08-10": "Ascent of Saint Dominic", @@ -898,6 +910,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-08-01": "Descent of Saint Dominic", "2034-08-10": "Ascent of Saint Dominic", @@ -909,6 +922,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-08-01": "Descent of Saint Dominic", "2035-08-10": "Ascent of Saint Dominic", @@ -920,6 +934,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-08-01": "Descent of Saint Dominic", "2036-08-10": "Ascent of Saint Dominic", @@ -931,6 +946,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-08-01": "Descent of Saint Dominic", "2037-08-10": "Ascent of Saint Dominic", @@ -942,6 +958,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-08-01": "Descent of Saint Dominic", "2038-08-10": "Ascent of Saint Dominic", @@ -953,6 +970,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-08-01": "Descent of Saint Dominic", "2039-08-10": "Ascent of Saint Dominic", @@ -964,6 +982,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-08-01": "Descent of Saint Dominic", "2040-08-10": "Ascent of Saint Dominic", @@ -975,6 +994,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-08-01": "Descent of Saint Dominic", "2041-08-10": "Ascent of Saint Dominic", @@ -986,6 +1006,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-08-01": "Descent of Saint Dominic", "2042-08-10": "Ascent of Saint Dominic", @@ -997,6 +1018,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-08-01": "Descent of Saint Dominic", "2043-08-10": "Ascent of Saint Dominic", @@ -1008,6 +1030,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-08-01": "Descent of Saint Dominic", "2044-08-10": "Ascent of Saint Dominic", @@ -1019,6 +1042,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-08-01": "Descent of Saint Dominic", "2045-08-10": "Ascent of Saint Dominic", @@ -1030,6 +1054,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-08-01": "Descent of Saint Dominic", "2046-08-10": "Ascent of Saint Dominic", @@ -1041,6 +1066,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-08-01": "Descent of Saint Dominic", "2047-08-10": "Ascent of Saint Dominic", @@ -1052,6 +1078,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-08-01": "Descent of Saint Dominic", "2048-08-10": "Ascent of Saint Dominic", @@ -1063,6 +1090,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-08-01": "Descent of Saint Dominic", "2049-08-10": "Ascent of Saint Dominic", @@ -1074,6 +1102,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-08-01": "Descent of Saint Dominic", "2050-08-10": "Ascent of Saint Dominic", diff --git a/snapshots/countries/NI_MS.json b/snapshots/countries/NI_MS.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_MS.json +++ b/snapshots/countries/NI_MS.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_MT.json b/snapshots/countries/NI_MT.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_MT.json +++ b/snapshots/countries/NI_MT.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_NS.json b/snapshots/countries/NI_NS.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_NS.json +++ b/snapshots/countries/NI_NS.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_RI.json b/snapshots/countries/NI_RI.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_RI.json +++ b/snapshots/countries/NI_RI.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/NI_SJ.json b/snapshots/countries/NI_SJ.json index 8d371434c..245acbf28 100644 --- a/snapshots/countries/NI_SJ.json +++ b/snapshots/countries/NI_SJ.json @@ -622,6 +622,7 @@ "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", + "2022-05-30": "Mother's Day", "2022-07-19": "Revolution Day", "2022-09-14": "Battle of San Jacinto Day", "2022-09-15": "Independence Day", @@ -631,6 +632,7 @@ "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labor Day", + "2023-05-30": "Mother's Day", "2023-07-19": "Revolution Day", "2023-09-14": "Battle of San Jacinto Day", "2023-09-15": "Independence Day", @@ -640,6 +642,7 @@ "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labor Day", + "2024-05-30": "Mother's Day", "2024-07-19": "Revolution Day", "2024-09-14": "Battle of San Jacinto Day", "2024-09-15": "Independence Day", @@ -649,6 +652,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", + "2025-05-30": "Mother's Day", "2025-07-19": "Revolution Day", "2025-09-14": "Battle of San Jacinto Day", "2025-09-15": "Independence Day", @@ -658,6 +662,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", + "2026-05-30": "Mother's Day", "2026-07-19": "Revolution Day", "2026-09-14": "Battle of San Jacinto Day", "2026-09-15": "Independence Day", @@ -667,6 +672,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", + "2027-05-30": "Mother's Day", "2027-07-19": "Revolution Day", "2027-09-14": "Battle of San Jacinto Day", "2027-09-15": "Independence Day", @@ -676,6 +682,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", + "2028-05-30": "Mother's Day", "2028-07-19": "Revolution Day", "2028-09-14": "Battle of San Jacinto Day", "2028-09-15": "Independence Day", @@ -685,6 +692,7 @@ "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labor Day", + "2029-05-30": "Mother's Day", "2029-07-19": "Revolution Day", "2029-09-14": "Battle of San Jacinto Day", "2029-09-15": "Independence Day", @@ -694,6 +702,7 @@ "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", + "2030-05-30": "Mother's Day", "2030-07-19": "Revolution Day", "2030-09-14": "Battle of San Jacinto Day", "2030-09-15": "Independence Day", @@ -703,6 +712,7 @@ "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", + "2031-05-30": "Mother's Day", "2031-07-19": "Revolution Day", "2031-09-14": "Battle of San Jacinto Day", "2031-09-15": "Independence Day", @@ -712,6 +722,7 @@ "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", + "2032-05-30": "Mother's Day", "2032-07-19": "Revolution Day", "2032-09-14": "Battle of San Jacinto Day", "2032-09-15": "Independence Day", @@ -721,6 +732,7 @@ "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", + "2033-05-30": "Mother's Day", "2033-07-19": "Revolution Day", "2033-09-14": "Battle of San Jacinto Day", "2033-09-15": "Independence Day", @@ -730,6 +742,7 @@ "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", + "2034-05-30": "Mother's Day", "2034-07-19": "Revolution Day", "2034-09-14": "Battle of San Jacinto Day", "2034-09-15": "Independence Day", @@ -739,6 +752,7 @@ "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", + "2035-05-30": "Mother's Day", "2035-07-19": "Revolution Day", "2035-09-14": "Battle of San Jacinto Day", "2035-09-15": "Independence Day", @@ -748,6 +762,7 @@ "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", + "2036-05-30": "Mother's Day", "2036-07-19": "Revolution Day", "2036-09-14": "Battle of San Jacinto Day", "2036-09-15": "Independence Day", @@ -757,6 +772,7 @@ "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", + "2037-05-30": "Mother's Day", "2037-07-19": "Revolution Day", "2037-09-14": "Battle of San Jacinto Day", "2037-09-15": "Independence Day", @@ -766,6 +782,7 @@ "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", + "2038-05-30": "Mother's Day", "2038-07-19": "Revolution Day", "2038-09-14": "Battle of San Jacinto Day", "2038-09-15": "Independence Day", @@ -775,6 +792,7 @@ "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", + "2039-05-30": "Mother's Day", "2039-07-19": "Revolution Day", "2039-09-14": "Battle of San Jacinto Day", "2039-09-15": "Independence Day", @@ -784,6 +802,7 @@ "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labor Day", + "2040-05-30": "Mother's Day", "2040-07-19": "Revolution Day", "2040-09-14": "Battle of San Jacinto Day", "2040-09-15": "Independence Day", @@ -793,6 +812,7 @@ "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labor Day", + "2041-05-30": "Mother's Day", "2041-07-19": "Revolution Day", "2041-09-14": "Battle of San Jacinto Day", "2041-09-15": "Independence Day", @@ -802,6 +822,7 @@ "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", + "2042-05-30": "Mother's Day", "2042-07-19": "Revolution Day", "2042-09-14": "Battle of San Jacinto Day", "2042-09-15": "Independence Day", @@ -811,6 +832,7 @@ "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labor Day", + "2043-05-30": "Mother's Day", "2043-07-19": "Revolution Day", "2043-09-14": "Battle of San Jacinto Day", "2043-09-15": "Independence Day", @@ -820,6 +842,7 @@ "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", + "2044-05-30": "Mother's Day", "2044-07-19": "Revolution Day", "2044-09-14": "Battle of San Jacinto Day", "2044-09-15": "Independence Day", @@ -829,6 +852,7 @@ "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labor Day", + "2045-05-30": "Mother's Day", "2045-07-19": "Revolution Day", "2045-09-14": "Battle of San Jacinto Day", "2045-09-15": "Independence Day", @@ -838,6 +862,7 @@ "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", + "2046-05-30": "Mother's Day", "2046-07-19": "Revolution Day", "2046-09-14": "Battle of San Jacinto Day", "2046-09-15": "Independence Day", @@ -847,6 +872,7 @@ "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", + "2047-05-30": "Mother's Day", "2047-07-19": "Revolution Day", "2047-09-14": "Battle of San Jacinto Day", "2047-09-15": "Independence Day", @@ -856,6 +882,7 @@ "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", + "2048-05-30": "Mother's Day", "2048-07-19": "Revolution Day", "2048-09-14": "Battle of San Jacinto Day", "2048-09-15": "Independence Day", @@ -865,6 +892,7 @@ "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", + "2049-05-30": "Mother's Day", "2049-07-19": "Revolution Day", "2049-09-14": "Battle of San Jacinto Day", "2049-09-15": "Independence Day", @@ -874,6 +902,7 @@ "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", + "2050-05-30": "Mother's Day", "2050-07-19": "Revolution Day", "2050-09-14": "Battle of San Jacinto Day", "2050-09-15": "Independence Day", diff --git a/snapshots/countries/SG_COMMON.json b/snapshots/countries/SG_COMMON.json index 3554def0b..bee58afba 100644 --- a/snapshots/countries/SG_COMMON.json +++ b/snapshots/countries/SG_COMMON.json @@ -5,12 +5,12 @@ "1950-04-07": "Good Friday", "1950-04-08": "Holy Saturday", "1950-04-10": "Easter Monday", - "1950-05-01": "Labour Day", + "1950-05-01": "Labor Day", "1950-05-31": "Vesak Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Second Day of Eid al-Fitr (estimated)", "1950-08-09": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", "1950-11-08": "Deepavali", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", @@ -20,12 +20,12 @@ "1951-03-23": "Good Friday", "1951-03-24": "Holy Saturday", "1951-03-26": "Easter Monday", - "1951-05-01": "Labour Day", + "1951-05-01": "Labor Day", "1951-05-20": "Vesak Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Second Day of Eid al-Fitr (estimated)", "1951-08-09": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", "1951-10-28": "Deepavali", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", @@ -35,12 +35,12 @@ "1952-04-11": "Good Friday", "1952-04-12": "Holy Saturday", "1952-04-14": "Easter Monday", - "1952-05-01": "Labour Day", + "1952-05-01": "Labor Day", "1952-05-08": "Vesak Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Second Day of Eid al-Fitr (estimated)", "1952-08-09": "National Day", - "1952-08-31": "Hari Raya Haji (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", "1952-11-15": "Deepavali", "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", @@ -50,12 +50,12 @@ "1953-04-03": "Good Friday", "1953-04-04": "Holy Saturday", "1953-04-06": "Easter Monday", - "1953-05-01": "Labour Day", + "1953-05-01": "Labor Day", "1953-05-27": "Vesak Day (estimated)", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Second Day of Eid al-Fitr (estimated)", "1953-08-09": "National Day", - "1953-08-20": "Hari Raya Haji (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", "1953-11-05": "Deepavali", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", @@ -65,11 +65,11 @@ "1954-04-16": "Good Friday", "1954-04-17": "Holy Saturday", "1954-04-19": "Easter Monday", - "1954-05-01": "Labour Day", + "1954-05-01": "Labor Day", "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-08-09": "Hari Raya Haji (estimated); National Day", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Second Day of Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated); National Day", "1954-10-25": "Deepavali", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", @@ -79,11 +79,11 @@ "1955-04-08": "Good Friday", "1955-04-09": "Holy Saturday", "1955-04-11": "Easter Monday", - "1955-05-01": "Labour Day", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", + "1955-05-01": "Labor Day", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Second Day of Eid al-Fitr (estimated)", "1955-06-05": "Vesak Day (estimated)", - "1955-07-30": "Hari Raya Haji (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", "1955-08-09": "National Day", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", @@ -94,11 +94,11 @@ "1956-03-30": "Good Friday", "1956-03-31": "Holy Saturday", "1956-04-02": "Easter Monday", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-01": "Labor Day", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Second Day of Eid al-Fitr (estimated)", "1956-05-24": "Vesak Day (estimated)", - "1956-07-19": "Hari Raya Haji (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", "1956-08-09": "National Day", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", @@ -109,10 +109,10 @@ "1957-04-19": "Good Friday", "1957-04-20": "Holy Saturday", "1957-04-22": "Easter Monday", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Second Day of Eid al-Fitr (estimated)", "1957-05-14": "Vesak Day (estimated)", - "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", "1957-08-09": "National Day", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", @@ -123,11 +123,11 @@ "1958-04-04": "Good Friday", "1958-04-05": "Holy Saturday", "1958-04-07": "Easter Monday", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-05-01": "Labour Day", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Second Day of Eid al-Fitr (estimated)", + "1958-05-01": "Labor Day", "1958-06-02": "Vesak Day (estimated)", - "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", "1958-08-09": "National Day", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", @@ -138,11 +138,11 @@ "1959-03-27": "Good Friday", "1959-03-28": "Holy Saturday", "1959-03-30": "Easter Monday", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Second Day of Eid al-Fitr (estimated)", + "1959-05-01": "Labor Day", "1959-05-22": "Vesak Day (estimated)", - "1959-06-17": "Hari Raya Haji (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", "1959-08-09": "National Day", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", @@ -150,14 +150,14 @@ "1960-01-01": "New Year's Day", "1960-01-28": "Chinese New Year (estimated)", "1960-01-29": "Chinese New Year (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Second Day of Eid al-Fitr (estimated)", "1960-04-15": "Good Friday", "1960-04-16": "Holy Saturday", "1960-04-18": "Easter Monday", - "1960-05-01": "Labour Day", + "1960-05-01": "Labor Day", "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Hari Raya Haji (estimated)", + "1960-06-04": "Eid al-Adha (estimated)", "1960-08-09": "National Day", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", @@ -165,13 +165,13 @@ "1961-01-01": "New Year's Day", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Second Day of Eid al-Fitr (estimated)", "1961-03-31": "Good Friday", "1961-04-01": "Holy Saturday", "1961-04-03": "Easter Monday", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-01": "Labor Day", + "1961-05-25": "Eid al-Adha (estimated)", "1961-05-29": "Vesak Day (estimated)", "1961-08-09": "National Day", "1961-11-06": "Deepavali", @@ -180,13 +180,13 @@ "1962-01-01": "New Year's Day", "1962-02-05": "Chinese New Year (estimated)", "1962-02-06": "Chinese New Year (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Second Day of Eid al-Fitr (estimated)", "1962-04-20": "Good Friday", "1962-04-21": "Holy Saturday", "1962-04-23": "Easter Monday", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-01": "Labor Day", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-18": "Vesak Day (estimated)", "1962-08-09": "National Day", "1962-10-26": "Deepavali", @@ -195,13 +195,13 @@ "1963-01-01": "New Year's Day", "1963-01-25": "Chinese New Year (estimated)", "1963-01-26": "Chinese New Year (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Second Day of Eid al-Fitr (estimated)", "1963-04-12": "Good Friday", "1963-04-13": "Holy Saturday", "1963-04-15": "Easter Monday", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-01": "Labor Day", + "1963-05-03": "Eid al-Adha (estimated)", "1963-05-08": "Vesak Day (estimated)", "1963-08-09": "National Day", "1963-11-14": "Deepavali", @@ -209,26 +209,26 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-02-14": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Second Day of Eid al-Fitr (estimated)", "1964-03-27": "Good Friday", "1964-03-28": "Holy Saturday", "1964-03-30": "Easter Monday", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-01": "Labor Day", "1964-05-26": "Vesak Day (estimated)", "1964-08-09": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (estimated); Second Day of Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-17": "Holy Saturday", "1965-04-19": "Easter Monday", - "1965-05-01": "Labour Day", + "1965-05-01": "Labor Day", "1965-05-15": "Vesak Day (estimated)", "1965-08-09": "National Day", "1965-10-22": "Deepavali", @@ -236,256 +236,256 @@ "1965-12-26": "Boxing Day", "1966-01-01": "New Year's Day", "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-04-01": "Hari Raya Haji (estimated)", + "1966-01-22": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Second Day of Eid al-Fitr (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-08": "Good Friday", "1966-04-09": "Holy Saturday", "1966-04-11": "Easter Monday", - "1966-05-01": "Labour Day", + "1966-05-01": "Labor Day", "1966-06-03": "Vesak Day (estimated)", "1966-08-09": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Second Day of Eid al-Fitr (estimated)", "1967-02-09": "Chinese New Year (estimated)", "1967-02-10": "Chinese New Year (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-25": "Holy Saturday", "1967-03-27": "Easter Monday", - "1967-05-01": "Labour Day", + "1967-05-01": "Labor Day", "1967-05-23": "Vesak Day (estimated)", "1967-08-09": "National Day", "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Second Day of Eid al-Fitr (estimated)", "1968-01-30": "Chinese New Year (estimated)", "1968-01-31": "Chinese New Year (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-12": "Good Friday", "1968-04-13": "Holy Saturday", "1968-04-15": "Easter Monday", - "1968-05-01": "Labour Day", + "1968-05-01": "Labor Day", "1968-05-11": "Vesak Day (estimated)", "1968-08-09": "National Day", "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Second Day of Eid al-Fitr (estimated)", "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", "1969-02-18": "Chinese New Year (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-04-04": "Good Friday", - "1969-05-01": "Labour Day", + "1969-05-01": "Labor Day", "1969-05-30": "Vesak Day (estimated)", "1969-08-09": "National Day", "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-02-06": "Chinese New Year (estimated)", "1970-02-07": "Chinese New Year (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-27": "Good Friday", - "1970-05-01": "Labour Day", + "1970-05-01": "Labor Day", "1970-05-19": "Vesak Day (estimated)", "1970-08-09": "National Day", "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-27": "Chinese New Year (estimated)", "1971-01-28": "Chinese New Year (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-04-09": "Good Friday", - "1971-05-01": "Labour Day", + "1971-05-01": "Labor Day", "1971-05-09": "Vesak Day (estimated)", "1971-08-09": "National Day", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-02-15": "Chinese New Year (estimated)", "1972-02-16": "Chinese New Year (estimated)", "1972-03-31": "Good Friday", - "1972-05-01": "Labour Day", + "1972-05-01": "Labor Day", "1972-05-27": "Vesak Day (estimated)", "1972-08-09": "National Day", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Chinese New Year (estimated)", "1973-04-20": "Good Friday", - "1973-05-01": "Labour Day", + "1973-05-01": "Labor Day", "1973-05-17": "Vesak Day (estimated)", "1973-08-09": "National Day", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-01-23": "Chinese New Year (estimated)", "1974-01-24": "Chinese New Year (estimated)", "1974-04-12": "Good Friday", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-05-06": "Vesak Day (estimated)", "1974-08-09": "National Day", - "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-11": "Chinese New Year (estimated)", "1975-02-12": "Chinese New Year (estimated)", "1975-03-28": "Good Friday", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-25": "Vesak Day (estimated)", "1975-08-09": "National Day", - "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year (estimated)", "1976-04-16": "Good Friday", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-05-13": "Vesak Day (estimated)", "1976-08-09": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-02-18": "Chinese New Year (estimated)", "1977-02-19": "Chinese New Year (estimated)", "1977-04-08": "Good Friday", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-01": "Vesak Day (estimated)", "1977-08-09": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year (estimated)", "1978-03-24": "Good Friday", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-21": "Vesak Day (estimated)", "1978-08-09": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year (estimated)", "1979-04-13": "Good Friday", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-05-10": "Vesak Day (estimated)", "1979-08-09": "National Day", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-10-31": "Hari Raya Haji (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-11-18": "Deepavali", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year (estimated)", "1980-04-04": "Good Friday", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-05-28": "Vesak Day (estimated)", "1980-08-09": "National Day", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-10-19": "Hari Raya Haji (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-11-06": "Deepavali", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year (estimated)", "1981-04-17": "Good Friday", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-05-18": "Vesak Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-09": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-10-26": "Deepavali", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year (estimated)", "1982-04-09": "Good Friday", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-05-08": "Vesak Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-09": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year (estimated)", "1983-04-01": "Good Friday", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-05-27": "Vesak Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-09": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-11-03": "Deepavali", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year (estimated)", "1984-04-20": "Good Friday", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-05-15": "Vesak Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-09": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-10-22": "Deepavali", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-20": "Chinese New Year (estimated)", "1985-02-21": "Chinese New Year (estimated)", "1985-04-05": "Good Friday", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-03": "Vesak Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-09": "National Day", - "1985-08-26": "Hari Raya Haji (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-11-10": "Deepavali", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year (estimated)", "1986-03-28": "Good Friday", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-23": "Vesak Day (estimated)", - "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", "1986-08-09": "National Day", - "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-10-31": "Deepavali", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year (estimated)", "1987-04-17": "Good Friday", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-08-04": "Hari Raya Haji (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-09": "National Day", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", @@ -493,10 +493,10 @@ "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year (estimated)", "1988-04-01": "Good Friday", - "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-30": "Vesak Day (estimated)", - "1988-07-23": "Hari Raya Haji (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-09": "National Day", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", @@ -504,10 +504,10 @@ "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year (estimated)", "1989-03-24": "Good Friday", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-19": "Vesak Day (estimated)", - "1989-07-13": "Hari Raya Haji (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-09": "National Day", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", @@ -515,10 +515,10 @@ "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year (estimated)", "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-05-01": "Labor Day", "1990-05-09": "Vesak Day (estimated)", - "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-09": "National Day", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", @@ -526,31 +526,31 @@ "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year (estimated)", "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-05-01": "Labor Day", "1991-05-28": "Vesak Day (estimated)", - "1991-06-22": "Hari Raya Haji (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-09": "National Day", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-04": "Chinese New Year (estimated)", "1992-02-05": "Chinese New Year (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-17": "Good Friday", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-05-17": "Vesak Day (estimated)", - "1992-06-11": "Hari Raya Haji (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-09": "National Day", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-09": "Good Friday", - "1993-05-01": "Labour Day", - "1993-05-31": "Hari Raya Haji (estimated)", + "1993-05-01": "Labor Day", + "1993-05-31": "Eid al-Adha (estimated)", "1993-06-04": "Vesak Day (estimated)", "1993-08-09": "National Day", "1993-11-12": "Deepavali", @@ -558,10 +558,10 @@ "1994-01-01": "New Year's Day", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-01": "Good Friday", - "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-08-09": "National Day", "1994-11-01": "Deepavali", @@ -569,40 +569,40 @@ "1995-01-01": "New Year's Day", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-14": "Good Friday", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", "1995-05-14": "Vesak Day (estimated)", "1995-08-09": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", "1996-02-20": "Chinese New Year (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", "1996-05-31": "Vesak Day (estimated)", "1996-08-09": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1997-02-08": "Chinese New Year (estimated); Eid al-Fitr (estimated)", "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", "1997-05-21": "Vesak Day (estimated)", "1997-08-09": "National Day", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", + "1998-01-29": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-05-10": "Vesak Day (estimated)", "1998-05-11": "Vesak Day (estimated) (observed)", "1998-08-09": "National Day", @@ -610,170 +610,170 @@ "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-02-16": "Chinese New Year (estimated)", "1999-02-17": "Chinese New Year (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-02": "Good Friday", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-05-29": "Vesak Day (estimated)", "1999-08-09": "National Day", "1999-11-06": "Deepavali", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year (estimated)", "2000-02-07": "Chinese New Year (estimated) (observed)", - "2000-03-16": "Hari Raya Haji (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-21": "Good Friday", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-05-18": "Vesak Day (estimated)", "2000-08-09": "National Day", "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year", - "2001-03-06": "Hari Raya Haji", + "2001-03-06": "Eid al-Adha", "2001-04-13": "Good Friday", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-05-07": "Vesak Day", "2001-08-09": "National Day", "2001-11-03": "Polling Day", "2001-11-14": "Deepavali", - "2001-12-16": "Hari Raya Puasa", - "2001-12-17": "Hari Raya Puasa (observed)", + "2001-12-16": "Eid al-Fitr", + "2001-12-17": "Eid al-Fitr (observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-02-12": "Chinese New Year", "2002-02-13": "Chinese New Year", - "2002-02-23": "Hari Raya Haji", + "2002-02-23": "Eid al-Adha", "2002-03-29": "Good Friday", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-26": "Vesak Day", "2002-05-27": "Vesak Day (observed)", "2002-08-09": "National Day", "2002-11-03": "Deepavali", "2002-11-04": "Deepavali (observed)", - "2002-12-06": "Hari Raya Puasa", + "2002-12-06": "Eid al-Fitr", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year", "2003-02-03": "Chinese New Year (observed)", - "2003-02-12": "Hari Raya Haji", + "2003-02-12": "Eid al-Adha", "2003-04-18": "Good Friday", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-05-15": "Vesak Day", "2003-08-09": "National Day", "2003-10-23": "Deepavali", - "2003-11-25": "Hari Raya Puasa", + "2003-11-25": "Eid al-Fitr", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-22": "Chinese New Year", "2004-01-23": "Chinese New Year", - "2004-02-01": "Hari Raya Haji", - "2004-02-02": "Hari Raya Haji (observed)", + "2004-02-01": "Eid al-Adha", + "2004-02-02": "Eid al-Adha (observed)", "2004-04-09": "Good Friday", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-02": "Vesak Day", "2004-08-09": "National Day", "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Hari Raya Puasa (observed)", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", + "2005-01-21": "Eid al-Adha", "2005-02-09": "Chinese New Year", "2005-02-10": "Chinese New Year", "2005-03-25": "Good Friday", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (observed)", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", "2005-05-22": "Vesak Day", "2005-05-23": "Vesak Day (observed)", "2005-08-09": "National Day", "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", + "2005-11-03": "Eid al-Fitr", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day (observed)", - "2006-01-10": "Hari Raya Haji", + "2006-01-10": "Eid al-Adha", "2006-01-30": "Chinese New Year", "2006-01-31": "Chinese New Year", "2006-04-14": "Good Friday", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-05-06": "Polling Day", "2006-05-12": "Vesak Day", "2006-08-09": "National Day", "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", + "2006-10-24": "Eid al-Fitr", "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", + "2006-12-31": "Eid al-Adha", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (observed)", + "2007-01-02": "Eid al-Adha (observed)", "2007-02-19": "Chinese New Year", "2007-02-20": "Chinese New Year", "2007-04-06": "Good Friday", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-05-31": "Vesak Day", "2007-08-09": "National Day", - "2007-10-13": "Hari Raya Puasa", + "2007-10-13": "Eid al-Fitr", "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", + "2007-12-20": "Eid al-Adha", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-02-07": "Chinese New Year", "2008-02-08": "Chinese New Year", "2008-03-21": "Good Friday", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-19": "Vesak Day", "2008-08-09": "National Day", - "2008-10-01": "Hari Raya Puasa", + "2008-10-01": "Eid al-Fitr", "2008-10-27": "Deepavali", - "2008-12-08": "Hari Raya Haji", + "2008-12-08": "Eid al-Adha", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year", "2009-04-10": "Good Friday", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-05-09": "Vesak Day", "2009-08-09": "National Day", "2009-08-10": "National Day (observed)", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Hari Raya Puasa (observed)", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (observed)", "2009-11-15": "Deepavali", "2009-11-16": "Deepavali (observed)", - "2009-11-27": "Hari Raya Haji", + "2009-11-27": "Eid al-Adha", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year", "2010-02-16": "Chinese New Year (observed)", "2010-04-02": "Good Friday", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-05-28": "Vesak Day", "2010-08-09": "National Day", - "2010-09-10": "Hari Raya Puasa", + "2010-09-10": "Eid al-Fitr", "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", + "2010-11-17": "Eid al-Adha", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-02-03": "Chinese New Year", "2011-02-04": "Chinese New Year", "2011-04-22": "Good Friday", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (observed)", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", "2011-05-07": "Polling Day", "2011-05-17": "Vesak Day", "2011-08-09": "National Day", - "2011-08-30": "Hari Raya Puasa", + "2011-08-30": "Eid al-Fitr", "2011-10-26": "Deepavali", - "2011-11-06": "Hari Raya Haji", - "2011-11-07": "Hari Raya Haji (observed)", + "2011-11-06": "Eid al-Adha", + "2011-11-07": "Eid al-Adha (observed)", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", @@ -781,12 +781,12 @@ "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year", "2012-04-06": "Good Friday", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-05-05": "Vesak Day", "2012-08-09": "National Day", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Hari Raya Puasa (observed)", - "2012-10-26": "Hari Raya Haji", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (observed)", + "2012-10-26": "Eid al-Adha", "2012-11-13": "Deepavali", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -794,49 +794,49 @@ "2013-02-11": "Chinese New Year", "2013-02-12": "Chinese New Year (observed)", "2013-03-29": "Good Friday", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-05-24": "Vesak Day", - "2013-08-08": "Hari Raya Puasa", + "2013-08-08": "Eid al-Fitr", "2013-08-09": "National Day", - "2013-10-15": "Hari Raya Haji", + "2013-10-15": "Eid al-Adha", "2013-11-02": "Deepavali", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year", "2014-04-18": "Good Friday", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-05-13": "Vesak Day", - "2014-07-28": "Hari Raya Puasa", + "2014-07-28": "Eid al-Fitr", "2014-08-09": "National Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (observed)", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", "2014-10-22": "Deepavali", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year", "2015-04-03": "Good Friday", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-01": "Vesak Day", - "2015-07-17": "Hari Raya Puasa", + "2015-07-17": "Eid al-Fitr", "2015-08-07": "SG50 Public Holiday", "2015-08-09": "National Day", "2015-08-10": "National Day (observed)", "2015-09-11": "Polling Day", - "2015-09-24": "Hari Raya Haji", + "2015-09-24": "Eid al-Adha", "2015-11-10": "Deepavali", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year", "2016-03-25": "Good Friday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (observed)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", "2016-05-21": "Vesak Day", - "2016-07-06": "Hari Raya Puasa", + "2016-07-06": "Eid al-Fitr", "2016-08-09": "National Day", - "2016-09-12": "Hari Raya Haji", + "2016-09-12": "Eid al-Adha", "2016-10-29": "Deepavali", "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day (observed)", @@ -846,36 +846,36 @@ "2017-01-29": "Chinese New Year", "2017-01-30": "Chinese New Year (observed)", "2017-04-14": "Good Friday", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-05-10": "Vesak Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Hari Raya Puasa (observed)", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (observed)", "2017-08-09": "National Day", - "2017-09-01": "Hari Raya Haji", + "2017-09-01": "Eid al-Adha", "2017-10-18": "Deepavali", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year", "2018-03-30": "Good Friday", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", + "2018-06-15": "Eid al-Fitr", "2018-08-09": "National Day", - "2018-08-22": "Hari Raya Haji", + "2018-08-22": "Eid al-Adha", "2018-11-06": "Deepavali", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-02-05": "Chinese New Year", "2019-02-06": "Chinese New Year", "2019-04-19": "Good Friday", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-05-19": "Vesak Day", "2019-05-20": "Vesak Day (observed)", - "2019-06-05": "Hari Raya Puasa", + "2019-06-05": "Eid al-Fitr", "2019-08-09": "National Day", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (observed)", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", "2019-10-27": "Deepavali", "2019-10-28": "Deepavali (observed)", "2019-12-25": "Christmas Day", @@ -884,12 +884,12 @@ "2020-01-26": "Chinese New Year", "2020-01-27": "Chinese New Year (observed)", "2020-04-10": "Good Friday", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Hari Raya Puasa (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (observed)", "2020-07-10": "Polling Day", - "2020-07-31": "Hari Raya Haji", + "2020-07-31": "Eid al-Adha", "2020-08-09": "National Day", "2020-08-10": "National Day (observed)", "2020-11-14": "Deepavali", @@ -898,10 +898,10 @@ "2021-02-12": "Chinese New Year", "2021-02-13": "Chinese New Year", "2021-04-02": "Good Friday", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", "2021-05-26": "Vesak Day", - "2021-07-20": "Hari Raya Haji", + "2021-07-20": "Eid al-Adha", "2021-08-09": "National Day", "2021-11-04": "Deepavali", "2021-12-25": "Christmas Day", @@ -909,13 +909,13 @@ "2022-02-01": "Chinese New Year", "2022-02-02": "Chinese New Year", "2022-04-15": "Good Friday", - "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (observed)", - "2022-05-03": "Hari Raya Puasa", + "2022-05-01": "Labor Day", + "2022-05-02": "Labor Day (observed)", + "2022-05-03": "Eid al-Fitr", "2022-05-15": "Vesak Day", "2022-05-16": "Vesak Day (observed)", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (observed)", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", "2022-08-09": "National Day", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", @@ -926,10 +926,10 @@ "2023-01-23": "Chinese New Year", "2023-01-24": "Chinese New Year (observed)", "2023-04-07": "Good Friday", - "2023-04-22": "Hari Raya Puasa", - "2023-05-01": "Labour Day", + "2023-04-22": "Eid al-Fitr", + "2023-05-01": "Labor Day", "2023-06-02": "Vesak Day", - "2023-06-29": "Hari Raya Haji", + "2023-06-29": "Eid al-Adha", "2023-08-09": "National Day", "2023-09-01": "Polling Day", "2023-11-12": "Deepavali", @@ -940,31 +940,31 @@ "2024-02-11": "Chinese New Year", "2024-02-12": "Chinese New Year (observed)", "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa", - "2024-05-01": "Labour Day", + "2024-04-10": "Eid al-Fitr", + "2024-05-01": "Labor Day", "2024-05-22": "Vesak Day", - "2024-06-17": "Hari Raya Haji", + "2024-06-17": "Eid al-Adha", "2024-08-09": "National Day", "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year", "2025-01-30": "Chinese New Year", - "2025-03-31": "Hari Raya Puasa", + "2025-03-31": "Eid al-Fitr", "2025-04-18": "Good Friday", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-05-12": "Vesak Day", - "2025-06-07": "Hari Raya Haji", + "2025-06-07": "Eid al-Adha", "2025-08-09": "National Day", "2025-10-20": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-03": "Good Friday", - "2026-05-01": "Labour Day", - "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-01": "Labor Day", + "2026-05-27": "Eid al-Adha (estimated)", "2026-05-31": "Vesak Day (estimated)", "2026-06-01": "Vesak Day (estimated) (observed)", "2026-08-09": "National Day", @@ -975,11 +975,11 @@ "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year (estimated)", "2027-02-08": "Chinese New Year (estimated) (observed)", - "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-26": "Good Friday", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (observed)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated) (observed)", "2027-05-20": "Vesak Day (estimated)", "2027-08-09": "National Day", "2027-10-27": "Deepavali", @@ -987,20 +987,20 @@ "2028-01-01": "New Year's Day", "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-14": "Good Friday", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-09": "Vesak Day (estimated)", "2028-08-09": "National Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "2029-02-14": "Chinese New Year (estimated); Eid al-Fitr (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", "2029-05-27": "Vesak Day (estimated)", "2029-05-28": "Vesak Day (estimated) (observed)", "2029-08-09": "National Day", @@ -1009,50 +1009,50 @@ "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "2030-02-04": "Chinese New Year (estimated); Eid al-Fitr (estimated)", "2030-02-05": "Chinese New Year (estimated) (observed)", - "2030-04-13": "Hari Raya Haji (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-19": "Good Friday", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-05-16": "Vesak Day (estimated)", "2030-08-09": "National Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", + "2031-01-24": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-11": "Good Friday", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-04": "Vesak Day (estimated)", "2031-08-09": "National Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-02-11": "Chinese New Year (estimated)", "2032-02-12": "Chinese New Year (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-23": "Vesak Day (estimated)", "2032-05-24": "Vesak Day (estimated) (observed)", "2032-08-09": "National Day", "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Hari Raya Puasa (estimated) (observed)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated) (observed)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-15": "Good Friday", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (observed)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", "2033-05-13": "Vesak Day (estimated)", "2033-08-09": "National Day", "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", @@ -1060,76 +1060,76 @@ "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year (estimated)", "2034-02-21": "Chinese New Year (estimated) (observed)", - "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-07": "Good Friday", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-01": "Vesak Day (estimated)", "2034-08-09": "National Day", "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (observed)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated) (observed)", "2035-03-23": "Good Friday", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-22": "Vesak Day (estimated)", "2035-08-09": "National Day", "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-11": "Good Friday", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-05-10": "Vesak Day (estimated)", "2036-08-09": "National Day", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali (observed)", - "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Chinese New Year (estimated)", "2037-02-17": "Chinese New Year (estimated) (observed)", "2037-04-03": "Good Friday", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-05-29": "Vesak Day (estimated)", "2037-08-09": "National Day", "2037-08-10": "National Day (observed)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Hari Raya Puasa (estimated) (observed)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated) (observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Chinese New Year (estimated)", "2038-04-23": "Good Friday", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-05-18": "Vesak Day (estimated)", "2038-08-09": "National Day", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year (estimated)", "2039-04-08": "Good Friday", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (observed)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", "2039-05-07": "Vesak Day (estimated)", "2039-08-09": "National Day", - "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (observed)", @@ -1137,60 +1137,60 @@ "2040-02-13": "Chinese New Year (estimated)", "2040-02-14": "Chinese New Year (estimated) (observed)", "2040-03-30": "Good Friday", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-25": "Vesak Day (estimated)", "2040-08-09": "National Day", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Hari Raya Puasa (estimated) (observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated) (observed)", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-02-01": "Chinese New Year (estimated)", "2041-02-02": "Chinese New Year (estimated)", "2041-04-19": "Good Friday", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-05-14": "Vesak Day (estimated)", "2041-08-09": "National Day", - "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-22": "Chinese New Year (estimated)", "2042-01-23": "Chinese New Year (estimated)", "2042-04-04": "Good Friday", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-02": "Vesak Day (estimated)", "2042-08-09": "National Day", - "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (observed)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated) (observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year (estimated)", "2043-03-27": "Good Friday", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-23": "Vesak Day (estimated)", "2043-08-09": "National Day", "2043-08-10": "National Day (observed)", - "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year (estimated)", "2044-02-01": "Chinese New Year (estimated) (observed)", "2044-04-15": "Good Friday", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", "2044-05-12": "Vesak Day (estimated)", "2044-08-09": "National Day", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-10-31": "Hari Raya Haji (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-17": "Deepavali", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (observed)", @@ -1199,23 +1199,23 @@ "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year (estimated)", "2045-04-07": "Good Friday", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-05-31": "Vesak Day (estimated)", "2045-08-09": "National Day", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-10-21": "Hari Raya Haji (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-11-07": "Deepavali", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-02-06": "Chinese New Year (estimated)", "2046-02-07": "Chinese New Year (estimated)", "2046-03-23": "Good Friday", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-20": "Vesak Day (estimated)", "2046-05-21": "Vesak Day (estimated) (observed)", - "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-09": "National Day", - "2046-10-10": "Hari Raya Haji (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-27": "Deepavali", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1223,36 +1223,36 @@ "2047-01-27": "Chinese New Year (estimated)", "2047-01-28": "Chinese New Year (estimated) (observed)", "2047-04-12": "Good Friday", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-05-09": "Vesak Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-09": "National Day", - "2047-09-30": "Hari Raya Haji (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year (estimated)", "2048-04-03": "Good Friday", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-05-27": "Vesak Day (estimated)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Hari Raya Puasa (estimated) (observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated) (observed)", "2048-08-09": "National Day", "2048-08-10": "National Day (observed)", - "2048-09-19": "Hari Raya Haji (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-11-04": "Deepavali", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-02": "Chinese New Year (estimated)", "2049-02-03": "Chinese New Year (estimated)", "2049-04-16": "Good Friday", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-05-16": "Vesak Day (estimated)", "2049-05-17": "Vesak Day (estimated) (observed)", - "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-09": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-25": "Deepavali", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", @@ -1260,13 +1260,13 @@ "2050-01-24": "Chinese New Year (estimated)", "2050-01-25": "Chinese New Year (estimated) (observed)", "2050-04-08": "Good Friday", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (observed)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", "2050-06-04": "Vesak Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-09": "National Day", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (observed)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated) (observed)", "2050-11-12": "Deepavali", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (observed)" diff --git a/snapshots/countries/TW_COMMON.json b/snapshots/countries/TW_COMMON.json index b203e0bd4..ad0158545 100644 --- a/snapshots/countries/TW_COMMON.json +++ b/snapshots/countries/TW_COMMON.json @@ -716,8 +716,7 @@ "2021-03-01": "Peace Memorial Day (observed)", "2021-04-02": "Children's Day (observed)", "2021-04-04": "Children's Day; Tomb Sweeping Day", - "2021-04-05": "Children's Day (observed)", - "2021-04-06": "Tomb Sweeping Day (observed)", + "2021-04-05": "Tomb Sweeping Day (observed)", "2021-06-14": "Dragon Boat Festival", "2021-09-20": "Day off (substituted from 09/11/2021)", "2021-09-21": "Mid-Autumn Festival", @@ -772,11 +771,13 @@ "2024-09-17": "Mid-Autumn Festival", "2024-10-10": "National Day", "2025-01-01": "Founding Day of the Republic of China", + "2025-01-27": "Day off (substituted from 02/08/2025)", "2025-01-28": "Chinese New Year's Eve", "2025-01-29": "Chinese New Year", "2025-01-30": "Chinese New Year", "2025-01-31": "Chinese New Year", "2025-02-28": "Peace Memorial Day", + "2025-04-03": "Children's Day (observed)", "2025-04-04": "Children's Day; Tomb Sweeping Day", "2025-05-30": "Dragon Boat Festival (observed)", "2025-05-31": "Dragon Boat Festival", @@ -820,6 +821,7 @@ "2028-01-27": "Chinese New Year", "2028-01-28": "Chinese New Year", "2028-02-28": "Peace Memorial Day", + "2028-04-03": "Children's Day (observed)", "2028-04-04": "Children's Day; Tomb Sweeping Day", "2028-05-28": "Dragon Boat Festival", "2028-05-29": "Dragon Boat Festival (observed)", @@ -831,6 +833,7 @@ "2029-02-14": "Chinese New Year", "2029-02-15": "Chinese New Year", "2029-02-28": "Peace Memorial Day", + "2029-04-03": "Children's Day (observed)", "2029-04-04": "Children's Day; Tomb Sweeping Day", "2029-06-15": "Dragon Boat Festival (observed)", "2029-06-16": "Dragon Boat Festival", @@ -870,9 +873,9 @@ "2032-02-13": "Chinese New Year", "2032-02-27": "Peace Memorial Day (observed)", "2032-02-28": "Peace Memorial Day", + "2032-04-02": "Children's Day (observed)", "2032-04-04": "Children's Day; Tomb Sweeping Day", - "2032-04-05": "Children's Day (observed)", - "2032-04-06": "Tomb Sweeping Day (observed)", + "2032-04-05": "Tomb Sweeping Day (observed)", "2032-06-11": "Dragon Boat Festival (observed)", "2032-06-12": "Dragon Boat Festival", "2032-09-19": "Mid-Autumn Festival", @@ -888,6 +891,7 @@ "2033-02-03": "Chinese New Year's Eve (observed)", "2033-02-28": "Peace Memorial Day", "2033-04-04": "Children's Day; Tomb Sweeping Day", + "2033-04-05": "Children's Day (observed)", "2033-06-01": "Dragon Boat Festival", "2033-09-08": "Mid-Autumn Festival", "2033-10-10": "National Day", @@ -926,6 +930,7 @@ "2036-01-30": "Chinese New Year", "2036-01-31": "Chinese New Year's Eve (observed)", "2036-02-28": "Peace Memorial Day", + "2036-04-03": "Children's Day (observed)", "2036-04-04": "Children's Day; Tomb Sweeping Day", "2036-05-30": "Dragon Boat Festival", "2036-10-03": "Mid-Autumn Festival (observed)", @@ -985,6 +990,7 @@ "2040-02-15": "Chinese New Year's Eve (observed)", "2040-02-16": "Chinese New Year (observed)", "2040-02-28": "Peace Memorial Day", + "2040-04-03": "Children's Day (observed)", "2040-04-04": "Children's Day; Tomb Sweeping Day", "2040-06-14": "Dragon Boat Festival", "2040-09-20": "Mid-Autumn Festival", @@ -998,6 +1004,7 @@ "2041-02-05": "Chinese New Year (observed)", "2041-02-28": "Peace Memorial Day", "2041-04-04": "Children's Day; Tomb Sweeping Day", + "2041-04-05": "Children's Day (observed)", "2041-06-03": "Dragon Boat Festival", "2041-09-10": "Mid-Autumn Festival", "2041-10-10": "National Day", @@ -1040,6 +1047,7 @@ "2044-02-28": "Peace Memorial Day", "2044-02-29": "Peace Memorial Day (observed)", "2044-04-04": "Children's Day; Tomb Sweeping Day", + "2044-04-05": "Children's Day (observed)", "2044-05-31": "Dragon Boat Festival", "2044-10-05": "Mid-Autumn Festival", "2044-10-10": "National Day", @@ -1052,6 +1060,7 @@ "2045-02-20": "Chinese New Year (observed)", "2045-02-21": "Chinese New Year (observed)", "2045-02-28": "Peace Memorial Day", + "2045-04-03": "Children's Day (observed)", "2045-04-04": "Children's Day; Tomb Sweeping Day", "2045-06-19": "Dragon Boat Festival", "2045-09-25": "Mid-Autumn Festival", @@ -1103,9 +1112,9 @@ "2049-02-04": "Chinese New Year", "2049-02-28": "Peace Memorial Day", "2049-03-01": "Peace Memorial Day (observed)", + "2049-04-02": "Children's Day (observed)", "2049-04-04": "Children's Day; Tomb Sweeping Day", - "2049-04-05": "Children's Day (observed)", - "2049-04-06": "Tomb Sweeping Day (observed)", + "2049-04-05": "Tomb Sweeping Day (observed)", "2049-06-04": "Dragon Boat Festival", "2049-09-10": "Mid-Autumn Festival (observed)", "2049-09-11": "Mid-Autumn Festival", diff --git a/snapshots/countries/US_AS.json b/snapshots/countries/US_AS.json index 77141c783..5ea0cd3c5 100644 --- a/snapshots/countries/US_AS.json +++ b/snapshots/countries/US_AS.json @@ -4,87 +4,92 @@ "1950-02-14": "Valentine's Day", "1950-02-22": "Washington's Birthday", "1950-03-17": "Saint Patrick's Day", + "1950-04-17": "American Samoa Flag Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", + "1950-10-08": "White Sunday", "1950-10-12": "Columbus Day", "1950-10-31": "Halloween", "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", - "1950-12-22": "Christmas Eve (observed)", - "1950-12-24": "Christmas Eve", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-02-14": "Valentine's Day", "1951-02-22": "Washington's Birthday", "1951-03-17": "Saint Patrick's Day", + "1951-04-17": "American Samoa Flag Day", "1951-05-30": "Memorial Day", "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", + "1951-10-14": "White Sunday", "1951-10-31": "Halloween", "1951-11-11": "Armistice Day", "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", - "1951-12-24": "Christmas Eve", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-02-14": "Valentine's Day", "1952-02-22": "Washington's Birthday", "1952-03-17": "Saint Patrick's Day", + "1952-04-17": "American Samoa Flag Day", "1952-05-30": "Memorial Day", "1952-07-04": "Independence Day", "1952-09-01": "Labor Day", - "1952-10-12": "Columbus Day", + "1952-10-12": "Columbus Day; White Sunday", "1952-10-31": "Halloween", "1952-11-11": "Armistice Day", "1952-11-27": "Thanksgiving", - "1952-12-24": "Christmas Eve", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Valentine's Day", "1953-02-22": "Washington's Birthday", "1953-03-17": "Saint Patrick's Day", + "1953-04-17": "American Samoa Flag Day", "1953-05-30": "Memorial Day", "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", + "1953-10-11": "White Sunday", "1953-10-12": "Columbus Day", "1953-10-31": "Halloween", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", - "1953-12-24": "Christmas Eve", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-02-14": "Valentine's Day", "1954-02-22": "Washington's Birthday", "1954-03-17": "Saint Patrick's Day", + "1954-04-16": "American Samoa Flag Day (observed)", + "1954-04-17": "American Samoa Flag Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", + "1954-10-10": "White Sunday", "1954-10-12": "Columbus Day", "1954-10-31": "Halloween", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-23": "Christmas Eve (observed)", - "1954-12-24": "Christmas Day (observed); Christmas Eve", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-14": "Valentine's Day", "1955-02-22": "Washington's Birthday", "1955-03-17": "Saint Patrick's Day", + "1955-04-17": "American Samoa Flag Day", + "1955-04-18": "American Samoa Flag Day (observed)", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", "1955-09-05": "Labor Day", + "1955-10-09": "White Sunday", "1955-10-12": "Columbus Day", "1955-10-31": "Halloween", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", - "1955-12-23": "Christmas Eve (observed)", - "1955-12-24": "Christmas Eve", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", @@ -92,69 +97,73 @@ "1956-02-14": "Valentine's Day", "1956-02-22": "Washington's Birthday", "1956-03-17": "Saint Patrick's Day", + "1956-04-17": "American Samoa Flag Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", + "1956-10-14": "White Sunday", "1956-10-31": "Halloween", "1956-11-11": "Veterans Day", "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", - "1956-12-24": "Christmas Eve", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-14": "Valentine's Day", "1957-02-22": "Washington's Birthday", "1957-03-17": "Saint Patrick's Day", + "1957-04-17": "American Samoa Flag Day", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", "1957-09-02": "Labor Day", "1957-10-12": "Columbus Day", + "1957-10-13": "White Sunday", "1957-10-31": "Halloween", "1957-11-11": "Veterans Day", "1957-11-28": "Thanksgiving", - "1957-12-24": "Christmas Eve", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-14": "Valentine's Day", "1958-02-22": "Washington's Birthday", "1958-03-17": "Saint Patrick's Day", + "1958-04-17": "American Samoa Flag Day", "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", "1958-09-01": "Labor Day", - "1958-10-12": "Columbus Day", + "1958-10-12": "Columbus Day; White Sunday", "1958-10-31": "Halloween", "1958-11-11": "Veterans Day", "1958-11-27": "Thanksgiving", - "1958-12-24": "Christmas Eve", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-14": "Valentine's Day", "1959-02-22": "Washington's Birthday", "1959-03-17": "Saint Patrick's Day", + "1959-04-17": "American Samoa Flag Day", "1959-05-30": "Memorial Day", "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", + "1959-10-11": "White Sunday", "1959-10-12": "Columbus Day", "1959-10-31": "Halloween", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", - "1959-12-24": "Christmas Eve", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-02-14": "Valentine's Day", "1960-02-22": "Washington's Birthday", "1960-03-17": "Saint Patrick's Day", + "1960-04-17": "American Samoa Flag Day", + "1960-04-18": "American Samoa Flag Day (observed)", "1960-05-30": "Memorial Day", "1960-07-04": "Independence Day", "1960-09-05": "Labor Day", + "1960-10-09": "White Sunday", "1960-10-12": "Columbus Day", "1960-10-31": "Halloween", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", - "1960-12-23": "Christmas Eve (observed)", - "1960-12-24": "Christmas Eve", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", @@ -162,87 +171,93 @@ "1961-02-14": "Valentine's Day", "1961-02-22": "Washington's Birthday", "1961-03-17": "Saint Patrick's Day", + "1961-04-17": "American Samoa Flag Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", + "1961-10-08": "White Sunday", "1961-10-12": "Columbus Day", "1961-10-31": "Halloween", "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", - "1961-12-22": "Christmas Eve (observed)", - "1961-12-24": "Christmas Eve", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-02-14": "Valentine's Day", "1962-02-22": "Washington's Birthday", "1962-03-17": "Saint Patrick's Day", + "1962-04-17": "American Samoa Flag Day", "1962-05-30": "Memorial Day", "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", + "1962-10-14": "White Sunday", "1962-10-31": "Halloween", "1962-11-11": "Veterans Day", "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", - "1962-12-24": "Christmas Eve", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-14": "Valentine's Day", "1963-02-22": "Washington's Birthday", "1963-03-17": "Saint Patrick's Day", + "1963-04-17": "American Samoa Flag Day", "1963-05-30": "Memorial Day", "1963-07-04": "Independence Day", "1963-09-02": "Labor Day", "1963-10-12": "Columbus Day", + "1963-10-13": "White Sunday", "1963-10-31": "Halloween", "1963-11-11": "Veterans Day", "1963-11-28": "Thanksgiving", - "1963-12-24": "Christmas Eve", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-14": "Valentine's Day", "1964-02-22": "Washington's Birthday", "1964-03-17": "Saint Patrick's Day", + "1964-04-17": "American Samoa Flag Day", "1964-05-30": "Memorial Day", "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", + "1964-10-11": "White Sunday", "1964-10-12": "Columbus Day", "1964-10-31": "Halloween", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", - "1964-12-24": "Christmas Eve", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-02-14": "Valentine's Day", "1965-02-22": "Washington's Birthday", "1965-03-17": "Saint Patrick's Day", + "1965-04-16": "American Samoa Flag Day (observed)", + "1965-04-17": "American Samoa Flag Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", + "1965-10-10": "White Sunday", "1965-10-12": "Columbus Day", "1965-10-31": "Halloween", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-23": "Christmas Eve (observed)", - "1965-12-24": "Christmas Day (observed); Christmas Eve", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-14": "Valentine's Day", "1966-02-22": "Washington's Birthday", "1966-03-17": "Saint Patrick's Day", + "1966-04-17": "American Samoa Flag Day", + "1966-04-18": "American Samoa Flag Day (observed)", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", "1966-09-05": "Labor Day", + "1966-10-09": "White Sunday", "1966-10-12": "Columbus Day", "1966-10-31": "Halloween", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", - "1966-12-23": "Christmas Eve (observed)", - "1966-12-24": "Christmas Eve", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", @@ -250,155 +265,165 @@ "1967-02-14": "Valentine's Day", "1967-02-22": "Washington's Birthday", "1967-03-17": "Saint Patrick's Day", + "1967-04-17": "American Samoa Flag Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", + "1967-10-08": "White Sunday", "1967-10-12": "Columbus Day", "1967-10-31": "Halloween", "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", - "1967-12-22": "Christmas Eve (observed)", - "1967-12-24": "Christmas Eve", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", "1968-02-14": "Valentine's Day", "1968-02-22": "Washington's Birthday", "1968-03-17": "Saint Patrick's Day", + "1968-04-17": "American Samoa Flag Day", "1968-05-30": "Memorial Day", "1968-07-04": "Independence Day", "1968-09-02": "Labor Day", "1968-10-12": "Columbus Day", + "1968-10-13": "White Sunday", "1968-10-31": "Halloween", "1968-11-11": "Veterans Day", "1968-11-28": "Thanksgiving", - "1968-12-24": "Christmas Eve", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-14": "Valentine's Day", "1969-02-22": "Washington's Birthday", "1969-03-17": "Saint Patrick's Day", + "1969-04-17": "American Samoa Flag Day", "1969-05-30": "Memorial Day", "1969-07-04": "Independence Day", "1969-09-01": "Labor Day", - "1969-10-12": "Columbus Day", + "1969-10-12": "Columbus Day; White Sunday", "1969-10-31": "Halloween", "1969-11-11": "Veterans Day", "1969-11-27": "Thanksgiving", - "1969-12-24": "Christmas Eve", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-02-14": "Valentine's Day", "1970-02-22": "Washington's Birthday", "1970-03-17": "Saint Patrick's Day", + "1970-04-17": "American Samoa Flag Day", "1970-05-30": "Memorial Day", "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", + "1970-10-11": "White Sunday", "1970-10-12": "Columbus Day", "1970-10-31": "Halloween", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", - "1970-12-24": "Christmas Eve", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-02-14": "Valentine's Day", "1971-02-15": "Washington's Birthday", "1971-03-17": "Saint Patrick's Day", + "1971-04-16": "American Samoa Flag Day (observed)", + "1971-04-17": "American Samoa Flag Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", + "1971-10-10": "White Sunday", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-10-31": "Halloween", "1971-11-25": "Thanksgiving", - "1971-12-23": "Christmas Eve (observed)", - "1971-12-24": "Christmas Day (observed); Christmas Eve", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-14": "Valentine's Day", "1972-02-21": "Washington's Birthday", "1972-03-17": "Saint Patrick's Day", + "1972-04-17": "American Samoa Flag Day", "1972-05-29": "Memorial Day", "1972-07-04": "Independence Day", "1972-09-04": "Labor Day", + "1972-10-08": "White Sunday", "1972-10-09": "Columbus Day", "1972-10-23": "Veterans Day", "1972-10-31": "Halloween", "1972-11-23": "Thanksgiving", - "1972-12-22": "Christmas Eve (observed)", - "1972-12-24": "Christmas Eve", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-02-14": "Valentine's Day", "1973-02-19": "Washington's Birthday", "1973-03-17": "Saint Patrick's Day", + "1973-04-17": "American Samoa Flag Day", "1973-05-28": "Memorial Day", "1973-07-04": "Independence Day", "1973-09-03": "Labor Day", "1973-10-08": "Columbus Day", + "1973-10-14": "White Sunday", "1973-10-22": "Veterans Day", "1973-10-31": "Halloween", "1973-11-22": "Thanksgiving", - "1973-12-24": "Christmas Eve", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-02-14": "Valentine's Day", "1974-02-18": "Washington's Birthday", "1974-03-17": "Saint Patrick's Day", + "1974-04-17": "American Samoa Flag Day", "1974-05-27": "Memorial Day", "1974-07-04": "Independence Day", "1974-09-02": "Labor Day", + "1974-10-13": "White Sunday", "1974-10-14": "Columbus Day", "1974-10-28": "Veterans Day", "1974-10-31": "Halloween", "1974-11-28": "Thanksgiving", - "1974-12-24": "Christmas Eve", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-14": "Valentine's Day", "1975-02-17": "Washington's Birthday", "1975-03-17": "Saint Patrick's Day", + "1975-04-17": "American Samoa Flag Day", "1975-05-26": "Memorial Day", "1975-07-04": "Independence Day", "1975-09-01": "Labor Day", + "1975-10-12": "White Sunday", "1975-10-13": "Columbus Day", "1975-10-27": "Veterans Day", "1975-10-31": "Halloween", "1975-11-27": "Thanksgiving", - "1975-12-24": "Christmas Eve", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-02-14": "Valentine's Day", "1976-02-16": "Washington's Birthday", "1976-03-17": "Saint Patrick's Day", + "1976-04-16": "American Samoa Flag Day (observed)", + "1976-04-17": "American Samoa Flag Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", + "1976-10-10": "White Sunday", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-10-31": "Halloween", "1976-11-25": "Thanksgiving", - "1976-12-23": "Christmas Eve (observed)", - "1976-12-24": "Christmas Day (observed); Christmas Eve", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-14": "Valentine's Day", "1977-02-21": "Washington's Birthday", "1977-03-17": "Saint Patrick's Day", + "1977-04-17": "American Samoa Flag Day", + "1977-04-18": "American Samoa Flag Day (observed)", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", "1977-09-05": "Labor Day", + "1977-10-09": "White Sunday", "1977-10-10": "Columbus Day", "1977-10-24": "Veterans Day", "1977-10-31": "Halloween", "1977-11-24": "Thanksgiving", - "1977-12-23": "Christmas Eve (observed)", - "1977-12-24": "Christmas Eve", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", @@ -406,87 +431,95 @@ "1978-02-14": "Valentine's Day", "1978-02-20": "Washington's Birthday", "1978-03-17": "Saint Patrick's Day", + "1978-04-17": "American Samoa Flag Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", + "1978-10-08": "White Sunday", "1978-10-09": "Columbus Day", "1978-10-31": "Halloween", "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", - "1978-12-22": "Christmas Eve (observed)", - "1978-12-24": "Christmas Eve", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-14": "Valentine's Day", "1979-02-19": "Washington's Birthday", "1979-03-17": "Saint Patrick's Day", + "1979-04-17": "American Samoa Flag Day", "1979-05-28": "Memorial Day", "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", + "1979-10-14": "White Sunday", "1979-10-31": "Halloween", "1979-11-11": "Veterans Day", "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", - "1979-12-24": "Christmas Eve", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-02-14": "Valentine's Day", "1980-02-18": "Washington's Birthday", "1980-03-17": "Saint Patrick's Day", + "1980-04-17": "American Samoa Flag Day", "1980-05-26": "Memorial Day", "1980-07-04": "Independence Day", "1980-09-01": "Labor Day", + "1980-10-12": "White Sunday", "1980-10-13": "Columbus Day", "1980-10-31": "Halloween", "1980-11-11": "Veterans Day", "1980-11-27": "Thanksgiving", - "1980-12-24": "Christmas Eve", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-02-14": "Valentine's Day", "1981-02-16": "Washington's Birthday", "1981-03-17": "Saint Patrick's Day", + "1981-04-17": "American Samoa Flag Day", "1981-05-25": "Memorial Day", "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", + "1981-10-11": "White Sunday", "1981-10-12": "Columbus Day", "1981-10-31": "Halloween", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", - "1981-12-24": "Christmas Eve", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-02-14": "Valentine's Day", "1982-02-15": "Washington's Birthday", "1982-03-17": "Saint Patrick's Day", + "1982-04-16": "American Samoa Flag Day (observed)", + "1982-04-17": "American Samoa Flag Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", + "1982-10-10": "White Sunday", "1982-10-11": "Columbus Day", "1982-10-31": "Halloween", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-23": "Christmas Eve (observed)", - "1982-12-24": "Christmas Day (observed); Christmas Eve", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-14": "Valentine's Day", "1983-02-21": "Washington's Birthday", "1983-03-17": "Saint Patrick's Day", + "1983-04-17": "American Samoa Flag Day", + "1983-04-18": "American Samoa Flag Day (observed)", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", + "1983-07-15": "Manu'a Islands Cession Day (observed)", + "1983-07-16": "Manu'a Islands Cession Day", "1983-09-05": "Labor Day", + "1983-10-09": "White Sunday", "1983-10-10": "Columbus Day", "1983-10-31": "Halloween", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", - "1983-12-23": "Christmas Eve (observed)", - "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", @@ -494,72 +527,83 @@ "1984-02-14": "Valentine's Day", "1984-02-20": "Washington's Birthday", "1984-03-17": "Saint Patrick's Day", + "1984-04-17": "American Samoa Flag Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", + "1984-07-16": "Manu'a Islands Cession Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", + "1984-10-14": "White Sunday", "1984-10-31": "Halloween", "1984-11-11": "Veterans Day", "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", - "1984-12-24": "Christmas Eve", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-14": "Valentine's Day", "1985-02-18": "Washington's Birthday", "1985-03-17": "Saint Patrick's Day", + "1985-04-17": "American Samoa Flag Day", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", + "1985-07-16": "Manu'a Islands Cession Day", "1985-09-02": "Labor Day", + "1985-10-13": "White Sunday", "1985-10-14": "Columbus Day", "1985-10-31": "Halloween", "1985-11-11": "Veterans Day", "1985-11-28": "Thanksgiving", - "1985-12-24": "Christmas Eve", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-20": "Martin Luther King Jr. Day", "1986-02-14": "Valentine's Day", "1986-02-17": "Washington's Birthday", "1986-03-17": "Saint Patrick's Day", + "1986-04-17": "American Samoa Flag Day", "1986-05-26": "Memorial Day", "1986-07-04": "Independence Day", + "1986-07-16": "Manu'a Islands Cession Day", "1986-09-01": "Labor Day", + "1986-10-12": "White Sunday", "1986-10-13": "Columbus Day", "1986-10-31": "Halloween", "1986-11-11": "Veterans Day", "1986-11-27": "Thanksgiving", - "1986-12-24": "Christmas Eve", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-19": "Martin Luther King Jr. Day", "1987-02-14": "Valentine's Day", "1987-02-16": "Washington's Birthday", "1987-03-17": "Saint Patrick's Day", + "1987-04-17": "American Samoa Flag Day", "1987-05-25": "Memorial Day", "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", + "1987-07-16": "Manu'a Islands Cession Day", "1987-09-07": "Labor Day", + "1987-10-11": "White Sunday", "1987-10-12": "Columbus Day", "1987-10-31": "Halloween", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", - "1987-12-24": "Christmas Eve", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-01-18": "Martin Luther King Jr. Day", "1988-02-14": "Valentine's Day", "1988-02-15": "Washington's Birthday", "1988-03-17": "Saint Patrick's Day", + "1988-04-17": "American Samoa Flag Day", + "1988-04-18": "American Samoa Flag Day (observed)", "1988-05-30": "Memorial Day", "1988-07-04": "Independence Day", + "1988-07-15": "Manu'a Islands Cession Day (observed)", + "1988-07-16": "Manu'a Islands Cession Day", "1988-09-05": "Labor Day", + "1988-10-09": "White Sunday", "1988-10-10": "Columbus Day", "1988-10-31": "Halloween", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", - "1988-12-23": "Christmas Eve (observed)", - "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", @@ -568,76 +612,87 @@ "1989-02-14": "Valentine's Day", "1989-02-20": "Washington's Birthday", "1989-03-17": "Saint Patrick's Day", + "1989-04-17": "American Samoa Flag Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", + "1989-07-16": "Manu'a Islands Cession Day", + "1989-07-17": "Manu'a Islands Cession Day (observed)", "1989-09-04": "Labor Day", + "1989-10-08": "White Sunday", "1989-10-09": "Columbus Day", "1989-10-31": "Halloween", "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", - "1989-12-22": "Christmas Eve (observed)", - "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-15": "Martin Luther King Jr. Day", "1990-02-14": "Valentine's Day", "1990-02-19": "Washington's Birthday", "1990-03-17": "Saint Patrick's Day", + "1990-04-17": "American Samoa Flag Day", "1990-05-28": "Memorial Day", "1990-07-04": "Independence Day", + "1990-07-16": "Manu'a Islands Cession Day", "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", + "1990-10-14": "White Sunday", "1990-10-31": "Halloween", "1990-11-11": "Veterans Day", "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", - "1990-12-24": "Christmas Eve", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-14": "Valentine's Day", "1991-02-18": "Washington's Birthday", "1991-03-17": "Saint Patrick's Day", + "1991-04-17": "American Samoa Flag Day", "1991-05-27": "Memorial Day", "1991-07-04": "Independence Day", + "1991-07-16": "Manu'a Islands Cession Day", "1991-09-02": "Labor Day", + "1991-10-13": "White Sunday", "1991-10-14": "Columbus Day", "1991-10-31": "Halloween", "1991-11-11": "Veterans Day", "1991-11-28": "Thanksgiving", - "1991-12-24": "Christmas Eve", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", "1992-02-14": "Valentine's Day", "1992-02-17": "Washington's Birthday", "1992-03-17": "Saint Patrick's Day", + "1992-04-17": "American Samoa Flag Day", "1992-05-25": "Memorial Day", "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", + "1992-07-16": "Manu'a Islands Cession Day", "1992-09-07": "Labor Day", + "1992-10-11": "White Sunday", "1992-10-12": "Columbus Day", "1992-10-31": "Halloween", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", - "1992-12-24": "Christmas Eve", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-18": "Martin Luther King Jr. Day", "1993-02-14": "Valentine's Day", "1993-02-15": "Washington's Birthday", "1993-03-17": "Saint Patrick's Day", + "1993-04-16": "American Samoa Flag Day (observed)", + "1993-04-17": "American Samoa Flag Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", "1993-07-05": "Independence Day (observed)", + "1993-07-16": "Manu'a Islands Cession Day", "1993-09-06": "Labor Day", + "1993-10-10": "White Sunday", "1993-10-11": "Columbus Day", "1993-10-31": "Halloween", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-23": "Christmas Eve (observed)", - "1993-12-24": "Christmas Day (observed); Christmas Eve", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", @@ -645,15 +700,18 @@ "1994-02-14": "Valentine's Day", "1994-02-21": "Washington's Birthday", "1994-03-17": "Saint Patrick's Day", + "1994-04-17": "American Samoa Flag Day", + "1994-04-18": "American Samoa Flag Day (observed)", "1994-05-30": "Memorial Day", "1994-07-04": "Independence Day", + "1994-07-15": "Manu'a Islands Cession Day (observed)", + "1994-07-16": "Manu'a Islands Cession Day", "1994-09-05": "Labor Day", + "1994-10-09": "White Sunday", "1994-10-10": "Columbus Day", "1994-10-31": "Halloween", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", - "1994-12-23": "Christmas Eve (observed)", - "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", @@ -662,75 +720,86 @@ "1995-02-14": "Valentine's Day", "1995-02-20": "Washington's Birthday", "1995-03-17": "Saint Patrick's Day", + "1995-04-17": "American Samoa Flag Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", + "1995-07-16": "Manu'a Islands Cession Day", + "1995-07-17": "Manu'a Islands Cession Day (observed)", "1995-09-04": "Labor Day", + "1995-10-08": "White Sunday", "1995-10-09": "Columbus Day", "1995-10-31": "Halloween", "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", - "1995-12-22": "Christmas Eve (observed)", - "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-15": "Martin Luther King Jr. Day", "1996-02-14": "Valentine's Day", "1996-02-19": "Washington's Birthday", "1996-03-17": "Saint Patrick's Day", + "1996-04-17": "American Samoa Flag Day", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", + "1996-07-16": "Manu'a Islands Cession Day", "1996-09-02": "Labor Day", + "1996-10-13": "White Sunday", "1996-10-14": "Columbus Day", "1996-10-31": "Halloween", "1996-11-11": "Veterans Day", "1996-11-28": "Thanksgiving", - "1996-12-24": "Christmas Eve", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-20": "Martin Luther King Jr. Day", "1997-02-14": "Valentine's Day", "1997-02-17": "Washington's Birthday", "1997-03-17": "Saint Patrick's Day", + "1997-04-17": "American Samoa Flag Day", "1997-05-26": "Memorial Day", "1997-07-04": "Independence Day", + "1997-07-16": "Manu'a Islands Cession Day", "1997-09-01": "Labor Day", + "1997-10-12": "White Sunday", "1997-10-13": "Columbus Day", "1997-10-31": "Halloween", "1997-11-11": "Veterans Day", "1997-11-27": "Thanksgiving", - "1997-12-24": "Christmas Eve", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-19": "Martin Luther King Jr. Day", "1998-02-14": "Valentine's Day", "1998-02-16": "Washington's Birthday", "1998-03-17": "Saint Patrick's Day", + "1998-04-17": "American Samoa Flag Day", "1998-05-25": "Memorial Day", "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", + "1998-07-16": "Manu'a Islands Cession Day", "1998-09-07": "Labor Day", + "1998-10-11": "White Sunday", "1998-10-12": "Columbus Day", "1998-10-31": "Halloween", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", - "1998-12-24": "Christmas Eve", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-18": "Martin Luther King Jr. Day", "1999-02-14": "Valentine's Day", "1999-02-15": "Washington's Birthday", "1999-03-17": "Saint Patrick's Day", + "1999-04-16": "American Samoa Flag Day (observed)", + "1999-04-17": "American Samoa Flag Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", "1999-07-05": "Independence Day (observed)", + "1999-07-16": "Manu'a Islands Cession Day", "1999-09-06": "Labor Day", + "1999-10-10": "White Sunday", "1999-10-11": "Columbus Day", "1999-10-31": "Halloween", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-23": "Christmas Eve (observed)", - "1999-12-24": "Christmas Day (observed); Christmas Eve", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", @@ -738,75 +807,86 @@ "2000-02-14": "Valentine's Day", "2000-02-21": "Washington's Birthday", "2000-03-17": "Saint Patrick's Day", + "2000-04-17": "American Samoa Flag Day", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", + "2000-07-16": "Manu'a Islands Cession Day", + "2000-07-17": "Manu'a Islands Cession Day (observed)", "2000-09-04": "Labor Day", + "2000-10-08": "White Sunday", "2000-10-09": "Columbus Day", "2000-10-31": "Halloween", "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", - "2000-12-22": "Christmas Eve (observed)", - "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-14": "Valentine's Day", "2001-02-19": "Washington's Birthday", "2001-03-17": "Saint Patrick's Day", + "2001-04-17": "American Samoa Flag Day", "2001-05-28": "Memorial Day", "2001-07-04": "Independence Day", + "2001-07-16": "Manu'a Islands Cession Day", "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", + "2001-10-14": "White Sunday", "2001-10-31": "Halloween", "2001-11-11": "Veterans Day", "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", - "2001-12-24": "Christmas Eve", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-14": "Valentine's Day", "2002-02-18": "Washington's Birthday", "2002-03-17": "Saint Patrick's Day", + "2002-04-17": "American Samoa Flag Day", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", + "2002-07-16": "Manu'a Islands Cession Day", "2002-09-02": "Labor Day", + "2002-10-13": "White Sunday", "2002-10-14": "Columbus Day", "2002-10-31": "Halloween", "2002-11-11": "Veterans Day", "2002-11-28": "Thanksgiving", - "2002-12-24": "Christmas Eve", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", "2003-02-14": "Valentine's Day", "2003-02-17": "Washington's Birthday", "2003-03-17": "Saint Patrick's Day", + "2003-04-17": "American Samoa Flag Day", "2003-05-26": "Memorial Day", "2003-07-04": "Independence Day", + "2003-07-16": "Manu'a Islands Cession Day", "2003-09-01": "Labor Day", + "2003-10-12": "White Sunday", "2003-10-13": "Columbus Day", "2003-10-31": "Halloween", "2003-11-11": "Veterans Day", "2003-11-27": "Thanksgiving", - "2003-12-24": "Christmas Eve", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-19": "Martin Luther King Jr. Day", "2004-02-14": "Valentine's Day", "2004-02-16": "Washington's Birthday", "2004-03-17": "Saint Patrick's Day", + "2004-04-16": "American Samoa Flag Day (observed)", + "2004-04-17": "American Samoa Flag Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", "2004-07-05": "Independence Day (observed)", + "2004-07-16": "Manu'a Islands Cession Day", "2004-09-06": "Labor Day", + "2004-10-10": "White Sunday", "2004-10-11": "Columbus Day", "2004-10-31": "Halloween", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-23": "Christmas Eve (observed)", - "2004-12-24": "Christmas Day (observed); Christmas Eve", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", @@ -814,15 +894,18 @@ "2005-02-14": "Valentine's Day", "2005-02-21": "Washington's Birthday", "2005-03-17": "Saint Patrick's Day", + "2005-04-17": "American Samoa Flag Day", + "2005-04-18": "American Samoa Flag Day (observed)", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", + "2005-07-15": "Manu'a Islands Cession Day (observed)", + "2005-07-16": "Manu'a Islands Cession Day", "2005-09-05": "Labor Day", + "2005-10-09": "White Sunday", "2005-10-10": "Columbus Day", "2005-10-31": "Halloween", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", - "2005-12-23": "Christmas Eve (observed)", - "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", @@ -831,76 +914,87 @@ "2006-02-14": "Valentine's Day", "2006-02-20": "Washington's Birthday", "2006-03-17": "Saint Patrick's Day", + "2006-04-17": "American Samoa Flag Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", + "2006-07-16": "Manu'a Islands Cession Day", + "2006-07-17": "Manu'a Islands Cession Day (observed)", "2006-09-04": "Labor Day", + "2006-10-08": "White Sunday", "2006-10-09": "Columbus Day", "2006-10-31": "Halloween", "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", - "2006-12-22": "Christmas Eve (observed)", - "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-14": "Valentine's Day", "2007-02-19": "Washington's Birthday", "2007-03-17": "Saint Patrick's Day", + "2007-04-17": "American Samoa Flag Day", "2007-05-28": "Memorial Day", "2007-07-04": "Independence Day", + "2007-07-16": "Manu'a Islands Cession Day", "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", + "2007-10-14": "White Sunday", "2007-10-31": "Halloween", "2007-11-11": "Veterans Day", "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", - "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-21": "Martin Luther King Jr. Day", "2008-02-14": "Valentine's Day", "2008-02-18": "Washington's Birthday", "2008-03-17": "Saint Patrick's Day", + "2008-04-17": "American Samoa Flag Day", "2008-05-26": "Memorial Day", "2008-07-04": "Independence Day", + "2008-07-16": "Manu'a Islands Cession Day", "2008-09-01": "Labor Day", + "2008-10-12": "White Sunday", "2008-10-13": "Columbus Day", "2008-10-31": "Halloween", "2008-11-11": "Veterans Day", "2008-11-27": "Thanksgiving", - "2008-12-24": "Christmas Eve", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-02-14": "Valentine's Day", "2009-02-16": "Washington's Birthday", "2009-03-17": "Saint Patrick's Day", + "2009-04-17": "American Samoa Flag Day", "2009-05-25": "Memorial Day", "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", + "2009-07-16": "Manu'a Islands Cession Day", "2009-09-07": "Labor Day", + "2009-10-11": "White Sunday", "2009-10-12": "Columbus Day", "2009-10-31": "Halloween", "2009-11-11": "Veterans Day", "2009-11-26": "Thanksgiving", - "2009-12-24": "Christmas Eve", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-18": "Martin Luther King Jr. Day", "2010-02-14": "Valentine's Day", "2010-02-15": "Washington's Birthday", "2010-03-17": "Saint Patrick's Day", + "2010-04-16": "American Samoa Flag Day (observed)", + "2010-04-17": "American Samoa Flag Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", "2010-07-05": "Independence Day (observed)", + "2010-07-16": "Manu'a Islands Cession Day", "2010-09-06": "Labor Day", + "2010-10-10": "White Sunday", "2010-10-11": "Columbus Day", "2010-10-31": "Halloween", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-23": "Christmas Eve (observed)", - "2010-12-24": "Christmas Day (observed); Christmas Eve", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", @@ -908,15 +1002,18 @@ "2011-02-14": "Valentine's Day", "2011-02-21": "Washington's Birthday", "2011-03-17": "Saint Patrick's Day", + "2011-04-17": "American Samoa Flag Day", + "2011-04-18": "American Samoa Flag Day (observed)", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", + "2011-07-15": "Manu'a Islands Cession Day (observed)", + "2011-07-16": "Manu'a Islands Cession Day", "2011-09-05": "Labor Day", + "2011-10-09": "White Sunday", "2011-10-10": "Columbus Day", "2011-10-31": "Halloween", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", - "2011-12-23": "Christmas Eve (observed)", - "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", @@ -925,73 +1022,84 @@ "2012-02-14": "Valentine's Day", "2012-02-20": "Washington's Birthday", "2012-03-17": "Saint Patrick's Day", + "2012-04-17": "American Samoa Flag Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", + "2012-07-16": "Manu'a Islands Cession Day", "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", + "2012-10-14": "White Sunday", "2012-10-31": "Halloween", "2012-11-11": "Veterans Day", "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", - "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-14": "Valentine's Day", "2013-02-18": "Washington's Birthday", "2013-03-17": "Saint Patrick's Day", + "2013-04-17": "American Samoa Flag Day", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", + "2013-07-16": "Manu'a Islands Cession Day", "2013-09-02": "Labor Day", + "2013-10-13": "White Sunday", "2013-10-14": "Columbus Day", "2013-10-31": "Halloween", "2013-11-11": "Veterans Day", "2013-11-28": "Thanksgiving", - "2013-12-24": "Christmas Eve", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", "2014-02-14": "Valentine's Day", "2014-02-17": "Washington's Birthday", "2014-03-17": "Saint Patrick's Day", + "2014-04-17": "American Samoa Flag Day", "2014-05-26": "Memorial Day", "2014-07-04": "Independence Day", + "2014-07-16": "Manu'a Islands Cession Day", "2014-09-01": "Labor Day", + "2014-10-12": "White Sunday", "2014-10-13": "Columbus Day", "2014-10-31": "Halloween", "2014-11-11": "Veterans Day", "2014-11-27": "Thanksgiving", - "2014-12-24": "Christmas Eve", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-19": "Martin Luther King Jr. Day", "2015-02-14": "Valentine's Day", "2015-02-16": "Washington's Birthday", "2015-03-17": "Saint Patrick's Day", + "2015-04-17": "American Samoa Flag Day", "2015-05-25": "Memorial Day", "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", + "2015-07-16": "Manu'a Islands Cession Day", "2015-09-07": "Labor Day", + "2015-10-11": "White Sunday", "2015-10-12": "Columbus Day", "2015-10-31": "Halloween", "2015-11-11": "Veterans Day", "2015-11-26": "Thanksgiving", - "2015-12-24": "Christmas Eve", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-14": "Valentine's Day", "2016-02-15": "Washington's Birthday", "2016-03-17": "Saint Patrick's Day", + "2016-04-17": "American Samoa Flag Day", + "2016-04-18": "American Samoa Flag Day (observed)", "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", + "2016-07-15": "Manu'a Islands Cession Day (observed)", + "2016-07-16": "Manu'a Islands Cession Day", "2016-09-05": "Labor Day", + "2016-10-09": "White Sunday", "2016-10-10": "Columbus Day", "2016-10-31": "Halloween", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (observed)", - "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", @@ -1000,78 +1108,89 @@ "2017-02-14": "Valentine's Day", "2017-02-20": "Washington's Birthday", "2017-03-17": "Saint Patrick's Day", + "2017-04-17": "American Samoa Flag Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", + "2017-07-16": "Manu'a Islands Cession Day", + "2017-07-17": "Manu'a Islands Cession Day (observed)", "2017-09-04": "Labor Day", + "2017-10-08": "White Sunday", "2017-10-09": "Columbus Day", "2017-10-31": "Halloween", "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (observed)", - "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-14": "Valentine's Day", "2018-02-19": "Washington's Birthday", "2018-03-17": "Saint Patrick's Day", + "2018-04-17": "American Samoa Flag Day", "2018-05-28": "Memorial Day", "2018-07-04": "Independence Day", + "2018-07-16": "Manu'a Islands Cession Day", "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", + "2018-10-14": "White Sunday", "2018-10-31": "Halloween", "2018-11-11": "Veterans Day", "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", - "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-14": "Valentine's Day", "2019-02-18": "Washington's Birthday", "2019-03-17": "Saint Patrick's Day", + "2019-04-17": "American Samoa Flag Day", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", + "2019-07-16": "Manu'a Islands Cession Day", "2019-09-02": "Labor Day", + "2019-10-13": "White Sunday", "2019-10-14": "Columbus Day", "2019-10-31": "Halloween", "2019-11-11": "Veterans Day", "2019-11-28": "Thanksgiving", - "2019-12-24": "Christmas Eve", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", "2020-02-14": "Valentine's Day", "2020-02-17": "Washington's Birthday", "2020-03-17": "Saint Patrick's Day", + "2020-04-17": "American Samoa Flag Day", "2020-05-25": "Memorial Day", "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", + "2020-07-16": "Manu'a Islands Cession Day", "2020-09-07": "Labor Day", + "2020-10-11": "White Sunday", "2020-10-12": "Columbus Day", "2020-10-31": "Halloween", "2020-11-11": "Veterans Day", "2020-11-26": "Thanksgiving", - "2020-12-24": "Christmas Eve", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-14": "Valentine's Day", "2021-02-15": "Washington's Birthday", "2021-03-17": "Saint Patrick's Day", + "2021-04-16": "American Samoa Flag Day (observed)", + "2021-04-17": "American Samoa Flag Day", "2021-05-31": "Memorial Day", "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", "2021-07-05": "Independence Day (observed)", + "2021-07-16": "Manu'a Islands Cession Day", "2021-09-06": "Labor Day", + "2021-10-10": "White Sunday", "2021-10-11": "Columbus Day", "2021-10-31": "Halloween", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (observed)", - "2021-12-24": "Christmas Day (observed); Christmas Eve", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", @@ -1079,17 +1198,20 @@ "2022-02-14": "Valentine's Day", "2022-02-21": "Washington's Birthday", "2022-03-17": "Saint Patrick's Day", + "2022-04-17": "American Samoa Flag Day", + "2022-04-18": "American Samoa Flag Day (observed)", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", + "2022-07-15": "Manu'a Islands Cession Day (observed)", + "2022-07-16": "Manu'a Islands Cession Day", "2022-09-05": "Labor Day", + "2022-10-09": "White Sunday", "2022-10-10": "Columbus Day", "2022-10-31": "Halloween", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (observed)", - "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", @@ -1098,81 +1220,92 @@ "2023-02-14": "Valentine's Day", "2023-02-20": "Washington's Birthday", "2023-03-17": "Saint Patrick's Day", + "2023-04-17": "American Samoa Flag Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", + "2023-07-16": "Manu'a Islands Cession Day", + "2023-07-17": "Manu'a Islands Cession Day (observed)", "2023-09-04": "Labor Day", + "2023-10-08": "White Sunday", "2023-10-09": "Columbus Day", "2023-10-31": "Halloween", "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (observed)", - "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-15": "Martin Luther King Jr. Day", "2024-02-14": "Valentine's Day", "2024-02-19": "Washington's Birthday", "2024-03-17": "Saint Patrick's Day", + "2024-04-17": "American Samoa Flag Day", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", "2024-07-04": "Independence Day", + "2024-07-16": "Manu'a Islands Cession Day", "2024-09-02": "Labor Day", + "2024-10-13": "White Sunday", "2024-10-14": "Columbus Day", "2024-10-31": "Halloween", "2024-11-11": "Veterans Day", "2024-11-28": "Thanksgiving", - "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", "2025-02-14": "Valentine's Day", "2025-02-17": "Washington's Birthday", "2025-03-17": "Saint Patrick's Day", + "2025-04-17": "American Samoa Flag Day", "2025-05-26": "Memorial Day", "2025-06-19": "Juneteenth National Independence Day", "2025-07-04": "Independence Day", + "2025-07-16": "Manu'a Islands Cession Day", "2025-09-01": "Labor Day", + "2025-10-12": "White Sunday", "2025-10-13": "Columbus Day", "2025-10-31": "Halloween", "2025-11-11": "Veterans Day", "2025-11-27": "Thanksgiving", - "2025-12-24": "Christmas Eve", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-19": "Martin Luther King Jr. Day", "2026-02-14": "Valentine's Day", "2026-02-16": "Washington's Birthday", "2026-03-17": "Saint Patrick's Day", + "2026-04-17": "American Samoa Flag Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", + "2026-07-16": "Manu'a Islands Cession Day", "2026-09-07": "Labor Day", + "2026-10-11": "White Sunday", "2026-10-12": "Columbus Day", "2026-10-31": "Halloween", "2026-11-11": "Veterans Day", "2026-11-26": "Thanksgiving", - "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-14": "Valentine's Day", "2027-02-15": "Washington's Birthday", "2027-03-17": "Saint Patrick's Day", + "2027-04-16": "American Samoa Flag Day (observed)", + "2027-04-17": "American Samoa Flag Day", "2027-05-31": "Memorial Day", "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", "2027-07-05": "Independence Day (observed)", + "2027-07-16": "Manu'a Islands Cession Day", "2027-09-06": "Labor Day", + "2027-10-10": "White Sunday", "2027-10-11": "Columbus Day", "2027-10-31": "Halloween", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (observed)", - "2027-12-24": "Christmas Day (observed); Christmas Eve", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", @@ -1180,81 +1313,92 @@ "2028-02-14": "Valentine's Day", "2028-02-21": "Washington's Birthday", "2028-03-17": "Saint Patrick's Day", + "2028-04-17": "American Samoa Flag Day", "2028-05-29": "Memorial Day", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", + "2028-07-16": "Manu'a Islands Cession Day", + "2028-07-17": "Manu'a Islands Cession Day (observed)", "2028-09-04": "Labor Day", + "2028-10-08": "White Sunday", "2028-10-09": "Columbus Day", "2028-10-31": "Halloween", "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (observed)", - "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-14": "Valentine's Day", "2029-02-19": "Washington's Birthday", "2029-03-17": "Saint Patrick's Day", + "2029-04-17": "American Samoa Flag Day", "2029-05-28": "Memorial Day", "2029-06-19": "Juneteenth National Independence Day", "2029-07-04": "Independence Day", + "2029-07-16": "Manu'a Islands Cession Day", "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", + "2029-10-14": "White Sunday", "2029-10-31": "Halloween", "2029-11-11": "Veterans Day", "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", - "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-14": "Valentine's Day", "2030-02-18": "Washington's Birthday", "2030-03-17": "Saint Patrick's Day", + "2030-04-17": "American Samoa Flag Day", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", "2030-07-04": "Independence Day", + "2030-07-16": "Manu'a Islands Cession Day", "2030-09-02": "Labor Day", + "2030-10-13": "White Sunday", "2030-10-14": "Columbus Day", "2030-10-31": "Halloween", "2030-11-11": "Veterans Day", "2030-11-28": "Thanksgiving", - "2030-12-24": "Christmas Eve", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", "2031-02-14": "Valentine's Day", "2031-02-17": "Washington's Birthday", "2031-03-17": "Saint Patrick's Day", + "2031-04-17": "American Samoa Flag Day", "2031-05-26": "Memorial Day", "2031-06-19": "Juneteenth National Independence Day", "2031-07-04": "Independence Day", + "2031-07-16": "Manu'a Islands Cession Day", "2031-09-01": "Labor Day", + "2031-10-12": "White Sunday", "2031-10-13": "Columbus Day", "2031-10-31": "Halloween", "2031-11-11": "Veterans Day", "2031-11-27": "Thanksgiving", - "2031-12-24": "Christmas Eve", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-02-14": "Valentine's Day", "2032-02-16": "Washington's Birthday", "2032-03-17": "Saint Patrick's Day", + "2032-04-16": "American Samoa Flag Day (observed)", + "2032-04-17": "American Samoa Flag Day", "2032-05-31": "Memorial Day", "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", "2032-07-05": "Independence Day (observed)", + "2032-07-16": "Manu'a Islands Cession Day", "2032-09-06": "Labor Day", + "2032-10-10": "White Sunday", "2032-10-11": "Columbus Day", "2032-10-31": "Halloween", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (observed)", - "2032-12-24": "Christmas Day (observed); Christmas Eve", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", @@ -1262,17 +1406,20 @@ "2033-02-14": "Valentine's Day", "2033-02-21": "Washington's Birthday", "2033-03-17": "Saint Patrick's Day", + "2033-04-17": "American Samoa Flag Day", + "2033-04-18": "American Samoa Flag Day (observed)", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", + "2033-07-15": "Manu'a Islands Cession Day (observed)", + "2033-07-16": "Manu'a Islands Cession Day", "2033-09-05": "Labor Day", + "2033-10-09": "White Sunday", "2033-10-10": "Columbus Day", "2033-10-31": "Halloween", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (observed)", - "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", @@ -1281,82 +1428,93 @@ "2034-02-14": "Valentine's Day", "2034-02-20": "Washington's Birthday", "2034-03-17": "Saint Patrick's Day", + "2034-04-17": "American Samoa Flag Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", + "2034-07-16": "Manu'a Islands Cession Day", + "2034-07-17": "Manu'a Islands Cession Day (observed)", "2034-09-04": "Labor Day", + "2034-10-08": "White Sunday", "2034-10-09": "Columbus Day", "2034-10-31": "Halloween", "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (observed)", - "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-14": "Valentine's Day", "2035-02-19": "Washington's Birthday", "2035-03-17": "Saint Patrick's Day", + "2035-04-17": "American Samoa Flag Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", "2035-07-04": "Independence Day", + "2035-07-16": "Manu'a Islands Cession Day", "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", + "2035-10-14": "White Sunday", "2035-10-31": "Halloween", "2035-11-11": "Veterans Day", "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", - "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-21": "Martin Luther King Jr. Day", "2036-02-14": "Valentine's Day", "2036-02-18": "Washington's Birthday", "2036-03-17": "Saint Patrick's Day", + "2036-04-17": "American Samoa Flag Day", "2036-05-26": "Memorial Day", "2036-06-19": "Juneteenth National Independence Day", "2036-07-04": "Independence Day", + "2036-07-16": "Manu'a Islands Cession Day", "2036-09-01": "Labor Day", + "2036-10-12": "White Sunday", "2036-10-13": "Columbus Day", "2036-10-31": "Halloween", "2036-11-11": "Veterans Day", "2036-11-27": "Thanksgiving", - "2036-12-24": "Christmas Eve", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-19": "Martin Luther King Jr. Day", "2037-02-14": "Valentine's Day", "2037-02-16": "Washington's Birthday", "2037-03-17": "Saint Patrick's Day", + "2037-04-17": "American Samoa Flag Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", + "2037-07-16": "Manu'a Islands Cession Day", "2037-09-07": "Labor Day", + "2037-10-11": "White Sunday", "2037-10-12": "Columbus Day", "2037-10-31": "Halloween", "2037-11-11": "Veterans Day", "2037-11-26": "Thanksgiving", - "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-14": "Valentine's Day", "2038-02-15": "Washington's Birthday", "2038-03-17": "Saint Patrick's Day", + "2038-04-16": "American Samoa Flag Day (observed)", + "2038-04-17": "American Samoa Flag Day", "2038-05-31": "Memorial Day", "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", "2038-07-05": "Independence Day (observed)", + "2038-07-16": "Manu'a Islands Cession Day", "2038-09-06": "Labor Day", + "2038-10-10": "White Sunday", "2038-10-11": "Columbus Day", "2038-10-31": "Halloween", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (observed)", - "2038-12-24": "Christmas Day (observed); Christmas Eve", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", @@ -1364,17 +1522,20 @@ "2039-02-14": "Valentine's Day", "2039-02-21": "Washington's Birthday", "2039-03-17": "Saint Patrick's Day", + "2039-04-17": "American Samoa Flag Day", + "2039-04-18": "American Samoa Flag Day (observed)", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", + "2039-07-15": "Manu'a Islands Cession Day (observed)", + "2039-07-16": "Manu'a Islands Cession Day", "2039-09-05": "Labor Day", + "2039-10-09": "White Sunday", "2039-10-10": "Columbus Day", "2039-10-31": "Halloween", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (observed)", - "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", @@ -1383,79 +1544,90 @@ "2040-02-14": "Valentine's Day", "2040-02-20": "Washington's Birthday", "2040-03-17": "Saint Patrick's Day", + "2040-04-17": "American Samoa Flag Day", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", "2040-07-04": "Independence Day", + "2040-07-16": "Manu'a Islands Cession Day", "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", + "2040-10-14": "White Sunday", "2040-10-31": "Halloween", "2040-11-11": "Veterans Day", "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", - "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-14": "Valentine's Day", "2041-02-18": "Washington's Birthday", "2041-03-17": "Saint Patrick's Day", + "2041-04-17": "American Samoa Flag Day", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", "2041-07-04": "Independence Day", + "2041-07-16": "Manu'a Islands Cession Day", "2041-09-02": "Labor Day", + "2041-10-13": "White Sunday", "2041-10-14": "Columbus Day", "2041-10-31": "Halloween", "2041-11-11": "Veterans Day", "2041-11-28": "Thanksgiving", - "2041-12-24": "Christmas Eve", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", "2042-02-14": "Valentine's Day", "2042-02-17": "Washington's Birthday", "2042-03-17": "Saint Patrick's Day", + "2042-04-17": "American Samoa Flag Day", "2042-05-26": "Memorial Day", "2042-06-19": "Juneteenth National Independence Day", "2042-07-04": "Independence Day", + "2042-07-16": "Manu'a Islands Cession Day", "2042-09-01": "Labor Day", + "2042-10-12": "White Sunday", "2042-10-13": "Columbus Day", "2042-10-31": "Halloween", "2042-11-11": "Veterans Day", "2042-11-27": "Thanksgiving", - "2042-12-24": "Christmas Eve", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-01-19": "Martin Luther King Jr. Day", "2043-02-14": "Valentine's Day", "2043-02-16": "Washington's Birthday", "2043-03-17": "Saint Patrick's Day", + "2043-04-17": "American Samoa Flag Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", + "2043-07-16": "Manu'a Islands Cession Day", "2043-09-07": "Labor Day", + "2043-10-11": "White Sunday", "2043-10-12": "Columbus Day", "2043-10-31": "Halloween", "2043-11-11": "Veterans Day", "2043-11-26": "Thanksgiving", - "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-14": "Valentine's Day", "2044-02-15": "Washington's Birthday", "2044-03-17": "Saint Patrick's Day", + "2044-04-17": "American Samoa Flag Day", + "2044-04-18": "American Samoa Flag Day (observed)", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", + "2044-07-15": "Manu'a Islands Cession Day (observed)", + "2044-07-16": "Manu'a Islands Cession Day", "2044-09-05": "Labor Day", + "2044-10-09": "White Sunday", "2044-10-10": "Columbus Day", "2044-10-31": "Halloween", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (observed)", - "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", @@ -1464,82 +1636,93 @@ "2045-02-14": "Valentine's Day", "2045-02-20": "Washington's Birthday", "2045-03-17": "Saint Patrick's Day", + "2045-04-17": "American Samoa Flag Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", + "2045-07-16": "Manu'a Islands Cession Day", + "2045-07-17": "Manu'a Islands Cession Day (observed)", "2045-09-04": "Labor Day", + "2045-10-08": "White Sunday", "2045-10-09": "Columbus Day", "2045-10-31": "Halloween", "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (observed)", - "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-14": "Valentine's Day", "2046-02-19": "Washington's Birthday", "2046-03-17": "Saint Patrick's Day", + "2046-04-17": "American Samoa Flag Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", "2046-07-04": "Independence Day", + "2046-07-16": "Manu'a Islands Cession Day", "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", + "2046-10-14": "White Sunday", "2046-10-31": "Halloween", "2046-11-11": "Veterans Day", "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", - "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-14": "Valentine's Day", "2047-02-18": "Washington's Birthday", "2047-03-17": "Saint Patrick's Day", + "2047-04-17": "American Samoa Flag Day", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", "2047-07-04": "Independence Day", + "2047-07-16": "Manu'a Islands Cession Day", "2047-09-02": "Labor Day", + "2047-10-13": "White Sunday", "2047-10-14": "Columbus Day", "2047-10-31": "Halloween", "2047-11-11": "Veterans Day", "2047-11-28": "Thanksgiving", - "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", "2048-02-14": "Valentine's Day", "2048-02-17": "Washington's Birthday", "2048-03-17": "Saint Patrick's Day", + "2048-04-17": "American Samoa Flag Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", + "2048-07-16": "Manu'a Islands Cession Day", "2048-09-07": "Labor Day", + "2048-10-11": "White Sunday", "2048-10-12": "Columbus Day", "2048-10-31": "Halloween", "2048-11-11": "Veterans Day", "2048-11-26": "Thanksgiving", - "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-14": "Valentine's Day", "2049-02-15": "Washington's Birthday", "2049-03-17": "Saint Patrick's Day", + "2049-04-16": "American Samoa Flag Day (observed)", + "2049-04-17": "American Samoa Flag Day", "2049-05-31": "Memorial Day", "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", "2049-07-05": "Independence Day (observed)", + "2049-07-16": "Manu'a Islands Cession Day", "2049-09-06": "Labor Day", + "2049-10-10": "White Sunday", "2049-10-11": "Columbus Day", "2049-10-31": "Halloween", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (observed)", - "2049-12-24": "Christmas Day (observed); Christmas Eve", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", @@ -1547,17 +1730,20 @@ "2050-02-14": "Valentine's Day", "2050-02-21": "Washington's Birthday", "2050-03-17": "Saint Patrick's Day", + "2050-04-17": "American Samoa Flag Day", + "2050-04-18": "American Samoa Flag Day (observed)", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", + "2050-07-15": "Manu'a Islands Cession Day (observed)", + "2050-07-16": "Manu'a Islands Cession Day", "2050-09-05": "Labor Day", + "2050-10-09": "White Sunday", "2050-10-10": "Columbus Day", "2050-10-31": "Halloween", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (observed)", - "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_GA.json b/snapshots/countries/US_GA.json index b49214502..1437f354a 100644 --- a/snapshots/countries/US_GA.json +++ b/snapshots/countries/US_GA.json @@ -13,8 +13,8 @@ "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", - "1950-12-24": "Washington's Birthday", "1950-12-25": "Christmas Day", + "1950-12-26": "Washington's Birthday", "1951-01-01": "New Year's Day", "1951-02-02": "Groundhog Day", "1951-02-14": "Valentine's Day", @@ -73,7 +73,8 @@ "1954-10-31": "Halloween", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (observed); Washington's Birthday", + "1954-12-23": "Washington's Birthday", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", @@ -88,7 +89,7 @@ "1955-10-31": "Halloween", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", - "1955-12-24": "Washington's Birthday", + "1955-12-23": "Washington's Birthday", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", @@ -164,7 +165,7 @@ "1960-11-08": "Election Day", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", - "1960-12-24": "Washington's Birthday", + "1960-12-23": "Washington's Birthday", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", @@ -181,8 +182,8 @@ "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", - "1961-12-24": "Washington's Birthday", "1961-12-25": "Christmas Day", + "1961-12-26": "Washington's Birthday", "1962-01-01": "New Year's Day", "1962-02-02": "Groundhog Day", "1962-02-14": "Valentine's Day", @@ -241,7 +242,8 @@ "1965-10-31": "Halloween", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (observed); Washington's Birthday", + "1965-12-23": "Washington's Birthday", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", @@ -256,7 +258,7 @@ "1966-10-31": "Halloween", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", - "1966-12-24": "Washington's Birthday", + "1966-12-23": "Washington's Birthday", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", @@ -273,8 +275,8 @@ "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", - "1967-12-24": "Washington's Birthday", "1967-12-25": "Christmas Day", + "1967-12-26": "Washington's Birthday", "1968-01-01": "New Year's Day", "1968-02-02": "Groundhog Day", "1968-02-14": "Valentine's Day", @@ -332,7 +334,8 @@ "1971-10-25": "Veterans Day", "1971-10-31": "Halloween", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (observed); Washington's Birthday", + "1971-12-23": "Washington's Birthday", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", @@ -348,8 +351,8 @@ "1972-10-31": "Halloween", "1972-11-07": "Election Day", "1972-11-23": "Thanksgiving", - "1972-12-24": "Washington's Birthday", "1972-12-25": "Christmas Day", + "1972-12-26": "Washington's Birthday", "1973-01-01": "New Year's Day", "1973-02-02": "Groundhog Day", "1973-02-14": "Valentine's Day", @@ -406,7 +409,8 @@ "1976-10-31": "Halloween", "1976-11-02": "Election Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (observed); Washington's Birthday", + "1976-12-23": "Washington's Birthday", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", @@ -421,7 +425,7 @@ "1977-10-24": "Veterans Day", "1977-10-31": "Halloween", "1977-11-24": "Thanksgiving", - "1977-12-24": "Washington's Birthday", + "1977-12-23": "Washington's Birthday", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", @@ -438,8 +442,8 @@ "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", - "1978-12-24": "Washington's Birthday", "1978-12-25": "Christmas Day", + "1978-12-26": "Washington's Birthday", "1979-01-01": "New Year's Day", "1979-02-02": "Groundhog Day", "1979-02-14": "Valentine's Day", @@ -498,7 +502,8 @@ "1982-10-31": "Halloween", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (observed); Washington's Birthday", + "1982-12-23": "Washington's Birthday", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", @@ -513,7 +518,7 @@ "1983-10-31": "Halloween", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", - "1983-12-24": "Washington's Birthday", + "1983-12-23": "Washington's Birthday", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", @@ -595,7 +600,7 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-11-25": "Robert E. Lee's Birthday", - "1988-12-24": "Washington's Birthday", + "1988-12-23": "Washington's Birthday", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", @@ -614,8 +619,8 @@ "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Robert E. Lee's Birthday", - "1989-12-24": "Washington's Birthday", "1989-12-25": "Christmas Day", + "1989-12-26": "Washington's Birthday", "1990-01-01": "New Year's Day", "1990-01-15": "Robert E. Lee's Birthday", "1990-02-02": "Groundhog Day", @@ -682,7 +687,8 @@ "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Robert E. Lee's Birthday", - "1993-12-24": "Christmas Day (observed); Washington's Birthday", + "1993-12-23": "Washington's Birthday", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", @@ -699,7 +705,7 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-11-25": "Robert E. Lee's Birthday", - "1994-12-24": "Washington's Birthday", + "1994-12-23": "Washington's Birthday", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", @@ -718,8 +724,8 @@ "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Robert E. Lee's Birthday", - "1995-12-24": "Washington's Birthday", "1995-12-25": "Christmas Day", + "1995-12-26": "Washington's Birthday", "1996-01-01": "New Year's Day", "1996-01-15": "Robert E. Lee's Birthday", "1996-02-02": "Groundhog Day", @@ -785,7 +791,8 @@ "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Robert E. Lee's Birthday", - "1999-12-24": "Christmas Day (observed); Washington's Birthday", + "1999-12-23": "Washington's Birthday", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", @@ -804,8 +811,8 @@ "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Robert E. Lee's Birthday", - "2000-12-24": "Washington's Birthday", "2000-12-25": "Christmas Day", + "2000-12-26": "Washington's Birthday", "2001-01-01": "New Year's Day", "2001-01-15": "Robert E. Lee's Birthday", "2001-02-02": "Groundhog Day", @@ -871,7 +878,8 @@ "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Robert E. Lee's Birthday", - "2004-12-24": "Christmas Day (observed); Washington's Birthday", + "2004-12-23": "Washington's Birthday", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", @@ -888,7 +896,7 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-11-25": "Robert E. Lee's Birthday", - "2005-12-24": "Washington's Birthday", + "2005-12-23": "Washington's Birthday", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", @@ -907,8 +915,8 @@ "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Robert E. Lee's Birthday", - "2006-12-24": "Washington's Birthday", "2006-12-25": "Christmas Day", + "2006-12-26": "Washington's Birthday", "2007-01-01": "New Year's Day", "2007-01-15": "Robert E. Lee's Birthday", "2007-02-02": "Groundhog Day", @@ -975,7 +983,8 @@ "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Robert E. Lee's Birthday", - "2010-12-24": "Christmas Day (observed); Washington's Birthday", + "2010-12-23": "Washington's Birthday", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", @@ -992,7 +1001,7 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-11-25": "Robert E. Lee's Birthday", - "2011-12-24": "Washington's Birthday", + "2011-12-23": "Washington's Birthday", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", @@ -1078,7 +1087,7 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-11-25": "State Holiday", - "2016-12-24": "Washington's Birthday", + "2016-12-23": "Washington's Birthday", "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", @@ -1097,8 +1106,8 @@ "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "State Holiday", - "2017-12-24": "Washington's Birthday", "2017-12-25": "Christmas Day", + "2017-12-26": "Washington's Birthday", "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-02": "Groundhog Day", @@ -1167,7 +1176,8 @@ "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "State Holiday", - "2021-12-24": "Christmas Day (observed); Washington's Birthday", + "2021-12-23": "Washington's Birthday", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", @@ -1186,7 +1196,7 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "State Holiday", - "2022-12-24": "Washington's Birthday", + "2022-12-23": "Washington's Birthday", "2022-12-25": "Christmas Day", "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", @@ -1206,8 +1216,8 @@ "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "State Holiday", - "2023-12-24": "Washington's Birthday", "2023-12-25": "Christmas Day", + "2023-12-26": "Washington's Birthday", "2024-01-01": "New Year's Day", "2024-01-15": "Martin Luther King Jr. Day", "2024-02-02": "Groundhog Day", @@ -1278,7 +1288,8 @@ "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "State Holiday", - "2027-12-24": "Christmas Day (observed); Washington's Birthday", + "2027-12-23": "Washington's Birthday", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", @@ -1298,8 +1309,8 @@ "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "State Holiday", - "2028-12-24": "Washington's Birthday", "2028-12-25": "Christmas Day", + "2028-12-26": "Washington's Birthday", "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-02": "Groundhog Day", @@ -1370,7 +1381,8 @@ "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "State Holiday", - "2032-12-24": "Christmas Day (observed); Washington's Birthday", + "2032-12-23": "Washington's Birthday", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", @@ -1389,7 +1401,7 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "State Holiday", - "2033-12-24": "Washington's Birthday", + "2033-12-23": "Washington's Birthday", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", @@ -1409,8 +1421,8 @@ "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "State Holiday", - "2034-12-24": "Washington's Birthday", "2034-12-25": "Christmas Day", + "2034-12-26": "Washington's Birthday", "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-02": "Groundhog Day", @@ -1482,7 +1494,8 @@ "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "State Holiday", - "2038-12-24": "Christmas Day (observed); Washington's Birthday", + "2038-12-23": "Washington's Birthday", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", @@ -1501,7 +1514,7 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "State Holiday", - "2039-12-24": "Washington's Birthday", + "2039-12-23": "Washington's Birthday", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", @@ -1593,7 +1606,7 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "State Holiday", - "2044-12-24": "Washington's Birthday", + "2044-12-23": "Washington's Birthday", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", @@ -1613,8 +1626,8 @@ "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "State Holiday", - "2045-12-24": "Washington's Birthday", "2045-12-25": "Christmas Day", + "2045-12-26": "Washington's Birthday", "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-02": "Groundhog Day", @@ -1686,7 +1699,8 @@ "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "State Holiday", - "2049-12-24": "Christmas Day (observed); Washington's Birthday", + "2049-12-23": "Washington's Birthday", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", @@ -1705,7 +1719,7 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "State Holiday", - "2050-12-24": "Washington's Birthday", + "2050-12-23": "Washington's Birthday", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_IN.json b/snapshots/countries/US_IN.json index df5d84649..51ea43e04 100644 --- a/snapshots/countries/US_IN.json +++ b/snapshots/countries/US_IN.json @@ -3,7 +3,6 @@ "1950-01-02": "New Year's Day (observed)", "1950-02-02": "Groundhog Day", "1950-02-14": "Valentine's Day", - "1950-02-22": "Washington's Birthday", "1950-03-17": "Saint Patrick's Day", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", @@ -15,10 +14,10 @@ "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", + "1950-12-26": "Washington's Birthday", "1951-01-01": "New Year's Day", "1951-02-02": "Groundhog Day", "1951-02-14": "Valentine's Day", - "1951-02-22": "Washington's Birthday", "1951-03-17": "Saint Patrick's Day", "1951-03-23": "Good Friday", "1951-05-30": "Memorial Day", @@ -29,11 +28,11 @@ "1951-11-11": "Armistice Day", "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", + "1951-12-24": "Washington's Birthday", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-02-02": "Groundhog Day", "1952-02-14": "Valentine's Day", - "1952-02-22": "Washington's Birthday", "1952-03-17": "Saint Patrick's Day", "1952-04-11": "Good Friday", "1952-05-30": "Memorial Day", @@ -45,10 +44,10 @@ "1952-11-11": "Armistice Day", "1952-11-27": "Thanksgiving", "1952-12-25": "Christmas Day", + "1952-12-26": "Washington's Birthday", "1953-01-01": "New Year's Day", "1953-02-02": "Groundhog Day", "1953-02-14": "Valentine's Day", - "1953-02-22": "Washington's Birthday", "1953-03-17": "Saint Patrick's Day", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", @@ -59,11 +58,11 @@ "1953-10-31": "Halloween", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", + "1953-12-24": "Washington's Birthday", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-02-02": "Groundhog Day", "1954-02-14": "Valentine's Day", - "1954-02-22": "Washington's Birthday", "1954-03-17": "Saint Patrick's Day", "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", @@ -74,13 +73,13 @@ "1954-10-31": "Halloween", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", + "1954-12-23": "Washington's Birthday", "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-02": "Groundhog Day", "1955-02-14": "Valentine's Day", - "1955-02-22": "Washington's Birthday", "1955-03-17": "Saint Patrick's Day", "1955-04-08": "Good Friday", "1955-05-30": "Memorial Day", @@ -90,13 +89,13 @@ "1955-10-31": "Halloween", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", + "1955-12-23": "Washington's Birthday", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day (observed)", "1956-02-02": "Groundhog Day", "1956-02-14": "Valentine's Day", - "1956-02-22": "Washington's Birthday", "1956-03-17": "Saint Patrick's Day", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -108,11 +107,11 @@ "1956-11-11": "Veterans Day", "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", + "1956-12-24": "Washington's Birthday", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-02": "Groundhog Day", "1957-02-14": "Valentine's Day", - "1957-02-22": "Washington's Birthday", "1957-03-17": "Saint Patrick's Day", "1957-04-19": "Good Friday", "1957-05-30": "Memorial Day", @@ -122,11 +121,11 @@ "1957-10-31": "Halloween", "1957-11-11": "Veterans Day", "1957-11-28": "Thanksgiving", + "1957-12-24": "Washington's Birthday", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-02": "Groundhog Day", "1958-02-14": "Valentine's Day", - "1958-02-22": "Washington's Birthday", "1958-03-17": "Saint Patrick's Day", "1958-04-04": "Good Friday", "1958-05-30": "Memorial Day", @@ -137,10 +136,10 @@ "1958-11-11": "Veterans Day", "1958-11-27": "Thanksgiving", "1958-12-25": "Christmas Day", + "1958-12-26": "Washington's Birthday", "1959-01-01": "New Year's Day", "1959-02-02": "Groundhog Day", "1959-02-14": "Valentine's Day", - "1959-02-22": "Washington's Birthday", "1959-03-17": "Saint Patrick's Day", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", @@ -151,11 +150,11 @@ "1959-10-31": "Halloween", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", + "1959-12-24": "Washington's Birthday", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-02-02": "Groundhog Day", "1960-02-14": "Valentine's Day", - "1960-02-22": "Washington's Birthday", "1960-03-17": "Saint Patrick's Day", "1960-04-15": "Good Friday", "1960-05-30": "Memorial Day", @@ -166,13 +165,13 @@ "1960-11-08": "Election Day", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", + "1960-12-23": "Washington's Birthday", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day (observed)", "1961-02-02": "Groundhog Day", "1961-02-14": "Valentine's Day", - "1961-02-22": "Washington's Birthday", "1961-03-17": "Saint Patrick's Day", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", @@ -184,10 +183,10 @@ "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", + "1961-12-26": "Washington's Birthday", "1962-01-01": "New Year's Day", "1962-02-02": "Groundhog Day", "1962-02-14": "Valentine's Day", - "1962-02-22": "Washington's Birthday", "1962-03-17": "Saint Patrick's Day", "1962-04-20": "Good Friday", "1962-05-30": "Memorial Day", @@ -198,11 +197,11 @@ "1962-11-11": "Veterans Day", "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", + "1962-12-24": "Washington's Birthday", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-02": "Groundhog Day", "1963-02-14": "Valentine's Day", - "1963-02-22": "Washington's Birthday", "1963-03-17": "Saint Patrick's Day", "1963-04-12": "Good Friday", "1963-05-30": "Memorial Day", @@ -212,11 +211,11 @@ "1963-10-31": "Halloween", "1963-11-11": "Veterans Day", "1963-11-28": "Thanksgiving", + "1963-12-24": "Washington's Birthday", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-02": "Groundhog Day", "1964-02-14": "Valentine's Day", - "1964-02-22": "Washington's Birthday", "1964-03-17": "Saint Patrick's Day", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", @@ -228,11 +227,11 @@ "1964-11-03": "Election Day", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", + "1964-12-24": "Washington's Birthday", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-02-02": "Groundhog Day", "1965-02-14": "Valentine's Day", - "1965-02-22": "Washington's Birthday", "1965-03-17": "Saint Patrick's Day", "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", @@ -243,13 +242,13 @@ "1965-10-31": "Halloween", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", + "1965-12-23": "Washington's Birthday", "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-02": "Groundhog Day", "1966-02-14": "Valentine's Day", - "1966-02-22": "Washington's Birthday", "1966-03-17": "Saint Patrick's Day", "1966-04-08": "Good Friday", "1966-05-30": "Memorial Day", @@ -259,13 +258,13 @@ "1966-10-31": "Halloween", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", + "1966-12-23": "Washington's Birthday", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day (observed)", "1967-02-02": "Groundhog Day", "1967-02-14": "Valentine's Day", - "1967-02-22": "Washington's Birthday", "1967-03-17": "Saint Patrick's Day", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", @@ -277,10 +276,10 @@ "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", + "1967-12-26": "Washington's Birthday", "1968-01-01": "New Year's Day", "1968-02-02": "Groundhog Day", "1968-02-14": "Valentine's Day", - "1968-02-22": "Washington's Birthday", "1968-03-17": "Saint Patrick's Day", "1968-04-12": "Good Friday", "1968-05-30": "Memorial Day", @@ -291,11 +290,11 @@ "1968-11-05": "Election Day", "1968-11-11": "Veterans Day", "1968-11-28": "Thanksgiving", + "1968-12-24": "Washington's Birthday", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-02": "Groundhog Day", "1969-02-14": "Valentine's Day", - "1969-02-22": "Washington's Birthday", "1969-03-17": "Saint Patrick's Day", "1969-04-04": "Good Friday", "1969-05-30": "Memorial Day", @@ -306,10 +305,10 @@ "1969-11-11": "Veterans Day", "1969-11-27": "Thanksgiving", "1969-12-25": "Christmas Day", + "1969-12-26": "Washington's Birthday", "1970-01-01": "New Year's Day", "1970-02-02": "Groundhog Day", "1970-02-14": "Valentine's Day", - "1970-02-22": "Washington's Birthday", "1970-03-17": "Saint Patrick's Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", @@ -320,11 +319,11 @@ "1970-10-31": "Halloween", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", + "1970-12-24": "Washington's Birthday", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-02-02": "Groundhog Day", "1971-02-14": "Valentine's Day", - "1971-02-15": "Washington's Birthday", "1971-03-17": "Saint Patrick's Day", "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", @@ -335,13 +334,13 @@ "1971-10-25": "Veterans Day", "1971-10-31": "Halloween", "1971-11-25": "Thanksgiving", + "1971-12-23": "Washington's Birthday", "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-02": "Groundhog Day", "1972-02-14": "Valentine's Day", - "1972-02-21": "Washington's Birthday", "1972-03-17": "Saint Patrick's Day", "1972-03-31": "Good Friday", "1972-05-29": "Memorial Day", @@ -353,10 +352,10 @@ "1972-11-07": "Election Day", "1972-11-23": "Thanksgiving", "1972-12-25": "Christmas Day", + "1972-12-26": "Washington's Birthday", "1973-01-01": "New Year's Day", "1973-02-02": "Groundhog Day", "1973-02-14": "Valentine's Day", - "1973-02-19": "Washington's Birthday", "1973-03-17": "Saint Patrick's Day", "1973-04-20": "Good Friday", "1973-05-28": "Memorial Day", @@ -366,11 +365,11 @@ "1973-10-22": "Veterans Day", "1973-10-31": "Halloween", "1973-11-22": "Thanksgiving", + "1973-12-24": "Washington's Birthday", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-02-02": "Groundhog Day", "1974-02-14": "Valentine's Day", - "1974-02-18": "Washington's Birthday", "1974-03-17": "Saint Patrick's Day", "1974-04-12": "Good Friday", "1974-05-27": "Memorial Day", @@ -380,11 +379,11 @@ "1974-10-28": "Veterans Day", "1974-10-31": "Halloween", "1974-11-28": "Thanksgiving", + "1974-12-24": "Washington's Birthday", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-02": "Groundhog Day", "1975-02-14": "Valentine's Day", - "1975-02-17": "Washington's Birthday", "1975-03-17": "Saint Patrick's Day", "1975-03-28": "Good Friday", "1975-05-26": "Memorial Day", @@ -395,10 +394,10 @@ "1975-10-31": "Halloween", "1975-11-27": "Thanksgiving", "1975-12-25": "Christmas Day", + "1975-12-26": "Washington's Birthday", "1976-01-01": "New Year's Day", "1976-02-02": "Groundhog Day", "1976-02-14": "Valentine's Day", - "1976-02-16": "Washington's Birthday", "1976-03-17": "Saint Patrick's Day", "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", @@ -410,13 +409,13 @@ "1976-10-31": "Halloween", "1976-11-02": "Election Day", "1976-11-25": "Thanksgiving", + "1976-12-23": "Washington's Birthday", "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-02": "Groundhog Day", "1977-02-14": "Valentine's Day", - "1977-02-21": "Washington's Birthday", "1977-03-17": "Saint Patrick's Day", "1977-04-08": "Good Friday", "1977-05-30": "Memorial Day", @@ -426,13 +425,13 @@ "1977-10-24": "Veterans Day", "1977-10-31": "Halloween", "1977-11-24": "Thanksgiving", + "1977-12-23": "Washington's Birthday", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day (observed)", "1978-02-02": "Groundhog Day", "1978-02-14": "Valentine's Day", - "1978-02-20": "Washington's Birthday", "1978-03-17": "Saint Patrick's Day", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", @@ -444,10 +443,10 @@ "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", + "1978-12-26": "Washington's Birthday", "1979-01-01": "New Year's Day", "1979-02-02": "Groundhog Day", "1979-02-14": "Valentine's Day", - "1979-02-19": "Washington's Birthday", "1979-03-17": "Saint Patrick's Day", "1979-04-13": "Good Friday", "1979-05-28": "Memorial Day", @@ -458,11 +457,11 @@ "1979-11-11": "Veterans Day", "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", + "1979-12-24": "Washington's Birthday", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-02-02": "Groundhog Day", "1980-02-14": "Valentine's Day", - "1980-02-18": "Washington's Birthday", "1980-03-17": "Saint Patrick's Day", "1980-04-04": "Good Friday", "1980-05-26": "Memorial Day", @@ -474,10 +473,10 @@ "1980-11-11": "Veterans Day", "1980-11-27": "Thanksgiving", "1980-12-25": "Christmas Day", + "1980-12-26": "Washington's Birthday", "1981-01-01": "New Year's Day", "1981-02-02": "Groundhog Day", "1981-02-14": "Valentine's Day", - "1981-02-16": "Washington's Birthday", "1981-03-17": "Saint Patrick's Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", @@ -488,11 +487,11 @@ "1981-10-31": "Halloween", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", + "1981-12-24": "Washington's Birthday", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-02-02": "Groundhog Day", "1982-02-14": "Valentine's Day", - "1982-02-15": "Washington's Birthday", "1982-03-17": "Saint Patrick's Day", "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", @@ -503,13 +502,13 @@ "1982-10-31": "Halloween", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", + "1982-12-23": "Washington's Birthday", "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-02": "Groundhog Day", "1983-02-14": "Valentine's Day", - "1983-02-21": "Washington's Birthday", "1983-03-17": "Saint Patrick's Day", "1983-04-01": "Good Friday", "1983-05-30": "Memorial Day", @@ -519,13 +518,13 @@ "1983-10-31": "Halloween", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", + "1983-12-23": "Washington's Birthday", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day (observed)", "1984-02-02": "Groundhog Day", "1984-02-14": "Valentine's Day", - "1984-02-20": "Washington's Birthday", "1984-03-17": "Saint Patrick's Day", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -537,11 +536,11 @@ "1984-11-11": "Veterans Day", "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", + "1984-12-24": "Washington's Birthday", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-02": "Groundhog Day", "1985-02-14": "Valentine's Day", - "1985-02-18": "Washington's Birthday", "1985-03-17": "Saint Patrick's Day", "1985-04-05": "Good Friday", "1985-05-27": "Memorial Day", @@ -551,12 +550,12 @@ "1985-10-31": "Halloween", "1985-11-11": "Veterans Day", "1985-11-28": "Thanksgiving", + "1985-12-24": "Washington's Birthday", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-20": "Martin Luther King Jr. Day", "1986-02-02": "Groundhog Day", "1986-02-14": "Valentine's Day", - "1986-02-17": "Washington's Birthday", "1986-03-17": "Saint Patrick's Day", "1986-03-28": "Good Friday", "1986-05-26": "Memorial Day", @@ -567,11 +566,11 @@ "1986-11-11": "Veterans Day", "1986-11-27": "Thanksgiving", "1986-12-25": "Christmas Day", + "1986-12-26": "Washington's Birthday", "1987-01-01": "New Year's Day", "1987-01-19": "Martin Luther King Jr. Day", "1987-02-02": "Groundhog Day", "1987-02-14": "Valentine's Day", - "1987-02-16": "Washington's Birthday", "1987-03-17": "Saint Patrick's Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", @@ -582,12 +581,12 @@ "1987-10-31": "Halloween", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", + "1987-12-24": "Washington's Birthday", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-01-18": "Martin Luther King Jr. Day", "1988-02-02": "Groundhog Day", "1988-02-14": "Valentine's Day", - "1988-02-15": "Washington's Birthday", "1988-03-17": "Saint Patrick's Day", "1988-04-01": "Good Friday", "1988-05-30": "Memorial Day", @@ -598,6 +597,7 @@ "1988-11-08": "Election Day", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", + "1988-12-23": "Washington's Birthday", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", @@ -605,7 +605,6 @@ "1989-01-16": "Martin Luther King Jr. Day", "1989-02-02": "Groundhog Day", "1989-02-14": "Valentine's Day", - "1989-02-20": "Washington's Birthday", "1989-03-17": "Saint Patrick's Day", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", @@ -617,11 +616,11 @@ "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", + "1989-12-26": "Washington's Birthday", "1990-01-01": "New Year's Day", "1990-01-15": "Martin Luther King Jr. Day", "1990-02-02": "Groundhog Day", "1990-02-14": "Valentine's Day", - "1990-02-19": "Washington's Birthday", "1990-03-17": "Saint Patrick's Day", "1990-04-13": "Good Friday", "1990-05-28": "Memorial Day", @@ -632,12 +631,12 @@ "1990-11-11": "Veterans Day", "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", + "1990-12-24": "Washington's Birthday", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-02": "Groundhog Day", "1991-02-14": "Valentine's Day", - "1991-02-18": "Washington's Birthday", "1991-03-17": "Saint Patrick's Day", "1991-03-29": "Good Friday", "1991-05-27": "Memorial Day", @@ -647,12 +646,12 @@ "1991-10-31": "Halloween", "1991-11-11": "Veterans Day", "1991-11-28": "Thanksgiving", + "1991-12-24": "Washington's Birthday", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", "1992-02-02": "Groundhog Day", "1992-02-14": "Valentine's Day", - "1992-02-17": "Washington's Birthday", "1992-03-17": "Saint Patrick's Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", @@ -664,12 +663,12 @@ "1992-11-03": "Election Day", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", + "1992-12-24": "Washington's Birthday", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-18": "Martin Luther King Jr. Day", "1993-02-02": "Groundhog Day", "1993-02-14": "Valentine's Day", - "1993-02-15": "Washington's Birthday", "1993-03-17": "Saint Patrick's Day", "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", @@ -680,6 +679,7 @@ "1993-10-31": "Halloween", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", + "1993-12-23": "Washington's Birthday", "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-31": "New Year's Day (observed)", @@ -687,7 +687,6 @@ "1994-01-17": "Martin Luther King Jr. Day", "1994-02-02": "Groundhog Day", "1994-02-14": "Valentine's Day", - "1994-02-21": "Washington's Birthday", "1994-03-17": "Saint Patrick's Day", "1994-04-01": "Good Friday", "1994-05-30": "Memorial Day", @@ -697,6 +696,7 @@ "1994-10-31": "Halloween", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", + "1994-12-23": "Washington's Birthday", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", @@ -704,7 +704,6 @@ "1995-01-16": "Martin Luther King Jr. Day", "1995-02-02": "Groundhog Day", "1995-02-14": "Valentine's Day", - "1995-02-20": "Washington's Birthday", "1995-03-17": "Saint Patrick's Day", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", @@ -716,11 +715,11 @@ "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", + "1995-12-26": "Washington's Birthday", "1996-01-01": "New Year's Day", "1996-01-15": "Martin Luther King Jr. Day", "1996-02-02": "Groundhog Day", "1996-02-14": "Valentine's Day", - "1996-02-19": "Washington's Birthday", "1996-03-17": "Saint Patrick's Day", "1996-04-05": "Good Friday", "1996-05-27": "Memorial Day", @@ -731,12 +730,12 @@ "1996-11-05": "Election Day", "1996-11-11": "Veterans Day", "1996-11-28": "Thanksgiving", + "1996-12-24": "Washington's Birthday", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-20": "Martin Luther King Jr. Day", "1997-02-02": "Groundhog Day", "1997-02-14": "Valentine's Day", - "1997-02-17": "Washington's Birthday", "1997-03-17": "Saint Patrick's Day", "1997-03-28": "Good Friday", "1997-05-26": "Memorial Day", @@ -747,11 +746,11 @@ "1997-11-11": "Veterans Day", "1997-11-27": "Thanksgiving", "1997-12-25": "Christmas Day", + "1997-12-26": "Washington's Birthday", "1998-01-01": "New Year's Day", "1998-01-19": "Martin Luther King Jr. Day", "1998-02-02": "Groundhog Day", "1998-02-14": "Valentine's Day", - "1998-02-16": "Washington's Birthday", "1998-03-17": "Saint Patrick's Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", @@ -762,12 +761,12 @@ "1998-10-31": "Halloween", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", + "1998-12-24": "Washington's Birthday", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-18": "Martin Luther King Jr. Day", "1999-02-02": "Groundhog Day", "1999-02-14": "Valentine's Day", - "1999-02-15": "Washington's Birthday", "1999-03-17": "Saint Patrick's Day", "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", @@ -778,6 +777,7 @@ "1999-10-31": "Halloween", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", + "1999-12-23": "Washington's Birthday", "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-31": "New Year's Day (observed)", @@ -785,7 +785,6 @@ "2000-01-17": "Martin Luther King Jr. Day", "2000-02-02": "Groundhog Day", "2000-02-14": "Valentine's Day", - "2000-02-21": "Washington's Birthday", "2000-03-17": "Saint Patrick's Day", "2000-04-21": "Good Friday", "2000-05-29": "Memorial Day", @@ -798,11 +797,11 @@ "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", + "2000-12-26": "Washington's Birthday", "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-02": "Groundhog Day", "2001-02-14": "Valentine's Day", - "2001-02-19": "Washington's Birthday", "2001-03-17": "Saint Patrick's Day", "2001-04-13": "Good Friday", "2001-05-28": "Memorial Day", @@ -813,12 +812,12 @@ "2001-11-11": "Veterans Day", "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", + "2001-12-24": "Washington's Birthday", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-02": "Groundhog Day", "2002-02-14": "Valentine's Day", - "2002-02-18": "Washington's Birthday", "2002-03-17": "Saint Patrick's Day", "2002-03-29": "Good Friday", "2002-05-27": "Memorial Day", @@ -828,12 +827,12 @@ "2002-10-31": "Halloween", "2002-11-11": "Veterans Day", "2002-11-28": "Thanksgiving", + "2002-12-24": "Washington's Birthday", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", "2003-02-02": "Groundhog Day", "2003-02-14": "Valentine's Day", - "2003-02-17": "Washington's Birthday", "2003-03-17": "Saint Patrick's Day", "2003-04-18": "Good Friday", "2003-05-26": "Memorial Day", @@ -844,11 +843,11 @@ "2003-11-11": "Veterans Day", "2003-11-27": "Thanksgiving", "2003-12-25": "Christmas Day", + "2003-12-26": "Washington's Birthday", "2004-01-01": "New Year's Day", "2004-01-19": "Martin Luther King Jr. Day", "2004-02-02": "Groundhog Day", "2004-02-14": "Valentine's Day", - "2004-02-16": "Washington's Birthday", "2004-03-17": "Saint Patrick's Day", "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", @@ -860,6 +859,7 @@ "2004-11-02": "Election Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", + "2004-12-23": "Washington's Birthday", "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-31": "New Year's Day (observed)", @@ -867,7 +867,6 @@ "2005-01-17": "Martin Luther King Jr. Day", "2005-02-02": "Groundhog Day", "2005-02-14": "Valentine's Day", - "2005-02-21": "Washington's Birthday", "2005-03-17": "Saint Patrick's Day", "2005-03-25": "Good Friday", "2005-05-30": "Memorial Day", @@ -877,6 +876,7 @@ "2005-10-31": "Halloween", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", + "2005-12-23": "Washington's Birthday", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", @@ -884,7 +884,6 @@ "2006-01-16": "Martin Luther King Jr. Day", "2006-02-02": "Groundhog Day", "2006-02-14": "Valentine's Day", - "2006-02-20": "Washington's Birthday", "2006-03-17": "Saint Patrick's Day", "2006-04-14": "Good Friday", "2006-05-02": "Primary Election Day", @@ -897,11 +896,11 @@ "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", + "2006-12-26": "Washington's Birthday", "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-02": "Groundhog Day", "2007-02-14": "Valentine's Day", - "2007-02-19": "Washington's Birthday", "2007-03-17": "Saint Patrick's Day", "2007-04-06": "Good Friday", "2007-05-28": "Memorial Day", @@ -912,12 +911,12 @@ "2007-11-11": "Veterans Day", "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", + "2007-12-24": "Washington's Birthday", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-21": "Martin Luther King Jr. Day", "2008-02-02": "Groundhog Day", "2008-02-14": "Valentine's Day", - "2008-02-18": "Washington's Birthday", "2008-03-17": "Saint Patrick's Day", "2008-03-21": "Good Friday", "2008-05-06": "Primary Election Day", @@ -930,11 +929,11 @@ "2008-11-11": "Veterans Day", "2008-11-27": "Thanksgiving", "2008-12-25": "Christmas Day", + "2008-12-26": "Washington's Birthday", "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-02-02": "Groundhog Day", "2009-02-14": "Valentine's Day", - "2009-02-16": "Washington's Birthday", "2009-03-17": "Saint Patrick's Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", @@ -945,12 +944,12 @@ "2009-10-31": "Halloween", "2009-11-11": "Veterans Day", "2009-11-26": "Thanksgiving", + "2009-12-24": "Washington's Birthday", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-18": "Martin Luther King Jr. Day", "2010-02-02": "Groundhog Day", "2010-02-14": "Valentine's Day", - "2010-02-15": "Washington's Birthday", "2010-03-17": "Saint Patrick's Day", "2010-04-02": "Good Friday", "2010-05-04": "Primary Election Day", @@ -964,6 +963,7 @@ "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Lincoln's Birthday", + "2010-12-23": "Washington's Birthday", "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-31": "New Year's Day (observed)", @@ -971,7 +971,6 @@ "2011-01-17": "Martin Luther King Jr. Day", "2011-02-02": "Groundhog Day", "2011-02-14": "Valentine's Day", - "2011-02-21": "Washington's Birthday", "2011-03-17": "Saint Patrick's Day", "2011-04-22": "Good Friday", "2011-05-30": "Memorial Day", @@ -982,6 +981,7 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-11-25": "Lincoln's Birthday", + "2011-12-23": "Washington's Birthday", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", @@ -989,7 +989,6 @@ "2012-01-16": "Martin Luther King Jr. Day", "2012-02-02": "Groundhog Day", "2012-02-14": "Valentine's Day", - "2012-02-20": "Washington's Birthday", "2012-03-17": "Saint Patrick's Day", "2012-04-06": "Good Friday", "2012-05-08": "Primary Election Day", @@ -1003,12 +1002,12 @@ "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Lincoln's Birthday", + "2012-12-24": "Washington's Birthday", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-02": "Groundhog Day", "2013-02-14": "Valentine's Day", - "2013-02-18": "Washington's Birthday", "2013-03-17": "Saint Patrick's Day", "2013-03-29": "Good Friday", "2013-05-27": "Memorial Day", @@ -1019,12 +1018,12 @@ "2013-11-11": "Veterans Day", "2013-11-28": "Thanksgiving", "2013-11-29": "Lincoln's Birthday", + "2013-12-24": "Washington's Birthday", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", "2014-02-02": "Groundhog Day", "2014-02-14": "Valentine's Day", - "2014-02-17": "Washington's Birthday", "2014-03-17": "Saint Patrick's Day", "2014-04-18": "Good Friday", "2014-05-06": "Primary Election Day", @@ -1038,11 +1037,11 @@ "2014-11-27": "Thanksgiving", "2014-11-28": "Lincoln's Birthday", "2014-12-25": "Christmas Day", + "2014-12-26": "Washington's Birthday", "2015-01-01": "New Year's Day", "2015-01-19": "Martin Luther King Jr. Day", "2015-02-02": "Groundhog Day", "2015-02-14": "Valentine's Day", - "2015-02-16": "Washington's Birthday", "2015-03-17": "Saint Patrick's Day", "2015-04-03": "Good Friday", "2015-05-05": "Primary Election Day", @@ -1056,12 +1055,12 @@ "2015-11-11": "Veterans Day", "2015-11-26": "Thanksgiving", "2015-11-27": "Lincoln's Birthday", + "2015-12-24": "Washington's Birthday", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-02": "Groundhog Day", "2016-02-14": "Valentine's Day", - "2016-02-15": "Washington's Birthday", "2016-03-17": "Saint Patrick's Day", "2016-03-25": "Good Friday", "2016-05-03": "Primary Election Day", @@ -1074,6 +1073,7 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-11-25": "Lincoln's Birthday", + "2016-12-23": "Washington's Birthday", "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", @@ -1081,7 +1081,6 @@ "2017-01-16": "Martin Luther King Jr. Day", "2017-02-02": "Groundhog Day", "2017-02-14": "Valentine's Day", - "2017-02-20": "Washington's Birthday", "2017-03-17": "Saint Patrick's Day", "2017-04-14": "Good Friday", "2017-05-02": "Primary Election Day", @@ -1096,11 +1095,11 @@ "2017-11-23": "Thanksgiving", "2017-11-24": "Lincoln's Birthday", "2017-12-25": "Christmas Day", + "2017-12-26": "Washington's Birthday", "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-02": "Groundhog Day", "2018-02-14": "Valentine's Day", - "2018-02-19": "Washington's Birthday", "2018-03-17": "Saint Patrick's Day", "2018-03-30": "Good Friday", "2018-05-08": "Primary Election Day", @@ -1114,12 +1113,12 @@ "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Lincoln's Birthday", + "2018-12-24": "Washington's Birthday", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-02": "Groundhog Day", "2019-02-14": "Valentine's Day", - "2019-02-18": "Washington's Birthday", "2019-03-17": "Saint Patrick's Day", "2019-04-19": "Good Friday", "2019-05-07": "Primary Election Day", @@ -1132,12 +1131,12 @@ "2019-11-11": "Veterans Day", "2019-11-28": "Thanksgiving", "2019-11-29": "Lincoln's Birthday", + "2019-12-24": "Washington's Birthday", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", "2020-02-02": "Groundhog Day", "2020-02-14": "Valentine's Day", - "2020-02-17": "Washington's Birthday", "2020-03-17": "Saint Patrick's Day", "2020-04-10": "Good Friday", "2020-05-05": "Primary Election Day", @@ -1151,12 +1150,12 @@ "2020-11-11": "Veterans Day", "2020-11-26": "Thanksgiving", "2020-11-27": "Lincoln's Birthday", + "2020-12-24": "Washington's Birthday", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-02": "Groundhog Day", "2021-02-14": "Valentine's Day", - "2021-02-15": "Washington's Birthday", "2021-03-17": "Saint Patrick's Day", "2021-04-02": "Good Friday", "2021-05-04": "Primary Election Day", @@ -1172,6 +1171,7 @@ "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Lincoln's Birthday", + "2021-12-23": "Washington's Birthday", "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-31": "New Year's Day (observed)", @@ -1179,7 +1179,6 @@ "2022-01-17": "Martin Luther King Jr. Day", "2022-02-02": "Groundhog Day", "2022-02-14": "Valentine's Day", - "2022-02-21": "Washington's Birthday", "2022-03-17": "Saint Patrick's Day", "2022-04-15": "Good Friday", "2022-05-03": "Primary Election Day", @@ -1194,6 +1193,7 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Lincoln's Birthday", + "2022-12-23": "Washington's Birthday", "2022-12-25": "Christmas Day", "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", @@ -1201,7 +1201,6 @@ "2023-01-16": "Martin Luther King Jr. Day", "2023-02-02": "Groundhog Day", "2023-02-14": "Valentine's Day", - "2023-02-20": "Washington's Birthday", "2023-03-17": "Saint Patrick's Day", "2023-04-07": "Good Friday", "2023-05-02": "Primary Election Day", @@ -1217,11 +1216,11 @@ "2023-11-23": "Thanksgiving", "2023-11-24": "Lincoln's Birthday", "2023-12-25": "Christmas Day", + "2023-12-26": "Washington's Birthday", "2024-01-01": "New Year's Day", "2024-01-15": "Martin Luther King Jr. Day", "2024-02-02": "Groundhog Day", "2024-02-14": "Valentine's Day", - "2024-02-19": "Washington's Birthday", "2024-03-17": "Saint Patrick's Day", "2024-03-29": "Good Friday", "2024-05-07": "Primary Election Day", @@ -1235,12 +1234,12 @@ "2024-11-11": "Veterans Day", "2024-11-28": "Thanksgiving", "2024-11-29": "Lincoln's Birthday", + "2024-12-24": "Washington's Birthday", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", "2025-02-02": "Groundhog Day", "2025-02-14": "Valentine's Day", - "2025-02-17": "Washington's Birthday", "2025-03-17": "Saint Patrick's Day", "2025-04-18": "Good Friday", "2025-05-06": "Primary Election Day", @@ -1255,11 +1254,11 @@ "2025-11-27": "Thanksgiving", "2025-11-28": "Lincoln's Birthday", "2025-12-25": "Christmas Day", + "2025-12-26": "Washington's Birthday", "2026-01-01": "New Year's Day", "2026-01-19": "Martin Luther King Jr. Day", "2026-02-02": "Groundhog Day", "2026-02-14": "Valentine's Day", - "2026-02-16": "Washington's Birthday", "2026-03-17": "Saint Patrick's Day", "2026-04-03": "Good Friday", "2026-05-05": "Primary Election Day", @@ -1274,12 +1273,12 @@ "2026-11-11": "Veterans Day", "2026-11-26": "Thanksgiving", "2026-11-27": "Lincoln's Birthday", + "2026-12-24": "Washington's Birthday", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-02": "Groundhog Day", "2027-02-14": "Valentine's Day", - "2027-02-15": "Washington's Birthday", "2027-03-17": "Saint Patrick's Day", "2027-03-26": "Good Friday", "2027-05-04": "Primary Election Day", @@ -1295,6 +1294,7 @@ "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Lincoln's Birthday", + "2027-12-23": "Washington's Birthday", "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-31": "New Year's Day (observed)", @@ -1302,7 +1302,6 @@ "2028-01-17": "Martin Luther King Jr. Day", "2028-02-02": "Groundhog Day", "2028-02-14": "Valentine's Day", - "2028-02-21": "Washington's Birthday", "2028-03-17": "Saint Patrick's Day", "2028-04-14": "Good Friday", "2028-05-02": "Primary Election Day", @@ -1318,11 +1317,11 @@ "2028-11-23": "Thanksgiving", "2028-11-24": "Lincoln's Birthday", "2028-12-25": "Christmas Day", + "2028-12-26": "Washington's Birthday", "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-02": "Groundhog Day", "2029-02-14": "Valentine's Day", - "2029-02-19": "Washington's Birthday", "2029-03-17": "Saint Patrick's Day", "2029-03-30": "Good Friday", "2029-05-08": "Primary Election Day", @@ -1337,12 +1336,12 @@ "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Lincoln's Birthday", + "2029-12-24": "Washington's Birthday", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-02": "Groundhog Day", "2030-02-14": "Valentine's Day", - "2030-02-18": "Washington's Birthday", "2030-03-17": "Saint Patrick's Day", "2030-04-19": "Good Friday", "2030-05-07": "Primary Election Day", @@ -1356,12 +1355,12 @@ "2030-11-11": "Veterans Day", "2030-11-28": "Thanksgiving", "2030-11-29": "Lincoln's Birthday", + "2030-12-24": "Washington's Birthday", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", "2031-02-02": "Groundhog Day", "2031-02-14": "Valentine's Day", - "2031-02-17": "Washington's Birthday", "2031-03-17": "Saint Patrick's Day", "2031-04-11": "Good Friday", "2031-05-06": "Primary Election Day", @@ -1376,11 +1375,11 @@ "2031-11-27": "Thanksgiving", "2031-11-28": "Lincoln's Birthday", "2031-12-25": "Christmas Day", + "2031-12-26": "Washington's Birthday", "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-02-02": "Groundhog Day", "2032-02-14": "Valentine's Day", - "2032-02-16": "Washington's Birthday", "2032-03-17": "Saint Patrick's Day", "2032-03-26": "Good Friday", "2032-05-04": "Primary Election Day", @@ -1396,6 +1395,7 @@ "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Lincoln's Birthday", + "2032-12-23": "Washington's Birthday", "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-31": "New Year's Day (observed)", @@ -1403,7 +1403,6 @@ "2033-01-17": "Martin Luther King Jr. Day", "2033-02-02": "Groundhog Day", "2033-02-14": "Valentine's Day", - "2033-02-21": "Washington's Birthday", "2033-03-17": "Saint Patrick's Day", "2033-04-15": "Good Friday", "2033-05-03": "Primary Election Day", @@ -1418,6 +1417,7 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Lincoln's Birthday", + "2033-12-23": "Washington's Birthday", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", @@ -1425,7 +1425,6 @@ "2034-01-16": "Martin Luther King Jr. Day", "2034-02-02": "Groundhog Day", "2034-02-14": "Valentine's Day", - "2034-02-20": "Washington's Birthday", "2034-03-17": "Saint Patrick's Day", "2034-04-07": "Good Friday", "2034-05-02": "Primary Election Day", @@ -1441,11 +1440,11 @@ "2034-11-23": "Thanksgiving", "2034-11-24": "Lincoln's Birthday", "2034-12-25": "Christmas Day", + "2034-12-26": "Washington's Birthday", "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-02": "Groundhog Day", "2035-02-14": "Valentine's Day", - "2035-02-19": "Washington's Birthday", "2035-03-17": "Saint Patrick's Day", "2035-03-23": "Good Friday", "2035-05-08": "Primary Election Day", @@ -1460,12 +1459,12 @@ "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Lincoln's Birthday", + "2035-12-24": "Washington's Birthday", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-21": "Martin Luther King Jr. Day", "2036-02-02": "Groundhog Day", "2036-02-14": "Valentine's Day", - "2036-02-18": "Washington's Birthday", "2036-03-17": "Saint Patrick's Day", "2036-04-11": "Good Friday", "2036-05-06": "Primary Election Day", @@ -1480,11 +1479,11 @@ "2036-11-27": "Thanksgiving", "2036-11-28": "Lincoln's Birthday", "2036-12-25": "Christmas Day", + "2036-12-26": "Washington's Birthday", "2037-01-01": "New Year's Day", "2037-01-19": "Martin Luther King Jr. Day", "2037-02-02": "Groundhog Day", "2037-02-14": "Valentine's Day", - "2037-02-16": "Washington's Birthday", "2037-03-17": "Saint Patrick's Day", "2037-04-03": "Good Friday", "2037-05-05": "Primary Election Day", @@ -1499,12 +1498,12 @@ "2037-11-11": "Veterans Day", "2037-11-26": "Thanksgiving", "2037-11-27": "Lincoln's Birthday", + "2037-12-24": "Washington's Birthday", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-02": "Groundhog Day", "2038-02-14": "Valentine's Day", - "2038-02-15": "Washington's Birthday", "2038-03-17": "Saint Patrick's Day", "2038-04-23": "Good Friday", "2038-05-04": "Primary Election Day", @@ -1520,6 +1519,7 @@ "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Lincoln's Birthday", + "2038-12-23": "Washington's Birthday", "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-31": "New Year's Day (observed)", @@ -1527,7 +1527,6 @@ "2039-01-17": "Martin Luther King Jr. Day", "2039-02-02": "Groundhog Day", "2039-02-14": "Valentine's Day", - "2039-02-21": "Washington's Birthday", "2039-03-17": "Saint Patrick's Day", "2039-04-08": "Good Friday", "2039-05-03": "Primary Election Day", @@ -1542,6 +1541,7 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Lincoln's Birthday", + "2039-12-23": "Washington's Birthday", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", @@ -1549,7 +1549,6 @@ "2040-01-16": "Martin Luther King Jr. Day", "2040-02-02": "Groundhog Day", "2040-02-14": "Valentine's Day", - "2040-02-20": "Washington's Birthday", "2040-03-17": "Saint Patrick's Day", "2040-03-30": "Good Friday", "2040-05-08": "Primary Election Day", @@ -1564,12 +1563,12 @@ "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Lincoln's Birthday", + "2040-12-24": "Washington's Birthday", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-02": "Groundhog Day", "2041-02-14": "Valentine's Day", - "2041-02-18": "Washington's Birthday", "2041-03-17": "Saint Patrick's Day", "2041-04-19": "Good Friday", "2041-05-07": "Primary Election Day", @@ -1583,12 +1582,12 @@ "2041-11-11": "Veterans Day", "2041-11-28": "Thanksgiving", "2041-11-29": "Lincoln's Birthday", + "2041-12-24": "Washington's Birthday", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", "2042-02-02": "Groundhog Day", "2042-02-14": "Valentine's Day", - "2042-02-17": "Washington's Birthday", "2042-03-17": "Saint Patrick's Day", "2042-04-04": "Good Friday", "2042-05-06": "Primary Election Day", @@ -1603,11 +1602,11 @@ "2042-11-27": "Thanksgiving", "2042-11-28": "Lincoln's Birthday", "2042-12-25": "Christmas Day", + "2042-12-26": "Washington's Birthday", "2043-01-01": "New Year's Day", "2043-01-19": "Martin Luther King Jr. Day", "2043-02-02": "Groundhog Day", "2043-02-14": "Valentine's Day", - "2043-02-16": "Washington's Birthday", "2043-03-17": "Saint Patrick's Day", "2043-03-27": "Good Friday", "2043-05-05": "Primary Election Day", @@ -1622,12 +1621,12 @@ "2043-11-11": "Veterans Day", "2043-11-26": "Thanksgiving", "2043-11-27": "Lincoln's Birthday", + "2043-12-24": "Washington's Birthday", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-02": "Groundhog Day", "2044-02-14": "Valentine's Day", - "2044-02-15": "Washington's Birthday", "2044-03-17": "Saint Patrick's Day", "2044-04-15": "Good Friday", "2044-05-03": "Primary Election Day", @@ -1642,6 +1641,7 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Lincoln's Birthday", + "2044-12-23": "Washington's Birthday", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", @@ -1649,7 +1649,6 @@ "2045-01-16": "Martin Luther King Jr. Day", "2045-02-02": "Groundhog Day", "2045-02-14": "Valentine's Day", - "2045-02-20": "Washington's Birthday", "2045-03-17": "Saint Patrick's Day", "2045-04-07": "Good Friday", "2045-05-02": "Primary Election Day", @@ -1665,11 +1664,11 @@ "2045-11-23": "Thanksgiving", "2045-11-24": "Lincoln's Birthday", "2045-12-25": "Christmas Day", + "2045-12-26": "Washington's Birthday", "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-02": "Groundhog Day", "2046-02-14": "Valentine's Day", - "2046-02-19": "Washington's Birthday", "2046-03-17": "Saint Patrick's Day", "2046-03-23": "Good Friday", "2046-05-08": "Primary Election Day", @@ -1684,12 +1683,12 @@ "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Lincoln's Birthday", + "2046-12-24": "Washington's Birthday", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-02": "Groundhog Day", "2047-02-14": "Valentine's Day", - "2047-02-18": "Washington's Birthday", "2047-03-17": "Saint Patrick's Day", "2047-04-12": "Good Friday", "2047-05-07": "Primary Election Day", @@ -1703,12 +1702,12 @@ "2047-11-11": "Veterans Day", "2047-11-28": "Thanksgiving", "2047-11-29": "Lincoln's Birthday", + "2047-12-24": "Washington's Birthday", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", "2048-02-02": "Groundhog Day", "2048-02-14": "Valentine's Day", - "2048-02-17": "Washington's Birthday", "2048-03-17": "Saint Patrick's Day", "2048-04-03": "Good Friday", "2048-05-05": "Primary Election Day", @@ -1723,12 +1722,12 @@ "2048-11-11": "Veterans Day", "2048-11-26": "Thanksgiving", "2048-11-27": "Lincoln's Birthday", + "2048-12-24": "Washington's Birthday", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-02": "Groundhog Day", "2049-02-14": "Valentine's Day", - "2049-02-15": "Washington's Birthday", "2049-03-17": "Saint Patrick's Day", "2049-04-16": "Good Friday", "2049-05-04": "Primary Election Day", @@ -1744,6 +1743,7 @@ "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Lincoln's Birthday", + "2049-12-23": "Washington's Birthday", "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-31": "New Year's Day (observed)", @@ -1751,7 +1751,6 @@ "2050-01-17": "Martin Luther King Jr. Day", "2050-02-02": "Groundhog Day", "2050-02-14": "Valentine's Day", - "2050-02-21": "Washington's Birthday", "2050-03-17": "Saint Patrick's Day", "2050-04-08": "Good Friday", "2050-05-03": "Primary Election Day", @@ -1766,6 +1765,7 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Lincoln's Birthday", + "2050-12-23": "Washington's Birthday", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/VN_COMMON.json b/snapshots/countries/VN_COMMON.json index a68972aa3..bc9419105 100644 --- a/snapshots/countries/VN_COMMON.json +++ b/snapshots/countries/VN_COMMON.json @@ -1,1186 +1,1186 @@ { - "1950-01-01": "International New Year's Day", - "1950-01-02": "International New Year's Day (observed)", - "1950-02-16": "Vietnamese New Year's Eve", - "1950-02-17": "Vietnamese New Year", + "1950-01-01": "New Year's Day", + "1950-01-02": "New Year's Day (observed)", + "1950-02-16": "Lunar New Year's Eve", + "1950-02-17": "Lunar New Year", "1950-02-18": "The second day of Tet Holiday", "1950-02-19": "The third day of Tet Holiday", - "1950-02-20": "The forth day of Tet Holiday", + "1950-02-20": "The fourth day of Tet Holiday", "1950-02-21": "The fifth day of Tet Holiday", "1950-04-30": "Liberation Day/Reunification Day", "1950-05-01": "International Labor Day", "1950-05-02": "Liberation Day/Reunification Day (observed)", - "1950-09-02": "Independence Day", - "1950-09-04": "Independence Day (observed)", - "1951-01-01": "International New Year's Day", - "1951-02-05": "Vietnamese New Year's Eve", - "1951-02-06": "Vietnamese New Year", + "1950-09-02": "National Day", + "1950-09-04": "National Day (observed)", + "1951-01-01": "New Year's Day", + "1951-02-05": "Lunar New Year's Eve", + "1951-02-06": "Lunar New Year", "1951-02-07": "The second day of Tet Holiday", "1951-02-08": "The third day of Tet Holiday", - "1951-02-09": "The forth day of Tet Holiday", + "1951-02-09": "The fourth day of Tet Holiday", "1951-02-10": "The fifth day of Tet Holiday", "1951-04-30": "Liberation Day/Reunification Day", "1951-05-01": "International Labor Day", - "1951-09-02": "Independence Day", - "1951-09-03": "Independence Day (observed)", - "1952-01-01": "International New Year's Day", - "1952-01-26": "Vietnamese New Year's Eve", - "1952-01-27": "Vietnamese New Year", + "1951-09-02": "National Day", + "1951-09-03": "National Day (observed)", + "1952-01-01": "New Year's Day", + "1952-01-26": "Lunar New Year's Eve", + "1952-01-27": "Lunar New Year", "1952-01-28": "The second day of Tet Holiday", "1952-01-29": "The third day of Tet Holiday", - "1952-01-30": "The forth day of Tet Holiday", + "1952-01-30": "The fourth day of Tet Holiday", "1952-01-31": "The fifth day of Tet Holiday", "1952-04-30": "Liberation Day/Reunification Day", "1952-05-01": "International Labor Day", - "1952-09-02": "Independence Day", - "1953-01-01": "International New Year's Day", - "1953-02-13": "Vietnamese New Year's Eve", - "1953-02-14": "Vietnamese New Year", + "1952-09-02": "National Day", + "1953-01-01": "New Year's Day", + "1953-02-13": "Lunar New Year's Eve", + "1953-02-14": "Lunar New Year", "1953-02-15": "The second day of Tet Holiday", "1953-02-16": "The third day of Tet Holiday", - "1953-02-17": "The forth day of Tet Holiday", + "1953-02-17": "The fourth day of Tet Holiday", "1953-02-18": "The fifth day of Tet Holiday", "1953-04-30": "Liberation Day/Reunification Day", "1953-05-01": "International Labor Day", - "1953-09-02": "Independence Day", - "1954-01-01": "International New Year's Day", - "1954-02-02": "Vietnamese New Year's Eve", - "1954-02-03": "Vietnamese New Year", + "1953-09-02": "National Day", + "1954-01-01": "New Year's Day", + "1954-02-02": "Lunar New Year's Eve", + "1954-02-03": "Lunar New Year", "1954-02-04": "The second day of Tet Holiday", "1954-02-05": "The third day of Tet Holiday", - "1954-02-06": "The forth day of Tet Holiday", + "1954-02-06": "The fourth day of Tet Holiday", "1954-02-07": "The fifth day of Tet Holiday", "1954-04-30": "Liberation Day/Reunification Day", "1954-05-01": "International Labor Day", "1954-05-03": "International Labor Day (observed)", - "1954-09-02": "Independence Day", - "1955-01-01": "International New Year's Day", - "1955-01-03": "International New Year's Day (observed)", - "1955-01-23": "Vietnamese New Year's Eve", - "1955-01-24": "Vietnamese New Year", + "1954-09-02": "National Day", + "1955-01-01": "New Year's Day", + "1955-01-03": "New Year's Day (observed)", + "1955-01-23": "Lunar New Year's Eve", + "1955-01-24": "Lunar New Year", "1955-01-25": "The second day of Tet Holiday", "1955-01-26": "The third day of Tet Holiday", - "1955-01-27": "The forth day of Tet Holiday", + "1955-01-27": "The fourth day of Tet Holiday", "1955-01-28": "The fifth day of Tet Holiday", "1955-04-30": "Liberation Day/Reunification Day", "1955-05-01": "International Labor Day", "1955-05-02": "Liberation Day/Reunification Day (observed)", "1955-05-03": "International Labor Day (observed)", - "1955-09-02": "Independence Day", - "1956-01-01": "International New Year's Day", - "1956-01-02": "International New Year's Day (observed)", - "1956-02-11": "Vietnamese New Year's Eve", - "1956-02-12": "Vietnamese New Year", + "1955-09-02": "National Day", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-11": "Lunar New Year's Eve", + "1956-02-12": "Lunar New Year", "1956-02-13": "The second day of Tet Holiday", "1956-02-14": "The third day of Tet Holiday", - "1956-02-15": "The forth day of Tet Holiday", + "1956-02-15": "The fourth day of Tet Holiday", "1956-02-16": "The fifth day of Tet Holiday", "1956-04-30": "Liberation Day/Reunification Day", "1956-05-01": "International Labor Day", - "1956-09-02": "Independence Day", - "1956-09-03": "Independence Day (observed)", - "1957-01-01": "International New Year's Day", - "1957-01-30": "Vietnamese New Year's Eve", - "1957-01-31": "Vietnamese New Year", + "1956-09-02": "National Day", + "1956-09-03": "National Day (observed)", + "1957-01-01": "New Year's Day", + "1957-01-30": "Lunar New Year's Eve", + "1957-01-31": "Lunar New Year", "1957-02-01": "The second day of Tet Holiday", "1957-02-02": "The third day of Tet Holiday", - "1957-02-03": "The forth day of Tet Holiday", + "1957-02-03": "The fourth day of Tet Holiday", "1957-02-04": "The fifth day of Tet Holiday", "1957-04-30": "Liberation Day/Reunification Day", "1957-05-01": "International Labor Day", - "1957-09-02": "Independence Day", - "1958-01-01": "International New Year's Day", - "1958-02-17": "Vietnamese New Year's Eve", - "1958-02-18": "Vietnamese New Year", + "1957-09-02": "National Day", + "1958-01-01": "New Year's Day", + "1958-02-17": "Lunar New Year's Eve", + "1958-02-18": "Lunar New Year", "1958-02-19": "The second day of Tet Holiday", "1958-02-20": "The third day of Tet Holiday", - "1958-02-21": "The forth day of Tet Holiday", + "1958-02-21": "The fourth day of Tet Holiday", "1958-02-22": "The fifth day of Tet Holiday", "1958-04-30": "Liberation Day/Reunification Day", "1958-05-01": "International Labor Day", - "1958-09-02": "Independence Day", - "1959-01-01": "International New Year's Day", - "1959-02-07": "Vietnamese New Year's Eve", - "1959-02-08": "Vietnamese New Year", + "1958-09-02": "National Day", + "1959-01-01": "New Year's Day", + "1959-02-07": "Lunar New Year's Eve", + "1959-02-08": "Lunar New Year", "1959-02-09": "The second day of Tet Holiday", "1959-02-10": "The third day of Tet Holiday", - "1959-02-11": "The forth day of Tet Holiday", + "1959-02-11": "The fourth day of Tet Holiday", "1959-02-12": "The fifth day of Tet Holiday", "1959-04-30": "Liberation Day/Reunification Day", "1959-05-01": "International Labor Day", - "1959-09-02": "Independence Day", - "1960-01-01": "International New Year's Day", - "1960-01-27": "Vietnamese New Year's Eve", - "1960-01-28": "Vietnamese New Year", + "1959-09-02": "National Day", + "1960-01-01": "New Year's Day", + "1960-01-27": "Lunar New Year's Eve", + "1960-01-28": "Lunar New Year", "1960-01-29": "The second day of Tet Holiday", "1960-01-30": "The third day of Tet Holiday", - "1960-01-31": "The forth day of Tet Holiday", + "1960-01-31": "The fourth day of Tet Holiday", "1960-02-01": "The fifth day of Tet Holiday", "1960-04-30": "Liberation Day/Reunification Day", "1960-05-01": "International Labor Day", "1960-05-02": "Liberation Day/Reunification Day (observed)", "1960-05-03": "International Labor Day (observed)", - "1960-09-02": "Independence Day", - "1961-01-01": "International New Year's Day", - "1961-01-02": "International New Year's Day (observed)", - "1961-02-14": "Vietnamese New Year's Eve", - "1961-02-15": "Vietnamese New Year", + "1960-09-02": "National Day", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-14": "Lunar New Year's Eve", + "1961-02-15": "Lunar New Year", "1961-02-16": "The second day of Tet Holiday", "1961-02-17": "The third day of Tet Holiday", - "1961-02-18": "The forth day of Tet Holiday", + "1961-02-18": "The fourth day of Tet Holiday", "1961-02-19": "The fifth day of Tet Holiday", "1961-04-30": "Liberation Day/Reunification Day", "1961-05-01": "International Labor Day", "1961-05-02": "Liberation Day/Reunification Day (observed)", - "1961-09-02": "Independence Day", - "1961-09-04": "Independence Day (observed)", - "1962-01-01": "International New Year's Day", - "1962-02-04": "Vietnamese New Year's Eve", - "1962-02-05": "Vietnamese New Year", + "1961-09-02": "National Day", + "1961-09-04": "National Day (observed)", + "1962-01-01": "New Year's Day", + "1962-02-04": "Lunar New Year's Eve", + "1962-02-05": "Lunar New Year", "1962-02-06": "The second day of Tet Holiday", "1962-02-07": "The third day of Tet Holiday", - "1962-02-08": "The forth day of Tet Holiday", + "1962-02-08": "The fourth day of Tet Holiday", "1962-02-09": "The fifth day of Tet Holiday", "1962-04-30": "Liberation Day/Reunification Day", "1962-05-01": "International Labor Day", - "1962-09-02": "Independence Day", - "1962-09-03": "Independence Day (observed)", - "1963-01-01": "International New Year's Day", - "1963-01-24": "Vietnamese New Year's Eve", - "1963-01-25": "Vietnamese New Year", + "1962-09-02": "National Day", + "1962-09-03": "National Day (observed)", + "1963-01-01": "New Year's Day", + "1963-01-24": "Lunar New Year's Eve", + "1963-01-25": "Lunar New Year", "1963-01-26": "The second day of Tet Holiday", "1963-01-27": "The third day of Tet Holiday", - "1963-01-28": "The forth day of Tet Holiday", + "1963-01-28": "The fourth day of Tet Holiday", "1963-01-29": "The fifth day of Tet Holiday", "1963-04-30": "Liberation Day/Reunification Day", "1963-05-01": "International Labor Day", - "1963-09-02": "Independence Day", - "1964-01-01": "International New Year's Day", - "1964-02-12": "Vietnamese New Year's Eve", - "1964-02-13": "Vietnamese New Year", + "1963-09-02": "National Day", + "1964-01-01": "New Year's Day", + "1964-02-12": "Lunar New Year's Eve", + "1964-02-13": "Lunar New Year", "1964-02-14": "The second day of Tet Holiday", "1964-02-15": "The third day of Tet Holiday", - "1964-02-16": "The forth day of Tet Holiday", + "1964-02-16": "The fourth day of Tet Holiday", "1964-02-17": "The fifth day of Tet Holiday", "1964-04-30": "Liberation Day/Reunification Day", "1964-05-01": "International Labor Day", - "1964-09-02": "Independence Day", - "1965-01-01": "International New Year's Day", - "1965-02-01": "Vietnamese New Year's Eve", - "1965-02-02": "Vietnamese New Year", + "1964-09-02": "National Day", + "1965-01-01": "New Year's Day", + "1965-02-01": "Lunar New Year's Eve", + "1965-02-02": "Lunar New Year", "1965-02-03": "The second day of Tet Holiday", "1965-02-04": "The third day of Tet Holiday", - "1965-02-05": "The forth day of Tet Holiday", + "1965-02-05": "The fourth day of Tet Holiday", "1965-02-06": "The fifth day of Tet Holiday", "1965-04-30": "Liberation Day/Reunification Day", "1965-05-01": "International Labor Day", "1965-05-03": "International Labor Day (observed)", - "1965-09-02": "Independence Day", - "1966-01-01": "International New Year's Day", - "1966-01-03": "International New Year's Day (observed)", - "1966-01-20": "Vietnamese New Year's Eve", - "1966-01-21": "Vietnamese New Year", + "1965-09-02": "National Day", + "1966-01-01": "New Year's Day", + "1966-01-03": "New Year's Day (observed)", + "1966-01-20": "Lunar New Year's Eve", + "1966-01-21": "Lunar New Year", "1966-01-22": "The second day of Tet Holiday", "1966-01-23": "The third day of Tet Holiday", - "1966-01-24": "The forth day of Tet Holiday", + "1966-01-24": "The fourth day of Tet Holiday", "1966-01-25": "The fifth day of Tet Holiday", "1966-04-30": "Liberation Day/Reunification Day", "1966-05-01": "International Labor Day", "1966-05-02": "Liberation Day/Reunification Day (observed)", "1966-05-03": "International Labor Day (observed)", - "1966-09-02": "Independence Day", - "1967-01-01": "International New Year's Day", - "1967-01-02": "International New Year's Day (observed)", - "1967-02-08": "Vietnamese New Year's Eve", - "1967-02-09": "Vietnamese New Year", + "1966-09-02": "National Day", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-02-08": "Lunar New Year's Eve", + "1967-02-09": "Lunar New Year", "1967-02-10": "The second day of Tet Holiday", "1967-02-11": "The third day of Tet Holiday", - "1967-02-12": "The forth day of Tet Holiday", + "1967-02-12": "The fourth day of Tet Holiday", "1967-02-13": "The fifth day of Tet Holiday", "1967-04-30": "Liberation Day/Reunification Day", "1967-05-01": "International Labor Day", "1967-05-02": "Liberation Day/Reunification Day (observed)", - "1967-09-02": "Independence Day", - "1967-09-04": "Independence Day (observed)", - "1968-01-01": "International New Year's Day", - "1968-01-29": "Vietnamese New Year's Eve", - "1968-01-30": "Vietnamese New Year", + "1967-09-02": "National Day", + "1967-09-04": "National Day (observed)", + "1968-01-01": "New Year's Day", + "1968-01-29": "Lunar New Year's Eve", + "1968-01-30": "Lunar New Year", "1968-01-31": "The second day of Tet Holiday", "1968-02-01": "The third day of Tet Holiday", - "1968-02-02": "The forth day of Tet Holiday", + "1968-02-02": "The fourth day of Tet Holiday", "1968-02-03": "The fifth day of Tet Holiday", "1968-04-30": "Liberation Day/Reunification Day", "1968-05-01": "International Labor Day", - "1968-09-02": "Independence Day", - "1969-01-01": "International New Year's Day", - "1969-02-16": "Vietnamese New Year's Eve", - "1969-02-17": "Vietnamese New Year", + "1968-09-02": "National Day", + "1969-01-01": "New Year's Day", + "1969-02-16": "Lunar New Year's Eve", + "1969-02-17": "Lunar New Year", "1969-02-18": "The second day of Tet Holiday", "1969-02-19": "The third day of Tet Holiday", - "1969-02-20": "The forth day of Tet Holiday", + "1969-02-20": "The fourth day of Tet Holiday", "1969-02-21": "The fifth day of Tet Holiday", "1969-04-30": "Liberation Day/Reunification Day", "1969-05-01": "International Labor Day", - "1969-09-02": "Independence Day", - "1970-01-01": "International New Year's Day", - "1970-02-05": "Vietnamese New Year's Eve", - "1970-02-06": "Vietnamese New Year", + "1969-09-02": "National Day", + "1970-01-01": "New Year's Day", + "1970-02-05": "Lunar New Year's Eve", + "1970-02-06": "Lunar New Year", "1970-02-07": "The second day of Tet Holiday", "1970-02-08": "The third day of Tet Holiday", - "1970-02-09": "The forth day of Tet Holiday", + "1970-02-09": "The fourth day of Tet Holiday", "1970-02-10": "The fifth day of Tet Holiday", "1970-04-30": "Liberation Day/Reunification Day", "1970-05-01": "International Labor Day", - "1970-09-02": "Independence Day", - "1971-01-01": "International New Year's Day", - "1971-01-26": "Vietnamese New Year's Eve", - "1971-01-27": "Vietnamese New Year", + "1970-09-02": "National Day", + "1971-01-01": "New Year's Day", + "1971-01-26": "Lunar New Year's Eve", + "1971-01-27": "Lunar New Year", "1971-01-28": "The second day of Tet Holiday", "1971-01-29": "The third day of Tet Holiday", - "1971-01-30": "The forth day of Tet Holiday", + "1971-01-30": "The fourth day of Tet Holiday", "1971-01-31": "The fifth day of Tet Holiday", "1971-04-30": "Liberation Day/Reunification Day", "1971-05-01": "International Labor Day", "1971-05-03": "International Labor Day (observed)", - "1971-09-02": "Independence Day", - "1972-01-01": "International New Year's Day", - "1972-01-03": "International New Year's Day (observed)", - "1972-02-14": "Vietnamese New Year's Eve", - "1972-02-15": "Vietnamese New Year", + "1971-09-02": "National Day", + "1972-01-01": "New Year's Day", + "1972-01-03": "New Year's Day (observed)", + "1972-02-14": "Lunar New Year's Eve", + "1972-02-15": "Lunar New Year", "1972-02-16": "The second day of Tet Holiday", "1972-02-17": "The third day of Tet Holiday", - "1972-02-18": "The forth day of Tet Holiday", + "1972-02-18": "The fourth day of Tet Holiday", "1972-02-19": "The fifth day of Tet Holiday", "1972-04-30": "Liberation Day/Reunification Day", "1972-05-01": "International Labor Day", "1972-05-02": "Liberation Day/Reunification Day (observed)", - "1972-09-02": "Independence Day", - "1972-09-04": "Independence Day (observed)", - "1973-01-01": "International New Year's Day", - "1973-02-02": "Vietnamese New Year's Eve", - "1973-02-03": "Vietnamese New Year", + "1972-09-02": "National Day", + "1972-09-04": "National Day (observed)", + "1973-01-01": "New Year's Day", + "1973-02-02": "Lunar New Year's Eve", + "1973-02-03": "Lunar New Year", "1973-02-04": "The second day of Tet Holiday", "1973-02-05": "The third day of Tet Holiday", - "1973-02-06": "The forth day of Tet Holiday", + "1973-02-06": "The fourth day of Tet Holiday", "1973-02-07": "The fifth day of Tet Holiday", "1973-04-30": "Liberation Day/Reunification Day", "1973-05-01": "International Labor Day", - "1973-09-02": "Independence Day", - "1973-09-03": "Independence Day (observed)", - "1974-01-01": "International New Year's Day", - "1974-01-22": "Vietnamese New Year's Eve", - "1974-01-23": "Vietnamese New Year", + "1973-09-02": "National Day", + "1973-09-03": "National Day (observed)", + "1974-01-01": "New Year's Day", + "1974-01-22": "Lunar New Year's Eve", + "1974-01-23": "Lunar New Year", "1974-01-24": "The second day of Tet Holiday", "1974-01-25": "The third day of Tet Holiday", - "1974-01-26": "The forth day of Tet Holiday", + "1974-01-26": "The fourth day of Tet Holiday", "1974-01-27": "The fifth day of Tet Holiday", "1974-04-30": "Liberation Day/Reunification Day", "1974-05-01": "International Labor Day", - "1974-09-02": "Independence Day", - "1975-01-01": "International New Year's Day", - "1975-02-10": "Vietnamese New Year's Eve", - "1975-02-11": "Vietnamese New Year", + "1974-09-02": "National Day", + "1975-01-01": "New Year's Day", + "1975-02-10": "Lunar New Year's Eve", + "1975-02-11": "Lunar New Year", "1975-02-12": "The second day of Tet Holiday", "1975-02-13": "The third day of Tet Holiday", - "1975-02-14": "The forth day of Tet Holiday", + "1975-02-14": "The fourth day of Tet Holiday", "1975-02-15": "The fifth day of Tet Holiday", "1975-04-30": "Liberation Day/Reunification Day", "1975-05-01": "International Labor Day", - "1975-09-02": "Independence Day", - "1976-01-01": "International New Year's Day", - "1976-01-30": "Vietnamese New Year's Eve", - "1976-01-31": "Vietnamese New Year", + "1975-09-02": "National Day", + "1976-01-01": "New Year's Day", + "1976-01-30": "Lunar New Year's Eve", + "1976-01-31": "Lunar New Year", "1976-02-01": "The second day of Tet Holiday", "1976-02-02": "The third day of Tet Holiday", - "1976-02-03": "The forth day of Tet Holiday", + "1976-02-03": "The fourth day of Tet Holiday", "1976-02-04": "The fifth day of Tet Holiday", "1976-04-30": "Liberation Day/Reunification Day", "1976-05-01": "International Labor Day", "1976-05-03": "International Labor Day (observed)", - "1976-09-02": "Independence Day", - "1977-01-01": "International New Year's Day", - "1977-01-03": "International New Year's Day (observed)", - "1977-02-17": "Vietnamese New Year's Eve", - "1977-02-18": "Vietnamese New Year", + "1976-09-02": "National Day", + "1977-01-01": "New Year's Day", + "1977-01-03": "New Year's Day (observed)", + "1977-02-17": "Lunar New Year's Eve", + "1977-02-18": "Lunar New Year", "1977-02-19": "The second day of Tet Holiday", "1977-02-20": "The third day of Tet Holiday", - "1977-02-21": "The forth day of Tet Holiday", + "1977-02-21": "The fourth day of Tet Holiday", "1977-02-22": "The fifth day of Tet Holiday", "1977-04-30": "Liberation Day/Reunification Day", "1977-05-01": "International Labor Day", "1977-05-02": "Liberation Day/Reunification Day (observed)", "1977-05-03": "International Labor Day (observed)", - "1977-09-02": "Independence Day", - "1978-01-01": "International New Year's Day", - "1978-01-02": "International New Year's Day (observed)", - "1978-02-06": "Vietnamese New Year's Eve", - "1978-02-07": "Vietnamese New Year", + "1977-09-02": "National Day", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-06": "Lunar New Year's Eve", + "1978-02-07": "Lunar New Year", "1978-02-08": "The second day of Tet Holiday", "1978-02-09": "The third day of Tet Holiday", - "1978-02-10": "The forth day of Tet Holiday", + "1978-02-10": "The fourth day of Tet Holiday", "1978-02-11": "The fifth day of Tet Holiday", "1978-04-30": "Liberation Day/Reunification Day", "1978-05-01": "International Labor Day", "1978-05-02": "Liberation Day/Reunification Day (observed)", - "1978-09-02": "Independence Day", - "1978-09-04": "Independence Day (observed)", - "1979-01-01": "International New Year's Day", - "1979-01-27": "Vietnamese New Year's Eve", - "1979-01-28": "Vietnamese New Year", + "1978-09-02": "National Day", + "1978-09-04": "National Day (observed)", + "1979-01-01": "New Year's Day", + "1979-01-27": "Lunar New Year's Eve", + "1979-01-28": "Lunar New Year", "1979-01-29": "The second day of Tet Holiday", "1979-01-30": "The third day of Tet Holiday", - "1979-01-31": "The forth day of Tet Holiday", + "1979-01-31": "The fourth day of Tet Holiday", "1979-02-01": "The fifth day of Tet Holiday", "1979-04-30": "Liberation Day/Reunification Day", "1979-05-01": "International Labor Day", - "1979-09-02": "Independence Day", - "1979-09-03": "Independence Day (observed)", - "1980-01-01": "International New Year's Day", - "1980-02-15": "Vietnamese New Year's Eve", - "1980-02-16": "Vietnamese New Year", + "1979-09-02": "National Day", + "1979-09-03": "National Day (observed)", + "1980-01-01": "New Year's Day", + "1980-02-15": "Lunar New Year's Eve", + "1980-02-16": "Lunar New Year", "1980-02-17": "The second day of Tet Holiday", "1980-02-18": "The third day of Tet Holiday", - "1980-02-19": "The forth day of Tet Holiday", + "1980-02-19": "The fourth day of Tet Holiday", "1980-02-20": "The fifth day of Tet Holiday", "1980-04-30": "Liberation Day/Reunification Day", "1980-05-01": "International Labor Day", - "1980-09-02": "Independence Day", - "1981-01-01": "International New Year's Day", - "1981-02-04": "Vietnamese New Year's Eve", - "1981-02-05": "Vietnamese New Year", + "1980-09-02": "National Day", + "1981-01-01": "New Year's Day", + "1981-02-04": "Lunar New Year's Eve", + "1981-02-05": "Lunar New Year", "1981-02-06": "The second day of Tet Holiday", "1981-02-07": "The third day of Tet Holiday", - "1981-02-08": "The forth day of Tet Holiday", + "1981-02-08": "The fourth day of Tet Holiday", "1981-02-09": "The fifth day of Tet Holiday", "1981-04-30": "Liberation Day/Reunification Day", "1981-05-01": "International Labor Day", - "1981-09-02": "Independence Day", - "1982-01-01": "International New Year's Day", - "1982-01-24": "Vietnamese New Year's Eve", - "1982-01-25": "Vietnamese New Year", + "1981-09-02": "National Day", + "1982-01-01": "New Year's Day", + "1982-01-24": "Lunar New Year's Eve", + "1982-01-25": "Lunar New Year", "1982-01-26": "The second day of Tet Holiday", "1982-01-27": "The third day of Tet Holiday", - "1982-01-28": "The forth day of Tet Holiday", + "1982-01-28": "The fourth day of Tet Holiday", "1982-01-29": "The fifth day of Tet Holiday", "1982-04-30": "Liberation Day/Reunification Day", "1982-05-01": "International Labor Day", "1982-05-03": "International Labor Day (observed)", - "1982-09-02": "Independence Day", - "1983-01-01": "International New Year's Day", - "1983-01-03": "International New Year's Day (observed)", - "1983-02-12": "Vietnamese New Year's Eve", - "1983-02-13": "Vietnamese New Year", + "1982-09-02": "National Day", + "1983-01-01": "New Year's Day", + "1983-01-03": "New Year's Day (observed)", + "1983-02-12": "Lunar New Year's Eve", + "1983-02-13": "Lunar New Year", "1983-02-14": "The second day of Tet Holiday", "1983-02-15": "The third day of Tet Holiday", - "1983-02-16": "The forth day of Tet Holiday", + "1983-02-16": "The fourth day of Tet Holiday", "1983-02-17": "The fifth day of Tet Holiday", "1983-04-30": "Liberation Day/Reunification Day", "1983-05-01": "International Labor Day", "1983-05-02": "Liberation Day/Reunification Day (observed)", "1983-05-03": "International Labor Day (observed)", - "1983-09-02": "Independence Day", - "1984-01-01": "International New Year's Day", - "1984-01-02": "International New Year's Day (observed)", - "1984-02-01": "Vietnamese New Year's Eve", - "1984-02-02": "Vietnamese New Year", + "1983-09-02": "National Day", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-01": "Lunar New Year's Eve", + "1984-02-02": "Lunar New Year", "1984-02-03": "The second day of Tet Holiday", "1984-02-04": "The third day of Tet Holiday", - "1984-02-05": "The forth day of Tet Holiday", + "1984-02-05": "The fourth day of Tet Holiday", "1984-02-06": "The fifth day of Tet Holiday", "1984-04-30": "Liberation Day/Reunification Day", "1984-05-01": "International Labor Day", - "1984-09-02": "Independence Day", - "1984-09-03": "Independence Day (observed)", - "1985-01-01": "International New Year's Day", - "1985-02-19": "Vietnamese New Year's Eve", - "1985-02-20": "Vietnamese New Year", + "1984-09-02": "National Day", + "1984-09-03": "National Day (observed)", + "1985-01-01": "New Year's Day", + "1985-02-19": "Lunar New Year's Eve", + "1985-02-20": "Lunar New Year", "1985-02-21": "The second day of Tet Holiday", "1985-02-22": "The third day of Tet Holiday", - "1985-02-23": "The forth day of Tet Holiday", + "1985-02-23": "The fourth day of Tet Holiday", "1985-02-24": "The fifth day of Tet Holiday", "1985-04-30": "Liberation Day/Reunification Day", "1985-05-01": "International Labor Day", - "1985-09-02": "Independence Day", - "1986-01-01": "International New Year's Day", - "1986-02-08": "Vietnamese New Year's Eve", - "1986-02-09": "Vietnamese New Year", + "1985-09-02": "National Day", + "1986-01-01": "New Year's Day", + "1986-02-08": "Lunar New Year's Eve", + "1986-02-09": "Lunar New Year", "1986-02-10": "The second day of Tet Holiday", "1986-02-11": "The third day of Tet Holiday", - "1986-02-12": "The forth day of Tet Holiday", + "1986-02-12": "The fourth day of Tet Holiday", "1986-02-13": "The fifth day of Tet Holiday", "1986-04-30": "Liberation Day/Reunification Day", "1986-05-01": "International Labor Day", - "1986-09-02": "Independence Day", - "1987-01-01": "International New Year's Day", - "1987-01-28": "Vietnamese New Year's Eve", - "1987-01-29": "Vietnamese New Year", + "1986-09-02": "National Day", + "1987-01-01": "New Year's Day", + "1987-01-28": "Lunar New Year's Eve", + "1987-01-29": "Lunar New Year", "1987-01-30": "The second day of Tet Holiday", "1987-01-31": "The third day of Tet Holiday", - "1987-02-01": "The forth day of Tet Holiday", + "1987-02-01": "The fourth day of Tet Holiday", "1987-02-02": "The fifth day of Tet Holiday", "1987-04-30": "Liberation Day/Reunification Day", "1987-05-01": "International Labor Day", - "1987-09-02": "Independence Day", - "1988-01-01": "International New Year's Day", - "1988-02-16": "Vietnamese New Year's Eve", - "1988-02-17": "Vietnamese New Year", + "1987-09-02": "National Day", + "1988-01-01": "New Year's Day", + "1988-02-16": "Lunar New Year's Eve", + "1988-02-17": "Lunar New Year", "1988-02-18": "The second day of Tet Holiday", "1988-02-19": "The third day of Tet Holiday", - "1988-02-20": "The forth day of Tet Holiday", + "1988-02-20": "The fourth day of Tet Holiday", "1988-02-21": "The fifth day of Tet Holiday", "1988-04-30": "Liberation Day/Reunification Day", "1988-05-01": "International Labor Day", "1988-05-02": "Liberation Day/Reunification Day (observed)", "1988-05-03": "International Labor Day (observed)", - "1988-09-02": "Independence Day", - "1989-01-01": "International New Year's Day", - "1989-01-02": "International New Year's Day (observed)", - "1989-02-05": "Vietnamese New Year's Eve", - "1989-02-06": "Vietnamese New Year", + "1988-09-02": "National Day", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-05": "Lunar New Year's Eve", + "1989-02-06": "Lunar New Year", "1989-02-07": "The second day of Tet Holiday", "1989-02-08": "The third day of Tet Holiday", - "1989-02-09": "The forth day of Tet Holiday", + "1989-02-09": "The fourth day of Tet Holiday", "1989-02-10": "The fifth day of Tet Holiday", "1989-04-30": "Liberation Day/Reunification Day", "1989-05-01": "International Labor Day", "1989-05-02": "Liberation Day/Reunification Day (observed)", - "1989-09-02": "Independence Day", - "1989-09-04": "Independence Day (observed)", - "1990-01-01": "International New Year's Day", - "1990-01-26": "Vietnamese New Year's Eve", - "1990-01-27": "Vietnamese New Year", + "1989-09-02": "National Day", + "1989-09-04": "National Day (observed)", + "1990-01-01": "New Year's Day", + "1990-01-26": "Lunar New Year's Eve", + "1990-01-27": "Lunar New Year", "1990-01-28": "The second day of Tet Holiday", "1990-01-29": "The third day of Tet Holiday", - "1990-01-30": "The forth day of Tet Holiday", + "1990-01-30": "The fourth day of Tet Holiday", "1990-01-31": "The fifth day of Tet Holiday", "1990-04-30": "Liberation Day/Reunification Day", "1990-05-01": "International Labor Day", - "1990-09-02": "Independence Day", - "1990-09-03": "Independence Day (observed)", - "1991-01-01": "International New Year's Day", - "1991-02-14": "Vietnamese New Year's Eve", - "1991-02-15": "Vietnamese New Year", + "1990-09-02": "National Day", + "1990-09-03": "National Day (observed)", + "1991-01-01": "New Year's Day", + "1991-02-14": "Lunar New Year's Eve", + "1991-02-15": "Lunar New Year", "1991-02-16": "The second day of Tet Holiday", "1991-02-17": "The third day of Tet Holiday", - "1991-02-18": "The forth day of Tet Holiday", + "1991-02-18": "The fourth day of Tet Holiday", "1991-02-19": "The fifth day of Tet Holiday", "1991-04-30": "Liberation Day/Reunification Day", "1991-05-01": "International Labor Day", - "1991-09-02": "Independence Day", - "1992-01-01": "International New Year's Day", - "1992-02-03": "Vietnamese New Year's Eve", - "1992-02-04": "Vietnamese New Year", + "1991-09-02": "National Day", + "1992-01-01": "New Year's Day", + "1992-02-03": "Lunar New Year's Eve", + "1992-02-04": "Lunar New Year", "1992-02-05": "The second day of Tet Holiday", "1992-02-06": "The third day of Tet Holiday", - "1992-02-07": "The forth day of Tet Holiday", + "1992-02-07": "The fourth day of Tet Holiday", "1992-02-08": "The fifth day of Tet Holiday", "1992-04-30": "Liberation Day/Reunification Day", "1992-05-01": "International Labor Day", - "1992-09-02": "Independence Day", - "1993-01-01": "International New Year's Day", - "1993-01-22": "Vietnamese New Year's Eve", - "1993-01-23": "Vietnamese New Year", + "1992-09-02": "National Day", + "1993-01-01": "New Year's Day", + "1993-01-22": "Lunar New Year's Eve", + "1993-01-23": "Lunar New Year", "1993-01-24": "The second day of Tet Holiday", "1993-01-25": "The third day of Tet Holiday", - "1993-01-26": "The forth day of Tet Holiday", + "1993-01-26": "The fourth day of Tet Holiday", "1993-01-27": "The fifth day of Tet Holiday", "1993-04-30": "Liberation Day/Reunification Day", "1993-05-01": "International Labor Day", "1993-05-03": "International Labor Day (observed)", - "1993-09-02": "Independence Day", - "1994-01-01": "International New Year's Day", - "1994-01-03": "International New Year's Day (observed)", - "1994-02-09": "Vietnamese New Year's Eve", - "1994-02-10": "Vietnamese New Year", + "1993-09-02": "National Day", + "1994-01-01": "New Year's Day", + "1994-01-03": "New Year's Day (observed)", + "1994-02-09": "Lunar New Year's Eve", + "1994-02-10": "Lunar New Year", "1994-02-11": "The second day of Tet Holiday", "1994-02-12": "The third day of Tet Holiday", - "1994-02-13": "The forth day of Tet Holiday", + "1994-02-13": "The fourth day of Tet Holiday", "1994-02-14": "The fifth day of Tet Holiday", "1994-04-30": "Liberation Day/Reunification Day", "1994-05-01": "International Labor Day", "1994-05-02": "Liberation Day/Reunification Day (observed)", "1994-05-03": "International Labor Day (observed)", - "1994-09-02": "Independence Day", - "1995-01-01": "International New Year's Day", - "1995-01-02": "International New Year's Day (observed)", - "1995-01-30": "Vietnamese New Year's Eve", - "1995-01-31": "Vietnamese New Year", + "1994-09-02": "National Day", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-30": "Lunar New Year's Eve", + "1995-01-31": "Lunar New Year", "1995-02-01": "The second day of Tet Holiday", "1995-02-02": "The third day of Tet Holiday", - "1995-02-03": "The forth day of Tet Holiday", + "1995-02-03": "The fourth day of Tet Holiday", "1995-02-04": "The fifth day of Tet Holiday", "1995-04-30": "Liberation Day/Reunification Day", "1995-05-01": "International Labor Day", "1995-05-02": "Liberation Day/Reunification Day (observed)", - "1995-09-02": "Independence Day", - "1995-09-04": "Independence Day (observed)", - "1996-01-01": "International New Year's Day", - "1996-02-18": "Vietnamese New Year's Eve", - "1996-02-19": "Vietnamese New Year", + "1995-09-02": "National Day", + "1995-09-04": "National Day (observed)", + "1996-01-01": "New Year's Day", + "1996-02-18": "Lunar New Year's Eve", + "1996-02-19": "Lunar New Year", "1996-02-20": "The second day of Tet Holiday", "1996-02-21": "The third day of Tet Holiday", - "1996-02-22": "The forth day of Tet Holiday", + "1996-02-22": "The fourth day of Tet Holiday", "1996-02-23": "The fifth day of Tet Holiday", "1996-04-30": "Liberation Day/Reunification Day", "1996-05-01": "International Labor Day", - "1996-09-02": "Independence Day", - "1997-01-01": "International New Year's Day", - "1997-02-06": "Vietnamese New Year's Eve", - "1997-02-07": "Vietnamese New Year", + "1996-09-02": "National Day", + "1997-01-01": "New Year's Day", + "1997-02-06": "Lunar New Year's Eve", + "1997-02-07": "Lunar New Year", "1997-02-08": "The second day of Tet Holiday", "1997-02-09": "The third day of Tet Holiday", - "1997-02-10": "The forth day of Tet Holiday", + "1997-02-10": "The fourth day of Tet Holiday", "1997-02-11": "The fifth day of Tet Holiday", "1997-04-30": "Liberation Day/Reunification Day", "1997-05-01": "International Labor Day", - "1997-09-02": "Independence Day", - "1998-01-01": "International New Year's Day", - "1998-01-27": "Vietnamese New Year's Eve", - "1998-01-28": "Vietnamese New Year", + "1997-09-02": "National Day", + "1998-01-01": "New Year's Day", + "1998-01-27": "Lunar New Year's Eve", + "1998-01-28": "Lunar New Year", "1998-01-29": "The second day of Tet Holiday", "1998-01-30": "The third day of Tet Holiday", - "1998-01-31": "The forth day of Tet Holiday", + "1998-01-31": "The fourth day of Tet Holiday", "1998-02-01": "The fifth day of Tet Holiday", "1998-04-30": "Liberation Day/Reunification Day", "1998-05-01": "International Labor Day", - "1998-09-02": "Independence Day", - "1999-01-01": "International New Year's Day", - "1999-02-15": "Vietnamese New Year's Eve", - "1999-02-16": "Vietnamese New Year", + "1998-09-02": "National Day", + "1999-01-01": "New Year's Day", + "1999-02-15": "Lunar New Year's Eve", + "1999-02-16": "Lunar New Year", "1999-02-17": "The second day of Tet Holiday", "1999-02-18": "The third day of Tet Holiday", - "1999-02-19": "The forth day of Tet Holiday", + "1999-02-19": "The fourth day of Tet Holiday", "1999-02-20": "The fifth day of Tet Holiday", "1999-04-30": "Liberation Day/Reunification Day", "1999-05-01": "International Labor Day", "1999-05-03": "International Labor Day (observed)", - "1999-09-02": "Independence Day", - "2000-01-01": "International New Year's Day", - "2000-01-03": "International New Year's Day (observed)", - "2000-02-04": "Vietnamese New Year's Eve", - "2000-02-05": "Vietnamese New Year", + "1999-09-02": "National Day", + "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (observed)", + "2000-02-04": "Lunar New Year's Eve", + "2000-02-05": "Lunar New Year", "2000-02-06": "The second day of Tet Holiday", "2000-02-07": "The third day of Tet Holiday", - "2000-02-08": "The forth day of Tet Holiday", + "2000-02-08": "The fourth day of Tet Holiday", "2000-02-09": "The fifth day of Tet Holiday", "2000-04-30": "Liberation Day/Reunification Day", "2000-05-01": "International Labor Day", "2000-05-02": "Liberation Day/Reunification Day (observed)", - "2000-09-02": "Independence Day", - "2000-09-04": "Independence Day (observed)", - "2001-01-01": "International New Year's Day", - "2001-01-23": "Vietnamese New Year's Eve", - "2001-01-24": "Vietnamese New Year", + "2000-09-02": "National Day", + "2000-09-04": "National Day (observed)", + "2001-01-01": "New Year's Day", + "2001-01-23": "Lunar New Year's Eve", + "2001-01-24": "Lunar New Year", "2001-01-25": "The second day of Tet Holiday", "2001-01-26": "The third day of Tet Holiday", - "2001-01-27": "The forth day of Tet Holiday", + "2001-01-27": "The fourth day of Tet Holiday", "2001-01-28": "The fifth day of Tet Holiday", "2001-04-30": "Liberation Day/Reunification Day", "2001-05-01": "International Labor Day", - "2001-09-02": "Independence Day", - "2001-09-03": "Independence Day (observed)", - "2002-01-01": "International New Year's Day", - "2002-02-11": "Vietnamese New Year's Eve", - "2002-02-12": "Vietnamese New Year", + "2001-09-02": "National Day", + "2001-09-03": "National Day (observed)", + "2002-01-01": "New Year's Day", + "2002-02-11": "Lunar New Year's Eve", + "2002-02-12": "Lunar New Year", "2002-02-13": "The second day of Tet Holiday", "2002-02-14": "The third day of Tet Holiday", - "2002-02-15": "The forth day of Tet Holiday", + "2002-02-15": "The fourth day of Tet Holiday", "2002-02-16": "The fifth day of Tet Holiday", "2002-04-30": "Liberation Day/Reunification Day", "2002-05-01": "International Labor Day", - "2002-09-02": "Independence Day", - "2003-01-01": "International New Year's Day", - "2003-01-31": "Vietnamese New Year's Eve", - "2003-02-01": "Vietnamese New Year", + "2002-09-02": "National Day", + "2003-01-01": "New Year's Day", + "2003-01-31": "Lunar New Year's Eve", + "2003-02-01": "Lunar New Year", "2003-02-02": "The second day of Tet Holiday", "2003-02-03": "The third day of Tet Holiday", - "2003-02-04": "The forth day of Tet Holiday", + "2003-02-04": "The fourth day of Tet Holiday", "2003-02-05": "The fifth day of Tet Holiday", "2003-04-30": "Liberation Day/Reunification Day", "2003-05-01": "International Labor Day", - "2003-09-02": "Independence Day", - "2004-01-01": "International New Year's Day", - "2004-01-21": "Vietnamese New Year's Eve", - "2004-01-22": "Vietnamese New Year", + "2003-09-02": "National Day", + "2004-01-01": "New Year's Day", + "2004-01-21": "Lunar New Year's Eve", + "2004-01-22": "Lunar New Year", "2004-01-23": "The second day of Tet Holiday", "2004-01-24": "The third day of Tet Holiday", - "2004-01-25": "The forth day of Tet Holiday", + "2004-01-25": "The fourth day of Tet Holiday", "2004-01-26": "The fifth day of Tet Holiday", "2004-04-30": "Liberation Day/Reunification Day", "2004-05-01": "International Labor Day", "2004-05-03": "International Labor Day (observed)", - "2004-09-02": "Independence Day", - "2005-01-01": "International New Year's Day", - "2005-01-03": "International New Year's Day (observed)", - "2005-02-08": "Vietnamese New Year's Eve", - "2005-02-09": "Vietnamese New Year", + "2004-09-02": "National Day", + "2005-01-01": "New Year's Day", + "2005-01-03": "New Year's Day (observed)", + "2005-02-08": "Lunar New Year's Eve", + "2005-02-09": "Lunar New Year", "2005-02-10": "The second day of Tet Holiday", "2005-02-11": "The third day of Tet Holiday", - "2005-02-12": "The forth day of Tet Holiday", + "2005-02-12": "The fourth day of Tet Holiday", "2005-02-13": "The fifth day of Tet Holiday", "2005-04-30": "Liberation Day/Reunification Day", "2005-05-01": "International Labor Day", "2005-05-02": "Liberation Day/Reunification Day (observed)", "2005-05-03": "International Labor Day (observed)", - "2005-09-02": "Independence Day", - "2006-01-01": "International New Year's Day", - "2006-01-02": "International New Year's Day (observed)", - "2006-01-28": "Vietnamese New Year's Eve", - "2006-01-29": "Vietnamese New Year", + "2005-09-02": "National Day", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-28": "Lunar New Year's Eve", + "2006-01-29": "Lunar New Year", "2006-01-30": "The second day of Tet Holiday", "2006-01-31": "The third day of Tet Holiday", - "2006-02-01": "The forth day of Tet Holiday", + "2006-02-01": "The fourth day of Tet Holiday", "2006-02-02": "The fifth day of Tet Holiday", "2006-04-30": "Liberation Day/Reunification Day", "2006-05-01": "International Labor Day", "2006-05-02": "Liberation Day/Reunification Day (observed)", - "2006-09-02": "Independence Day", - "2006-09-04": "Independence Day (observed)", - "2007-01-01": "International New Year's Day", - "2007-02-17": "Vietnamese New Year's Eve", - "2007-02-18": "Vietnamese New Year", + "2006-09-02": "National Day", + "2006-09-04": "National Day (observed)", + "2007-01-01": "New Year's Day", + "2007-02-17": "Lunar New Year's Eve", + "2007-02-18": "Lunar New Year", "2007-02-19": "The second day of Tet Holiday", "2007-02-20": "The third day of Tet Holiday", - "2007-02-21": "The forth day of Tet Holiday", + "2007-02-21": "The fourth day of Tet Holiday", "2007-02-22": "The fifth day of Tet Holiday", - "2007-04-26": "Hung Kings Commemoration Day", + "2007-04-26": "Hung Kings' Commemoration Day", "2007-04-30": "Liberation Day/Reunification Day", "2007-05-01": "International Labor Day", - "2007-09-02": "Independence Day", - "2007-09-03": "Independence Day (observed)", - "2008-01-01": "International New Year's Day", - "2008-02-06": "Vietnamese New Year's Eve", - "2008-02-07": "Vietnamese New Year", + "2007-09-02": "National Day", + "2007-09-03": "National Day (observed)", + "2008-01-01": "New Year's Day", + "2008-02-06": "Lunar New Year's Eve", + "2008-02-07": "Lunar New Year", "2008-02-08": "The second day of Tet Holiday", "2008-02-09": "The third day of Tet Holiday", - "2008-02-10": "The forth day of Tet Holiday", + "2008-02-10": "The fourth day of Tet Holiday", "2008-02-11": "The fifth day of Tet Holiday", - "2008-04-15": "Hung Kings Commemoration Day", + "2008-04-15": "Hung Kings' Commemoration Day", "2008-04-30": "Liberation Day/Reunification Day", "2008-05-01": "International Labor Day", - "2008-09-02": "Independence Day", - "2009-01-01": "International New Year's Day", - "2009-01-25": "Vietnamese New Year's Eve", - "2009-01-26": "Vietnamese New Year", + "2008-09-02": "National Day", + "2009-01-01": "New Year's Day", + "2009-01-25": "Lunar New Year's Eve", + "2009-01-26": "Lunar New Year", "2009-01-27": "The second day of Tet Holiday", "2009-01-28": "The third day of Tet Holiday", - "2009-01-29": "The forth day of Tet Holiday", + "2009-01-29": "The fourth day of Tet Holiday", "2009-01-30": "The fifth day of Tet Holiday", - "2009-04-05": "Hung Kings Commemoration Day", - "2009-04-06": "Hung Kings Commemoration Day (observed)", + "2009-04-05": "Hung Kings' Commemoration Day", + "2009-04-06": "Hung Kings' Commemoration Day (observed)", "2009-04-30": "Liberation Day/Reunification Day", "2009-05-01": "International Labor Day", - "2009-09-02": "Independence Day", - "2010-01-01": "International New Year's Day", - "2010-02-13": "Vietnamese New Year's Eve", - "2010-02-14": "Vietnamese New Year", + "2009-09-02": "National Day", + "2010-01-01": "New Year's Day", + "2010-02-13": "Lunar New Year's Eve", + "2010-02-14": "Lunar New Year", "2010-02-15": "The second day of Tet Holiday", "2010-02-16": "The third day of Tet Holiday", - "2010-02-17": "The forth day of Tet Holiday", + "2010-02-17": "The fourth day of Tet Holiday", "2010-02-18": "The fifth day of Tet Holiday", - "2010-04-23": "Hung Kings Commemoration Day", + "2010-04-23": "Hung Kings' Commemoration Day", "2010-04-30": "Liberation Day/Reunification Day", "2010-05-01": "International Labor Day", "2010-05-03": "International Labor Day (observed)", - "2010-09-02": "Independence Day", - "2011-01-01": "International New Year's Day", - "2011-01-03": "International New Year's Day (observed)", - "2011-02-02": "Vietnamese New Year's Eve", - "2011-02-03": "Vietnamese New Year", + "2010-09-02": "National Day", + "2011-01-01": "New Year's Day", + "2011-01-03": "New Year's Day (observed)", + "2011-02-02": "Lunar New Year's Eve", + "2011-02-03": "Lunar New Year", "2011-02-04": "The second day of Tet Holiday", "2011-02-05": "The third day of Tet Holiday", - "2011-02-06": "The forth day of Tet Holiday", + "2011-02-06": "The fourth day of Tet Holiday", "2011-02-07": "The fifth day of Tet Holiday", - "2011-04-12": "Hung Kings Commemoration Day", + "2011-04-12": "Hung Kings' Commemoration Day", "2011-04-30": "Liberation Day/Reunification Day", "2011-05-01": "International Labor Day", "2011-05-02": "Liberation Day/Reunification Day (observed)", "2011-05-03": "International Labor Day (observed)", - "2011-09-02": "Independence Day", - "2012-01-01": "International New Year's Day", - "2012-01-02": "International New Year's Day (observed)", - "2012-01-22": "Vietnamese New Year's Eve", - "2012-01-23": "Vietnamese New Year", + "2011-09-02": "National Day", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-22": "Lunar New Year's Eve", + "2012-01-23": "Lunar New Year", "2012-01-24": "The second day of Tet Holiday", "2012-01-25": "The third day of Tet Holiday", - "2012-01-26": "The forth day of Tet Holiday", + "2012-01-26": "The fourth day of Tet Holiday", "2012-01-27": "The fifth day of Tet Holiday", - "2012-03-31": "Hung Kings Commemoration Day", - "2012-04-02": "Hung Kings Commemoration Day (observed)", + "2012-03-31": "Hung Kings' Commemoration Day", + "2012-04-02": "Hung Kings' Commemoration Day (observed)", "2012-04-30": "Liberation Day/Reunification Day", "2012-05-01": "International Labor Day", - "2012-09-02": "Independence Day", - "2012-09-03": "Independence Day (observed)", - "2013-01-01": "International New Year's Day", - "2013-02-09": "Vietnamese New Year's Eve", - "2013-02-10": "Vietnamese New Year", + "2012-09-02": "National Day", + "2012-09-03": "National Day (observed)", + "2013-01-01": "New Year's Day", + "2013-02-09": "Lunar New Year's Eve", + "2013-02-10": "Lunar New Year", "2013-02-11": "The second day of Tet Holiday", "2013-02-12": "The third day of Tet Holiday", - "2013-02-13": "The forth day of Tet Holiday", + "2013-02-13": "The fourth day of Tet Holiday", "2013-02-14": "The fifth day of Tet Holiday", - "2013-04-19": "Hung Kings Commemoration Day", + "2013-04-19": "Hung Kings' Commemoration Day", "2013-04-30": "Liberation Day/Reunification Day", "2013-05-01": "International Labor Day", - "2013-09-02": "Independence Day", - "2014-01-01": "International New Year's Day", - "2014-01-30": "Vietnamese New Year's Eve", - "2014-01-31": "Vietnamese New Year", + "2013-09-02": "National Day", + "2014-01-01": "New Year's Day", + "2014-01-30": "Lunar New Year's Eve", + "2014-01-31": "Lunar New Year", "2014-02-01": "The second day of Tet Holiday", "2014-02-02": "The third day of Tet Holiday", - "2014-02-03": "The forth day of Tet Holiday", + "2014-02-03": "The fourth day of Tet Holiday", "2014-02-04": "The fifth day of Tet Holiday", - "2014-04-09": "Hung Kings Commemoration Day", + "2014-04-09": "Hung Kings' Commemoration Day", "2014-04-30": "Liberation Day/Reunification Day", "2014-05-01": "International Labor Day", - "2014-09-02": "Independence Day", - "2015-01-01": "International New Year's Day", - "2015-02-18": "Vietnamese New Year's Eve", - "2015-02-19": "Vietnamese New Year", + "2014-09-02": "National Day", + "2015-01-01": "New Year's Day", + "2015-02-18": "Lunar New Year's Eve", + "2015-02-19": "Lunar New Year", "2015-02-20": "The second day of Tet Holiday", "2015-02-21": "The third day of Tet Holiday", - "2015-02-22": "The forth day of Tet Holiday", + "2015-02-22": "The fourth day of Tet Holiday", "2015-02-23": "The fifth day of Tet Holiday", - "2015-04-28": "Hung Kings Commemoration Day", + "2015-04-28": "Hung Kings' Commemoration Day", "2015-04-30": "Liberation Day/Reunification Day", "2015-05-01": "International Labor Day", - "2015-09-02": "Independence Day", - "2016-01-01": "International New Year's Day", - "2016-02-07": "Vietnamese New Year's Eve", - "2016-02-08": "Vietnamese New Year", + "2015-09-02": "National Day", + "2016-01-01": "New Year's Day", + "2016-02-07": "Lunar New Year's Eve", + "2016-02-08": "Lunar New Year", "2016-02-09": "The second day of Tet Holiday", "2016-02-10": "The third day of Tet Holiday", - "2016-02-11": "The forth day of Tet Holiday", + "2016-02-11": "The fourth day of Tet Holiday", "2016-02-12": "The fifth day of Tet Holiday", - "2016-04-16": "Hung Kings Commemoration Day", - "2016-04-18": "Hung Kings Commemoration Day (observed)", + "2016-04-16": "Hung Kings' Commemoration Day", + "2016-04-18": "Hung Kings' Commemoration Day (observed)", "2016-04-30": "Liberation Day/Reunification Day", "2016-05-01": "International Labor Day", "2016-05-02": "Liberation Day/Reunification Day (observed)", "2016-05-03": "International Labor Day (observed)", - "2016-09-02": "Independence Day", - "2017-01-01": "International New Year's Day", - "2017-01-02": "International New Year's Day (observed)", - "2017-01-27": "Vietnamese New Year's Eve", - "2017-01-28": "Vietnamese New Year", + "2016-09-02": "National Day", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-27": "Lunar New Year's Eve", + "2017-01-28": "Lunar New Year", "2017-01-29": "The second day of Tet Holiday", "2017-01-30": "The third day of Tet Holiday", - "2017-01-31": "The forth day of Tet Holiday", + "2017-01-31": "The fourth day of Tet Holiday", "2017-02-01": "The fifth day of Tet Holiday", - "2017-04-06": "Hung Kings Commemoration Day", + "2017-04-06": "Hung Kings' Commemoration Day", "2017-04-30": "Liberation Day/Reunification Day", "2017-05-01": "International Labor Day", "2017-05-02": "Liberation Day/Reunification Day (observed)", - "2017-09-02": "Independence Day", - "2017-09-04": "Independence Day (observed)", - "2018-01-01": "International New Year's Day", - "2018-02-15": "Vietnamese New Year's Eve", - "2018-02-16": "Vietnamese New Year", + "2017-09-02": "National Day", + "2017-09-04": "National Day (observed)", + "2018-01-01": "New Year's Day", + "2018-02-15": "Lunar New Year's Eve", + "2018-02-16": "Lunar New Year", "2018-02-17": "The second day of Tet Holiday", "2018-02-18": "The third day of Tet Holiday", - "2018-02-19": "The forth day of Tet Holiday", + "2018-02-19": "The fourth day of Tet Holiday", "2018-02-20": "The fifth day of Tet Holiday", - "2018-04-25": "Hung Kings Commemoration Day", + "2018-04-25": "Hung Kings' Commemoration Day", "2018-04-30": "Liberation Day/Reunification Day", "2018-05-01": "International Labor Day", - "2018-09-02": "Independence Day", - "2018-09-03": "Independence Day (observed)", - "2019-01-01": "International New Year's Day", - "2019-02-04": "Vietnamese New Year's Eve", - "2019-02-05": "Vietnamese New Year", + "2018-09-02": "National Day", + "2018-09-03": "National Day (observed)", + "2019-01-01": "New Year's Day", + "2019-02-04": "Lunar New Year's Eve", + "2019-02-05": "Lunar New Year", "2019-02-06": "The second day of Tet Holiday", "2019-02-07": "The third day of Tet Holiday", - "2019-02-08": "The forth day of Tet Holiday", + "2019-02-08": "The fourth day of Tet Holiday", "2019-02-09": "The fifth day of Tet Holiday", - "2019-04-14": "Hung Kings Commemoration Day", - "2019-04-15": "Hung Kings Commemoration Day (observed)", + "2019-04-14": "Hung Kings' Commemoration Day", + "2019-04-15": "Hung Kings' Commemoration Day (observed)", "2019-04-30": "Liberation Day/Reunification Day", "2019-05-01": "International Labor Day", - "2019-09-02": "Independence Day", - "2020-01-01": "International New Year's Day", - "2020-01-24": "Vietnamese New Year's Eve", - "2020-01-25": "Vietnamese New Year", + "2019-09-02": "National Day", + "2020-01-01": "New Year's Day", + "2020-01-24": "Lunar New Year's Eve", + "2020-01-25": "Lunar New Year", "2020-01-26": "The second day of Tet Holiday", "2020-01-27": "The third day of Tet Holiday", - "2020-01-28": "The forth day of Tet Holiday", + "2020-01-28": "The fourth day of Tet Holiday", "2020-01-29": "The fifth day of Tet Holiday", - "2020-04-02": "Hung Kings Commemoration Day", + "2020-04-02": "Hung Kings' Commemoration Day", "2020-04-30": "Liberation Day/Reunification Day", "2020-05-01": "International Labor Day", - "2020-09-02": "Independence Day", - "2021-01-01": "International New Year's Day", - "2021-02-11": "Vietnamese New Year's Eve", - "2021-02-12": "Vietnamese New Year", + "2020-09-02": "National Day", + "2021-01-01": "New Year's Day", + "2021-02-11": "Lunar New Year's Eve", + "2021-02-12": "Lunar New Year", "2021-02-13": "The second day of Tet Holiday", "2021-02-14": "The third day of Tet Holiday", - "2021-02-15": "The forth day of Tet Holiday", + "2021-02-15": "The fourth day of Tet Holiday", "2021-02-16": "The fifth day of Tet Holiday", - "2021-04-21": "Hung Kings Commemoration Day", + "2021-04-21": "Hung Kings' Commemoration Day", "2021-04-30": "Liberation Day/Reunification Day", "2021-05-01": "International Labor Day", "2021-05-03": "International Labor Day (observed)", - "2021-09-02": "Independence Day", - "2022-01-01": "International New Year's Day", - "2022-01-03": "International New Year's Day (observed)", - "2022-01-31": "Vietnamese New Year's Eve", - "2022-02-01": "Vietnamese New Year", + "2021-09-02": "National Day", + "2022-01-01": "New Year's Day", + "2022-01-03": "New Year's Day (observed)", + "2022-01-31": "Lunar New Year's Eve", + "2022-02-01": "Lunar New Year", "2022-02-02": "The second day of Tet Holiday", "2022-02-03": "The third day of Tet Holiday", - "2022-02-04": "The forth day of Tet Holiday", + "2022-02-04": "The fourth day of Tet Holiday", "2022-02-05": "The fifth day of Tet Holiday", - "2022-04-10": "Hung Kings Commemoration Day", - "2022-04-11": "Hung Kings Commemoration Day (observed)", + "2022-04-10": "Hung Kings' Commemoration Day", + "2022-04-11": "Hung Kings' Commemoration Day (observed)", "2022-04-30": "Liberation Day/Reunification Day", "2022-05-01": "International Labor Day", "2022-05-02": "Liberation Day/Reunification Day (observed)", "2022-05-03": "International Labor Day (observed)", - "2022-09-02": "Independence Day", - "2023-01-01": "International New Year's Day", - "2023-01-02": "International New Year's Day (observed)", - "2023-01-21": "Vietnamese New Year's Eve", - "2023-01-22": "Vietnamese New Year", + "2022-09-02": "National Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-21": "Lunar New Year's Eve", + "2023-01-22": "Lunar New Year", "2023-01-23": "The second day of Tet Holiday", "2023-01-24": "The third day of Tet Holiday", - "2023-01-25": "The forth day of Tet Holiday", + "2023-01-25": "The fourth day of Tet Holiday", "2023-01-26": "The fifth day of Tet Holiday", - "2023-04-29": "Hung Kings Commemoration Day", + "2023-04-29": "Hung Kings' Commemoration Day", "2023-04-30": "Liberation Day/Reunification Day", "2023-05-01": "International Labor Day", - "2023-05-02": "Hung Kings Commemoration Day (observed)", + "2023-05-02": "Hung Kings' Commemoration Day (observed)", "2023-05-03": "Liberation Day/Reunification Day (observed)", - "2023-09-02": "Independence Day", - "2023-09-04": "Independence Day (observed)", - "2024-01-01": "International New Year's Day", - "2024-02-09": "Vietnamese New Year's Eve", - "2024-02-10": "Vietnamese New Year", + "2023-09-02": "National Day", + "2023-09-04": "National Day (observed)", + "2024-01-01": "New Year's Day", + "2024-02-09": "Lunar New Year's Eve", + "2024-02-10": "Lunar New Year", "2024-02-11": "The second day of Tet Holiday", "2024-02-12": "The third day of Tet Holiday", - "2024-02-13": "The forth day of Tet Holiday", + "2024-02-13": "The fourth day of Tet Holiday", "2024-02-14": "The fifth day of Tet Holiday", - "2024-04-18": "Hung Kings Commemoration Day", + "2024-04-18": "Hung Kings' Commemoration Day", "2024-04-30": "Liberation Day/Reunification Day", "2024-05-01": "International Labor Day", - "2024-09-02": "Independence Day", - "2025-01-01": "International New Year's Day", - "2025-01-28": "Vietnamese New Year's Eve", - "2025-01-29": "Vietnamese New Year", + "2024-09-02": "National Day", + "2025-01-01": "New Year's Day", + "2025-01-28": "Lunar New Year's Eve", + "2025-01-29": "Lunar New Year", "2025-01-30": "The second day of Tet Holiday", "2025-01-31": "The third day of Tet Holiday", - "2025-02-01": "The forth day of Tet Holiday", + "2025-02-01": "The fourth day of Tet Holiday", "2025-02-02": "The fifth day of Tet Holiday", - "2025-04-07": "Hung Kings Commemoration Day", + "2025-04-07": "Hung Kings' Commemoration Day", "2025-04-30": "Liberation Day/Reunification Day", "2025-05-01": "International Labor Day", - "2025-09-02": "Independence Day", - "2026-01-01": "International New Year's Day", - "2026-02-16": "Vietnamese New Year's Eve", - "2026-02-17": "Vietnamese New Year", + "2025-09-02": "National Day", + "2026-01-01": "New Year's Day", + "2026-02-16": "Lunar New Year's Eve", + "2026-02-17": "Lunar New Year", "2026-02-18": "The second day of Tet Holiday", "2026-02-19": "The third day of Tet Holiday", - "2026-02-20": "The forth day of Tet Holiday", + "2026-02-20": "The fourth day of Tet Holiday", "2026-02-21": "The fifth day of Tet Holiday", - "2026-04-26": "Hung Kings Commemoration Day", - "2026-04-27": "Hung Kings Commemoration Day (observed)", + "2026-04-26": "Hung Kings' Commemoration Day", + "2026-04-27": "Hung Kings' Commemoration Day (observed)", "2026-04-30": "Liberation Day/Reunification Day", "2026-05-01": "International Labor Day", - "2026-09-02": "Independence Day", - "2027-01-01": "International New Year's Day", - "2027-02-05": "Vietnamese New Year's Eve", - "2027-02-06": "Vietnamese New Year", + "2026-09-02": "National Day", + "2027-01-01": "New Year's Day", + "2027-02-05": "Lunar New Year's Eve", + "2027-02-06": "Lunar New Year", "2027-02-07": "The second day of Tet Holiday", "2027-02-08": "The third day of Tet Holiday", - "2027-02-09": "The forth day of Tet Holiday", + "2027-02-09": "The fourth day of Tet Holiday", "2027-02-10": "The fifth day of Tet Holiday", - "2027-04-16": "Hung Kings Commemoration Day", + "2027-04-16": "Hung Kings' Commemoration Day", "2027-04-30": "Liberation Day/Reunification Day", "2027-05-01": "International Labor Day", "2027-05-03": "International Labor Day (observed)", - "2027-09-02": "Independence Day", - "2028-01-01": "International New Year's Day", - "2028-01-03": "International New Year's Day (observed)", - "2028-01-25": "Vietnamese New Year's Eve", - "2028-01-26": "Vietnamese New Year", + "2027-09-02": "National Day", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (observed)", + "2028-01-25": "Lunar New Year's Eve", + "2028-01-26": "Lunar New Year", "2028-01-27": "The second day of Tet Holiday", "2028-01-28": "The third day of Tet Holiday", - "2028-01-29": "The forth day of Tet Holiday", + "2028-01-29": "The fourth day of Tet Holiday", "2028-01-30": "The fifth day of Tet Holiday", - "2028-04-04": "Hung Kings Commemoration Day", + "2028-04-04": "Hung Kings' Commemoration Day", "2028-04-30": "Liberation Day/Reunification Day", "2028-05-01": "International Labor Day", "2028-05-02": "Liberation Day/Reunification Day (observed)", - "2028-09-02": "Independence Day", - "2028-09-04": "Independence Day (observed)", - "2029-01-01": "International New Year's Day", - "2029-02-12": "Vietnamese New Year's Eve", - "2029-02-13": "Vietnamese New Year", + "2028-09-02": "National Day", + "2028-09-04": "National Day (observed)", + "2029-01-01": "New Year's Day", + "2029-02-12": "Lunar New Year's Eve", + "2029-02-13": "Lunar New Year", "2029-02-14": "The second day of Tet Holiday", "2029-02-15": "The third day of Tet Holiday", - "2029-02-16": "The forth day of Tet Holiday", + "2029-02-16": "The fourth day of Tet Holiday", "2029-02-17": "The fifth day of Tet Holiday", - "2029-04-23": "Hung Kings Commemoration Day", + "2029-04-23": "Hung Kings' Commemoration Day", "2029-04-30": "Liberation Day/Reunification Day", "2029-05-01": "International Labor Day", - "2029-09-02": "Independence Day", - "2029-09-03": "Independence Day (observed)", - "2030-01-01": "International New Year's Day", - "2030-02-02": "Vietnamese New Year's Eve", - "2030-02-03": "Vietnamese New Year", + "2029-09-02": "National Day", + "2029-09-03": "National Day (observed)", + "2030-01-01": "New Year's Day", + "2030-02-02": "Lunar New Year's Eve", + "2030-02-03": "Lunar New Year", "2030-02-04": "The second day of Tet Holiday", "2030-02-05": "The third day of Tet Holiday", - "2030-02-06": "The forth day of Tet Holiday", + "2030-02-06": "The fourth day of Tet Holiday", "2030-02-07": "The fifth day of Tet Holiday", - "2030-04-12": "Hung Kings Commemoration Day", + "2030-04-12": "Hung Kings' Commemoration Day", "2030-04-30": "Liberation Day/Reunification Day", "2030-05-01": "International Labor Day", - "2030-09-02": "Independence Day", - "2031-01-01": "International New Year's Day", - "2031-01-22": "Vietnamese New Year's Eve", - "2031-01-23": "Vietnamese New Year", + "2030-09-02": "National Day", + "2031-01-01": "New Year's Day", + "2031-01-22": "Lunar New Year's Eve", + "2031-01-23": "Lunar New Year", "2031-01-24": "The second day of Tet Holiday", "2031-01-25": "The third day of Tet Holiday", - "2031-01-26": "The forth day of Tet Holiday", + "2031-01-26": "The fourth day of Tet Holiday", "2031-01-27": "The fifth day of Tet Holiday", - "2031-04-01": "Hung Kings Commemoration Day", + "2031-04-01": "Hung Kings' Commemoration Day", "2031-04-30": "Liberation Day/Reunification Day", "2031-05-01": "International Labor Day", - "2031-09-02": "Independence Day", - "2032-01-01": "International New Year's Day", - "2032-02-10": "Vietnamese New Year's Eve", - "2032-02-11": "Vietnamese New Year", + "2031-09-02": "National Day", + "2032-01-01": "New Year's Day", + "2032-02-10": "Lunar New Year's Eve", + "2032-02-11": "Lunar New Year", "2032-02-12": "The second day of Tet Holiday", "2032-02-13": "The third day of Tet Holiday", - "2032-02-14": "The forth day of Tet Holiday", + "2032-02-14": "The fourth day of Tet Holiday", "2032-02-15": "The fifth day of Tet Holiday", - "2032-04-19": "Hung Kings Commemoration Day", + "2032-04-19": "Hung Kings' Commemoration Day", "2032-04-30": "Liberation Day/Reunification Day", "2032-05-01": "International Labor Day", "2032-05-03": "International Labor Day (observed)", - "2032-09-02": "Independence Day", - "2033-01-01": "International New Year's Day", - "2033-01-03": "International New Year's Day (observed)", - "2033-01-30": "Vietnamese New Year's Eve", - "2033-01-31": "Vietnamese New Year", + "2032-09-02": "National Day", + "2033-01-01": "New Year's Day", + "2033-01-03": "New Year's Day (observed)", + "2033-01-30": "Lunar New Year's Eve", + "2033-01-31": "Lunar New Year", "2033-02-01": "The second day of Tet Holiday", "2033-02-02": "The third day of Tet Holiday", - "2033-02-03": "The forth day of Tet Holiday", + "2033-02-03": "The fourth day of Tet Holiday", "2033-02-04": "The fifth day of Tet Holiday", - "2033-04-09": "Hung Kings Commemoration Day", - "2033-04-11": "Hung Kings Commemoration Day (observed)", + "2033-04-09": "Hung Kings' Commemoration Day", + "2033-04-11": "Hung Kings' Commemoration Day (observed)", "2033-04-30": "Liberation Day/Reunification Day", "2033-05-01": "International Labor Day", "2033-05-02": "Liberation Day/Reunification Day (observed)", "2033-05-03": "International Labor Day (observed)", - "2033-09-02": "Independence Day", - "2034-01-01": "International New Year's Day", - "2034-01-02": "International New Year's Day (observed)", - "2034-02-18": "Vietnamese New Year's Eve", - "2034-02-19": "Vietnamese New Year", + "2033-09-02": "National Day", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-18": "Lunar New Year's Eve", + "2034-02-19": "Lunar New Year", "2034-02-20": "The second day of Tet Holiday", "2034-02-21": "The third day of Tet Holiday", - "2034-02-22": "The forth day of Tet Holiday", + "2034-02-22": "The fourth day of Tet Holiday", "2034-02-23": "The fifth day of Tet Holiday", - "2034-04-28": "Hung Kings Commemoration Day", + "2034-04-28": "Hung Kings' Commemoration Day", "2034-04-30": "Liberation Day/Reunification Day", "2034-05-01": "International Labor Day", "2034-05-02": "Liberation Day/Reunification Day (observed)", - "2034-09-02": "Independence Day", - "2034-09-04": "Independence Day (observed)", - "2035-01-01": "International New Year's Day", - "2035-02-07": "Vietnamese New Year's Eve", - "2035-02-08": "Vietnamese New Year", + "2034-09-02": "National Day", + "2034-09-04": "National Day (observed)", + "2035-01-01": "New Year's Day", + "2035-02-07": "Lunar New Year's Eve", + "2035-02-08": "Lunar New Year", "2035-02-09": "The second day of Tet Holiday", "2035-02-10": "The third day of Tet Holiday", - "2035-02-11": "The forth day of Tet Holiday", + "2035-02-11": "The fourth day of Tet Holiday", "2035-02-12": "The fifth day of Tet Holiday", - "2035-04-17": "Hung Kings Commemoration Day", + "2035-04-17": "Hung Kings' Commemoration Day", "2035-04-30": "Liberation Day/Reunification Day", "2035-05-01": "International Labor Day", - "2035-09-02": "Independence Day", - "2035-09-03": "Independence Day (observed)", - "2036-01-01": "International New Year's Day", - "2036-01-27": "Vietnamese New Year's Eve", - "2036-01-28": "Vietnamese New Year", + "2035-09-02": "National Day", + "2035-09-03": "National Day (observed)", + "2036-01-01": "New Year's Day", + "2036-01-27": "Lunar New Year's Eve", + "2036-01-28": "Lunar New Year", "2036-01-29": "The second day of Tet Holiday", "2036-01-30": "The third day of Tet Holiday", - "2036-01-31": "The forth day of Tet Holiday", + "2036-01-31": "The fourth day of Tet Holiday", "2036-02-01": "The fifth day of Tet Holiday", - "2036-04-06": "Hung Kings Commemoration Day", - "2036-04-07": "Hung Kings Commemoration Day (observed)", + "2036-04-06": "Hung Kings' Commemoration Day", + "2036-04-07": "Hung Kings' Commemoration Day (observed)", "2036-04-30": "Liberation Day/Reunification Day", "2036-05-01": "International Labor Day", - "2036-09-02": "Independence Day", - "2037-01-01": "International New Year's Day", - "2037-02-14": "Vietnamese New Year's Eve", - "2037-02-15": "Vietnamese New Year", + "2036-09-02": "National Day", + "2037-01-01": "New Year's Day", + "2037-02-14": "Lunar New Year's Eve", + "2037-02-15": "Lunar New Year", "2037-02-16": "The second day of Tet Holiday", "2037-02-17": "The third day of Tet Holiday", - "2037-02-18": "The forth day of Tet Holiday", + "2037-02-18": "The fourth day of Tet Holiday", "2037-02-19": "The fifth day of Tet Holiday", - "2037-04-25": "Hung Kings Commemoration Day", - "2037-04-27": "Hung Kings Commemoration Day (observed)", + "2037-04-25": "Hung Kings' Commemoration Day", + "2037-04-27": "Hung Kings' Commemoration Day (observed)", "2037-04-30": "Liberation Day/Reunification Day", "2037-05-01": "International Labor Day", - "2037-09-02": "Independence Day", - "2038-01-01": "International New Year's Day", - "2038-02-03": "Vietnamese New Year's Eve", - "2038-02-04": "Vietnamese New Year", + "2037-09-02": "National Day", + "2038-01-01": "New Year's Day", + "2038-02-03": "Lunar New Year's Eve", + "2038-02-04": "Lunar New Year", "2038-02-05": "The second day of Tet Holiday", "2038-02-06": "The third day of Tet Holiday", - "2038-02-07": "The forth day of Tet Holiday", + "2038-02-07": "The fourth day of Tet Holiday", "2038-02-08": "The fifth day of Tet Holiday", - "2038-04-14": "Hung Kings Commemoration Day", + "2038-04-14": "Hung Kings' Commemoration Day", "2038-04-30": "Liberation Day/Reunification Day", "2038-05-01": "International Labor Day", "2038-05-03": "International Labor Day (observed)", - "2038-09-02": "Independence Day", - "2039-01-01": "International New Year's Day", - "2039-01-03": "International New Year's Day (observed)", - "2039-01-23": "Vietnamese New Year's Eve", - "2039-01-24": "Vietnamese New Year", + "2038-09-02": "National Day", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (observed)", + "2039-01-23": "Lunar New Year's Eve", + "2039-01-24": "Lunar New Year", "2039-01-25": "The second day of Tet Holiday", "2039-01-26": "The third day of Tet Holiday", - "2039-01-27": "The forth day of Tet Holiday", + "2039-01-27": "The fourth day of Tet Holiday", "2039-01-28": "The fifth day of Tet Holiday", - "2039-04-03": "Hung Kings Commemoration Day", - "2039-04-04": "Hung Kings Commemoration Day (observed)", + "2039-04-03": "Hung Kings' Commemoration Day", + "2039-04-04": "Hung Kings' Commemoration Day (observed)", "2039-04-30": "Liberation Day/Reunification Day", "2039-05-01": "International Labor Day", "2039-05-02": "Liberation Day/Reunification Day (observed)", "2039-05-03": "International Labor Day (observed)", - "2039-09-02": "Independence Day", - "2040-01-01": "International New Year's Day", - "2040-01-02": "International New Year's Day (observed)", - "2040-02-11": "Vietnamese New Year's Eve", - "2040-02-12": "Vietnamese New Year", + "2039-09-02": "National Day", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-02-11": "Lunar New Year's Eve", + "2040-02-12": "Lunar New Year", "2040-02-13": "The second day of Tet Holiday", "2040-02-14": "The third day of Tet Holiday", - "2040-02-15": "The forth day of Tet Holiday", + "2040-02-15": "The fourth day of Tet Holiday", "2040-02-16": "The fifth day of Tet Holiday", - "2040-04-20": "Hung Kings Commemoration Day", + "2040-04-20": "Hung Kings' Commemoration Day", "2040-04-30": "Liberation Day/Reunification Day", "2040-05-01": "International Labor Day", - "2040-09-02": "Independence Day", - "2040-09-03": "Independence Day (observed)", - "2041-01-01": "International New Year's Day", - "2041-01-31": "Vietnamese New Year's Eve", - "2041-02-01": "Vietnamese New Year", + "2040-09-02": "National Day", + "2040-09-03": "National Day (observed)", + "2041-01-01": "New Year's Day", + "2041-01-31": "Lunar New Year's Eve", + "2041-02-01": "Lunar New Year", "2041-02-02": "The second day of Tet Holiday", "2041-02-03": "The third day of Tet Holiday", - "2041-02-04": "The forth day of Tet Holiday", + "2041-02-04": "The fourth day of Tet Holiday", "2041-02-05": "The fifth day of Tet Holiday", - "2041-04-10": "Hung Kings Commemoration Day", + "2041-04-10": "Hung Kings' Commemoration Day", "2041-04-30": "Liberation Day/Reunification Day", "2041-05-01": "International Labor Day", - "2041-09-02": "Independence Day", - "2042-01-01": "International New Year's Day", - "2042-01-21": "Vietnamese New Year's Eve", - "2042-01-22": "Vietnamese New Year", + "2041-09-02": "National Day", + "2042-01-01": "New Year's Day", + "2042-01-21": "Lunar New Year's Eve", + "2042-01-22": "Lunar New Year", "2042-01-23": "The second day of Tet Holiday", "2042-01-24": "The third day of Tet Holiday", - "2042-01-25": "The forth day of Tet Holiday", + "2042-01-25": "The fourth day of Tet Holiday", "2042-01-26": "The fifth day of Tet Holiday", - "2042-04-29": "Hung Kings Commemoration Day", + "2042-04-29": "Hung Kings' Commemoration Day", "2042-04-30": "Liberation Day/Reunification Day", "2042-05-01": "International Labor Day", - "2042-09-02": "Independence Day", - "2043-01-01": "International New Year's Day", - "2043-02-09": "Vietnamese New Year's Eve", - "2043-02-10": "Vietnamese New Year", + "2042-09-02": "National Day", + "2043-01-01": "New Year's Day", + "2043-02-09": "Lunar New Year's Eve", + "2043-02-10": "Lunar New Year", "2043-02-11": "The second day of Tet Holiday", "2043-02-12": "The third day of Tet Holiday", - "2043-02-13": "The forth day of Tet Holiday", + "2043-02-13": "The fourth day of Tet Holiday", "2043-02-14": "The fifth day of Tet Holiday", - "2043-04-19": "Hung Kings Commemoration Day", - "2043-04-20": "Hung Kings Commemoration Day (observed)", + "2043-04-19": "Hung Kings' Commemoration Day", + "2043-04-20": "Hung Kings' Commemoration Day (observed)", "2043-04-30": "Liberation Day/Reunification Day", "2043-05-01": "International Labor Day", - "2043-09-02": "Independence Day", - "2044-01-01": "International New Year's Day", - "2044-01-29": "Vietnamese New Year's Eve", - "2044-01-30": "Vietnamese New Year", + "2043-09-02": "National Day", + "2044-01-01": "New Year's Day", + "2044-01-29": "Lunar New Year's Eve", + "2044-01-30": "Lunar New Year", "2044-01-31": "The second day of Tet Holiday", "2044-02-01": "The third day of Tet Holiday", - "2044-02-02": "The forth day of Tet Holiday", + "2044-02-02": "The fourth day of Tet Holiday", "2044-02-03": "The fifth day of Tet Holiday", - "2044-04-07": "Hung Kings Commemoration Day", + "2044-04-07": "Hung Kings' Commemoration Day", "2044-04-30": "Liberation Day/Reunification Day", "2044-05-01": "International Labor Day", "2044-05-02": "Liberation Day/Reunification Day (observed)", "2044-05-03": "International Labor Day (observed)", - "2044-09-02": "Independence Day", - "2045-01-01": "International New Year's Day", - "2045-01-02": "International New Year's Day (observed)", - "2045-02-16": "Vietnamese New Year's Eve", - "2045-02-17": "Vietnamese New Year", + "2044-09-02": "National Day", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-02-16": "Lunar New Year's Eve", + "2045-02-17": "Lunar New Year", "2045-02-18": "The second day of Tet Holiday", "2045-02-19": "The third day of Tet Holiday", - "2045-02-20": "The forth day of Tet Holiday", + "2045-02-20": "The fourth day of Tet Holiday", "2045-02-21": "The fifth day of Tet Holiday", - "2045-04-26": "Hung Kings Commemoration Day", + "2045-04-26": "Hung Kings' Commemoration Day", "2045-04-30": "Liberation Day/Reunification Day", "2045-05-01": "International Labor Day", "2045-05-02": "Liberation Day/Reunification Day (observed)", - "2045-09-02": "Independence Day", - "2045-09-04": "Independence Day (observed)", - "2046-01-01": "International New Year's Day", - "2046-02-05": "Vietnamese New Year's Eve", - "2046-02-06": "Vietnamese New Year", + "2045-09-02": "National Day", + "2045-09-04": "National Day (observed)", + "2046-01-01": "New Year's Day", + "2046-02-05": "Lunar New Year's Eve", + "2046-02-06": "Lunar New Year", "2046-02-07": "The second day of Tet Holiday", "2046-02-08": "The third day of Tet Holiday", - "2046-02-09": "The forth day of Tet Holiday", + "2046-02-09": "The fourth day of Tet Holiday", "2046-02-10": "The fifth day of Tet Holiday", - "2046-04-15": "Hung Kings Commemoration Day", - "2046-04-16": "Hung Kings Commemoration Day (observed)", + "2046-04-15": "Hung Kings' Commemoration Day", + "2046-04-16": "Hung Kings' Commemoration Day (observed)", "2046-04-30": "Liberation Day/Reunification Day", "2046-05-01": "International Labor Day", - "2046-09-02": "Independence Day", - "2046-09-03": "Independence Day (observed)", - "2047-01-01": "International New Year's Day", - "2047-01-25": "Vietnamese New Year's Eve", - "2047-01-26": "Vietnamese New Year", + "2046-09-02": "National Day", + "2046-09-03": "National Day (observed)", + "2047-01-01": "New Year's Day", + "2047-01-25": "Lunar New Year's Eve", + "2047-01-26": "Lunar New Year", "2047-01-27": "The second day of Tet Holiday", "2047-01-28": "The third day of Tet Holiday", - "2047-01-29": "The forth day of Tet Holiday", + "2047-01-29": "The fourth day of Tet Holiday", "2047-01-30": "The fifth day of Tet Holiday", - "2047-04-04": "Hung Kings Commemoration Day", + "2047-04-04": "Hung Kings' Commemoration Day", "2047-04-30": "Liberation Day/Reunification Day", "2047-05-01": "International Labor Day", - "2047-09-02": "Independence Day", - "2048-01-01": "International New Year's Day", - "2048-02-13": "Vietnamese New Year's Eve", - "2048-02-14": "Vietnamese New Year", + "2047-09-02": "National Day", + "2048-01-01": "New Year's Day", + "2048-02-13": "Lunar New Year's Eve", + "2048-02-14": "Lunar New Year", "2048-02-15": "The second day of Tet Holiday", "2048-02-16": "The third day of Tet Holiday", - "2048-02-17": "The forth day of Tet Holiday", + "2048-02-17": "The fourth day of Tet Holiday", "2048-02-18": "The fifth day of Tet Holiday", - "2048-04-22": "Hung Kings Commemoration Day", + "2048-04-22": "Hung Kings' Commemoration Day", "2048-04-30": "Liberation Day/Reunification Day", "2048-05-01": "International Labor Day", - "2048-09-02": "Independence Day", - "2049-01-01": "International New Year's Day", - "2049-02-01": "Vietnamese New Year's Eve", - "2049-02-02": "Vietnamese New Year", + "2048-09-02": "National Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "Lunar New Year's Eve", + "2049-02-02": "Lunar New Year", "2049-02-03": "The second day of Tet Holiday", "2049-02-04": "The third day of Tet Holiday", - "2049-02-05": "The forth day of Tet Holiday", + "2049-02-05": "The fourth day of Tet Holiday", "2049-02-06": "The fifth day of Tet Holiday", - "2049-04-11": "Hung Kings Commemoration Day", - "2049-04-12": "Hung Kings Commemoration Day (observed)", + "2049-04-11": "Hung Kings' Commemoration Day", + "2049-04-12": "Hung Kings' Commemoration Day (observed)", "2049-04-30": "Liberation Day/Reunification Day", "2049-05-01": "International Labor Day", "2049-05-03": "International Labor Day (observed)", - "2049-09-02": "Independence Day", - "2050-01-01": "International New Year's Day", - "2050-01-03": "International New Year's Day (observed)", - "2050-01-22": "Vietnamese New Year's Eve", - "2050-01-23": "Vietnamese New Year", + "2049-09-02": "National Day", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (observed)", + "2050-01-22": "Lunar New Year's Eve", + "2050-01-23": "Lunar New Year", "2050-01-24": "The second day of Tet Holiday", "2050-01-25": "The third day of Tet Holiday", - "2050-01-26": "The forth day of Tet Holiday", + "2050-01-26": "The fourth day of Tet Holiday", "2050-01-27": "The fifth day of Tet Holiday", - "2050-04-01": "Hung Kings Commemoration Day", + "2050-04-01": "Hung Kings' Commemoration Day", "2050-04-30": "Liberation Day/Reunification Day", "2050-05-01": "International Labor Day", "2050-05-02": "Liberation Day/Reunification Day (observed)", "2050-05-03": "International Labor Day (observed)", - "2050-09-02": "Independence Day" + "2050-09-02": "National Day" } diff --git a/tests/__init__.py b/tests/__init__.py index 4e11569da..a4cb40298 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -7,5 +7,5 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/tests/calendars/__init__.py b/tests/calendars/__init__.py index 4e11569da..a4cb40298 100644 --- a/tests/calendars/__init__.py +++ b/tests/calendars/__init__.py @@ -7,5 +7,5 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/tests/calendars/test_gregorian.py b/tests/calendars/test_gregorian.py index f0d775a47..c58aa6fe8 100644 --- a/tests/calendars/test_gregorian.py +++ b/tests/calendars/test_gregorian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/calendars/test_persian.py b/tests/calendars/test_persian.py index bf682614b..ac8cc1440 100644 --- a/tests/calendars/test_persian.py +++ b/tests/calendars/test_persian.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import unittest diff --git a/tests/calendars/test_thai.py b/tests/calendars/test_thai.py index 9370164d3..c2a2a380b 100644 --- a/tests/calendars/test_thai.py +++ b/tests/calendars/test_thai.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import unittest diff --git a/tests/common.py b/tests/common.py index 277634f84..731217a62 100644 --- a/tests/common.py +++ b/tests/common.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) @@ -27,7 +27,7 @@ class TestCase: - """Base class for python-holidays test cases.""" + """Base class for holidays test cases.""" @classmethod def setUpClass(cls, test_class=None, years=None, years_non_observed=None): @@ -222,7 +222,7 @@ def _assertHolidays(self, instance_name, *args): # noqa: N802 self.assertEqual( len(holidays), len(expected_holidays), - set((dt.strftime("%Y-%m-%d"), name) for dt, name in holidays.items()).difference( + {(dt.strftime("%Y-%m-%d"), name) for dt, name in holidays.items()}.difference( (dt, name) for dt, name in expected_holidays ), ) diff --git a/tests/countries/__init__.py b/tests/countries/__init__.py index 4e11569da..a4cb40298 100644 --- a/tests/countries/__init__.py +++ b/tests/countries/__init__.py @@ -7,5 +7,5 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/tests/countries/test_albania.py b/tests/countries/test_albania.py index 0e44fab39..7d1af5b56 100644 --- a/tests/countries/test_albania.py +++ b/tests/countries/test_albania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_algeria.py b/tests/countries/test_algeria.py index 782b64dd5..bf9eea12d 100644 --- a/tests/countries/test_algeria.py +++ b/tests/countries/test_algeria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_american_samoa.py b/tests/countries/test_american_samoa.py index fed1043ba..e2befeaa5 100644 --- a/tests/countries/test_american_samoa.py +++ b/tests/countries/test_american_samoa.py @@ -7,13 +7,11 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) -from datetime import date from unittest import TestCase -from holidays.calendars.gregorian import DEC from holidays.constants import UNOFFICIAL from holidays.countries.american_samoa import HolidaysAS, AS, ASM from tests.common import CommonCountryTests @@ -28,9 +26,10 @@ def test_country_aliases(self): self.assertAliases(HolidaysAS, AS, ASM) def test_as_only(self): - """Check for a holiday that is not returned by US unless the - subdivision is specified.""" - self.assertIn("Christmas Eve (observed)", self.holidays.get_list(date(2017, DEC, 22))) + """Check for a holiday that is not returned by US unless the subdivision is specified.""" + self.assertHolidayName("American Samoa Flag Day", "2024-04-17") + self.assertHolidayName("Manu'a Islands Cession Day", "2024-07-16") + self.assertHolidayName("White Sunday", "2024-10-13") def test_unofficial_holidays(self): self.assertHolidays( diff --git a/tests/countries/test_andorra.py b/tests/countries/test_andorra.py index c5b8bec85..2d42e544a 100644 --- a/tests/countries/test_andorra.py +++ b/tests/countries/test_andorra.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_angola.py b/tests/countries/test_angola.py index 1267c13d5..768be84a2 100644 --- a/tests/countries/test_angola.py +++ b/tests/countries/test_angola.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_argentina.py b/tests/countries/test_argentina.py index a762077ed..d87207c79 100644 --- a/tests/countries/test_argentina.py +++ b/tests/countries/test_argentina.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_armenia.py b/tests/countries/test_armenia.py index a6d67a380..232f35f3d 100644 --- a/tests/countries/test_armenia.py +++ b/tests/countries/test_armenia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_aruba.py b/tests/countries/test_aruba.py index 4a99cae2e..f9700297d 100644 --- a/tests/countries/test_aruba.py +++ b/tests/countries/test_aruba.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_australia.py b/tests/countries/test_australia.py index 591fe23f7..545fd3efe 100644 --- a/tests/countries/test_australia.py +++ b/tests/countries/test_australia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_austria.py b/tests/countries/test_austria.py index 0c3d49f1a..3e00630bd 100644 --- a/tests/countries/test_austria.py +++ b/tests/countries/test_austria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_azerbaijan.py b/tests/countries/test_azerbaijan.py index 13030f39a..f4a2e8072 100644 --- a/tests/countries/test_azerbaijan.py +++ b/tests/countries/test_azerbaijan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -30,9 +30,10 @@ def test_no_holidays(self): def test_special_holidays(self): self.assertHoliday( + "2007-01-03", "2018-04-11", "2019-12-27", - "2007-01-03", + "2024-02-07", "2072-01-05", ) @@ -55,6 +56,11 @@ def test_substituted_holidays(self): "2023-06-27", "2023-06-30", "2023-11-10", + "2024-01-04", + "2024-01-05", + "2024-04-12", + "2024-11-12", + "2024-11-13", ) def test_new_years_day(self): diff --git a/tests/countries/test_bahamas.py b/tests/countries/test_bahamas.py index 6c9bec5a1..ce1d33734 100644 --- a/tests/countries/test_bahamas.py +++ b/tests/countries/test_bahamas.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_bahrain.py b/tests/countries/test_bahrain.py index 1dd02a668..ae29bb5c1 100644 --- a/tests/countries/test_bahrain.py +++ b/tests/countries/test_bahrain.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_bangladesh.py b/tests/countries/test_bangladesh.py index 03ef290cb..e2f46ea35 100644 --- a/tests/countries/test_bangladesh.py +++ b/tests/countries/test_bangladesh.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_barbados.py b/tests/countries/test_barbados.py index 49f1c8d56..269ec6e12 100644 --- a/tests/countries/test_barbados.py +++ b/tests/countries/test_barbados.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_belarus.py b/tests/countries/test_belarus.py index 7f7c5ead3..5f2237bfe 100644 --- a/tests/countries/test_belarus.py +++ b/tests/countries/test_belarus.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_belgium.py b/tests/countries/test_belgium.py index 4f4766a3a..bf3664960 100644 --- a/tests/countries/test_belgium.py +++ b/tests/countries/test_belgium.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_belize.py b/tests/countries/test_belize.py index 0297a0f3d..e21873db1 100644 --- a/tests/countries/test_belize.py +++ b/tests/countries/test_belize.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_bolivia.py b/tests/countries/test_bolivia.py index f748d3cff..b65933b39 100644 --- a/tests/countries/test_bolivia.py +++ b/tests/countries/test_bolivia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_bosnia_and_herzegovina.py b/tests/countries/test_bosnia_and_herzegovina.py index 733a0da6c..4856bfc43 100644 --- a/tests/countries/test_bosnia_and_herzegovina.py +++ b/tests/countries/test_bosnia_and_herzegovina.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_botswana.py b/tests/countries/test_botswana.py index 0eb418e8e..dd3a386a0 100644 --- a/tests/countries/test_botswana.py +++ b/tests/countries/test_botswana.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_brazil.py b/tests/countries/test_brazil.py index ef4ef581a..03ae97190 100644 --- a/tests/countries/test_brazil.py +++ b/tests/countries/test_brazil.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_brunei.py b/tests/countries/test_brunei.py index 3a7f559a4..d2fe75875 100644 --- a/tests/countries/test_brunei.py +++ b/tests/countries/test_brunei.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_bulgaria.py b/tests/countries/test_bulgaria.py index 7a6e4b10a..0ca00c567 100644 --- a/tests/countries/test_bulgaria.py +++ b/tests/countries/test_bulgaria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_burkina_faso.py b/tests/countries/test_burkina_faso.py index abd57df10..3e69d1fee 100644 --- a/tests/countries/test_burkina_faso.py +++ b/tests/countries/test_burkina_faso.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_burundi.py b/tests/countries/test_burundi.py index 8a735f14e..a48e0e954 100644 --- a/tests/countries/test_burundi.py +++ b/tests/countries/test_burundi.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_cambodia.py b/tests/countries/test_cambodia.py index de846d37c..deee1ee7f 100644 --- a/tests/countries/test_cambodia.py +++ b/tests/countries/test_cambodia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_cameroon.py b/tests/countries/test_cameroon.py index f7e516b4c..1be11dd20 100644 --- a/tests/countries/test_cameroon.py +++ b/tests/countries/test_cameroon.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_canada.py b/tests/countries/test_canada.py index b3a70c522..7ead2a6aa 100644 --- a/tests/countries/test_canada.py +++ b/tests/countries/test_canada.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_chad.py b/tests/countries/test_chad.py index 9e32ebfc0..03467039a 100644 --- a/tests/countries/test_chad.py +++ b/tests/countries/test_chad.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_chile.py b/tests/countries/test_chile.py index 2b55f54f2..9d1b1f59a 100644 --- a/tests/countries/test_chile.py +++ b/tests/countries/test_chile.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_china.py b/tests/countries/test_china.py index 2f2d212b5..6118749f7 100644 --- a/tests/countries/test_china.py +++ b/tests/countries/test_china.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_colombia.py b/tests/countries/test_colombia.py index a566f12a2..9a35943e4 100644 --- a/tests/countries/test_colombia.py +++ b/tests/countries/test_colombia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_congo.py b/tests/countries/test_congo.py new file mode 100644 index 000000000..3240e9699 --- /dev/null +++ b/tests/countries/test_congo.py @@ -0,0 +1,143 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +from unittest import TestCase + +from holidays.countries.congo import Congo, CG, COG +from tests.common import CommonCountryTests + + +class TestCongo(CommonCountryTests, TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(Congo) + + def test_country_aliases(self): + self.assertAliases(Congo, CG, COG) + + def test_no_holidays(self): + self.assertNoHolidays(Congo(years=1993)) + + def test_republic_day(self): + self.assertHoliday( + "2010-11-28", + "2015-11-28", + "2016-11-28", + "2017-11-28", + "2024-11-28", + ) + self.assertNoHolidayName("Jour de la République", 2009) + + def test_2006(self): + # http://mokili.free.fr/jours_feries.php + self.assertHolidays( + ("2006-01-01", "Jour de l'An"), + ("2006-04-17", "Lundi de Pâques"), + ("2006-05-01", "Fête du Travail"), + ("2006-05-25", "Ascension"), + ("2006-06-05", "Lundi de Pentecôte"), + ("2006-06-10", "Fête de la Réconciliation"), + ("2006-08-15", "Fête Nationale"), + ("2006-11-01", "Toussaint"), + ("2006-12-25", "Noël"), + ) + + def test_2010(self): + # http://mokili.free.fr/jours_feries.php + self.assertHolidays( + ("2010-01-01", "Jour de l'An"), + ("2010-04-05", "Lundi de Pâques"), + ("2010-05-01", "Fête du Travail"), + ("2010-05-13", "Ascension"), + ("2010-05-24", "Lundi de Pentecôte"), + ("2010-06-10", "Fête de la Réconciliation"), + ("2010-08-15", "Fête Nationale"), + ("2010-11-01", "Toussaint"), + ("2010-11-28", "Jour de la République"), + ("2010-12-25", "Noël"), + ) + + def test_2015(self): + # http://mokili.free.fr/jours_feries.php + self.assertHolidays( + ("2015-01-01", "Jour de l'An"), + ("2015-04-06", "Lundi de Pâques"), + ("2015-05-01", "Fête du Travail"), + ("2015-05-14", "Ascension"), + ("2015-05-25", "Lundi de Pentecôte"), + ("2015-06-10", "Fête de la Réconciliation"), + ("2015-08-15", "Fête Nationale"), + ("2015-11-01", "Toussaint"), + ("2015-11-28", "Jour de la République"), + ("2015-12-25", "Noël"), + ) + + def test_2016(self): + # http://mokili.free.fr/jours_feries.php + self.assertHolidays( + ("2016-01-01", "Jour de l'An"), + ("2016-03-28", "Lundi de Pâques"), + ("2016-05-01", "Fête du Travail"), + ("2016-05-05", "Ascension"), + ("2016-05-16", "Lundi de Pentecôte"), + ("2016-06-10", "Fête de la Réconciliation"), + ("2016-08-15", "Fête Nationale"), + ("2016-11-01", "Toussaint"), + ("2016-11-28", "Jour de la République"), + ("2016-12-25", "Noël"), + ) + + def test_2017(self): + # http://mokili.free.fr/jours_feries.php + self.assertHolidays( + ("2017-01-01", "Jour de l'An"), + ("2017-04-17", "Lundi de Pâques"), + ("2017-05-01", "Fête du Travail"), + ("2017-05-25", "Ascension"), + ("2017-06-05", "Lundi de Pentecôte"), + ("2017-06-10", "Fête de la Réconciliation"), + ("2017-08-15", "Fête Nationale"), + ("2017-11-01", "Toussaint"), + ("2017-11-28", "Jour de la République"), + ("2017-12-25", "Noël"), + ) + + def test_l10n_default(self): + # http://mokili.free.fr/jours_feries.php + self.assertLocalizedHolidays( + ("2024-01-01", "Jour de l'An"), + ("2024-04-01", "Lundi de Pâques"), + ("2024-05-01", "Fête du Travail"), + ("2024-05-09", "Ascension"), + ("2024-05-20", "Lundi de Pentecôte"), + ("2024-06-10", "Fête de la Réconciliation"), + ("2024-08-15", "Fête Nationale"), + ("2024-11-01", "Toussaint"), + ("2024-11-28", "Jour de la République"), + ("2024-12-25", "Noël"), + ) + + def test_l10n_en_us(self): + # http://mokili.free.fr/jours_feries.php + self.assertLocalizedHolidays( + "en_US", + ("2024-01-01", "New Year's Day"), + ("2024-04-01", "Easter Monday"), + ("2024-05-01", "Labor Day"), + ("2024-05-09", "Ascension Day"), + ("2024-05-20", "Whit Monday"), + ("2024-06-10", "Reconciliation Day"), + ("2024-08-15", "National Day"), + ("2024-11-01", "All Saints' Day"), + ("2024-11-28", "Republic Day"), + ("2024-12-25", "Christmas Day"), + ) diff --git a/tests/countries/test_costa_rica.py b/tests/countries/test_costa_rica.py index 6464ba045..038e03b1a 100644 --- a/tests/countries/test_costa_rica.py +++ b/tests/countries/test_costa_rica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_croatia.py b/tests/countries/test_croatia.py index c0dbf94f8..dacf0c705 100644 --- a/tests/countries/test_croatia.py +++ b/tests/countries/test_croatia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_cuba.py b/tests/countries/test_cuba.py index 6a9925138..2fc84bf1f 100644 --- a/tests/countries/test_cuba.py +++ b/tests/countries/test_cuba.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_curacao.py b/tests/countries/test_curacao.py index 09fb145cc..8e215a2b2 100644 --- a/tests/countries/test_curacao.py +++ b/tests/countries/test_curacao.py @@ -7,11 +7,12 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase +from holidays.constants import HALF_DAY, PUBLIC from holidays.countries.curacao import Curacao, CW, CUW from tests.common import CommonCountryTests @@ -19,13 +20,13 @@ class TestCuracao(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Curacao, years=range(1954, 2077)) + super().setUpClass(Curacao, years=range(1954, 2050)) def test_country_aliases(self): self.assertAliases(Curacao, CW, CUW) def test_no_holidays(self): - self.assertNoHolidays(Curacao(years=1953)) + self.assertNoHolidays(Curacao(categories=(HALF_DAY, PUBLIC), years=1953)) def test_2016(self): self.assertHolidays( @@ -44,6 +45,12 @@ def test_2016(self): ("2016-12-26", "Di dos dia di Pasku di Nasementu"), ) + def test_2016_half_day(self): + self.assertHolidays( + Curacao(categories=HALF_DAY, years=2016), + ("2016-12-31", "Vispu di Aña Nobo"), + ) + def test_queens_day(self): name = "Dia di la Reina" self.assertHolidayName( @@ -116,13 +123,13 @@ def test_labor_day(self): def test_anthem_and_flag_day(self): name = "Dia di Himno i Bandera" - self.assertNoHolidayName(name, 1983) - self.assertHolidayName(name, (f"{year}-07-02" for year in range(1984, 2077))) + self.assertNoHolidayName(name, range(1954, 1983)) + self.assertHolidayName(name, (f"{year}-07-02" for year in range(1984, 2050))) def test_curacao_day(self): name = "Dia di Pais Kòrsou" - self.assertNoHolidayName(name, 2009) - self.assertHolidayName(name, (f"{year}-10-10" for year in range(2010, 2077))) + self.assertNoHolidayName(name, range(1954, 2009)) + self.assertHolidayName(name, (f"{year}-10-10" for year in range(2010, 2050))) def test_l10n_default(self): self.assertLocalizedHolidays( @@ -138,6 +145,7 @@ def test_l10n_default(self): ("2023-10-10", "Dia di Pais Kòrsou"), ("2023-12-25", "Pasku di Nasementu"), ("2023-12-26", "Di dos dia di Pasku di Nasementu"), + ("2023-12-31", "Vispu di Aña Nobo"), ) def test_l10n_en_us(self): @@ -155,6 +163,7 @@ def test_l10n_en_us(self): ("2023-10-10", "Curaçao Day"), ("2023-12-25", "Christmas Day"), ("2023-12-26", "Second Day of Christmas"), + ("2023-12-31", "New Year's Eve"), ) def test_l10n_nl(self): @@ -172,6 +181,7 @@ def test_l10n_nl(self): ("2023-10-10", "Dag van Land Curaçao"), ("2023-12-25", "Kerst"), ("2023-12-26", "Tweede kerstdag"), + ("2023-12-31", "Oudejaarsavond"), ) def test_l10n_uk(self): @@ -189,4 +199,5 @@ def test_l10n_uk(self): ("2023-10-10", "День Кюрасао"), ("2023-12-25", "Різдво Христове"), ("2023-12-26", "Другий день Різдва"), + ("2023-12-31", "Переддень Нового року"), ) diff --git a/tests/countries/test_cyprus.py b/tests/countries/test_cyprus.py index dec6258f3..ea5067f55 100644 --- a/tests/countries/test_cyprus.py +++ b/tests/countries/test_cyprus.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_czechia.py b/tests/countries/test_czechia.py index 08c96069e..f354b01f5 100644 --- a/tests/countries/test_czechia.py +++ b/tests/countries/test_czechia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_denmark.py b/tests/countries/test_denmark.py index eeb04c6ef..e7bda8608 100644 --- a/tests/countries/test_denmark.py +++ b/tests/countries/test_denmark.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_djibouti.py b/tests/countries/test_djibouti.py index 713553553..6c7a791db 100644 --- a/tests/countries/test_djibouti.py +++ b/tests/countries/test_djibouti.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_dominica.py b/tests/countries/test_dominica.py index 3f238871f..7ce398b74 100644 --- a/tests/countries/test_dominica.py +++ b/tests/countries/test_dominica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_dominican_republic.py b/tests/countries/test_dominican_republic.py index 770a2e0ec..15d758e2a 100644 --- a/tests/countries/test_dominican_republic.py +++ b/tests/countries/test_dominican_republic.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_ecuador.py b/tests/countries/test_ecuador.py index dec5c7ee9..557c120a5 100644 --- a/tests/countries/test_ecuador.py +++ b/tests/countries/test_ecuador.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_egypt.py b/tests/countries/test_egypt.py index eb26d3420..fa1f05a70 100644 --- a/tests/countries/test_egypt.py +++ b/tests/countries/test_egypt.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_el_salvador.py b/tests/countries/test_el_salvador.py index 422323597..c8fbca86f 100644 --- a/tests/countries/test_el_salvador.py +++ b/tests/countries/test_el_salvador.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_estonia.py b/tests/countries/test_estonia.py index 86255acdc..10f3b5c7a 100644 --- a/tests/countries/test_estonia.py +++ b/tests/countries/test_estonia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_eswatini.py b/tests/countries/test_eswatini.py index a2ad218ae..fe57b9874 100644 --- a/tests/countries/test_eswatini.py +++ b/tests/countries/test_eswatini.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_ethiopia.py b/tests/countries/test_ethiopia.py index 5e9551afb..aa15bce19 100644 --- a/tests/countries/test_ethiopia.py +++ b/tests/countries/test_ethiopia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_finland.py b/tests/countries/test_finland.py index 4869a0976..c37494b61 100644 --- a/tests/countries/test_finland.py +++ b/tests/countries/test_finland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -168,7 +168,7 @@ def test_all_saints_day(self): ) def _test_unofficial_holiday(self, name, since): - start_year, month, day = [int(part) for part in since.split("-")] + start_year, month, day = (int(part) for part in since.split("-")) self.assertHolidayName( name, self.unofficial_holidays, diff --git a/tests/countries/test_france.py b/tests/countries/test_france.py index c43c955ad..12ee5e792 100644 --- a/tests/countries/test_france.py +++ b/tests/countries/test_france.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_gabon.py b/tests/countries/test_gabon.py index 45a5a4936..8c8e51a6a 100644 --- a/tests/countries/test_gabon.py +++ b/tests/countries/test_gabon.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_georgia.py b/tests/countries/test_georgia.py index 087eeccd9..70d3d3614 100644 --- a/tests/countries/test_georgia.py +++ b/tests/countries/test_georgia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_germany.py b/tests/countries/test_germany.py index d2beed2ce..7363aa95e 100644 --- a/tests/countries/test_germany.py +++ b/tests/countries/test_germany.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_ghana.py b/tests/countries/test_ghana.py index 6bc6e2a88..b03162dbc 100644 --- a/tests/countries/test_ghana.py +++ b/tests/countries/test_ghana.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_greece.py b/tests/countries/test_greece.py index e690e22c9..b6a6a35eb 100644 --- a/tests/countries/test_greece.py +++ b/tests/countries/test_greece.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_greenland.py b/tests/countries/test_greenland.py index d6178c0dc..60a19e9cc 100644 --- a/tests/countries/test_greenland.py +++ b/tests/countries/test_greenland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_guam.py b/tests/countries/test_guam.py index af5296687..aa1d187bb 100644 --- a/tests/countries/test_guam.py +++ b/tests/countries/test_guam.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_guatemala.py b/tests/countries/test_guatemala.py index 91ecdc126..5de48d508 100644 --- a/tests/countries/test_guatemala.py +++ b/tests/countries/test_guatemala.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_haiti.py b/tests/countries/test_haiti.py index ede022cb3..61ae73024 100644 --- a/tests/countries/test_haiti.py +++ b/tests/countries/test_haiti.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_honduras.py b/tests/countries/test_honduras.py index 8efd21b16..09107f7d1 100644 --- a/tests/countries/test_honduras.py +++ b/tests/countries/test_honduras.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_hongkong.py b/tests/countries/test_hongkong.py index 58c08fbc5..95fc29ab5 100644 --- a/tests/countries/test_hongkong.py +++ b/tests/countries/test_hongkong.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_hungary.py b/tests/countries/test_hungary.py index 18a6e285d..be2243d58 100644 --- a/tests/countries/test_hungary.py +++ b/tests/countries/test_hungary.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_iceland.py b/tests/countries/test_iceland.py index 046b3ead3..137543cd9 100644 --- a/tests/countries/test_iceland.py +++ b/tests/countries/test_iceland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_india.py b/tests/countries/test_india.py index a6a4f37b7..086b7d43b 100644 --- a/tests/countries/test_india.py +++ b/tests/countries/test_india.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_indonesia.py b/tests/countries/test_indonesia.py index fdd1c68e9..33b76a5c0 100644 --- a/tests/countries/test_indonesia.py +++ b/tests/countries/test_indonesia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_iran.py b/tests/countries/test_iran.py index 2de2169f5..f7b4f3114 100644 --- a/tests/countries/test_iran.py +++ b/tests/countries/test_iran.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_ireland.py b/tests/countries/test_ireland.py index e820c4cc0..708412dea 100644 --- a/tests/countries/test_ireland.py +++ b/tests/countries/test_ireland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_isle_of_man.py b/tests/countries/test_isle_of_man.py index 91b95c481..81feae400 100644 --- a/tests/countries/test_isle_of_man.py +++ b/tests/countries/test_isle_of_man.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_israel.py b/tests/countries/test_israel.py index cb203adb8..4c55dffa4 100644 --- a/tests/countries/test_israel.py +++ b/tests/countries/test_israel.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_italy.py b/tests/countries/test_italy.py index eec083368..98538ed63 100644 --- a/tests/countries/test_italy.py +++ b/tests/countries/test_italy.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_jamaica.py b/tests/countries/test_jamaica.py index 79186b2b7..b73d0d9e6 100644 --- a/tests/countries/test_jamaica.py +++ b/tests/countries/test_jamaica.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_japan.py b/tests/countries/test_japan.py index 7ba75c27f..01bfb976a 100644 --- a/tests/countries/test_japan.py +++ b/tests/countries/test_japan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -36,12 +36,14 @@ def test_not_implemented(self): Japan(categories=BANK, years=2100) def test_new_years_day(self): - self.assertHoliday(f"{year}-01-01" for year in range(1949, 2051)) + self.assertHolidayName("元日", (f"{year}-01-01" for year in range(1949, 2051))) def test_coming_of_age(self): - self.assertHoliday(f"{year}-01-15" for year in range(1949, 2000)) + name = "成人の日" + self.assertHolidayName(name, (f"{year}-01-15" for year in range(1949, 2000))) - self.assertHoliday( + self.assertHolidayName( + name, "2000-01-10", "2001-01-08", "2002-01-14", @@ -98,9 +100,10 @@ def test_coming_of_age(self): self.assertNoHoliday("2000-01-15", "2017-01-15", "2030-01-15") def test_foundation_day(self): - self.assertHoliday(f"{year}-02-11" for year in range(1967, 2051)) + name = "建国記念の日" + self.assertHolidayName(name, (f"{year}-02-11" for year in range(1967, 2051))) self.assertNoHoliday("1966-02-11") - self.assertNoHolidayName("建国記念の日", 1966) + self.assertNoHolidayName(name, range(1949, 1967)) def test_vernal_equinox_day(self): self.assertHolidayName( @@ -214,7 +217,7 @@ def test_vernal_equinox_day(self): def test_showa_day(self): name = "昭和の日" self.assertHolidayName(name, (f"{year}-04-29" for year in range(2007, 2051))) - self.assertNoHolidayName(name, 2006) + self.assertNoHolidayName(name, range(1949, 2007)) def test_constitution_memorial_day(self): self.assertHolidayName("憲法記念日", (f"{year}-05-03" for year in range(1949, 2051))) @@ -223,7 +226,7 @@ def test_greenery_day(self): name = "みどりの日" self.assertHolidayName(name, (f"{year}-04-29" for year in range(1989, 2007))) self.assertHolidayName(name, (f"{year}-05-04" for year in range(2007, 2051))) - self.assertNoHolidayName(name, 1988) + self.assertNoHolidayName(name, range(1949, 1989)) def test_national_holiday(self): name = "国民の休日" @@ -332,13 +335,13 @@ def test_mountain_day(self): self.assertHolidayName(name, (f"{year}-08-11" for year in years)) self.assertHolidayName(name, "2020-08-10", "2021-08-08") self.assertNoHoliday("2015-08-11") - self.assertNoHolidayName(name, 2015) + self.assertNoHolidayName(name, range(1949, 2016)) def test_respect_for_the_aged_day(self): name = "敬老の日" self.assertHolidayName(name, (f"{year}-09-15" for year in range(1966, 2003))) self.assertNoHoliday("1965-09-15") - self.assertNoHolidayName(name, 1965) + self.assertNoHolidayName(name, range(1949, 1966)) self.assertHolidayName( name, @@ -503,7 +506,7 @@ def test_health_and_sports_day(self): name = "体育の日" self.assertHolidayName(name, (f"{year}-10-10" for year in range(1966, 2000))) self.assertNoHoliday("1965-10-10", "2000-10-10") - self.assertNoHolidayName(name, 1965, 2020) + self.assertNoHolidayName(name, range(1949, 1966), range(2020, 2051)) self.assertHolidayName( name, @@ -564,7 +567,7 @@ def test_health_and_sports_day(self): "2049-10-11", "2050-10-10", ) - self.assertNoHolidayName(name, 2019) + self.assertNoHolidayName(name, range(1949, 2020)) def test_culture_day(self): self.assertHolidayName("文化の日", (f"{year}-11-03" for year in range(1949, 2051))) @@ -736,12 +739,12 @@ def test_bank_holidays(self): holidays = Japan(categories=BANK, years=range(1949, 2051)) for year in range(1949, 2051): self.assertHolidayName( - name, holidays, f"{year}-01-02", f"{year}-01-03", f"{year}-12-31" + name, holidays, f"{year}-01-01", f"{year}-01-02", f"{year}-01-03", f"{year}-12-31" ) def test_l10n_default(self): self.assertLocalizedHolidays( - ("2022-01-01", "元日"), + ("2022-01-01", "元日; 銀行休業日"), ("2022-01-02", "銀行休業日"), ("2022-01-03", "銀行休業日"), ("2022-01-10", "成人の日"), @@ -765,7 +768,7 @@ def test_l10n_default(self): def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", - ("2022-01-01", "New Year's Day"), + ("2022-01-01", "Bank Holiday; New Year's Day"), ("2022-01-02", "Bank Holiday"), ("2022-01-03", "Bank Holiday"), ("2022-01-10", "Coming of Age Day"), @@ -789,7 +792,7 @@ def test_l10n_en_us(self): def test_l10n_th(self): self.assertLocalizedHolidays( "th", - ("2022-01-01", "วันขึ้นปีใหม่"), + ("2022-01-01", "วันขึ้นปีใหม่; วันหยุดธนาคาร"), ("2022-01-02", "วันหยุดธนาคาร"), ("2022-01-03", "วันหยุดธนาคาร"), ("2022-01-10", "วันฉลองบรรลุนิติภาวะ"), diff --git a/tests/countries/test_jersey.py b/tests/countries/test_jersey.py index 18c5c518f..6100636ee 100644 --- a/tests/countries/test_jersey.py +++ b/tests/countries/test_jersey.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_jordan.py b/tests/countries/test_jordan.py index 95b42ed6a..c0f17e076 100644 --- a/tests/countries/test_jordan.py +++ b/tests/countries/test_jordan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_kazakhstan.py b/tests/countries/test_kazakhstan.py index d9e714686..ce0d4720f 100644 --- a/tests/countries/test_kazakhstan.py +++ b/tests/countries/test_kazakhstan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -28,22 +28,27 @@ def test_no_holidays(self): self.assertNoHolidays(Kazakhstan(years=1990)) def test_new_year(self): - self.assertHoliday(f"{year}-01-01" for year in range(1991, 2050)) - self.assertHoliday(f"{year}-01-02" for year in range(1991, 2050)) + name = "Жаңа жыл" + self.assertHolidayName(name, (f"{year}-01-01" for year in range(1991, 2050))) + self.assertHolidayName(name, (f"{year}-01-02" for year in range(1991, 2050))) def test_christmas(self): - self.assertHoliday(f"{year}-01-07" for year in range(2006, 2050)) + name = "Православиелік Рождество" + self.assertHolidayName(name, (f"{year}-01-07" for year in range(2006, 2050))) self.assertNoHoliday(f"{year}-01-07" for year in range(1991, 2006)) + self.assertNoHolidayName(name, range(1991, 2006)) def test_womens_day(self): - self.assertHoliday(f"{year}-03-08" for year in range(1991, 2050)) + self.assertHolidayName( + "Халықаралық әйелдер күні", (f"{year}-03-08" for year in range(1991, 2050)) + ) def test_nauryz(self): + name = "Наурыз мейрамы" for year in range(2010, 2050): - self.assertHoliday(f"{year}-03-21", f"{year}-03-22", f"{year}-03-23") - for year in range(1991, 2002): - self.assertNoHoliday(f"{year}-03-21", f"{year}-03-22", f"{year}-03-23") - for year in range(2002, 2010): + self.assertHolidayName(name, f"{year}-03-21", f"{year}-03-22", f"{year}-03-23") + self.assertNoHolidayName(name, range(1991, 2002)) + for year in set(range(2002, 2010)) - {2005, 2007}: self.assertNoNonObservedHoliday( Kazakhstan(observed=False, years=year), f"{year}-03-21", @@ -51,47 +56,61 @@ def test_nauryz(self): ) def test_solidarity_day(self): - self.assertHoliday(f"{year}-05-01" for year in range(1991, 2050)) + self.assertHolidayName( + "Қазақстан халқының бірлігі мерекесі", (f"{year}-05-01" for year in range(1991, 2050)) + ) def test_defenders_day(self): - self.assertHoliday(f"{year}-05-07" for year in range(2013, 2050)) + name = "Отан Қорғаушы күні" + self.assertHolidayName(name, (f"{year}-05-07" for year in range(2013, 2050))) self.assertNoHoliday(f"{year}-05-07" for year in range(1991, 2013)) + self.assertNoHolidayName(name, range(1991, 2013)) def test_victory_day(self): - self.assertHoliday(f"{year}-05-09" for year in range(1991, 2050)) + self.assertHolidayName("Жеңіс күні", (f"{year}-05-09" for year in range(1991, 2050))) def test_capital_day(self): - self.assertHoliday(f"{year}-07-06" for year in range(2009, 2050)) + name = "Астана күні" + self.assertHolidayName(name, (f"{year}-07-06" for year in range(2009, 2050))) self.assertNoHoliday(f"{year}-07-06" for year in range(1991, 2009)) + self.assertNoHolidayName(name, range(1991, 2009)) def test_constitution_day(self): - self.assertHoliday(f"{year}-08-30" for year in range(1996, 2050)) + name = "Қазақстан Республикасының Конституциясы күні" + self.assertHolidayName(name, (f"{year}-08-30" for year in range(1996, 2050))) self.assertNoHoliday(f"{year}-08-30" for year in range(1991, 1996)) + self.assertNoHolidayName(name, range(1991, 1996)) def test_republic_day(self): - self.assertHoliday(f"{year}-10-25" for year in range(1994, 2009)) - self.assertHoliday(f"{year}-10-25" for year in range(2022, 2050)) + name = "Республика күні" + self.assertHolidayName(name, (f"{year}-10-25" for year in range(1994, 2009))) + self.assertHolidayName(name, (f"{year}-10-25" for year in range(2022, 2050))) self.assertNoHoliday(f"{year}-10-25" for year in range(1991, 1994)) self.assertNoHoliday(f"{year}-10-25" for year in range(2009, 2022)) + self.assertNoHolidayName(name, range(1991, 1994), range(2009, 2022)) def test_first_president_day(self): - self.assertHoliday(f"{year}-12-01" for year in range(2012, 2022)) + name = "Қазақстан Республикасының Тұңғыш Президенті күні" + self.assertHolidayName(name, (f"{year}-12-01" for year in range(2012, 2022))) self.assertNoHoliday(f"{year}-12-01" for year in range(1991, 2012)) self.assertNoHoliday(f"{year}-12-01" for year in range(2022, 2050)) + self.assertNoHolidayName(name, range(1991, 2012), range(2022, 2050)) def test_independence_day(self): - self.assertHoliday(f"{year}-12-16" for year in range(1991, 2050)) - self.assertHoliday(f"{year}-12-17" for year in range(2002, 2022)) + name = "Тəуелсіздік күні" + self.assertHolidayName(name, (f"{year}-12-16" for year in range(1991, 2050))) + self.assertHolidayName(name, (f"{year}-12-17" for year in range(2002, 2022))) self.assertNoHoliday(f"{year}-12-17" for year in range(1991, 2002)) - for year in range(2022, 2050): - self.assertNoNonObservedHoliday( - Kazakhstan(observed=False, years=year), f"{year}-12-17" - ) + self.assertNoNonObservedHoliday( + Kazakhstan(observed=False, years=range(2022, 2050)), + (f"{year}-12-17" for year in range(2022, 2050)), + ) def test_kurban_ait(self): - self.assertHoliday( + name = "Құрбан айт" + self.assertHolidayName( + name, "2006-01-10", - "2006-12-31", "2007-12-20", "2008-12-08", "2009-11-27", @@ -100,8 +119,8 @@ def test_kurban_ait(self): "2012-10-26", "2013-10-15", "2014-10-04", - "2015-09-23", - "2016-09-11", + "2015-09-24", + "2016-09-12", "2017-09-01", "2018-08-21", "2019-08-11", @@ -109,6 +128,7 @@ def test_kurban_ait(self): "2021-07-20", "2022-07-09", "2023-06-28", + "2024-06-16", ) def test_observed(self): @@ -144,7 +164,6 @@ def test_observed(self): "2020-03-09", "2020-03-24", "2020-03-25", - "2020-05-11", "2020-08-31", "2021-01-04", "2021-03-24", @@ -153,32 +172,161 @@ def test_observed(self): "2022-01-04", "2022-05-02", "2022-05-10", + "2023-01-03", + "2023-05-08", + "2023-12-18", + "2024-03-25", + "2024-07-08", ) self.assertHoliday(observed_holidays) self.assertNoNonObservedHoliday(observed_holidays) - def test2020(self): - self.assertHolidayDates( - Kazakhstan(years=2020), - "2020-01-01", - "2020-01-02", - "2020-01-07", - "2020-03-08", - "2020-03-09", - "2020-03-21", - "2020-03-22", - "2020-03-23", - "2020-03-24", - "2020-03-25", - "2020-05-01", - "2020-05-07", - "2020-05-09", - "2020-05-11", - "2020-07-06", - "2020-07-31", - "2020-08-30", - "2020-08-31", - "2020-12-01", - "2020-12-16", - "2020-12-17", + def test_substituted_holidays(self): + self.assertHoliday( + "2000-05-08", + "2001-03-09", + "2001-03-23", + "2001-04-30", + "2001-12-31", + "2002-05-10", + "2003-05-02", + "2003-12-15", + "2005-03-07", + "2005-03-21", + "2005-08-29", + "2005-10-24", + "2006-01-11", + "2006-05-08", + "2007-03-09", + "2007-03-23", + "2007-08-31", + "2007-10-26", + "2007-12-31", + "2008-05-02", + "2009-12-18", + "2010-01-08", + "2010-07-05", + "2011-03-07", + "2011-08-29", + "2012-03-09", + "2012-04-30", + "2012-12-31", + "2013-05-10", + "2013-10-14", + "2014-01-03", + "2014-05-02", + "2014-05-08", + "2016-03-07", + "2017-03-20", + "2017-07-07", + "2018-03-09", + "2018-04-30", + "2018-05-08", + "2018-08-31", + "2018-12-31", + "2019-05-10", + "2020-01-03", + "2020-05-08", + "2020-12-18", + "2021-07-05", + "2022-03-07", + "2022-08-29", + "2022-10-24", + "2023-07-07", + "2024-05-08", + ) + + def test2022(self): + self.assertHolidays( + Kazakhstan(years=2022), + ("2022-01-01", "Жаңа жыл"), + ("2022-01-02", "Жаңа жыл"), + ("2022-01-03", "Жаңа жыл (қайта белгіленген демалыс)"), + ("2022-01-04", "Жаңа жыл (қайта белгіленген демалыс)"), + ("2022-01-07", "Православиелік Рождество"), + ("2022-03-07", "Демалыс күні (05.03.2022 бастап ауыстырылды)"), + ("2022-03-08", "Халықаралық әйелдер күні"), + ("2022-03-21", "Наурыз мейрамы"), + ("2022-03-22", "Наурыз мейрамы"), + ("2022-03-23", "Наурыз мейрамы"), + ("2022-05-01", "Қазақстан халқының бірлігі мерекесі"), + ("2022-05-02", "Қазақстан халқының бірлігі мерекесі (қайта белгіленген демалыс)"), + ("2022-05-07", "Отан Қорғаушы күні"), + ("2022-05-09", "Жеңіс күні"), + ("2022-05-10", "Отан Қорғаушы күні (қайта белгіленген демалыс)"), + ("2022-07-06", "Астана күні"), + ("2022-07-09", "Құрбан айт"), + ("2022-08-29", "Демалыс күні (27.08.2022 бастап ауыстырылды)"), + ("2022-08-30", "Қазақстан Республикасының Конституциясы күні"), + ("2022-10-24", "Демалыс күні (22.10.2022 бастап ауыстырылды)"), + ("2022-10-25", "Республика күні"), + ("2022-12-16", "Тəуелсіздік күні"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2024-01-01", "Жаңа жыл"), + ("2024-01-02", "Жаңа жыл"), + ("2024-01-07", "Православиелік Рождество"), + ("2024-03-08", "Халықаралық әйелдер күні"), + ("2024-03-21", "Наурыз мейрамы"), + ("2024-03-22", "Наурыз мейрамы"), + ("2024-03-23", "Наурыз мейрамы"), + ("2024-03-25", "Наурыз мейрамы (қайта белгіленген демалыс)"), + ("2024-05-01", "Қазақстан халқының бірлігі мерекесі"), + ("2024-05-07", "Отан Қорғаушы күні"), + ("2024-05-08", "Демалыс күні (04.05.2024 бастап ауыстырылды)"), + ("2024-05-09", "Жеңіс күні"), + ("2024-06-16", "Құрбан айт"), + ("2024-07-06", "Астана күні"), + ("2024-07-08", "Астана күні (қайта белгіленген демалыс)"), + ("2024-08-30", "Қазақстан Республикасының Конституциясы күні"), + ("2024-10-25", "Республика күні"), + ("2024-12-16", "Тəуелсіздік күні"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2024-01-01", "New Year's Day"), + ("2024-01-02", "New Year's Day"), + ("2024-01-07", "Orthodox Christmas"), + ("2024-03-08", "International Women's Day"), + ("2024-03-21", "Nowruz holiday"), + ("2024-03-22", "Nowruz holiday"), + ("2024-03-23", "Nowruz holiday"), + ("2024-03-25", "Nowruz holiday (observed)"), + ("2024-05-01", "Kazakhstan's People Solidarity Holiday"), + ("2024-05-07", "Defender of the Fatherland Day"), + ("2024-05-08", "Day off (substituted from 05/04/2024)"), + ("2024-05-09", "Victory Day"), + ("2024-06-16", "Eid al-Adha"), + ("2024-07-06", "Capital Day"), + ("2024-07-08", "Capital Day (observed)"), + ("2024-08-30", "Constitution Day"), + ("2024-10-25", "Republic Day"), + ("2024-12-16", "Independence Day"), + ) + + def test_l10n_uk(self): + self.assertLocalizedHolidays( + "uk", + ("2024-01-01", "Новий рік"), + ("2024-01-02", "Новий рік"), + ("2024-01-07", "Православне Різдво"), + ("2024-03-08", "Міжнародний жіночий день"), + ("2024-03-21", "Свято Новруз"), + ("2024-03-22", "Свято Новруз"), + ("2024-03-23", "Свято Новруз"), + ("2024-03-25", "Свято Новруз (вихідний)"), + ("2024-05-01", "Свято єдності народу Казахстану"), + ("2024-05-07", "День захисника Вітчизни"), + ("2024-05-08", "Вихідний день (перенесено з 04.05.2024)"), + ("2024-05-09", "День Перемоги"), + ("2024-06-16", "Курбан-байрам"), + ("2024-07-06", "День Столиці"), + ("2024-07-08", "День Столиці (вихідний)"), + ("2024-08-30", "День Конституції Республіки Казахстан"), + ("2024-10-25", "День Республіки"), + ("2024-12-16", "День незалежності"), ) diff --git a/tests/countries/test_kenya.py b/tests/countries/test_kenya.py index be94420a7..f0a7d7505 100644 --- a/tests/countries/test_kenya.py +++ b/tests/countries/test_kenya.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_kuwait.py b/tests/countries/test_kuwait.py index 4e51112f3..012e6980a 100644 --- a/tests/countries/test_kuwait.py +++ b/tests/countries/test_kuwait.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_kyrgyzstan.py b/tests/countries/test_kyrgyzstan.py index f557abfe0..a404b25fc 100644 --- a/tests/countries/test_kyrgyzstan.py +++ b/tests/countries/test_kyrgyzstan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_laos.py b/tests/countries/test_laos.py index 9fe4755bf..a1031f984 100644 --- a/tests/countries/test_laos.py +++ b/tests/countries/test_laos.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_latvia.py b/tests/countries/test_latvia.py index 01eecd61c..4668b1639 100644 --- a/tests/countries/test_latvia.py +++ b/tests/countries/test_latvia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_lesotho.py b/tests/countries/test_lesotho.py index 4ecca210d..48dc8ff1a 100644 --- a/tests/countries/test_lesotho.py +++ b/tests/countries/test_lesotho.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_liechtenstein.py b/tests/countries/test_liechtenstein.py index 04a3f807f..5a7a9b52a 100644 --- a/tests/countries/test_liechtenstein.py +++ b/tests/countries/test_liechtenstein.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_lithuania.py b/tests/countries/test_lithuania.py index a09a7adaf..e217696c4 100644 --- a/tests/countries/test_lithuania.py +++ b/tests/countries/test_lithuania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_luxembourg.py b/tests/countries/test_luxembourg.py index 9d2c19ac5..bf440897f 100644 --- a/tests/countries/test_luxembourg.py +++ b/tests/countries/test_luxembourg.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_madagascar.py b/tests/countries/test_madagascar.py index e5c503013..577c315e4 100644 --- a/tests/countries/test_madagascar.py +++ b/tests/countries/test_madagascar.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_malawi.py b/tests/countries/test_malawi.py index 0948ff8fe..74a23f6c2 100644 --- a/tests/countries/test_malawi.py +++ b/tests/countries/test_malawi.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_malaysia.py b/tests/countries/test_malaysia.py index bddd8b71e..117cb3a8d 100644 --- a/tests/countries/test_malaysia.py +++ b/tests/countries/test_malaysia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -977,3 +977,24 @@ def test_l10n_en_us(self): ("2023-09-28", "Prophet Muhammad's Birthday"), ("2023-12-25", "Christmas Day"), ) + + def test_l10n_th(self): + self.assertLocalizedHolidays( + "th", + ("2023-01-22", "วันตรุษจีน"), + ("2023-01-23", "วันตรุษจีนวันที่สอง"), + ("2023-01-24", "ชดเชยวันตรุษจีน"), + ("2023-04-21", "วันอีฎิ้ลฟิตริ (เพิ่มเติม)"), + ("2023-04-22", "วันอีฎิ้ลฟิตริ"), + ("2023-04-23", "วันอีฎิ้ลฟิตริวันที่สอง"), + ("2023-04-24", "ชดเชยวันอีฎิ้ลฟิตริวันที่สอง"), + ("2023-05-01", "วันแรงงาน"), + ("2023-05-04", "วันวิสาขบูชา"), + ("2023-06-05", "วันคล้ายวันพระราชสมภพสมเด็จพระราชาธิบดีแห่งมาเลเซีย"), + ("2023-06-29", "วันอีดิ้ลอัฎฮา"), + ("2023-07-19", "วันขึ้นปีใหม่อิสลาม"), + ("2023-08-31", "วันชาติมาเลเซีย"), + ("2023-09-16", "วันเฉลิมฉลองการจัดตั้งสหพันธรัฐมาเลเซีย"), + ("2023-09-28", "วันเมาลิดนบี"), + ("2023-12-25", "วันคริสต์มาส"), + ) diff --git a/tests/countries/test_maldives.py b/tests/countries/test_maldives.py index 2a688183c..88a8ef505 100644 --- a/tests/countries/test_maldives.py +++ b/tests/countries/test_maldives.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_malta.py b/tests/countries/test_malta.py index c2aa59eac..c39b72a3d 100644 --- a/tests/countries/test_malta.py +++ b/tests/countries/test_malta.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_marshall_islands.py b/tests/countries/test_marshall_islands.py index f29f1df74..3cdb0fcc6 100644 --- a/tests/countries/test_marshall_islands.py +++ b/tests/countries/test_marshall_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_mauritania.py b/tests/countries/test_mauritania.py index 1d9166aec..561e2dc89 100644 --- a/tests/countries/test_mauritania.py +++ b/tests/countries/test_mauritania.py @@ -7,18 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays -# License: MIT (see LICENSE file) - -# python-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: dr-prodigy (c) 2017-2023 -# ryanss (c) 2014-2017 -# Website: https://github.com/dr-prodigy/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_mexico.py b/tests/countries/test_mexico.py index 3a9d1f209..74368cca9 100644 --- a/tests/countries/test_mexico.py +++ b/tests/countries/test_mexico.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_moldova.py b/tests/countries/test_moldova.py index f2f212b77..ebcf50647 100644 --- a/tests/countries/test_moldova.py +++ b/tests/countries/test_moldova.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_monaco.py b/tests/countries/test_monaco.py index 5d6cca63f..a6c2f0794 100644 --- a/tests/countries/test_monaco.py +++ b/tests/countries/test_monaco.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_montenegro.py b/tests/countries/test_montenegro.py index cac423a5a..104d057ee 100644 --- a/tests/countries/test_montenegro.py +++ b/tests/countries/test_montenegro.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_morocco.py b/tests/countries/test_morocco.py index db7c29c1a..ac0eb5492 100644 --- a/tests/countries/test_morocco.py +++ b/tests/countries/test_morocco.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_mozambique.py b/tests/countries/test_mozambique.py index a909280eb..852b88f8b 100644 --- a/tests/countries/test_mozambique.py +++ b/tests/countries/test_mozambique.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_namibia.py b/tests/countries/test_namibia.py index 14a615217..973417108 100644 --- a/tests/countries/test_namibia.py +++ b/tests/countries/test_namibia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_netherlands.py b/tests/countries/test_netherlands.py index 378319cd7..be3bb059d 100644 --- a/tests/countries/test_netherlands.py +++ b/tests/countries/test_netherlands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_new_zealand.py b/tests/countries/test_new_zealand.py index 79972f5cc..735fc3e5c 100644 --- a/tests/countries/test_new_zealand.py +++ b/tests/countries/test_new_zealand.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_nicaragua.py b/tests/countries/test_nicaragua.py index 7dbb4191b..6970b7671 100644 --- a/tests/countries/test_nicaragua.py +++ b/tests/countries/test_nicaragua.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -19,46 +19,105 @@ class TestNicaragua(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Nicaragua) + super().setUpClass(Nicaragua, years=range(1950, 2050)) def test_country_aliases(self): self.assertAliases(Nicaragua, NI, NIC) - def test_2020(self): - self.assertHoliday( - "2020-01-01", + def test_new_years_day(self): + self.assertHolidayName("Año Nuevo", (f"{year}-01-01" for year in range(1950, 2050))) + + def test_maundy_thursday(self): + name = "Jueves Santo" + self.assertHolidayName( + name, + "2016-03-24", + "2017-04-13", + "2018-03-29", + "2019-04-18", "2020-04-09", + "2021-04-01", + "2022-04-14", + "2023-04-06", + "2024-03-28", + ) + self.assertHolidayName(name, range(1950, 2050)) + + def test_good_friday(self): + name = "Viernes Santo" + self.assertHolidayName( + name, + "2016-03-25", + "2017-04-14", + "2018-03-30", + "2019-04-19", "2020-04-10", - "2020-05-01", - "2020-07-19", - "2020-08-01", - "2020-08-10", - "2020-09-14", - "2020-09-15", - "2020-12-08", - "2020-12-25", + "2021-04-02", + "2022-04-15", + "2023-04-07", + "2024-03-29", + ) + self.assertHolidayName(name, range(1950, 2050)) + + def test_labor_day(self): + self.assertHolidayName("Día del Trabajo", (f"{year}-05-01" for year in range(1950, 2050))) + + def test_mothers_day(self): + name = "Día de la Madre" + self.assertHolidayName(name, (f"{year}-05-30" for year in range(2022, 2050))) + self.assertNoHolidayName(name, range(1950, 2022)) + + def test_revolution_day(self): + name = "Día de la Revolución" + self.assertHolidayName(name, (f"{year}-07-19" for year in range(1979, 2050))) + self.assertNoHolidayName(name, range(1950, 1979)) + + def test_battle_of_san_jacinto_day(self): + self.assertHolidayName( + "Batalla de San Jacinto", (f"{year}-09-14" for year in range(1950, 2050)) + ) + + def test_independence_day(self): + self.assertHolidayName( + "Día de la Independencia", (f"{year}-09-15" for year in range(1950, 2050)) ) - self.assertNoHoliday( - Nicaragua(subdiv="AN"), - "2020-08-01", - "2020-08-10", + + def test_virgins_day(self): + self.assertHolidayName( + "Concepción de María", (f"{year}-12-08" for year in range(1950, 2050)) ) - def test_ni_holidays_1979(self): - self.assertHoliday( - "1979-01-01", - "1979-04-12", - "1979-04-13", - "1979-05-01", - "1979-07-19", - "1979-09-14", - "1979-09-15", - "1979-12-08", - "1979-12-25", + def test_christmas_day(self): + self.assertHolidayName("Navidad", (f"{year}-12-25" for year in range(1950, 2050))) + + def test_2023(self): + self.assertHolidays( + Nicaragua(years=2023), + ("2023-01-01", "Año Nuevo"), + ("2023-04-06", "Jueves Santo"), + ("2023-04-07", "Viernes Santo"), + ("2023-05-01", "Día del Trabajo"), + ("2023-05-30", "Día de la Madre"), + ("2023-07-19", "Día de la Revolución"), + ("2023-09-14", "Batalla de San Jacinto"), + ("2023-09-15", "Día de la Independencia"), + ("2023-12-08", "Concepción de María"), + ("2023-12-25", "Navidad"), ) - def test_pre_1979(self): - self.assertNoHoliday("1978-07-19") + for subdiv in Nicaragua.subdivisions: + if subdiv == "MN": + self.assertHoliday( + Nicaragua(subdiv=subdiv), + "2023-08-01", + "2023-08-10", + ) + else: + self.assertNoHoliday( + Nicaragua(subdiv=subdiv), + "2023-08-01", + "2023-08-10", + ) def test_l10n_default(self): self.assertLocalizedHolidays( @@ -66,9 +125,8 @@ def test_l10n_default(self): ("2022-04-14", "Jueves Santo"), ("2022-04-15", "Viernes Santo"), ("2022-05-01", "Día del Trabajo"), + ("2022-05-30", "Día de la Madre"), ("2022-07-19", "Día de la Revolución"), - ("2022-08-01", "Bajada de Santo Domingo"), - ("2022-08-10", "Subida de Santo Domingo"), ("2022-09-14", "Batalla de San Jacinto"), ("2022-09-15", "Día de la Independencia"), ("2022-12-08", "Concepción de María"), @@ -82,9 +140,8 @@ def test_l10n_en_us(self): ("2022-04-14", "Maundy Thursday"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labor Day"), + ("2022-05-30", "Mother's Day"), ("2022-07-19", "Revolution Day"), - ("2022-08-01", "Descent of Saint Dominic"), - ("2022-08-10", "Ascent of Saint Dominic"), ("2022-09-14", "Battle of San Jacinto Day"), ("2022-09-15", "Independence Day"), ("2022-12-08", "Virgin's Day"), @@ -98,9 +155,8 @@ def test_l10n_uk(self): ("2022-04-14", "Великий четвер"), ("2022-04-15", "Страсна пʼятниця"), ("2022-05-01", "День праці"), + ("2022-05-30", "День матері"), ("2022-07-19", "День революції"), - ("2022-08-01", "Спуск Святого Домініка"), - ("2022-08-10", "Підйом Святого Домініка"), ("2022-09-14", "Річниця битви під Сан-Хасінто"), ("2022-09-15", "День незалежності"), ("2022-12-08", "Непорочне зачаття Діви Марії"), diff --git a/tests/countries/test_nigeria.py b/tests/countries/test_nigeria.py index e3e96b73a..b61b4d52a 100644 --- a/tests/countries/test_nigeria.py +++ b/tests/countries/test_nigeria.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_north_macedonia.py b/tests/countries/test_north_macedonia.py index 2030dd4e6..3f38cf07c 100644 --- a/tests/countries/test_north_macedonia.py +++ b/tests/countries/test_north_macedonia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_northern_mariana_islands.py b/tests/countries/test_northern_mariana_islands.py index 5fa4fd99e..798fe1ee3 100644 --- a/tests/countries/test_northern_mariana_islands.py +++ b/tests/countries/test_northern_mariana_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_norway.py b/tests/countries/test_norway.py index ec56c1b52..fb9ed86a3 100644 --- a/tests/countries/test_norway.py +++ b/tests/countries/test_norway.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_pakistan.py b/tests/countries/test_pakistan.py index f6021992a..1d04372f7 100644 --- a/tests/countries/test_pakistan.py +++ b/tests/countries/test_pakistan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_palau.py b/tests/countries/test_palau.py index bed8f7c55..1f2fb5aab 100644 --- a/tests/countries/test_palau.py +++ b/tests/countries/test_palau.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_panama.py b/tests/countries/test_panama.py index 12642157b..7d078e124 100644 --- a/tests/countries/test_panama.py +++ b/tests/countries/test_panama.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_papua_new_guinea.py b/tests/countries/test_papua_new_guinea.py index 8db8b6554..3c03242af 100644 --- a/tests/countries/test_papua_new_guinea.py +++ b/tests/countries/test_papua_new_guinea.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_paraguay.py b/tests/countries/test_paraguay.py index 58da6b270..c3db77165 100644 --- a/tests/countries/test_paraguay.py +++ b/tests/countries/test_paraguay.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_peru.py b/tests/countries/test_peru.py index 4242b3520..85d01fbc1 100644 --- a/tests/countries/test_peru.py +++ b/tests/countries/test_peru.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_philippines.py b/tests/countries/test_philippines.py index 7ae362331..3d5018291 100644 --- a/tests/countries/test_philippines.py +++ b/tests/countries/test_philippines.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_poland.py b/tests/countries/test_poland.py index e2bff3e07..d2ee72b35 100644 --- a/tests/countries/test_poland.py +++ b/tests/countries/test_poland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_portugal.py b/tests/countries/test_portugal.py index ff854dbb4..e4f20e326 100644 --- a/tests/countries/test_portugal.py +++ b/tests/countries/test_portugal.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_puerto_rico.py b/tests/countries/test_puerto_rico.py index 895e5ba4f..f904bcdfc 100644 --- a/tests/countries/test_puerto_rico.py +++ b/tests/countries/test_puerto_rico.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_romania.py b/tests/countries/test_romania.py index 6c462c46b..0551fffc5 100644 --- a/tests/countries/test_romania.py +++ b/tests/countries/test_romania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_russia.py b/tests/countries/test_russia.py index 1ed3c1b03..9ff0b479c 100644 --- a/tests/countries/test_russia.py +++ b/tests/countries/test_russia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_saint_kitts_and_nevis.py b/tests/countries/test_saint_kitts_and_nevis.py new file mode 100644 index 000000000..2e430c69c --- /dev/null +++ b/tests/countries/test_saint_kitts_and_nevis.py @@ -0,0 +1,256 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) + +from unittest import TestCase + +from holidays.constants import HALF_DAY, PUBLIC, WORKDAY +from holidays.countries.saint_kitts_and_nevis import SaintKittsAndNevis, KN, KNA +from tests.common import CommonCountryTests + + +class TestSaintKittsAndNevis(CommonCountryTests, TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass( + SaintKittsAndNevis, years=range(1983, 2051), years_non_observed=range(1983, 2051) + ) + + def test_country_aliases(self): + self.assertAliases(SaintKittsAndNevis, KN, KNA) + + def test_no_holidays(self): + self.assertNoHolidays( + SaintKittsAndNevis(categories=(HALF_DAY, PUBLIC, WORKDAY), years=1982) + ) + + def test_special_public_holidays(self): + self.assertHoliday( + SaintKittsAndNevis(categories=PUBLIC), + "2015-02-18", + "2017-09-20", + "2017-12-19", + "2022-08-08", + "2023-07-04", + ) + + def test_special_half_day_holidays(self): + self.assertHoliday( + SaintKittsAndNevis(categories=HALF_DAY), + "2017-03-23", + "2017-04-10", + "2018-12-31", + "2019-12-31", + "2022-04-27", + "2023-07-20", + "2023-12-30", + "2024-08-01", + ) + + def test_labour_day(self): + # 1st Monday of May. + dt = ( + "2010-05-03", + "2011-05-02", + "2012-05-07", + "2013-05-06", + "2014-05-05", + "2015-05-04", + "2016-05-02", + "2017-05-01", + "2018-05-07", + "2019-05-06", + "2020-05-04", + "2021-05-03", + "2022-05-02", + "2023-05-01", + "2024-05-06", + ) + self.assertHolidayName("Labour Day", dt) + + def test_first_monday_of_august_holiday(self): + name_first_mon_aug = "First Monday of August" + name_emancipation_day = "Emancipation Day" + + dt = ( + "2010-08-02", + "2011-08-01", + "2012-08-06", + "2013-08-05", + "2014-08-04", + "2015-08-03", + "2016-08-01", + "2017-08-07", + "2018-08-06", + "2019-08-05", + "2020-08-03", + "2021-08-02", + "2022-08-01", + "2023-08-07", + "2024-08-05", + ) + self.assertHolidayName(name_emancipation_day, dt) + self.assertNoHolidayName(name_first_mon_aug, range(1998, 2051)) + self.assertNoHolidayName(name_emancipation_day, range(1983, 1998)) + + def test_culturama_day_last_lap(self): + name_culturama_day_last_lap = "Culturama Day - Last Lap" + + dt = ( + "2010-08-03", + "2011-08-02", + "2012-08-07", + "2013-08-06", + "2014-08-05", + "2015-08-04", + "2016-08-02", + "2017-08-08", + "2018-08-07", + "2019-08-06", + "2020-08-04", + "2021-08-03", + "2022-08-02", + "2023-08-08", + "2024-08-06", + ) + self.assertHolidayName(name_culturama_day_last_lap, dt) + + def test_national_heroes_day(self): + name_national_heroes_day = "National Heroes Day" + + self.assertNoHolidayName(name_national_heroes_day, range(1983, 1998)) + self.assertHolidayName( + name_national_heroes_day, (f"{year}-09-16" for year in range(1998, 2051)) + ) + + self.assertNoNonObservedHoliday( + "2001-09-17", + "2007-09-17", + "2012-09-17", + "2018-09-17", + "2029-09-17", + "2034-09-17", + "2040-09-17", + "2045-09-17", + ) + + def test_kim_collins_day(self): + self.assertNoHoliday(SaintKittsAndNevis(categories=WORKDAY), 2002) + self.assertHoliday( + SaintKittsAndNevis(categories=WORKDAY), + (f"{year}-08-25" for year in range(2003, 2051)), + ) + + def test_2015_holidays(self): # ? + # https://web.archive.org/web/20221102224614/https://www.gov.kn/in-skn-national-public-holidays/ + self.assertHolidays( + SaintKittsAndNevis(categories=(PUBLIC, WORKDAY), years=2015), + ("2015-01-01", "Carnival Day"), + ("2015-01-02", "Carnival Day - Last Lap"), + ("2015-02-18", "Federal Election Victory Day"), + ("2015-04-03", "Good Friday"), + ("2015-04-06", "Easter Monday"), + ("2015-05-04", "Labour Day"), + ("2015-05-25", "Whit Monday"), + ("2015-08-03", "Emancipation Day"), + ("2015-08-04", "Culturama Day - Last Lap"), + ("2015-08-25", "Kim Collins Day"), + ("2015-09-16", "National Heroes Day"), + ("2015-09-19", "Independence Day"), + ("2015-12-25", "Christmas Day"), + ("2015-12-26", "Boxing Day"), + ) + + def test_2021_holidays(self): + # https://www.facebook.com/photo/?fbid=3623684614351340 + self.assertHolidays( + SaintKittsAndNevis(categories=(PUBLIC, WORKDAY), years=2021), + ("2021-01-01", "Carnival Day"), + ("2021-01-02", "Carnival Day - Last Lap"), + ("2021-04-02", "Good Friday"), + ("2021-04-05", "Easter Monday"), + ("2021-05-03", "Labour Day"), + ("2021-05-24", "Whit Monday"), + ("2021-08-02", "Emancipation Day"), + ("2021-08-03", "Culturama Day - Last Lap"), + ("2021-08-25", "Kim Collins Day"), + ("2021-09-16", "National Heroes Day"), + ("2021-09-19", "Independence Day"), + ("2021-09-20", "Independence Day (observed)"), + ("2021-12-25", "Christmas Day"), + ("2021-12-26", "Boxing Day"), + ("2021-12-27", "Boxing Day (observed)"), + ) + + def test_2022_holidays(self): + # https://www.facebook.com/photo/?fbid=525835396250028 + self.assertHolidays( + SaintKittsAndNevis(categories=(PUBLIC, WORKDAY), years=2022), + ("2022-01-01", "Carnival Day"), + ("2022-01-02", "Carnival Day - Last Lap"), + ("2022-01-03", "Carnival Day - Last Lap (observed)"), + ("2022-04-15", "Good Friday"), + ("2022-04-18", "Easter Monday"), + ("2022-05-02", "Labour Day"), + ("2022-06-06", "Whit Monday"), + ("2022-08-01", "Emancipation Day"), + ("2022-08-02", "Culturama Day - Last Lap"), + ("2022-08-08", "Federal Election Victory Day"), + ("2022-08-25", "Kim Collins Day"), + ("2022-09-16", "National Heroes Day"), + ("2022-09-19", "Independence Day"), + ("2022-12-25", "Christmas Day"), + ("2022-12-26", "Boxing Day"), + ("2022-12-27", "Christmas Day (observed)"), + ) + + def test_2023_holidays(self): + # https://www.facebook.com/photo?fbid=525940556239512 + self.assertHolidays( + SaintKittsAndNevis(categories=(PUBLIC, WORKDAY), years=2023), + ("2023-01-01", "Carnival Day"), + ("2023-01-02", "Carnival Day - Last Lap"), + ("2023-01-03", "Carnival Day (observed)"), + ("2023-04-07", "Good Friday"), + ("2023-04-10", "Easter Monday"), + ("2023-05-01", "Labour Day"), + ("2023-05-29", "Whit Monday"), + ( + "2023-07-04", + "50th Anniversary of the Establishment of the Caribbean Community (CARICOM)", + ), + ("2023-08-07", "Emancipation Day"), + ("2023-08-08", "Culturama Day - Last Lap"), + ("2023-09-16", "National Heroes Day"), + ("2023-09-19", "Independence Day"), + ("2023-08-25", "Kim Collins Day"), + ("2023-12-25", "Christmas Day"), + ("2023-12-26", "Boxing Day"), + ) + + def test_2024_holidays(self): + # https://www.facebook.com/photo/?fbid=769697881863777 + self.assertHolidays( + SaintKittsAndNevis(categories=(PUBLIC, WORKDAY), years=2024), + ("2024-01-01", "Carnival Day"), + ("2024-01-02", "Carnival Day - Last Lap"), + ("2024-03-29", "Good Friday"), + ("2024-04-01", "Easter Monday"), + ("2024-05-06", "Labour Day"), + ("2024-05-20", "Whit Monday"), + ("2024-08-05", "Emancipation Day"), + ("2024-08-06", "Culturama Day - Last Lap"), + ("2024-09-16", "National Heroes Day"), + ("2024-08-25", "Kim Collins Day"), + ("2024-09-19", "Independence Day"), + ("2024-12-25", "Christmas Day"), + ("2024-12-26", "Boxing Day"), + ) diff --git a/tests/countries/test_samoa.py b/tests/countries/test_samoa.py index a99096120..36e4414e6 100644 --- a/tests/countries/test_samoa.py +++ b/tests/countries/test_samoa.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_san_marino.py b/tests/countries/test_san_marino.py index bf2a87f7b..7ed847647 100644 --- a/tests/countries/test_san_marino.py +++ b/tests/countries/test_san_marino.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_saudi_arabia.py b/tests/countries/test_saudi_arabia.py index 498d5f77f..381ea2b11 100644 --- a/tests/countries/test_saudi_arabia.py +++ b/tests/countries/test_saudi_arabia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_serbia.py b/tests/countries/test_serbia.py index fdff73b26..d62fdf3c5 100644 --- a/tests/countries/test_serbia.py +++ b/tests/countries/test_serbia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_seychelles.py b/tests/countries/test_seychelles.py index 52d8df59e..bd6e82c29 100644 --- a/tests/countries/test_seychelles.py +++ b/tests/countries/test_seychelles.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_singapore.py b/tests/countries/test_singapore.py index 2fc3c6e62..fae7d0d6e 100644 --- a/tests/countries/test_singapore.py +++ b/tests/countries/test_singapore.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -198,3 +198,62 @@ def test_non_observed(self): def test_special_holidays(self): self.assertHoliday("2015-08-07") + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2023-01-01", "New Year's Day"), + ("2023-01-02", "New Year's Day (observed)"), + ("2023-01-22", "Chinese New Year"), + ("2023-01-23", "Chinese New Year"), + ("2023-01-24", "Chinese New Year (observed)"), + ("2023-04-07", "Good Friday"), + ("2023-04-22", "Hari Raya Puasa"), + ("2023-05-01", "Labour Day"), + ("2023-06-02", "Vesak Day"), + ("2023-06-29", "Hari Raya Haji"), + ("2023-08-09", "National Day"), + ("2023-09-01", "Polling Day"), + ("2023-11-12", "Deepavali"), + ("2023-11-13", "Deepavali (observed)"), + ("2023-12-25", "Christmas Day"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2023-01-01", "New Year's Day"), + ("2023-01-02", "New Year's Day (observed)"), + ("2023-01-22", "Chinese New Year"), + ("2023-01-23", "Chinese New Year"), + ("2023-01-24", "Chinese New Year (observed)"), + ("2023-04-07", "Good Friday"), + ("2023-04-22", "Eid al-Fitr"), + ("2023-05-01", "Labor Day"), + ("2023-06-02", "Vesak Day"), + ("2023-06-29", "Eid al-Adha"), + ("2023-08-09", "National Day"), + ("2023-09-01", "Polling Day"), + ("2023-11-12", "Deepavali"), + ("2023-11-13", "Deepavali (observed)"), + ("2023-12-25", "Christmas Day"), + ) + + def test_l10n_th(self): + self.assertLocalizedHolidays( + "th", + ("2023-01-01", "วันขึ้นปีใหม่"), + ("2023-01-02", "ชดเชยวันขึ้นปีใหม่"), + ("2023-01-22", "วันตรุษจีน"), + ("2023-01-23", "วันตรุษจีน"), + ("2023-01-24", "ชดเชยวันตรุษจีน"), + ("2023-04-07", "วันศุกร์ประเสริฐ"), + ("2023-04-22", "วันอีฎิ้ลฟิตริ"), + ("2023-05-01", "วันแรงงาน"), + ("2023-06-02", "วันวิสาขบูชา"), + ("2023-06-29", "วันอีดิ้ลอัฎฮา"), + ("2023-08-09", "วันชาติสิงคโปร์"), + ("2023-09-01", "วันเลือกตั้ง"), + ("2023-11-12", "วันดีปาวลี"), + ("2023-11-13", "ชดเชยวันดีปาวลี"), + ("2023-12-25", "วันคริสต์มาส"), + ) diff --git a/tests/countries/test_slovakia.py b/tests/countries/test_slovakia.py index ebd883961..d2a5e8105 100644 --- a/tests/countries/test_slovakia.py +++ b/tests/countries/test_slovakia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_slovenia.py b/tests/countries/test_slovenia.py index a3a3e5219..526744dbd 100644 --- a/tests/countries/test_slovenia.py +++ b/tests/countries/test_slovenia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_south_africa.py b/tests/countries/test_south_africa.py index e9d592b3a..e5ad098d7 100644 --- a/tests/countries/test_south_africa.py +++ b/tests/countries/test_south_africa.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_south_korea.py b/tests/countries/test_south_korea.py index b503a5712..3ed9adf32 100644 --- a/tests/countries/test_south_korea.py +++ b/tests/countries/test_south_korea.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_spain.py b/tests/countries/test_spain.py index fecf134d9..f94e00d38 100644 --- a/tests/countries/test_spain.py +++ b/tests/countries/test_spain.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_sweden.py b/tests/countries/test_sweden.py index 4013b0dec..c30890d61 100644 --- a/tests/countries/test_sweden.py +++ b/tests/countries/test_sweden.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -316,6 +316,77 @@ def test_l10n_en_us(self): ("2018-12-31", "New Year's Eve"), ) + def test_l10n_th(self): + self.assertLocalizedHolidays( + "th", + ("2018-01-01", "วันขึ้นปีใหม่"), + ("2018-01-06", "วันสมโภชพระคริสต์แสดงองค์"), + ("2018-01-07", "วันอาทิตย์"), + ("2018-01-14", "วันอาทิตย์"), + ("2018-01-21", "วันอาทิตย์"), + ("2018-01-28", "วันอาทิตย์"), + ("2018-02-04", "วันอาทิตย์"), + ("2018-02-11", "วันอาทิตย์"), + ("2018-02-18", "วันอาทิตย์"), + ("2018-02-25", "วันอาทิตย์"), + ("2018-03-04", "วันอาทิตย์"), + ("2018-03-11", "วันอาทิตย์"), + ("2018-03-18", "วันอาทิตย์"), + ("2018-03-25", "วันอาทิตย์"), + ("2018-03-30", "วันศุกร์ประเสริฐ"), + ("2018-04-01", "วันอาทิตย์; วันอาทิตย์อีสเตอร์"), + ("2018-04-02", "วันจันทร์อีสเตอร์"), + ("2018-04-08", "วันอาทิตย์"), + ("2018-04-15", "วันอาทิตย์"), + ("2018-04-22", "วันอาทิตย์"), + ("2018-04-29", "วันอาทิตย์"), + ("2018-05-01", "วันเมย์เดย์ (วันแรงงาน)"), + ("2018-05-06", "วันอาทิตย์"), + ("2018-05-10", "วันสมโภชพระเยซูเจ้าเสด็จขึ้นสวรรค์"), + ("2018-05-13", "วันอาทิตย์"), + ("2018-05-20", "วันสมโภชพระจิตเจ้า; วันอาทิตย์"), + ("2018-05-27", "วันอาทิตย์"), + ("2018-06-03", "วันอาทิตย์"), + ("2018-06-06", "วันชาติสวีเดน"), + ("2018-06-10", "วันอาทิตย์"), + ("2018-06-17", "วันอาทิตย์"), + ("2018-06-22", "วันก่อนวันกลางฤดูร้อน"), + ("2018-06-23", "วันกลางฤดูร้อน"), + ("2018-06-24", "วันอาทิตย์"), + ("2018-07-01", "วันอาทิตย์"), + ("2018-07-08", "วันอาทิตย์"), + ("2018-07-15", "วันอาทิตย์"), + ("2018-07-22", "วันอาทิตย์"), + ("2018-07-29", "วันอาทิตย์"), + ("2018-08-05", "วันอาทิตย์"), + ("2018-08-12", "วันอาทิตย์"), + ("2018-08-19", "วันอาทิตย์"), + ("2018-08-26", "วันอาทิตย์"), + ("2018-09-02", "วันอาทิตย์"), + ("2018-09-09", "วันอาทิตย์"), + ("2018-09-16", "วันอาทิตย์"), + ("2018-09-23", "วันอาทิตย์"), + ("2018-09-30", "วันอาทิตย์"), + ("2018-10-07", "วันอาทิตย์"), + ("2018-10-14", "วันอาทิตย์"), + ("2018-10-21", "วันอาทิตย์"), + ("2018-10-28", "วันอาทิตย์"), + ("2018-11-03", "วันสมโภชนักบุญทั้งหลาย"), + ("2018-11-04", "วันอาทิตย์"), + ("2018-11-11", "วันอาทิตย์"), + ("2018-11-18", "วันอาทิตย์"), + ("2018-11-25", "วันอาทิตย์"), + ("2018-12-02", "วันอาทิตย์"), + ("2018-12-09", "วันอาทิตย์"), + ("2018-12-16", "วันอาทิตย์"), + ("2018-12-23", "วันอาทิตย์"), + ("2018-12-24", "วันคริสต์มาสอีฟ"), + ("2018-12-25", "วันคริสต์มาส"), + ("2018-12-26", "วันคริสต์มาสวันที่สอง"), + ("2018-12-30", "วันอาทิตย์"), + ("2018-12-31", "วันสิ้นปี"), + ) + def test_l10n_uk(self): self.assertLocalizedHolidays( "uk", diff --git a/tests/countries/test_switzerland.py b/tests/countries/test_switzerland.py index e2f842e93..0559658dc 100644 --- a/tests/countries/test_switzerland.py +++ b/tests/countries/test_switzerland.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_taiwan.py b/tests/countries/test_taiwan.py index 8ffb08490..515741d0d 100644 --- a/tests/countries/test_taiwan.py +++ b/tests/countries/test_taiwan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -146,9 +146,14 @@ def test_childrens_day(self): self.assertNoHolidayName(name, Taiwan(years=1989)) obs_dt = ( + "2013-04-05", "2015-04-03", + "2016-04-05", + "2017-04-03", "2020-04-03", - "2021-04-05", + "2021-04-02", + "2024-04-05", + "2025-04-03", ) self.assertHolidayName(f"{name}(慶祝)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) @@ -176,7 +181,7 @@ def test_tomb_sweeping_day(self): obs_dt = ( "2015-04-06", "2020-04-02", - "2021-04-06", + "2021-04-05", ) self.assertHolidayName(f"{name}(慶祝)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) @@ -482,7 +487,6 @@ def test_2021(self): "2021-04-02", "2021-04-04", "2021-04-05", - "2021-04-06", "2021-06-14", "2021-09-20", "2021-09-21", @@ -553,6 +557,24 @@ def test_2024(self): ("2024-10-10", "中華民國國慶日"), ) + def test_2025(self): + self.assertHolidays( + Taiwan(years=2025), + ("2025-01-01", "中華民國開國紀念日"), + ("2025-01-27", "休息日(2025-02-08日起取代)"), + ("2025-01-28", "農曆除夕"), + ("2025-01-29", "春節"), + ("2025-01-30", "春節"), + ("2025-01-31", "春節"), + ("2025-02-28", "和平紀念日"), + ("2025-04-03", "兒童節(慶祝)"), + ("2025-04-04", "兒童節; 清明節"), + ("2025-05-30", "端午節(慶祝)"), + ("2025-05-31", "端午節"), + ("2025-10-06", "中秋節"), + ("2025-10-10", "中華民國國慶日"), + ) + def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "中華民國開國紀念日"), diff --git a/tests/countries/test_tanzania.py b/tests/countries/test_tanzania.py index e9dea2805..ccf47cb5e 100644 --- a/tests/countries/test_tanzania.py +++ b/tests/countries/test_tanzania.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_thailand.py b/tests/countries/test_thailand.py index 30dedaf49..1ed5df759 100644 --- a/tests/countries/test_thailand.py +++ b/tests/countries/test_thailand.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_timor_leste.py b/tests/countries/test_timor_leste.py index 2cf4c6d50..0d45208c3 100644 --- a/tests/countries/test_timor_leste.py +++ b/tests/countries/test_timor_leste.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_tonga.py b/tests/countries/test_tonga.py index d5cdcef88..df9160287 100644 --- a/tests/countries/test_tonga.py +++ b/tests/countries/test_tonga.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_tunisia.py b/tests/countries/test_tunisia.py index d21b0b0e2..ec0869706 100644 --- a/tests/countries/test_tunisia.py +++ b/tests/countries/test_tunisia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_turkey.py b/tests/countries/test_turkey.py index cdd11a390..bad7cdfc4 100644 --- a/tests/countries/test_turkey.py +++ b/tests/countries/test_turkey.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_ukraine.py b/tests/countries/test_ukraine.py index e1be80b82..b4332e6b6 100644 --- a/tests/countries/test_ukraine.py +++ b/tests/countries/test_ukraine.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_united_arab_emirates.py b/tests/countries/test_united_arab_emirates.py index b6f5bac8a..978cee54c 100644 --- a/tests/countries/test_united_arab_emirates.py +++ b/tests/countries/test_united_arab_emirates.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_united_kingdom.py b/tests/countries/test_united_kingdom.py index 4bd9c8e28..791eca12e 100644 --- a/tests/countries/test_united_kingdom.py +++ b/tests/countries/test_united_kingdom.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import warnings diff --git a/tests/countries/test_united_states.py b/tests/countries/test_united_states.py index 2d68e9597..19a20c552 100644 --- a/tests/countries/test_united_states.py +++ b/tests/countries/test_united_states.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase @@ -17,7 +17,7 @@ from tests.common import CommonCountryTests -class TestUS(CommonCountryTests, TestCase): +class TestUnitedStates(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -358,7 +358,7 @@ def test_washingtons_birthday(self): ) self.assertHolidayName(name, dt) - subdiv_dont = {"AL", "AR", "DE", "FL", "GA", "NM", "PR", "VI"} + subdiv_dont = {"AL", "AR", "DE", "FL", "GA", "IN", "NM", "PR", "VI"} for subdiv in set(UnitedStates.subdivisions) - subdiv_dont: self.assertHolidayName(name, self.state_hols[subdiv], dt) @@ -380,15 +380,18 @@ def test_washingtons_birthday_states(self): "2023-02-20", ) - self.assertHolidayName( - "George Washington & Thomas Jefferson's Birthday", self.state_hols["AL"], dt - ) - - self.assertHolidayName( - "George Washington's Birthday and Daisy Gatson Bates Day", self.state_hols["AR"], dt - ) - - self.assertNoHoliday(self.state_hols["DE"], dt) + for subdiv, name in ( + ("AL", "George Washington & Thomas Jefferson's Birthday"), + ("AR", "George Washington's Birthday and Daisy Gatson Bates Day"), + ("DE", None), + ("NM", None), + ("PR", "Presidents' Day"), + ("VI", "Presidents' Day"), + ): + if name: + self.assertHolidayName(name, self.state_hols[subdiv], dt) + else: + self.assertNoHoliday(self.state_hols[subdiv], dt) self.assertNoHoliday( self.state_hols["FL"], @@ -406,30 +409,25 @@ def test_washingtons_birthday_states(self): "2023-02-20", ) - self.assertHolidayName( - "Washington's Birthday", - self.state_hols["GA"], - "2010-12-24", - "2011-12-24", + dt = ( + "2010-12-23", + "2011-12-23", "2012-12-24", "2013-12-24", "2014-12-26", "2015-12-24", - "2016-12-24", - "2017-12-24", + "2016-12-23", + "2017-12-26", "2018-12-24", "2019-12-24", "2020-12-24", - "2021-12-24", - "2022-12-24", - "2023-12-24", + "2021-12-23", + "2022-12-23", + "2023-12-26", + "2024-12-24", ) - - self.assertNoHoliday(self.state_hols["NM"], dt) - - self.assertHolidayName("Presidents' Day", self.state_hols["PR"], dt) - - self.assertHolidayName("Presidents' Day", self.state_hols["VI"], dt) + for subdiv in ("GA", "IN"): + self.assertHolidayName("Washington's Birthday", self.state_hols[subdiv], dt) def test_columbus_day(self): name = "Columbus Day" @@ -992,6 +990,27 @@ def test_emancipation_day(self): f"{name} (observed)", UnitedStates(subdiv="DC", observed=False), obs_dt ) + def test_american_samoa_flag_day(self): + name = "American Samoa Flag Day" + self.assertNoHolidayName(name) + self.assertHolidayName( + name, self.state_hols["AS"], (f"{year}-04-17" for year in range(1901, 2050)) + ) + self.assertNoHolidayName(name, self.state_hols["AS"], range(1865, 1901)) + obs_dt = ( + "2004-04-16", + "2005-04-18", + "2010-04-16", + "2011-04-18", + "2016-04-18", + "2021-04-16", + "2022-04-18", + ) + self.assertHolidayName(f"{name} (observed)", self.state_hols["AS"], obs_dt) + self.assertNoNonObservedHolidayName( + f"{name} (observed)", UnitedStates(subdiv="AS", observed=False), obs_dt + ) + def test_patriots_day(self): name = "Patriots' Day" self.assertNoHolidayName(name) @@ -1336,6 +1355,28 @@ def test_emancipation_day_in_virgin_islands(self): name, self.state_hols["VI"], (f"{year}-07-03" for year in range(1865, 2050)) ) + def test_manua_islands_cession_day(self): + name = "Manu'a Islands Cession Day" + self.assertNoHolidayName(name) + self.assertHolidayName( + name, self.state_hols["AS"], (f"{year}-07-16" for year in range(1983, 2050)) + ) + self.assertNoHolidayName(name, self.state_hols["AS"], range(1865, 1983)) + obs_dt = ( + "2000-07-17", + "2005-07-15", + "2006-07-17", + "2011-07-15", + "2016-07-15", + "2017-07-17", + "2022-07-15", + "2023-07-17", + ) + self.assertHolidayName(f"{name} (observed)", self.state_hols["AS"], obs_dt) + self.assertNoNonObservedHolidayName( + f"{name} (observed)", UnitedStates(subdiv="AS", observed=False), obs_dt + ) + def test_liberation_day_guam(self): name = "Liberation Day (Guam)" self.assertNoHolidayName(name) @@ -1473,6 +1514,29 @@ def test_commonwealth_cultural_day(self): ) self.assertHolidayName(name, self.state_hols["MP"], dt) + def test_white_sunday(self): + name = "White Sunday" + self.assertNoHolidayName(name) + self.assertHolidayName(name, self.state_hols["AS"], range(1865, 2050)) + dt = ( + "2010-10-10", + "2011-10-09", + "2012-10-14", + "2013-10-13", + "2014-10-12", + "2015-10-11", + "2016-10-09", + "2017-10-08", + "2018-10-14", + "2019-10-13", + "2020-10-11", + "2021-10-10", + "2022-10-09", + "2023-10-08", + "2024-10-13", + ) + self.assertHolidayName(name, self.state_hols["AS"], dt) + def test_alaska_day(self): name = "Alaska Day" self.assertNoHolidayName(name) @@ -1818,7 +1882,6 @@ def test_christmas_eve(self): "2023-12-22", ) for subdiv, start_year in ( - ("AS", -1), ("KS", 2013), ("MI", 2013), ("NC", 2013), @@ -1830,8 +1893,7 @@ def test_christmas_eve(self): self.state_hols[subdiv], (f"{year}-12-24" for year in range(start_year if start_year > 0 else 1865, 2050)), ) - if start_year > 0: - self.assertNoHolidayName(name, self.state_hols[subdiv], range(1865, start_year)) + self.assertNoHolidayName(name, self.state_hols[subdiv], range(1865, start_year)) self.assertHolidayName(f"{name} (observed)", self.state_hols[subdiv], obs_dt) self.assertNoNonObservedHolidayName( f"{name} (observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt diff --git a/tests/countries/test_united_states_minor_outlying_islands.py b/tests/countries/test_united_states_minor_outlying_islands.py index 9edbf8978..ce4521174 100644 --- a/tests/countries/test_united_states_minor_outlying_islands.py +++ b/tests/countries/test_united_states_minor_outlying_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_united_states_virgin_islands.py b/tests/countries/test_united_states_virgin_islands.py index de0a34f1d..b2d9b1b06 100644 --- a/tests/countries/test_united_states_virgin_islands.py +++ b/tests/countries/test_united_states_virgin_islands.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/countries/test_uruguay.py b/tests/countries/test_uruguay.py index af895f18a..414f58714 100644 --- a/tests/countries/test_uruguay.py +++ b/tests/countries/test_uruguay.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_uzbekistan.py b/tests/countries/test_uzbekistan.py index ab9c44f76..2ff5b5a73 100644 --- a/tests/countries/test_uzbekistan.py +++ b/tests/countries/test_uzbekistan.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_vanuatu.py b/tests/countries/test_vanuatu.py index c76f8c45b..5b87c06cc 100644 --- a/tests/countries/test_vanuatu.py +++ b/tests/countries/test_vanuatu.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_vatican_city.py b/tests/countries/test_vatican_city.py index 1e026603a..8f9177135 100644 --- a/tests/countries/test_vatican_city.py +++ b/tests/countries/test_vatican_city.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_venezuela.py b/tests/countries/test_venezuela.py index 53722cee3..67f93d383 100644 --- a/tests/countries/test_venezuela.py +++ b/tests/countries/test_venezuela.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_vietnam.py b/tests/countries/test_vietnam.py index e8fe354fd..cce21f49e 100644 --- a/tests/countries/test_vietnam.py +++ b/tests/countries/test_vietnam.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date @@ -28,14 +28,12 @@ def test_country_aliases(self): def test_common(self): self.assertHolidayName( - "International New Year's Day", + "Tết Dương lịch", "2020-01-01", ) def test_first_day_of_january(self): - self.assertHolidayName( - "International New Year's Day", (f"{year}-01-01" for year in range(1979, 2050)) - ) + self.assertHolidayName("Tết Dương lịch", (f"{year}-01-01" for year in range(1979, 2050))) def test_lunar_new_year(self): for dts in ( @@ -57,41 +55,39 @@ def test_lunar_new_year(self): (2022, 2, 1), ): dt = date(*dts) - self.assertHolidayName("Vietnamese New Year's Eve", _timedelta(dt, -1)) - self.assertHolidayName("Vietnamese New Year", dt) - self.assertHolidayName("The second day of Tet Holiday", _timedelta(dt, +1)) - self.assertHolidayName("The third day of Tet Holiday", _timedelta(dt, +2)) - self.assertHolidayName("The forth day of Tet Holiday", _timedelta(dt, +3)) - self.assertHolidayName("The fifth day of Tet Holiday", _timedelta(dt, +4)) + self.assertHolidayName("Giao thừa Tết Nguyên Đán", _timedelta(dt, -1)) + self.assertHolidayName("Tết Nguyên Đán", dt) + self.assertHolidayName("Mùng hai Tết Nguyên Đán", _timedelta(dt, +1)) + self.assertHolidayName("Mùng ba Tết Nguyên Đán", _timedelta(dt, +2)) + self.assertHolidayName("Mùng bốn Tết Nguyên Đán", _timedelta(dt, +3)) + self.assertHolidayName("Mùng năm Tết Nguyên Đán", _timedelta(dt, +4)) def test_king_hung_day(self): self.assertHolidayName( - "Hung Kings Commemoration Day", + "Ngày Giỗ Tổ Hùng Vương", "2020-04-02", "2021-04-21", "2022-04-10", ) def test_liberation_day(self): - self.assertHolidayName( - "Liberation Day/Reunification Day", (f"{year}-04-30" for year in range(1979, 2050)) - ) + self.assertHolidayName("Ngày Chiến thắng", (f"{year}-04-30" for year in range(1979, 2050))) def test_international_labor_day(self): self.assertHolidayName( - "International Labor Day", (f"{year}-05-01" for year in range(1979, 2050)) + "Ngày Quốc tế Lao động", (f"{year}-05-01" for year in range(1979, 2050)) ) def test_independence_day(self): - self.assertHolidayName("Independence Day", (f"{year}-09-02" for year in range(1979, 2050))) + self.assertHolidayName("Quốc khánh", (f"{year}-09-02" for year in range(1979, 2050))) def test_observed(self): observed_holidays = ( - # International New Year's Day. + # New Year's Day. "2012-01-02", "2017-01-02", "2022-01-03", - # Hung Kings Commemoration Day. + # Hung Kings' Commemoration Day. "2012-04-02", "2016-04-18", "2019-04-15", @@ -108,7 +104,7 @@ def test_observed(self): "2016-05-03", "2021-05-03", "2022-05-03", - # Independence Day. + # National Day. "2012-09-03", "2017-09-04", "2018-09-03", @@ -116,3 +112,42 @@ def test_observed(self): ) self.assertHoliday(observed_holidays) self.assertNoNonObservedHoliday(observed_holidays) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2022-01-01", "Tết Dương lịch"), + ("2022-01-03", "Tết Dương lịch (nghỉ bù)"), + ("2022-01-31", "Giao thừa Tết Nguyên Đán"), + ("2022-02-01", "Tết Nguyên Đán"), + ("2022-02-02", "Mùng hai Tết Nguyên Đán"), + ("2022-02-03", "Mùng ba Tết Nguyên Đán"), + ("2022-02-04", "Mùng bốn Tết Nguyên Đán"), + ("2022-02-05", "Mùng năm Tết Nguyên Đán"), + ("2022-04-10", "Ngày Giỗ Tổ Hùng Vương"), + ("2022-04-11", "Ngày Giỗ Tổ Hùng Vương (nghỉ bù)"), + ("2022-04-30", "Ngày Chiến thắng"), + ("2022-05-01", "Ngày Quốc tế Lao động"), + ("2022-05-02", "Ngày Chiến thắng (nghỉ bù)"), + ("2022-05-03", "Ngày Quốc tế Lao động (nghỉ bù)"), + ("2022-09-02", "Quốc khánh"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2022-01-01", "New Year's Day"), + ("2022-01-03", "New Year's Day (observed)"), + ("2022-01-31", "Lunar New Year's Eve"), + ("2022-02-01", "Lunar New Year"), + ("2022-02-02", "The second day of Tet Holiday"), + ("2022-02-03", "The third day of Tet Holiday"), + ("2022-02-04", "The fourth day of Tet Holiday"), + ("2022-02-05", "The fifth day of Tet Holiday"), + ("2022-04-10", "Hung Kings' Commemoration Day"), + ("2022-04-11", "Hung Kings' Commemoration Day (observed)"), + ("2022-04-30", "Liberation Day/Reunification Day"), + ("2022-05-01", "International Labor Day"), + ("2022-05-02", "Liberation Day/Reunification Day (observed)"), + ("2022-05-03", "International Labor Day (observed)"), + ("2022-09-02", "National Day"), + ) diff --git a/tests/countries/test_zambia.py b/tests/countries/test_zambia.py index cb29ff15f..1b00fc2ab 100644 --- a/tests/countries/test_zambia.py +++ b/tests/countries/test_zambia.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/countries/test_zimbabwe.py b/tests/countries/test_zimbabwe.py index 0f27cd7b4..bc666040f 100644 --- a/tests/countries/test_zimbabwe.py +++ b/tests/countries/test_zimbabwe.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/financial/__init__.py b/tests/financial/__init__.py index 4e11569da..a4cb40298 100644 --- a/tests/financial/__init__.py +++ b/tests/financial/__init__.py @@ -7,5 +7,5 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) diff --git a/tests/financial/test_european_central_bank.py b/tests/financial/test_european_central_bank.py index dccdbbd15..3959e77a1 100644 --- a/tests/financial/test_european_central_bank.py +++ b/tests/financial/test_european_central_bank.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/financial/test_ice_futures_europe.py b/tests/financial/test_ice_futures_europe.py index 987ea3f2f..425783aa4 100644 --- a/tests/financial/test_ice_futures_europe.py +++ b/tests/financial/test_ice_futures_europe.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/financial/test_ny_stock_exchange.py b/tests/financial/test_ny_stock_exchange.py index ea4c754d9..dba564fbd 100644 --- a/tests/financial/test_ny_stock_exchange.py +++ b/tests/financial/test_ny_stock_exchange.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/test_docs.py b/tests/test_docs.py index 99a30b291..ce86fb1c6 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import re @@ -136,7 +136,7 @@ def test_supported_countries_table(self): ), ) - country_names = set(c.split("(the)")[0] for c in country_names) + country_names = {c.split("(the)")[0] for c in country_names} supported_countries = list_supported_countries(include_aliases=False) localized_countries = list_localized_countries(include_aliases=False) for country_code in supported_countries: diff --git a/tests/test_holiday_base.py b/tests/test_holiday_base.py index 833dc63ca..9a00fceb4 100644 --- a/tests/test_holiday_base.py +++ b/tests/test_holiday_base.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import pickle @@ -1140,51 +1140,51 @@ class TestWorkdays(unittest.TestCase): def setUp(self): self.hb = CountryStub6(years=2024) - def test_is_workday(self): - self.assertTrue(self.hb.is_workday("2024-02-12")) - self.assertFalse(self.hb.is_workday("2024-02-17")) - self.assertFalse(self.hb.is_workday("2024-02-19")) - self.assertTrue(self.hb.is_workday("2024-02-24")) - - self.assertTrue(self.hb.is_workday("2024-04-30")) - self.assertFalse(self.hb.is_workday("2024-05-01")) - self.assertFalse(self.hb.is_workday("2024-05-02")) - self.assertTrue(self.hb.is_workday("2024-05-03")) - - def test_get_nth_workday(self): - self.assertEqual(self.hb.get_nth_workday("2024-01-04", 0), date(2024, 1, 4)) - self.assertEqual(self.hb.get_nth_workday("2024-01-04", +1), date(2024, 1, 5)) - self.assertEqual(self.hb.get_nth_workday("2024-01-04", +3), date(2024, 1, 9)) - self.assertEqual(self.hb.get_nth_workday("2024-01-06", +1), date(2024, 1, 8)) - self.assertEqual(self.hb.get_nth_workday("2024-01-26", -10), date(2024, 1, 12)) - self.assertEqual(self.hb.get_nth_workday("2024-01-21", -1), date(2024, 1, 19)) - - self.assertEqual(self.hb.get_nth_workday("2024-02-15", +4), date(2024, 2, 22)) - self.assertEqual(self.hb.get_nth_workday("2024-02-15", +5), date(2024, 2, 23)) - self.assertEqual(self.hb.get_nth_workday("2024-02-15", +6), date(2024, 2, 24)) - self.assertEqual(self.hb.get_nth_workday("2024-02-15", +7), date(2024, 2, 26)) - self.assertEqual(self.hb.get_nth_workday("2024-02-26", -7), date(2024, 2, 15)) - self.assertEqual(self.hb.get_nth_workday("2024-02-25", -7), date(2024, 2, 15)) - - self.assertEqual(self.hb.get_nth_workday("2024-04-29", +1), date(2024, 4, 30)) - self.assertEqual(self.hb.get_nth_workday("2024-04-29", +2), date(2024, 5, 3)) - self.assertEqual(self.hb.get_nth_workday("2024-04-29", +3), date(2024, 5, 6)) - self.assertEqual(self.hb.get_nth_workday("2024-04-29", +4), date(2024, 5, 7)) - self.assertEqual(self.hb.get_nth_workday("2024-05-10", -10), date(2024, 4, 24)) - self.assertEqual(self.hb.get_nth_workday("2024-05-10", -7), date(2024, 4, 29)) - self.assertEqual(self.hb.get_nth_workday("2024-05-10", -5), date(2024, 5, 3)) - - def test_get_workdays_number(self): - self.assertEqual(self.hb.get_workdays_number("2024-01-03", "2024-01-23"), 14) - self.assertEqual(self.hb.get_workdays_number("2024-01-23", "2024-01-03"), 14) - self.assertEqual(self.hb.get_workdays_number("2024-01-06", "2024-01-07"), 0) - self.assertEqual(self.hb.get_workdays_number("2024-01-16", "2024-01-16"), 0) - - self.assertEqual(self.hb.get_workdays_number("2024-02-08", "2024-02-15"), 5) - self.assertEqual(self.hb.get_workdays_number("2024-02-15", "2024-02-22"), 4) - self.assertEqual(self.hb.get_workdays_number("2024-02-22", "2024-02-29"), 6) - - self.assertEqual(self.hb.get_workdays_number("2024-04-29", "2024-05-03"), 2) - self.assertEqual(self.hb.get_workdays_number("2024-04-29", "2024-05-04"), 2) - self.assertEqual(self.hb.get_workdays_number("2024-04-29", "2024-05-05"), 2) - self.assertEqual(self.hb.get_workdays_number("2024-04-29", "2024-05-06"), 3) + def test_is_working_day(self): + self.assertTrue(self.hb.is_working_day("2024-02-12")) + self.assertFalse(self.hb.is_working_day("2024-02-17")) + self.assertFalse(self.hb.is_working_day("2024-02-19")) + self.assertTrue(self.hb.is_working_day("2024-02-24")) + + self.assertTrue(self.hb.is_working_day("2024-04-30")) + self.assertFalse(self.hb.is_working_day("2024-05-01")) + self.assertFalse(self.hb.is_working_day("2024-05-02")) + self.assertTrue(self.hb.is_working_day("2024-05-03")) + + def test_get_nth_working_day(self): + self.assertEqual(self.hb.get_nth_working_day("2024-01-04", 0), date(2024, 1, 4)) + self.assertEqual(self.hb.get_nth_working_day("2024-01-04", +1), date(2024, 1, 5)) + self.assertEqual(self.hb.get_nth_working_day("2024-01-04", +3), date(2024, 1, 9)) + self.assertEqual(self.hb.get_nth_working_day("2024-01-06", +1), date(2024, 1, 8)) + self.assertEqual(self.hb.get_nth_working_day("2024-01-26", -10), date(2024, 1, 12)) + self.assertEqual(self.hb.get_nth_working_day("2024-01-21", -1), date(2024, 1, 19)) + + self.assertEqual(self.hb.get_nth_working_day("2024-02-15", +4), date(2024, 2, 22)) + self.assertEqual(self.hb.get_nth_working_day("2024-02-15", +5), date(2024, 2, 23)) + self.assertEqual(self.hb.get_nth_working_day("2024-02-15", +6), date(2024, 2, 24)) + self.assertEqual(self.hb.get_nth_working_day("2024-02-15", +7), date(2024, 2, 26)) + self.assertEqual(self.hb.get_nth_working_day("2024-02-26", -7), date(2024, 2, 15)) + self.assertEqual(self.hb.get_nth_working_day("2024-02-25", -7), date(2024, 2, 15)) + + self.assertEqual(self.hb.get_nth_working_day("2024-04-29", +1), date(2024, 4, 30)) + self.assertEqual(self.hb.get_nth_working_day("2024-04-29", +2), date(2024, 5, 3)) + self.assertEqual(self.hb.get_nth_working_day("2024-04-29", +3), date(2024, 5, 6)) + self.assertEqual(self.hb.get_nth_working_day("2024-04-29", +4), date(2024, 5, 7)) + self.assertEqual(self.hb.get_nth_working_day("2024-05-10", -10), date(2024, 4, 24)) + self.assertEqual(self.hb.get_nth_working_day("2024-05-10", -7), date(2024, 4, 29)) + self.assertEqual(self.hb.get_nth_working_day("2024-05-10", -5), date(2024, 5, 3)) + + def test_get_working_days_count(self): + self.assertEqual(self.hb.get_working_days_count("2024-01-03", "2024-01-23"), 15) + self.assertEqual(self.hb.get_working_days_count("2024-01-23", "2024-01-03"), 15) + self.assertEqual(self.hb.get_working_days_count("2024-01-06", "2024-01-07"), 0) + self.assertEqual(self.hb.get_working_days_count("2024-01-16", "2024-01-16"), 1) + + self.assertEqual(self.hb.get_working_days_count("2024-02-08", "2024-02-15"), 6) + self.assertEqual(self.hb.get_working_days_count("2024-02-15", "2024-02-22"), 5) + self.assertEqual(self.hb.get_working_days_count("2024-02-22", "2024-02-29"), 7) + + self.assertEqual(self.hb.get_working_days_count("2024-04-29", "2024-05-03"), 3) + self.assertEqual(self.hb.get_working_days_count("2024-04-29", "2024-05-04"), 3) + self.assertEqual(self.hb.get_working_days_count("2024-04-29", "2024-05-05"), 3) + self.assertEqual(self.hb.get_working_days_count("2024-04-29", "2024-05-06"), 4) diff --git a/tests/test_holiday_groups.py b/tests/test_holiday_groups.py index a59111a09..d81d98923 100644 --- a/tests/test_holiday_groups.py +++ b/tests/test_holiday_groups.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/test_imports.py b/tests/test_imports.py index 5921b2a8f..2e4b2e3c8 100644 --- a/tests/test_imports.py +++ b/tests/test_imports.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/test_l10n.py b/tests/test_l10n.py index a05fd824e..4dbeb21fd 100644 --- a/tests/test_l10n.py +++ b/tests/test_l10n.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import os @@ -79,5 +79,5 @@ def test_localization(self): self.assertFalse( obsolete_entries, f"The {entity_code} {language} localization contains obsolete entries: " - f"{', '.join((oe.msgid for oe in obsolete_entries))}", + f"{', '.join(oe.msgid for oe in obsolete_entries)}", ) diff --git a/tests/test_observed_holiday_base.py b/tests/test_observed_holiday_base.py index 52a798ad1..166bf6163 100644 --- a/tests/test_observed_holiday_base.py +++ b/tests/test_observed_holiday_base.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from datetime import date diff --git a/tests/test_package.py b/tests/test_package.py index bc639b20d..46ca64367 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase diff --git a/tests/test_registry.py b/tests/test_registry.py index 4e206a4b6..a0daf20c8 100644 --- a/tests/test_registry.py +++ b/tests/test_registry.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import importlib @@ -48,9 +48,9 @@ def test_countries_imports(self): loader_entities.add(loader_cls.__name__) - countries_entities = set( + countries_entities = { entity[0] for entity in inspect.getmembers(countries, inspect.isclass) - ) + } self.assertEqual( countries_entities, loader_entities, @@ -89,9 +89,9 @@ def test_financial_imports(self): loader_entities.add(loader_cls.__name__) - financial_entities = set( + financial_entities = { entity[0] for entity in inspect.getmembers(financial, inspect.isclass) - ) + } self.assertEqual( financial_entities, loader_entities, diff --git a/tests/test_utils.py b/tests/test_utils.py index 660ea21f2..7af2275c8 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) import unittest diff --git a/tests/third_party/test_numpy.py b/tests/third_party/test_numpy.py index cd899861f..8f104c183 100644 --- a/tests/third_party/test_numpy.py +++ b/tests/third_party/test_numpy.py @@ -7,7 +7,7 @@ # Authors: Vacanza Team and individual contributors (see AUTHORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/python-holidays +# Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from unittest import TestCase