vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1  
2 -- VERSION: 1.15.5
3  
4 -- We use local vars instead of tables because of concatenation reasons
5 -- during the definition of some of the variables with values from other
6 -- variables, which doesn't work well when both variables are inside of
7 -- the same table!
8  
9 -- If a variable/word exists more than once, we suffix the variable name
10 -- with '_LABEL' for the word that has a Upper First Character (UFC).
11  
12 -- Used http://www.google.com/translate_t for the initial translations.
13 -- Other players helped out to clean things up. You can see their names
14 -- down below in the various language sections.
15  
16  
17 function ASO_Assign_Default_Localization()
18  
19 -- DEFAULT TO ENGLISH! - enUS
20  
21 ASO_LOCSTR_TITLE = "Auto Shout Out"; -- v1.14.0
22  
23 -- Miscellaneous words
24 ASO_LOCSTR_LOADING = "Loading";
25 ASO_LOCSTR_TRUE = "true";
26 ASO_LOCSTR_FALSE = "false";
27 ASO_LOCSTR_CHARACTER = "Character"; -- v1.11.0
28 ASO_LOCSTR_REALM = "Realm"; -- v1.11.0
29  
30 ASO_LOCSTR_CONFIGS = "Configurations"; -- v1.11.0
31 ASO_LOCSTR_CONFIGS_ACTIVE = "Active"; -- v1.11.0
32 ASO_LOCSTR_CONFIGS_SOLO_LABEL = "Solo"; -- v1.11.0
33 ASO_LOCSTR_CONFIGS_PARTY_LABEL = "Party"; -- v1.11.0
34 ASO_LOCSTR_CONFIGS_RAID_LABEL = "Raid"; -- v1.11.0
35 ASO_LOCSTR_CONFIGS_SOLO = string.lower(ASO_LOCSTR_CONFIGS_SOLO_LABEL); -- v1.11.0
36 ASO_LOCSTR_CONFIGS_PARTY = string.lower(ASO_LOCSTR_CONFIGS_PARTY_LABEL); -- v1.11.0
37 ASO_LOCSTR_CONFIGS_RAID = string.lower(ASO_LOCSTR_CONFIGS_RAID_LABEL); -- v1.11.0
38 ASO_LOCSTR_CONFIGS_AUTOSWITCH = "Auto Switch"; -- v1.12.0
39  
40 ASO_LOCSTR_DEBUG = "debug";
41 ASO_LOCSTR_DEBUG_LABEL = "Debug";
42 ASO_LOCSTR_STATUS = "status";
43 ASO_LOCSTR_RESET = "reset"; -- v1.11.0
44 ASO_LOCSTR_WARNMSGS = "warnings"; -- v1.15.2
45  
46 ASO_LOCSTR_HEALTH = "health";
47 ASO_LOCSTR_LIFE = "life";
48 ASO_LOCSTR_MANA = "mana";
49 ASO_LOCSTR_ON = "on";
50 ASO_LOCSTR_OFF = "off";
51 ASO_LOCSTR_ALWAYS = "always";
52 ASO_LOCSTR_COMBAT = "combat";
53  
54 ASO_LOCSTR_CLOSE = "Close"; -- 1.7.0
55  
56 ASO_LOCSTR_HEALTH_LABEL = "Health";
57 ASO_LOCSTR_LIFE_LABEL = "Life";
58 ASO_LOCSTR_MANA_LABEL = "Mana";
59  
60 ASO_LOCSTR_PETHEALTH = "pethealth"; -- NO SPACE! -- 1.7.0
61 ASO_LOCSTR_PETHEALTH_LABEL = "Pet Health"; -- Space! -- 1.7.0
62  
63 ASO_LOCSTR_REZSTONE = "soulstone"; -- NO SPACE! -- 1.15.0
64 ASO_LOCSTR_REZSTONE_LABEL = "Soulstone"; -- Space! -- 1.15.0
65 ASO_LOCSTR_REZSTONE_WARNING = "You have a 'Soulstone Resurrection' buff, but "..ASO_LOCSTR_TITLE.." is not currently set to notify you when it wears off!"; -- 1.15.0
66  
67 ASO_LOCSTR_SET_NOTIFY_PERCENT2 = "notification % must be between";
68 ASO_LOCSTR_SET_NOTIFY_FREQUENCY2 = "notification frequency must be between";
69 ASO_LOCSTR_NOTIFY_DURING_DUEL_OFF = ASO_LOCSTR_TITLE .. " will not do notifications during a duel!"; -- v1.12.0
70  
71 ASO_LOCSTR_TABLE_INIT = "is being initialized with default settings."; -- v1.11.0
72 ASO_LOCSTR_CONFIRM_TABLE_INIT = "Are you sure that you want to reset your "..ASO_LOCSTR_TITLE.." settings?"; -- v1.11.0
73  
74 ASO_LOCSTR_TARGET_ERROR = "Unable to target"; -- v1.30.0
75 ASO_LOCSTR_CHARNAME_ERROR = "ERROR WHILE OBTAINING THE CHARACTER'S NAME!!!"; -- v1.13.3
76  
77 ASO_LOCSTR_GREETINGS = "loaded. Type '/aso' or '/autoshoutout' to change any settings.";
78  
79 ASO_LOCSTR_DEFAULT_MESSAGE_HEALTH = "I am injured!";
80 ASO_LOCSTR_DEFAULT_MESSAGE_LIFE = "I AM ABOUT TO DIE!";
81 ASO_LOCSTR_DEFAULT_MESSAGE_MANA = "Out of mana!";
82 ASO_LOCSTR_DEFAULT_MESSAGE_PETHEALTH= "My pet is injured!"; -- 1.7.0
83 ASO_LOCSTR_DEFAULT_MESSAGE_REZSTONE = "No 'Soulstone Resurrection' buff!"; -- 1.15.0
84  
85 -- DoEmote command words...
86 ASO_LOCSTR_DOEMOTE_HEALME = "healme"; -- v1.11.1
87 ASO_LOCSTR_DOEMOTE_HELPME = "helpme"; -- v1.11.1
88 ASO_LOCSTR_DOEMOTE_OOM = "oom"; -- v1.11.1
89  
90 ASO_LOCSTR_BANNER_DISPLAY_ERROR = "Unable to show a message in your banner display area!" -- 1.10.0
91  
92 -- Debug messages
93 ASO_LOCSTR_DEBUG_MSG2 = "type is 'pet' unit"; -- 1.7.0
94 ASO_LOCSTR_DEBUG_MSG3 = "type is 'player' unit"; -- 1.7.0
95 ASO_LOCSTR_DEBUG_MSG4 = "will receive the folloiwng message"; -- 1.7.0
96 ASO_LOCSTR_DEBUG_MSG5 = "Not ready to initialize yet!";
97 ASO_LOCSTR_DEBUG_MSG6 = "The character's name is";
98 ASO_LOCSTR_DEBUG_MSG7 = "registering with";
99 ASO_LOCSTR_DEBUG_MSG8 = "You're dead! Have a nice day.";
100 ASO_LOCSTR_DEBUG_MSG9 = "Non-Mana Class!";
101 ASO_LOCSTR_DEBUG_MSG10 = "Checking player's";
102 ASO_LOCSTR_DEBUG_MSG11 = "is low!";
103 ASO_LOCSTR_DEBUG_MSG12 = "is fine.";
104 ASO_LOCSTR_DEBUG_MSG13 = "Checking to see if Player is in combat...";
105 ASO_LOCSTR_DEBUG_MSG14 = "Unit IS in combat!";
106 ASO_LOCSTR_DEBUG_MSG15 = "Unit is NOT in combat!";
107 ASO_LOCSTR_DEBUG_MSG16 = "only in combat?";
108 ASO_LOCSTR_DEBUG_MSG17 = "frequency duration has not been met for notification";
109 ASO_LOCSTR_DEBUG_MSG18 = "check triggered!";
110 ASO_LOCSTR_DEBUG_MSG19 = "Auto Configuration Switching is ON!"; -- v1.12.0
111 ASO_LOCSTR_DEBUG_MSG20 = "Character is in a raid!"; -- v1.12.0
112 ASO_LOCSTR_DEBUG_MSG21 = "Switching to 'Raid' configuration!"; -- v1.12.0
113 ASO_LOCSTR_DEBUG_MSG22 = "Character is in a party!"; -- v1.12.0
114 ASO_LOCSTR_DEBUG_MSG23 = "Switching to 'Party' configuration!"; -- v1.12.0
115 ASO_LOCSTR_DEBUG_MSG24 = "Character is NOT in a party/raid!"; -- v1.12.0
116 ASO_LOCSTR_DEBUG_MSG25 = "Switching to 'Solo' configuration!"; -- v1.12.0
117  
118 ASO_LOCSTR_OUTPUT_MSG1 = ASO_LOCSTR_TITLE.." status output has been turned"; -- v1.11.0
119 ASO_LOCSTR_OUTPUT_MSG2 = ASO_LOCSTR_TITLE.." notifications have been turned"; -- v1.14.0
120 ASO_LOCSTR_OUTPUT_MSG3 = ASO_LOCSTR_TITLE.."\n\nAll notifications have been turned off!\nTurn back on to be able to change settings."; -- v1.14.0
121 ASO_LOCSTR_OUTPUT_MSG4 = ASO_LOCSTR_TITLE.." warning messages have been turned"; -- v1.15.2
122  
123 ASO_LOCSTR_COMBAT_MSG1 = ASO_LOCSTR_TITLE.." wants to do a notification for";
124 ASO_LOCSTR_COMBAT_MSG2 = "Type '/aso "..ASO_LOCSTR_STATUS.."' to turn off these messages."; -- v1.15.3
125  
126 ASO_LOCSTR_MYADDONS_DESCRIPTION = "Notifies others of your status"; -- Keep it short!
127  
128 -- THE BELOW CHANNEL NAMES *MUST* BE IN ALL UPPER CAPS OR ELSE ADD-ON WILL CONFUSE WITH CHARACTER NAMES!
129 ASO_LOCSTR_LOCAL = "LOCAL"; -- v1.9.0
130 ASO_LOCSTR_BANNER = "BANNER"; -- v1.10.0
131 ASO_LOCSTR_SAY = "SAY";
132 ASO_LOCSTR_PARTY = string.upper(ASO_LOCSTR_CONFIGS_PARTY_LABEL);
133 ASO_LOCSTR_RAID = string.upper(ASO_LOCSTR_CONFIGS_RAID_LABEL);
134 -- THE ABOVE CHANNEL NAMES *MUST* BE IN ALL UPPER CAPS OR ELSE ADD-ON WILL CONFUSE WITH CHARACTER NAMES!
135  
136 -- UI localizations...
137 ASO_LOCSTR_UI_Window_Title = ASO_LOCSTR_TITLE;
138 ASO_LOCSTR_UI_Event_List_Title = "Events";
139 ASO_LOCSTR_UI_NotifyPercentEditBoxLabel = "Notify Percentage: ";
140 ASO_LOCSTR_UI_NotifyFrequencyEditBox = "Notify Frequency:";
141 ASO_LOCSTR_UI_IsCombatOnlyCheckButtonLabel = "Notify Combat Only";
142 ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel = "Notify via Shouting";
143 ASO_LOCSTR_UI_IsMessagingEnabledCheckButtonLabel = "Notify via Messaging";
144 ASO_LOCSTR_UI_MessageTargetEditBoxLabel = "Target: ";
145 ASO_LOCSTR_UI_MessageMessageEditBoxLabel = "Message: ";
146 ASO_LOCSTR_UI_TargetChannelsButton = "Channels";
147 ASO_LOCSTR_UI_ConfigurationsDropDownLabel = "Active Configuration"; -- v1.11.0
148 ASO_LOCSTR_UI_AutoSwitchCheckButtonLabel = ASO_LOCSTR_CONFIGS_AUTOSWITCH; -- v1.12.0
149 ASO_LOCSTR_UI_IsNotifyDuringDuelCheckButtonLabel = "Notify During Duel"; -- v1.12.0
150  
151 ASO_LOCSTR_UI_TooltipText_ConfigurationsDropDown = -- v1.15.0
152 "A configuration is a grouping of settings\n" ..
153 "for all of the available event types. You\n" ..
154 "can select which configuration is active\n" ..
155 "by choosing it here. When you change\n" ..
156 "configurations, the settings below will\n" ..
157 "change (if different between the various\n" ..
158 "configurations). Whichever configuration\n" ..
159 "is active will determine which settings\n" ..
160 "are used for notifications.";
161  
162 ASO_LOCSTR_UI_TooltipText_AutoSwitchCheckButton = -- v1.15.0
163 "If checked, the '" .. ASO_LOCSTR_UI_ConfigurationsDropDownLabel .. "'\n" ..
164 "will change automatically, based on if\n" ..
165 "the player is in a group, a raid, or solo";
166  
167 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton1 = -- Health -- v1.15.0
168 "Notifications based on how much\n" ..
169 "'" .. ASO_LOCSTR_HEALTH_LABEL .. "' you have left. Uses the\n" ..
170 "/healme vocal emote (if you have\n" ..
171 "the '" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "' option\n" ..
172 "checked).";
173  
174 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton2 = -- Life -- v1.15.0
175 "Notifications based on how much\n" ..
176 "'" .. ASO_LOCSTR_HEALTH_LABEL .. "' you have left. Uses the\n" ..
177 "/helpme vocal emote (if you have\n" ..
178 "the '" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "' option\n" ..
179 "checked).";
180  
181 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton3 = -- Mana -- v1.15.0
182 "Notifications based on how much\n" ..
183 "'" .. ASO_LOCSTR_MANA_LABEL .. "' you have left. Uses the\n" ..
184 "/oom vocal emote (if you have\n" ..
185 "the '" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "' option\n" ..
186 "checked).";
187  
188 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton4 = -- Pet Health -- v1.15.0
189 "Notifications based on how much\n" ..
190 "'" .. ASO_LOCSTR_HEALTH_LABEL .. "' you pet has left. Does\n" ..
191 "not use an emote.";
192  
193 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton5 = -- Soulstone -- v1.15.0
194 "Notifications based on when a\n" ..
195 "'Soulstone Resurrection' buff\n" ..
196 "wears off. Does not use a vocal\n" ..
197 "emote. You will be warned if a\n" ..
198 "Warlock places the buff on you\n" ..
199 "but ASO is not set to notify you\n" ..
200 "when it wears off.";
201  
202 ASO_LOCSTR_UI_TooltipText_NotifyPercentEditBox = -- v1.15.0
203 "How low an event value has\n" ..
204 "to get before a notification\n" ..
205 "would be done";
206  
207 ASO_LOCSTR_UI_TooltipText_NotifyFrequencyEditBox = -- v1.15.0
208 "Minimum number of seconds\n" ..
209 "between notifications for the\n" ..
210 "selected event type";
211  
212 ASO_LOCSTR_UI_TooltipText_IsShoutEnabledCheckButton = -- v1.15.0
213 "If checked, vocal emote\n" ..
214 "notifications will be done\n" ..
215 "for the selected event";
216  
217 ASO_LOCSTR_UI_TooltipText_IsMessagingEnabledCheckButton = -- v1.15.0
218 "If checked text based message\n" ..
219 "notifications will be done for\n" ..
220 "the selected event";
221  
222 ASO_LOCSTR_UI_TooltipText_MessageTargetEditBox = -- v1.15.0
223 "Where text based message notifications\n" ..
224 "will go to. You can type in a player's\n" ..
225 "name, or use the '" .. ASO_LOCSTR_UI_TargetChannelsButton .. "' button to\n" ..
226 "select a chat or screen target area for\n" ..
227 "the notification message to go to.";
228  
229 ASO_LOCSTR_UI_TooltipText_TargetChannelsButton = -- v1.15.0
230 "Cycles through the available chat or\n" ..
231 "screen target areas that text based\n" ..
232 "message notifications will go to";
233  
234 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton = -- v1.15.0
235 "Any changes that you have\n" ..
236 "made will be saved when\n" ..
237 "you click on this button";
238  
239 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindow_Close_Button = -- v1.15.0
240 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton;
241  
242 ASO_LOCSTR_UI_TooltipText_MessageMessageEditBox = -- v1.11.0
243 "$HEALTH \n Current health points remaining\n\n" ..
244 "$HEALTHMAX \n Max possible health points\n\n" ..
245 "$HEALTHPERCENT \n Current health points percentage left\n\n" ..
246 "$MANA \n Current mana points remaining\n\n" ..
247 "$MANAMAX \n Max possible mana points\n\n" ..
248 "$MANAPERCENT \n Current mana points percentage left\n\n" ..
249 "$NAME \n Name of the unit that the notification is about" ;
250  
251 ASO_LOCSTR_UI_MainWindowSize_Width = 340; -- v1.11.1
252 ASO_LOCSTR_UI_MainWindowSize_Height = 325; -- v1.11.1
253 ASO_LOCSTR_UI_TitleBoxSize_Width = 255;
254 ASO_LOCSTR_UI_MessageMessageEditBoxSize_Width = 225; -- v1.11.1
255  
256 return;
257  
258 end
259  
260  
261 ---------------------
262 -- OTHER LANGUAGES...
263 ---------------------
264  
265 if (GetLocale() == "deDE") then -- deDE
266  
267 -- Thanks to jth (http://forums.curse-gaming.com/member.php?u=5486) for the German translations.
268 -- Thanks to Drazul (http://forums.curse-gaming.com/member.php?u=6717) for the German translations.
269  
270 ASO_LOCSTR_TITLE = "Automatische Mitteilungen"; -- v1.14.0
271  
272 -- Miscellaneous words
273 ASO_LOCSTR_LOADING = "Laden";
274 ASO_LOCSTR_TRUE = "richtig";
275 ASO_LOCSTR_FALSE = "falsch";
276 ASO_LOCSTR_CHARACTER = "Charakter"; -- v1.11.0
277 ASO_LOCSTR_REALM = "Realm"; -- v1.11.0
278  
279 ASO_LOCSTR_CONFIGS = "Konfigurations"; -- v1.11.0
280 ASO_LOCSTR_CONFIGS_ACTIVE = "Aktiv"; -- v1.11.0
281 ASO_LOCSTR_CONFIGS_SOLO_LABEL = "Solo"; -- v1.11.0
282 ASO_LOCSTR_CONFIGS_PARTY_LABEL = "Gruppe"; -- v1.11.0
283 ASO_LOCSTR_CONFIGS_RAID_LABEL = "Schlachtzug"; -- v1.11.0
284 ASO_LOCSTR_CONFIGS_SOLO = string.lower(ASO_LOCSTR_CONFIGS_SOLO_LABEL); -- v1.11.0
285 ASO_LOCSTR_CONFIGS_PARTY = string.lower(ASO_LOCSTR_CONFIGS_PARTY_LABEL); -- v1.11.0
286 ASO_LOCSTR_CONFIGS_RAID = string.lower(ASO_LOCSTR_CONFIGS_RAID_LABEL); -- v1.11.0
287 ASO_LOCSTR_CONFIGS_AUTOSWITCH = "Automat. wechseln"; -- v1.12.0 'Auto Switch'
288  
289 ASO_LOCSTR_DEBUG = "pr\195\188fen";
290 ASO_LOCSTR_DEBUG_LABEL = "Pr\195\188fen";
291 ASO_LOCSTR_STATUS = "status";
292 ASO_LOCSTR_RESET = "zur\195\188ckstellen"; -- v1.11.0
293 ASO_LOCSTR_WARNMSGS = "warnungen"; -- v1.15.2
294  
295 ASO_LOCSTR_HEALTH = "gesundheit";
296 ASO_LOCSTR_LIFE = "leben";
297 ASO_LOCSTR_MANA = "mana";
298 ASO_LOCSTR_ON = "an";
299 ASO_LOCSTR_OFF = "aus";
300 ASO_LOCSTR_ALWAYS = "immer";
301 ASO_LOCSTR_COMBAT = "kampf";
302  
303 ASO_LOCSTR_CLOSE = "Schlie\195\159\en"; -- 1.7.0
304  
305 ASO_LOCSTR_HEALTH_LABEL = "Gesundheit";
306 ASO_LOCSTR_LIFE_LABEL = "Leben";
307 ASO_LOCSTR_MANA_LABEL = "Mana";
308  
309 ASO_LOCSTR_PETHEALTH = "tier" .. ASO_LOCSTR_HEALTH; -- NO SPACE! -- 1.7.0
310 ASO_LOCSTR_PETHEALTH_LABEL = "Tier " .. ASO_LOCSTR_HEALTH_LABEL; -- Space! -- 1.7.0
311  
312 ASO_LOCSTR_REZSTONE = "seelenstein"; -- NO SPACE! -- 1.15.0
313 ASO_LOCSTR_REZSTONE_LABEL = "Seelenstein"; -- Space! -- 1.15.0
314 ASO_LOCSTR_REZSTONE_WARNING = "Ihr habt 'Seelenstein-Auferstehung' bekommen, aber " .. ASO_LOCSTR_TITLE .. " wurde nicht konfiguriert um eine Warnung auszugeben wenn der Buff ausl\195\164uft!"; -- 1.15.0
315  
316 ASO_LOCSTR_SET_NOTIFY_PERCENT2 = "mitteilung % mu\195\159 sein zwischen";
317 ASO_LOCSTR_SET_NOTIFY_FREQUENCY2 = "mitteilungsfrequenz mu\195\159 sein zwischen";
318 ASO_LOCSTR_NOTIFY_DURING_DUEL_OFF = ASO_LOCSTR_TITLE.." sendet w\195\164hrend eines Duells keine Nachrichten!"; -- v1.12.0
319  
320 ASO_LOCSTR_TABLE_INIT = "wird mit den Standard-Einstellungen geladen."; -- v1.11.0
321 ASO_LOCSTR_CONFIRM_TABLE_INIT = "Sollen die "..ASO_LOCSTR_TITLE.." Einstellungen zur\195\188ckgesetzt werden?"; -- v1.11.0
322  
323 ASO_LOCSTR_TARGET_ERROR = "Ziel kann nicht anvisiert werden"; -- v1.30.0
324  
325 ASO_LOCSTR_GREETINGS = "geladen. Benutze '/aso' oder '/autoshoutout' zum konfigurieren.";
326  
327 ASO_LOCSTR_DEFAULT_MESSAGE_HEALTH = "Ich werde angegriffen!";
328 ASO_LOCSTR_DEFAULT_MESSAGE_LIFE = "Helft mir! Ich sterbe!";
329 ASO_LOCSTR_DEFAULT_MESSAGE_MANA = "Ich habe fast kein Mana mehr!";
330 ASO_LOCSTR_DEFAULT_MESSAGE_PETHEALTH= "Mein Haustier wird verletzt!"; -- 1.7.0
331 ASO_LOCSTR_DEFAULT_MESSAGE_REZSTONE = "Kein 'Seelenstein-Auferstehung' Buff!"; -- 1.15.0
332  
333 -- DoEmote command words...
334 ASO_LOCSTR_DOEMOTE_HEALME = "healme"; -- "heilmich"; -- v1.11.1
335 ASO_LOCSTR_DOEMOTE_HELPME = "helpme"; -- "hilferufen"; -- v1.11.1
336 ASO_LOCSTR_DOEMOTE_OOM = "oom"; -- v1.11.1
337  
338 ASO_LOCSTR_BANNER_DISPLAY_ERROR = "Kann keine Nachrichten im oberen Bildschrimbereich anzeigen!" -- 1.10.0
339 ASO_LOCSTR_CHARNAME_ERROR = "FEHLER BEIM ERKENNEN DES CHARAKTERNAMEN!!!"; -- v1.13.3
340  
341 -- Debug messages
342 ASO_LOCSTR_DEBUG_MSG2 = "Ist vom Typ 'Tier' Einheit"; -- 1.7.0
343 ASO_LOCSTR_DEBUG_MSG3 = "Ist vom Typ 'Spieler' Einheit"; -- 1.7.0
344 ASO_LOCSTR_DEBUG_MSG4 = "empf\195\164ngt die folgende Nachricht"; -- 1.7.0
345 ASO_LOCSTR_DEBUG_MSG5 = "Noch nicht zum Initialisieren bereit!";
346 ASO_LOCSTR_DEBUG_MSG6 = "Der Name des Charakter ist";
347 ASO_LOCSTR_DEBUG_MSG7 = "registrieren mit";
348 ASO_LOCSTR_DEBUG_MSG8 = "Du bist tot!";
349 ASO_LOCSTR_DEBUG_MSG9 = "Keine Mana-Klasse!";
350 ASO_LOCSTR_DEBUG_MSG10 = "\195\188berpr\195\188fung";
351 ASO_LOCSTR_DEBUG_MSG11 = "ist niedrig!";
352 ASO_LOCSTR_DEBUG_MSG12 = "ist ok.";
353 ASO_LOCSTR_DEBUG_MSG13 = "\195\188berpr\195\188fung ob Spieler im Kampf ist...";
354 ASO_LOCSTR_DEBUG_MSG14 = "Spieler IST im Kampf!";
355 ASO_LOCSTR_DEBUG_MSG15 = "Spieler ist NICHT im Kampf.";
356 ASO_LOCSTR_DEBUG_MSG16 = "nur im Kampf?";
357 ASO_LOCSTR_DEBUG_MSG17 = "Frequenzdauer wurde nicht f\195\188r Mitteilung ermittelt";
358 ASO_LOCSTR_DEBUG_MSG18 = "\195\188berpr\195\188fung ausgel\195\182st!";
359 ASO_LOCSTR_DEBUG_MSG19 = "Automatische Konfigurationsauswahl ist AN!"; -- v1.12.0
360 ASO_LOCSTR_DEBUG_MSG20 = "Charakter ist in einem Schlachtzug!"; -- v1.12.0
361 ASO_LOCSTR_DEBUG_MSG21 = "Wechsle zu 'Schlachtzug' Konfiguration!"; -- v1.12.0
362 ASO_LOCSTR_DEBUG_MSG22 = "Charakter ist in einer Gruppe!"; -- v1.12.0
363 ASO_LOCSTR_DEBUG_MSG23 = "Wechsle zu 'Gruppe' Konfiguration!"; -- v1.12.0
364 ASO_LOCSTR_DEBUG_MSG24 = "Charakter ist NICHT in einer Gruppe/Schlachtzug!"; -- v1.12.0
365 ASO_LOCSTR_DEBUG_MSG25 = "Wechsle zu 'Solo' Konfiguration!"; -- v1.12.0
366  
367 ASO_LOCSTR_OUTPUT_MSG1 = ASO_LOCSTR_TITLE.." Statusmeldungen sind nun"; -- v1.11.0
368 ASO_LOCSTR_OUTPUT_MSG2 = ASO_LOCSTR_TITLE.." Mitteilungen sind nun"; -- v1.14.0
369 ASO_LOCSTR_OUTPUT_MSG3 = ASO_LOCSTR_TITLE.."\nAlle Mitteilungen sind nun ausgeschaltet!\nSchaltet ASO wieder ein um die Einstellungen ver\195\164ndern zu k\195\182nnen."; -- v1.14.0
370 ASO_LOCSTR_OUTPUT_MSG4 = ASO_LOCSTR_TITLE.." warnmeldungen sind gedreht worden"; -- v1.15.2
371  
372 ASO_LOCSTR_COMBAT_MSG1 = ASO_LOCSTR_TITLE.." m\195\182chte eine Mitteilung senden f\195\188r";
373 ASO_LOCSTR_COMBAT_MSG2 = "Art '/aso "..ASO_LOCSTR_STATUS.."' diese Anzeigen weg drehen."; -- v1.15.3
374  
375 ASO_LOCSTR_MYADDONS_DESCRIPTION = "Informiert \195\188ber " .. ASO_LOCSTR_HEALTH_LABEL .. "/" .. ASO_LOCSTR_MANA_LABEL; -- Halten Sie es kurz!
376  
377 -- DIE UNTEN AUFGELISTETEN CHATKANAELE MUESSEN IN GROSSBUHSTABEN SEIN - SONST WIRD DAS ADDON SIE MIT CHARAKTERNAMEN VERWECHSELN!
378 ASO_LOCSTR_LOCAL = "LOKAL"; -- v1.9.0
379 ASO_LOCSTR_BANNER = "BANNER"; -- v1.10.0
380 ASO_LOCSTR_SAY = "SAGEN";
381 ASO_LOCSTR_PARTY = string.upper(ASO_LOCSTR_CONFIGS_PARTY_LABEL);
382 ASO_LOCSTR_RAID = string.upper(ASO_LOCSTR_CONFIGS_RAID_LABEL);
383 -- DIE OBEN AUFGELISTETEN CHATKANAELE MUESSEN IN GROSSBUHSTABEN SEIN - SONST WIRD DAS ADDON SIE MIT CHARAKTERNAMEN VERWECHSELN!
384  
385 -- UI localizations...
386 ASO_LOCSTR_UI_Window_Title = ASO_LOCSTR_TITLE;
387 ASO_LOCSTR_UI_Event_List_Title = "Typ";
388 ASO_LOCSTR_UI_NotifyPercentEditBoxLabel = "Mitteilung ab %: ";
389 ASO_LOCSTR_UI_NotifyFrequencyEditBox = "Mitteilung Frequenz: ";
390 ASO_LOCSTR_UI_IsCombatOnlyCheckButtonLabel = "Nur im Kampf";
391 ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel = "Mitteilungen per Emote";
392 ASO_LOCSTR_UI_IsMessagingEnabledCheckButtonLabel = "Mitteilungen per Nachricht";
393 ASO_LOCSTR_UI_MessageTargetEditBoxLabel = "Ziel:";
394 ASO_LOCSTR_UI_MessageMessageEditBoxLabel = "Nachricht:";
395 ASO_LOCSTR_UI_TargetChannelsButton = "Chatkan\195\164le";
396 ASO_LOCSTR_UI_ConfigurationsDropDownLabel = "Aktive Konfiguration"; -- v1.11.0
397 ASO_LOCSTR_UI_AutoSwitchCheckButtonLabel = ASO_LOCSTR_CONFIGS_AUTOSWITCH; -- v1.12.0
398 ASO_LOCSTR_UI_IsNotifyDuringDuelCheckButtonLabel = "Im Duell senden"; -- v1.12.0
399  
400 ASO_LOCSTR_UI_TooltipText_ConfigurationsDropDown = -- v1.15.0
401 "Ein Konfigurationstyp enth\195\164lt alle Einstellungen,\n" ..
402 "die f\195\188r diesen Typ gemacht werden k\195\182nnen. Man\n" ..
403 "kann die Typen hier einstellen, und somit die\n" ..
404 "aktive Konfiguration \195\164ndern.";
405  
406 ASO_LOCSTR_UI_TooltipText_AutoSwitchCheckButton = -- v1.15.0
407 "Wenn diese Option aktiviert ist, wird die\n" ..
408 "'" .. ASO_LOCSTR_UI_ConfigurationsDropDownLabel .. "' automatisch\n" ..
409 "gewechselt, wenn ihr in einer Gruppe,\n" ..
410 "einem Schlachtzug oder Solo unterwegs\n" ..
411 "seid.";
412  
413 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton1 = -- Health -- v1.15.0
414 "Mitteilungen basierend auf\n" ..
415 "der verbleibenden '" .. ASO_LOCSTR_HEALTH_LABEL .. "'\n" ..
416 "die du noch hast. Benutzt das\n" ..
417 "/heilmich-Sprachemote (wenn die\n" ..
418 "Option'" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "'\n" ..
419 "aktiviert ist).";
420  
421 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton2 = -- Life -- v1.15.0
422 "Mitteilungen basierend auf\n" ..
423 "der verbleibenden '" .. ASO_LOCSTR_HEALTH_LABEL .. "'\n" ..
424 "die du noch hast. Benutzt das\n" ..
425 "/hilferufen-Sprachemote (wenn die\n" ..
426 "Option'" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "'\n" ..
427 "aktiviert ist).";
428  
429 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton3 = -- Mana -- v1.15.0
430 "Mitteilungen basierend auf\n" ..
431 "der verbleibenden '" .. ASO_LOCSTR_MANA_LABEL .. "'\n" ..
432 "die du noch hast. Benutzt das\n" ..
433 "/oom-Sprachemote (wenn die\n" ..
434 "Option'" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "'\n" ..
435 "aktiviert ist).";
436  
437 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton4 = -- Pet Health -- v1.15.0
438 "Mitteilungen basierend auf der \n" ..
439 "verbleibenden '" .. ASO_LOCSTR_HEALTH_LABEL .. "'\n" ..
440 "deines Tiers. Benutzt kein\n" ..
441 "Sprachemote";
442  
443 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton5 = -- Soulstone -- v1.15.0
444 "Mitteilungen, wenn ein\n" ..
445 "'Seelenstein Wiederbelebung'\n" ..
446 "-Buff ausl\195\164uft. Benutzt kein\n" ..
447 "Sprachemote. ASO gibt eine\n" ..
448 "Warnung aus, wenn du diesen Buff\n" ..
449 "bekommst, die Benachrichtigung\n" ..
450 "aber nicht eingeschaltet ist.";
451  
452 ASO_LOCSTR_UI_TooltipText_NotifyPercentEditBox = -- v1.15.0
453 "Der Wert an verbleibender\n" ..
454 ASO_LOCSTR_MANA_LABEL.."/"..ASO_LOCSTR_HEALTH_LABEL.." in Prozent,\n" ..
455 "ab dem ASO Mitteilungen\n" ..
456 "senden soll";
457  
458 ASO_LOCSTR_UI_TooltipText_NotifyFrequencyEditBox = -- v1.15.0
459 "Wieviele Sekunden sollen\n" ..
460 "mindestens zwischen zwei\n" ..
461 "Mitteilungen des Event-Typs\n" ..
462 "vergehen.";
463  
464 ASO_LOCSTR_UI_TooltipText_IsShoutEnabledCheckButton = -- v1.15.0
465 "Wenn diese Option aktiviert\n" ..
466 "ist, wird die Mitteilung per\n" ..
467 "Sprachemote gemacht";
468  
469 ASO_LOCSTR_UI_TooltipText_IsMessagingEnabledCheckButton = -- v1.15.0
470 "Wenn diese Option aktiviert\n" ..
471 "ist, wird die Mitteilung per\n" ..
472 "Textnachricht gemacht";
473  
474 ASO_LOCSTR_UI_TooltipText_MessageTargetEditBox = -- v1.15.0
475 "Hier wird das Ziel der Textnachrichten\n" ..
476 "eingegeben. Man kann den Namen\n" ..
477 "eines Spielers eingeben, oder den\n" ..
478 "Knopf '" .. ASO_LOCSTR_UI_TargetChannelsButton .. "' benutzen, um die\n" ..
479 "Nachricht in verschiedene " .. ASO_LOCSTR_UI_TargetChannelsButton .. "\n" ..
480 "zu schreiben.";
481  
482 ASO_LOCSTR_UI_TooltipText_TargetChannelsButton = -- v1.15.0
483 "W\195\164hlt die verschiedenen\n" ..
484 ASO_LOCSTR_UI_TargetChannelsButton .. " aus";
485  
486 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton = -- v1.15.0
487 "Alle \195\132nderungen werden\n" ..
488 "beim Schlie\195\159en gesichert";
489  
490 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindow_Close_Button = -- v1.15.0
491 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton;
492  
493 ASO_LOCSTR_UI_TooltipText_MessageMessageEditBox = -- v1.11.0
494 "Die Textnachricht, die in die " .. ASO_LOCSTR_UI_TargetChannelsButton .. "\n" ..
495 "augegeben wird. Folgende Schl\195\188sselw\195\182rter\n" ..
496 "k\195\182nnen dabei verwendet werden:\n\n" ..
497 "$HEALTH \n Verbleibende Gesundheitspunkte\n\n" ..
498 "$HEALTHMAX \n Maximale Gesundheitspunkte\n\n" ..
499 "$HEALTHPERCENT \n Verbleibende Gesundheit in Prozent\n\n" ..
500 "$MANA \n Verbleibende Manapunkte\n\n" ..
501 "$MANAMAX \n Maximale Manapunkte\n\n" ..
502 "$MANAPERCENT \n Verbleibendes Mana in Prozent\n\n" ..
503 "$NAME \n Der Name vom Charakter bzw. Tier" ;
504  
505 ASO_LOCSTR_UI_MainWindowSize_Width = 360; -- v1.11.1
506 ASO_LOCSTR_UI_MainWindowSize_Height = 325; -- v1.11.1
507 ASO_LOCSTR_UI_TitleBoxSize_Width = 410;
508 ASO_LOCSTR_UI_MessageMessageEditBoxSize_Width = 225; -- v1.11.1
509  
510 return;
511  
512  
513 elseif (GetLocale() == "frFR") then -- frFR
514  
515 -- Thanks to Methos (http://forums.curse-gaming.com/member.php?u=11256) for the French translations.
516  
517 ASO_LOCSTR_TITLE = "Pousser un Cri Automatiquement"; -- Want 'Auto Shout Out' not 'Auto Shout' (different add-on) -- v1.14.0
518  
519 -- Miscellaneous words
520 ASO_LOCSTR_LOADING = "Chargement";
521 ASO_LOCSTR_TRUE = "vrai";
522 ASO_LOCSTR_FALSE = "faux";
523 ASO_LOCSTR_CHARACTER = "Personnage"; -- v1.11.0
524 ASO_LOCSTR_REALM = "Royaume"; -- v1.11.0
525  
526 ASO_LOCSTR_CONFIGS = "Configurations"; -- v1.11.0 Configurez ?
527 ASO_LOCSTR_CONFIGS_ACTIVE = "Actif"; -- v1.11.0
528 ASO_LOCSTR_CONFIGS_SOLO_LABEL = "Solo"; -- v1.11.0
529 ASO_LOCSTR_CONFIGS_PARTY_LABEL = "Groupe" -- v1.11.0
530 ASO_LOCSTR_CONFIGS_RAID_LABEL = "Raid"; -- v1.11.0
531 ASO_LOCSTR_CONFIGS_SOLO = string.lower(ASO_LOCSTR_CONFIGS_SOLO_LABEL); -- v1.11.0
532 ASO_LOCSTR_CONFIGS_PARTY = string.lower(ASO_LOCSTR_CONFIGS_PARTY_LABEL); -- v1.11.0
533 ASO_LOCSTR_CONFIGS_RAID = string.lower(ASO_LOCSTR_CONFIGS_RAID_LABEL); -- v1.11.0
534 ASO_LOCSTR_CONFIGS_AUTOSWITCH = "Commuter Automatiquement"; -- v1.12.0 'Auto Switch'
535  
536 ASO_LOCSTR_DEBUG = "corrige";
537 ASO_LOCSTR_DEBUG_LABEL = "Corrige";
538 ASO_LOCSTR_STATUS = "statut";
539 ASO_LOCSTR_RESET = "recharger"; -- v1.11.0
540 ASO_LOCSTR_WARNMSGS = "avertissements"; -- v1.15.2
541  
542 ASO_LOCSTR_HEALTH = "sant\195\169";
543 ASO_LOCSTR_LIFE = "vie";
544 ASO_LOCSTR_MANA = "mana";
545 ASO_LOCSTR_ON = "activ\195\169";
546 ASO_LOCSTR_OFF = "d\195\169sactiv\195\169";
547 ASO_LOCSTR_ALWAYS = "toujours";
548 ASO_LOCSTR_COMBAT = "combat";
549  
550 ASO_LOCSTR_CLOSE = "Fermer"; -- 1.7.0
551  
552 ASO_LOCSTR_HEALTH_LABEL = "Sant\195\169";
553 ASO_LOCSTR_LIFE_LABEL = "Vie";
554 ASO_LOCSTR_MANA_LABEL = "Mana";
555  
556 ASO_LOCSTR_PETHEALTH = "familier" .. ASO_LOCSTR_HEALTH; -- PAS D'ESPACE ! -- 1.7.0
557 ASO_LOCSTR_PETHEALTH_LABEL = ASO_LOCSTR_HEALTH_LABEL .. " du Familier "; -- Espace ! -- 1.7.0
558  
559 ASO_LOCSTR_REZSTONE = "pierred'\195\162me"; -- NO SPACE! -- 1.15.0
560 ASO_LOCSTR_REZSTONE_LABEL = "Pierre d'\195\162me"; -- Space! -- 1.15.0
561 ASO_LOCSTR_REZSTONE_WARNING = "Vous aveze une 'Pierre de r\195\169surrection', mais "..ASO_LOCSTR_TITLE.." n'est pas configur\195\169 pour vous signaler quand elle n'est plus active !"; -- 1.15.0
562  
563 -- DoEmote command words...
564 ASO_LOCSTR_DOEMOTE_HEALME = "healme"; -- "soin"; -- v1.11.1
565 ASO_LOCSTR_DOEMOTE_HELPME = "helpme"; -- "aidemoi"; -- v1.11.1
566 ASO_LOCSTR_DOEMOTE_OOM = "oom"; -- "pdm"; -- v1.11.1
567  
568 ASO_LOCSTR_SET_NOTIFY_PERCENT2 = "le % pour l'avertissement doit \195\170tre entre";
569 ASO_LOCSTR_SET_NOTIFY_FREQUENCY2 = "la fr\195\169quence des avertissements doit \195\170tre entre";
570 ASO_LOCSTR_NOTIFY_DURING_DUEL_OFF = ASO_LOCSTR_TITLE.." ne fera pas d'avertissements pendant un duel"; -- v1.12.0
571  
572 ASO_LOCSTR_TABLE_INIT = "a \195\169t\195\169 r\195\169initialis\195\169 avec les options par d\195\169faut."; -- v1.11.0
573 ASO_LOCSTR_CONFIRM_TABLE_INIT = "\195\138tes-vous s\195\187r de vouloir remettre \195\160 z\195\169ro votre configuration d'"..ASO_LOCSTR_TITLE.." ?"; -- v1.11.0
574  
575 ASO_LOCSTR_TARGET_ERROR = "Impossible de viser"; -- v1.30.0
576  
577 ASO_LOCSTR_GREETINGS = "charg\195\169. Ecrivez '/aso' or '/autoshoutout' pour changer la configuration.";
578  
579 ASO_LOCSTR_DEFAULT_MESSAGE_HEALTH = "Je suis bless\195\169 !";
580 ASO_LOCSTR_DEFAULT_MESSAGE_LIFE = "JE VAIS MOURIR !";
581 ASO_LOCSTR_DEFAULT_MESSAGE_MANA = "Je n'ai plus de mana !";
582 ASO_LOCSTR_DEFAULT_MESSAGE_PETHEALTH= "Mon familier est bless\195\169 !"; -- 1.7.0
583 ASO_LOCSTR_DEFAULT_MESSAGE_REZSTONE = "Pas de buff 'Pierre de R\195\169surrection'!"; -- 1.15.0
584  
585 ASO_LOCSTR_BANNER_DISPLAY_ERROR = "Incapable de montrer un message dans votre zone de visualisation de banni\195\168re!" -- 1.10.0
586 ASO_LOCSTR_CHARNAME_ERROR = "ERREUR EN OBTENANT LE NOM DU PERSONNAGE !!!"; -- v1.13.3
587  
588 -- Debug messages
589 ASO_LOCSTR_DEBUG_MSG2 = "le type est un 'familier'"; -- 1.7.0
590 ASO_LOCSTR_DEBUG_MSG3 = "le type est un 'joueur'"; -- 1.7.0
591 ASO_LOCSTR_DEBUG_MSG4 = "recevra le message suivant"; -- 1.7.0
592 ASO_LOCSTR_DEBUG_MSG5 = "n'est pas encore pr\195\170t \195\160 initialiser !";
593 ASO_LOCSTR_DEBUG_MSG6 = "Le nom du personnage est";
594 ASO_LOCSTR_DEBUG_MSG7 = "inscription \195\160";
595 ASO_LOCSTR_DEBUG_MSG8 = "Vous \195\170tes mort ! Passez une bonne journ\195\169e.";
596 ASO_LOCSTR_DEBUG_MSG9 = "Classe sans Mana !";
597 ASO_LOCSTR_DEBUG_MSG10 = "V\195\169rification du joueur";
598 ASO_LOCSTR_DEBUG_MSG11 = "est faible !";
599 ASO_LOCSTR_DEBUG_MSG12 = "est bonne.";
600 ASO_LOCSTR_DEBUG_MSG13 = "V\195\169rification pour voir si le joueur est en train de combattre...";
601 ASO_LOCSTR_DEBUG_MSG14 = "Le joueur COMBAT !";
602 ASO_LOCSTR_DEBUG_MSG15 = "Le joueur ne combat pas !";
603 ASO_LOCSTR_DEBUG_MSG16 = "seulement pendant le combat ?";
604 ASO_LOCSTR_DEBUG_MSG17 = "la dur\195\169e de fr\195\169quence n'a pas \195\169t\195\169 atteinte pour l'avertissement";
605 ASO_LOCSTR_DEBUG_MSG18 = "contr\195\180le activ\195\169 !";
606 ASO_LOCSTR_DEBUG_MSG19 = "La commutation automatique de la configuration est activ\195\160!"; -- v1.12.0***
607 ASO_LOCSTR_DEBUG_MSG20 = "Le personnage est dans un raid!"; -- v1.12.0
608 ASO_LOCSTR_DEBUG_MSG21 = "Changement de la configuration de 'raid'!"; -- v1.12.0
609 ASO_LOCSTR_DEBUG_MSG22 = "Le personnage est dans un groupe!"; -- v1.12.0
610 ASO_LOCSTR_DEBUG_MSG23 = "Changement de la configuration de 'groupe'!"; -- v1.12.0
611 ASO_LOCSTR_DEBUG_MSG24 = "Le personnage n'est pas dans un groupe/raid!"; -- v1.12.0
612 ASO_LOCSTR_DEBUG_MSG25 = "Changement de la configuration 'solo'!"; -- v1.12.0
613  
614 ASO_LOCSTR_OUTPUT_MSG1 = "Le statut de "..ASO_LOCSTR_TITLE..", pendant un combat, a \195\169t\195\169 bascul\195\169 en"; -- v1.11.0
615 ASO_LOCSTR_OUTPUT_MSG2 = "Les avertissements de "..ASO_LOCSTR_TITLE.." ont \195\169t\195\169 bascul\195\169s en"; -- v1.14.0
616 ASO_LOCSTR_OUTPUT_MSG3 = ASO_LOCSTR_TITLE.."\nTous les avis ont \195\169t\195\169 arr\195\170t\195\169s!\nRevenez dessus pour pouvoir changer des arrangements."; -- v1.14.0
617 ASO_LOCSTR_OUTPUT_MSG4 = ASO_LOCSTR_TITLE.." des messages d'avertissement ont \195\169t\195\169 tourn\195\169s"; -- v1.15.2
618  
619 ASO_LOCSTR_COMBAT_MSG1 = ASO_LOCSTR_TITLE.." veut avertir pour";
620 ASO_LOCSTR_COMBAT_MSG2 = "Type '/aso "..ASO_LOCSTR_STATUS.."' pour arr\195\170ter ces messages."; -- v1.15.3
621  
622 ASO_LOCSTR_MYADDONS_DESCRIPTION = "Informe les autres de votre niveau de vie/mana"; -- Maintenez-le court!
623  
624 -- CI-DESSOUS LES NOMS DE CANAUX DOIVENT ETRE EN MAJUSCULES SINON L'ADD-ON LES CONFONDRA AVEC DES NOMS DE PERSONNAGES !***
625 ASO_LOCSTR_LOCAL = "LOCAL"; -- v1.9.0
626 ASO_LOCSTR_BANNER = "BANNI\195\136RE"; -- v1.10.0
627 ASO_LOCSTR_SAY = "DIRE";
628 ASO_LOCSTR_PARTY = string.upper(ASO_LOCSTR_CONFIGS_PARTY_LABEL);
629 ASO_LOCSTR_RAID = string.upper(ASO_LOCSTR_CONFIGS_RAID_LABEL);
630 -- CI-DESSUS LES NOMS DE CANAUX DOIVENT ETRE EN MAJUSCULES SINON L'ADD-ON LES CONFONDRA AVEC DES NOMS DE PERSONNAGES !***
631  
632 -- UI localizations...
633 ASO_LOCSTR_UI_Window_Title = ASO_LOCSTR_TITLE;
634 -- Yes I know what you mean but the difference between shout and sout out in french is hard to tell
635 -- I don't realy like the way I've trasltated it. Maybe the translation is not short enough
636 ASO_LOCSTR_UI_Event_List_Title = "\195\137v\195\169nements";
637 ASO_LOCSTR_UI_NotifyPercentEditBoxLabel = "Pourcentage pour avertir: ";
638 ASO_LOCSTR_UI_NotifyFrequencyEditBox = "Fr\195\169quence des avertissements:"; -- "Fr\195\169quence pour avertir:";
639 ASO_LOCSTR_UI_IsCombatOnlyCheckButtonLabel = "En combat seulement";
640 ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel = "Avertir par cris";
641 ASO_LOCSTR_UI_IsMessagingEnabledCheckButtonLabel = "Avertir par messages";
642 ASO_LOCSTR_UI_MessageTargetEditBoxLabel = "Cible: ";
643 ASO_LOCSTR_UI_MessageMessageEditBoxLabel = "Message: ";
644 ASO_LOCSTR_UI_TargetChannelsButton = "Canaux";
645 ASO_LOCSTR_UI_ConfigurationsDropDownLabel = "Configuration Active"; -- v1.11.0
646 ASO_LOCSTR_UI_AutoSwitchCheckButtonLabel = ASO_LOCSTR_CONFIGS_AUTOSWITCH; -- v1.12.0
647 ASO_LOCSTR_UI_IsNotifyDuringDuelCheckButtonLabel = "Avertir pendant duel"; -- v1.12.0
648  
649 ASO_LOCSTR_UI_TooltipText_ConfigurationsDropDown = -- v1.15.0
650 "Une configuration est un groupe de\n" ..
651 "paramettres pour tous les types\n" ..
652 "d'\195\169v\195\169nements possibles. Vous pouvez\n" ..
653 "s\195\169lectionner la configuration active en\n" ..
654 "la choisissant ici. Quand vous changez de\n"..
655 "configuration, les paramettres ci-dessous\n" ..
656 "vont changer (s'ils sont diff\195\169rents pour\n" ..
657 "les configurations vari\195\169es). Quelque soit\n" ..
658 "la configuration active, elle d\195\169terminera\n" ..
659 "quels paramettre utiliser pour avertir.";
660  
661 ASO_LOCSTR_UI_TooltipText_AutoSwitchCheckButton = -- v1.15.0
662 "Si s\195\169lectionn\195\169, la '" .. ASO_LOCSTR_UI_ConfigurationsDropDownLabel .. "'\n" ..
663 "changera automatiquement, selon si le\n" ..
664 "joueur est dans un groupe, un raid, ou solo";
665  
666 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton1 = -- Health -- v1.15.0
667 "Avertissement bas\195\169 sur votre\n" ..
668 "\195\169tat de '" .. ASO_LOCSTR_HEALTH_LABEL .. "'. Utilise l'\195\169mote\n" ..
669 "vocale /soin (si vous avez activ\195\169\n" ..
670 "l'option '" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "')";
671  
672 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton2 = -- Life -- v1.15.0
673 "Avertissement bas\195\169 sur la '" .. ASO_LOCSTR_HEALTH_LABEL .. "'\n" ..
674 "qu'il vous reste. Utilise l'\195\169mote\n" ..
675 "vocale /aidemoi (si vous avez\n" ..
676 "activ\195\169 l'option '" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "')";
677  
678 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton3 = -- Mana -- v1.15.0
679 "Avertissement bas\195\169 sur la\n" ..
680 "'" .. ASO_LOCSTR_MANA_LABEL .. "' qu'il vous reste.\n" ..
681 "Utilise l'\195\169mote vocale /soin\n" ..
682 "(si vous avez activ\195\169 l'option\n" ..
683 "'" .. ASO_LOCSTR_UI_IsShoutEnabledCheckButtonLabel .. "')";
684  
685 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton4 = -- Pet Health -- v1.15.0
686 "Avertissement bas\195\169 sur la\n" ..
687 "'" .. ASO_LOCSTR_HEALTH_LABEL .. "' qu'il reste \195\160 votre \n" ..
688 "familier. N'utilise pas\n" ..
689 "d'emote.";
690  
691 ASO_LOCSTR_UI_TooltipText_EventList_GlobalButton5 = -- Soulstone -- v1.15.0
692 "Avertissement bas\195\169 sur quand\n" ..
693 "le buff 'Pierre de r\195\169surrection'\n" ..
694 "n'est plus actif. N'utilise pas\n" ..
695 "d'emote vocale. Vous serez\n" ..
696 "averti si un d\195\169moniste place le\n" ..
697 "buff sur vous mais ASO n'est\n" ..
698 "pas configur\195\169 pour vous signaler\n" ..
699 "quand il n'est plus actif.";
700  
701 ASO_LOCSTR_UI_TooltipText_NotifyPercentEditBox = -- v1.15.0
702 "La valeur que doit atteindre\n" ..
703 "un \195\169v\195\169nement avant qu'un\n" ..
704 "avertissement soit fait";
705  
706 ASO_LOCSTR_UI_TooltipText_NotifyFrequencyEditBox = -- v1.15.0
707 "Nombre minimum de secondes\n" ..
708 "entre les avertissemenst pour\n" ..
709 "l'\195\169v\195\169nement s\195\169lectionn\195\169";
710  
711 ASO_LOCSTR_UI_TooltipText_IsShoutEnabledCheckButton = -- v1.15.0
712 "Si coch\195\169, les avertissements\n" ..
713 "par emote vocale seront effectu\195\169s\n" ..
714 "pour l'\195\169v\195\169nement s\195\169lectionn\195\169.";
715  
716 ASO_LOCSTR_UI_TooltipText_IsMessagingEnabledCheckButton = -- v1.15.0
717 "Si coch\195\169, les messages\n" ..
718 "d'avertissement seront effectu\195\169s\n" ..
719 "pour l'\195\169v\195\169nement s\195\169lectionn\195\169.";
720  
721 ASO_LOCSTR_UI_TooltipText_MessageTargetEditBox = -- v1.15.0
722 "L'endroit o\195\185 le texte du message\n" ..
723 "d'avertissement sera affich\195\169. Vous\n" ..
724 "pouvez inscrire le nom d'un joueur,\n" ..
725 "ou utiliser le bouton des '" .. ASO_LOCSTR_UI_TargetChannelsButton .. "'\n" ..
726 "pour s\195\169lectionner un diaglogue ou\n" ..
727 "une zone de l'\195\169cran o\195\185 sera affich\195\169\n" ..
728 "le message d'avertissement.";
729  
730 ASO_LOCSTR_UI_TooltipText_TargetChannelsButton = -- v1.15.0
731 "permutte entre les diff\195\169rents\n" ..
732 "emplacement de l'\195\169cran o\195\185 le\n" ..
733 "texte du message d'avertisse-\n" ..
734 "ment sera affich\195\169";
735  
736 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton = -- v1.15.0
737 "Tous les changements\n" ..
738 "que vous avez fait seront\n" ..
739 "sauvegard\195\169s lorsque vous\n" ..
740 "cliquez sur ce bouton";
741  
742 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindow_Close_Button = -- v1.15.0
743 ASO_LOCSTR_UI_TooltipText_AutoShoutOutWindowCloseButton;
744  
745 ASO_LOCSTR_UI_TooltipText_MessageMessageEditBox = -- v1.11.0
746 "$HEALTH \n Points de vie restant actuellement\n\n" ..
747 "$HEALTHMAX \n Points de vie maximum possibles\n\n" ..
748 "$HEALTHPERCENT \n Pourcentage de points de vie restant actuellement\n\n" ..
749 "$MANA \n Points de mana restant actuellement\n\n" ..
750 "$MANAMAX \n Points de mana maximum possibles\n\n" ..
751 "$MANAPERCENT \n Pourcentage de points de mana restant actuellement\n\n" ..
752 "$NAME \n Nom de l'unit\195\169 concern\195\169e par l'avertissement" ;
753  
754 ASO_LOCSTR_UI_MainWindowSize_Width = 415; -- v1.11.1
755 ASO_LOCSTR_UI_MainWindowSize_Height = 325; -- v1.11.1
756 ASO_LOCSTR_UI_TitleBoxSize_Width = 490;
757 ASO_LOCSTR_UI_MessageMessageEditBoxSize_Width = 300; -- v1.11.1
758  
759 return;
760  
761  
762 elseif (GetLocale() == "koKR") then -- "koKR"
763  
764 -- TBD
765 ASO_Assign_Default_Localization();
766  
767 else
768  
769 ASO_Assign_Default_Localization();
770  
771 end
772  
773