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:
Abdullah Kaleem
2026-08-25 06:19:37 +05:00
committed by GitHub
parent f07b6e2338
commit 7cc82c1575
2 changed files with 756 additions and 0 deletions

View File

@@ -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(),