forked from phuein/UserScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalizations.lua
More file actions
56 lines (55 loc) · 1.99 KB
/
Copy pathlocalizations.lua
File metadata and controls
56 lines (55 loc) · 1.99 KB
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
Junkee = Junkee or {}
Junkee.localizations = {
en = {
JunkBindingName = "Junk current item",
DeleteBindingName = "Destroy current item",
LinkBindingName = "Link in Chat current item",
LockBindingName = "Un/Lock current item",
VisibleBindingName = "Show bindings in Inventory",
JunkLabel = "Junk",
UnjunkLabel = "UnJunk",
LinkLabel = "Link",
LockLabel = "Lock",
DeleteLabel = "Destroy"
},
de = {
JunkBindingName = "Aktuellen Gegenstand als Trödel markieren",
DeleteBindingName = "Aktuellen Gegenstand zerstören",
LinkBindingName = "Link im Chat aktuelles element",
LockBindingName = "Un / Sperrt das aktuelle objekt",
VisibleBindingName = "Bindungen in Inventar anzeigen",
JunkLabel = "Als Trödel markieren",
UnjunkLabel = "Nicht als Trödel markieren",
LinkLabel = "Link",
LockLabel = "Sperren",
DeleteLabel = "Zerstören"
},
fr = {
JunkBindingName = "Mette aux rebuts",
DeleteBindingName = "Détruire",
LinkBindingName = "Lien dans Chat article en cours",
LockBindingName = "Un / Verrouiller l'élément actuel",
VisibleBindingName = "Afficher les liaisons dans l'inventaire",
JunkLabel = "Mette aux rebuts",
UnjunkLabel = "Ne mette pas aux rebuts",
LinkLabel = "Lien",
LockLabel = "Fermer à clé",
DeleteLabel = "Détruire"
},
ru = {
JunkBindingName = "Отметить как хлам",
DeleteBindingName = "Уничтожить указанный предмет",
LinkBindingName = "Ссылка в текущем элементе чата",
LockBindingName = "Заблокировать текущий элемент",
VisibleBindingName = "Показать привязки в инвентаре",
JunkLabel = "Хлам",
UnjunkLabel = "Не хлам",
LinkLabel = "Ссылка",
LockLabel = "Замок",
DeleteLabel = "Уничтожить"
},
}
Junkee.language = GetCVar("language.2") or "en"
Junkee.tr = function(str)
return Junkee.localizations[Junkee.language][str]
end