diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-19 13:09:59 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-19 13:09:59 -0700 |
commit | 16ac3080c22a70c4004f904569dc8a72ecfd76a4 (patch) | |
tree | 07551e5ac88f4c8fae2fdc07a5bfde92bd406e11 /src/gui | |
parent | 2b5947171bfa4cdad73bb87d7195408fca4e685a (diff) | |
download | mana-16ac3080c22a70c4004f904569dc8a72ecfd76a4.tar.gz mana-16ac3080c22a70c4004f904569dc8a72ecfd76a4.tar.bz2 mana-16ac3080c22a70c4004f904569dc8a72ecfd76a4.tar.xz mana-16ac3080c22a70c4004f904569dc8a72ecfd76a4.zip |
Made the party class use gettext.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/status.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 19cd921a..e140c42b 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -131,9 +131,9 @@ StatusWindow::StatusWindow(LocalPlayer *player): mStatsDefenseLabel= new gcn::Label(_("Defense:")); mStatsMagicAttackLabel = new gcn::Label(_("M.Attack:")); mStatsMagicDefenseLabel = new gcn::Label(_("M.Defense:")); - mStatsAccuracyLabel = new gcn::Label(_("% Accuracy:")); - mStatsEvadeLabel = new gcn::Label(_("% Evade:")); - mStatsReflexLabel = new gcn::Label(_("% Reflex:")); + mStatsAccuracyLabel = new gcn::Label(_("\% Accuracy:")); + mStatsEvadeLabel = new gcn::Label(_("\% Evade:")); + mStatsReflexLabel = new gcn::Label(_("\% Reflex:")); mStatsAttackPoints = new gcn::Label; mStatsDefensePoints = new gcn::Label; |