Skip to content

Commit

Permalink
translate rustdesk
Browse files Browse the repository at this point in the history
  • Loading branch information
rustdesk committed Feb 25, 2024
1 parent a28c9f8 commit 4c8c2aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -984,6 +984,11 @@ pub fn get_app_name() -> String {
hbb_common::config::APP_NAME.read().unwrap().clone()
}

#[inline]
pub fn is_rustdesk() -> bool {
hbb_common::config::APP_NAME.read().unwrap().eq("RustDesk")
}

#[inline]
pub fn get_uri_prefix() -> String {
format!("{}://", get_app_name().to_lowercase())
Expand Down
5 changes: 5 additions & 0 deletions src/lang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ pub fn translate_locale(name: String, locale: &str) -> String {
if let Some(value) = placeholder_value.as_ref() {
s = s.replace("{}", &value);
}
if !crate::is_rustdesk() {
if s.contains("RustDesk") && !name.starts_with("upgrade_rustdesk_server_pro") {
s = s.replace("RustDesk", &crate::get_app_name());
}
}
s
};
if let Some(v) = m.get(&name as &str) {
Expand Down

0 comments on commit 4c8c2aa

Please sign in to comment.