1
2# Message file for cmd/sgs/liblddbg.
3
4domain	"SUNW_OST_SGS"
5
6
7# Usage messages
8
9msgid	"warning: unrecognized debug option (try help): %s"
10msgstr	""
11msgid	"warning: ignoring non-negatable debug option: %s"
12msgstr	""
13
14msgid	"Display Control Tokens:"
15msgstr	""
16msgid	"Category Selection Tokens:"
17msgstr	""
18msgid	"    [ld and ld.so.1]"
19msgstr	""
20msgid	"    [ld.so.1 only]"
21msgstr	""
22msgid	"    [ld only]"
23msgstr	""
24
25# TRANSLATION_NOTE - Use the following output in the C locale as reference 1.
26#
27# The runtime linker and link-editor support a shared debugging
28# facility. Options are selected via a comma separated list of tokens,
29# each of which specifies a display option or a category for which
30# information is desired. Many tokens apply to both linker components,
31# while some are specific to one or the other. Diagnostics are printed,
32# one per line, with a standard prefix prepended to each one. Diagnostic
33# output is sent to stderr unless otherwise redirected.
34
35# TRANSLATION_NOTE - The next series of messages makes the above output in C
36# locale.
37
38msgid	"The runtime linker and link-editor support a shared debugging"
39msgstr	""
40msgid	"facility. Options are selected via a comma separated list of tokens,"
41msgstr	""
42msgid	"each of which specifies a display option or a category for which"
43msgstr	""
44msgid	"information is desired. Many tokens apply to both linker components,"
45msgstr	""
46msgid	"while some are specific to one or the other. Diagnostics are printed,"
47msgstr	""
48msgid	"one per line, with a standard prefix prepended to each one. Diagnostic"
49msgstr	""
50
51# TRANSLATION_NOTE -- do not translate "stderr"
52msgid	"output is sent to stderr unless otherwise redirected."
53msgstr	""
54
55# TRANSLATION_NOTE - End of reference 1
56
57
58# TRANSLATION_NOTE - Use the following output in the C locale as reference 2.
59#
60# Runtime Linking (ld.so.1):
61#     Diagnostics that trace the runtime linking of an application
62#     can be enabled via the LD_DEBUG environment variable:
63#          LD_DEBUG=token1,token2 app ...
64#     In addition to the "output" token described below, diagnostic
65#     output from the runtime linker can be redirected to an output
66#     file using the additional environment variable:
67#          LD_DEBUG_OUTPUT=file
68#     If the "output" token and LD_DEBUG_OUTPUT are both specified,
69#     the file specified by LD_DEBUG_OUTPUT is used. If LD_DEBUG_OUTPUT
70#     is used, the output file name is suffixed with the process id.
71#     An output file specified via the "output" token is used as
72#     specified, without a process id suffix. Use of the "output"
73#     token with programs that call fork() results in each process
74#     writing debug output to the same file. The debug output will be
75#     jumbled and incomplete. LD_DEBUG_OUTPUT should be used in such
76#     cases to direct debug output for each process to a unique file.
77#
78#     All runtime linker diagnostics are prepended with the process
79#     id. If thread capabilities are enabled for the process, the
80#     thread id is also shown. All Solaris applications are thread
81#     capable, and a single threaded application may use threads via
82#     the libraries it links to. Diagnostics from such applications
83#     reference thread id 1.
84
85# TRANSLATION_NOTE - The next series of messages makes the above output in C
86# locale.
87
88msgid	"Runtime Linking (ld.so.1):"
89msgstr	""
90msgid	"    Diagnostics that trace the runtime linking of an application"
91msgstr	""
92
93# TRANSLATION_NOTE -- do not translate "LD_DEBUG"
94msgid	"    can be enabled via the LD_DEBUG environment variable:"
95msgstr	""
96
97# TRANSLATION_NOTE -- do not translate "LD_DEBUG"
98msgid	"         LD_DEBUG=token1,token2 app ..."
99msgstr	""
100
101# TRANSLATION_NOTE -- do not translate "output"
102msgid	"    In addition to the \"output\" token described below, diagnostic"
103msgstr	""
104msgid	"    output from the runtime linker can be redirected to an output"
105msgstr	""
106msgid	"    file using the additional environment variable:"
107msgstr	""
108
109# TRANSLATION_NOTE -- do not translate "LD_DEBUG_OUTPUT"
110msgid	"         LD_DEBUG_OUTPUT=file"
111msgstr	""
112
113# TRANSLATION_NOTE -- do not translate "output" or "LD_DEBUG_OUTPUT"
114msgid	"    If the \"output\" token and LD_DEBUG_OUTPUT are both specified,"
115msgstr	""
116
117# TRANSLATION_NOTE -- do not translate "LD_DEBUG_OUTPUT"
118msgid	"    the file specified by LD_DEBUG_OUTPUT is used. If LD_DEBUG_OUTPUT"
119msgstr	""
120msgid	"    is used, the output file name is suffixed with the process id."
121msgstr	""
122
123# TRANSLATION_NOTE -- do not translate "output"
124msgid	"    An output file specified via the \"output\" token is used as"
125msgstr	""
126
127# TRANSLATION_NOTE -- do not translate "output"
128msgid	"    specified, without a process id suffix. Use of the \"output\""
129msgstr	""
130
131# TRANSLATION_NOTE -- do not translate "fork"
132msgid	"    token with programs that call fork() results in each process"
133msgstr	""
134msgid	"    writing debug output to the same file. The debug output will be"
135msgstr	""
136msgid	"    jumbled and incomplete. LD_DEBUG_OUTPUT should be used in such"
137msgstr	""
138msgid	"    cases to direct debug output for each process to a unique file."
139msgstr	""
140
141
142msgid	"    All runtime linker diagnostics are prepended with the process"
143msgstr	""
144msgid	"    id. If thread capabilities are enabled for the process, the"
145msgstr	""
146msgid	"    thread id is also shown. All Solaris applications are thread"
147msgstr	""
148msgid	"    capable, and a single threaded application may use threads via"
149msgstr	""
150msgid	"    the libraries it links to. Diagnostics from such applications"
151msgstr	""
152msgid	"    reference thread id 1."
153msgstr	""
154
155# TRANSLATION_NOTE - End of reference 2
156
157
158# TRANSLATION_NOTE - Use the following output in the C locale as reference 3.
159#
160# Link-Editing (ld):
161#     Diagnostics that trace the link-editing of an application are
162#     enabled using the -D option:
163#        ld -Dtoken1,token2 -o prog ...
164#     As compiler drivers may assign -D a different meaning, the
165#     LD_OPTIONS environment variable is often used:
166#        LD_OPTIONS=-Dtoken1,token2 cc -o prog ...
167#
168#     The position of -D on the link-edit command line is significant.
169#     Diagnostics are enabled when a debug token is first encountered,
170#     and can be switched off by prepending the token with "!".
171#
172#     Diagnostic output can be directed to a file using the "output"
173#     token, The output file is used as specified, without a process
174#     id suffix.
175#
176#     All link-editor diagnostics are prepended with the string "debug".
177#
178
179# TRANSLATION_NOTE - The next series of messages makes the above output in C
180# locale.
181
182msgid	" Link-Editing (ld):"
183msgstr	""
184msgid	"    Diagnostics that trace the link-editing of an application are"
185msgstr	""
186msgid	"    enabled using the -D option:"
187msgstr	""
188msgid	"       ld -Dtoken1,token2 -o prog ..."
189msgstr	""
190msgid	"    As compiler drivers may assign -D a different meaning, the"
191msgstr	""
192
193# TRANSLATION_NOTE -- do not translate "LD_OPTIONS"
194msgid	"    LD_OPTIONS environment variable is often used:"
195msgstr	""
196
197# TRANSLATION_NOTE -- do not translate "LD_OPTIONS"
198msgid	"       LD_OPTIONS=-Dtoken1,token2 cc -o prog ..."
199msgstr	""
200
201msgid	"    The position of -D on the link-edit command line is significant."
202msgstr	""
203msgid	"    Diagnostics are enabled when a debug token is first encountered,"
204msgstr	""
205msgid	"    and can be switched off by prepending the token with \"!\"."
206msgstr	""
207
208# TRANSLATION_NOTE -- do not translate "output"
209msgid	"    Diagnostic output can be directed to a file using the \"output\""
210msgstr	""
211
212msgid	"    token, The output file is used as specified, without a process"
213msgstr	""
214msgid	"    id suffix."
215msgstr	""
216
217
218# TRANSLATION_NOTE -- do not translate "debug"
219msgid	"    All link-editor diagnostics are prepended with the string \"debug\"."
220msgstr	""
221
222# TRANSLATION_NOTE - End of reference 3
223
224
225# TRANSLATION_NOTE - Use the following output in the C locale as reference 4.
226#
227#         demangle         show C++ symbol names in their demangled form
228#         detail           provide more information in conjunction with
229#                            other options
230#         dtime            prepend a time delta to diagnostics. The value
231#                            appears as seconds.fraction, and represents
232#                            the elapsed time since that last diagnostic.
233#         long             display long object names without truncation
234#         output=file      debug output is sent to the named file
235#                            instead of stderr. If file is empty (\"\"),
236#                            following output will be sent to stderr.
237#         ttime            prepend a time stamp to diagnostics. The value
238#                            appears as seconds.fraction, and represents
239#                            the time since entering ld or ld.so.1.
240#                            Note, all diagnostics induce a probe affect,
241#                            which should be taken into account when
242#                            interpreting dtime and ttime information.
243#
244
245# TRANSLATION_NOTE - The next series of messages makes the above output in C
246# locale.
247
248# TRANSLATION_NOTE -- do not translate the first token "demangle".
249msgid	"        demangle         show C++ symbol names in their demangled form"
250msgstr	""
251
252# TRANSLATION_NOTE -- do not translate the first token "detail".
253msgid	"        detail           provide more information in conjunction with"
254msgstr	""
255msgid	"                           other options"
256msgstr	""
257
258# TRANSLATION_NOTE -- do not translate the first token "dtime".
259msgid	"        dtime            prepend a time delta to diagnostics. The value"
260msgstr	""
261msgid	"                           appears as seconds.fraction, and represents"
262msgstr	""
263msgid	"                           the elapsed time since that last diagnostic."
264msgstr	""
265
266# TRANSLATION_NOTE -- do not translate the first token "long".
267msgid	"        long             display long object names without truncation"
268msgstr	""
269
270# TRANSLATION_NOTE -- do not translate the first token "output".
271msgid	"        output=file      debug output is sent to the named file"
272msgstr	""
273msgid	"                           instead of stderr. If file is empty (\"\"),"
274msgstr	""
275msgid	"                           following output will be sent to stderr."
276msgstr	""
277
278# TRANSLATION_NOTE -- do not translate the first token "ttime".
279msgid	"        ttime            prepend a time stamp to diagnostics. The value"
280msgstr	""
281msgid	"                           appears as seconds.fraction, and represents"
282msgstr	""
283msgid	"                           the time since entering ld or ld.so.1."
284msgstr	""
285msgid	"                           Note all diagnostics induce a probe affect,"
286msgstr	""
287msgid	"                           which should be taken into account when"
288msgstr	""
289msgid	"                           interpreting dtime and ttime information."
290msgstr	""
291
292# TRANSLATION_NOTE - End of reference 4
293
294
295# TRANSLATION_NOTE - Use the following output in the C locale as reference 5.
296#
297#         lmid[=name]      prepend link-map list id to diagnostics, and
298#                          optionally filter the lists: By default,
299#                          diagnostics are produced for all link-map
300#                          lists except that of the runtime linker
301#                          (ldso), without identification. "lmid" causes
302#                          the link-map list id to be prepended.
303#                          "name" limits diagnostics to the named
304#                          link-map list. Additional "lmid" tokens
305#                          can specify multiple link-map lists.
306#                          Valid names are:
307#                              all        all link-map lists except ldso
308#                              alt        all alternative link-map lists
309#                              alt[0-9]+  specific alternative link-map list
310#                              base       the base, or main, link-map list
311#                              ldso       the runtime linker link-map list
312#
313
314# TRANSLATION_NOTE - The next series of messages makes the above output in C
315# locale.
316
317
318# TRANSLATION_NOTE -- do not translate the first token "lmid".
319msgid	"        lmid[=name]      prepend link-map list id to diagnostics, and"
320msgstr	""
321msgid	"                         optionally filter the lists: By default,"
322msgstr	""
323msgid	"                         diagnostics are produced for all link-map"
324msgstr	""
325msgid	"                         lists except that of the runtime linker"
326msgstr	""
327msgid	"                         (ldso), without identification. \"lmid\" causes"
328msgstr	""
329
330# TRANSLATION_NOTE -- do not translate "name"
331msgid	"                         the link-map list id to be prepended."
332msgstr	""
333msgid	"                         \"name\" limits diagnostics to the named"
334msgstr	""
335msgid	"                         link-map list. Additional \"lmid\" tokens"
336msgstr	""
337msgid	"                         can specify multiple link-map lists."
338msgstr	""
339msgid	"                         Valid names are:"
340msgstr	""
341
342# TRANSLATION_NOTE -- do not translate the token "all".
343msgid	"                             all        all link-map lists except ldso"
344msgstr	""
345
346# TRANSLATION_NOTE -- do not translate the token "alt".
347msgid	"                             alt        all alternative link-map lists"
348msgstr	""
349
350# TRANSLATION_NOTE -- do not translate the token "alt".
351msgid	"                             alt[0-9]+  specific alt link-map list"
352msgstr	""
353
354# TRANSLATION_NOTE -- do not translate the token "base".
355msgid	"                             base       base (main) link-map list"
356msgstr	""
357msgid	"                             ldso       runtime linker link-map list "
358msgstr	""
359# TRANSLATION_NOTE - End of reference 5
360
361
362# TRANSLATION_NOTE - Use the following output in the C locale as reference 6.
363#
364#         name             prepend output file basename to diagnostics
365#         fullname         prepend full output file name to diagnostics
366#         class            prepend output file elfclass (32/64) to
367#                            diagnostics
368#
369
370# TRANSLATION_NOTE - The next series of messages makes the above output in C
371# locale.
372
373# TRANSLATION_NOTE -- do not translate the first token "name".
374msgid	"        name             prepend output file basename to diagnostics"
375msgstr	""
376
377# TRANSLATION_NOTE -- do not translate the first token "fullname".
378msgid	"        fullname         prepend full output file name to diagnostics"
379msgstr	""
380
381# TRANSLATION_NOTE -- do not translate the first token "class".
382msgid	"        class            prepend output file elfclass (32/64) to"
383msgstr	""
384msgid	"                           diagnostics"
385msgstr	""
386
387# TRANSLATION_NOTE - End of reference 6
388
389
390# TRANSLATION_NOTE - Use the following output in the C locale as reference 7.
391#
392#         all              display information for all categories
393#         basic            basic trace information/warnings
394#         cap              platform/machine/hardware/software capabilities
395#         files            input file processing (files and libraries)
396#         help             this help message
397#         libs             library search paths; detail flag shows
398#                            actual library lookup (-l) processing
399#         move             move sections
400#         reloc            relocations
401#         symbols          symbol tables; detail flag shows internal
402#                            symbol table addition and resolution (ld only)
403#         tls              thread local storage (TLS)
404#         unused           unused/unreferenced files; detail flag
405#                            shows unused sections (ld only)
406#         versions         ELF versioning
407
408# TRANSLATION_NOTE - The next series of messages makes the above output in C
409# locale.
410
411
412# TRANSLATION_NOTE -- do not translate the first token "all".
413msgid	"        all              display information for all categories"
414msgstr	""
415
416# TRANSLATION_NOTE -- do not translate the first token "basic".
417msgid	"        basic            basic trace information/warnings"
418msgstr	""
419
420# TRANSLATION_NOTE -- do not translate the first token "cap".
421msgid	"        cap              platform/machine/hardware/software capabilities"
422msgstr	""
423
424# TRANSLATION_NOTE -- do not translate the first token "files".
425msgid	"        files            input file processing (files and libraries)"
426msgstr	""
427
428# TRANSLATION_NOTE -- do not translate the first token "help".
429msgid	"        help             this help message"
430msgstr	""
431
432# TRANSLATION_NOTE -- do not translate the first token "libs".
433msgid	"        libs             library search paths; detail flag shows"
434msgstr	""
435msgid	"                           actual library lookup (-l) processing"
436msgstr	""
437
438# TRANSLATION_NOTE -- do not translate the first token "move".
439msgid	"        move             move sections"
440msgstr	""
441
442# TRANSLATION_NOTE -- do not translate the first token "reloc".
443msgid	"        reloc            relocations"
444msgstr	""
445
446# TRANSLATION_NOTE -- do not translate the first token "symbols".
447msgid	"        symbols          symbol tables; detail flag shows internal"
448msgstr	""
449msgid	"                           symbol table addition/resolution (ld only)"
450msgstr	""
451
452# TRANSLATION_NOTE -- do not translate the first token "tls".
453msgid	"        tls              thread local storage (TLS)"
454msgstr	""
455
456# TRANSLATION_NOTE -- do not translate the first token "unused".
457msgid	"        unused           unused/unreferenced files; detail flag"
458msgstr	""
459msgid	"                           shows unused sections (ld only)"
460msgstr	""
461
462# TRANSLATION_NOTE -- do not translate the first token "versions".
463msgid	"        versions         ELF versioning"
464msgstr	""
465
466# TRANSLATION_NOTE - End of reference 7
467
468
469# TRANSLATION_NOTE - Use the following output in the C locale as reference 8.
470#
471#         audit            runtime link-audit processing
472#         bindings         symbol binding; detail flag shows
473#                            absolute:relative addresses
474#         callback         user supplied code executed by ld.so.1
475#                            (i.e. dl_iterate_phdr)
476#         init             init and fini processing
477
478
479# TRANSLATION_NOTE - The next series of messages makes the above output in C
480# locale.
481
482
483# TRANSLATION_NOTE -- do not translate the first token "audit".
484msgid	"        audit            runtime link-audit processing"
485msgstr	""
486
487# TRANSLATION_NOTE -- do not translate the first token "bindings".
488msgid	"        bindings         symbol binding; detail flag shows"
489msgstr	""
490msgid	"                           absolute:relative addresses"
491msgstr	""
492
493# TRANSLATION_NOTE -- do not translate the first token "dl".
494msgid	"        dl               user calls to the dl*() family"
495msgstr	""
496
497# TRANSLATION_NOTE -- do not translate the first token "init".
498msgid	"        init             init and fini processing"
499msgstr	""
500
501# TRANSLATION_NOTE - End of reference 8
502
503
504# TRANSLATION_NOTE - Use the following output in the C locale as reference 9.
505#
506#         args             input arguments
507#         entry            entrance criteria descriptors
508#         got              GOT symbol information
509#         map              mapfile processing
510#         sections         input sections
511#         segments         output segments and address/offset processing;
512#                            detail flag shows associated sections
513#         statistics       symbol table and relocation statistics
514#         strtab           string table compression statistics;
515#                            detail flag shows layout of string tables
516#         support          support libraries
517
518# TRANSLATION_NOTE - The next series of messages makes the above output in C
519# locale.
520
521# TRANSLATION_NOTE -- do not translate the first token "args".
522msgid	"        args             input arguments"
523msgstr	""
524
525# TRANSLATION_NOTE -- do not translate the first token "entry".
526msgid	"        entry            entrance criteria descriptors"
527msgstr	""
528
529# TRANSLATION_NOTE -- do not translate the first token "got".
530msgid	"        got              GOT symbol information"
531msgstr	""
532
533# TRANSLATION_NOTE -- do not translate the first token "map".
534msgid	"        map              mapfile processing"
535msgstr	""
536
537# TRANSLATION_NOTE -- do not translate the first token "sections".
538msgid	"        sections         input sections"
539msgstr	""
540
541# TRANSLATION_NOTE -- do not translate the first token "segments".
542msgid	"        segments         output segments and address/offset processing;"
543msgstr	""
544msgid	"                           detail flag shows associated sections"
545msgstr	""
546
547# TRANSLATION_NOTE -- do not translate the first token "statistics".
548msgid	"        statistics       symbol table and relocation statistics"
549msgstr	""
550
551# TRANSLATION_NOTE -- do not translate the first token "strtab".
552msgid	"        strtab           string table compression statistics;"
553msgstr	""
554msgid	"                           detail flag shows layout of string tables"
555msgstr	""
556
557# TRANSLATION_NOTE -- do not translate the first token "support".
558msgid	"        support          support libraries"
559msgstr	""
560
561# TRANSLATION_NOTE - End of reference 9
562
563
564# Basic processing (ld).
565
566msgid	"collect relocations"
567msgstr	""
568msgid	"create output image"
569msgstr	""
570msgid	"process files"
571msgstr	""
572msgid	"processing finished"
573msgstr	""
574msgid	"process options"
575msgstr	""
576msgid	"relocate output image"
577msgstr	""
578msgid	"validating symbols"
579msgstr	""
580
581# Argument messages
582
583msgid	"arg[%d]\toption=-%c"
584msgstr	""
585msgid	"arg[%d]\toption=-%c:  option-argument: %s"
586msgstr	""
587msgid	"arg[%d]\toption=-%s:  translated: new option=-%c"
588msgstr	""
589msgid	"arg[%d]\toption=-W%s:  translated: prefix -Wl,: removed"
590msgstr	""
591msgid	"arg[%d]\tfile=%s"
592msgstr	""
593
594msgid	"warning: unrecognized -z guidance item: %s"
595msgstr	""
596
597
598# Bindings messages
599# NOTE: these are used by appcert(1) and lari(1), use care when changing.
600
601msgid	"binding file=%s to file=%s: symbol '%s'"
602msgstr	""
603msgid	"binding file=%s (%#llx:%#llx) at plt[%lld]:%s to file=%s (%#llx:%#llx): symbol '%s'%s"
604msgstr	""
605msgid	"binding file=%s (dlsym) to file=%s (%#llx:%#llx): symbol '%s'%s"
606msgstr	""
607msgid	"binding file=%s (%#llx:%#llx) to file=%s (%#llx:%#llx): symbol '%s'%s"
608msgstr	""
609msgid	"binding file=%s to 0x0 (undefined weak): symbol '%s'"
610msgstr	""
611msgid	"binding file=%s (%#llx:%#llx) to 0x0 (undefined weak): symbol '%s'"
612msgstr	""
613
614# NOTE: the rejected message is used by lari(1), use care when changing.  This
615# message is formatted to conform to the pattern used by the MSG_BINFO messages.
616msgid	"binding file=%s to file=%s: symbol '%s'  (rejected: %s)"
617msgstr	""
618msgid	"attempt to directly bind to a NODIRECT definition"
619msgstr	""
620msgid	"attempt to bind within a group to a NODIRECT definition"
621msgstr	""
622msgid	"attempt to bind to a SINGLETON definition without following default search model"
623msgstr	""
624
625msgid	"   pltpad: %#llx: file=%s bound to file=%s: symbol '%s'"
626msgstr	""
627msgid	"   pltpad: %#llx: bound from file=%s: symbol '%s'"
628msgstr	""
629
630msgid	"Summary of PLT types bound: 21d=%d, 24d=%d, u32=%d, u44=%d, full=%d, far=%d, Total=%d"
631msgstr	""
632msgid	"Summary of PLT types bound: 21d=%d, 24d=%d, full=%d, Total=%d"
633msgstr	""
634msgid	"Summary of PLT types bound: total=%d"
635msgstr	""
636
637# Relocation messages
638
639msgid	"generating input relocations: section=%s"
640msgstr	""
641msgid	"collecting input relocations: section=%s, file=%s"
642msgstr	""
643msgid	"performing active relocations"
644msgstr	""
645msgid	"creating output relocations"
646msgstr	""
647msgid	"relocation processing: file=%s%s"
648msgstr	""
649msgid	"relocation processing: file=%s; finished%s"
650msgstr	""
651msgid	"relocation processing: file=%s%s; nothing to do"
652msgstr	""
653
654msgid	"  (plt processing only)"
655msgstr	""
656msgid	"  (failed)"
657msgstr	""
658
659msgid	"<offset lies outside memory image; relocation discarded>"
660msgstr	""
661
662msgid	"relocation: %s: section=%s; input from file=%s; offset=0x%llx; symbol=%s; transitioned to: %s"
663msgstr	""
664msgid	"relocation against discarded section=%s from file=%s; relocation type=%s offset=0x%llx; relocation discarded"
665msgstr	""
666msgid	"copy data from file=%s to file=%s: symbol '%s'%s"
667msgstr	""
668msgid	"the following relocation references a discarded section; relocation redirected to section %s in file %s"
669msgstr	""
670
671# Entrance criteria messages
672
673msgid	"Segment Entrance Criteria Descriptor List"
674msgstr	""
675msgid	"entrance descriptor[%u]"
676msgstr	""
677
678
679# Elf Data (section) messages
680# TRANSLATION_NOTE - the following two entries provide for a series of one or
681# more standard 32-bit Elf_Data entries that align with the initial title.
682
683msgid	"            addr type        size   offset al file"
684msgstr	""
685msgid	"  %3s %#10llx %-5s %#10llx %#8llx %2lld %s %s%s"
686msgstr	""
687
688# TRANSLATION_NOTE - the following two entries provide for a series of one or
689# more standard 64-bit Elf_Data entries that align with the initial title.
690
691msgid	"                    addr type                size           offset al file"
692msgstr	""
693msgid	"  %3s %#18llx %-5s %#18llx %#16llx %2lld %s %s%s"
694msgstr	""
695
696msgid	"  (section ignored)"
697msgstr	""
698
699# File messages
700
701msgid	"file=%s  [ %s ]"
702msgstr	""
703msgid	"file=%s  [ archive ] %s"
704msgstr	""
705msgid	"file=%s;  skipped: already processed as %s"
706msgstr	""
707msgid	"file=%s;  skipped: already processed"
708msgstr	""
709msgid	"file=%s;  reusing: originally processed as %s"
710msgstr	""
711msgid	"file=%s;  modifying memory protections (%c PROT_WRITE)"
712msgstr	""
713msgid	"file=%s;  deleting"
714msgstr	""
715msgid	"file=%s;  loading failed: cleaning up lmco 0x%llx"
716msgstr	""
717msgid	"file=%s;  lazy loading from file=%s: symbol=%s"
718msgstr	""
719msgid	"file=%s;  preloading"
720msgstr	""
721msgid	"file=%s;  needed by %s"
722msgstr	""
723msgid	"file=%s;  filter for %s  (configuration definition)"
724msgstr	""
725msgid	"file=%s;  filter for %s"
726msgstr	""
727msgid	"file=%s;  filtee processing failed"
728msgstr	""
729msgid	"file=%s;  filtee skipped  (auditor directed)"
730msgstr	""
731msgid	"file=%s;  required name=%s"
732msgstr	""
733msgid	"file=%s;  promoting mode to %s"
734msgstr	""
735msgid	"file=%s;  deferred dependency exchanged for file=%s"
736msgstr	""
737msgid	"file=%s  [ AOUT ]; generating link map"
738msgstr	""
739msgid	"file=%s  [ ELF ]; generating link map%s"
740msgstr	""
741msgid	"file=%s  [ ELF ]"
742msgstr	""
743
744# NOTE: these are used by lari(1), use care when changing.
745msgid	"file=%s;  analyzing  %s"
746msgstr	""
747msgid	"file=%s;  filtered by %s"
748msgstr	""
749msgid	"file=%s  [ ELF ]; configuration alternate found: %s"
750msgstr	""
751
752
753msgid	"    addr:     %#18llx  size:   %#18llx"
754msgstr	""
755msgid	"    lmid:     %18.18s  lmco:   %#18llx"
756msgstr	""
757msgid	"    envp:     %#18llx  auxv:   %#18llx"
758msgstr	""
759
760msgid	"file=%s  mmapobj entries=%d"
761msgstr	""
762msgid	"  [%d]: addr:  %#18llx  fsize:  %#18llx  %s"
763msgstr	""
764msgid	"       offset: %#17llx  msize:  %#18llx"
765msgstr	""
766
767msgid	"file=%s;  add binding to:"
768msgstr	""
769msgid	"    file=%s   %s"
770msgstr	""
771
772msgid	"processing %s dependencies  %s:"
773msgstr	""
774msgid	"  file=%s;  has no dependencies"
775msgstr	""
776msgid	"  file=%s;  depends on:"
777msgstr	""
778
779msgid	"    file=%s;  object added  %s  %s"
780msgstr	""
781msgid	"    file=%s;  object updated  %s  %s"
782msgstr	""
783msgid	"    file=%s;  object deleting  %s"
784msgstr	""
785msgid	"    file=%s;  object removed from handle  %s"
786msgstr	""
787msgid	"    file=%s;  object must remain on handle  %s"
788msgstr	""
789msgid	"    file=%s;  object remains on orphan handle  %s"
790msgstr	""
791msgid	"    file=%s;  object reinstated  %s"
792msgstr	""
793
794msgid	"handle=%s;  creating  %s  0x%llx:"
795msgstr	""
796msgid	"handle=%s;  adding dependent objects  %s:"
797msgstr	""
798msgid	"handle=%s;  inspecting for deletion:"
799msgstr	""
800msgid	"handle=%s;  deletion cannot be completed: moving to orphan list:"
801msgstr	""
802msgid	"handle=%s;  reinstating from orphan list:"
803msgstr	""
804
805msgid	"handle=%s;  collected for possible removal  %s"
806msgstr	""
807msgid	"handle=%s;  externally referenced from %s: handle retained"
808msgstr	""
809msgid	"pending deletions; rescanning orphan list for available deletions"
810msgstr	""
811
812msgid	"rescanning archives from args[%d-%d]; additional members may satisfy prior extractions"
813msgstr	""
814
815msgid	"configuration file=%s: %s"
816msgstr	""
817msgid	"ignored (configuration building)"
818msgstr	""
819msgid	"invalid version"
820msgstr	""
821msgid	"unable to process file"
822msgstr	""
823msgid	"corrupt or truncated file"
824msgstr	""
825msgid	"incompatible ELF class, byte order, or machine architecture"
826msgstr	""
827
828msgid	"file=%s; open modified by support library: %s"
829msgstr	""
830msgid	"    name changed to: %s"
831msgstr	""
832msgid	"    file descriptor changed from: %d to: %d %s"
833msgstr	""
834msgid	"    ELF descriptor changed from: 0x%llx to: 0x%llx %s"
835msgstr	""
836msgid	" (file will be ignored)"
837msgstr	""
838
839msgid	"control list processing complete: moving lmco 0x%llx to lmco 0x%llx"
840msgstr	""
841
842msgid	"file=%s;  rejected: wrong machine type: %s"
843msgstr	""
844msgid	"file=%s;  rejected: wrong ELF class: %s"
845msgstr	""
846msgid	"file=%s;  rejected: wrong ELF data format: %s"
847msgstr	""
848msgid	"file=%s;  rejected: bad ELF type: %s"
849msgstr	""
850msgid	"file=%s;  rejected: bad ELF flags value: %s"
851msgstr	""
852msgid	"file=%s;  rejected: mismatched ELF flags value: %s"
853msgstr	""
854msgid	"file=%s;  rejected: mismatched ELF/lib version: %s"
855msgstr	""
856msgid	"file=%s;  rejected: HAL R1 extensions required"
857msgstr	""
858msgid	"file=%s;  rejected: Sun UltraSPARC III extensions required"
859msgstr	""
860msgid	"obj=%s;  rejected: %s"
861msgstr	""
862msgid	"obj=%s;  rejected: unknown file type"
863msgstr	""
864msgid	"obj=%s;  rejected: unknown capability: %d"
865msgstr	""
866msgid	"obj=%s;  rejected: hardware capability (CA_SUNW_HW_1) unsupported: %s"
867msgstr	""
868msgid	"obj=%s;  rejected: software capability (CA_SUNW_SF_1) unsupported: %s"
869msgstr	""
870msgid	"obj=%s;  rejected: machine capability (CA_SUNW_MACH) unsupported: %s"
871msgstr	""
872msgid	"obj=%s;  rejected: platform capability (CA_SUNW_PLAT) unsupported: %s"
873msgstr	""
874msgid	"obj=%s;  rejected: hardware capability (CA_SUNW_HW_2) unsupported: %s"
875msgstr	""
876
877# Libs messages
878
879msgid	"Library Search Paths (initial)"
880msgstr	""
881msgid	"Library Search Paths (-L updated)"
882msgstr	""
883msgid	"find lib=-l%s; path=%s"
884msgstr	""
885msgid	"find lib=%s; path=%s (required by %s)"
886msgstr	""
887msgid	" search path=%s  (LD_LIBRARY_PATH)"
888msgstr	""
889msgid	" search path=%s  (configuration LD_LIBRARY_PATH - %s)"
890msgstr	""
891msgid	" search path=%s  (RUNPATH/RPATH from file %s)"
892msgstr	""
893msgid	" search path=%s  (default)"
894msgstr	""
895msgid	" search path=%s  (configuration default - %s)"
896msgstr	""
897msgid	" search path=%s  (trusted default)"
898msgstr	""
899msgid	" search path=%s  (trusted configuration default - %s)"
900msgstr	""
901msgid	" search path=%s  (LIBPATH or -YP)"
902msgstr	""
903msgid	" search path=%s  replaces  path=%s  (-Y%c)"
904msgstr	""
905
906msgid	"find object=%s; searching"
907msgstr	""
908msgid	" trying path=%s%s"
909msgstr	""
910msgid	" trying path=%s  (auditor returned alternative)"
911msgstr	""
912msgid	"   skip path=%s  (auditor directed)"
913msgstr	""
914msgid	" ignore path=%s  (insecure directory name)"
915msgstr	""
916msgid	"    use path=%s  (implicitly secure, as directory has already provided dependencies)"
917msgstr	""
918
919# Mapfile messages
920
921msgid	"mapfile=%s; version=%d (%s)"
922msgstr	""
923msgid	"segment directive; line=%llu; %s"
924msgstr	""
925msgid	"segment order directive; line=%llu; list_cnt=%lld; %s"
926msgstr	""
927msgid	"capability directive; line=%llu"
928msgstr	""
929msgid	"entrance criteria; line=%llu; added"
930msgstr	""
931msgid	"output section ordering; line=%llu; segment=%s section=%s; index=%d"
932msgstr	""
933msgid	"header noalloc directive; line=%llu; first loadable segment will not contain ELF and program headers"
934msgstr	""
935
936msgid	"symbol scope definition"
937msgstr	""
938msgid	"size-symbol directive; line=%llu; segment=%s; symbol=%s; %s"
939msgstr	""
940msgid	"%s, %s; symbol=%s  (%s)"
941msgstr	""
942msgid	"%s; symbol=%s  (%s)"
943msgstr	""
944
945msgid	"depend versions directive; line=%llu, object=%s"
946msgstr	""
947msgid	"%12.12s  %s; line=%llu"
948msgstr	""
949
950msgid	"mapfile additions: segment sorting required"
951msgstr	""
952msgid	"before:"
953msgstr	""
954msgid	"after:"
955msgstr	""
956msgid	"mapfile post processing"
957msgstr	""
958msgid	"set entrance criteria input section sort keys; segment=%s"
959msgstr	""
960
961msgid	"%s: %lld: enter conditional expression id: %s"
962msgstr	""
963msgid	"%s: %lld: delete conditional expression id: %s"
964msgstr	""
965msgid	"%s: %lld: input enabled by %s"
966msgstr	""
967msgid	"%s: %lld: input disabled by %s"
968msgstr	""
969
970# Move messages
971
972msgid	"file=%s  processing move data"
973msgstr	""
974
975msgid	"  i/o     offset   size repeat stride            value  with respect to"
976msgstr	""
977msgid	"  i/o    address   size repeat stride            value  with respect to"
978msgstr	""
979
980msgid	"   in %#10llx %6d %6d %6d %#16llx  %s"
981msgstr	""
982msgid	"  out %#10llx %6d %6d %6d %#16llx  %s"
983msgstr	""
984msgid	"      %#10llx                      %#16llx  (expanded)"
985msgstr	""
986
987msgid	"for symbol=%s roffset: new=0x%llx"
988msgstr	""
989msgid	"for symbol=%s roffset: from=0x%llx, to=0x%llx"
990msgstr	""
991msgid	"adjusting addend for symbol=%s"
992msgstr	""
993msgid	"expanding symbol=%s into .data: %s"
994msgstr	""
995msgid	"copying move entries for symbol=%s into .SUNW_move"
996msgstr	""
997msgid	"collecting move entries: file=%s"
998msgstr	""
999msgid	"move %lld offset invalid: %s: offset=0x%llx lies outside memory image; move discarded"
1000msgstr	""
1001
1002# Section header messages
1003
1004msgid	"section=%s; section header modified by support library: %s"
1005msgstr	""
1006msgid	"  original:"
1007msgstr	""
1008msgid	"  new:"
1009msgstr	""
1010
1011# TRANSLATION_NOTE - The following two items are used following a number in
1012# the MSG_SHD_OFFSET_ENT_XX format strings below. For example "1 entry"
1013# or "23 entries".
1014#
1015msgid	"entry"
1016msgstr	""
1017msgid	"entries"
1018msgstr	""
1019
1020
1021# Section messages
1022
1023msgid	"mapfile symbol definitions: create backing storage:"
1024msgstr	""
1025
1026msgid	"section=%s; input from file=%s"
1027msgstr	""
1028msgid	"section=%s"
1029msgstr	""
1030msgid	"section=%s; input generated merged string section"
1031msgstr	""
1032msgid	"section=%s; added to segment=%s"
1033msgstr	""
1034msgid	"section=%s; added to segment=%s (created)"
1035msgstr	""
1036msgid	"section=%s; redirected to section=%s"
1037msgstr	""
1038msgid	"section=%s; input from file=%s; discarded in favor of section=%s; file=%s"
1039msgstr	""
1040
1041msgid	"section=%s; identified as COMDAT with relaxed relocations enabled"
1042msgstr	""
1043msgid	"section=%s; identified as COMDAT"
1044msgstr	""
1045msgid	"section=%s; relaxed relocations enabled"
1046msgstr	""
1047
1048msgid	"section=%s; input from file=%s; defines %sgroup: signature symbol: %s"
1049msgstr	""
1050msgid	"section=%s; input from file=%s; member of %sgroup: signature symbol: %s"
1051msgstr	""
1052msgid	"section=%s; input from file=%s; discarded in favor of group: signature symbol: %s: file=%s"
1053msgstr	""
1054
1055msgid	"section=%s; input from file=%s; discarded in favor of generated merged string section"
1056msgstr	""
1057msgid	"section=%s; input from file=%s; sh_addralign=%lld; sh_entsize=%lld; unable to merge sections with this size and alignment"
1058msgstr	""
1059
1060msgid	"strtab=%s; full size: %lld; uncompressed"
1061msgstr	""
1062msgid	"strtab=%s; full size: %lld; compressed down to: %lld"
1063msgstr	""
1064msgid	"section=%s (generated merged string section); full size: %lld; compressed down to: %lld"
1065msgstr	""
1066msgid	"strtab=%s; compression information [%d buckets]:"
1067msgstr	""
1068msgid	" bucket[%d]:"
1069msgstr	""
1070msgid	"   [%lld] %s  <master>"
1071msgstr	""
1072msgid	"   [%lld] %s  <suffix of: %s>"
1073msgstr	""
1074
1075# Unused messages
1076
1077msgid	"section=%s; size=0x%llx; input from file=%s; unused: does not satisfy any references%s"
1078msgstr	""
1079msgid	"; discarded"
1080msgstr	""
1081msgid	"file=%s  unused: does not satisfy any references"
1082msgstr	""
1083msgid	"file=%s  unused: unable to determine use"
1084msgstr	""
1085msgid	"file=%s  unreferenced: unused dependency of %s"
1086msgstr	""
1087msgid	"file=%s  unused: cyclic group [%d] member: unreferenced outside of group"
1088msgstr	""
1089msgid	"file=%s  unused interface [%s]: using interface from previously loaded object: file=%s"
1090msgstr	""
1091
1092msgid	" search path=%s  unused: LD_LIBRARY_PATH entry"
1093msgstr	""
1094msgid	" search path=%s  unused: (duplicate) LD_LIBRARY_PATH entry"
1095msgstr	""
1096msgid	" search path=%s  unused: configuration LD_LIBRARY_PATH entry - %s"
1097msgstr	""
1098msgid	" search path=%s  unused: (duplicate) configuration LD_LIBRARY_PATH entry - %s"
1099msgstr	""
1100msgid	" search path=%s  unused: RUNPATH/RPATH from file %s"
1101msgstr	""
1102
1103# Segment messages
1104
1105msgid	"Program Header / Segment Descriptor List (in use)"
1106msgstr	""
1107msgid	"Program Header / Segment Descriptor List (available)"
1108msgstr	""
1109
1110
1111# Support messages
1112
1113msgid	"support object request=%s  (%s)"
1114msgstr	""
1115msgid	"supplied via SGS_SUPPORT"
1116msgstr	""
1117msgid	"supplied via -S"
1118msgstr	""
1119
1120msgid	"  support object=%s:  provides routine %s"
1121msgstr	""
1122
1123msgid	"  calling routine=%s (%s)"
1124msgstr	""
1125msgid	"  calling routine=%s (%s)  %s=%s"
1126msgstr	""
1127msgid	"  unloading object=%s: version=LD_SUP_VNONE"
1128msgstr	""
1129msgid	"output file"
1130msgstr	""
1131msgid	"input file"
1132msgstr	""
1133msgid	"input section"
1134msgstr	""
1135msgid	"section"
1136msgstr	""
1137
1138# Symbol strings
1139msgid	"symbol table processing; input file=%s  [ archive ] %s"
1140msgstr	""
1141msgid	"file=%s, symbol=%s, skipped"
1142msgstr	""
1143msgid	"file=%s(%s), symbol=%s, checking for tentative or restricted visibility override"
1144msgstr	""
1145msgid	"file=%s(%s), symbol=%s, resolves undefined or tentative symbol"
1146msgstr	""
1147msgid	"file=%s(%s), forced extraction"
1148msgstr	""
1149
1150msgid	"symbol table processing; building special symbols"
1151msgstr	""
1152msgid	"symbol table processing; input file=%s  [ %s ]"
1153msgstr	""
1154msgid	"symbol table processing; final update"
1155msgstr	""
1156msgid	"symbol table processing; determining section symbol's index"
1157msgstr	""
1158msgid	"symbol table processing; assigning to bss (possible copy relocations)"
1159msgstr	""
1160msgid	"symbol table processing; reducing global symbols"
1161msgstr	""
1162msgid	"symbol table processing; retaining local symbols"
1163msgstr	""
1164msgid	"symbol table processing; adding version symbols"
1165msgstr	""
1166msgid	"symbol table processing; adding local capabilities symbols"
1167msgstr	""
1168
1169msgid	"symbol[%d]=%s"
1170msgstr	""
1171msgid	"symbol[%d]=%s  (global); adding"
1172msgstr	""
1173msgid	"symbol[%d]=%s  (section); segment=%s"
1174msgstr	""
1175msgid	"symbol[%d]=%s  (global); resolving [%d][%d]"
1176msgstr	""
1177msgid	"symbol=%s;  updated"
1178msgstr	""
1179msgid	"symbol=%s;  creating"
1180msgstr	""
1181msgid	"symbol=%s;  reducing to local"
1182msgstr	""
1183msgid	"symbol=%s;  eliminating"
1184msgstr	""
1185msgid	"symbol=%s;  not eliminated: referenced by section=%s, entry[%d]"
1186msgstr	""
1187msgid	"symbol=%s;  discarded: originates from unused or discarded section=%s from file=%s"
1188msgstr	""
1189msgid	"symbol=%s;  discarded: originates from unused or discarded file=%s"
1190msgstr	""
1191msgid	"symbol[%d]=%s;  discarded duplicate: originates from file=%s"
1192msgstr	""
1193msgid	"symbol[%d]=%s  renamed to %s (-z wrap)"
1194msgstr	""
1195msgid	"symbol[%d]=%s  converting to symbol capability (-z symbolcap)"
1196msgstr	""
1197msgid	"symbol[%d]=%s  creating local capability (-z symbolcap)"
1198msgstr	""
1199msgid	"symbol=%s;  copy destination: alignment: 0x%x"
1200msgstr	""
1201msgid	"symbol=%s;  copy reference"
1202msgstr	""
1203
1204msgid	"symbol=%s;  (original AOUT name)"
1205msgstr	""
1206msgid	"symbol=%s;  lookup in file=%s  [ %s ]"
1207msgstr	""
1208
1209msgid	"symbol=%s;  dlsym() called from file=%s %s %s"
1210msgstr	""
1211msgid	"symbol=%s;  dlsym() called from file=%s; starting at file=%s %s %s"
1212msgstr	""
1213
1214msgid	"  symbol=%s[%u]:  capability family default"
1215msgstr	""
1216msgid	"  symbol=%s[%u]:  used"
1217msgstr	""
1218msgid	"  symbol=%s[%u]:  capability candidate"
1219msgstr	""
1220msgid	"  symbol=%s[%u]:  capability rejected"
1221msgstr	""
1222msgid	"  symbol=%s[%u]:  capability specific (CA_SUNW_HW_1):  [ %s ]"
1223msgstr	""
1224msgid	"  symbol=%s[%u]:  capability specific (CA_SUNW_SF_1):  [ %s ]"
1225msgstr	""
1226msgid	"  symbol=%s[%u]:  capability specific (CA_SUNW_MACH):  [ %s ]"
1227msgstr	""
1228msgid	"  symbol=%s[%u]:  capability specific (CA_SUNW_PLAT):  [ %s ]"
1229msgstr	""
1230msgid	"  symbol=%s[%u]:  capability specific (CA_SUNW_HW_2):  [ %s ]"
1231msgstr	""
1232
1233msgid	"rescanning for lazy dependencies for symbol: %s"
1234msgstr	""
1235
1236msgid	"section %s: symbol '%s' and symbol '%s' have the same address: %#llx"
1237msgstr	""
1238
1239msgid	"symbol=%s;  hash index=%d;  version=%d;  skipping symbol with GNU version hidden bit set in file=%s"
1240msgstr	""
1241
1242# Syminfo string
1243
1244msgid	"syminfo information"
1245msgstr	""
1246
1247
1248# Version strings
1249
1250msgid	"version availability: file=%s"
1251msgstr	""
1252msgid	" available  version                     selected from"
1253msgstr	""
1254msgid	"version definition processing: file=%s"
1255msgstr	""
1256msgid	"version needed processing: file=%s"
1257msgstr	""
1258msgid	"version definition has no interface symbols: %s"
1259msgstr	""
1260
1261# SHF_ORDERED related messages. Token used is sections.
1262
1263msgid	"section=%s; requires output section reordering:"
1264msgstr	""
1265msgid	"section=%s; output section reordered:"
1266msgstr	""
1267msgid	" number of SHN_BEGIN=%u, ordered=%u, default=%u, SHN_AFTER=%u"
1268msgstr	""
1269msgid	" %s=SHN_BEGIN: section=%s from %s"
1270msgstr	""
1271msgid	" %s=SHN_AFTER: section=%s from %s"
1272msgstr	""
1273msgid	" sort key=%u: section=%s from %s, %s=%s"
1274msgstr	""
1275
1276msgid	"the SHF_ORDERED section %s from %s has an error;  flag ignored"
1277msgstr	""
1278
1279msgid	" the sh_info field is out of range"
1280msgstr	""
1281msgid	" the section pointed by sh_info is an ordered section"
1282msgstr	""
1283msgid	" the sh_link field is out of range"
1284msgstr	""
1285msgid	" the sh_flag is incorrect"
1286msgstr	""
1287msgid	" the sh_link is cyclic"
1288msgstr	""
1289msgid	" a section pointed to by sh_link has an error"
1290msgstr	""
1291
1292# Link-Auditing Messages
1293
1294msgid	"auditor %s: required by: %s  %s"
1295msgstr	""
1296msgid	"auditor %s: provides interface: %s"
1297msgstr	""
1298
1299msgid	"auditor %s: la_version(): %d: returned %d"
1300msgstr	""
1301msgid	"auditor %s: la_activity(): %s  %s"
1302msgstr	""
1303msgid	"auditor %s: la_preinit(): %s"
1304msgstr	""
1305msgid	"auditor %s: la_objfilter(): %s: filtee=%s  [ %s ]"
1306msgstr	""
1307msgid	"auditor %s: la_objfilter(): %s: returned 0  (filtee ignored)"
1308msgstr	""
1309msgid	"auditor %s: la_objopen(): %s"
1310msgstr	""
1311msgid	"auditor %s: la_objopen(): %s: returned %s"
1312msgstr	""
1313msgid	"auditor %s: la_objopen(): %s: returned %s  (flags ignored)"
1314msgstr	""
1315msgid	"auditor %s: la_objsearch(): %s  %s"
1316msgstr	""
1317msgid	"auditor %s: la_objsearch(): %s: alternative path returned: %s"
1318msgstr	""
1319msgid	"auditor %s: la_objsearch(): %s: alternative path returned: 0  (path skipped)"
1320msgstr	""
1321msgid	"auditor %s: la_objclose(): %s"
1322msgstr	""
1323msgid	"auditor %s: la_symbind(): %s: value: 0x%llx  %s"
1324msgstr	""
1325msgid	"auditor %s: la_symbind(): %s: returned value: 0x%llx  %s"
1326msgstr	""
1327msgid	"auditor %s: la_pltenter(): %s: value: 0x%llx"
1328msgstr	""
1329msgid	"auditor %s: la_pltenter(): %s: returned value: 0x%llx"
1330msgstr	""
1331msgid	"auditor %s: la_pltexit(): %s"
1332msgstr	""
1333
1334msgid	"file=%s;  global auditing request ignored: object did not initiate process"
1335msgstr	""
1336msgid	"file=%s;  skipped: using auditor from %s"
1337msgstr	""
1338msgid	"file=%s;  auditor has indicated path should be skipped"
1339msgstr	""
1340
1341# GOT Messages
1342
1343msgid	"Global Offset Table information:  (%u entries)"
1344msgstr	""
1345
1346# TRANSLATION_NOTE
1347#	Do not translate .init or .fini, they represent reserved section names.
1348
1349msgid	"calling .init (%s): %s"
1350msgstr	""
1351msgid	"calling .fini: %s"
1352msgstr	""
1353msgid	"calling %s[%d]:0x%llx: %s"
1354msgstr	""
1355msgid	"transferring control: %s"
1356msgstr	""
1357msgid	"loading after relocation has started: interposition request (DF_1_INTERPOSE) ignored: %s"
1358msgstr	""
1359
1360msgid	"traversing %s dependency edge for interposer:"
1361msgstr	""
1362msgid	"traversing %s dependency edge:"
1363msgstr	""
1364msgid	"  node (%d): file=%s"
1365msgstr	""
1366msgid	"  node (%d): file=%s: referenced by %s  %s"
1367msgstr	""
1368msgid	"  node (%d): file=%s; cyclic dependency on %s"
1369msgstr	""
1370msgid	"    [%d]  %s;  collecting %s section"
1371msgstr	""
1372
1373msgid	"from sorted order"
1374msgstr	""
1375msgid	"pending"
1376msgstr	""
1377msgid	"dynamically triggered"
1378msgstr	""
1379msgid	"done"
1380msgstr	""
1381
1382msgid	"notify debugger: event: %s state: %s"
1383msgstr	""
1384
1385msgid	"  cycle detected - sorting cyclic dependencies in %s"
1386msgstr	""
1387msgid	"reverse load-order"
1388msgstr	""
1389msgid	"load-order"
1390msgstr	""
1391
1392msgid	"file=%s;  provides interface [%s]: 0x%llx"
1393msgstr	""
1394
1395# Generic strings
1396
1397msgid	"ignored"
1398msgstr	""
1399msgid	"entered"
1400msgstr	""
1401msgid	"original"
1402msgstr	""
1403msgid	"exclude"
1404msgstr	""
1405msgid	"reset"
1406msgstr	""
1407msgid	" in"
1408msgstr	""
1409msgid	"out"
1410msgstr	""
1411msgid	"act"
1412msgstr	""
1413msgid	"current"
1414msgstr	""
1415msgid	"add"
1416msgstr	""
1417msgid	"old"
1418msgstr	""
1419msgid	"new"
1420msgstr	""
1421msgid	"new (implicit)"
1422msgstr	""
1423msgid	"resolved"
1424msgstr	""
1425msgid	"adding"
1426msgstr	""
1427msgid	"updating"
1428msgstr	""
1429msgid	"updated"
1430msgstr	""
1431msgid	"allow"
1432msgstr	""
1433msgid	"require"
1434msgstr	""
1435msgid	"modify (before)"
1436msgstr	""
1437msgid	"modify (after)"
1438msgstr	""
1439
1440msgid	"<unknown>"
1441msgstr	""
1442msgid	"<orphan>"
1443msgstr	""
1444
1445msgid	"(unused)"
1446msgstr	""
1447msgid	"(again)"
1448msgstr	""
1449msgid	"(null)"
1450msgstr	""
1451msgid	"  (alternate)"
1452msgstr	""
1453msgid	"  (copy zero's unnecessary)"
1454msgstr	""
1455msgid	"  (temporary)"
1456msgstr	""
1457msgid	" (retry) "
1458msgstr	""
1459
1460# TLS related messages
1461
1462msgid	"static TLS module: [%ld] %s"
1463msgstr	""
1464msgid	"static TLS reservation: in use %#llx: additional backup: %#llx"
1465msgstr	""
1466msgid	"static TLS requirement: [%ld] %s: size %#llx: satisfied from backup reservation: remaining %#llx"
1467msgstr	""
1468msgid	"    block:  %#18llx    soff:   %#10llx  flags:  %#llx %s"
1469msgstr	""
1470msgid	"    filesz: %#18llx    memsz:  %#10llx  modid:  %lld"
1471msgstr	""
1472msgid	"%s TLS module: %s"
1473msgstr	""
1474msgid	"add"
1475msgstr	""
1476msgid	"remove"
1477msgstr	""
1478
1479# Statistics related messages
1480
1481msgid	"archive %s: count=%d, used=%d  (%d%%)"
1482msgstr	""
1483
1484msgid	"General Statistics:"
1485msgstr	""
1486msgid	"  Input files: relocatables=%lld  shared objects=%lld  archives=%lld"
1487msgstr	""
1488msgid	"      Symbols output: globals=%-10lld locals=%lld"
1489msgstr	""
1490msgid	"      Symbols  input: globals=%-10lld scoped=%-10lld eliminated=%lld"
1491msgstr	""
1492msgid	"  Relocations output: records=%lld"
1493msgstr	""
1494msgid	"  Relocations  input: records=%-10lld applied=%lld"
1495msgstr	""
1496msgid	"  Relocation Cache"
1497msgstr	""
1498msgid	"Active"
1499msgstr	""
1500msgid	"Output"
1501msgstr	""
1502msgid	"      %s: buffers=%d, used=%lld/%lld (%d%%), size=%lld%s"
1503msgstr	""
1504msgid	"      Aux:    buffers=%d, used=%lld/%lld (%d%%), size=%lld%s"
1505msgstr	""
1506
1507# Capabilities messages
1508
1509msgid	"hardware capabilities (CA_SUNW_HW_1) - %s"
1510msgstr	""
1511msgid	"software capabilities (CA_SUNW_SF_1) - %s"
1512msgstr	""
1513msgid	"machine capability (CA_SUNW_MACH) - %s"
1514msgstr	""
1515msgid	"platform capability (CA_SUNW_PLAT) - %s"
1516msgstr	""
1517msgid	"hardware capabilities (CA_SUNW_HW_2) - %s"
1518msgstr	""
1519
1520msgid	"alternative hardware capabilities (CA_SUNW_HW_1) - %s"
1521msgstr	""
1522msgid	"alternative software capabilities (CA_SUNW_SF_1) - %s"
1523msgstr	""
1524msgid	"alternative machine capability (CA_SUNW_MACH) - %s"
1525msgstr	""
1526msgid	"alternative platform capability (CA_SUNW_PLAT) - %s"
1527msgstr	""
1528msgid	"alternative hardware capabilities (CA_SUNW_HW_2) - %s"
1529msgstr	""
1530
1531msgid	"capabilities; input file=%s"
1532msgstr	""
1533msgid	"%12.12s  %-15.15s  %s"
1534msgstr	""
1535
1536msgid	"obj=%s;  capabilities candidate"
1537msgstr	""
1538msgid	"capabilities post processing"
1539msgstr	""
1540
1541msgid	"dir=%s;  capability directory filtered by %s"
1542msgstr	""
1543msgid	"dir=%s;  no capability objects found"
1544msgstr	""
1545
1546msgid	"obj=%s and obj=%s: have identical capabilities: both objects ignored"
1547msgstr	""
1548
1549msgid	"ELF Header"
1550msgstr	""
1551
1552# Capabilities entries.
1553# TRANSLATION_NOTE - the following two entries provide for a series of one or
1554# more capabilities table entries that align with the initial title.
1555
1556msgid	"     index  tag               value"
1557msgstr	""
1558msgid	"%10.10s  %-15.15s  %s"
1559msgstr	""
1560
1561# Dynamic entries.
1562# TRANSLATION_NOTE - the following two entries provide for a series of one or
1563# more dynamic table entries that align with the initial title.
1564
1565msgid	"     index  tag                value"
1566msgstr	""
1567msgid	"%10.10s  %-16.16s  %-#16llx    %s"
1568msgstr	""
1569
1570# Symbol table entries.
1571# TRANSLATION_NOTE - the following entries provide for a series of one or more
1572# standard 32-bit symbol table entries that align with the initial title.
1573
1574msgid	"     index    value      size      type bind oth ver shndx          name"
1575msgstr	""
1576msgid	"              value      size      type bind oth ver shndx"
1577msgstr	""
1578msgid	"%10.10s  %10.10s 0x%8.8x  %4s %4s %2s %4s %-14.14s %s"
1579msgstr	""
1580
1581# TRANSLATION_NOTE - the following entries provide for a series of one or more
1582# long 32-bit symbol table entries that align with the initial title.
1583
1584msgid	"     index    value      size      type bind oth ver shndx / name"
1585msgstr	""
1586msgid	"              value      size      type bind oth ver shndx"
1587msgstr	""
1588msgid	"%10.10s  %10.10s 0x%8.8x  %4s %4s %2s %4s %-14s %s"
1589msgstr	""
1590
1591# TRANSLATION_NOTE - the following entries provide for a series of one or more
1592# standard 64-bit symbol table entries that align with the initial title.
1593
1594msgid	"     index    value              size              type bind oth ver shndx          name"
1595msgstr	""
1596msgid	"              value              size              type bind oth ver shndx"
1597msgstr	""
1598msgid	"%10.10s  %18.18s 0x%16.16llx  %4s %4s %2s %4s %-14.14s %s"
1599msgstr	""
1600
1601# TRANSLATION_NOTE - the following entries provide for a series of one or more
1602# long 64-bit symbol table entries that align with the initial title.
1603
1604msgid	"     index    value              size              type bind oth ver shndx / name"
1605msgstr	""
1606msgid	"              value              size              type bind oth ver shndx"
1607msgstr	""
1608msgid	"%10.10s  %18.18s 0x%16.16llx  %4s %4s %2s %4s %-14s %s"
1609msgstr	""
1610
1611
1612# Syminfo entries.
1613# TRANSLATION_NOTE - the following two entries provide for a series of one or
1614# more symbol information table entries that align with the initial title.
1615
1616msgid	"     index  flags            bound to                 symbol"
1617msgstr	""
1618msgid	"%10.10s  %-8s %7s %-24s %s"
1619msgstr	""
1620
1621msgid	"<symbol capabilities>"
1622msgstr	""
1623msgid	"<self>"
1624msgstr	""
1625msgid	"<parent>"
1626msgstr	""
1627msgid	"<extern>"
1628msgstr	""
1629
1630
1631# Global offset table entries.
1632# TRANSLATION_NOTE - the following two entries are used by elfdump(1), and
1633# provide for a series of one or more 32-bit got table entries that align with
1634# the initial title.
1635
1636msgid	"     index    addr        value     pending relocation"
1637msgstr	""
1638msgid	"%10.10s  0x%08llx  0x%08llx  %-24s  %s"
1639msgstr	""
1640msgid	"%10.10s  0x%08llx  0x%08llx"
1641msgstr	""
1642
1643# TRANSLATION_NOTE - the following two entries are used by elfdump(1), and
1644# provide for a series of one or more 64-bit got table entries that align with
1645# the initial title.
1646
1647msgid	"     index    addr                value             pending relocation"
1648msgstr	""
1649msgid	"%10.10s  0x%016llx  0x%016llx  %-24s  %s"
1650msgstr	""
1651msgid	"%10.10s  0x%016llx  0x%016llx"
1652msgstr	""
1653
1654# TRANSLATION_NOTE - the following three entries are used by ld(1), and provide
1655# for a series of one or more 32-bit got table entries that align with one of
1656# the initial titles.
1657
1658msgid	"     index ref      offset    addend    symbol"
1659msgstr	""
1660msgid	"     index ref      offset    value     symbol"
1661msgstr	""
1662msgid	"%10.10s %3s  0x%08llx  0x%08llx  %s"
1663msgstr	""
1664msgid	"%10.10s %3s  0x%08llx  0x%08llx  %s:%s"
1665msgstr	""
1666
1667# TRANSLATION_NOTE - the following three entries are used by ld(1), and provide
1668# for a series of one or more 64-bit got table entries that align with one of
1669# the initial titles.
1670
1671msgid	"     index ref    offset              addend            symbol"
1672msgstr	""
1673msgid	"     index ref    offset              value             symbol"
1674msgstr	""
1675msgid	"%10.10s %3s  0x%016llx  0x%016llx  %s"
1676msgstr	""
1677msgid	"%10.10s %3s  0x%016llx  0x%016llx  %s:%s"
1678msgstr	""
1679
1680# Version table entries.
1681msgid	"     index  version                     dependency"
1682msgstr	""
1683msgid	"            file                        version"
1684msgstr	""
1685msgid	"     index  file                        version"
1686msgstr	""
1687
1688msgid	"%10.10s  %-26.26s  %-20s %s"
1689msgstr	""
1690msgid	"%10s  %-26s  %-20s %s"
1691msgstr	""
1692msgid	"%47s  %s"
1693msgstr	""
1694msgid	"%38s  %-20s %s"
1695msgstr	""
1696msgid	"                                        %s"
1697msgstr	""
1698msgid	"            %-26.26s  %s"
1699msgstr	""
1700msgid	"            %-26s  %s"
1701msgstr	""
1702
1703
1704# Relocation entries.
1705# TRANSLATION_NOTE - the following strings are used by elfdump(1).  These
1706# strings provide for a series of one or more 32-bit relocation table entries,
1707# using truncated section names, that align with one of the initial titles.
1708
1709msgid	"    type                       offset     addend  section        symbol"
1710msgstr	""
1711msgid	"    type                       offset             section        symbol"
1712msgstr	""
1713msgid	"  %-24s %#10llx %#10llx  %-14.14s %s"
1714msgstr	""
1715msgid	"  %-24s %#10llx             %-14.14s %s"
1716msgstr	""
1717
1718# TRANSLATION_NOTE - the following strings are used by elfdump(1).  These
1719# strings provide for a series of one or more 32-bit relocation table entries,
1720# using long section names, that align with one of the initial titles.
1721
1722msgid	"    type                       offset     addend  section / symbol"
1723msgstr	""
1724msgid	"    type                       offset             section / symbol"
1725msgstr	""
1726msgid	"  %-24s %#10llx %#10llx  %-14s %s"
1727msgstr	""
1728msgid	"  %-24s %#10llx             %-14s %s"
1729msgstr	""
1730
1731
1732# TRANSLATION_NOTE - the following strings are used by ld.so.1(1).  These
1733# strings provide for a series of one or more 32-bit relocation table entries,
1734# that align with the initial titles.
1735
1736msgid	"         type                       offset     addend  symbol"
1737msgstr	""
1738msgid	"         type                       offset      value  symbol"
1739msgstr	""
1740msgid	"                                                value"
1741msgstr	""
1742msgid	" %5s %-24s %#10llx %#10llx  %s  %s"
1743msgstr	""
1744msgid	" %5s %-24s %#10llx             %s  %s"
1745msgstr	""
1746msgid	" apply                          %#10llx %#10llx"
1747msgstr	""
1748msgid	" apply                          %10.10s %#10llx"
1749msgstr	""
1750
1751
1752# TRANSLATION_NOTE - the following strings are used by ld(1).  These strings
1753# provide for a series of one or more 32-bit relocation table entries, using
1754# truncated section names, that align with one of the initial titles.
1755
1756msgid	"         type                       offset     addend  section        symbol"
1757msgstr	""
1758msgid	"         type                       offset             section        symbol"
1759msgstr	""
1760msgid	" %5s %-24s %#10llx %#10llx  %-14.14s %s  %s"
1761msgstr	""
1762msgid	" %5s %-24s %#10llx             %-14.14s %s  %s"
1763msgstr	""
1764
1765msgid	"         type                       offset      value  section        symbol"
1766msgstr	""
1767
1768# TRANSLATION_NOTE - the following strings are used by ld(1).  These strings
1769# provide for a series of one or more 32-bit relocation table entries, using
1770# long section names, that align with one of the initial titles.
1771
1772msgid	"         type                       offset     addend  section / symbol"
1773msgstr	""
1774msgid	"         type                       offset             section / symbol"
1775msgstr	""
1776msgid	" %5s %-24s %#10llx %#10llx  %-14s %s  %s"
1777msgstr	""
1778msgid	" %5s %-24s %#10llx             %-14s %s  %s"
1779msgstr	""
1780
1781msgid	"         type                       offset      value  section / symbol"
1782msgstr	""
1783
1784# TRANSLATION_NOTE - the following strings are used by elfdump(1).  These
1785# strings provide for a series of one or more 64-bit relocation table entries,
1786# using truncated section names, that align with one of the initial titles.
1787
1788msgid	"    type                               offset             addend  section        symbol"
1789msgstr	""
1790msgid	"    type                               offset                     section        symbol"
1791msgstr	""
1792msgid	"  %-24s %#18llx %#18llx  %-14.14s %s"
1793msgstr	""
1794msgid	"  %-24s %#18llx                     %-14.14s %s"
1795msgstr	""
1796
1797# TRANSLATION_NOTE - the following strings are used by elfdump(1).  These
1798# strings provide for a series of one or more 64-bit relocation table entries,
1799# using long section names, that align with one of the initial titles.
1800
1801msgid	"    type                               offset             addend  section / symbol"
1802msgstr	""
1803msgid	"    type                               offset                     section / symbol"
1804msgstr	""
1805msgid	"  %-24s %#18llx %#18llx  %-14s %s"
1806msgstr	""
1807msgid	"  %-24s %#18llx                     %-14s %s"
1808msgstr	""
1809
1810
1811# TRANSLATION_NOTE - the following strings are used by ld.so.1(1).  These
1812# strings provide for a series of one or more 64-bit relocation table entries,
1813# that align with the initial titles.
1814
1815msgid	"         type                               offset             addend  symbol"
1816msgstr	""
1817msgid	"         type                               offset              value  symbol"
1818msgstr	""
1819msgid	"                                                                value"
1820msgstr	""
1821msgid	" %5s %-24s %#18llx %#18llx  %s  %s"
1822msgstr	""
1823msgid	" %5s %-24s %#18llx                    %s  %s"
1824msgstr	""
1825msgid	" apply                          %#18llx %#18llx"
1826msgstr	""
1827msgid	" apply                          %18.18s %#18llx"
1828msgstr	""
1829
1830# TRANSLATION_NOTE - the following strings are used by ld(1).  These strings
1831# provide for a series of one or more 64-bit relocation table entries, using
1832# truncated section names, that align with one of the initial titles.
1833
1834msgid	"         type                               offset             addend  section        symbol"
1835msgstr	""
1836msgid	"         type                               offset                     section        symbol"
1837msgstr	""
1838msgid	" %5s %-24s %#18llx %#18llx  %-14.14s %s  %s"
1839msgstr	""
1840msgid	" %5s %-24s %#18llx                     %-14.14s %s  %s"
1841msgstr	""
1842
1843msgid	"         type                               offset              value  section        symbol"
1844msgstr	""
1845
1846# TRANSLATION_NOTE - the following strings are used by ld(1).  These strings
1847# provide for a series of one or more 64-bit relocation table entries, using
1848# long section names, that align with one of the initial titles.
1849
1850msgid	"         type                               offset             addend  section / symbol"
1851msgstr	""
1852msgid	"         type                               offset                     section / symbol"
1853msgstr	""
1854msgid	" %5s %-24s %#18llx %#18llx  %-14s %s  %s"
1855msgstr	""
1856msgid	" %5s %-24s %#18llx                     %-14s %s  %s"
1857msgstr	""
1858
1859msgid	"         type                               offset              value  section / symbol"
1860msgstr	""
1861
1862# dl*() family messages
1863
1864msgid	"dl_iterate_phdr() called from file=%s"
1865msgstr	""
1866msgid	"dl_iterate_phdr() object map/unmap in callback"
1867msgstr	""
1868msgid	"dl_iterate_phdr() early return due to object unmap"
1869msgstr	""
1870msgid	"dl_iterate_phdr() callback"
1871msgstr	""
1872msgid	"    dlpi_name:    %s"
1873msgstr	""
1874msgid	"    dlpi_adds:    %-18llu   dlpi_subs:   %-18llu"
1875msgstr	""
1876
1877msgid	"    dlpi_addr:    %#-10llx"
1878msgstr	""
1879msgid	"    dlpi_phdr:    %#-10llx  dlpi_phnum:  %u"
1880msgstr	""
1881
1882msgid	"    dlpi_addr:    %#-18llx"
1883msgstr	""
1884msgid	"    dlpi_phdr:    %#-18llx   dlpi_phnum:  %u"
1885msgstr	""
1886
1887msgid	"file=%s;  dlclose() called from file=%s  %s"
1888msgstr	""
1889msgid	"file=%s;  dldump() called from file=%s: dumping to file=%s  %s"
1890msgstr	""
1891msgid	"file=%s;  dlopen() called from file=%s %s %s"
1892msgstr	""
1893
1894msgid	"dladdr() called from file=%s: %#llx"
1895msgstr	""
1896msgid	"dlerror() called from file=%s: %s"
1897msgstr	""
1898msgid	"dlinfo() called from file=%s: handle=%s, request=%s, user data=%#llx"
1899msgstr	""
1900
1901