File: codetoolsstrconsts.pot

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (966 lines) | stat: -rw-r--r-- 22,949 bytes parent folder | download | duplicates (3)
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 ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

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

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

#: codetoolsstrconsts.crsclosingbracketnotfound
msgid "closing bracket not found"
msgstr ""

#: codetoolsstrconsts.crsfoundunexpectedat
#, object-pascal-format
msgid "%s, found unexpected %s at %s"
msgstr ""

#: codetoolsstrconsts.crsrecordendnotfound
msgid "record end not found"
msgstr ""

#: codetoolsstrconsts.ctsaddsdirtoincludepath
#, object-pascal-format
msgid "adds %s to IncPath"
msgstr ""

#: codetoolsstrconsts.ctsaddsdirtosourcepath
#, object-pascal-format
msgid "adds %s to SrcPath"
msgstr ""

#: codetoolsstrconsts.ctsancestorisnotproperty
msgid "ancestor of untyped property is not a property"
msgstr ""

#: codetoolsstrconsts.ctsanlclproject
msgid "an LCL project"
msgstr ""

#: codetoolsstrconsts.ctsanonymdefinitionsarenotallowed
#, object-pascal-format
msgid "Anonymous %s definitions are not allowed"
msgstr ""

#: codetoolsstrconsts.ctsawithoutb
#, object-pascal-format
msgid "%s without %s"
msgstr ""

#: codetoolsstrconsts.ctsbasetypeofnotfound
#, object-pascal-format
msgid "base type of \"%s\" not found"
msgstr ""

#: codetoolsstrconsts.ctsbeginatwithoutend
#, object-pascal-format
msgid "begin at %s without end"
msgstr ""

#: codetoolsstrconsts.ctsbinaryoperator
msgid "binary operator"
msgstr ""

#: codetoolsstrconsts.ctsbracketcloseexpectedbutatomfound
#, object-pascal-format
msgid "bracket close expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsbracketnotfound
#, object-pascal-format
msgid "bracket %s not found"
msgstr ""

#: codetoolsstrconsts.ctsbracketopenexpectedbutatomfound
#, object-pascal-format
msgid "bracket open expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctscannotaddaunittotheimplementationbecauseonlyaunith
msgid "cannot add a unit to the implementation, because only a unit has one"
msgstr ""

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

#: codetoolsstrconsts.ctscircleindefinitions
msgid "circle in definitions"
msgstr ""

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

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

#: codetoolsstrconsts.ctsclassnotfound
#, object-pascal-format
msgid "class \"%s\" not found"
msgstr ""

#: codetoolsstrconsts.ctsclassnotfound2
#, object-pascal-format
msgid "class not found \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsclassofdefinitionnotresolved
#, object-pascal-format
msgid "\"class of\" definition not resolved: %s"
msgstr ""

#: codetoolsstrconsts.ctsclasssnotfound
#, object-pascal-format
msgid "Class %s not found"
msgstr ""

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

#: codetoolsstrconsts.ctscommandlineparameters
msgid "Command line parameters"
msgstr ""

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

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

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

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

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

#: codetoolsstrconsts.ctscursorposoutsideofcode
msgid "cursor pos outside of code"
msgstr ""

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

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

#: codetoolsstrconsts.ctsdefaultancestornotfound
#, object-pascal-format
msgid "default ancestor %s not found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultclassancestortobjectnotfound
msgid "default class ancestor TObject not found"
msgstr ""

#: 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 ""

#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
msgid "Default fpc target Operating System"
msgstr ""

#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
msgid "Default fpc target processor"
msgstr ""

#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
msgid "default interface ancestor IInterface not found"
msgstr ""

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

#: codetoolsstrconsts.ctsdefaultparameterexpectedbutatomfound
#, object-pascal-format
msgid "default parameter expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultpropertynotfound
msgid "default property not found"
msgstr ""

#: codetoolsstrconsts.ctsdefaultspecifierredefined
msgid "default specifier redefined"
msgstr ""

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

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

