diff --git a/forms/setupdialog.ui b/forms/setupdialog.ui
index 4b3edb46..da8d3f80 100644
--- a/forms/setupdialog.ui
+++ b/forms/setupdialog.ui
@@ -280,8 +280,13 @@ min-width: 200px;
true
+
+ QLabel {
+ margin-left: 1em;
+}
+
- (You can also skip this wizard and set up everything inside the application.)
+ You can also skip this wizard and set up everything inside the application.
true
@@ -733,8 +738,13 @@ border: none;
true
+
+ QLabel {
+ margin-left: 1em;
+}
+
- (If so, you can save time and money by using the same machine key, which allows Tarsnap to access the previously uploaded data.)
+ If so, you can save time and money by using the same machine key, which allows Tarsnap to access the previously uploaded data.
true
@@ -879,8 +889,13 @@ border: none;
true
+
+ QLabel {
+ margin-left: 1em;
+}
+
- (Don't have an account? Register on <a href="http://tarsnap.com">tarsnap.com</a>, then come back.)
+ Don't have an account? Register on <a href="http://tarsnap.com">tarsnap.com</a>, then come back.
true
diff --git a/src/widgets/setupdialog.cpp b/src/widgets/setupdialog.cpp
index 2fac5652..de694d81 100644
--- a/src/widgets/setupdialog.cpp
+++ b/src/widgets/setupdialog.cpp
@@ -249,9 +249,9 @@ void SetupDialog::restoreNo()
"credentials to register this machine with the service "
"and create a local key for this machine."));
_ui->registerPageInfoLabelAside->setText(
- tr("(Don't have an account? Register on "
+ tr("Don't have an account? Register on "
"tarsnap.com, "
- "then come back.)"));
+ "then come back."));
_ui->errorLabel->clear();
setNextPage();
}
@@ -270,9 +270,9 @@ void SetupDialog::restoreYes()
tr("Please use your existing machine key "
"and choose a machine name. "));
_ui->registerPageInfoLabelAside->setText(
- tr("(The registration will also "
+ tr("The registration will also "
"verify the archive integrity and consistency, "
- "so please be patient.)"));
+ "so please be patient."));
_ui->errorLabel->clear();
_ui->machineKeyCombo->clear();
foreach(QFileInfo file, Utils::findKeysInPath(_appDataDir))