@fanfare-io/fanfare-sdk-i18n 0.1.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/LICENSE +202 -0
- package/README.md +22 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +25 -0
- package/dist/locale.d.ts +26 -0
- package/dist/locale.js +14 -0
- package/dist/locales/de.json.d.ts +277 -0
- package/dist/locales/de.json.js +277 -0
- package/dist/locales/en.json +274 -0
- package/dist/locales/en.json.d.ts +277 -0
- package/dist/locales/en.json.js +277 -0
- package/dist/locales/es.json.d.ts +277 -0
- package/dist/locales/es.json.js +277 -0
- package/dist/locales/fr.json.d.ts +277 -0
- package/dist/locales/fr.json.js +277 -0
- package/dist/locales/index.d.ts +375 -0
- package/dist/locales/index.js +45 -0
- package/dist/locales/it.json.d.ts +277 -0
- package/dist/locales/it.json.js +277 -0
- package/dist/locales/ja.json.d.ts +277 -0
- package/dist/locales/ja.json.js +277 -0
- package/dist/locales/pt.json.d.ts +277 -0
- package/dist/locales/pt.json.js +277 -0
- package/dist/locales/zh.json.d.ts +277 -0
- package/dist/locales/zh.json.js +277 -0
- package/dist/translate.d.ts +40 -0
- package/dist/translate.js +34 -0
- package/dist/types.d.ts +101 -0
- package/dist/types.js +8 -0
- package/package.json +63 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @fanfare-io/fanfare-sdk-i18n
|
|
2
|
+
|
|
3
|
+
Translation data and internationalization utilities for the [Fanfare](https://www.fanfare.io) SDK. Ships built-in strings for eight locales (`en`, `de`, `es`, `fr`, `it`, `ja`, `pt`, `zh`), locale detection and normalization, RTL helpers, and the translate utilities (`createTranslateFunction`, `interpolate`, `mergeTranslations`) used by the core SDK and its UI adapters.
|
|
4
|
+
|
|
5
|
+
Most integrations don't install this package directly; the SDK packages depend on it and expose `locale` and `translations` options for overriding built-in copy.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @fanfare-io/fanfare-sdk-i18n
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Documentation
|
|
14
|
+
|
|
15
|
+
- [SDK internationalization](https://docs.fanfare.io/sdk/components/i18n)
|
|
16
|
+
- [SDK overview](https://docs.fanfare.io/sdk/overview)
|
|
17
|
+
- [Website](https://www.fanfare.io)
|
|
18
|
+
- [Source & issues](https://github.com/fanfare-io/fanfare-sdk)
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
[Apache-2.0](./LICENSE)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fanfare SDK i18n
|
|
3
|
+
*
|
|
4
|
+
* Internationalization data and utilities for Fanfare SDK.
|
|
5
|
+
* Framework-agnostic - can be used by React, Solid, Vue bindings,
|
|
6
|
+
* and admin tools.
|
|
7
|
+
*
|
|
8
|
+
* @packageDocumentation
|
|
9
|
+
*/
|
|
10
|
+
export type { I18nConfig, Locale, PartialTranslationMessages, PluralBaseKey, PluralSuffix, RTLLocale, TextDirection, TranslateFunction, TranslateOptions, TranslationMessages, } from './types';
|
|
11
|
+
export { RTL_LOCALES, isRTLLocale } from './types';
|
|
12
|
+
export { SUPPORTED_LOCALES, TRANSLATION_KEYS, de, en, es, fr, getLocaleMessages, it, ja, pt, zh } from './locales';
|
|
13
|
+
export type { SupportedLocale, TranslationKey, TranslationMessageKey } from './locales';
|
|
14
|
+
export { normalizeLocale, resolveLocaleMapValue } from './locale';
|
|
15
|
+
export { createTranslateFunction, getPluralSuffix, interpolate, mergeTranslations } from './translate';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { RTL_LOCALES as r, isRTLLocale as a } from "./types.js";
|
|
2
|
+
import { SUPPORTED_LOCALES as l, TRANSLATION_KEYS as L, de as s, en as n, es as f, fr as i, getLocaleMessages as p, it as T, ja as c, pt as m, zh as S } from "./locales/index.js";
|
|
3
|
+
import { normalizeLocale as g, resolveLocaleMapValue as u } from "./locale.js";
|
|
4
|
+
import { createTranslateFunction as E, getPluralSuffix as O, interpolate as R, mergeTranslations as P } from "./translate.js";
|
|
5
|
+
export {
|
|
6
|
+
r as RTL_LOCALES,
|
|
7
|
+
l as SUPPORTED_LOCALES,
|
|
8
|
+
L as TRANSLATION_KEYS,
|
|
9
|
+
E as createTranslateFunction,
|
|
10
|
+
s as de,
|
|
11
|
+
n as en,
|
|
12
|
+
f as es,
|
|
13
|
+
i as fr,
|
|
14
|
+
p as getLocaleMessages,
|
|
15
|
+
O as getPluralSuffix,
|
|
16
|
+
R as interpolate,
|
|
17
|
+
a as isRTLLocale,
|
|
18
|
+
T as it,
|
|
19
|
+
c as ja,
|
|
20
|
+
P as mergeTranslations,
|
|
21
|
+
g as normalizeLocale,
|
|
22
|
+
m as pt,
|
|
23
|
+
u as resolveLocaleMapValue,
|
|
24
|
+
S as zh
|
|
25
|
+
};
|
package/dist/locale.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Locale utilities
|
|
3
|
+
*
|
|
4
|
+
* Shared locale normalization and lookup helpers for SDK i18n flows.
|
|
5
|
+
*
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Normalize a locale string for dictionary lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param locale - Locale code such as `en`, `en-US`, or `pt_BR`
|
|
12
|
+
* @returns Normalized locale in lowercase with hyphen separators
|
|
13
|
+
*/
|
|
14
|
+
export declare function normalizeLocale(locale: string): string;
|
|
15
|
+
/**
|
|
16
|
+
* Resolve a value from a locale map using exact locale first, then primary language.
|
|
17
|
+
*
|
|
18
|
+
* Lookup order:
|
|
19
|
+
* 1. Exact normalized locale (e.g. `en-us`)
|
|
20
|
+
* 2. Primary locale (e.g. `en`)
|
|
21
|
+
*
|
|
22
|
+
* @param localeMap - Locale keyed map (case-insensitive keys supported)
|
|
23
|
+
* @param locale - Requested locale
|
|
24
|
+
* @returns Matching value or `undefined`
|
|
25
|
+
*/
|
|
26
|
+
export declare function resolveLocaleMapValue<T>(localeMap: Record<string, T> | undefined, locale: string): T | undefined;
|
package/dist/locale.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
function n(e) {
|
|
2
|
+
return e.trim().toLowerCase().replace(/_/g, "-");
|
|
3
|
+
}
|
|
4
|
+
function s(e, o) {
|
|
5
|
+
if (!e) return;
|
|
6
|
+
const t = n(o), a = t.split("-")[0] ?? "en", r = /* @__PURE__ */ new Map();
|
|
7
|
+
for (const [i, c] of Object.entries(e))
|
|
8
|
+
r.set(n(i), c);
|
|
9
|
+
return r.get(t) ?? r.get(a);
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
n as normalizeLocale,
|
|
13
|
+
s as resolveLocaleMapValue
|
|
14
|
+
};
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"common.continue": "Weiter",
|
|
3
|
+
"common.back": "Zurück",
|
|
4
|
+
"common.skip": "Vorerst überspringen",
|
|
5
|
+
"common.submit": "Absenden",
|
|
6
|
+
"common.cancel": "Abbrechen",
|
|
7
|
+
"common.close": "Schließen",
|
|
8
|
+
"common.share": "Teilen",
|
|
9
|
+
"common.poweredBy": "Bereitgestellt von",
|
|
10
|
+
"common.enter": "Eintreten",
|
|
11
|
+
"common.leave": "Verlassen",
|
|
12
|
+
"common.withdraw": "Zurückziehen",
|
|
13
|
+
"common.checkout": "Zur Kasse",
|
|
14
|
+
"common.shop": "Einkaufen",
|
|
15
|
+
"common.shopNow": "Jetzt einkaufen",
|
|
16
|
+
"common.betterLuck": "Mehr Glück beim nächsten Mal!",
|
|
17
|
+
"common.purchaseComplete": "Kauf abgeschlossen!",
|
|
18
|
+
"common.thankYou": "Vielen Dank für Ihren Einkauf",
|
|
19
|
+
"common.sessionExpired": "Ihre Sitzung ist abgelaufen",
|
|
20
|
+
"common.complete": "Abgeschlossen",
|
|
21
|
+
"common.expired": "Abgelaufen",
|
|
22
|
+
"common.ended": "Beendet",
|
|
23
|
+
"countdown.days": "Tage",
|
|
24
|
+
"countdown.daysShort": "T",
|
|
25
|
+
"countdown.hours": "Std",
|
|
26
|
+
"countdown.hoursShort": "h",
|
|
27
|
+
"countdown.minutes": "Min",
|
|
28
|
+
"countdown.minutesShort": "m",
|
|
29
|
+
"countdown.seconds": "Sek",
|
|
30
|
+
"countdown.secondsShort": "s",
|
|
31
|
+
"countdown.startingSoon": "Beginnt bald...",
|
|
32
|
+
"time.opensIn": "Öffnet in",
|
|
33
|
+
"time.endsIn": "Endet in",
|
|
34
|
+
"time.timeRemaining": "Verbleibende Zeit",
|
|
35
|
+
"auth.title": "Anmelden",
|
|
36
|
+
"auth.description": "Geben Sie Ihre E-Mail oder Telefonnummer ein, um fortzufahren",
|
|
37
|
+
"auth.submit": "Weiter",
|
|
38
|
+
"auth.verify": "Verifizieren",
|
|
39
|
+
"auth.badgeLabel": "Verifizieren",
|
|
40
|
+
"auth.verifyTitle": "Code eingeben",
|
|
41
|
+
"auth.verifyDescription": "Geben Sie den Code ein, der an Ihre {{type}} gesendet wurde",
|
|
42
|
+
"auth.backTo": "← Zurück zu {{type}}",
|
|
43
|
+
"auth.success": "Erfolgreich verifiziert",
|
|
44
|
+
"auth.sendFailed": "Verifizierungscode konnte nicht gesendet werden",
|
|
45
|
+
"auth.invalidCode": "Ungültiger Verifizierungscode",
|
|
46
|
+
"auth.sentTo": "Gesendet an",
|
|
47
|
+
"auth.change": "ändern",
|
|
48
|
+
"auth.didntGetIt": "Nicht erhalten?",
|
|
49
|
+
"auth.resendCode": "Code erneut senden",
|
|
50
|
+
"auth.newCodeSent": "Neuer Code gesendet",
|
|
51
|
+
"auth.email": "E-Mail",
|
|
52
|
+
"auth.phone": "Telefon",
|
|
53
|
+
"auth.emailPlaceholder": "Geben Sie Ihre E-Mail-Adresse ein",
|
|
54
|
+
"auth.phonePlaceholder": "Geben Sie Ihre Telefonnummer ein",
|
|
55
|
+
"auth.invalidEmail": "Ungültige E-Mail-Adresse",
|
|
56
|
+
"auth.invalidPhone": "Ungültige Telefonnummer",
|
|
57
|
+
"auth.useEmail": "E-Mail verwenden",
|
|
58
|
+
"auth.usePhone": "Telefon verwenden",
|
|
59
|
+
"auth.otpDigit": "Ziffer {{index}} von {{length}}",
|
|
60
|
+
"accessCode.title": "Zugangscode eingeben",
|
|
61
|
+
"accessCode.description": "Geben Sie Ihren Zugangscode ein, um fortzufahren",
|
|
62
|
+
"accessCode.placeholder": "Geben Sie Ihren Zugangscode ein",
|
|
63
|
+
"accessCode.submit": "Absenden",
|
|
64
|
+
"accessCode.badgeLabel": "Zugangscode",
|
|
65
|
+
"accessCode.invalid": "Ungültiger Zugangscode",
|
|
66
|
+
"queue.title": "Sie sind in der Warteschlange",
|
|
67
|
+
"queue.openingSoon": "Die Warteschlange öffnet bald",
|
|
68
|
+
"queue.queueClosesIn": "Anmeldung endet in",
|
|
69
|
+
"queue.getReady": "Bereiten Sie sich auf den Eintritt in die Warteschlange vor",
|
|
70
|
+
"queue.description": "Bitte warten Sie auf Ihren Platz",
|
|
71
|
+
"queue.position": "Ihre Position",
|
|
72
|
+
"queue.positionValue": "#{{position}}",
|
|
73
|
+
"queue.inQueue": "in der Warteschlange",
|
|
74
|
+
"queue.enter": "In die Warteschlange eintreten",
|
|
75
|
+
"queue.leave": "Warteschlange verlassen",
|
|
76
|
+
"queue.share": "Position teilen",
|
|
77
|
+
"queue.granted": "Sie sind dran!",
|
|
78
|
+
"queue.grantedDescription": "Fahren Sie mit der Bezahlung fort",
|
|
79
|
+
"queue.grantedMessage": "Sie sind dran! Fahren Sie mit der Bezahlung fort.",
|
|
80
|
+
"queue.errorLoading": "Die Warteschlange konnte nicht geladen werden",
|
|
81
|
+
"queue.errorLoadingShort": "Fehler beim Laden der Warteschlange",
|
|
82
|
+
"queue.errorLoadingStatus": "Fehler beim Laden des Warteschlangenstatus",
|
|
83
|
+
"queue.errorLoadingStatusShort": "Warteschlangenstatus konnte nicht geladen werden",
|
|
84
|
+
"queue.notInQueue": "Nicht in der Warteschlange",
|
|
85
|
+
"queue.peopleInQueue": "{{count}} Personen derzeit in der Warteschlange",
|
|
86
|
+
"queue.estimatedWait": "~{{minutes}} Min",
|
|
87
|
+
"queue.estimatedWaitLong": "~{{minutes}} Min Wartezeit",
|
|
88
|
+
"draw.title": "An der Verlosung teilnehmen",
|
|
89
|
+
"draw.description": "Nehmen Sie teil für eine Gewinnchance",
|
|
90
|
+
"draw.entry": "Teilnahme #{{entryNumber}}",
|
|
91
|
+
"draw.totalEntries": "{{count}} Teilnahmen bisher",
|
|
92
|
+
"draw.entered": "Sie nehmen teil",
|
|
93
|
+
"draw.enteredDescription": "Viel Glück bei der Verlosung",
|
|
94
|
+
"draw.stayTuned": "Bleiben Sie dran für die Ergebnisse",
|
|
95
|
+
"draw.settlingTitle": "Verlosungsergebnisse",
|
|
96
|
+
"draw.settlingDescription": "Wir finalisieren die Verlosung. Bleiben Sie dran für die Ergebnisse.",
|
|
97
|
+
"draw.drawIn": "Verlosung in {{countdown}}",
|
|
98
|
+
"draw.drawHappensIn": "Verlosung in",
|
|
99
|
+
"draw.drawClosesIn": "Verlosung in",
|
|
100
|
+
"draw.enter": "An der Verlosung teilnehmen",
|
|
101
|
+
"draw.withdraw": "Teilnahme zurückziehen",
|
|
102
|
+
"draw.inProgress": "Verlosung läuft...",
|
|
103
|
+
"draw.won": "Sie haben gewonnen!",
|
|
104
|
+
"draw.wonTitle": "Herzlichen Glückwunsch!",
|
|
105
|
+
"draw.wonDescription": "Sie wurden ausgewählt!",
|
|
106
|
+
"draw.wonMessage": "Schließen Sie Ihren Kauf jetzt ab",
|
|
107
|
+
"draw.notSelected": "Nicht ausgewählt",
|
|
108
|
+
"draw.notSelectedMessage": "Mehr Glück beim nächsten Mal!",
|
|
109
|
+
"draw.notEntered": "Nicht teilgenommen",
|
|
110
|
+
"draw.ended": "Diese Verlosung ist beendet.",
|
|
111
|
+
"draw.enterForChance": "Nehmen Sie teil für eine Gewinnchance",
|
|
112
|
+
"draw.winner": "Gewinner!",
|
|
113
|
+
"draw.goodLuck": "Viel Glück bei der Verlosung",
|
|
114
|
+
"auction.title": "Auktion",
|
|
115
|
+
"auction.description": "Bieten Sie für exklusiven Zugang",
|
|
116
|
+
"auction.currentBid": "Aktuelles Gebot",
|
|
117
|
+
"auction.yourBid": "Ihr Gebot",
|
|
118
|
+
"auction.minBid": "Min: {{amount}} (+{{increment}} Erhöhung)",
|
|
119
|
+
"auction.bidAction": "Bieten",
|
|
120
|
+
"auction.bid": "{{amount}} bieten",
|
|
121
|
+
"auction.quickBid": "Schnellgebot",
|
|
122
|
+
"auction.enter": "An der Auktion teilnehmen",
|
|
123
|
+
"auction.monitorBids": "Überwachen Sie Ihre Gebote",
|
|
124
|
+
"auction.endsIn": "Auktion endet in",
|
|
125
|
+
"auction.minNextBid": "Nächstes Mindestgebot: {{amount}} (+{{increment}})",
|
|
126
|
+
"auction.recentBids": "Aktuelle Gebote",
|
|
127
|
+
"auction.bids_one": "{{count}} Gebot",
|
|
128
|
+
"auction.bids_other": "{{count}} Gebote",
|
|
129
|
+
"auction.winning": "Führend!",
|
|
130
|
+
"auction.winningTitle": "Sie führen!",
|
|
131
|
+
"auction.winningDescription": "Sie haben das höchste Gebot",
|
|
132
|
+
"auction.winningMessage": "Wir benachrichtigen Sie, wenn Sie überboten werden",
|
|
133
|
+
"auction.outbid": "Überboten",
|
|
134
|
+
"auction.outbidMessage": "Sie wurden überboten. Mehr Glück beim nächsten Mal!",
|
|
135
|
+
"auction.won": "Gewonnen!",
|
|
136
|
+
"auction.wonTitle": "Herzlichen Glückwunsch!",
|
|
137
|
+
"auction.wonDescription": "Sie haben die Auktion gewonnen!",
|
|
138
|
+
"auction.ended": "Beendet",
|
|
139
|
+
"auction.endedMessage": "Diese Auktion ist beendet.",
|
|
140
|
+
"auction.settlingTitle": "Auktion wird abgeschlossen",
|
|
141
|
+
"auction.settlingDescription": "Wir finalisieren die Gebote und bestätigen den Gewinner.",
|
|
142
|
+
"auction.proceedToCheckout": "Zur Kasse gehen",
|
|
143
|
+
"auction.checkout": "Bezahlen",
|
|
144
|
+
"auction.highestBidder": "Sie haben das höchste Gebot!",
|
|
145
|
+
"auction.notifyOutbid": "Wir benachrichtigen Sie, wenn Sie überboten werden",
|
|
146
|
+
"auction.yourBidLabel": "Ihr Gebot",
|
|
147
|
+
"auction.ends": "Endet",
|
|
148
|
+
"waitlist.title": "Kommender Drop",
|
|
149
|
+
"waitlist.description": "Seien Sie der Erste, der es erfährt",
|
|
150
|
+
"waitlist.position": "Ihre Position",
|
|
151
|
+
"waitlist.onWaitlist": "Sie sind auf der Warteliste",
|
|
152
|
+
"waitlist.onWaitlistDescription": "Wir benachrichtigen Sie, wenn Sie an der Reihe sind",
|
|
153
|
+
"waitlist.enteredTitle": "Sie sind auf der Warteliste!",
|
|
154
|
+
"waitlist.enteredDescription": "Wir benachrichtigen Sie bei Eröffnung",
|
|
155
|
+
"waitlist.enter": "Der Warteliste beitreten",
|
|
156
|
+
"waitlist.leave": "Warteliste verlassen",
|
|
157
|
+
"waitlist.notOnWaitlist": "Nicht auf der Warteliste",
|
|
158
|
+
"waitlist.opensIn": "Öffnet {{countdown}}",
|
|
159
|
+
"waitlist.itsOpen": "Es ist geöffnet!",
|
|
160
|
+
"waitlist.nowOpen": "Jetzt geöffnet!",
|
|
161
|
+
"waitlist.openedTitle": "Es ist geöffnet!",
|
|
162
|
+
"waitlist.openedDescription": "Schauen Sie es sich an",
|
|
163
|
+
"waitlist.openingSoon": "Öffnet bald...",
|
|
164
|
+
"waitlist.enterToGetNotified": "Treten Sie der Warteliste bei, um bei Eröffnung benachrichtigt zu werden",
|
|
165
|
+
"waitlist.nowAvailable": "Das Erlebnis ist jetzt verfügbar",
|
|
166
|
+
"waitlist.opens": "Öffnet",
|
|
167
|
+
"waitlist.headOver": "Schauen Sie es sich an",
|
|
168
|
+
"granted.title": "Sie sind dran!",
|
|
169
|
+
"granted.description": "Schließen Sie Ihren Kauf ab, bevor die Zeit abläuft",
|
|
170
|
+
"granted.cta": "Weiter einkaufen",
|
|
171
|
+
"granted.timeRemaining": "Verbleibende Zeit",
|
|
172
|
+
"expired.title": "Zugriff abgelaufen",
|
|
173
|
+
"expired.description": "Ihr Zugang ist abgelaufen. Sie können erneut teilnehmen, um wieder in die Warteschlange zu kommen.",
|
|
174
|
+
"expired.reenter": "Wieder der Warteschlange beitreten",
|
|
175
|
+
"ended.title": "Diese Veranstaltung ist beendet",
|
|
176
|
+
"ended.message": "Vielen Dank für Ihr Interesse. Diese Verteilung ist nicht mehr verfügbar.",
|
|
177
|
+
"ended.endedOn": "Beendet {{date}}",
|
|
178
|
+
"ended.eventClosed": "Veranstaltung beendet",
|
|
179
|
+
"error.label": "Fehler",
|
|
180
|
+
"error.title": "Etwas ist schiefgelaufen",
|
|
181
|
+
"error.description": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es erneut.",
|
|
182
|
+
"error.retry": "Erneut versuchen",
|
|
183
|
+
"experience.entering": "Betreten des Erlebnisses...",
|
|
184
|
+
"experience.findingPlace": "Suche Ihren Platz...",
|
|
185
|
+
"experience.validatingAccess": "Zugang wird validiert...",
|
|
186
|
+
"experience.noSequenceTitle": "Derzeit kein Zugangsfenster",
|
|
187
|
+
"experience.noSequenceMessage": "Für dieses Erlebnis ist aktuell keine aktive oder bevorstehende Distribution verfügbar.",
|
|
188
|
+
"upcoming.title": "Demnächst",
|
|
189
|
+
"upcoming.description": "Dieses Erlebnis hat noch nicht begonnen",
|
|
190
|
+
"start.title": "Willkommen",
|
|
191
|
+
"start.description": "Betreten Sie dieses Erlebnis, um zu beginnen",
|
|
192
|
+
"start.cta": "Loslegen",
|
|
193
|
+
"timedRelease.title": "Flash-Verkauf",
|
|
194
|
+
"timedRelease.description": "Zeitlich begrenzter Zugang",
|
|
195
|
+
"timedRelease.enter": "Zum Verkauf gehen",
|
|
196
|
+
"timedRelease.shop": "Jetzt einkaufen",
|
|
197
|
+
"timedRelease.complete": "Kauf abschließen",
|
|
198
|
+
"timedRelease.exit": "Verkauf verlassen",
|
|
199
|
+
"timedRelease.youreIn": "Sie sind drin!",
|
|
200
|
+
"timedRelease.granted": "Sie sind drin!",
|
|
201
|
+
"timedRelease.inSale": "Im Verkauf",
|
|
202
|
+
"timedRelease.spotsLeft": "{{count}} Plätze verfügbar",
|
|
203
|
+
"timedRelease.spots": "{{count}} Plätze",
|
|
204
|
+
"timedRelease.saleEnded": "Dieser Verkauf ist beendet",
|
|
205
|
+
"timedRelease.completePurchaseIn": "Kauf abschließen in",
|
|
206
|
+
"timedRelease.windowClosesIn": "Zeitfenster schließt in",
|
|
207
|
+
"timedRelease.browseAndComplete": "Stöbern Sie und schließen Sie Ihren Kauf ab, bevor Ihre Sitzung abläuft",
|
|
208
|
+
"queue.estimatedWaitLabel": "Geschätzte Wartezeit",
|
|
209
|
+
"queue.waitLessThanMinute": "Weniger als eine Minute",
|
|
210
|
+
"queue.waitOneMinute": "~1 Minute",
|
|
211
|
+
"queue.waitMinutes": "~{{count}} Minuten",
|
|
212
|
+
"queue.waitOneHour": "~1 Stunde",
|
|
213
|
+
"queue.waitHours": "~{{count}} Stunden",
|
|
214
|
+
"queue.waitHoursMinutes": "~{{hours}}h {{minutes}}m",
|
|
215
|
+
"auction.you": "Sie",
|
|
216
|
+
"auction.yourWinningBid": "Ihr Höchstgebot",
|
|
217
|
+
"auction.reserveMet": "Mindestpreis erreicht",
|
|
218
|
+
"auction.reserveNotMet": "Mindestpreis: {{amount}}",
|
|
219
|
+
"auction.outbidWithYourBid": "Sie wurden überboten (Ihr Gebot: {{amount}})",
|
|
220
|
+
"challenge.title": "Verifizierung erforderlich",
|
|
221
|
+
"challenge.badgeLabel": "Verifizieren",
|
|
222
|
+
"challenge.description": "Bitte schließen Sie die Verifizierung ab, um fortzufahren.",
|
|
223
|
+
"challenge.retry": "Erneut versuchen",
|
|
224
|
+
"challenge.verificationFailed": "Verifizierung fehlgeschlagen",
|
|
225
|
+
"challenge.expiredRefresh": "Verifizierung abgelaufen. Bitte aktualisieren Sie die Seite und versuchen Sie es erneut.",
|
|
226
|
+
"challenge.errorRefresh": "Verifizierungsfehler. Bitte aktualisieren Sie die Seite und versuchen Sie es erneut.",
|
|
227
|
+
"challenge.expiredRetry": "Verifizierung abgelaufen. Bitte versuchen Sie es erneut.",
|
|
228
|
+
"challenge.errorRetry": "Verifizierungsfehler. Bitte versuchen Sie es erneut.",
|
|
229
|
+
"challenge.blockedDefault": "Zu viele fehlgeschlagene Verifizierungsversuche. Bitte versuchen Sie es später erneut.",
|
|
230
|
+
"challenge.unableToLoad": "Verifizierung konnte nicht geladen werden.",
|
|
231
|
+
"challenge.blockedUntil": "Gesperrt bis {{date}}",
|
|
232
|
+
"challenge.attemptsRemaining": "Verbleibende Versuche: {{count}}",
|
|
233
|
+
"challenge.iframeTitle": "Verifizierung",
|
|
234
|
+
"experience.unsupportedDistribution": "Nicht unterstützter Verteilungstyp",
|
|
235
|
+
"appointment.title": "Termin buchen",
|
|
236
|
+
"appointment.bookedTitle": "Termin gebucht",
|
|
237
|
+
"appointment.rescheduleTitle": "Termin verschieben",
|
|
238
|
+
"appointment.selectATime": "Zeit auswählen",
|
|
239
|
+
"appointment.continueWithTime": "Weiter · {{time}}",
|
|
240
|
+
"appointment.bookedFor": "Gebucht für",
|
|
241
|
+
"appointment.timeRange": "{{start}} – {{end}}",
|
|
242
|
+
"appointment.location": "Ort",
|
|
243
|
+
"appointment.confirmationCode": "Bestätigungscode",
|
|
244
|
+
"appointment.reschedule": "Verschieben",
|
|
245
|
+
"appointment.cancel": "Absagen",
|
|
246
|
+
"appointment.cancelConfirm": "Diesen Termin absagen?",
|
|
247
|
+
"appointment.cancelConfirmYes": "Ja, absagen",
|
|
248
|
+
"appointment.cancelConfirmNo": "Behalten",
|
|
249
|
+
"appointment.noSlotsAvailable": "Für diesen Tag sind keine Zeiten verfügbar",
|
|
250
|
+
"appointment.loadingBooking": "Deine Buchung wird geladen…",
|
|
251
|
+
"appointment.loadingSlotsLabel": "Verfügbare Zeiten werden geladen",
|
|
252
|
+
"appointment.slotsLabel": "Verfügbare Zeiten",
|
|
253
|
+
"appointment.slotFullAriaLabel": "{{time}}, ausgebucht",
|
|
254
|
+
"appointment.bookingFailed": "Dieser Termin konnte nicht gebucht werden",
|
|
255
|
+
"appointment.confirmed": "Bestätigt",
|
|
256
|
+
"appointment.checkedIn": "Eingecheckt",
|
|
257
|
+
"appointment.online": "Online",
|
|
258
|
+
"appointment.time": "Zeit",
|
|
259
|
+
"appointment.duration": "Dauer",
|
|
260
|
+
"appointment.minutes": "{{count}} Min.",
|
|
261
|
+
"appointment.addToCalendar": "Zum Kalender hinzufügen",
|
|
262
|
+
"appointment.joinCall": "Anruf beitreten",
|
|
263
|
+
"appointment.showPass": "Pass anzeigen",
|
|
264
|
+
"appointment.youreUpAt": "Du bist um {{time}} dran.",
|
|
265
|
+
"appointment.youreUpIrlHint": "Geh zu {{location}} — das Team ist gleich für dich da.",
|
|
266
|
+
"appointment.youreUpOnlineHint": "Dein Anruf ist bereit. Tritt bei, wenn du soweit bist.",
|
|
267
|
+
"appointment.completedTitle": "Termin abgeschlossen",
|
|
268
|
+
"queue.bucket.upNext": "Up next",
|
|
269
|
+
"queue.bucket.almostThere": "Almost there",
|
|
270
|
+
"queue.bucket.nearTheFront": "Near the front",
|
|
271
|
+
"queue.bucket.fewAhead": "A few people ahead",
|
|
272
|
+
"queue.bucket.inTheLine": "In the line",
|
|
273
|
+
"queue.qualitativeReassurance": "Stay on this screen — we'll let you know the moment you're up."
|
|
274
|
+
}
|
|
275
|
+
;
|
|
276
|
+
|
|
277
|
+
export default _default;
|