#: codetoolsstrconsts.ctsdefinelclwidgetset
msgid "Define LCLwidgetset, e.g. LCLgtk"
msgstr ""

#: codetoolsstrconsts.ctsdefinemacroname
#, object-pascal-format
msgid "Define Macro %s"
msgstr ""

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

#: codetoolsstrconsts.ctsdefsforlazarussources
msgid "Definitions for the Lazarus Sources"
msgstr ""

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

#: codetoolsstrconsts.ctsdispidparameterexpectedbutatomfound
#, object-pascal-format
msgid "dispid parameter expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsdispidspecifierredefined
msgid "dispid specifier redefined"
msgstr ""

#: codetoolsstrconsts.ctsduplicateidentifier
#, object-pascal-format
msgid "duplicate identifier: %s"
msgstr ""

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

#: codetoolsstrconsts.ctsendforclassnotfound
msgid "\"end\" for class/object not found"
msgstr ""

#: codetoolsstrconsts.ctsendforrecordnotfound
msgid "end for record not found"
msgstr ""

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

#: codetoolsstrconsts.ctsendofsourceexpectedbutatomfound
#, object-pascal-format
msgid "expected end., but %s found"
msgstr ""

#: codetoolsstrconsts.ctsendofsourcenotfound
msgid "End of source not found."
msgstr ""

#: codetoolsstrconsts.ctsenumerationtype
msgid "enumeration type"
msgstr ""

#: codetoolsstrconsts.ctserrorduringcreationofnewprocbodies
msgid "error during creation of new proc bodies"
msgstr ""

#: codetoolsstrconsts.ctserrorduringinsertingnewclassparts
msgid "error during inserting new class parts"
msgstr ""

#: codetoolsstrconsts.ctserrorduringinsertingnewusessection
msgid "error during inserting new units to the main uses section"
msgstr ""

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

#: codetoolsstrconsts.ctserrorinparamlist
msgid "error in paramlist"
msgstr ""

#: codetoolsstrconsts.ctsexpected
#, object-pascal-format
msgid "\"%s\" expected"
msgstr ""

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

#: codetoolsstrconsts.ctsexpectedbutfound
#, object-pascal-format
msgid "expected (, but found %s"
msgstr ""

#: codetoolsstrconsts.ctsexpectedbutfound2
#, object-pascal-format
msgid "expected ), but found %s"
msgstr ""

#: codetoolsstrconsts.ctsexpectedbutfound3
#, object-pascal-format
msgid "expected :=, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsexpectedidentifierbutfound
#, object-pascal-format
msgid "expected identifier, but found %s"
msgstr ""

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

#: codetoolsstrconsts.ctsexportsclauseonlyallowedinlibraries
msgid "exports clause only allowed in libraries"
msgstr ""

#: codetoolsstrconsts.ctsexprtypemustbeclassorrecord
msgid "expression type must be class or record type"
msgstr ""

#: codetoolsstrconsts.ctsfileisreadonly
msgid "file is read only"
msgstr ""

#: codetoolsstrconsts.ctsforward
msgid "Forward"
msgstr ""

#: codetoolsstrconsts.ctsforwardclassdefinitionnotresolved
#, object-pascal-format
msgid "Forward class definition not resolved: %s"
msgstr ""

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

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

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

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

#: codetoolsstrconsts.ctsfreepascalsourcesplusdesc
#, object-pascal-format
msgid "Free Pascal Sources, %s"
msgstr ""

#: codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass
msgctxt "codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass"
msgid "function GetEnumerator not found in this class"
msgstr ""

#: codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass2
msgctxt "codetoolsstrconsts.ctsfunctiongetenumeratornotfoundinthisclass2"
msgid "function GetEnumerator not found in this class"
msgstr ""

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

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

#: codetoolsstrconsts.ctshelperisnotallowed
#, object-pascal-format
msgid "Helper after %s is not allowed"
msgstr ""

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

