diff --git a/Clock.lua b/Clock.lua index 304c22b..8f38721 100644 --- a/Clock.lua +++ b/Clock.lua @@ -124,6 +124,32 @@ local options = { mod:UpdateLayout() end }, + monochrome = { + type = "toggle", + name = L.monochrome, + desc = L.monochromeDesc, + order = 9.1, + get = function() return mod.db.monochrome end, + set = function(_, v) + mod.db.monochrome = v + mod:UpdateLayout() + end + }, + outline = { + type = "select", + name = L.outline, + order = 9.2, + values = { + NONE = L.none, + OUTLINE = L.thin, + THICKOUTLINE = L.thick, + }, + get = function() return mod.db.outline end, + set = function(_, v) + mod.db.outline = v + mod:UpdateLayout() + end + }, fade = { type = "multiselect", name = function() @@ -162,8 +188,19 @@ function mod:OnInitialize(profile) borderColor = {r = 0, g = 0, b = 0, a = 1}, fontColor = {}, font = media:GetDefault("font"), + monochrome = false, + outline = "NONE", } end + + -- XXX temp 10.1.0 + if not profile.clock.monochrome then + profile.clock.monochrome = false + end + if not profile.clock.outline then + profile.clock.outline = "NONE" + end + self.db = profile.clock end @@ -206,8 +243,16 @@ function mod:UpdateLayout() sm.core.button.SetPoint(TimeManagerClockButton, "TOP", Minimap, "BOTTOM", mod.db.xOffset, mod.db.yOffset) TimeManagerClockButton:SetBackdropColor(mod.db.bgColor.r, mod.db.bgColor.g, mod.db.bgColor.b, mod.db.bgColor.a) TimeManagerClockButton:SetBackdropBorderColor(mod.db.borderColor.r, mod.db.borderColor.g, mod.db.borderColor.b, mod.db.borderColor.a) - local a, b, c = GameFontHighlightSmall:GetFont() - sm.core.font.SetFont(TimeManagerClockTicker, mod.db.font and media:Fetch("font", mod.db.font) or a, mod.db.fontsize or b, c) + local a, b = GameFontHighlightSmall:GetFont() + local flags = nil + if mod.db.monochrome and mod.db.outline ~= "NONE" then + flags = "MONOCHROME," .. mod.db.outline + elseif mod.db.monochrome then + flags = "MONOCHROME" + elseif mod.db.outline ~= "NONE" then + flags = mod.db.outline + end + sm.core.font.SetFont(TimeManagerClockTicker, mod.db.font and media:Fetch("font", mod.db.font) or a, mod.db.fontsize or b, flags) if mod.db.fontColor.r then sm.core.font.SetTextColor(TimeManagerClockTicker, mod.db.fontColor.r, mod.db.fontColor.g, mod.db.fontColor.b, mod.db.fontColor.a) end diff --git a/Coordinates.lua b/Coordinates.lua index dc25c4c..7ab7a26 100644 --- a/Coordinates.lua +++ b/Coordinates.lua @@ -152,6 +152,32 @@ local options = { mod:Update() end }, + monochrome = { + type = "toggle", + name = L.monochrome, + desc = L.monochromeDesc, + order = 10.1, + get = function() return mod.db.monochrome end, + set = function(_, v) + mod.db.monochrome = v + mod:Update() + end + }, + outline = { + type = "select", + name = L.outline, + order = 10.2, + values = { + NONE = L.none, + OUTLINE = L.thin, + THICKOUTLINE = L.thick, + }, + get = function() return mod.db.outline end, + set = function(_, v) + mod.db.outline = v + mod:Update() + end + }, updateRate = { type = "range", name = L.updateRate, @@ -208,14 +234,25 @@ function mod:OnInitialize(profile) xOffset = 0, yOffset = 10, font = media:GetDefault("font"), + monochrome = false, + outline = "NONE", } end - self.db = profile.coordinates + -- XXX temp 9.0.1 if not profile.coordinates.coordPrecision then profile.coordinates.enabled = true profile.coordinates.coordPrecision = "%d,%d" end + -- XXX temp 10.1.0 + if not profile.coordinates.monochrome then + profile.coordinates.monochrome = false + end + if not profile.coordinates.outline then + profile.coordinates.outline = "NONE" + end + + self.db = profile.coordinates end function mod:OnEnable() @@ -287,8 +324,16 @@ function mod:Update() coordsText:SetTextColor(c.r or 1, c.g or 1, c.b or 1, c.a or 1) end - local _, b, c = coordsText:GetFont() - coordsText:SetFont(media:Fetch("font", mod.db.font), mod.db.fontSize or b, c) + local _, b = coordsText:GetFont() + local flags = nil + if mod.db.monochrome and mod.db.outline ~= "NONE" then + flags = "MONOCHROME," .. mod.db.outline + elseif mod.db.monochrome then + flags = "MONOCHROME" + elseif mod.db.outline ~= "NONE" then + flags = mod.db.outline + end + coordsText:SetFont(media:Fetch("font", mod.db.font), mod.db.fontSize or b, flags) if mod.db.coordPrecision == "%.2f, %.2f" then coordsText:SetText("99.99, 99.99") diff --git a/SexyMap.toc b/SexyMap.toc index ea95e01..93f2c9a 100644 --- a/SexyMap.toc +++ b/SexyMap.toc @@ -31,6 +31,7 @@ localization\enUS.lua localization\deDE.lua localization\ruRU.lua localization\esES.lua +localization\esMX.lua localization\frFR.lua localization\itIT.lua localization\koKR.lua diff --git a/SexyMap_TBC.toc b/SexyMap_TBC.toc index 441ec4f..de35c35 100644 --- a/SexyMap_TBC.toc +++ b/SexyMap_TBC.toc @@ -31,6 +31,7 @@ localization\enUS.lua localization\deDE.lua localization\ruRU.lua localization\esES.lua +localization\esMX.lua localization\frFR.lua localization\itIT.lua localization\koKR.lua diff --git a/SexyMap_Vanilla.toc b/SexyMap_Vanilla.toc index 80bd248..b9dbbe2 100644 --- a/SexyMap_Vanilla.toc +++ b/SexyMap_Vanilla.toc @@ -31,6 +31,7 @@ localization\enUS.lua localization\deDE.lua localization\ruRU.lua localization\esES.lua +localization\esMX.lua localization\frFR.lua localization\itIT.lua localization\koKR.lua diff --git a/SexyMap_Wrath.toc b/SexyMap_Wrath.toc index 13a7e1e..9a0e28f 100644 --- a/SexyMap_Wrath.toc +++ b/SexyMap_Wrath.toc @@ -31,6 +31,7 @@ localization\enUS.lua localization\deDE.lua localization\ruRU.lua localization\esES.lua +localization\esMX.lua localization\frFR.lua localization\itIT.lua localization\koKR.lua diff --git a/ZoneText.lua b/ZoneText.lua index 3407f27..346577d 100644 --- a/ZoneText.lua +++ b/ZoneText.lua @@ -129,6 +129,32 @@ local options = { mod:UpdateLayout() end }, + monochrome = { + type = "toggle", + name = L.monochrome, + desc = L.monochromeDesc, + order = 9.1, + get = function() return mod.db.monochrome end, + set = function(_, v) + mod.db.monochrome = v + mod:UpdateLayout() + end + }, + outline = { + type = "select", + name = L.outline, + order = 9.2, + values = { + NONE = L.none, + OUTLINE = L.thin, + THICKOUTLINE = L.thick, + }, + get = function() return mod.db.outline end, + set = function(_, v) + mod.db.outline = v + mod:UpdateLayout() + end + }, fade = { type = "multiselect", name = function() @@ -186,8 +212,19 @@ function mod:OnInitialize(profile) fontColor = {}, font = media:GetDefault("font"), useSecureButton = false, + monochrome = false, + outline = "NONE", } end + + -- XXX temp 10.1.0 + if not profile.zonetext.monochrome then + profile.zonetext.monochrome = false + end + if not profile.zonetext.outline then + profile.zonetext.outline = "NONE" + end + self.db = profile.zonetext end @@ -324,8 +361,16 @@ function mod:UpdateLayout() zoneTextButton:SetPoint("BOTTOM", Minimap, "TOP", mod.db.xOffset, mod.db.yOffset) zoneTextButton:SetBackdropColor(mod.db.bgColor.r, mod.db.bgColor.g, mod.db.bgColor.b, mod.db.bgColor.a) zoneTextButton:SetBackdropBorderColor(mod.db.borderColor.r, mod.db.borderColor.g, mod.db.borderColor.b, mod.db.borderColor.a) - local a, b, c = GameFontNormal:GetFont() - zoneTextFont:SetFont(mod.db.font and media:Fetch("font", mod.db.font) or a, mod.db.fontsize or b, c) + local a, b = GameFontNormal:GetFont() + local flags = nil + if mod.db.monochrome and mod.db.outline ~= "NONE" then + flags = "MONOCHROME," .. mod.db.outline + elseif mod.db.monochrome then + flags = "MONOCHROME" + elseif mod.db.outline ~= "NONE" then + flags = mod.db.outline + end + zoneTextFont:SetFont(mod.db.font and media:Fetch("font", mod.db.font) or a, mod.db.fontsize or b, flags) self:ZoneChanged() end diff --git a/localization/deDE.lua b/localization/deDE.lua index 190499a..6c35596 100644 --- a/localization/deDE.lua +++ b/localization/deDE.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP Aufnahmeleisten" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Nichts" +L.thin = "Dünn" +L.thick = "Dick" +L.outline = "Kontur" +L.monochrome = "Monochrom" +L.monochromeDesc = "Schaltet den Monochrom-Filter an/aus, der die Schriftenkantenglättung entfernt." diff --git a/localization/enUS.lua b/localization/enUS.lua index b32ad35..15172b0 100644 --- a/localization/enUS.lua +++ b/localization/enUS.lua @@ -218,3 +218,9 @@ L["Zone Text"] = "Zone Text" L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." L.zoneTextSecureButtonEnable = "Allow clicking in combat" L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "None" +L.thin = "Thin" +L.thick = "Thick" +L.outline = "Outline" +L.monochrome = "Monochrome" +L.monochromeDesc = "Toggles the monochrome flag, removing any smoothing of the font edges." diff --git a/localization/esES.lua b/localization/esES.lua index 9ca102a..30efec4 100644 --- a/localization/esES.lua +++ b/localization/esES.lua @@ -1,5 +1,5 @@ -if GetLocale() ~= "esES" and GetLocale() ~= "esMX" then return end +if GetLocale() ~= "esES" then return end local _, sm = ... local L = sm.L --L.dayNightButton = "Day/Night Indicator" @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP Capturar Barr" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Ninguno" +L.thin = "Fino" +L.thick = "Grueso" +L.outline = "Contorno" +L.monochrome = "Monocromo" +L.monochromeDesc = "Activa la opción monocromo, eliminando el suavizado de los bordes de la fuente." diff --git a/localization/esMX.lua b/localization/esMX.lua new file mode 100644 index 0000000..4713cac --- /dev/null +++ b/localization/esMX.lua @@ -0,0 +1,199 @@ + +if GetLocale() ~= "esMX" then return end +local _, sm = ... +local L = sm.L +--L.dayNightButton = "Day/Night Indicator" +--L.classicLFGButton = "Classic LFG Button (When Available)" +--L.classicPVPButton = "Classic PvP Button (When Available)" +L["1. Background"] = "Fondo" +L["2. Border"] = "Borde" +L["3. Artwork"] = "Arte" +L["4. Overlay"] = "Superposición" +L["5. Highlight"] = "Resaltar" +L["Add Blend (additive)"] = "Agregar Mezcla (aditivo)" +L["Addon Buttons"] = "Botones del Addon" +L["A global profile already exists. You will be switched over to it and your UI will be reloaded, are you sure?"] = "Ya existe un perfil global. Éste se activará y tu UI será reiniciada. Estás seguro?" +L["Allow SexyMap to assume drag ownership for buttons attached to the minimap. Turn this off if you have another mod that you want to use to position your minimap buttons."] = "Permitir a SexyMap asumir control del arrastre de los botones junto al minimapa. Desactivalo si tienes otro mod que quieres usar para posicionar los botones del minimapa." +L["Alpha Key (1-bit alpha)"] = "Alfa Key (1-bit alpha)" +L["Always"] = "Siempre" +L["Are you sure you want to switch back to using a character specific profile? This will reload your UI."] = "¿Estás seguro de que quieres volver a utilizar un perfil específico de un personaje? Esto recargará tu interfaz." +L["Armored Man"] = "Hombre Acorazado" +L["A static amount to rotate the texture by."] = "Una cantidad fija para girar la textura." +L["Auto Zoom-Out Delay"] = "Retraso del alejamiento automático" +L["Backdrop Color"] = "Color del Telón" +L["Backdrop Insets"] = "Añadidos al Telón" +L["Background Color"] = "Color del Fondo" +L["Background/edge"] = "Fondo/borde" +L["Background Texture"] = "Textura del Fondo" +L["Blend Mode"] = "Modo Mezcla" +L["Blend (normal)"] = "Mezclar (normal)" +L["Border Color"] = "Color del Borde" +L["Border Edge Size"] = "Tamaño del límite del borde" +L["Borders"] = "Bordes" +L["Border Texture"] = "Textura del Borde" +L["Boss Frames"] = "Retrato del Jefe" +L["Buttons"] = "Botones" +L["Calendar"] = "Calendario" +L["Challenge Mode Button (When Available)"] = "Botón de Modo Desafío (cuando está disponible)" +L["Circle"] = "Círculo" +L["Clamp to screen"] = "Fijar a la pantalla" +L["Clear & start over"] = "Borrar y empezar de nuevo" +L["Clear the current borders and start fresh"] = "Borrar los bordes actuales y comenzar de nuevo" +L["Clock"] = "Reloj" +L["Coordinates"] = "Coordenadas" +L["Copy a Profile"] = "Copiar un Perfil" +L["Copying this profile will reload your UI, are you sure?"] = "Copiar este perfil recargará tu interfaz, ¿estás seguro?" +L["Create a new border"] = "Crear un borde nuevo" +L["Current Borders"] = "Bordes actuales" +L["Default Presets"] = "Preconfiguración por defecto" +L["Delete"] = "Eliminar" +L["Delete a Profile"] = "Borrar un Perfil" +L["Diamond"] = "Diamante" +L["Disable (opaque)"] = "Desactivar (opaco)" +L["Disable Rotation"] = "Desactivar la rotación" +L["Drag Radius"] = "Radio de Arrastre" +L["Dungeon Difficulty Indicator (When Available)"] = "Indicador de Dificultad de Mazmorra (Cuando esté disponible)" +L["Dynamic Buttons"] = "Botones dinámicos" +L["Enable"] = "Habilitar" +L["Enable a backdrop and border for the minimap. This will let you set square borders more easily."] = "Activar un fondo y un borde para el minimapa. Esto te permitirá establecer un borde cuadrado más fácilmente." +L["Enable a HUD minimap. This is very useful for gathering resources, but for technical reasons, the HUD map and the normal minimap can't be shown at the same time. Showing the HUD map will turn off the normal minimap."] = "Habilitar un minimapa tipo HUD. Esto es muy útil para recolectar recursos, pero por razones técnicas, el mapa tipo HUD y el minimapa normal no se pueden mostrar al mismo tiempo. Al mostrar el mapa tipo HUD se desactivará el minimapa normal." +L["Enable Coordinates"] = "Habilitar Coordenadas" +L["Enable Hudmap"] = "Habilitar el Hudmap" +L["Enable Minimap Fader"] = "Habilitar desvanecimiento del minimapa" +L["Enter a name to create a new border. The name can be anything you like to help you identify that border."] = "Entre un nombre para crear un nuevo borde. El nombre puede ser cualquiera que te ayude a identificar ese borde." +-- L["Enter the full path to a texture to use. It's recommended that you use something like |cffff6600TexBrowser|r to find textures to use."] = "Enter the full path to a texture to use. It's recommended that you use something like |cffff6600TexBrowser|r to find textures to use." +L["Entry Options"] = " Opciones de entrada" +L["Faded Circle (Large)"] = "Círculo de desvanecimiento (grande)" +L["Faded Circle (Small)"] = "Circulo difuminado (Pequeño)" +L["Faded Square"] = "Cuadrado difuminado" +L["Fader"] = "Desvanecedor" +L["Font"] = "Fuente" +L["Font Color"] = "Color de la fuente" +L["Font Size"] = "Tamaño de Fuente" +-- L["Force a square texture. Fixed distortion on square textures."] = "Force a square texture. Fixed distortion on square textures." +-- L["Garrison Button (When Available)"] = "Garrison Button (When Available)" +L["Guild Dungeon Difficulty Indicator (When Available)"] = "Indicador de dificultad de mazmorra de hermadad (cuando esté disponible)" +L["Heart"] = "Corazón" +L["Height"] = "Alto" +L["Hexagon"] = "Hexágono" +L["Hide default border"] = "Ocultar borde por defecto" +L["Hide the default border on the minimap."] = "Ocultar el borde por defecto en el minimapa" +-- L["Horizontal Nudge"] = "Horizontal Nudge" +L["Horizontal Position"] = "Posición Horizontal" +L["Hover Opacity"] = "Opacidad al pasar el ratón por encima" +L["HUD Color"] = "Color del HUD" +L["If you zoom into the map, this feature will automatically zoom out after the selected period of time (seconds). Using a value of 0 will disable Auto Zoom-Out."] = "Si haces zoom en el mapa, esta característica alejará automáticamente el zoom después del período de tiempo seleccionado (segundos). Usando un valor de 0 se desactivará la función de alejamiento automático del zoom." +L["Keybinding"] = "Asignación de teclas" +L["Layer"] = "Capa" +L["Let SexyMap control button visibility"] = "Dejar que SexyMap controle la visivilidad de los botones" +-- L["Let SexyMap handle button dragging"] = "Let SexyMap handle button dragging" +L["Lock Button Dragging"] = "Anclar arrastre de boton" +L["Lock Minimap"] = "Bloquear Minimapa" +L["Map Button"] = "Botón del Mapa" +L["Minimap shape"] = "Forma del minimapa" +-- L["Mod Blend (modulative)"] = "Mod Blend (modulative)" +-- L["Movers"] = "Movers" +L["Name"] = "Nombre" +L["Never"] = "Nunca" +L["New Mail Indicator (When Available)"] = "Indicador de correo nuevo (cuando esté disponible)" +-- L["No global profile exists. Your current profile will be copied over and used as the global profile, are you sure? This will also reload your UI."] = "No global profile exists. Your current profile will be copied over and used as the global profile, are you sure? This will also reload your UI." +L["Normal Opacity"] = "Opacidad Normal" +L["Objectives Tracker"] = "Rastreador de objetivos" +L["Octagon"] = "Octágono" +L["On Hover"] = "Al pasar por encima el ratón" +L["Opacity"] = "Opacidad" +-- L["Open TexBrowser"] = "Open TexBrowser" +L["Ping"] = "Ping" +L["Preset"] = "Preconfiguración" +L["Prevent the minimap from being moved off the screen"] = "Prevenir que el minimapa sea movido fuera de la pantalla" +L["Profiles"] = "Perfiles" +-- L["Queue Status (PvP/LFG) Button (When Available)"] = "Queue Status (PvP/LFG) Button (When Available)" +-- L["Quickly change the look of your minimap by using a minimap preset."] = "Quickly change the look of your minimap by using a minimap preset." +L["Really delete this border?"] = "¿Realmente quiere borrar este borde?" +L["Really delete this preset? This can't be undone."] = "¿Estás seguro de que quieres borrar esta preconfiguración? No se puede deshacer esta acción." +L["Really delete this profile?"] = "¿De verdad quieres borrar este perfil?" +-- L["(Requires button visibility control in the Buttons menu)"] = "(Requires button visibility control in the Buttons menu)" +L["Reset Current Profile"] = "Reiniciar perfil actual" +L["Resetting this profile will reload your UI, are you sure?"] = "Restablecer este perfil recargará tu interfaz de usuario, ¿estás seguro?" +L["Right Click Configure"] = "Configurar clic derecho" +L["Right clicking the map will open the SexyMap options"] = "Haciendo clic derecho en el mapa se abrirán las opciones de SexyMap" +L["Rotation Speed (seconds)"] = "Velocidad de Rotación (segundos)" +L["Rounded - Bottom"] = "Redondeado - Inferior" +L["Rounded - Bottom Left"] = "Redondeado - Inferior izquierdo" +L["Rounded - Bottom Right"] = "Redondeado - Inferior derecho" +L["Rounded - Left"] = "Redondeado - izquierdo" +L["Rounded - Right"] = "Redondeado - derecho" +L["Rounded - Top"] = "Redondeado - Superior" +L["Rounded - Top Left"] = "Redondeado - Superior izquierdo" +L["Rounded - Top Right"] = "Redondeado - Superior derecho" +L["Route 66"] = "Ruta 66" +L["Save current settings as preset..."] = "Guardar configuración actual como predeterminada..." +L["Scale"] = "Escala" +L["Select a preset to load settings from. This will erase any of your current borders."] = "Seleccione un preset de donde cargar la configuracion. Esto borrara todos los bordes actuales" +L["Select preset to load"] = "Selecciona la preconfiguración que quieras cargar" +-- L["SharedMedia Border"] = "SharedMedia Border" +-- L["SharedMedia Texture"] = "SharedMedia Texture" +L["Show inside chat"] = "Mostrar chat interior" +L["Show North Tag"] = "Mostrar etiqueta en el norte" +L["Show on minimap"] = "Mostrar en el minimapa" +L["Show %s:"] = "Mostrar %s" +L["Show who pinged"] = "Mostrar quien ha pinchado" +L["Snowflake"] = "Copo de nieve" +L["Spice up your minimap with some sexy options."] = "Condimenta tu minimapa con unas cuantas opciones sexys." +L["Square"] = "Quadrado" +L["Standard Buttons"] = "Botones Estandar" +L["Static Rotation"] = "Rotación estática" +-- L["TexBrowser Not Installed"] = "TexBrowser Not Installed" +L["Text Color"] = "Color del Texto" +L["Texture"] = "Textura" +L["Texture Options"] = "Opciones de Textura" +L["Texture Path"] = "Directorio de textura" +L["Texture Tint"] = "Tintura de textura" +L["Text Width"] = "Anchura del texto" +-- L["The HudMap supports several addons. If you have any of the addons below installed, they will be shown on the HudMap."] = "The HudMap supports several addons. If you have any of the addons below installed, they will be shown on the HudMap." +L["The time it takes (in seconds) to complete one rotation. A setting of 0 turns off rotation."] = "El tiempo que tardará (en segundos) en dar una vuelta completa. Marcar 0 deshabilitará la rotación" +L["This will wipe out any current settings!"] = "Esto borrara todas las configuraciones actuales!" +-- L["Tile Background"] = "Tile Background" +-- L["Tile Size"] = "Tile Size" +-- L["Toggle HudMap On/Off"] = "Toggle HudMap On/Off" +L["Tracking Button"] = "Botón de rastreo" +-- L["Turn this off if you want another mod to handle which buttons are visible on the minimap."] = "Turn this off if you want another mod to handle which buttons are visible on the minimap." +L["Use Global Profile"] = "Usar el Perfil Global" +-- L["User-Submitted Presets"] = "User-Submitted Presets" +L["Use the global profile if you want the same look on every character, or use a character-specific profile for a unique look on each character."] = "Usa el perfil global si quieres el mismo aspecto en todos los personajes, o utiliza un perfil específico para cada personaje." +L["Vehicle Seat"] = "Asiento de vehículo" +-- L["Vertical Nudge"] = "Vertical Nudge" +L["Vertical Position"] = "Posición vertical" +L["Visibility"] = "Visibilidad" +L["Width"] = "Ancho" +L["You can set a background and edge file for the minimap like you would with any frame. This is useful when you want to create static square backdrops for your minimap."] = "Puedes establecer un archivo de fondo y de borde para el minimapa como lo harías con cualquier marco. Esto es útil cuando quieres crear fondos cuadrados estáticos para tu minimapa." +L["Zone Text"] = "Texto de zona" +L["Zoom In Button"] = "Botón de Acercar Zoom" +L["Zoom Out Button"] = "Botón de Alejar Zoom" + +-- Buttons.lua +--L.addonCompartment = "Addon Compartment" +--L.craftingOrder = "Crafting Order (When Available)" + +-- Coordinates.lua +L.updateRate = "Frecuencia de actualización (segundos)" +L.updateRateDesc = "Cuanto más bajo sea el valor, más rápido se actualizarán las coordenadas, pero más memoria y CPU se consumirán debido a que se le pedirá al juego datos de coordenadas nuevos." +--L.Precision = "Precision" + +-- Movers.lua +--L.moversDescription = "Enable the ability to move specific UI elements." +--L.disableWarning = "Disabling this will temporarily show the loading screen. Are you sure?" +--L.enableObject = "Enable %s" +--L.lockObject = "Lock %s" +L.pvpCaptureBar = "PvP Capturar Barr" +--L.buffs = "Buffs/Debuffs" +--L.topCenterObjectivesWidget = "Top-Screen Objective/PvP Tracker" +--L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." +--L.zoneTextSecureButtonEnable = "Allow clicking in combat" +--L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Ninguno" +L.thin = "Delgado" +L.thick = "Grueso" +L.outline = "Contorno" +L.monochrome = "Monocromo" +L.monochromeDesc = "Cambia a modo monocromático, eliminando cualquier suavizado de los bordes de la fuente." diff --git a/localization/frFR.lua b/localization/frFR.lua index 143e1d3..05dcb5f 100644 --- a/localization/frFR.lua +++ b/localization/frFR.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP Barre de Capture" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Aucun" +L.thin = "Épais" +L.thick = "Mince" +L.outline = "Contour" +L.monochrome = "Monochrome" +L.monochromeDesc = "Active ou non le marqueur monochrome, enlevant tout lissage des bords de la police d'écriture." diff --git a/localization/itIT.lua b/localization/itIT.lua index 0c75d40..9e67997 100644 --- a/localization/itIT.lua +++ b/localization/itIT.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP Barre di Cattura" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Nessuno" +L.thin = "Fine" +L.thick = "Spesso" +L.outline = "Sottolineato" +L.monochrome = "Monocromatico" +L.monochromeDesc = "Abilita il flag monocromatico, rimuovendo ogni effetto di smussatura degli angoli dei caratteri." diff --git a/localization/koKR.lua b/localization/koKR.lua index d6dae39..08e843b 100644 --- a/localization/koKR.lua +++ b/localization/koKR.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "전장 지배 바" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "안함" +L.thin = "얇은" +L.thick = "두꺼운" +L.outline = "외곽선" +L.monochrome = "단색" +L.monochromeDesc = "단색 상태 사용을 전환하여, 글꼴 경계의 모든 다듬기를 제거합니다." diff --git a/localization/ptBR.lua b/localization/ptBR.lua index 512191d..ce2b943 100644 --- a/localization/ptBR.lua +++ b/localization/ptBR.lua @@ -191,3 +191,9 @@ L["Zoom Out Button"] = "Botão diminuir o Zoom" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Nenhum" +L.thin = "Fino" +L.thick = "Grosso" +L.outline = "Contorno" +L.monochrome = "Monocromático" +L.monochromeDesc = "Alterna o sinalizador de monocromático, removendo as melhorias das fontes." diff --git a/localization/ruRU.lua b/localization/ruRU.lua index 4789df4..3683723 100644 --- a/localization/ruRU.lua +++ b/localization/ruRU.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "ПвП Бар захвата" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "Нет" +L.thin = "Тонкий" +L.thick = "Толстый" +L.outline = "Контур" +L.monochrome = "Монохромный" +L.monochromeDesc = "Включение монохромного флага, убирается любое сглаживание краев шрифта." diff --git a/localization/zhCN.lua b/localization/zhCN.lua index 7b9fc85..2cda470 100644 --- a/localization/zhCN.lua +++ b/localization/zhCN.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP 占领进度条" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "无" +L.thin = "细" +L.thick = "粗" +L.outline = "轮廓" +L.monochrome = "单一颜色" +L.monochromeDesc = "切换为单一颜色,移除全部字体边缘平滑。" diff --git a/localization/zhTW.lua b/localization/zhTW.lua index 1b729c6..e8af2f5 100644 --- a/localization/zhTW.lua +++ b/localization/zhTW.lua @@ -191,3 +191,9 @@ L.pvpCaptureBar = "PvP 佔領狀態條" --L.zoneTextCombatClick = "|cFF33FF99SexyMap|r: To toggle the World Map in combat, you must enable the feature in the Zone Text options." --L.zoneTextSecureButtonEnable = "Allow clicking in combat" --L.zoneTextSecureButtonEnableDesc = "Normally you can click the Zone Text to toggle your World Map, but not in combat without this feature enabled.\n\n|cffff0000WARNING!|r Don't enable this feature unless you understand what it does. Turning this on will prevent ALL of your addons from making certain changes to your minimap in combat, such as moving it or hiding it." +L.none = "無" +L.thin = "細" +L.thick = "粗" +L.outline = "輪廓" +L.monochrome = "單一顏色" +L.monochromeDesc = "切換為單一顏色,移除全部字型邊緣平滑。"