File: codetoolsstrconsts.id.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-- 28,045 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: Lazarus Code Tools v1.x\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2007-09-22 22:39+0700\n"
"Last-Translator: Zaenal Mutaqin <ade999@gmail.com>\n"
"Language-Team: Zaenal Mutaqin <ade999@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Country: INDONESIA\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
msgid "%s, found unexpected %s at %s"
msgstr ""

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

#: codetoolsstrconsts.ctsaddsdirtoincludepath
msgid "adds %s to IncPath"
msgstr "menambah %s ke IncPath"

#: codetoolsstrconsts.ctsaddsdirtosourcepath
msgid "adds %s to SrcPath"
msgstr "menambah %s ke SrcPath"

#: codetoolsstrconsts.ctsancestorisnotproperty
msgid "ancestor of untyped property is not a property"
msgstr "karuhun dari properti untyped bukan properti"

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

#: codetoolsstrconsts.ctsanonymdefinitionsarenotallowed
msgid "Anonymous %s definitions are not allowed"
msgstr "Definisi anonim %s tidak dibolehkan"

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

#: codetoolsstrconsts.ctsbasetypeofnotfound
msgid "base type of \"%s\" not found"
msgstr "dasar type dari \"%s\" tidak ditemukan"

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

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

#: codetoolsstrconsts.ctsbracketcloseexpectedbutatomfound
msgid "bracket close expected, but %s found"
msgstr "kurung tutup diharapkan, tapi %s ditemukan"

#: codetoolsstrconsts.ctsbracketnotfound
msgid "bracket %s not found"
msgstr "kurung %s tidak ditemukan"

#: codetoolsstrconsts.ctsbracketopenexpectedbutatomfound
msgid "bracket open expected, but %s found"
msgstr "kurung buka diharapkan, tapi %s ditemukan"

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

#: codetoolsstrconsts.ctscircleindefinitions
msgid "circle in definitions"
msgstr "lingkaran dalam definisi"

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

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

#: codetoolsstrconsts.ctsclassnotfound
msgid "class %s%s%s not found"
msgstr "kelas %s%s%s tidak ditemukan"

#: codetoolsstrconsts.ctsclassofdefinitionnotresolved
msgid "\"class of\" definition not resolved: %s"
msgstr "definisi \"class of\" tidak terpecahkan: %s"

#: codetoolsstrconsts.ctsclasssnotfound
msgid "Class %s not found"
msgstr "Kelas %s%s%s tidak ditemukan"

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

#: codetoolsstrconsts.ctscommandlineparameters
msgid "Command line parameters"
msgstr "Parameter baris perintah"

#: codetoolsstrconsts.ctscommentendnotfound
msgid "Comment end not found"
msgstr "Akhir komentar tidak ditemukan"

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

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

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

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

#: codetoolsstrconsts.ctsconverterdirectory
msgid "Converter Directory"
msgstr "Direktori Konverter"

#: codetoolsstrconsts.ctscpudirectory
msgid "CPU directory"
msgstr "Direktori CPU"

#: codetoolsstrconsts.ctscursorposoutsideofcode
msgid "cursor pos outside of code"
msgstr "posisi kursor diluar kode"

#: codetoolsstrconsts.ctscustomcomponentsdirectory
msgid "Custom Components Directory"
msgstr "Direktori Komponen Kustom"

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

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

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

#: 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 "karuhun interface default IInterface tidak ditemukan"

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

#: codetoolsstrconsts.ctsdefaultparameterexpectedbutatomfound
msgid "default parameter expected, but %s found"
msgstr "parameter default diharapkan, tapi %s yang ditemukan"

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

#: codetoolsstrconsts.ctsdefaultspecifierredefined
msgid "default specifier redefined"
msgstr "pemisah default didefinisikan ulang"

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

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

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

#: codetoolsstrconsts.ctsdefinemacrocarbon1
msgid "Define macro carbon1"
msgstr "Definisikan makro carbon1"

#: codetoolsstrconsts.ctsdefinemacrogtk1
msgid "Define macro gtk1"
msgstr "Definisikan makro gtk1"

