aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/sort.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/sort.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/sort.fish')
-rw-r--r--share/completions/sort.fish40
1 files changed, 20 insertions, 20 deletions
diff --git a/share/completions/sort.fish b/share/completions/sort.fish
index a0c79f1b..13ac6aed 100644
--- a/share/completions/sort.fish
+++ b/share/completions/sort.fish
@@ -1,21 +1,21 @@
-complete -c sort -s b -l ignore-leading-blanks -d (N_ "Ignore leading blanks")
-complete -c sort -s d -l dictionary-order -d (N_ "Consider only blanks and alphanumerics")
-complete -c sort -s f -l ignore-case -d (N_ "Ignore case")
-complete -c sort -s g -l general-numeric-sort -d (N_ "Compare general numeric value")
-complete -c sort -s i -l ignore-nonprinting -d (N_ "Consider only printable")
-complete -c sort -s M -l month-sort -d (N_ "Compare month names")
-complete -c sort -s n -l numeric-sort -d (N_ "Compare string numerical value")
-complete -c sort -s r -l reverse -d (N_ "Reverse results")
-complete -c sort -s c -l check -d (N_ "Only check if sorted")
-complete -c sort -s k -l key -d (N_ "Define key")
-complete -c sort -s m -l merge -d (N_ "Merge sorted files")
-complete -c sort -s o -l output -f -d (N_ "Write to file")
-complete -c sort -s s -l stable -d (N_ "Stabilize sort")
-complete -c sort -s S -l buffer-size -r -d (N_ "Set memory buffer size")
-complete -c sort -s t -l field-separator -d (N_ "Field separator")
-complete -c sort -s T -l temporary-directory -r -d (N_ "Set temporary directory")
-complete -c sort -s u -l unique -d (N_ "Output only first of equal lines")
-complete -c sort -s z -l zero-terminated -d (N_ "Lines end with 0 byte")
-complete -c sort -l help -d (N_ "Display help and exit")
-complete -c sort -l version -d (N_ "Display version and exit")
+complete -c sort -s b -l ignore-leading-blanks --description "Ignore leading blanks"
+complete -c sort -s d -l dictionary-order --description "Consider only blanks and alphanumerics"
+complete -c sort -s f -l ignore-case --description "Ignore case"
+complete -c sort -s g -l general-numeric-sort --description "Compare general numeric value"
+complete -c sort -s i -l ignore-nonprinting --description "Consider only printable"
+complete -c sort -s M -l month-sort --description "Compare month names"
+complete -c sort -s n -l numeric-sort --description "Compare string numerical value"
+complete -c sort -s r -l reverse --description "Reverse results"
+complete -c sort -s c -l check --description "Only check if sorted"
+complete -c sort -s k -l key --description "Define key"
+complete -c sort -s m -l merge --description "Merge sorted files"
+complete -c sort -s o -l output -f --description "Write to file"
+complete -c sort -s s -l stable --description "Stabilize sort"
+complete -c sort -s S -l buffer-size -r --description "Set memory buffer size"
+complete -c sort -s t -l field-separator --description "Field separator"
+complete -c sort -s T -l temporary-directory -r --description "Set temporary directory"
+complete -c sort -s u -l unique --description "Output only first of equal lines"
+complete -c sort -s z -l zero-terminated --description "Lines end with 0 byte"
+complete -c sort -l help --description "Display help and exit"
+complete -c sort -l version --description "Display version and exit"