generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Bangla language support for Bangladeshi holidays (#182)
* feat: Add Bangla language support for Bangladeshi holidays * fix: Return Bengali Names in English by default insted Bangla font * fix: Unit testing
- Loading branch information
1 parent
34f55ba
commit 17c7849
Showing
5 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"International Mother Language Day": "Antorjatik Matribhasha Dibos", | ||
"Birthday of Sheikh Mujibur Rahman": "Shekh Mujibur Rahmaner Jonmodin", | ||
"Independence Day": "Swadhinota Dibos", | ||
"Bengali New Year": "Bangla Noboborsho", | ||
"May Day": "Antorjatik Shrom Dibos", | ||
"National Mourning Day": "Jatiyo Shok Dibos", | ||
"Victory Day": "Bijoy Dibos", | ||
"Christmas Day": "Borodin" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"International Mother Language Day": "International Mother Language Day", | ||
"Birthday of Sheikh Mujibur Rahman": "Birthday of Sheikh Mujibur Rahman", | ||
"Independence Day": "Independence Day", | ||
"Bengali New Year": "Bengali New Year", | ||
"May Day": "May Day", | ||
"National Mourning Day": "National Mourning Day", | ||
"Victory Day": "Victory Day", | ||
"Christmas Day": "Christmas Day" | ||
} |
34 changes: 34 additions & 0 deletions
34
...st/snapshots/Countries/BangladeshTest/it_can_calculate_bangladesh_holidays_in_Bangla.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"name": "Antorjatik Matribhasha Dibos", | ||
"date": "2024-02-21" | ||
}, | ||
{ | ||
"name": "Shekh Mujibur Rahmaner Jonmodin", | ||
"date": "2024-03-17" | ||
}, | ||
{ | ||
"name": "Swadhinota Dibos", | ||
"date": "2024-03-26" | ||
}, | ||
{ | ||
"name": "Bangla Noboborsho", | ||
"date": "2024-04-14" | ||
}, | ||
{ | ||
"name": "Antorjatik Shrom Dibos", | ||
"date": "2024-05-01" | ||
}, | ||
{ | ||
"name": "Jatiyo Shok Dibos", | ||
"date": "2024-08-15" | ||
}, | ||
{ | ||
"name": "Bijoy Dibos", | ||
"date": "2024-12-16" | ||
}, | ||
{ | ||
"name": "Borodin", | ||
"date": "2024-12-25" | ||
} | ||
] |
34 changes: 34 additions & 0 deletions
34
...t/snapshots/Countries/BangladeshTest/it_can_calculate_bangladesh_holidays_in_English.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"name": "International Mother Language Day", | ||
"date": "2024-02-21" | ||
}, | ||
{ | ||
"name": "Birthday of Sheikh Mujibur Rahman", | ||
"date": "2024-03-17" | ||
}, | ||
{ | ||
"name": "Independence Day", | ||
"date": "2024-03-26" | ||
}, | ||
{ | ||
"name": "Bengali New Year", | ||
"date": "2024-04-14" | ||
}, | ||
{ | ||
"name": "May Day", | ||
"date": "2024-05-01" | ||
}, | ||
{ | ||
"name": "National Mourning Day", | ||
"date": "2024-08-15" | ||
}, | ||
{ | ||
"name": "Victory Day", | ||
"date": "2024-12-16" | ||
}, | ||
{ | ||
"name": "Christmas Day", | ||
"date": "2024-12-25" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters