aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml/preferences.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-05-05 13:50:34 +0000
committerKenny Root <kenny@the-b.org>2009-05-05 13:50:34 +0000
commitbddbeeb2a5754248a931aa38dce6870ce2cf50b1 (patch)
tree33756f10fe4afe88b5502fa5ced4f17a57c591df /res/xml/preferences.xml
parentf03be9c1085a4f43e1c6529925e1b90d250225f4 (diff)
downloadconnectbot-bddbeeb2a5754248a931aa38dce6870ce2cf50b1.tar.gz
connectbot-bddbeeb2a5754248a931aa38dce6870ce2cf50b1.tar.bz2
connectbot-bddbeeb2a5754248a931aa38dce6870ce2cf50b1.zip
Externalize preference strings so they may be translated.
Diffstat (limited to 'res/xml/preferences.xml')
-rw-r--r--res/xml/preferences.xml70
1 files changed, 35 insertions, 35 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index 676d866..ef384f1 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -19,37 +19,37 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
- android:key="@string/pref_memkeys"
- android:title="Remember keys in memory"
- android:summary="Keep unlocked SSH keys in memory until backend service is terminated"
+ android:key="memkeys"
+ android:title="@string/pref_memkeys_title"
+ android:summary="@string/pref_memkeys_summary"
android:defaultValue="true"
/>
<ListPreference
- android:key="@string/pref_update"
- android:title="Update check"
- android:summary="Set the maximum frequency to check for ConnectBot updates"
+ android:key="update"
+ android:title="@string/pref_update_title"
+ android:summary="@string/pref_update_summary"
android:entries="@array/list_update"
android:entryValues="@array/list_update"
android:defaultValue="@string/list_update_daily"
/>
<PreferenceCategory
- android:title="Terminal emulation">
+ android:title="@string/pref_emulation_category">
<ListPreference
- android:key="@string/pref_emulation"
- android:title="Emulation mode"
- android:summary="Terminal emulation mode to use for PTY connections"
+ android:key="emulation"
+ android:title="@string/pref_emulation_title"
+ android:summary="@string/pref_emulation_summary"
android:entries="@array/list_emulation_modes"
android:defaultValue="screen"
android:entryValues="@array/list_emulation_modes"
/>
<EditTextPreference
- android:key="@string/pref_scrollback"
- android:title="Scrollback size"
- android:summary="Size of scrollback buffer to keep in memory for each console"
+ android:key="scrollback"
+ android:title="@string/pref_scrollback_title"
+ android:summary="@string/pref_scrollback_summary"
android:defaultValue="140"
android:singleLine="true"
/>
@@ -57,60 +57,60 @@
</PreferenceCategory>
<PreferenceCategory
- android:title="User interface">
+ android:title="@string/pref_ui_category">
<ListPreference
- android:key="@string/pref_rotation"
- android:title="Rotation mode"
- android:summary="How to change rotation when keyboard popped in/out"
+ android:key="rotation"
+ android:title="@string/pref_rotation_title"
+ android:summary="@string/pref_rotation_summary"
android:entries="@array/list_rotation"
android:entryValues="@array/list_rotation"
android:defaultValue="@string/list_rotation_land"
/>
<CheckBoxPreference
- android:key="@string/pref_fullscreen"
- android:title="Full screen"
- android:summary="Hide status bar while in console"
+ android:key="fullscreen"
+ android:title="@string/pref_fullscreen_title"
+ android:summary="@string/pref_fullscreen_summary"
android:defaultValue="false"
/>
<ListPreference
- android:key="@string/pref_keymode"
- android:title="Directory shortcuts"
- android:summary="Select how to use Alt for \'/\' and Shift for Tab"
+ android:key="keymode"
+ android:title="@string/pref_keymode_title"
+ android:summary="@string/pref_keymode_summary"
android:entries="@array/list_keymode"
android:entryValues="@array/list_keymode"
android:defaultValue="@string/list_keymode_right"
/>
<ListPreference
- android:key="@string/pref_camera"
- android:title="Camera shortcut"
- android:summary="Select which shortcut to trigger when camera button is pushed"
+ android:key="camera"
+ android:title="@string/pref_camera_title"
+ android:summary="@string/pref_camera_summary"
android:entries="@array/list_camera"
android:entryValues="@array/list_camera"
android:defaultValue="@string/list_camera_ctrlaspace"
/>
<CheckBoxPreference
- android:key="@string/pref_keepalive"
- android:title="Keep screen awake"
- android:summary="Prevent the screen from turning off when working in a console"
+ android:key="keepalive"
+ android:title="@string/pref_keepalive_title"
+ android:summary="@string/pref_keepalive_summary"
android:defaultValue="true"
/>
<CheckBoxPreference
- android:key="@string/pref_wifilock"
- android:title="Keep Wi-Fi active"
- android:summary="Prevent Wi-Fi from turning off when a session is active"
+ android:key="wifilock"
+ android:title="@string/pref_wifilock_title"
+ android:summary="@string/pref_wifilock_summary"
android:defaultValue="true"
/>
<CheckBoxPreference
- android:key="@string/pref_bumpyarrows"
- android:title="Bumpy arrow keys"
- android:summary="Vibrate when sending arrow keys from trackball, useful for laggy connections"
+ android:key="bumpyarrows"
+ android:title="@string/pref_bumpyarrows_title"
+ android:summary="@string/pref_bumpyarrows_summary"
android:defaultValue="true"
/>