aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/dcop.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/dcop.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/dcop.fish')
-rw-r--r--share/completions/dcop.fish14
1 files changed, 7 insertions, 7 deletions
diff --git a/share/completions/dcop.fish b/share/completions/dcop.fish
index 8e59c09a..333c53db 100644
--- a/share/completions/dcop.fish
+++ b/share/completions/dcop.fish
@@ -31,13 +31,13 @@ function __fish_complete_dcop -d "Completions for kde dcop"
end
-complete -c dcop -l help -s h -f -d (N_ "Show help about options")
-complete -c dcop -l user -x -a '(awk -F: "{print \$1}" /etc/passwd)' -d (N_ "Connect to the given user's DCOP server")
-complete -c dcop -l all-users -f -d (N_ "Send the same DCOP call to all users with a running DCOP server")
-complete -c dcop -l list-sessions -f -d (N_ "List all active KDE session for a user or all users")
-complete -c dcop -l session -x -a '(dcop --list-sessions --all-users | grep DCOP)' -d (N_ "Send to the given KDE session")
-complete -c dcop -l no-user-time -f -d (N_ "Don't update the user activity timestamp in the called application")
-complete -c dcop -l pipe -f -d (N_ "Call DCOP for each line read from stdin")
+complete -c dcop -l help -s h -f --description "Show help about options"
+complete -c dcop -l user -x -a '(awk -F: "{print \$1}" /etc/passwd)' --description "Connect to the given user's DCOP server"
+complete -c dcop -l all-users -f --description "Send the same DCOP call to all users with a running DCOP server"
+complete -c dcop -l list-sessions -f --description "List all active KDE session for a user or all users"
+complete -c dcop -l session -x -a '(dcop --list-sessions --all-users | grep DCOP)' --description "Send to the given KDE session"
+complete -c dcop -l no-user-time -f --description "Don't update the user activity timestamp in the called application"
+complete -c dcop -l pipe -f --description "Call DCOP for each line read from stdin"
complete -c dcop -x -a "(__fish_complete_dcop)"