aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/xsel.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/xsel.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/xsel.fish')
-rw-r--r--share/completions/xsel.fish36
1 files changed, 18 insertions, 18 deletions
diff --git a/share/completions/xsel.fish b/share/completions/xsel.fish
index fea6409a..3480058d 100644
--- a/share/completions/xsel.fish
+++ b/share/completions/xsel.fish
@@ -1,18 +1,18 @@
-complete -c xsel -s a -l append -d (N_ "Append input to selection")
-complete -c xsel -s f -l follow -d (N_ "Append to selection as input grows")
-complete -c xsel -s i -l input -d (N_ "Read into selection")
-complete -c xsel -s o -l output -d (N_ "Write selection")
-complete -c xsel -s c -l clear -d (N_ "Clear selection")
-complete -c xsel -s d -l delete -d (N_ "Delete selection")
-complete -c xsel -s p -l primary -d (N_ "Use primary selection")
-complete -c xsel -s s -l secondary -d (N_ "Use secondary selection")
-complete -c xsel -s b -l clipboard -d (N_ "Use clipboard selection")
-complete -c xsel -s k -l keep -d (N_ "Make current selections persistent after program exit")
-complete -c xsel -s x -l exchange -d (N_ "Exchange primary and secondary selections")
-complete -c xsel -l display -x -d (N_ "X server display")
-complete -c xsel -s t -l selectionTimeout -d (N_ "Timeout for retrieving selection")
-complete -c xsel -s l -l logfile -f -d (N_ "Error log")
-complete -c xsel -s n -l nodetach -d (N_ "Do not detach from the controlling terminal")
-complete -c xsel -s h -l help -d (N_ "Display help and exit")
-complete -c xsel -s v -l verbose -d (N_ "Print informative messages")
-complete -c xsel -l version -d (N_ "Display version and exit")
+complete -c xsel -s a -l append --description "Append input to selection"
+complete -c xsel -s f -l follow --description "Append to selection as input grows"
+complete -c xsel -s i -l input --description "Read into selection"
+complete -c xsel -s o -l output --description "Write selection"
+complete -c xsel -s c -l clear --description "Clear selection"
+complete -c xsel -s d -l delete --description "Delete selection"
+complete -c xsel -s p -l primary --description "Use primary selection"
+complete -c xsel -s s -l secondary --description "Use secondary selection"
+complete -c xsel -s b -l clipboard --description "Use clipboard selection"
+complete -c xsel -s k -l keep --description "Make current selections persistent after program exit"
+complete -c xsel -s x -l exchange --description "Exchange primary and secondary selections"
+complete -c xsel -l display -x --description "X server display"
+complete -c xsel -s t -l selectionTimeout --description "Timeout for retrieving selection"
+complete -c xsel -s l -l logfile -f --description "Error log"
+complete -c xsel -s n -l nodetach --description "Do not detach from the controlling terminal"
+complete -c xsel -s h -l help --description "Display help and exit"
+complete -c xsel -s v -l verbose --description "Print informative messages"
+complete -c xsel -l version --description "Display version and exit"