diff options
author | Alan Modra <amodra@gmail.com> | 2017-10-11 14:48:45 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-10-11 15:04:59 +1030 |
commit | d003af558092dc521f93d16628b9ccbf434370e3 (patch) | |
tree | 28cddf0bb4ecb0fd046923465229d9b660c3ac7d /ld/emultempl/avrelf.em | |
parent | e8b8ffd3c0676f69d1edd3859d4eebf10d1d62d7 (diff) | |
download | gdb-d003af558092dc521f93d16628b9ccbf434370e3.zip gdb-d003af558092dc521f93d16628b9ccbf434370e3.tar.gz gdb-d003af558092dc521f93d16628b9ccbf434370e3.tar.bz2 |
ld internationalization fixes
* emultempl/aarch64elf.em: Wrap einfo strings in _(). Formatting.
* emultempl/aix.em: Likewise.
* emultempl/armcoff.em: Likewise.
* emultempl/armelf.em: Likewise.
* emultempl/avrelf.em: Likewise.
* emultempl/beos.em: Likewise.
* emultempl/cr16elf.em: Likewise.
* emultempl/elf-generic.em: Likewise.
* emultempl/elf32.em: Likewise.
* emultempl/genelf.em: Likewise.
* emultempl/hppaelf.em: Likewise.
* emultempl/linux.em: Likewise.
* emultempl/lnk960.em: Likewise.
* emultempl/m68hc1xelf.em: Likewise.
* emultempl/m68kcoff.em: Likewise.
* emultempl/m68kelf.em: Likewise.
* emultempl/metagelf.em: Likewise.
* emultempl/mipself.em: Likewise.
* emultempl/mmix-elfnmmo.em: Likewise.
* emultempl/mmo.em: Likewise.
* emultempl/msp430.em: Likewise.
* emultempl/nds32elf.em: Likewise.
* emultempl/nios2elf.em: Likewise.
* emultempl/pe.em: Likewise.
* emultempl/pep.em: Likewise.
* emultempl/ppc32elf.em: Likewise.
* emultempl/ppc64elf.em: Likewise.
* emultempl/riscvelf.em: Likewise.
* emultempl/s390.em: Likewise.
* emultempl/scoreelf.em: Likewise.
* emultempl/spuelf.em: Likewise.
* emultempl/sunos.em: Likewise.
* emultempl/tic6xdsbt.em: Likewise.
* emultempl/v850elf.em: Likewise.
* emultempl/vms.em: Likewise.
* emultempl/vxworks.em: Likewise.
* ldcref.c: Likewise.
* ldlang.c: Likewise.
* ldlex.l: Likewise.
* ldmain.c: Likewise.
* pe-dll.c: Likewise.
* plugin.c: Likewise.
Diffstat (limited to 'ld/emultempl/avrelf.em')
-rw-r--r-- | ld/emultempl/avrelf.em | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/ld/emultempl/avrelf.em b/ld/emultempl/avrelf.em index acb478f..7aeecb7 100644 --- a/ld/emultempl/avrelf.em +++ b/ld/emultempl/avrelf.em @@ -96,14 +96,14 @@ avr_elf_${EMULATION_NAME}_before_allocation (void) ret = elf32_avr_setup_section_lists (link_info.output_bfd, &link_info); if (ret < 0) - einfo ("%X%P: can not setup the input section list: %E\n"); + einfo (_("%X%P: can not setup the input section list: %E\n")); if (ret <= 0) return; /* Call into the BFD backend to do the real "stub"-work. */ if (! elf32_avr_size_stubs (link_info.output_bfd, &link_info, TRUE)) - einfo ("%X%P: can not size stub section: %E\n"); + einfo (_("%X%P: can not size stub section: %E\n")); } /* This is called before the input files are opened. We create a new @@ -116,7 +116,8 @@ avr_elf_create_output_section_statements (void) if (bfd_get_flavour (link_info.output_bfd) != bfd_target_elf_flavour) { - einfo ("%X%P: changing output format whilst linking is not supported\n"); + einfo (_("%X%P: changing output format whilst linking " + "is not supported\n")); return; } @@ -130,7 +131,7 @@ avr_elf_create_output_section_statements (void) bfd_get_arch (link_info.output_bfd), bfd_get_mach (link_info.output_bfd))) { - einfo ("%X%P: can not create stub BFD %E\n"); + einfo (_("%X%P: can not create stub BFD %E\n")); return; } @@ -151,7 +152,7 @@ avr_elf_create_output_section_statements (void) return; err_ret: - einfo ("%X%P: can not make stub section: %E\n"); + einfo (_("%X%P: can not make stub section: %E\n")); return; } @@ -165,7 +166,7 @@ avr_elf_after_allocation (void) /* If relaxing, elf32_avr_size_stubs will be called from elf32_avr_relax_section. */ if (!elf32_avr_size_stubs (link_info.output_bfd, &link_info, TRUE)) - einfo ("%X%P: can not size stub section: %E\n"); + einfo (_("%X%P: can not size stub section: %E\n")); } gld${EMULATION_NAME}_after_allocation (); @@ -174,7 +175,7 @@ avr_elf_after_allocation (void) if (!avr_no_stubs) { if (!elf32_avr_build_stubs (&link_info)) - einfo ("%X%P: can not build stubs: %E\n"); + einfo (_("%X%P: can not build stubs: %E\n")); } } |