mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-30 18:50:39 +00:00
Profile settings change modal button text
Change default text ok/cancel => save/cancel
This commit is contained in:
parent
049cc3587c
commit
f61e0d55e8
1 changed files with 22 additions and 12 deletions
|
|
@ -9,19 +9,29 @@
|
|||
android:key="account_prefs"
|
||||
android:layout="@layout/preference_category">
|
||||
|
||||
<PreferenceScreen android:title="@string/profile"
|
||||
android:summary="@string/profile_summary"
|
||||
<PreferenceScreen
|
||||
android:key="profile"
|
||||
android:layout="@layout/preference_child_summary">
|
||||
<EditTextPreference android:key="display_name"
|
||||
android:title="@string/display_name"
|
||||
android:layout="@layout/preference_child_summary" />
|
||||
<EditTextPreference android:key="photo_url"
|
||||
android:title="@string/photo_url"
|
||||
android:layout="@layout/preference_child_summary" />
|
||||
<EditTextPreference android:key="about"
|
||||
android:title="@string/about"
|
||||
android:layout="@layout/preference_child_summary" />
|
||||
android:layout="@layout/preference_child_summary"
|
||||
android:summary="@string/profile_summary"
|
||||
android:title="@string/profile">
|
||||
<EditTextPreference
|
||||
android:key="display_name"
|
||||
android:layout="@layout/preference_child_summary"
|
||||
android:negativeButtonText="@string/cancel"
|
||||
android:positiveButtonText="@string/save"
|
||||
android:title="@string/display_name" />
|
||||
<EditTextPreference
|
||||
android:key="photo_url"
|
||||
android:layout="@layout/preference_child_summary"
|
||||
android:negativeButtonText="@string/cancel"
|
||||
android:positiveButtonText="@string/save"
|
||||
android:title="@string/photo_url" />
|
||||
<EditTextPreference
|
||||
android:key="about"
|
||||
android:layout="@layout/preference_child_summary"
|
||||
android:negativeButtonText="@string/cancel"
|
||||
android:positiveButtonText="@string/save"
|
||||
android:title="@string/about" />
|
||||
</PreferenceScreen>
|
||||
|
||||
<PreferenceScreen
|
||||
|
|
|
|||
Loading…
Reference in a new issue