Fix missing localozation strings for custom LED blink pattern.

This commit is contained in:
Tim Bücher
2014-02-25 11:38:31 +01:00
parent a0aaa7d724
commit bd167cbb17
3 changed files with 8 additions and 4 deletions

View File

@@ -29,7 +29,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/SeekBarOnLabel"
android:text="On For:"
android:text="@string/preferences__pref_led_blink_custom_pattern_on_for"
android:paddingTop="5sp" />
<TextView
android:id="@+id/SeekBarOnMsLabel"
@@ -65,7 +65,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/SeekBarOffLabel"
android:text="Off For:"
android:text="@string/preferences__pref_led_blink_custom_pattern_off_for"
android:paddingTop="5sp" />
<TextView
android:id="@+id/SeekBarOffMsLabel"

View File

@@ -644,6 +644,10 @@
<string name="preferences__display_message_notifications_in_status_bar">Display message notifications in status bar</string>
<string name="preferences__led_color">LED color</string>
<string name="preferences__pref_led_blink_title">LED blink pattern</string>
<string name="preferences__pref_led_blink_custom_pattern_title">Set custom LED Blink Pattern</string>
<string name="preferences__pref_led_blink_custom_pattern_on_for">On For:</string>
<string name="preferences__pref_led_blink_custom_pattern_off_for">Off For:</string>
<string name="preferences__pref_led_blink_custom_pattern_set">Custom LED blink pattern set!</string>
<string name="preferences__sound">Sound</string>
<string name="preferences__change_notification_sound">Change notification sound</string>
<string name="preferences__inthread_notifications">In-thread notifications</string>