diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-10-25 03:44:56 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-10-25 03:44:56 +0000 |
commit | 0f247a10e52f8d85ce9459d066d743d26a62fda7 (patch) | |
tree | 07f3ba95e3a6793113f57537ec98917a5cae0f7e | |
parent | d1cc535bb3cb3fb55a66b4525161f11d75667e20 (diff) | |
download | connectbot-0f247a10e52f8d85ce9459d066d743d26a62fda7.tar.gz connectbot-0f247a10e52f8d85ce9459d066d743d26a62fda7.tar.bz2 connectbot-0f247a10e52f8d85ce9459d066d743d26a62fda7.zip |
* changed preferences to use explicit strings
-rw-r--r-- | res/values/strings.xml | 5 | ||||
-rw-r--r-- | res/xml/preferences.xml | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index d2716d7..1811960 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -32,7 +32,10 @@ <string name="msg_copyright">Copyright © 2007-2008 Kenny Root http://the-b.org/, Jeffrey Sharkey http://jsharkey.org/</string> <string name="msg_version">v1.0</string> - + + <string name="pref_emulation">emulation</string> + <string name="pref_scrollback">scrollback</string> + <string name="bind_minutes">%s minutes ago</string> <string name="bind_hours">%s hours ago</string> <string name="bind_days">%s days ago</string> diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index 01fefc5..1e7b2a8 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -19,7 +19,7 @@ <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <ListPreference - android:key="emulation" + android:key="@string/pref_emulation" android:title="Emulation mode" android:summary="Terminal emulation mode to use for PTY connections" android:entries="@array/list_emulation_modes" @@ -28,7 +28,7 @@ /> <EditTextPreference - android:key="scrollback" + android:key="@string/pref_emulation" android:title="Scrollback size" android:summary="Size of scrollback buffer to keep in memory for each console" android:defaultValue="140" |