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/setup_video.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/setup_video.cpp')
-rw-r--r-- | src/gui/setup_video.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index f53a9716..724ce8b4 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -86,9 +86,9 @@ ModeListModel::ModeListModel() /* Check which modes are available */ if (modes == (SDL_Rect **)0) { - logger->log("No modes available"); + logger->log(_("No modes available")); } else if (modes == (SDL_Rect **)-1) { - logger->log("All resolutions available"); + logger->log(_("All resolutions available")); } else { //logger->log("Available Modes"); for (int i = 0; modes[i]; ++i) { |