diff options
| author | Jules Aguillon | 2022-03-14 18:37:37 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-03-14 18:37:37 +0100 |
| commit | 9bb7c7e66f6c22bbe341ae88b853ffad40fcbe31 (patch) | |
| tree | 3cda2bbff093da0cb42c0f59c11018e8469c2648 /res/values | |
| parent | f4978f5266abb01aaa78691d76209c4617f0f3c2 (diff) | |
| download | unexpected-keyboard-9bb7c7e66f6c22bbe341ae88b853ffad40fcbe31.tar.gz unexpected-keyboard-9bb7c7e66f6c22bbe341ae88b853ffad40fcbe31.zip | |
Identify debug version in app name
Using the --product option of aapt.
Remove the app name from translations because it is never translated. It
is still possible to translate it by specifying 'product="default"'.
Diffstat (limited to 'res/values')
| -rw-r--r-- | res/values/strings.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 8c3eb36..2aaeabd 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <string name="app_name">Unexpected Keyboard</string> + <string name="app_name" product="debug">Unexpected Keyboard (debug)</string> + <string name="app_name" product="default">Unexpected Keyboard</string> <string name="settings_activity_label">Unexpected Keyboard Settings</string> <string name="pref_category_layout">Layout</string> <string name="pref_layout_title">Change keyboard layout</string> |
