summaryrefslogtreecommitdiff
path: root/src/gui/npcdialog.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-10 18:26:33 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-10 18:27:42 +0200
commit36ecab72a0fae5aa5b512e73a3de1dfe278410cf (patch)
treef202ed38a8f701b68e5a593de7dc2eaa6c1c14b8 /src/gui/npcdialog.cpp
parenta76ce742cdf160909bfd72747e07adff687f0045 (diff)
downloadmana-client-36ecab72a0fae5aa5b512e73a3de1dfe278410cf.tar.gz
mana-client-36ecab72a0fae5aa5b512e73a3de1dfe278410cf.tar.bz2
mana-client-36ecab72a0fae5aa5b512e73a3de1dfe278410cf.tar.xz
mana-client-36ecab72a0fae5aa5b512e73a3de1dfe278410cf.zip
Marked some strings as not translatable
NPC dialog requested translation of + and - and the chat dialog tried to translate a semicolon.
Diffstat (limited to 'src/gui/npcdialog.cpp')
-rw-r--r--src/gui/npcdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp
index 43fa6376..bb53ceb1 100644
--- a/src/gui/npcdialog.cpp
+++ b/src/gui/npcdialog.cpp
@@ -92,8 +92,8 @@ NpcDialog::NpcDialog()
mButton = new Button("", "ok", this);
//Setup more and less buttons (int input)
- mPlusButton = new Button(_("+"), "plus", this);
- mMinusButton = new Button(_("-"), "minus", this);
+ mPlusButton = new Button("+", "plus", this);
+ mMinusButton = new Button("-", "minus", this);
int width = std::max(mButton->getFont()->getWidth(CAPTION_WAITING),
mButton->getFont()->getWidth(CAPTION_NEXT));