56 lines
1.8 KiB
Lua
56 lines
1.8 KiB
Lua
--[[
|
|
Bagnon Localization Information: English Language
|
|
This file must be present to have partial translations
|
|
--]]
|
|
|
|
local L = LibStub('AceLocale-3.0'):NewLocale('Bagnon', 'enUS', true)
|
|
|
|
--keybinding text
|
|
L.ToggleBags = 'Toggle Inventory'
|
|
L.ToggleBank = 'Toggle Bank'
|
|
L.ToggleKeys = 'Toggle Keyring'
|
|
|
|
|
|
--system messages
|
|
L.NewUser = 'New user detected, default settings loaded'
|
|
L.Updated = 'Updated to v%s'
|
|
L.UpdatedIncompatible = 'Updating from an incompatible version, defaults loaded'
|
|
|
|
|
|
--slash commands
|
|
L.Commands = 'Commands:'
|
|
L.CmdShowInventory = 'Toggles the inventory frame'
|
|
L.CmdShowBank = 'Toggles the bank frame'
|
|
L.CmdShowKeyring = 'Toggles the keyring'
|
|
L.CmdShowVersion = 'Prints the current verison'
|
|
|
|
|
|
--frame text
|
|
L.TitleBags = '%s\'s Inventory'
|
|
L.TitleBank = '%s\'s Bank'
|
|
L.TitleKeys = '%s\'s Keys'
|
|
|
|
|
|
--tooltips
|
|
L.TipBank = 'Bank'
|
|
L.TipChangePlayer = 'Click to view another character\'s items.'
|
|
L.TipGoldOnRealm = '%s Totals'
|
|
L.TipHideBag = 'Click to hide this bag.'
|
|
L.TipHideBags = 'Click to hide the bag frame.'
|
|
L.TipHideSearch = 'Click to hide the search frame.'
|
|
L.TipPurchaseBag = 'Click to purchase this bank slot.'
|
|
L.TipShowBag = 'Click to show this bag.'
|
|
L.TipShowBags = 'Click to show the bag frame.'
|
|
L.TipShowMenu = 'Right-Click to configure this frame.'
|
|
L.TipShowSearch = 'Click to show the search frame.'
|
|
L.TipShowSearch = 'Click to search.'
|
|
L.TipShowSortBtn = 'Click to sort your inventory.'
|
|
L.TipShowFrameConfig = 'Click to configure this frame.'
|
|
L.TipDoubleClickSearch = 'Alt-Drag to move.\nRight-Click to configure.\nDouble-Click to search.'
|
|
L.Total = 'Total'
|
|
|
|
--databroker plugin tooltips
|
|
L.TipShowBank = '<Shift Left Click> to toggle your bank.'
|
|
L.TipShowInventory = '<Left Click> to toggle your inventory.'
|
|
L.TipShowKeyring = '<Alt Left Click> to toggle your keyring.'
|
|
L.TipShowOptions = '<Right Click> to open the options menu.' |