Add initial help text
app/src/main/res/layout/activity_help.xml
5 | 5 | android:layout_height="match_parent" | |
6 | 6 | tools:context=".HelpActivity"> | |
7 | 7 | ||
8 | + | <LinearLayout | |
9 | + | android:layout_width="match_parent" | |
10 | + | android:layout_height="wrap_content" | |
11 | + | android:orientation="vertical" | |
12 | + | android:padding="8dp"> | |
13 | + | ||
14 | + | <TextView | |
15 | + | android:id="@+id/textView1" | |
16 | + | android:layout_width="match_parent" | |
17 | + | android:layout_height="wrap_content" | |
18 | + | android:textAlignment="center" | |
19 | + | android:layout_gravity="center_horizontal" | |
20 | + | android:text="@string/help_intro" | |
21 | + | android:textSize="@dimen/subtitle_size" | |
22 | + | android:layout_marginBottom="16dp"/> | |
23 | + | ||
24 | + | <TextView | |
25 | + | android:id="@+id/textView2" | |
26 | + | android:layout_width="match_parent" | |
27 | + | android:layout_height="wrap_content" | |
28 | + | android:text="@string/help_info" | |
29 | + | android:layout_marginBottom="16dp" /> | |
30 | + | ||
31 | + | <TableLayout | |
32 | + | android:layout_width="match_parent" | |
33 | + | android:layout_height="wrap_content"> | |
34 | + | </TableLayout> | |
35 | + | </LinearLayout> | |
8 | 36 | </ScrollView> | |
8 | 36 | = | |
9 | 37 | = | \ No newline at end of file |
app/src/main/res/values-fr/strings.xml
67 | 67 | <string name="sense_alternatives">Formes alternatives : %s</string> | |
68 | 68 | ||
69 | 69 | <!-- About activity --> | |
70 | - | ||
71 | 70 | <string name="nani_about">???Nani???? est un dictionnaire japonais hors-ligne pour Android. Il vous | |
72 | 71 | aide ?? trouver et comprendre des mots sans acc??s internet, en t??l??chargeant des sources de | |
73 | 72 | dictionnaires.\n\nLes retours sont toujours appr??ci??s ! Vous pouvez les ??crire en fran??ais, | |
… | |||
124 | 123 | en japonais. Il couvre les 13 108 kanji des trois standards japonais principaux. | |
125 | 124 | </string> | |
126 | 125 | <string name="kanjidic_license">Cette source est disponible sous license Creative Commons Share-Alike.</string> | |
126 | + | ||
127 | + | <!-- Help Activities --> | |
128 | + | <string name="help_intro">Bienvenue dans le centre d\'aide de Nani !</string> | |
129 | + | <string name="help_info">Cet ??cran et les diff??rents sujets vous aideront ?? mieux comprendre et | |
130 | + | ?? utiliser Nani de mani??re plus efficace. Vous devriez prendre le temps de lire les diff??rents | |
131 | + | sujets d\'aide. Cliquez sur le sujet qui vous int??resse : | |
132 | + | </string> | |
127 | 133 | </resources> |
app/src/main/res/values/strings.xml
125 | 125 | covers the 13,108 kanji in three main Japanese standards. | |
126 | 126 | </string> | |
127 | 127 | <string name="kanjidic_license">This source is licensed under Creative Commons Share-Alike.</string> | |
128 | + | ||
129 | + | <!-- Help Activities --> | |
130 | + | <string name="help_intro">Welcome to Nani\'s Help Center!</string> | |
131 | + | <string name="help_info">This help screen and subtopics will help you understand and use | |
132 | + | Nani in a more efficient way. You should take the time to read the help topics. Click on the | |
133 | + | topic you are interested in today: | |
134 | + | </string> | |
128 | 135 | </resources> |