comparison localization/localization.en.lua @ 17:e77e01abce98

Warlords of Draenor pre-patch
author Adam tegen <adam.tegen@gmail.com>
date Mon, 13 Oct 2014 21:28:32 -0500
parents ece9167c0d1c
children a400b906acca
comparison
equal deleted inserted replaced
16:9793e8b683d2 17:e77e01abce98
11 end) 11 end)
12 12
13 return f:format(unpack(order)) 13 return f:format(unpack(order))
14 end 14 end
15 15
16 -- stat strings for e.g. displaying gem/enchant abbreviations
17 L.AMR_STAT_SHORT_STRINGS = {
18 ["Strength"] = "Str",
19 ["Agility"] = "Agi",
20 ["Intellect"] = "Int",
21 ["CriticalStrike"] = "Crit",
22 ["Haste"] = "Haste",
23 ["Mastery"] = "Mastery",
24 ["Multistrike"] = "Multi",
25 ["Versatility"] = "Vers",
26 ["BonusArmor"] = "Armor",
27 ["Spirit"] = "Spirit",
28 ["Dodge"] = "Dodge",
29 ["Parry"] = "Parry",
30 ["MovementSpeed"] = "Speed",
31 ["Avoidance"] = "Avoid",
32 ["Stamina"] = "Stam",
33 ["Armor"] = "Armor",
34 ["AttackPower"] = "AP",
35 ["SpellPower"] = "SP",
36 ["PvpResilience"] = "PvP Res",
37 ["PvpPower"] = "PvP Pow",
38 }
39
40 -- AskMrRobot.lua
41 L.AMR_IMPORT_ERROR_EMPTY = "The data string is empty."
42 L.AMR_IMPORT_ERROR_FORMAT = "The data string is not in the correct format."
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."
44 L.AMR_IMPORT_ERROR_CHAR = "The data string is for %s, but you are %s!"
45 L.AMR_IMPORT_ERROR_RACE = "It looks your race may have changed. Please go the website and re-optimize."
46 L.AMR_IMPORT_ERROR_FACTION = "It looks your faction may have changed. Please go the website and re-optimize."
47 L.AMR_IMPORT_ERROR_LEVEL = "It looks your level may have changed. Please go the website and re-optimize."
48 L.AMR_IMPORT_ERROR_SPEC = "Please change your spec to %s to view this optimization."
49 L.AMR_IMPORT_ERROR_TALENT = "It looks like your talents may have changed. Please go the website and re-optimize."
50 L.AMR_IMPORT_ERROR_GLYPH = "It looks like your glyphs may have changed. Please go the website and re-optimize."
51 --SlashCmdList.AMR
52 L.AMR_SLASH_COMMAND_TEXT_1 = 'Available AskMrRobot slash commands:\n'
53 L.AMR_SLASH_COMMAND_TEXT_2 = ' /amr show -- show the main window\n'
54 L.AMR_SLASH_COMMAND_TEXT_3 = ' /amr hide -- hide the main window\n'
55 L.AMR_SLASH_COMMAND_TEXT_4 = ' /amr toggle -- toggle the main window\n'
56 L.AMR_SLASH_COMMAND_TEXT_5 = ' /amr wipe -- logs a raid wipe. Used to ignore events in the fight after this point\n'
57 L.AMR_SLASH_COMMAND_TEXT_6 = ' /amr unwipe -- undo the last wipe command\n'
58 L.AMR_SLASH_COMMAND_TEXT_7 = ' /amr export -- export character, bag, and bank data (opens the export copy/paste window)'
59
16 --AskMrRobotUi.lua 60 --AskMrRobotUi.lua
61
62 --createMainMenu
63 L.AMR_UI_MENU_EXPORT = "Export"
64 L.AMR_UI_MENU_GEAR = "Load a Gear Set"
65 L.AMR_UI_MENU_COMBAT_LOG = "Combat Log"
66 L.AMR_UI_MENU_HELP = "Help"
67
17 --validateInput 68 --validateInput
18 L.AMR_UI_IMPORT_ERROR_IMPROPER = "Oops, you didn't have proper import text" 69 L.AMR_UI_IMPORT_ERROR_IMPROPER = "Oops, you didn't have proper import text"
19 L.AMR_UI_IMPORT_ERROR_IMPROPER_GOTO = "Please go back to AskMrRobot.com and grab optimizations for this character" 70 L.AMR_UI_IMPORT_ERROR_IMPROPER_GOTO = "Please go back to AskMrRobot.com and grab optimizations for this character"
20 L.AMR_UI_IMPORT_ERROR_CHARACTER = "Oops, you've imported optimizations for %s" 71 L.AMR_UI_IMPORT_ERROR_CHARACTER = "Oops, you've imported optimizations for %s"
21 L.AMR_UI_IMPORT_ERROR_CHARACTER_GOTO = "Please go back to AskMrRobot.com and grab optimizations for this character, who is much better looking anyway!" 72 L.AMR_UI_IMPORT_ERROR_CHARACTER_GOTO = "Please go back to AskMrRobot.com and grab optimizations for this character, who is much better looking anyway!"
27 L.AMR_UI_IMPORT_ERROR_PROFESSIONS_GOTO = "You will need to make sure your in-game professions match the professions on AskMrRobot.com when importing." 78 L.AMR_UI_IMPORT_ERROR_PROFESSIONS_GOTO = "You will need to make sure your in-game professions match the professions on AskMrRobot.com when importing."
28 L.AMR_UI_IMPORT_ERROR_SPEC = "WARNING! Please check your character before proceeding:" 79 L.AMR_UI_IMPORT_ERROR_SPEC = "WARNING! Please check your character before proceeding:"
29 L.AMR_UI_IMPORT_ERROR_SPEC_CHANGE = "Change your spec to %s." 80 L.AMR_UI_IMPORT_ERROR_SPEC_CHANGE = "Change your spec to %s."
30 L.AMR_UI_IMPORT_ERROR_SPEC_UNEXPECTED = "AskMrRobot.com did not expect to see a specialization." 81 L.AMR_UI_IMPORT_ERROR_SPEC_UNEXPECTED = "AskMrRobot.com did not expect to see a specialization."
31 --createImportDetailsErrorTab 82 --createImportDetailsErrorTab
32 L.AMR_UI_IMPORT_ERROR_NO_IMPORT = 'You have no optimizations imported. Click the "Import" tab to get started.' 83 L.AMR_UI_IMPORT_ERROR_NO_IMPORT = 'You have no optimizations imported. Click the |c00ffd100Load|r tab to get started.'
33 L.AMR_UI_IMPORT_ERROR_CANT_OPTIMIZE = "I can't optimize yet. Please go to the summary tab for more information." 84 L.AMR_UI_IMPORT_ERROR_CANT_OPTIMIZE = "I can't optimize yet. Please go to the summary tab for more information."
34 --createTabButtons 85
35 L.AMR_UI_BUTTON_IMPORT = "Import" 86 L.AMR_UI_BUTTON_IMPORT = "Load"
36 L.AMR_UI_BUTTON_SUMMARY = "Summary" 87 L.AMR_UI_BUTTON_SUMMARY = "Summary"
37 L.AMR_UI_BUTTON_GEMS = "Gems" 88 L.AMR_UI_BUTTON_GEMS = "Gems"
38 L.AMR_UI_BUTTON_ENCHANTS = "Enchants" 89 L.AMR_UI_BUTTON_ENCHANTS = "Enchants"
39 L.AMR_UI_BUTTON_REFORGES = "Reforges"
40 L.AMR_UI_BUTTON_SHOPPING_LIST = "Shopping List" 90 L.AMR_UI_BUTTON_SHOPPING_LIST = "Shopping List"
41 L.AMR_UI_BUTTON_BEST_IN_BAGS = "Best in Bags"
42 L.AMR_UI_BUTTON_COMBAT_LOG = "Combat Log" 91 L.AMR_UI_BUTTON_COMBAT_LOG = "Combat Log"
43 L.AMR_UI_BUTTON_HELP = "Help" 92 L.AMR_UI_BUTTON_HELP = "Help"
44 --AskMrRobot.lua 93 --AskMrRobot.lua
45 --eventListener:OnEvent 94 --eventListener:OnEvent
46 L.AMR_ON_EVENT_LOADED = "Loaded Ask Mr. Robot %s" 95 L.AMR_ON_EVENT_LOADED = "Loaded Ask Mr. Robot v%s"
47 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." 96 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."
48 --SlashCmdList.AMR 97
49 L.AMR_SLASH_COMMAND_TEXT_1 = 'Available AskMrRobot slash commands:\n'
50 L.AMR_SLASH_COMMAND_TEXT_2 = ' /amr show -- show the main window\n'
51 L.AMR_SLASH_COMMAND_TEXT_3 = ' /amr hide -- hide the main window\n'
52 L.AMR_SLASH_COMMAND_TEXT_4 = ' /amr toggle -- toggle the main window\n'
53 L.AMR_SLASH_COMMAND_TEXT_5 = ' /amr wipe -- logs a raid wipe. Used to ignore events in the fight after this point\n'
54 L.AMR_SLASH_COMMAND_TEXT_6 = ' /amr unwipe -- undo the last wipe command\n'
55 L.AMR_SLASH_COMMAND_TEXT_7 = ' /amr export -- export bag and bank data (uses your last selected method and either opens the copy/paste window, or saves and reloads ui)'
56 --config.lua 98 --config.lua
57 --frame:SetScript 99 --frame:SetScript
58 L.AMR_CONFIG_EXIMPORT = "Mr. Robot's addon can export your item information to his website, and import your optimizations into the game." 100 L.AMR_CONFIG_EXIMPORT = "Mr. Robot's addon can export your item information to his website, and import your optimizations into the game."
59 L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Show minimap icon" 101 L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Show minimap icon"
60 L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimap Icon" 102 L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimap Icon"
402 L.AMR_ENCHANTTAB_100_OPTIMAL = "Your enchants are 100% optimal!" 444 L.AMR_ENCHANTTAB_100_OPTIMAL = "Your enchants are 100% optimal!"
403 L.AMR_ENCHANTTAB_SLOT = "Slot" 445 L.AMR_ENCHANTTAB_SLOT = "Slot"
404 L.AMR_ENCHANTTAB_CURRENT = "Current" 446 L.AMR_ENCHANTTAB_CURRENT = "Current"
405 L.AMR_ENCHANTTAB_OPTIMIZED = "Optimized" 447 L.AMR_ENCHANTTAB_OPTIMIZED = "Optimized"
406 L.AMR_ENCHANTTAB_TESTSLOT = "TestSlot" 448 L.AMR_ENCHANTTAB_TESTSLOT = "TestSlot"
449 L.AMR_ENCHANTTAB_NOTE = "Hit and expertise have been removed from gear, gems and enchants. If you had hit or expertise anywhere, it has automatically been replaced with another stat."
407 --ui/ExportTab.lua 450 --ui/ExportTab.lua
408 L.AMR_EXPORTTAB_EXPORT_BB = "Export Gear for Best in Bags" 451 L.AMR_EXPORTTAB_EXPORT_TITLE = "Export your character to AskMrRobot.com"
409 L.AMR_EXPORTTAB_COPY_PASTE = "Copy/Paste"
410 L.AMR_EXPORTTAB_AMR_CLIENT = "AMR Client"
411 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT = "COPY/PASTE EXPORT"
412 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_1 = "1. Open your bank" 452 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_1 = "1. Open your bank"
413 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Copy the text below by pressing Ctrl+C (or Cmd+C on a Mac)" 453 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Copy the text below by pressing Ctrl+C (or Cmd+C on a Mac)"
414 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_3 = "3. Go to AskMrRobot.com and paste into the IMPORT window" 454 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_3 = "3. Go to |c00ffd100AskMrRobot.com|r and click the green '|c0000ff00Import from Armory|r' button found just above your character name. Paste the text into the window that pops up."
415 L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_4 = "(located to the right of your character name near the top of the web page, see screenshot)"
416 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." 455 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."
417 L.AMR_EXPORTTAB_AMR_CLIENT_EXPORT = "AMR CLIENT EXPORT" 456
418 L.AMR_EXPORTTAB_AMR_CLIENT_EXPORT_1 = "1. Open your bank"
419 L.AMR_EXPORTTAB_AMR_CLIENT_EXPORT_2 = "2. Press the button below to update your AskMrRobot.lua file"
420 L.AMR_EXPORTTAB_AMR_CLIENT_EXPORT_3 = "3. Go to AskMrRobot.com and press REFRESH"
421 L.AMR_EXPORTTAB_AMR_CLIENT_EXPORT_4 = "(located to the right of your character name near the top of the web page, see screenshot:)"
422 --ui/GemTab.lua 457 --ui/GemTab.lua
423 --popup autogem finished 458 --popup autogem finished
424 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." 459 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."
425 L.AMR_GEMTAB_BUTTON_OK = "Ok" 460 L.AMR_GEMTAB_BUTTON_OK = "Ok"
426 --popup autogem once 461 --popup autogem once
432 L.AMR_GEMTAB_AUTOGEM_BUTTON = "Auto Gem! (BETA)" 467 L.AMR_GEMTAB_AUTOGEM_BUTTON = "Auto Gem! (BETA)"
433 L.AMR_GEMTAB_PREFER_PERFECT = "Prefer Perfect" 468 L.AMR_GEMTAB_PREFER_PERFECT = "Prefer Perfect"
434 L.AMR_GEMTAB_SLOT = "Slot" 469 L.AMR_GEMTAB_SLOT = "Slot"
435 L.AMR_GEMTAB_CURRENT = "Current" 470 L.AMR_GEMTAB_CURRENT = "Current"
436 L.AMR_GEMTAB_OPTIMIZED = "Optimized" 471 L.AMR_GEMTAB_OPTIMIZED = "Optimized"
472 L.AMR_GEMTAB_NOTE = "Hit and expertise have been removed from gear, gems and enchants. If you had hit or expertise anywhere, it has automatically been replaced with another stat."
437 --Update 473 --Update
438 L.AMR_GEMTAB_TO_OPTIMIZE = "You have %d \1244gem:gems; to optimize" 474 L.AMR_GEMTAB_TO_OPTIMIZE = "You have %d \1244gem:gems; to optimize"
439 --ui/HelpTab.lua 475 --ui/HelpTab.lua
440 L.AMR_HELPTAB_TITLE = "Help" 476 L.AMR_HELPTAB_TITLE = "Help"
441 L.AMR_HELPTAB_LINK = "Visit |c003333ffhttp://blog.askmrrobot.com/addon/|r for a full tutorial and to ask questions.\r\r" 477 L.AMR_HELPTAB_LINK = "Visit |c003333ffhttp://blog.askmrrobot.com/addon/|r for a full tutorial and to ask questions.\r"
442 L.AMR_HELPTAB_Q1 = "|c00999999Q:|r Do I have to get a new text-string every time I need to optimize?\r" 478 L.AMR_HELPTAB_Q1 = "|c00999999Q:|r The armory won’t update my character on your website. Is there a workaround?"
443 L.AMR_HELPTAB_A1 = '|c0066dd66A:|r Yes. Go to the website and click the green "Update from Armory" button to the left of your character to make sure you have the most up-to-date gear. Optimize your gear and then click the "Export to Addon" button to get your new text-string.\r\r' 479 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!"
444 L.AMR_HELPTAB_Q2 = "|c00999999Q:|r The belt buckle didn't show up in my list.\r" 480 L.AMR_HELPTAB_Q2 = "|c00999999Q:|r Do I have to get a new text-string every time I need to optimize?"
445 L.AMR_HELPTAB_A2 = "|c0066dd66A:|r Correct, it's actually quite hard to detect it's status in-game, believe it or not. But we're working on a clever way to detect it!\r\r" 481 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."
446 L.AMR_HELPTAB_Q3 = "|c00999999Q:|r My cogwheels/tinkers didn't show up.\r" 482 L.AMR_HELPTAB_Q3 = "|c00999999Q:|r Can I send my shopping list to an alt?"
447 L.AMR_HELPTAB_A3 = "|c0066dd66A:|r Correct, we're working on adding those into the list as well... the problem is Mr. Robot has been using them to build other robots...\r\r" 483 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.'
448 L.AMR_HELPTAB_Q4 = "|c00999999Q:|r Can I send my shopping list to an alt?\r" 484 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 quick"
449 L.AMR_HELPTAB_A4 = '|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.\r\r' 485 L.AMR_HELPTAB_A4 = "|c0066dd66A:|r Yes! You'll want to read the tutorial on that here: \r|c003333ffhttp://blog.askmrrobot.com/addon#raid"
450 L.AMR_HELPTAB_Q5 = "|c00999999Q:|r I am in the middle of a raid and just won a piece of loot. Can I optimize really quick\r" 486 L.AMR_HELPTAB_Q5 = "|c00999999Q:|r Where is auto gemming?"
451 L.AMR_HELPTAB_A5= "|c0066dd66A:|r Yes! You'll want to read the tutorial on that here: |c003333ffhttp://blog.askmrrobot.com/addon#raid|r" 487 L.AMR_HELPTAB_A5 = "|c0066dd66A:|r We have temporarily removed it. We plan to bring it back for WoD"
488 L.AMR_HELPTAB_Q6 = "|c00999999Q:|r Is Mr. Robot updated?"
489 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/"
452 --ui/ImportTab.lua 490 --ui/ImportTab.lua
453 --new 491 --new
454 L.AMR_IMPORTTAB_BUTTON = "Import!" 492 L.AMR_IMPORTTAB_BUTTON = "Load Gear"
455 L.AMR_IMPORTTAB_TITLE = "Import Mr. Robot's optimizations" 493 L.AMR_IMPORTTAB_TITLE = "Load a gear set from the website"
456 L.AMR_IMPORTTAB_INSTRUCTIONS_1 = "1. Go to our website, optimize, then click the 'export to addon' button found just above the stats section." 494 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"
457 L.AMR_IMPORTTAB_INSTRUCTIONS_2 = "2. A window will popup, copy the text from that window.\r\r3. Return here and paste the text into the window below. To paste it, hold ctrl + v, or on a mac apple + v.\r\r4. Click the 'Import' button below" 495 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"
458 L.AMR_IMPORTTAB_INSTRUCTIONS_3 = "Paste text from AskMrRobot.com here." 496 L.AMR_IMPORTTAB_EXPORT_INSTRUCTIONS_1 = "1. Select the text in the box below and copy it.|n|c00999999To copy, press ctrl + c (or cmd + c on a mac)|r"
459 --ui/ReforgesTab.lua 497 L.AMR_IMPORTTAB_EXPORT_INSTRUCTIONS_2 = "2. Open your character on our |c00ffd100website|r. Click the green 'import' button found to the left of your characters name. Paste the text in the box the pops up.|n|c00999999To paste: press ctrl + v (or cmd + v on a mac)|r"
460 --popup open reforge 498 L.AMR_IMPORTTAB_EXPORT_NOTE = "NOTE: if you change something while this window is open, press the Update button below to generate a new export string. Make sure you’re recently opened your bags & bank so the addon can scan them."
461 L.AMR_REFORGESTAB_OPEN_WINDOW = "You need to open the reforge window for this to work"
462 L.AMR_REFORGESTAB_BUTTON_OK = "Ok"
463 --new
464 L.AMR_REFORGESTAB_TITLE = "Reforges"
465 L.AMR_REFORGESTAB_OPTIMAL = "Your reforges are 100% optimal!"
466 L.AMR_REFORGESTAB_INSTRUCTION = 'Open a reforge window, then click the "Reforge!" button to do it automatically.'
467 L.AMR_REFORGESTAB_BUTTON = "Reforge!"
468 L.AMR_REFORGESTAB_SLOT = "Slot"
469 L.AMR_REFORGESTAB_OPTIMAL_REFORGE = "Optimal Reforge"
470 L.AMR_REFORGESTAB_RESTORE_THEN = 'Restore, then '
471 L.AMR_REFORGESTAB_TOTAL_COST = "Total reforge cost: ~%d Gold"
472 --ui/ShoppingListTab 499 --ui/ShoppingListTab
473 --popup mail 500 --popup mail
474 L.AMR_SHOPPINGLISTTAB_OPEN_MAIL = "You need to open the mail window for this to work" 501 L.AMR_SHOPPINGLISTTAB_OPEN_MAIL = "You need to open the mail window for this to work"
475 L.AMR_SHOPPINGLISTTAB_BUTTON_OK = "Ok" 502 L.AMR_SHOPPINGLISTTAB_BUTTON_OK = "Ok"
476 --new 503 --new
498 L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_E = 'Request for enchants' 525 L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_E = 'Request for enchants'
499 L.AMR_SHOPPINGLISTTAB_CHAT_ROBOT_MESSAGE = "Mr. Robot says I need" 526 L.AMR_SHOPPINGLISTTAB_CHAT_ROBOT_MESSAGE = "Mr. Robot says I need"
500 --ui/SummaryTab.lua 527 --ui/SummaryTab.lua
501 L.AMR_SUMMARYTAB_TITLE = "Summary" 528 L.AMR_SUMMARYTAB_TITLE = "Summary"
502 L.AMR_SUMMARYTAB_NO_IMPORT = "You have no optimizations imported." 529 L.AMR_SUMMARYTAB_NO_IMPORT = "You have no optimizations imported."
503 L.AMR_SUMMARYTAB_GET_STARTED = 'Click the "Import" tab to get started.' 530 L.AMR_SUMMARYTAB_GET_STARTED = 'Click the |c00ffd100Load|r tab to get started.'
504 L.AMR_SUMMARYTAB_GO_UPGRADE = "Please upgrade the following items:" 531 L.AMR_SUMMARYTAB_GO_UPGRADE = "Please upgrade the following items:"
505 L.AMR_SUMMARYTAB_SLOT = "Slot" 532 L.AMR_SUMMARYTAB_SLOT = "Slot"
506 L.AMR_SUMMARYTAB_ITEM_NAME = "Item Name" 533 L.AMR_SUMMARYTAB_ITEM_NAME = "Item Name"
507 L.AMR_SUMMARYTAB_OPTIMAL = "Congratulations! You are 100% optimal" 534 L.AMR_SUMMARYTAB_OPTIMAL = "Congratulations! You are 100% optimal"
508 L.AMR_SUMMARYTAB_LAST_IMPORT = "Last import: ?\rThese optimizations are for ?" 535 L.AMR_SUMMARYTAB_LAST_IMPORT = "Last import: ?\rThese optimizations are for ?"
509 L.AMR_SUMMARYTAB_OPTIMIZATIONS_TO_GO = "You have ? optimizations to make:" 536 L.AMR_SUMMARYTAB_OPTIMIZATIONS_TO_GO = "You have ? optimizations to make:"
510 L.AMR_SUMMARYTAB_GEMS_TO_GO = "? gems" 537 L.AMR_SUMMARYTAB_GEMS_TO_GO = "? gems"
511 L.AMR_SUMMARYTAB_ENCHANTS_TO_GO = "? enchants" 538 L.AMR_SUMMARYTAB_ENCHANTS_TO_GO = "? enchants"
512 L.AMR_SUMMARYTAB_REFORGES_TO_GO = "? reforges" 539 L.AMR_SUMMARYTAB_REFORGES_TO_GO = "? reforges"
513 L.AMR_SUMMARYTAB_VIEW_TABS = "View the Gem, Enchant and Reforge tabs for suggested optimizations." 540 L.AMR_SUMMARYTAB_VIEW_TABS = "View the Gem and Enchant tabs for suggested optimizations."
514 L.AMR_SUMMARYTAB_GEMCOUNT = "%d \1244gem:gems;" 541 L.AMR_SUMMARYTAB_GEMCOUNT = "%d \1244gem:gems;"
515 L.AMR_SUMMARYTAB_ENCHANTCOUNT = "%d \1244enchant:enchants;" 542 L.AMR_SUMMARYTAB_ENCHANTCOUNT = "%d \1244enchant:enchants;"
516 L.AMR_SUMMARYTAB_REFORGECOUNT = "%d \1244reforge:reforges;"
517 L.AMR_SUMMARYTAB_OPTIMIZATIONCOUNT = "You have %d \1244optimization:optimizations; to make:" 543 L.AMR_SUMMARYTAB_OPTIMIZATIONCOUNT = "You have %d \1244optimization:optimizations; to make:"
518 L.AMR_SUMMARYTAB_LAST_IMPORT_1 = "Last import: %s\rThese optimizations are for %s" 544 L.AMR_SUMMARYTAB_LAST_IMPORT_1 = "Last import: %s\rThese optimizations are for %s"
519 L.AMR_SUMMARYTAB_LAST_IMPORT_2 = "Last import: %s\rThese optimizations are for %s's..." 545 L.AMR_SUMMARYTAB_LAST_IMPORT_2 = "Last import: %s\rThese optimizations are for %s's..."
520 L.AMR_SUMMARYTAB_LAST_IMPORT_PSPEC = "Primary Spec - %s" 546 L.AMR_SUMMARYTAB_LAST_IMPORT_PSPEC = "Primary Spec - %s"
521 L.AMR_SUMMARYTAB_LAST_IMPORT_SSPEC = "Secondary Spec - %s" 547 L.AMR_SUMMARYTAB_LAST_IMPORT_SSPEC = "Secondary Spec - %s"