summaryrefslogtreecommitdiff
path: root/shared/localization.h
blob: 0a5ca4fbada56f6c7774252c5ab88f71f18a09ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef MISC_H_INCLUDED
#define MISC_H_INCLUDED

#include <wx/intl.h>
#include <vector>
#include <memory>

class Translation;


namespace FreeFileSync
{
//language dependent global variables: need to be initialized by CustomLocale on program startup and language switch

extern const wxChar* THOUSANDS_SEPARATOR;
extern const wxChar* DECIMAL_POINT;


struct LocInfoLine
{
    int languageID;
    wxString languageName;
    wxString languageFile;
    wxString translatorName;
    wxString languageFlag;
};

class LocalizationInfo
{
public:
    static const std::vector<LocInfoLine>& getMapping();

private:
    LocalizationInfo();
    LocalizationInfo(const LocalizationInfo&);
    LocalizationInfo& operator=(const LocalizationInfo&);

    std::vector<LocInfoLine> locMapping;
};


class CustomLocale : public wxLocale
{
public:
    static CustomLocale& getInstance();

    void setLanguage(const int language);

    int getLanguage() const
    {
        return currentLanguage;
    }

    virtual const wxChar* GetString(const wxChar* szOrigString, const wxChar* szDomain = NULL) const;

private:
    CustomLocale();

    std::auto_ptr<Translation> translationDB;
    int currentLanguage;
};
}

#endif // MISC_H_INCLUDED
bgstack15