#: codetoolsstrconsts.ctsidentexpectedbutatomfound
#, object-pascal-format
msgid "identifier expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsidentexpectedbuteoffound
msgid "unexpected end of file (identifier expected)"
msgstr ""

#: codetoolsstrconsts.ctsidentexpectedbutkeywordfound
#, object-pascal-format
msgid "identifier expected, but keyword %s found"
msgstr ""

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

#: codetoolsstrconsts.ctsidentifieralreadydefined
#, object-pascal-format
msgid "Identifier %s already defined"
msgstr ""

#: codetoolsstrconsts.ctsidentifiernotfound
#, object-pascal-format
msgid "identifier not found: %s"
msgstr ""

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

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

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

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

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

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

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

#: codetoolsstrconsts.ctsillegalcircleinusedunits
#, object-pascal-format
msgid "illegal circle using unit: %s"
msgstr ""

#: codetoolsstrconsts.ctsillegalqualifier
#, object-pascal-format
msgid "illegal qualifier %s found"
msgstr ""

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

#: codetoolsstrconsts.ctsincludecircledetected
msgid "Include circle detected"
msgstr ""

#: codetoolsstrconsts.ctsincludedirectoriesplusdirs
#, object-pascal-format
msgid "include directories: %s"
msgstr ""

#: codetoolsstrconsts.ctsincludefilenotfound
#, object-pascal-format
msgid "include file not found \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsincompatibletypesgotexpected
#, object-pascal-format
msgid "incompatibles types: expected \"%s\" but got \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsindexparameterexpectedbutatomfound
#, object-pascal-format
msgid "index parameter expected, but %s found"
msgstr ""

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

#: codetoolsstrconsts.ctsinheritedkeywordonlyallowedinmethods
msgid "inherited keyword only allowed in methods"
msgstr ""

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

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

#: codetoolsstrconsts.ctsinterfacesectionnotfound
msgid "interface section not found"
msgstr ""

#: codetoolsstrconsts.ctsinvalidclassname
#, object-pascal-format
msgid "invalid class name=\"%s\""
msgstr ""

#: codetoolsstrconsts.ctsinvalidclassname2
#, object-pascal-format
msgid "invalid class name \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsinvalidflagvaluefordirective
#, object-pascal-format
msgid "invalid flag value \"%s\" for directive %s"
msgstr ""

#: codetoolsstrconsts.ctsinvalidmode
#, object-pascal-format
msgid "invalid mode \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsinvalidoperator
#, object-pascal-format
msgid "invalid operator %s"
msgstr ""

#: codetoolsstrconsts.ctsinvalidpositionforinsertionofstatements
msgid "invalid position for insertion of statements"
msgstr ""

#: codetoolsstrconsts.ctsinvalidsubrange
msgid "invalid subrange"
msgstr ""

#: codetoolsstrconsts.ctsinvalidtype
msgid "invalid type"
msgstr ""

#: codetoolsstrconsts.ctsinvalidvariablename
#, object-pascal-format
msgid "invalid variable name \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsinvalidvariabletype
#, object-pascal-format
msgid "invalid variable type \"%s\""
msgstr ""

#: codetoolsstrconsts.ctskeyword
msgid "keyword"
msgstr ""

#: codetoolsstrconsts.ctskeywordexampleexpectedbutatomfound
#, object-pascal-format
msgid "keyword (e.g. %s) expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctskeywordin
msgid "keyword \"in\""
msgstr ""

#: codetoolsstrconsts.ctslazarusmaindirectory
msgid "lazarus main directory"
msgstr ""

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

#: codetoolsstrconsts.ctsmethodhasnodeclaration
#, object-pascal-format
msgid "method \"%s\" has no declaration"
msgstr ""

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

#: codetoolsstrconsts.ctsmethodsignaturesnotfoundinclass
#, object-pascal-format
msgid "Method signature %s not found in class"
msgstr ""

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

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

#: codetoolsstrconsts.ctsmissingenumlist
msgid "missing enum list"
msgstr ""

