- Chinese patch by linshier
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-07-31 14:41:04 +00:00
parent 1704a20d09
commit f40af0b1cb
65 changed files with 21364 additions and 175 deletions

View File

@@ -20,6 +20,7 @@ class Translator{
public:
map<string,string> values;
map<string,string> tempValues;
map<string,string> deckValues;
#if defined DEBUG_TRANSLATE
map<string,int> missingValues;
map<string,int> dontCareValues;
@@ -30,6 +31,7 @@ public:
~Translator();
int Add(string from, string to);
void initCards();
void initDecks();
void init();
static Translator * GetInstance();
static void EndInstance();
@@ -37,4 +39,5 @@ public:
string _(string toTranslate);
extern bool neofont;
#endif