mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-18 00:31:15 -03:00
This is part of the larger effort of splitting up fish's huge main crate to improve incremental build speed. We could extract more logic from `src/wutil/gettext.rs` into the new crate, but this would require putting wide-string handling into that crate, which I'm not sure we want. Doing so would have the advantage that crates which don't depend on fish's main crate (i.e. all crates other than fish's main crate itself and the binary crates built on top of it) could then localize messages as well. This will be less relevant if we replace gettext with Fluent for messages originating from the Rust sources. Closes #12108