Skip to content

Commit

Permalink
Merge pull request #20 from DarthKsane/DarthKsane-locale-fix
Browse files Browse the repository at this point in the history
Darth ksane locale fix
  • Loading branch information
solocommand authored Oct 21, 2020
2 parents ec35ad0 + 88a2851 commit 38b7d6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion i18n/deDE.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local addonName, addon = ...
local locale = GetLocale()

if locale == "deDE" then
local L = {}
local L = addon.L
L["ShowHKs"] = "Zeige Ehrenhafte Siege";
L["ShowHKsDescription"] = "Shows the total number of honor kills within the data text."

Expand Down
2 changes: 1 addition & 1 deletion i18n/esES.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local addonName, addon = ...
local locale = GetLocale()

if locale == "esES" then
local L = {}
local L = addon.L
L["ShowHKs"] = "Show Honor Kills";
L["ShowHKsDescription"] = "Shows the total number of honor kills within the data text."

Expand Down
2 changes: 1 addition & 1 deletion i18n/frFR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local addonName, addon = ...
local locale = GetLocale()

if locale == "frFR" then
local L = {}
local L = addon.L
L["ShowHKs"] = "Afficher Victoires Honorables";
L["ShowHKsDescription"] = "Shows the total number of honor kills within the data text."

Expand Down
2 changes: 1 addition & 1 deletion i18n/ruRU.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local addonName, addon = ...
local locale = GetLocale()

if locale == "ruRU" then
local L = {}
local L = addon.L
-- Configuration options
L["showHKs"] = "Почётные победы";
L["showHKsDescription"] = "Показывать общее количество почётных побед.";
Expand Down

0 comments on commit 38b7d6e

Please sign in to comment.