#: codetoolsstrconsts.ctsdefinemacrogtk2
msgid "Define macro gtk2"
msgstr "Definisikan makro gtk2"

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

#: codetoolsstrconsts.ctsdefinemacroqt1
msgid "Define macro qt1"
msgstr "Definisikan makro qt1"

#: codetoolsstrconsts.ctsdefinemacrowince1
msgid "Define macro wince1"
msgstr "Definisikan makro wince1"

#: codetoolsstrconsts.ctsdefineprocessortype
msgid "Define processor type"
msgstr "Definisikan tipe prosesor"

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

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

#: codetoolsstrconsts.ctsdesignerunitsdirectory
msgid "Designer Units"
msgstr "Unit Desainer"

#: codetoolsstrconsts.ctsdircomponentdoesnotexistsorisdanglingsymlink
msgid "a directory component in %s does not exist or is a dangling symlink"
msgstr "direktori komponen dalam %s tidak ada atau merupakan dangling symlink"

#: codetoolsstrconsts.ctsdircomponentisnotdir
msgid "a directory component in %s is not a directory"
msgstr "direktori komponen dalam %s bukan sebuah direktori"

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

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

#: codetoolsstrconsts.ctsdoceditordirectory
msgid "Doc Editor Directory"
msgstr "Direktori Editor Doc"

#: codetoolsstrconsts.ctsduplicateidentifier
msgid "duplicate identifier: %s"
msgstr "duplikasi pengenal: %s"

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

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

#: codetoolsstrconsts.ctsendforrecordnotfound
msgid "end for record not found"
msgstr "akhir untuk record tidak ditemukan"

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

#: codetoolsstrconsts.ctsendofsourceexpectedbutatomfound
msgid "expected end., but %s found"
msgstr "diharapkan end, tapi %s ditemukan"

#: codetoolsstrconsts.ctsendofsourcenotfound
#, fuzzy
#| msgid "End of source not found"
msgid "End of source not found."
msgstr "Akhir dari sumber tidak ditemukan"

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

#: codetoolsstrconsts.ctserrorduringcreationofnewprocbodies
msgid "error during creation of new proc bodies"
msgstr "kesalahan selama pembuatan dari badan proc baru"

#: codetoolsstrconsts.ctserrorduringinsertingnewclassparts
msgid "error during inserting new class parts"
msgstr "kesalahan selama penyisipan bagian class"

#: codetoolsstrconsts.ctserrorduringinsertingnewusessection
msgid "error during inserting new units to the main uses section"
msgstr "kesalahan selama menyisipkan unit baru ke seksi uses utama"

#: codetoolsstrconsts.ctserrorindirectiveexpression
msgid "error in directive expression"
msgstr "Kesalahan dalam ekspresi direktif"

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

#: codetoolsstrconsts.ctsexecuteaccessdeniedforfile
msgid "execute access denied for %s"
msgstr "akses eksekusi ditolak untuk %s"

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

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

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

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

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

#: codetoolsstrconsts.ctsexpectedidentifierbutfound
msgid "expected identifier, but found %s"
msgstr ""

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

#: codetoolsstrconsts.ctsexportsclauseonlyallowedinlibraries
msgid "exports clause only allowed in libraries"
msgstr "klausul ekspor hanya dibolehkan dalam librari"

#: codetoolsstrconsts.ctsexprtypemustbeclassorrecord
msgid "expression type must be class or record type"
msgstr "tipe ekspresi harus tipe class atau record"

#: codetoolsstrconsts.ctsfilehascircularsymlink
msgid "%s has a circular symbolic link"
msgstr "%s mempunyai link simbolik berputar"

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

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

#: codetoolsstrconsts.ctsforwardclassdefinitionnotresolved
msgid "Forward class definition not resolved: %s"
msgstr "Definisi forward class tidak terpecahkan: %s"

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

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

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

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

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

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

#: codetoolsstrconsts.ctsgtk2intfdirectory
msgid "gtk2 interface directory"
msgstr "Direktori interface gtk2"

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

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

#: codetoolsstrconsts.ctsideintfdirectory
msgid "IDEIntf Directory"
msgstr "Direktori IDEIntf"

