File: codetoolsstrconsts.de.po

package info (click to toggle)
lazarus 1.2.4%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 170,220 kB
  • ctags: 115,165
  • sloc: pascal: 1,386,898; xml: 257,878; sh: 2,935; java: 603; makefile: 549; perl: 297; sql: 174; ansic: 137
file content (966 lines) | stat: -rw-r--r-- 29,651 bytes parent folder | download | duplicates (2)
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
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2013-07-14 11:23-0000\n"
"Last-Translator: Swen Heinig <swen.heinig@freenet.de>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-SourceCharset: utf-8\n"
"Language: de_DE\n"
"X-Generator: Poedit 1.5.4\n"

#: codetoolsstrconsts.crsbracketnotfound
msgid "bracket ) not found"
msgstr "Klammer ) nicht gefunden"

#: codetoolsstrconsts.crsbracketnotfound2
msgid "bracket ] not found"
msgstr "Klammer ] nicht gefunden"

#: codetoolsstrconsts.crsclosingbracketnotfound
msgid "closing bracket not found"
msgstr "schließende Klammer nicht gefunden"

#: codetoolsstrconsts.crsfoundunexpectedat
msgid "%s, found unexpected %s at %s"
msgstr ""

#: codetoolsstrconsts.crsrecordendnotfound
msgid "record end not found"
msgstr "Record-Ende nicht gefunden"

#: codetoolsstrconsts.ctsaddsdirtoincludepath
msgid "adds %s to IncPath"
msgstr "fügt dem Include-Pfad %s  hinzu"

#: codetoolsstrconsts.ctsaddsdirtosourcepath
msgid "adds %s to SrcPath"
msgstr "fügt dem Quellpfad %s hinzu"

#: codetoolsstrconsts.ctsancestorisnotproperty
msgid "ancestor of untyped property is not a property"
msgstr "Vorfahr der untypisierten Eigenschaft ist keine Eigenschaft"

#: codetoolsstrconsts.ctsanlclproject
msgid "an LCL project"
msgstr "ein LCL-Projekt"

#: codetoolsstrconsts.ctsanonymdefinitionsarenotallowed
msgid "Anonymous %s definitions are not allowed"
msgstr "Anonyme %s-Definitionen sind nicht zulässig"

#: codetoolsstrconsts.ctsawithoutb
msgid "%s without %s"
msgstr "%s ohne %s"

#: codetoolsstrconsts.ctsbasetypeofnotfound
msgid "base type of \"%s\" not found"
msgstr "Basistyp von \"%s\" nicht gefunden"

#: codetoolsstrconsts.ctsbeginatwithoutend
msgid "begin at %s without end"
msgstr ""

#: codetoolsstrconsts.ctsbinaryoperator
msgid "binary operator"
msgstr "Binärer Operator"

#: codetoolsstrconsts.ctsbracketcloseexpectedbutatomfound
msgid "bracket close expected, but %s found"
msgstr "schließende Klammer erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsbracketnotfound
msgid "bracket %s not found"
msgstr "Klammer %s nicht gefunden"

#: codetoolsstrconsts.ctsbracketopenexpectedbutatomfound
msgid "bracket open expected, but %s found"
msgstr "öffnende Klammer erwartet aber %s gefunden"

#: codetoolsstrconsts.ctscharacterconstantoutofrange
msgid "character constant out of range"
msgstr ""

#: codetoolsstrconsts.ctscircleindefinitions
msgid "circle in definitions"
msgstr "zirkuläre Definitionen"

#: codetoolsstrconsts.ctsclassidentifierexpected
msgid "class identifier expected"
msgstr "Klassenbezeichner erwartet"

#: codetoolsstrconsts.ctsclassnodewithoutparentnode
msgid "class node without parent node"
msgstr "Klassenknoten ohne Elternknoten"

#: codetoolsstrconsts.ctsclassnotfound
msgid "class %s%s%s not found"
msgstr "Klasse %s%s%s nicht gefunden"

#: codetoolsstrconsts.ctsclassofdefinitionnotresolved
msgid "\"class of\" definition not resolved: %s"
msgstr "Die Definition \"Class of\" ist nicht aufgelöst: %s"

#: codetoolsstrconsts.ctsclasssnotfound
msgid "Class %s not found"
msgstr "Klasse %s nicht gefunden"

#: codetoolsstrconsts.ctsclasswithoutname
msgid "class without name"
msgstr "namenlose Klasse"

#: codetoolsstrconsts.ctscommandlineparameters
msgid "Command line parameters"
msgstr "Kommandozeilen-Parameter"

#: codetoolsstrconsts.ctscommentendnotfound
msgid "Comment end not found"
msgstr "Kommentarende nicht gefunden"

