Skip to content

Commit

Permalink
Merge pull request #5819 from JosJuice/qt-analytics-message
Browse files Browse the repository at this point in the history
DolphinQt2: Reword the analytics message
  • Loading branch information
leoetlino committed Jul 23, 2017
2 parents c3394c3 + 34cacd4 commit 96a8fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/DolphinQt2/Main.cpp
Expand Up @@ -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 "
Expand All @@ -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();

Expand Down

0 comments on commit 96a8fb7

Please sign in to comment.