forked from Lexiebean/Outfitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
OutfitterStrings.lua
396 lines (324 loc) · 19.7 KB
/
OutfitterStrings.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
Outfitter_cVersion = "1.5.1";
Outfitter_cTitle = "Outfitter";
Outfitter_cTitleVersion = Outfitter_cTitle .. " " .. Outfitter_cVersion;
Outfitter_cNameLabel = "Name:";
Outfitter_cCreateUsingTitle = "Optimize for:";
Outfitter_cUseCurrentOutfit = "Use Current Outfit";
Outfitter_cUseEmptyOutfit = "Create Empty Outfit";
Outfitter_cOutfitterTabTitle = "Outfitter";
Outfitter_cOptionsTabTitle = "Options";
Outfitter_cAboutTabTitle = "About";
Outfitter_cNewOutfit = "New Outfit";
Outfitter_cRenameOutfit = "Rename Outfit";
Outfitter_cCompleteOutfits = "Complete wardrobes";
Outfitter_cPartialOutfits = "Mix-n-match";
Outfitter_cAccessoryOutfits = "Accessories";
Outfitter_cSpecialOutfits = "Special occassions";
Outfitter_cOddsNEndsOutfits = "Odds 'n ends";
Outfitter_cNormalOutfit = "Normal";
Outfitter_cNakedOutfit = "Birthday Suit";
Outfitter_cFishingOutfit = "Fishing";
Outfitter_cHerbalismOutfit = "Herbalism";
Outfitter_cMiningOutfit = "Mining";
Outfitter_cSkinningOutfit = "Skinning";
Outfitter_cFireResistOutfit = "Fire Resist";
Outfitter_cNatureResistOutfit = "Nature Resist";
Outfitter_cShadowResistOutfit = "Shadow Resist";
Outfitter_cArcaneResistOutfit = "Arcane Resist";
Outfitter_cFrostResistOutfit = "Frost Resist";
Outfitter_cArgentDawnOutfit = "Argent Dawn";
Outfitter_cRidingOutfit = "Riding";
Outfitter_cDiningOutfit = "Dining";
Outfitter_cBattlegroundOutfit = "Battleground";
Outfitter_cABOutfit = "Battleground: Arathi Basin";
Outfitter_cAVOutfit = "Battleground: Alterac Valley";
Outfitter_cWSGOutfit = "Battleground: Warsong Gulch";
Outfitter_cBROutfit = "Battleground: Blood Ring";
Outfitter_cSGVOutfit = "Battleground: Sunnyglade Valley";
Outfitter_cCityOutfit = "Around Town";
Outfitter_cBossOutfit = "Boss Mobs";
Outfitter_cTrashOutfit = "Trash Mobs";
Outfitter_cCritterOutfit = "Critters";
Outfitter_cBeastTrashOutfit = "Beast Trash Mobs";
Outfitter_cUndeadTrashOutfit = "Undead Trash Mobs";
Outfitter_cDemonTrashOutfit = "Demon Trash Mobs";
Outfitter_cMountSpeedFormat = "Increases speed by (%d+)%%."; -- For detecting when mounted
Outfitter_cBagsFullError = "Outfitter: Can't remove %s because all bags are full";
Outfitter_cDepositBagsFullError = "Outfitter: Can't deposit %s because all bank bags are full";
Outfitter_cWithdrawBagsFullError = "Outfitter: Can't withdraw %s because all bags are full";
Outfitter_cItemNotFoundError = "Outfitter: Can't find item %s";
Outfitter_cItemAlreadyUsedError = "Outfitter: Can't put %s in the %s slot because it's already being used in another slot";
Outfitter_cAddingItem = "Outfitter: Adding %s to %s outfit";
Outfitter_cNameAlreadyUsedError = "Error: That name is already being used";
Outfitter_cNoItemsWithStatError = "Warning: None of your items have that attribute";
Outfitter_cEnableAll = "Enable all";
Outfitter_cEnableNone = "Enable none";
Outfitter_cConfirmDeleteMsg = "Are you sure you want to delete the outfit %s?";
Outfitter_cConfirmUpdateMsg = "Are you sure you want to update the outfit %s to your current outfit?";
Outfitter_cConfirmRebuildMsg = "Are you sure you want to rebuild the outfit %s?";
Outfitter_cRebuild = "Rebuild";
Outfitter_cUpdate = "Update";
Outfitter_cUpdateToCurrent = "Update to current";
Outfitter_cWesternPlaguelands = "Western Plaguelands";
Outfitter_cEasternPlaguelands = "Eastern Plaguelands";
Outfitter_cStratholme = "Stratholme";
Outfitter_cScholomance = "Scholomance";
Outfitter_cNaxxramas = "Naxxramas";
Outfitter_cAlteracValley = "Alterac Valley";
Outfitter_cArathiBasin = "Arathi Basin";
Outfitter_cWarsongGulch = "Warsong Gulch";
Outfitter_cBloodRing = "Blood Ring";
Outfitter_cSunnygladeValley = "Sunnyglade Valley";
Outfitter_cIronforge = "Ironforge";
Outfitter_cCityOfIronforge = "City of Ironforge";
Outfitter_cDarnassus = "Darnassus";
Outfitter_cStormwind = "Stormwind City";
Outfitter_cOrgrimmar = "Orgrimmar";
Outfitter_cThunderBluff = "Thunder Bluff";
Outfitter_cUndercity = "Undercity";
--Instances
Outfitter_cAQ20 = "Ruins of Ahn'Qiraj";
Outfitter_cAQ40 = "Ahn'Qiraj";
Outfitter_cZG = "Zul'Gurub";
Outfitter_cES = "Emerald Sanctum";
Outfitter_cBM = "The Black Morass";
Outfitter_cFishingPole = "Fishing Pole";
Outfitter_cStrongFishingPole = "Strong Fishing Pole";
utfitter_cDarkwoodFishingPole = "Darkwood Fishing Pole";
Outfitter_cBigIronFishingPole = "Big Iron Fishing Pole";
Outfitter_cBlumpFishingPole = "Blump Family Fishing Pole";
Outfitter_cNatPaglesFishingPole = "Nat Pagle's Extreme Angler FC-5000";
Outfitter_cArcaniteFishingPole = "Arcanite Fishing Pole";
Outfitter_cBarkskinFisher = "Barkskin Fisher";
Outfitter_cArgentDawnCommission = "Argent Dawn Commission";
Outfitter_cSealOfTheDawn = "Seal of the Dawn";
Outfitter_cRuneOfTheDawn = "Rune of the Dawn";
Outfitter_cWhipOfEncouragement = "Whip of Encouragement";
Outfitter_cGoblinCarKey = "Goblin Car Key";
Outfitter_cGnomeCarKey = "Gnome Car Key";
Outfitter_cCarrotOnAStick = "Carrot on a Stick";
Outfitter_cItemStatFormats = {
{ Format = "Stamina %+(%d+)", Types = { "Stamina" } },
{ Format = "Intellect %+(%d+)", Types = { "Intellect" } },
{ Format = "Agility %+(%d+)", Types = { "Agility" } },
{ Format = "Strength %+(%d+)", Types = { "Strength" } },
{ Format = "Spirit %+(%d+)", Types = { "Spirit" } },
{ Format = "Armor %+(%d+)", Types = { "Armor" } },
{ Format = "Defense %+(%d+)", Types = { "Defense" } },
{ Format = "Increased Defense %+(%d+)", Types = { "Defense" } },
{ Format = "%+(%d+) Stamina", Types = { "Stamina" } },
{ Format = "%+(%d+) Intellect", Types = { "Intellect" } },
{ Format = "%+(%d+) Agility", Types = { "Agility" } },
{ Format = "%+(%d+) Strength", Types = { "Strength" } },
{ Format = "%+(%d+) Spirit", Types = { "Spirit" } },
{ Format = "(%d+) Armor", Types = { "Armor" } },
{ Format = "%+(%d+) Attack Power", Types = { "Attack" } },
{ Format = "All Stats %+(%d+)", Types = { "Stamina", "Intellect", "Agility", "Strength", "Spirit" } },
{ Format = "Mana %+(%d+)", Types = { "Mana" } },
{ Format = "Health %+(%d+)", Types = { "Health" } },
{ Format = "%+(%d+) mana every 5 sec.", Types = { "ManaRegen" } },
{ Format = "Restores (%d+) mana per 5 sec.", Types = { "ManaRegen" } },
{ Format = "%+(%d+) health every 5 sec.", Types = { "HealthRegen" } },
{ Format = "Restores (%d+) health every 5 sec.", Types = { "HealthRegen" } },
{ Format = "Restores (%d+) health per 5 sec.", Types = { "HealthRegen" } },
{ Format = "Minor Mount Speed Increase", Value = 3, Types = { "Riding" } },
{ Format = "Mithril Spurs", Value = 3, Types = { "Riding" } },
{ Format = "Thorium Spurs", Value = 5, Types = { "Riding" } },
{ Format = "%+(%d+) Fire Resistance", Types = { "FireResist" } },
{ Format = "%+(%d+) Nature Resistance", Types = { "NatureResist" } },
{ Format = "%+(%d+) Frost Resistance", Types = { "FrostResist" } },
{ Format = "%+(%d+) Shadow Resistance", Types = { "ShadowResist" } },
{ Format = "%+(%d+) Arcane Resistance", Types = { "ArcaneResist" } },
{ Format = "%+(%d+) All Resistances", Types = { "FireResist", "NatureResist", "FrostResist", "ShadowResist", "ArcaneResist" } },
{ Format = "Weapon Damage %+(%d+)", Types = { "MeleeDmg" } },
{ Format = "Improves your chance to hit by (%d+)%%", Types = { "MeleeHit" } },
{ Format = "Improves your chance to get a critical strike by (%d+)%%", Types = { "MeleeCrit" } },
{ Format = "Increases your chance to dodge an attack by (%d+)%%", Types = { "Dodge" } },
{ Format = "Damage %+(%d+)", Types = { "MeleeDmg" } },
{ Format = "(%d+) Block", Types = { "Block" } },
{ Format = "Block Value %+(%d+)", Types = { "Block" } },
{ Format = "Increases the block value of your shield by (%d+)", Types = { "Block" } },
{ Format = "Increased Fishing %+(%d+)%.", Types = { "Fishing" } },
{ Format = "Fishing %+(%d+)", Types = { "Fishing" } },
{ Format = "Herbalism %+(%d+)", Types = { "Herbalism" } },
{ Format = "Mining %+(%d+)", Types = { "Mining" } },
{ Format = "Skinning %+(%d+)", Types = { "Skinning" } },
{ Format = "Improves your chance to get a critical strike with spells by (%d+)%%", Types = { "SpellCrit" } },
{ Format = "Improves your chance to hit with spells by (%d+)%%", Types = { "SpellHit" } },
{ Format = "Increases damage and healing done by magical spells and effects by up to (%d+)", Types = { "SpellDmg", "ShadowDmg", "FireDmg", "FrostDmg", "ArcaneDmg", "NatureDmg", "Healing" } },
{ Format = "Increases healing done by spells and effects by up to (%d+)", Types = { "Healing" } },
{ Format = "Healing Spells %+(%d+)", Types = { "Healing" } },
{ Format = "%+(%d+) Healing Spells", Types = { "Healing" } },
{ Format = "%+(%d+) Fire Spell Damage", Types = { "FireDmg" } },
{ Format = "%+(%d+) Shadow Spell Damage", Types = { "ShadowDmg" } },
{ Format = "%+(%d+) Frost Spell Damage", Types = { "FrostDmg" } },
{ Format = "%+(%d+) Arcane Spell Damage", Types = { "ArcaneDmg" } },
{ Format = "%+(%d+) Nature Spell Damage", Types = { "NatureDmg" } },
{ Format = "Increases damage done by Fire spells and effects by up to (%d+)", Types = { "FireDmg" } },
{ Format = "Increases damage done by Shadow spells and effects by up to (%d+)", Types = { "ShadowDmg" } },
{ Format = "Increases damage done by Frost spells and effects by up to (%d+)", Types = { "FrostDmg" } },
{ Format = "Increases damage done by Arcane spells and effects by up to (%d+)", Types = { "ArcaneDmg" } },
{ Format = "Increases damage done by Nature spells and effects by up to (%d+)", Types = { "NatureDmg" } },
};
Outfitter_cAgilityStatName = "Agility";
Outfitter_cArmorStatName = "Armor";
Outfitter_cDefenseStatName = "Defense";
Outfitter_cIntellectStatName = "Intellect";
Outfitter_cSpiritStatName = "Spirit";
Outfitter_cStaminaStatName = "Stamina";
Outfitter_cStrengthStatName = "Strength";
Outfitter_cManaRegenStatName = "Mana Regeneration";
Outfitter_cHealthRegenStatName = "Health Regeneration";
Outfitter_cSpellCritStatName = "Spell Critical Strike";
Outfitter_cSpellHitStatName = "Spell Chance to Hit";
Outfitter_cSpellDmgStatName = "Spell Damage";
Outfitter_cFrostDmgStatName = "Frost Spell Damage";
Outfitter_cFireDmgStatName = "Fire Spell Damage";
Outfitter_cArcaneDmgStatName = "Arcane Spell Damage";
Outfitter_cShadowDmgStatName = "Shadow Spell Damage";
Outfitter_cNatureDmgStatName = "Nature Spell Damage";
Outfitter_cHealingStatName = "Healing";
Outfitter_cMeleeCritStatName = "Melee Critical Strike";
Outfitter_cMeleeHitStatName = "Melee Chance to Hit";
Outfitter_cMeleeDmgStatName = "Melee Damage";
Outfitter_cAttackStatName = "Attack Power";
Outfitter_cDodgeStatName = "Dodge";
Outfitter_cArcaneResistStatName = "Arcane Resistance";
Outfitter_cFireResistStatName = "Fire Resistance";
Outfitter_cFrostResistStatName = "Frost Resistance";
Outfitter_cNatureResistStatName = "Nature Resistance";
Outfitter_cShadowResistStatName = "Shadow Resistance";
Outfitter_cFishingStatName = "Fishing";
Outfitter_cHerbalismStatName = "Herbalism";
Outfitter_cMiningStatName = "Mining";
Outfitter_cSkinningStatName = "Skinning";
Outfitter_cOptionsTitle = "Outfitter Options";
Outfitter_cShowMinimapButton = "Show Minimap Button";
Outfitter_cShowMinimapButtonOnDescription = "Turn this off if you don't want the Outfitter button on your minimap cluster";
Outfitter_cShowMinimapButtonOffDescription = "Turn this on if you want the Outfitter button on your minimap cluster";
Outfitter_cRememberVisibility = "Remember cloak and helm settings";
Outfitter_cRememberVisibilityOnDescription = "Turn this off if you want to use a single show/hide setting for all cloaks and helms";
Outfitter_cRememberVisibilityOffDescription = "Turn this on if you want Outfitter to remember your preference for showing or hiding each cloak and helm individually";
Outfitter_cShowHotkeyMessages = "Show key binding outfit changes";
Outfitter_cShowHotkeyMessagesOnDescription = "Turn this off if you don't want to see a message when you change outfits using a key binding";
Outfitter_cShowHotkeyMessagesOffDescription = "Turn this on if you want to see a message when you change outfits using a key binding";
Outfitter_cShowCurrentOutfit = "Display current outfit in small window";
Outfitter_cHideDisabledOutfits = "Hide disabled outfits from list";
Outfitter_cEquipOutfitMessageFormat = "Outfitter: %s equipped";
Outfitter_cUnequipOutfitMessageFormat = "Outfitter: %s unequipped";
Outfitter_cAboutTitle = "About Outfitter";
Outfitter_cAuthor = "Designed and written by John Stephen\nUpdated for TurtleWoW by |cff5BCEFAL|cffF5A9B8e|cffFFFFFFx|cffF5A9B8i|cff5BCEFAe|r";
Outfitter_cTestersTitle = "Beta Testers";
Outfitter_cTestersNames = "Airmid, Desiree, Fizzlebang, Harper, Kallah and Sumitra";
Outfitter_cSpecialThanksTitle = "Special thanks for their support to";
Outfitter_cSpecialThanksNames = "Brian, Dave, Glenn, Leah, Mark, The Mighty Pol, SFC and Forge";
Outfitter_cGuildURL = "";
Outfitter_cGuildURL2 = "";
Outfitter_cOpenOutfitter = "Open Outfitter";
Outfitter_cArgentDawnOutfitDescription = "This outfit will automatically be worn whenever you're in the Plaguelands";
Outfitter_cRidingOutfitDescription = "This outfit will automatically be worn whenever you're mounted";
Outfitter_cDiningOutfitDescription = "This outfit will automatically be worn whenever you're eating or drinking";
Outfitter_cBattlegroundOutfitDescription = "This outfit will automatically be worn whenever you're in a battleground";
Outfitter_cArathiBasinOutfitDescription = "This outfit will automatically be worn whenever you're in the Arathi Basin battleground";
Outfitter_cAlteracValleyOutfitDescription = "This outfit will automatically be worn whenever you're in the Alterac Valley battleground";
Outfitter_cWarsongGulchOutfitDescription = "This outfit will automatically be worn whenever you're in the Warsong Gulch battleground";
Outfitter_cBloodRingOutfitDescription = "This outfit will automatically be worn whenever you're in the Blood Ring battleground";
Outfitter_cSunnygladeValleyOutfitDescription = "This outfit will automatically be worn whenever you're in the Sunnyglade Valley battleground";
Outfitter_cCityOutfitDescription = "This outfit will automatically be worn whenever you're in a friendly major city";
Outfitter_cBossOutfitDescription = "This outfit will automatically be worn whenever you target level 63+ mobs";
Outfitter_cTrashOutfitDescription = "This outfit will automatically be worn whenever you target level <63 mobs";
Outfitter_cCritterOutfitDescription = "This outfit will automatically be worn whenever you target a critter";
Outfitter_cBeastTrashOutfitDescription = "This outfit will automatically be worn whenever you target beasts level <63 mobs";
Outfitter_cUndeadTrashOutfitDescription = "This outfit will automatically be worn whenever you target undead level <63 mobs";
Outfitter_cDemonTrashOutfitDescription = "This outfit will automatically be worn whenever you target demons level <63 mobs";
Outfitter_cKeyBinding = "Key Binding";
BINDING_HEADER_OUTFITTER_TITLE = Outfitter_cTitle;
BINDING_NAME_OUTFITTER_OUTFIT1 = "Outfit 1";
BINDING_NAME_OUTFITTER_OUTFIT2 = "Outfit 2";
BINDING_NAME_OUTFITTER_OUTFIT3 = "Outfit 3";
BINDING_NAME_OUTFITTER_OUTFIT4 = "Outfit 4";
BINDING_NAME_OUTFITTER_OUTFIT5 = "Outfit 5";
BINDING_NAME_OUTFITTER_OUTFIT6 = "Outfit 6";
BINDING_NAME_OUTFITTER_OUTFIT7 = "Outfit 7";
BINDING_NAME_OUTFITTER_OUTFIT8 = "Outfit 8";
BINDING_NAME_OUTFITTER_OUTFIT9 = "Outfit 9";
BINDING_NAME_OUTFITTER_OUTFIT10 = "Outfit 10";
Outfitter_cDisableOutfit = "Disable Outfit";
Outfitter_cDisableOutfitInBG = "Disable Outfit When in Battlegrounds";
Outfitter_cDisableOutfitInInstance = "Disable Outfit When in Instances";
Outfitter_cDisabledOutfitName = "%s (Disabled)";
Outfitter_cMinimapButtonTitle = "Outfitter Minimap Button";
Outfitter_cMinimapButtonDescription = "Click to select a different outfit or drag to re-position this button.";
Outfitter_cDruidClassName = "Druid";
Outfitter_cHunterClassName = "Hunter";
Outfitter_cMageClassName = "Mage";
Outfitter_cPaladinClassName = "Paladin";
Outfitter_cPriestClassName = "Priest";
Outfitter_cRogueClassName = "Rogue";
Outfitter_cShamanClassName = "Shaman";
Outfitter_cWarlockClassName = "Warlock";
Outfitter_cWarriorClassName = "Warrior";
Outfitter_cBattleStance = "Battle Stance";
Outfitter_cDefensiveStance = "Defensive Stance";
Outfitter_cBerserkerStance = "Berserker Stance";
Outfitter_cWarriorBattleStance = "Warrior: Battle Stance";
Outfitter_cWarriorDefensiveStance = "Warrior: Defensive Stance";
Outfitter_cWarriorBerserkerStance = "Warrior: Berserker Stance";
Outfitter_cBearForm = "Bear Form";
Outfitter_cCatForm = "Cat Form";
Outfitter_cAquaticForm = "Aquatic Form";
Outfitter_cTravelForm = "Travel Form";
Outfitter_cDireBearForm = "Dire Bear Form";
Outfitter_cMoonkinForm = "Moonkin Form";
Outfitter_cGhostWolfForm = "Ghost Wolf";
Outfitter_cStealth = "Stealth";
Outfitter_cDruidBearForm = "Druid: Bear Form";
Outfitter_cDruidCatForm = "Druid: Cat Form";
Outfitter_cDruidAquaticForm = "Druid: Aquatic Form";
Outfitter_cDruidTravelForm = "Druid: Travel Form";
Outfitter_cDruidMoonkinForm = "Druid: Moonkin Form";
Outfitter_cPriestShadowform = "Priest: Shadowform";
Outfitter_cRogueStealth = "Rogue: Stealth";
Outfitter_cShamanGhostWolf = "Shaman: Ghost Wolf";
Outfitter_cHunterMonkey = "Hunter: Monkey";
Outfitter_cHunterHawk = "Hunter: Hawk";
Outfitter_cHunterCheetah = "Hunter: Cheetah";
Outfitter_cHunterPack = "Hunter: Pack";
Outfitter_cHunterBeast = "Hunter: Beast";
Outfitter_cHunterWild = "Hunter: Wild";
Outfitter_cMageEvocate = "Mage: Evocate";
Outfitter_cAspectOfTheCheetah = "Aspect of the Cheetah";
Outfitter_cAspectOfThePack = "Aspect of the Pack";
Outfitter_cAspectOfTheBeast = "Aspect of the Beast";
Outfitter_cAspectOfTheWild = "Aspect of the Wild";
Outfitter_cEvocate = "Evocation";
Outfitter_cCritter = "Critter";
Outfitter_cCompleteCategoryDescripton = "Complete outfits have items specified for every slot and will replace all other outfits when worn.";
Outfitter_cPartialCategoryDescription = "Mix-n-match outfits have only some slots specified, but not all. When equipped, they are added on top of your selcted Complete outfit, replacing any other Mix-n-match or Accessory outfits selected.";
Outfitter_cAccessoryCategoryDescription = "Accessory outfits have only some slots specified, but not all. Unlike mix-n-match, you can select as many Accessory outfits as you like and they will all be combined together and worn on top of your selected Complete and Mix-n-match outfits.";
Outfitter_cSpecialCategoryDescription = "Special Occassion outfits are automatically worn whenever the occassion warrants it. They are worn over all other selected outfits.";
Outfitter_cOddsNEndsCategoryDescription = "Odds 'n ends is a list of items which you haven't used in any of your outfits. This may be useful in ensuring that you're using all of your items or that you're not carrying around excess baggage.";
Outfitter_cRebuildOutfitFormat = "Rebuild for %s";
Outfitter_cTranslationCredit = " ";
Outfitter_cSlotEnableTitle = "Slot Enable";
Outfitter_cSlotEnableDescription = "Select this if you want the item in this slot to be equipped when changing to the selected outfit. If not selected then this slot will not be modified when changing to the selected outfit.";
Outfitter_cFinger0SlotName = "First Finger";
Outfitter_cFinger1SlotName = "Second Finger";
Outfitter_cTrinket0SlotName = "First Trinket";
Outfitter_cTrinket1SlotName = "Second Trinket";
Outfitter_cOutfitCategoryTitle = "Category";
Outfitter_cBankCategoryTitle = "Bank";
Outfitter_cDepositToBank = "Deposit all items to bank";
Outfitter_cDepositUniqueToBank = "Deposit unique items to bank";
Outfitter_cWithdrawFromBank = "Withdraw items from bank";
Outfitter_cMissingItemsLabel = "Missing items: ";
Outfitter_cBankedItemsLabel = "Banked items: ";
Outfitter_cRepairAllBags = "Outfitter: Repair All Bagged Items";
Outfitter_cStatsCategory = "Stats";
Outfitter_cMeleeCategory = "Melee";
Outfitter_cSpellsCategory = "Healing and Spells";
Outfitter_cRegenCategory = "Regeneration";
Outfitter_cResistCategory = "Resistances";
Outfitter_cTradeCategory = "Trade Skills";
Outfitter_cTankPoints = "TankPoints";
Outfitter_cCustom = "Custom";