#: codetoolsstrconsts.ctscompiledsrcpath
msgid "Compiled SrcPath"
msgstr "Kompiliert Quellpfad"

#: codetoolsstrconsts.ctscompiler
msgid "Compiler"
msgstr "Compiler"

#: codetoolsstrconsts.ctscomponentsdirectory
msgid "Components Directory"
msgstr "Komponentenverzeichnis"

#: codetoolsstrconsts.ctsconstant
msgid "constant"
msgstr "Konstante"

#: codetoolsstrconsts.ctsconverterdirectory
msgid "Converter Directory"
msgstr "Konverterverzeichnis"

#: codetoolsstrconsts.ctscpudirectory
msgid "CPU directory"
msgstr "CPU-Verzeichnis"

#: codetoolsstrconsts.ctscursorposoutsideofcode
msgid "cursor pos outside of code"
msgstr "Cursorposition außerhalb des Codes"

#: codetoolsstrconsts.ctscustomcomponentsdirectory
msgid "Custom Components Directory"
msgstr "Benutzerdefiniertes Komponentenverzeichnis"

#: codetoolsstrconsts.ctsdebuggerdirectory
msgid "Debugger Directory"
msgstr "Debugger-Verzeichnis"

#: codetoolsstrconsts.ctsdefaultancestornotfound
msgid "default ancestor %s not found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultclassancestortobjectnotfound
msgid "default class ancestor TObject not found"
msgstr "Default-Klassenvorfahr TObject nicht gefunden"

#: codetoolsstrconsts.ctsdefaultdispinterfaceancestoridispatchnotfound
msgid "default dispinterface ancestor IDispatch not found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
msgid "Default fpc source Operating System 2"
msgstr ""

#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
msgid "Default fpc source Operating System"
msgstr ""

#: codetoolsstrconsts.ctsdefaultfpcsymbol
msgid "Default fpc symbol"
msgstr "Vorgabe-FPC-Symbol"

#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
msgid "Default fpc target Operating System"
msgstr "Vorgabe-FPC-Zielbetriebssystem"

#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
msgid "Default fpc target processor"
msgstr "Vorgabe-FPC-Zielprozessor"

#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
msgid "default interface ancestor IInterface not found"
msgstr "Default-Interfacevorfahr IInterface nicht gefunden"

#: codetoolsstrconsts.ctsdefaultjavaclassancestorjlobjectnotfound
msgid "default java class ancestor JLObject not found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultparameterexpectedbutatomfound
msgid "default parameter expected, but %s found"
msgstr "Default-Parameter erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsdefaultpropertynotfound
msgid "default property not found"
msgstr "Default-Eigenschaft nicht gefunden"

#: codetoolsstrconsts.ctsdefaultspecifierredefined
msgid "default specifier redefined"
msgstr "Default-Bezeichner neu definiert"

#: codetoolsstrconsts.ctsdefine
msgid "Define "
msgstr "Angeben"

#: codetoolsstrconsts.ctsdefinelcl
msgid "Define LCL"
msgstr "LCL festlegen"

#: codetoolsstrconsts.ctsdefinelclwidgetset
msgid "Define LCLwidgetset, e.g. LCLgtk"
msgstr "LCL-Widgetset definieren, z.B. LCLgtk"

#: codetoolsstrconsts.ctsdefinemacrocarbon1
msgid "Define macro carbon1"
msgstr "Carbon1-Makro angeben"

#: codetoolsstrconsts.ctsdefinemacrogtk1
msgid "Define macro gtk1"
msgstr "Gtk1-Makro angeben"

#: codetoolsstrconsts.ctsdefinemacrogtk2
msgid "Define macro gtk2"
msgstr "Gtk2-Makro angeben"

#: codetoolsstrconsts.ctsdefinemacroname
msgid "Define Macro %s"
msgstr "Makro %s angeben"

#: codetoolsstrconsts.ctsdefinemacroqt1
msgid "Define macro qt1"
msgstr "Definiere Makro qt1"

#: codetoolsstrconsts.ctsdefinemacrowince1
msgid "Define macro wince1"
msgstr "Definiere Makro wince1"

#: codetoolsstrconsts.ctsdefineprocessortype
msgid "Define processor type"
msgstr "Prozessortyp angeben"

#: codetoolsstrconsts.ctsdefsforlazarussources
msgid "Definitions for the Lazarus Sources"
msgstr "Definitionen für die Lazarus-Quellen"

#: codetoolsstrconsts.ctsdesignerdirectory
msgid "Designer Directory"
msgstr "Designer-Verzeichnis"

