Skip to content

Commit

Permalink
Change Sound / Mounted Warn Opt. & Moonkin Fix
Browse files Browse the repository at this point in the history
Added support to change warning sound and be warned while mounted - also applied a fix for moonkin form that was stopping the addon from prompting missing buffs.
  • Loading branch information
Softrix committed Sep 19, 2022
1 parent b1fa202 commit c93c951
Show file tree
Hide file tree
Showing 12 changed files with 175 additions and 107 deletions.
2 changes: 1 addition & 1 deletion SmartBuff-Classic.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 11403
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(Classic Version)|r
## Version: 33.11403
## Version: 34.11403
## Author: |cff20d2ffCodermik (Mik / Castanova on EU-Mirage Raceway) & Aeldra|r (EU-Proudmoore)
## Notes: Cast the most important buffs on you or party, raid, pets and assigned tanks. Use /sbm for options menu.
## DefaultState: Enabled
Expand Down
6 changes: 3 additions & 3 deletions SmartBuff-Wrath.toc → SmartBuff-TBC.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 30400
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(Classic Version)|r
## Version: 33.30400
## Interface: 20504
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(TBC Classic)|r
## Version: 34.20504
## Author: |cff20d2ffCodermik (Mik / Castanova on EU-Mirage Raceway) & Aeldra|r (EU-Proudmoore)
## Notes: Cast the most important buffs on you or party, raid, pets and assigned tanks. Use /sbm for options menu.
## DefaultState: Enabled
Expand Down
138 changes: 50 additions & 88 deletions SmartBuff.lua

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions SmartBuff.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Interface: 20504
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(Classic Version)|r
## Version: 33.20504
## Interface: 30400
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(WOTLK Classic)|r
## Version: 34.30400
## Author: |cff20d2ffCodermik (Mik / Castanova on EU-Mirage Raceway) & Aeldra|r (EU-Proudmoore)
## Notes: Cast the most important buffs on you or party, raid, pets and assigned tanks. Use /sbm for options menu.
## Notes: Cast the most important buffs on you or party, raid, pets and assigned tanks. Use /sbm for options menu.
## DefaultState: Enabled
## LoadOnDemand: 0
## SavedVariables: SMARTBUFF_OptionsGlobal
Expand Down
85 changes: 80 additions & 5 deletions SmartBuff.xml
Original file line number Diff line number Diff line change
Expand Up @@ -868,9 +868,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrameRebuffTimer" relativePoint="TOPLEFT">
<Offset>
<AbsDimension x="-20" y="-28" />
</Offset>
<Offset x="-20" y="-67" />
</Anchor>
</Anchors>
<HitRectInsets>
Expand Down Expand Up @@ -1240,7 +1238,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbInCombat" relativePoint="TOPLEFT">
<Offset x="160" y="-8" />
<Offset x="160" y="-20" />
</Anchor>
</Anchors>
<Scripts>
Expand Down Expand Up @@ -1271,7 +1269,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbInCombat" relativePoint="BOTTOMLEFT">
<Offset y="-31" />
<Offset y="-57" />
</Anchor>
</Anchors>
<HitRectInsets>
Expand Down Expand Up @@ -1523,6 +1521,83 @@
</Anchors>
<FontString inherits="GameFontNormalSmall" justifyH="LEFT" />
</EditBox>
<Slider name="SmartBuffOptionsFrame_sldSounds" inherits="OptionsSliderTemplate" minValue="1" maxValue="25" defaultValue="1">
<Size>
<AbsDimension x="172" y="16" />
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbAutoChat" relativePoint="TOPLEFT">
<Offset x="10" y="-103" />
</Anchor>
</Anchors>
<Scripts>
<OnLoad>
SmartBuffOptionsFrameSlider_OnLoad(self, 1, 14, 1);
BackdropTemplateMixin.OnBackdropLoaded(self);
</OnLoad>
<OnLeave>
GameTooltip:Hide();
</OnLeave>
<OnEnter>
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(SMARTBUFF_OFTT_SOUNDSELECT, SMARTBUFF_TTC_R, SMARTBUFF_TTC_G, SMARTBUFF_TTC_B, SMARTBUFF_TTC_A);
</OnEnter>
<OnValueChanged>
local o = SMARTBUFF_Options;
local n = self:GetValue();
if (o and o.AutoSoundSelection ~= n) then
SmartBuff_SetSliderText(self, SMARTBUFF_MSG_SOUNDS, n, "%d");
o.AutoSoundSelection = n;
end
</OnValueChanged>
<OnShow>
local o = SMARTBUFF_Options;
if (o and o.AutoSoundSelection) then
SmartBuff_SetSliderText(self, SMARTBUFF_MSG_SOUNDS, o.AutoSoundSelection, "%d", true);
end
</OnShow>
</Scripts>
</Slider>
<Button name="SmartBuffOptionsFrame_btnPlaySound" inherits="UIPanelButtonTemplate" text="&gt;">
<Size x="27" y="16" />
<Anchors>
<Anchor point="TOPLEFT" x="227" y="-225" />
</Anchors>
<Scripts>
<OnClick>
SMARTBUFF_PlaySpashSound();
</OnClick>
</Scripts>
</Button>
<CheckButton name="SmartBuffOptionsFrame_cbWarnWhenMounted" inherits="OptionsCheckButtonTemplate">
<Size>
<AbsDimension x="24" y="24" />
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbHideMmButton" relativePoint="TOPLEFT">
<Offset y="71" />
</Anchor>
</Anchors>
<HitRectInsets>
<AbsInset left="0" right="0" top="0" bottom="0" />
</HitRectInsets>
<Scripts>
<OnEnter>
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(SMARTBUFF_OFTT_WARNWHILEMOUNTED, SMARTBUFF_TTC_R, SMARTBUFF_TTC_G, SMARTBUFF_TTC_B, SMARTBUFF_TTC_A);
</OnEnter>
<OnClick>
SMARTBUFF_OWarnWhenMountedButton();
</OnClick>
<OnLoad>
getglobal(self:GetName().."Text"):SetText(SMARTBUFF_OFT_WARNWHILEMOUNTED);
getglobal(self:GetName().."Text"):SetFontObject(GameFontNormalSmall);
</OnLoad>
<OnLeave>
GameTooltip:Hide();
</OnLeave>
</Scripts>
</CheckButton>
</Frames>
<Scripts>
<OnLoad>
Expand Down
4 changes: 4 additions & 0 deletions localization.cn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ SMARTBUFF_OFT_COMPMODE = "兼容模式";
SMARTBUFF_OFT_MINIGRP = "迷你团队";
SMARTBUFF_OFT_ANTIDAZE = "自动切换守护";
SMARTBUFF_OFT_HIDESABUTTON = "隐藏动作按钮";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "在坐骑上发出警告";
SMARTBUFF_OFTT_SOUNDSELECT = "选择所需的飞溅声.";
SMARTBUFF_OFT_INCOMBAT = "战斗中触发";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";

