Compare commits

..

No commits in common. "9d36424af23d19b9d817a86c6b406c8520c9c95e" and "1a2e15fa75ac7d93054936c1d7d2eaed7224a901" have entirely different histories.

4 changed files with 1 additions and 15 deletions

View File

@ -30,9 +30,6 @@ i4 = {
inventory_size = tonumber(core.settings:get"i4_inventory_size") or (storage:get_int"imported_from_i3" and 36),
},
-- S("Crafting"); S("Armor")
-- S("Waypoints"); S("Skins")
-- S("Bag")
categories = {
"crafting",
"armor",

View File

@ -1,9 +1,4 @@
# textdomain: i4
Crafting=Konstruado
Armor=Armaĵoj
Waypoints=Vojmarkoj
Skins=Haŭtoj
Bag=Sakoj
Inventory=Portaĵujo
Clear inventory=Malplenigi portaĵujon
Sort inventory=Ordigi portaĵujon

View File

@ -1,9 +1,4 @@
# textdomain: i4
Crafting=
Armor=
Waypoints=
Skins=
Bag=
Inventory=
Clear inventory=
Sort inventory=

View File

@ -528,12 +528,11 @@ local function get_container(fs, data, player, yoffset, ctn_len, award_list, awa
for i, title in ipairs(i4.categories) do
local btn_name = fmt("btn_%s", title)
local caps_title = title:gsub("^%l", upper)
fs("style[btn_%s;fgimg=%s;fgimg_hovered=%s;content_offset=0]", title,
data.subcat == i and PNG[fmt("%s_hover", title)] or PNG[title],
PNG[fmt("%s_hover", title)])
image_button(0.25 + ((i - 1) * 1.18), yextra - 0.2, 0.5, 0.5, "", btn_name, "")
fs("tooltip[%s;%s;#32333899;#fff]", btn_name, S(caps_title))
fs("tooltip[%s;%s;#32333899;#fff]", btn_name, title:gsub("^%l", upper))
end
box(0, yextra + 0.45, ctn_len, 0.045, "#bababa50")