-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathi18n.js
More file actions
779 lines (775 loc) · 27 KB
/
Copy pathi18n.js
File metadata and controls
779 lines (775 loc) · 27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import LanguageDetector from "i18next-browser-languagedetector";
i18n
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
debug: true,
fallbackLng: "en",
locales: [
"en",
"ar-SA",
"ca-ES",
"cs-CZ",
"me-ME",
"cy-GB",
"da-DK",
"de-DE",
"el-GR",
"et-EE",
"es-ES",
"es-LA",
"fr-FR",
"he-IL",
"hi-IN",
"hr-HR",
"it-IT",
"ja-JP",
"kn-IN",
"ko-KR",
"mr-IN",
"hu-HU",
"nl-NL",
"no-NO",
"pl-PL",
"pt-BR",
"pt-PT",
"ro-RO",
"ru-RU",
"sk-SK",
"sl-SI",
"fi-FI",
"sv-SE",
"vls-BE",
"sr-SP",
"tr-TR",
"uk-UA",
"zh-CN",
"zh-TW",
"xx-XX",
],
// currently supportedLngs is the same as locales but clever lang loading
// could reduce the number of supported translation files e.g. 'fr' over 'fr-FR' + variants
supportedLngs: [
"en",
"ar-SA",
"ca-ES",
"cs-CZ",
"me-ME",
"cy-GB",
"da-DK",
"de-DE",
"el-GR",
"et-EE",
"es-ES",
"es-LA",
"fr-FR",
"he-IL",
"hi-IN",
"hr-HR",
"it-IT",
"ja-JP",
"kn-IN",
"ko-KR",
"mr-IN",
"hu-HU",
"nl-NL",
"no-NO",
"pl-PL",
"pt-BR",
"pt-PT",
"ro-RO",
"ru-RU",
"sk-SK",
"sl-SI",
"fi-FI",
"sv-SE",
"vls-BE",
"sr-SP",
"tr-TR",
"uk-UA",
"zh-CN",
"zh-TW",
"xx-XX",
],
load: "currentOnly", // otherwise for fr-FR it's load ['fr-FR', 'fr']
// nonExplicitSupportedLngs: true, // allows locale variants on supportedLngs
detection: {
order: ["path"], // only use path to detect local for now
},
interpolation: {
escapeValue: false, // not needed for react!!
},
resources: {
en: {
translation: {
// here we will place our translations...
modal: {
close: "Close",
error: {
error: "Error",
heading: "An error has occurred",
externalLink: {
message:
"Unfortunately links to external sites are not available in the Editor.",
},
},
},
editorPanel: {
ariaLabel: "editor text input",
characterLimitError: "Error: Character limit reached",
characterLimitExplanation:
"Files in the editor are limited to {{maxCharacters}} characters",
viewOnly: "View only",
close: "close",
},
filePanel: {
errors: {
reservedFileName:
"{{fileName}} is a reserved file name. Please choose a different name.",
containsSpaces: "File names must not contain spaces.",
generalError: "Error",
notUnique: "File names must be unique.",
unsupportedExtension:
"File names must end in {{allowedExtensions}}.",
},
files: "Project files",
images: "Image gallery",
newFileButton: "Add file",
newFileModal: {
cancel: "Cancel",
heading: "Add a new file to your project",
helpText:
"Remember to add the file extension at the end of your file name, for example, {{examples}}",
helpTextExample: {
html: "'file.html', 'file.css' or 'file.js'",
python: "'file.py'",
},
inputLabel: "Name your file",
addFile: "Add file",
},
renameFileModal: {
cancel: "Cancel",
heading: "Rename file",
inputLabel: "Name your file",
save: "Save",
},
fileMenu: {
label: "Open file menu",
renameItem: "Rename file",
},
},
downloadPanel: {
heading: "Save & download",
logInTitle: "Log in to save your progress",
logInHint:
"With a Raspberry Pi Account you can save your code and project steps progress.",
logInButton: "Log in to save",
signUpButton: "Sign up",
downloadHint:
"Download your project files so you can use them offline and in a different code editor.",
downloadButton: "Download project",
},
footer: {
accessibility: "Accessibility",
charityNameAndNumber:
"Raspberry Pi Foundation UK registered charity 1129409",
cookies: "Cookies",
privacy: "Privacy",
safeguarding: "Safeguarding",
},
projectName: {
label: "Project name",
newProject: "New Project",
},
header: {
download: "Download",
downloadFileNameDefault: "my {{project_type}} project",
editorLogoAltText: "Editor logo",
projects: "Your projects",
renameProject: "Edit project name",
renameSave: "Save project name",
save: "Save",
loginToSave: "Log in to save",
settings: "Settings",
},
imagePanel: {
gallery: "Image Gallery",
},
infoPanel: {
info: "Information",
},
instructionsPanel: {
emptyState: {
addInstructions: "Add instructions",
edits:
"Like project code, students will not see any edits you make to the instructions after they have saved their version of the project.",
location:
"These instructions will be shown to students in their project sidebar and will be view-only.",
markdown: "Instructions are written in <0>markdown</0>.",
purpose:
"Instructions can be added to your project to guide students.",
},
removeInstructions: "Remove instructions",
nextStep: "Next step",
previousStep: "Previous step",
projectSteps: "Project instructions",
edit: "Edit",
view: "View",
removeInstructionsModal: {
removeInstructions: "Remove instructions",
close: "Close",
heading: "Remove project instructions?",
removeInstuctionsWarning:
"You are about to remove the instructions from the project.",
resultRemovingInstructions:
"As a result of removing these instructions:",
instructionsWillBeDeleted:
"Instructions content will be deleted.",
studentsWorkingProjectNotRecievedInstructions:
"Students who start working on this project will not receive instructions.",
studentsStartedWillSeeInstructions:
"Students who have already started working on this project will still be able to see the instructions as they were when they started.",
},
},
projectsPanel: {
projects: "Projects",
yourProjectsButton: "Go to your projects",
projectTypeLabel: "Project type",
},
settingsPanel: {
info: "Settings",
},
input: {
comment: {
py5: "Py5: imported mode",
},
},
mobile: {
code: "Code",
menu: "Menu",
output: "Output",
preview: "Preview",
steps: "Steps",
},
modals: {
close: "Close",
},
notifications: {
close: "close",
loginPrompt:
"To save this project and access it later, don't forget to log in or sign up!",
projectRemixed: "Your remixed project has been saved",
projectRenamed: "You have renamed your project.",
projectSaved: "Your project has been saved",
savePrompt:
'Save this project to access it later under "Your projects".',
},
output: {
errors: {
interrupted: "Execution interrupted",
},
newTab: "Preview in new tab",
preview: "preview",
senseHat: {
controls: {
colour: "colour",
humidity: "humidity",
motion: "motion",
motionSensorOptions: {
no: "No",
yes: "Yes",
},
name: "Space Station Control Panel",
pressure: "pressure",
temperature: "temperature",
timer: "timer",
},
model: {
pitch: "pitch",
roll: "roll",
yaw: "yaw",
},
},
textOutput: "Text output",
visualOutput: "Visual output",
},
outputViewToggle: {
buttonTabLabel: "Tabbed view",
buttonTabTitle: "Tabbed view",
buttonSplitLabel: "Split view",
buttonSplitTitle: "Split view",
},
project: {
accessDeniedWithAuthModal: {
embedded: {
text: "Visit the Projects site for cool project ideas",
},
heading: "You can't access this project",
newProject: "Create a new code project",
projectsSiteLinkText: "Explore Projects site",
text: "Visit the Projects site for cool project ideas or start coding in a new project.",
},
loading: "Loading",
notFoundModal: {
embedded: {
text: "Visit the Projects site for cool project ideas",
},
heading: "This project does not exist",
newProject: "Start new code project",
projectsSiteLinkText: "Explore Projects site",
text: "You can start coding in a new project, or visit the Projects site for cool project ideas.",
},
untitled: "Untitled project",
},
projectHeader: {
subTitle: "Code Editor",
title: "Your projects",
text: "Select a project to continue coding, view, or edit it.",
},
projectList: {
delete: "Delete",
deleteLabel: "Delete project",
empty: "No projects created yet",
label: "Open project menu",
loading: "Loading",
loadingFailed: "Failed to load projects",
newProject: "Create a new project",
pagination: {
first: "First page",
last: "Last page",
next: "Next page",
previous: "Previous page",
more: "Load more projects",
},
rename: "Rename",
renameLabel: "Rename project",
renameProjectModal: {
cancel: "Do not save",
heading: "Rename project",
inputLabel: "Change the name of your project",
save: "Save",
},
updated: "Edited",
python_type: "Python",
html_type: "HTML",
},
projectTypes: {
html: "HTML/CSS",
python: "Python",
},
runButton: {
run: "Run",
stop: "Stop",
stopping: "Stopping...",
},
saveStatus: {
saving: "Saving",
saved: "Saved",
},
runners: {
HtmlOutput: "HTML Output Preview",
},
sidebar: {
collapse: "Collapse sidebar",
download: "Download project",
expand: "Expand sidebar",
file: "Project files",
images: "Image gallery",
settings: "Settings",
projects: "Projects",
information: "Information",
information_text:
"Our Code Editor is a tool to help young people learn to code. We have only included functions that are simple and safe to use. That's why, for example, links to other websites are not allowed.",
instructions: "Project instructions",
feedback: "Feedback",
help: "Help",
privacy: "Privacy",
cookies: "Cookies",
accessibility: "Accessibility",
safeguarding: "Safeguarding",
charity: "Raspberry Pi Foundation - UK registered charity 1129409",
settingsMenu: {
heading: "Settings",
textSize: "Text size",
theme: "Theme",
textSizeOptions: {
large: "Large",
medium: "Medium",
small: "Small",
},
themeOptions: {
dark: "Dark",
light: "Light",
},
},
},
webComponent: {
loading: "Loading",
failed: "Load failed",
},
imageUploadButton: {
uploadImage: "Upload Image",
uploadAnImage: "Upload an image",
info: "Drag and drop images here, or click to select images from file",
cancel: "Cancel",
save: "Save",
or: "or",
errors: {
error: "Error",
imageNameNotUnique: "Image names must be unique.",
invalidImageExtension: "Image names must end in {{extensions}}.",
},
},
newInputPanelButton: {
buttonText: "Add another panel",
},
button: {
yes: "Yes",
no: "No",
},
common: {
or: "or",
},
},
},
"xx-XX": {
translation: {
modal: {
close: "Schließen",
error: {
error: "Fehler",
heading: "Ein Fehler ist aufgetreten",
externalLink: {
message:
"Leider sind Links zu externen Seiten im Editor nicht verfügbar.",
},
},
},
editorPanel: {
ariaLabel: "Texteingabe des Editors",
characterLimitError: "Fehler: Zeichenlimit erreicht",
characterLimitExplanation:
"Dateien im Editor sind auf {{maxCharacters}} Zeichen begrenzt",
viewOnly: "Nur Ansicht",
close: "schließen",
},
filePanel: {
errors: {
reservedFileName:
"{{fileName}} ist ein reservierter Dateiname. Bitte wählen Sie einen anderen Namen.",
containsSpaces: "Dateinamen dürfen keine Leerzeichen enthalten.",
generalError: "Fehler",
notUnique: "Dateinamen müssen eindeutig sein.",
unsupportedExtension:
"Dateinamen müssen mit {{allowedExtensions}} enden.",
},
files: "Projektdateien",
images: "Bildergalerie",
newFileButton: "Datei hinzufügen",
newFileModal: {
cancel: "Abbrechen",
heading: "Eine neue Datei zu Ihrem Projekt hinzufügen",
helpText:
"Denken Sie daran, die Dateiendung am Ende Ihres Dateinamens hinzuzufügen, zum Beispiel {{examples}}",
helpTextExample: {
html: "'datei.html', 'datei.css' oder 'datei.js'",
python: "'datei.py'",
},
inputLabel: "Benennen Sie Ihre Datei",
addFile: "Datei hinzufügen",
},
renameFileModal: {
cancel: "Abbrechen",
heading: "Datei umbenennen",
inputLabel: "Benennen Sie Ihre Datei",
save: "Speichern",
},
fileMenu: {
label: "Datei-Menü öffnen",
renameItem: "Datei umbenennen",
},
},
downloadPanel: {
heading: "Speichern & herunterladen",
logInTitle: "Melden Sie sich an, um Ihren Fortschritt zu speichern",
logInHint:
"Mit einem Raspberry Pi Konto können Sie Ihren Code und den Fortschritt Ihrer Projektschritte speichern.",
logInButton: "Zum Speichern anmelden",
signUpButton: "Registrieren",
downloadHint:
"Laden Sie Ihre Projektdateien herunter, damit Sie sie offline und in einem anderen Code-Editor verwenden können.",
downloadButton: "Projekt herunterladen",
},
footer: {
accessibility: "Barrierefreiheit",
charityNameAndNumber:
"Raspberry Pi Foundation UK eingetragene Wohltätigkeitsorganisation 1129409",
cookies: "Cookies",
privacy: "Datenschutz",
safeguarding: "Kinderschutz",
},
projectName: {
label: "Projektname",
newProject: "Neues Projekt",
},
header: {
download: "Herunterladen",
downloadFileNameDefault: "mein {{project_type}} Projekt",
editorLogoAltText: "Editor-Logo",
projects: "Ihre Projekte",
renameProject: "Projektnamen bearbeiten",
renameSave: "Projektnamen speichern",
save: "Speichern",
loginToSave: "Zum Speichern anmelden",
settings: "Einstellungen",
},
imagePanel: {
gallery: "Bildergalerie",
},
infoPanel: {
info: "Informationen",
},
instructionsPanel: {
emptyState: {
addInstructions: "Anweisungen hinzufügen",
edits:
"Wie beim Projektcode sehen die Schüler keine Änderungen, die Sie an den Anweisungen vornehmen, nachdem sie ihre Version des Projekts gespeichert haben.",
location:
"Diese Anweisungen werden den Schülern in ihrer Projekt-Seitenleiste angezeigt und sind schreibgeschützt.",
markdown: "Anweisungen werden in Markdown geschrieben.",
purpose:
"Anweisungen können zu Ihrem Projekt hinzugefügt werden, um die Schüler anzuleiten.",
},
removeInstructions: "Anweisungen entfernen",
nextStep: "Nächster Schritt",
previousStep: "Vorheriger Schritt",
projectSteps: "Projektablauf",
edit: "Bearbeiten",
view: "Anzeigen",
removeInstructionsModal: {
removeInstructions: "Anweisungen entfernen",
close: "Schließen",
heading: "Projektanweisungen entfernen?",
removeInstuctionsWarning:
"Sie sind dabei, die Anweisungen aus dem Projekt zu entfernen.",
resultRemovingInstructions:
"Als Ergebnis des Entfernens dieser Anweisungen:",
instructionsWillBeDeleted:
"Der Inhalt der Anweisungen wird gelöscht.",
studentsWorkingProjectNotRecievedInstructions:
"Schüler, die mit diesem Projekt beginnen, erhalten keine Anweisungen.",
studentsStartedWillSeeInstructions:
"Schüler, die bereits mit diesem Projekt begonnen haben, können die Anweisungen weiterhin so sehen, wie sie beim Start waren.",
},
},
projectsPanel: {
projects: "Projekte",
yourProjectsButton: "Zu Ihren Projekten gehen",
projectTypeLabel: "Projekttyp",
},
settingsPanel: {
info: "Einstellungen",
},
input: {
comment: {
py5: "Py5: importierter Modus",
},
},
mobile: {
code: "Code",
menu: "Menü",
output: "Ausgabe",
preview: "Vorschau",
steps: "Schritte",
},
modals: {
close: "Schließen",
},
notifications: {
close: "schließen",
loginPrompt:
"Um dieses Projekt zu speichern und später darauf zuzugreifen, vergessen Sie nicht, sich anzumelden oder zu registrieren!",
projectRemixed: "Ihr neu gemischtes Projekt wurde gespeichert",
projectRenamed: "Sie haben Ihr Projekt umbenannt.",
projectSaved: "Ihr Projekt wurde gespeichert",
savePrompt:
"Speichern Sie dieses Projekt, um später unter „Ihre Projekte“ darauf zuzugreifen.",
},
output: {
errors: {
interrupted: "Ausführung unterbrochen",
},
newTab: "Vorschau in neuem Tab",
preview: "Vorschau",
senseHat: {
controls: {
colour: "Farbe",
humidity: "Feuchtigkeit",
motion: "Bewegung",
motionSensorOptions: {
no: "Nein",
yes: "Ja",
},
name: "Steuerungspanel der Raumstation",
pressure: "Druck",
temperature: "Temperatur",
timer: "Timer",
},
model: {
pitch: "Neigung",
roll: "Rollen",
yaw: "Gieren",
},
},
textOutput: "Textausgabe",
visualOutput: "Visuelle Ausgabe",
},
outputViewToggle: {
buttonTabLabel: "Tab-Ansicht",
buttonTabTitle: "Tab-Ansicht",
buttonSplitLabel: "Geteilte Ansicht",
buttonSplitTitle: "Geteilte Ansicht",
},
project: {
accessDeniedWithAuthModal: {
embedded: {
text: "Besuchen Sie die Projektseite für tolle Projektideen",
},
heading: "Sie können auf dieses Projekt nicht zugreifen",
newProject: "Ein neues Code-Projekt erstellen",
projectsSiteLinkText: "Projektseite erkunden",
text: "Besuchen Sie die Projektseite für tolle Projektideen oder beginnen Sie mit dem Programmieren in einem neuen Projekt.",
},
loading: "Wird geladen",
notFoundModal: {
embedded: {
text: "Besuchen Sie die Projektseite für tolle Projektideen",
},
heading: "Dieses Projekt existiert nicht",
newProject: "Neues Code-Projekt starten",
projectsSiteLinkText: "Projektseite erkunden",
text: "Sie können mit dem Programmieren in einem neuen Projekt beginnen oder die Projektseite für tolle Projektideen besuchen.",
},
untitled: "Unbenanntes Projekt",
},
projectHeader: {
subTitle: "Code-Editor",
title: "Ihre Projekte",
text: "Wählen Sie ein Projekt aus, um mit dem Programmieren fortzufahren, es anzuzeigen oder zu bearbeiten.",
},
projectList: {
delete: "Löschen",
deleteLabel: "Projekt löschen",
empty: "Noch keine Projekte erstellt",
label: "Projektmenü öffnen",
loading: "Wird geladen",
loadingFailed: "Fehler beim Laden der Projekte",
newProject: "Neues Projekt erstellen",
pagination: {
first: "Erste Seite",
last: "Letzte Seite",
next: "Nächste Seite",
previous: "Vorherige Seite",
more: "Weitere Projekte laden",
},
rename: "Umbenennen",
renameLabel: "Projekt umbenennen",
renameProjectModal: {
cancel: "Nicht speichern",
heading: "Projekt umbenennen",
inputLabel: "Ändern Sie den Namen Ihres Projekts",
save: "Speichern",
},
updated: "Bearbeitet",
python_type: "Python",
html_type: "HTML",
},
projectTypes: {
html: "HTML/CSS",
python: "Python",
},
runButton: {
run: "Ausführen",
stop: "Stopp",
stopping: "Wird gestoppt...",
},
saveStatus: {
saving: "Wird gespeichert",
saved: "Gespeichert",
},
runners: {
HtmlOutput: "HTML-Ausgabevorschau",
},
sidebar: {
collapse: "Seitenleiste einklappen",
download: "Projekt herunterladen",
expand: "Seitenleiste ausklappen",
file: "Projektdateien",
images: "Bildergalerie",
settings: "Einstellungen",
projects: "Projekte",
information: "Informationen",
information_text:
"Unser Code-Editor ist ein Werkzeug, um jungen Menschen das Programmieren zu erleichtern. Wir haben nur Funktionen integriert, die einfach und sicher zu bedienen sind. Deshalb sind beispielsweise Links zu anderen Webseiten nicht erlaubt.",
instructions: "Projektanweisungen",
feedback: "Feedback",
help: "Hilfe",
privacy: "Datenschutz",
cookies: "Cookies",
accessibility: "Barrierefreiheit",
safeguarding: "Kinderschutz",
charity:
"Raspberry Pi Foundation - eingetragene Wohltätigkeitsorganisation in Großbritannien 1129409",
settingsMenu: {
heading: "Einstellungen",
textSize: "Textgröße",
theme: "Thema",
textSizeOptions: {
large: "Groß",
medium: "Mittel",
small: "Klein",
},
themeOptions: {
dark: "Dunkel",
light: "Hell",
},
},
},
webComponent: {
loading: "Wird geladen",
failed: "Laden fehlgeschlagen",
},
imageUploadButton: {
uploadImage: "Bild hochladen",
uploadAnImage: "Laden Sie ein Bild hoch",
info: "Ziehen Sie Bilder hierher, oder klicken Sie, um Bilder aus der Datei auszuwählen",
cancel: "Stornieren",
save: "Speichern",
errors: {
error: "Fehler",
imageNameNotUnique: "Bildnamen müssen eindeutig sein.",
invalidImageExtension: "Image names must end in {{extensions}}.",
},
},
newInputPanelButton: {
buttonText: "Fügen Sie ein weiteres Panel hinzu",
},
button: {
yes: "Ja",
no: "Nein",
},
common: {
or: "oder",
},
},
},
},
});
export default i18n;