-
Notifications
You must be signed in to change notification settings - Fork 1
/
a18n.cpp
65 lines (55 loc) · 1.19 KB
/
a18n.cpp
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
#include "a18n.h"
#include "aJSON.h"
a18n::a18n() {
init();
}
a18n::a18n(char* data) {
init();
setData(data);
}
a18n::a18n(char* locale, char* data) {
init();
this->locale = locale;
setData(data);
}
void a18n::init() {
this->locale = NULL;
this->data = NULL;
this->root = NULL;
}
void a18n::setData(char* data) {
this->data = data;
if (this->root)
aJson.deleteItem(root);
this->root = NULL;
}
void a18n::setLocale(char* locale) {
this->locale = locale;
}
const char* a18n::getLocale() {
return locale;
}
const char* a18n::getTranslation(char* item) {
getTranslation(locale, item);
}
const char* a18n::getTranslation(char* locale, char* item) {
if (root == NULL)
root = aJson.parse(this->data);
if (root != NULL) {
aJsonObject* jitem = aJson.getObjectItem(root, item);
if (jitem != NULL) {
aJsonObject* jtranslation = aJson.getObjectItem(jitem, locale);
return jtranslation->valuestring;
} else {
return NULL;
}
} else {
return NULL;
}
}
a18n::~a18n() {
if (data)
delete(data);
if (root)
aJson.deleteItem(root);
}