Text cleanup

This MR goes over text and cleans it up to be more unifying. Mostly just lowercasing words in non-titles, but it also changes the "show fancy effects" text to be clearer with its meaning.  
It also fixes the room access being printed in the room settings:  ![image](/uploads/864606de81f0f603ebb85dbe7c745491/image.png)  
I'd like to do a second pass later with another MR to unify triple dots (...) and ellipsis (…)
This commit is contained in:
Jan Bidler
2023-04-03 20:47:14 +00:00
committed by Tobias Fella
parent 0fb8b740a4
commit e995740790
2 changed files with 3 additions and 3 deletions

View File

@@ -18,13 +18,13 @@ Kirigami.OverlaySheet {
contentItem: Kirigami.FormLayout { contentItem: Kirigami.FormLayout {
QQC2.TextField { QQC2.TextField {
id: roomNameField id: roomNameField
Kirigami.FormData.label: i18n("Room Name") Kirigami.FormData.label: i18n("Room name:")
onAccepted: roomTopicField.forceActiveFocus(); onAccepted: roomTopicField.forceActiveFocus();
} }
QQC2.TextField { QQC2.TextField {
id: roomTopicField id: roomTopicField
Kirigami.FormData.label: i18n("Room Topic") Kirigami.FormData.label: i18n("Room topic:")
onAccepted: okButton.forceActiveFocus(); onAccepted: okButton.forceActiveFocus();
} }

View File

@@ -259,7 +259,7 @@ Kirigami.OverlayDrawer {
QQC2.Label { QQC2.Label {
Layout.alignment: Qt.AlignRight Layout.alignment: Qt.AlignRight
text: room ? i18np("%1 Member", "%1 Members", room.joinedCount) : i18n("No Member Count") text: room ? i18np("%1 member", "%1 members", room.joinedCount) : i18n("No member count")
} }
} }