Skip to content

Commit

Permalink
fix: for erroneously-translated datetime config (mealie-recipes#1362)
Browse files Browse the repository at this point in the history
* Fix for erroneously-translated datetime config

* remove datetime formats from crowdin

Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
  • Loading branch information
michael-genson and hay-kot authored Jun 9, 2022
1 parent 4662253 commit 5f5eb2c
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 51 deletions.
2 changes: 0 additions & 2 deletions crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ preserve_hierarchy: false
files:
- source: /frontend/lang/messages/en-US.json
translation: /frontend/lang/messages/%locale%.json
- source: /frontend/lang/dateTimeFormats/en-US.json
translation: /frontend/lang/dateTimeFormats/%locale%.json
- source: /mealie/lang/messages/en-US.json
translation: /mealie/lang/messages/%locale%.json
- source: /mealie/repos/seed/resources/foods/locales/en-US.json
Expand Down
28 changes: 14 additions & 14 deletions frontend/lang/dateTimeFormats/da-DK.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"short": {
"month": "kort",
"day": "numerisk",
"weekday": "lang"
"month": "short",
"day": "numeric",
"weekday": "long"
},
"medium": {
"month": "lang",
"day": "numerisk",
"weekday": "lang",
"year": "numerisk"
"month": "long",
"day": "numeric",
"weekday": "long",
"year": "numeric"
},
"long": {
"year": "numerisk",
"month": "lang",
"day": "numerisk",
"weekday": "lang",
"hour": "numerisk",
"minute": "numerisk"
"year": "numeric",
"month": "long",
"day": "numeric",
"weekday": "long",
"hour": "numeric",
"minute": "numeric"
}
}
}
28 changes: 14 additions & 14 deletions frontend/lang/dateTimeFormats/de-DE.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"short": {
"month": "kurz",
"day": "numerisch",
"weekday": "lang"
"month": "short",
"day": "numeric",
"weekday": "long"
},
"medium": {
"month": "lang",
"day": "numerisch",
"weekday": "lang",
"year": "numerisch"
"month": "long",
"day": "numeric",
"weekday": "long",
"year": "numeric"
},
"long": {
"year": "numerisch",
"month": "lang",
"day": "numerisch",
"weekday": "lang",
"hour": "numerisch",
"minute": "numerisch"
"year": "numeric",
"month": "long",
"day": "numeric",
"weekday": "long",
"hour": "numeric",
"minute": "numeric"
}
}
}
26 changes: 13 additions & 13 deletions frontend/lang/dateTimeFormats/it-IT.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"short": {
"month": "breve",
"day": "numerico",
"weekday": "lungo"
"month": "short",
"day": "numeric",
"weekday": "long"
},
"medium": {
"month": "lungo",
"day": "numerico",
"weekday": "lungo",
"year": "numerico"
"month": "long",
"day": "numeric",
"weekday": "long",
"year": "numeric"
},
"long": {
"year": "numeric",
"month": "lungo",
"day": "numerico",
"weekday": "lungo",
"hour": "numerico",
"minute": "numerico"
"month": "long",
"day": "numeric",
"weekday": "long",
"hour": "numeric",
"minute": "numeric"
}
}
}
16 changes: 8 additions & 8 deletions frontend/lang/dateTimeFormats/uk-UA.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"short": {
"month": "short",
"day": "числовий",
"day": "numeric",
"weekday": "long"
},
"medium": {
"month": "long",
"day": "числовий",
"day": "numeric",
"weekday": "long",
"year": "числовий"
"year": "numeric"
},
"long": {
"year": "числовий",
"year": "numeric",
"month": "long",
"day": "числовий",
"day": "numeric",
"weekday": "long",
"hour": "числовий",
"minute": "числовий"
"hour": "numeric",
"minute": "numeric"
}
}
}

0 comments on commit 5f5eb2c

Please sign in to comment.