Skip to content

Commit

Permalink
Minor text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonomit committed Dec 27, 2023
1 parent 257a4f0 commit 2ab401a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Config/OptionsTables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -740,12 +740,12 @@ local function MakeExtraOptions(opts, categoryName)
GUI:CreateNewline(opts)

local disabled = self:GetOption("hide", stat)
GUI:CreateToggle(opts, {"hide", "StackSize_single"}, L["Hide Single Stacks"], L["Hide stack size on items that do not stack."], disabled)
GUI:CreateToggle(opts, {"hide", "StackSize_single"}, L["Hide Single Stacks"], L["Hide stack size on unstackable items."], disabled)
GUI:CreateReset(opts, {"hide", "StackSize_single"})
GUI:CreateNewline(opts)

local disabled = disabled or self:GetOption("hide", "StackSize_single")
GUI:CreateToggle(opts, {"hide", "StackSize_equipment"}, L["Hide Equipment"], L["Hide stack size on items that can be equipped on a character."], disabled)
GUI:CreateToggle(opts, {"hide", "StackSize_equipment"}, L["Hide Equipment"], L["Hide stack size on unstackable items that can be equipped on a character."], disabled)
GUI:CreateReset(opts, {"hide", "StackSize_equipment"})
end
end
Expand Down
8 changes: 4 additions & 4 deletions Locale/enUs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ L["Show item level on Waylaid Supplies and Supply Shipments."]
L["Show this line where it was originally positioned in Wrath of The Lich King."] = true

-- stack size
L["Hide Single Stacks"] = true
L["Hide stack size on items that do not stack."] = true
L["Hide Equipment"] = true
L["Hide stack size on items that can be equipped on a character."] = true
L["Hide Single Stacks"] = true
L["Hide stack size on unstackable items."] = true
L["Hide Equipment"] = true
L["Hide stack size on unstackable items that can be equipped on a character."] = true

-- trainable
L["Trainable Equipment"] = true
Expand Down

0 comments on commit 2ab401a

Please sign in to comment.