aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/cut.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/cut.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/cut.fish')
-rw-r--r--share/completions/cut.fish18
1 files changed, 9 insertions, 9 deletions
diff --git a/share/completions/cut.fish b/share/completions/cut.fish
index 7cf5cd97..006c17e7 100644
--- a/share/completions/cut.fish
+++ b/share/completions/cut.fish
@@ -1,10 +1,10 @@
-complete -c cut -s b -l bytes -x -d (N_ "Output byte range")
-complete -c cut -s c -l characters -x -d (N_ "Output character range")
-complete -c cut -s d -l delimiter -x -d (N_ "Select field delimiter")
-complete -c cut -s d -l fields -x -d (N_ "Select fields")
-complete -c cut -s n -d (N_ "Dont split mutibyte characters")
-complete -c cut -s s -l only-delimited -d (N_ "Do not print lines without delimiter")
-complete -c cut -l output-delimiter -d (N_ "Select output delimiter")
-complete -c cut -l help -d (N_ "Display help and exit")
-complete -c cut -l version -d (N_ "Display version and exit")
+complete -c cut -s b -l bytes -x --description "Output byte range"
+complete -c cut -s c -l characters -x --description "Output character range"
+complete -c cut -s d -l delimiter -x --description "Select field delimiter"
+complete -c cut -s d -l fields -x --description "Select fields"
+complete -c cut -s n --description "Dont split mutibyte characters"
+complete -c cut -s s -l only-delimited --description "Do not print lines without delimiter"
+complete -c cut -l output-delimiter --description "Select output delimiter"
+complete -c cut -l help --description "Display help and exit"
+complete -c cut -l version --description "Display version and exit"