Browse Source

Fix typo in program preferences (Thanks cgreco)

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
6996ccc2c8
  1. 2
      src/preferences/options_imp.cpp

2
src/preferences/options_imp.cpp

@ -1169,7 +1169,7 @@ void options_imp::handleIPFilterParsed(bool error, int ruleCount) @@ -1169,7 +1169,7 @@ void options_imp::handleIPFilterParsed(bool error, int ruleCount)
if(error) {
QMessageBox::warning(this, tr("Parsing error"), tr("Failed to parse the provided IP filter"));
} else {
QMessageBox::information(this, tr("Succesfully refreshed"), tr("Successfuly parsed the provided IP filter: %1 rules were applied.", "%1 is a number").arg(ruleCount));
QMessageBox::information(this, tr("Successfully refreshed"), tr("Successfuly parsed the provided IP filter: %1 rules were applied.", "%1 is a number").arg(ruleCount));
}
m_refreshingIpFilter = false;
disconnect(QBtSession::instance(), SIGNAL(ipFilterParsed(bool, int)), this, SLOT(handleIPFilterParsed(bool, int)));

Loading…
Cancel
Save