localization update

This commit is contained in:
Spit
2025-09-23 10:32:01 +03:00
parent 1a6e5a6c49
commit 6aee831133
13 changed files with 23645 additions and 14976 deletions
+459 -479
View File
File diff suppressed because it is too large Load Diff
+3 -15
View File
@@ -1,20 +1,5 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/">
<Script file="ButtonRegistry.lua"/>
<Script file="TextParsing.lua"/>
<Script file="Spells.lua"/>
<Script file="Sets.lua"/>
<Script file="Factions.lua"/>
<Script file="WorldEvents.lua"/>
<Script file="PvP.lua"/>
<Script file="Crafting.lua"/>
<Script file="AtlasLoot.lua"/>
<Script file="WishList.lua"/>
<Script file="Search.lua"/>
<Script file="WorldBoss.lua"/>
<Script file="Dungeons.lua"/>
<Script file="Tooltip.lua"/>
<Button name="AtlasLootContainerItemTemplate" virtual="true">
<Size x="40" y="40"/>
<Backdrop name="$parentBackdrop" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
@@ -1354,6 +1339,9 @@
<OnEvent>
AtlasLoot_OnEvent();
</OnEvent>
<OnUpdate>
AtlasLootItemsFrame_OnUpdate()
</OnUpdate>
<OnMouseWheel>
if arg1 == 1 and AtlasLootItemsFrame_NEXT:IsVisible() then
AtlasLootItemsFrame_NEXT:Click()
+1 -1
View File
@@ -4651,7 +4651,7 @@ AtlasLoot_ButtonRegistry = {
Next_Page = "JewelcraftingOffHands1";
};
["JewelcraftingOffHands1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Off-hand"];
Title = AL["Jewelcrafting"] .. ": " .. AL["Off Hand"];
Back_Page = "JEWELCRAFTMENU";
Prev_Page = "JewelcraftingBracers1";
Next_Page = "JewelcraftingStaves1";
+1 -1
View File
@@ -947,7 +947,7 @@ function AtlasLoot_JewelcraftingMenu()
AtlasLootMenuItem_11.lootpage="JewelcraftingBracers1";
AtlasLootMenuItem_11:Show();
--Offhands
AtlasLootMenuItem_12_Name:SetText(AL["Jewelcrafting"]..": "..AL["Off-hand"]);
AtlasLootMenuItem_12_Name:SetText(AL["Jewelcrafting"]..": "..AL["Off Hand"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_12.lootpage="JewelcraftingOffHands1";
+54 -9
View File
@@ -277,8 +277,13 @@ function AtlasLootPRE60SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -372,8 +377,13 @@ function AtlasLootZGSetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -446,8 +456,13 @@ function AtlasLootAQ40SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -520,8 +535,13 @@ function AtlasLootAQ20SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -594,8 +614,13 @@ function AtlasLootT0SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -668,8 +693,13 @@ function AtlasLootT1SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -742,8 +772,13 @@ function AtlasLootT2SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -816,8 +851,13 @@ function AtlasLootT3SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
@@ -890,8 +930,13 @@ function AtlasLoot_Kara40SetMenu()
for i = 1, 30 do
local button = _G["AtlasLootMenuItem_" .. i]
button.dataSource = AtlasLoot_GetDataSource(button.lootpage)
if button.container then
if ( type(button.container) == "table" ) then
_G["AtlasLootMenuItem_"..i.."Border"]:Show()
for row = 1, getn(button.container) do
for item = 1, getn(button.container[row]) do
AtlasLoot_CacheItem(button.container[row][item][1])
end
end
end
end
end
+16619 -14406
View File
File diff suppressed because it is too large Load Diff