Files
fish-shell/share/functions/seq.fish
Johannes Altmanninger d835c5252a Prepare to not localize private function descriptions
The overwhelming majority of localizable messages comes from
completions:

	$ ls share/completions/ | wc -l
	$ 1048

OTOH functions also contribute a small amount, mostly via their
descriptions (so usually just one per file).

	$ ls share/functions/ | wc -l
	$ 237

Most of these are private and almost never shown to the user, so it's
not worth bothering translators with them. So:

- Skip private (see the parent commit) and deprecated functions.
- Skip wrapper functions like grep (where the translation seems to
  be provided by apropos), and even the English description is not
  helpful.
  - Assume that most real systems have "seq", "realpath" etc.,
    so it's no use providing our own translations for our fallbacks.
- Mark fish's own functions as tier1, and some barely-used functiosn
  and completions as tier3, so we can order them that way in
  po/*.po. Most translators should only look at tier1 and tier2.
  In future we could disable localization for tier3.

See the explanation at the bottom of
tests/checks/message-localization-tier-is-declared.fish

Part of #11833
2025-09-30 11:47:26 +02:00

69 lines
1.5 KiB
Fish

# localization: skip(uses-apropos)
# If seq is not installed, then define a function that invokes __fish_fallback_seq
# We can't call type here because that also calls seq
if command -sq seq
exit
end
if command -sq gseq
# No seq provided by the OS, but GNU coreutils was apparently installed, fantastic
function seq
gseq $argv
end
exit
end
# No seq command
function seq
__fish_fallback_seq $argv
end
function __fish_fallback_seq
set -l from 1
set -l step 1
set -l to 1
# Remove a "--" argument if it happens first.
if test "x$argv[1]" = x--
set -e argv[1]
end
switch (count $argv)
case 1
set to $argv[1]
case 2
set from $argv[1]
set to $argv[2]
case 3
set from $argv[1]
set step $argv[2]
set to $argv[3]
case '*'
printf "seq: Expected 1, 2 or 3 arguments, got %d\n" (count $argv) >&2
return 1
end
for i in $from $step $to
if not string match -rq -- '^-?[0-9]*([0-9]*|\.[0-9]+)$' $i
printf "seq: '%s' is not a number\n" $i >&2
return 1
end
end
if test $step -ge 0
set -l i $from
while test $i -le $to
echo $i
set i (math -- $i + $step)
end
else
set -l i $from
while test $i -ge $to
echo $i
set i (math -- $i + $step)
end
end
end