#: codetoolsstrconsts.ctsdesignerunitsdirectory
msgid "Designer Units"
msgstr "Designer-Units"

#: codetoolsstrconsts.ctsdircomponentdoesnotexistsorisdanglingsymlink
msgid "a directory component in %s does not exist or is a dangling symlink"
msgstr "ein Verzeichniseintrag in %s ist nicht vorhanden oder es ist ein toter Symlink"

#: codetoolsstrconsts.ctsdircomponentisnotdir
msgid "a directory component in %s is not a directory"
msgstr "ein Verzeichniseintrag in %s ist kein Verzeichnis"

#: codetoolsstrconsts.ctsdispidparameterexpectedbutatomfound
msgid "dispid parameter expected, but %s found"
msgstr "DispID-Parameter erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsdispidspecifierredefined
msgid "dispid specifier redefined"
msgstr "DispID-Bezeichner umdefiniert"

#: codetoolsstrconsts.ctsdoceditordirectory
msgid "Doc Editor Directory"
msgstr "Doc-Editor-Verzeichnis"

#: codetoolsstrconsts.ctsduplicateidentifier
msgid "duplicate identifier: %s"
msgstr "doppelter Bezeichner: %s"

#: codetoolsstrconsts.ctselse
msgid "else"
msgstr "else"

#: codetoolsstrconsts.ctsendforclassnotfound
msgid "\"end\" for class/object not found"
msgstr "\"end\" für Klasse/Objekt nicht gefunden"

#: codetoolsstrconsts.ctsendforrecordnotfound
msgid "end for record not found"
msgstr "End-Anweisung des Records nicht gefunden"

#: codetoolsstrconsts.ctsendoffile
msgid "end of file"
msgstr "Dateiende"

#: codetoolsstrconsts.ctsendofsourceexpectedbutatomfound
msgid "expected end., but %s found"
msgstr "\"End.\" erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsendofsourcenotfound
#| msgid "End of source not found"
msgid "End of source not found."
msgstr "Ende des Quelltexts nicht gefunden"

#: codetoolsstrconsts.ctsenumerationtype
msgid "enumeration type"
msgstr "Aufzählungstyp"

#: codetoolsstrconsts.ctserrorduringcreationofnewprocbodies
msgid "error during creation of new proc bodies"
msgstr "Fehler beim Generieren eines neuen Prozedur-Rumpfs"

#: codetoolsstrconsts.ctserrorduringinsertingnewclassparts
msgid "error during inserting new class parts"
msgstr "Fehler beim Einfügen eines neuen Klassenteils"

#: codetoolsstrconsts.ctserrorduringinsertingnewusessection
msgid "error during inserting new units to the main uses section"
msgstr "Fehler beim Einfügen neuer Units in den Haupt Uses-Bereich"

#: codetoolsstrconsts.ctserrorindirectiveexpression
msgid "error in directive expression"
msgstr "Fehler im Bezeichnerausdruck"

#: codetoolsstrconsts.ctserrorinparamlist
msgid "error in paramlist"
msgstr "Fehler in der Parameterliste"

#: codetoolsstrconsts.ctsexecuteaccessdeniedforfile
msgid "execute access denied for %s"
msgstr "ausführbarer Zugriff auf %s abgelehnt"

#: codetoolsstrconsts.ctsexpected
msgid "\"%s\" expected"
msgstr "\"%s\" erwartet"

#: codetoolsstrconsts.ctsexpectedamethodtypebutfound
msgid "expected a method type, but found %s"
msgstr ""

#: codetoolsstrconsts.ctsexpectedbutfound
msgid "expected (, but found %s"
msgstr "( erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsexpectedbutfound2
msgid "expected ), but found %s"
msgstr ") erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsexpectedbutfound3
msgid "expected :=, but %s found"
msgstr ":= erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsexpectedidentifierbutfound
msgid "expected identifier, but found %s"
msgstr "Bezeichner erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsexpectedsemicolonofstatementbutfound
msgid "expected ; of statement, but found %s"
msgstr ""

#: codetoolsstrconsts.ctsexportsclauseonlyallowedinlibraries
msgid "exports clause only allowed in libraries"
msgstr "Exports-Klausel nicht in Bibliotheken erlaubt"

#: codetoolsstrconsts.ctsexprtypemustbeclassorrecord
msgid "expression type must be class or record type"
msgstr "Typ des Ausdrucks muß eine Klasse oder ein Record sein"

#: codetoolsstrconsts.ctsfilehascircularsymlink
msgid "%s has a circular symbolic link"
msgstr "%s enthält einen zirkulären symbolischen Link"

#: codetoolsstrconsts.ctsfileisreadonly
msgid "file is read only"
msgstr "Datei ist schreibgeschützt"

