aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/uniq.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-03-02 02:53:47 +1000
committerGravatar axel <axel@liljencrantz.se>2006-03-02 02:53:47 +1000
commitc2f6c6c1d2be2c67d55855cd2151c1f82382c172 (patch)
tree36d3a284c8a6d63cca5e10f8e931a7a829bbfdda /share/completions/uniq.fish
parent7726cffdabead968f0b9e1394333851f760671b1 (diff)
Do gettext translation of descriptions just-in-time internally in fish
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
Diffstat (limited to 'share/completions/uniq.fish')
-rw-r--r--share/completions/uniq.fish20
1 files changed, 10 insertions, 10 deletions
diff --git a/share/completions/uniq.fish b/share/completions/uniq.fish
index fc218e06..d68daba9 100644
--- a/share/completions/uniq.fish
+++ b/share/completions/uniq.fish
@@ -1,15 +1,15 @@
-complete -c uniq -s c -l count -d (_ "Print number of occurences")
-complete -c uniq -s d -l repeated -d (_ "Only print duplicates")
-complete -c uniq -s D -l all-repeated -d (_ "Remove non-duplicate lines") -f -x -a "
+complete -c uniq -s c -l count -d (N_ "Print number of occurences")
+complete -c uniq -s d -l repeated -d (N_ "Only print duplicates")
+complete -c uniq -s D -l all-repeated -d (N_ "Remove non-duplicate lines") -f -x -a "
none\t'Remove none-duplicate lines'
prepend\t'Remove non-duplicate lines and print an empty line before each non-duplicate'
separate\t'Remove non-duplicate lines and print an empty line between each non-duplicate'
"
-complete -c uniq -s f -l skip-fields -d (_ "Avoid comparing first N fields") -r
-complete -c uniq -s i -l ignore-case -d (_ "Case insensitive")
-complete -c uniq -s s -l skip-chars -d (_ "Avoid comparing first N characters") -r
-complete -c uniq -s u -l unique -d (_ "Only print unique lines")
-complete -c uniq -s w -l check-chars -d (_ "Compare only specified number of characters") -r
-complete -c uniq -l help -d (_ "Display help and exit")
-complete -c uniq -l version -d (_ "Display version and exit")
+complete -c uniq -s f -l skip-fields -d (N_ "Avoid comparing first N fields") -r
+complete -c uniq -s i -l ignore-case -d (N_ "Case insensitive")
+complete -c uniq -s s -l skip-chars -d (N_ "Avoid comparing first N characters") -r
+complete -c uniq -s u -l unique -d (N_ "Only print unique lines")
+complete -c uniq -s w -l check-chars -d (N_ "Compare only specified number of characters") -r
+complete -c uniq -l help -d (N_ "Display help and exit")
+complete -c uniq -l version -d (N_ "Display version and exit")