aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-10-29 16:40:32 +0100
committerKai Koehne <kai.koehne@qt.io>2019-11-04 11:13:17 +0000
commit69002988f3113dbc893675cf44db6d81e156b54e (patch)
tree6f0fb857f1a99d7de1fbb3849bfb65c0204beea6
parent7b5e3f4df022842779502f796c32a65d9121bbe1 (diff)
Replace "Usage Statistic" with plural
Always talk about "Usage Statistics" in the UI. So far we have been using a mixture of 'statistic' and 'statistics'. Anyhow, a 'statistic' is a single measure, and we measure different things, so calling it statistics is more appropriate. Change-Id: Ie79167ebdfbf012124b1cd3068664ad82b7537b2 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--src/UsageStatistic.json.in2
-rw-r--r--src/datasources/kitsource.cpp2
-rw-r--r--src/ui/usagestatisticpage.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/UsageStatistic.json.in b/src/UsageStatistic.json.in
index 0ed40e6..9a999e4 100644
--- a/src/UsageStatistic.json.in
+++ b/src/UsageStatistic.json.in
@@ -5,7 +5,7 @@
\"Vendor\" : \"The Qt Company Ltd\",
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
\"License\" : \"GNU GPL v3\",
- \"Description\" : \"This plugin is used to collect usage statistic. All statistics are anonymous. You can switch off the plugin any time you want.\",
+ \"Description\" : \"This plugin collects statistics on how Qt Creator is used. All statistics are anonymous. You can switch off the plugin any time you want.\",
\"Url\" : \"https://www.qt.io/\",
$$dependencyList
}
diff --git a/src/datasources/kitsource.cpp b/src/datasources/kitsource.cpp
index 38d0ccc..9458853 100644
--- a/src/datasources/kitsource.cpp
+++ b/src/datasources/kitsource.cpp
@@ -56,7 +56,7 @@ QString KitSource::name() const
QString KitSource::description() const
{
- return tr("Kits usage statistic: compilers, debuggers, target architecture etc.");
+ return tr("Kits usage statistics: compilers, debuggers, target architecture, and so on.");
}
static QString kitsInfoKey() { return QStringLiteral("kitsInfo"); }
diff --git a/src/ui/usagestatisticpage.cpp b/src/ui/usagestatisticpage.cpp
index a81fc87..c3c6558 100644
--- a/src/ui/usagestatisticpage.cpp
+++ b/src/ui/usagestatisticpage.cpp
@@ -85,7 +85,7 @@ void UsageStatisticPage::configure()
setCategoryIcon(Utils::Icon({{":/usagestatistic/images/settingscategory_usagestatistic.png",
Utils::Theme::PanelTextColorDark}}, Utils::Icon::Tint));
- setDisplayName(tr("Usage Statistic"));
+ setDisplayName(tr("Usage Statistics"));
setDisplayCategory(tr("Telemetry"));
}