#: codetoolsstrconsts.ctsmissingpointafterend
msgid "missing . after end"
msgstr ""

#: codetoolsstrconsts.ctsmissingtypeidentifier
msgid "missing type identifier"
msgstr ""

#: codetoolsstrconsts.ctsnameddirectory
#, object-pascal-format
msgid "%s Directory"
msgstr ""

#: codetoolsstrconsts.ctsnamedproject
#, object-pascal-format
msgid "%s Project"
msgstr ""

#: codetoolsstrconsts.ctsneededbymode
#, object-pascal-format
msgid " (needed by mode \"%s\")"
msgstr ""

#: codetoolsstrconsts.ctsnesteddefinitionsarenotallowed
#, object-pascal-format
msgid "Nested %s definitions are not allowed"
msgstr ""

#: codetoolsstrconsts.ctsnewprocbodynotfound
msgid "new proc body not found"
msgstr ""

#: codetoolsstrconsts.ctsnocontextnodefoundatcursor
msgid "no context node found at cursor"
msgstr ""

#: codetoolsstrconsts.ctsnodefaultspecifierdefinedtwice
msgid "nodefault specifier defined twice"
msgstr ""

#: codetoolsstrconsts.ctsnopascalcodefound
#, object-pascal-format
msgid "no pascal code found (first token is %s)"
msgstr ""

#: codetoolsstrconsts.ctsnoscanneravailable
msgid "No scanner available"
msgstr ""

#: codetoolsstrconsts.ctsnoscannerfound
#, object-pascal-format
msgid "No scanner found for \"%s\". If this is an include file, please open the main source first."
msgstr ""

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

#: codetoolsstrconsts.ctsoldmethodnotfound
#, object-pascal-format
msgid "old method not found: %s"
msgstr ""

#: codetoolsstrconsts.ctsoperandexpectedbutfound
#, object-pascal-format
msgid "operand expected but %s found"
msgstr ""

#: codetoolsstrconsts.ctsoperandexpectedbutfound2
#, object-pascal-format
msgid "operand expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsoperatorexpectedbutatomfound
#, object-pascal-format
msgctxt "codetoolsstrconsts.ctsoperatorexpectedbutatomfound"
msgid "operator expected, but %s found"
msgstr ""

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

#: codetoolsstrconsts.ctsoperatorexpectedbutfound
#, object-pascal-format
msgid "operator expected but %s found"
msgstr ""

#: codetoolsstrconsts.ctsoperatorexpectedbutfound2
#, object-pascal-format
msgctxt "codetoolsstrconsts.ctsoperatorexpectedbutfound2"
msgid "operator expected, but %s found"
msgstr ""

#: codetoolsstrconsts.ctsothercompilerdefines
#, object-pascal-format
msgid "%s Compiler Defines"
msgstr ""

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

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

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

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

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

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

#: codetoolsstrconsts.ctspositionnotinsource
msgid "Position not in source"
msgstr ""

#: codetoolsstrconsts.ctsprocedureorfunctionorconstructorordestructor
msgid "procedure or function or constructor or destructor"
msgstr ""

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

#: codetoolsstrconsts.ctsproperttypeexpectedbutatomfound
#, object-pascal-format
msgid "property type expected, but %s found"
msgstr ""

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

#: codetoolsstrconsts.ctspropertyspecifieralreadydefined
#, object-pascal-format
msgid "property specifier already defined: %s"
msgstr ""

#: codetoolsstrconsts.ctsqualifierexpectedbutatomfound
#, object-pascal-format
msgid "qualifier expected but %s found"
msgstr ""

#: codetoolsstrconsts.ctsresetalldefines
msgid "Reset all defines"
msgstr ""

#: codetoolsstrconsts.ctsresulttypeoffunctiongetenumeratornotfound
msgid "result type of function GetEnumerator not found"
msgstr ""

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

#: codetoolsstrconsts.ctsscannedfiles
#, object-pascal-format
msgid "Scanned files: %s"
msgstr ""

