summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-04-10 21:16:33 +0300
committerAndrei Karas <akaras@inbox.ru>2011-04-10 21:35:34 +0300
commitdacaf242cd28169a279e08c1d001afb5b7729d33 (patch)
tree7460b20034cf836740280f7e5ad6cd4625e3029e /src/commandhandler.cpp
parent121db99fb8227c2c1a2ba54801fad3c814ce06c2 (diff)
downloadplus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.gz
plus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.bz2
plus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.xz
plus-dacaf242cd28169a279e08c1d001afb5b7729d33.zip
Add some strings to translations.
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r--src/commandhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp
index df45a4f66..888451021 100644
--- a/src/commandhandler.cpp
+++ b/src/commandhandler.cpp
@@ -992,7 +992,7 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_,
if (!cache)
return;
- debugChatTab->chatLog("font cache size");
+ debugChatTab->chatLog(_("font cache size"));
std::string str;
for (int f = 0; f < 256; f ++)
{
@@ -1005,7 +1005,7 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_,
debugChatTab->chatLog(str);
#ifdef DEBUG_FONT_COUNTERS
debugChatTab->chatLog("");
- debugChatTab->chatLog("Created: " + toString(font->getCreateCounter()));
- debugChatTab->chatLog("Deleted: " + toString(font->getDeleteCounter()));
+ debugChatTab->chatLog(_("Created: ") + toString(font->getCreateCounter()));
+ debugChatTab->chatLog(_("Deleted: ") + toString(font->getDeleteCounter()));
#endif
}