1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge remote-tracking branch 'zetok/wording2'

This commit is contained in:
agilob 2015-09-13 22:59:14 +01:00
commit 8058d85f75
No known key found for this signature in database
GPG Key ID: 296F0B764741106C

View File

@ -36,9 +36,9 @@ AdvancedForm::AdvancedForm() :
bodyUI->cbMakeToxPortable->setChecked(Settings::getInstance().getMakeToxPortable());
bodyUI->syncTypeComboBox->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
bodyUI->syncTypeComboBox->addItems({tr("Synchronized - safe / recommended"),
tr("Partially async - risky / 20% faster"),
tr("Asynchronous - dangerous / fastest")
bodyUI->syncTypeComboBox->addItems({tr("Synchronized - safe (recommended)"),
tr("Partially async - risky (20% faster)"),
tr("Asynchronous - dangerous (fastest)")
});
int index = 2 - static_cast<int>(Settings::getInstance().getDbSyncType());
bodyUI->syncTypeComboBox->setCurrentIndex(index);