aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/apt-build.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/apt-build.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/apt-build.fish')
-rw-r--r--share/completions/apt-build.fish54
1 files changed, 27 insertions, 27 deletions
diff --git a/share/completions/apt-build.fish b/share/completions/apt-build.fish
index 9b1ea5e2..42a8cd3d 100644
--- a/share/completions/apt-build.fish
+++ b/share/completions/apt-build.fish
@@ -1,29 +1,29 @@
#apt-build
-complete -c apt-build -l help -d (N_ "Display help and exit")
-complete -f -c apt-build -a update -d (N_ "Update list of packages")
-complete -f -c apt-build -a upgrade -d (N_ "Upgrade packages")
-complete -f -c apt-bulid -a world -d (N_ "Rebuild your system")
-complete -x -c apt-build -a install -d (N_ "Build and install a new package")
-complete -x -c apt-build -a source -d (N_ "Download and extract a source")
-complete -x -c apt-build -a info -d (N_ "Info on a package")
-complete -x -c apt-build -a remove -d (N_ "Remove packages")
-complete -x -c apt-build -a clean-build -d (N_ "Erase built packages")
-complete -x -c apt-build -a build-source -d (N_ "Build source without install")
-complete -x -c apt-build -a clean-sources -d (N_ "Clean source directories")
-complete -x -c apt-build -a update-source -d (N_ "Update source and rebuild")
-complete -x -c apt-build -a update-repository -d (N_ "Update the repository")
-complete -f -c apt-build -l nowrapper -d (N_ "Do not use gcc wrapper")
-complete -f -c apt-build -l remove-builddep -d (N_ "Remove build-dep")
-complete -f -c apt-build -l no-source -d (N_ "Do not download source")
-complete -f -c apt-build -l build-dir -d (N_ "Specify build-dir")
-complete -f -c apt-build -l rebuild -d (N_ "Rebuild a package")
-complete -f -c apt-build -l reinstall -d (N_ "Rebuild and install an installed package")
-complete -r -f -c apt-build -l build-command -d (N_ "Use <command> to build")
-complete -r -c apt-build -l patch -d (N_ "Apply <file> patch")
-complete -c apt-build -s p -l patch-strip -d (N_ "Prefix to strip on patch")
-complete -c apt-build -s y -l yes -d (N_ "Assume yes to all questions")
-complete -c apt-build -l purge -d (N_ "Use purge instead of remove")
-complete -c apt-build -l noupdate -d (N_ "Do not run update")
-complete -r -c apt-build -l source-list -d (N_ "Specify sources.list file")
-complete -f -c apt-build -s v -l version -d (N_ "Display version and exit")
+complete -c apt-build -l help --description "Display help and exit"
+complete -f -c apt-build -a update --description "Update list of packages"
+complete -f -c apt-build -a upgrade --description "Upgrade packages"
+complete -f -c apt-bulid -a world --description "Rebuild your system"
+complete -x -c apt-build -a install --description "Build and install a new package"
+complete -x -c apt-build -a source --description "Download and extract a source"
+complete -x -c apt-build -a info --description "Info on a package"
+complete -x -c apt-build -a remove --description "Remove packages"
+complete -x -c apt-build -a clean-build --description "Erase built packages"
+complete -x -c apt-build -a build-source --description "Build source without install"
+complete -x -c apt-build -a clean-sources --description "Clean source directories"
+complete -x -c apt-build -a update-source --description "Update source and rebuild"
+complete -x -c apt-build -a update-repository --description "Update the repository"
+complete -f -c apt-build -l nowrapper --description "Do not use gcc wrapper"
+complete -f -c apt-build -l remove-builddep --description "Remove build-dep"
+complete -f -c apt-build -l no-source --description "Do not download source"
+complete -f -c apt-build -l build-dir --description "Specify build-dir"
+complete -f -c apt-build -l rebuild --description "Rebuild a package"
+complete -f -c apt-build -l reinstall --description "Rebuild and install an installed package"
+complete -r -f -c apt-build -l build-command --description "Use <command> to build"
+complete -r -c apt-build -l patch --description "Apply <file> patch"
+complete -c apt-build -s p -l patch-strip --description "Prefix to strip on patch"
+complete -c apt-build -s y -l yes --description "Assume yes to all questions"
+complete -c apt-build -l purge --description "Use purge instead of remove"
+complete -c apt-build -l noupdate --description "Do not run update"
+complete -r -c apt-build -l source-list --description "Specify sources.list file"
+complete -f -c apt-build -s v -l version --description "Display version and exit"