Initial commit

This commit is contained in:
2022-12-28 20:05:30 -05:00
commit 5648cd858d
13 changed files with 655 additions and 0 deletions

8
Locale/deDE.lua Normal file
View File

@@ -0,0 +1,8 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "deDE")
if not L then
return
end
-- @localization(locale="deDE", format="lua_additive_table")@

31
Locale/enUS.lua Normal file
View File

@@ -0,0 +1,31 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "enUS", true, false)
if not L then
return
end
L["Tuskarr Catch and Release"] = true
L["Catch and Release: Scalebelly Mackerel"] = true
L["Catch and Release: Thousandbite Piranha"] = true
L["Catch and Release: Aileron Seamoth"] = true
L["Catch and Release: Cerulean Spinefish"] = true
L["Catch and Release: Temporal Dragonhead"] = true
L["Catch and Release: Islefin Dorado"] = true
L["Disabled until level 10"] = true
L["Loading..."] = true
L["|cFF00FF00Complete|r"] = true
L["|cFFFF0000Not Complete|r"] = true
L["Loaded"] = true
L["Done"] = true
L["Show minimap icon"] = true
L["Shows or hides the minimap icon"] = true
L["|cFFFFFF00Click|r the main button to toggle whether the tooltip stays open"] = true
L["|cFFFFFF00Right Click|r the main button to cycle through which quest to track"] = true
L["Quest"] = true
L["Fish"] = true
L["Have"] = true
L["Status"] = true
L["Need"] = true
L["Gather:"] = true
L["Turn In:"] = true

8
Locale/frFR.lua Normal file
View File

@@ -0,0 +1,8 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "frFR")
if not L then
return
end
-- @localization(locale="frFR", format="lua_additive_table")@

8
Locale/itIT.lua Normal file
View File

@@ -0,0 +1,8 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "itIT")
if not L then
return
end
-- @localization(locale="itIT", format="lua_additive_table")@

8
Locale/ruRU.lua Normal file
View File

@@ -0,0 +1,8 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "ruRU")
if not L then
return
end
-- @localization(locale="ruRU", format="lua_additive_table")@

8
Locale/zhTW.lua Normal file
View File

@@ -0,0 +1,8 @@
local ADDON_NAME = ...
local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "zhTW")
if not L then
return
end
-- @localization(locale="zhTW", format="lua_additive_table")@