aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/read.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/read.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/read.fish')
-rw-r--r--share/completions/read.fish16
1 files changed, 8 insertions, 8 deletions
diff --git a/share/completions/read.fish b/share/completions/read.fish
index 1a88aa69..5130993d 100644
--- a/share/completions/read.fish
+++ b/share/completions/read.fish
@@ -1,8 +1,8 @@
-complete -c read -s h -l help -d (N_ "Display help and exit")
-complete -c read -s p -l prompt -d (N_ "Set prompt command") -x
-complete -c read -s x -l export -d (N_ "Export variable to subprocess")
-complete -c read -s g -l global -d (N_ "Make variable scope global")
-complete -c read -s l -l local -d (N_ "Make variable scope local")
-complete -c read -s U -l universal -d (N_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
-complete -c read -s u -l unexport -d (N_ "Do not export variable to subprocess")
-complete -c read -s m -l mode-name -d (N_ "Name to load/save history under") -r -a "read fish"
+complete -c read -s h -l help --description "Display help and exit"
+complete -c read -s p -l prompt --description "Set prompt command" -x
+complete -c read -s x -l export --description "Export variable to subprocess"
+complete -c read -s g -l global --description "Make variable scope global"
+complete -c read -s l -l local --description "Make variable scope local"
+complete -c read -s U -l universal --description "Make variable scope universal, i.e. share variable with all the users fish processes on this computer"
+complete -c read -s u -l unexport --description "Do not export variable to subprocess"
+complete -c read -s m -l mode-name --description "Name to load/save history under" -r -a "read fish"