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:  I'd like to do a second pass later with another MR to unify triple dots (...) and ellipsis (…)
This commit is contained in:
@@ -259,7 +259,7 @@ Kirigami.OverlayDrawer {
|
||||
|
||||
QQC2.Label {
|
||||
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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user