Files
gMod/OTM_GUI/OTM_Language.h
T
code@koerner-de.net 0263d78fed BugFix: checked for NULL pointer when removing a Mod
a lot of improvements and rearrangements in the GUI...
2011-09-21 20:39:10 +00:00

77 lines
1.6 KiB
C++

/*
This file is part of OpenTexMod.
OpenTexMod is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenTexMod is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FooOpenTexMod. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OTM_LANGUAGE_H_
#define OTM_LANGUAGE_H_
class OTM_Language
{
public:
OTM_Language(void);
int LoadLanguage(int lang);
wxString MenuPref;
wxString MenuQuit;
wxString MenuHelp;
wxString MenuAbout;
wxString MenuAddGame;
wxString MenuDeleteGame;
wxString MainMenuStart;
wxString MainMenuGame;
wxString MainMenuHelp;
wxString ButtonOpen;
wxString ButtonDirectory;
wxString ButtonUpdate;
wxString ButtonSave;
wxString ChooseFile;
wxString ChooseDir;
wxString CheckBoxSaveSingleTexture;
wxString CheckBoxSaveAllTextures;
wxString TextCtrlSavePath;
wxString DeleteGame;
wxString GameAlreadyAdded;
wxString FileNotSupported;
wxString ExitGameAnyway;
wxString KeyBack;
wxString KeySave;
wxString KeyNext;
wxArrayString KeyStrings;
wxArrayInt KeyValues;
private:
int LoadKeys(int lang);
};
#endif /* OTM_LANGUAGE_H_ */