aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/completions/help.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-08 12:56:56 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-08 12:56:56 +1000
commit690648e1b0a04db179d113e2900dde52d0e7f67f (patch)
treee06606ec232ce96c730433c2490be796c4e442f8 /init/completions/help.fish
parentb33d3f78b1d3d1b5f9dbb9fbe9000fd6ab181cbb (diff)
Huge upade containing several bugfixes related to i18n, and a huge number of new translatable strings, including almost all description messages for command specific completions
darcs-hash:20060108025656-ac50b-e2309829a0afa6b3270d13814e9600d0fd372407.gz
Diffstat (limited to 'init/completions/help.fish')
-rw-r--r--init/completions/help.fish48
1 files changed, 24 insertions, 24 deletions
diff --git a/init/completions/help.fish b/init/completions/help.fish
index 2889ce80..fc8a369d 100644
--- a/init/completions/help.fish
+++ b/init/completions/help.fish
@@ -3,37 +3,37 @@
#
for i in (builtin -n)
- complete -c help -x -a $i -d 'Help for the '$i' builtin'
+ complete -c help -x -a $i -d (printf (_ "Help for the '%s' builtin") $i)
end
for i in count dirh dirs help mimedb nextd open popd prevd pushd set_color tokenize psub umask type
- complete -c help -x -a $i -d 'Help for the '$i' command'
+ complete -c help -x -a $i -d (printf (_ "Help for the '%s' command") $i )
end
for i in syntax todo bugs history;
- complete -c help -x -a $i -d 'Help section on '$i
+ complete -c help -x -a $i -d (printf (_ "Help section on %s") $i)
end
-complete -c help -x -a completion -d "Help on how tab-completion works"
-complete -c help -x -a job-control -d "Help on how job control works"
-complete -c help -x -a difference -d "Summary on how fish differs from other shells"
+complete -c help -x -a completion -d (_ "Help on how tab-completion works")
+complete -c help -x -a job-control -d (_ "Help on how job control works")
+complete -c help -x -a difference -d (_ "Summary on how fish differs from other shells")
-complete -c help -x -a prompt -d "Help on how to set the prompt"
-complete -c help -x -a title -d "Help on how to set the titlebar message"
-complete -c help -x -a killring -d "Help on how to copy and paste"
-complete -c help -x -a editor -d "Help on editor shortcuts"
-complete -c help -x -a variables -d "Help on environment variables"
-complete -c help -x -a color -d "Help on setting syntax highlighting colors"
-complete -c help -x -a prompt -d "Help on changing the prompt"
-complete -c help -x -a title -d "Help on changing the titlebar messages"
-complete -c help -x -a builtin-overview -d "A short summary of all builtin commands"
-complete -c help -x -a changes -d "The changelog"
+complete -c help -x -a prompt -d (_ "Help on how to set the prompt")
+complete -c help -x -a title -d (_ "Help on how to set the titlebar message")
+complete -c help -x -a killring -d (_ "Help on how to copy and paste")
+complete -c help -x -a editor -d (_ "Help on editor shortcuts")
+complete -c help -x -a variables -d (_ "Help on environment variables")
+complete -c help -x -a color -d (_ "Help on setting syntax highlighting colors")
+complete -c help -x -a prompt -d (_ "Help on changing the prompt")
+complete -c help -x -a title -d (_ "Help on changing the titlebar messages")
+complete -c help -x -a builtin-overview -d (_ "A short summary of all builtin commands")
+complete -c help -x -a changes -d (_ "The changelog")
-complete -c help -x -a globbing -d "Help on parameter expansion (Globbing)"
-complete -c help -x -a expand -d "Help on parameter expansion (Globbing)"
-complete -c help -x -a expand-variable -d "Help on variable exapantion \$VARNAME"
-complete -c help -x -a expand-home -d "Help on home directory expansion ~USER"
-complete -c help -x -a expand-brace -d "Help on brace expansion {a,b,c}"
-complete -c help -x -a expand-wildcard -d "Help on wildcard expansion *.*"
-complete -c help -x -a expand-command-substitution -d "Help on command substututions (SUBCOMMAND)"
-complete -c help -x -a expand-process -d "Help on process expansion %JOB"
+complete -c help -x -a globbing -d (_ "Help on parameter expansion (Globbing)")
+complete -c help -x -a expand -d (_ "Help on parameter expansion (Globbing)")
+complete -c help -x -a expand-variable -d (_ "Help on variable exapantion \$VARNAME")
+complete -c help -x -a expand-home -d (_ "Help on home directory expansion ~USER")
+complete -c help -x -a expand-brace -d (_ "Help on brace expansion {a,b,c}")
+complete -c help -x -a expand-wildcard -d (_ "Help on wildcard expansion *.*")
+complete -c help -x -a expand-command-substitution -d (_ "Help on command substututions (SUBCOMMAND)")
+complete -c help -x -a expand-process -d (_ "Help on process expansion %JOB")