-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlocalization.lua
187 lines (155 loc) · 6.94 KB
/
localization.lua
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
PallyPower_Version = "1.066"
SLASH_PALLYPOWER1 = "/pp"
SLASH_PALLYPOWER2 = "/pallypower"
PallyPower_BlessingID = { };
PallyPower_BlessingID[0] = "Wisdom";
PallyPower_BlessingID[1] = "Might";
PallyPower_BlessingID[2] = "Salvation";
PallyPower_BlessingID[3] = "Light";
PallyPower_BlessingID[4] = "Kings";
PallyPower_BlessingID[5] = "Sanctuary";
PallyPower_BlessingTalentSearch = "Improved Blessing of (.*)";
PallyPower_BlessingSpellSearch = "Greater Blessing of (.*)";
PallyPower_Rank1 = "Rank 1"
PallyPower_RankSearch = "Rank (.*)"
PallyPower_Symbol = "Symbol of Kings"
-- _,class = UnitClass("player") returns....
PallyPower_Paladin = "PALADIN"
-- Used... ClassID .. ": Blessing of "..BlessingID
PallyPower_BuffFrameText = ": Blessing of "
PallyPower_Have = "Have: "
PallyPower_Need = "Need: "
PallyPower_NotHere = "Not Here: "
PallyPower_Dead = "Dead: "
PallyPower_BuffBarTitle = "Pally Buffs (%d)"
--- By Lines... Keep People the same, feel free to add yourself in the _Credits3 line if your localizing
--- And feel free to add a friend or two to special thanks
PallyPower_Credits1 = "Pally Power - by Aznamir"
PallyPower_Credits2 = "Version "..PallyPower_Version
PallyPower_Credits3 = ""
PallyPower_Credits4 = "Originaly by Sneakyfoot of Resurrection of Nathrezim"
PallyPower_Credits5 = "Updated version for Turtle WoW, added Shamans, by Rake/Xerron"
PallyPower_Credits6 = "Special Thanks: Gnarf, Blackoz, Peaches"
-- Buff name, Class Name
PallyPower_CouldntFind = "Couldn't find a target for %s on %s!"
-- Buff name, Class name, Person Name
PallyPower_Casting = "Casting %s on %s (%s)"
-- Reporting
PallyPower_Assignments1 = "--- Paladin assignments ---"
PallyPower_Assignments2 = "--- end of assignments ---"
PallyPower_ClassID = { };
PallyPower_ClassID[0] = "Warrior";
PallyPower_ClassID[1] = "Rogue";
PallyPower_ClassID[2] = "Priest";
PallyPower_ClassID[3] = "Druid";
PallyPower_ClassID[4] = "Paladin";
PallyPower_ClassID[5] = "Hunter";
PallyPower_ClassID[6] = "Mage";
PallyPower_ClassID[7] = "Warlock";
PallyPower_ClassID[8] = "Shaman";
--XML
PALLYPOWER_CLEAR = "Clear";
PALLYPOWER_REFRESH = "Refresh";
PALLYPOWER_OPTIONS = "Options";
PALLYPOWER_OPTIONS_TITLE = "Pally Power Options";
PALLYPOWER_OPTIONS_SCAN = "Scan Frequency (seconds):";
PALLYPOWER_OPTIONS_SCAN2 = "Poll Per Frame: ";
PALLYPOWER_OPTIONS_FEEDBACK_CHAT = "Show feedback in chat";
PALLYPOWER_OPTIONS_SMARTBUFFS = "Smart Buffs";
if (GetLocale() == "deDE") then
-- by Nextorus @ EU-Alexstrasza ([email protected])
PallyPower_BlessingID[0] = "Weisheit";
PallyPower_BlessingID[1] = "Macht";
PallyPower_BlessingID[2] = "Rettung";
PallyPower_BlessingID[3] = "Lichts";
PallyPower_BlessingID[4] = "K\195\182nige";
PallyPower_BlessingID[5] = "Refugiums";
PallyPower_BlessingTalentSearch = "Verbesserter Segen de[rs] (.*)";
PallyPower_BlessingSpellSearch = "Gro\195\159er Segen de[rs] (.*)";
PallyPower_Rank1 = "Rang 1";
PallyPower_RankSearch = "Rang (.*)";
PallyPower_Symbol = "Symbol der K\195\182nige"
-- _,class = UnitClass("player") returns....
PallyPower_Paladin = "PALADIN";
-- Used... ClassID .. ": Segen des "..BlessingID
PallyPower_BuffFrameText = ": Segen der ";
PallyPower_BuffFrameText_Alt = ": Segen des ";
PallyPower_Have = "Hat: ";
PallyPower_Need = "Braucht: ";
PallyPower_NotHere = "Nicht hier: ";
PallyPower_Dead = "Tot: ";
PallyPower_BuffBarTitle = "Pally Buffs (%d)";
--- By Lines... Keep People the same, feel free to add yourself in the _Credits3 line if your localizing
--- And feel free to add a friend or two to special thanks
PallyPower_Credits1 = "Pally Power - von Gnarf aka Sneakyfoot";
PallyPower_Credits2 = "Version "..PallyPower_Version;
PallyPower_Credits3 = "Deutsche Lokalisierung von Nextorus";
PallyPower_Credits4 = "Erstellt f\195\188r Resurrection auf Nathrezim";
PallyPower_Credits5 = "Vielen Dank an: Falline, Indada, Pinch, Tir, Ossijeanne";
PallyPower_Credits6 = "";
-- Buff name, Class Name
PallyPower_CouldntFind = "Konnte kein Ziel finden f\195\188r %s auf %s!";
-- Buff name, Class name, Person Name
PallyPower_Casting = "Spreche %s auf %s (%s)";
PallyPower_ClassID = { };
PallyPower_ClassID[0] = "Krieger";
PallyPower_ClassID[1] = "Schurke";
PallyPower_ClassID[2] = "Priester";
PallyPower_ClassID[3] = "Druide";
PallyPower_ClassID[4] = "Paladin";
PallyPower_ClassID[5] = "J\195\164ger";
PallyPower_ClassID[6] = "Magier";
PallyPower_ClassID[7] = "Hexenmeister";
PallyPower_ClassID[8] = "Schamane";
-- XML Localization
PALLYPOWER_CLEAR = "L\195\182schen";
PALLYPOWER_REFRESH = "Neu abfragen";
elseif (GetLocale() == "frFR") then
-- by Gagou @ EU-Drek'Thar ([email protected])
PallyPower_BlessingID = { };
PallyPower_BlessingID[0] = "de sagesse";
PallyPower_BlessingID[1] = "de puissance";
PallyPower_BlessingID[2] = "de salut";
PallyPower_BlessingID[3] = "de lumi\195\168re";
PallyPower_BlessingID[4] = "des rois";
PallyPower_BlessingID[5] = "du sanctuaire";
PallyPower_BlessingTalentSearch = "B\195\169n\195\169diction (.*) am\195\169lior\195\169e";
PallyPower_BlessingSpellSearch = "B\195\169n\195\169diction (.*) sup\195\169rieure";
PallyPower_Rank1 = "Rang 1"
PallyPower_RankSearch = "Rang (.*)"
PallyPower_Symbol = "Symbole des rois"
-- _,class = UnitClass("player") returns....
PallyPower_Paladin = "PALADIN"
-- Used... ClassID .. ": B\195\169n\195\169diction de "..BlessingID
PallyPower_BuffFrameText = ": B\195\169n\195\169diction de "
PallyPower_Have = "A : "
PallyPower_Need = "Besoin : "
PallyPower_NotHere = "Pas ici : "
PallyPower_Dead = "Mort : "
PallyPower_BuffBarTitle = "Pally Buffs (%d)"
--- By Lines... Keep People the same, feel free to add yourself in the _Credits3 line if your localizing
--- And feel free to add a friend or two to special thanks
PallyPower_Credits1 = "Pally Power - by Gnarf aka Sneakyfoot"
PallyPower_Credits2 = "Version "..PallyPower_Version
PallyPower_Credits3 = "Localisation Francaise par Gagou"
PallyPower_Credits4 = "Made for Resurrection of Nathrezim"
PallyPower_Credits5 = "Special Thanks: Falline, Indada, Pinch, Tir"
PallyPower_Credits6 = ""
-- Buff name, Class Name
PallyPower_CouldntFind = "Ne peut trouver une cible pour b\195\169n\195\169diction %s sur %s!"
-- Buff name, Class name, Person Name
PallyPower_Casting = "Lance b\195\169n\195\169diction %s sur %s (%s)"
PallyPower_ClassID = { };
PallyPower_ClassID[0] = "Guerrier";
PallyPower_ClassID[1] = "Voleur";
PallyPower_ClassID[2] = "Pr\195\170tre";
PallyPower_ClassID[3] = "Druide";
PallyPower_ClassID[4] = "Paladin";
PallyPower_ClassID[5] = "Chasseur";
PallyPower_ClassID[6] = "Mage";
PallyPower_ClassID[7] = "D\195\169moniste";
PallyPower_ClassID[8] = "Chamane";
--XML
PALLYPOWER_CLEAR = "Nettoyer";
PALLYPOWER_REFRESH = "Rafraichir";
end