#: codetoolsstrconsts.ctsforward
msgid "Forward"
msgstr "Vorwärts"

#: codetoolsstrconsts.ctsforwardclassdefinitionnotresolved
msgid "Forward class definition not resolved: %s"
msgstr "Vorwärts gerichtete Klassendefinition nicht aufgelöst: %s"

#: codetoolsstrconsts.ctsfpdocsystemon
msgid "enable FPDocSystem"
msgstr "Schalte FPDocSystem ein"

#: codetoolsstrconsts.ctsfreepascalcompilerinitialmacros
msgid "Free Pascal Compiler initial macros"
msgstr "Initiale Free-Pascal-Compiler-Makros"

#: codetoolsstrconsts.ctsfreepascalcomponentlibrary
msgid "Free Pascal Component Library"
msgstr "Free-Pascal-Komponentenbibliothek"

#: codetoolsstrconsts.ctsfreepascalsourcedir
msgid "Free Pascal Source Directory"
msgstr "Quelltextverzeichnis von Free Pascal"

#: codetoolsstrconsts.ctsfreepascalsourcesplusdesc
msgid "Free Pascal Sources, %s"
msgstr "Free-Pascal-Quellen, %s"

#: codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass
msgctxt "codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass"
msgid "function GetEnumerator not found in this class"
msgstr "Funktion GetEnumerator in dieser Klasse nicht gefunden"

#: codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass2
msgctxt "codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass2"
msgid "function GetEnumerator not found in this class"
msgstr "Funktion GetEnumerator in dieser Klasse nicht gefunden"

#: codetoolsstrconsts.ctsgenericidentifier
msgid "generic identifier"
msgstr "Allgemeine Bezeichner"

#: codetoolsstrconsts.ctsgtk2intfdirectory
msgid "gtk2 interface directory"
msgstr "Gtk-Interface-Verzeichnis"

#: codetoolsstrconsts.ctshaserror
msgid "HasError"
msgstr ""

#: codetoolsstrconsts.ctsidedirectory
msgid "IDE Directory"
msgstr "IDE-Verzeichnis"

#: codetoolsstrconsts.ctsideintfdirectory
msgid "IDEIntf Directory"
msgstr "IDEIntf-Verzeichnis"

#: codetoolsstrconsts.ctsidentexpectedbutatomfound
msgid "identifier expected, but %s found"
msgstr "Bezeichner erwartet, statt dessen %s gefunden"

#: codetoolsstrconsts.ctsidentexpectedbuteoffound
msgid "unexpected end of file (identifier expected)"
msgstr "unerwartetes Ende der Datei (Bezeichner erwartet)"

#: codetoolsstrconsts.ctsidentexpectedbutkeywordfound
msgid "identifier expected, but keyword %s found"
msgstr "Bezeichner erwartet, statt dessen Schlüsselwort %s gefunden"

#: codetoolsstrconsts.ctsidentifier
msgid "identifier"
msgstr "Bezeichner"

#: codetoolsstrconsts.ctsidentifieralreadydefined
msgid "Identifier %s already defined"
msgstr "Bezeichner %s ist bereits definiert"

#: codetoolsstrconsts.ctsidentifiernotfound
msgid "identifier not found: %s"
msgstr "Bezeichner nicht gefunden: %s"

#: codetoolsstrconsts.ctsifdefdarwin
msgid "IfDef Darwin"
msgstr ""

#: codetoolsstrconsts.ctsifdeflinux
msgid "IfDef Linux"
msgstr "IfDef Linux"

#: codetoolsstrconsts.ctsifdefwindows
msgid "IfDef Windows"
msgstr "IfDef Windows"

#: codetoolsstrconsts.ctsiflclwidgettypeequalsgtk2
msgid "If LCLWidgetType=gtk2 then"
msgstr "If LCLWidgetType=gtk2 then"

#: codetoolsstrconsts.ctsiftargetosisnotsrcos
msgid "If TargetOS<>SrcOS"
msgstr "If TargetOS<>SrcOS"

#: codetoolsstrconsts.ctsiftargetosisnotsrcos2
msgid "If TargetOS<>SrcOS2"
msgstr "If TargetOS<>SrcOS2"

#: codetoolsstrconsts.ctsiftargetosisnotwin32
msgid "If TargetOS<>win32 then"
msgstr "If TargetOS<>win32 then"

#: codetoolsstrconsts.ctsillegalcircleinusedunits
msgid "illegal circle using unit: %s"
msgstr "illegale Zirkuläreinbindung mit der Unir: %s"

