forked from doublespeakgames/adarkroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
localization.js
69 lines (68 loc) · 1.34 KB
/
localization.js
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
(function(){
//only used for poedit to find translatable strings
var keywords = [
_('saved.'),
_('wood'),
_('builder'),
_('teeth'),
_('meat'),
_('fur'),
_('alien alloy'),
_('bullets'),
_('charm'),
_('leather'),
_('iron'),
_('steel'),
_('coal'),
_('sulphur'),
_('energy cell'),
_('torch'),
_('medicine'),
_('hunter'),
_('trapper'),
_('tanner'),
_('grenade'),
_('bolas'),
_('bayonet'),
_('charcutier'),
_('iron miner'),
_('iron mine'),
_('coal miner'),
_('coal mine'),
_('sulphur miner'),
_('sulphur mine'),
_('armourer'),
_('steelworker'),
_('bait'),
_('cured meat'),
_('scales'),
_('compass'),
_('laser rifle'),
_('gatherer'),
_('cloth'),
_('scales'),
_('cured meat'),
_('thieves'),
_('not enough fur'),
_('not enough wood'),
_('not enough coal'),
_('not enough iron'),
_('not enough steel'),
_('not enough sulphur'),
_('baited trap'),
_('not enough scales'),
_('not enough cloth'),
_('not enough teeth'),
_('not enough leather'),
_('not enough meat'),
_('the compass points east'),
_('the compass points west'),
_('the compass points north'),
_('the compass points south'),
_('the compass points northeast'),
_('the compass points northwest'),
_('the compass points southeast'),
_('the compass points southwest')
];
keywords = null;
})();