Skip to content

Commit

Permalink
[dateparser] Fix parsing very short weekday names
Browse files Browse the repository at this point in the history
  • Loading branch information
adnan-awan committed Jan 28, 2024
1 parent 30e2c7f commit 90a10bf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion dateparser/data/date_translation_data/en.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,31 +50,37 @@
"december"
],
"monday": [
"mo", # todo need to fix the conflict with month
"mon",
"monday"
],
"tuesday": [
"tu",
"tue",
"tuesday",
"Tues"
],
"wednesday": [
"wed",
"we",
"wednesday"
],
"thursday": [
"th",
"thu",
"thursday"
],
"friday": [
"fr",
"fri",
"friday"
],
"saturday": [
"sa",
"sat",
"saturday"
],
"sunday": [
"su",
"sun",
"sunday"
],
Expand Down

0 comments on commit 90a10bf

Please sign in to comment.