#: codetoolsstrconsts.ctsillegalqualifier
msgid "illegal qualifier %s found"
msgstr "illegalen Bezeichner %s gefunden"

#: codetoolsstrconsts.ctsimplementationnodenotfound
msgid "implementation node not found"
msgstr "Implementationsknoten nicht gefunden"

#: codetoolsstrconsts.ctsincludecircledetected
msgid "Include circle detected"
msgstr "Zirkuläres Include ermittelt"

#: codetoolsstrconsts.ctsincludedirectoriesplusdirs
msgid "include directories: %s"
msgstr "Eingebundene Ordner: %s"

#: codetoolsstrconsts.ctsincludefilenotfound
msgid "include file not found \"%s\""
msgstr "Include-Datei nicht gefunden \"%s\""

#: codetoolsstrconsts.ctsincompatibletypesgotexpected
msgid "incompatibles types: expected \"%s\" but got \"%s\""
msgstr "inkompatible Typen: \"%s\" erwartet aber \"%s\" erhalten"

#: codetoolsstrconsts.ctsindexparameterexpectedbutatomfound
msgid "index parameter expected, but %s found"
msgstr "Indexparameter erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsindexspecifierredefined
msgid "index specifier redefined"
msgstr "Indexangabe redefiniert"

#: codetoolsstrconsts.ctsinheritedkeywordonlyallowedinmethods
msgid "inherited keyword only allowed in methods"
msgstr "Das Schlüsselwort \"inherited\" ist nur in Methoden zulässig"

#: codetoolsstrconsts.ctsinstalldirectory
msgid "Install Directory"
msgstr "Installationsverzeichnis"

#: codetoolsstrconsts.ctsinstallerdirectories
msgid "Installer directories"
msgstr "Installer-Verzeichnisse"

#: codetoolsstrconsts.ctsinsufficientmemory
msgid "insufficient memory"
msgstr "zu wenig Speicher"

#: codetoolsstrconsts.ctsinterfacesectionnotfound
msgid "interface section not found"
msgstr "Interface-Abschnitt nicht gefunden"

#: codetoolsstrconsts.ctsintfdirectory
msgid "interface directory"
msgstr "Interface-Verzeichnis"

#: codetoolsstrconsts.ctsinvalidclassname
msgid "invalid class name=%s%s%s"
msgstr "ungültiger Klassenname=%s%s%s"

#: codetoolsstrconsts.ctsinvalidclassname2
msgid "invalid class name %s%s%s"
msgstr "ungültiger Klassenname %s%s%s"

#: codetoolsstrconsts.ctsinvalidflagvaluefordirective
msgid "invalid flag value \"%s\" for directive %s"
msgstr "ungültiges Flag \"%s\" bei Direktive %s"

#: codetoolsstrconsts.ctsinvalidmode
msgid "invalid mode \"%s\""
msgstr "ungültiger Mode \"%s\""

#: codetoolsstrconsts.ctsinvalidmodeswitch
msgid "invalid mode switch \"%s\""
msgstr "Ungültiger Modus-Schalter \"%s\""

#: codetoolsstrconsts.ctsinvalidoperator
msgid "invalid operator %s"
msgstr "ungültger Operator %s"

#: codetoolsstrconsts.ctsinvalidsubrange
msgid "invalid subrange"
msgstr "ungültiger Teilbereich"

#: codetoolsstrconsts.ctsinvalidtype
msgid "invalid type"
msgstr "ungültiger Typ"

#: codetoolsstrconsts.ctsinvalidvariablename
msgid "invalid variable name %s%s%s"
msgstr "ungültiger Variablenname %s%s%s"

#: codetoolsstrconsts.ctsinvalidvariabletype
msgid "invalid variable type %s%s%s"
msgstr "ungültiger Variablentyp %s%s%s"

#: codetoolsstrconsts.ctsjitformdirectory
msgid "JITForm Directory"
msgstr "JITForm-Verzeichnis"

#: codetoolsstrconsts.ctskeyword
msgid "keyword"
msgstr "Schlüsselwort"

#: codetoolsstrconsts.ctskeywordexampleexpectedbutatomfound
msgid "keyword (e.g. %s) expected, but %s found"
msgstr "Schlüsselwort (z.B. %s) erwartet aber %s gefunden"

#: codetoolsstrconsts.ctskeywordin
msgid "keyword \"in\""
msgstr "Schlüsselwort \"in\""

#: codetoolsstrconsts.ctslazarusmaindirectory
msgid "lazarus main directory"
msgstr "Lazarus-Hauptverzeichnis"

#: codetoolsstrconsts.ctslazarussources
msgid "Lazarus Sources"
msgstr "Lazarus-Quellen"

