mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-09-21 11:50:59 +03:00
Add Urdu language support for UI strings (#15961)
* Add Urdu language support for UI strings till 329 line Co-authored-by: Copilot <copilot@github.com> * Add Urdu translations for additional UI strings * Add Urdu language support in lang.rs * Fix Urdu translations and remove unused keys in ur.rs --------- Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -45,6 +45,7 @@ mod th;
|
||||
mod tr;
|
||||
mod tw;
|
||||
mod uk;
|
||||
mod ur;
|
||||
mod vi;
|
||||
mod ta;
|
||||
mod ge;
|
||||
@@ -80,6 +81,7 @@ pub const LANGS: &[(&str, &str)] = &[
|
||||
("ko", "한국어"),
|
||||
("kz", "Қазақ"),
|
||||
("uk", "Українська"),
|
||||
("ur", "اردو"),
|
||||
("fa", "فارسی"),
|
||||
("ca", "Català"),
|
||||
("el", "Ελληνικά"),
|
||||
@@ -208,6 +210,7 @@ pub fn translate_locale(name: String, locale: &str) -> String {
|
||||
"be" => be::T.deref(),
|
||||
"he" => he::T.deref(),
|
||||
"hr" => hr::T.deref(),
|
||||
"ur" => ur::T.deref(),
|
||||
"sc" => sc::T.deref(),
|
||||
"ta" => ta::T.deref(),
|
||||
"ge" => ge::T.deref(),
|
||||
|
||||
Reference in New Issue
Block a user