diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-28 22:04:48 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-28 22:05:52 +0200 |
commit | 9c95cf794db33f9c265d414172c439b98e4cc0ba (patch) | |
tree | eba9c59b2749e9f0efff049c7c42de06622a39a8 /src/gui | |
parent | 7dda7e2cdbf7b63c316da2baa5627c7e7dc6d5b2 (diff) | |
download | mana-9c95cf794db33f9c265d414172c439b98e4cc0ba.tar.gz mana-9c95cf794db33f9c265d414172c439b98e4cc0ba.tar.bz2 mana-9c95cf794db33f9c265d414172c439b98e4cc0ba.tar.xz mana-9c95cf794db33f9c265d414172c439b98e4cc0ba.zip |
Made two error strings untranslatable
They should never be seen by a user.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/emotepopup.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/emotepopup.cpp b/src/gui/emotepopup.cpp index 036a25ec..707f4bfa 100644 --- a/src/gui/emotepopup.cpp +++ b/src/gui/emotepopup.cpp @@ -35,8 +35,6 @@ #include "resources/resourcemanager.h" #include "utils/dtor.h" -#include "utils/gettext.h" -#include "utils/stringutils.h" #include <guichan/mouseinput.hpp> #include <guichan/selectionlistener.hpp> @@ -61,7 +59,7 @@ EmotePopup::EmotePopup(): ResourceManager *resman = ResourceManager::getInstance(); mSelectionImage = resman->getImage("graphics/gui/selection.png"); if (!mSelectionImage) - logger->error(_("Unable to load selection.png")); + logger->error("Unable to load selection.png"); mSelectionImage->setAlpha(config.getValue("guialpha", 0.8)); |