#: codetoolsstrconsts.ctsmethodname
msgid "method name"
msgstr "Methodenname"

#: codetoolsstrconsts.ctsmethodsignaturesnotfoundinclass
msgid "Method signature %s not found in class"
msgstr "Methodensignatur nicht in Klasse gefunden"

#: codetoolsstrconsts.ctsmethodtypedefinitionnotfound
msgid "method type definition not found"
msgstr "Methodentypdefinition nicht gefunden"

#: codetoolsstrconsts.ctsmissing
msgid "missing :="
msgstr "fehlendes :="

#: codetoolsstrconsts.ctsmissingenumlist
msgid "missing enum list"
msgstr "Fehlende Aufzählungsliste"

#: codetoolsstrconsts.ctsmissingpointafterend
msgid "missing . after end"
msgstr "fehlender Punkt nach end"

#: codetoolsstrconsts.ctsmissingtypeidentifier
msgid "missing type identifier"
msgstr "fehlender Typ-Bezeichner"

#: codetoolsstrconsts.ctsnameddirectory
msgid "%s Directory"
msgstr "Verzeichnis %s"

#: codetoolsstrconsts.ctsnamedproject
msgid "%s Project"
msgstr "Projekt %s"

#: codetoolsstrconsts.ctsneededbymode
msgid " (needed by mode \"%s\")"
msgstr " (benötigt von Modus \"%s\")"

#: codetoolsstrconsts.ctsnesteddefinitionsarenotallowed
msgid "Nested %s definitions are not allowed"
msgstr "Geschachtelte %s-Definitionen sind nicht zulässig"

#: codetoolsstrconsts.ctsnewprocbodynotfound
msgid "new proc body not found"
msgstr "neuen Prozedur-Rumpf nicht gefunden"

#: codetoolsstrconsts.ctsnocontextnodefoundatcursor
msgid "no context node found at cursor"
msgstr "kein Kontext-Knoten an der Cursorposition gefunden"

#: codetoolsstrconsts.ctsnodefaultspecifierdefinedtwice
msgid "nodefault specifier defined twice"
msgstr "Nicht-Default-Bezeichner doppelt definiert"

#: codetoolsstrconsts.ctsnopascalcodefound
msgid "no pascal code found (first token is %s)"
msgstr "kein Pascal-Quelltext gefunden (erster Token ist %s)"

#: codetoolsstrconsts.ctsnoscanneravailable
msgid "No scanner available"
msgstr "Kein Scanner verfügbar"

#: codetoolsstrconsts.ctsnoscannerfound
msgid "No scanner found for \"%s\". If this is an include file, please open the main source first."
msgstr "Kein Scanner für \"%s\" gefunden. Wenn das eine Include-Datei ist, öffnen Sie bitte zuerst die Haupt-Quelltextdatei."

#: codetoolsstrconsts.ctsnotenoughgenparams
msgid "Not enough actual generic parameters"
msgstr ""

#: codetoolsstrconsts.ctsoldmethodnotfound
msgid "old method not found: %s"
msgstr "alte Methode nicht gefunden: %s"

#: codetoolsstrconsts.ctsoperandexpectedbutfound
msgid "operand expected but %s found"
msgstr "Operand erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsoperandexpectedbutfound2
msgid "operand expected, but %s found"
msgstr "Operand erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsoperatorexpectedbutatomfound
msgctxt "codetoolsstrconsts.ctsoperatorexpectedbutatomfound"
msgid "operator expected, but %s found"
msgstr "Operator erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsoperatorexpectedbuteoffound
msgid "unexpected end of file (operator expected)"
msgstr ""

#: codetoolsstrconsts.ctsoperatorexpectedbutfound
msgid "operator expected but %s found"
msgstr "Operator erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsoperatorexpectedbutfound2
msgctxt "codetoolsstrconsts.ctsoperatorexpectedbutfound2"
msgid "operator expected, but %s found"
msgstr "Operator erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctsothercompilerdefines
msgid "%s Compiler Defines"
msgstr "Compilerschalter %s"

#: codetoolsstrconsts.ctspackagedirectories
msgid "Package directories"
msgstr "Package-Verzeichnisse"

#: codetoolsstrconsts.ctspackagerdirectory
msgid "Packager Directory"
msgstr "Packager-Verzeichnis"

#: codetoolsstrconsts.ctspackagerregistrationdirectory
msgid "Packager Registration Directory"
msgstr "Packager-Registrierungsverzeichnis"

#: codetoolsstrconsts.ctspackagerunitsdirectory
msgid "Packager Units Directory"
msgstr "Packager-Units-Verzeichnis"

#: codetoolsstrconsts.ctspointhintprocstartat
msgid ".  Hint: proc start at "
msgstr ". Hinweis: Prozedurstart bei"

