RustDesk Georgian (ქართული) Localization (#11362)

* Create GE.rs

Georgian Language

* Update lang.rs

adding Georgian Language

* Rename GE.rs to ge.rs

* Finalizing translate
This commit is contained in:
Giorgi
2025-04-09 18:34:13 +04:00
committed by GitHub
parent 3b73ee3a23
commit f9af3e3a0c
2 changed files with 689 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ mod tw;
mod uk;
mod vn;
mod ta;
mod ge;
pub const LANGS: &[(&str, &str)] = &[
("en", "English"),
@@ -91,6 +92,7 @@ pub const LANGS: &[(&str, &str)] = &[
("hr", "Hrvatski"),
("sc", "Sardu"),
("ta", "தமிழ்"),
("ge", "ქართული"),
];
#[cfg(not(any(target_os = "android", target_os = "ios")))]
@@ -167,6 +169,7 @@ pub fn translate_locale(name: String, locale: &str) -> String {
"hr" => hr::T.deref(),
"sc" => sc::T.deref(),
"ta" => ta::T.deref(),
"ge" => ge::T.deref(),
_ => en::T.deref(),
};
let (name, placeholder_value) = extract_placeholder(&name);