l10n: don't localize PID

This simplifies our table formatting. Since none of our translations
modify the string `PID`, it seems reasonable to assume that the term
does not benefit from localization.

Part of #12405
This commit is contained in:
Daniel Rainer
2026-02-02 01:24:57 +01:00
committed by Johannes Altmanninger
parent 0d79681070
commit 12bd4cf9e9
9 changed files with 1 additions and 25 deletions

View File

@@ -24,9 +24,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr " PID Befehl"
msgid " a path variable"
msgstr " eine Pfadvariable"

View File

@@ -24,9 +24,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr ""
msgid " a path variable"
msgstr ""

View File

@@ -153,9 +153,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr " PID Commande"
msgid " a path variable"
msgstr " une variable de chemin"

View File

@@ -20,9 +20,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr ""
msgid " a path variable"
msgstr ""

View File

@@ -25,9 +25,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr ""
msgid " a path variable"
msgstr ""

View File

@@ -21,9 +21,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr ""
msgid " a path variable"
msgstr ""

View File

@@ -45,9 +45,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr " PID 命令"
msgid " a path variable"
msgstr "路径变量"

View File

@@ -18,9 +18,6 @@ msgstr ""
msgid "fish-section-tier1-from-rust"
msgstr ""
msgid " PID Command"
msgstr " PID 命令"
msgid " a path variable"
msgstr "路徑變數"

View File

@@ -989,7 +989,7 @@ pub fn jobs_requiring_warning_on_exit(parser: &Parser) -> JobList {
/// jobs_requiring_warning_on_exit().
pub fn print_exit_warning_for_jobs(jobs: &JobList) {
printf!("%s\n", wgettext!("There are still jobs active:"));
printf!("\n%s\n", wgettext!(" PID Command"));
printf!("\n PID %s\n", wgettext!("Command"));
for j in jobs {
// Unwrap safety: we can't have a background job that doesn't have an external process and
// external processes always have a pid set.