mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-27 09:48:08 +00:00
improve text of preferences pane
This commit is contained in:
parent
76eb76fac4
commit
76a25aca25
@ -2,30 +2,32 @@
|
|||||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="onboot"
|
android:key="onboot"
|
||||||
android:title="Start on boot"
|
android:title="Start on Boot"
|
||||||
android:defaultValue="false" />
|
android:defaultValue="false" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
android:key="port"
|
android:key="port"
|
||||||
android:title="Port number to listen on"
|
android:title="Port Number"
|
||||||
android:summary="must be greater than 1024"
|
android:summary="Must be greater than 1024."
|
||||||
android:numeric="integer"
|
android:numeric="integer"
|
||||||
android:defaultValue="2222" />
|
android:defaultValue="2222" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
android:key="path"
|
android:key="path"
|
||||||
android:title="Path to SSH files"
|
android:title="SSH Path"
|
||||||
android:summary="put authorized_keys here"
|
android:summary="Location of misc dropbear files (put authorized_keys here)."
|
||||||
android:defaultValue="/sdcard/ssh" />
|
android:defaultValue="/sdcard/ssh" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
android:key="shell"
|
android:key="shell"
|
||||||
android:title="Login shell"
|
android:title="Login Shell"
|
||||||
|
android:summary="Location of sh binary"
|
||||||
android:defaultValue="/system/bin/sh" />
|
android:defaultValue="/system/bin/sh" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
android:key="home"
|
android:key="home"
|
||||||
android:title="Home directory"
|
android:title="Home Directory"
|
||||||
android:summary="put .profile here"
|
android:summary="Default directory after login (put .profile here)"
|
||||||
android:defaultValue="/sdcard/ssh" />
|
android:defaultValue="/sdcard/ssh" />
|
||||||
<EditTextPreference
|
<EditTextPreference
|
||||||
android:key="extra"
|
android:key="extra"
|
||||||
android:title="Extra dropbear commandline options"
|
android:title="Extra Commandline"
|
||||||
|
android:summary="Commandline options for dropbear server"
|
||||||
android:defaultValue="" />
|
android:defaultValue="" />
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
Loading…
Reference in New Issue
Block a user