diff options
| author | 2015-12-27 22:41:58 +0000 | |
|---|---|---|
| committer | 2015-12-28 00:09:10 +0000 | |
| commit | f7cdc2e955557b10cace398d150d655ea474387f (patch) | |
| tree | 4b24debc7757c7d5c41e8db8f929c5d5f1b87514 /src | |
| parent | Hide the Advanced button in the "Restore default script" dialog once it's cli... (diff) | |
| download | KVIrc-f7cdc2e955557b10cace398d150d655ea474387f.tar.gz KVIrc-f7cdc2e955557b10cace398d150d655ea474387f.tar.bz2 KVIrc-f7cdc2e955557b10cace398d150d655ea474387f.zip | |
Fix brain farts: dont capitalize option labels +
dont capitalize less than 5 letter prepositions
Diffstat (limited to 'src')
| -rw-r--r-- | src/kvirc/kernel/KviDefaultScript.cpp | 6 | ||||
| -rw-r--r-- | src/modules/popupeditor/PopupEditorWindow.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/kvirc/kernel/KviDefaultScript.cpp b/src/kvirc/kernel/KviDefaultScript.cpp index ee320bb8c..f1d9acf8b 100644 --- a/src/kvirc/kernel/KviDefaultScript.cpp +++ b/src/kvirc/kernel/KviDefaultScript.cpp @@ -410,7 +410,7 @@ KviDefaultScriptDialog::KviDefaultScriptDialog() QGridLayout * pLayout = new QGridLayout(this); QLabel * pLabel = new QLabel(this); - pLabel->setText(__tr2qs("You are about to restore the default script.\nAny script changes you have made will be erased if\nrestore \"All\" or \"Clear Custom Scripts\" are selected.\n\nDo you wish to proceed?\n")); + pLabel->setText(__tr2qs("You are about to restore the default script.\nAny script changes you have made will be erased if\nrestore \"All\" or \"Clear custom scripts\" are selected.\n\nDo you wish to proceed?\n")); pLayout->addWidget(pLabel,0,0,1,4); // Construct the advanced widget @@ -426,7 +426,7 @@ KviDefaultScriptDialog::KviDefaultScriptDialog() pAdvLayout->addWidget(m_pAll,0,0); connect(m_pAll,SIGNAL(clicked(bool)),this,SLOT(toggleAll(bool))); - m_pData = new QCheckBox(__tr2qs("Clear Custom Scripts"),m_pAdvanced); + m_pData = new QCheckBox(__tr2qs("Clear custom scripts"),m_pAdvanced); m_pData->setChecked(false); m_pData->setEnabled(true); pAdvLayout->addWidget(m_pData,0,1); @@ -464,7 +464,7 @@ KviDefaultScriptDialog::KviDefaultScriptDialog() m_pPopup->setEnabled(false); pAdvLayout->addWidget(m_pPopup,4,1); - m_pRaw = new QCheckBox(__tr2qs("RAW Events"),m_pAdvanced); + m_pRaw = new QCheckBox(__tr2qs("RAW events"),m_pAdvanced); m_pRaw->setChecked(true); m_pRaw->setEnabled(false); pAdvLayout->addWidget(m_pRaw,5,0); diff --git a/src/modules/popupeditor/PopupEditorWindow.cpp b/src/modules/popupeditor/PopupEditorWindow.cpp index cb4e3b830..0d0b67339 100644 --- a/src/modules/popupeditor/PopupEditorWindow.cpp +++ b/src/modules/popupeditor/PopupEditorWindow.cpp @@ -1154,7 +1154,7 @@ void PopupEditorWidget::customContextMenuRequested(const QPoint &pos) m_pContextPopup->addAction( *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)), - __tr2qs_ctx("&Export Popup To...","editor"), + __tr2qs_ctx("&Export Popup to...","editor"), this,SLOT(exportCurrentPopup())) ->setEnabled(it); |