Expand Down Expand Up @@ -363,6 +365,7 @@ SMARTBUFF_OFTT_MINIGRP = "用迷你团队模式显示合理化的团队框
SMARTBUFF_OFTT_ANTIDAZE = "当自己队伍中有成员晕眩时,自动取消猎豹守护/豹群守护。";
SMARTBUFF_OFTT_SPLASHSTYLE = "改变BUFF提示信息的字体。";
SMARTBUFF_OFTT_HIDESABUTTON = "隐藏SmartBuff动作按钮。";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "在坐骑时检查并警告丢失的增益。";
SMARTBUFF_OFTT_INCOMBAT = "目前只能用于你自己身上。\n你设定的第一个战斗中可释放的BUFF将在战斗前放置到动作按钮上,\n因此你可以在战斗中施放这个法术。\n警告:战斗中所有逻辑判断都将不可用!";
SMARTBUFF_OFTT_SMARTDEBUFF = "显示SmartDebuff窗口。";
SMARTBUFF_OFTT_SPLASHDURATION= "设定多少秒后提示信息消失。";
Expand Down Expand Up @@ -416,6 +419,7 @@ SMARTBUFF_MSG_REBUFF = "你的BUFF:";
SMARTBUFF_MSG_LEFT = "以后消失!";
SMARTBUFF_MSG_CLASS = "职业";
SMARTBUFF_MSG_CHARGES = "次数";
SMARTBUFF_MSG_SOUNDS = "飞溅声音选择: "