#: codetoolsstrconsts.ctspointstartat
msgid ". start at "
msgstr ". Start bei"

#: codetoolsstrconsts.ctspositionnotinsource
msgid "Position not in source"
msgstr "Stelle nicht im Quelltext"

#: codetoolsstrconsts.ctsprocedureorfunctionorconstructorordestructor
msgid "procedure or function or constructor or destructor"
msgstr "Prozedur, Funktion, Konstruktor oder Destruktor"

#: codetoolsstrconsts.ctsprocessorspecific
msgid "processor specific"
msgstr "prozessorspezifisch"

#: codetoolsstrconsts.ctsproperttypeexpectedbutatomfound
msgid "property type expected, but %s found"
msgstr "Eigenschaftentyp erwartet aber %s gefunden"

#: codetoolsstrconsts.ctspropertycurrentnotfound
msgid "property Current not found"
msgstr "Eigenschaft Current nicht gefunden"

#: codetoolsstrconsts.ctspropertyspecifieralreadydefined
msgid "property specifier already defined: %s"
msgstr "Eigenschaftenbeschreiber bereits definiert: %s"

#: codetoolsstrconsts.ctsqualifierexpectedbutatomfound
msgid "qualifier expected but %s found"
msgstr "Qualifizierer erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsresetalldefines
msgid "Reset all defines"
msgstr "Alle Angaben zurücksetzen"

#: codetoolsstrconsts.ctsresulttypeoffunctiongetenumeratornotfound
msgid "result type of function GetEnumerator not found"
msgstr "Ergebnistype der Funktion GetEnumerator nicht gefunden"

#: codetoolsstrconsts.ctsruntimelibrary
msgid "Runtime library"
msgstr "Laufzeitbibliothek"

#: codetoolsstrconsts.ctsscannedfiles
msgid "Scanned files: %s"
msgstr "Gescannte Dateien: 5s"

#: codetoolsstrconsts.ctssemicolonafterpropspecmissing
msgid "; expected after \"%s\" property specifier, but %s found"
msgstr "; nach dem Eigenschaftenbeschreiber \"%s\" erwartet aber %s gefunden"

#: codetoolsstrconsts.ctssemicolonnotfound
msgid "semicolon not found"
msgstr "Strichpunkt nicht gefunden"

#: codetoolsstrconsts.ctssetsincpathto
msgid "sets IncPath to %s"
msgstr "setzt IncPath auf %s"

#: codetoolsstrconsts.ctssetssrcpathto
msgid "sets SrcPath to %s"
msgstr "setzt SrcPath auf %s"

#: codetoolsstrconsts.ctssourcefilenamesforstandardfpcunits
msgid "Source filenames for the standard fpc units"
msgstr "Quelldateinamen der Standard-FPC-Units"

#: codetoolsstrconsts.ctssourceisnotunit
msgid "source is not unit"
msgstr "Quelle ist keine Unit"

#: codetoolsstrconsts.ctssourcenotfoundunit
#| msgid "source not found: unit %s"
msgid "source not found: unit %s. Check your FPC source directory."
msgstr "Quelltext nicht gefunden: Unit %s. Überprüfen Sie das FPC-Quelltextverzeichnis."

#: codetoolsstrconsts.ctssourceofunitnotfound
msgid "source of unit not found: %s"
msgstr "Quelle der Unit nicht gefunden: %s"

#: codetoolsstrconsts.ctssrcpathforcompiledunits
msgid "src path for compiled units"
msgstr "Quellpfad für kompilierte Units"

#: codetoolsstrconsts.ctssrcpathinitialization
msgid "SrcPath Initialization"
msgstr "Quellpfad-Initialisierung"

#: codetoolsstrconsts.ctsstrexpectedbutatomfound
#, fuzzy
#| msgid "%s expected, but %s found"
msgid "expected %s, but %s found"
msgstr "%s erwartet aber %s gefunden"

#: codetoolsstrconsts.ctsstringconstant
msgid "string constant"
msgstr "Zeichenkettenkonstante"

#: codetoolsstrconsts.ctssyntaxerrorinexpr
msgid "Syntax Error in expression \"%s\""
msgstr "Syntaxfehler im Ausdruck \"%s\""

#: codetoolsstrconsts.ctstcodetoolmanagerconsistencycheck
msgid "TCodeToolManager.ConsistencyCheck=%d"
msgstr "TCodeToolManager.ConsistencyCheck=%d"

#: codetoolsstrconsts.ctstermnotsimple
msgid "Term has no simple type"
msgstr "Term besitzt keinen einfachen Typ"

