-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgerman.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
8054 lines (8054 loc) · 899 KB
/
german.csv
File metadata and controls
8054 lines (8054 loc) · 899 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
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Name,English,Translation,Restrictions,Comment
__Priority,0,0,,Order of language importance. Allows other packs to supplement or replace sections
_Argument0,{0},{0},,single unlocalised argument
_Error,Error: {0},Fehler: {0},,General error prefix
_Language,German,German,,Language name - in English
_LanguageNative,German,Deutsch,,Language name in the native language
_LanguageCode,de,de,,standard windows os language code this pack represents (can be primary code only ie. en or primary-secondary ie. en-GB)
_GameMaker2016,GameMaker,GameMaker,,IDE title
_MANUAL_LOCATION,http://zeus.yoyogames.com/GMS2-Robohelp-german-2.3.1.29.zip,http://zeus.yoyogames.com/GMS2-Robohelp-german-2.3.1.29.zip,,Location of language manual
_MANUAL_ONLINE_URL,https://manual.gamemaker.io/monthly/de,https://manual.gamemaker.io/monthly/de,,online manual url
_TUTORIALS_ONLINE_URL,https://gamemaker.io/de/tutorials,https://gamemaker.io/de/tutorials,,Location of Tutorials url
$win_OpenInExplorer,Open In Explorer,In Explorer öffnen,,Windows version of Open In Explorer
$win_OpenProjectInExplorer,Open Project In Explorer,Projekt in Explorer öffnen,,Windows version of Open Project In Explorer
$win_ShowLogFileInExplorer,Open Log In Explorer,Protokoll in Explorer öffnen,,Windows version of Show Log In Explorer
$win_explorer,explorer,explorer,,windows version of explorer
$mac_explorer,finder,finder,,mac version of explorer
$mac_OpenInExplorer,Show In Finder,In Finder anzeigen,,Mac version of Open In Explorer
$mac_OpenProjectInExplorer,Show Project In Finder,Projekt in Finder anzeigen,,Mac version of Open Project In Explorer
$mac_ShowLogFileInExplorer,Reveal Log In Finder,Protokoll in Finder anzeigen,,Mac version of Show Log In Explorer
$win_ctrl,Ctrl,Strg,,Windows version of ctrl key
$mac_ctrl,Command,Command,,Mac version of ctrl key
$win_FileMenuExit,Exit,Beenden,,Windows version of the Exit main menu entry
$mac_FileMenuExit,Quit,Verlassen,,Mac version of the Exit main menu entry
$win_IDEMenuHelpAbout,About,Über,,Windows version of the About main menu entry
$mac_IDEMenuHelpAbout,About GameMaker,Über GameMaker,,Windows version of the About main menu entry
$win_IDEMenuViews,Windows,Fenster,,Windows version of the views menu entry
$mac_IDEMenuViews,Window,Fenster,,Mac version of the views menu entry
Account_Menu_Login,Login,Anmelden,,"Account menu ""Login"""
Account_Menu_Logout,Logout,Abmelden,,"Acount menu ""Logout"""
AnimationManager_InvalidTransition,The transition specified '{0}' is not valid,Der als angegebene '{0}‘ Übergang ist nicht gültig,,The transition specified in the animation json is not a valid value
BackgroundLayer_HSpeed,Horizontal Speed,Horizontale Geschwindigkeit,,Numeric textbox label for horizontal scroll speed
BackgroundLayer_HTile,Horizontal Tile,Horizontale Kachel,,Checkbox label for horizontal tiling
BackgroundLayer_NoBackground,<no background>,<Kein Hintergrund>,,no background selected caption for the background layer button
BackgroundLayer_PosX,X Offset,X-Verschiebung,,Numeric textbox label for x pos offset
BackgroundLayer_PosY,Y Offset,Y-Verschiebung,,numeric textbox label for y pos offset
BackgroundLayer_Stretch,Stretch,Strecken,,Checkbox label for stretch
BackgroundLayer_VSpeed,Vertical Speed,Vertikale Geschwindigkeit,,Numeric textbox label for vertical scroll speed
BackgroundLayer_VTile,Vertical Tile,Vertikale Kachel,,Checkbox label for vertical tiling
Breakpoints,Breakpoints,Haltepunkt,,Breakpoints
Breakpoint_Delete,Delete Breakpoint,Haltepunkt löschen,,delete breakpoint menu option
Breakpoint_GotoCode,Go To Code,Zum Code gehen,,breakpoint show code menu option
Breakpoint_MenuToggle,Toggle Breakpoint,Haltepunkt ein- oder ausschalten,,toggle breakpoint menu option
Breakpoint_Help,"There are no breakpoints to display.\nTo place one, press F9 on the desired line in a code editor.","Es sind keine Haltpunkte zum Anzeigen vorhanden.\nUm einen zu setzen, drücken Sie F9 auf der gewünschten Zeile in einem Code-Editor.",,Breakpoint help text to be displayed when there are no breakpoints
Build_FailedCompile,ERROR: Project failed to compile: error code {0},FEHLER: Projekt konnte nicht kompiliert werden: Fehlercode {0},,Error message when the project fails to compile
Build_FailedDeploy,ERROR: Project failed to deploy: error code {0},FEHLER: Projekt konnte nicht bereitgestellt werden: Fehlercode {0},,Error message when the project fails to deploy
Build_FailedRun,ERROR: Project failed to run: error code {0},FEHLER: Projekt konnte nicht ausgeführt werden: Fehlercode {0},,Error message when the project fails to run
Button_Add,Add,Hinzufügen,,Add button
Button_Cancel,Cancel,Abbrechen,,cancel button
Button_Delete,Delete,Löschen,,Delete button
Button_Done,Done,Fertig,,Done button
Button_Import,Import,Importieren,,import button label
Button_Manage,Manage,Verwalten,,Manage button
Button_No,No,Nein,,No
Button_OK,OK,OK,,ok button
Button_Rename,Rename,Umbenennen,,Rename button
Button_Resize,Resize,Größe ändern,,resize button label
Button_Scale,Scale,Skalieren,,Image editor - scale button
Button_Yes,Yes,Ja,,Yes
Button_Next,Next,Weiter,,next button label
Button_Create,Create,Erstellen,,create button label
Button_Apply,Apply,Anwenden,,apply button label
Button_Remove_All,Remove All,Alle entfernen,,button label - remove all
Dialog_ResetLayout_Title,Reset Layout,Layout zurücksetzen,,Reset layout dialog title
Dialog_ResetLayout,Resetting the project layout will close any open resources. Are you sure you want to reset the layout?,Durch Zurücksetzen des Projekt-Layouts werden offene Ressourcen geschlossen. Möchten Sie tatsächlich das Layout zurücksetzen?,,Dialog message reset layout
Dialog_ResetLayout_ChoicePref,Automatic response to resetting the project layout,Automatische Reaktion auf Zurücksetzen des Projekt-Layouts,,Default reset layout dialog choice
Certificate_GenerateSucceeded,Successfully created certificate file: {0},Zertifikatsdatei erfolgreich erstellt: {0},,certificate create success
Certificate_GenerateFailed,Failed to create certificate file: {0},Zertifikatsdatei konnte nicht erstellt werden: {0},,certificate create failed
Certificate_FileAlreadyExists,Certificate file '{0}' already exists; please choose a new filename,Zertifikatdatei '{0}' existiert bereits. Bitte wählen Sie einen neuen Dateinamen,,certificate file exists
Certificate_RequiredFieldsMissing,Name and Password fields must be set,Die Felder Name und Passwort müssen festgelegt werden,,create certificate missing fields
Certificate_FileMissing,Unable to find certificate file '{0}',Zertifikatsdatei '{0}' nicht gefunden,,certificate file missing
Certificate_Test_Title,Certificate Check,Zertifikatsüberprüfung,,certificate test title
Certificate_PasswordFail,Password is NOT valid for certificate,Passwort für Zertifikat ist NICHT gültig,,certificate password fail
Certificate_PasswordOK,Password is valid for certificate,Passwort für Zertifikat ist gültig,,certificate password ok
CertProperties_Heading,Set .pem certificate file and password,.pem-Zertifikatsdatei und Passwort festlegen,,certificate properties heading
CertProperties_Heading2,(you can use an existing GameMaker marketplace certificate),(Sie können ein vorhandenes Zertifikat für den GameMaker Marketplace nutzen),,certificate properties heading 2
CertProperties_CertificateFile,Certificate File:,Zertifikatsdatei:,,certificate file label
CertProperties_CertificatePassword,Certificate Password:,Zertifikatspasswort:,,certificate password label
CertProperties_Check,Check,Überprüfen,,certificate properties check certificate button label
CertProperties_CheckTooltip,Check that the password is valid for the selected certficate file,"Überprüfen Sie, ob das Passwort für die ausgewählte Zertifikatsdatei gültig ist",,certificate properties check tooltip
CertProperties_CreateInfoLabel,"If you don't have a certificate, you can create one:","Wenn Sie kein Zertifikat haben, können Sie eines erstellen:",,certificate properties create info
CertProperties_CreateNewCertificate,Create new certificate,Neues Zertifikat erstellen,,certificate properties create new certificate button label
CertProperties_CreateCertificate,Create Certificate,Zertifikat erstellen,,certificate properties create certificate button label
CertProperties_EnterCertDetails,Enter new certificate details:,Neue Zertifikatsdetails eingeben:,,certificate properties enter certificate details
CertProperties_PublisherName,Publisher Name:,Name des Publishers:,,cert properties author name
CertProperties_CreatePublisherAccount,Create Publisher Account,Publisher-Konto einrichten,,create publisher account button label
CodeWindow_2Column,2 columns,2 Spalten,,Document window layout menu option - 2columns
CodeWindow_3Column,3 columns,3 Spalten,,Document window layout menu option - 3 columns
CodeWindow_Fullscreen,Fullscreen workspace tab,Arbeitsbereichreiter in Vollbild,,Document window layout menu option - fullscreen workspace tab
CodeWindow_Menu_Help,Keyword help,Hilfe Schlagwort,,Code window help menu option
CodeWindow_Menu_ShowResource,Show resource,Ressource zeigen,,Code window show resource menu option
CodeWindow_SingleColumn,Single pane,Einzelfenster,,Document window layout menu option - 1 column
CodeWindow_Title,Code,Code,,fullscreen code editor workspace tab title
CodeWindow_RestoreToWorkspace,Restore to Workspace,In Workspace wiederherstellen,,code editor restore to workspace context menu option
CodeWindow_GotoObject,Go to Object,Zu Objekt gehen,,code editor go to object context menu option
CodeWindow_AddEvent,Add/Open Event,Ereignis hinzufügen/öffnen,,code editor event script add event context menu option
GotoLine_Title,Go To Line,Zu Zeile gehen,,goto line dialog title
GotoLine_Label,Line Number ({0} - {1}),Zeilennummer ({0} - {1}),,goto line label
CompileErrors,Compile Errors,Kompilierungsfehler,,Compile Errors tab title
CompileErrors_NoErrors,There are no compile errors to show!,"Es gibt keine Kompilierungsfehler, die angezeigt werden können!",,No compile errors message
Configuration,Configuration,Konfiguration,,Configuration
Configuration_Select,Select Configuration,Konfiguration wählen,,Window title for config select
Configurations,Configurations,Konfigurationen,,Configurations
Configurations_Add,Add New Configuration,Neue Konfiguration hinzufügen,,Add configuration window title
Configurations_Delete,Are you sure you want to delete configuration '{0}' and all of its children?,Möchten Sie die Konfiguration ‚{0}‘ und alle ihr untergeordneten Objekte wirklich löschen?,,Confirm for deleting a configuration
Configurations_Delete_OtherConfigs,Are you sure? Deleting configuration '{0}' will also delete the following configurations: '{1}'.,Sind Sie sicher? Mit dem Löschen der Konfiguration '{0}' werden auch die folgenden Konfigurationen gelöscht: '{1}'.,,Warning about deleting a configuration deleting child configs
Configurations_DeleteError,Cannot delete configuration '{0}',Konfiguration '{0}‘ kann nicht gelöscht werden,,Cannot delete a configuration error message
Configurations_DuplicateEntryError,Cannot duplicate existing configuration name,Bestehender Konfigurationsname kann nicht dupliziert werden,,Configuration name cannot be duplicated error message
Configurations_InvalidLicenseError,Cannot create configurations with GameMaker Trial,Mit der Testversion von GameMaker können keine Konfigurationen erstellt werden,,Cannot create configurations with the Trial version of GameMaker error message
Configurations_InvalidNameError,The configuration name '{0}' is not valid,Der Konfigurationsname '{0}' ist nicht gültig,,Configuration name provided is invalid
Configurations_Manage,Manage Configurations,Konfigurationen verwalten,,Manage Configurations window title
Configurations_NameEmptyError,New configuration name cannot be empty,Der Name der neuen Konfiguration darf nicht leer sein,,Configuration name cannot be empty error message
Configurations_NewName,New Configuration Name,Name der neuen Konfiguration,,New configuration label
Configurations_Parent,Parent Configuration,Übergeordnete Konfiguration,,Choose parent configuration label
Configurations_Promote,Promote,Bewerben,,Promotion of a config up the config hierarchy
Configurations_Rename,Rename Configuration,Konfiguration umbenennen,,Rename configuration
Configurations_RenameError,Cannot rename '{0}' configuration,Konfiguration '{0}' kann nicht umbenannt werden,,Configuration name cannot be renamed error message
Configurations_ConfirmPromote,Are you sure? Promoting a configuration cannot be undone,Sind Sie sicher? Das Bewerben einer Konfiguration kann nicht rückgängig gemacht werden,,Confirm the user really wants to promote a config
ContextMenu_AddMenuEntry,Add Menu Entry,Menüeintrag hinzufügen,,Context menu option to add a menu entry at the end of the context menu
ContextMenu_AddMenuEntryAfter,Add Menu Entry Below,Menüeintrag darunter hinzufügen,,Context menu option to add a menu entry below the selected entry
ContextMenu_AddMenuEntryBefore,Add Menu Entry Above,Menüeintrag darüber hinzufügen,,Context menu option to add a menu entry above the selected entry
ContextMenu_AddMenuSeparatorAfter,Add Menu Separator Below,Menütrennung darunter hinzufügen,,Context menu option to add a separator below the selected entry
ContextMenu_AddMenuSeparatorBefore,Add Menu Separator Above,Menütrennung darüber hinzufügen,,Context menu option to add a separator above the selected entry
ContextMenu_AddSubMenuEntry,Add Sub Menu Entry,Untermenüeintrag hinzufügen,,Context menu option to add a sub menu entry at the end of the context menu
ContextMenu_AddSubMenuEntryAfter,Add Sub Menu Entry Below,Untermenüeintrag darunter hinzufügen,,Context menu option to add a sub menu entry before the selected entry
ContextMenu_AddSubMenuEntryBefore,Add Sub Menu Entry Above,Untermenüeintrag darüber hinzufügen,,Context menu option to add a sub menu entry after the selected entry
ContextMenu_MoveEntryDown,Move Menu Item Down,Menüelement nach unten verschieben,,Context menu option to move a menu entry or separator down
ContextMenu_MoveEntryUp,Move Menu Item Up,Menüelement nach oben verschieben,,Context menu option to move a menu entry or separator up
Dialog_AreYouSure,Are you sure?,Sind Sie sicher?,,"Generic ""Are you sure?"" dialog message"
Dialog_Confirm,Confirm,Bestätigen,,"Dialog ""confirm"" heading"
Dialog_DeleteEvent_Query,Are you sure you want to remove the event with all its actions?,Möchten Sie dieses Ereignis mit all seinen Aktionen wirklich entfernen?,,Delete event dialog confirmation query
Dialog_CutEvent_Query,Are you sure you want to cut the selected event?,Möchten Sie das gewählte Ereignis wirklich ausschneiden?,,Cut event dialog confirmation query
Dialog_DeleteEvent_Query_Multiple,Are you sure you want to remove {0} events with all their actions?,Möchten Sie {0} Ereignisse mit all ihren Aktionen wirklich entfernen?,,Delete multiple event dialog confirmation query
Dialog_DeleteFrame_Query,Delete the selected frames?,Die ausgewählten Frames löschen?,,image editor delete frames confirm query
Dialog_PasteEvent_NotReady,The event is still being copied. Please try pasting again in a few seconds.,Das Ereignis wird noch immer kopiert. Bitte versuchen Sie das Einfügen in einigen Sekunden erneut.,,Not ready to paste yet message
Dialog_DontShowAgain,Don't show this message again,Diese Meldung nicht mehr anzeigen,,Message next to checkbox to allow the user to choose not to see this popup in future
Dialog_Error,Error,Fehler,,error dialog title
Dialog_NotReady,Not Ready,Nicht bereit,,not ready dialog title
Dialog_Success,Success,Erfolgreich,,success dialog title
Dialog_Invalid,Invalid,Ungültig,,Dialog caption text for invalid input
Dialog_InvalidInput,Invalid input. Please provide the required information.,Ungültige Eingabe. Bitte geben Sie die erforderlichen Informationen an.,,A dialog message for invalid input in dialogs
Dialog_SaveChangesToX,Save the changes to {0}?,Änderungen an {0} speichern?,,Save changes to X query
Dialog_Warning,Warning,Warnung,,"Dialog ""Warning"" title"
DialogEditor_AddContextMenu,Add Context Menu,Kontextmenü hinzufügen,,Context menu option to add a context menu to the selected gadget
DialogEditor_Cell,Grid Cell,Gitterzelle,,Layout Hierarchy heading for a grid cell group
DialogEditor_ChildGadgets,Child Gadgets,Untergeordnete Gadgets,,Layout Hierarchy heading for a child gadgets group
DialogEditor_ChildWindows,Child Windows,Untergeordnete Fenster,,Layout Hierarchy heading for a child windows group
DialogEditor_ClearLayoutList,Clear List,Liste löschen,,Button label for clearing the open layout list
DialogEditor_Client,Client Panel,Client-Fenster,,Layout Heirarchy heading for a client panel (window or tab)
DialogEditor_ClippedGadget,Clip To Parent,An übergeordnetes Element heften,,context menu option for setting if a gadget is clipped within its parent or not
DialogEditor_ColourDialog,Colour Dialog,Farbdialog,,layout hierarchy label for a colour dialog window
DialogEditor_ColourSelected,Selected Colour Display,Anzeige der gewählten Farbe,,layout hierarchy label for the selected colour display
DialogEditor_ColumnSplitter,Grid Column Splitter,Teiler für Gitterspalten,,Layout Heirarchy heading for a grid column splitter
DialogEditor_ColumnDockSplitter,Grid Column Dock Splitter,Dock-Teiler für Gitterspalten,,Layout Heirarchy heading for a grid column dock splitter
DialogEditor_RowDockSplitter,Grid Row Dock Splitter,Dock-Teiler für Gitterzeilen,,Layout Heirarchy heading for a grid row dock splitter
DialogEditor_GridSplitter,Grid Splitter,Gitterteiler,,gadget properties heading for a grid splitter
DialogEditor_DockSplitter,Grid Dock Splitter,Dock-Gitterteiler,,gadget properties heading for a grid dock splitter
DialogEditor_ContextMenu,Context Menu,Kontextmenü,,Layout Heirarcy heading for a context menu
DialogEditor_CopyGadget,Copy Gadget,Gadget kopieren,,menu entry for copying a gadget to clipboard
DialogEditor_CutGadget,Cut Gadget,Gadget ausschneiden,,menu entry for cutting a gadget to clipboard
DialogEditor_DeleteGadget,Delete Gadget,Gadget löschen,,menu entry for deleting the currently highlighted gadget
DialogEditor_DeleteLayout,Delete Layout,Layout löschen,,Dialog editor delete layout menu entry
DialogEditor_DeleteLayout_AreYouSure,Are you sure you want to delete this layout?,Möchten Sie dieses Layout wirklich löschen?,,Check the user really wants to delete the layout
DialogEditor_DuplicateLayoutName,Dialog Editor: Duplicate Layout Name,Dialogeditor: Layoutnamen duplizieren,,log prompt for user to indicate the layout name is already in use
DialogEditor_DuplicateStyleName,A duplicate of stylename '{0}' was found in\n'{1}'\nthe style will continue to be saved in\n'{2}',Ein Duplikat des Stylenamens '{0}' wurde gefunden in\n'{1}'\nDer Style wird weiterhin gespeichert in\n'{2}',,warning message that a duplicate of a style name was found but will be ignored
DialogEditor_Error,Error,Fehler,,dialog editor error box title
DialogEditor_FailedToOpenJSON,Dialog Editor: Failed to open .json file: '{0}',Dialogeditor: .json-Datei konnte nicht geöffnet werden: '{0}',,The .json file selected failed to load
DialogEditor_FileBrowse,Browse...,Durchsuchen...,,browse for filepath
DialogEditor_FileName,File name:,Dateiname:,,layout file name
DialogEditor_FlattenSubLayout,Flatten SubLayout,Unterlayout reduzieren,,Context menu/menu bar entry for flattening a sub layout within a layout hierarchy
DialogEditor_Gadgets,Gadgets,Gadgets,,Layout Hierarchy heading for a gadgets group
DialogEditor_GUIBase,GUI Base,GUI-Basis,,gadget properties heading for properties coming from the GUIBase class
DialogEditor_GUIStyle,Style,Style,,Gadget properties heading for the guistyle class properties
DialogEditor_Hierarchy,Layout Hierarchy,Layout-Hierarchie,,the title for the layout hierarchy window
DialogEditor_HighlightedGadgetInfo,"relative position: ({0}px, {1}px) dimension: ({2}px, {3}px)","Relative Position: ({0}px, {1}px) Abmessung: ({2}px, {3}px)",,display position and dimension of the currently highlighted gadget
DialogEditor_HSVTextEntry,HSV Input,HSV-Eingabe,,layout hierarchy label for the HSV input boxes
DialogEditor_InvalidJSON,The style '{0}' is not a valid json primitive. Please amend or revert the style. No changes will be saved.,Der Style '{0}' ist kein gültiges json-Primitiv. Bitte korrigieren Sie den Style oder setzen Sie ihn zurück. Änderungen werden nicht gespeichert.,,Error message when the user attempts to save a broken json style
DialogEditor_LabelAndIconCollection,Name And Icon,Name und Symbol,,Gadget properties heading for the LabelAndIcon class properties
DialogEditor_Layout,Layout,Layout,,Gadget properties heading for the basic layout properties group
DialogEditor_LayoutName,Layout name:,Layoutname:,,layout name
DialogEditor_ListBoxItems,List Items,Elemente auflisten,,The layout hierarchy label for the list items
DialogEditor_LoadLayoutXML,Load Layout File,Layout-Datei laden,,Button prompt for loading a layout xml file
DialogEditor_MenuBarEntry,Menu Bar Entry,Menüleisteneintrag,,layout hierarchy label for menubarentry gadget
DialogEditor_MenuEntry,Menu Entry,Menüeintrag,,Layout Hierarchy heading for a menu entry
DialogEditor_NewLayout,New Layout,Neues Layout,,Dialog editor new layout menu entry
DialogEditor_Node,Tree View Node,Baumanzeige-Knoten,,Tree view node label in the gadget layout hierarchy
DialogEditor_NoJSONSelected,Dialog Editor: No JSON File Selected,Dialogeditor: Keine JSON-Datei ausgewählt,,There was no .json file selected by the user
DialogEditor_NoLayoutSelected,Dialog Editor: No Layout Selected,Dialogeditor: Kein Layout ausgewählt,,log prompt for user to indicate no layout was selected
DialogEditor_NoXMLSelected,Dialog Editor: No XML File Selected,Dialogeditor: Keine XML-Datei ausgewählt,,log prompt for user to indicate no xml file was selected
DialogEditor_OpenLayout,Open Layout,Layout öffnen,,Dialog editor open layout menu entry
DialogEditor_OverridingStyleFile,The style name '{0}' is currently registered to\n'{2}'\nbut will now be saved to\n'{1}',Der Style-Name '{0}' ist aktuell registriert für\n'{2}'\naber wird jetzt gespeichert in\n'{1}',,Message when the user overrides a styles save file
DialogEditor_PasteGadget,Paste Gadget,Gadget einfügen,,menu entry for pasting a gadget from clipboard
DialogEditor_Properties,Gadget Layout Properties,Gadget-Layout-Eigenschaften,,the title for the layout properties window
DialogEditor_RadioGroup,Radio Button Group,Optionsschaltflächen-Gruppe,,Layout hierarchy display name for radio button group
DialogEditor_ReloadImages,Reload Images,Bilder neu laden,,menu bar entry for reloading all images in the dialog editor
DialogEditor_RemoveTestLayout,Remove Active Test Layouts,Aktive Test-Layouts entfernen,,Menu option to remove any active test layout windows from the dialog editor
DialogEditor_RevertAllStyles,Revert All Styles To Last Save,Alle Styles auf letzten Speicherstand zurücksetzen,,Revert the all the currently open styles to version on disk
DialogEditor_RevertAllStylesToOriginal,Revert All Styles To Original State,Alle Styles auf Originalzustand zurücksetzen,,Revert the all the currently open styles to version of unmodified file on disk
DialogEditor_RevertStyle,Revert Style To Last Save,Style auf letzten Speicherstand zurücksetzen,,Revert the currently active style to version on disk
DialogEditor_RevertStyleToOriginal,Revert Style To Original State,Style auf Originalzustand zurücksetzen,,Revert the currently active style to version of unmodified file on disk
DialogEditor_RGBATextEntry,RGBA Input,RGBA-Eingabe,,layout hierarchy label for the RGBA input boxes
DialogEditor_RowSplitter,Grid Row Splitter,Gitterzeilen-Teiler,,Layout Heirarchy heading for a grid row splitter
DialogEditor_SaveAllStyles,Save All Styles,Alle Styles speichern,,Menu option to save all open styles to file
DialogEditor_SaveAsLayout,Save Layout As...,Layout speichern als...,,Dialog editor save as layout menu entry
DialogEditor_SaveFailed,Dialog Editor: Save failed due to error: {0} - {1},Dialogeditor: Speichern fehlgeschlagen aufgrund des Fehlers: {0} - {1},,lop propmt for user to indicate the save failed
DialogEditor_SaveLayout,Save Layout,Layout speichern,,Dialog editor save layout menu entry
DialogEditor_SaveStyle,Save Style,Style speichern,,Menu option to save a style to file
DialogEditor_SaveStyleAs,Save Style As...,Style speichern als...,,Menu option to save a style to a different file or with a different name
DialogEditor_ScrollPanel,Scroll Panel,Scroll-Fenster,,layout hierarchy display name for scroll panel
DialogEditor_SelectContextMenu,Edit Context Menu,Kontextmenü bearbeiten,,Context menu option to select the context menu for the selected gadget so it can be edited
DialogEditor_SelectSaveFile,Select the file to save the style to. If the file doesn't already contain the style definition it will search all files within its folder.\nUse 'Save Style As...' to explicitly override save file,"Wählen Sie die Datei, in der der Style gespeichert werden soll. Enthält die Datei die Style-Definition nicht bereits, werden alle Dateien im Ordner durchsucht.\nVerwenden Sie 'Style speichern als...', um die Speicherdatei explizit zu überschreiben.",,Information about selecting a save file. Informs the user that if the file they have chosen doesn't already include the stylename it will search for the file that does inside the parent folder
DialogEditor_StyleEditor,Style Editor,Style-Editor,,the title for the style editor window
DialogEditor_StyleName,Style name:,Style-Name:,,style name
DialogEditor_StyleNotFound,The style wasn't found in this folder. It will append to the selected file unless an alternative is selected.,"Der Style wurde nicht in diesem Ordner gefunden. Er wird an die gewählte Datei angehängt, wenn keine Alternative gewählt wird.",,Warning message that the style wasnt' found so it will be appended to the end of the given style instead
DialogEditor_SubMenuEntry,Sub Menu Entry,Untermenüeintrag,,Layout hierarchy label for a sub menu entry
DialogEditor_TabControl,Tab Control Panel,Reiter Systemsteuerung,,Gadget toolbox display name for tab control
DialogEditor_TabItem,Tab,Reiter,,Layout Heirarchy heading for a tab
DialogEditor_TestLayout,Test Layout,Test-Layout,,Dialog editor test layout menu entry
DialogEditor_Title,Dialog Editor,Dialogeditor,,title for the dialog editor window
DialogEditor_Toolbox,Gadget Toolbox,Gadget-Werkzeugkasten,,title for the gadget toolbox window
DialogEditor_TreeViewNode,TreeViewNode,TreeViewNode,,Dialog editor TreeViewNode
DialogEditor_Warning,Warning,Warnung,,warning message box title
Edit_Menu_FindResource,Find Resource,Ressource finden,,"Edit menu ""FindResource"""
Edit_Menu_Redo,Redo,Erneut durchführen,,Redo menu entry
Edit_Menu_Search,Search & Replace,Suchen und Ersetzen,,"Edit menu ""Search & Replace"""
Edit_Menu_Undo,Undo,Rückgängig machen,,Undo menu entry
Error_AnimBlendClone,{0} does not implement ICloneable,{0} implementiert nicht ICloneable,,Any class that is used in the animation system must implement ICloneable
Error_CursorManagerDuplicateName,Attempting to add a cursor using image {1} with duplicated id {0} please assign a different name,"Es wird versucht, einen Cursor mit dem Bild {1} mit der doppelten ID {0} hinzuzufügen. Bitte weisen Sie einen anderen Namen zu.",,Multiple cursors have been added with the same reference name
Error_CursorManagerFailedLoad,Attempted to load cursor {1} but received error '{0}',"Laden von Cursor {1} fehlgeschlagen, Fehler: '{0}'",,File load failed for cursor image
Error_CursorManagerLoadingInfoMissing,Attempting to load cursor {0} but can't find loading info,"Laden von Cursor {0} fehlgeschlagen, Informationen zum Laden fehlen",,The loading callback for a cursor can't find the loading hotspot info
Error_GadgetToolboxFailedLoad,Attempted to load gadget toolbox info but received error '{0}' - '{1}',"Laden der Gadget-Werkzeugkasten-Informationen fehlgeschlagen, Fehler: '{0}' - '{1}'",,Failed to load the gadget toolbox list
Error_GadgetToolboxInvalidGadget,Attempted to add gadget '{0}' to toolbox but it isn't registered with the layout manager,Hinzufügen von Gadget '{0}' zum Werkzeugkasten fehlgeschlagen: Gadget ist nicht im Layout-Manager registriert,,Invalid gadget specified in gadget toolbox list
Error_GUILayout_AnchorRequiresParentPos,"A parent reliant anchor (bottom or right) has been set with no parent gadget, try setting the dimension instead",Ein von einem übergeordneten Element abhängiger Anker (unten oder rechts) wurde ohne übergeordnetes Gadget angegeben. Versuchen Sie anstelle dessen die Abmessungen anzugeben,,Attempted to use an bottom or right anchor when there is no parent gadget to base the position upon
Error_GUILayout_DimensionAndBothAnchors,"A dimension input has been set along with both the associated anchors, the dimension input will be ignored","Eine Abmessungseingabe wurde zusammen mit beiden verbundenen Ankern angegeben, die Abmessungseingabe wird nicht beachtet",,"Both the dimension and the associated anchors have been set (for instance width, top and bottom) the dimension will be calculated from the anchors not the dimension input"
Error_GUILayout_FailedCalculatePosition,"Cannot calculate actual position of gadget, too few anchors and/or dimensions are set","Aktuelle Position des Gadgets kann nicht berechnet werden, es wurden zu wenige Anker und/oder Abmessungen angegeben",,Gadget requires at least one anchor or the dimension to be set for each direction
Error_GUILayout_PercentageRequiresParentDimension,"An anchor or dimension has been set to percentage with no parent gadget, try using pixel instead","Ein Anker oder eine Abmessung wurde ohne übergeordnetes Gadget auf Prozentangabe gesetzt, verwenden Sie anstelle dessen Pixel",,Attempted to use percentage style values when there is no parent gadget to base it upon
Error_ProjectLoadFailure,Project load failed. Unable to load {0},Laden von Projekt fehlgeschlagen. {0} kann nicht geladen werden,,Project load failure
Error_StyleNotFound,"Can not set requested style, not found","Angeforderter Style kann nicht festgelegt werden, da er nicht gefunden wurde",,Trying to set a style when it hasn't been loaded/found
Error_WeakDelegateArgument,Method '{1}' on object '{0}' failed because {2},Methode '{1}' auf Objekt '{0}' ist fehlgeschlagen: {2},,Attempting to invoke a method from within a weak delegate with incorrect arguments
Error_WeakDelegateParameterCount,Method '{1}' on object '{0}' failed due to mismatching parameter count,Methode '{1}' auf Objekt '{0}' ist fehlgeschlagen: Anzahl der Parameter stimmt nicht überein,,Attempting to invoke a method from within a weak delegate with incorrect parameter count
Event_Alarm,Alarm,Alarm,,Alarm event name
Event_AlarmN,Alarm {0},Alarm {0},,Key Event Alarm N
Event_Async_AudioPlayback,Async - Audio Playback,Async - Audio-Wiedergabe,,Asynchronous event subtype
Event_Async_AudioRecording,Async - Audio Recording,Async - Audio-Aufzeichnung,,Asynchronous event subtype
Event_Async_Cloud,Async - Cloud,Async - Cloud,,Asynchronous event subtype
Event_Async_Dialog,Async - Dialog,Async - Dialog,,Asynchronous event subtype
Event_Async_HTTP,Async - HTTP,Async - HTTP,,Asynchronous event subtype
Event_Async_IAP,Async - In-App Purchase,Async - In-App-Kauf,,Asynchronous event subtype
Event_Async_ImageLoaded,Async - Image Loaded,Async - Bild geladen,,Asynchronous event subtype
Event_Async_Networking,Async - Networking,Async - Netzwerk,,Asynchronous event subtype
Event_Async_PushNotification,Async - Push Notification,Async - Push-Benachrichtigung,,Asynchronous event subtype
Event_Async_SaveLoad,Async - Save/Load,Async - Speichern/Laden,,Asynchronous event subtype
Event_Async_Social,Async - Social,Async - Social,,Asynchronous event subtype
Event_Async_Steam,Async - Steam,Async - Steam,,Asynchronous event subtype
Event_Async_SystemEvent,Async - System,Async - System,,Asynchronous event subtype
Event_Asynchronous,Asynchronous,Asynchron,,Asynchronous event name
Event_Collision,Collision,Kollision,,Collision event name
Event_Create,Create,Erstellen,,Create event name
Event_Destroy,Destroy,Zerstören,,Destroy event name
Event_CleanUp,Clean Up,Aufräumen,,Clean Up event name
Event_Draw,Draw,Zeichnen,,Draw event name
Event_Draw_Draw,Draw,Zeichnen,,Draw event subtype
Event_Draw_DrawBegin,Draw Begin,Zeichnen anfangen,,Draw event subtype
Event_Draw_DrawEnd,Draw End,Zeichnen beenden,,Draw event subtype
Event_Draw_DrawGUI,Draw GUI,GUI zeichnen,,Draw event subtype
Event_Draw_DrawGUIBegin,Draw GUI Begin,GUI-Zeichnen anfangen,,Draw event subtype
Event_Draw_DrawGUIEnd,Draw GUI End,GUI-Zeichnen beenden,,Draw event subtype
Event_Draw_PostDraw,Post-Draw,Nachzeichnen,,Draw event subtype
Event_Draw_PreDraw,Pre-Draw,Vorzeichnen,,Draw event subtype
Event_Draw_Resize,Window Resize,Fenstergröße ändern,,Draw event subtype
Event_Key_Alt,Alt,Alt,,Key event subtype
Event_Key_AnyKey,Any,Beliebig,,Key event subtype
Event_Key_Backspace,Backspace,Rückstelltaste,,"Key event ""others"" subtype"
Event_Key_Ctrl,Control,Steuerung,,Key event subtype
Event_Key_Delete,Delete,Löschen,,"Key event ""others"" subtype"
Event_Key_DigitN,{0},{0},,event key digit N
Event_Key_Digits,Digits,Ziffern,,Key event subtype
Event_Key_Down,Down,Nach unten,,Key event subtype
Event_Key_End,End,Ende,,"Key event ""others"" subtype"
Event_Key_Enter,Enter,Eingabetaste,,Key event subtype
Event_Key_Escape,Escape,Escape,,"Key event ""others"" subtype"
Event_Key_FunctionKeys,Function Keys,Funktionstasten,,Key event subtype
Event_Key_Home,Home,Pos 1,,"Key event ""others"" subtype"
Event_Key_Insert,Insert,Einfg,,"Key event ""others"" subtype"
Event_Key_Keypad,Keypad,Nummernfeld,,Key event subtype
Event_Key_KeypadN,Keypad {0},Nummernfeld {0},,Keypad event N
Event_Keyboard_Modifiers,Modifiers,Modifikatoren,,Modifiers keyboard group title
Event_Key_ArrowKeys,Arrow Keys,Pfeiltasten,,Arrow keys keyboard group title
Event_Key_ControlKeys,Control Keys,Steuerungstasten,,Control keys keybaord group title
Event_Key_Left,Left,Links,,Key event subtype
Event_Key_Letters,Letters,Buchstaben,,Key event subtype
Event_Key_NoKey,No Key,Keine Taste,,Key event subtype
Event_Key_Others,Others,Andere,,Key event subtype
Event_Key_PageDown,Page Down,Bild ab,,"Key event ""others"" subtype"
Event_Key_PageUp,Page Up,Bild auf,,"Key event ""others"" subtype"
Event_Key_Right,Right,Rechts,,Key event subtype
Event_Key_Shift,Shift,Umschalt,,Key event subtype
Event_Key_Space,Space,Leertaste,,Key event subtype
Event_Key_Up,Up,Oben,,Key event subtype
Event_Keyboard,Key Down,Taste gehalten,,Keyboard event name
Event_KeyPress,Key Pressed,Taste gedrückt,,Key Press event name
Event_KeyPress_Short,Key Press -,Tastendruck -,,KeyPress event short name
Event_KeyDown_Short,Key Down -,Gehaltene Taste -,,KeyDown event short name
Event_KeyPressN,Press {0},Druck {0},,Key Press event - short name
Event_KeyRelease,Key Up,Taste nicht gehalten,,Key Release event name
Event_KeyRelease_Short,Key Up -,Taste nicht gehalten -,,Key Release event - short name
Event_KeyDown,Key Down,Taste gehalten,,Key Down event name
Event_KeyUp,Key Up,Taste nicht gehalten,,Key Up event name
Event_Mouse,Mouse,Maus,,Mouse event name
Event_MouseClick,Mouse Click,Mausklick,,Mouse Click event name
Event_MouseDown,Mouse Down,Maustaste gehalten,,Mouse Down event name
Event_MouseUp,Mouse Up,Maustaste nicht gehalten,,Mouse Up event name
Event_Mouse_GlobalMouse,Global,Global,,Mouse event subtype
Event_Mouse_GlobalMouse_LeftButton,Global Left Down,Global Links gehalten,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_LeftPressed,Global Left Pressed,Global Links gedrückt,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_LeftReleased,Global Left Released,Global Links losgelassen,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_MiddleButton,Global Middle Down,Global Mitte gehalten,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_MiddlePressed,Global Middle Pressed,Global Mitte gedrückt,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_MiddleReleased,Global Middle Released,Global Mitte losgelassen,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_RightButton,Global Right Down,Global Rechts gehalten,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_RightPressed,Global Right Pressed,Global Rechts gedrückt,,"Mouseevent ""global"" subtype"
Event_Mouse_GlobalMouse_RightReleased,Global Right Released,Global Rechts losgelassen,,"Mouseevent ""global"" subtype"
Event_Mouse_LeftButton,Left Down,Links gehalten,,Mouse event subtype
Event_Mouse_LeftPressed,Left Pressed,Links gedrückt,,Mouse event subtype
Event_Mouse_LeftReleased,Left Released,Links losgelassen,,Mouse event subtype
Event_Mouse_MiddleButton,Middle Down,Mitte gehalten,,Mouse event subtype
Event_Mouse_MiddlePressed,Middle Pressed,Mitte gedrückt,,Mouse event subtype
Event_Mouse_MiddleReleased,Middle Released,Mitte losgelassen,,Mouse event subtype
Event_Mouse_MouseEnter,Mouse Enter,Maus Betreten,,Mouse event subtype
Event_Mouse_MouseLeave,Mouse Leave,Maus Verlassen,,Mouse event subtype
Event_Mouse_MouseWheelDown,Mouse Wheel Down,Mausrad ab,,Mouse event subtype
Event_Mouse_MouseWheelUp,Mouse Wheel Up,Mausrad auf,,Mouse event subtype
Event_Mouse_NoButton,No Mouse Input,Keine Mauseingabe,,Mouse event subtype
GMLVisual_Event_Mouse_Any,Any Button,Beliebige Taste,,Mouse event subtype
GMLVisual_Event_Mouse_None,No Button,Keine Taste,,Mouse event subtype
GMLVisual_Event_Mouse_Left,Left,Links,,Mouse event subtype
GMLVisual_Event_Mouse_Right,Right,Rechts,,Mouse event subtype
GMLVisual_Event_Mouse_Middle,Middle,Mitte,,Mouse event subtype
Event_Mouse_RightButton,Right Down,Rechts gehalten,,Mouse event subtype
Event_Mouse_RightPressed,Right Pressed,Rechts gedrückt,,Mouse event subtype
Event_Mouse_RightReleased,Right Released,Rechts losgelassen,,Mouse event subtype
Event_Other,Other,Andere,,Other event name
Event_Other_AnimationEnd,Animation End,Animation Ende,,Other event subtype
Event_Other_AnimationEvent,Animation Event,Animation Ereignis,,Other event subtype
Event_Other_AnimationUpdate,Animation Update,Animation aktualisieren,,Other event subtype
Event_Other_EndOfPath,Path Ended,Pfad beendet,,Other event subtype
Event_Other_GameEnd,Game End,Spielende,,Other event subtype
Event_Other_GameStart,Game Start,Spielstart,,Other event subtype
Event_Other_IntersectBoundary,Intersect Boundary,Grenzüberschneidung,,Other event subtype
Event_Other_OutsideRoom,Outside Room,Außerhalb Raum,,Other event subtype
Event_Other_RoomEnd,Room End,Raumende,,Other event subtype
Event_Other_RoomStart,Room Start,Raumstart,,Other event subtype
Event_Other_UserDefined,User Events,Benutzerereignisse,,Other event subtype
Event_Other_UserN,User Event {0},Benutzererignis {0},,event other user N
Event_Other_Views,Views,Anzeigen,,Other event subtype
Event_Other_Views_BoundaryViewN,Intersect View {0} Boundary,Grenzüberschneidung Anzeige {0},,"Other-Views ""Boundary view"" event numberN"
Event_Other_Views_OutsideViewN,Outside View {0},Außerhalb Anzeige {0},,"Other-Views ""Outside view"" event numberN"
Event_Other_Views_Boundary,Intersect Boundary,Grenzüberschneidung,,Intersect boundary view group title
Event_Other_Views_Outside,Outside View,Außerhalb Anzeige,,Outside view group title
Event_Step,Step,Schritt,,Step event name
Event_StepBegin,Begin Step,Schrittanfang,,Begin Step event name
Event_StepEnd,End Step,Schrittende,,End Step event name
Event_Unknown,Unknown Event,Unbekanntes Ereignis,,Object editor unknown event name
Exit_AreYouSure,Are you sure you want to exit?,Wirklich verlassen?,,"On closing main desktop to quit, are you sure?"
Exit_SaveProject,Do you want to save changes before exiting?,Änderungen vor dem Verlassen speichern?,,Let user save project on exit
CloseProject_Save,Do you want to save changes to the current project?,Änderungen am aktuellen Projekt speichern?,,Prompt user to save changes to current project
Extension_Export,Enable in game,Im Spiel aktivieren,,Enable this extension in the game
Extension_Import,Import extension,Erweiterung importieren,,Extension import title
Extension_Import_Button_Add,Add -->,Hinzufügen -->,,extension add resource button
Extension_Import_Button_ImportAll,Import All,Alle importieren,,extension import all button
Extension_Import_Button_Remove,Remove,Entfernen,,extension remove resource button
Extension_Import_Complete,Import Complete!,Import abgeschlossen!,,extension import complete message
Extension_Import_CopyingFiles,Copying files...,Dateien werden kopiert...,,extension import copying files progress label
Extension_Import_DuplicateExtensionName,Extension with name '{0}' already exists - delete previous version before importing new version,Erweiterung mit dem Namen '{0}' existiert bereits. Vor dem Import der neuen Version vorherige Version löschen,,extension import - imported extension has the same name as an existing extension
Extension_Import_DuplicateExtensionResourceNames,Extension resource names clash with project resources. Please cancel the import and rename your project resources.,Die Erweiterungs-Ressourcennamen stehen im Konflikt mit den Projektressourcen. Bitte brechen Sie den Import ab und benennen Sie Ihre Projektressourcen um.,,extension import - resources being imported from the extension have the same name as existing resources in the destination project
Extension_Import_Error,An error occured:{0},Ein Fehler ist aufgetreten: {0},,extension import generic error
Extension_Import_ExtensionLabel,Extension resources:,Erweiterungsressourcen:,,extension resource import - extension resources label
Extension_Import_Extracting,Extracting...,Wird entpackt...,,extension importing extracting progress label
Extension_Import_GMEZ_Error,An error occurred,Ein Fehler ist aufgetreten,,extension import generic error
Extension_Import_GMEZ_InvalidData,Unable to read the extension file,Erweiterungsdatei kann nicht gelesen werden,,extension import parse error
Extension_Import_GMEZ_Missing,Unable to find an extension within the GMEZ file,Es Wurde keine Erweiterung in der GMEZ-Datei gefunden.,,extension import missing gmez
Extension_Import_ImportingResources,Importing resources...,Importieren von Ressourcen...,,extension import - importing resource progress label
Extension_Import_ProjectLabel,Resources to add:,Hinzuzufügende Ressourcen:,,extension resource import add to project label
Extension_Import_ResourceNameAlreadyExists,Already a resource with name '{0}' - please rename it before importing the extension,Eine Ressource mit dem Namen '{0}' existiert bereits - bitte vor dem Import der Erweiterung umbenennen,,extension import - imported extension has the same name as an existing resource
Extension_Import_ResourceNameConflict,Resource names conflict,Ressourcennamenkonflikt,,extension import - resource names conflict
Extension_Import_Resources_Description,Select resources from your extension and add them to your project,Wählen Sie Ressourcen aus Ihrer Erweiterung und fügen Sie sie zu Ihrem Projekt hinzu,,extension import description label
Extension_Import_Extract_Error,Failed to extract the extension archive: '{0}',Erweiterungsarchiv konnte nicht extrahiert werden: '{0}',,extension import - archive unzip failed error message
Extension_Import_Resources_Title,Import resources: {0},Importieren von Ressourcen: {0},,extension import resource title
Extension_Import_Legacy_Resources_Title,Import legacy resources: {0},Importieren von veralteten Ressourcen: {0},,legacy extension(1.x) import resource title
Logout_Query,Logout user '{0}'?\nThis will save any changes and restart the IDE.,Benutzer '{0}' abmelden?\nDamit werden Änderungen gespeichert und die IDE wird neu gestartet.,,Query if the user really wants to logout
Restored_Default_Settings_Restart,Are you sure you want to restore default settings?\nThis will restart the application for the changes to take effect.,"Möchten Sie die Standardeinstellungen wirklich zurücksetzen?\nDie Anwendung wird neu gestartet, damit die Änderungen wirksam werden.",,Restore default settings restart prompt
File_Menu_NewIDE,New IDE,Neue IDE,,Start a new instance of the IDE from the file menu
File_Menu_Logout,Logout,Abmelden,,The Logout program menu item
File_Menu_MyAccount,My Account,Mein Konto,,Launches my account web page menu item
File_Menu_Exit,${FileMenuExit},${FileMenuExit},,The Exit program menu item
File_Menu_ExportProject,Export Project,Projekt exportieren,,The Export Project menu item
File_Menu_ImportProject,Import Project,Projekt importieren,,The Import project menu item
File_Menu_NewProject,New Project,Neues Projekt,,The New Project menu item
File_Menu_OpenProject,Open Project,Projekt öffnen,,The Open Project menu item
File_Menu_Preferences,Preferences,Voreinstellungen,,The Preferences menu item
File_Menu_RecentProjects,Recent Projects,Aktuelle Projekte,,The Recent Projects menu item
File_Menu_Save,Save Project,Projekt speichern,,The Save menu item
File_Menu_SaveAs,Save Project As,Projekt speichern als,,The Save As menu item
FileError_Cancelled,File Load Cancelled,Laden von Datei abgebrochen,,File Load Cancelled
FileError_DirectoryNotFound,File Directory Not Found,Dateiverzeichnis nicht gefunden,,File Directory Not Found
FileError_Inaccessible,File Inaccessible,Dateizugriff nicht möglich,,File Inaccessible
FileError_InvalidData,File Data Invalid,Daten ungültig,,File Data Invalid
FileError_Locked,File Locked,Datei gesperrt,,File Locked
FileError_NotFound,File Not Found,Datei nicht gefunden,,File Not Found
FileError_PathTooLong,File Path Too Long,Dateipfad zu lang,,File Path Too Long
FileError_Timeout,File Load Timeout,Zeitüberschreitung beim Laden,,File Load Timeout
Font_TTF_BaseAlphabet,"!\""#$%&'()*+,-./00300123456789:;<=>?0040@ABCDEFGHIJKLMNO0050PQRSTUVWXYZ[\\]^_0060`abcdefghijklmno0070pqrstuvwxyz{}|~","!\""#$%&'()*+,-./00300123456789:;<=>?0040@ABCDEFGHIJKLMNO0050PQRSTUVWXYZ[\\]^_0060`abcdefghijklmno0070pqrstuvwxyz{}|~",,FontTTF standard English alphabet
fonteditor_toomanyglyphs,and more (too many glyphs),und mehr (zu viele Zeichen),,Too many glyphs for the font editor to cope with label
fonteditor_aa_off,Off,Aus,,Font Editor aa off
fonteditor_font,Select Font,Schriftart wählen,,TTF font name
fonteditor_or,Or,Oder,,Font editor select font OR include in build
fonteditor_aa_on,On,Ein,,Font Editor aa on
fonteditor_add_range,Add,Hinzufügen,,Adding a new font range - button
fonteditor_add_range_desc,Add new range,Neuen Bereich hinzufügen,,Adding a new font range - description
fonteditor_bold,Bold,Fett,,Font editor Bold caption
fonteditor_del_range,Delete,Löschen,,Delete the currently selected font range - button
fonteditor_del_range_desc,Delete selected range,Ausgewählten Bereich löschen,,Delete the currently selected font range - description
fonteditor_helloworld,Hello World!!,Hallo Welt!!,,Inital text window in the Font Editor
FontEditor_InvalidChars_BtnNo,No,Nein,,Font editor invalid chars No button
FontEditor_InvalidChars_BtnYes,Yes,Ja,,Font editor invalid chars Yes button
FontEditor_InvalidChars_NotFoundMessage,These characters are not in this font:,Diese Zeichen sind nicht in dieser Schriftart enthalten.,,Font editor invalid chars message label
FontEditor_InvalidChars_Question,Would you like to add them?,Möchten Sie sie hinzufügen?,,Font editor invalid chars question label
FontEditor_InvalidChars_Warning,Warning!,Warnung!,,Font editor invalid chars warning label
fonteditor_italic,Italic,Kursiv,,Font editor Italic caption
fonteditor_name,Name,Name,,GML Name of font
fonteditor_render_mode,Anti-aliasing,Anti-Aliasing,,The method of anti-aliasing rendering
fonteditor_size,Size,Größe,,Size of font
fonteditor_style,Presets,Voreinstellungen,,Font Editor style group name
fonteditor_stylename,Style,Style,,Font editor style name
fonteditor_toggle,Toggle,Ein- und ausschalten,,Font editor AA radio group header
fonteditor_window,Font: {0},Schriftart: {0},,Font editor title
fonteditor_includettf,Copy to project,In Projekt kopieren,,Font editor include TTF checkbox
fonteditor_ttfpath,{0},{0},,Font editor included TTF path
fonteditor_selectttf,Select Font to Include,Schriftart zum Hinzufügen wählen,,Font editor include Font dialog title
fontrange_add_range,Add Range,Bereich hinzufügen,,Confirm adding the range
fontrange_ascii,ASCII,ASCII,,Font range dialog - ASCII characters button
fontrange_caption,Font Range,Schriftartbereich,,Name of the font range dialog
fontrange_digits,Digits,Ziffern,,Font range dialog - Numerical digits only button
fontrange_from_code,From Code,Aus Code,,Front range dialog - From Code button
fontrange_from_file,From File,Aus Datei,,Front range dialog - From File button
fontrange_letters,Letters,Buchstaben,,Font range dialog - English letters only button
fontrange_normal,Normal,Normal,,Font range dialog - Normal only button
fontrange_till,to,bis,,Font range dialog - TILL text label
ComboBox_FlagMode_NoneSelected,None,Kein(e),,No items selected in combobox flag mode
ComboBox_FlagMode_AllSelected,Everything,Alles,,All items selected in combobox flag mode
GadgetToolbox_Button,Button,Schaltfläche,,Gadget toolbox display name for button
GadgetToolbox_BrowseButton,Browse Button,Durchsuchen-Schaltfläche,,Gadget toolbox display name for the browse button
GadgetToolbox_Buttons,Buttons,Schaltflächen,,Gadget toolbox display name for the buttons group
GadgetToolbox_CheckBox,Checkbox,Kontrollkästchen,,Gadget toolbox display name for checkbox
GadgetToolbox_CloseButton,Close Button,Schließen-Schaltfläche,,Gadget toolbox display name for a close button
GadgetToolbox_Colour,Colour,Farbe,,Gadget toolbox display name for colour group
GadgetToolbox_ColourDialog,Colour Dialog,Farbdialog,,Gadget toolbox display name for colour dialog
GadgetToolbox_ColourPalette,Colour Palette,Farbpalette,,Gadget toolbox display name for colour palette
GadgetToolbox_ColourPicker,Colour Picker,Farbpipette,,Gadget toolbox display name for colour picker
GadgetToolbox_ColourSelectButton,Colour Select Button,Farbauswahl-Schaltfläche,,Gadget toolbox heading for colour select button
GadgetToolbox_ComboBox,Combobox,Kombinationsfeld,,Gadget toolbox display name for combobox
GadgetToolbox_Containers,Containers,Container,,Gadget toolbox display name for container group
GadgetToolbox_DefaultBorderedWindow,Bordered Window,Umrandetes Fenster,,Gadget toolbox display name for a bordered window
GadgetToolbox_DefaultBorderlessWindow,Borderless Window,Randloses Fenster,,Gadget toolbox display name for a borderless window
GadgetToolbox_DefaultBlendWindow,Blend Window,Fenster einblenden,,Gadget toolbox display name for a blend window
GadgetToolbox_FileInput,File Input,Dateieingabe,,gadget toolbox heading for the file input gadget
GadgetToolbox_Grid,Grid,Gitter,,Gadget toolbox display name for grid
GadgetToolbox_Group,Group,Gruppe,,Gadget toolbox display name for group
GadgetToolbox_HorizontalScrollbar,Horizontal Scrollbar,Horizontale Scrollleiste,,Gadget toolbox display name for vertical scrollbar
GadgetToolbox_HorizontalSeparator,Horizontal Separator,Horizontaler Trenner,,Gadget toolbox display name for horizontal separator
GadgetToolbox_Image,Image,Bild,,Gadget toolbox display name for image
GadgetToolbox_Input,Input,Eingabe,,Gadget toolbox display name for input
GadgetToolbox_Label,Label,Beschriftung,,Gadget toolbox display name for label
GadgetToolbox_LinkLabel,Link Label,Link-Beschriftung,,Gadget toolbox display name for link label
GadgetToolbox_ListBox,Listbox,Listenfeld,,Gadget toolbox display name for listbox
GadgetToolbox_HeaderedListBox,Headered Listbox,Betiteltes Listenfeld,,Gadget toolbox display name for headered listbox
GadgetToolbox_Lists,Lists,Listen,,Gadget toolbox display name for lists group
GadgetToolbox_MenuBar,Menu Bar,Menüleiste,,Gadget toolbox display name for menu bar
GadgetToolBox_Misc,Miscellaneous,Sonstiges,,Gadget toolbox display name for miscellaneous group
GadgetToolbox_MultiLineTextBox,Multiline Text Box,Mehrzeiliges Textfeld,,A multiline text input box
GadgetToolbox_NumericTextBox,Numeric Textbox,Numerisches Textfeld,,Gadget toolbox display name for numeric textbox
GadgetToolbox_PanArea,Pan Area,Schwenkbereich,,Gadget toolbox pan area class name
GadgetToolbox_RadioButton,Radio Button,Optionsschaltfläche,,Gadget toolbox display name for radio button
GadgetToolbox_RadioButtons,Radio Buttons,Optionsschaltflächen,,Gadget toolbox display name for radio buttons group
GadgetToolbox_RadioGroup,Radio Button Group,Optionsschaltflächen-Gruppe,,Gadget toolbox display name for radio button group
GadgetToolbox_Scrollbars,Scrollbars,Scrollleisten,,Gadget toolbox display name for scrollbars
GadgetToolbox_ScrollPanel,Scroll Panel,Scroll-Fenster,,Gadget toolbox display name for scroll panel
GadgetToolbox_Separators,Separators,Trenner,,Gadget toolbox display name for separators
GadgetToolbox_Slider,Slider,Slider,,Gadget toolbox display name for slider
GadgetToolbox_ThumbnailSlider,Thumbnail Slider,Thumbnail-Slider,,Gadget toolbox display name for thumbnail slider
GadgetToolbox_StackPanel,Stack Panel,Stack-Fenster,,Gadget toolbox display name for stack panel
GadgetToolbox_TabControl,Tab Control Panel,Reiter Systemsteuerung,,Gadget toolbox display name for tab control
GadgetToolbox_TextBox,Textbox,Textfeld,,Gadget toolbox display name for textbox
GadgetToolbox_TextInput,Text Input,Texteingabe,,Gadget toolbox display name for text input group
GadgetToolbox_TitleBar,Title Bar,Titelleiste,,Gadget toolbox display name for title bar
GadgetToolbox_ToggleButton,Toggle Button,Umschalt-Schaltfläche,,Gadget toolbox display name for a toggle button
GadgetToolbox_TreeView,Tree View,Baumansicht,,Gadget toolbox display name for tree view
GadgetToolbox_VerticalScrollbar,Vertical Scrollbar,Vertikale Scrollleiste,,Gadget toolbox display name for horizontal scrollbar
GadgetToolbox_VerticalSeparator,Vertical Separator,Vertikaler Trenner,,Gadget toolbox display name for vertical separator
GadgetToolbox_Window,Window,Fenster,,Gadget toolbox display name for window
GadgetToolbox_WindowFrame,Window Frame,Fensterrahmen,,Gadget toolbox display name for window frame
GadgetToolBox_Windowing,Windowing,Fenstermodus,,Gadget toolbox display name for windowing group
GadgetToolbox_TextEditorPanel,Text Editor Panel,Texteditor-Fenster,,Gadget toolbox display for the text editor panel
GadgetToolbox_ResourceButton,Resource Select Button,Ressourcenauswahl-Schaltfläche,,Gadget toolbox display for the resource button
GadgetToolbox_ResourceDropPanel,Resource Drop Panel,Ressourcen-Zielfenster,,Gadget toolbox display for the resource drop panel
GadgetToolbox_ResourceImage,Resource Image,Ressourcenbild,,Gadget toolbox display for the resource image icon
GadgetToolbox_ResourceSpriteIcon,Sprite Icon,Sprite-Symbol,,Gadget toolbox display for the sprite icon
GadgetToolbox_ResourceObjectIcon,Object Icon,Objekt-Symbol,,Gadget toolbox display for the object icon
GadgetToolbox_ResourceTileSetIcon,Tile Set Icon,Tileset-Symbol,,Gadget toolbox display for the tileset icon
GadgetToolbox_SpriteSelector,Sprite Selector,Sprite-Auswahl,,Gadget toolbox display for the sprite selector
GadgetToolbox_Resources,Resources,Ressourcen,,Gadget toolbox heading for the resources group
Game_Options,Game Options - {0},Spieloptionen - {0},,Takes platform argument to show type of Game Options being displayed
AddOns,Add-ons,Add-ons,,Add-ons node label
GameOptions_AddOns_Label,Add one or more add-ons to this project,Ein oder mehrere Add-ons zu diesem Projekt hinzufügen,,Add addon to this project label
Gamemaker_Help,Help,Hilfe,,Help window title
Gamemaker_News,News,Neuigkeiten,,News window title
Gmez_NoProject,Gmez Import: No project to import into,Gmez-Import: Kein Projekt für den Import,,Error when importing without a project loaded
GraphicProperties_AnimSpeed,Speed,Geschwindigkeit,,The animation speed for graphics
GraphicProperties_FrameIndex,Frame,Frame,,The initial frame for the sprite
GraphicProperties_Height,Height,Höhe,,graphic properties caption for height textbox
GraphicProperties_PosX,X,X,,graphic properties caption for x textbox
GraphicProperties_PosY,Y,Y,,graphic properties caption for y textbox
GraphicProperties_u0,U0,U0,,graphic properties caption for u0 textbox
GraphicProperties_u1,U1,U1,,graphic properties caption for u1 textbox
GraphicProperties_v0,V0,V0,,graphic properties caption for v0 textbox
GraphicProperties_v1,V1,V1,,graphic properties caption for v1 textbox
GraphicProperties_Width,Width,Breite,,graphic properties caption for width textbox
Grid_InsertColumnAfter,Insert Column After,Spalte danach einfügen,,Context menu option to insert a new column after the selected column
Grid_InsertColumnBefore,Insert Column Before,Spalte davor einfügen,,Context menu option to insert a new column before the selected column
Grid_InsertColumnSplitterAfter,Insert Grid Column Splitter After,Teiler für Gitterspalten danach einfügen,,Context menu option to insert a new column splitter after the selected column
Grid_InsertColumnSplitterBefore,Insert Grid Column Splitter Before,Teiler für Gitterspalten davor einfügen,,Context menu option to insert a new column splitter before the selected column
Grid_InsertColumnDockSplitterAfter,Insert Grid Column Dock Splitter After,Dock-Teiler für Gitterspalten danach einfügen,,Context menu option to insert a new column dock splitter after the selected column
Grid_InsertColumnDockSplitterBefore,Insert Grid Column Dock Splitter Before,Dock-Teiler für Gitterspalten davor einfügen,,Context menu option to insert a new column dock splitter before the selected column
Grid_InsertRowAfter,Insert Row After,Zeile danach einfügen,,Context menu option to insert a new row after the selected row
Grid_InsertRowBefore,Insert Row Before,Zeile davor einfügen,,Context menu option to insert a new row before the selected row
Grid_InsertRowSplitterAfter,Insert Grid Row Splitter After,Teiler für Gitterzeilen danach einfügen,,Context menu option to insert a new row splitter after the selected row
Grid_InsertRowSplitterBefore,Insert Grid Row Splitter Before,Teiler für Gitterzeilen davor einfügen,,Context menu option to insert a new row splitter before the selected row
Grid_InsertRowDockSplitterAfter,Insert Grid Row Dock Splitter After,Dock-Teiler für Gitterzeilen danach einfügen,,Context menu option to insert a new row dock splitter after the selected row
Grid_InsertRowDockSplitterBefore,Insert Grid Row Dock Splitter Before,Dock-Teiler für Gitterzeilen davor einfügen,,Context menu option to insert a new row dock splitter before the selected row
Grid_MoveColumnLeft,Move Column Left,Spalte nach links verschieben,,Context menu option to move column left
Grid_MoveColumnRight,Move Column Right,Spalte nach rechts verschieben,,Context menu option to move column right
Grid_MoveRowDown,Move Row Down,Zeile nach unten verschieben,,Context menu option to move row down
Grid_MoveRowUp,Move Row Up,Zeile nach oben verschieben,,Context menu option to move row up
Grid_MoveToSpanColumns,Span All Columns,Alle Spalten umspannen,,Context menu option to make a gadget span all the columns
Grid_MoveToSpanGrid,Span Entire Grid,Gesamtes Gitter umspannen,,Context menu option to make a gadget span the entire grid it currently inhabits
Grid_MoveToSpanRows,Span All Rows,Alle Zeilen umspannen,,Context menu option to make a gadget span all the rows
Grid_RemoveColumn,Remove Column(s),Spalte(n) entfernen,,Context menu option to remove a column or columns
Grid_RemoveRow,Remove Row(s),Zeile(n) entfernen,,Context menu option to remove a row or rows
History_Title,History,Verlauf,,History window title
IDEMenu_Account,Account,Konto,,"IDE menu ""Account"""
IDEMenu_Build,Build,Kompilieren,,"File menu ""Build"""
IDEMenu_Edit,Edit,Bearbeiten,,The Edit menu item name
IDEMenu_File,File,Datei,,The File menu item name
IDEMenu_Views,${IDEMenuViews},${IDEMenuViews},,Main menu entry for views
IDEMenu_Tools,Tools,Extras,,Main menu entry for tools
IDEMenu_Help,Help,Hilfe,,Main menu entry for HELP
IDEMenu_Help_SupportForum,Support Forums,Support-Foren,,Help menu item for support forums
IDEMenu_Help_YYG,GameMaker.io,GameMaker.io,,Help menu item for main yoyogames website
IDEMenu_Help_GMC,GameMaker Community,GameMaker-Community,,Help menu item for gmc forums
IDEMenu_Help_BetaForums,Mac Closed beta forums,Foren für die geschlossene Mac-Beta,,Closed beta forums for Mac
IDEMenu_Help_SDKS,Required SDKs,Erforderliche SDKs,,Help menu item for the required sdks page
IDEMenu_Help_KnowledgeBase,Knowledge Base,Informationsdatenbank,,Help menu item for knowledge base
IDEMenu_Help_ReportBug,Report a Bug,Fehler melden,,Help menu item for report a bug page
IDEMenu_Help_ReleaseNotes,Release Notes,Versionshinweise,,Help menu item for release notes
IDEMenu_Help_RuntimeReleaseNotes,Current Runtime Release Notes,Versionshinweise zur aktuellen Runtime,,Help menu item for current runtime release notes
IDEMenu_Help_StartPage,Start Page,Startseite,,Help menu item for reopening the start page
IDEMenu_Help_WelcomePage,Welcome Page,Willkommensseite,,Help menu item for reopening the welcome page
IDEMenu_Help_Help,Open Manual,Handbuch öffnen,,Help menu item for actual help
IDEMenu_Help_About,${IDEMenuHelpAbout},${IDEMenuHelpAbout},,Help menu item for actual About
IDEMenu_Help_Licenses,Licences,Lizenzen,,Help menu item for licences
IDEMenu_Help_OpenInExplorer,${OpenProjectInExplorer},${OpenProjectInExplorer},,Help menu item for opening the explorer window at the current project's location
IDEMenu_Help_LogFile,${ShowLogFileInExplorer},${ShowLogFileInExplorer},,Help menu item for taking the user to the log file location
IDEMenu_Marketplace,Marketplace,Marketplace,,Main menu entry for marketplace
IDEMenu_Texturepage,Texture Groups,Texturgruppen,,Texture group manager
IDEMenu_Audiogroups,Audio Groups,Audiogruppen,,Audio group manager
IDEMenu_SoundMixer,Sound Mixer,Soundmischer,,Open Sound Mixer
IDEMenu_Layouts,Layouts,Layouts,,Layouts
IDEMenu_LoadLayout,Load Layout,Layout laden,,Main menu entry for load layouts
IDEMenu_SaveLayout,Save Layout,Layout speichern,,Main menu entry for save layouts
IDEMenu_ResetLayout,Reset Layout,Layout zurücksetzen,,Main menu entry for resetting the layout
IDETooltip_StartPage,Start Page,Startseite,,IDE toolbar tooltip for the home button
IDETooltip_NewProject,New Project ,Neues Projekt ,,IDE toolbar tooltip
IDETooltip_OpenProject,Open Project ,Projekt öffnen ,,IDE toolbar tooltip
IDETooltip_Save,Save Project ,Projekt speichern ,,IDE toolbar tooltip
IDETooltip_Package,Create Executable ,Executable erstellen ,,IDE toolbar tooltip
IDETooltip_Debug,Debug ,Debuggen ,,IDE toolbar tooltip
IDETooltip_Run,Run ,Ausführen ,,IDE toolbar tooltip
IDETooltip_Stop,Stop,Anhalten,,IDE toolbar tooltip
IDETooltip_Clean,Clean ,Bereinigen ,,IDE toolbar tooltip
IDETooltip_GameSettings,Game Options,Spieloptionen,,IDE toolbar tooltip
IDETooltip_Help,Help ,Hilfe ,,IDE toolbar tooltip
IDETooltip_Targets,Targets,Ziele,,IDE toolbar tooltip
IDETooltip_Notifications,Notifications,Benachrichtigungen,,IDE toolbar notifications tooltip
IDETooltop_WorkspaceZoomIn,Zoom In ,Vergrößern ,,workspace zoom in ide toolbar tooltip
IDETooltop_WorkspaceZoomOut,Zoom Out ,Verkleinern ,,workspace zoom out ide toolbar tooltip
IDETooltop_WorkspaceZoomReset,Zoom Reset ,Zoom-Zurücksetzung ,,workspace zoom reset ide toolbar tooltip
IDETooltop_CollapseDocks,Collapse/Expand dock panels ,DockPanels minimieren/erweitern ,,collapse/expand docks tooltip
ImageEditor_AddFrame,Add Frame,Frame hinzufügen,,Image editor menu option -Add frame
ImageEditor_AddFromFile,Import Image(s),Bild(er) importieren,,Add images from file menu option
ImageEditor_CreateFromStrip,Convert to Frames,In Frames umwandeln,,create from strip menu option
ImageEditor_ImportFromStrip,Import Strip Image,Strip-Bild importieren,,import strip image menu option
ImageEditor_ExportToPNG,Export to PNG,Nach PNG exportieren,,export to png image menu option
ImageEditor_AddGroup,Add group,Gruppe hinzufügen,,Image editor layer context menu - add group
ImageEditor_AddLayer,Add layer,Ebene hinzufügen,,Image editor layer context menu - add layer
ImageEditor_AllLayers,All Layers,Alle Ebenen,,effect all layers option
ImageEditor_Arc_Iterations,Iterations:,Iterationen:,,Iterations slider label for Arc Tool
ImageEditor_BrushPanelTitle,Brushes,Pinsel,,brushes panel title
ImageEditor_CancelSelection,Cancel Selection,Auswahl abbrechen,,Image editor menu option -Cancel selection
ImageEditor_NewCanvasSize,New Canvas Size:,Neue Bildgröße:,,image editor new canvas size
ImageEditor_CentreFit,Fit Screen,An Bildschirm anpassen,,"Image editor view menu - centre, scale to fit"
ImageEditor_CentreUnitScale,1:1,1:1,,Image editor view menu - centre unit scale
ImageEditor_ColourLeftLabel,Left:,Links:,,left brush label
ImageEditor_ColourOnly,Colour only,Nur Farbe,,Image editor magic wand colour only checkbox
ImageEditor_ColourPanelTitle,Colours,Farben,,colours panel title
ImageEditor_UnableToLoadFrame,Unable to load,Laden nicht möglich,,Unable to load frame dialog title
ImageEditor_InvalidSpriteFrame,Sprite {0} contains {1} image(s) that failed to load. Affected frames have been removed from the sprite.,"Sprite {0} enthält {1} Bilder, die nicht geladen werden konnten. Die betroffenen Frames wurden aus dem Sprite entfernt.",,Failed to load image
IE_ColourPanel_MenuToolTip,Colour Options,Farboptionen,,image editor colours panel menu button tooltip
ImageEditor_ColourRightLabel,Right:,Rechts:,,right brush label
ImageEditor_CommitToolChanges,Commit Tool Changes?,Werkzeugänderungen übernehmen?,,Commit tool changes
ImageEditor_CropToSelection,Crop All Frames To Selection,Alle Frames gemäß Auswahl zuschneiden,,Image editor - crop to selection menu option
ImageEditor_AutoTrim,Auto Trim All Frames,Alle Frames automatisch beschneiden,,Image editor - auto trim all frames
ImageEditor_ReverseFrames,Reverse Frames,Frames umkehren,,Image Editor - reverse frames menu entry
ImageEditor_Cut,Cut,Ausschneiden,,Image editor menu option -Cut
ImageEditor_CutFrame,Cut Frame,Frame ausschneiden,,Image editor menu option -Cut
ImageEditor_CutSelection,Cut Selection,Auswahl ausschneiden,,Image editor menu option -Cut
ImageEditor_Copy,Copy,Kopieren,,Image editor menu option -Copy
ImageEditor_CopyFrame,Copy Frame,Frame kopieren,,Image editor copy frame menu option
ImageEditor_PasteFrame,Paste Frame,Frame einfügen,,Image editor paste frame menu option
ImageEditor_CopySelection,Copy Selection,Auswahl kopieren,,Image editor copy selection menu option
ImageEditor_PasteClipboard,Paste Clipboard,Zwischenablage einfügen,,Image editor paste clipboard menu option
ImageEditor_SelectAll,Select All,Alles auswählen,,Image editor select all menu option
ImageEditor_DeleteFrames,Delete Selected Frames,Ausgewählte Frames löschen,,Image editor menu option -Delete selected frames
ImageEditor_DeleteGroup,Delete group,Gruppe löschen,,Image editor layer context menu - delete group/folder
ImageEditor_DeleteLayer,Delete layer(s),Ebene(n) löschen,,Image editor layer context menu - delete layer or layers
ImageEditor_DuplicateLayer,Duplicate layer(s),Ebene(n) verdoppeln,,Image editor layer panel - duplicate layer menu option
ImageEditor_EditLayerProperties,Edit layer properties,Ebeneneigenschaften bearbeiten,,Image editor layer context menu- edit layer properties
ImageEditor_EffectApply,Apply,Anwenden,,effect apply button
ImageEditor_EffectApplyToLabel,Apply To:,Anwenden auf:,,effect apply to heading
ImageEditor_EffectCancel,Cancel,Abbrechen,,effect cancel button
ImageEditor_Effects,Effects,Effekte,,Image editor menu heading -Effects
ImageEditor_EffectAllFrames,Apply to All Frames,Für alle Frames übernehmen.,,apply to all frames label
ImageEditor_Flip,Flip,Umdrehen,,Image editor menu option -Flip
ImageEditor_GridColour,Colour,Farbe,,Image editor grid colour label
ImageEditor_GridSettings,Grid Settings,Gittereinstellungen,,Image editor grid settings label
ImageEditor_GridX,X Spacing,X-Abstand,,Image editor grid x spacing label
ImageEditor_GridY,Y Spacing,Y-Abstand,,Image editor grid y spacing label
ImageEditor_HeightLabel,Height:,Höhe:,,image editor resize height label
ImageEditor_ImportCrop,Crop / pad,Zuschneiden / Auffüllen,,Image editor import dialog crop option
ImageEditor_ImportImageTitle,Import image(s),Bild(er) importieren,,Image editor import images title
ImageEditor_PasteImageResizeTitle,Resize Canvas,Bildgröße ändern,,canvas resize dialog on paste
ImageEditor_ImportResizeLabel,Imported image is a different size from the canvas,Die Größe des importierten Bilds unterscheidet sich von der aktuellen Szenengröße.,,Image editor import dialog resize required description
ImageEditor_PasteResizeLabel,Pasted image is larger than the canvas,Das eingefügte Bild ist größer als die Szene,,Image editor import dialog paste resize label
ImageEditor_Import_ResizeImported,Resize imported image to canvas size,Das importierte Bild auf die Szenengröße verkleinern,,Image editor import resize imported image
ImageEditor_Import_ResizeCanvas,Resize canvas to imported image size ({0} x {1}),Szenengröße an die Größe des importierten Bilds anpassen ({0} x {1}),,Image editor import resize canvas
ImageEditor_Paste_ResizeCanvas,Resize canvas to pasted image size ({0} x {1})?,Szenengröße an die Größe des eingefügten Bilds anpassen ({0} x {1})?,,Image editor import resize canvas pasted image
ImageEditor_ImportCrop_Canvas,Crop/pad canvas,Szene beschneiden/auffüllen,,image editor import - crop canvas
ImageEditor_ImportScale_Canvas,Scale canvas,Szene skalieren,,image editor import - scale canvas
ImageEditor_ImportCrop_Import,Crop/pad imported image,Importiertes Bild zuschneiden/auffüllen,,image editor import- crop imported image
ImageEditor_ImportScale_Import,Scale imported image,Importiertes Bild skalieren,,image editor import- scale imported image
ImageEditor_InsertFrame,Insert Frame,Frame einfügen,,Image editor menu option -Insert frame
ImageEditor_IntensityLabel,Intensity:,Intensität:,,effect intensity
ImageEditor_InterpLabel,Interpolation:,Interpolation:,,Image editor interpolation label
ImageEditor_InvertSelection,Invert Selection,Auswahl umkehren,,Image editor menu option -Invert selection
ImageEditor_KeepAspectRatio,Keep aspect ratio,Bildverhältnis beibehalten,,image editor keep aspect ratio label
ImageEditor_LayerBlendMode,Blend Mode:,Einblend-Modus:,,Image layer properties - blend mode
ImageEditor_LayerName,Name:,Name:,,Layer Name label in Layer Preferences
ImageEditor_LayerOpacity,Opacity:,Deckkraft:,,Image layer properties - opacity
ImageEditor_LayerPanelTitle,Layers,Ebenen,,layers panel title
ImageEditor_LayerProperties,Layer Properties,Ebeneneigenschaften,,Image layer properties title
ImageEditor_Loop_Tooltip,Toggle loop/ping-pong,Schleifen-/Ping-Pong ein/aus,,Image editor loop/ping pong button tooltip
ImageEditor_Menu_Save,Save,Speichern,,Image editor menu option -Save
ImageEditor_MergeAllLayers,Merge all layers,Alle Ebenen kombinieren,,Image editor layer context menu - merge all layers
ImageEditor_MergeGroup,Merge group,Gruppe kombinieren,,Image editor layer context menu - merge group
ImageEditor_MergeLayerDown,Merge layer down,Ebene nach unten kombinieren,,Image editor layer context menu - merge layer down
ImageEditor_MergeSelectedLayers,Merge Selected Layers,Ausgewählte Ebenen kombinieren,,Image editor layer context menu - merge selected layers
ImageEditor_Mirror,Mirror,Spiegeln,,Image editor menu option -Mirror
ImageEditor_NxN_Pixels,{0} x {1} pixels,{0} x {1} Pixel,,image editor pixel dimensions
ImageEditor_OnionSkin_Tooltip,Toggle onion skinning,Onion-Skinning ein/aus,,Image editor onion skin button tooltip
ImageEditor_OnionSkinFramesBack,Frames back,Frames zurück,,Image editor onion skin settings label
ImageEditor_OnionSkinFramesFwd,Frames forwards,Frames vor,,Image editor onion skin settings label
ImageEditor_OnionSkinSettings,Onion Skin Settings,Onion-Skin-Einstellungen,,Image editor onion skin settings title
ImageEditor_OnionSkinTint,Colour,Farbe,,Image editor onion skin settings label
ImageEditor_Paste,Paste,Einfügen,,Image editor menu option -Paste
ImageEditor_PlaybackSpeed,Speed:,Geschwindigkeit:,,Image editor playback speed label
ImageEditor_PlayButton_Tooltip,Play/Pause animation,Animation abspielen/pausieren,,Image editor play button tooltip
ImageEditor_Position,Position,Position,,image editor position label
ImageEditor_Preview,Preview,Vorschau,,effect preview
ImageEditor_Redo,Redo,Erneut durchführen,,Image editor menu option -Redo
ImageEditor_ResizeCanvas,Resize All Frames,Größe aller Frames ändern,,image editor resize canvas menu entry
ImageEditor_Rotate,Rotate,Drehen,,Image editor menu option -Rotate
ImageEditor_Scale,Scale,Skalieren,,Image editor menu option -Scale
ImageEditor_ScaleImage,Scale All Frames,Alle Frames skalieren,,Image editor scale image title
ImageEditor_SelectedLayer,Selected Layer,Ausgewählte Ebene,,effect selected layer option
ImageEditor_SnapToGrid,Snap to grid,An Gitter einrasten,,Image editor snap to grid
ImageEditor_TextTool_AA,Anti-alias,Anti-Aliasing,,Image editor text tool anti-alias
ImageEditor_TextTool_SettingsWindow,Font Adjustment,Schriftartanpassung,,Image editor text tool settings window caption
ImageEditor_Title,Image Editor: {0},Bildeditor: {0},,Image editor:(resource) title
ImageEditor_ToggleGrid,Toggle Grid,Gitter ein/aus,,Image editor toggle grid menu entry
ImageEditor_ToleranceLabel,Tolerance:,Toleranz:,,Image editor magic wand tolerance label
ImageEditor_RotationLabel,Rotation:,Drehung:,,Image editor rotation label
ImageEditor_RotationInterpolateLabel,Interpolate,Interpolieren,,Image editor rotation interpolate label
ImageEditor_Tool_Arc,Arc tool,Bogenwerkzeug,,ImageEditor Arc tool
ImageEditor_Tool_Brush,Paintbrush tool,Pinselwerkzeug,,ImageEditor paint brush tool
ImageEditor_Tool_ColourPicker,Colour Picker,Farbpipette,,ImageEditor Colour Picker
ImageEditor_Tool_Ellipse,Ellipse tool,Ellipsenwerkzeug,,ImageEditor Ellipse tool
ImageEditor_Tool_EllipseOutline,Ellipse tool - outline,Ellipsenwerkzeug - Kontur,,ImageEditor Ellipse tool(outline)
ImageEditor_Tool_EllipseFilled,Ellipse tool - filled,Ellipsenwerkzeug - gefüllt,,ImageEditor Ellipse tool(filled)
ImageEditor_Tool_EllipseSelect,Ellipse select tool,Ellipsenauswahlwerkzeug,,ImageEditor Ellipse select tool
ImageEditor_Tool_PaintSelect,Paint selection tool,Farbenauswahlwerkzeug,,ImageEditor paint selection tool
ImageEditor_Tool_Erase,Erase tool,Löschwerkzeug,,ImageEditor Erase tool
ImageEditor_Tool_Fill,Fill tool,Füllwerkzeug,,ImageEditor Fill tool
ImageEditor_Tool_ColourReplace,Colour replace tool,Farbwechselwerkzeug,,ImageEditor Colour replace tool
ImageEditor_Tool_ColourRemover,Colour remove tool,Farbentfernungswerkzeug,,ImageEditor Colour remove tool
ImageEditor_Tool_Flip,Flip brush tool,Pinselumkehrwerkzeug,,ImageEditor Flip tool
ImageEditor_Tool_Line,Line tool,Linienwerkzeug,,ImageEditor Line tool
ImageEditor_Tool_MagicWand,Magic wand tool,Zauberstabwerkzeug,,ImageEditor Magic wand tool
ImageEditor_Tool_Mirror,Mirror brush tool,Spiegelpinselwerkzeug,,ImageEditor Mirror tool
ImageEditor_Tool_Pan,Pan image tool,Schwenkwerkzeug,,ImageEditor Pan tool
ImageEditor_Tool_Polygon,Polygon tool,Vieleckwerkzeug,,ImageEditor Polygon tool
ImageEditor_Tool_PolygonOutline,Polygon tool - outline,Vieleckwerkzeug - Kontur,,ImageEditor Polygon tool(outline)
ImageEditor_Tool_PolygonFilled,Polygon tool - filled,Vieleckwerkzeug - gefüllt,,ImageEditor Polygon tool(filled)
ImageEditor_Tool_Rectangle,Rectangle tool,Rechteckwerkzeug,,ImageEditor Rectangle tool
ImageEditor_Tool_RectangleOutline,Rectangle tool - outline,Rechteckwerkzeug - Kontur,,ImageEditor Rectangle tool(outline)
ImageEditor_Tool_RectangleFilled,Rectangle tool - filled,Rechteckwerkzeug - gefüllt,,ImageEditor Rectangle tool(filled)
ImageEditor_Tool_RectangleSelect,Rectangle select tool,Rechteckauswahlwerkzeug,,ImageEditor Rectangle select tool
ImageEditor_Tool_Rotate,Rotate brush tool,Pinselwerkzeug drehen,,ImageEditor Rotate tool
ImageEditor_Tool_FreeRotate,Free rotate brush tool,Pinselwerkzeug frei drehen,,ImageEditor Free Rotate tool
ImageEditor_Tool_SplitMagnify,Split Magnify,Teilen und vergrößern,,Image editor split magnify tool name
ImageEditor_Tool_Text,Text tool,Textwerkzeug,,Image editor text tool
ImageEditor_ToolboxPanelTitle,Toolbox,Werkzeugkasten,,toolbox panel title
ImageEditor_Transform,Animation,Animation,,Image editor menu - animation transform heading
ImageEditor_Menu_Flip,Flip,Umdrehen,,Image editor menu flip
ImageEditor_Menu_Mirror,Mirror,Spiegeln,,Image editor menu mirror
ImageEditor_Menu_AllFrames,All Frames,Alle Frames,,Image editor menu flip animation
ImageEditor_Menu_CurrentFrame,Selected Frames,Ausgewählte Frames,,Image editor menu flip current frame
ImageEditor_Menu_RotateImageCW,Rotate All Frames (clockwise 90),Alle Frames drehen (90 im Uhrzeigersinn),,Image editor rotate clockwise menu entry
ImageEditor_Menu_RotateImageACW,Rotate All Frames (anti-clockwise 90),Alle Frames drehen (90 gegen den Uhrzeigersinn),,Image editor rotate anti-clockwise menu entry
ImageEditor_Undo,Undo,Rückgängig machen,,Image editor menu option -Undo
ImageEditor_VisibleLayers,Visible Layers,Sichtbare Ebenen,,effect visible layers option
ImageEditor_WidthLabel,Width:,Breite:,,image editor resize width label
ImageEditor_ArcTool_Info,"Click to add a point, drag to move ({0} - move control point; {1} - snap; Enter - commit)","Klicken, um einen Punkt hinzuzufügen; ziehen, um ihn zu verschieben ({0} – Kontrollpunkt verschieben; {1} – einschnappen; Enter – bestätigen)",,image editor tool info
ImageEditor_ColourPicker_Info,Left/right click to pick a colour,"Links-/rechtsklicken, um eine Farbe zu wählen",,image editor tool info
ImageEditor_EllipseTool_Info,Click and drag to draw an ellipse ({0} for a circle),"Klicken und ziehen, um eine Ellipse zu zeichnen ({0} für einen Kreis)",,image editor tool info
ImageEditor_PaintSelectTool_Info,"Paint selection ({0} to add, {1}/right click to subtract)","Farbwahl ({0} zum Addieren, {1}/Rechtsklick zum Subtrahieren)",,image editor tool info
ImageEditor_EraseTool_Info,Click to erase,"Klicken, um zu löschen",,image editor tool info
ImageEditor_FillTool_Info,Click to fill ({0} to tile with brush),Klicken zum Füllen ({0} zum Kacheln mit Pinsel),,image editor tool info
ImageEditor_ColourReplaceTool_Info,Click to swap colours ({0} to replace alpha also),"Klicken, um die Farben zu tauschen ({0}, um auch Alpha zu ersetzen)",,image editor tool info
ImageEditor_ColourRemoveTool_Info,Click to remove a colour,"Klicken, um eine Farbe zu entfernen",,image editor tool info
ImageEditor_LineTool_Info,Click and drag to draw a line ({0} for a straight line),"Klicken und ziehen, um eine Linie zu zeichnen ({0} für eine gerade Linie)",,image editor tool info
ImageEditor_MagicWand_Info,"Click to replace selection ({0} to add to selection, {1} to subtract from selection)","Klicken, um die Auswahl zu ersetzen ({0} zum Addieren zur Auswahl, {1} zum Subtrahieren von der Auswahl)",,image editor tool info
ImageEditor_Paintbrush_Info,"Click to paint ({0} for a straight line, {1} to pick a colour)","Klicken zum Malen ({0} für eine gerade Linie, {1} zum Auswählen einer Farbe)",,image editor tool info
ImageEditor_PanTool_Info,Click and drag to pan,"Klicken und ziehen, um zu schwenken",,image editor tool info
ImageEditor_PolyTool_Info,Click to add points (Enter to commit),"Klicken, um Punkte hinzuzufügen (Eingabetaste für Anwendung)",,image editor tool info
ImageEditor_RectangleTool_Info,Click and drag to draw a rectangle ({0} for a square),"Klicken und ziehen, um ein Rechteck zu zeichnen ({0} für ein Quadrat)",,image editor tool info
ImageEditor_RotateTool_Info,Click button to rotate clockwise (Shift for anti-clockwise),"Schaltfläche klicken, um im Uhrzeigersinn zu drehen (Umschalt, um gegen Uhrzeigersinn zu drehen)",,image editor tool info
ImageEditor_FreeRotateTool_Info,Click and drag to rotate current brush,"Klicken und ziehen, um aktuellen Pinsel zu drehen",,image editor free rotate tool info
ImageEditor_SelectEllipseTool_Info,"Click and drag to replace selection (${ctrl} to add to selection, Alt to subtract from selection)","Klicken und ziehen, um die Auswahl zu ersetzen (${ctrl} zum Hinzufügen zur Auswahl, Alt zum Abziehen von der Auswahl)",,image editor tool info
ImageEditor_SelectRectTool_Info,"Click and drag to replace selection ({0} to add to selection, {1} to subtract from selection)","Klicken und ziehen, um die Auswahl zu ersetzen ({0} zum Hinzufügen zur Auswahl, {1} zum Entfernen aus der Auswahl)",,image editor tool info
ImageEditor_TextTool_Info,Click to insert text,"Klicken, um Text einzufügen",,image editor tool info
ImageEditor_Warning_GroupSelected,Cannot paint on layer groups,Kann nicht auf Ebenengruppen malen,,image editor: group paint warning
ImageEditor_Warning_GroupSelected_Dialog,Cannot paint on layer groups; select a non-group layer,Kann nicht auf Ebenengruppen malen; wählen Sie eine nichtgruppierte Ebene,,image editor: group paint warning dialog
ImageEditor_Warning_LayerLocked,Cannot paint to a locked or invisible layer,Kann nicht auf gesperrter oder unsichtbarer Ebene malen,,image editor: locked layer warning
ImageEditor_Warning_LayerLocked_Dialog,Cannot paint to the selected layer - it is locked or hidden,Kann nicht auf ausgewählter Ebene malen (sie ist gesperrt oder verborgen,,image editor: locked layer dialog warning
ImageEditor_Warning_LayerHidden,Current layer is not visible,Aktuelle Ebene ist nicht sichtbar,,image editor hidden layer warning
ImageEditor_Select_RectSize,Selection Area: {0}x{1},Auswahlbereich: {0}x{1},,selection rect size
ImageEditor_CurrentFrame,Current Frame:,Aktueller Frame:,,image editor current frame label
ImageEditor_FrameNumberLabel,{0} of {1} frames,{0} von {1} Frames,,label for frame number
ImageEditor_BrushSizeLabel,Size:,Größe:,,brush size label
ImageEditor_BrushSmoothLabel,Smooth,Glatt,,brush smooth label
ImageEditor_ColourOnlyLabel,Colour only:,Nur Farbe:,,magic wand colour only label
ImageEditor_ContiguousLabel,Contiguous mode:,Kontinuierlicher Modus:,,magic wand contiguous mode label
ImageEditor_FillStyle_Stroke,Stroke,Strich,,shape tool stroke style
ImageEditor_FillStyle_Fill,Fill,Füllen,,shape tool fill style
ImageEditor_FillStyle_Both,Both,Beides,,shape tool both style
ImageEditor_SwatchMenu_Copy,Copy colours to sprite:,Farben zu Sprite kopieren:,,swatch panel menu copy colours
ImageEditor_SwatchMenu_Import,Import colours from sprite:,Farben aus Sprite importieren:,,swatch panel menu import colours
ImageEditor_OnionBurger_Tooltip,Onion skin,Onion-Skin,,burger button tooltip
ImageEditor_LoopBurger_Tooltip,Loop mode,Schleifenmodus,,burger button tooltip
ImageEditor_PlayBurger_Tooltip,Play,Abspielen,,burger button tooltip
ImageEditor_AddLayer_TT,Add Layer To All Frames,Ebene zu allen Frames hinzufügen,,image editor add layer tooltip
ImageEditor_AddLayerGroup_TT,Add Layer Group,Ebenengruppe hinzufügen,,image editor layer tooltip
ImageEditor_ShiftLayerUp_TT,Shift Layer Up,Ebene nach oben verschieben,,image editor shift layer up tooltip
ImageEditor_ShiftLayerDown_TT,Shift Layer Down,Ebene nach unten verschieben,,image editor shift layer down tooltip
ImageEditor_DeleteLayer_TT,Delete Layer/Group For All Frames,Ebene/Gruppe für alle Frames löschen,,image editor delete layer tooltip
ImageEditor_EraseColour_TT,Left Or Right Click To Set Eraser,Links- oder Rechtsklick für Radierer,,erase colour button tooltip
ImageEditor_LastLayerDeleteTitle,Can't Delete Last Layer,Letzte Eben kann nicht gelöscht werden,,can't delete last layer title
ImageEditor_LayerLayerDeleteMessage,Can't delete layer - image must have at least one layer,Ebene kann nicht gelöscht werden - Bild erfordert mindestens eine Ebene,,last layer delete message
ImageEditor_SwapColours_TT,Swap left and right colours,Linke und rechte Farben tauschen,,image editor swap colours tool tip
ImageEditor_Greyscale,Greyscale,Grauskaliert,,ie greyscale label
ImageEditor_Blur,Blur,Verwischen,,ie blur label
ImageEditor_BlurType,Blur Type:,Verwischen-Typ:,,ie blur type label
ImageEditor_Horizontal,Horizontal,Horizontal,,ie horizontal label
ImageEditor_Vertical,Vertical,Vertikal,,ie vertical label
ImageEditor_Both,Both,Beides,,ie both label
ListBoxEnum_eBlurType_Box,Box,Box,,blur type enum
ListBoxEnum_eBlurType_Gaussian,Gaussian,Gauss,,blur type enum
GridWidgetSettings_Colour,Grid Colour:,Gitterfarbe:,,zoom widget grid settings colour label
GridWidgetSettings_Alpha,Alpha:,Alpha:,,zoom widget grid settings alpha label
GridWidgetSettings_GridX,Grid X,Gitter X,,grid settings grid x
GridWidgetSettings_GridY,Grid Y,Gitter Y,,grid settings grid y
GridWidgetSettings_Snap,Snap,Anheften,,grid settings grid snap to grid
SplitWidgetSettings_NoSplit,No Split,Nicht teilen,,split settings no split
SplitWidgetSettings_Horizontal,Split Horizontal,Horizontal teilen,,split settings horizontal split
SplitWidgetSettings_Vertical,Split Vertical,Vertikal teilen,,split settings vertical split
Importing,Importing...,Wird importiert...,,Importing
Extracting,Extracting...,Wird entpackt...,,Extracting
IncludedFile_AllPlatforms,All,Alle,,caption for all platforms button
IncludedFile_FileName,File Name:,Dateiname:,,Textbox caption for file name
IncludedFile_FileSize,File Size:,Dateigröße:,,caption for file size
IncludedFile_FileSizeKB,{0} KB,{0} KB,,display for file size in kilobytes
IncludedFile_FileSizeMB,{0} MB,{0} MB,,display for file size in megabytes
IncludedFile_NoPlatforms,None,Kein(e),,caption for no platforms button
IncludedFile_Platforms,Platforms:,Plattformen:,,caption for platforms buttons/list
IncludedFile_Title,Included File: {0},Enthaltene Datei: {0},,Included file editor window title
IncludedFilesPlatform_Android,Android,Android,,included files platform list entry
IncludedFilesPlatform_Android_YYC,Android (YYC),Android (YYC),,included files platform list entry
IncludedFilesPlatform_GameMaker_Player,GameMaker:Player,GameMaker:Player,,included files platform list entry
IncludedFilesPlatform_HTML5,HTML5,HTML5,,included files platform list entry
IncludedFilesPlatform_iOS,iOS,iOS,,included files platform list entry
IncludedFilesPlatform_iOS_YYC,iOS (YYC),iOS (YYC),,included files platform list entry
IncludedFilesPlatform_Mac_OS_X,macOS,macOS,,included files platform list entry
IncludedFilesPlatform_PlayStation_4,PlayStation 4,PlayStation 4,,included files platform list entry
IncludedFilesPlatform_PlayStation_4_YYC,PlayStation 4 (YYC),PlayStation 4 (YYC),,included files platform list entry
IncludedFilesPlatform_Ubuntu_Linux,Ubuntu,Ubuntu,,included files platform list entry
IncludedFilesPlatform_Ubuntu_Linux_YYC,Ubuntu (YYC),Ubuntu (YYC),,included files platform list entry
IncludedFilesPlatform_Windows,Windows,Windows,,included files platform list entry
IncludedFilesPlatform_Windows_8_YYC,Windows 8 (YYC),Windows 8 (YYC),,included files platform list entry
IncludedFilesPlatform_Windows_Phone_8,Windows Phone 8,Windows Phone 8,,included files platform list entry
IncludedFilesPlatform_Windows_Phone_8_YYC,Windows Phone 8 (YYC),Windows Phone 8 (YYC),,included files platform list entry
IncludedFilesPlatform_Windows_YYC,Windows (YYC),Windows (YYC),,included files platform list entry
IncludedFilesPlatform_Windows8_Javascript,Windows 8 (Javascript),Windows 8 (Javascript),,included files platform list entry
IncludedFilesPlatform_Windows8_Native,Windows 8 (Native),Windows 8 (Nativ),,included files platform list entry
IncludedFilesPlatform_XBox_One,Xbox One (Legacy/XDK),Xbox One (Legacy/XDK),DO NOT TRANSLATE,included files platform list entry
IncludedFilesPlatform_XBox_One_YYC,Xbox One (Legacy/XDK) (YYC),Xbox One (Legacy/XDK) (YYC),DO NOT TRANSLATE,included files platform list entry
IncludedFilesPlatform_Windows_UWP,Windows UWP,Windows UWP,,included files platform list entry
IncludedFilesPlatform_Android_TV,Android TV,Android TV,,included files platform list entry
IncludedFilesPlatform_TV_OS,tvOS,tvOS,,included files platform list entry
IncludedFilesPlatform_AmazonFire,Amazon Fire,Amazon Fire,,Amazon Fire platform list entry
InstanceProperties_CreationCode,Creation Code,Erstellungscode,,instance properties button caption for opening the creation code
InstanceProperties_EditObject,Edit Object,Objekt bearbeiten,,instance properties button caption for opening the object for edit
InstanceProperties_FlipX,Flip X,X kippen,,instance properties checkbox label for flip x
InstanceProperties_FlipY,Flip Y,Y kippen,,instance properties checkbox label for flip y
InstanceProperties_PosX,X,X,,instance properties numeric box label for x pos
InstanceProperties_PosY,Y,Y,,instance properties numeric box label for y pos
InstanceProperties_Rotation,Rotation,Drehung,,instance properties numeric textbox caption for rotation
InstanceProperties_ScaleX,Scale X,X skalieren,,instance properties numeric box label for scale x
InstanceProperties_ScaleY,Scale Y,Y skalieren,,instance properties numeric box label for scale y
LanguageSelect_Title,Please select a language,Bitte eine Sprache wählen,,Title of the language select dialog
ListBoxEnum_eAntiAliasMode_Mono,Off,Aus,,Anti-aliasing off
ListBoxEnum_eAntiAliasMode_Normal,On,Ein,,Anti-aliasing on
ListBoxEnum_eGMSoundBitDepth__16bit,16 bit,16 Bit,,16 bit audio bit depth ListBox Enum
ListBoxEnum_eGMSoundBitDepth__8bit,8 bit,8 Bit,,8 bit audio bit depth ListBox Enum
ListBoxEnum_eGMSoundType__3D,3D,3D,,3D Sound Listbox Enum
ListBoxEnum_eGMSoundType_Mono,Mono,Mono,,Mono Sound Listbox Enum
ListBoxEnum_eGMSoundType_Stereo,Stereo,Stereo,,Stereo Sound Listbox Enum
ListBoxEnum_eImageBGStyle_BlockPattern,Block Pattern,Blockmuster,,image editor image background style enum
ListBoxEnum_eImageBGStyle_SingleColour,Single Colour,Einzelfarbe,,image editor image background style enum
ListBoxEnum_eAnimLoopMode_PlayOnce,Play once,Einmal abspielen,,image editor anim loop mode enum
ListBoxEnum_eAnimLoopMode_Loop,Loop,Schleife,,image editor anim loop mode enum
ListBoxEnum_eAnimLoopMode_PingPong,Ping pong,Pingpong,,image editor anim loop mode enum
ListBoxEnum_eImageInterp_Cubic,Cubic,Kubisch,,Image interpolation enum - cubic
ListBoxEnum_eImageInterp_Linear,Linear,Linear,,Image interpolation enum -linear
ListBoxEnum_eImageInterp_Nearest,None,Kein(e),,Image interpolation enum - nearest / none
ListBoxEnum_eImageSizeUnits_Percent,Percent,Prozent,,image size units enum
ListBoxEnum_eImageSizeUnits_Pixel,Pixels,Pixel,,image size units enum
ListBoxEnum_eLayerBlendType_Add,Add,Hinzufügen,,Listbox auto-enum blend mode for add
ListBoxEnum_eLayerBlendType_Multiply,Multiply,Multiplizieren,,Listbox auto-enum blend mode for multiply
ListBoxEnum_eLayerBlendType_Normal,Normal,Normal,,Listbox auto-enum blend mode for normal
ListBoxEnum_eLayerBlendType_Subtract,Subtract,Abziehen,,Listbox auto-enum blend mode for subtract
ListBoxEnum_eRoomEditorParentDeletePreference_DeleteAll,Delete All,Alle löschen,,
ListBoxEnum_eRoomEditorParentDeletePreference_KeepAll,Keep All,Alle beibehalten,,
ListBoxEnum_eRoomEditorParentDeletePreference_KeepChanged,Keep Changed,Geänderte beibehalten,,
ListBoxEnum_eRoomEditorParentDeletePreference_ShowDialog,Show Message,Meldung anzeigen,,
ListBoxEnum_eStandardConfirmPreference_No,No,Nein,,
ListBoxEnum_eStandardConfirmPreference_ShowDialog,Show Message,Meldung anzeigen,,
ListBoxEnum_eStandardConfirmPreference_Yes,Yes,Ja,,
ListBoxEnum_eStandardAcceptancePreference_OK,OK,OK,,
ListBoxEnum_eStandardAcceptancePreference_ShowDialog,Show Message,Meldung anzeigen,,
ListBoxEnum_TileDataSize_Bit_16,16 Bit,16 Bit,,drop down list label for 16bit tile data size
ListBoxEnum_TileDataSize_Bit_32,32 Bit,32 Bit,,drop down list label for 32bit tile data size
ListBoxEnum_TileDataSize_Bit_64,64 Bit,64 Bit,,drop down list label for 64bit tile data size
ListBoxEnum_eImageFit_Stretch,Stretch,Dehnen,,Stretch Image Scaling option
ListBoxEnum_eImageFit_Tile,Tile,Kacheln,,Tile Image Scaling option
ListBoxEnum_eImageFit_BestFit,Best Fit,Beste Größe,,Best Fit Image Scaling option
ListBoxEnum_eImageFit_DesktopStretch,Desktop Stretch,Desktop-Stretch,,Desktop Stretch Image Scaling option
Loading,Loading...,Wird geladen...,,Loading
Marketplace_Go,Open Marketplace,Marktplatz öffnen,,Open Marketplace
Marketplace_Assets,My Library,Meine Bibliothek,,Downloaded assets
Marketplace_Downloads,Downloads,Downloads,,Downloads
Marketplace_Login,Login,Anmelden,,Login
Marketplace_MyLibrary_Overview,Overview,Übersicht,,Overview title
Marketplace_MyLibrary_Header_Title,Title,Titel,,Header Title
Marketplace_MyLibrary_Header_Developer,Developer,Entwickler,,Developer Title
Marketplace_MyLibrary_Header_Rating,Rating,Bewertung,,Rating Title
Marketplace_MyLibrary_Pagination,Page {0} / {1},Seite {0} / {1},,Pagination
Marketplace_MyLibrary_Header_Status,Status,Status,,Status Title
Marketplace_MyLibrary_Screens,Screenshots,Screenshots,,Screens Title
Marketplace_MyLibrary_ViewMoreFrom,View more from developer.,Mehr vom Entwickler anzeigen.,,View more from Developer text
Marketplace_MyLibrary_Description,Description:,Beschreibung:,,Description label
Marketplace_MyLibrary_AgeRating,Age Rating:,Alterseinstufung:,,Age Rating Label
Marketplace_MyLibrary_Version,Version:,Version:,,Version Label
Marketplace_MyLibrary_VersionLabel,Version {0}. Published {1}.,Version {0}. Veröffentlicht am {1}.,,Version label
Marketplace_MyLibrary_PackageContains,Package Contains:,Paket enthält:,,Package Contains Label
Marketplace_MyLibrary_EULA,End User Licence Agreement: (EULA),Endbenutzerlizenzvereinbarung: (EULA),,EULA Label
Marketplace_MyLibrary_Categories,Categories,Kategorien,,Marketplace Categories title
Marketplace_MyLibary_AssetVerifying,Verifying...,Wird verifiziert ...,,Marketplace my library asset being verified label
Marketplace_MyLibary_AssetDownloaded,Downloaded,Heruntergeladen,,Marketplace my library asset downloaded label
Marketplace_MyLibrary_ViewAsset,View in marketplace,Im Marktplatz anzeigen,,Marketplace view asset
Marketplace_MyLibrary_Author,By {0},von {0},,Marketplace author line
Marketplace_MyLibrary_Delete,Delete,Löschen,,Delete marketplace asset button caption
Marketplace_MyLibrary_Download,Download,Herunterladen,,Download asset button
Marketplace_MyLibrary_Update,Update,Aktualisieren,,Update asset button
Marketplace_MyLibrary_RefreshTooltip,Refresh library.,Bibliothek aktualisieren.,,Refresh assets button tooltip
Marketplace_MyLibrary_UpdateTooltip,An update is available for this asset.,Eine Aktualisierung ist für dieses Asset verfügbar.,,Update available tooltip
Marketplace_MyLibrary_Import,Import,Importieren,,Import asset button
Marketplace_MyLibrary_LeaveReview,Review This Asset,Dieses Asset bewerten,,Review this asset marketplace tooltip
Marketplace_MyLibrary_Title,My Library,Meine Bibliothek,,Marketplace my library window title
Marketplace_MyLibrary_ViewMarketplace,View in Marketplace,In Marktplatz anzeigen,,View asset button
Marketplace_MyLibrary_Install,Install,Installieren,,marketplace library install label
Marketplace_MyLibrary_Installing,Installing...,Wird installiert ...,,marketplace library installing label
Marketplace_MyLibrary_Installed,Installed,Installiert,,marketplace library installed label
Marketplace_MyLibrary_NoAssetsDisplayed,You do not currently have any assets in your Library. Click to visit the Marketplace and browse assets.,Sie haben aktuell keine Assets in Ihrer Bibliothek. Besuchen Sie den Marktplatz und suchen Sie nach Assets.,,marketplace library no assets displayed button
Marketplace_MyLibrary_DownloadCancelled,Download cancelled,Download abgebrochen,,marketplace asset download cancelled status
Marketplace_MyLibrary_Downloading,Downloading...,Wird heruntergeladen ...,,marketplace asset download progress label
Marketplace_MyLibrary_DownloadFailed,Download failed,Download fehlgeschlagen,,marketplace asset download failed label
Marketplace_Password,Password,Passwort,,Password
Marketplace_Register,Register,Registrieren,,Register marketplace account
Marketplace_StoreCredentials,Save Username/Password,Benutzername/Kennwort speichern,,Store credentials
Marketplace_Username,Username,Benutzername,,Username
Marketplace_Offline,Cannot access Marketplace: User is offline,Marktplatzzugriff nicht möglich: Benutzer ist offline,,Marketplace is offline error message
Marketplace_CreateNewPackage,Create Package,Paket erstellen,,marketplace menu create package
Marketplace_UpdatePackage,Update Existing Package,Bestehendes Paket erstellen,,marketplace menu update existing package
Marketplace_CreatePackage,Create Package,Paket erstellen,,marketplace menu create package
Marketplace_CreatePackageDescription,Select publisher and enter a new package name and ID,Publisher wählen und neuen Paketnamen und ID eingeben,,marketplace create new package instructions
Marketplace_ChooseAssetTitle,Choose an Asset,Asset wählen,,marketplace choose publisher package title
Marketplace_ChoosePackageId,Please select the name and package ID of your asset from the marketplace,Bitte wählen Sie den Namen und die Paket-ID Ihres Assets aus dem Marketplace,,marketplace choose publisher package id
Marketplace_PackageName,Name:,Name:,,marketplace package name label
Marketplace_PublisherSelectionRequired,No Publisher selected,Kein Publisher ausgewählt,,marketplace package no publisher selected error
Marketplace_PublisherName,Publisher Name:,Name des Publishers:,,marketplace packge publisher name label
Marketplace_PackageId,Package ID:,Paket-ID:,,marketplace package id label
Marketplace_PackageVersion,Version:,Version:,,marketplace version label
Marketplace_PackageIdRequired,Package ID required,Paket-ID erforderlich,,create asset package missing package id
Marketplace_CreatingPackage,Creating package...,Paket wird erstellt ...,,create package progress title
Marketplace_CreatePackageDesc,Select resources from your project and add them to your package:,Wählen Sie Ressourcen aus Ihrem Projekt und fügen Sie sie zum Paket hinzu:,,marketplace create package description
Marketplace_ProjectLabel,Project:,Projekt:,,create package project label
Marketplace_AssetPackageLabel,Asset Package:,Asset-Paket:,,create package asset package label
Marketplace_Package_AddLabel,Add,Hinzufügen,,create package add resource button
Marketplace_Package_AddAllLabel,Add All,Alle hinzufügen,,create package add all resources button
Marketplace_Package_RemoveLabel,Remove,Entfernen,,create package remove resource button
Marketplace_Package_CertSettingsMissing,Certificate file has not been set - please check Marketplace certificate settings,Zertifikatdatei nicht festgelegt - bitte Marketplace-Zertifikateinstellungen überprüfen,,create package certificate settings error
Marketplace_Package_CertFileMissing,Certificate file '{0}' could not be found - please check Marketplace certificate settings,Zertifikatdatei '{0}' konnte nicht gefunden werden - bitte Marketplace-Zertifikateinstellungen überprüfen,,create package missing certificate file error
Marketplace_Package_CertFileSetupMessage,You will need to set up a signing certificate before you can create and publish packages.,"Sie müssen ein Signaturzertifikat einrichten, bevor Sie Pakete erstellen und veröffentlichen können.",,mplace need certificate message
Marketplace_Package_CertFileSettingsButton,Go to Certificate Settings,Zu Zertifikateinstellungen gehen,,mplace go to certificate settings button
Marketplace_Package_CreateError,Error creating package,Fehler bei Paketerstellung,,create package error title
Marketplace_Package_ImportError,Error importing package,Fehler bei Paketimport,,package import error title
Marketplace_Package_Verifying,Verifying package...,Paket wird verifiziert ...,,marketplace pacakge verifying progress title
Marketplace_Package_VerifyError,Failed to verify the package,Paket konnte nicht verifiziert werden,,marketplace package verification error
Marketplace_Package_GenericError,Failed with error:\n'{0}',Fehlgeschlagen mit Fehler:\n'{0}',,generic marketplace package error
Marketplace_Package_SigningError,Package signing error,Paketsignaturfehler,,marketplace package signing error
Marketplace_Package_ExtractFailed,Error extracting package archive: '{0}',Fehler beim Extrahieren von Paketarchiv: '{0}',,marketplace package extract fail
Marketplace_Package_ImportCompleted,Import Completed!,Import abgeschlossen!,,marketplace package import completed
Marketplace_Package_ImportDesc,Select resources from the asset package and add them to your project:,Wählen Sie Ressourcen aus dem Asset-Paket und fügen Sie sie zum Projekt hinzu:,,package import description
Marketplace_Package_ImportNoProject,You must first open a project to import resources into,"Sie müssen ein Projekt öffnen, in das Ressourcen importiert werden sollen",,marketplace package import no project open message
Marketplace_Package_ExportNoResources,You must include at least one resource,Sie müssen mindestens eine Ressource anfügen,,package export no resources selected message
Marketplace_Package_ImportToNewProject,Import all resources to a new project,Alle Ressourcen in ein neues Projekt importieren,,package import new project
Marketplace_CheckForUpdates,Check For Updates,Nach Updates suchen,,check for updates button label
Marketplace_Updating,Updating...,Wird aktualisiert...,,marketplace updating label
Marketplace_WindowTitle,Marketplace,Marketplace,,Marketplace webview window title
Marketplace_PurchaseHistory,My Purchase History,Mein Einkaufsverlauf,,Marketplace purchase history menu entry
Marketplace_NoPublisherTitle,Publisher Account Required,Publisher-Konto erforderlich,,marketplace no publisher title
Marketplace_NoPublisherMessage,You do not have a Publisher attached to this account. Do you want to add one now?,Mit diesem Konto ist kein Publisher verknüpft. Möchten Sie jetzt einen hinzufügen?,,marketplace no publisher account message
Marketplace_ProjectRequiredDialogTitle,Project Required,Projekt erforderlich,,marketplace import project required dialog title
Marketplace_ProjectRequiredDialogMessage,An open project is required to import assets.\nDo you want to create a new project or open an existing project now?,"Ein offenes Projekt ist erforderlich, um Assets zu importieren.\nMöchten Sie ein neues Projekt erstellen oder ein bestehendes öffnen?",,marketplace import project required dialog message
MPackage_PackageUploadTitle,Package Upload,Paket-Upload,,package upload dialog title
MPackage_PackageCreated,Created package '{0}' version {1},Paket '{0}' in der Version {1} erstellt,,package create success message
MPackage_PackageUploading,Uploading to Marketplace...,Hochladen auf Marketplace...,,package uploading message
MPackage_PackageIDInvalid,Package ID is invalid,Paket-ID ist ungültig,,mplace create package package id error
MPackage_AssetDisplayName,Display name,Anzeigename,,marketplace asset display name label
MPackage_DisplayNameInvalid,Display name is invalid,Anzeigename ist ungültig,,marketplace package display name error
MPackage_DisplayNameRestrictions,Display name restrictions,Anzeigename-Beschränkungen,,package display name restrictions label
MPackage_DisplayNameRule1,- Must be between 5 and 30 characters long,- Muss zwischen 5 und 30 Zeichen lang sein,,asset create restriction label
MPackage_DisplayNameRule2,- Must start with a letter,- Muss mit einem Buchstaben beginnen,,asset create restriction label
MPackage_DisplayNameRule3,"- May only contain letters, numbers, dashes and underscores","- Darf nur Buchstaben, Zahlen, Bindestriche und Tiefstriche enthalten",,asset create restriction label
MPackage_PackageIdRestrictions,Package ID Restrictions,Paket-ID-Einschränkungen,,asset create restriction label
MPackage_PackageIdRule1,- Must be in the format com.companyname.assetname,- Muss im Format com.firmenname.objektname sein,,asset create restriction label
MPackage_PackageIdRule2,- Cannot contain spaces,- Darf keine Leerzeichen enthalten,,asset create restriction label
MPackage_PackageIdRule3,- Company and asset names may contain letters and numbers,- Firmen- und Objektnamen können Buchstaben und Zahlen enthalten,,asset create restriction label
MPackage_NewPackageInfo_Other,IMPORTANT: The package ID cannot be changed once your asset has been created.,"WICHTIG: Die Paket-ID darf nicht geändert werden, sobald Ihr Asset erstellt wurde.",,create asset warning label
MPackage_UploadedMessage,Uploaded package '{0}' version {1}\nGo to the asset listing page?,Paket '{0}' Version {1} hochgeladen\nZur Asset-Listenseite gehen?,,mplace package uploaded message
MPackage_UploadFailed,Package upload failed: {0},Paket-Upload fehlgeschlagen: {0},,mplace package upload failed message
MPackage_UploadCancelled,Package upload cancelled,Paket-Upload abgebrochen,,mplace package upload cancelled message
MPackage_PackageType,Package Type:,Pakettyp:,,mplace package type label
MPackage_CategorySetting_Demo,IMPORTANT: The asset category will be set to 'Demo' on upload,WICHTIG: Die Asset-Kategorie wird beim Hochladen auf „Demo“ gesetzt,,mplace category setting message
MPackage_CategorySetting_Tutorial,IMPORTANT: The asset category will be set to 'Tutorial' on upload,WICHTIG: Die Asset-Kategorie wird beim Hochladen auf „Tutorial“ gesetzt,,mplace category setting message
MPackage_NewPackageInfo_Demo,IMPORTANT: The package ID cannot be changed once your asset has been created. The asset category will be set to 'Demo' on upload,"WICHTIG: Die Paket-ID darf nicht geändert werden, sobald Ihr Asset erstellt wurde. Die Asset-Kategorie wird beim Hochladen auf „Demo“ gesetzt",,mplace category setting message
MPackage_NewPackageInfo_Tutorial,IMPORTANT: The package ID cannot be changed once your asset has been created. The asset category will be set to 'Tutorial' on upload,"WICHTIG: Die Paket-ID darf nicht geändert werden, sobald Ihr Asset erstellt wurde. Die Asset-Kategorie wird beim Hochladen auf „Tutorial“ gesetzt",,mplace category setting message
MenuBar_AddMenuBarEntry,Add Menu Bar Entry,Menüleisteneintrag hinzufügen,,Add a new menu bar entry at the end of the bar
MenuBar_AddMenuBarEntryAfter,Add Menu Bar Entry After '{0}',Menüleisteneintrag nach '{0}' hinzufügen,,Add a new menu bar entry after the selected entry
MenuBar_AddMenuBarEntryBefore,Add Menu Bar Entry Before '{0}',Menüleisteneintrag vor '{0}‘ hinzufügen,,Add a new menu bar entry before the selected entry
MenuBar_Edit,Edit,Bearbeiten,,Menu bar heading: Edit
MenuBar_File,File,Datei,,Menu bar heading: File