Yes, this application is supposed to be localized. 🥲
This is supposed to be a prefix and not an equals match:
|
lang = match l.as_str() { |
|
"en" => LangId::en, |
|
"de" => LangId::de, |
|
"es" => LangId::es, |
|
"fr" => LangId::fr, |
|
"it" => LangId::it, |
|
"ja" => LangId::ja, |
|
"ko" => LangId::ko, |
|
"pt-br" => LangId::pt_br, |
|
"ru" => LangId::ru, |
|
"zh-hant" => LangId::zh_hant, |
|
"zh" => LangId::zh_hans, |
|
_ => continue, |
Yes, this application is supposed to be localized. 🥲
This is supposed to be a prefix and not an equals match:
edit/src/bin/edit/localization.rs
Lines 926 to 938 in e8d40f6