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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1998-06-12 13:31-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: aout-adobe.c:182
#, c-format
msgid "%s: Unknown section type in a.out.adobe file: %x\n"
msgstr ""
#: aoutx.h:1217 aoutx.h:1631
#, c-format
msgid "%s: can not represent section `%s' in a.out object file format"
msgstr ""
#: aoutx.h:1601
#, c-format
msgid ""
"%s: can not represent section for symbol `%s' in a.out object file format"
msgstr ""
#: aoutx.h:1603
msgid "*unknown*"
msgstr ""
#: aoutx.h:3642
#, c-format
msgid "%s: relocateable link from %s to %s not supported"
msgstr ""
#: archive.c:1705
msgid "Warning: writing archive was slow: rewriting timestamp\n"
msgstr ""
#: archive.c:1976
msgid "Reading archive file mod timestamp"
msgstr ""
#. FIXME: bfd can't call perror.
#: archive.c:2000
msgid "Writing updated armap timestamp"
msgstr ""
#: bfd.c:273
msgid "No error"
msgstr ""
#: bfd.c:274
msgid "System call error"
msgstr ""
#: bfd.c:275
msgid "Invalid bfd target"
msgstr ""
#: bfd.c:276
msgid "File in wrong format"
msgstr ""
#: bfd.c:277
msgid "Invalid operation"
msgstr ""
#: bfd.c:278
msgid "Memory exhausted"
msgstr ""
#: bfd.c:279
msgid "No symbols"
msgstr ""
#: bfd.c:280
msgid "Archive has no index; run ranlib to add one"
msgstr ""
#: bfd.c:281
msgid "No more archived files"
msgstr ""
#: bfd.c:282
msgid "Malformed archive"
msgstr ""
#: bfd.c:283
msgid "File format not recognized"
msgstr ""
#: bfd.c:284
msgid "File format is ambiguous"
msgstr ""
#: bfd.c:285
msgid "Section has no contents"
msgstr ""
#: bfd.c:286
msgid "Nonrepresentable section on output"
msgstr ""
#: bfd.c:287
msgid "Symbol needs debug section which does not exist"
msgstr ""
#: bfd.c:288
msgid "Bad value"
msgstr ""
#: bfd.c:289
msgid "File truncated"
msgstr ""
#: bfd.c:290
msgid "File too big"
msgstr ""
#: bfd.c:291
msgid "#<Invalid error code>"
msgstr ""
#: bfd.c:678
#, c-format
msgid "bfd assertion fail %s:%d"
msgstr ""
#: coff-a29k.c:121
msgid "Missing IHCONST"
msgstr ""
#: coff-a29k.c:181
msgid "Missing IHIHALF"
msgstr ""
#: coff-a29k.c:213
msgid "Unrecognized reloc"
msgstr ""
#: coff-a29k.c:406
msgid "missing IHCONST reloc"
msgstr ""
#: coff-a29k.c:497
msgid "missing IHIHALF reloc"
msgstr ""
#: coff-alpha.c:880 coff-alpha.c:917
msgid "GP relative relocation used when GP not defined"
msgstr ""
#: coff-alpha.c:1486 elf64-alpha.c:3030
msgid "using multiple gp values"
msgstr ""
#: coff-alpha.c:1992 coff-mips.c:1428 elf32-mips.c:4738
msgid "GP relative relocation when GP not defined"
msgstr ""
#: coff-arm.c:868
#, c-format
msgid "%s: unable to find THUMB glue '%s' for `%s'"
msgstr ""
#: coff-arm.c:896
#, c-format
msgid "%s: unable to find ARM glue '%s' for `%s'"
msgstr ""
#: coff-arm.c:1149 coff-arm.c:1236
#, c-format
msgid "%s(%s): warning: interworking not enabled."
msgstr ""
#: coff-arm.c:1152
#, c-format
msgid " first occurrence: %s: arm call to thumb"
msgstr ""
#: coff-arm.c:1239
#, c-format
msgid " first occurrence: %s: thumb call to arm"
msgstr ""
#: coff-arm.c:1506 cofflink.c:2705
#, c-format
msgid "%s: bad reloc address 0x%lx in section `%s'"
msgstr ""
#: coff-arm.c:1954
#, c-format
msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d"
msgstr ""
#: coff-arm.c:1968
#, c-format
msgid ""
"%s: ERROR: passes floats in float registers whereas target %s uses integer "
"registers"
msgstr ""
#: coff-arm.c:1970
#, c-format
msgid ""
"%s: ERROR: passes floats in integer registers whereas target %s uses float "
"registers"
msgstr ""
#: coff-arm.c:1983
#, c-format
msgid ""
"%s: ERROR: compiled as position independent code, whereas target %s is "
"absolute position"
msgstr ""
#: coff-arm.c:1985
#, c-format
msgid ""
"%s: ERROR: compiled as absolute position code, whereas target %s is position "
"independent"
msgstr ""
#: coff-arm.c:2013
#, c-format
msgid "Warning: input file %s supports internetworking, whereas %s does not."
msgstr ""
#: coff-arm.c:2015
#, c-format
msgid ""
"Warning: input file %s does not support internetworking, whereas %s does."
msgstr ""
#: coff-arm.c:2042
#, c-format
msgid "private flags = %x:"
msgstr ""
#: coff-arm.c:2050
msgid " [floats passed in float registers]"
msgstr ""
#: coff-arm.c:2052
msgid " [floats passed in integer registers]"
msgstr ""
#: coff-arm.c:2055
msgid " [position independent]"
msgstr ""
#: coff-arm.c:2057
msgid " [absolute position]"
msgstr ""
#: coff-arm.c:2061
msgid " [interworking flag not initialised]"
msgstr ""
#: coff-arm.c:2063
msgid " [interworking supported]"
msgstr ""
#: coff-arm.c:2065
msgid " [interworking not supported]"
msgstr ""
#: coff-i960.c:135 coff-i960.c:484
msgid "uncertain calling convention for non-COFF symbol"
msgstr ""
#: coff-mips.c:875 elf32-mips.c:1140
msgid "GP relative relocation when _gp not defined"
msgstr ""
#: coff-mips.c:2426
msgid "unsupported reloc type"
msgstr ""
#. No other sections should appear in -membedded-pic
#. code.
#: coff-mips.c:2463
msgid "reloc against unsupported section"
msgstr ""
#: coff-mips.c:2471
msgid "reloc not properly aligned"
msgstr ""
#: coff-w65.c:383
#, c-format
msgid "ignoring reloc %s\n"
msgstr ""
#: coffcode.h:3404
#, c-format
msgid "%s: warning: illegal symbol index %ld in line numbers"
msgstr ""
#: coffcode.h:3418
#, c-format
msgid "%s: warning: duplicate line number information for `%s'"
msgstr ""
#: coffcode.h:3741
#, c-format
msgid "%s: Unrecognized storage class %d for %s symbol `%s'"
msgstr ""
#: coffcode.h:3925
#, c-format
msgid "%s: warning: illegal symbol index %ld in relocs"
msgstr ""
#: coffcode.h:3963
#, c-format
msgid "%s: illegal relocation type %d at address 0x%lx"
msgstr ""
#: coffgen.c:1603
#, c-format
msgid "%s: bad string table size %lu"
msgstr ""
#: cofflink.c:414
#, c-format
msgid "Warning: type of symbol `%s' changed from %d to %d in %s"
msgstr ""
#: cofflink.c:2079
#, c-format
msgid "%s: relocs in section `%s', but it has no contents"
msgstr ""
#: coffswap.h:883
#, c-format
msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff"
msgstr ""
#: coffswap.h:896
#, c-format
msgid "%s: %s: reloc overflow: 0x%lx > 0xffff"
msgstr ""
#: dwarf2.c:422
msgid "Dwarf Error: Can't find .debug_abbrev section."
msgstr ""
#: dwarf2.c:440
#, c-format
msgid "Dwarf Error: Abbrev offset (%u) bigger than abbrev size (%u)."
msgstr ""
#: dwarf2.c:616
#, c-format
msgid "Dwarf Error: Invalid or unhandled FORM value: %d."
msgstr ""
#: dwarf2.c:722
msgid "Dwarf Error: Can't find .debug_line section."
msgstr ""
#: dwarf2.c:881
msgid "Dwarf Error: mangled line number section."
msgstr ""
#: dwarf2.c:1055 dwarf2.c:1203
#, c-format
msgid "Dwarf Error: Could not find abbrev number %d."
msgstr ""
#: dwarf2.c:1164
#, c-format
msgid ""
"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 "
"information."
msgstr ""
#: dwarf2.c:1171
#, c-format
msgid ""
"Dwarf Error: found address size '%u', this reader can not handle sizes "
"greater than '%u'."
msgstr ""
#: dwarf2.c:1194
#, c-format
msgid "Dwarf Error: Bad abbrev number: %d."
msgstr ""
#: ecoff.c:1308
#, c-format
msgid "Unknown basic type %d"
msgstr ""
#: ecoff.c:1580
#, c-format
msgid ""
"\n"
" End+1 symbol: %ld"
msgstr ""
#: ecoff.c:1587 ecoff.c:1590
#, c-format
msgid ""
"\n"
" First symbol: %ld"
msgstr ""
#: ecoff.c:1602
#, c-format
msgid ""
"\n"
" End+1 symbol: %-7ld Type: %s"
msgstr ""
#: ecoff.c:1609
#, c-format
msgid ""
"\n"
" Local symbol: %ld"
msgstr ""
#: ecoff.c:1617
#, c-format
msgid ""
"\n"
" struct; End+1 symbol: %ld"
msgstr ""
#: ecoff.c:1622
#, c-format
msgid ""
"\n"
" union; End+1 symbol: %ld"
msgstr ""
#: ecoff.c:1627
#, c-format
msgid ""
"\n"
" enum; End+1 symbol: %ld"
msgstr ""
#: ecoff.c:1633
#, c-format
msgid ""
"\n"
" Type: %s"
msgstr ""
#: elf-m10200.c:455 elf-m10300.c:493 elf32-m32r.c:1105 elf32-v850.c:1551
msgid "internal error: out of range error"
msgstr ""
#: elf-m10200.c:459 elf-m10300.c:497 elf32-m32r.c:1109 elf32-v850.c:1555
msgid "internal error: unsupported relocation error"
msgstr ""
#: elf-m10200.c:463 elf-m10300.c:501 elf32-m32r.c:1113
msgid "internal error: dangerous error"
msgstr ""
#: elf-m10200.c:467 elf-m10300.c:505 elf32-m32r.c:1117 elf32-v850.c:1575
msgid "internal error: unknown error"
msgstr ""
#: elf.c:311
#, c-format
msgid "%s: invalid string offset %u >= %lu for section `%s'"
msgstr ""
#: elf.c:522
msgid ""
"\n"
"Program Header:\n"
msgstr ""
#: elf.c:570
msgid ""
"\n"
"Dynamic Section:\n"
msgstr ""
#: elf.c:672
msgid ""
"\n"
"Version definitions:\n"
msgstr ""
#: elf.c:695
msgid ""
"\n"
"Version References:\n"
msgstr ""
#: elf.c:700
#, c-format
msgid " required from %s:\n"
msgstr ""
#: elf.c:1842
#, c-format
msgid ""
"creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = "
"0x%.8lx\n"
msgstr ""
#: elf.c:2435
#, c-format
msgid "%s: Not enough room for program headers (allocated %u, need %u)"
msgstr ""
#: elf.c:2524
#, c-format
msgid "%s: Not enough room for program headers, try linking with -N"
msgstr ""
#: elf.c:2878
#, c-format
msgid "%s: warning: allocated section `%s' not in segment"
msgstr ""
#: elf.c:3226
#, c-format
msgid "%s: symbol `%s' required but not present"
msgstr ""
#: elf.c:3235
#, c-format
msgid ""
"elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = "
"0x%.8lx%s\n"
msgstr ""
#: elf.c:4342
#, c-format
msgid "%s: unsupported relocation type %s"
msgstr ""
#: elf32-hppa.c:1215
msgid "Unsupported call to hppa_elf_reloc"
msgstr ""
#: elf32-i386.c:1202
#, c-format
msgid ""
"%s: warning: unresolvable relocation against symbol `%s' from %s section"
msgstr ""
#: elf32-m32r.c:760
msgid "SDA relocation when _SDA_BASE_ not defined"
msgstr ""
#: elf32-m32r.c:844 elf32-ppc.c:2644
#, c-format
msgid "%s: unknown relocation type %d"
msgstr ""
#: elf32-m32r.c:1048
#, c-format
msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)"
msgstr ""
#: elf32-m32r.c:1854
#, c-format
msgid "%s: Instruction set mismatch with previous modules"
msgstr ""
#: elf32-m32r.c:1875
#, c-format
msgid "private flags = %lx"
msgstr ""
#: elf32-m32r.c:1880
msgid ": m32r instructions"
msgstr ""
#. start-sanitize-m32rx
#: elf32-m32r.c:1882
msgid ": m32rx instructions"
msgstr ""
#: elf32-mips.c:1300
msgid "32bits gp relative relocation occurs for an external symbol"
msgstr ""
#: elf32-mips.c:1449
#, c-format
msgid "Linking mips16 objects into %s format is not supported"
msgstr ""
#: elf32-mips.c:2051 elf32-ppc.c:1151
#, c-format
msgid "%s: compiled for a big endian system and target is little endian"
msgstr ""
#: elf32-mips.c:2053 elf32-ppc.c:1153
#, c-format
msgid "%s: compiled for a little endian system and target is big endian"
msgstr ""
#: elf32-mips.c:2100
#, c-format
msgid "%s: linking PIC files with non-PIC files"
msgstr ""
#: elf32-mips.c:2110
#, c-format
msgid "%s: linking abicalls files with non-abicalls files"
msgstr ""
#: elf32-mips.c:2129
#, c-format
msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)"
msgstr ""
#: elf32-mips.c:2142 elf32-ppc.c:1215 elf64-sparc.c:2195
#, c-format
msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"
msgstr ""
#: elf32-mips.c:2178
msgid ".liblist"
msgstr ""
#: elf32-mips.c:3704
msgid "static procedure (no name)"
msgstr ""
#: elf32-mips.c:4277 elf64-alpha.c:4434
#, c-format
msgid "%s: illegal section name `%s'"
msgstr ""
#: elf32-mips.c:4584
msgid "more got entries are needed for hipage relocations"
msgstr ""
#: elf32-mips.c:4893
msgid "_gp_disp used when GP not defined"
msgstr ""
#: elf32-mips.c:5309
#, c-format
msgid "%s: %s+0x%lx: jump to mips16 routine which is not jal"
msgstr ""
#: elf32-mips.c:6054
#, c-format
msgid "%s: CALL16 reloc at 0x%lx not against global symbol"
msgstr ""
#: elf32-ppc.c:1186
#, c-format
msgid ""
"%s: compiled with -mrelocatable and linked with modules compiled normally"
msgstr ""
#: elf32-ppc.c:1194
#, c-format
msgid ""
"%s: compiled normally and linked with modules compiled with -mrelocatable"
msgstr ""
#: elf32-ppc.c:1316
#, c-format
msgid "%s: Unknown special linker type %d"
msgstr ""
#: elf32-ppc.c:2017 elf32-ppc.c:2053 elf32-ppc.c:2090
#, c-format
msgid "%s: relocation %s cannot be used when making a shared object"
msgstr ""
#: elf32-ppc.c:2787
#, c-format
msgid "%s: unknown relocation type %d for symbol %s"
msgstr ""
#: elf32-ppc.c:3145 elf32-ppc.c:3167 elf32-ppc.c:3214
#, c-format
msgid "%s: The target (%s) of a %s relocation is in the wrong section (%s)"
msgstr ""
#: elf32-ppc.c:3280
#, c-format
msgid "%s: Relocation %s is not yet supported for symbol %s."
msgstr ""
#: elf32-sh.c:648
#, c-format
msgid "%s: 0x%lx: warning: bad R_SH_USES offset"
msgstr ""
#: elf32-sh.c:660
#, c-format
msgid "%s: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x"
msgstr ""
#: elf32-sh.c:677
#, c-format
msgid "%s: 0x%lx: warning: bad R_SH_USES load offset"
msgstr ""
#: elf32-sh.c:692
#, c-format
msgid "%s: 0x%lx: warning: could not find expected reloc"
msgstr ""
#: elf32-sh.c:729
#, c-format
msgid "%s: 0x%lx: warning: symbol in unexpected section"
msgstr ""
#: elf32-sh.c:851
#, c-format
msgid "%s: 0x%lx: warning: could not find expected COUNT reloc"
msgstr ""
#: elf32-sh.c:860
#, c-format
msgid "%s: 0x%lx: warning: bad count"
msgstr ""
#: elf32-sh.c:1243 elf32-sh.c:1580
#, c-format
msgid "%s: 0x%lx: fatal: reloc overflow while relaxing"
msgstr ""
#: elf32-sparc.c:1352 elf64-sparc.c:1585
#, c-format
msgid "%s: probably compiled without -fPIC?"
msgstr ""
#: elf32-sparc.c:1752
#, c-format
msgid "%s: compiled for a v8plus system and target is v8"
msgstr ""
#: elf32-sparc.c:1761
#, c-format
msgid "%s: compiled for a v8plusa system and target is v8plus"
msgstr ""
#: elf32-sparc.c:1769
#, c-format
msgid "%s: compiled for a 64 bit system and target is 32 bit"
msgstr ""
#: elf32-v850.c:611
#, c-format
msgid "Variable `%s' cannot occupy in multiple small data regions"
msgstr ""
#: elf32-v850.c:614
#, c-format
msgid ""
"Variable `%s' can only be in one of the small, zero, and tiny data regions"
msgstr ""
#: elf32-v850.c:617
#, c-format
msgid ""
"Variable `%s' cannot be in both small and zero data regions simultaneously"
msgstr ""
#: elf32-v850.c:620
#, c-format
msgid ""
"Variable `%s' cannot be in both small and tiny data regions simultaneously"
msgstr ""
#: elf32-v850.c:623
#, c-format
msgid ""
"Variable `%s' cannot be in both zero and tiny data regions simultaneously"
msgstr ""
#: elf32-v850.c:982
msgid "FAILED to find previous HI16 reloc\n"
msgstr ""
#: elf32-v850.c:1559
msgid "internal error: dangerous relocation"
msgstr ""
#: elf32-v850.c:1563
msgid "could not locate special linker symbol __gp"
msgstr ""
#: elf32-v850.c:1567
msgid "could not locate special linker symbol __ep"
msgstr ""
#: elf32-v850.c:1571
msgid "could not locate special linker symbol __ctbp"
msgstr ""
#: elf32-v850.c:1710
#, c-format
msgid "%s: Architecture mismatch with previous modules"
msgstr ""
#: elf32-v850.c:1727
#, c-format
msgid "private flags = %lx: "
msgstr ""
#: elf32-v850.c:1732
msgid "v850 architecture"
msgstr ""
#. start-sanitize-v850e
#: elf32-v850.c:1734
msgid "v850e architecture"
msgstr ""
#: elf32-v850.c:1735
msgid "v850ea architecture"
msgstr ""
#: elf64-alpha.c:949
msgid "GPDISP relocation did not find ldah and lda instructions"
msgstr ""
#: elf64-alpha.c:3010
#, c-format
msgid "%s: .got subsegment exceeds 64K (size %d)"
msgstr ""
#: elf64-sparc.c:810
#, c-format
msgid "%s: check_relocs: unhandled reloc type %d"
msgstr ""
#: elf64-sparc.c:2177
#, c-format
msgid "%s: linking UltraSPARC specific with HAL specific code"
msgstr ""
#: elfcode.h:1011
#, c-format
msgid "%s: version count (%ld) does not match symbol count (%ld)"
msgstr ""
#: elflink.c:316
#, c-format
msgid "%s: Section %s is already to large to put hole of %ld bytes in"
msgstr ""
#: evax-egsd.c:372
#, c-format
msgid "unknown egsd subtype %d"
msgstr ""
#: evax-emh.c:322
msgid "Object module NOT error-free !\n"
msgstr ""
#: evax-etir.c:303
msgid "Bad section index in ETIR_S_C_STA_PQ"
msgstr ""
#: evax-etir.c:318
#, c-format
msgid "Unsupported STA cmd %d"
msgstr ""
#: evax-etir.c:323
#, c-format
msgid "Reserved STA cmd %d"
msgstr ""
#: evax-etir.c:434
#, c-format
msgid "ETIR_S_C_STO_GBL: no symbol \"%s\""
msgstr ""
#: evax-etir.c:455
#, c-format
msgid "ETIR_S_C_STO_CA: no symbol \"%s\""
msgstr ""
#: evax-etir.c:468
msgid "ETIR_S_C_STO_RB/AB: Not supported"
msgstr ""
#: evax-etir.c:526
msgid "ETIR_S_C_STO_LP_PSB: Not supported"
msgstr ""
#: evax-etir.c:532
msgid "ETIR_S_C_STO_HINT_GBL: not implemented"
msgstr ""
#: evax-etir.c:538
msgid "ETIR_S_C_STO_HINT_PS: not implemented"
msgstr ""
#: evax-etir.c:542
#, c-format
msgid "Reserved STO cmd %d"
msgstr ""
#: evax-etir.c:650
msgid "ETIR_S_C_OPR_INSV: Not supported"
msgstr ""
#: evax-etir.c:668
msgid "ETIR_S_C_OPR_USH: Not supported"
msgstr ""
#: evax-etir.c:674
msgid "ETIR_S_C_OPR_ROT: Not supported"
msgstr ""
#: evax-etir.c:693
msgid "ETIR_S_C_OPR_REDEF: Not supported"
msgstr ""
#: evax-etir.c:699
msgid "ETIR_S_C_OPR_DFLIT: Not supported"
msgstr ""
#: evax-etir.c:703
#, c-format
msgid "Reserved OPR cmd %d"
msgstr ""
#: evax-etir.c:767
#, c-format
msgid "Reserved CTL cmd %d"
msgstr ""
#: evax-etir.c:791
msgid "ETIR_S_C_STC_LP: not supported"
msgstr ""
#: evax-etir.c:809
msgid "ETIR_S_C_STC_GBL: not supported"
msgstr ""
#: evax-etir.c:817
msgid "ETIR_S_C_STC_GCA: not supported"
msgstr ""
#: evax-etir.c:826
msgid "ETIR_S_C_STC_PS: not supported"
msgstr ""
#: evax-etir.c:1151
#, c-format
msgid "SEC_RELOC with no relocs in section %s"
msgstr ""
#: evax-etir.c:1425
#, c-format
msgid "Unhandled relocation %s"
msgstr ""
#: evax-misc.c:901
msgid "_bfd_evax_output_counted called with zero bytes"
msgstr ""
#: evax-misc.c:906
msgid "_bfd_evax_output_counted called with too many bytes"
msgstr ""
#: evax-misc.c:1041
#, c-format
msgid "Symbol %s replaced by %s\n"
msgstr ""
#: i386linux.c:449 m68klinux.c:453 sparclinux.c:451
#, c-format
msgid "Output file requires shared library `%s'\n"
msgstr ""
#: i386linux.c:457 m68klinux.c:461 sparclinux.c:459
#, c-format
msgid "Output file requires shared library `%s.so.%s'\n"
msgstr ""
#: i386linux.c:645 i386linux.c:695 m68klinux.c:652 m68klinux.c:700
#: sparclinux.c:648 sparclinux.c:698
#, c-format
msgid "Symbol %s not defined for fixups\n"
msgstr ""
#: i386linux.c:719 m68klinux.c:724 sparclinux.c:722
msgid "Warning: fixup count mismatch\n"
msgstr ""
#: ieee.c:165
#, c-format
msgid "%s: string too long (%d chars, max 65535)"
msgstr ""
#: ieee.c:295
#, c-format
msgid "%s: unrecognized symbol `%s' flags 0x%x"
msgstr ""
#: ieee.c:791
#, c-format
msgid "%s: unimplemented ATI record %u for symbol %u"
msgstr ""
#: ihex.c:259
#, c-format
msgid "%s:%d: unexpected character `%s' in Intel Hex file\n"
msgstr ""
#: ihex.c:369
#, c-format
msgid "%s:%d: bad checksum in Intel Hex file (expected %u, found %u)"
msgstr ""
#: ihex.c:421
#, c-format
msgid "%s:%d: bad extended address record length in Intel Hex file"
msgstr ""
#: ihex.c:438
#, c-format
msgid "%s:%d: bad extended start address length in Intel Hex file"
msgstr ""
#: ihex.c:455
#, c-format
msgid "%s:%d: bad extended linear address record length in Intel Hex file"
msgstr ""
#: ihex.c:472
#, c-format
msgid "%s:%d: bad extended linear start address length in Intel Hex file"
msgstr ""
#: ihex.c:489
#, c-format
msgid "%s:%d: unrecognized ihex type %u in Intel Hex file\n"
msgstr ""
#: ihex.c:609
#, c-format
msgid "%s: internal error in ihex_read_section"
msgstr ""
#: ihex.c:644
#, c-format
msgid "%s: bad section length in ihex_read_section"
msgstr ""
#: ihex.c:858
#, c-format
msgid "%s: address 0x%s out of range for Intex Hex file"
msgstr ""
#: libbfd.c:464
#, c-format
msgid "not mapping: data=%lx mapped=%d\n"
msgstr ""
#: libbfd.c:467
msgid "not mapping: env var not set\n"
msgstr ""
#: linker.c:2665
#, c-format
msgid "Attempt to do relocateable link with %s input and %s output"
msgstr ""
#: oasys.c:1016
#, c-format
msgid "%s: can not represent section `%s' in oasys"
msgstr ""
#: osf-core.c:148
#, c-format
msgid "Unhandled OSF/1 core file section type %d\n"
msgstr ""
#: ppcboot.c:418
msgid ""
"\n"
"ppcboot header:\n"
msgstr ""
#: ppcboot.c:419
#, c-format
msgid "Entry offset = 0x%.8lx (%ld)\n"
msgstr ""
#: ppcboot.c:420
#, c-format
msgid "Length = 0x%.8lx (%ld)\n"
msgstr ""
#: ppcboot.c:423
#, c-format
msgid "Flag field = 0x%.2x\n"
msgstr ""
#: ppcboot.c:429
#, c-format
msgid "Partition name = \"%s\"\n"
msgstr ""
#: ppcboot.c:448
#, c-format
msgid ""
"\n"
"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n"
msgstr ""
#: ppcboot.c:454
#, c-format
msgid "Partition[%d] end = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n"
msgstr ""
#: ppcboot.c:460
#, c-format
msgid "Partition[%d] sector = 0x%.8lx (%ld)\n"
msgstr ""
#: ppcboot.c:461
#, c-format
msgid "Partition[%d] length = 0x%.8lx (%ld)\n"
msgstr ""
#: som.c:5047
msgid "som_sizeof_headers unimplemented"
msgstr ""
#: srec.c:290
#, c-format
msgid "%s:%d: Unexpected character `%s' in S-record file\n"
msgstr ""
#: syms.c:924
msgid "Unsupported .stab relocation"
msgstr ""
#: xcofflink.c:1661
#, c-format
msgid "%s: `%s' has line numbers but no enclosing section"
msgstr ""
#: xcofflink.c:1713
#, c-format
msgid "%s: class %d symbol `%s' has no aux entries"
msgstr ""
#: xcofflink.c:1736
#, c-format
msgid "%s: symbol `%s' has unrecognized csect type %d"
msgstr ""
#: xcofflink.c:1748
#, c-format
msgid "%s: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d"
msgstr ""
#: xcofflink.c:1787
#, c-format
msgid "%s: XMC_TC0 symbol `%s' is class %d scnlen %d"
msgstr ""
#: xcofflink.c:1911
#, c-format
msgid "%s: symbol `%s' has unrecognized smclas %d"
msgstr ""
#: xcofflink.c:1930
#, c-format
msgid "%s: csect `%s' not in enclosing section"
msgstr ""
#: xcofflink.c:2034
#, c-format
msgid "%s: misplaced XTY_LD `%s'"
msgstr ""
#: xcofflink.c:2345
#, c-format
msgid "%s: reloc %s:%d not in csect"
msgstr ""
#: xcofflink.c:2480
#, c-format
msgid "%s: XCOFF shared object when not producing XCOFF output"
msgstr ""
#: xcofflink.c:2501
#, c-format
msgid "%s: dynamic object with no .loader section"
msgstr ""
#: xcofflink.c:3141
#, c-format
msgid "%s: no such symbol"
msgstr ""
#: xcofflink.c:3728
#, c-format
msgid "warning: attempt to export undefined symbol `%s'"
msgstr ""
#: xcofflink.c:4704
#, c-format
msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling"
msgstr ""
#: xcofflink.c:5529 xcofflink.c:5885 xcofflink.c:5922 xcofflink.c:6239
#, c-format
msgid "%s: loader reloc in unrecognized section `%s'"
msgstr ""
#: xcofflink.c:5551 xcofflink.c:6250
#, c-format
msgid "%s: `%s' in loader reloc but not loader sym"
msgstr ""
#: xcofflink.c:5566
#, c-format
msgid "%s: loader reloc in read-only section %s"
msgstr ""
#: xcofflink.c:6446
#, c-format
msgid "%s: unsupported relocation type 0x%02x"
msgstr ""
#: xcofflink.c:6492
#, c-format
msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry"
msgstr ""
|