aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/arp.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/arp.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/arp.fish')
-rw-r--r--share/completions/arp.fish18
1 files changed, 9 insertions, 9 deletions
diff --git a/share/completions/arp.fish b/share/completions/arp.fish
index 60ec8df0..564d7a21 100644
--- a/share/completions/arp.fish
+++ b/share/completions/arp.fish
@@ -1,11 +1,11 @@
#completion for arp
-complete -c arp -s v -l verbose -d (N_ "Verbose mode")
-complete -c arp -s n -l numeric -d (N_ "Numerical address")
-complete -x -c arp -s H -l tw-type -a "ether arcnet pronet ax25 netrom" -d (N_ "Class of hw type")
-complete -c arp -s a -l display -x -a "(__fish_print_hostnames)" -d (N_ "Show arp entries")
-complete -x -c arp -s d -l delete -a "(__fish_print_hostnames)" -d (N_ "Remove an entry for hostname")
-complete -c arp -s D -l use-device -d (N_ "Use hardware address")
-complete -x -c arp -s i -l device -a "(__fish_print_interfaces)" -d (N_ "Select interface")
-complete -x -c arp -s s -l set -d (N_ "Manually create ARP address") -a "(__fish_print_hostnames)"
-complete -f -c arp -s f -l file -d (N_ "Take addr from filename, default /etc/ethers")
+complete -c arp -s v -l verbose --description "Verbose mode"
+complete -c arp -s n -l numeric --description "Numerical address"
+complete -x -c arp -s H -l tw-type -a "ether arcnet pronet ax25 netrom" --description "Class of hw type"
+complete -c arp -s a -l display -x -a "(__fish_print_hostnames)" --description "Show arp entries"
+complete -x -c arp -s d -l delete -a "(__fish_print_hostnames)" --description "Remove an entry for hostname"
+complete -c arp -s D -l use-device --description "Use hardware address"
+complete -x -c arp -s i -l device -a "(__fish_print_interfaces)" --description "Select interface"
+complete -x -c arp -s s -l set --description "Manually create ARP address" -a "(__fish_print_hostnames)"
+complete -f -c arp -s f -l file --description "Take addr from filename, default /etc/ethers"