zz_Coords/locale_enUS.lua

38 lines
1.7 KiB
Lua
Executable File

local addonname, addon = ...
local childName = addon['childName']
local L = LibStub("AceLocale-3.0"):NewLocale(childName, "enUS", true)
if L then
L[childName] = childName
L[childName..' Settings'] = format("%s Settings",childName)
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: ", x, y) 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
L['Set keybind'] = true
end