diff options
| author | 2016-01-05 09:58:30 +0000 | |
|---|---|---|
| committer | 2016-01-05 09:58:30 +0000 | |
| commit | b7fa66176154fc3753feb36ff1c3ecc57a9bf36c (patch) | |
| tree | d6d02d045f76c85fe58dd12e43ba2c08101e665b /src/modules | |
| parent | Update Spanish translation. (diff) | |
| download | KVIrc-b7fa66176154fc3753feb36ff1c3ecc57a9bf36c.tar.gz KVIrc-b7fa66176154fc3753feb36ff1c3ecc57a9bf36c.tar.bz2 KVIrc-b7fa66176154fc3753feb36ff1c3ecc57a9bf36c.zip | |
log export: Capitalization of menu option labels
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/logview/LogViewWindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/logview/LogViewWindow.cpp b/src/modules/logview/LogViewWindow.cpp index b0e6bd356..998237e1f 100644 --- a/src/modules/logview/LogViewWindow.cpp +++ b/src/modules/logview/LogViewWindow.cpp @@ -190,9 +190,9 @@ LogViewWindow::LogViewWindow() // Using setData to track the option ordinal that used to be passed as id m_pExportLogPopup = new QMenu("exportlog", this); - QAction* pAction = m_pExportLogPopup->addAction(__tr2qs_ctx("Plain text file","log")); + QAction* pAction = m_pExportLogPopup->addAction(__tr2qs_ctx("Plain Text File","log")); pAction->setData(LogFile::PlainText); - pAction = m_pExportLogPopup->addAction(__tr2qs_ctx("HTML archive","log")); + pAction = m_pExportLogPopup->addAction(__tr2qs_ctx("HTML Archive","log")); pAction->setData(LogFile::HTML); //m_pExportLogPopup->addAction(__tr2qs_ctx("XML file","log")); //m_pExportLogPopup->addAction(__tr2qs_ctx("database file","log")); @@ -447,8 +447,8 @@ void LogViewWindow::rightButtonClicked(QTreeWidgetItem * pItem, const QPoint &) //pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::UserList)),__tr2qs_ctx("Export all log files to","log"),m_pExportLogPopup); pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),__tr2qs_ctx("Remove All Log Files Within This Folder","log"),this,SLOT(deleteCurrent())); } else { - pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),__tr2qs_ctx("Export log file to","log"))->setMenu(m_pExportLogPopup); - pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),__tr2qs_ctx("Remove log file","log"),this,SLOT(deleteCurrent())); + pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),__tr2qs_ctx("Export Log File to","log"))->setMenu(m_pExportLogPopup); + pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),__tr2qs_ctx("Remove Log File","log"),this,SLOT(deleteCurrent())); } pPopup->exec(QCursor::pos()); |
