diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-07-29 10:10:12 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-07-29 10:11:34 +0530 |
commit | 2730e754748bf2395f9d66c32be35ac0e80c5dec (patch) | |
tree | a0d53ac098cbcfd619a14e195ccc58d2f2bf2804 | |
parent | 00e0224fd10f419a2d65ca719ea7ebe1dc2a2ee8 (diff) |
ui: mark app_name string as untranslatable
WireGuard is a brand name that should not be localized.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | ui/src/debug/res/values/strings.xml | 2 | ||||
-rw-r--r-- | ui/src/main/res/values/strings.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/debug/res/values/strings.xml b/ui/src/debug/res/values/strings.xml index 60e016ea..947b7381 100644 --- a/ui/src/debug/res/values/strings.xml +++ b/ui/src/debug/res/values/strings.xml @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <string name="app_name">WireGuard β</string> + <string name="app_name" translatable="false">WireGuard β</string> </resources> diff --git a/ui/src/main/res/values/strings.xml b/ui/src/main/res/values/strings.xml index bb4466aa..3be69798 100644 --- a/ui/src/main/res/values/strings.xml +++ b/ui/src/main/res/values/strings.xml @@ -63,7 +63,7 @@ <string name="allow_remote_control_intents_summary_on">External apps may toggle tunnels (advanced)</string> <string name="allow_remote_control_intents_title">Allow remote control apps</string> <string name="allowed_ips">Allowed IPs</string> - <string name="app_name">WireGuard</string> + <string name="app_name" translatable="false">WireGuard</string> <string name="bad_config_context">%1$s\'s %2$s</string> <string name="bad_config_context_top_level">%s</string> <string name="bad_config_error">%1$s in %2$s</string> |