aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar un1versal2016-02-23 07:48:57 +0000
committerGravatar un1versal2016-02-23 07:56:00 +0000
commitb6df0231996ace462a4c920f5cb92bb3901042a4 (patch)
tree24d6b6755c97df574baa3ed825737879d333a280
parentKviQueryWindow: break hops into own line + append colons to labels (diff)
downloadKVIrc-b6df0231996ace462a4c920f5cb92bb3901042a4.tar.gz
KVIrc-b6df0231996ace462a4c920f5cb92bb3901042a4.tar.bz2
KVIrc-b6df0231996ace462a4c920f5cb92bb3901042a4.zip
LogViewWindow: append colons to labels
-rw-r--r--src/modules/logview/LogViewWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/logview/LogViewWindow.cpp b/src/modules/logview/LogViewWindow.cpp
index 14baf39f6..f7da5e7f0 100644
--- a/src/modules/logview/LogViewWindow.cpp
+++ b/src/modules/logview/LogViewWindow.cpp
@@ -680,13 +680,13 @@ void LogViewWindow::createLog(LogFile * pLog, int iId, QString * pszFile)
szTitle = __tr2qs_ctx("Console on %1","log").arg(pLog->network());
break;
case LogFile::Query:
- szTitle = __tr2qs_ctx("Query with %1 on %2","log").arg(pLog->name(),pLog->network());
+ szTitle = __tr2qs_ctx("Query with: %1 on %2","log").arg(pLog->name(),pLog->network());
break;
case LogFile::DccChat:
- szTitle = __tr2qs_ctx("DCC Chat with %1","log").arg(pLog->name());
+ szTitle = __tr2qs_ctx("DCC Chat with: %1","log").arg(pLog->name());
break;
case LogFile::Other:
- szTitle = __tr2qs_ctx("Something on %1","log").arg(pLog->network());
+ szTitle = __tr2qs_ctx("Something on: %1","log").arg(pLog->network());
break;
}