diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-29 15:33:16 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-29 15:33:16 +0100 |
commit | 6f3477baa73cbc08e4ee48e0839d709cb14602cb (patch) | |
tree | 022fae039f33a7e25e67c411eaa425e4a8230ad9 | |
parent | c3ac08bc7629b69ece1a7a44e4d224b95ea51f27 (diff) | |
download | mana-client-6f3477baa73cbc08e4ee48e0839d709cb14602cb.tar.gz mana-client-6f3477baa73cbc08e4ee48e0839d709cb14602cb.tar.bz2 mana-client-6f3477baa73cbc08e4ee48e0839d709cb14602cb.tar.xz mana-client-6f3477baa73cbc08e4ee48e0839d709cb14602cb.zip |
Made more strings translatable (patch by Kess)
-rw-r--r-- | src/gui/status.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/gui/status.cpp b/src/gui/status.cpp index b95a1eb8..39a298f7 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -52,19 +52,19 @@ StatusWindow::StatusWindow(LocalPlayer *player): mGpLabel = new gcn::Label(strprintf(_("Job: %d"), 0)); mJobLvlLabel = new gcn::Label(strprintf(_("Money: %d GP"), 0)); - mHpLabel = new gcn::Label("HP:"); + mHpLabel = new gcn::Label(_("HP:")); mHpBar = new ProgressBar(1.0f, 80, 15, 0, 171, 34); mHpValueLabel = new gcn::Label; - mXpLabel = new gcn::Label("Exp:"); + mXpLabel = new gcn::Label(_("Exp:")); mXpBar = new ProgressBar(1.0f, 80, 15, 143, 192, 211); mXpValueLabel = new gcn::Label; - mMpLabel = new gcn::Label("MP:"); + mMpLabel = new gcn::Label(_("MP:")); mMpBar = new ProgressBar(1.0f, 80, 15, 26, 102, 230); mMpValueLabel = new gcn::Label; - mJobXpLabel = new gcn::Label("Job:"); + mJobXpLabel = new gcn::Label(_("Job:")); mJobXpBar = new ProgressBar(1.0f, 80, 15, 220, 135, 203); mJobValueLabel = new gcn::Label; @@ -133,8 +133,11 @@ StatusWindow::StatusWindow(LocalPlayer *player): mStatsDefenseLabel= new gcn::Label(_("Defense:")); mStatsMagicAttackLabel = new gcn::Label(_("M.Attack:")); mStatsMagicDefenseLabel = new gcn::Label(_("M.Defense:")); + // Gettext flag for next line: xgettext:no-c-format mStatsAccuracyLabel = new gcn::Label(_("% Accuracy:")); + // Gettext flag for next line: xgettext:no-c-format mStatsEvadeLabel = new gcn::Label(_("% Evade:")); + // Gettext flag for next line: xgettext:no-c-format mStatsReflexLabel = new gcn::Label(_("% Reflex:")); mStatsAttackPoints = new gcn::Label; @@ -402,3 +405,4 @@ void StatusWindow::action(const gcn::ActionEvent &event) } } } + |