comparison main/NetworkPermissionTester.cpp @ 667:7e0d135e6758

Wording updates, and QM logo
author Chris Cannam
date Wed, 27 Nov 2013 09:14:18 +0000
parents b4a7c98e4c83
children bfd68cc71a25 d35e10576091
comparison
equal deleted inserted replaced
666:7707d9175d55 667:7e0d135e6758
49 QLabel *label = new QLabel; 49 QLabel *label = new QLabel;
50 label->setWordWrap(true); 50 label->setWordWrap(true);
51 label->setText 51 label->setText
52 (QCoreApplication::translate 52 (QCoreApplication::translate
53 ("NetworkPermissionTester", 53 ("NetworkPermissionTester",
54 "<h3>Welcome to Sonic Visualiser!</h3>" 54 "<h2>Welcome to Sonic Visualiser!</h2>"
55 "<p>Sonic Visualiser is a program for viewing and exploring audio data for semantic music analysis and annotation.</p>" 55 "<p><img src=\":icons/qm-logo-smaller.png\" style=\"float:right\">Sonic Visualiser is a program for viewing and exploring audio data for semantic music analysis and annotation.</p>"
56 "<p>Developed in the Centre for Digital Music at Queen Mary, University of London, Sonic Visualiser is provided free as open source software under the GNU General Public License.</p>" 56 "<p>Developed in the Centre for Digital Music at Queen Mary, University of London, Sonic Visualiser is provided free as open source software under the GNU General Public License.</p>"
57 "<p><b>Before we start...</b></p>" 57 "<p><hr></p>"
58 "<p><b>Before we go on...</b></p>"
58 "<p>Sonic Visualiser needs to make occasional network requests to our servers.</p>" 59 "<p>Sonic Visualiser needs to make occasional network requests to our servers.</p>"
59 "<p>This is in order to:</p>" 60 "<p>This is to:</p>"
60 "<ul><li>download metadata about available and installed plugins; and</li>" 61 "<ul><li> look up information about available and installed plugins; and</li>"
61 "<li>find out when a newer version of Sonic Visualiser is available.</li></ul>" 62 "<li> tell you when updates are available.</li></ul>"
62 "<p>No personal or identifying information will be sent, and your use of the program will not be tracked.</p>" 63 "<p>No personal information will be sent, no tracking is carried out, and all requests happen in the background without interrupting your work.</p>"
63 "<p>We recommend that you allow this, but if you do not wish to do so, please un-check the box below.<br></p>")); 64 "<p>We recommend that you allow this, because it makes Sonic Visualiser more useful. But if you do not wish to do so, please un-check the box below.<br></p>"));
64 layout->addWidget(label, 0, 0); 65 layout->addWidget(label, 0, 0);
65 66
66 QCheckBox *cb = new QCheckBox(QCoreApplication::translate("NetworkPermissionTester", "Allow Sonic Visualiser to make these network requests")); 67 QCheckBox *cb = new QCheckBox(QCoreApplication::translate("NetworkPermissionTester", "Allow this"));
67 cb->setChecked(true); 68 cb->setChecked(true);
68 layout->addWidget(cb, 1, 0); 69 layout->addWidget(cb, 1, 0);
69 70
70 QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok); 71 QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok);
71 QObject::connect(bb, SIGNAL(accepted()), &d, SLOT(accept())); 72 QObject::connect(bb, SIGNAL(accepted()), &d, SLOT(accept()));