mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -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)
17 lines
1.2 KiB
Fish
17 lines
1.2 KiB
Fish
# localization: skip(barely-used)
|
|
|
|
set --local CONDITION '! __fish_seen_argument --short r --long required-val --short o --long optional-val'
|
|
|
|
complete --command fish_opt --no-files
|
|
|
|
complete --command fish_opt --short-option h --long-option help --description 'Show help'
|
|
|
|
complete --command fish_opt --short-option s --long-option short --no-files --require-parameter --description 'Specify short option'
|
|
complete --command fish_opt --short-option l --long-option long --no-files --require-parameter --description 'Specify long option'
|
|
complete --command fish_opt --long-option longonly --description 'Use only long option'
|
|
complete --command fish_opt --short-option o --long-option optional-val -n $CONDITION --description 'Don\'t require value'
|
|
complete --command fish_opt --short-option r --long-option required-val -n $CONDITION --description 'Require value'
|
|
complete --command fish_opt --short-option m --long-option multiple-vals --description 'Store all values'
|
|
complete --command fish_opt --short-option d --long-option delete --description 'Delete option from argv_opts'
|
|
complete --command fish_opt --short-option v --long-option validate --require-parameter --description 'Fish script to validate option values'
|