# HG changeset patch # User yellowfive # Date 1415562498 28800 # Node ID 90175bdc50e611f013cd043886ce6b5dc847bc3a # Parent 7056a71acab3b86fb7852583e3281c188143c271 fixed some localization issues and added new german translation diff -r 7056a71acab3 -r 90175bdc50e6 AskMrRobot.lua --- a/AskMrRobot.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/AskMrRobot.lua Sun Nov 09 11:48:18 2014 -0800 @@ -154,10 +154,15 @@ SendGems = true, SendEnchants = true, SendEnchantMaterials = true, - SendToType = "a friend", + SendToType = L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND, SendTo = "" } end + + -- fix a translation bug in a previous version + if L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND ~= "a friend" and AmrDb.SendSettings.SendToType == "a friend" then + AmrDb.SendSettings.SendToType = L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND + end -- character stuff AskMrRobot.ScanCharacter() diff -r 7056a71acab3 -r 90175bdc50e6 AskMrRobot.toc --- a/AskMrRobot.toc Sun Nov 02 11:56:55 2014 -0800 +++ b/AskMrRobot.toc Sun Nov 09 11:48:18 2014 -0800 @@ -1,7 +1,7 @@ ## Interface: 60000 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 16 +## Version: 17 ## Notes: Exports/Imports data to/from askmrrobot.com. ## URL: www.askmrrobot.com ## DefaultState: Enabled diff -r 7056a71acab3 -r 90175bdc50e6 localization/localization.de.lua --- a/localization/localization.de.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/localization/localization.de.lua Sun Nov 09 11:48:18 2014 -0800 @@ -2,362 +2,78 @@ if GetLocale() ~= "deDE" then return end local _, AskMrRobot = ... local L = AskMrRobot.L; + +-- stat strings for e.g. displaying gem/enchant abbreviations +L.AMR_STAT_SHORT_STRINGS = { + ["Strength"] = "Stä", + ["Agility"] = "Bew", + ["Intellect"] = "Int", + ["CriticalStrike"] = "Krit", + ["Haste"] = "Tempo", + ["Mastery"] = "Meisters", + ["Multistrike"] = "Mehrfach", + ["Versatility"] = "Viels", + ["BonusArmor"] = "B-Rüstung", + ["Spirit"] = "Wille", + ["Dodge"] = "Ausw", + ["Parry"] = "Parieren", + ["MovementSpeed"] = "Geschw", + ["Avoidance"] = "Verm", + ["Stamina"] = "Ausd", + ["Armor"] = "Rüstung", + ["AttackPower"] = "AK", + ["SpellPower"] = "ZM", + ["PvpResilience"] = "PvP Abh", + ["PvpPower"] = "PvP Macht", +} + +-- AskMrRobot.lua +L.AMR_IMPORT_ERROR_EMPTY = "Der Importtext ist leer." +L.AMR_IMPORT_ERROR_FORMAT = "Der Importtext hat ein ungültiges Format." +L.AMR_IMPORT_ERROR_VERSION = "Der Importtext ist für eine alte Version des Addons. Bitte gehe auf die Webseite und generiere einen neuen." +L.AMR_IMPORT_ERROR_CHAR = "Der Importtext ist für %s, aber du bist %s!" +L.AMR_IMPORT_ERROR_RACE = "Es sieht so aus, als hätte sich deine Rasse geändert. Bitte gehe auf die Webseite und optimiere erneut." +L.AMR_IMPORT_ERROR_FACTION = "Es sieht so aus, als hätte sich deine Fraktion geändert. Bitte gehe auf die Webseite und optimiere erneut." +L.AMR_IMPORT_ERROR_LEVEL = "Es sieht so aus, als hätte sich dein Level geändert. Bitte gehe auf die Webseite und optimiere erneut." +L.AMR_IMPORT_ERROR_SPEC = "Bitte ändere deine Spezialisierung auf %s um diese Optimierung zu sehen." +L.AMR_IMPORT_ERROR_TALENT = "Es sieht so aus, als hätten sich deine Talente geändert. Bitte gehe auf die Webseite und optimiere erneut." +L.AMR_IMPORT_ERROR_GLYPH = "Es sieht so aus, als hätten sich deine Glyphen geändert. Bitte gehe auf die Webseite und optimiere erneut." --SlashCmdList.AMR -L.AMR_SLASH_COMMAND_TEXT_1 = 'Available AskMrRobot slash commands:\n' -L.AMR_SLASH_COMMAND_TEXT_2 = ' /amr show -- zeige Fenster\n' -L.AMR_SLASH_COMMAND_TEXT_3 = ' /amr hide -- verstecke Fenster\n' -L.AMR_SLASH_COMMAND_TEXT_4 = ' /amr toggle -- schalte Fenster um' -L.AMR_SLASH_COMMAND_TEXT_5 = ' /amr wipe -- logs a raid wipe. Used to ignore events in the fight after this point\n' -L.AMR_SLASH_COMMAND_TEXT_6 = ' /amr unwipe -- undo the last wipe command\n' -L.AMR_SLASH_COMMAND_TEXT_7 = ' /amr export -- exportiere Beutel- und Bankinhalt (benutzt deine zuletzt gewählte Methode und öffnet entweder das kopieren/einfügen-Fenster oder speichert und lädt die UI neu)' +L.AMR_SLASH_COMMAND_TEXT_1 = 'Verfügbare AskMrRobot Befehle:\n' +L.AMR_SLASH_COMMAND_TEXT_2 = ' /amr show -- zeigt das Hauptfenster\n' +L.AMR_SLASH_COMMAND_TEXT_3 = ' /amr hide -- versteckt das Hauptfenster\n' +L.AMR_SLASH_COMMAND_TEXT_4 = ' /amr toggle -- schaltet das Hauptfenster um\n' +L.AMR_SLASH_COMMAND_TEXT_5 = ' /amr wipe -- markiert einen Kampf als Wipe. Wird benutzt, um Ereignisse danach zu ignorieren\n' +L.AMR_SLASH_COMMAND_TEXT_6 = ' /amr unwipe -- macht den letzten Wipe-Befehl rückgängig\n' +L.AMR_SLASH_COMMAND_TEXT_7 = ' /amr export -- exportiert Taschen- und Bankinhalt (öffnet das Exportieren-Fenster)' --AskMrRobotUi.lua --createMainMenu -L.AMR_UI_MENU_EXPORT = "Export" -L.AMR_UI_MENU_GEAR = "Load a Gear Set" -L.AMR_UI_MENU_COMBAT_LOG = "Combat Log" -L.AMR_UI_MENU_HELP = "Help" +L.AMR_UI_MENU_EXPORT = "Exportieren" +L.AMR_UI_MENU_GEAR = "Ausrüstung laden" +L.AMR_UI_MENU_COMBAT_LOG = "Kampflog" +L.AMR_UI_MENU_HELP = "Hilfe" ---validateInput -L.AMR_UI_IMPORT_ERROR_IMPROPER = "Ups, du hattest keinen gültigen Importtext" -L.AMR_UI_IMPORT_ERROR_IMPROPER_GOTO = "Bitte gehe zurück auf AskMrRobot.com und hole dir die Optimierungen für diesen Charakter" -L.AMR_UI_IMPORT_ERROR_CHARACTER = "Ups, diese Optmimierungen sind für %s" -L.AMR_UI_IMPORT_ERROR_CHARACTER_GOTO = "Bitte gehe zurück auf AskMrRobot.com und hole dir die Optimierungen für diesen Charakter, der sieht ohnehin besser aus!" -L.AMR_UI_IMPORT_ERROR_RACE = "Es sieht so aus als hätte sich deine Rasse geändert, dass beeinflusst die Optimierungen." -L.AMR_UI_IMPORT_ERROR_RACE_CURRENT = "Im Moment denkt Mr. Robot du wärest ein %s" -L.AMR_UI_IMPORT_ERROR_FACTION = "Es sieht so aus als hätte sich deine Fraktion geändert." -L.AMR_UI_IMPORT_ERROR_FACTION_CURRENT = "Im Moment denkt Mr. Robot du gehörst zur %s" -L.AMR_UI_IMPORT_ERROR_PROFESSIONS = "Deine Berufe haben sich geändert, dass beeinflusst die Optimierung." -L.AMR_UI_IMPORT_ERROR_PROFESSIONS_GOTO = "Du musst sicherstellen, dass deine Berufe denen auf AskMrRobot.com gleichen." -L.AMR_UI_IMPORT_ERROR_SPEC = "WARNUNG! Bitte überprüfe deinen Charackter bevor du fortfährst:" -L.AMR_UI_IMPORT_ERROR_SPEC_CHANGE = "Ändere deine Talentspezialisierung auf %s." -L.AMR_UI_IMPORT_ERROR_SPEC_UNEXPECTED = "AskMrRobot.com hat keine Talentspezialisierung erwartet." ---createImportDetailsErrorTab -L.AMR_UI_IMPORT_ERROR_NO_IMPORT = 'Du hast noch keine Optimierungen importiert. Klicke auf den Reiter "Import" um zu starten.' -L.AMR_UI_IMPORT_ERROR_CANT_OPTIMIZE = 'Ich kann gerade nicht optimieren. Bitte schaue im Reiter "Übersicht" nach den Gründen.' ---createTabButtons -L.AMR_UI_BUTTON_IMPORT = "Load" -L.AMR_UI_BUTTON_SUMMARY = "Summary" +L.AMR_UI_BUTTON_IMPORT = "Import" +L.AMR_UI_BUTTON_SUMMARY = "Übersicht" L.AMR_UI_BUTTON_GEMS = "Edelsteine" L.AMR_UI_BUTTON_ENCHANTS = "Verzauberungen" L.AMR_UI_BUTTON_SHOPPING_LIST = "Einkaufsliste" -L.AMR_UI_BUTTON_COMBAT_LOG = "Kampflog" -L.AMR_UI_BUTTON_HELP = "Hilfe" + --AskMrRobot.lua ---eventListener:OnEvent -L.AMR_ON_EVENT_LOADED = "Ask Mr. Robot geladen, Version v%s" -L.AMR_ON_EVENT_TOOLTIP = "Linksklick öffnet das AskMrRobot Fenster.\n\nShift + Linksklick um deinen Bank- und Beutelinhalt zu exportieren.\n\nCtrl + Linksklick um einen Kampf als wischen markieren." +L.AMR_ON_EVENT_TOOLTIP = "Linksklick öffnet das Ask Mr. Robot Fenster.\n\nUmschalt + Linksklick um deinen Taschen- und Bankinhalt zu exportieren.\n\nStrg + Linksklick um einen Kampf als Wipe zu markieren." --config.lua --frame:SetScript -L.AMR_CONFIG_EXIMPORT = "Mr. Robot's addon kann deine Gegenstandsinformationen auf seine Webseite exportieren und die Optimierungen wieder ins Spiel." -L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Zeige Minimapicon" -L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimapicon" -L.AMR_CONFIG_CHECKBOX_MINIMAP_DESCRIPTION = "Zeige das Ask Mr. Robot Minimapicon." -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_LABEL = "Öffne automatisch das Mr. Robot's Umschmiedungsfenster beim Umschmieder" -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_TOOLTIP_TITLE = "Auto-Zeigen der Umschmiedungen" -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_DESCRIPTION = "Wenn du noch vorgschlagene Umschmiedungen machen musst, öffne automatisch Mr. Robot's Umschmiedungsfenster wenn du einen Umschmieder besuchst." -L.AMR_CONFIG_CHECKBOX_AUTOAH_LABEL = "Öffne die Mr. Robot's Einkaufsliste automatisch beim Auktionshaus" -L.AMR_CONFIG_CHECKBOX_AUTOAH_TOOLTIP_TITLE = "Auto-Zeige Einkaufsliste" -L.AMR_CONFIG_CHECKBOX_AUTOAH_DESCRIPTION = "Wenn auf deiner Einkaufsliste noch Posten offen sind, dann zeige Mr. Robot's Einkaufsliste wenn du das Auktionshaus besuchst." -L.AMR_CONFIG_CHECKBOX_AUTOLOG_LABEL = "Starte Protokollierung der Schlacht um Orgrimmar automatisch" -L.AMR_CONFIG_CHECKBOX_AUTOLOG_TOOLTIP_TITLE = "Automatisch Schlacht um Orgrimmar protokollieren" -L.AMR_CONFIG_CHECKBOX_AUTOLOG_DESCRIPTION = "Sobald du die Schlacht um Orgrimmar betrittst, wird das Kampflog eingeschaltet. Bei Verlassen der SuO wird das Kampflog ausgeschaltet." ---enchants.lua ---enchantNames -L.AMR_ENCHANTS_BELT_BUCKLE = "Belt Buckle" -L.AMR_ENCHANTS_FROSTBRAND = "Frostbrand" -L.AMR_ENCHANTS_FLAMETONGUE = "Flametongue" -L.AMR_ENCHANTS_DAMAGE = "Damage" -L.AMR_ENCHANTS_SHARPENED = "Sharpened" -L.AMR_ENCHANTS_WEIGHTED = "Weighted" -L.AMR_ENCHANTS_ARMOR = "Armor" -L.AMR_ENCHANTS_MANA = "Mana" -L.AMR_ENCHANTS_SHADOW_OIL = "Shadow Oil" -L.AMR_ENCHANTS_FROST_OIL = "Frost Oil" -L.AMR_ENCHANTS_SUNDERED = "Sundered" -L.AMR_ENCHANTS_ALL_RESISTANCES = "All Resistances" -L.AMR_ENCHANTS_SCOPE = "Scope" -L.AMR_ENCHANTS_BEASTSLAYING = "Beastslaying" -L.AMR_ENCHANTS_HASTE = "Haste" -L.AMR_ENCHANTS_FIERY_BLAZE = "Enchant: Fiery Blaze" -L.AMR_ENCHANTS_STEEL_WPNCHAIN = "Steel Weapon Chain" -L.AMR_ENCHANTS_DODGE = "Dodge" -L.AMR_ENCHANTS_HEALTH = "Health" -L.AMR_ENCHANTS_MAX_HEALTH = "Maximum Health" -L.AMR_ENCHANTS_IRON_SPIKE = "Iron Spike (8-12)" -L.AMR_ENCHANTS_THORIUM_SPIKE = "Thorium Spike (20-30)" -L.AMR_ENCHANTS_FELSTEEL_SPIKE = "Felsteel Spike (26-38)" -L.AMR_ENCHANTS_TITANIUM_SPIKE = "Titanium Spike (45-67)" -L.AMR_ENCHANTS_ELEMENTIUM_SPIKE = "Elementium Spike (90-133)" -L.AMR_ENCHANTS_PYRIUM_SPIKE = "Pyrium Spike (210-350)" -L.AMR_ENCHANTS_GHOSTIRON_SPIKE = "Ghost Iron Spike (600-1000)" -L.AMR_ENCHANTS_ABSORPTION = "Absorption" -L.AMR_ENCHANTS_SPIRIT = "Spirit" -L.AMR_ENCHANTS_STR = "Str" -L.AMR_ENCHANTS_STAM = "Stam" -L.AMR_ENCHANTS_AGI = "Agi" -L.AMR_ENCHANTS_INT = "Int" -L.AMR_ENCHANTS_CRIT = "Crit" -L.AMR_ENCHANTS_EXP = "Exp" -L.AMR_ENCHANTS_PARRY = "Parry" -L.AMR_ENCHANTS_HIT = "Hit" -L.AMR_ENCHANTS_AP = "AP" -L.AMR_ENCHANTS_RESIL = "Resil" -L.AMR_ENCHANTS_MASTERY = "Mastery" -L.AMR_ENCHANTS_PVP_POW = "PvP Pow" -L.AMR_ENCHANTS_BLOCK = "Block" -L.AMR_ENCHANTS_SWORD_SKILL = "Sword Skill" -L.AMR_ENCHANTS_SWORD_SKILL_2H = "Two-Handed Sword Skill" -L.AMR_ENCHANTS_MACE_SKILL = "Mace Skill" -L.AMR_ENCHANTS_MACE_SKILL_2H = "Two-Handed Mace Skill" -L.AMR_ENCHANTS_AXE_SKILL = "Axe Skill" -L.AMR_ENCHANTS_AXE_SKILL_2H = "Two-Handed Axe Skill" -L.AMR_ENCHANTS_DAGGER_SKILL = "Dagger Skill" -L.AMR_ENCHANTS_GUN_SKILL = "Gun Skill" -L.AMR_ENCHANTS_BOW_SKILL = "Bow Skill" -L.AMR_ENCHANTS_BEAST_SLAYING = "Beast Slaying" -L.AMR_ENCHANTS_ON_GET_HIT_SBOLT = "On Get Hit: Shadow Bolt" -L.AMR_ENCHANTS_SP = "SP" -L.AMR_ENCHANTS_FIRE_SPELL_DAMAGE = "Fire Spell Damage" -L.AMR_ENCHANTS_HOLY_SPELL_DAMAGE = "Holy Spell Damage" -L.AMR_ENCHANTS_FROST_SPELL_DAMAGE = "Frost Spell Damage" -L.AMR_ENCHANTS_NATURE_SPELL_DAMAGE = "Nature Spell Damage" -L.AMR_ENCHANTS_SHADOW_SPELL_DAMAGE = "Shadow Spell Damage" -L.AMR_ENCHANTS_ARCANE_SPELL_DAMAGE = "Arcane Spell Damage" -L.AMR_ENCHANTS_WEAPON_DAMAGE = "Weapon Damage" -L.AMR_ENCHANTS_FIRE_RESISTANCE = "Fire Resistance" -L.AMR_ENCHANTS_FROST_RESISTANCE = "Frost Resistance" -L.AMR_ENCHANTS_SHADOW_RESISTANCE = "Shadow Resistance" -L.AMR_ENCHANTS_NATURE_RESISTANCE = "Nature Resistance" -L.AMR_ENCHANTS_ARCANE_RESISTANCE = "Arcane Resistance" -L.AMR_ENCHANTS_ALL_STATS = "All Stats" -L.AMR_ENCHANTS_RUN_SPEED = "Run Speed" -L.AMR_ENCHANTS_RESIST_ALL = "Resist All" -L.AMR_ENCHANTS_FISHING_LURE = "Fishing Lure" -L.AMR_ENCHANTS_FISHING_SKILL = "Fisching Skill" -L.AMR_ENCHANTS_WINDFURY = "Windfury" -L.AMR_ENCHANTS_WEAPON_FIRE_DMG = "Weapon Fire Damage" -L.AMR_ENCHANTS_ORB_OF_FIRE = "Orb of Fire" -L.AMR_ENCHANTS_BLACK_TEMPLE_DUMMY = "Black Temple Dummy" -L.AMR_ENCHANTS_MITHRIL_SPIKE = "Mithril Spike (16-20)" -L.AMR_ENCHANTS_MOUNT_SPEED = "Mount Speed" -L.AMR_ENCHANTS_STEALTH = "Stealth" -L.AMR_ENCHANTS_SCHIELD_BLOCK = "Shield Block" -L.AMR_ENCHANTS_FIERY_WEAPON = "Fiery Weapon" -L.AMR_ENCHANTS_MINING = "Mining" -L.AMR_ENCHANTS_HERBALISM = "Herbalism" -L.AMR_ENCHANTS_SKINNING = "Skinning" -L.AMR_ENCHANTS_FISHING = "Fishing" -L.AMR_ENCHANTS_OMEN_OF_CLARITY = "Omen of Clarity" -L.AMR_ENCHANTS_MHTEST02 = "MHTest02" -L.AMR_ENCHANTS_COLD_BLOOD = "Cold Blood" -L.AMR_ENCHANTS_FIRESTONE_1 = "Firestone 1" -L.AMR_ENCHANTS_FIRESTONE_2 = "Firestone 2" -L.AMR_ENCHANTS_FIRESTONE_3 = "Firestone 3" -L.AMR_ENCHANTS_FIRESTONE_4 = "Firestone 4" -L.AMR_ENCHANTS_FIRESTONE_5 = "Firestone 5" -L.AMR_ENCHANTS_FIRESTONE_MASTER = "Master Firestone" -L.AMR_ENCHANTS_FIRESTONE = "Firestone" -L.AMR_ENCHANTS_FIRESTONE_GREATER = "Greater Firestone" -L.AMR_ENCHANTS_FIRESTONE_MAJOR = "Major Firestone" -L.AMR_ENCHANTS_FIRESTONE_FEL = "Fel Firestone" -L.AMR_ENCHANTS_FIRESTONE_GRAND = "Grand Firestone" -L.AMR_ENCHANTS_SPELLSTONE = "Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_GREATER = "Greater Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_MAJOR = "Major Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_MASTER = "Master Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_DEMONIC = "Demonic Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_GRAND = "Grand Spellstone" -L.AMR_ENCHANTS_ICY_CHILL = "Icy Chill" -L.AMR_ENCHANTS_LIFESTEALING = "Lifestealing" -L.AMR_ENCHANTS_UNHOLY_WEAPON = "Unholy Weapon" -L.AMR_ENCHANTS_CRUSADER = "Crusader" -L.AMR_ENCHANTS_BLOCK_LEVEL = "Block Level" -L.AMR_ENCHANTS_RANGED_ATTACK_POWER = "Ranged Attack Power" -L.AMR_ENCHANTS_MANA_EVERY_5_SEC = "mana every 5 sec." -L.AMR_ENCHANTS_HEALTH_EVERY_5_SEC = "health every 5 sec." -L.AMR_ENCHANTS_MELEE_CRIT_STRIKE = "Melee Critical Strike" -L.AMR_ENCHANTS_ZZOLDBLANK = "zzOLDBlank" -L.AMR_ENCHANTS_THREAT = "Threat" -L.AMR_ENCHANTS_SHADOW_SPELL_POWER = "Shadow Spell Power" -L.AMR_ENCHANTS_FROST_SPELL_POWER = "Frost Spell Power" -L.AMR_ENCHANTS_FIRE_SPELL_POWER = "Fire Spell Power" -L.AMR_ENCHANTS_REDUCED_THREAT = "Reduced Threat" -L.AMR_ENCHANTS_WIZARD_OIL_MINOR = "Minor Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_LESSER = "Lesser Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL = "Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_BRILLIANT = "Brilliant Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_SUPERIOR = "Superior Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_EXCEPTIONAL = "Exceptional Wizard Oil" -L.AMR_ENCHANTS_MANA_OIL_MINOR = "Minor Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_LESSER = "Lesser Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_BRILLIANT = "Brilliant Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_SUPERIOR = "Superior Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_EXCEPTIONAL = "Exceptional Mana Oil" -L.AMR_ENCHANTS_ELEMENTAL_SLAYER = "Elemental Slayer" -L.AMR_ENCHANTS_DEMONSLAYING = "Demonslaying" -L.AMR_ENCHANTS_VENOMHIDE_POISON = "Venomhide Poison" -L.AMR_ENCHANTS_ARCANE_FIRE_SPELL_POWER = "Arcane and Fire Spell Power" -L.AMR_ENCHANTS_SHADOW_FROST_SPELL_POWER = "Shadow and Frost Spell Power" -L.AMR_ENCHANTS_MONGOOSE = "Mongoose" -L.AMR_ENCHANTS_SPELLSURGE = "Spellsurge" -L.AMR_ENCHANTS_BATTLEMASTER = "Battlemaster" -L.AMR_ENCHANTS_AP_VS_UNDEAD = "Attack Power vs Undead" -L.AMR_ENCHANTS_SP_VS_UNDEAD = "Spell Power vs Undead" -L.AMR_ENCHANTS_AGI_PER_GEM = "Agility per different colored gem" -L.AMR_ENCHANTS_STR_4_BLUE_GEMS = "Strength if 4 blue gems equipped" -L.AMR_ENCHANTS_LESSER_RUNE_WARDING = "Lesser Rune of Warding" -L.AMR_ENCHANTS_GREATER_RUNE_WARDING = "Greater Rune of Warding" -L.AMR_ENCHANTS_LESSER_WARD_SHIELDING = "Lesser Ward of Shielding" -L.AMR_ENCHANTS_GREATER_WARD_SHIELDING = "Greater Ward of Shielding" -L.AMR_ENCHANTS_ZZOLDLESSER_RUNE_WARDING = "ZZOLDLesser Rune of Warding" -L.AMR_ENCHANTS_COMFORT_INSOLES = "Comfortable Insoles" -L.AMR_ENCHANTS_ARCANE_DAMAGE = "Arcane Damage" -L.AMR_ENCHANTS_FIRE_DAMAGE = "Fire Damage" -L.AMR_ENCHANTS_NATURE_DAMAGE = "Nature Damage" -L.AMR_ENCHANTS_FROST_DAMAGE = "Frost Damage" -L.AMR_ENCHANTS_SHADOW_DAMAGE = "Shadow Damage" -L.AMR_ENCHANTS_HEALING = "Healing" -L.AMR_ENCHANTS_BLOODY_DANCING_STEEL = "Bloody Dancing Steel" -L.AMR_ENCHANTS_TYRANNY = "Tyranny" -L.AMR_ENCHANTS_SOCKET_BELT = "Socket Belt" -L.AMR_ENCHANTS_USE_WALK_ON_WATER = "Use: Allows you to walk on water and increases swim speed for up to 6 sec. (30 Sec Cooldown)" -L.AMR_ENCHANTS_BREATH_AGILE_PRINCE = "Breath of the Agile Prince" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_10SEC = "Use: Reduce your fall speed for 10 sec. (5 Min Cooldown) (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_30SEC = "Use: Reduces your falling speed for 30 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_2MIN = "Use: Reduces your falling speed for 2 min. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_INT_AGI_STR_480 = "Use: Increases your Intellect, Agility, or Strength by 480 for 10 sec. Your highest stat is always chosen. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_INT_AGI_STR_1920 = "Use: Increases your Intellect, Agility, or Strength by 1,920 for 10 sec. Your highest stat is always chosen. (1 Min Cooldown)" -L.AMR_ENCHANTS_SWORDGUARD_EMBROIDERY = "Swordguard Embroidery" -L.AMR_ENCHANTS_SWORDGUARD_1 = "Swordguard 1" -L.AMR_ENCHANTS_SWORDGUARD_2 = "Swordguard 2" -L.AMR_ENCHANTS_SWORDGUARD_3 = "Swordguard 3" -L.AMR_ENCHANTS_DARKGLOW_1 = "Darkglow 1" -L.AMR_ENCHANTS_DARKGLOW_2 = "Darkglow 2" -L.AMR_ENCHANTS_DARKGLOW_3 = "Darkglow 3" -L.AMR_ENCHANTS_LIGHTWEAVE_1 = "Lightweave 1" -L.AMR_ENCHANTS_LIGHTWEAVE_2 = "Lightweave 2" -L.AMR_ENCHANTS_LIGHTWEAVE_3 = "Lightweave 3" -L.AMR_ENCHANTS_PANDAREN_FISHING_LURE = "Pandaren Fishing Lure" -L.AMR_ENCHANTS_MAGIC_WEAPON = "Magic Weapon" -L.AMR_ENCHANTS_USE_MYTHICAL_HEALING_POTION = "Use: Injects a Mythical Healing Potion directly into your bloodstream, increasing potency and healing you for 30,000. (1 Min Cooldown)" -L.AMR_ENCHANTS_PLACEHOLDER_SHOULDER = "Placeholder Shoulder Enchant" -L.AMR_ENCHANTS_PANDEMONIUM = "Pandamonium" -L.AMR_ENCHANTS_MIRROR_SCOPE = "Mirror Scope" -L.AMR_ENCHANTS_BLASTINGTON = "Blastington's" -L.AMR_ENCHANTS_USE_EXPLOSIVE_FIREWORKS = "Use: Launches a cluster of highly explosive fireworks that detonate on impact for 14,000 Fire damage over 3 sec. (45 Sec Cooldown)" -L.AMR_ENCHANTS_USE_DODGE = "Use: Increases your dodge by 480 for 10 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_SAMURAI = "Samurai" -L.AMR_ENCHANTS_RIVERS_SONG = "River's Song" -L.AMR_ENCHANTS_COLOSSUS = "Colossus" -L.AMR_ENCHANTS_DANCING_STEEL = "Dancing Steel" -L.AMR_ENCHANTS_ELEMENTAL_FORCE = "Elemental Force" -L.AMR_ENCHANTS_JADE_SPIRIT = "Jade Spirit" -L.AMR_ENCHANTS_WINDSONG = "Windsong" -L.AMR_ENCHANTS_FLINTLOCKE = "Flintlocke's" -L.AMR_ENCHANTS_USE_RUN_SPEED = "Use: Greatly increase your run speed for 5 sec. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_MENTAL_COMBAT = "Use: Engage in mental combat with a humanoid target in an attempt to pacify or control them. (10 Min Cooldown)" -L.AMR_ENCHANTS_USE_CARDBOARD_ASSASSIN = "Use: Summons a Cardboard Assassin to draw the attention of enemies. (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_SHIELD_OF_FORCE = "Use: Protects you with a shield of force that stops 18,000 damage for 8 sec. The strong magnetic field sometimes has strange side effects... (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_PERSONAL_INVISIBILITY_FIELD = "Use: Activates a personal invisibility field. Cannot be used in combat. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_ELECTRIC_BALL = "Use: Fires an electrified ball at an enemy for 4,800 Nature damage. (2 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_ARMOR_700 = "Use: Increases your armor by 700 for 14 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_ARMOR_1500 = "Use: Increases your armor by 1,500 for 13 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_GNOMISH_XRAY = "Gnomish X-Ray" -L.AMR_ENCHANTS_LANDSLIDE = "Landslide" -L.AMR_ENCHANTS_WINDWALK = "Windwalk" -L.AMR_ENCHANTS_POWER_TORRENT = "Power Torrent" -L.AMR_ENCHANTS_HEARTSONG = "Heartsong" -L.AMR_ENCHANTS_HURRICANE = "Hurricane" -L.AMR_ENCHANTS_AVALANCHE = "Avalanche" -L.AMR_ENCHANTS_MENDING = "Mending" -L.AMR_ENCHANTS_NERUBIAN_CARAPACE = "Nerubian Carapace" -L.AMR_ENCHANTS_BLOOD_DRAINING = "Blood Draining" -L.AMR_ENCHANTS_BLADE_WARD = "Blade Ward" -L.AMR_ENCHANTS_TITANIUM_PLATING = "Titanium Plating" -L.AMR_ENCHANTS_SOCKET_STAFF = "Socket Staff" -L.AMR_ENCHANTS_STONESKIN_GARGOYLE = "Stoneskin Gargoyle" -L.AMR_ENCHANTS_BERSERKING = "Berserking" -L.AMR_ENCHANTS_BLACK_MAGIC = "Black Magic" -L.AMR_ENCHANTS_SOCKET_GLOVES = "Socket Gloves" -L.AMR_ENCHANTS_SOCKET_BRACERS = "Socket Bracer" -L.AMR_ENCHANTS_CHANCE_INCREASE_MELEE_RANGED_ASPEED = "Chance to Increase Melee/Ranged Attack Speed" -L.AMR_ENCHANTS_SWORDBREAKING = "Swordbreaking" -L.AMR_ENCHANTS_SPELLBREAKING = "Spellbreaking" -L.AMR_ENCHANTS_USE_STUN_MECH_UNITS_1MIN = "Use: Stuns all nearby Mechanical units for 3 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_THERMAL_GRENADE = "Use: Detatch and throw a thermal grenade, inflicting 10,000 Fire damage and incapacitating targets for 3 sec in a 3 yard radius. Any damage will break the effect. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_EXPLOSIVE_ROCKET = "Use: Fires an explosive rocket at an enemy for 1,165 Fire damage. (45 Sec Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_HASTE_240 = "Use: Increases your haste by 240 for 12 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_CHANCE_INCREASE_SPELL_CAST_SPEED = "Chance to Increase Spell Cast Speed" -L.AMR_ENCHANTS_MELEEDMG_STUN_TARGET = "Melee Damage and Chance to Stun Target" -L.AMR_ENCHANTS_BLOCK_VALUE = "Block Value" -L.AMR_ENCHANTS_GEM_TEST = "gem test enchantment" -L.AMR_ENCHANTS_ROCKBITER = "Rockbiter" -L.AMR_ENCHANTS_AP_VS_UNDEAD_DEMONS = "Attack Power vs Undead and Demons" -L.AMR_ENCHANTS_POISON = "Poison" -L.AMR_ENCHANTS_ADAMANTITE_WEAPON_CHAIN = "Adamantite Weapon Chain" -L.AMR_ENCHANTS_EXECUTIONER = "Executioner" -L.AMR_ENCHANTS_GATHERER = "Gatherer" -L.AMR_ENCHANTS_ICEBREAKER_WEAPON = "Icebreaker Weapon" -L.AMR_ENCHANTS_LIFEWARD = "Lifeward" -L.AMR_ENCHANTS_ICEWALKER = "Icewalker" -L.AMR_ENCHANTS_GIANTSLAYING = "Giantslaying" -L.AMR_ENCHANTS_BLESSED_WEAPON_COATING = "Blessed Weapon Coating" -L.AMR_ENCHANTS_RIGHTEOUS_WEAPON_COATING = "Righteous Weapon Coating" -L.AMR_ENCHANTS_DEATHFROST = "Deathfrost" -L.AMR_ENCHANTS_TEST_RIDING_CROP = "Test Riding Crop Enchant" -L.AMR_ENCHANTS_TEST_ADD_SOCKETS_ENCHANT = "Test Add Sockets Enchant" -L.AMR_ENCHANTS_TEST_SKILL_REQ_ENCHANT = "Test Skill Req Enchant" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN = "Frozen Rune Weapon" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_2 = "Frozen Rune Weapon 2" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_3 = "Frozen Rune Weapon 3" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_4 = "Frozen Rune Weapon 4" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_5 = "Frozen Rune Weapon 5" -L.AMR_ENCHANTS_QA_TEST_BLANK_PURPLE_GEM = "QA Test Blank Purple Gem Enchant" -L.AMR_ENCHANTS_NORTHREND_FLIGHT = "Northrend Flight" -L.AMR_ENCHANTS_EARTHLIVING = "Earthliving" -L.AMR_ENCHANTS_EMPOWER_RUNE_WPN = "Empower Rune Weapon" -L.AMR_ENCHANTS_SWORDSHATTERING = "Swordshattering" -L.AMR_ENCHANTS_LICHBANE = "Lichbane" -L.AMR_ENCHANTS_SPELLSHATTERING = "Spellshattering" -L.AMR_ENCHANTS_FALLEN_CRUSADER = "Fallen Crusader" -L.AMR_ENCHANTS_CINDERGLACIER = "Cinderglacier" -L.AMR_ENCHANTS_RAZORICE = "Razorice" ---gems.lua ---alternateGemName -L.AMR_GEMS_INT = "Int" -L.AMR_GEMS_STR = "Str" -L.AMR_GEMS_AGI = "Agi" -L.AMR_GEMS_CRIT = "Crit" -L.AMR_GEMS_HASTE = "Haste" -L.AMR_GEMS_HIT = "Hit" -L.AMR_GEMS_PVP_POW = "PvP Pow" -L.AMR_GEMS_STAM = "Stam" -L.AMR_GEMS_DODGE = "Dodge" -L.AMR_GEMS_SPIRIT = "Spirit" -L.AMR_GEMS_PARRY = "Parry" -L.AMR_GEMS_RESIL = "Resil" -L.AMR_GEMS_EXP = "Exp" -L.ARMS_GEM_MASTERY = "Mastery" -L.AMR_GEMS_CRIT_EFF = "Crit Efct" -L.AMR_GEMS_BLOCK = "Block" -L.AMR_GEMS_MANA = "Mana" -L.AMR_GEMS_REFLECT = "Reflect" -L.AMR_GEMS_SNARE = "Snare" -L.AMR_GEMS_SILENCE = "Silence" -L.AMR_GEMS_ARMOR = "Armor" -L.AMR_GEMS_FEAR = "Fear" -L.AMR_GEMS_THREAT = "Threat" -L.AMR_GEMS_RUN_SPEED = "Run Speed" -L.AMR_GEMS_INDOMITABLE = "Indomitable" -L.AMR_GEMS_COURAGEOUS = "Courageous" -L.AMR_GEMS_CAPACITIV = "Capacitive" -L.AMR_GEMS_SINISTER = "Sinister" -L.AMR_GEMS_STUN = "Stun" ---autoGemHelper -L.AMR_GEMS_NOT_ENOUGH_SOCKETS = 'Ask Mr Robot: Irgendetwas ist falsch. Es befinden sich nicht genug Sockel in diesem Gegenstand.' +L.AMR_CONFIG_EXIMPORT = "Mr. Robots Addon kann deine Gegenstandsinformationen auf seine Webseite exportieren, sowie die Optimierungen ins Spiel." +L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Zeige Minimap-Icon" +L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimap-Icon" +L.AMR_CONFIG_CHECKBOX_MINIMAP_DESCRIPTION = "Zeige das Ask Mr. Robot Minimap-Icon." +L.AMR_CONFIG_CHECKBOX_AUTOAH_LABEL = "Öffne Mr. Robots Einkaufsliste automatisch beim Auktionshaus" +L.AMR_CONFIG_CHECKBOX_AUTOAH_TOOLTIP_TITLE = "Automatisches Öffnen Einkaufsliste" +L.AMR_CONFIG_CHECKBOX_AUTOAH_DESCRIPTION = "Wenn auf deiner Einkaufsliste noch Posten offen sind, öffne Mr. Robots Einkaufsliste automatisch, wenn du das Auktionshaus besuchst." + --wait.lua --wait L.AMR_WAIT_BAD_ARGUMENTS = "Bad Arguments to amr__wait" @@ -365,34 +81,33 @@ --ui/CombatLogTab.lua L.AMR_COMBATLOGTAB_COMBAT_LOGGING = "Kampflog" L.AMR_COMBATLOGTAB_START_LOGGING = "Starte Kampflog" +L.AMR_COMBATLOGTAB_CURRENTLY_LOGGING = "|c0000ff00Loggt derzeit|r" L.AMR_COMBATLOGTAB_STOP_LOGGING = "Stoppe Kampflog" -L.AMR_COMBATLOGTAB_AUTOMATIC = "Auto:" -L.AMR_COMBATLOGTAB_MANUAL = "Manuell:" -L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_LABEL = "Automatisch Schlacht um Orgrimmar protokollieren" +L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_LABEL = "Schlacht um Orgrimmar automatisch protokollieren" L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_TOOLTIP_TITLE = "Automatisch Schlacht um Orgrimmar protokollieren" -L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_DESCRIPTION = "Automatisch Schlacht um Orgrimmar protokollieren wenn du die SuO betrittst und stoppe wenn du sie verlässt.\n\nBeachte, dass du andere Addons mit ähnlichen Funktionen deaktivieren solltest um Konflikte zu vermeiden." +L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_DESCRIPTION = "Das Kampflog wird automatisch gestartet, sobald du die Schlacht um Orgrimmar betrittst, und gestoppt, wenn du sie verlässt.\n\nBeachte, dass du andere Addons mit ähnlichen Funktionen deaktivieren solltest, um Konflikte zu vermeiden." L.AMR_COMBATLOGTAB_HEADLINE_OVER_BUTTON = "Charakterdaten" -L.AMR_COMBATLOGTAB_SAVE_CHARACTER = "Speichern" +L.AMR_COMBATLOGTAB_SAVE_CHARACTER = "Daten speichern" L.AMR_COMBATLOGTAB_INSTRUCTIONS = "ANWEISUNGEN" -L.AMR_COMBATLOGTAB_INSTRUCTIONS_1 = "1. Benutze den Start/Stop-Button oder markiere 'Automatisch Schlacht um Orgrimmar protokollieren'." -L.AMR_COMBATLOGTAB_INSTRUCTIONS_2 = "2. Wenn du bereit bist deine Daten hochzuladen, drücke 'Speichern'. *" +L.AMR_COMBATLOGTAB_INSTRUCTIONS_1 = "1. Benutze den Start/Stop-Button oder aktiviere 'Schlacht um Orgrimmar automatisch protokollieren'." +L.AMR_COMBATLOGTAB_INSTRUCTIONS_2 = "2. Wenn du bereit bist, deine Daten hochzuladen, drücke 'Daten speichern'. *" L.AMR_COMBATLOGTAB_INSTRUCTIONS_3 = "3. Beende World of Warcraft. **" -L.AMR_COMBATLOGTAB_INSTRUCTIONS_4 = "4. Starte den Ask Mr. Robot client und folge den Anweisungen. ***" -L.AMR_COMBATLOGTAB_INSTRUCTIONS_5 = "|c00999999* Dies wird dein UI neuladen um abzusichern, dass alle gesammelten Daten auf deine Festplatte gespeichert werden. Dieser Schritt ist nicht notwendig wenn du dich vor dem Hochladen ausloggst.|r" +L.AMR_COMBATLOGTAB_INSTRUCTIONS_4 = "4. Starte den Ask Mr. Robot Client und folge den Anweisungen. ***" +L.AMR_COMBATLOGTAB_INSTRUCTIONS_5 = "|c00999999* Dies wird dein UI neu laden um sicher zu stellen, dass alle gesammelten Daten auf deine Festplatte gespeichert wurden. Dieser Schritt ist nicht notwendig, wenn du dich vor dem Hochladen ausloggst.|r" L.AMR_COMBATLOGTAB_INSTRUCTIONS_6 = "|c00999999** WoW zu beenden bevor du hochlädst ist optional, aber sehr zu empfehlen. Dies verhindert, dass das Kampflog übertrieben groß wird und damit den Vorgang verlangsamt.|r" L.AMR_COMBATLOGTAB_INSTRUCTIONS_7 = "|c00999999*** Du kannst das Programm hier herunterladen: |r |c003333ffhttp://www.askmrrobot.com/wow/combatlog/upload|r|c00999999.|r" L.AMR_COMBATLOGTAB_IS_LOGGING = "Du schreibst nun ein Kampflog und Mr. Robot speichert die Charakterdaten für den Raid." L.AMR_COMBATLOGTAB_STOPPED_LOGGING = "Kampflog wurde gestoppt." -L.AMR_COMBATLOGTAB_INFIGHT = "In-Fight Options" -L.AMR_COMBATLOGTAB_WIPE_1 = "|c00aaaaaaDeclare a wipe |r|c00ffffffbefore|r|c00aaaaaa you die on purpose.|r" -L.AMR_COMBATLOGTAB_WIPE_2 = "|c00aaaaaaThis will ignore intentional deaths & damage.|r" -L.AMR_COMBATLOGTAB_WIPE_3 = "|c00999999This feature must be used by the person logging combat.|r" -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." -L.AMR_COMBATLOGTAB_LASTWIPE = '|c00ff0000Last wipe called on %s at %s.|r' -L.AMR_COMBATLOGTAB_WIPE_CHAT = "It's a wipe, everybody die!" -L.AMR_COMBATLOGTAB_WIPE_MSG = "[AskMrRobot] Manual wipe called at %s" -L.AMR_COMBATLOGTAB_NOWIPES = '[AskMrRobot] There is no recent manual wipe to remove' -L.AMR_COMBATLOGTAB_UNWIPE_MSG = "[AskMrRobot] Manual wipe at %s was removed" +L.AMR_COMBATLOGTAB_INFIGHT = "Optionen im Kampf" +L.AMR_COMBATLOGTAB_WIPE_1 = "|c00aaaaaaDeklariere einen Wipe |r|c00ffffffbevor|r|c00aaaaaa du absichtlich stirbst.|r" +L.AMR_COMBATLOGTAB_WIPE_2 = "|c00aaaaaaDies wird absichtliche Tode und Schaden ignorieren.|r" +L.AMR_COMBATLOGTAB_WIPE_3 = "|c00999999Diese Funktion muss von der Person benutzt werden, die das Kampflog aufzeichnet.|r" +L.AMR_COMBATLOGTAB_SAVE_CHARACTER_INFO = "Während das Kampflog aufgezeichnet wird, werden Charakter- und Ausrüstungsdaten für alle Mitglieder des Raids, die dieses Addon installiert haben, aufgezeichnet. Nach dem Raid muss die Person, die das Kampflog aufgezeichnet hat, den Button drücken oder ausloggen, um die Daten zu speichern, damit sie hochgeladen werden können." +L.AMR_COMBATLOGTAB_LASTWIPE = '|c00ff0000Letzter Wipe am %s um %s.|r' +L.AMR_COMBATLOGTAB_WIPE_CHAT = "Es ist ein Wipe, sterbt!" +L.AMR_COMBATLOGTAB_WIPE_MSG = "[AskMrRobot] Manueller Wipe ausgerufen um %s" +L.AMR_COMBATLOGTAB_NOWIPES = '[AskMrRobot] Es gibt keinen manuellen Wipe zu entfernen' +L.AMR_COMBATLOGTAB_UNWIPE_MSG = "[AskMrRobot] Manueller Wipe um %s wurde entfernt" --ui/EnchantTab.lua L.AMR_ENCHANTTAB_ENCHANTS = "Verzauberungen" L.AMR_ENCHANTTAB_100_OPTIMAL = "Deine Verzauberungen sind 100% optimal!" @@ -400,20 +115,21 @@ L.AMR_ENCHANTTAB_CURRENT = "Aktuell" L.AMR_ENCHANTTAB_OPTIMIZED = "Optimiert" L.AMR_ENCHANTTAB_TESTSLOT = "TestSlot" -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." --ui/ExportTab.lua -L.AMR_EXPORTTAB_EXPORT_TITLE = "Export your character to AskMrRobot.com" +L.AMR_EXPORTTAB_EXPORT_TITLE = "Exportiere deinen Character für AskMrRobot.com" L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_1 = "1. Öffne deine Bank" -L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Kopiere den Text unterhalb mit Strg+C (oder Cmd+C auf einem Mac)" -L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_3 = "3. Gehe auf AskMrRobot.com und kopiere in das IMPORT-Fenster" -L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_NOTE = "Hinweis: Falls du etwas änderst während dieses Fenster offen ist, dann klicke auf Aktualisieren unten." +L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Kopiere den Text unterhalb mit Strg + C (oder Cmd + C auf einem Mac)" +L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_3 = "3. Gehe auf |c00ffd100AskMrRobot.com|r und klicke auf den grünen '|c0000ff00Import from Addon|r' Button über deinem Charakternamen. Füge den Text in das Fenster ein, das sich öffnet." +L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_NOTE = "Hinweis: Falls du etwas änderst, während dieses Fenster offen ist, dann klicke auf den Aktualisieren-Button unten, um einen neuen Export-Text zu erzeugen." +L.AMR_EXPORTTAB_UPDATE = "Aktualisieren" + --ui/GemTab.lua --popup autogem finished -L.AMR_GEMTAB_FINISHED = "Mr. Robot ist fertig mit dem automatischen sockeln. \rFalls Gegenstände nicht gesockelt wurden, hattest du vielleicht nicht genug Edelsteine. \rSollte dein Gürtel nicht gesockelt sein, fehlt eventuell die Gürtelschnalle." +L.AMR_GEMTAB_FINISHED = "Mr. Robot ist fertig mit dem automatischen Sockeln. \rFalls Gegenstände nicht gesockelt wurden, hattest du vielleicht nicht genug Edelsteine. \rSollte dein Gürtel nicht gesockelt sein, fehlt eventuell die Gürtelschnalle." L.AMR_GEMTAB_BUTTON_OK = "Ok" --popup autogem once -L.AMR_GEMTAB_AUTOGEMMING_IN_PROGRESS = "Autosockeln bereits aktiv." +L.AMR_GEMTAB_AUTOGEMMING_IN_PROGRESS = "Automatisches Sockeln läuft bereits." --constructor L.AMR_GEMTAB_GEMS = "Edelsteine" L.AMR_GEMTAB_OPTIMAL = "Deine Edelsteine sind 100% optimal! Du bist nun wirklich, wirklich herausragend." @@ -427,60 +143,58 @@ L.AMR_GEMTAB_TO_OPTIMIZE = "Du hast %d \1244Edelstein:Edelsteine; zu optimieren" --ui/HelpTab.lua L.AMR_HELPTAB_TITLE = "Hilfe" -L.AMR_HELPTAB_LINK = "Besuche |c003333ffhttp://blog.askmrrobot.com/addon/|r für eine komplette Anleitung und um Fragen zu stellen.\r\r" -L.AMR_HELPTAB_Q1 = "|c00999999Q:|r The armory won’t update my character on your website. Is there a workaround?" -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!" -L.AMR_HELPTAB_Q2 = "|c00999999Q:|r Do I have to get a new text-string every time I need to optimize?" -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." -L.AMR_HELPTAB_Q3 = "|c00999999Q:|r Can I send my shopping list to an alt?" -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.' -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" -L.AMR_HELPTAB_A4 = "|c0066dd66A:|r Yes! You'll want to read the tutorial on that here: \r|c003333ffhttp://blog.askmrrobot.com/addon#raid" -L.AMR_HELPTAB_Q5 = "|c00999999Q:|r Where is auto gemming?" -L.AMR_HELPTAB_A5 = "|c0066dd66A:|r We have temporarily removed it. We plan to bring it back for WoD" -L.AMR_HELPTAB_Q6 = "|c00999999Q:|r Is Mr. Robot updated?" -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/" +L.AMR_HELPTAB_LINK = "Besuche |c003333ffhttp://blog.askmrrobot.com/addon/|r für eine komplette Anleitung und um Fragen zu stellen.\r" +L.AMR_HELPTAB_Q1 = "|c00999999Q:|r Das Arsenal aktualisiert meinen Charakter auf deiner Webseite nicht. Gibt es einen Workaround?" +L.AMR_HELPTAB_A1 = "|c0066dd66A:|r Ja. Gehe in die |c00ffd100Exportieren|r Sektion dieses Addons. Kopiere den Text in der Box. Dann gehe auf unsere |c00ffd100Website|r, lade deinen Charakter und klicke auf den grünen '|c0000ff00Import (from addon)|r' Button über deinem Charakternamen. Füge den Text dort ein. Dieser Prozess bringt deinen derzeitigen ingame Charakter auf die Webseite!" +L.AMR_HELPTAB_Q2 = "|c00999999Q:|r Muss ich zum Optimieren jedesmal einen neuen Text generieren?" +L.AMR_HELPTAB_A2 = "|c0066dd66A:|r Ja. Gehe auf die |c00ffd100Website|r und klicke auf den grünen '|c0000ff00Update from Armory|r' Button über deinem Charakternamen, damit immer die aktuellsten Daten vorliegen. Optimiere deine Ausrüstung und klicke dann auf den blauen '|c0018C0F7Export to Addon|r' Button in der '|c00BF28D6Now What?|r' Sektion rechts, um deinen neuen Text zu bekommen. Kehre zu diesem |c00ffd100Addon|r zurück, gehe in den '|c00ffd100Ausrüstung laden|r' Tab und füge den Text in die Box ein." +L.AMR_HELPTAB_Q3 = "|c00999999Q:|r Kann ich meine Einkaufsliste an einen anderen meiner Charaktere schicken?" +L.AMR_HELPTAB_A3 = '|c0066dd66A:|r Ja, gehe in den Reiter Einkaufsliste und wähle "Post" als Option im Menü. Du kannst die Liste dann per Post verschicken.' +L.AMR_HELPTAB_Q4 = "|c00999999Q:|r Ich bin gerade im Raid und habe einen Gegenstand bekommen. Kann ich diesen schnell optimieren?" +L.AMR_HELPTAB_A4 = "|c0066dd66A:|r Ja! Schaue in diese Anleitung hier: |c003333ffhttp://blog.askmrrobot.com/addon#raid|r" +L.AMR_HELPTAB_Q5 = "|c00999999Q:|r Wo ist das automatische Sockeln?" +L.AMR_HELPTAB_A5 = "|c0066dd66A:|r Wir haben es vorrübergehend entfernt. Wir planen, es in WoD zurück zu bringen." +L.AMR_HELPTAB_Q6 = "|c00999999Q:|r Ist Mr. Robot am aktuellen Stand?" +L.AMR_HELPTAB_A6 = "|c0066dd66A:|r Ja! Für weitere Informationen, gehe auf \r|c003333ffhttp://blog.askmrrobot.com/2014/10/what-to-do-for-6-0-2/|r" --ui/ImportTab.lua --new -L.AMR_IMPORTTAB_BUTTON = "Load Gear" -L.AMR_IMPORTTAB_TITLE = "Load a gear set from the website" -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" -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" -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" -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" -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." +L.AMR_IMPORTTAB_BUTTON = "Importieren" +L.AMR_IMPORTTAB_TITLE = "Ein Ausrüstungsset von der Webseite laden" +L.AMR_IMPORTTAB_INSTRUCTIONS_1 = "1. Klicke auf den blauen '|c0018C0F7Export to Addon|r' Button auf unserer |c00BF28D6Website|r. Er befindet sich rechts in der '|c33ffffffNow What?|r' Sektion. Kopiere den Text im Textfeld, das sich öffnet.\n|c00999999Zum Kopieren, drücke Strg + C (oder Cmd + C auf einem Mac)|r" +L.AMR_IMPORTTAB_INSTRUCTIONS_2 = "2. Kehre dann zu diesem Fenster im |c00ffd100Addon|r zurück. Füge den Text in die Box unten ein und klicke auf den 'Importieren' Button.\n|c00999999Zum Einfügen, drücke Strg + V (oder Cmd + V auf einem Mac)|r" + --ui/ShoppingListTab --popup mail L.AMR_SHOPPINGLISTTAB_OPEN_MAIL = "Du muss das Postfenster öffnen, damit dies funktioniert." L.AMR_SHOPPINGLISTTAB_BUTTON_OK = "Ok" --new L.AMR_SHOPPINGLISTTAB_TITLE = "Einkaufsliste" -L.AMR_SHOPPINGLISTTAB_BUTTON_SEND = "abschicken!" -L.AMR_SHOPPINGLISTTAB_ENCHANT_MATERIALS = "VZMaterialien" +L.AMR_SHOPPINGLISTTAB_BUTTON_SEND = "Abschicken!" +L.AMR_SHOPPINGLISTTAB_ENCHANT_MATERIALS = "Verzauberungsmaterialien" L.AMR_SHOPPINGLISTTAB_ENCHANTS = "Verzauberungen" L.AMR_SHOPPINGLISTTAB_GEMS = "Edelsteine" -L.AMR_SHOPPINGLISTTAB_INCLUDE = "Inhalt:" +L.AMR_SHOPPINGLISTTAB_INCLUDE = "Einfügen:" L.AMR_SHOPPINGLISTTAB_SEND_LIST_TO = "Sende Liste an" -L.AMR_SHOPPINGLISTTAB_WHISPER_CHANNEL = "Flüster oder sende an Channel wie /raid oder /guild." -L.AMR_SHOPPINGLISTTAB_SEND_JEWELCRAFT_ENCHANTER = "Sende an Juwe oder VZ :)" +L.AMR_SHOPPINGLISTTAB_WHISPER_CHANNEL = "Flüstern oder an einen Kanal wie /raid oder /gilde senden." +L.AMR_SHOPPINGLISTTAB_SEND_JEWELCRAFT_ENCHANTER = "An einen Juwelier oder Verzauberer senden" L.AMR_SHOPPINGLISTTAB_TOTAL = "Total" L.AMR_SHOPPINGLISTTAB_DONE = "EINKAUF ERLEDIGT!" -L.AMR_SHOPPINGLISTTAB_A_ROBOTS_WISHLIST = "Es sei denn du willst mir ein Geburtstagsgeschenk kaufen! Ich mag Titan Bolzen und Roboter Hunde... Oder war es Titan Hunde und Roboter Bolzen..." -L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND = "ein Freund" +L.AMR_SHOPPINGLISTTAB_A_ROBOTS_WISHLIST = "Es sei denn, du willst mir ein Geburtstagsgeschenk kaufen! Ich mag Titan Bolzen und Roboter Hunde... Oder war es Titan Hunde und Roboter Bolzen..." +L.AMR_SHOPPINGLISTTAB_DROPDOWN_FRIEND = "Flüstern" L.AMR_SHOPPINGLISTTAB_DROPDOWN_PARTY = "Gruppe" L.AMR_SHOPPINGLISTTAB_DROPDOWN_RAID = "Raid" L.AMR_SHOPPINGLISTTAB_DROPDOWN_GUILD = "Gilde" -L.AMR_SHOPPINGLISTTAB_DROPDOWN_CHANNEL = "Channel" +L.AMR_SHOPPINGLISTTAB_DROPDOWN_CHANNEL = "Kanal" L.AMR_SHOPPINGLISTTAB_DROPDOWN_MAIL = "Post" -L.AMR_SHOPPINGLISTTAB_MAIL_ROBOT_MESSAGE = "Mr. Robot sagt ich brauche folgendes:\n" +L.AMR_SHOPPINGLISTTAB_MAIL_ROBOT_MESSAGE = "Mr. Robot sagt, ich brauche folgendes, um meine Ausrüstung zu optimieren:\n" L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_GE = 'Anfrage für Edelsteine und Verzauberungen' L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_G = 'Anfrage für Edelsteine' L.AMR_SHOPPINGLISTTAB_MAIL_SUBJECT_E = 'Anfrage für Verzauberungen' -L.AMR_SHOPPINGLISTTAB_CHAT_ROBOT_MESSAGE = "Mr. Robot sagt ich brauche:" +L.AMR_SHOPPINGLISTTAB_CHAT_ROBOT_MESSAGE = "Mr. Robot sagt ich brauche" --ui/SummaryTab.lua L.AMR_SUMMARYTAB_TITLE = "Übersicht" L.AMR_SUMMARYTAB_NO_IMPORT = "Du hast keine Optimierungen importiert." -L.AMR_SUMMARYTAB_GET_STARTED = 'Wechsel in die "Importkategorie" um zu beginnen.' +L.AMR_SUMMARYTAB_GET_STARTED = 'Wechsel in den "Import"-Reiter um zu beginnen.' L.AMR_SUMMARYTAB_GO_UPGRADE = "Bitte werte die folgenden Gegenstände auf:" L.AMR_SUMMARYTAB_SLOT = "Platz" L.AMR_SUMMARYTAB_ITEM_NAME = "Gegenstandsname" @@ -489,25 +203,24 @@ L.AMR_SUMMARYTAB_OPTIMIZATIONS_TO_GO = "Du hast ? Optimierungen durchzuführen:" L.AMR_SUMMARYTAB_GEMS_TO_GO = "? Edelsteine" L.AMR_SUMMARYTAB_ENCHANTS_TO_GO = "? Verzauberungen" -L.AMR_SUMMARYTAB_REFORGES_TO_GO = "? Umschmiedungen" -L.AMR_SUMMARYTAB_VIEW_TABS = "Schaue in den Edelstein-,Verzauberungs- und Umschmiedungskategorien|n um die vorgeschlagenen Optimierungen zu sehen." +L.AMR_SUMMARYTAB_VIEW_TABS = "Schaue in die Edelsteine und Verzauberungen Reiter, um die vorgeschlagenen Optimierungen zu sehen." L.AMR_SUMMARYTAB_GEMCOUNT = "%d \1244Edelstein:Edelsteine;" L.AMR_SUMMARYTAB_ENCHANTCOUNT = "%d \1244Verzauberung:Verzauberungen;" L.AMR_SUMMARYTAB_OPTIMIZATIONCOUNT = "Du hast %d \1244Optimierung:Optimierungen; zu machen:" L.AMR_SUMMARYTAB_LAST_IMPORT_1 = "Letzer Import: %s\rDiese Optimierungen sind für %s" L.AMR_SUMMARYTAB_LAST_IMPORT_2 = "Letzter Import: %s\rDiese Optimierungen sind für %s's..." -L.AMR_SUMMARYTAB_LAST_IMPORT_PSPEC = "Prim. Talentspezialisierung:|n %s" -L.AMR_SUMMARYTAB_LAST_IMPORT_SSPEC = "Sek. Talentspezialisierung:|n %s" +L.AMR_SUMMARYTAB_LAST_IMPORT_PSPEC = "Primäre Spez.: %s" +L.AMR_SUMMARYTAB_LAST_IMPORT_SSPEC = "Sekundäre Spez.: %s" L.AMR_SUMMARYTAB_DIFF_REALM = "einen anderen Server: %s" L.AMR_SUMMARYTAB_DIFF_TALENT = "andere Talente" L.AMR_SUMMARYTAB_DIFF_GLYPHS = "andere Glyphen" -L.AMR_SUMMARYTAB_DIFF_GEAR = "Mr. Robot optimierte eine andere Rüstungszusammenstellung" +L.AMR_SUMMARYTAB_DIFF_GEAR = "Mr. Robot hat eine andere Ausrüstungszusammenstellung optimiert" L.AMR_SUMMARYTAB_DIFF_AND = "und" -L.AMR_SUMMARYTAB_DIFF_PLEASE_EQ = ". Bitte rüste die folgenden Gegenstände aus bevor du fortfährst." -L.AMR_SUMMARYTAB_DIFF_CHECK_CHAR = "WARNUNG: Bitte überprüfe deinen Charackter bevor du fortfährst:" +L.AMR_SUMMARYTAB_DIFF_PLEASE_EQ = ". Bitte rüste die folgenden Gegenstände aus, bevor du fortfährst." +L.AMR_SUMMARYTAB_DIFF_CHECK_CHAR = "WARNUNG: Bitte überprüfe deinen Charackter, bevor du fortfährst:" L.AMR_SUMMARYTAB_DIFF_OPTIMIZED_FOR = "Mr. Robot optimierte für " --showImportError -L.AMR_SUMMARYTAB_IMPORT_NOT_WORK = 'Fehler! Dein Import ist fehlgeschlagen:|n|n%s' +L.AMR_SUMMARYTAB_IMPORT_NOT_WORK = 'Fehler! Dein Import ist fehlgeschlagen:\n\n%s' --ui/RobotStamp.lua -L.AMR_ROBOTSTAMP_TEXT = "ROBOT STAMP OF APPROVAL" -L.AMR_ROBOTSTAMP_GEMS = "Your gems are 100% optimal! You are truly, truly outrageous." \ No newline at end of file +L.AMR_ROBOTSTAMP_TEXT = "MR. ROBOT PRÜFSIEGEL" +L.AMR_ROBOTSTAMP_GEMS = "Deine Edelsteine sind 100% optimal! Du bist nun wirklich, wirklich herausragend." \ No newline at end of file diff -r 7056a71acab3 -r 90175bdc50e6 localization/localization.en.lua --- a/localization/localization.en.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/localization/localization.en.lua Sun Nov 09 11:48:18 2014 -0800 @@ -65,34 +65,13 @@ L.AMR_UI_MENU_COMBAT_LOG = "Combat Log" L.AMR_UI_MENU_HELP = "Help" ---validateInput -L.AMR_UI_IMPORT_ERROR_IMPROPER = "Oops, you didn't have proper import text" -L.AMR_UI_IMPORT_ERROR_IMPROPER_GOTO = "Please go back to AskMrRobot.com and grab optimizations for this character" -L.AMR_UI_IMPORT_ERROR_CHARACTER = "Oops, you've imported optimizations for %s" -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!" -L.AMR_UI_IMPORT_ERROR_RACE = "It looks like your race may have changed, which affects the optimizations." -L.AMR_UI_IMPORT_ERROR_RACE_CURRENT = "Right now, Mr. Robot thinks you are a %s" -L.AMR_UI_IMPORT_ERROR_FACTION = "It looks like your faction may have changed." -L.AMR_UI_IMPORT_ERROR_FACTION_CURRENT = "Right now, Mr. Robot thinks you belong to the %s" -L.AMR_UI_IMPORT_ERROR_PROFESSIONS = "Your professions have changed, which affects the optimizations." -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." -L.AMR_UI_IMPORT_ERROR_SPEC = "WARNING! Please check your character before proceeding:" -L.AMR_UI_IMPORT_ERROR_SPEC_CHANGE = "Change your spec to %s." -L.AMR_UI_IMPORT_ERROR_SPEC_UNEXPECTED = "AskMrRobot.com did not expect to see a specialization." ---createImportDetailsErrorTab -L.AMR_UI_IMPORT_ERROR_NO_IMPORT = 'You have no optimizations imported. Click the |c00ffd100Load|r tab to get started.' -L.AMR_UI_IMPORT_ERROR_CANT_OPTIMIZE = "I can't optimize yet. Please go to the summary tab for more information." - L.AMR_UI_BUTTON_IMPORT = "Load" L.AMR_UI_BUTTON_SUMMARY = "Summary" L.AMR_UI_BUTTON_GEMS = "Gems" L.AMR_UI_BUTTON_ENCHANTS = "Enchants" L.AMR_UI_BUTTON_SHOPPING_LIST = "Shopping List" -L.AMR_UI_BUTTON_COMBAT_LOG = "Combat Log" -L.AMR_UI_BUTTON_HELP = "Help" + --AskMrRobot.lua ---eventListener:OnEvent -L.AMR_ON_EVENT_LOADED = "Loaded Ask Mr. Robot v%s" 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." --config.lua @@ -101,312 +80,14 @@ L.AMR_CONFIG_CHECKBOX_MINIMAP_LABEL = "Show minimap icon" L.AMR_CONFIG_CHECKBOX_MINIMAP_TOOLTIP_TITLE = "Minimap Icon" L.AMR_CONFIG_CHECKBOX_MINIMAP_DESCRIPTION = "Show the Ask Mr. Robot minimap icon." -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_LABEL = "Automatically show Mr. Robot's reforge window at the reforger" -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_TOOLTIP_TITLE = "Auto-Show Reforges" -L.AMR_CONFIG_CHECKBOX_AUTOREFORGE_DESCRIPTION = "When you have suggested reforges left to complete, automatically show Mr. Robot's reforge window when you visit a reforger." L.AMR_CONFIG_CHECKBOX_AUTOAH_LABEL = "Automatically show Mr. Robot's shopping list at the auction house" L.AMR_CONFIG_CHECKBOX_AUTOAH_TOOLTIP_TITLE = "Auto-Show Shopping List" 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." -L.AMR_CONFIG_CHECKBOX_AUTOLOG_LABEL = "Automatically turn on combat logging for Siege of Orgrimmar" -L.AMR_CONFIG_CHECKBOX_AUTOLOG_TOOLTIP_TITLE = "Automatically Log Siege of Orgrimmar" -L.AMR_CONFIG_CHECKBOX_AUTOLOG_DESCRIPTION = "When entering Siege of Orgrimmar, combat logging will be turned on. When leaving Siege of Orgrimmar, combat logging will be turned off." ---enchants.lua ---enchantNames -L.AMR_ENCHANTS_BELT_BUCKLE = "Belt Buckle" -L.AMR_ENCHANTS_FROSTBRAND = "Frostbrand" -L.AMR_ENCHANTS_FLAMETONGUE = "Flametongue" -L.AMR_ENCHANTS_DAMAGE = "Damage" -L.AMR_ENCHANTS_SHARPENED = "Sharpened" -L.AMR_ENCHANTS_WEIGHTED = "Weighted" -L.AMR_ENCHANTS_ARMOR = "Armor" -L.AMR_ENCHANTS_MANA = "Mana" -L.AMR_ENCHANTS_SHADOW_OIL = "Shadow Oil" -L.AMR_ENCHANTS_FROST_OIL = "Frost Oil" -L.AMR_ENCHANTS_SUNDERED = "Sundered" -L.AMR_ENCHANTS_ALL_RESISTANCES = "All Resistances" -L.AMR_ENCHANTS_SCOPE = "Scope" -L.AMR_ENCHANTS_BEASTSLAYING = "Beastslaying" -L.AMR_ENCHANTS_HASTE = "Haste" -L.AMR_ENCHANTS_FIERY_BLAZE = "Enchant: Fiery Blaze" -L.AMR_ENCHANTS_STEEL_WPNCHAIN = "Steel Weapon Chain" -L.AMR_ENCHANTS_DODGE = "Dodge" -L.AMR_ENCHANTS_HEALTH = "Health" -L.AMR_ENCHANTS_MAX_HEALTH = "Maximum Health" -L.AMR_ENCHANTS_IRON_SPIKE = "Iron Spike (8-12)" -L.AMR_ENCHANTS_THORIUM_SPIKE = "Thorium Spike (20-30)" -L.AMR_ENCHANTS_FELSTEEL_SPIKE = "Felsteel Spike (26-38)" -L.AMR_ENCHANTS_TITANIUM_SPIKE = "Titanium Spike (45-67)" -L.AMR_ENCHANTS_ELEMENTIUM_SPIKE = "Elementium Spike (90-133)" -L.AMR_ENCHANTS_PYRIUM_SPIKE = "Pyrium Spike (210-350)" -L.AMR_ENCHANTS_GHOSTIRON_SPIKE = "Ghost Iron Spike (600-1000)" -L.AMR_ENCHANTS_ABSORPTION = "Absorption" -L.AMR_ENCHANTS_SPIRIT = "Spirit" -L.AMR_ENCHANTS_STR = "Str" -L.AMR_ENCHANTS_STAM = "Stam" -L.AMR_ENCHANTS_AGI = "Agi" -L.AMR_ENCHANTS_INT = "Int" -L.AMR_ENCHANTS_CRIT = "Crit" -L.AMR_ENCHANTS_EXP = "Exp" -L.AMR_ENCHANTS_PARRY = "Parry" -L.AMR_ENCHANTS_HIT = "Hit" -L.AMR_ENCHANTS_AP = "AP" -L.AMR_ENCHANTS_RESIL = "Resil" -L.AMR_ENCHANTS_MASTERY = "Mastery" -L.AMR_ENCHANTS_PVP_POW = "PvP Pow" -L.AMR_ENCHANTS_BLOCK = "Block" -L.AMR_ENCHANTS_SWORD_SKILL = "Sword Skill" -L.AMR_ENCHANTS_SWORD_SKILL_2H = "Two-Handed Sword Skill" -L.AMR_ENCHANTS_MACE_SKILL = "Mace Skill" -L.AMR_ENCHANTS_MACE_SKILL_2H = "Two-Handed Mace Skill" -L.AMR_ENCHANTS_AXE_SKILL = "Axe Skill" -L.AMR_ENCHANTS_AXE_SKILL_2H = "Two-Handed Axe Skill" -L.AMR_ENCHANTS_DAGGER_SKILL = "Dagger Skill" -L.AMR_ENCHANTS_GUN_SKILL = "Gun Skill" -L.AMR_ENCHANTS_BOW_SKILL = "Bow Skill" -L.AMR_ENCHANTS_BEAST_SLAYING = "Beast Slaying" -L.AMR_ENCHANTS_ON_GET_HIT_SBOLT = "On Get Hit: Shadow Bolt" -L.AMR_ENCHANTS_SP = "SP" -L.AMR_ENCHANTS_FIRE_SPELL_DAMAGE = "Fire Spell Damage" -L.AMR_ENCHANTS_HOLY_SPELL_DAMAGE = "Holy Spell Damage" -L.AMR_ENCHANTS_FROST_SPELL_DAMAGE = "Frost Spell Damage" -L.AMR_ENCHANTS_NATURE_SPELL_DAMAGE = "Nature Spell Damage" -L.AMR_ENCHANTS_SHADOW_SPELL_DAMAGE = "Shadow Spell Damage" -L.AMR_ENCHANTS_ARCANE_SPELL_DAMAGE = "Arcane Spell Damage" -L.AMR_ENCHANTS_WEAPON_DAMAGE = "Weapon Damage" -L.AMR_ENCHANTS_FIRE_RESISTANCE = "Fire Resistance" -L.AMR_ENCHANTS_FROST_RESISTANCE = "Frost Resistance" -L.AMR_ENCHANTS_SHADOW_RESISTANCE = "Shadow Resistance" -L.AMR_ENCHANTS_NATURE_RESISTANCE = "Nature Resistance" -L.AMR_ENCHANTS_ARCANE_RESISTANCE = "Arcane Resistance" -L.AMR_ENCHANTS_ALL_STATS = "All Stats" -L.AMR_ENCHANTS_RUN_SPEED = "Run Speed" -L.AMR_ENCHANTS_RESIST_ALL = "Resist All" -L.AMR_ENCHANTS_FISHING_LURE = "Fishing Lure" -L.AMR_ENCHANTS_FISHING_SKILL = "Fisching Skill" -L.AMR_ENCHANTS_WINDFURY = "Windfury" -L.AMR_ENCHANTS_WEAPON_FIRE_DMG = "Weapon Fire Damage" -L.AMR_ENCHANTS_ORB_OF_FIRE = "Orb of Fire" -L.AMR_ENCHANTS_BLACK_TEMPLE_DUMMY = "Black Temple Dummy" -L.AMR_ENCHANTS_MITHRIL_SPIKE = "Mithril Spike (16-20)" -L.AMR_ENCHANTS_MOUNT_SPEED = "Mount Speed" -L.AMR_ENCHANTS_STEALTH = "Stealth" -L.AMR_ENCHANTS_SCHIELD_BLOCK = "Shield Block" -L.AMR_ENCHANTS_FIERY_WEAPON = "Fiery Weapon" -L.AMR_ENCHANTS_MINING = "Mining" -L.AMR_ENCHANTS_HERBALISM = "Herbalism" -L.AMR_ENCHANTS_SKINNING = "Skinning" -L.AMR_ENCHANTS_FISHING = "Fishing" -L.AMR_ENCHANTS_OMEN_OF_CLARITY = "Omen of Clarity" -L.AMR_ENCHANTS_MHTEST02 = "MHTest02" -L.AMR_ENCHANTS_COLD_BLOOD = "Cold Blood" -L.AMR_ENCHANTS_FIRESTONE_1 = "Firestone 1" -L.AMR_ENCHANTS_FIRESTONE_2 = "Firestone 2" -L.AMR_ENCHANTS_FIRESTONE_3 = "Firestone 3" -L.AMR_ENCHANTS_FIRESTONE_4 = "Firestone 4" -L.AMR_ENCHANTS_FIRESTONE_5 = "Firestone 5" -L.AMR_ENCHANTS_FIRESTONE_MASTER = "Master Firestone" -L.AMR_ENCHANTS_FIRESTONE = "Firestone" -L.AMR_ENCHANTS_FIRESTONE_GREATER = "Greater Firestone" -L.AMR_ENCHANTS_FIRESTONE_MAJOR = "Major Firestone" -L.AMR_ENCHANTS_FIRESTONE_FEL = "Fel Firestone" -L.AMR_ENCHANTS_FIRESTONE_GRAND = "Grand Firestone" -L.AMR_ENCHANTS_SPELLSTONE = "Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_GREATER = "Greater Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_MAJOR = "Major Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_MASTER = "Master Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_DEMONIC = "Demonic Spellstone" -L.AMR_ENCHANTS_SPELLSTONE_GRAND = "Grand Spellstone" -L.AMR_ENCHANTS_ICY_CHILL = "Icy Chill" -L.AMR_ENCHANTS_LIFESTEALING = "Lifestealing" -L.AMR_ENCHANTS_UNHOLY_WEAPON = "Unholy Weapon" -L.AMR_ENCHANTS_CRUSADER = "Crusader" -L.AMR_ENCHANTS_BLOCK_LEVEL = "Block Level" -L.AMR_ENCHANTS_RANGED_ATTACK_POWER = "Ranged Attack Power" -L.AMR_ENCHANTS_MANA_EVERY_5_SEC = "mana every 5 sec." -L.AMR_ENCHANTS_HEALTH_EVERY_5_SEC = "health every 5 sec." -L.AMR_ENCHANTS_MELEE_CRIT_STRIKE = "Melee Critical Strike" -L.AMR_ENCHANTS_ZZOLDBLANK = "zzOLDBlank" -L.AMR_ENCHANTS_THREAT = "Threat" -L.AMR_ENCHANTS_SHADOW_SPELL_POWER = "Shadow Spell Power" -L.AMR_ENCHANTS_FROST_SPELL_POWER = "Frost Spell Power" -L.AMR_ENCHANTS_FIRE_SPELL_POWER = "Fire Spell Power" -L.AMR_ENCHANTS_REDUCED_THREAT = "Reduced Threat" -L.AMR_ENCHANTS_WIZARD_OIL_MINOR = "Minor Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_LESSER = "Lesser Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL = "Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_BRILLIANT = "Brilliant Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_SUPERIOR = "Superior Wizard Oil" -L.AMR_ENCHANTS_WIZARD_OIL_EXCEPTIONAL = "Exceptional Wizard Oil" -L.AMR_ENCHANTS_MANA_OIL_MINOR = "Minor Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_LESSER = "Lesser Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_BRILLIANT = "Brilliant Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_SUPERIOR = "Superior Mana Oil" -L.AMR_ENCHANTS_MANA_OIL_EXCEPTIONAL = "Exceptional Mana Oil" -L.AMR_ENCHANTS_ELEMENTAL_SLAYER = "Elemental Slayer" -L.AMR_ENCHANTS_DEMONSLAYING = "Demonslaying" -L.AMR_ENCHANTS_VENOMHIDE_POISON = "Venomhide Poison" -L.AMR_ENCHANTS_ARCANE_FIRE_SPELL_POWER = "Arcane and Fire Spell Power" -L.AMR_ENCHANTS_SHADOW_FROST_SPELL_POWER = "Shadow and Frost Spell Power" -L.AMR_ENCHANTS_MONGOOSE = "Mongoose" -L.AMR_ENCHANTS_SPELLSURGE = "Spellsurge" -L.AMR_ENCHANTS_BATTLEMASTER = "Battlemaster" -L.AMR_ENCHANTS_AP_VS_UNDEAD = "Attack Power vs Undead" -L.AMR_ENCHANTS_SP_VS_UNDEAD = "Spell Power vs Undead" -L.AMR_ENCHANTS_AGI_PER_GEM = "Agility per different colored gem" -L.AMR_ENCHANTS_STR_4_BLUE_GEMS = "Strength if 4 blue gems equipped" -L.AMR_ENCHANTS_LESSER_RUNE_WARDING = "Lesser Rune of Warding" -L.AMR_ENCHANTS_GREATER_RUNE_WARDING = "Greater Rune of Warding" -L.AMR_ENCHANTS_LESSER_WARD_SHIELDING = "Lesser Ward of Shielding" -L.AMR_ENCHANTS_GREATER_WARD_SHIELDING = "Greater Ward of Shielding" -L.AMR_ENCHANTS_ZZOLDLESSER_RUNE_WARDING = "ZZOLDLesser Rune of Warding" -L.AMR_ENCHANTS_COMFORT_INSOLES = "Comfortable Insoles" -L.AMR_ENCHANTS_ARCANE_DAMAGE = "Arcane Damage" -L.AMR_ENCHANTS_FIRE_DAMAGE = "Fire Damage" -L.AMR_ENCHANTS_NATURE_DAMAGE = "Nature Damage" -L.AMR_ENCHANTS_FROST_DAMAGE = "Frost Damage" -L.AMR_ENCHANTS_SHADOW_DAMAGE = "Shadow Damage" -L.AMR_ENCHANTS_HEALING = "Healing" -L.AMR_ENCHANTS_BLOODY_DANCING_STEEL = "Bloody Dancing Steel" -L.AMR_ENCHANTS_TYRANNY = "Tyranny" -L.AMR_ENCHANTS_SOCKET_BELT = "Socket Belt" -L.AMR_ENCHANTS_USE_WALK_ON_WATER = "Use: Allows you to walk on water and increases swim speed for up to 6 sec. (30 Sec Cooldown)" -L.AMR_ENCHANTS_BREATH_AGILE_PRINCE = "Breath of the Agile Prince" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_10SEC = "Use: Reduce your fall speed for 10 sec. (5 Min Cooldown) (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_30SEC = "Use: Reduces your falling speed for 30 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_REDUCE_FALLING_SPEED_2MIN = "Use: Reduces your falling speed for 2 min. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_INT_AGI_STR_480 = "Use: Increases your Intellect, Agility, or Strength by 480 for 10 sec. Your highest stat is always chosen. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_INT_AGI_STR_1920 = "Use: Increases your Intellect, Agility, or Strength by 1,920 for 10 sec. Your highest stat is always chosen. (1 Min Cooldown)" -L.AMR_ENCHANTS_SWORDGUARD_EMBROIDERY = "Swordguard Embroidery" -L.AMR_ENCHANTS_SWORDGUARD_1 = "Swordguard 1" -L.AMR_ENCHANTS_SWORDGUARD_2 = "Swordguard 2" -L.AMR_ENCHANTS_SWORDGUARD_3 = "Swordguard 3" -L.AMR_ENCHANTS_DARKGLOW_1 = "Darkglow 1" -L.AMR_ENCHANTS_DARKGLOW_2 = "Darkglow 2" -L.AMR_ENCHANTS_DARKGLOW_3 = "Darkglow 3" -L.AMR_ENCHANTS_LIGHTWEAVE_1 = "Lightweave 1" -L.AMR_ENCHANTS_LIGHTWEAVE_2 = "Lightweave 2" -L.AMR_ENCHANTS_LIGHTWEAVE_3 = "Lightweave 3" -L.AMR_ENCHANTS_PANDAREN_FISHING_LURE = "Pandaren Fishing Lure" -L.AMR_ENCHANTS_MAGIC_WEAPON = "Magic Weapon" -L.AMR_ENCHANTS_USE_MYTHICAL_HEALING_POTION = "Use: Injects a Mythical Healing Potion directly into your bloodstream, increasing potency and healing you for 30,000. (1 Min Cooldown)" -L.AMR_ENCHANTS_PLACEHOLDER_SHOULDER = "Placeholder Shoulder Enchant" -L.AMR_ENCHANTS_PANDEMONIUM = "Pandamonium" -L.AMR_ENCHANTS_MIRROR_SCOPE = "Mirror Scope" -L.AMR_ENCHANTS_BLASTINGTON = "Blastington's" -L.AMR_ENCHANTS_USE_EXPLOSIVE_FIREWORKS = "Use: Launches a cluster of highly explosive fireworks that detonate on impact for 14,000 Fire damage over 3 sec. (45 Sec Cooldown)" -L.AMR_ENCHANTS_USE_DODGE = "Use: Increases your dodge by 480 for 10 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_SAMURAI = "Samurai" -L.AMR_ENCHANTS_RIVERS_SONG = "River's Song" -L.AMR_ENCHANTS_COLOSSUS = "Colossus" -L.AMR_ENCHANTS_DANCING_STEEL = "Dancing Steel" -L.AMR_ENCHANTS_ELEMENTAL_FORCE = "Elemental Force" -L.AMR_ENCHANTS_JADE_SPIRIT = "Jade Spirit" -L.AMR_ENCHANTS_WINDSONG = "Windsong" -L.AMR_ENCHANTS_FLINTLOCKE = "Flintlocke's" -L.AMR_ENCHANTS_USE_RUN_SPEED = "Use: Greatly increase your run speed for 5 sec. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_MENTAL_COMBAT = "Use: Engage in mental combat with a humanoid target in an attempt to pacify or control them. (10 Min Cooldown)" -L.AMR_ENCHANTS_USE_CARDBOARD_ASSASSIN = "Use: Summons a Cardboard Assassin to draw the attention of enemies. (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_SHIELD_OF_FORCE = "Use: Protects you with a shield of force that stops 18,000 damage for 8 sec. The strong magnetic field sometimes has strange side effects... (5 Min Cooldown)" -L.AMR_ENCHANTS_USE_PERSONAL_INVISIBILITY_FIELD = "Use: Activates a personal invisibility field. Cannot be used in combat. (3 Min Cooldown)" -L.AMR_ENCHANTS_USE_ELECTRIC_BALL = "Use: Fires an electrified ball at an enemy for 4,800 Nature damage. (2 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_ARMOR_700 = "Use: Increases your armor by 700 for 14 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_ARMOR_1500 = "Use: Increases your armor by 1,500 for 13 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_GNOMISH_XRAY = "Gnomish X-Ray" -L.AMR_ENCHANTS_LANDSLIDE = "Landslide" -L.AMR_ENCHANTS_WINDWALK = "Windwalk" -L.AMR_ENCHANTS_POWER_TORRENT = "Power Torrent" -L.AMR_ENCHANTS_HEARTSONG = "Heartsong" -L.AMR_ENCHANTS_HURRICANE = "Hurricane" -L.AMR_ENCHANTS_AVALANCHE = "Avalanche" -L.AMR_ENCHANTS_MENDING = "Mending" -L.AMR_ENCHANTS_NERUBIAN_CARAPACE = "Nerubian Carapace" -L.AMR_ENCHANTS_BLOOD_DRAINING = "Blood Draining" -L.AMR_ENCHANTS_BLADE_WARD = "Blade Ward" -L.AMR_ENCHANTS_TITANIUM_PLATING = "Titanium Plating" -L.AMR_ENCHANTS_SOCKET_STAFF = "Socket Staff" -L.AMR_ENCHANTS_STONESKIN_GARGOYLE = "Stoneskin Gargoyle" -L.AMR_ENCHANTS_BERSERKING = "Berserking" -L.AMR_ENCHANTS_BLACK_MAGIC = "Black Magic" -L.AMR_ENCHANTS_SOCKET_GLOVES = "Socket Gloves" -L.AMR_ENCHANTS_SOCKET_BRACERS = "Socket Bracer" -L.AMR_ENCHANTS_CHANCE_INCREASE_MELEE_RANGED_ASPEED = "Chance to Increase Melee/Ranged Attack Speed" -L.AMR_ENCHANTS_SWORDBREAKING = "Swordbreaking" -L.AMR_ENCHANTS_SPELLBREAKING = "Spellbreaking" -L.AMR_ENCHANTS_USE_STUN_MECH_UNITS_1MIN = "Use: Stuns all nearby Mechanical units for 3 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_THERMAL_GRENADE = "Use: Detatch and throw a thermal grenade, inflicting 10,000 Fire damage and incapacitating targets for 3 sec in a 3 yard radius. Any damage will break the effect. (1 Min Cooldown)" -L.AMR_ENCHANTS_USE_EXPLOSIVE_ROCKET = "Use: Fires an explosive rocket at an enemy for 1,165 Fire damage. (45 Sec Cooldown)" -L.AMR_ENCHANTS_USE_INCREASE_HASTE_240 = "Use: Increases your haste by 240 for 12 sec. (1 Min Cooldown)" -L.AMR_ENCHANTS_CHANCE_INCREASE_SPELL_CAST_SPEED = "Chance to Increase Spell Cast Speed" -L.AMR_ENCHANTS_MELEEDMG_STUN_TARGET = "Melee Damage and Chance to Stun Target" -L.AMR_ENCHANTS_BLOCK_VALUE = "Block Value" -L.AMR_ENCHANTS_GEM_TEST = "gem test enchantment" -L.AMR_ENCHANTS_ROCKBITER = "Rockbiter" -L.AMR_ENCHANTS_AP_VS_UNDEAD_DEMONS = "Attack Power vs Undead and Demons" -L.AMR_ENCHANTS_POISON = "Poison" -L.AMR_ENCHANTS_ADAMANTITE_WEAPON_CHAIN = "Adamantite Weapon Chain" -L.AMR_ENCHANTS_EXECUTIONER = "Executioner" -L.AMR_ENCHANTS_GATHERER = "Gatherer" -L.AMR_ENCHANTS_ICEBREAKER_WEAPON = "Icebreaker Weapon" -L.AMR_ENCHANTS_LIFEWARD = "Lifeward" -L.AMR_ENCHANTS_ICEWALKER = "Icewalker" -L.AMR_ENCHANTS_GIANTSLAYING = "Giantslaying" -L.AMR_ENCHANTS_BLESSED_WEAPON_COATING = "Blessed Weapon Coating" -L.AMR_ENCHANTS_RIGHTEOUS_WEAPON_COATING = "Righteous Weapon Coating" -L.AMR_ENCHANTS_DEATHFROST = "Deathfrost" -L.AMR_ENCHANTS_TEST_RIDING_CROP = "Test Riding Crop Enchant" -L.AMR_ENCHANTS_TEST_ADD_SOCKETS_ENCHANT = "Test Add Sockets Enchant" -L.AMR_ENCHANTS_TEST_SKILL_REQ_ENCHANT = "Test Skill Req Enchant" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN = "Frozen Rune Weapon" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_2 = "Frozen Rune Weapon 2" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_3 = "Frozen Rune Weapon 3" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_4 = "Frozen Rune Weapon 4" -L.AMR_ENCHANTS_FROZEN_RUNE_WPN_5 = "Frozen Rune Weapon 5" -L.AMR_ENCHANTS_QA_TEST_BLANK_PURPLE_GEM = "QA Test Blank Purple Gem Enchant" -L.AMR_ENCHANTS_NORTHREND_FLIGHT = "Northrend Flight" -L.AMR_ENCHANTS_EARTHLIVING = "Earthliving" -L.AMR_ENCHANTS_EMPOWER_RUNE_WPN = "Empower Rune Weapon" -L.AMR_ENCHANTS_SWORDSHATTERING = "Swordshattering" -L.AMR_ENCHANTS_LICHBANE = "Lichbane" -L.AMR_ENCHANTS_SPELLSHATTERING = "Spellshattering" -L.AMR_ENCHANTS_FALLEN_CRUSADER = "Fallen Crusader" -L.AMR_ENCHANTS_CINDERGLACIER = "Cinderglacier" -L.AMR_ENCHANTS_RAZORICE = "Razorice" ---gems.lua ---alternateGemName -L.AMR_GEMS_INT = "Int" -L.AMR_GEMS_STR = "Str" -L.AMR_GEMS_AGI = "Agi" -L.AMR_GEMS_CRIT = "Crit" -L.AMR_GEMS_HASTE = "Haste" -L.AMR_GEMS_HIT = "Hit" -L.AMR_GEMS_PVP_POW = "PvP Pow" -L.AMR_GEMS_STAM = "Stam" -L.AMR_GEMS_DODGE = "Dodge" -L.AMR_GEMS_SPIRIT = "Spirit" -L.AMR_GEMS_PARRY = "Parry" -L.AMR_GEMS_RESIL = "Resil" -L.AMR_GEMS_EXP = "Exp" -L.ARMS_GEM_MASTERY = "Mastery" -L.AMR_GEMS_CRIT_EFF = "Crit Efct" -L.AMR_GEMS_BLOCK = "Block" -L.AMR_GEMS_MANA = "Mana" -L.AMR_GEMS_REFLECT = "Reflect" -L.AMR_GEMS_SNARE = "Snare" -L.AMR_GEMS_SILENCE = "Silence" -L.AMR_GEMS_ARMOR = "Armor" -L.AMR_GEMS_FEAR = "Fear" -L.AMR_GEMS_THREAT = "Threat" -L.AMR_GEMS_RUN_SPEED = "Run Speed" -L.AMR_GEMS_INDOMITABLE = "Indomitable" -L.AMR_GEMS_COURAGEOUS = "Courageous" -L.AMR_GEMS_CAPACITIV = "Capacitive" -L.AMR_GEMS_SINISTER = "Sinister" -L.AMR_GEMS_STUN = "Stun" ---autoGemHelper -L.AMR_GEMS_NOT_ENOUGH_SOCKETS = 'Ask Mr Robot: Something is wrong. There are not enough sockets on this item.' + --wait.lua --wait L.AMR_WAIT_BAD_ARGUMENTS = "Bad Arguments to amr__wait" + --dir ui --ui/CombatLogTab.lua L.AMR_COMBATLOGTAB_COMBAT_LOGGING = "Combat Logging" @@ -416,7 +97,6 @@ L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_LABEL = "Always log Siege of Orgrimmar" L.AMR_COMBATLOGTAB_CHECKBOX_AUTOLOG_SOO_TOOLTIP_TITLE = "Auto-Log Siege of Orgrimmar" 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." -L.AMR_COMBATLOGTAB_AUTOMATIC = "Automatic:" L.AMR_COMBATLOGTAB_HEADLINE_OVER_BUTTON = "Save Characters" L.AMR_COMBATLOGTAB_SAVE_CHARACTER = "Save Character Data" L.AMR_COMBATLOGTAB_INSTRUCTIONS = "INSTRUCTIONS" @@ -446,13 +126,13 @@ L.AMR_ENCHANTTAB_CURRENT = "Current" L.AMR_ENCHANTTAB_OPTIMIZED = "Optimized" L.AMR_ENCHANTTAB_TESTSLOT = "TestSlot" -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." --ui/ExportTab.lua L.AMR_EXPORTTAB_EXPORT_TITLE = "Export your character to AskMrRobot.com" L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_1 = "1. Open your bank" L.AMR_EXPORTTAB_COPY_PASTE_EXPORT_2 = "2. Copy the text below by pressing Ctrl+C (or Cmd+C on a Mac)" 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." 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." +L.AMR_EXPORTTAB_UPDATE = "Update" --ui/GemTab.lua --popup autogem finished @@ -469,7 +149,6 @@ L.AMR_GEMTAB_SLOT = "Slot" L.AMR_GEMTAB_CURRENT = "Current" L.AMR_GEMTAB_OPTIMIZED = "Optimized" -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." --Update L.AMR_GEMTAB_TO_OPTIMIZE = "You have %d \1244gem:gems; to optimize" --ui/HelpTab.lua @@ -493,9 +172,7 @@ L.AMR_IMPORTTAB_TITLE = "Load a gear set from the website" 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" 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" -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" -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" -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." + --ui/ShoppingListTab --popup mail L.AMR_SHOPPINGLISTTAB_OPEN_MAIL = "You need to open the mail window for this to work" @@ -536,7 +213,6 @@ L.AMR_SUMMARYTAB_OPTIMIZATIONS_TO_GO = "You have ? optimizations to make:" L.AMR_SUMMARYTAB_GEMS_TO_GO = "? gems" L.AMR_SUMMARYTAB_ENCHANTS_TO_GO = "? enchants" -L.AMR_SUMMARYTAB_REFORGES_TO_GO = "? reforges" L.AMR_SUMMARYTAB_VIEW_TABS = "View the Gem and Enchant tabs for suggested optimizations." L.AMR_SUMMARYTAB_GEMCOUNT = "%d \1244gem:gems;" L.AMR_SUMMARYTAB_ENCHANTCOUNT = "%d \1244enchant:enchants;" diff -r 7056a71acab3 -r 90175bdc50e6 ui/CombatLogTab.lua --- a/ui/CombatLogTab.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/ui/CombatLogTab.lua Sun Nov 09 11:48:18 2014 -0800 @@ -56,7 +56,7 @@ -- tab header local text = tab:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge") text:SetPoint("TOPLEFT", 0, -5) - text:SetText("Combat Logging") + text:SetText(L.AMR_COMBATLOGTAB_COMBAT_LOGGING) --scrollframe tab.scrollframe = AskMrRobot.ScrollFrame:new(nil, tab) diff -r 7056a71acab3 -r 90175bdc50e6 ui/ExportTab.lua --- a/ui/ExportTab.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/ui/ExportTab.lua Sun Nov 09 11:48:18 2014 -0800 @@ -52,7 +52,7 @@ btn = CreateFrame("Button", "AmrUpdateExportString", tab, "UIPanelButtonTemplate") btn:SetPoint("TOPLEFT", text, "BOTTOMLEFT", -2, -10) - btn:SetText("Update") + btn:SetText(L.AMR_EXPORTTAB_UPDATE) btn:SetWidth(110) btn:SetHeight(30) diff -r 7056a71acab3 -r 90175bdc50e6 ui/ShoppingListTab.lua --- a/ui/ShoppingListTab.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/ui/ShoppingListTab.lua Sun Nov 09 11:48:18 2014 -0800 @@ -59,7 +59,7 @@ local text3 = getglobal(tab.enchantMaterialsCheckbox:GetName() .. 'Text') text3:SetFontObject("GameFontHighlightLarge") text3:SetText(L.AMR_SHOPPINGLISTTAB_ENCHANT_MATERIALS) - text3:SetWidth(150) + text3:SetPoint("RIGHT", tab, "RIGHT", -20, 0) text3:SetPoint("TOPLEFT", tab.enchantMaterialsCheckbox, "TOPRIGHT", 2, -4) @@ -70,7 +70,7 @@ local text2 = getglobal(tab.enchantsCheckbox:GetName() .. 'Text') text2:SetFontObject("GameFontHighlightLarge") text2:SetText(L.AMR_SHOPPINGLISTTAB_ENCHANTS) - text2:SetWidth(150) + text2:SetPoint("RIGHT", tab, "RIGHT", -20, 0) text2:SetPoint("TOPLEFT", tab.enchantsCheckbox, "TOPRIGHT", 2, -4) @@ -82,7 +82,7 @@ local text = getglobal(tab.gemsCheckbox:GetName() .. 'Text') text:SetFontObject("GameFontHighlightLarge") text:SetText(L.AMR_SHOPPINGLISTTAB_GEMS) - text:SetWidth(150) + text:SetPoint("RIGHT", tab, "RIGHT", -20, 0) text:SetPoint("TOPLEFT", tab.gemsCheckbox, "TOPRIGHT", 2, -4) diff -r 7056a71acab3 -r 90175bdc50e6 ui/SummaryTab.lua --- a/ui/SummaryTab.lua Sun Nov 02 11:56:55 2014 -0800 +++ b/ui/SummaryTab.lua Sun Nov 09 11:48:18 2014 -0800 @@ -170,6 +170,10 @@ tab.instructions = tab:CreateFontString(nil, "ARTWORK", "GameFontWhite") tab.instructions:SetPoint("TOPLEFT", tab.enchantCount, "BOTTOMLEFT", 0, -15) tab.instructions:SetText(L.AMR_SUMMARYTAB_VIEW_TABS) + tab.instructions:SetPoint("RIGHT", -20, 0) + tab.instructions:SetWidth(tab.instructions:GetWidth()) + tab.instructions:SetWordWrap(true) + tab.instructions:SetJustifyH("LEFT") tab.instructions:Hide() return tab