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:
- 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

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}