aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/uname.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/uname.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/uname.fish')
-rw-r--r--share/completions/uname.fish22
1 files changed, 11 insertions, 11 deletions
diff --git a/share/completions/uname.fish b/share/completions/uname.fish
index 2ae9bd87..d67124a3 100644
--- a/share/completions/uname.fish
+++ b/share/completions/uname.fish
@@ -1,11 +1,11 @@
-complete -c uname -s a -l all -d (N_ "Print all information")
-complete -c uname -s s -l kernel-name -d (N_ "Print kernel name")
-complete -c uname -s n -l nodename -d (N_ "Print network node hostname")
-complete -c uname -s r -l kernel-release -d (N_ "Print kernel release")
-complete -c uname -s v -l kernel-version -d (N_ "Print kernel version")
-complete -c uname -s m -l machine -d (N_ "Print machine name")
-complete -c uname -s p -l processor -d (N_ "Print processor")
-complete -c uname -s i -l hardware-platform -d (N_ "Print hardware platform")
-complete -c uname -s o -l operating-system -d (N_ "Print operating system")
-complete -c uname -l help -d (N_ "Display help and exit")
-complete -c uname -l verion -d (N_ "Display version and exit")
+complete -c uname -s a -l all --description "Print all information"
+complete -c uname -s s -l kernel-name --description "Print kernel name"
+complete -c uname -s n -l nodename --description "Print network node hostname"
+complete -c uname -s r -l kernel-release --description "Print kernel release"
+complete -c uname -s v -l kernel-version --description "Print kernel version"
+complete -c uname -s m -l machine --description "Print machine name"
+complete -c uname -s p -l processor --description "Print processor"
+complete -c uname -s i -l hardware-platform --description "Print hardware platform"
+complete -c uname -s o -l operating-system --description "Print operating system"
+complete -c uname -l help --description "Display help and exit"
+complete -c uname -l verion --description "Display version and exit"