#: codetoolsstrconsts.ctsidentexpectedbutatomfound
msgid "identifier expected, but %s found"
msgstr "pengenal diharapkan, tapi %s ditemukan"

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

#: codetoolsstrconsts.ctsidentexpectedbutkeywordfound
msgid "identifier expected, but keyword %s found"
msgstr "pengenal diharapkan, tapi keyword %s ditemukan"

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

#: codetoolsstrconsts.ctsidentifieralreadydefined
msgid "Identifier %s already defined"
msgstr "Pengenal %s sudah didefinisikan"

#: codetoolsstrconsts.ctsidentifiernotfound
msgid "identifier not found: %s"
msgstr "pengenal tidak ditemukan: %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 "Jika LCLWidgetType=gtk2 lalu"

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

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

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

#: codetoolsstrconsts.ctsillegalcircleinusedunits
msgid "illegal circle using unit: %s"
msgstr "lingkaran tidak benar menggunakan unit: %s"

#: codetoolsstrconsts.ctsillegalqualifier
msgid "illegal qualifier %s found"
msgstr "pembatas %s yang ditemukan tidak benar"

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

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

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

#: codetoolsstrconsts.ctsincludefilenotfound
msgid "include file not found \"%s\""
msgstr "file include tidak ditemukan \"%s\""

#: codetoolsstrconsts.ctsincompatibletypesgotexpected
msgid "incompatibles types: expected \"%s\" but got \"%s\""
msgstr "tipe tidak sama: diharapkan \"%s\" tapi didapat \"%s\""

#: codetoolsstrconsts.ctsindexparameterexpectedbutatomfound
msgid "index parameter expected, but %s found"
msgstr "parameter indeks diharapkan, tapi %s yang ditemukan"

#: codetoolsstrconsts.ctsindexspecifierredefined
msgid "index specifier redefined"
msgstr "pemisah indeks didefinisikan ulang"

#: codetoolsstrconsts.ctsinheritedkeywordonlyallowedinmethods
msgid "inherited keyword only allowed in methods"
msgstr "keyword yang diturunkan hanya dibolehkan dalam method"

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

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

#: codetoolsstrconsts.ctsinsufficientmemory
msgid "insufficient memory"
msgstr "memori tidak cukup"

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

#: codetoolsstrconsts.ctsintfdirectory
msgid "interface directory"
msgstr "direktori interface"

#: codetoolsstrconsts.ctsinvalidclassname
msgid "invalid class name=%s%s%s"
msgstr "nama kelas tidak benar=%s%s%s"

#: codetoolsstrconsts.ctsinvalidclassname2
msgid "invalid class name %s%s%s"
msgstr "nama kelas tidak benar %s%s%s"

#: codetoolsstrconsts.ctsinvalidflagvaluefordirective
msgid "invalid flag value \"%s\" for directive %s"
msgstr "Nilai tanda tidak benar \"%s\" untuk direktif %s"

#: codetoolsstrconsts.ctsinvalidmode
msgid "invalid mode \"%s\""
msgstr "Mode tidak benar \"%s\""

#: codetoolsstrconsts.ctsinvalidmodeswitch
msgid "invalid mode switch \"%s\""
msgstr ""

#: codetoolsstrconsts.ctsinvalidoperator
msgid "invalid operator %s"
msgstr ""

#: codetoolsstrconsts.ctsinvalidsubrange
msgid "invalid subrange"
msgstr "sub jangkauan tidak benar"

#: codetoolsstrconsts.ctsinvalidtype
msgid "invalid type"
msgstr "tipe tidak benar"

#: codetoolsstrconsts.ctsinvalidvariablename
msgid "invalid variable name %s%s%s"
msgstr "nama variabel tidak benar %s%s%s"

#: codetoolsstrconsts.ctsinvalidvariabletype
msgid "invalid variable type %s%s%s"
msgstr "tipe variabel tidak benar %s%s%s"

#: codetoolsstrconsts.ctsjitformdirectory
msgid "JITForm Directory"
msgstr "Direktori JITForm"

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