-- Support
SMARTBUFF_MINIMAP_TT = "左键:选项菜单\n右键:开/关\nAlt+左键:SmartDebuff\n按Shift拖拽:移动按钮";
Expand Down
4 changes: 4 additions & 0 deletions localization.de.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ SMARTBUFF_OFT_COMPMODE = "Komp. Modus";
SMARTBUFF_OFT_MINIGRP = "Mini Gruppe";
SMARTBUFF_OFT_ANTIDAZE = "Anti-Daze";
SMARTBUFF_OFT_HIDESABUTTON = "Verberge Action-Knopf";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "Warnen, während montiert";
SMARTBUFF_OFT_INCOMBAT = "Bufft im Kampf";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "Verwandelt";
Expand Down Expand Up @@ -138,6 +139,8 @@ SMARTBUFF_OFTT_MINIGRP = "Zeigt die Raid-Subgruppen Einstellungen in einem
SMARTBUFF_OFTT_ANTIDAZE = "Bricht automatisch den\nAspekt des Geparden/Rudels ab,\nwenn jemand betäubt wird\n(Selbst oder Gruppe).";
SMARTBUFF_OFTT_SPLASHSTYLE = "Wechselt die Schriftart\nder Buff-Meldungen.";
SMARTBUFF_OFTT_HIDESABUTTON = "Verbirgt den SmartBuff Action-Knopf.";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "Überprüfen und warnen Sie vor fehlenden Buffs, während Sie auf einem Reittier sind.";
SMARTBUFF_OFTT_SOUNDSELECT = "Wählen Sie den gewünschten Splash.";
SMARTBUFF_OFTT_INCOMBAT = "Funktioniert nur auf dich selbst.\nDer erste Buff, welcher als 'im Kampf'\ngesetzt ist, wird verwendet\nund kann im Kampf benutzt werden.\n!!! Achtung !!!\nSämtliche Buff-Logik ist inaktiv im Kampf!";
SMARTBUFF_OFTT_SMARTDEBUFF = "Zeigt das SmartDebuff Fenster.";
SMARTBUFF_OFTT_SPLASHDURATION= "Wieviele Sekunden die Splash Meldung angezeigt wird,\nbevor sie ausgeblendet wird.";
Expand Down Expand Up @@ -196,6 +199,7 @@ SMARTBUFF_MSG_REBUFF = "ReBuff";
SMARTBUFF_MSG_LEFT = "übrig";
SMARTBUFF_MSG_CLASS = "Klasse";
SMARTBUFF_MSG_CHARGES = "Aufladungen";
SMARTBUFF_MSG_SOUNDS = "Splash-Sound-Auswahl: "
SMARTBUFF_MSG_SPECCHANGED = "Spec gewechselt (%s), lade Buff-Vorlagen...";

