aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/jobs.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-16 11:18:28 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-16 11:18:28 +1000
commit34e27ff4c216e2d379afba19fed2761a684697d8 (patch)
treea1429d6c9796caf54c3f4d440e740a88e3aa76aa /share/completions/jobs.fish
parent47588c8e75f56f6065a4eb6d4e3bccbad4fab14e (diff)
Drop use of the N_ no-op for translation descriptions. Instead, tell xgettext that any token following '--description' should be translated. This should greatly speed up completion loading on platforms where fork() is slow. (Hi, OS X)
darcs-hash:20070116011828-ac50b-fb923dc877869ded4d506bbe0bc5364eea44092f.gz
Diffstat (limited to 'share/completions/jobs.fish')
-rw-r--r--share/completions/jobs.fish8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/completions/jobs.fish b/share/completions/jobs.fish
index 8b4039d9..64bf19fd 100644
--- a/share/completions/jobs.fish
+++ b/share/completions/jobs.fish
@@ -1,7 +1,7 @@
complete -c jobs -s h -l help -d (N_ "Display help and exit" )
-complete -c jobs -s p -l pid -d (N_ "Show the process id of each process in the job")
-complete -c jobs -s g -l group -d (N_ "Show group id of job")
-complete -c jobs -s c -l command -d (N_ "Show commandname of each job")
-complete -c jobs -s l -l last -d (N_ "Only show status for last job to be started")
+complete -c jobs -s p -l pid --description "Show the process id of each process in the job"
+complete -c jobs -s g -l group --description "Show group id of job"
+complete -c jobs -s c -l command --description "Show commandname of each job"
+complete -c jobs -s l -l last --description "Only show status for last job to be started"