summaryrefslogtreecommitdiff
path: root/src/gui/debugwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-05-22 15:48:23 +0300
committerAndrei Karas <akaras@inbox.ru>2011-05-22 15:48:23 +0300
commit10e6403739611bdc0ea06cf0ed55a0674f111100 (patch)
tree7c5c97dbe23b39b84bf23bcf99e565ddac32b838 /src/gui/debugwindow.cpp
parent797733823a46e1423334c3c693f0071286bac2a7 (diff)
downloadplus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.gz
plus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.bz2
plus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.xz
plus-10e6403739611bdc0ea06cf0ed55a0674f111100.zip
Some typo fixes and add comments for translators.
Diffstat (limited to 'src/gui/debugwindow.cpp')
-rw-r--r--src/gui/debugwindow.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp
index ddd2bc7db..b3e19e3e5 100644
--- a/src/gui/debugwindow.cpp
+++ b/src/gui/debugwindow.cpp
@@ -133,12 +133,13 @@ MapDebugTab::MapDebugTab() :
mMusicFileLabel = new Label(strprintf(_("Music:")));
mMapLabel = new Label(strprintf(_("Map:")));
mMinimapLabel = new Label(strprintf(_("Minimap:")));
- mTileMouseLabel = new Label(strprintf(_("Cursor: (%d, %d)"), 0, 0));
+ mTileMouseLabel = new Label(strprintf("%s (%d, %d)", _("Cursor:"), 0, 0));
mXYLabel = new Label(strprintf("%s (?,?)", _("Player Position:")));
- mParticleCountLabel = new Label(strprintf(_("Particle count: %d"), 88888));
- mMapActorCountLabel = new Label(strprintf(
- _("Map actors count: %d"), 88888));
+ mParticleCountLabel = new Label(strprintf("%s %d",
+ _("Particle count:"), 88888));
+ mMapActorCountLabel = new Label(strprintf("%s %d",
+ _("Map actors count:"), 88888));
mUpdateTime = 0;