-- Support
Expand Down
18 changes: 12 additions & 6 deletions localization.en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
SMARTBUFF_WHATSNEW = "\n\n|cffffffff Whats new:|r\n\n"
.." |cffffffffClassic version by Codermik\n"
.." Please report any issues on Curse or Discord.|r\n\n\n"
.." Changes in r33:\n\n"
.." * Added additional checking for the daily island\n"
.." K'iru Song buff that causes buffing issues.\n"
.." * Fixed issue with Elixir of Healing Power reported\n"
.." via Discord by Funder - thanks!\n"
.." Changes in r34:\n\n"
.." * Added the ability to change the missing buff\n"
.." sound from the options screen.\n\n"
.." * Added option to warn for missing buffs while\n"
.." you are mounted.\n\n"
.." * Fixed issue with Moonkin form not prompting \n"
.." with missing buff notifications.\n\n"
.."\n\n"
.." |c0000FF96Many thanks to Chris S. for his donation and\n"
.." supporting my addon development.\n\n"
Expand Down Expand Up @@ -109,6 +111,7 @@ SMARTBUFF_OFT_BUFFINCITIES = "Buff in cities";
SMARTBUFF_OFT_BLDURATION = "Blacklisted";
SMARTBUFF_OFT_ANTIDAZE = "Anti daze";
SMARTBUFF_OFT_HIDESABUTTON = "Hide action button";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "Warn while mounted";
SMARTBUFF_OFT_INCOMBAT = "Buff in combat";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "Shapeshift";
Expand Down Expand Up @@ -154,6 +157,8 @@ SMARTBUFF_OFTT_BLDURATION = "How many seconds, players will be blacklisted.\n
SMARTBUFF_OFTT_ANTIDAZE = "Automatically cancels the\naspect of the cheetah/pack\nif someone gets dazed\n(self or group).";
SMARTBUFF_OFTT_SPLASHSTYLE = "Changes the fontstyle of\nthe buff messages.";
SMARTBUFF_OFTT_HIDESABUTTON = "Hides the SmartBuff action button.";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "Check and warn for missing buffs while you are mounted.";
SMARTBUFF_OFTT_SOUNDSELECT = "Select the required splash sound.";
SMARTBUFF_OFTT_INCOMBAT = "At the moment it only works on yourself.\nThe first buff you mark as in combat,\nwill set on the button before combat\nand you can use it in combat.\n!!! Warning !!!\nAll logic is disabled in combat!";
SMARTBUFF_OFTT_SMARTDEBUFF = "Shows the SmartDebuff frame.";
SMARTBUFF_OFTT_SPLASHDURATION= "How many seconds the splash\nmessage will displayed,\nbefore it fades.";
Expand Down Expand Up @@ -188,7 +193,7 @@ SMARTBUFF_BSTT_MANALIMIT = "Mana/Rage/Energy threshold\nIf you are below thi
SMARTBUFF_PSTT_RESIZE = "Minimize/maximize\nthe main options frame";

-- Messages
SMARTBUFF_MSG_LOADED = "loaded. Classic version by Codermik - please report any errors found.";
SMARTBUFF_MSG_LOADED = "loaded! - Classic version by Codermik - please report any errors found.";
SMARTBUFF_MSG_NEWVER1 = "|cff00e0ffSmartbuff : |cffffffff There is a new version available, you are using |cffFFFF00";
SMARTBUFF_MSG_NEWVER2 = "|cffffffff and revision |cffFFFF00r"
SMARTBUFF_MSG_NEWVER3 = "|cffffffff is currently available for download. Join Discord for all the latest information at https://discord.gg/R6EkZ94TKK.";
Expand All @@ -212,6 +217,7 @@ SMARTBUFF_MSG_REBUFF = "Rebuff";
SMARTBUFF_MSG_LEFT = "left";
SMARTBUFF_MSG_CLASS = "Class";
SMARTBUFF_MSG_CHARGES = "charges";
SMARTBUFF_MSG_SOUNDS = "Splash Sound Selection: "
SMARTBUFF_MSG_SPECCHANGED = "Spec changed (%s), loading buff templates...";

-- Support
Expand Down
5 changes: 5 additions & 0 deletions localization.es.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ SMARTBUFF_OFT_COMPMODE = "Modo Comp.";
SMARTBUFF_OFT_MINIGRP = "Mini grupo";
SMARTBUFF_OFT_ANTIDAZE = "Anti aturdimiento";
SMARTBUFF_OFT_HIDESABUTTON = "Ocultar bot\195\179n de acci\195\179n";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "Advertencia mientras está montado";
SMARTBUFF_OFTT_SOUNDSELECT = "Select the required splash sound.";
SMARTBUFF_OFT_INCOMBAT = "en combate";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "Shapeshift";
Expand Down Expand Up @@ -134,6 +136,8 @@ SMARTBUFF_OFTT_MINIGRP = "Mostrar los ajustes del subgrupo de banda en un\
SMARTBUFF_OFTT_ANTIDAZE = "Autom\195\161ticamente cancela el\naspecto del mono/manada\nsi alguien est\195\161 aturdido\n(\195\169l mismo o el grupo).";
SMARTBUFF_OFTT_SPLASHSTYLE = "Cambia la fuente de\nlos mensajes de buff.";
SMARTBUFF_OFTT_HIDESABUTTON = "Oculta el bot\195\179n de acci\195\179n de SmartBuff.";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "Comprueba y avisa mientras estás montado.";
SMARTBUFF_OFTT_SOUNDSELECT = "Seleccione el sonido de advertencia.";
SMARTBUFF_OFTT_INCOMBAT = "De momento s\195\179lo funciona sobre t\195\173 mismo.\nEl primer buff que marcas para combate,\nse establecer\195\161 en el bot\195\179n antes del combate\ny puede ser usado en combate.\nAviso! Toda l\195\179gica se inutiliza en combate";
SMARTBUFF_OFTT_SMARTDEBUFF = "Muestra la pesta\195\177a de SmartDeBuff";
SMARTBUFF_OFTT_SPLASHDURATION= "Cu\195\161ntos segundos estar\195\161 en pantalla el\nmensaje,\nantes de atenuarse.";
Expand Down Expand Up @@ -192,6 +196,7 @@ SMARTBUFF_MSG_REBUFF = "Rebuff";
SMARTBUFF_MSG_LEFT = "tiempo restante";
SMARTBUFF_MSG_CLASS = "Clase";
SMARTBUFF_MSG_CHARGES = "cargas";
SMARTBUFF_MSG_SOUNDS = "Selección de sonido: "
SMARTBUFF_MSG_SPECCHANGED = "Spec changed (%s), loading buff templates...";

