diff options
| -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" | 
