Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b624b511 authored by elektroschmock's avatar elektroschmock
Browse files

Settings: Quiet hours: Bring back summaries

On languages with very long words e.g. German the new UI look awful.
Bring back summaries to make it look a bit better.

Change-Id: I2ac61e620a24731b65aaf3a962010d8d842c8daf
parent 0e97166d
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -478,11 +478,16 @@ two in order to insert additional control points. \'Remove\' deletes the selecte
    <string name="quiet_hours_summary">Configure the hours the device should be quiet</string>
    <string name="quiet_hours_enabled">Enforce quiet hours</string>
    <string name="quiet_hours_ringer">Phone ringer</string>
    <string name="quiet_hours_mute">Mute notifications</string>
    <string name="quiet_hours_system">Disable system sounds</string>
    <string name="quiet_hours_still">Disable vibrations</string>
    <string name="quiet_hours_dim">Disable notification light</string>
    <string name="quiet_hours_haptic">Disable haptic feedback</string>
    <string name="quiet_hours_mute">Notifications</string>
    <string name="quiet_hours_mute_summary">Mute notifications</string>
    <string name="quiet_hours_system">System sounds</string>
    <string name="quiet_hours_system_summary">Disable system sounds</string>
    <string name="quiet_hours_still">Vibrations</string>
    <string name="quiet_hours_still_summary">Disable vibrations</string>
    <string name="quiet_hours_dim">Notification light</string>
    <string name="quiet_hours_dim_summary">Disable notification light</string>
    <string name="quiet_hours_haptic">Haptic feedback</string>
    <string name="quiet_hours_haptic_summary">Disable haptic feedback</string>
    <string name="quiet_hours_active_from">Active from</string>
    <string name="quiet_hours_active_to">to</string>

+5 −0
Original line number Diff line number Diff line
@@ -40,26 +40,31 @@
    <com.android.settings.cyanogenmod.SystemSettingCheckBoxPreference
        android:key="quiet_hours_mute"
        android:title="@string/quiet_hours_mute"
        android:summary="@string/quiet_hours_mute_summary"
        android:dependency="quiet_hours_enabled" />

    <com.android.settings.cyanogenmod.SystemSettingCheckBoxPreference
        android:key="quiet_hours_haptic"
        android:title="@string/quiet_hours_haptic"
        android:summary="@string/quiet_hours_haptic_summary"
        android:dependency="quiet_hours_enabled" />

    <com.android.settings.cyanogenmod.SystemSettingCheckBoxPreference
        android:key="quiet_hours_system"
        android:title="@string/quiet_hours_system"
        android:summary="@string/quiet_hours_system_summary"
        android:dependency="quiet_hours_enabled" />

    <com.android.settings.cyanogenmod.SystemSettingCheckBoxPreference
        android:key="quiet_hours_still"
        android:title="@string/quiet_hours_still"
        android:summary="@string/quiet_hours_still_summary"
        android:dependency="quiet_hours_enabled" />

    <com.android.settings.cyanogenmod.SystemSettingCheckBoxPreference
        android:key="quiet_hours_dim"
        android:title="@string/quiet_hours_dim"
        android:summary="@string/quiet_hours_dim_summary"
        android:dependency="quiet_hours_enabled" />

</PreferenceScreen>