missing strings to xml

This commit is contained in:
danijoo
2016-01-06 22:01:38 +01:00
parent d4417fa2d8
commit 6884f1b396
2 changed files with 8 additions and 4 deletions

View File

@@ -9,25 +9,25 @@
android:id="@+id/notification_filter_etTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Title" />
android:hint="@string/notification_filter_dialog_title" />
<EditText
android:id="@+id/notification_filter_etMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Message" />
android:hint="@string/notification_filter_dialog_message" />
<EditText
android:id="@+id/notification_filter_etAppName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Application name" />
android:hint="@string/notification_filter_dialog_application_name" />
<EditText
android:id="@+id/notification_filter_etPackage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Package name" />
android:hint="@string/notification_filter_dialog_package_name" />
</LinearLayout>

View File

@@ -60,6 +60,10 @@
<string name="filter_dialog_ok">OK</string>
<string name="filter_dialog_cancel">Cancel</string>
<string name="filter_dialog_title">Filter</string>
<string name="notification_filter_dialog_title">Title</string>
<string name="notification_filter_dialog_message">Message</string>
<string name="notification_filter_dialog_application_name">Application name</string>
<string name="notification_filter_dialog_package_name">Package name</string>
<string-array name="create_categories">
<item>Alarm</item>