vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- *
2 -- * ENGLISH (DEFAULT)
3 -- *
4  
5 -- The next 6 lines define the names of the pets abilities. The localization of these settings
6 -- into the clients language are a "must" to use the basic functions of SmartPet.
7  
8 SMARTPET_ACTIONS_GROWL = "Growl";
9 SMARTPET_ACTIONS_COWER = "Cower";
10 SMARTPET_ACTIONS_CLAW = "Claw";
11 SMARTPET_ACTIONS_BITE = "Bite";
12 SMARTPET_ACTIONS_DASH = "Dash";
13 SMARTPET_ACTIONS_DIVE = "Dive";
14 SMARTPET_SCATTERSHOT ="Scatter Shot";
15  
16 -- Name for the follow icon, possibly does not need to be translated as it is a global id
17 SMARTPET_ACTION_NOCHASE = "PET_ACTION_FOLLOW";
18  
19 -- The next line defines the text that is used by SmartPet to determine if the opponent flees.
20 -- The localization of this text into the clients language is a "must" for using the anti-chasing
21 -- functions of SmartPet.
22  
23 SMARTPET_SEARCH_RUNAWAY = "attempts to run away in fear";
24  
25 -- The lines below are normal text and not necessary for SmartPets functionality. You can
26 -- translate them to be displayed in your clients language.
27  
28 -- KeyBinding Lables
29 SMARTPET_BINDING_NAME_TOGGLETAUNT = "Toggle Management Between Growl/Cower";
30 SMARTPET_BINDING_NAME_CHASETOGGLE = "Toggle No Chase Option On/Off";
31  
32 -- Slash Commands
33 SMARTPET_HELP = "help";
34 SMARTPET_ENABLE = "enable";
35 SMARTPET_DISABLE = "disable";
36 SMARTPET_TAUNTMAN = "tauntman";
37 SMARTPET_SMARTFOCUS = "smartfocus";
38 SMARTPET_ON = "on";
39 SMARTPET_OFF = "off";
40 SMARTPET_AUTOWARN = "autowarn";
41 SMARTPET_WARNHEALTH = "warnhealth";
42 SMARTPET_AUTOCOWER = "autocower";
43 SMARTPET_COWERHEALTH = "cowerhealth";
44 SMARTPET_CHANNEL = "channel";
45 SMARTPET_NOCHASE = "nochase";
46 SMARTPET_SHOWDEBUG = "showdebug";
47 SMARTPET_TOOLTIPS = "tooltips";
48  
49  
50 -- Loading strings
51 SMARTPET_VERSION_RUNNING = "Version %v loaded: Type /smartpet or /sp for more information."; -- %v = Version number
52 SMARTPET_VERSION_CHANGED = "Version changed, resetting all variables to default.";
53 SMARTPET_ONLY_FOR_HUNTER = "This AddOn is for Hunter pets only.";
54 SMARTPET_WARLOCK_MEMO = "Limited Intigration for Warlocks."
55  
56 -- Pet messages
57 SMARTPET_PET_NEEDS_HEALING = "%n needs healing! (%h% Health)"; -- %n = Pet name | %h = Pet health
58 SMARTPET_PET_BREAKS_COMBAT = "%n breaking off from combat!"; -- %n = Pet name
59  
60 -- Tooltips
61 SMARTPET_TOOLTIP_MANAGEMENT = "Management";
62 SMARTPET_TOOLTIP_AUTOCOWER = "Because AutoCower is enabled SmartPet\nwill enable Cower if your pets health\ndrops below %h%. If Growl is enabled when\nthis happens SmartPet will automatically\ndisable it.";
63 SMARTPET_TOOLTIP_SMARTFOCUS1 = "Because SmartFocus is enabled SmartPet\nwill attempt to optimize your pets DPS\nby enabling Claw and disabling Bite for\nthe first 12 seconds of combat. After\nthat time your pet will switch to Bite.";
64 SMARTPET_TOOLTIP_SMARTFOCUS2 = "You must enable both Claw and Bite for\nSmartFocus to work."
65 SMARTPET_TOOLTIP_GROWL1 = "SmartPet will ensure that your pet has\nenough focus to cast Growl every 5 seconds.";
66 SMARTPET_TOOLTIP_GROWL2 = "You must have Cower on your Pet Action\nBar for AutoCower to work.";
67 SMARTPET_TOOLTIP_GROWL3 = "SmartPet will disable Growl during combat.";
68 SMARTPET_TOOLTIP_GROWL4 = "SmartPet will not change the Autocast\nstate of Growl during combat.";
69 SMARTPET_TOOLTIP_COWER1 = "SmartPet will ensure that your pet has\nenough focus to cast Cower every 5 seconds."
70 SMARTPET_TOOLTIP_COWER3 = "SmartPet will disable Cower during combat.";
71 SMARTPET_TOOLTIP_COWER4 = "SmartPet will not change the Autocast\nstate of Cower during combat.";
72 SMARTPET_TOOLTIP_CLAW1 = "SmartPet will disable Claw during combat\nif using it would not leave your pet with\nenough focus to cast %a. It will be\nre-enabled if your pet gains enough focus\nto use both %a and Claw."
73 SMARTPET_TOOLTIP_CLAW2 = "SmartPet will disable Claw during combat.";
74 SMARTPET_TOOLTIP_BITE1 = "SmartPet will disable Bite during combat\nif using it would not leave your pet with\nenough focus to cast %a. It will be\nre-enabled if your pet gains enough focus\nto use both %a and Bite."
75 SMARTPET_TOOLTIP_BITE2 = "SmartPet will disable Bite during combat.";
76 SMARTPET_TOOLTIP_NOCHASE1 = "Your pet will stop attacking if your target flees";
77 SMARTPET_TOOLTIP_NOCHASE2 = "Your pet will chase fleeing targets";
78  
79  
80  
81  
82 -- Toggle commands
83 SMARTPET_COMMANDS_SMARTPET_ENABLED = "SmartPet enabled";
84 SMARTPET_COMMANDS_SMARTPET_DISABLED = "SmartPet disabled";
85 SMARTPET_COMMANDS_TAUNTMAN = "Use the check buttons above Growl and Cower on your pet action bar to enable Taunt Management";
86 SMARTPET_COMMANDS_SMARTFOCUS_ENABLED = "Smart Focus management enabled";
87 SMARTPET_COMMANDS_SMARTFOCUS_DISABLED = "Smart Focus management disabled";
88 SMARTPET_COMMANDS_AUTOWARN_ENABLED = "Low health warning enabled";
89 SMARTPET_COMMANDS_AUTOWARN_DISABLED = "Low health warning disabled";
90 SMARTPET_COMMANDS_WARNHEALTH = "Low health warning set to %h%"; -- %h = health percent
91 SMARTPET_COMMANDS_CHANNEL = "Channel set to %c"; -- %c = Channel name
92 SMARTPET_COMMANDS_AUTOCOWER_ENABLED = "Cower when low health enabled";
93 SMARTPET_COMMANDS_AUTOCOWER_DISABLED = "Cower when low health disabled";
94 SMARTPET_COMMANDS_COWERHEALTH = "Auto-cower health set to %h%"; -- %h = health percent
95 SMARTPET_COMMANDS_NOCHASE_ENABLED = "Your pet will stop attacking if your target flees";
96 SMARTPET_COMMANDS_NOCHASE_DISABLED = "Your pet will chase fleeing targets";
97 SMARTPET_COMMANDS_SHOWDEBUG_ENABLED = "Debug text display enabled";
98 SMARTPET_COMMANDS_SHOWDEBUG_DISABLED = "Debug text display disabled";
99 SMARTPET_COMMANDS_TOOLTIPS_ENABLED = "Tooltips enabled";
100 SMARTPET_COMMANDS_TOOLTIPS_DISABLED = "Tooltips disabled";
101  
102 -- Usage messages
103 SMARTPET_USAGE_ENABLED = "enabled";
104 SMARTPET_USAGE_DISABLED = "disabled";
105 SMARTPET_USAGE_PERCENT = "<percent>"
106 SMARTPET_USAGE_SMARTPET = "enables or disables all SmartPet functionality.";
107 SMARTPET_USAGE_TAUNTMAN = "toggles taunt management.";
108 SMARTPET_USAGE_SMARTFOCUS = "toggles smart focus management.";
109 SMARTPET_USAGE_AUTOWARN = "toggles warning when pet health is low.";
110 SMARTPET_USAGE_WARNHEALTH = "pet will report health when below this level.";
111 SMARTPET_USAGE_CHANNEL = "pet health informs will go to this channel.";
112 SMARTPET_USAGE_AUTOCOWER = "toggles auto cowering when health is low.";
113 SMARTPET_USAGE_COWERHEALTH = "pet will begin cowering when health below this level.";
114 SMARTPET_USAGE_NOCHASE = "pet will stop combat if your target flees.";
115 SMARTPET_USAGE_TOOLTIPS = "toggles tooltip display.";
116 SMARTPET_USEAGE_HELP = "displays more detailed help information";
117  
118 -- Help messages
119 SMARTPET_HELP_TITLE = "SmartPet command help:";
120 SMARTPET_HELP_TAUNTMAN1 = "Taunt Management ";
121 SMARTPET_HELP_TAUNTMAN2 = "Enabling this will ensure that your pet always has enough focus to Cower or Growl. Each time you enter combat, your pet will make use of the abilities that were set to Autocast when combat started, while maintaining enough focus to growl or cower every 5 seconds.";
122 SMARTPET_HELP_SMARTFOCUS1 = "Smart Focus Management ";
123 SMARTPET_HELP_SMARTFOCUS2 = "Enabling this will attempt to maximize your pets DPS output by automatically enabling and disabling burst and sustained damage abilities at the appropriate time.";
124 SMARTPET_HELP_AUTOHEALTH1 ="Auto Health Warning ";
125 SMARTPET_HELP_AUTOHEALTH2 = "Enabling this will send a message to your party if your pets health drops below the specified amount.";
126 SMARTPET_HELP_AUTOCOWER1 = "Auto Cower ";
127 SMARTPET_HELP_AUTOCOWER2 ="Enabling this will cause your pet to cower when its health drops below the specified amount.";
128  
129 if ( GetLocale() == "deDE" ) then
130  
131 -- *
132 -- * DEUTSCH
133 -- *
134  
135 -- Die nächsten 6 Zeilen legen die Namen der Tier-Aktionen fest. Diese *müssen* an die
136 -- Sprache des Clients angepasst werden damit die grundlegenden Funktionen von SmartPet
137 -- benutzt werden können!
138  
139 SMARTPET_ACTIONS_GROWL = "Knurren";
140 SMARTPET_ACTIONS_COWER = "Ducken";
141 SMARTPET_ACTIONS_CLAW = "Klaue";
142 SMARTPET_ACTIONS_BITE = "Bei\195\159en";
143 SMARTPET_ACTIONS_DASH = "Spurt";
144 SMARTPET_ACTIONS_DIVE = "Tauchen";
145  
146 -- Die nächste Zeile legt den Text fest nach dem SmartPet sucht um zu ermitteln ob ein Gegner
147 -- die Flucht ergreift. Dieser Text *muss* an die Sprache des Clients angepasst werden damit
148 -- das automatische ablassen vom Gegner funktioniert!
149  
150 SMARTPET_SEARCH_RUNAWAY = "versucht, voller Furcht fortzulaufen!";
151  
152 -- Die nächsten Zeilen sind normaler Text und für die Funktionalität von SmartPet nicht un-
153 -- bedingt wichtig. Die Übersetzung dient nur der Darstellung in der eigenen Sprache.
154  
155 -- Lade Texte
156 SMARTPET_VERSION_RUNNING = "Version %v geladen: Tippe /smartpet oder /sp f\195\188r mehr Informationen.";
157 SMARTPET_VERSION_CHANGED = "Die Versionsnummer hat sich ge\195\164ndert und alle Einstellungen wurden zur\195\188ckgesetzt";
158 SMARTPET_ONLY_FOR_HUNTER = "Diese Erweiterung ist nur f\195\188r die Tiere der J\195\164ger gedacht!";
159  
160 -- Tier Texte
161 SMARTPET_PET_NEEDS_HEALING = "%n ben\195\182tigt Heilung! (%h% Leben)";
162 SMARTPET_PET_BREAKS_COMBAT = "%n l\195\164\195\159t von seinem Ziel ab!";
163  
164 -- Tooltipp Texte
165 SMARTPET_TOOLTIP_MANAGEMENT = "Management";
166 SMARTPET_TOOLTIP_AUTOCOWER = "Da AutoCower eingeschaltet ist, wird SmartPet\nDucken einschalten sobald das Leben deines\nTiers unter %h% f\195\164llt. Wenn Knurren eingeschaltet\nist wird es automatisch ausgeschaltet.";
167 SMARTPET_TOOLTIP_SMARTFOCUS1 = "Da SmartFocus eingeschalten ist, wird\nSmartPet versuche den Schaden deines Tiers\nzu optimieren, indem es im Kampf die\nersten 12 Sekunden nur Klaue benutzt und\nBei\195\159en ausschaltet. Danach wechselt das\nTier zu Bei\195\159en.";
168 SMARTPET_TOOLTIP_SMARTFOCUS2 = "Du mu\195\159t Klaue und Bei\195\159en einschalten damit\nSmartFocus korrekt arbeitet."
169 SMARTPET_TOOLTIP_GROWL1 = "SmartPet stellt sicher das dein Tier immer\ngenug Fokus hat um alle 5 Sekunden Knurren\nanwenden zu k\195\182nnen.";
170 SMARTPET_TOOLTIP_GROWL2 = "Dein Tier mu\195\159 Ducken gelernt haben damit\nAutoCower benutzt werden kann.";
171 SMARTPET_TOOLTIP_GROWL3 = "SmartPet schaltet Knurren w\195\164hrend des\nKampfes aus.";
172 SMARTPET_TOOLTIP_GROWL4 = "SmartPet wird die Einstellung von Knurren\nw\195\164hrend des Kampfes nicht ver\195\164ndern.";
173 SMARTPET_TOOLTIP_COWER1 = "SmartPet stellt sicher das dein Tier immer\ngenug Fokus hat um alle 5 Sekunden Ducken\nanwenden zu k\195\182nnen."
174 SMARTPET_TOOLTIP_COWER3 = "SmartPet schaltet Ducken w\195\164hrend des\nKampfes aus.";
175 SMARTPET_TOOLTIP_COWER4 = "SmartPet wird die Einstellung von Ducken\nw\195\164hrend des Kampfes nicht ver\195\164ndern.";
176 SMARTPET_TOOLTIP_CLAW1 = "SmartPet schaltet Klaue im Kampf aus wenn\ndie Benutzung nicht genug Fokus f\195\188r %a\n\195\188brig lassen w\195\188rde. Es wird automatisch\nwieder eingeschaltet wenn genug Fokus f\195\188r\nKlaue und %a vorhanden ist."
177 SMARTPET_TOOLTIP_CLAW2 = "SmartPet schaltet Klaue im Kampf aus.";
178 SMARTPET_TOOLTIP_BITE1 = "SmartPet schaltet Bei\195\159en im Kampf aus wenn\ndie Benutzung nicht genug Fokus f\195\188r %a\n\195\188brig lassen w\195\188rde. Es wird automatisch\nwieder eingeschaltet wenn genug Fokus f\195\188r\nBei\195\159en und %a vorhanden ist."
179 SMARTPET_TOOLTIP_BITE2 = "SmartPet schaltet Bei\195\159en im Kampf aus.";
180 SMARTPET_TOOLTIP_NOCHASE1 = "Dein Tier verfolgt sein Ziel wenn es flieht.";
181 SMARTPET_TOOLTIP_NOCHASE2 = "Dein Tier verfolgt sein Ziel nicht wenn es flieht.";
182  
183 -- Ein/Aus Texte
184 SMARTPET_COMMANDS_SMARTPET_ENABLED = "SmartPet ist jetzt aktiv.";
185 SMARTPET_COMMANDS_SMARTPET_DISABLED = "SmartPet ist jetzt nicht mehr aktiv.";
186 SMARTPET_COMMANDS_TAUNTMAN = "Benutze die H\195\164ckchen \195\188ber der Tier-Aktionsleiste von Knurren und Ducken um das Bedrohungs Management zu aktivieren.";
187 SMARTPET_COMMANDS_SMARTFOCUS_ENABLED = "Fokus Management ist jetzt aktiv.";
188 SMARTPET_COMMANDS_SMARTFOCUS_DISABLED = "Fokus Management ist jetzt nicht mehr aktiv.";
189 SMARTPET_COMMANDS_AUTOWARN_ENABLED = "Lebenswarnung ist aktiv.";
190 SMARTPET_COMMANDS_AUTOWARN_DISABLED = "Lebenswarnung ist nicht mehr aktiv.";
191 SMARTPET_COMMANDS_WARNHEALTH = "Lebenswarnung des Tiers wird bei weniger als %h% Leben ausgeben.";
192 SMARTPET_COMMANDS_CHANNEL = 'Lebenswarnung wird in Kanal "%c" ausgegeben.';
193 SMARTPET_COMMANDS_AUTOCOWER_ENABLED = "Automatisches Ducken ist aktiv.";
194 SMARTPET_COMMANDS_AUTOCOWER_DISABLED = "Automatisches Ducken ist nicht mehr aktiv.";
195 SMARTPET_COMMANDS_COWERHEALTH = "Automatisches Ducken wird aktiviert wenn das Tier weniger als %h% Leben hat.";
196 SMARTPET_COMMANDS_NOCHASE_ENABLED = "Dein Tier verfolgt sein Ziel nicht wenn es flieht.";
197 SMARTPET_COMMANDS_NOCHASE_DISABLED = "Dein Tier verfolgt sein Ziel wenn es flieht.";
198 SMARTPET_COMMANDS_SHOWDEBUG_ENABLED = "Debug Meldungen werden angezeigt.";
199 SMARTPET_COMMANDS_SHOWDEBUG_DISABLED = "Debug Meldungen werden nicht mehr angezeigt.";
200 SMARTPET_COMMANDS_TOOLTIPS_ENABLED = "Tooltips werden angezeigt.";
201 SMARTPET_COMMANDS_TOOLTIPS_DISABLED = "Tooltips werden nicht mehr angezeigt.";
202  
203  
204 -- Benutzungstexte
205 SMARTPET_USAGE_ENABLED = "aktiviert";
206 SMARTPET_USAGE_DISABLED = "deaktiviert";
207 SMARTPET_USAGE_PERCENT = "<prozent>"
208 SMARTPET_USAGE_SMARTPET = "Aktiviert/Deaktiviert alle Funktionen von SmartPet.";
209 SMARTPET_USAGE_TAUNTMAN = "Aktiviert/Deaktiviert das Bedrohungs Management.";
210 SMARTPET_USAGE_SMARTFOCUS = "Aktiviert/Deaktiviert das Fokus Management.";
211 SMARTPET_USAGE_AUTOWARN = "Aktiviert/Deaktiviert die Warnung wenn das Tier nur noch wenig Leben hat.";
212 SMARTPET_USAGE_WARNHEALTH = "Lebenswarnung des Tiers wenn Leben unter diesem Wert.";
213 SMARTPET_USAGE_CHANNEL = "Lebenswarnung des Tiers in diesem Kanal ausgeben.";
214 SMARTPET_USAGE_AUTOCOWER = "Aktiviert/Deaktiviert automatisches Ducken wenn das Tier nur noch wenig Leben hat.";
215 SMARTPET_USAGE_COWERHEALTH = "Automatisches Ducken wenn Leben unter diesem Wert.";
216 SMARTPET_USAGE_NOCHASE = "Tier beendet den Kampf wenn Ziel flieht.";
217 SMARTPET_USAGE_TOOLTIPS = "Zeigt/Versteckt die Tooltips von SmartPet.";
218  
219  
220 elseif ( GetLocale() == "frFR" ) then
221 -- *
222 -- * FRENCH
223 -- *
224  
225 -- The next 6 lines define the names of the pets abilities. The localization of these settings
226 -- into the clients language are a "must" to use the basic functions of SmartPet.
227  
228 SMARTPET_ACTIONS_GROWL = "Grondement";
229 SMARTPET_ACTIONS_COWER = "Tremblements";
230 SMARTPET_ACTIONS_CLAW = "Griffe";
231 SMARTPET_ACTIONS_BITE = "Morsure";
232 SMARTPET_ACTIONS_DASH = "C/233l/233rit/233";
233 SMARTPET_ACTIONS_DIVE = "Plongeon";
234  
235 -- The next line defines the text that is used by SmartPet to determine if the opponent flees.
236 -- The localization of this text into the clients language is a "must" for using the anti-chasing
237 -- functions of SmartPet.
238  
239 SMARTPET_SEARCH_RUNAWAY = "essaie de s'enfuir dans un moment de panique";
240  
241 -- The lines below are normal text and not necessary for SmartPets functionality. You can
242 -- translate them to be displayed in your clients language.
243  
244 -- Loading strings
245 SMARTPET_VERSION_RUNNING = "Version %v POUR CLIENT FR charg\195\169e: Tapez /smartpet ou /sp Pour des informations."; -- %v = Version number
246 SMARTPET_VERSION_CHANGED = "Variables par d\195\169faut charg\195\169es. Tapez /sp";
247 SMARTPET_ONLY_FOR_HUNTER = "Cet addon est destin\195\169 aux chasseurs uniquement.";
248  
249 -- Pet messages
250 SMARTPET_PET_NEEDS_HEALING = "%n a besoin de soins! (%h% de vie)"; -- %n = Pet name | %h = Pet health
251 SMARTPET_PET_BREAKS_COMBAT = "%n interrompt le combat!"; -- %n = Pet name
252  
253 -- Tooltips
254 SMARTPET_TOOLTIP_MANAGEMENT = "Gestion";
255 SMARTPET_TOOLTIP_AUTOCOWER = "AutoTremblements est activ\195\169\nSmartpet lancera Tremblements quand la\nvie du familier sera de %h%. Si Grondement est activ\195\169 \nSmartpet le d\195\169sactivera.";
256 SMARTPET_TOOLTIP_SMARTFOCUS1 = "SmartFocus est activ\195\169 SmartPet\noptimisera les DPS du familier\nen activant Griffe et en d\195\169sactivant Morsure\npendant le d\195\169but du combat soit 12 sec. Ensuite\nle familier utilisera Morsure.";
257 SMARTPET_TOOLTIP_SMARTFOCUS2 = "Vous devez activer Griffe et Morsure pour\nque SmartFocus fonctionne."
258 SMARTPET_TOOLTIP_GROWL1 = "SmartPet fait en sorte que le familier\npuisse activer Grondement toutes les 5 secondes.";
259 SMARTPET_TOOLTIP_GROWL2 = "Vous devez avoir Tremblements sur votre\nbarre d'action de familier pour que\n AutoTremblements fonctionne.";
260 SMARTPET_TOOLTIP_GROWL3 = "SmartPet d\195\169sactivera Grondement durant le combat.";
261 SMARTPET_TOOLTIP_GROWL4 = "SmartPet ne changera pas l'activation automatique\nde Grondement durant le combat.";
262 SMARTPET_TOOLTIP_COWER1 = "SmartPet fait en sorte que le familier puisse\nactiver Tremblements toutes les 5 secondes."
263 SMARTPET_TOOLTIP_COWER3 = "SmartPet d\195\169sactivera Tremblements durant le combat.";
264 SMARTPET_TOOLTIP_COWER4 = "SmartPet ne changera pas l'activation automatique\nde Tremblements durant le combat.";
265 SMARTPET_TOOLTIP_CLAW1 = "SmartPet d\195\169sactivera Griffe durant le combat\nsi le pet ne dispose pas de suffisamment de focus\npour lancer %a. Il sera\nr\195\169activer si le familier a assez de focus\npour utiliser %a et Griffe."
266 SMARTPET_TOOLTIP_CLAW2 = "SmartPet d\195\169sactivera Griffe durant le combat.";
267 SMARTPET_TOOLTIP_BITE1 = "SmartPet d\195\169sactivera Morsure durant le combat\nsi le pet ne dispose pas de suffisamment de focus\npour lancer %a. Il sera\nr\195\169activer si le familier a assez de focus\npour utiliser %a et Morsure."
268 SMARTPET_TOOLTIP_BITE2 = "SmartPet d\195\169sactivera Morsure durant le combat.";
269  
270 -- Toggle commands
271 SMARTPET_COMMANDS_SMARTPET_ENABLED = "SmartPet activ\195\169";
272 SMARTPET_COMMANDS_SMARTPET_DISABLED = "SmartPet d\195\169sactiv\195\169";
273 SMARTPET_COMMANDS_TAUNTMAN = "Utilisez les boutons au-dessus de Tremblements et Grondement sur votre barre de familier pour activer la gestion du Taunt";
274 SMARTPET_COMMANDS_SMARTFOCUS_ENABLED = "Gestion de Smart Focus activ\195\169e";
275 SMARTPET_COMMANDS_SMARTFOCUS_DISABLED = "Gestion de Smart Focus d\195\169sactiv\195\169e";
276 SMARTPET_COMMANDS_AUTOWARN_ENABLED = "niveau bas de vie activ\195\169";
277 SMARTPET_COMMANDS_AUTOWARN_DISABLED = "niveau bas de vie d\195\169sactiv\195\169";
278 SMARTPET_COMMANDS_WARNHEALTH = "niveau bas de vie configur\195\169 pour %h%"; -- %h = health percent
279 SMARTPET_COMMANDS_CHANNEL = "Channel choisi %c"; -- %c = Channel name
280 SMARTPET_COMMANDS_AUTOCOWER_ENABLED = "Activation de Tremblements quand niveau bas de vie activ\195\169";
281 SMARTPET_COMMANDS_AUTOCOWER_DISABLED = "Activation de Tremblements quand niveau bas de vie d\195\169sactiv\195\169";
282 SMARTPET_COMMANDS_COWERHEALTH = "AutoTremblements pour un niveau de vie de %h%"; -- %h = health percent
283 SMARTPET_COMMANDS_NOCHASE_ENABLED = "Votre familier cessera le combat si la créature s'enfuit";
284 SMARTPET_COMMANDS_NOCHASE_DISABLED = "Votre familier poursuivra sa cible";
285 SMARTPET_COMMANDS_SHOWDEBUG_ENABLED = "Correction affichage de texte activ\195\169";
286 SMARTPET_COMMANDS_SHOWDEBUG_DISABLED = "Correction affichage de texte d\195\169sactiv\195\169";
287 SMARTPET_COMMANDS_TOOLTIPS_ENABLED = "Astuces activ\195\169es";
288 SMARTPET_COMMANDS_TOOLTIPS_DISABLED = "Astuces d\195\169sactiv\195\169es";
289  
290 -- Usage messages
291 SMARTPET_USAGE_ENABLED = "activ\195\169";
292 SMARTPET_USAGE_DISABLED = "d\195\169sactiv\195\169";
293 SMARTPET_USAGE_PERCENT = "<percent>"
294 SMARTPET_USAGE_SMARTPET = "active ou d\195\169sactive les fonctionnalit\195\169s de Smartpet.";
295 SMARTPET_USAGE_TAUNTMAN = "Bascule sur la gestion du Taunt.";
296 SMARTPET_USAGE_SMARTFOCUS = "Bascule sur la gestion de AutoFocus.";
297 SMARTPET_USAGE_AUTOWARN = "Bascule sur l'alerte de niveau bas de vie du familier.";
298 SMARTPET_USAGE_WARNHEALTH = "Le familier donnera son niveau de vie si il descend sous la limite donn\195\169e ";
299 SMARTPET_USAGE_CHANNEL = "Les informations de niveau de vie du familier iront sur ce channel.";
300 SMARTPET_USAGE_AUTOCOWER = "Bascule sur la gestion de Autotremblement quand le niveau de vie du pet est bas.";
301 SMARTPET_USAGE_COWERHEALTH = "Le familier utilsera Tremblements quand son niveau de vie sera sous la limite donn\195\169e.";
302 SMARTPET_USAGE_NOCHASE = "Le familier arr\195\170tera le combat si la cr\195\169ature s'enfuit.";
303 SMARTPET_USAGE_TOOLTIPS = "Bascule sur l'affichage des Astuces.";
304 end
305