mirror of
https://github.com/ckaczor/TuskarrRestockTracker.git
synced 2026-01-14 17:25:27 -05:00
Compare commits
9 Commits
10.0.4-bet
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 999328a358 | |||
| 913fcfeedd | |||
|
|
11a42d3e70 | ||
| 35fa52c2a1 | |||
| 01d3cc5ab6 | |||
| c75dc82327 | |||
| d31d896fd9 | |||
| 6f50ab4dc6 | |||
| 98b6c4a1d0 |
5
.pkgmeta
5
.pkgmeta
@@ -9,7 +9,6 @@ externals:
|
||||
tag: latest
|
||||
Libs/LibQTip-1.0:
|
||||
url: https://repos.curseforge.com/wow/libqtip-1-0
|
||||
commit: 4c6a3d882373fa0b52c6b71d09acc0b87ec1ae00
|
||||
Libs/LibDataBroker-1.1:
|
||||
url: https://github.com/tekkub/libdatabroker-1-1
|
||||
tag: latest
|
||||
@@ -39,4 +38,6 @@ externals:
|
||||
tag: latest
|
||||
Libs/LibDBIcon-1.0:
|
||||
url: https://repos.wowace.com/wow/libdbicon-1-0/trunk/LibDBIcon-1.0
|
||||
tag: latest
|
||||
tag: latest
|
||||
|
||||
enable-nolib-creation: no
|
||||
@@ -4,5 +4,28 @@ local L = LibStub("AceLocale-3.0"):NewLocale(ADDON_NAME, "ruRU")
|
||||
if not L then
|
||||
return
|
||||
end
|
||||
|
||||
-- @localization(locale="ruRU", format="lua_additive_table")@
|
||||
-- Translator ZamestoTV
|
||||
L["Tuskarr Restock Tracker"] = "Tuskarr Restock Tracker"
|
||||
L["Catch and Release: Scalebelly Mackerel"] = "Поймай и отпусти: Чешуебрюхая скумбрия"
|
||||
L["Catch and Release: Thousandbite Piranha"] = "Поймай и отпусти: Тысячезубая пиранья"
|
||||
L["Catch and Release: Aileron Seamoth"] = "Поймай и отпусти: Мелкокрылая рыба-пегас"
|
||||
L["Catch and Release: Cerulean Spinefish"] = "Поймай и отпусти: Лазурная иглоспинка"
|
||||
L["Catch and Release: Temporal Dragonhead"] = "Поймай и отпусти: Темпоральная драконоголовка"
|
||||
L["Catch and Release: Islefin Dorado"] = "Поймай и отпусти: Островная дорадо"
|
||||
L["Disabled until level 10"] = "Отключено до 10 уровня"
|
||||
L["Loading..."] = "Загрузка..."
|
||||
L["|cFF00FF00Complete|r"] = "|cFF00FF00Готово|r"
|
||||
L["|cFFFF0000Not Complete|r"] = "|cFFFF0000Не готово|r"
|
||||
L["Loaded"] = "Загружен"
|
||||
L["Done"] = "Готово"
|
||||
L["Show minimap icon"] = "Показывать иконку у миникарты"
|
||||
L["Shows or hides the minimap icon"] = "Показать или скрыть иконку у миникарты"
|
||||
L["|cFFFFFF00Click|r the main button to toggle whether the tooltip stays open"] = "|cFFFFFF00Клик|r по основной кнопке — закрепить/открепить подсказку"
|
||||
L["|cFFFFFF00Right Click|r the main button to cycle through which quest to track"] = "|cFFFFFF00ПКМ|r по основной кнопке — переключить отслеживаемое задание"
|
||||
L["Quest"] = "Задание"
|
||||
L["Fish"] = "Рыба"
|
||||
L["Have"] = "Есть"
|
||||
L["Status"] = "Статус"
|
||||
L["Need"] = "Нужно"
|
||||
L["Gather:"] = "Собрать:"
|
||||
L["Turn In:"] = "Сдать:"
|
||||
|
||||
@@ -405,7 +405,12 @@ function TuskarrRestockTracker:ChatCommand(input)
|
||||
command = command:lower()
|
||||
|
||||
if command == L["config"]:lower() then
|
||||
InterfaceOptionsFrame_OpenToCategory(private.optionsFrame)
|
||||
if Settings then
|
||||
Settings.OpenToCategory("Tuskarr Restock Tracker")
|
||||
elseif InterfaceOptionsFrame_OpenToCategory then
|
||||
InterfaceOptionsFrame_OpenToCategory("Tuskarr Restock Tracker")
|
||||
InterfaceOptionsFrame_OpenToCategory("Tuskarr Restock Tracker")
|
||||
end
|
||||
elseif command == L["minimap"]:lower() then
|
||||
private.db.global.minimap_icon.hide = not private.db.global.minimap_icon.hide
|
||||
TuskarrRestockTracker:UpdateMinimapConfig()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
## Interface: 100000
|
||||
## Interface: 110205
|
||||
## Title: Tuskarr Restock Tracker
|
||||
## Version: 10.0.4
|
||||
## Version: 11.0.1
|
||||
## Notes: Helps with the weekly Iskaara Tuskarr fishing quests ("Catch and Release") by keeping track of what quests have been completed and what fish are required.
|
||||
## Author: Amanoa
|
||||
## SavedVariables: TuskarrRestockTrackerDB
|
||||
|
||||
Reference in New Issue
Block a user