comparison main/NetworkPermissionTester.cpp @ 664:b4a7c98e4c83

Small relayout
author Chris Cannam
date Tue, 26 Nov 2013 13:14:33 +0000
parents 55efa5a18814
children 7e0d135e6758
comparison
equal deleted inserted replaced
663:55efa5a18814 664:b4a7c98e4c83
46 QGridLayout *layout = new QGridLayout; 46 QGridLayout *layout = new QGridLayout;
47 d.setLayout(layout); 47 d.setLayout(layout);
48 48
49 QLabel *label = new QLabel; 49 QLabel *label = new QLabel;
50 label->setWordWrap(true); 50 label->setWordWrap(true);
51 label->setText(QCoreApplication::translate("NetworkPermissionTester", "<h3>Welcome to Sonic Visualiser!</h3><p>Sonic Visualiser is a program for viewing and exploring audio data for semantic music analysis and annotation.</p><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><p><b>Before we start...</b></p><p>Sonic Visualiser needs to make occasional network requests to our servers.</p><p>This is in order to:</p><ul><li>download metadata about available and installed plugins; and</li><li>find out when a newer version of Sonic Visualiser is available.</li></ul><p>No personal or identifying information will be sent, and your use of the program will not be tracked.</p><p>We recommend that you allow this, but if you do not wish to do so, please un-check the box below.</p>")); 51 label->setText
52 (QCoreApplication::translate
53 ("NetworkPermissionTester",
54 "<h3>Welcome to Sonic Visualiser!</h3>"
55 "<p>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>"
57 "<p><b>Before we start...</b></p>"
58 "<p>Sonic Visualiser needs to make occasional network requests to our servers.</p>"
59 "<p>This is in order to:</p>"
60 "<ul><li>download metadata about available and installed plugins; and</li>"
61 "<li>find out when a newer version of Sonic Visualiser is 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>We recommend that you allow this, but if you do not wish to do so, please un-check the box below.<br></p>"));
52 layout->addWidget(label, 0, 0); 64 layout->addWidget(label, 0, 0);
53 65
54 QCheckBox *cb = new QCheckBox(QCoreApplication::translate("NetworkPermissionTester", "Allow Sonic Visualiser to make these network requests")); 66 QCheckBox *cb = new QCheckBox(QCoreApplication::translate("NetworkPermissionTester", "Allow Sonic Visualiser to make these network requests"));
55 cb->setChecked(true); 67 cb->setChecked(true);
56 layout->addWidget(cb, 1, 0); 68 layout->addWidget(cb, 1, 0);