Update lang.rs (#13259)

added finnish language.
This commit is contained in:
Tomppaa
2025-10-26 15:28:35 +02:00
committed by GitHub
parent 3275824aec
commit f15b8dc0da

View File

@@ -46,6 +46,7 @@ mod uk;
mod vi;
mod ta;
mod ge;
mod fi;
pub const LANGS: &[(&str, &str)] = &[
("en", "English"),
@@ -93,6 +94,7 @@ pub const LANGS: &[(&str, &str)] = &[
("sc", "Sardu"),
("ta", "தமிழ்"),
("ge", "ქართული"),
("fi", "Suomi"),
];
#[cfg(not(any(target_os = "android", target_os = "ios")))]
@@ -152,6 +154,7 @@ pub fn translate_locale(name: String, locale: &str) -> String {
"kz" => kz::T.deref(),
"uk" => uk::T.deref(),
"fa" => fa::T.deref(),
"fi" => fi::T.deref(),
"ca" => ca::T.deref(),
"el" => el::T.deref(),
"sv" => sv::T.deref(),