diff --git a/imports/NeoChat/Page/SettingsPage.qml b/imports/NeoChat/Page/SettingsPage.qml index 8f46b064d..b3a65eb0b 100644 --- a/imports/NeoChat/Page/SettingsPage.qml +++ b/imports/NeoChat/Page/SettingsPage.qml @@ -17,12 +17,15 @@ Kirigami.ScrollablePage { Kirigami.FormLayout { QQC2.CheckBox { - Kirigami.FormData.label: i18n("Show notifications:") + // TODO: When there are enough notification and timeline event + // settings, make 2 separate groups with FormData labels. + Kirigami.FormData.label: i18n("Notifications and events:") + text: i18n("Show notifications") checked: Config.showNotifications onToggled: Config.showNotifications = checked } QQC2.CheckBox { - Kirigami.FormData.label: i18n("Show leave and join events:") + text: i18n("Show leave and join events") checked: Config.showLeaveJoinEvent onToggled: Config.showLeaveJoinEvent = checked }