-
Notifications
You must be signed in to change notification settings - Fork 3
1703 lines (1323 loc) · 48.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# English translations for GNU Cobol package.
# Copyright (C) 2014 Keisuke Nishida
# This file is distributed under the same license as the GNU Cobol package.
# Automatically generated, 2014.
#
# All this catalog "translates" are quotation characters.
# The msgids must be ASCII and therefore cannot contain real quotation
# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
# and double quote (0x22). These substitutes look strange; see
# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
#
# This catalog translates grave accent (0x60) and apostrophe (0x27) to
# left single quotation mark (U+2018) and right single quotation mark (U+2019).
# It also translates pairs of apostrophe (0x27) to
# left single quotation mark (U+2018) and right single quotation mark (U+2019)
# and pairs of quotation mark (0x22) to
# left double quotation mark (U+201C) and right double quotation mark (U+201D).
#
# When output to an UTF-8 terminal, the quotation characters appear perfectly.
# When output to an ISO-8859-1 terminal, the single quotation marks are
# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
# grave/acute accent (by libiconv), and the double quotation marks are
# transliterated to 0x22.
# When output to an ASCII terminal, the single quotation marks are
# transliterated to apostrophes, and the double quotation marks are
# transliterated to 0x22.
#
# This catalog furthermore displays the text between the quotation marks in
# bold face, assuming the VT100/XTerm escape sequences.
#
msgid ""
msgstr ""
"Project-Id-Version: GNU Cobol 1.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2014-01-20 08:40+0100\n"
"PO-Revision-Date: 2014-01-20 08:40+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cobc/cobc.c:573
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
msgstr ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
#: cobc/cobc.c:575
#, c-format
msgid "Built %s"
msgstr "Built %s"
#: cobc/cobc.c:577
#, c-format
msgid "Packaged %s"
msgstr "Packaged %s"
#: cobc/cobc.c:579
#, c-format
msgid "C version %s%s"
msgstr "C version %s%s"
#: cobc/cobc.c:621
msgid "Build information"
msgstr "Build information"
#: cobc/cobc.c:622
msgid "Build environment"
msgstr "Build environment"
#: cobc/cobc.c:629
msgid "GNU Cobol information"
msgstr "GNU Cobol information"
#: cobc/cobc.c:641 cobc/cobc.c:643
msgid "Dynamic loading"
msgstr "Dynamic loading"
#: cobc/cobc.c:641
msgid "System"
msgstr "System"
#: cobc/cobc.c:643
msgid "Libtool"
msgstr "Libtool"
#: cobc/cobc.c:647
msgid "Enabled"
msgstr "Enabled"
#: cobc/cobc.c:649
msgid "Disabled"
msgstr "Disabled"
#: cobc/cobc.c:653
msgid "Variable format"
msgstr "Variable format"
#: cobc/cobc.c:656
msgid "8 bytes"
msgstr "8 bytes"
#: cobc/cobc.c:658
msgid "4 bytes"
msgstr "4 bytes"
#: cobc/cobc.c:662 cobc/cobc.c:664
msgid "Sequential handler"
msgstr "Sequential handler"
#: cobc/cobc.c:662 cobc/cobc.c:667
msgid "External"
msgstr "External"
#: cobc/cobc.c:664
msgid "Internal"
msgstr "Internal"
#: cobc/cobc.c:667 cobc/cobc.c:670 cobc/cobc.c:673 cobc/cobc.c:676
#: cobc/cobc.c:679
msgid "ISAM handler"
msgstr "ISAM handler"
#: cobc/cobc.c:670
msgid "BDB"
msgstr "BDB"
#: cobc/cobc.c:673
msgid "C-ISAM (Experimental)"
msgstr "C-ISAM (Experimental)"
#: cobc/cobc.c:676
msgid "D-ISAM (Experimental)"
msgstr "D-ISAM (Experimental)"
#: cobc/cobc.c:679
msgid "VBISAM (Experimental)"
msgstr "VBISAM (Experimental)"
#: cobc/cobc.c:686
msgid "Usage: cobc [options] file ..."
msgstr "Usage: cobc [options] file ..."
#: cobc/cobc.c:688
msgid "Options:"
msgstr "Options:"
#: cobc/cobc.c:689
msgid " --help Display this message"
msgstr " --help Display this message"
#: cobc/cobc.c:690
msgid " --version, -V Display compiler version"
msgstr " --version, -V Display compiler version"
#: cobc/cobc.c:691
msgid " --info, -i Display compiler build information"
msgstr " --info, -i Display compiler build information"
#: cobc/cobc.c:692
msgid " -v Display the commands invoked by the compiler"
msgstr " -v Display the commands invoked by the compiler"
#: cobc/cobc.c:693
msgid " -x Build an executable program"
msgstr " -x Build an executable program"
#: cobc/cobc.c:694
msgid " -m Build a dynamically loadable module (default)"
msgstr " -m Build a dynamically loadable module (default)"
#: cobc/cobc.c:695
msgid " -std=<dialect> Warnings/features for a specific dialect :"
msgstr " -std=<dialect> Warnings/features for a specific dialect :"
#: cobc/cobc.c:696
msgid " cobol2002 Cobol 2002"
msgstr " cobol2002 Cobol 2002"
#: cobc/cobc.c:697
msgid " cobol85 Cobol 85"
msgstr " cobol85 Cobol 85"
#: cobc/cobc.c:698
msgid " ibm IBM Compatible"
msgstr " ibm IBM Compatible"
#: cobc/cobc.c:699
msgid " mvs MVS Compatible"
msgstr " mvs MVS Compatible"
#: cobc/cobc.c:700
msgid " bs2000 BS2000 Compatible"
msgstr " bs2000 BS2000 Compatible"
#: cobc/cobc.c:701
msgid " mf Micro Focus Compatible"
msgstr " mf Micro Focus Compatible"
#: cobc/cobc.c:702
msgid " default When not specified"
msgstr " default When not specified"
#: cobc/cobc.c:703
msgid " See config/default.conf and config/*.conf"
msgstr " See config/default.conf and config/*.conf"
#: cobc/cobc.c:704
msgid " -free Use free source format"
msgstr " -free Use free source format"
#: cobc/cobc.c:705
msgid " -fixed Use fixed source format (default)"
msgstr " -fixed Use fixed source format (default)"
#: cobc/cobc.c:706
msgid " -O, -O2, -Os Enable optimization"
msgstr " -O, -O2, -Os Enable optimization"
#: cobc/cobc.c:707
msgid " -g Enable C compiler debug / stack check / trace"
msgstr " -g Enable C compiler debug / stack check / trace"
#: cobc/cobc.c:708
msgid " -debug Enable all run-time error checking"
msgstr " -debug Enable all run-time error checking"
#: cobc/cobc.c:709
msgid " -o <file> Place the output into <file>"
msgstr " -o <file> Place the output into <file>"
#: cobc/cobc.c:710
msgid " -b Combine all input files into a single"
msgstr " -b Combine all input files into a single"
#: cobc/cobc.c:711
msgid " dynamically loadable module"
msgstr " dynamically loadable module"
#: cobc/cobc.c:712
msgid " -E Preprocess only; do not compile or link"
msgstr " -E Preprocess only; do not compile or link"
#: cobc/cobc.c:713
msgid " -C Translation only; convert COBOL to C"
msgstr " -C Translation only; convert COBOL to C"
#: cobc/cobc.c:714
msgid " -S Compile only; output assembly file"
msgstr " -S Compile only; output assembly file"
#: cobc/cobc.c:715
msgid " -c Compile and assemble, but do not link"
msgstr " -c Compile and assemble, but do not link"
#: cobc/cobc.c:716
msgid ""
" -t <file> Generate and place a program listing into <file>"
msgstr ""
" -t <file> Generate and place a program listing into <file>"
#: cobc/cobc.c:717
msgid " -I <directory> Add <directory> to copy/include search path"
msgstr " -I <directory> Add <directory> to copy/include search path"
#: cobc/cobc.c:718
msgid " -L <directory> Add <directory> to library search path"
msgstr " -L <directory> Add <directory> to library search path"
#: cobc/cobc.c:719
msgid " -l <lib> Link the library <lib>"
msgstr " -l <lib> Link the library <lib>"
#: cobc/cobc.c:720
msgid " -A <options> Add <options> to the C compile phase"
msgstr " -A <options> Add <options> to the C compile phase"
#: cobc/cobc.c:721
msgid " -Q <options> Add <options> to the C link phase"
msgstr " -Q <options> Add <options> to the C link phase"
#: cobc/cobc.c:722
msgid " -D <define> Pass <define> to the C compiler"
msgstr " -D <define> Pass <define> to the C compiler"
#: cobc/cobc.c:723
msgid " -conf=<file> User defined dialect configuration - See -std="
msgstr " -conf=<file> User defined dialect configuration - See -std="
#: cobc/cobc.c:724
msgid " --list-reserved Display reserved words"
msgstr " --list-reserved Display reserved words"
#: cobc/cobc.c:725
msgid " --list-intrinsics Display intrinsic functions"
msgstr " --list-intrinsics Display intrinsic functions"
#: cobc/cobc.c:726
msgid " --list-mnemonics Display mnemonic names"
msgstr " --list-mnemonics Display mnemonic names"
#: cobc/cobc.c:727
msgid " --list-system Display system routines"
msgstr " --list-system Display system routines"
#: cobc/cobc.c:728
msgid ""
" -save-temps(=<dir>) Save intermediate files (default current directory)"
msgstr ""
" -save-temps(=<dir>) Save intermediate files (default current directory)"
#: cobc/cobc.c:729
msgid " -MT <target> Set target file used in dependency list"
msgstr " -MT <target> Set target file used in dependency list"
#: cobc/cobc.c:730
msgid " -MF <file> Place dependency list into <file>"
msgstr " -MF <file> Place dependency list into <file>"
#: cobc/cobc.c:731
msgid " -ext <extension> Add default file extension"
msgstr " -ext <extension> Add default file extension"
#: cobc/cobc.c:735
msgid " -W Enable ALL warnings"
msgstr " -W Enable ALL warnings"
#: cobc/cobc.c:736
msgid " -Wall Enable all warnings except as noted below"
msgstr " -Wall Enable all warnings except as noted below"
#: cobc/cobc.c:741
msgid " (NOT set with -Wall)"
msgstr " (NOT set with -Wall)"
#: cobc/cobc.c:952
#, c-format
msgid "Invalid option -std=%s\n"
msgstr "Invalid option -std=%s\n"
#: cobc/cobc.c:1528
msgid "-MT must be given to specify target file\n"
msgstr "-MT must be given to specify target file\n"
#: cobc/cobc.c:1591
msgid "Return status:"
msgstr "Return status:"
#: cobc/tree.c:164
#, c-format
msgid "%s clause is required for file '%s'"
msgstr "%s clause is required for file ‘[1m%s[0m’"
#: cobc/tree.c:1390
msgid "Numeric field cannot be larger than 36 digits"
msgstr "Numeric field cannot be larger than 36 digits"
#: cobc/tree.c:1418
#, c-format
msgid "Invalid picture string - '%s'"
msgstr "Invalid picture string - ‘[1m%s[0m’"
#: cobc/tree.c:1645
#, c-format
msgid "Record size too small '%s'"
msgstr "Record size too small ‘[1m%s[0m’"
#: cobc/tree.c:1650
#, c-format
msgid "Record size too large '%s' (%d)"
msgstr "Record size too large ‘[1m%s[0m’ (%d)"
#: cobc/tree.c:2009 cobc/typeck.c:1862 cobc/typeck.c:1867 cobc/typeck.c:1872
#: cobc/typeck.c:2441 cobc/typeck.c:2522
msgid "Invalid expression"
msgstr "Invalid expression"
#: cobc/tree.c:2288 cobc/tree.c:2412
#, c-format
msgid "FUNCTION %s has wrong number of arguments"
msgstr "FUNCTION %s has wrong number of arguments"
#: cobc/tree.c:2293
#, c-format
msgid "FUNCTION %s can not have reference modification"
msgstr "FUNCTION %s can not have reference modification"
#: cobc/tree.c:2298 cobc/tree.c:2303
#, c-format
msgid "FUNCTION %s has invalid reference modification"
msgstr "FUNCTION %s has invalid reference modification"
#: cobc/tree.c:2421
#, c-format
msgid "FUNCTION %s not implemented"
msgstr "FUNCTION %s not implemented"
#: cobc/error.c:49
#, c-format
msgid "%s: In paragraph '%s':\n"
msgstr "%s: In paragraph '%s':\n"
#: cobc/error.c:53
#, c-format
msgid "%s: In section '%s':\n"
msgstr "%s: In section '%s':\n"
#: cobc/error.c:134
#, c-format
msgid "%s is archaic in %s"
msgstr "%s is archaic in %s"
#: cobc/error.c:139
#, c-format
msgid "%s is obsolete in %s"
msgstr "%s is obsolete in %s"
#: cobc/error.c:145
#, c-format
msgid "%s ignored"
msgstr "%s ignored"
#: cobc/error.c:150
#, c-format
msgid "%s does not conform to %s"
msgstr "%s does not conform to %s"
#: cobc/error.c:162 cobc/error.c:172
#, c-format
msgid "Redefinition of '%s'"
msgstr "Redefinition of ‘[1m%s[0m’"
#: cobc/error.c:163 cobc/error.c:174 cobc/error.c:176
#, c-format
msgid "'%s' previously defined here"
msgstr "‘[1m%s[0m’ previously defined here"
#: cobc/error.c:196
#, c-format
msgid "%s undefined"
msgstr "%s undefined"
#: cobc/error.c:220
#, c-format
msgid "%s ambiguous; need qualification"
msgstr "%s ambiguous; need qualification"
#: cobc/error.c:246
msgid "defined here"
msgstr "defined here"
#: cobc/error.c:255
#, c-format
msgid "Group item '%s' cannot have %s clause"
msgstr "Group item ‘[1m%s[0m’ cannot have %s clause"
#: cobc/error.c:261
#, c-format
msgid "Level %02d item '%s' cannot have %s clause"
msgstr "Level %02d item ‘[1m%s[0m’ cannot have %s clause"
#: cobc/error.c:268
#, c-format
msgid "Level %02d item '%s' requires %s clause"
msgstr "Level %02d item ‘[1m%s[0m’ requires %s clause"
#: cobc/error.c:275
#, c-format
msgid "Level %02d item '%s' cannot have other than %s clause"
msgstr "Level %02d item ‘[1m%s[0m’ cannot have other than %s clause"
#: cobc/field.c:77
#, c-format
msgid "Invalid level number '%s'"
msgstr "Invalid level number ‘[1m%s[0m’"
#: cobc/field.c:128 cobc/field.c:170
msgid "Level number must begin with 01 or 77"
msgstr "Level number must begin with 01 or 77"
#: cobc/field.c:205 cobc/field.c:218
#, c-format
msgid "No previous data item of level %02d"
msgstr "No previous data item of level %02d"
#: cobc/field.c:248
#, c-format
msgid "'%s' cannot be qualified here"
msgstr "‘[1m%s[0m’ cannot be qualified here"
#: cobc/field.c:254
#, c-format
msgid "'%s' cannot be subscripted here"
msgstr "‘[1m%s[0m’ cannot be subscripted here"
#: cobc/field.c:266
#, c-format
msgid "'%s' undefined in '%s'"
msgstr "‘[1m%s[0m’ undefined in ‘[1m%s[0m’"
#: cobc/field.c:278
msgid "Level number of REDEFINES entries must be identical"
msgstr "Level number of REDEFINES entries must be identical"
#: cobc/field.c:282
msgid "Level number of REDEFINES entry cannot be 66 or 88"
msgstr "Level number of REDEFINES entry cannot be 66 or 88"
#: cobc/field.c:287
#, c-format
msgid "'%s' not the original definition"
msgstr "‘[1m%s[0m’ not the original definition"
#: cobc/field.c:315
#, c-format
msgid "'%s' ANY LENGTH only allowed in LINKAGE"
msgstr "‘[1m%s[0m’ ANY LENGTH only allowed in LINKAGE"
#: cobc/field.c:319
#, c-format
msgid "'%s' ANY LENGTH must be 01 level"
msgstr "‘[1m%s[0m’ ANY LENGTH must be 01 level"
#: cobc/field.c:323
#, c-format
msgid "'%s' ANY LENGTH can not be BASED/EXTERNAL"
msgstr "‘[1m%s[0m’ ANY LENGTH can not be BASED/EXTERNAL"
#: cobc/field.c:328 cobc/field.c:336
#, c-format
msgid "'%s' ANY LENGTH has invalid definition"
msgstr "‘[1m%s[0m’ ANY LENGTH has invalid definition"
#: cobc/field.c:332
#, c-format
msgid "'%s' ANY LENGTH must have a PICTURE"
msgstr "‘[1m%s[0m’ ANY LENGTH must have a PICTURE"
#: cobc/field.c:347
#, c-format
msgid "'%s' 77 level not allowed here"
msgstr "‘[1m%s[0m’ 77 level not allowed here"
#: cobc/field.c:352
#, c-format
msgid "'%s' EXTERNAL must be specified at 01/77 level"
msgstr "‘[1m%s[0m’ EXTERNAL must be specified at 01/77 level"
#: cobc/field.c:356
#, c-format
msgid "'%s' EXTERNAL can only be specified in WORKING-STORAGE section"
msgstr "‘[1m%s[0m’ EXTERNAL can only be specified in WORKING-STORAGE section"
#: cobc/field.c:360
#, c-format
msgid "'%s' EXTERNAL and BASED are mutually exclusive"
msgstr "‘[1m%s[0m’ EXTERNAL and BASED are mutually exclusive"
#: cobc/field.c:363
#, c-format
msgid "'%s' EXTERNAL not allowed with REDEFINES"
msgstr "‘[1m%s[0m’ EXTERNAL not allowed with REDEFINES"
#: cobc/field.c:370
#, c-format
msgid "'%s' BASED not allowed here"
msgstr "‘[1m%s[0m’ BASED not allowed here"
#: cobc/field.c:373
#, c-format
msgid "'%s' BASED not allowed with REDEFINES"
msgstr "‘[1m%s[0m’ BASED not allowed with REDEFINES"
#: cobc/field.c:376
#, c-format
msgid "'%s' BASED only allowed at the 01 and 77 levels"
msgstr "‘[1m%s[0m’ BASED only allowed at the 01 and 77 levels"
#: cobc/field.c:409
#, c-format
msgid "'%s' cannot have the OCCURS clause due to '%s'"
msgstr "‘[1m%s[0m’ cannot have the OCCURS clause due to ‘[1m%s[0m’"
#: cobc/field.c:422
#, c-format
msgid "'%s' ODO field item invalid here"
msgstr "‘[1m%s[0m’ ODO field item invalid here"
#: cobc/field.c:428
#, c-format
msgid "'%s' cannot have OCCURS DEPENDING"
msgstr "‘[1m%s[0m’ cannot have OCCURS DEPENDING"
#: cobc/field.c:438
#, c-format
msgid "'%s' ODO item must have GLOBAL attribute"
msgstr "‘[1m%s[0m’ ODO item must have GLOBAL attribute"
#: cobc/field.c:442
#, c-format
msgid "GLOBAL '%s' ODO item is not in the same section as OCCURS"
msgstr "GLOBAL ‘[1m%s[0m’ ODO item is not in the same section as OCCURS"
#: cobc/field.c:452
#, c-format
msgid "The original definition '%s' should not have OCCURS"
msgstr "The original definition ‘[1m%s[0m’ should not have OCCURS"
#: cobc/field.c:459
msgid "REDEFINES must follow the original definition"
msgstr "REDEFINES must follow the original definition"
#: cobc/field.c:466
#, c-format
msgid "'%s' cannot be variable length"
msgstr "‘[1m%s[0m’ cannot be variable length"
#: cobc/field.c:470
#, c-format
msgid "The original definition '%s' cannot be variable length"
msgstr "The original definition ‘[1m%s[0m’ cannot be variable length"
#: cobc/field.c:561
#, c-format
msgid "Value required for constant item '%s'"
msgstr "Value required for constant item ‘[1m%s[0m’"
#: cobc/field.c:563
#, c-format
msgid "PICTURE clause required for '%s'"
msgstr "PICTURE clause required for ‘[1m%s[0m’"
#: cobc/field.c:569
#, c-format
msgid "'%s' cannot have PICTURE clause"
msgstr "‘[1m%s[0m’ cannot have PICTURE clause"
#: cobc/field.c:617 cobc/field.c:625
#, c-format
msgid "'%s' PICTURE clause not compatible with USAGE"
msgstr "‘[1m%s[0m’ PICTURE clause not compatible with USAGE"
#: cobc/field.c:642
#, c-format
msgid "'%s' cannot have JUSTIFIED RIGHT"
msgstr "‘[1m%s[0m’ cannot have JUSTIFIED RIGHT"
#: cobc/field.c:681
#, c-format
msgid "'%s' cannot have BLANK WHEN ZERO"
msgstr "‘[1m%s[0m’ cannot have BLANK WHEN ZERO"
#: cobc/field.c:689
msgid "Only level 88 item may have multiple values"
msgstr "Only level 88 item may have multiple values"
#: cobc/field.c:695
msgid "Entries under REDEFINES cannot have VALUE clause"
msgstr "Entries under REDEFINES cannot have VALUE clause"
#: cobc/field.c:698
msgid "VALUE clause ignored for EXTERNAL items"
msgstr "VALUE clause ignored for EXTERNAL items"
#: cobc/field.c:808 cobc/field.c:816 cobc/field.c:955 cobc/field.c:958
#, c-format
msgid "Size of '%s' larger than size of '%s'"
msgstr "Size of ‘[1m%s[0m’ larger than size of ‘[1m%s[0m’"
#: cobc/field.c:863
#, c-format
msgid "Size of '%s' exceed maximum '%d'"
msgstr "Size of ‘[1m%s[0m’ exceed maximum ‘[1m%d[0m’"
#: cobc/field.c:886
#, c-format
msgid "'%s' binary field cannot be larger than 18 digits"
msgstr "‘[1m%s[0m’ binary field cannot be larger than 18 digits"
#: cobc/typeck.c:351
msgid "Invalid use of 88 level item"
msgstr "Invalid use of 88 level item"
#: cobc/typeck.c:389
#, c-format
msgid "'%s' is not group name"
msgstr "‘[1m%s[0m’ is not group name"
#: cobc/typeck.c:406
#, c-format
msgid "'%s' is not a numeric name"
msgstr "‘[1m%s[0m’ is not a numeric name"
#: cobc/typeck.c:424
#, c-format
msgid "'%s' is not numeric or numeric-edited name"
msgstr "‘[1m%s[0m’ is not numeric or numeric-edited name"
#: cobc/typeck.c:439
#, c-format
msgid "'%s' is not a numeric value"
msgstr "‘[1m%s[0m’ is not a numeric value"
#: cobc/typeck.c:488
#, c-format
msgid "'%s' is not an integer value"
msgstr "‘[1m%s[0m’ is not an integer value"
#: cobc/typeck.c:492
msgid "A positive numeric integer is required here"
msgstr "A positive numeric integer is required here"
#: cobc/typeck.c:506
#, c-format
msgid "System routine\t\t\tParameters"
msgstr "System routine\t\t\tParameters"
#: cobc/typeck.c:681
#, c-format
msgid "PROGRAM-ID '%s' invalid"
msgstr "PROGRAM-ID ‘[1m%s[0m’ invalid"
#: cobc/typeck.c:699
#, c-format
msgid "Switch-name is expected '%s'"
msgstr "Switch-name is expected ‘[1m%s[0m’"
#: cobc/typeck.c:852 cobc/typeck.c:885
#, c-format
msgid "'%s' cannot be subscripted"
msgstr "‘[1m%s[0m’ cannot be subscripted"
#: cobc/typeck.c:856
#, c-format
msgid "'%s' cannot be reference modified"
msgstr "‘[1m%s[0m’ cannot be reference modified"
#: cobc/typeck.c:888
#, c-format
msgid "'%s' requires 1 subscript"
msgstr "‘[1m%s[0m’ requires 1 subscript"
#: cobc/typeck.c:891
#, c-format
msgid "'%s' requires %d subscripts"
msgstr "‘[1m%s[0m’ requires %d subscripts"
#: cobc/typeck.c:913
#, c-format
msgid "Subscript of '%s' out of bounds: %d"
msgstr "Subscript of ‘[1m%s[0m’ out of bounds: %d"
#: cobc/typeck.c:955
#, c-format
msgid "Offset of '%s' out of bounds: %d"
msgstr "Offset of ‘[1m%s[0m’ out of bounds: %d"
#: cobc/typeck.c:959
#, c-format
msgid "Length of '%s' out of bounds: %d"
msgstr "Length of ‘[1m%s[0m’ out of bounds: %d"
#: cobc/typeck.c:1030
msgid "ANY LENGTH item not allowed here"
msgstr "ANY LENGTH item not allowed here"
#: cobc/typeck.c:1034
msgid "88 level item not allowed here"
msgstr "88 level item not allowed here"
#: cobc/typeck.c:1283
#, c-format
msgid "Duplicate character values in alphabet '%s'"
msgstr "Duplicate character values in alphabet ‘[1m%s[0m’"
#: cobc/typeck.c:1287
#, c-format
msgid "Invalid character values in alphabet '%s'"
msgstr "Invalid character values in alphabet ‘[1m%s[0m’"
#: cobc/typeck.c:1324
#, c-format
msgid "'%s' not alphabet name"
msgstr "‘[1m%s[0m’ not alphabet name"
#: cobc/typeck.c:1383
#, c-format
msgid "'%s' will be implicitly defined"
msgstr "‘[1m%s[0m’ will be implicitly defined"
#: cobc/typeck.c:1400
#, c-format
msgid "ASSIGN data item '%s' invalid"
msgstr "ASSIGN data item ‘[1m%s[0m’ invalid"
#: cobc/typeck.c:1411
#, c-format
msgid "'%s' CURSOR is not 4 or 6 characters long"
msgstr "‘[1m%s[0m’ CURSOR is not 4 or 6 characters long"
#: cobc/typeck.c:1421
#, c-format
msgid "'%s' CRT STATUS is not 4 characters long"
msgstr "‘[1m%s[0m’ CRT STATUS is not 4 characters long"
#: cobc/typeck.c:1467
msgid "Invalid RECORD DEPENDING item"
msgstr "Invalid RECORD DEPENDING item"
#: cobc/typeck.c:1491
#, c-format
msgid "'%s' not procedure name"
msgstr "‘[1m%s[0m’ not procedure name"
#: cobc/typeck.c:1611
msgid "Suggest parentheses around AND within OR"
msgstr "Suggest parentheses around AND within OR"
#: cobc/typeck.c:3077
#, c-format
msgid "Invalid input stream '%s'"
msgstr "Invalid input stream ‘[1m%s[0m’"
#: cobc/typeck.c:3098 cobc/typeck.c:3107 cobc/typeck.c:3502 cobc/typeck.c:3505
#: cobc/typeck.c:3513
#, c-format
msgid "'%s' undefined in SPECIAL-NAMES"
msgstr "‘[1m%s[0m’ undefined in SPECIAL-NAMES"
#: cobc/typeck.c:3133
msgid "Target of ALLOCATE is not a BASED item"
msgstr "Target of ALLOCATE is not a BASED item"
#: cobc/typeck.c:3140
msgid "Target of RETURNING is not a data pointer"
msgstr "Target of RETURNING is not a data pointer"
#: cobc/typeck.c:3146
msgid "The CHARACTERS field of ALLOCATE must be numeric"
msgstr "The CHARACTERS field of ALLOCATE must be numeric"
#: cobc/typeck.c:3180
msgid "Only alphanumeric FUNCTION types are allowed here"
msgstr "Only alphanumeric FUNCTION types are allowed here"
#: cobc/typeck.c:3187
msgid "Invalid RETURNING field"
msgstr "Invalid RETURNING field"
#: cobc/typeck.c:3197
msgid "Figurative constant invalid here"
msgstr "Figurative constant invalid here"
#: cobc/typeck.c:3202
#, c-format
msgid "'%s' Not a data name"
msgstr "‘[1m%s[0m’ Not a data name"
#: cobc/typeck.c:3209
#, c-format
msgid "'%s' is not 01 or 77 level item"
msgstr "‘[1m%s[0m’ is not 01 or 77 level item"
#: cobc/typeck.c:3220
#, c-format
msgid "Wrong number of CALL parameters for '%s'"
msgstr "Wrong number of CALL parameters for ‘[1m%s[0m’"
#: cobc/typeck.c:3264 cobc/typeck.c:3307 cobc/typeck.c:5139 cobc/typeck.c:5259
#: cobc/typeck.c:5318 cobc/typeck.c:5978
msgid "Operation not allowed on SORT files"
msgstr "Operation not allowed on SORT files"
#: cobc/typeck.c:3392
#, c-format
msgid "'%s' is an invalid type for DISPLAY operand"
msgstr "‘[1m%s[0m’ is an invalid type for DISPLAY operand"
#: cobc/typeck.c:3397
msgid "Invalid type for DISPLAY operand"
msgstr "Invalid type for DISPLAY operand"
#: cobc/typeck.c:3481
msgid "Invalid output stream"
msgstr "Invalid output stream"
#: cobc/typeck.c:3595
msgid "Invalid use of 88 level in WHEN expression"
msgstr "Invalid use of 88 level in WHEN expression"
#: cobc/typeck.c:3644
msgid "Wrong number of WHEN parameters"
msgstr "Wrong number of WHEN parameters"
#: cobc/typeck.c:3688 cobc/typeck.c:3700
#, c-format
msgid ""
"Target %d of FREE, a data address identifier, must address a BASED data item"
msgstr ""
"Target %d of FREE, a data address identifier, must address a BASED data item"
#: cobc/typeck.c:3706
#, c-format
msgid "Target %d of FREE must be a data pointer"
msgstr "Target %d of FREE must be a data pointer"
#: cobc/typeck.c:3729
msgid "GO TO with multiple procedure-names"
msgstr "GO TO with multiple procedure-names"
#: cobc/typeck.c:3797
msgid "Invalid target for INSPECT"
msgstr "Invalid target for INSPECT"
#: cobc/typeck.c:3804 cobc/typeck.c:3808
msgid "Invalid target for REPLACING/CONVERTING"
msgstr "Invalid target for REPLACING/CONVERTING"
#: cobc/typeck.c:3833
msgid "Data name expected before CHARACTERS"
msgstr "Data name expected before CHARACTERS"
#: cobc/typeck.c:3843
msgid "Data name expected before ALL"
msgstr "Data name expected before ALL"
#: cobc/typeck.c:3853
msgid "Data name expected before LEADING"
msgstr "Data name expected before LEADING"
#: cobc/typeck.c:3863
msgid "Data name expected before TRAILING"
msgstr "Data name expected before TRAILING"
#: cobc/typeck.c:3873
#, c-format
msgid "ALL, LEADING or TRAILING expected before '%s'"
msgstr "ALL, LEADING or TRAILING expected before ‘[1m%s[0m’"
#: cobc/typeck.c:3952
#, c-format
msgid "Internal register '%s' defined as BINARY-LONG"
msgstr "Internal register ‘[1m%s[0m’ defined as BINARY-LONG"
#: cobc/typeck.c:3954
#, c-format
msgid "'%s' defined here as PIC %s"
msgstr "‘[1m%s[0m’ defined here as PIC %s"
#: cobc/typeck.c:3956
#, c-format
msgid "'%s' defined here as a group of length %d"
msgstr "‘[1m%s[0m’ defined here as a group of length %d"
#: cobc/typeck.c:4030
msgid "Invalid destination for MOVE"
msgstr "Invalid destination for MOVE"
#: cobc/typeck.c:4131
msgid "Data item not signed"
msgstr "Data item not signed"
#: cobc/typeck.c:4135
msgid "Ignoring negative sign"
msgstr "Ignoring negative sign"
#: cobc/typeck.c:4418
msgid "Move non-integer to alphanumeric"
msgstr "Move non-integer to alphanumeric"
#: cobc/typeck.c:4444
msgid "Invalid source for MOVE"
msgstr "Invalid source for MOVE"
#: cobc/typeck.c:4461
msgid "Invalid VALUE clause"
msgstr "Invalid VALUE clause"
#: cobc/typeck.c:4463
msgid "Invalid MOVE statement"
msgstr "Invalid MOVE statement"
#: cobc/typeck.c:4469
msgid "Invalid VALUE clause - literal exceeds data size"
msgstr "Invalid VALUE clause - literal exceeds data size"
#: cobc/typeck.c:4473
msgid "Numeric literal exceeds data size"
msgstr "Numeric literal exceeds data size"
#: cobc/typeck.c:4479
msgid "Numeric value is expected"
msgstr "Numeric value is expected"
#: cobc/typeck.c:4483
msgid "Alphanumeric value is expected"