aboutsummaryrefslogtreecommitdiffhomepage
path: root/seq.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-28 12:18:46 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-28 12:18:46 +1000
commit78ae6d3beaf2c76d7db848c79dfc5d23f579ba52 (patch)
treedb7b0be2d46ff7ef0bcfbef9e03701cf4ab9a2a3 /seq.in
parentea81321ccba999ce165a2a646310d7b8d9c84dbb (diff)
Check for gettext in seq fallback implementation
darcs-hash:20060128021846-ac50b-7c11eea694e5c3b87e00508fbeaedc9dcd163726.gz
Diffstat (limited to 'seq.in')
-rwxr-xr-xseq.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/seq.in b/seq.in
index bde7241c..14598778 100755
--- a/seq.in
+++ b/seq.in
@@ -4,6 +4,16 @@ set -l from 1
set -l step 1
set -l to 1
+if test 1 = "@HAVE_GETTEXT@"; and which gettext >/dev/null ^/dev/null
+ function _ -d "Alias for the gettext command"
+ gettext fish $argv
+ end
+else
+ function _ -d "Alias for the gettext command"
+ printf "%s" $argv
+ end
+end
+
switch (count $argv)
case 1
set to $argv[1]