aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/values/strings.xml
diff options
context:
space:
mode:
authoradb2001 <vacances2712>2015-08-07 15:45:49 +0200
committerKenny Root <kenny@the-b.org>2015-08-07 23:46:45 -0600
commit74c3c374bee2ffa287d8efeb970ff062c1b59f6d (patch)
tree18a25502b786f1101c11f2dfc36bbc91da0f37f5 /app/src/main/res/values/strings.xml
parent25315e3b4c26aa126f43cbc58fc7621926a4f6ac (diff)
downloadconnectbot-74c3c374bee2ffa287d8efeb970ff062c1b59f6d.tar.gz
connectbot-74c3c374bee2ffa287d8efeb970ff062c1b59f6d.tar.bz2
connectbot-74c3c374bee2ffa287d8efeb970ff062c1b59f6d.zip
Change virtual keyboard images by flat buttons with text and added 'Up', 'Down', 'Left' and 'Right' arrow keys.
Squashes together other commits: - Remove HorizontalScrollView tests - Add comments to give translators context. - Remove hardcoded button texts and change the keyboard icon to a more modern style. - Change virtual keyboard RelativeLayout to LinearLayout and it take all screen width. And add a small separators between buttons. - Mislabelled "Up" key
Diffstat (limited to 'app/src/main/res/values/strings.xml')
-rw-r--r--app/src/main/res/values/strings.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 67f478d..b7a1cd2 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -529,4 +529,35 @@
<!-- Describes the icon of the "show keyboard" button in the terminal view for accessibility
purposes. -->
<string name="image_description_show_keyboard">Show keyboard.</string>
+
+ <!-- Describes the icon of the "Arrow up" button in the terminal view for accessibility
+ purposes. -->
+ <string name="image_description_up">Arrow up</string>
+
+ <!-- Describes the icon of the "Arrow down" button in the terminal view for accessibility
+ purposes. -->
+ <string name="image_description_down">Arrow down</string>
+
+ <!-- Describes the icon of the "Arrow left" button in the terminal view for accessibility
+ purposes. -->
+ <string name="image_description_left">Arrow left</string>
+
+ <!-- Describes the icon of the "Arrow right" button in the terminal view for accessibility
+ purposes. -->
+ <string name="image_description_right">Arrow right</string>
+
+ <!-- Text for the "Esc" button in virtual keyboard. -->
+ <string name="button_key_esc">Esc</string>
+ <!-- Text for the "Ctrl" button in virtual keyboard. -->
+ <string name="button_key_ctrl">Ctrl</string>
+ <!-- Text for the "Tab" button in virtual keyboard. -->
+ <string name="button_key_tab">Tab</string>
+ <!-- Text for the "up" button in virtual keyboard. -->
+ <string name="button_key_up">Up</string>
+ <!-- Text for the "down" button in virtual keyboard. -->
+ <string name="button_key_down">Down</string>
+ <!-- Text for the "left" button in virtual keyboard. -->
+ <string name="button_key_left">Left</string>
+ <!-- Text for the "right" button in virtual keyboard. -->
+ <string name="button_key_right">Right</string>
</resources>