From 5c792fe7ec055f72fec744191c5f4f451fdd8e72 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 6 May 2020 22:15:08 -0600 Subject: [PATCH] fix some grammar for user facing text --- app/Main.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Main.qml b/app/Main.qml index 47f21e2..aa72401 100644 --- a/app/Main.qml +++ b/app/Main.qml @@ -170,7 +170,7 @@ MainView { width: parent.width horizontalAlignment: Text.AlignHCenter wrapMode: Text.WordWrap - text: i18n.tr("Please note that this app will modify your readonly filesystem") + text: i18n.tr("Please note that this app will modify your read-only filesystem") } } } @@ -205,7 +205,7 @@ MainView { } ListItem.SingleValue { - text: i18n.tr("Check for update") + text: i18n.tr("Check for updates") progression: !noUpdate enabled: uBlockEnabled onClicked: { @@ -288,7 +288,7 @@ MainView { Dialog { id: newVersionDialog title: i18n.tr("New version available") - text: i18n.tr("New adblock list available, Want to update?") + text: i18n.tr("New adblock list available, Do you waant to update?") signal accepted() signal rejected()