Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Brunei Darussalam holidays #1168

Merged
merged 38 commits into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
56e0294
Update l10n workflow
arkid15r May 4, 2023
54d9e74
Update Makefile
arkid15r May 4, 2023
72a3e79
Brunei holidays
PPsyrius May 10, 2023
1a85370
Implementing Fix Suggestions Part 1
PPsyrius May 11, 2023
b70f157
Add missing `countries/__init__.py`
PPsyrius May 11, 2023
6d9c69f
misc. fixes
PPsyrius May 11, 2023
22f9851
Merge branch 'beta' into update-l10n
arkid15r May 13, 2023
7ba22fd
Merge branch 'master' into brunei-holidays
PPsyrius May 16, 2023
a87fb90
Update no. of supported countries to 123
PPsyrius May 16, 2023
61d776f
Merge branch 'beta' into brunei-holidays
PPsyrius May 18, 2023
7fb5cc8
Merge branch 'beta' into brunei-holidays
PPsyrius May 23, 2023
2856f44
increments country count
PPsyrius May 23, 2023
b8fe654
Merge branch 'beta' into update-l10n
arkid15r May 23, 2023
f32eb97
Add Islamic holidays estimated label support
arkid15r May 23, 2023
efcac33
Update ar/UA.po
arkid15r May 23, 2023
44d8889
Update holidays/locale/ar/LC_MESSAGES/UA.po
arkid15r May 23, 2023
9a499f3
Apply suggestions from code review
arkid15r May 23, 2023
dbacac8
Apply suggestions from code review
arkid15r May 24, 2023
30620ca
Update formatting
arkid15r May 24, 2023
2692cd3
Merge branch 'pr/1140' into brunei-holidays
PPsyrius May 24, 2023
178294e
[BN] Adapting code for #1140's changes
PPsyrius May 25, 2023
50e3915
[BN] switch from `tr("...")` to `self.tr("...")`
PPsyrius May 25, 2023
c1cbf4f
[BN] forgot to run tox
PPsyrius May 25, 2023
f65916b
oof
PPsyrius May 25, 2023
8f97769
[BN] hopefully last fixes needed
PPsyrius May 25, 2023
fc28176
Merge branch 'beta' into brunei-holidays
PPsyrius May 26, 2023
f397766
Merge branch 'beta' into brunei-holidays
PPsyrius May 27, 2023
78b724b
[BN] Rearrange holidays to prevent Islamic observed duplications
PPsyrius May 29, 2023
dfa8881
[BN] Implementing suggestions Part 2
PPsyrius May 30, 2023
f9fa200
[BN] Implementing suggestions Part 3
PPsyrius May 31, 2023
33ec9b2
[BN] reformat for pre-commit's `black` compliance
PPsyrius May 31, 2023
873980a
Merge branch 'beta' into brunei-holidays
PPsyrius Jun 5, 2023
dc3359c
[BN] fix mismatch README.rst indentation
PPsyrius Jun 5, 2023
bdf3ed9
[BN] migrate to new CustomCalendar implementation
PPsyrius Jun 5, 2023
2bca839
[BN] fix mismatch README.rst indentation again
PPsyrius Jun 5, 2023
f918375
[BN] fix *estimate tag not appearing for Eid al-fitr, reorder locs
PPsyrius Jun 5, 2023
8648c82
[BN] Suggestions implemented June 6th
PPsyrius Jun 6, 2023
5a43f45
[BN] incrrement PH patch number to 0.27
PPsyrius Jun 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Available Countries
.. _ISO 3166-1 alpha-2 code: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes
.. _ISO 3166-2 code: https://en.wikipedia.org/wiki/ISO_3166-2

We currently support 124 country codes. The standard way to refer to a country
We currently support 125 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`_. The following countries and
subdivisions are available:
Expand Down Expand Up @@ -180,6 +180,9 @@ subdivisions are available:
* - Brazil
- BR
- States: AC, AL, AM, AP, BA, CE, DF, ES, GO, MA, MG, MS, MT, PA, PB, PE, PI, PR, RJ, RN, RO, RR, RS, SC, SE, SP, TO
* - Brunei
- BN
- None
* - Bulgaria
- BG
- None
Expand Down Expand Up @@ -553,6 +556,9 @@ default language code is a `ISO 639-1 code`_.
* - Belarus
- be
- be, en_US
* - Brunei
- ms
- en_US, ms, th
* - Bulgaria
- bg
- bg, en_US
Expand Down
1 change: 1 addition & 0 deletions holidays/countries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
from .bosnia_and_herzegovina import BosniaAndHerzegovina, BA, BIH
from .botswana import Botswana, BW, BWA
from .brazil import Brazil, BR, BRA
from .brunei import Brunei, BN, BRN
from .bulgaria import Bulgaria, BG, BLG
from .burundi import Burundi, BI, BDI
from .canada import Canada, CA, CAN
Expand Down
Loading