#: codetoolsstrconsts.ctskeywordexampleexpectedbutatomfound
msgid "keyword (e.g. %s) expected, but %s found"
msgstr "keyword (contoh. %s) diharapkan, tapi %s ditemukan"

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

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

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

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

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

#: codetoolsstrconsts.ctsmethodtypedefinitionnotfound
msgid "method type definition not found"
msgstr "definisi tipe method tidak ditemukan"

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

#: codetoolsstrconsts.ctsmissingenumlist
msgid "missing enum list"
msgstr "daftar enum tidak ada"

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

#: codetoolsstrconsts.ctsmissingtypeidentifier
msgid "missing type identifier"
msgstr "pengenal type tidak ada"

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

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

#: codetoolsstrconsts.ctsneededbymode
msgid " (needed by mode \"%s\")"
msgstr ""

#: codetoolsstrconsts.ctsnesteddefinitionsarenotallowed
msgid "Nested %s definitions are not allowed"
msgstr "Pengulangan definisi %s tidak dibolehkan"

#: codetoolsstrconsts.ctsnewprocbodynotfound
msgid "new proc body not found"
msgstr "badan proc baru tidak ditemukan"

#: codetoolsstrconsts.ctsnocontextnodefoundatcursor
msgid "no context node found at cursor"
msgstr "tidak ada node konteks ditemukan pada kursor"

#: codetoolsstrconsts.ctsnodefaultspecifierdefinedtwice
msgid "nodefault specifier defined twice"
msgstr "pemisah non default didefinisikan dua kali"

#: codetoolsstrconsts.ctsnopascalcodefound
msgid "no pascal code found (first token is %s)"
msgstr "Tidak ada kode pascal ditemukan (token pertama adalah %s)"

#: codetoolsstrconsts.ctsnoscanneravailable
msgid "No scanner available"
msgstr "Tidak ada pemindai yang tersedia"

#: codetoolsstrconsts.ctsnoscannerfound
msgid "No scanner found for \"%s\". If this is an include file, please open the main source first."
msgstr "Tidak ada pemindai ditemukan untuk \"%s\". Jika ini adalah file include, silahkan buka sumber utama lebih dulu."

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

#: codetoolsstrconsts.ctsoldmethodnotfound
msgid "old method not found: %s"
msgstr "metode lama tidak ditemukan: %s"

#: codetoolsstrconsts.ctsoperandexpectedbutfound
msgid "operand expected but %s found"
msgstr ""

#: codetoolsstrconsts.ctsoperandexpectedbutfound2
msgid "operand expected, but %s found"
msgstr ""

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

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

#: codetoolsstrconsts.ctsoperatorexpectedbutfound
msgid "operator expected but %s found"
msgstr ""

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

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

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

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

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

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

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

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

#: codetoolsstrconsts.ctspositionnotinsource
msgid "Position not in source"
msgstr "Posisi tidak dalam sumber"

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

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

#: codetoolsstrconsts.ctsproperttypeexpectedbutatomfound
msgid "property type expected, but %s found"
msgstr "properti type diharapkan, tapi %s yang ditemukan"

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

#: codetoolsstrconsts.ctspropertyspecifieralreadydefined
msgid "property specifier already defined: %s"
msgstr "pemisah properti sudah didefinisikan: %s"

#: codetoolsstrconsts.ctsqualifierexpectedbutatomfound
msgid "qualifier expected but %s found"
msgstr "pembatas diharapkan tapi %s ditemukan"

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

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

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

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

#: codetoolsstrconsts.ctssemicolonafterpropspecmissing
msgid "; expected after \"%s\" property specifier, but %s found"
msgstr "; diharapkan setelah \"%s\" pemisah properti, tetapi %s ditemukan"

#: codetoolsstrconsts.ctssemicolonnotfound
msgid "semicolon not found"
msgstr "titik koma tidak ditemukan"

#: codetoolsstrconsts.ctssetsincpathto
msgid "sets IncPath to %s"
msgstr "set IncPath ke %s"

#: codetoolsstrconsts.ctssetssrcpathto
msgid "sets SrcPath to %s"
msgstr "set SrcPath ke %s"

