Files
fish-shell/share/functions/__fish_complete_zfs_mountpoint_properties.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

31 lines
1.0 KiB
Fish

# localization: tier3
function __fish_complete_zfs_mountpoint_properties
set -l OS ""
switch (uname)
case Linux
set OS Linux
case Darwin
set OS macOS
case FreeBSD
set OS FreeBSD
case SunOS
set OS SunOS
# Others?
case "*"
set OS unknown
end
echo -e "atime\tUpdate access time on read (on, off)"
echo -e "devices\tAre contained device nodes openable (on, off)"
echo -e "exec\tCan contained executables be executed (on, off)"
echo -e "readonly\tRead-only (on, off)"
echo -e "setuid\tRespect set-UID bit (on, off)"
if test $OS = SunOS
echo -e "nbmand\tMount with Non Blocking mandatory locks (on, off)"
echo -e "xattr\tExtended attributes (on, off, sa)"
else if test $OS = Linux
echo -e "nbmand\tMount with Non Blocking mandatory locks (on, off)"
echo -e "relatime\tSometimes update access time on read (on, off)"
echo -e "xattr\tExtended attributes (on, off, sa)"
end
end