Fix remaining instances of tqStatus embedded in user visible strings

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/konversation@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 4f6c300e3e
commit 2990ea68c5

@ -191,7 +191,7 @@ bool DccTransferManager::hasActiveTransfers()
void DccTransferManager::slotTransferStatusChanged( DccTransfer* item, int newtqStatus, int oldtqStatus )
{
kdDebug() << "DccTransferManager::slotTransferStatusChanged(): " << oldtqStatus << " -> " << newtqStatus << " " << item->getFileName() << " (" << item->getType() << ")" << endl;
kdDebug() << "DccTransferManager::slotTransferStatusChanged(): " << oldStatus << " -> " << newStatus << " " << item->getFileName() << " (" << item->getType() << ")" << endl;
if ( newtqStatus == DccTransfer::Queued )
emit newTransferQueued( item );

@ -43,7 +43,7 @@
DccTransferPanel::DccTransferPanel(TQWidget* parent) : ChatWindow(parent)
{
setType(ChatWindow::DccTransferPanel);
setName(i18n("DCC tqStatus"));
setName(i18n("DCC Status"));
initGUI();

@ -148,7 +148,7 @@ KonversationMainWindow::KonversationMainWindow() : KMainWindow(0,"main_window",
actionCollection(), "identities_dialog"))->setToolTip(i18n("Manage your nick, away and other identity settings"));
new KToggleAction(i18n("&Watched Nicks Online"), "kontact_contacts", KShortcut("F4"), m_viewContainer, TQT_SLOT(openNicksOnlinePanel()), actionCollection(), "open_nicksonline_window");
new KToggleAction(i18n("&DCC tqStatus"), "2rightarrow", KShortcut("F9"), m_viewContainer, TQT_SLOT(toggleDccPanel()), actionCollection(), "open_dccstatus_window");
new KToggleAction(i18n("&DCC Status"), "2rightarrow", KShortcut("F9"), m_viewContainer, TQT_SLOT(toggleDccPanel()), actionCollection(), "open_dccstatus_window");
action = new KAction(i18n("&Open Logfile"), "history", KShortcut("Ctrl+O"), m_viewContainer, TQT_SLOT(openLogFile()), actionCollection(), "open_logfile");
action->setEnabled(false);
action->setToolTip(i18n("Open the known history for this channel in a new tab"));

@ -2033,7 +2033,7 @@ void ViewContainer::addDccPanel()
{
if (!m_dccPanelOpen)
{
addView(m_dccPanel, i18n("DCC tqStatus"));
addView(m_dccPanel, i18n("DCC Status"));
m_dccPanelOpen=true;
(dynamic_cast<KToggleAction*>(actionCollection()->action("open_dccstatus_window")))->setChecked(true);
}

Loading…
Cancel
Save