#: codetoolsstrconsts.ctssourcefilenamesforstandardfpcunits
msgid "Source filenames for the standard fpc units"
msgstr "Nama file sumber untuk unit fpc standar"

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

#: codetoolsstrconsts.ctssourcenotfoundunit
#, fuzzy
#| msgid "source not found: unit %s"
msgid "source not found: unit %s. Check your FPC source directory."
msgstr "sumber tidak ditemukan: unit %s"

#: codetoolsstrconsts.ctssourceofunitnotfound
msgid "source of unit not found: %s"
msgstr ""

#: codetoolsstrconsts.ctssrcpathforcompiledunits
msgid "src path for compiled units"
msgstr "src path untuk unit yang dikompilasi"

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

#: codetoolsstrconsts.ctsstrexpectedbutatomfound
#, fuzzy
#| msgid "%s expected, but %s found"
msgid "expected %s, but %s found"
msgstr "%s diharapkan, tapi %s ditemukan"

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

#: codetoolsstrconsts.ctssyntaxerrorinexpr
msgid "Syntax Error in expression \"%s\""
msgstr "Kesalahan sintaks dalam ekspresi \"%s\""

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

#: codetoolsstrconsts.ctstermnotsimple
msgid "Term has no simple type"
msgstr "Term tidak mempunyai tipe sederhana"

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

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

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

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

#: 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 "bagian type dari class tidak ditemukan"

#: codetoolsstrconsts.ctsunabletoapplychanges
msgid "unable to apply changes"
msgstr "tidak bisa menerapkan perubahan"

#: codetoolsstrconsts.ctsunabletocompleteproperty
msgid "unable to complete property"
msgstr "tidak bisa menyempurnakan properti"

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

#: codetoolsstrconsts.ctsunexpectedendofsource
msgid "unexpected end of source"
msgstr "akhir sumber tidak diharapkan"

#: codetoolsstrconsts.ctsunexpectedkeyword
msgid "unexpected keyword \"%s\""
msgstr "kata kunci tidak diharapkan \"%s\""

#: codetoolsstrconsts.ctsunexpectedkeyword2
msgid "unexpected keyword %s"
msgstr ""

#: codetoolsstrconsts.ctsunexpectedkeywordinasmblock
msgid "unexpected keyword \"%s\" in asm block found"
msgstr "keyword \"%s\" yang tidak diharapkan dalam blok asm ditemukan"

#: codetoolsstrconsts.ctsunexpectedkeywordinbeginendblock
msgid "unexpected keyword \"%s\" in begin..end found"
msgstr "keyword \"%s\" yang tidak diharapkan dalam begin..end ditemukan"

#: codetoolsstrconsts.ctsunexpectedkeywordwhilereadingbackwards
msgid "unexpected keyword \"%s\" found while reading blocks backwards"
msgstr "keyword \"%s\" yang tidak diharapkan ditemukan saat pembacaan blok mundur"

#: codetoolsstrconsts.ctsunexpectedsubrangeoperatorfound
msgid "unexpected subrange operator '..' found"
msgstr "operator sub jangkauan  '..' yang tidak diharapkan ditemukan"

#: codetoolsstrconsts.ctsunitnotfound
msgid "unit not found: %s"
msgstr "unit tidak ditemukan: %s"

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

#: codetoolsstrconsts.ctsunknownfunction
msgid "Unknown function %s"
msgstr "Fungsi tidak dikenal %s"

#: codetoolsstrconsts.ctsunknownmainfilename
msgid "(unknown mainfilename)"
msgstr "(nama file utama tidak dikenal)"

#: codetoolsstrconsts.ctsunknownsectionkeyword
msgid "unknown section keyword %s found"
msgstr "bagian keyword %s yang ditemukan tidak dikenal"

#: codetoolsstrconsts.ctsunknownsubdescriptor
msgid "(unknown subdescriptor %s)"
msgstr "(subdeskriptor tidak dikenal %s)"

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

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

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

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

#: codetoolsstrconsts.ctswidgetdirectory
msgid "Widget Directory"
msgstr "Direktori Widget"

#: codetoolsstrconsts.ctswordnotfound
msgid "\"%s\" not found"
msgstr "\"%s\" tidak ditemukan"