Added option for stripping accents on add dict dialog;
[mdictionary] / trunk / src / plugins / xdxf / src / XdxfSettingsDialog.cpp
index 73d48e0..c75df67 100644 (file)
@@ -58,8 +58,8 @@ XdxfSettingsDialog::XdxfSettingsDialog(XdxfPlugin *plugin, QWidget *parent) :
 
     cacheLayout = new QHBoxLayout(this);
     verticalLayout->addLayout(cacheLayout);
-    accentsCheckBox = new QCheckBox("Strip accents \n(searching takes more time, "
-                 "but spelling don't have to be exact)");
+    accentsCheckBox = new QCheckBox(tr("Strip accents \n(searching takes more time, "
+                 "but spelling don't have to be exact)"));
     verticalLayout->addWidget(accentsCheckBox);
 
     if(plugin->settings()->value("strip_accents") == "true")
@@ -67,7 +67,7 @@ XdxfSettingsDialog::XdxfSettingsDialog(XdxfPlugin *plugin, QWidget *parent) :
     else
         accentsCheckBox->setChecked(false);
 
-    cacheCheckBox = new QCheckBox(tr("Cached"),this);
+    cacheCheckBox = new QCheckBox(tr("Optimize for quicker searches (may take some time)"),this);
     if(plugin->settings()->value("cached") == "true") {
         cacheCheckBox->setChecked(true);
         _generateCache = true;