forked from raspopov/polang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTranslation.h
113 lines (89 loc) · 2.99 KB
/
Translation.h
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
Polang
Copyright (C) 2017 Nikolay Raspopov <[email protected]>
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
class CTrans
{
public:
inline CTrans() = default;
inline CTrans(const CString& sId)
{
m_sId.AddTail( sId );
}
inline CTrans(const CTrans& it)
{
for ( POSITION pos = it.m_sId.GetHeadPosition(); pos; )
{
m_sId.AddTail( it.m_sId.GetNext( pos ) );
}
m_sMsgstr = it.m_sMsgstr;
}
inline CTrans& operator=(const CTrans& it)
{
m_sId.RemoveAll();
for ( POSITION pos = it.m_sId.GetHeadPosition(); pos; )
{
m_sId.AddTail( it.m_sId.GetNext( pos ) );
}
m_sMsgstr = it.m_sMsgstr;
return *this;
}
inline CString GetId() const
{
CString sId;
for ( POSITION pos = m_sId.GetHeadPosition(); pos; )
{
sId += _T(" ") + m_sId.GetNext( pos );
}
return sId;
}
CStringList m_sId;
CString m_sMsgstr;
};
class CTranslation
{
public:
inline CTranslation() = default;
inline POSITION GetHeadPosition() const
{
return m_MsgidToTrans.GetHeadPosition();
}
inline void GetNext(POSITION& pos, CTrans& trans, CString& sMsgid) const
{
m_MsgidToTrans.GetNextAssoc( pos, sMsgid, trans );
}
// Get localized string
CString Get(const CString& sId) const;
// Add English
void SetAt(const CString& sId, const CString& sMsgid);
void SetAt(const CStringList& lIds, const CString& sMsgid);
// Add localization
void Add(const CString& sId, const CString& sMsgstr, bool bFuzzy);
void Add(const CStringList& lIds, const CString& sMsgstr, bool bFuzzy);
bool LoadPo(const CString& sFilename);
bool LoadLang(const CString& sFilename, bool bMsgstr = false, bool bFuzzy = false, const CString& sAndSaveToFilename = CString());
bool SavePo(const CString& sFilename) const;
bool SaveLang(const CString& sFilename) const;
private:
CRBMap < CString, CTrans > m_MsgidToTrans; // msgid -> msgstr
CRBMap < CString, CString > m_IdToMsgid; // land_id -> msgid
CRBMap < CString, CString > m_IdToMsgidFuzzy; // Fuzzy( land_id ) -> msgid
bool LoadPoFromString(const CString& sContent);
static CString Fuzzy(__in CString str);
static CStringA UTF8Encode(__in_bcount(nInput) LPCWSTR psInput, __in int nInput);
static CStringA UTF8Encode(__in const CStringW& strInput);
static CString Decode(__in CString str);
static CString EscapePo(__in CString str);
static CString EscapeLang(__in CString str);
};