mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-17 16:11:15 -03:00
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
(cherry picked from commit d835c5252a)
61 lines
1.4 KiB
Fish
61 lines
1.4 KiB
Fish
# localization: tier1
|
|
#
|
|
# Wrap the builtin cd command to maintain directory history.
|
|
#
|
|
function cd --description "Change directory"
|
|
set -l MAX_DIR_HIST 25
|
|
|
|
if set -q argv[2]; and begin
|
|
set -q argv[3]
|
|
or not test "$argv[1]" = --
|
|
end
|
|
printf "%s\n" (_ "Too many args for cd command") >&2
|
|
return 1
|
|
end
|
|
|
|
# Skip history in subshells.
|
|
if status --is-command-substitution
|
|
builtin cd $argv
|
|
return $status
|
|
end
|
|
|
|
# Avoid set completions.
|
|
set -l previous $PWD
|
|
|
|
if test "$argv" = -
|
|
if test "$__fish_cd_direction" = next
|
|
nextd
|
|
else
|
|
prevd
|
|
end
|
|
return $status
|
|
end
|
|
|
|
builtin cd $argv
|
|
set -l cd_status $status
|
|
|
|
if test $cd_status -eq 0 -a "$PWD" != "$previous"
|
|
set -q dirprev
|
|
or set -l dirprev
|
|
set -q dirprev[$MAX_DIR_HIST]
|
|
and set -e dirprev[1]
|
|
|
|
# If dirprev, dirnext, __fish_cd_direction
|
|
# are set as universal variables, honor their scope.
|
|
|
|
set -U -q dirprev
|
|
and set -U -a dirprev $previous
|
|
or set -g -a dirprev $previous
|
|
|
|
set -U -q dirnext
|
|
and set -U -e dirnext
|
|
or set -e dirnext
|
|
|
|
set -U -q __fish_cd_direction
|
|
and set -U __fish_cd_direction prev
|
|
or set -g __fish_cd_direction prev
|
|
end
|
|
|
|
return $cd_status
|
|
end
|