Revert "RustDesk Georgian (ქართული) Localization" (#11418)

* Create GE.rs

Georgian Language

* Update lang.rs

adding Georgian Language

* Rename GE.rs to ge.rs

* Finalizing translate

* Update ge.rs

fix(lang/ge.rs): remove accidental  header paste

* Update ge.rs

fix(lang/ge.rs): remove  paste

* Update ge.rs
This commit is contained in:
Giorgi
2025-04-09 21:19:53 +04:00
committed by GitHub
parent d7dc49f1f7
commit d9109560a7
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);