diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-08 22:03:33 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-08 16:27:30 -0700 |
commit | 193ccbdba8031a351ea622f8842b6d9a0b6cfd43 (patch) | |
tree | 5e62faa24be231e60a3aa2643fa233f356ac23c7 /src/gui/smileyshortcutcontainer.cpp | |
parent | 3f8387402ee7b528026450232cb457c8ae1cf4e2 (diff) | |
download | mana-193ccbdba8031a351ea622f8842b6d9a0b6cfd43.tar.gz mana-193ccbdba8031a351ea622f8842b6d9a0b6cfd43.tar.bz2 mana-193ccbdba8031a351ea622f8842b6d9a0b6cfd43.tar.xz mana-193ccbdba8031a351ea622f8842b6d9a0b6cfd43.zip |
Made remaining dialogs translatable
Most strings are now translatable. Please do report any missing ones.
Strings excluded from translation are anything that gets written to the
log file or is otherwise not shown in the GUI.
Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
Diffstat (limited to 'src/gui/smileyshortcutcontainer.cpp')
-rw-r--r-- | src/gui/smileyshortcutcontainer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/smileyshortcutcontainer.cpp b/src/gui/smileyshortcutcontainer.cpp index 5a9c3036..f857ed5d 100644 --- a/src/gui/smileyshortcutcontainer.cpp +++ b/src/gui/smileyshortcutcontainer.cpp @@ -33,6 +33,7 @@ #include "../resources/image.h" #include "../resources/resourcemanager.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" SmileyShortcutContainer::SmileyShortcutContainer(): @@ -48,7 +49,7 @@ SmileyShortcutContainer::SmileyShortcutContainer(): mBackgroundImg = resman->getImage("graphics/gui/item_shortcut_bgr.png"); mSmileyImg = resman->getImageSet("graphics/gui/emotions.png",30,32); - if (!mSmileyImg) logger->error("Unable to load emotions"); + if (!mSmileyImg) logger->error(_("Unable to load emotions")); mMaxItems = 12; |