This commit is contained in:
NoM0Re
2025-09-13 18:02:26 +02:00
committed by GitHub
parent 3c8ed9f073
commit 348bcce594
43 changed files with 669 additions and 342 deletions
+38 -12
View File
@@ -208,15 +208,28 @@ function OptionsPrivate.GetActionOptions(data)
return data.actions.start.message_type ~= "WHISPER"
end
},
start_message_tts_voice = {
type = "select",
width = WeakAuras.doubleWidth,
name = L["Voice"],
start_message_tts_space = {
type = "execute",
width = WeakAuras.normalWidth,
name = "",
order = 3.19,
image = function() return "", 0, 0 end,
hidden = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or data.actions.start.message_type ~= "TTS" end,
},
start_message_tts_settings = {
type = "execute",
width = WeakAuras.normalWidth,
func = function()
if AwesomeCVar and AwesomeCVar.ToggleFrame then
AwesomeCVar:ToggleFrame("Text to Speech")
end
end,
desc = IsAddOnLoaded("AwesomeCVar") and L["Open the Voice Chat settings to configure the TTS."]
or L["Install AwesomeCVar to open the Voice Chat settings."],
name = L["Voice Settings"],
order = 3.2,
disabled = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or not data.actions.start.do_message end,
hidden = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or data.actions.start.message_type ~= "TTS" end,
values = OptionsPrivate.Private.tts_voices,
desc = L["Available Voices are system specific"]
},
start_message = {
type = "input",
@@ -723,15 +736,28 @@ function OptionsPrivate.GetActionOptions(data)
return data.actions.finish.message_type ~= "WHISPER"
end
},
finish_message_tts_voice = {
type = "select",
width = WeakAuras.doubleWidth,
name = L["Voice"],
finish_message_tts_space = {
type = "execute",
width = WeakAuras.normalWidth,
name = "",
order = 23.19,
image = function() return "", 0, 0 end,
hidden = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or data.actions.finish.message_type ~= "TTS" end,
},
finish_message_tts_settings = {
type = "execute",
width = WeakAuras.normalWidth,
func = function()
if AwesomeCVar and AwesomeCVar.ToggleFrame then
AwesomeCVar:ToggleFrame("Text to Speech")
end
end,
desc = IsAddOnLoaded("AwesomeCVar") and L["Open the Voice Chat settings to configure the TTS."]
or L["Install AwesomeCVar to open the Voice Chat settings."],
name = L["Voice Settings"],
order = 23.2,
disabled = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or not data.actions.finish.do_message end,
hidden = function() return WeakAuras.IsAwesomeEnabled() ~= 2 or data.actions.finish.message_type ~= "TTS" end,
values = OptionsPrivate.Private.tts_voices,
desc = L["Available Voices are system specific"]
},
finish_message = {
type = "input",
+51 -5
View File
@@ -4,18 +4,64 @@ local AddonName = ...
local OptionsPrivate = select(2, ...)
OptionsPrivate.changelog = {
versionString = '5.20.2',
dateString = '2025-08-15',
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.20.1...5.20.2',
versionString = '5.20.3',
dateString = '2025-09-08',
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.20.2...5.20.3',
highlightText = [==[
bugfix release for some broken textures]==], commitText = [==[Pewtro (2):
- Important change:
- Text to speach voice is no longer a per aura setting, instead we use
the game configured text to speech voice.
- The game's tts settings are somewhat hidden under:
Esc/Options/Accessibility/Read Chat Text out loud/Configure Text to
Speech
- And you have to remember to disable the Read Chat Text out loud
afterwards.]==], commitText = [==[InfusOnWoW (11):
- SubRegion Model: Reintroduce clipped by foreground mode
- Remove workaround for SetTexture not adjusting to different wrapModes
- Revert "Fix KR/TW/CN large number formatting for >= 100.000.000"
- Fix TSU custom variable warning about formatter
- Tweak wording for lua errors
- Priest Template Remove removed ability
- Totem Trigger: Fix "inverse" option not being visible
- Custom Text: Tweak rules for text replacement %cfoo ~= %c now
- MOP: Workaround broken GetInstanceInfo in Tol'Viron Areana
- Fix typo in variable name
- Ticks: Fix color sometimes applying to the wrong tick
Matt Weber (1):
- Add optional length limit to `WA_ClassColorName`
Pewtro (2):
- Re-export the .blp files
- Add Celestial Dungeon load option instance type
emptyrivers (1):
Stanzilla (3):
- Update WeakAurasModelPaths from wago.tools
- Update WeakAurasModelPaths from wago.tools
- Update WeakAurasModelPaths from wago.tools
dependabot[bot] (3):
- Bump cbrgm/mastodon-github-action from 2.1.14 to 2.1.19
- Bump actions/checkout from 4 to 5
- Bump actions/setup-python from 5 to 6
emptyrivers (2):
- include overEnergize in combat log state
- some more difficulty ids
mrbuds (5):
- Fix Mists encounterID tooltip
- Fix currency trigger default on 12.2.0 fixes #6008
- Text To Speech: use global game voice settings, and use the tts queue system
- BossMod Trigger: add multiselect filter for break & pull timer
- Fix moving profiling window #noticket
]==]
}
+9 -7
View File
@@ -1018,15 +1018,17 @@ local function addControlsForChange(args, order, data, conditionVariable, totalA
if WeakAuras.IsAwesomeEnabled() == 2 then
args["condition" .. i .. "value" .. j .. "message voice"] = {
type = "select",
width = WeakAuras.doubleWidth,
name = blueIfNoValue2(data, conditions[i].changes[j], "value", "message_voice", L["Voice"], L["Voice"]),
desc = (descIfNoValue2(data, conditions[i].changes[j], "value", "message_voice", propertyType, OptionsPrivate.Private.tts_voices) or "") .. "\n" .. L["Available Voices are system specific"],
values = OptionsPrivate.Private.tts_voices,
type = "execute",
name = L["Voice Settings"],
order = order,
get = function()
return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.message_voice;
width = WeakAuras.normalWidth,
func = function()
if AwesomeCVar and AwesomeCVar.ToggleFrame then
AwesomeCVar:ToggleFrame("Text to Speech")
end
end,
desc = IsAddOnLoaded("AwesomeCVar") and L["Open the Voice Chat settings to configure the TTS."]
or L["Install AwesomeCVar to open the Voice Chat settings."],
set = setValueComplex("message_voice"),
hidden = function()
return not anyMessageType("TTS");
+1
View File
@@ -351,6 +351,7 @@ local function GetCustomTriggerOptions(data, triggernum)
inverse = "string",
paused = "string",
remaining = "string",
formatter = "string"
}
local function validateCustomVariables(variables)
+5 -5
View File
@@ -240,8 +240,6 @@ Off Screen]=]
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
--[[Translation missing --]]
L["Automatic length"] = "Automatic length"
--[[Translation missing --]]
L["Available Voices are system specific"] = "Available Voices are system specific"
L["Backdrop Color"] = "Hintergrundfarbe"
--[[Translation missing --]]
L["Backdrop in Front"] = "Backdrop in Front"
@@ -1177,6 +1175,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
L["Stop Motion Settings"] = "Stop Motion Settings"
L["Stop Sound"] = "Sound stoppen"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
--[[Translation missing --]]
L["Sub Elements"] = "Sub Elements"
--[[Translation missing --]]
L["Sub Option %i"] = "Sub Option %i"
@@ -1337,10 +1337,10 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
--[[Translation missing --]]
L["Use SetTransform"] = "Use SetTransform"
--[[Translation missing --]]
L["Used in Auras:"] = "Used in Auras:"
--[[Translation missing --]]
L["Used in auras:"] = "Used in auras:"
--[[Translation missing --]]
L["Used in Auras:"] = "Used in Auras:"
--[[Translation missing --]]
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
--[[Translation missing --]]
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."
@@ -1364,7 +1364,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
--[[Translation missing --]]
L["View custom code"] = "View custom code"
--[[Translation missing --]]
L["Voice"] = "Voice"
L["Voice Settings"] = "Voice Settings"
--[[Translation missing --]]
L["We thank"] = "We thank"
--[[Translation missing --]]
+4 -4
View File
@@ -152,8 +152,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Anchor Mode"
L["Anchor Point"] = "Anchor Point"
L["Anchored To"] = "Anchored To"
L["And "] = "And "
L["and"] = "and"
L["And "] = "And "
L["and %s"] = "and %s"
L["and aligned left"] = "and aligned left"
L["and aligned right"] = "and aligned right"
@@ -194,7 +194,6 @@ Off Screen]=]
L["Aura: '%s'"] = "Aura: '%s'"
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
L["Automatic length"] = "Automatic length"
L["Available Voices are system specific"] = "Available Voices are system specific"
L["Backdrop Color"] = "Backdrop Color"
L["Backdrop in Front"] = "Backdrop in Front"
L["Backdrop Style"] = "Backdrop Style"
@@ -807,6 +806,7 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
L["Stop Motion %s"] = "Stop Motion %s"
L["Stop Motion Settings"] = "Stop Motion Settings"
L["Stop Sound"] = "Stop Sound"
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "Sub Elements"
L["Sub Option %i"] = "Sub Option %i"
L["Subevent"] = "Subevent"
@@ -903,8 +903,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Url: %s"] = "Url: %s"
L["Use Display Info Id"] = "Use Display Info Id"
L["Use SetTransform"] = "Use SetTransform"
L["Used in Auras:"] = "Used in Auras:"
L["Used in auras:"] = "Used in auras:"
L["Used in Auras:"] = "Used in Auras:"
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."
L["Value"] = "Value"
@@ -919,7 +919,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "Vertical Bar"
L["View"] = "View"
L["View custom code"] = "View custom code"
L["Voice"] = "Voice"
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "We thank"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s on WoW %s"
L["What do you want to do?"] = "What do you want to do?"
+7 -7
View File
@@ -143,8 +143,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Modo de anclaje"
L["Anchor Point"] = "Punto de anclaje"
L["Anchored To"] = "Anclado a"
L["And "] = "y"
L["and"] = "y"
L["And "] = "y"
L["and %s"] = "y %s"
L["and aligned left"] = "y alineado a la izquierda"
L["and aligned right"] = "y alineado a la derecha"
@@ -184,7 +184,6 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
L["Aura: '%s'"] = "Aura: '%s'"
L["Auto-Clone (Show All Matches)"] = "Autoclonar (mostrar todas las coincidencias)"
L["Automatic length"] = "Longitud automática"
L["Available Voices are system specific"] = "Las voces disponibles son específicas del sistema"
L["Backdrop Color"] = "Color de fondo"
L["Backdrop in Front"] = "Fondo delante"
L["Backdrop Style"] = "Estilo de fondo"
@@ -267,13 +266,11 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
L["Custom Init"] = "Inicialización personalizada"
L["Custom Load"] = "Carga personalizada"
L["Custom Options"] = "Opciones personalizadas"
--[[Translation missing --]]
L["Custom Text Update Throttle"] = "Custom Text Update Throttle"
L["Custom Text Update Throttle"] = "Limitador de actualización de texto personalizado"
L["Custom Trigger"] = "Activador personalizado"
L["Custom trigger event tooltip"] = "Información sobre eventos de activador personalizado"
L["Custom trigger status tooltip"] = "Información sobre el estado del activador personalizado"
--[[Translation missing --]]
L["Custom trigger Update Throttle"] = "Custom trigger Update Throttle"
L["Custom trigger Update Throttle"] = "Limitador de actualización de disparador personalizado"
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Activador personalizado: ignorar errores de Lua en el evento OPCIONES"
L["Custom Trigger: Send fake events instead of STATUS event"] = "Activador personalizado: enviar eventos falsos en lugar del evento STATUS"
L["Custom Unload"] = "Descarga personalizada"
@@ -768,6 +765,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
L["Stop Motion %s"] = "Stop motion de %"
L["Stop Motion Settings"] = "Configuración de Stop Motion"
L["Stop Sound"] = "Detener sonido"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "Subelementos"
L["Sub Option %i"] = "Subopción %i"
L["Subevent"] = "Subevento"
@@ -879,7 +878,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "Barra vertical"
L["View"] = "Ver"
L["View custom code"] = "Ver código personalizado"
L["Voice"] = "Voz"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "Agradecemos a"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s en WoW %s"
L["What do you want to do?"] = "¿Qué es lo que quieres hacer?"
+7 -7
View File
@@ -184,7 +184,6 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
L["Aura: '%s'"] = "Aura: '%s'"
L["Auto-Clone (Show All Matches)"] = "Autoclonar (mostrar todas las coincidencias)"
L["Automatic length"] = "Longitud automática"
L["Available Voices are system specific"] = "Las voces disponibles son específicas del sistema"
L["Backdrop Color"] = "Color de fondo"
L["Backdrop in Front"] = "Fondo delante"
L["Backdrop Style"] = "Estilo de fondo"
@@ -267,13 +266,11 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
L["Custom Init"] = "Inicialización personalizada"
L["Custom Load"] = "Carga personalizada"
L["Custom Options"] = "Opciones personalizadas"
--[[Translation missing --]]
L["Custom Text Update Throttle"] = "Custom Text Update Throttle"
L["Custom Text Update Throttle"] = "Limitador de actualización de texto personalizado"
L["Custom Trigger"] = "Activador personalizado"
L["Custom trigger event tooltip"] = "Información sobre eventos de activador personalizado"
L["Custom trigger status tooltip"] = "Información sobre el estado del activador personalizado"
--[[Translation missing --]]
L["Custom trigger Update Throttle"] = "Custom trigger Update Throttle"
L["Custom trigger Update Throttle"] = "Limitador de actualización de disparador personalizado"
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Activador personalizado: ignorar errores de Lua en el evento OPCIONES"
L["Custom Trigger: Send fake events instead of STATUS event"] = "Activador personalizado: enviar eventos falsos en lugar del evento STATUS"
L["Custom Unload"] = "Descarga personalizada"
@@ -768,6 +765,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
L["Stop Motion %s"] = "Stop motion de %"
L["Stop Motion Settings"] = "Configuración de Stop Motion"
L["Stop Sound"] = "Detener sonido"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "Subelementos"
L["Sub Option %i"] = "Subopción %i"
L["Subevent"] = "Subevento"
@@ -863,8 +862,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Url: %s"] = "URL: %s"
L["Use Display Info Id"] = "Utilizar ID de información de la visualización"
L["Use SetTransform"] = "Utilizar SetTransform"
L["Used in Auras:"] = "Utilizado en auras:"
L["Used in auras:"] = "Utilizado en auras:"
L["Used in Auras:"] = "Utilizado en auras:"
L["Uses Texture Coordinates to rotate the texture."] = "Utiliza coordenadas de textura para rotar la textura."
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "Utiliza UnitIsVisible() para comprobar si el cliente del juego ha cargado un objeto para esta unidad. Esta distancia es de unos 100 metros. Esto se encuesta cada segundo."
L["Value"] = "Valor"
@@ -879,7 +878,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "Barra vertical"
L["View"] = "Ver"
L["View custom code"] = "Ver código personalizado"
L["Voice"] = "Voz"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "Agradecemos a"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s en WoW %s"
L["What do you want to do?"] = "¿Qué es lo que quieres hacer?"
+5 -4
View File
@@ -147,8 +147,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Mode dancrage"
L["Anchor Point"] = "Point d'ancrage"
L["Anchored To"] = "Ancré à"
L["And "] = "Et"
L["and"] = "et"
L["And "] = "Et"
L["and %s"] = "et %s"
L["and aligned left"] = "et aligné à gauche"
L["and aligned right"] = "et aligné à droite"
@@ -188,8 +188,6 @@ Off Screen]=] ] = "Laura est hors écran"
L["Aura: '%s'"] = "Aura : '%s'"
L["Auto-Clone (Show All Matches)"] = "Clonage Automatique (Afficher tous les résultats)"
L["Automatic length"] = "Longueur automatique"
--[[Translation missing --]]
L["Available Voices are system specific"] = "Available Voices are system specific"
L["Backdrop Color"] = "Couleur de Fond"
L["Backdrop in Front"] = "Fond Devant"
L["Backdrop Style"] = "Style de Fond"
@@ -1029,6 +1027,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
L["Stop Motion Settings"] = "Stop Motion Settings"
L["Stop Sound"] = "Arrêter le son"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
--[[Translation missing --]]
L["Sub Elements"] = "Sub Elements"
--[[Translation missing --]]
L["Sub Option %i"] = "Sub Option %i"
@@ -1195,7 +1195,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "Barre verticale"
L["View"] = "Vue"
L["View custom code"] = "Afficher le code personnalisé"
L["Voice"] = "Voix"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
--[[Translation missing --]]
L["We thank"] = "We thank"
--[[Translation missing --]]
+6 -5
View File
@@ -155,8 +155,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Anchor Mode"
L["Anchor Point"] = "Punto di ancoraggio"
L["Anchored To"] = "Ancorato a"
L["And "] = "E"
L["and"] = "e"
L["And "] = "E"
L["and %s"] = "e %s"
L["and aligned left"] = "e allineato a sinistra"
L["and aligned right"] = "e allineato a destra"
@@ -194,7 +194,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
L["Aura: '%s'"] = "Aura: '%s'"
L["Auto-Clone (Show All Matches)"] = "Auto-Clona (Mostra tutte le corrispondenze)"
L["Automatic length"] = "Lunghezza automatica"
L["Available Voices are system specific"] = "Le voci disponibili sono specifiche del sistema"
L["Backdrop Color"] = "Colore Fondale"
L["Backdrop in Front"] = "Fondale d'avanti"
L["Backdrop Style"] = "Stile Fondale"
@@ -1287,6 +1286,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
--[[Translation missing --]]
L["Stop Sound"] = "Stop Sound"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
--[[Translation missing --]]
L["Sub Elements"] = "Sub Elements"
--[[Translation missing --]]
L["Sub Option %i"] = "Sub Option %i"
@@ -1473,10 +1474,10 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
--[[Translation missing --]]
L["Use SetTransform"] = "Use SetTransform"
--[[Translation missing --]]
L["Used in Auras:"] = "Used in Auras:"
--[[Translation missing --]]
L["Used in auras:"] = "Used in auras:"
--[[Translation missing --]]
L["Used in Auras:"] = "Used in Auras:"
--[[Translation missing --]]
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
--[[Translation missing --]]
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."
@@ -1505,7 +1506,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
--[[Translation missing --]]
L["View custom code"] = "View custom code"
--[[Translation missing --]]
L["Voice"] = "Voice"
L["Voice Settings"] = "Voice Settings"
--[[Translation missing --]]
L["We thank"] = "We thank"
--[[Translation missing --]]
+4 -4
View File
@@ -200,7 +200,6 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
L["Aura: '%s'"] = "오라: '%s'"
L["Auto-Clone (Show All Matches)"] = "자동 복제 (일치하는걸 전부 표시)"
L["Automatic length"] = "자동 길이 조정"
L["Available Voices are system specific"] = "컴퓨터 환경에 따라 사용 가능한 음성이 다릅니다"
L["Backdrop Color"] = "배경막 색"
L["Backdrop in Front"] = "앞쪽 배경"
L["Backdrop Style"] = "배경 스타일"
@@ -743,7 +742,7 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
L["Shadow Y Offset"] = "그림자 Y 위치 조정"
L["Shift-click to create chat link"] = "Shift+클릭으로 대화창 링크 생성"
L["Show \"Edge\""] = "\"경계\" 표시"
L["Show \"Swipe\""] = "\"쿨타임 진행\" 표시"
L["Show \"Swipe\""] = "\"쿨타임 진행\" 부분 표시"
L["Show and Clone Settings"] = "표시 및 복제 설정"
L["Show Border"] = "테두리 표시"
L["Show Circular Texture"] = "테두리 텍스처 표시"
@@ -814,6 +813,7 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
L["Stop Motion %s"] = "스톱 모션 %s"
L["Stop Motion Settings"] = "스톱 모션 설정"
L["Stop Sound"] = "소리 재생 중지"
L["Stretched by Foreground"] = "전경 크기만큼 늘림"
L["Sub Elements"] = "하위 구성 요소"
L["Sub Option %i"] = "하위 옵션 %i"
L["Subevent"] = "서브이벤트"
@@ -907,8 +907,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Url: %s"] = "URL: %s"
L["Use Display Info Id"] = "디스플레이 정보 ID 사용"
L["Use SetTransform"] = "SetTransform 사용"
L["Used in Auras:"] = "사용 중인 위크오라:"
L["Used in auras:"] = "사용 중인 위크오라:"
L["Used in Auras:"] = "사용 중인 위크오라:"
L["Uses Texture Coordinates to rotate the texture."] = "회전에 텍스처 좌표를 사용합니다."
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "UnitIsVisible()을 사용해서 게임 클라이언트가 이 유닛의 오브젝트를 불러왔는지를 검사합니다. 검사 거리는 약 100미터 정도입니다. 매 초마다 검사합니다."
L["Value"] = ""
@@ -923,7 +923,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "세로 형태 바"
L["View"] = "보기"
L["View custom code"] = "사용자 정의 코드 보기"
L["Voice"] = "음성"
L["Voice Settings"] = "음성 환경 설정"
L["We thank"] = "감사합니다"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s (WoW %s)"
L["What do you want to do?"] = "무엇을 할까요?"
+4 -4
View File
@@ -224,9 +224,9 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Anchor Mode"
L["Anchor Point"] = "Ponto da âncora"
L["Anchored To"] = "Ancorado a"
L["And "] = "E"
--[[Translation missing --]]
L["and"] = "and"
L["And "] = "E"
--[[Translation missing --]]
L["and %s"] = "and %s"
L["and aligned left"] = "e alinhado à esquerda"
@@ -276,8 +276,6 @@ Off Screen]=] ] = "Aura está fora da tela"
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
L["Automatic length"] = "Comprimento Automático"
--[[Translation missing --]]
L["Available Voices are system specific"] = "Available Voices are system specific"
--[[Translation missing --]]
L["Backdrop Color"] = "Backdrop Color"
--[[Translation missing --]]
L["Backdrop in Front"] = "Backdrop in Front"
@@ -1296,6 +1294,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
L["Stop Motion Settings"] = "Configurações de Stop Motion"
L["Stop Sound"] = "Parar Som"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
--[[Translation missing --]]
L["Sub Elements"] = "Sub Elements"
--[[Translation missing --]]
L["Sub Option %i"] = "Sub Option %i"
@@ -1507,7 +1507,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
--[[Translation missing --]]
L["View custom code"] = "View custom code"
--[[Translation missing --]]
L["Voice"] = "Voice"
L["Voice Settings"] = "Voice Settings"
--[[Translation missing --]]
L["We thank"] = "We thank"
--[[Translation missing --]]
+5 -3
View File
@@ -148,8 +148,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "Режим крепления"
L["Anchor Point"] = "Точка крепления"
L["Anchored To"] = "Прикрепить к"
L["And "] = "И "
L["and"] = "и"
L["And "] = "И "
L["and %s"] = "и %s"
L["and aligned left"] = "Выранивание по левому краю;"
L["and aligned right"] = "Выранивание по правому краю;"
@@ -190,7 +190,6 @@ Off Screen]=] ] = [=[Индикация за
L["Aura: '%s'"] = "Индикация: %s"
L["Auto-Clone (Show All Matches)"] = "Показать все совпадения (Автоклонирование)"
L["Automatic length"] = "Автоматическая длина"
L["Available Voices are system specific"] = "Доступность голоса зависит от вашей системы"
L["Backdrop Color"] = "Цвет фона"
L["Backdrop in Front"] = "Фон спереди"
L["Backdrop Style"] = "Стиль фона"
@@ -805,6 +804,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
L["Stop Motion %s"] = "Стоп-кадр %s"
L["Stop Motion Settings"] = "Настройки анимации Stop motion"
L["Stop Sound"] = "Остановить вопроизведение звука"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "Внутренние элементы"
L["Sub Option %i"] = "Внутренний параметр %i"
L["Subevent"] = "Подсобытие"
@@ -923,7 +924,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "Вертикальная полоса"
L["View"] = "Вид"
L["View custom code"] = "Просмотреть код"
L["Voice"] = "Голос"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "Мы благодарим"
L["WeakAuras %s on WoW %s"] = "WeakAuras: %s. Интерфейс: %s"
L["What do you want to do?"] = "Что вы хотите сделать?"
+4 -2
View File
@@ -190,7 +190,6 @@ Off Screen]=] ] = "光环在屏幕外"
L["Aura: '%s'"] = "光环:'%s'"
L["Auto-Clone (Show All Matches)"] = "自动克隆(显示所有符合项)"
L["Automatic length"] = "自动长度"
L["Available Voices are system specific"] = "可用的声音由系统决定"
L["Backdrop Color"] = "背景颜色"
L["Backdrop in Front"] = "背景在前"
L["Backdrop Style"] = "背景图案类型 "
@@ -800,6 +799,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
L["Stop Motion %s"] = "定格动画%s"
L["Stop Motion Settings"] = "定格动画设置"
L["Stop Sound"] = "停止播放声音"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "子元素"
L["Sub Option %i"] = "子选项 %i"
L["Subevent"] = "子事件"
@@ -911,7 +912,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "垂直条"
L["View"] = "显示"
L["View custom code"] = "查看自定义代码"
L["Voice"] = "声音"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "我们感谢"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s + WoW %s"
L["What do you want to do?"] = "你想要做什么?"
+6 -4
View File
@@ -143,8 +143,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
L["Anchor Mode"] = "定位模式"
L["Anchor Point"] = "對齊點"
L["Anchored To"] = "對齊到"
L["And "] = ""
L["and"] = ""
L["And "] = ""
L["and %s"] = "以及 %s"
L["and aligned left"] = "和靠左對齊"
L["and aligned right"] = "和靠右對齊"
@@ -184,7 +184,6 @@ Off Screen]=] ] = [=[提醒效果
L["Aura: '%s'"] = "光環: '%s'"
L["Auto-Clone (Show All Matches)"] = "自動複製 (顯示所有符合的)"
L["Automatic length"] = "自動長度"
L["Available Voices are system specific"] = "可用語音為系統指定"
L["Backdrop Color"] = "背景顏色"
L["Backdrop in Front"] = "背景在前面"
L["Backdrop Style"] = "背景類型"
@@ -787,6 +786,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
L["Stop Motion %s"] = "停止動畫 %s"
L["Stop Motion Settings"] = "定格設定"
L["Stop Sound"] = "停止音效"
--[[Translation missing --]]
L["Stretched by Foreground"] = "Stretched by Foreground"
L["Sub Elements"] = "子元素"
L["Sub Option %i"] = "子選項 %i"
L["Subevent"] = "子事件"
@@ -881,8 +882,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Url: %s"] = "網址:%s"
L["Use Display Info Id"] = "使用顯示資訊 ID"
L["Use SetTransform"] = "使用 SetTransform"
L["Used in Auras:"] = "使用的提醒效果:"
L["Used in auras:"] = "使用的提醒效果:"
L["Used in Auras:"] = "使用的提醒效果:"
L["Uses Texture Coordinates to rotate the texture."] = "使用材質坐標來旋轉材質。"
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "使用 UnitIsVisible() 來檢查遊戲是否已經載入該單位的物件,距離為 100碼,每秒都會檢查一次。"
L["Value"] = "數值"
@@ -897,7 +898,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Vertical Bar"] = "垂直進度條"
L["View"] = "檢視"
L["View custom code"] = "檢視自訂程式碼"
L["Voice"] = "語音"
--[[Translation missing --]]
L["Voice Settings"] = "Voice Settings"
L["We thank"] = "我們感謝"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s 在 WoW %s"
L["What do you want to do?"] = "你想要怎麼做?"
@@ -522,7 +522,7 @@ function OptionsPrivate.CreateFrame()
local awesomeWotlkButton
if not WeakAuras.IsAwesomeEnabled() then
awesomeWotlkButton = addFooter("Awesome WotLK", [[Interface\AddOns\WeakAuras\Media\Textures\GitHub.tga]], "https://github.com/NoM0Re/awesome_wotlk/releases",
awesomeWotlkButton = addFooter("Awesome WotLK", [[Interface\AddOns\WeakAuras\Media\Textures\GitHub.tga]], "https://github.com/someweirdhuman/awesome_wotlk",
L["Unlock nameplate anchoring & units and Text-to-speech in WeakAuras with the Awesome WotLK client patch."])
awesomeWotlkButton:SetParent(tipFrame)
awesomeWotlkButton:SetPoint("LEFT", changelogButton or thanksButton, "RIGHT", footerSpacing, 0)
+1 -1
View File
@@ -3,7 +3,7 @@ local Private = select(2, ...)
local L = WeakAuras.L
local optionsVersion = "5.20.2 Beta"
local optionsVersion = "5.20.3 Beta"
if optionsVersion ~= WeakAuras.versionString then
local message = string.format(L["The WeakAuras Options Addon version %s doesn't match the WeakAuras version %s. If you updated the addon while the game was running, try restarting World of Warcraft. Otherwise try reinstalling WeakAuras"],
+1 -1
View File
@@ -1,7 +1,7 @@
## Interface: 30300
## Title: WeakAuras Options
## Author: The WeakAuras Team
## Version: 5.20.2
## Version: 5.20.3
## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp
## Notes: Options for WeakAuras
## Notes-esES: Opciones para WeakAuras