aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/test.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/test.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/test.fish')
-rw-r--r--share/completions/test.fish74
1 files changed, 37 insertions, 37 deletions
diff --git a/share/completions/test.fish b/share/completions/test.fish
index 0bbd8c67..569721e0 100644
--- a/share/completions/test.fish
+++ b/share/completions/test.fish
@@ -1,39 +1,39 @@
-complete -c test -l help -d (_ "Display help and exit")
-complete -c test -l version -d (_ "Display version and exit")
-complete -c test -a ! -d (_ "Negate expression")
-complete -c test -s a -d (_ "Logical and")
-complete -c test -s o -d (_ "Logical or")
-complete -c test -s n -d (_ "String length is non-zero")
-complete -c test -s z -d (_ "String length is zero")
-complete -c test -a = -d (_ "Strings are equal")
-complete -c test -a != -d (_ "Strings are not equal")
-complete -c test -o eq -d (_ "Integers are equal")
-complete -c test -o ge -d (_ "Left integer larger than or equal to right integer")
-complete -c test -o gt -d (_ "Left integer larger than right integer")
-complete -c test -o le -d (_ "Left integer less than or equal to right integer")
-complete -c test -o lt -d (_ "Left integer less than right integer")
-complete -c test -o ne -d (_ "Left integer not equal to right integer")
-complete -c test -o ef -d (_ "Left file equal to right file")
-complete -c test -o nt -d (_ "Left file newer than right file")
-complete -c test -o ot -d (_ "Left file older than right file")
-complete -c test -s b -d (_ "File is block device")
-complete -c test -s c -d (_ "File is character device")
-complete -c test -s d -d (_ "File is directory")
-complete -c test -s e -d (_ "File exists")
-complete -c test -s f -d (_ "File is regular")
-complete -c test -s g -d (_ "File is set-group-ID")
-complete -c test -s h -d (_ "File is symlink")
-complete -c test -s G -d (_ "File owned by effective group ID")
-complete -c test -s k -d (_ "File has sticky bit set")
-complete -c test -s L -d (_ "File is symlink")
-complete -c test -s O -d (_ "File owned by effective user ID")
-complete -c test -s p -d (_ "File is named pipe")
-complete -c test -s r -d (_ "File is readable")
-complete -c test -s s -d (_ "File size is non-zero")
-complete -c test -s S -d (_ "File is socket")
-complete -c test -s t -d (_ "FD is terminal")
-complete -c test -s u -d (_ "File set-user-ID bit is set")
-complete -c test -s w -d (_ "File is writable")
-complete -c test -s x -d (_ "File is executable")
+complete -c test -l help -d (N_ "Display help and exit")
+complete -c test -l version -d (N_ "Display version and exit")
+complete -c test -a ! -d (N_ "Negate expression")
+complete -c test -s a -d (N_ "Logical and")
+complete -c test -s o -d (N_ "Logical or")
+complete -c test -s n -d (N_ "String length is non-zero")
+complete -c test -s z -d (N_ "String length is zero")
+complete -c test -a = -d (N_ "Strings are equal")
+complete -c test -a != -d (N_ "Strings are not equal")
+complete -c test -o eq -d (N_ "Integers are equal")
+complete -c test -o ge -d (N_ "Left integer larger than or equal to right integer")
+complete -c test -o gt -d (N_ "Left integer larger than right integer")
+complete -c test -o le -d (N_ "Left integer less than or equal to right integer")
+complete -c test -o lt -d (N_ "Left integer less than right integer")
+complete -c test -o ne -d (N_ "Left integer not equal to right integer")
+complete -c test -o ef -d (N_ "Left file equal to right file")
+complete -c test -o nt -d (N_ "Left file newer than right file")
+complete -c test -o ot -d (N_ "Left file older than right file")
+complete -c test -s b -d (N_ "File is block device")
+complete -c test -s c -d (N_ "File is character device")
+complete -c test -s d -d (N_ "File is directory")
+complete -c test -s e -d (N_ "File exists")
+complete -c test -s f -d (N_ "File is regular")
+complete -c test -s g -d (N_ "File is set-group-ID")
+complete -c test -s h -d (N_ "File is symlink")
+complete -c test -s G -d (N_ "File owned by effective group ID")
+complete -c test -s k -d (N_ "File has sticky bit set")
+complete -c test -s L -d (N_ "File is symlink")
+complete -c test -s O -d (N_ "File owned by effective user ID")
+complete -c test -s p -d (N_ "File is named pipe")
+complete -c test -s r -d (N_ "File is readable")
+complete -c test -s s -d (N_ "File size is non-zero")
+complete -c test -s S -d (N_ "File is socket")
+complete -c test -s t -d (N_ "FD is terminal")
+complete -c test -s u -d (N_ "File set-user-ID bit is set")
+complete -c test -s w -d (N_ "File is writable")
+complete -c test -s x -d (N_ "File is executable")