aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/modules/theme/SaveThemeDialog.cpp18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/modules/theme/SaveThemeDialog.cpp b/src/modules/theme/SaveThemeDialog.cpp
index 6e0ea5d56..4b4af497c 100644
--- a/src/modules/theme/SaveThemeDialog.cpp
+++ b/src/modules/theme/SaveThemeDialog.cpp
@@ -152,13 +152,23 @@ SaveThemeDialog::SaveThemeDialog(QWidget * pParent)
pPage = new QWidget(this);
pLayout = new QGridLayout(pPage);
- m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons","theme"),this);
+ m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons and images with theme","theme"),this);
m_pSaveIconsCheckBox->setChecked(true);
- pLayout->addWidget(m_pSaveIconsCheckBox,0,0);
- pLayout->setRowStretch(1,1);
+ pLabel = new QLabel(pPage);
+ pLabel->setWordWrap(true);
+ QString ozText = "<p>";
+ ozText += __tr2qs_ctx("To use the default and latest icon/image set automatically, uncheck this option.<br><br>To replace specific icons/images in your theme, include only those you wish to replace.","theme");
+ ozText += "</p><p>";;
+ ozText += __tr2qs_ctx("Hit the <b>\"Next\"</b> button to continue.","theme");
+ ozText += "<p>";
+
+ pLayout->addWidget(m_pSaveIconsCheckBox,0,0);
+ pLabel->setText(ozText);
+ pLayout->addWidget(pLabel,1,0);
+ pLayout->setRowStretch(2,1);
- addPage(pPage,__tr2qs_ctx("Options","theme"));
+ addPage(pPage,__tr2qs_ctx("Theme options","theme"));
setBackEnabled(pPage,true);
setNextEnabled(pPage,true);
setHelpEnabled(pPage,false);