diff options
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 84f24fa6c..8f74a6877 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -1546,6 +1546,7 @@ bool ChatWindow::resortChatLog(std::string line, tradeChatTab && findI(line, mTradeFilter) != std::string::npos) { + // TRANSLATORS: prefix for moved message to trade tab. tradeChatTab->chatLog(std::string("##S") + _("Moved: ") + line, own, ignoreRecord, @@ -1553,6 +1554,7 @@ bool ChatWindow::resortChatLog(std::string line, if (own == ChatMsgType::BY_PLAYER) { own = ChatMsgType::BY_SERVER; + // TRANSLATORS: moved message to trade tab warning. line = _("Your message was moved to trade tab"); } else |