fix untranslatable string

This commit is contained in:
Vincent Breitmoser 2017-09-12 12:52:22 +02:00
parent ac10b03a0e
commit 12b6d42990
2 changed files with 5 additions and 2 deletions

View file

@ -25,14 +25,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:text="You don't have any keys yet!"
android:text="@string/key_list_dummy_title"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:text="Click here to create or import one."
android:text="@string/key_list_dummy_subtitle"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>

View file

@ -699,6 +699,9 @@
<string name="key_list_fab_search">"Key Search"</string>
<string name="key_list_fab_import">"Import from File"</string>
<string name="key_list_dummy_title">"You don't have any keys yet!"</string>
<string name="key_list_dummy_subtitle">"Click here to create or import one."</string>
<!-- Key view -->
<string name="key_view_action_edit">"Edit"</string>
<string name="key_view_action_encrypt">"Encrypt text"</string>