v.507
+ RUru localization fixed #6 thanks @Artur91425 + Fixed #3 + Added TimeManagerClock to ignore list
This commit is contained in:
+7
-3
@@ -41,8 +41,8 @@ MBB_Ignore = {
|
|||||||
[15] = "MBB_MinimapButtonFrame",
|
[15] = "MBB_MinimapButtonFrame",
|
||||||
[16] = "QuestieNote",
|
[16] = "QuestieNote",
|
||||||
[17] = "MetaMap",
|
[17] = "MetaMap",
|
||||||
[18] = "LootLinkMinimapButton"
|
[18] = "LootLinkMinimapButton",
|
||||||
|
[19] = "TimeManagerClockButton"
|
||||||
};
|
};
|
||||||
|
|
||||||
MBB_IgnoreSize = {
|
MBB_IgnoreSize = {
|
||||||
@@ -429,7 +429,11 @@ function MBB_RestoreButton(name)
|
|||||||
button:SetWidth(button.osize[1]);
|
button:SetWidth(button.osize[1]);
|
||||||
button.ClearAllPoints = button.oclearallpoints;
|
button.ClearAllPoints = button.oclearallpoints;
|
||||||
button.SetPoint = button.osetpoint;
|
button.SetPoint = button.osetpoint;
|
||||||
|
if (button.isvisible) then
|
||||||
button.oshow(button);
|
button.oshow(button);
|
||||||
|
else
|
||||||
|
button.ohide(button);
|
||||||
|
end
|
||||||
|
|
||||||
table.insert(MBB_Exclude, name);
|
table.insert(MBB_Exclude, name);
|
||||||
local i = MBB_IsInArray(MBB_Buttons, button:GetName());
|
local i = MBB_IsInArray(MBB_Buttons, button:GetName());
|
||||||
@@ -523,7 +527,7 @@ function MBB_OnClick(arg1)
|
|||||||
else
|
else
|
||||||
for i,name in ipairs(MBB_Buttons) do
|
for i,name in ipairs(MBB_Buttons) do
|
||||||
local frame = getglobal(name);
|
local frame = getglobal(name);
|
||||||
frame.oshow(frame);
|
if frame.isvisible then frame.oshow(frame); end
|
||||||
end
|
end
|
||||||
--MBB_ShowTimeout = 0;
|
--MBB_ShowTimeout = 0;
|
||||||
end
|
end
|
||||||
|
|||||||
+2
-1
@@ -1,9 +1,10 @@
|
|||||||
## Interface: 11200
|
## Interface: 11200
|
||||||
## Title: MinimapButtonBag
|
## Title: MinimapButtonBag
|
||||||
## Version: 0.505
|
## Version: 0.507
|
||||||
## Author: Tunhadil, LaYt - continue
|
## Author: Tunhadil, LaYt - continue
|
||||||
## Notes: Reduces minimap buttons and makes them accessible through a menu!
|
## Notes: Reduces minimap buttons and makes them accessible through a menu!
|
||||||
## Notes-deDE: Reduziert die Minimap Knöpfe und erlaubt den Zugriff auf diese über ein Menü!
|
## Notes-deDE: Reduziert die Minimap Knöpfe und erlaubt den Zugriff auf diese über ein Menü!
|
||||||
|
## Notes-ruRU: Компанует все иконки на миникарте в одну.
|
||||||
## SavedVariablesPerCharacter: MBB_Exclude, MBB_Options
|
## SavedVariablesPerCharacter: MBB_Exclude, MBB_Options
|
||||||
localization-enGB.lua
|
localization-enGB.lua
|
||||||
localization-deDE.lua
|
localization-deDE.lua
|
||||||
|
|||||||
+12
-12
@@ -1,21 +1,21 @@
|
|||||||
if( GetLocale() == "ruRU" ) then
|
if( GetLocale() == "ruRU" ) then
|
||||||
MBB_TOOLTIP1 = "Ctrl + ПКМ на кнопке чтобы оторвать от или приаттачить ее к миникарте.\nShift + Left Drag чтобы перемещать ее.";
|
MBB_TOOLTIP1 = "Ctrl + ПКМ на кнопку, чтобы прикрепить/открепить ее от миникарты.\nShift + Left Drag чтобы перемещать кнопку аддона.";
|
||||||
MBB_OPTIONS_HEADER = "Настройки";
|
MBB_OPTIONS_HEADER = "Настройки";
|
||||||
MBB_OPTIONS_OKBUTTON = "Ok";
|
MBB_OPTIONS_OKBUTTON = "Ок";
|
||||||
MBB_OPTIONS_CANCELBUTTON = "Отмена";
|
MBB_OPTIONS_CANCELBUTTON = "Отмена";
|
||||||
MBB_OPTIONS_SLIDEROFF = "Выкл.";
|
MBB_OPTIONS_SLIDEROFF = "Выкл.";
|
||||||
MBB_OPTIONS_SLIDERSEK = "сек";
|
MBB_OPTIONS_SLIDERSEK = "сек.";
|
||||||
MBB_OPTIONS_SLIDERLABEL = "Таймаут скрытия:";
|
MBB_OPTIONS_SLIDERLABEL = "Таймаут до скрытия:";
|
||||||
MBB_OPTIONS_EXPANSIONLABEL = "Расширяться в:";
|
MBB_OPTIONS_EXPANSIONLABEL = "Расширяться:";
|
||||||
MBB_OPTIONS_EXPANSIONLEFT = "Лево";
|
MBB_OPTIONS_EXPANSIONLEFT = "Влево";
|
||||||
MBB_OPTIONS_EXPANSIONTOP = "Верх";
|
MBB_OPTIONS_EXPANSIONTOP = "Вверх";
|
||||||
MBB_OPTIONS_EXPANSIONRIGHT = "Право";
|
MBB_OPTIONS_EXPANSIONRIGHT = "Вправо";
|
||||||
MBB_OPTIONS_EXPANSIONBOTTOM = "Низ";
|
MBB_OPTIONS_EXPANSIONBOTTOM = "Вниз";
|
||||||
MBB_OPTIONS_MAXBUTTONSLABEL = "Max. кнопок на строку:";
|
MBB_OPTIONS_MAXBUTTONSLABEL = "Max. кнопок в строке:";
|
||||||
MBB_OPTIONS_MAXBUTTONSINFO = "(0=бесконечно)";
|
MBB_OPTIONS_MAXBUTTONSINFO = "(0=бесконечно)";
|
||||||
MBB_OPTIONS_ALTEXPANSIONLABEL = "Расширять строки в:";
|
MBB_OPTIONS_ALTEXPANSIONLABEL = "Расширять строки:";
|
||||||
MBB_OPTIONS_SCALE="Масштаб кнопок";
|
MBB_OPTIONS_SCALE="Масштаб кнопок";
|
||||||
MBB_HELP1 = "Напечатайте \"/mbb <cmd>\" где <cmd> есть одна из команд:";
|
MBB_HELP1 = "Введите \"/mbb <cmd>\", где <cmd> одна из команд:";
|
||||||
MBB_HELP2 = " |c00ffffffbuttons|r: Показать список всех кнопок в MBB";
|
MBB_HELP2 = " |c00ffffffbuttons|r: Показать список всех кнопок в MBB";
|
||||||
MBB_HELP3 = " |c00ffffffreset position|r: Сбросить позицию кнопки МBB у миникарты";
|
MBB_HELP3 = " |c00ffffffreset position|r: Сбросить позицию кнопки МBB у миникарты";
|
||||||
MBB_HELP4 = " |c00ffffffreset all|r: Сбросить все настройки";
|
MBB_HELP4 = " |c00ffffffreset all|r: Сбросить все настройки";
|
||||||
|
|||||||
@@ -23,6 +23,12 @@ Use Right click on the MinimapButtonBag button to open the options dialog.
|
|||||||
|
|
||||||
#Last changes
|
#Last changes
|
||||||
|
|
||||||
|
v0.507
|
||||||
|
|
||||||
|
+ RUru localization fixed #6 thanks @Artur91425
|
||||||
|
+ Fixed #3
|
||||||
|
+ Added TimeManagerClock to ignore list
|
||||||
|
|
||||||
v0.506
|
v0.506
|
||||||
|
|
||||||
+ Startup gathering fixed
|
+ Startup gathering fixed
|
||||||
|
|||||||
Reference in New Issue
Block a user