diff options
author | Allan Nordhøy <epost@anotheragency.no> | 2017-11-24 16:19:43 +0000 |
---|---|---|
committer | Allan Nordhøy <epost@anotheragency.no> | 2017-11-24 16:19:43 +0000 |
commit | d5bfb77480f8e37c1f8332b5f631fcc3cfc67e67 (patch) | |
tree | 445873e1b46671a5d493ddda919df4991d88650a /src | |
parent | 9cf73639f09418bcfab169d78ec28cc09a2bed29 (diff) | |
download | plus-d5bfb77480f8e37c1f8332b5f631fcc3cfc67e67.tar.gz plus-d5bfb77480f8e37c1f8332b5f631fcc3cfc67e67.tar.bz2 plus-d5bfb77480f8e37c1f8332b5f631fcc3cfc67e67.tar.xz plus-d5bfb77480f8e37c1f8332b5f631fcc3cfc67e67.zip |
Cache cleaned, orphaned, ID, never seen, nick
Diffstat (limited to 'src')
-rw-r--r-- | src/progs/manaplus/actions/actions.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/progs/manaplus/actions/actions.cpp b/src/progs/manaplus/actions/actions.cpp index aa30257b7..9ef8b0865 100644 --- a/src/progs/manaplus/actions/actions.cpp +++ b/src/progs/manaplus/actions/actions.cpp @@ -1076,7 +1076,7 @@ impHandler0(cleanGraphics) if (debugChatTab != nullptr) { // TRANSLATORS: clear graphics command message - debugChatTab->chatLog(_("Cache cleaned"), + debugChatTab->chatLog(_("Cache cleared"), ChatMsgType::BY_SERVER); } return true; @@ -1089,7 +1089,7 @@ impHandler0(cleanFonts) if (debugChatTab != nullptr) { // TRANSLATORS: clear fonts cache message - debugChatTab->chatLog(_("Cache cleaned"), + debugChatTab->chatLog(_("Cache cleared"), ChatMsgType::BY_SERVER); } return true; @@ -1327,7 +1327,7 @@ impHandler(dump) showRes(_("Resource images:"), res); res = ResourceManager::getOrphanedResources(); // TRANSLATORS: dump command - showRes(_("Resource orphaned images:"), res); + showRes(_("Orphaned resource images:"), res); } else { @@ -1337,7 +1337,7 @@ impHandler(dump) ChatMsgType::BY_SERVER); res = ResourceManager::getOrphanedResources(); // TRANSLATORS: dump command - debugChatTab->chatLog(_("Resource orphaned images:") + debugChatTab->chatLog(_("Orphaned resource images:") + toString(res->size()), ChatMsgType::BY_SERVER); } @@ -1569,7 +1569,7 @@ impHandler(createItem) impHandler(uploadConfig) { // TRANSLATORS: upload config chat message - uploadFile(_("Uploaded config into:"), + uploadFile(_("Config uploaded to:"), config.getFileName(), "?xml", event.tab); @@ -1579,7 +1579,7 @@ impHandler(uploadConfig) impHandler(uploadServerConfig) { // TRANSLATORS: upload config chat message - uploadFile(_("Uploaded server config into:"), + uploadFile(_("Server config Uploaded to:"), serverConfig.getFileName(), "?xml", event.tab); @@ -1589,7 +1589,7 @@ impHandler(uploadServerConfig) impHandler(uploadLog) { // TRANSLATORS: upload log chat message - uploadFile(_("Uploaded log into:"), + uploadFile(_("Log uploaded to:"), settings.logFileName, "?txt", event.tab); @@ -1845,7 +1845,7 @@ impHandler(seen) { // TRANSLATORS: last seen disabled warning tab->chatLog(_("Last seen disabled. " - "Enable in players / collect players id and seen log."), + "Enable in players / collect players ID and seen log."), ChatMsgType::BY_SERVER); return true; } @@ -1863,7 +1863,7 @@ impHandler(seen) if (lines.size() < 3) { // TRANSLATORS: last seen error - tab->chatLog(_("You not saw this nick."), + tab->chatLog(_("You have never seen this nick."), ChatMsgType::BY_SERVER); return true; } @@ -1877,7 +1877,7 @@ impHandler(seen) else { // TRANSLATORS: last seen error - tab->chatLog(_("You not saw this nick."), + tab->chatLog(_("You have not seen this nick before."), ChatMsgType::BY_SERVER); } |