-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52ef3d7
commit 8eacf42
Showing
8 changed files
with
412 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# (for which all strings must be present) when using the fluent | ||
# system. | ||
fallback_language = "en" | ||
|
||
# (Optional) Use the fluent localization system. | ||
[fluent] | ||
# (Required) The path to the assets directory. | ||
# The paths inside the assets directory should be structured like so: | ||
# `assets_dir/{language}/{domain}.ftl` | ||
assets_dir = "i18n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# (for which all strings must be present) when using the fluent | ||
# system. | ||
fallback_language = "en" | ||
|
||
# (Optional) Use the fluent localization system. | ||
[fluent] | ||
# (Required) The path to the assets directory. | ||
# The paths inside the assets directory should be structured like so: | ||
# `assets_dir/{language}/{domain}.ftl` | ||
assets_dir = "i18n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
balance = balance | ||
right = right | ||
left = left |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
use i18n_embed::{ | ||
fluent::{fluent_language_loader, FluentLanguageLoader}, | ||
DefaultLocalizer, LanguageLoader, Localizer, | ||
}; | ||
use rust_embed::RustEmbed; | ||
use std::sync::LazyLock; | ||
|
||
#[derive(RustEmbed)] | ||
#[folder = "i18n/"] | ||
struct Localizations; | ||
|
||
pub static LANGUAGE_LOADER: LazyLock<FluentLanguageLoader> = LazyLock::new(|| { | ||
let loader: FluentLanguageLoader = fluent_language_loader!(); | ||
|
||
loader | ||
.load_fallback_language(&Localizations) | ||
.expect("Error while loading fallback language"); | ||
|
||
loader | ||
}); | ||
|
||
#[macro_export] | ||
macro_rules! fl { | ||
($message_id:literal) => {{ | ||
i18n_embed_fl::fl!($crate::localize::LANGUAGE_LOADER, $message_id) | ||
}}; | ||
|
||
($message_id:literal, $($args:expr),*) => {{ | ||
i18n_embed_fl::fl!($crate::localize::LANGUAGE_LOADER, $message_id, $($args), *) | ||
}}; | ||
} | ||
|
||
// Get the `Localizer` to be used for localizing this library. | ||
pub fn localizer() -> Box<dyn Localizer> { | ||
Box::from(DefaultLocalizer::new(&*LANGUAGE_LOADER, &Localizations)) | ||
} | ||
|
||
pub fn localize() { | ||
let localizer = localizer(); | ||
let requested_languages = i18n_embed::DesktopLanguageRequester::requested_languages(); | ||
|
||
if let Err(error) = localizer.select(&requested_languages) { | ||
eprintln!("Error while loading language for App List {}", error); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters