fix: for erroneously-translated datetime config (#1362)

* Fix for erroneously-translated datetime config

* remove datetime formats from crowdin

Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
This commit is contained in:
Michael Genson 2022-06-09 11:54:41 -05:00 committed by GitHub
parent 4662253d0e
commit 5f5eb2c46d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 49 additions and 51 deletions

View file

@ -2,8 +2,6 @@ preserve_hierarchy: false
files: files:
- source: /frontend/lang/messages/en-US.json - source: /frontend/lang/messages/en-US.json
translation: /frontend/lang/messages/%locale%.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 - source: /mealie/lang/messages/en-US.json
translation: /mealie/lang/messages/%locale%.json translation: /mealie/lang/messages/%locale%.json
- source: /mealie/repos/seed/resources/foods/locales/en-US.json - source: /mealie/repos/seed/resources/foods/locales/en-US.json

View file

@ -1,21 +1,21 @@
{ {
"short": { "short": {
"month": "kort", "month": "short",
"day": "numerisk", "day": "numeric",
"weekday": "lang" "weekday": "long"
}, },
"medium": { "medium": {
"month": "lang", "month": "long",
"day": "numerisk", "day": "numeric",
"weekday": "lang", "weekday": "long",
"year": "numerisk" "year": "numeric"
}, },
"long": { "long": {
"year": "numerisk", "year": "numeric",
"month": "lang", "month": "long",
"day": "numerisk", "day": "numeric",
"weekday": "lang", "weekday": "long",
"hour": "numerisk", "hour": "numeric",
"minute": "numerisk" "minute": "numeric"
} }
} }

View file

@ -1,21 +1,21 @@
{ {
"short": { "short": {
"month": "kurz", "month": "short",
"day": "numerisch", "day": "numeric",
"weekday": "lang" "weekday": "long"
}, },
"medium": { "medium": {
"month": "lang", "month": "long",
"day": "numerisch", "day": "numeric",
"weekday": "lang", "weekday": "long",
"year": "numerisch" "year": "numeric"
}, },
"long": { "long": {
"year": "numerisch", "year": "numeric",
"month": "lang", "month": "long",
"day": "numerisch", "day": "numeric",
"weekday": "lang", "weekday": "long",
"hour": "numerisch", "hour": "numeric",
"minute": "numerisch" "minute": "numeric"
} }
} }

View file

@ -1,21 +1,21 @@
{ {
"short": { "short": {
"month": "breve", "month": "short",
"day": "numerico", "day": "numeric",
"weekday": "lungo" "weekday": "long"
}, },
"medium": { "medium": {
"month": "lungo", "month": "long",
"day": "numerico", "day": "numeric",
"weekday": "lungo", "weekday": "long",
"year": "numerico" "year": "numeric"
}, },
"long": { "long": {
"year": "numeric", "year": "numeric",
"month": "lungo", "month": "long",
"day": "numerico", "day": "numeric",
"weekday": "lungo", "weekday": "long",
"hour": "numerico", "hour": "numeric",
"minute": "numerico" "minute": "numeric"
} }
} }

View file

@ -1,21 +1,21 @@
{ {
"short": { "short": {
"month": "short", "month": "short",
"day": "числовий", "day": "numeric",
"weekday": "long" "weekday": "long"
}, },
"medium": { "medium": {
"month": "long", "month": "long",
"day": "числовий", "day": "numeric",
"weekday": "long", "weekday": "long",
"year": "числовий" "year": "numeric"
}, },
"long": { "long": {
"year": "числовий", "year": "numeric",
"month": "long", "month": "long",
"day": "числовий", "day": "numeric",
"weekday": "long", "weekday": "long",
"hour": "числовий", "hour": "numeric",
"minute": "числовий" "minute": "numeric"
} }
} }