zz_Coords/locale_enUS.lua

37 lines
1.6 KiB
Lua
Raw Normal View History

2021-01-13 15:13:33 +00:00
local addonname, addon = ...
local name = "zz_Coords"
local L = LibStub("AceLocale-3.0"):NewLocale(name, "enUS", true)
if L then
L[name] = name
L[name..' Settings'] = format("%s Settings",name)
L['Hide Map coords'] = true
L['Show MapID'] = "Show MapID on worldmap"
L['This hides the coords-display at the bottom of your map'] = true
L['outbound'] = "Cursor: - -- Player: "
L['Player'] = true
L['Cursor'] = true
L['COORDFMTSTRING'] = function(self,x,y) return format("Cursor: %.1f, %.1f -- Player: ",addon:round(x,1),addon:round(y,1)) end
L['HINT'] = "|c0000ff00Leftclick|r |c00ffffffto open the world map|r"
L['HINT2'] = "|c0000ff00Rightclick|r |c00ffffffto open preferences|r"
L['HINT3'] = "|c0000ff00Shift-Leftclick|r |c00fffffftoggles minimap icon|r"
L['HINT4'] = "|c0000ff00Shift-Rightclick|r |c00fffffftoggles minimap|r"
L['Show Zone'] = true
L['Show Subzone'] = true
L["Toggle Minimap"] = true
L['Max Length'] = true
L['Limits the maximum length of the zone'] = true
L['Mapcoords Screen'] = true
L['Mapcoords Window'] = true
L['Screen X'] = true
L['Adjusts the X-Offset on fullscreenmap'] = true
L['Screen Y'] = true
L['Adjusts the Y-Offset on fullscreenmap'] = true
L['Window X'] = true
L['Adjusts the X-Offset on windowed map'] = true
L['Window Y'] = true
L['Adjusts the Y-Offset on windowed map'] = true
L['Hide LDB coords'] = true
L['This hides the coords-display in your broker display'] = true
L['Colorized Zone'] = true
L['Show PvP informations about current area'] = true
end