@lokascript/i18n 2.1.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.cjs +45 -28
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +1 -1
- package/dist/browser.d.ts +1 -1
- package/dist/browser.js +45 -28
- package/dist/browser.js.map +1 -1
- package/dist/dictionaries/index.cjs +45 -28
- package/dist/dictionaries/index.cjs.map +1 -1
- package/dist/dictionaries/index.js +45 -28
- package/dist/dictionaries/index.js.map +1 -1
- package/dist/index.cjs +45 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +45 -28
- package/dist/index.js.map +1 -1
- package/dist/lokascript-i18n.min.js +1 -1
- package/dist/lokascript-i18n.min.js.map +1 -1
- package/dist/lokascript-i18n.mjs +49 -33
- package/dist/lokascript-i18n.mjs.map +1 -1
- package/dist/plugins/vite.cjs +45 -28
- package/dist/plugins/vite.cjs.map +1 -1
- package/dist/plugins/vite.js +45 -28
- package/dist/plugins/vite.js.map +1 -1
- package/dist/plugins/webpack.cjs +45 -28
- package/dist/plugins/webpack.cjs.map +1 -1
- package/dist/plugins/webpack.js +45 -28
- package/dist/plugins/webpack.js.map +1 -1
- package/dist/{transformer-B6NgN3JQ.d.ts → transformer-B0zy-kti.d.ts} +0 -12
- package/dist/{transformer-DQqxl6hb.d.cts → transformer-CzY_vHU0.d.cts} +0 -12
- package/package.json +3 -3
- package/src/dictionaries/bn.ts +23 -8
- package/src/dictionaries/he.ts +101 -0
- package/src/dictionaries/th.ts +23 -8
- package/src/dictionaries/vi.ts +17 -30
|
@@ -745,22 +745,10 @@ declare const hindiDictionary: Dictionary;
|
|
|
745
745
|
|
|
746
746
|
declare const hiKeywords: KeywordProvider;
|
|
747
747
|
|
|
748
|
-
/**
|
|
749
|
-
* Bengali Dictionary
|
|
750
|
-
*
|
|
751
|
-
* Bengali translations for hyperscript keywords.
|
|
752
|
-
*/
|
|
753
|
-
|
|
754
748
|
declare const bn: Dictionary;
|
|
755
749
|
|
|
756
750
|
declare const bnKeywords: KeywordProvider;
|
|
757
751
|
|
|
758
|
-
/**
|
|
759
|
-
* Thai Dictionary
|
|
760
|
-
*
|
|
761
|
-
* Thai translations for hyperscript keywords.
|
|
762
|
-
*/
|
|
763
|
-
|
|
764
752
|
declare const th: Dictionary;
|
|
765
753
|
|
|
766
754
|
declare const thKeywords: KeywordProvider;
|
|
@@ -745,22 +745,10 @@ declare const hindiDictionary: Dictionary;
|
|
|
745
745
|
|
|
746
746
|
declare const hiKeywords: KeywordProvider;
|
|
747
747
|
|
|
748
|
-
/**
|
|
749
|
-
* Bengali Dictionary
|
|
750
|
-
*
|
|
751
|
-
* Bengali translations for hyperscript keywords.
|
|
752
|
-
*/
|
|
753
|
-
|
|
754
748
|
declare const bn: Dictionary;
|
|
755
749
|
|
|
756
750
|
declare const bnKeywords: KeywordProvider;
|
|
757
751
|
|
|
758
|
-
/**
|
|
759
|
-
* Thai Dictionary
|
|
760
|
-
*
|
|
761
|
-
* Thai translations for hyperscript keywords.
|
|
762
|
-
*/
|
|
763
|
-
|
|
764
752
|
declare const th: Dictionary;
|
|
765
753
|
|
|
766
754
|
declare const thKeywords: KeywordProvider;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokascript/i18n",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Grammar transformation and keyword translation for hyperscript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@hyperfixi/core": "*",
|
|
69
69
|
"@lokascript/semantic": "*",
|
|
70
|
-
"esbuild": "0.27.
|
|
70
|
+
"esbuild": "0.27.4",
|
|
71
71
|
"happy-dom": "20.0.6",
|
|
72
72
|
"vite": "^7.1.12"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
76
|
-
"@rollup/plugin-terser": "^0.
|
|
76
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
77
77
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
78
78
|
"@types/node": "^20.0.0",
|
|
79
79
|
"@vitest/coverage-v8": "^4.0.0",
|
package/src/dictionaries/bn.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*
|
|
4
|
-
* Bengali translations for hyperscript keywords.
|
|
5
|
-
*/
|
|
1
|
+
// Generated/merged from semantic profiles — hand-written entries are preserved
|
|
2
|
+
// To add derived entries, update the semantic profile and run: npm run generate:language-assets
|
|
6
3
|
|
|
7
4
|
import { Dictionary } from '../types';
|
|
8
5
|
|
|
@@ -53,7 +50,16 @@ export const bengaliDictionary: Dictionary = {
|
|
|
53
50
|
clone: 'কপি',
|
|
54
51
|
swap: 'বদল',
|
|
55
52
|
morph: 'রূপান্তর',
|
|
53
|
+
beep: 'বীপ',
|
|
54
|
+
break: 'ভাঙুন',
|
|
55
|
+
copy: 'কপি',
|
|
56
|
+
exit: 'বের',
|
|
57
|
+
js: 'জেএস',
|
|
58
|
+
pick: 'বাছুন',
|
|
59
|
+
render: 'রেন্ডার',
|
|
60
|
+
until: 'পর্যন্ত',
|
|
56
61
|
},
|
|
62
|
+
|
|
57
63
|
modifiers: {
|
|
58
64
|
to: 'কে',
|
|
59
65
|
from: 'থেকে',
|
|
@@ -73,6 +79,7 @@ export const bengaliDictionary: Dictionary = {
|
|
|
73
79
|
until: 'পর্যন্ত',
|
|
74
80
|
of: 'র',
|
|
75
81
|
},
|
|
82
|
+
|
|
76
83
|
events: {
|
|
77
84
|
click: 'ক্লিক',
|
|
78
85
|
change: 'পরিবর্তন',
|
|
@@ -89,6 +96,7 @@ export const bengaliDictionary: Dictionary = {
|
|
|
89
96
|
resize: 'রিসাইজ',
|
|
90
97
|
every: 'প্রতি',
|
|
91
98
|
},
|
|
99
|
+
|
|
92
100
|
logical: {
|
|
93
101
|
if: 'যদি',
|
|
94
102
|
when: 'যখন',
|
|
@@ -99,14 +107,17 @@ export const bengaliDictionary: Dictionary = {
|
|
|
99
107
|
or: 'অথবা',
|
|
100
108
|
is: 'হয়',
|
|
101
109
|
exists: 'আছে',
|
|
102
|
-
has: 'আছে',
|
|
103
|
-
have: 'আছি',
|
|
110
|
+
has: 'আছে',
|
|
111
|
+
have: 'আছি',
|
|
104
112
|
empty: 'খালি',
|
|
105
113
|
true: 'সত্য',
|
|
106
114
|
false: 'মিথ্যা',
|
|
107
115
|
null: 'শূন্য',
|
|
108
116
|
undefined: 'অনির্ধারিত',
|
|
117
|
+
end: 'শেষ',
|
|
118
|
+
then: 'তারপর',
|
|
109
119
|
},
|
|
120
|
+
|
|
110
121
|
temporal: {
|
|
111
122
|
now: 'এখন',
|
|
112
123
|
seconds: 'সেকেন্ড',
|
|
@@ -118,6 +129,7 @@ export const bengaliDictionary: Dictionary = {
|
|
|
118
129
|
s: 'সে',
|
|
119
130
|
ms: 'মিসে',
|
|
120
131
|
},
|
|
132
|
+
|
|
121
133
|
values: {
|
|
122
134
|
me: 'আমি',
|
|
123
135
|
my: 'আমার',
|
|
@@ -127,7 +139,10 @@ export const bengaliDictionary: Dictionary = {
|
|
|
127
139
|
event: 'ঘটনা',
|
|
128
140
|
target: 'লক্ষ্য',
|
|
129
141
|
body: 'বডি',
|
|
142
|
+
you: 'আপনি',
|
|
143
|
+
your: 'তোমার',
|
|
130
144
|
},
|
|
145
|
+
|
|
131
146
|
attributes: {
|
|
132
147
|
class: 'শ্রেণি',
|
|
133
148
|
id: 'আইডি',
|
|
@@ -138,6 +153,7 @@ export const bengaliDictionary: Dictionary = {
|
|
|
138
153
|
disabled: 'অক্ষম',
|
|
139
154
|
checked: 'চেক করা',
|
|
140
155
|
},
|
|
156
|
+
|
|
141
157
|
expressions: {
|
|
142
158
|
first: 'প্রথম',
|
|
143
159
|
last: 'শেষ',
|
|
@@ -152,5 +168,4 @@ export const bengaliDictionary: Dictionary = {
|
|
|
152
168
|
},
|
|
153
169
|
};
|
|
154
170
|
|
|
155
|
-
// Default export alias
|
|
156
171
|
export const bn = bengaliDictionary;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
// Generated/merged from semantic profiles — hand-written entries are preserved
|
|
2
|
+
// To add derived entries, update the semantic profile and run: npm run generate:language-assets
|
|
3
|
+
|
|
4
|
+
import { Dictionary } from '../types';
|
|
5
|
+
|
|
6
|
+
export const he: Dictionary = {
|
|
7
|
+
commands: {
|
|
8
|
+
add: 'הוסף',
|
|
9
|
+
append: 'צרף',
|
|
10
|
+
async: 'אסינכרוני',
|
|
11
|
+
beep: 'ביפ',
|
|
12
|
+
break: 'שבור',
|
|
13
|
+
call: 'קרא',
|
|
14
|
+
continue: 'המשך',
|
|
15
|
+
copy: 'העתק',
|
|
16
|
+
decrement: 'הקטן',
|
|
17
|
+
default: 'ברירת מחדל',
|
|
18
|
+
exit: 'צא',
|
|
19
|
+
fetch: 'הבא',
|
|
20
|
+
for: 'עבור',
|
|
21
|
+
get: 'קבל',
|
|
22
|
+
go: 'לך',
|
|
23
|
+
halt: 'עצור',
|
|
24
|
+
hide: 'הסתר',
|
|
25
|
+
if: 'אם',
|
|
26
|
+
increment: 'הגדל',
|
|
27
|
+
install: 'התקן',
|
|
28
|
+
js: 'js',
|
|
29
|
+
log: 'רשום',
|
|
30
|
+
make: 'צור',
|
|
31
|
+
measure: 'מדוד',
|
|
32
|
+
morph: 'הפוך',
|
|
33
|
+
on: 'ב',
|
|
34
|
+
pick: 'בחר',
|
|
35
|
+
put: 'שים',
|
|
36
|
+
remove: 'הסר',
|
|
37
|
+
render: 'רנדר',
|
|
38
|
+
repeat: 'חזור',
|
|
39
|
+
return: 'החזר',
|
|
40
|
+
send: 'שלח',
|
|
41
|
+
set: 'קבע',
|
|
42
|
+
settle: 'התייצב',
|
|
43
|
+
show: 'הראה',
|
|
44
|
+
swap: 'החלף',
|
|
45
|
+
take: 'קח',
|
|
46
|
+
tell: 'אמור',
|
|
47
|
+
throw: 'זרוק',
|
|
48
|
+
toggle: 'מתג',
|
|
49
|
+
transition: 'מעבר',
|
|
50
|
+
trigger: 'הפעל',
|
|
51
|
+
until: 'עד',
|
|
52
|
+
wait: 'חכה',
|
|
53
|
+
while: 'כל עוד',
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
modifiers: {
|
|
57
|
+
after: 'אחרי',
|
|
58
|
+
before: 'לפני',
|
|
59
|
+
from: 'מ',
|
|
60
|
+
into: 'לתוך',
|
|
61
|
+
to: 'על',
|
|
62
|
+
with: 'עם',
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
events: {
|
|
66
|
+
blur: 'טשטש',
|
|
67
|
+
change: 'שינוי',
|
|
68
|
+
click: 'לחיצה',
|
|
69
|
+
focus: 'מקד',
|
|
70
|
+
input: 'קלט',
|
|
71
|
+
submit: 'שליחה',
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
logical: {
|
|
75
|
+
and: 'וגם',
|
|
76
|
+
else: 'אחרת',
|
|
77
|
+
end: 'סוף',
|
|
78
|
+
then: 'אז',
|
|
79
|
+
when: 'כאשר',
|
|
80
|
+
where: 'איפה',
|
|
81
|
+
},
|
|
82
|
+
|
|
83
|
+
temporal: {},
|
|
84
|
+
|
|
85
|
+
values: {
|
|
86
|
+
body: 'גוף',
|
|
87
|
+
event: 'אירוע',
|
|
88
|
+
it: 'זה',
|
|
89
|
+
its: 'שלו',
|
|
90
|
+
me: 'אני',
|
|
91
|
+
my: 'שלי',
|
|
92
|
+
result: 'תוצאה',
|
|
93
|
+
target: 'יעד',
|
|
94
|
+
you: 'אתה',
|
|
95
|
+
your: 'שלך',
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
attributes: {},
|
|
99
|
+
|
|
100
|
+
expressions: {},
|
|
101
|
+
};
|
package/src/dictionaries/th.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*
|
|
4
|
-
* Thai translations for hyperscript keywords.
|
|
5
|
-
*/
|
|
1
|
+
// Generated/merged from semantic profiles — hand-written entries are preserved
|
|
2
|
+
// To add derived entries, update the semantic profile and run: npm run generate:language-assets
|
|
6
3
|
|
|
7
4
|
import { Dictionary } from '../types';
|
|
8
5
|
|
|
@@ -53,7 +50,16 @@ export const thaiDictionary: Dictionary = {
|
|
|
53
50
|
clone: 'คัดลอก',
|
|
54
51
|
swap: 'สลับที่',
|
|
55
52
|
morph: 'แปลงร่าง',
|
|
53
|
+
beep: 'บี๊บ',
|
|
54
|
+
break: 'ขัดจังหวะ',
|
|
55
|
+
copy: 'คัดลอก',
|
|
56
|
+
exit: 'ออก',
|
|
57
|
+
js: 'เจเอส',
|
|
58
|
+
pick: 'เลือก',
|
|
59
|
+
render: 'แสดงผล',
|
|
60
|
+
until: 'จนถึง',
|
|
56
61
|
},
|
|
62
|
+
|
|
57
63
|
modifiers: {
|
|
58
64
|
to: 'ไปยัง',
|
|
59
65
|
from: 'จาก',
|
|
@@ -73,6 +79,7 @@ export const thaiDictionary: Dictionary = {
|
|
|
73
79
|
until: 'จนถึง',
|
|
74
80
|
of: 'ของ',
|
|
75
81
|
},
|
|
82
|
+
|
|
76
83
|
events: {
|
|
77
84
|
click: 'คลิก',
|
|
78
85
|
change: 'เปลี่ยนแปลง',
|
|
@@ -89,6 +96,7 @@ export const thaiDictionary: Dictionary = {
|
|
|
89
96
|
resize: 'ปรับขนาด',
|
|
90
97
|
every: 'ทุก',
|
|
91
98
|
},
|
|
99
|
+
|
|
92
100
|
logical: {
|
|
93
101
|
if: 'ถ้า',
|
|
94
102
|
when: 'เมื่อ',
|
|
@@ -99,14 +107,17 @@ export const thaiDictionary: Dictionary = {
|
|
|
99
107
|
or: 'หรือ',
|
|
100
108
|
is: 'เป็น',
|
|
101
109
|
exists: 'มีอยู่',
|
|
102
|
-
has: 'มี',
|
|
103
|
-
have: 'มี',
|
|
110
|
+
has: 'มี',
|
|
111
|
+
have: 'มี',
|
|
104
112
|
empty: 'ว่าง',
|
|
105
113
|
true: 'จริง',
|
|
106
114
|
false: 'เท็จ',
|
|
107
115
|
null: 'ว่าง',
|
|
108
116
|
undefined: 'ไม่กำหนด',
|
|
117
|
+
end: 'จบ',
|
|
118
|
+
then: 'แล้ว',
|
|
109
119
|
},
|
|
120
|
+
|
|
110
121
|
temporal: {
|
|
111
122
|
now: 'ตอนนี้',
|
|
112
123
|
seconds: 'วินาที',
|
|
@@ -118,6 +129,7 @@ export const thaiDictionary: Dictionary = {
|
|
|
118
129
|
s: 'วิ',
|
|
119
130
|
ms: 'มว',
|
|
120
131
|
},
|
|
132
|
+
|
|
121
133
|
values: {
|
|
122
134
|
me: 'ฉัน',
|
|
123
135
|
my: 'ของฉัน',
|
|
@@ -127,7 +139,10 @@ export const thaiDictionary: Dictionary = {
|
|
|
127
139
|
event: 'เหตุการณ์',
|
|
128
140
|
target: 'เป้าหมาย',
|
|
129
141
|
body: 'บอดี้',
|
|
142
|
+
you: 'คุณ',
|
|
143
|
+
your: 'ของคุณ',
|
|
130
144
|
},
|
|
145
|
+
|
|
131
146
|
attributes: {
|
|
132
147
|
class: 'คลาส',
|
|
133
148
|
id: 'ไอดี',
|
|
@@ -138,6 +153,7 @@ export const thaiDictionary: Dictionary = {
|
|
|
138
153
|
disabled: 'ปิดใช้งาน',
|
|
139
154
|
checked: 'เลือกแล้ว',
|
|
140
155
|
},
|
|
156
|
+
|
|
141
157
|
expressions: {
|
|
142
158
|
first: 'แรก',
|
|
143
159
|
last: 'สุดท้าย',
|
|
@@ -152,5 +168,4 @@ export const thaiDictionary: Dictionary = {
|
|
|
152
168
|
},
|
|
153
169
|
};
|
|
154
170
|
|
|
155
|
-
// Default export alias
|
|
156
171
|
export const th = thaiDictionary;
|
package/src/dictionaries/vi.ts
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Generated/merged from semantic profiles — hand-written entries are preserved
|
|
2
|
+
// To add derived entries, update the semantic profile and run: npm run generate:language-assets
|
|
2
3
|
|
|
3
4
|
import { Dictionary } from '../types';
|
|
4
5
|
|
|
5
6
|
export const vi: Dictionary = {
|
|
6
7
|
commands: {
|
|
7
|
-
// Event handling
|
|
8
8
|
on: 'khi',
|
|
9
9
|
tell: 'nói với',
|
|
10
10
|
trigger: 'kích hoạt',
|
|
11
11
|
send: 'gửi',
|
|
12
|
-
|
|
13
|
-
// DOM manipulation
|
|
14
12
|
take: 'lấy',
|
|
15
13
|
put: 'đặt',
|
|
16
14
|
set: 'gán',
|
|
@@ -20,8 +18,6 @@ export const vi: Dictionary = {
|
|
|
20
18
|
toggle: 'chuyển đổi',
|
|
21
19
|
hide: 'ẩn',
|
|
22
20
|
show: 'hiển thị',
|
|
23
|
-
|
|
24
|
-
// Control flow
|
|
25
21
|
if: 'nếu',
|
|
26
22
|
unless: 'trừ khi',
|
|
27
23
|
repeat: 'lặp lại',
|
|
@@ -31,57 +27,35 @@ export const vi: Dictionary = {
|
|
|
31
27
|
continue: 'tiếp tục',
|
|
32
28
|
break: 'dừng',
|
|
33
29
|
halt: 'dừng lại',
|
|
34
|
-
|
|
35
|
-
// Async
|
|
36
30
|
wait: 'chờ',
|
|
37
31
|
fetch: 'tải',
|
|
38
32
|
call: 'gọi',
|
|
39
33
|
return: 'trả về',
|
|
40
|
-
|
|
41
|
-
// Other commands
|
|
42
34
|
make: 'tạo',
|
|
43
35
|
log: 'in ra',
|
|
44
36
|
throw: 'ném',
|
|
45
37
|
catch: 'bắt',
|
|
46
38
|
measure: 'đo lường',
|
|
47
39
|
transition: 'chuyển tiếp',
|
|
48
|
-
|
|
49
|
-
// Data Commands
|
|
50
40
|
increment: 'tăng',
|
|
51
41
|
decrement: 'giảm',
|
|
52
42
|
default: 'mặc định',
|
|
53
|
-
|
|
54
|
-
// Navigation Commands
|
|
55
43
|
go: 'đi đến',
|
|
56
44
|
pushUrl: 'pushUrl',
|
|
57
45
|
replaceUrl: 'thayThếUrl',
|
|
58
|
-
|
|
59
|
-
// Utility Commands
|
|
60
46
|
copy: 'sao chép',
|
|
61
47
|
pick: 'chọn',
|
|
62
48
|
beep: 'beep',
|
|
63
|
-
|
|
64
|
-
// Advanced Commands
|
|
65
49
|
js: 'js',
|
|
66
50
|
async: 'bất đồng bộ',
|
|
67
51
|
render: 'hiển thị',
|
|
68
|
-
|
|
69
|
-
// Animation Commands
|
|
70
52
|
swap: 'hoán đổi',
|
|
71
53
|
morph: 'biến đổi',
|
|
72
54
|
settle: 'ổn định',
|
|
73
|
-
|
|
74
|
-
// Content Commands
|
|
75
55
|
append: 'nối',
|
|
76
|
-
|
|
77
|
-
// Control Flow
|
|
78
56
|
exit: 'thoát',
|
|
79
|
-
|
|
80
|
-
// Focus
|
|
81
57
|
focus: 'tập trung',
|
|
82
58
|
blur: 'mất tập trung',
|
|
83
|
-
|
|
84
|
-
// Additional
|
|
85
59
|
init: 'khởi tạo',
|
|
86
60
|
behavior: 'hành vi',
|
|
87
61
|
install: 'cài đặt',
|
|
@@ -140,12 +114,15 @@ export const vi: Dictionary = {
|
|
|
140
114
|
contains: 'chứa',
|
|
141
115
|
matches: 'khớp',
|
|
142
116
|
exists: 'tồn tại',
|
|
143
|
-
has: 'có',
|
|
144
|
-
have: 'có',
|
|
117
|
+
has: 'có',
|
|
118
|
+
have: 'có',
|
|
145
119
|
empty: 'trống',
|
|
146
120
|
true: 'đúng',
|
|
147
121
|
false: 'sai',
|
|
148
122
|
null: 'rỗng',
|
|
123
|
+
else: 'không thì',
|
|
124
|
+
end: 'kết thúc',
|
|
125
|
+
then: 'rồi',
|
|
149
126
|
},
|
|
150
127
|
|
|
151
128
|
temporal: {
|
|
@@ -172,6 +149,16 @@ export const vi: Dictionary = {
|
|
|
172
149
|
some: 'một số',
|
|
173
150
|
each: 'mỗi',
|
|
174
151
|
every: 'tất cả',
|
|
152
|
+
body: 'body',
|
|
153
|
+
event: 'sự kiện',
|
|
154
|
+
it: 'nó',
|
|
155
|
+
its: 'của nó',
|
|
156
|
+
me: 'tôi',
|
|
157
|
+
my: 'của tôi',
|
|
158
|
+
result: 'kết quả',
|
|
159
|
+
target: 'mục tiêu',
|
|
160
|
+
you: 'bạn',
|
|
161
|
+
your: 'của bạn',
|
|
175
162
|
},
|
|
176
163
|
|
|
177
164
|
attributes: {
|