annotate localization/enUS.lua @ 69:69db1c3025ac v27

fixed some bugs with 6.2 item link format changes, added bib overwolf support
author yellowfive
date Mon, 06 Jul 2015 17:39:57 -0700
parents cf2b6b9a8337
children 0515882856f1
rev   line source
yellowfive@57 1 --[[-------------------------------------------------------------------------------------------------------------
yellowfive@57 2 Master Localization File (English)
yellowfive@57 3
yellowfive@57 4 Instructions for Translators:
yellowfive@57 5 1. Copy this entire file into a new file in the same folder, named with your locale, e.g. deDE.lua for German.
yellowfive@61 6 2. At the top, replace "enUS" in the first code line with your locale, and change the next parameter from true to false.
yellowfive@57 7 3. Change all the English strings in your file as appropriate.
yellowfive@57 8
yellowfive@57 9 Note that a couple of the "strings" are functions that are provided variables. Feel free to modify these
yellowfive@57 10 functions as necessary to output an appropriately worded statement in your language (but don't change the parameters).
yellowfive@57 11 If you need assistance with the syntax of any used methods like string.format, please contact Team Robot and we will gladly assist you.
yellowfive@57 12 ---------------------------------------------------------------------------------------------------------------]]
yellowfive@57 13
yellowfive@57 14 -- replace enUS with your locale
yellowfive@57 15 local L = LibStub("AceLocale-3.0"):NewLocale("AskMrRobot", "enUS", true)
yellowfive@57 16
yellowfive@57 17 if L then
yellowfive@57 18
yellowfive@57 19
yellowfive@57 20 --[[----------------------------------------------------------------------
yellowfive@57 21 General
yellowfive@57 22 ------------------------------------------------------------------------]]
yellowfive@57 23
yellowfive@57 24 -- stat strings for e.g. displaying gem/enchant abbreviations, make as short as possible without being confusing/ambiguous
yellowfive@57 25 L.StatsShort = {
yellowfive@57 26 ["Strength"] = "Str",
yellowfive@57 27 ["Agility"] = "Agi",
yellowfive@57 28 ["Intellect"] = "Int",
yellowfive@57 29 ["CriticalStrike"] = "Crit",
yellowfive@57 30 ["Haste"] = "Haste",
yellowfive@57 31 ["Mastery"] = "Mastery",
yellowfive@57 32 ["Multistrike"] = "Multi",
yellowfive@57 33 ["Versatility"] = "Vers",
yellowfive@57 34 ["BonusArmor"] = "Armor",
yellowfive@57 35 ["Spirit"] = "Spirit",
yellowfive@57 36 ["Dodge"] = "Dodge",
yellowfive@57 37 ["Parry"] = "Parry",
yellowfive@57 38 ["MovementSpeed"] = "Speed",
yellowfive@57 39 ["Avoidance"] = "Avoid",
yellowfive@57 40 ["Stamina"] = "Stam",
yellowfive@57 41 ["Armor"] = "Armor",
yellowfive@57 42 ["AttackPower"] = "AP",
yellowfive@57 43 ["SpellPower"] = "SP",
yellowfive@57 44 ["PvpResilience"] = "PvP Res",
yellowfive@57 45 ["PvpPower"] = "PvP Pow",
yellowfive@57 46 }
yellowfive@57 47
yellowfive@57 48 L.InstanceNames = {
yellowfive@57 49 [1228] = "Highmaul",
yellowfive@57 50 [1205] = "Blackrock Foundry",
yellowfive@61 51 [1448] = "Hellfire Citadel",
yellowfive@57 52 [1182] = "Auchindoun",
yellowfive@57 53 [1175] = "Bloodmaul Slag Mines",
yellowfive@57 54 [1208] = "Grimrail Depot",
yellowfive@57 55 [1195] = "Iron Docks",
yellowfive@57 56 [1176] = "Shadowmoon Burial Grounds",
yellowfive@57 57 [1209] = "Skyreach",
yellowfive@57 58 [1279] = "The Everbloom",
yellowfive@57 59 [1358] = "Upper Blackrock Spire"
yellowfive@57 60 }
yellowfive@57 61
yellowfive@57 62 L.DifficultyNames = {
yellowfive@57 63 [17] = "LFR",
yellowfive@57 64 [14] = "Normal",
yellowfive@57 65 [15] = "Heroic",
yellowfive@57 66 [16] = "Mythic"
yellowfive@57 67 }
yellowfive@57 68
yellowfive@57 69 L.WeaponTypes = {
yellowfive@57 70 None = "None",
yellowfive@57 71 Axe = "Axe",
yellowfive@57 72 Mace = "Mace",
yellowfive@57 73 Sword = "Sword",
yellowfive@57 74 Fist = "Fist",
yellowfive@57 75 Dagger = "Dagger",
yellowfive@57 76 Staff = "Staff",
yellowfive@57 77 Polearm = "Polearm",
yellowfive@57 78 OffHand = "Off Hand",
yellowfive@57 79 Shield = "Shield",
yellowfive@57 80 Wand = "Wand",
yellowfive@57 81 Bow = "Bow",
yellowfive@57 82 Gun = "Gun",
yellowfive@57 83 Crossbow = "Crossbow"
yellowfive@57 84 }
yellowfive@57 85
yellowfive@57 86 L.ArmorTypes = {
yellowfive@57 87 None = "None",
yellowfive@57 88 Plate = "Plate",
yellowfive@57 89 Mail = "Mail",
yellowfive@57 90 Leather = "Leather",
yellowfive@57 91 Cloth = "Cloth"
yellowfive@57 92 }
yellowfive@57 93
yellowfive@57 94 L.OneHand = "One-Hand"
yellowfive@57 95 L.TwoHand = "Two-Hand"
yellowfive@57 96 L.OffHand = "Off Hand"
yellowfive@57 97
yellowfive@57 98
yellowfive@57 99 --[[----------------------------------------------------------------------
yellowfive@57 100 Main UI
yellowfive@57 101 ------------------------------------------------------------------------]]
yellowfive@57 102 L.AlertOk = "OK"
yellowfive@57 103 L.CoverCancel = "cancel"
yellowfive@57 104
yellowfive@57 105 L.MinimapTooltip =
yellowfive@57 106 [[Left Click to open the Ask Mr. Robot window.
yellowfive@57 107
yellowfive@57 108 Right Click to change spec and equip your saved gear for that spec.
yellowfive@57 109
yellowfive@57 110 Ctrl + Left Click to mark a fight as a wipe.]]
yellowfive@57 111
yellowfive@57 112 L.MainStatusText = function(version, url)
yellowfive@57 113 return version .. " loaded. Documentation available at " .. url
yellowfive@57 114 end
yellowfive@57 115
yellowfive@57 116 L.TabExportText = "Export"
yellowfive@57 117 L.TabGearText = "Gear"
yellowfive@57 118 L.TabLogText = "Combat Logs"
yellowfive@57 119 L.TabTeamText = "Team Optimizer"
yellowfive@57 120 L.TabOptionsText = "Options"
yellowfive@57 121
yellowfive@57 122 L.VersionChatTitle = "AMR Addon Version:"
yellowfive@57 123 L.VersionChatNotInstalled = "NOT INSTALLED"
yellowfive@57 124 L.VersionChatNotGrouped = "You are not in a group or raid!"
yellowfive@57 125
yellowfive@57 126
yellowfive@57 127 --[[----------------------------------------------------------------------
yellowfive@57 128 Export Tab
yellowfive@57 129 ------------------------------------------------------------------------]]
yellowfive@57 130 L.ExportTitle = "Export Instructions"
yellowfive@59 131 L.ExportHelp1 = "1. Copy the text below by pressing Ctrl+C (or Cmd+C on a Mac)"
yellowfive@57 132 L.ExportHelp2 = "2. Go to http://www.askmrrobot.com/wow/player and load your character"
yellowfive@57 133 L.ExportHelp3 = "3. Press the green IMPORT (from addon) link just above your character name"
yellowfive@57 134 L.ExportHelp4 = "4. Paste into the textbox on the website and press Import!"
yellowfive@57 135
yellowfive@57 136 L.ExportSplashTitle = "Getting Started"
yellowfive@57 137 L.ExportSplashSubtitle = "This is your first time using the new version of the addon. Do the following things to initialize your item database:"
yellowfive@57 138 L.ExportSplash1 = "1. Activate each of your specs once and equip your latest gear for each spec"
yellowfive@57 139 L.ExportSplash2 = "2. Open your bank and leave it open for at least two seconds"
yellowfive@57 140 L.ExportSplash3 = "3. If you have gear in void storage, open it and leave it open for at least two seconds"
yellowfive@57 141 L.ExportSplashClose = "Continue"
yellowfive@57 142
yellowfive@57 143
yellowfive@57 144 --[[----------------------------------------------------------------------
yellowfive@57 145 Gear Tab
yellowfive@57 146 ------------------------------------------------------------------------]]
yellowfive@57 147 L.GearImportNote = "Click Import to paste data from the website."
yellowfive@57 148 L.GearTabPrimary = "Primary Spec"
yellowfive@57 149 L.GearTabSecondary = "Secondary Spec"
yellowfive@57 150 L.GearBlank = "You have not loaded any gear for this spec yet."
yellowfive@57 151 L.GearBlank2 = "Go to askmrrobot.com to optimize your gear, then use the Import button to the left."
yellowfive@57 152 L.GearButtonEquip = function(spec)
yellowfive@57 153 -- spec 1 is primary, 2 is secondary
yellowfive@57 154 return string.format("Activate %s Spec and Equip Gear", spec == 1 and "Primary" or "Secondary")
yellowfive@57 155 end
yellowfive@57 156 L.GearButtonShop = "Show Shopping List"
yellowfive@57 157
yellowfive@57 158 L.GearEquipErrorCombat = "Cannot change spec/gear while in combat!"
yellowfive@57 159 L.GearEquipErrorEmpty = "No saved gear set could be found for the current spec."
yellowfive@57 160 L.GearEquipErrorNotFound = "An item in your saved gear set could not be equipped."
yellowfive@57 161 L.GearEquipErrorNotFound2 = "Try opening your bank and running this command again, or check your void storage."
yellowfive@57 162 L.GearEquipErrorBagFull = "There is not enough room in your bags to equip your saved gear set."
yellowfive@57 163 L.GearEquipErrorSoulbound = function(itemLink)
yellowfive@59 164 return itemLink .. " could not be equipped because it is not bound to you."
yellowfive@57 165 end
yellowfive@57 166
yellowfive@57 167 L.GearButtonImportText = "Import"
yellowfive@57 168 L.GearButtonCleanText = "Clean Bags"
yellowfive@57 169
yellowfive@57 170 L.GearTipTitle = "TIP!"
yellowfive@57 171 L.GearTipText =
yellowfive@57 172 [[In Options, you can enable automatic equipping of your gear sets whenever you change spec.
yellowfive@57 173
yellowfive@57 174 Or, you can right click the minimap icon to switch spec and equip gear.
yellowfive@57 175
yellowfive@57 176 OR! You can use slash commands:]]
yellowfive@57 177
yellowfive@57 178 L.GearTipCommands =
yellowfive@57 179 [[/amr equip [1 or 2]
yellowfive@57 180 1 = primary
yellowfive@57 181 2 = secondary
yellowfive@57 182 no arg = toggle]]
yellowfive@57 183 -- note to translators: the slash commands are literal and should stay as english
yellowfive@57 184
yellowfive@57 185
yellowfive@57 186 --[[----------------------------------------------------------------------
yellowfive@57 187 Import Dialog on Gear Tab
yellowfive@57 188 ------------------------------------------------------------------------]]
yellowfive@59 189 L.ImportHeader = "Press Ctrl+V (Cmd+V on a Mac) to paste data from the website into the box below."
yellowfive@57 190 L.ImportButtonOk = "Import"
yellowfive@57 191 L.ImportButtonCancel = "Cancel"
yellowfive@57 192
yellowfive@57 193 L.ImportErrorEmpty = "The data string is empty."
yellowfive@57 194 L.ImportErrorFormat = "The data string is not in the correct format."
yellowfive@57 195 L.ImportErrorVersion = "The data string is from an old version of the addon. Please go to the website and generate a new one."
yellowfive@57 196 L.ImportErrorChar = function(importChar, yourChar)
yellowfive@57 197 return "The data string is for " .. importChar .. ", but you are " .. yourChar .. "!"
yellowfive@57 198 end
yellowfive@57 199 L.ImportErrorRace = "It looks your race may have changed. Please go the website and re-optimize."
yellowfive@57 200 L.ImportErrorFaction = "It looks your faction may have changed. Please go the website and re-optimize."
yellowfive@57 201 L.ImportErrorLevel = "It looks your level may have changed. Please go the website and re-optimize."
yellowfive@57 202
yellowfive@69 203 L.ImportOverwolfWait = "Performing Best in Bags optimization. Please do not press Escape or close the addon until it has completed!"
yellowfive@69 204
yellowfive@57 205
yellowfive@57 206 --[[----------------------------------------------------------------------
yellowfive@57 207 Shopping List
yellowfive@57 208 ------------------------------------------------------------------------]]
yellowfive@57 209 L.ShopTitle = "Shopping List"
yellowfive@57 210 L.ShopEmpty = "There is no shopping list data for this player."
yellowfive@57 211 L.ShopSpecLabel = "Spec"
yellowfive@57 212 L.ShopHeaderGems = "Gems"
yellowfive@57 213 L.ShopHeaderEnchants = "Enchants"
yellowfive@57 214 L.ShopHeaderMaterials = "Enchanting Materials"
yellowfive@57 215
yellowfive@57 216
yellowfive@57 217 --[[----------------------------------------------------------------------
yellowfive@57 218 Combat Log Tab
yellowfive@57 219 ------------------------------------------------------------------------]]
yellowfive@57 220 L.LogChatStart = "You are now logging combat, and Mr. Robot is logging character data for your raid."
yellowfive@57 221 L.LogChatStop = "Combat logging has been stopped."
yellowfive@57 222
yellowfive@57 223 L.LogChatWipe = function(wipeTime)
yellowfive@57 224 return "Manual wipe called at " .. wipeTime .. "."
yellowfive@57 225 end
yellowfive@57 226 L.LogChatUndoWipe = function(wipeTime)
yellowfive@57 227 return "Manual wipe at " .. wipeTime .. " was removed."
yellowfive@57 228 end
yellowfive@57 229 L.LogChatNoWipes = "There is no recent manual wipe to remove."
yellowfive@57 230
yellowfive@57 231 L.LogButtonStartText = "Start Logging"
yellowfive@57 232 L.LogButtonStopText = "Stop Logging"
yellowfive@57 233 L.LogButtonReloadText = "Reload UI"
yellowfive@57 234 L.LogButtonWipeText = "Wipe!"
yellowfive@57 235 L.LogButtonUndoWipeText = "Undo Wipe"
yellowfive@57 236
yellowfive@57 237 L.LogNote = "You are currently logging combat and gear data."
yellowfive@57 238 L.LogReloadNote = "Either exit WoW entirely, or reload your UI just before uploading a log file."
yellowfive@57 239 L.LogWipeNote = "The person uploading the log must be the one to use this wipe command."
yellowfive@57 240 L.LogWipeNote2 = function(cmd)
yellowfive@57 241 return "'" .. cmd .. "' will also do this."
yellowfive@57 242 end
yellowfive@57 243 L.LogUndoWipeNote = "Last wipe called:"
yellowfive@57 244 L.LogUndoWipeDate = function(day, timeOfDay)
yellowfive@57 245 return day .. " at " .. timeOfDay
yellowfive@57 246 end
yellowfive@57 247
yellowfive@57 248 L.LogAutoTitle = "Auto-Logging"
yellowfive@57 249 L.LogAutoAllText = "Toggle All"
yellowfive@57 250
yellowfive@57 251 L.LogInstructionsTitle = "Instructions!"
yellowfive@57 252 L.LogInstructions =
yellowfive@57 253 [[1.) Click Start Logging or enable Auto-Logging for your desired raids.
yellowfive@57 254
yellowfive@57 255 2.) When you are ready to upload, exit World of Warcraft* or reload your UI.**
yellowfive@57 256
yellowfive@57 257 3.) Launch the AMR Client to upload your log.
yellowfive@57 258
yellowfive@57 259
yellowfive@57 260 *It is not necessary to exit WoW, but it is highly recommended. This will allow the AMR client to prevent your log file from getting very large.
yellowfive@57 261
yellowfive@57 262 **The AMR addon collects extra data at the start of each encounter for all players in your raid with the AMR addon. Other players do not need to enable logging! They just need to have the addon installed and enabled. This data is only saved to disk if you exit WoW or reload your UI before uploading.
yellowfive@57 263 ]]
yellowfive@57 264
yellowfive@57 265
yellowfive@57 266 --[[----------------------------------------------------------------------
yellowfive@57 267 Team Optimizer Tab
yellowfive@57 268 ------------------------------------------------------------------------]]
yellowfive@57 269 L.TeamTabLeaderText = "Loot Ranker"
yellowfive@57 270 L.TeamTabMemberText = "Team Member"
yellowfive@57 271
yellowfive@57 272 L.TeamSplashHeader = "How do you usually use the Team Optimizer?"
yellowfive@57 273 L.TeamSplashLeaderLabel = "I am the person who uses askmrrobot.com to rank the loot for our group"
yellowfive@57 274 L.TeamSplashMemberLabel = "Someone else handles using the Team Optimizer for me"
yellowfive@57 275
yellowfive@57 276 L.TeamMemberText = "Just sit back and relax, everything is being handled by your team leaders."
yellowfive@57 277 L.TeamMemberShowLootLabel = "Looting is in progress!"
yellowfive@57 278 L.TeamMemberShowLoot = "Show Loot Window"
yellowfive@57 279
yellowfive@57 280 L.TeamButtonVersionText = "Check for Addon"
yellowfive@57 281 L.TeamButtonExportRosterText = "Export Roster"
yellowfive@57 282 L.TeamButtonExportLootText = "Export Loot"
yellowfive@57 283 L.TeamButtonExportClose = "Close"
yellowfive@57 284 L.TeamButtonImportRankingsText = "Import Rankings"
yellowfive@57 285 L.TeamButtonStartLootText = "Start Looting"
yellowfive@57 286 L.TeamButtonResumeLootText = "Resume Looting"
yellowfive@57 287
yellowfive@57 288 L.TeamExportVersionLabel = "The Team Optimizer is more accurate and easier to use if everyone in your group has the AskMrRobot addon."
yellowfive@57 289 L.TeamExportRosterLabel = "Do this once at the beginning of your raid to initialize the Team Optimizer on the web. If someone joins or leaves your group during a raid, do it again and press 'Import without Reload' on the web to do a quick update of just the players that changed."
yellowfive@57 290 L.TeamExportLootLabel = "Export all drops from the last looted boss and rank them all at once on the web. Rankings automatically account for loot won on previous bosses or bonus rolls!"
yellowfive@57 291 L.TeamExportLootLabel2 = "Requires Master Loot"
yellowfive@57 292 L.TeamImportRankingsLabel = "Import ranking data from askmrrobot.com so that you can easily view and distribute loot in-game."
yellowfive@57 293 L.TeamStartLootLabel = function(numItems)
yellowfive@57 294 return numItems .. " items were imported."
yellowfive@57 295 end
yellowfive@57 296
yellowfive@57 297 L.TeamHistoryTitle = "Loot History"
yellowfive@57 298 L.TeamHistoryNoGroup = "You are not in a group or raid."
yellowfive@57 299 L.TeamHistoryEmpty = "No loot has been handed out yet."
yellowfive@57 300
yellowfive@57 301 L.TeamVersionTitle = "Version Check"
yellowfive@57 302 L.TeamVersionNoGroup = "You are not in a group or raid."
yellowfive@57 303 L.TeamVersionGood = "Everyone in your group has the addon!"
yellowfive@57 304 L.TeamVersionMissing = "NOT INSTALLED"
yellowfive@57 305 L.TeamVersionOld = "OUT OF DATE"
yellowfive@57 306
yellowfive@57 307 L.TeamExportRosterLoading = "Gathering player data, please wait..."
yellowfive@57 308
yellowfive@57 309 L.TeamAlertNoGroup = "You are not in a group!"
yellowfive@57 310 L.TeamAlertNoLoot = "Nothing has been master-looted recently in your party or raid!"
yellowfive@57 311
yellowfive@59 312 L.TeamExportHelp = "Press Ctrl+C (or Cmd+C on a Mac) to copy the text below."
yellowfive@57 313 L.TeamExportRosterText = "Then go to the Team Optimizer on the website and paste into the roster import box."
yellowfive@57 314 L.TeamExportLootText = "Then go to the Team Optimizer on the website and paste into the loot import box."
yellowfive@57 315 -- note to translators: leave "Team Optimizer" in english in the above two texts because our website is not localized yet
yellowfive@57 316
yellowfive@59 317 L.TeamImportRankingsHeader = "Press Ctrl+V (Cmd+V on a Mac) to paste data from the website into the box below."
yellowfive@57 318
yellowfive@57 319 L.TeamLootOptionNeed = "Need"
yellowfive@57 320 L.TeamLootOptionOff = "Off Spec"
yellowfive@57 321 L.TeamLootOptionGreed = "Greed"
yellowfive@57 322 L.TeamLootOptionPass = "Pass"
yellowfive@57 323 L.TeamLootOptionDisenchant = "Disenchant"
yellowfive@57 324
yellowfive@57 325
yellowfive@57 326 --[[----------------------------------------------------------------------
yellowfive@57 327 Loot Window
yellowfive@57 328 ------------------------------------------------------------------------]]
yellowfive@57 329 L.LootTitle = "Loot!"
yellowfive@57 330 L.LootEmpty = "There is no loot to hand out right now!"
yellowfive@57 331 L.LootHelpItems = "For each drop..."
yellowfive@57 332 L.LootHelpRanks = "Choose an option:"
yellowfive@57 333 L.LootHelpMaster = "Then master loot:"
yellowfive@57 334
yellowfive@57 335 L.LootIneligible = "You are not eligible for this drop."
yellowfive@57 336
yellowfive@57 337 L.LootRankHeaderRank = "Rank"
yellowfive@57 338 L.LootRankHeaderScore = "Percent Upgrade"
yellowfive@57 339 L.LootRankHeaderScoreDisenchant = "Player"
yellowfive@57 340
yellowfive@57 341 -- note to translators: these column headers should be short, abbreviate if necessary, keep to 5 characters max
yellowfive@57 342 L.LootRankHeaderNeed = "Need"
yellowfive@57 343 L.LootRankHeaderOff = "Off"
yellowfive@57 344 L.LootRankHeaderGreed = "Greed"
yellowfive@57 345 L.LootRankHeaderPass = "Pass"
yellowfive@57 346 L.LootRankHeaderRoll = "Roll"
yellowfive@57 347
yellowfive@57 348 L.LootRankLabelOff = "off spec"
yellowfive@57 349 L.LootRankLabelDisenchant = "disenchanter"
yellowfive@57 350 L.LootRankLabelMasterLooter = "master looter"
yellowfive@57 351 L.LootRankLabelNoAddon = "addon not running"
yellowfive@57 352
yellowfive@57 353 L.LootMasterRollText = "Roll"
yellowfive@57 354 L.LootMasterDisenchantText = "Disenchant/Sell"
yellowfive@57 355
yellowfive@57 356 L.LootMasterRollLabel = "automatic /roll for everyone"
yellowfive@57 357 L.LootMasterDisenchantLabel = "check this if no one wants this item"
yellowfive@57 358 L.LootMasterGiveLoot = "Give Loot"
yellowfive@57 359 L.LootMasterGiveDisenchant = "Give for Disenchant/Sell"
yellowfive@57 360
yellowfive@57 361 L.LootMasterGiveFail = "Either this item or this master loot candidate could not be found :("
yellowfive@57 362
yellowfive@57 363
yellowfive@57 364 --[[----------------------------------------------------------------------
yellowfive@57 365 Options Tab
yellowfive@57 366 ------------------------------------------------------------------------]]
yellowfive@57 367 L.OptionsHeaderGeneral = "General Options"
yellowfive@57 368
yellowfive@57 369 L.OptionsHideMinimapName = "Hide minimap icon"
yellowfive@57 370 L.OptionsHideMinimapDesc = "The minimap icon is for convenience, all actions can also be performed via slash commands or the UI."
yellowfive@57 371
yellowfive@57 372 L.OptionsAutoGearName = "Automatically equip gear on spec change"
yellowfive@57 373 L.OptionsAutoGearDesc = "Whenever you change spec (via the in-game UI, another addon, etc.), your imported AMR gear sets (on the Gear tab) will be automatically equipped."
yellowfive@57 374
yellowfive@57 375 L.OptionsShopAhName = "Automatically show shopping list at auction house"
yellowfive@57 376 L.OptionsShopAhDesc = "Whenever you open the auction house, automatically show the shopping list window. You can click on items in the shopping list to quickly search for them in the auction house."
yellowfive@57 377
yellowfive@61 378 L.OptionsUiScaleName = "Ask Mr. Robot UI scale"
yellowfive@61 379 L.OptionsUiScaleDesc = "Enter a value between 0.5 and 1.5 to change the scale of the Ask Mr. Robot user interface, press Enter, then close/open the window for it take effect. If the positioning gets messed up, use the /amr reset command."
yellowfive@61 380
yellowfive@57 381 end