We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d41b3e commit 28e3035Copy full SHA for 28e3035
src/lang.rs
@@ -16,6 +16,7 @@ mod es;
16
mod et;
17
mod eu;
18
mod fa;
19
+mod gu;
20
mod fr;
21
mod he;
22
mod hr;
@@ -95,6 +96,7 @@ pub const LANGS: &[(&str, &str)] = &[
95
96
("ta", "தமிழ்"),
97
("ge", "ქართული"),
98
("fi", "Suomi"),
99
+ ("gu", "ગુજરાતી"),
100
];
101
102
#[cfg(not(any(target_os = "android", target_os = "ios")))]
@@ -173,6 +175,7 @@ pub fn translate_locale(name: String, locale: &str) -> String {
173
175
"sc" => sc::T.deref(),
174
176
"ta" => ta::T.deref(),
177
"ge" => ge::T.deref(),
178
+ "gu" => gu::T.deref(),
179
_ => en::T.deref(),
180
};
181
let (name, placeholder_value) = extract_placeholder(&name);
0 commit comments