#: codetoolsstrconsts.ctssemicolonafterpropspecmissing
#, object-pascal-format
msgid "; expected after \"%s\" property specifier, but %s found"
msgstr ""

#: codetoolsstrconsts.ctssemicolonnotfound
msgid "semicolon not found"
msgstr ""

#: codetoolsstrconsts.ctssetsincpathto
#, object-pascal-format
msgid "sets IncPath to %s"
msgstr ""

#: codetoolsstrconsts.ctssetssrcpathto
#, object-pascal-format
msgid "sets SrcPath to %s"
msgstr ""

#: codetoolsstrconsts.ctssourcefilenamesforstandardfpcunits
msgid "Source filenames for the standard fpc units"
msgstr ""

#: codetoolsstrconsts.ctssourceisnotunit
msgid "source is not unit"
msgstr ""

#: codetoolsstrconsts.ctssourcenotfoundunit
#, object-pascal-format
msgid "source not found: unit %s. Check your FPC source directory."
msgstr ""

#: codetoolsstrconsts.ctssrcpathinitialization
msgid "SrcPath Initialization"
msgstr ""

#: codetoolsstrconsts.ctsstrexpectedbutatomfound
#, object-pascal-format
msgid "expected %s, but %s found"
msgstr ""

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

#: codetoolsstrconsts.ctssyntaxerrorinexpr
#, object-pascal-format
msgid "Syntax Error in expression \"%s\""
msgstr ""

#: codetoolsstrconsts.ctstermnotsimple
msgid "Term has no simple type"
msgstr ""

#: codetoolsstrconsts.ctsthenexpectedbutfound
#, object-pascal-format
msgid "then expected, but %s found"
msgstr ""

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

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

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

#: codetoolsstrconsts.ctstypeisonlyallowedingenericsendofclassnotfound
msgid "type is only allowed in generics, end of class not found"
msgstr ""

#: codetoolsstrconsts.ctstypesectionofclassnotfound
msgid "type section of class not found"
msgstr ""

#: codetoolsstrconsts.ctsunabletoapplychanges
msgid "unable to apply changes"
msgstr ""

#: codetoolsstrconsts.ctsunabletocompleteproperty
msgid "unable to complete property"
msgstr ""

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

#: codetoolsstrconsts.ctsunexpectedendofsource
msgid "unexpected end of source"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeyword
#, object-pascal-format
msgid "unexpected keyword \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeyword2
#, object-pascal-format
msgid "unexpected keyword %s"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeywordinasmblock
#, object-pascal-format
msgid "unexpected keyword \"%s\" in asm block found"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeywordinbeginendblock
#, object-pascal-format
msgid "unexpected keyword \"%s\" in begin..end found"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeywordwhilereadingbackwards
#, object-pascal-format
msgid "unexpected keyword \"%s\" found while reading blocks backwards"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedsectionkeyword
#, object-pascal-format
msgid "unexpected section keyword %s found"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedsubrangeoperatorfound
msgid "unexpected subrange operator '..' found"
msgstr ""

#: codetoolsstrconsts.ctsunitnotfound
#, object-pascal-format
msgid "unit not found: %s"
msgstr ""

#: codetoolsstrconsts.ctsunitpathinitialization
msgid "UnitPath Initialization"
msgstr ""

#: codetoolsstrconsts.ctsunknownfunction
#, object-pascal-format
msgid "Unknown function %s"
msgstr ""

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

#: codetoolsstrconsts.ctsunknownsubdescriptor
#, object-pascal-format
msgid "(unknown subdescriptor %s)"
msgstr ""

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

#: codetoolsstrconsts.ctsusedunitisnotapascalunit
msgid "used unit is not a pascal unit"
msgstr ""

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

#: codetoolsstrconsts.ctsvarisonlyallowedingenericsendofclassnotfound
msgid "var is only allowed in generics, end of class not found"
msgstr ""

#: codetoolsstrconsts.ctswordnotfound
#, object-pascal-format
msgid "\"%s\" not found"
msgstr ""