aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/modprobe.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/modprobe.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/modprobe.fish')
-rw-r--r--share/completions/modprobe.fish40
1 files changed, 20 insertions, 20 deletions
diff --git a/share/completions/modprobe.fish b/share/completions/modprobe.fish
index 4abde544..e6625ab3 100644
--- a/share/completions/modprobe.fish
+++ b/share/completions/modprobe.fish
@@ -3,24 +3,24 @@
#
complete -c modprobe -d Module -a "(/sbin/modprobe -l | sed -e 's/\/.*\/\([^\/.]*\).*/\1/')"
-complete -c modprobe -s v -l verbose -d (N_ "Print messages about what the program is doing")
-complete -c modprobe -s C -l config -d (N_ "Configuration file") -r
-complete -c modprobe -s c -l showconfig -d (N_ "Dump configuration file")
-complete -c modprobe -s n -l dry-run -d (N_ "Do not actually insert/remove module")
-complete -c modprobe -s i -l ingnore-install -d (N_ "Ignore install and remove commands in configuration file")
-complete -c modprobe -l ingnore-remove -d (N_ "Ignore install and remove commands in configuration file")
-complete -c modprobe -s q -l quiet -d (N_ "Ignore bogus module names")
-complete -c modprobe -s r -l remove -d (N_ "Remove modules")
-complete -c modprobe -s V -l version -d (N_ "Display version and exit")
-complete -c modprobe -s f -l force -d (N_ "Ignore all version information")
-complete -c modprobe -l force-vermagic -d (N_ "Ignore version magic information")
-complete -c modprobe -l force-modversion -d (N_ "Ignore module interface version")
-complete -c modprobe -s l -l list -d (N_ "List all modules matching the given wildcard")
-complete -c modprobe -s a -l all -d (N_ "Insert modules matching the given wildcard")
-complete -c modprobe -s t -l type -d (N_ "Restrict wildcards to specified directory")
-complete -c modprobe -s s -l syslog -d (N_ "Send error messages through syslog")
-complete -c modprobe -l set-version -d (N_ "Specify kernel version")
-complete -c modprobe -l show-depends -d (N_ "List dependencies of module")
-complete -c modprobe -s o -l name -d (N_ "Rename module")
-complete -c modprobe -l first-time -d (N_ "Fail if inserting already loaded module")
+complete -c modprobe -s v -l verbose --description "Print messages about what the program is doing"
+complete -c modprobe -s C -l config --description "Configuration file" -r
+complete -c modprobe -s c -l showconfig --description "Dump configuration file"
+complete -c modprobe -s n -l dry-run --description "Do not actually insert/remove module"
+complete -c modprobe -s i -l ingnore-install --description "Ignore install and remove commands in configuration file"
+complete -c modprobe -l ingnore-remove --description "Ignore install and remove commands in configuration file"
+complete -c modprobe -s q -l quiet --description "Ignore bogus module names"
+complete -c modprobe -s r -l remove --description "Remove modules"
+complete -c modprobe -s V -l version --description "Display version and exit"
+complete -c modprobe -s f -l force --description "Ignore all version information"
+complete -c modprobe -l force-vermagic --description "Ignore version magic information"
+complete -c modprobe -l force-modversion --description "Ignore module interface version"
+complete -c modprobe -s l -l list --description "List all modules matching the given wildcard"
+complete -c modprobe -s a -l all --description "Insert modules matching the given wildcard"
+complete -c modprobe -s t -l type --description "Restrict wildcards to specified directory"
+complete -c modprobe -s s -l syslog --description "Send error messages through syslog"
+complete -c modprobe -l set-version --description "Specify kernel version"
+complete -c modprobe -l show-depends --description "List dependencies of module"
+complete -c modprobe -s o -l name --description "Rename module"
+complete -c modprobe -l first-time --description "Fail if inserting already loaded module"