@cosmicdrift/kumiko-locale-de 0.287.0 → 0.289.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/__tests__/en-catalog.ts +1 -0
- package/src/strings.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-locale-de",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.289.0",
|
|
4
4
|
"description": "German UI and mail copy for Kumiko framework screens. Opt in by mounting localeDe() + localeDeClient().",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.289.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"registry": "https://registry.npmjs.org",
|
|
@@ -331,6 +331,7 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
|
|
|
331
331
|
"errors.feature.disabled": "This feature is currently unavailable.",
|
|
332
332
|
"errors.internal": "Something went wrong. Please try again later.",
|
|
333
333
|
"errors.notFound": "Not found.",
|
|
334
|
+
"errors.preconditionFailed": "The record changed in the meantime. Reload and try again.",
|
|
334
335
|
"errors.rate_limited": "Too many requests. Please try again shortly.",
|
|
335
336
|
"errors.unconfigured": "This feature isn't configured yet.",
|
|
336
337
|
"errors.uniqueViolation": "This entry already exists.",
|
package/src/strings.ts
CHANGED
|
@@ -345,6 +345,8 @@ export const localeDeBundle: Readonly<Record<string, string>> = {
|
|
|
345
345
|
"errors.feature.disabled": "Diese Funktion ist derzeit nicht verfügbar.",
|
|
346
346
|
"errors.internal": "Etwas ist schiefgegangen. Bitte versuche es später erneut.",
|
|
347
347
|
"errors.notFound": "Nicht gefunden.",
|
|
348
|
+
"errors.preconditionFailed":
|
|
349
|
+
"Der Eintrag hat sich inzwischen geändert. Bitte neu laden und erneut versuchen.",
|
|
348
350
|
"errors.rate_limited": "Zu viele Anfragen. Bitte versuche es in Kürze erneut.",
|
|
349
351
|
"errors.unconfigured": "Diese Funktion ist noch nicht konfiguriert.",
|
|
350
352
|
"errors.uniqueViolation": "Dieser Eintrag existiert bereits.",
|