#: codetoolsstrconsts.ctsthenexpectedbutfound
msgid "then expected, but %s found"
msgstr "then erwartet, aber %s gefunden"

#: codetoolsstrconsts.ctstoolsdirectory
msgid "Tools Directory"
msgstr "Tools-Verzeichnis"

#: codetoolsstrconsts.ctstype
msgid "type"
msgstr "Typ"

#: codetoolsstrconsts.ctstypeidentifier
msgid "type identifier"
msgstr "Typbezeichner"

#: codetoolsstrconsts.ctstypeisonlyallowedingenericsendofclassnotfound
msgid "type is only allowed in generics, end of class not found"
msgstr "type ist nur in Generics erlaubt, Ende der Klasse nicht gefunden"

#: codetoolsstrconsts.ctstypesectionofclassnotfound
msgid "type section of class not found"
msgstr "Typabschnitt der Klasse nicht gefunden"

#: codetoolsstrconsts.ctsunabletoapplychanges
msgid "unable to apply changes"
msgstr "kann Änderungen nicht übernehmen"

#: codetoolsstrconsts.ctsunabletocompleteproperty
msgid "unable to complete property"
msgstr "kann Eigenschaft nicht ergänzen"

#: codetoolsstrconsts.ctsundefine
msgid "Undefine "
msgstr "Nicht definiert"

#: codetoolsstrconsts.ctsunexpectedendofsource
msgid "unexpected end of source"
msgstr "unerwartetes Ende des Quelltexts"

#: codetoolsstrconsts.ctsunexpectedkeyword
msgid "unexpected keyword \"%s\""
msgstr "unerwartetes Schlüsselwort \"%s\""

#: codetoolsstrconsts.ctsunexpectedkeyword2
msgid "unexpected keyword %s"
msgstr "unerwartetes Schlüsselwort %s"

#: codetoolsstrconsts.ctsunexpectedkeywordinasmblock
msgid "unexpected keyword \"%s\" in asm block found"
msgstr "unerwartetes Schlüsselwort \"%s\" im ASM-Block gefunden"

#: codetoolsstrconsts.ctsunexpectedkeywordinbeginendblock
msgid "unexpected keyword \"%s\" in begin..end found"
msgstr "unerwartetes Schlüsselwort \"%s\" in Begin..End gefunden"

#: codetoolsstrconsts.ctsunexpectedkeywordwhilereadingbackwards
msgid "unexpected keyword \"%s\" found while reading blocks backwards"
msgstr "unerwartetes Schlüsselwort \"%s\" beim Rückwärtslesen der Blocks gefunden"

#: codetoolsstrconsts.ctsunexpectedsubrangeoperatorfound
msgid "unexpected subrange operator '..' found"
msgstr "ungültigen Unterbereichsoperator '..' gefunden"

#: codetoolsstrconsts.ctsunitnotfound
msgid "unit not found: %s"
msgstr "Unit nicht gefunden: %s"

#: codetoolsstrconsts.ctsunitpathinitialization
msgid "UnitPath Initialization"
msgstr "Unitpfad-Initialisierung"

#: codetoolsstrconsts.ctsunknownfunction
msgid "Unknown function %s"
msgstr "Unbekannte Funktion %s"

#: codetoolsstrconsts.ctsunknownmainfilename
msgid "(unknown mainfilename)"
msgstr "(unbekannter Hauptdateiname)"

#: codetoolsstrconsts.ctsunknownsectionkeyword
msgid "unknown section keyword %s found"
msgstr "ungültiges Bereichsschlüsselwort %s gefunden"

#: codetoolsstrconsts.ctsunknownsubdescriptor
msgid "(unknown subdescriptor %s)"
msgstr "(unbekannter Subdescriptor %s)"

#: codetoolsstrconsts.ctsunparsed
msgid "Unparsed"
msgstr "Ungeparst"

#: codetoolsstrconsts.ctsusedunitisnotapascalunit
msgid "used unit is not a pascal unit"
msgstr "die verwendete Unit ist keine Pascal-Unit"

#: codetoolsstrconsts.ctsutilsdirectories
msgid "Utils directories"
msgstr "Utils-Verzeichnis"

#: codetoolsstrconsts.ctsvarisonlyallowedingenericsendofclassnotfound
msgid "var is only allowed in generics, end of class not found"
msgstr "var ist nur in Generics erlaubt, Ende der Klasse nicht gefunden"

#: codetoolsstrconsts.ctswidgetdirectory
msgid "Widget Directory"
msgstr "Widget-Verzeichnis"

#: codetoolsstrconsts.ctswordnotfound
msgid "\"%s\" not found"
msgstr "\"%s\" nicht gefunden"