correct German translation strings

Fixes #3834
This commit is contained in:
Kurtis Rader 2017-02-09 13:32:30 -08:00
parent 214c677032
commit f27407bbf9
2 changed files with 9 additions and 9 deletions

View file

@ -41,7 +41,7 @@ msgstr "Kindprozess"
#: src/expand.cpp:55 #: src/expand.cpp:55
#, fuzzy #, fuzzy
msgid "Process" msgid "Process"
msgstr "Prozess\n" msgstr "Prozess"
#: src/expand.cpp:58 #: src/expand.cpp:58
msgid "Job" msgid "Job"
@ -142,7 +142,7 @@ msgstr "%ls: Unbekannte Option '%ls'\n"
#: src/wgetopt.cpp:374 #: src/wgetopt.cpp:374
#, fuzzy, c-format #, fuzzy, c-format
msgid "%ls: Unrecognized option '%lc%ls'\n" msgid "%ls: Unrecognized option '%lc%ls'\n"
msgstr "%ls: Unbekannte Option '%ls'\n" msgstr "%ls: Unbekannte Option '%lc%ls'\n"
#: src/wgetopt.cpp:392 #: src/wgetopt.cpp:392
#, fuzzy, c-format #, fuzzy, c-format
@ -261,13 +261,13 @@ msgstr "Job %d, '%ls' hat %ls"
#: src/proc.cpp:599 #: src/proc.cpp:599
#, fuzzy, c-format #, fuzzy, c-format
msgid "%ls: %ls'%ls' terminated by signal %ls (%ls)" msgid "%ls: %ls'%ls' terminated by signal %ls (%ls)"
msgstr "%ls: Job %d, '%ls' durch Signal %ls (%ls) beendet" msgstr "%ls: %ls'%ls' durch Signal %ls (%ls) beendet"
#: src/proc.cpp:606 #: src/proc.cpp:606
#, fuzzy, c-format #, fuzzy, c-format
msgid "%ls: Process %d, '%ls' %ls'%ls' terminated by signal %ls (%ls)" msgid "%ls: Process %d, '%ls' %ls'%ls' terminated by signal %ls (%ls)"
msgstr "" msgstr ""
"%ls: Prozess %d, '%ls' aus job %d, '%ls' durch Signal %ls (%ls) beendet" "%ls: Prozess %d, '%ls' %ls'%ls' durch Signal %ls (%ls) beendet"
#: src/proc.cpp:629 #: src/proc.cpp:629
msgid "ended" msgid "ended"
@ -335,7 +335,7 @@ msgstr "Hintergrundkommandos können nicht als Bedingung verwendet werden"
#: src/wutil.cpp:137 #: src/wutil.cpp:137
#, c-format #, c-format
msgid "getcwd() failed with errno %d/%s" msgid "getcwd() failed with errno %d/%s"
msgstr "getcwd() schlug mit errno %s/%s fehl" msgstr "getcwd() schlug mit errno %d/%s fehl"
#: src/reader.cpp:323 #: src/reader.cpp:323
msgid "Could not set terminal mode for new job" msgid "Could not set terminal mode for new job"
@ -407,7 +407,7 @@ msgstr "Fehler beim Schreiben der Ausgabe"
#: src/exec.cpp:48 #: src/exec.cpp:48
#, fuzzy, c-format #, fuzzy, c-format
msgid "An error occurred while redirecting file '%s'" msgid "An error occurred while redirecting file '%s'"
msgstr "Fehler beim Umleiten der Datei '%ls'" msgstr "Fehler beim Umleiten der Datei '%s'"
#: src/exec.cpp:634 #: src/exec.cpp:634
#, c-format #, c-format
@ -858,7 +858,7 @@ msgstr "Unpassendes Blockende. Programm wird beendet."
#: src/parser.cpp:777 #: src/parser.cpp:777
#, fuzzy, c-format #, fuzzy, c-format
msgid "%ls (line %lu): " msgid "%ls (line %lu): "
msgstr "%ls (Zeile %d): " msgstr "%ls (Zeile %lu): "
#: src/parser.cpp:780 #: src/parser.cpp:780
#, c-format #, c-format
@ -1384,7 +1384,7 @@ msgstr "%ls: Konnte PWD-Variable nicht setzen\n"
#: src/builtin.cpp:2667 #: src/builtin.cpp:2667
#, fuzzy, c-format #, fuzzy, c-format
msgid "%ls: Key not specified\n" msgid "%ls: Key not specified\n"
msgstr "%s: Schlüssel nicht angegeben\\n" msgstr "%ls: Schlüssel nicht angegeben\\n"
#: src/builtin.cpp:2697 src/builtin.cpp:2705 #: src/builtin.cpp:2697 src/builtin.cpp:2705
#, fuzzy, c-format #, fuzzy, c-format

View file

@ -586,7 +586,7 @@ int job_reap(bool allow_interactive) {
// We want to report the job number, unless it's the only job, in which case // We want to report the job number, unless it's the only job, in which case
// we don't need to. // we don't need to.
const wcstring job_number_desc = const wcstring job_number_desc =
(job_count == 1) ? wcstring() : format_string(L"Job %d, ", j->job_id); (job_count == 1) ? wcstring() : format_string(_(L"Job %d, "), j->job_id);
fwprintf(stdout, _(L"%ls: %ls\'%ls\' terminated by signal %ls (%ls)"), fwprintf(stdout, _(L"%ls: %ls\'%ls\' terminated by signal %ls (%ls)"),
program_name, job_number_desc.c_str(), program_name, job_number_desc.c_str(),
truncate_command(j->command()).c_str(), sig2wcs(WTERMSIG(p->status)), truncate_command(j->command()).c_str(), sig2wcs(WTERMSIG(p->status)),