@cosmicdrift/kumiko-locale-de 0.299.0 → 0.305.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 +7 -0
- package/src/strings.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-locale-de",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.305.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.305.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"registry": "https://registry.npmjs.org",
|
|
@@ -224,6 +224,13 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
|
|
|
224
224
|
"auth.resetPassword.successTitle": "Password set",
|
|
225
225
|
"auth.resetPassword.title": "Set new password",
|
|
226
226
|
"auth.resetPassword.tooShort": "Password must be at least 8 characters.",
|
|
227
|
+
"auth.sessionBootstrap.errorBody":
|
|
228
|
+
"The server could not be reached or returned an error. Please try again.",
|
|
229
|
+
"auth.sessionBootstrap.errorTitle": "Couldn't load your session",
|
|
230
|
+
"auth.sessionBootstrap.rateLimitedBody":
|
|
231
|
+
"Too many requests in a short time. Please wait a moment and try again.",
|
|
232
|
+
"auth.sessionBootstrap.retry": "Try again",
|
|
233
|
+
"auth.sessionBootstrap.retrying": "Retrying…",
|
|
227
234
|
"auth.signup.email": "Email",
|
|
228
235
|
"auth.signup.haveAccount": "Already have an account? Sign in",
|
|
229
236
|
"auth.signup.intro": "Enter your email. We'll send you an activation link to set your password.",
|
package/src/strings.ts
CHANGED
|
@@ -232,6 +232,13 @@ export const localeDeBundle: Readonly<Record<string, string>> = {
|
|
|
232
232
|
"auth.resetPassword.successTitle": "Passwort gesetzt",
|
|
233
233
|
"auth.resetPassword.title": "Neues Passwort setzen",
|
|
234
234
|
"auth.resetPassword.tooShort": "Passwort muss mindestens 8 Zeichen lang sein.",
|
|
235
|
+
"auth.sessionBootstrap.errorBody":
|
|
236
|
+
"Der Server war nicht erreichbar oder hat einen Fehler gemeldet. Bitte erneut versuchen.",
|
|
237
|
+
"auth.sessionBootstrap.errorTitle": "Sitzung konnte nicht geladen werden",
|
|
238
|
+
"auth.sessionBootstrap.rateLimitedBody":
|
|
239
|
+
"Zu viele Anfragen in kurzer Zeit. Bitte kurz warten und erneut versuchen.",
|
|
240
|
+
"auth.sessionBootstrap.retry": "Erneut versuchen",
|
|
241
|
+
"auth.sessionBootstrap.retrying": "Wird erneut versucht …",
|
|
235
242
|
"auth.signup.email": "E-Mail",
|
|
236
243
|
"auth.signup.haveAccount": "Bereits einen Account? Anmelden",
|
|
237
244
|
"auth.signup.intro":
|