Create a default task list on first app launch

Hide spinner in task dialog fragment when only one task list
Added some text in About
This commit is contained in:
BONNEVILLE Geoffroy
2017-12-22 17:26:08 +01:00
parent e5c150aaf5
commit 59e1165c89
5 changed files with 65 additions and 54 deletions

View File

@@ -9,6 +9,11 @@
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".activities.AboutActivity">
<TextView
android:id="@+id/description_donext"
android:text="@string/donext_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/version_donext"
android:layout_width="wrap_content"

View File

@@ -63,4 +63,6 @@
<string name="task_list_ok">OK</string>
<string name="title_activity_history">Historique</string>
<string name="action_view_task">Tâche</string>
<string name="donext_description">DoNext est un nouveau genre de gestionnaire de tâches, basé sur le principe que créer trop de tâches est contre-productif. Faites plutôt glisser vos tâches vers la gauche ou la droite pour les mettre à la fin de votre liste et travailler dessus plus tard !</string>
<string name="default_task_list_name">Mes tâches</string>
</resources>

View File

@@ -65,8 +65,10 @@
<string name="settings_today_enable">Enable Today view?</string>
<string name="settings_today_desc">The Today view is a special way of showing your tasks. Select which tasks you want to do during the day and they will show up in this view. At the end of the day, the view is reset.</string>
<string name="settings_max_lists_label">Maximum number of lists</string>
<string name="default_task_list_name">My tasks</string>
<!-- Strings related to About -->
<string name="donext_description">DoNext is a new kind of task manager, based on the premise that creating too many tasks is counterproductive. Instead, swipe tasks left and right to push them back to the bottom of your backlog to work on them at a later time!</string>
<string name="about_version_donext">DoNext version %s</string>
<string name="about_version_android">Android version %d</string>
<string name="about_link" translatable="false">https://github.com/wismna</string>