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) 中排名
每月 下载 121 次
在 poise-i18n 中使用
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