yellowfive@31
|
1 local _, AskMrRobot = ...
|
yellowfive@11
|
2 AskMrRobot.L = {};
|
yellowfive@11
|
3 local L = AskMrRobot.L;
|
yellowfive@11
|
4
|
yellowfive@11
|
5 function AskMrRobot.format(fmt, ...)
|
yellowfive@11
|
6 local args, order = {...}, {}
|
yellowfive@11
|
7
|
yellowfive@11
|
8 local f = fmt:gsub('%%(%d+)%$', function(i)
|
yellowfive@11
|
9 tinsert(order, args[tonumber(i)])
|
yellowfive@11
|
10 return '%'
|
yellowfive@11
|
11 end)
|
yellowfive@11
|
12
|
yellowfive@11
|
13 return f:format(unpack(order))
|
yellowfive@11
|
14 end
|
yellowfive@11
|
15
|
adam@17
|
16 -- stat strings for e.g. displaying gem/enchant abbreviations
|
adam@17
|
17 L.AMR_STAT_SHORT_STRINGS = {
|
adam@17
|
18 ["Strength"] = "Str",
|
adam@17
|
19 ["Agility"] = "Agi",
|
adam@17
|
20 ["Intellect"] = "Int",
|
adam@17
|
21 ["CriticalStrike"] = "Crit",
|
adam@17
|
22 ["Haste"] = "Haste",
|
adam@17
|
23 ["Mastery"] = "Mastery",
|
adam@17
|
24 ["Multistrike"] = "Multi",
|
adam@17
|
25 ["Versatility"] = "Vers",
|
adam@17
|
26 ["BonusArmor"] = "Armor",
|
adam@17
|
27 ["Spirit"] = "Spirit",
|
adam@17
|
28 ["Dodge"] = "Dodge",
|
adam@17
|
29 ["Parry"] = "Parry",
|
adam@17
|
30 ["MovementSpeed"] = "Speed",
|
adam@17
|
31 ["Avoidance"] = "Avoid",
|
adam@17
|
32 ["Stamina"] = "Stam",
|
adam@17
|
33 ["Armor"] = "Armor",
|
adam@17
|
34 ["AttackPower"] = "AP",
|
adam@17
|
35 ["SpellPower"] = "SP",
|
adam@17
|
36 ["PvpResilience"] = "PvP Res",
|
adam@17
|
37 ["PvpPower"] = "PvP Pow",
|
adam@17
|
38 }
|
adam@17
|
39
|
adam@17
|
40 -- AskMrRobot.lua
|
adam@17
|
41 L.AMR_IMPORT_ERROR_EMPTY = "The data string is empty."
|
adam@17
|
42 L.AMR_IMPORT_ERROR_FORMAT = "The data string is not in the correct format."
|
adam@17
|
43 L.AMR_IMPORT_ERROR_VERSION = "The data string is from an old version of the addon. Please go to the website and generate a new one."
|
adam@17
|
44 L.AMR_IMPORT_ERROR_CHAR = "The data string is for %s, but you are %s!"
|
adam@17
|
45 L.AMR_IMPORT_ERROR_RACE = "It looks your race may have changed. Please go the website and re-optimize."
|
adam@17
|
46 L.AMR_IMPORT_ERROR_FACTION = "It looks your faction may have changed. Please go the website and re-optimize."
|
adam@17
|
47 L.AMR_IMPORT_ERROR_LEVEL = "It looks your level may have changed. Please go the website and re-optimize."
|
adam@17
|
48 L.AMR_IMPORT_ERROR_SPEC = "Please change your spec to %s to view this optimization."
|
adam@17
|
49 L.AMR_IMPORT_ERROR_TALENT = "It looks like your talents may have changed. Please go the website and re-optimize."
|
adam@17
|
50 L.AMR_IMPORT_ERROR_GLYPH = "It looks like your glyphs may have changed. Please go the website and re-optimize."
|
adam@17
|
51 --SlashCmdList.AMR
|
adam@17
|
52 L.AMR_SLASH_COMMAND_TEXT_1 = 'Available AskMrRobot slash commands:\n'
|
adam@17
|
53 L.AMR_SLASH_COMMAND_TEXT_2 = ' /amr show -- show the main window\n'
|
adam@17
|
54 L.AMR_SLASH_COMMAND_TEXT_3 = ' /amr hide -- hide the main window\n'
|
adam@17
|
55 L.AMR_SLASH_COMMAND_TEXT_4 = ' /amr toggle -- toggle the main window\n'
|
adam@17
|
56 L.AMR_SLASH_COMMAND_TEXT_5 = ' /amr wipe -- logs a raid wipe. Used to ignore events in the fight after this point\n'
|
adam@17
|
57 L.AMR_SLASH_COMMAND_TEXT_6 = ' /amr unwipe -- undo the last wipe command\n'
|
adam@17
|
58 L.AMR_SLASH_COMMAND_TEXT_7 = ' /amr export -- export character, bag, and bank data (opens the export copy/paste window)'
|
adam@17
|
59
|
yellowfive@11
|
60 --AskMrRobotUi.lua
|
adam@17
|
61
|
adam@17
|
62 --createMainMenu
|
adam@17
|
63 L.AMR_UI_MENU_EXPORT = "Export"
|
adam@17
|
64 L.AMR_UI_MENU_GEAR = "Load a Gear Set"
|
adam@17
|
65 L.AMR_UI_MENU_COMBAT_LOG = "Combat Log"
|
adam@17
|
66 L.AMR_UI_MENU_HELP = "Help"
|
adam@17
|
67
|
adam@17
|
68 L.AMR_UI_BUTTON_IMPORT = "Load"
|
yellowfive@11
|
69 L.AMR_UI_BUTTON_SUMMARY = "Summary"
|
yellowfive@11
|
70 L.AMR_UI_BUTTON_GEMS = "Gems"
|
yellowfive@11
|
71 L.AMR_UI_BUTTON_ENCHANTS = "Enchants"
|
yellowfive@11
|
72 L.AMR_UI_BUTTON_SHOPPING_LIST = "Shopping List"
|
yellowfive@49
|
73
|
yellowfive@11
|
74 --AskMrRobot.lua
|
yellowfive@11
|
75 L.AMR_ON_EVENT_TOOLTIP = "Left Click to open the Ask Mr. Robot window.\n\nShift + Left Click to export your bag and bank data.\n\nCtrl + Left Click to mark a fight as a wipe."
|
adam@17
|
76
|
yellowfive@11
|
77 --config.lua
|
yellowfive@11
|
78 --frame:SetScript
|
yellowfive@11
|
79 L.AMR_CONFIG_EXIMPORT = "Mr. Robot's addon can export your item information to his website, and import your optimizations into the game."
|
yellowfive@11
|
80 L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Show minimap icon"
|
yellowfive@11
|
81 L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimap Icon"
|
yellowfive@11
|
82 L.AMR_CONFIG_CHECKBOX_MINIMAP_DESCRIPTION = "Show the Ask Mr. Robot minimap icon."
|
yellowfive@11
|
83 L.AMR_CONFIG_CHECKBOX_AUTOAH_LABEL = "Automatically show Mr. Robot's shopping list at the auction house"
|
yellowfive@11
|
84 L.AMR_CONFIG_CHECKBOX_AUTOAH_TOOLTIP_TITLE = "Auto-Show Shopping List"
|
yellowfive@11
|
85 L.AMR_CONFIG_CHECKBOX_AUTOAH_DESCRIPTION = "When your shopping list still has things left to buy, automatically show Mr. Robot's shopping list when you visit the auction house."
|
yellowfive@49
|
86
|
yellowfive@11
|
87 --wait.lua
|
yellowfive@11
|
88 --wait
|
yellowfive@11
|
89 L.AMR_WAIT_BAD_ARGUMENTS = "Bad Arguments to amr__wait"
|
yellowfive@49
|
90
|
yellowfive@11
|
91 --dir ui
|
yellowfive@11
|
92 --ui/CombatLogTab.lua
|
yellowfive@11
|
93 L.AMR_COMBATLOGTAB_COMBAT_LOGGING = "Combat Logging"
|
yellowfive@11
|
94 L.AMR_COMBATLOGTAB_START_LOGGING = "Start Logging"
|
yellowfive@11
|
95 L.AMR_COMBATLOGTAB_CURRENTLY_LOGGING = "|c0000ff00Currently Logging|r"
|
yellowfive@11
|
96 L.AMR_COMBATLOGTAB_STOP_LOGGING = "Stop Logging"
|
yellowfive@11
|
97 L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_LABEL = "Always log Siege of Orgrimmar"
|
yellowfive@11
|
98 L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_TOOLTIP_TITLE = "Auto-Log Siege of Orgrimmar"
|
yellowfive@11
|
99 L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_DESCRIPTION = "Automatically start logging when you enter SoO and stop when you leave SoO.\n\nNote that you should disable similar features in other addons to avoid conflicts."
|
yellowfive@11
|
100 L.AMR_COMBATLOGTAB_HEADLINE_OVER_BUTTON = "Save Characters"
|
yellowfive@11
|
101 L.AMR_COMBATLOGTAB_SAVE_CHARACTER = "Save Character Data"
|
yellowfive@11
|
102 L.AMR_COMBATLOGTAB_INSTRUCTIONS = "INSTRUCTIONS"
|
yellowfive@11
|
103 L.AMR_COMBATLOGTAB_INSTRUCTIONS_1 = "1. Use the Start/Stop buttons or check 'Always log Siege of Orgrimmar'."
|
yellowfive@11
|
104 L.AMR_COMBATLOGTAB_INSTRUCTIONS_2 = "2. When you are ready to upload, press 'Save Character Data'. *"
|
yellowfive@11
|
105 L.AMR_COMBATLOGTAB_INSTRUCTIONS_3 = "3. Exit World of Warcraft. **"
|
yellowfive@11
|
106 L.AMR_COMBATLOGTAB_INSTRUCTIONS_4 = "4. Launch the Ask Mr. Robot client and follow the instructions. ***"
|
yellowfive@11
|
107 L.AMR_COMBATLOGTAB_INSTRUCTIONS_5 = "|c00999999* This will reload your UI to ensure that all collected data is saved to disk. This step is not necessary if you log out of the game before uploading.|r"
|
yellowfive@11
|
108 L.AMR_COMBATLOGTAB_INSTRUCTIONS_6 = "|c00999999** Exiting WoW before uploading your combat log is optional, but highly recommended. This prevents your log file from getting ridiculously large and slowing down your uploads.|r"
|
yellowfive@11
|
109 L.AMR_COMBATLOGTAB_INSTRUCTIONS_7 = "|c00999999*** You can download the client program at|r |c003333ffhttp://www.askmrrobot.com/wow/combatlog/upload|r|c00999999.|r"
|
yellowfive@11
|
110 L.AMR_COMBATLOGTAB_IS_LOGGING = "You are now logging combat, and Mr. Robot is logging character data for your raid."
|
yellowfive@11
|
111 L.AMR_COMBATLOGTAB_STOPPED_LOGGING = "Combat logging has been stopped."
|
yellowfive@11
|
112 L.AMR_COMBATLOGTAB_INFIGHT = "In-Fight Options"
|
yellowfive@11
|
113 L.AMR_COMBATLOGTAB_WIPE_1 = "|c00aaaaaaDeclare a wipe |r|c00ffffffbefore|r|c00aaaaaa you die on purpose.|r"
|
yellowfive@11
|
114 L.AMR_COMBATLOGTAB_WIPE_2 = "|c00aaaaaaThis will ignore intentional deaths & damage.|r"
|
yellowfive@11
|
115 L.AMR_COMBATLOGTAB_WIPE_3 = "|c00999999This feature must be used by the person logging combat.|r"
|
yellowfive@11
|
116 L.AMR_COMBATLOGTAB_SAVE_CHARACTER_INFO = "While you are logging combat, character & gear data is collected for everyone in the raid who has this mod installed. At the end of the raid, the person logging needs to click the button to save the data so it can be uploaded."
|
yellowfive@11
|
117 L.AMR_COMBATLOGTAB_LASTWIPE = '|c00ff0000Last wipe called on %s at %s.|r'
|
yellowfive@11
|
118 L.AMR_COMBATLOGTAB_WIPE_CHAT = "It's a wipe, everybody die!"
|
yellowfive@11
|
119 L.AMR_COMBATLOGTAB_WIPE_MSG = "[AskMrRobot] Manual wipe called at %s"
|
yellowfive@11
|
120 L.AMR_COMBATLOGTAB_NOWIPES = '[AskMrRobot] There is no recent manual wipe to remove'
|
yellowfive@11
|
121 L.AMR_COMBATLOGTAB_UNWIPE_MSG = "[AskMrRobot] Manual wipe at %s was removed"
|
yellowfive@11
|
122 --ui/EnchantTab.lua
|
yellowfive@11
|
123 L.AMR_ENCHANTTAB_ENCHANTS = "Enchants"
|
yellowfive@11
|
124 L.AMR_ENCHANTTAB_100_OPTIMAL = "Your enchants are 100% optimal!"
|
yellowfive@11
|
125 L.AMR_ENCHANTTAB_SLOT = "Slot"
|
yellowfive@11
|
126 L.AMR_ENCHANTTAB_CURRENT = "Current"
|
yellowfive@11
|
127 L.AMR_ENCHANTTAB_OPTIMIZED = "Optimized"
|
yellowfive@11
|
128 L.AMR_ENCHANTTAB_TESTSLOT = "TestSlot"
|
yellowfive@11
|
129 --ui/ExportTab.lua
|
adam@17
|
130 L.AMR_EXPORTTAB_EXPORT_TITLE = "Export your character to AskMrRobot.com"
|
yellowfive@11
|
131 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_1 = "1. Open your bank"
|
yellowfive@11
|
132 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Copy the text below by pressing Ctrl+C (or Cmd+C on a Mac)"
|
adam@21
|
133 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_3 = "3. Go to |c00ffd100AskMrRobot.com|r and click the green '|c0000ff00Import from Addon|r' button found just above your character name. Paste the text into the window that pops up."
|
yellowfive@11
|
134 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_NOTE = "NOTE: If you change something while this window is open, press the Update button below to generate a new export string."
|
yellowfive@49
|
135 L.AMR_EXPORTTAB_UPDATE = "Update"
|
adam@17
|
136
|
yellowfive@11
|
137 --ui/GemTab.lua
|
yellowfive@11
|
138 --popup autogem finished
|
yellowfive@11
|
139 L.AMR_GEMTAB_FINISHED = "Mr. Robot finished auto-gemming. \rIf some items aren't gemmed, you may need to acquire more gems. \rIf your belt isn't gemmed, you may still need to buy a belt buckle."
|
yellowfive@11
|
140 L.AMR_GEMTAB_BUTTON_OK = "Ok"
|
yellowfive@11
|
141 --popup autogem once
|
yellowfive@11
|
142 L.AMR_GEMTAB_AUTOGEMMING_IN_PROGRESS = "Autogemming already in progress."
|
yellowfive@11
|
143 --constructor
|
yellowfive@11
|
144 L.AMR_GEMTAB_GEMS = "Gems"
|
yellowfive@11
|
145 L.AMR_GEMTAB_OPTIMAL = "Your gems are 100% optimal! You are truly, truly outrageous."
|
yellowfive@11
|
146 L.AMR_GEMTAB_X_OPTIMIZE = "You have X gems to optimize"
|
yellowfive@11
|
147 L.AMR_GEMTAB_AUTOGEM_BUTTON = "Auto Gem! (BETA)"
|
yellowfive@11
|
148 L.AMR_GEMTAB_PREFER_PERFECT = "Prefer Perfect"
|
yellowfive@11
|
149 L.AMR_GEMTAB_SLOT = "Slot"
|
yellowfive@11
|
150 L.AMR_GEMTAB_CURRENT = "Current"
|
yellowfive@11
|
151 L.AMR_GEMTAB_OPTIMIZED = "Optimized"
|
yellowfive@11
|
152 --Update
|
yellowfive@11
|
153 L.AMR_GEMTAB_TO_OPTIMIZE = "You have %d \1244gem:gems; to optimize"
|
yellowfive@11
|
154 --ui/HelpTab.lua
|
yellowfive@11
|
155 L.AMR_HELPTAB_TITLE = "Help"
|
adam@17
|
156 L.AMR_HELPTAB_LINK = "Visit |c003333ffhttp://blog.askmrrobot.com/addon/|r for a full tutorial and to ask questions.\r"
|
adam@17
|
157 L.AMR_HELPTAB_Q1 = "|c00999999Q:|r The armory won’t update my character on your website. Is there a workaround?"
|
adam@17
|
158 L.AMR_HELPTAB_A1 = "|c0066dd66A:|r Yes. Go to the |c00ffd100Export|r section of this addon. Copy the text in the box. Then go to our |c00ffd100website|r, load your character, and click the green '|c0000ff00Import (from addon)|r' button, found just above your character name. Paste the text there. That process takes a snapshot of your current in-game character and imports it to the website!"
|
adam@17
|
159 L.AMR_HELPTAB_Q2 = "|c00999999Q:|r Do I have to get a new text-string every time I need to optimize?"
|
adam@17
|
160 L.AMR_HELPTAB_A2 = "|c0066dd66A:|r Yes. Go to the |c00ffd100website|r and click the green '|c0000ff00Update from Armory|r' button found just above your character name, to make sure you have updated gear. Optimize your gear and then click the blue '|c0018C0F7Export to Addon|r' button found to the right of your gear, in the purple '|c00BF28D6Now What?|r section. Return to this |c00ffd100addon|r, go to the '|c00ffd100Load a Gear Set|r' tab and paste the text in the box."
|
adam@17
|
161 L.AMR_HELPTAB_Q3 = "|c00999999Q:|r Can I send my shopping list to an alt?"
|
adam@17
|
162 L.AMR_HELPTAB_A3 = '|c0066dd66A:|r Yes, go to the shopping list tab and select the "mail" option in the drop down. You can mail the list to your alt.'
|
yellowfive@31
|
163 L.AMR_HELPTAB_Q4 = "|c00999999Q:|r I am in the middle of a raid and just won a piece of loot. Can I optimize really quickly?"
|
adam@17
|
164 L.AMR_HELPTAB_A4 = "|c0066dd66A:|r Yes! You'll want to read the tutorial on that here: \r|c003333ffhttp://blog.askmrrobot.com/addon#raid"
|
adam@17
|
165 L.AMR_HELPTAB_Q5 = "|c00999999Q:|r Where is auto gemming?"
|
adam@17
|
166 L.AMR_HELPTAB_A5 = "|c0066dd66A:|r We have temporarily removed it. We plan to bring it back for WoD"
|
adam@17
|
167 L.AMR_HELPTAB_Q6 = "|c00999999Q:|r Is Mr. Robot updated?"
|
adam@17
|
168 L.AMR_HELPTAB_A6 = "|c0066dd66A:|r Yes! For more info, go to \r|c003333ffhttp://blog.askmrrobot.com/2014/10/what-to-do-for-6-0-2/"
|
yellowfive@11
|
169 --ui/ImportTab.lua
|
yellowfive@11
|
170 --new
|
adam@17
|
171 L.AMR_IMPORTTAB_BUTTON = "Load Gear"
|
adam@17
|
172 L.AMR_IMPORTTAB_TITLE = "Load a gear set from the website"
|
adam@17
|
173 L.AMR_IMPORTTAB_INSTRUCTIONS_1 = "1. Click the blue '|c0018C0F7Send to Addon|r' button on our |c00BF28D6website|r. It's found on the right side in the '|c33ffffffNow What?|r' section. Copy the text in the box that pops up.|n|c00999999To copy, press ctrl + c (or cmd + c on a mac)|r"
|
adam@17
|
174 L.AMR_IMPORTTAB_INSTRUCTIONS_2 = "2. Then return to this window in the |c00ffd100addon|r. Paste the text in the box below, then click the 'Load Gear' button.|n|c00999999To paste, press ctrl + v in the window (or cmd + v on a mac)|r"
|
yellowfive@49
|
175
|
yellowfive@11
|
176 --ui/ShoppingListTab
|
yellowfive@11
|
177 --popup mail
|
yellowfive@11
|
178 L.AMR_SHOPPINGLISTTAB_OPEN_MAIL = "You need to open the mail window for this to work"
|
yellowfive@11
|
179 L.AMR_SHOPPINGLISTTAB_BUTTON_OK = "Ok"
|
yellowfive@11
|
180 --new
|
yellowfive@11
|
181 L.AMR_SHOPPINGLISTTAB_TITLE = "Shopping List"
|
yellowfive@11
|
182 L.AMR_SHOPPINGLISTTAB_BUTTON_SEND = "send it!"
|
yellowfive@11
|
183 L.AMR_SHOPPINGLISTTAB_ENCHANT_MATERIALS = "Enchant Materials"
|
yellowfive@11
|
184 L.AMR_SHOPPINGLISTTAB_ENCHANTS = "Enchants"
|
yellowfive@11
|
185 L.AMR_SHOPPINGLISTTAB_GEMS = "Gems"
|
yellowfive@11
|
186 L.AMR_SHOPPINGLISTTAB_INCLUDE = "Include:"
|
yellowfive@11
|
187 L.AMR_SHOPPINGLISTTAB_SEND_LIST_TO = "Send list to"
|
yellowfive@11
|
188 L.AMR_SHOPPINGLISTTAB_WHISPER_CHANNEL = "Whisper to a friend or send to a channel, like /raid or /guild."
|
yellowfive@11
|
189 L.AMR_SHOPPINGLISTTAB_SEND_JEWELCRAFT_ENCHANTER = "Send to a Jewelcraft or Enchanter friend :)"
|
yellowfive@11
|
190 L.AMR_SHOPPINGLISTTAB_TOTAL = "Total"
|
yellowfive@11
|
191 L.AMR_SHOPPINGLISTTAB_DONE = "YOUR SHOPPING IS ALL DONE!"
|
yellowfive@11
|
192 L.AMR_SHOPPINGLISTTAB_A_ROBOTS_WISHLIST = "Unless you want to buy me a birthday present! I like titanium bolts and robot dogs... Or was it titanium dogs and robot bolts..."
|
yellowfive@11
|
193 L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND = "a friend"
|
yellowfive@11
|
194 L.AMR_SHOPPINGLISTTAB_DROPDOWN_PARTY = "party"
|
yellowfive@11
|
195 L.AMR_SHOPPINGLISTTAB_DROPDOWN_RAID = "raid"
|
yellowfive@11
|
196 L.AMR_SHOPPINGLISTTAB_DROPDOWN_GUILD = "guild"
|
yellowfive@11
|
197 L.AMR_SHOPPINGLISTTAB_DROPDOWN_CHANNEL = "channel"
|
yellowfive@11
|
198 L.AMR_SHOPPINGLISTTAB_DROPDOWN_MAIL = "mail"
|
yellowfive@11
|
199 L.AMR_SHOPPINGLISTTAB_MAIL_ROBOT_MESSAGE = "Mr. Robot says I need the following to optimize my gear:\n"
|
yellowfive@11
|
200 L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_GE = 'Request for gems and enchants'
|
yellowfive@11
|
201 L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_G = 'Request for gems'
|
yellowfive@11
|
202 L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_E = 'Request for enchants'
|
yellowfive@11
|
203 L.AMR_SHOPPINGLISTTAB_CHAT_ROBOT_MESSAGE = "Mr. Robot says I need"
|
yellowfive@11
|
204 --ui/SummaryTab.lua
|
yellowfive@11
|
205 L.AMR_SUMMARYTAB_TITLE = "Summary"
|
yellowfive@11
|
206 L.AMR_SUMMARYTAB_NO_IMPORT = "You have no optimizations imported."
|
adam@17
|
207 L.AMR_SUMMARYTAB_GET_STARTED = 'Click the |c00ffd100Load|r tab to get started.'
|
yellowfive@11
|
208 L.AMR_SUMMARYTAB_GO_UPGRADE = "Please upgrade the following items:"
|
yellowfive@11
|
209 L.AMR_SUMMARYTAB_SLOT = "Slot"
|
yellowfive@11
|
210 L.AMR_SUMMARYTAB_ITEM_NAME = "Item Name"
|
yellowfive@11
|
211 L.AMR_SUMMARYTAB_OPTIMAL = "Congratulations! You are 100% optimal"
|
yellowfive@11
|
212 L.AMR_SUMMARYTAB_LAST_IMPORT = "Last import: ?\rThese optimizations are for ?"
|
yellowfive@11
|
213 L.AMR_SUMMARYTAB_OPTIMIZATIONS_TO_GO = "You have ? optimizations to make:"
|
yellowfive@11
|
214 L.AMR_SUMMARYTAB_GEMS_TO_GO = "? gems"
|
yellowfive@11
|
215 L.AMR_SUMMARYTAB_ENCHANTS_TO_GO = "? enchants"
|
adam@17
|
216 L.AMR_SUMMARYTAB_VIEW_TABS = "View the Gem and Enchant tabs for suggested optimizations."
|
yellowfive@11
|
217 L.AMR_SUMMARYTAB_GEMCOUNT = "%d \1244gem:gems;"
|
yellowfive@11
|
218 L.AMR_SUMMARYTAB_ENCHANTCOUNT = "%d \1244enchant:enchants;"
|
yellowfive@11
|
219 L.AMR_SUMMARYTAB_OPTIMIZATIONCOUNT = "You have %d \1244optimization:optimizations; to make:"
|
yellowfive@11
|
220 L.AMR_SUMMARYTAB_LAST_IMPORT_1 = "Last import: %s\rThese optimizations are for %s"
|
yellowfive@11
|
221 L.AMR_SUMMARYTAB_LAST_IMPORT_2 = "Last import: %s\rThese optimizations are for %s's..."
|
yellowfive@11
|
222 L.AMR_SUMMARYTAB_LAST_IMPORT_PSPEC = "Primary Spec - %s"
|
yellowfive@11
|
223 L.AMR_SUMMARYTAB_LAST_IMPORT_SSPEC = "Secondary Spec - %s"
|
yellowfive@11
|
224 L.AMR_SUMMARYTAB_DIFF_REALM = "a different realm: %s"
|
yellowfive@11
|
225 L.AMR_SUMMARYTAB_DIFF_TALENT = "different talents"
|
yellowfive@11
|
226 L.AMR_SUMMARYTAB_DIFF_GLYPHS = "different glyphs"
|
yellowfive@11
|
227 L.AMR_SUMMARYTAB_DIFF_GEAR = "Mr. Robot optimized a different set of gear"
|
yellowfive@11
|
228 L.AMR_SUMMARYTAB_DIFF_AND = "and"
|
yellowfive@11
|
229 L.AMR_SUMMARYTAB_DIFF_PLEASE_EQ = ". Please equip the following items before proceeding with the optimizations."
|
yellowfive@11
|
230 L.AMR_SUMMARYTAB_DIFF_CHECK_CHAR = "WARNING: Please check your character before proceeding:"
|
yellowfive@11
|
231 L.AMR_SUMMARYTAB_DIFF_OPTIMIZED_FOR = "Mr. Robot optimized for "
|
yellowfive@11
|
232 --showImportError
|
yellowfive@11
|
233 L.AMR_SUMMARYTAB_IMPORT_NOT_WORK = 'Error! Your import did not work:|n|n%s'
|
yellowfive@11
|
234 --ui/RobotStamp.lua
|
yellowfive@11
|
235 L.AMR_ROBOTSTAMP_TEXT = "ROBOT STAMP OF APPROVAL"
|
yellowfive@11
|
236 L.AMR_ROBOTSTAMP_GEMS = "Your gems are 100% optimal! You are truly, truly outrageous." |