summaryrefslogtreecommitdiff
path: root/lib/localization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
commit75c07011b7c4d06acd7b45dabdcd60ab9d80f385 (patch)
tree8853c3978dd152ef377e652239448b1352320206 /lib/localization.h
parent5.22 (diff)
downloadFreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.gz
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.bz2
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.zip
5.23
Diffstat (limited to 'lib/localization.h')
-rw-r--r--lib/localization.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/localization.h b/lib/localization.h
deleted file mode 100644
index 2d871dd7..00000000
--- a/lib/localization.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
-
-#ifndef LOCALIZATION_H_8917342083178321534
-#define LOCALIZATION_H_8917342083178321534
-
-#include <vector>
-#include <zen/file_error.h>
-//#include <wx/string.h>
-
-namespace zen
-{
-class ExistingTranslations
-{
-public:
- struct Entry
- {
- int languageID;
- std::wstring languageName;
- std::wstring languageFile;
- std::wstring translatorName;
- std::wstring languageFlag;
- };
- static const std::vector<Entry>& get();
-
-private:
- ExistingTranslations();
- ExistingTranslations(const ExistingTranslations&);
- ExistingTranslations& operator=(const ExistingTranslations&);
-
- std::vector<Entry> locMapping;
-};
-
-
-void setLanguage(int language); //throw FileError
-int getLanguage();
-int retrieveSystemLanguage();
-
-void releaseWxLocale(); //wxLocale crashes miserably on wxGTK when destructor runs during global cleanup => call in wxApp::OnExit
-//"You should delete all wxWidgets object that you created by the time OnExit finishes. In particular, do not destroy them from application class' destructor!"
-}
-
-#endif //LOCALIZATION_H_8917342083178321534
bgstack15