Skip to content
Snippets Groups Projects
Verified Commit 895a1fa9 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Bugfixes

parent 5aea16a3
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -149,7 +149,7 @@ object Settings {
NotificationSettings.DEFAULT.sound
),
vibrate = getBoolean(
context.getString(R.string.preference_notification_sound_key),
context.getString(R.string.preference_notification_vibration_key),
NotificationSettings.DEFAULT.vibrate
),
light = getBoolean(
......
......@@ -55,7 +55,7 @@ class ClientSettingsFragment : DaggerPreferenceFragmentCompat(),
findPreference(getString(R.string.preference_notification_vibration_key)).isVisible = false
findPreference(getString(R.string.preference_notification_light_key)).isVisible = false
} else {
findPreference(getString(R.string.preference_notification_configure_key)).isVisible = true
findPreference(getString(R.string.preference_notification_configure_key)).isVisible = false
}
}
......
......@@ -24,7 +24,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="?listPreferredItemHeightSmall"
android:minHeight="?attr/listPreferredItemHeightSmall"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
......
......@@ -24,7 +24,7 @@
<string name="message_type_nick">Nick</string>
<string name="message_type_mode">Mode</string>
<string name="message_type_topic">Topic</string>
<string-array name="message_filter_types">
<string-array name="message_filter_types" translatable="false">
<item>@string/message_type_join</item>
<item>@string/message_type_part</item>
<item>@string/message_type_quit</item>
......
......@@ -32,7 +32,7 @@
<string name="preference_theme_entry_gruvbox_light">Gruvbox (Light)</string>
<string name="preference_theme_entry_gruvbox_dark">Gruvbox (Dark)</string>
<string name="preference_theme_entry_dracula">Dracula</string>
<string-array name="preference_theme_entries">
<string-array name="preference_theme_entries" translatable="false">
<item>@string/preference_theme_entry_material_light</item>
<item>@string/preference_theme_entry_material_dark</item>
<item>@string/preference_theme_entry_quassel_light</item>
......@@ -61,7 +61,7 @@
<string name="preference_input_enter_title">Enter key on keyboard</string>
<string name="preference_input_enter_entry_emoji">Emoji</string>
<string name="preference_input_enter_entry_send">Send</string>
<string-array name="preference_input_enter_entries">
<string-array name="preference_input_enter_entries" translatable="false">
<item>@string/preference_input_enter_entry_emoji</item>
<item>@string/preference_input_enter_entry_send</item>
</string-array>
......@@ -80,7 +80,7 @@
<string name="preference_language_entry_en" translatable="false">English</string>
<string name="preference_language_entry_de" translatable="false">Deutsch</string>
<string name="preference_language_entry_lt" translatable="false">Lietuvių</string>
<string-array name="preference_language_entries">
<string-array name="preference_language_entries" translatable="false">
<item>@string/preference_language_entry_auto</item>
<item>@string/preference_language_entry_en</item>
<item>@string/preference_language_entry_de</item>
......@@ -120,7 +120,7 @@
<string name="preference_notifications_level_all">All Messages</string>
<string name="preference_notifications_level_highlight">Mentions</string>
<string name="preference_notifications_level_none">Never</string>
<string-array name="preference_notifications_level_entries">
<string-array name="preference_notifications_level_entries" translatable="false">
<item>@string/preference_notifications_level_all</item>
<item>@string/preference_notifications_level_highlight</item>
<item>@string/preference_notifications_level_none</item>
......@@ -156,7 +156,7 @@
<string name="preference_colorize_nicknames_entry_all">All nicks</string>
<string name="preference_colorize_nicknames_entry_all_but_mine">All but own nick</string>
<string name="preference_colorize_nicknames_entry_none">No nicks</string>
<string-array name="preference_colorize_nicknames_entries">
<string-array name="preference_colorize_nicknames_entries" translatable="false">
<item>@string/preference_colorize_nicknames_entry_all</item>
<item>@string/preference_colorize_nicknames_entry_all_but_mine</item>
<item>@string/preference_colorize_nicknames_entry_none</item>
......@@ -172,7 +172,7 @@
<string name="preference_show_prefix_entry_all">All modes</string>
<string name="preference_show_prefix_entry_highest">Highest mode</string>
<string name="preference_show_prefix_entry_none">No modes</string>
<string-array name="preference_show_prefix_entries">
<string-array name="preference_show_prefix_entries" translatable="false">
<item>@string/preference_show_prefix_entry_all</item>
<item>@string/preference_show_prefix_entry_highest</item>
<item>@string/preference_show_prefix_entry_none</item>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment