From 34cacd4944618229b18cd5ef729cac8f0eb2339b Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 23 Jul 2017 11:41:39 +0200 Subject: [PATCH] DolphinQt2: Reword the analytics message "this" made sense when "Do you authorize..." was on the bottom, but it doesn't make sense when it's at the top. Also removing unnecessary newlines. --- Source/Core/DolphinQt2/Main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt2/Main.cpp b/Source/Core/DolphinQt2/Main.cpp index 7c4c757624..5609e70d5b 100644 --- a/Source/Core/DolphinQt2/Main.cpp +++ b/Source/Core/DolphinQt2/Main.cpp @@ -68,8 +68,8 @@ int main(int argc, char* argv[]) analytics_prompt.setIcon(QMessageBox::Question); analytics_prompt.setStandardButtons(QMessageBox::Yes | QMessageBox::No); - analytics_prompt.setText(QObject::tr( - "Do you authorize Dolphin to report this information to Dolphin's developers?")); + analytics_prompt.setText( + QObject::tr("Do you authorize Dolphin to report information to Dolphin's developers?")); analytics_prompt.setInformativeText( QObject::tr("If authorized, Dolphin can collect data on its performance, " "feature usage, and configuration, as well as data on your system's " @@ -79,7 +79,7 @@ int main(int argc, char* argv[]) "efforts. It also helps us identify rare configurations that are " "causing bugs, performance and stability issues.\n" "This authorization can be revoked at any time through Dolphin's " - "settings.\n\n")); + "settings.")); const int answer = analytics_prompt.exec();