-- Support
Expand Down
4 changes: 4 additions & 0 deletions localization.fr.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ SMARTBUFF_OFT_COMPMODE = "Comp. mode";
SMARTBUFF_OFT_MINIGRP = "Mini groupe";
SMARTBUFF_OFT_ANTIDAZE = "Anti daze"; -- NOT TRANSLATED
SMARTBUFF_OFT_HIDESABUTTON = "Cacher: Bouton action";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "Avertir sur une monture";
SMARTBUFF_OFTT_SOUNDSELECT = "Sélectionnez le son d'éclaboussure requis.";
SMARTBUFF_OFT_INCOMBAT = "en combat";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "Shapeshift";
Expand Down Expand Up @@ -135,6 +137,7 @@ SMARTBUFF_OFTT_MINIGRP = "Show raid subgoup settings in an\nown movable mi
SMARTBUFF_OFTT_ANTIDAZE = "Automatically cancels the\naspect of the cheetah/pack\nif someone gets dazed\n(self or group)."; -- NOT TRANSLATED
SMARTBUFF_OFTT_SPLASHSTYLE = "Changes the fontstyle of\nthe buff messages."; -- NOT TRANSLATED
SMARTBUFF_OFTT_HIDESABUTTON = "Cache le bouton SmartBuff de action."; -- NOT TRANSLATED
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "Vérifiez et avertissez les buffs manquants pendant que vous êtes sur une monture.";
SMARTBUFF_OFTT_INCOMBAT = "At the moment it only works on yourself.\nThe first buff you mark as in combat,\nwill set on the button before combat\nand you can use it in combat.\nWarning! All logic is disabled in combat!";
SMARTBUFF_OFTT_SMARTDEBUFF = "Shows the SmartDebuff frame.";
SMARTBUFF_OFTT_SPLASHDURATION= "How many seconds the splash\nmessage will displayed,\nbefore it fades.";
Expand Down Expand Up @@ -193,6 +196,7 @@ SMARTBUFF_MSG_REBUFF = "Rebuff";
SMARTBUFF_MSG_LEFT = "temps restant";
SMARTBUFF_MSG_CLASS = "Classe";
SMARTBUFF_MSG_CHARGES = "charges";
SMARTBUFF_MSG_SOUNDS = "Son Splash sélectionné: "
SMARTBUFF_MSG_SPECCHANGED = "Spec changed (%s), loading buff templates...";

