Various fixez
This commit is contained in:
parent
91e8eed8b0
commit
7cc93f960d
8 changed files with 183 additions and 47 deletions
|
@ -100,4 +100,20 @@
|
|||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:hint="@string/curative_efforts" />
|
||||
|
||||
<Spinner
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/classSpinner"
|
||||
android:layout_below="@+id/editPgIntro"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true" />
|
||||
|
||||
<Spinner
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/raceSpinner"
|
||||
android:layout_below="@+id/classSpinner"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true" />
|
||||
</RelativeLayout>
|
||||
|
|
|
@ -30,8 +30,8 @@
|
|||
app:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_edit"/>
|
||||
<item
|
||||
android:id="@+id/action_calendar_activity"
|
||||
android:title="@string/action_calendar_activity"
|
||||
android:id="@+id/action_reset"
|
||||
android:title="@string/action_reset"
|
||||
android:orderInCategory="30"
|
||||
app:showAsAction="never" />
|
||||
|
||||
|
|
|
@ -32,4 +32,13 @@
|
|||
<string name="action_load">Cargar</string>
|
||||
<string name="curative_efforts">Esfuerzos curativos</string>
|
||||
<string name="pg">PG</string>
|
||||
<string name="action_reset">Borrar datos</string>
|
||||
<string name="curative_display_text1">Tienes</string>
|
||||
<string name="curative_display_text2">de</string>
|
||||
<string name="curative_display_text3">esfuerzos curativos diarios</string>
|
||||
<string name="die">Morir</string>
|
||||
<string name="message_death">Has muerto</string>
|
||||
<string name="message_reset">Los datos han sido borrados</string>
|
||||
<string name="reset_confirmation">Todos los datos se perderán irrevocablemente</string>
|
||||
<string name="reset_confirmation_title">¿Estás seguro?</string>
|
||||
</resources>
|
|
@ -5,6 +5,7 @@
|
|||
<string name="action_cure">Cure</string>
|
||||
<string name="action_undo">Undo</string>
|
||||
<string name="pg">PG</string>
|
||||
<string name="die">Die</string>
|
||||
<string name="curative_efforts">Curative efforts</string>
|
||||
<string name="curative_display_text1">You have</string>
|
||||
<string name="curative_display_text2">out of</string>
|
||||
|
@ -12,7 +13,10 @@
|
|||
<string name="action_load">Load</string>
|
||||
<string name="dungeons_and_dragons">Dungeons and Dragons</string>
|
||||
<string name="action_save">Save</string>
|
||||
<string name="action_calendar_activity">Create event</string>
|
||||
<string name="action_reset">Reset</string>
|
||||
<string name="message_reset">All the data has been cleared</string>
|
||||
<string name="reset_confirmation_title">Are you sure?</string>
|
||||
<string name="reset_confirmation">All data will be lost!</string>
|
||||
<string name="action_undo_current_pg">Action undone</string>
|
||||
<string name="action_edit_basics">Edit character</string>
|
||||
<string name="adventurer_name">Adventurer name</string>
|
||||
|
|
Reference in a new issue