aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/cat.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/cat.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/cat.fish')
-rw-r--r--share/completions/cat.fish22
1 files changed, 11 insertions, 11 deletions
diff --git a/share/completions/cat.fish b/share/completions/cat.fish
index d9274a11..30cf589f 100644
--- a/share/completions/cat.fish
+++ b/share/completions/cat.fish
@@ -1,12 +1,12 @@
-complete -c cat -s A -l show-all -d (N_ "Escape all non-printing characters")
-complete -c cat -s b -l number-nonblank -d (N_ "Number nonblank lines")
-complete -c cat -s e -d (N_ "Escape non-printing characters except tab")
-complete -c cat -s E -l show-ends -d (N_ "Display \$ at end of line")
-complete -c cat -s n -l number -d (N_ "Number all lines")
-complete -c cat -s s -l squeeze-blank -d (N_ "Never more than single blank line")
-complete -c cat -s t -d (N_ "Escape non-printing characters except newline")
-complete -c cat -s T -l show-tabs -d (N_ "Escape tab")
-complete -c cat -s v -d (N_ "Escape non-printing except newline and tab")
-complete -c cat -l help -d (N_ "Display help and exit")
-complete -c cat -l version -d (N_ "Display version and exit")
+complete -c cat -s A -l show-all --description "Escape all non-printing characters"
+complete -c cat -s b -l number-nonblank --description "Number nonblank lines"
+complete -c cat -s e --description "Escape non-printing characters except tab"
+complete -c cat -s E -l show-ends --description "Display \$ at end of line"
+complete -c cat -s n -l number --description "Number all lines"
+complete -c cat -s s -l squeeze-blank --description "Never more than single blank line"
+complete -c cat -s t --description "Escape non-printing characters except newline"
+complete -c cat -s T -l show-tabs --description "Escape tab"
+complete -c cat -s v --description "Escape non-printing except newline and tab"
+complete -c cat -l help --description "Display help and exit"
+complete -c cat -l version --description "Display version and exit"