-- Support
Expand Down
4 changes: 4 additions & 0 deletions localization.ru.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ SMARTBUFF_OFT_COMPMODE = "Комп.режим";
SMARTBUFF_OFT_MINIGRP = "Мини-группа";
SMARTBUFF_OFT_ANTIDAZE = "Анти-стоп";
SMARTBUFF_OFT_HIDESABUTTON = "Спрятать кнопку действия";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "Предупреждать, находясь на маунте";
SMARTBUFF_OFTT_SOUNDSELECT = "Выберите звук всплеска.";
SMARTBUFF_OFT_INCOMBAT = "в бою";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "Shapeshift";
Expand Down Expand Up @@ -133,6 +135,7 @@ SMARTBUFF_OFTT_MINIGRP = "Показывать выбор подгрупп
SMARTBUFF_OFTT_ANTIDAZE = "Автоматически прерывать\nДух Гепарда/Стаи\nесли на ком-то из группы\nповисло замедление.";
SMARTBUFF_OFTT_SPLASHSTYLE = "Изменить шрифт сообщений о баффах.";
SMARTBUFF_OFTT_HIDESABUTTON = "Спрятать кнопку действия SmartBuff.";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "Проверьте и предупредите об отсутствии баффов, пока вы находитесь на ездовом животном.";
SMARTBUFF_OFTT_INCOMBAT = "At the moment it only works on yourself.\nThe first buff you mark as in combat,\nwill set on the button before combat\nand you can use it in combat.\nWarning! All logic is disabled in combat!";
SMARTBUFF_OFTT_SMARTDEBUFF = "Shows the SmartDebuff frame.";
SMARTBUFF_OFTT_SPLASHDURATION= "Сколько секунд будут отображаться\nвсплывающие сообщения.";
Expand Down Expand Up @@ -190,6 +193,7 @@ SMARTBUFF_MSG_REBUFF = "Реббафф";
SMARTBUFF_MSG_LEFT = "осталось";
SMARTBUFF_MSG_CLASS = "Класс";
SMARTBUFF_MSG_CHARGES = "зарядов";
SMARTBUFF_MSG_SOUNDS = "Выбранный звук всплеска: "
SMARTBUFF_MSG_SPECCHANGED = "Spec changed (%s), loading buff templates...";

-- Support
Expand Down
4 changes: 4 additions & 0 deletions localization.tw.lua
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ SMARTBUFF_OFT_COMPMODE = "相容模式";
SMARTBUFF_OFT_MINIGRP = "小團隊";
SMARTBUFF_OFT_ANTIDAZE = "防眩暈";
SMARTBUFF_OFT_HIDESABUTTON = "隱藏動作按鈕";
SMARTBUFF_OFT_WARNWHILEMOUNTED = "掛載時發出警告";
SMARTBUFF_OFTT_SOUNDSELECT = "選擇所需的飛濺聲。";
SMARTBUFF_OFT_INCOMBAT = "戰鬥中";
SMARTBUFF_OFT_SMARTDEBUFF = "SmartDebuff";
SMARTBUFF_OFT_INSHAPESHIFT = "變身型態下";
Expand Down Expand Up @@ -140,6 +142,7 @@ SMARTBUFF_OFTT_MINIGRP = "以獨立可移動小視窗顯示Raid各小隊
SMARTBUFF_OFTT_ANTIDAZE = "若小隊中有人眩暈,\n自動取消獵豹/豹群守護";
SMARTBUFF_OFTT_SPLASHSTYLE = "更換 buff 訊息字型.";
SMARTBUFF_OFTT_HIDESABUTTON = "隱藏SmartBuff動作按鈕.";
SMARTBUFF_OFTT_WARNWHILEMOUNTED = "在坐騎時檢查並警告丟失的增益.";
SMARTBUFF_OFTT_INCOMBAT = "只對自己作用.\n被勾選為'戰鬥中'的第一個buff會在戰鬥前被設定在按鈕上,\n並能在戰鬥中使用.\n注意: 戰鬥中禁用邏輯判斷.";
SMARTBUFF_OFTT_SMARTDEBUFF = "顯示SmartDebuff視窗.";
SMARTBUFF_OFTT_SPLASHDURATION= "閃爍訊息持續秒數.";
Expand Down Expand Up @@ -198,6 +201,7 @@ SMARTBUFF_MSG_REBUFF = "Rebuff:";
SMARTBUFF_MSG_LEFT = "剩餘";
SMARTBUFF_MSG_CLASS = "職業";
SMARTBUFF_MSG_CHARGES = "";
SMARTBUFF_MSG_SOUNDS = "飛濺聲音選擇: "
SMARTBUFF_MSG_SPECCHANGED = "天賦已更改(%s), 重設buff模組...";

-- Support
Expand Down

0 comments on commit c93c951

Please sign in to comment.