Skip to content

Commit

Permalink
Merge pull request #112 from Vysci/Fix-Whisper
Browse files Browse the repository at this point in the history
Fixed Whisper typo
  • Loading branch information
Vysci authored Jul 6, 2021
2 parents ca5c40d + 2fc19f7 commit b2fb6d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions LFGBulletinBoard/Localization.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ GBB.locales = {
["BtnUnselectAll"]="Unselect all",
["BtnSelectAll"]="Select all",

["BtnWispher"]="Wispher %s",
["BtnWhisper"]="Whisper %s",
["BtnInvite"]="Invite %s",
["BtnWho"]="Who %s",
["BtnIgnore"]="Ignore %s",
Expand Down Expand Up @@ -150,7 +150,7 @@ GBB.locales = {
["BtnUnFoldAll"] = "Alle entfalten",
["BtnUnselectAll"] = "Alles abwählen",
["BtnWho"] = "Who %s",
["BtnWispher"] = "%s anflüstern",
["BtnWhisper"] = "%s anflüstern",
["CboxAdditionalInfo"] = "Mehr Informationen bei /who und wenn jemand online kommt.",
["CboxCharDontFilterOwn"] = "Eigene Anfragen nicht filtern",
["CboxCharHeroicOnly"]= "Nur heroischer filter",
Expand Down Expand Up @@ -268,7 +268,7 @@ GBB.locales = {
["BtnUnFoldAll"]="Развернуть все",
["BtnUnselectAll"]="Снять все",
["BtnWho"]="Кто %s",
["BtnWispher"]="Шепот %s",
["BtnWhisper"]="Шепот %s",
["CboxCharDontFilterOwn"]="Не фильтровать собственный запрос",
["CboxCharHeroicOnly"]="Показывать только героические",
["CboxCharNormalOnly"]="Только нормальный фильтр",
Expand Down Expand Up @@ -437,7 +437,7 @@ GBB.locales = {
["BtnUnselectAll"]="取消全選",
["BtnSelectAll"]="全選",

["BtnWispher"]="密語 %s",
["BtnWhisper"]="密語 %s",
["BtnInvite"]="邀請 %s",
["BtnWho"]="Who %s",
["BtnIgnore"]="忽略 %s",
Expand Down
2 changes: 1 addition & 1 deletion LFGBulletinBoard/RequestList.lua
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ local function createMenu(DungeonID,req)
end
if req then
GBB.PopupDynamic:AddItem(string.format(GBB.L["BtnWho"],req.name),false,WhoRequest,req.name)
GBB.PopupDynamic:AddItem(string.format(GBB.L["BtnWispher"],req.name),false,WhisperRequest,req.name)
GBB.PopupDynamic:AddItem(string.format(GBB.L["BtnWhisper"],req.name),false,WhisperRequest,req.name)
GBB.PopupDynamic:AddItem(string.format(GBB.L["BtnInvite"],req.name),false,InviteRequest,req.name)
GBB.PopupDynamic:AddItem(string.format(GBB.L["BtnIgnore"],req.name),false,IgnoreRequest,req.name)
GBB.PopupDynamic:AddItem("",true)
Expand Down
1 change: 1 addition & 0 deletions LFGBulletinBoard/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Group Bulletin Board
2.59
- Fixed interference with other addons
- Make LFG bar optional (configured in setting)
- Fixed "Whisper" Typo

2.58
- Added a text box to post LFG msg at a click of a button
Expand Down

0 comments on commit b2fb6d9

Please sign in to comment.