#translation #solution #robust #dynamic

rusty18n

为 Rust 提供简单而高效的国际化解决方案

9 个版本

0.1.8 2024 年 7 月 9 日
0.1.7 2024 年 7 月 9 日
0.1.6 2024 年 5 月 31 日
0.1.3 2023 年 12 月 29 日

#92国际化 (i18n) 中排名

Download history • Rust 包仓库 230/week @ 2024-05-18 • Rust 包仓库 190/week @ 2024-05-25 • Rust 包仓库 121/week @ 2024-06-01 • Rust 包仓库 13/week @ 2024-06-08 • Rust 包仓库 4/week @ 2024-06-15 • Rust 包仓库 3/week @ 2024-06-29 • Rust 包仓库 313/week @ 2024-07-06 • Rust 包仓库 27/week @ 2024-07-13 • Rust 包仓库 3/week @ 2024-07-20 • Rust 包仓库 80/week @ 2024-07-27 • Rust 包仓库 2/week @ 2024-08-03 • Rust 包仓库

每月 下载 121
poise-i18n 中使用

MIT 许可证

13KB
205 代码行

Rusty18n

一个简单而健壮的库,用于处理 Rust 上的国际化。

为什么选择 Rusty18n?

如果您可以直接在源代码中编写所有翻译,这不是非常有用和方便吗?这正是这个crate要解决的问题。我需要一个简单易用的国际化解决方案来开发我的 discord 机器人,于是我有了创建一个简单的内存中国际化处理器的想法。它提供了 Rust 中内存中国际化所需的所有基础,包括从简单到动态的翻译。

那么,如何开始呢?

您只需将一些依赖项添加到项目中即可

cargo add rusty18n
cargo add deep_struct_update

deep_struct_update 用于编写部分国际化实现,例如在以下示例中

// We need to import deep_struct_update before we can use the define_i18n macro
use deep_struct_update;

pub fn i18n_ptbr() -> I18NUsage {
    // Using the define_i18n macro we don't need to change all the i18n implementations once
    // something in the base fallback implementation structure changes.
    define_i18n! {
        I18NUsage,
        greetings: {
            waves: r!("Oi!"),
        }
    }
}

您可以在这里看到示例用法

依赖项

~0–2.5MB
~45K SLoC