mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 18:53:45 +08:00
88 lines
2.5 KiB
Rust
88 lines
2.5 KiB
Rust
use crate::{config::Config, utils::dirs};
|
|
use once_cell::sync::Lazy;
|
|
use serde_json::Value;
|
|
use std::{collections::HashMap, fs, path::PathBuf};
|
|
use sys_locale;
|
|
|
|
const DEFAULT_LANGUAGE: &str = "zh";
|
|
|
|
fn get_locales_dir() -> Option<PathBuf> {
|
|
dirs::app_resources_dir()
|
|
.map(|resource_path| resource_path.join("locales"))
|
|
.ok()
|
|
}
|
|
|
|
pub fn get_supported_languages() -> Vec<String> {
|
|
let mut languages = Vec::new();
|
|
|
|
if let Some(locales_dir) = get_locales_dir() {
|
|
if let Ok(entries) = fs::read_dir(locales_dir) {
|
|
for entry in entries.flatten() {
|
|
if let Some(file_name) = entry.file_name().to_str() {
|
|
if let Some(lang) = file_name.strip_suffix(".json") {
|
|
languages.push(lang.to_string());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if languages.is_empty() {
|
|
languages.push(DEFAULT_LANGUAGE.to_string());
|
|
}
|
|
languages
|
|
}
|
|
|
|
static TRANSLATIONS: Lazy<HashMap<String, Value>> = Lazy::new(|| {
|
|
let mut translations = HashMap::new();
|
|
|
|
if let Some(locales_dir) = get_locales_dir() {
|
|
for lang in get_supported_languages() {
|
|
let file_path = locales_dir.join(format!("{}.json", lang));
|
|
if let Ok(content) = fs::read_to_string(file_path) {
|
|
if let Ok(json) = serde_json::from_str(&content) {
|
|
translations.insert(lang.to_string(), json);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
translations
|
|
});
|
|
|
|
fn get_system_language() -> String {
|
|
sys_locale::get_locale()
|
|
.map(|locale| locale.to_lowercase())
|
|
.and_then(|locale| locale.split(['_', '-']).next().map(String::from))
|
|
.filter(|lang| get_supported_languages().contains(lang))
|
|
.unwrap_or_else(|| DEFAULT_LANGUAGE.to_string())
|
|
}
|
|
|
|
pub fn t(key: &str) -> String {
|
|
let current_lang = Config::verge()
|
|
.latest()
|
|
.language
|
|
.as_deref()
|
|
.map(String::from)
|
|
.unwrap_or_else(get_system_language);
|
|
|
|
if let Some(text) = TRANSLATIONS
|
|
.get(¤t_lang)
|
|
.and_then(|trans| trans.get(key))
|
|
.and_then(|val| val.as_str())
|
|
{
|
|
return text.to_string();
|
|
}
|
|
|
|
if current_lang != DEFAULT_LANGUAGE {
|
|
if let Some(text) = TRANSLATIONS
|
|
.get(DEFAULT_LANGUAGE)
|
|
.and_then(|trans| trans.get(key))
|
|
.and_then(|val| val.as_str())
|
|
{
|
|
return text.to_string();
|
|
}
|
|
}
|
|
|
|
key.to_string()
|
|
}
|