Skip to content

Commit 568e606

Browse files
authored
Merge pull request #43 from Puresyn/development
Development
2 parents 3462d0f + c6275fa commit 568e606

30 files changed

+209
-114
lines changed

Core/CharacterData.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ end
7272

7373
function CharacterData:GetCharacterDataByGUID(playerGUID)
7474
if KeyMaster_C_DB[playerGUID] == nil then
75-
--KeyMaster:_DebugMsg("GetCharacterDataByGUID", "CharacterData", playerGUID.." is not in the list of alternate characters.")
75+
KeyMaster:_DebugMsg("GetCharacterDataByGUID", "CharacterData", playerGUID.." is not in the list of alternate characters.")
7676
return nil
7777
end
7878

Core/Coms.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ local function processOpenRaidData(payload, sender)
168168

169169
-- Only update UI if party tab is open
170170
local partyTabContentFrame = _G["KeyMaster_PartyScreen"]
171-
if isDirty == true and partyTabContentFrame ~= nil and partyTabContentFrame:IsShown() then
171+
if isDirty == true and partyTabContentFrame ~= nil and partyTabContentFrame:IsVisible() then
172172
PartyFrameMapping:UpdateSingleUnitData(senderData.GUID)
173173
PartyFrameMapping:UpdateKeystoneHighlights()
174174
PartyFrameMapping:CalculateTotalRatingGainPotential()
@@ -239,7 +239,7 @@ local function processKM2Data(payload, sender)
239239

240240
-- Only update UI if party tab is open
241241
local partyTabContentFrame = _G["KeyMaster_PartyScreen"]
242-
if partyTabContentFrame ~= nil and partyTabContentFrame:IsShown() then
242+
if partyTabContentFrame ~= nil and partyTabContentFrame:IsVisible() then
243243
PartyFrameMapping:UpdateSingleUnitData(data.GUID)
244244
PartyFrameMapping:UpdateKeystoneHighlights()
245245
PartyFrameMapping:CalculateTotalRatingGainPotential()

Core/Localization/Languages.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<!--<Script file='Core\Localization\Localization.frFR.lua'/>-->
55
<Script file='Core\Localization\Localization.deDE.lua'/>
66
<!--<Script file='Core\Localization\Localization.esES.lua'/>
7-
<Script file='Core\Localization\Localization.esMX.lua'/>
8-
<Script file='Core\Localization\Localization.itIT.lua'/> -->
7+
<Script file='Core\Localization\Localization.esMX.lua'/> -->
8+
<Script file='Core\Localization\Localization.itIT.lua'/>
99
<Script file='Core\Localization\Localization.ruRU.lua'/>
1010
<Script file='Core\Localization\Localization.zhTW.lua'/>
1111
</Ui>

Core/Localization/Localization.deDE.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "anzeigen", text = " - Hauptfenster ein- oder a
9494
L.COMMANDLINE["Help"] = { name = "hilfe", text = " - zeigt dieses Hilfemenü."}
9595
L.COMMANDLINE["Errors"] = { name = "Fehler", text = " - Fehlermeldungen umschalten."}
9696
L.COMMANDLINE["Debug"] = { name = "Debug", text = " - Debug-Meldungen umschalten."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Mythisch-Wertung", text = "Dies ist die aktuelle Mythisch Plus Wertung des Charakters." }

Core/Localization/Localization.enUS.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "show", text = " - show/hide the main window."}
9494
L.COMMANDLINE["Help"] = { name = "help", text = " - shows this help menu."}
9595
L.COMMANDLINE["Errors"] = { name = "errors", text = " - toggle error messages."}
9696
L.COMMANDLINE["Debug"] = { name = "debug", text = " - toggle debug messages."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Mythic Rating", text = "This is the chacacter's current Mythic Plus rating." }

Core/PendingLocalizations/Localization.itIT.lua Core/Localization/Localization.itIT.lua

+55-54
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ KM_Localization_itIT = {}
22
local L = KM_Localization_itIT
33

44
-- Localization file for "itIT": Italian (Italy)
5-
-- Translated by: Google Translate
5+
-- Translated by: Kereru
66

77
--[[Notes for Translators: In many locations throughout Key Master, line space is limited. This can cause
88
overlapping or strange text display. Where possible, try to keep the overall length of the string comparable or shorter
@@ -13,32 +13,32 @@ local L = KM_Localization_itIT
1313
-- Problema di traduzione? Aiutaci a correggerlo! Visita: https://discord.gg/bbMaUpfgn8
1414

1515
L.LANGUAGE = "Italiano (IT)"
16-
L.TRANSLATOR = "Google Traduttore" -- Translator display name
16+
L.TRANSLATOR = "Kereru" -- Translator display name
1717

1818
L.TOCNOTES = {} -- these are manaually copied to the TOC so they show up in the appropriate language in the AddOns list. Please translate them both but let a dev know if you update them later.
19-
L.TOCNOTES["ADDONDESC"] = "Mythic Plus Keystone Information and Collaboration Tool"
19+
L.TOCNOTES["ADDONDESC"] = "Informazioni sulle Chiavi Mythic Plus e Strumento di Collaborazione"
2020
L.TOCNOTES["ADDONNAME"] = "Key Master"
2121

2222
L.MAPNAMES = {} -- Note: Map abbrevations should be a max of 4 characters and be commonly known. Map names come directly from Blizzard already translated.
2323
-- DF S3
2424
L.MAPNAMES[9001] = { name = "Sconosciuto", abbr = "???" }
25-
L.MAPNAMES[463] = { name = "Dawn of the Infinite: Galakrond\'s Fall", abbr = "FALL"}
26-
L.MAPNAMES[464] = { name = "Dawn of the Infinite: Murozond\'s Rise", abbr = "RISE"}
27-
L.MAPNAMES[244] = { name = "Atal'Dazar", abbr = "AD" }
28-
L.MAPNAMES[248] = { name = "Waycrest Manor", abbr = "WM" }
29-
L.MAPNAMES[199] = { name = "Black Rook Hold", abbr = "BRH" }
30-
L.MAPNAMES[198] = { name = "Darkheart Thicket", abbr = "DHT" }
31-
L.MAPNAMES[168] = { name = "The Everbloom", abbr = "EB" }
32-
L.MAPNAMES[456] = { name = "Throne of the Tides", abbr = "TotT" }
25+
L.MAPNAMES[463] = { name = "Alba degli Infiniti: Cauduta di Galakrond", abbr = "AICG"}
26+
L.MAPNAMES[464] = { name = "Alba degli Infiniti: Ascesa di Murozond", abbr = "AIAM"}
27+
L.MAPNAMES[244] = { name = "Atal'dazar", abbr = "AD" }
28+
L.MAPNAMES[248] = { name = "Maniero dei Crestabianca", abbr = "MdC" }
29+
L.MAPNAMES[199] = { name = "Forte Corvonero", abbr = "FC" }
30+
L.MAPNAMES[198] = { name = "Boschetto Cuortetro", abbr = "BCT" }
31+
L.MAPNAMES[168] = { name = "Verdeterno", abbr = "VE" }
32+
L.MAPNAMES[456] = { name = "Trono delle Maree", abbr = "TdM" }
3333
--DF S4
34-
L.MAPNAMES[399] = { name = "Ruby Life Pools", abbr = "RLP" }
35-
L.MAPNAMES[401] = { name = "The Azue Vault", abbr = "AV" }
36-
L.MAPNAMES[400] = { name = "The Nokhud Offensive", abbr = "NO" }
37-
L.MAPNAMES[402] = { name = "Algeth\'ar Academy", abbr = "AA" }
38-
L.MAPNAMES[403] = { name = "Legacy of Tyr", abbr = "ULD" }
39-
L.MAPNAMES[404] = { name = "Neltharus", abbr = "NELT" }
40-
L.MAPNAMES[405] = { name = "Brackenhide Hollow", abbr = "BH" }
41-
L.MAPNAMES[406] = { name = "Halls of Infusion", abbr = "HOI" }
34+
L.MAPNAMES[399] = { name = "Pozze della Vita di Rubino", abbr = "PVR" }
35+
L.MAPNAMES[401] = { name = "Cripta Azzurra", abbr = "CA" }
36+
L.MAPNAMES[400] = { name = "Offensiva dei Nokhud", abbr = "OdN" }
37+
L.MAPNAMES[402] = { name = "Accademia di Algeth\'ar", abbr = "AdA" }
38+
L.MAPNAMES[403] = { name = "Uldaman: Eredità di Tyr", abbr = "UEdT" }
39+
L.MAPNAMES[404] = { name = "Neltharus", abbr = "Nelt" }
40+
L.MAPNAMES[405] = { name = "Conca dei Felcepelle", abbr = "CdF" }
41+
L.MAPNAMES[406] = { name = "Sale dell'Infusione", abbr = "SdI" }
4242

4343
L.XPAC = {}
4444
L.XPAC[0] = { enum = "LE_EXPANSION_CLASSIC", desc = "Classic" }
@@ -61,14 +61,14 @@ L.MPLUSSEASON[14] = { name = "Stagione 2" } -- expecting season 14 to be TWW S2
6161

6262
L.DISPLAYVERSION = "v"
6363
L.WELCOMEMESSAGE = "Bentornato"
64-
L.ON = "SU"
64+
L.ON = "acceso"
6565
L.OFF = "spento"
6666
L.ENABLED = "abilitato"
6767
L.DISABLED = "disabilitato"
68-
L.CLICK = "Clic"
69-
L.CLICKDRAG = "Fare clic e trascinare"
70-
L.TOOPEN = "aprire"
71-
L.TOREPOSITION = "riposizionare"
68+
L.CLICK = "Clicca"
69+
L.CLICKDRAG = "Clicca e trascina"
70+
L.TOOPEN = "per aprire"
71+
L.TOREPOSITION = "per riposizionare"
7272
L.EXCLIMATIONPOINT = "!"
7373
L.THISWEEKSAFFIXES = "Questa settimana..."
7474
L.YOURRATING = "Il tuo punteggio"
@@ -80,56 +80,57 @@ L.COMMANDERROR1 = "Comando non valido"
8080
L.COMMANDERROR2 = "Inserire"
8181
L.COMMANDERROR3 = "per i comandi"
8282
L.YOURCURRENTKEY = "LA TUA CHIAVE"
83-
L.ADDONOUTOFDATE = "Il tuo componente aggiuntivo Key Master non è aggiornato!"
83+
L.ADDONOUTOFDATE = "Il tuo addon Key Master non è aggiornato!"
8484
L.INSTANCETIMER = "Informazioni sull'istanza"
85-
L.VAULTINFORMATION = "M+ Progressione del volteggio"
85+
L.VAULTINFORMATION = "Progresso M+ della Gran Banca"
8686
L.TIMELIMIT = "Limite di tempo"
8787
L.SEASON = "Stagione"
88-
L.COMBATMESSAGE = { errormsg = "Key Master unavailable in combat.", chatmsg = "The interface will open once you exit combat."}
88+
L.COMBATMESSAGE = { errormsg = "Key Master non è disponibile in combattimento.", chatmsg = "L'interfaccia si aprirà una volta fuori dal combattimento."}
8989

9090
L.COMMANDLINE = {} -- translate whatever in this section would be standard of an addon in the language. i.e. /km show, /km XXXX, or /XX XXXX It will work just fine.
9191
L.COMMANDLINE["/km"] = { name = "/km", text = "/km"}
9292
L.COMMANDLINE["/keymaster"] = {name = "/keymaster", text = "/keymaster"}
93-
L.COMMANDLINE["Show"] = { name = "spettacolo", text = " - mostrare o nascondere la finestra principale."}
93+
L.COMMANDLINE["Show"] = { name = "spettacolo", text = " - mostra o nascondi la finestra principale."}
9494
L.COMMANDLINE["Help"] = { name = "aiuto", text = " - mostra questo menu di aiuto."}
9595
L.COMMANDLINE["Errors"] = { name = "errori", text = " - attiva/disattiva i messaggi di errore."}
9696
L.COMMANDLINE["Debug"] = { name = "debug", text = " - attiva/disattiva i messaggi di debug."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - mostra l'attuale versione della build." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Valutazione mitica", text = "Questa è l'attuale valutazione Mitica Plus del personaggio." }
100-
L.TOOLTIPS["OverallScore"] = { name = "Punteggio totale", text = "Il punteggio complessivo è una combinazione dei punteggi delle corse Tiranniche e Fortificate per una mappa. (Con un sacco di matematica coinvolta)"}
101-
L.TOOLTIPS["TeamRatingGain"] = { name = "Guadagno stimato del rating del partito", text = "Questa è una stima che Key Master fa internamente. Questo numero rappresenta il potenziale minimo totale di guadagno di valutazione del tuo gruppo attuale per completare con successo la chiave del gruppo specificata. Potrebbe non essere accurato al 100% ed è qui solo a scopo di stima."}
101+
L.TOOLTIPS["OverallScore"] = { name = "Punteggio totale", text = "Il punteggio complessivo è una combinazione dei punteggi delle run in Tirannia e Potenziamento per una mappa. (Con un sacco di matematica coinvolta)"}
102+
L.TOOLTIPS["TeamRatingGain"] = { name = "Guadagno stimato di punteggio del gruppo", text = "Questa è una stima che Key Master fa internamente. Questo numero rappresenta il guadagno di punteggio minimo potenziale totale del tuo gruppo attuale per completare con successo la chiave del gruppo specificata. Potrebbe non essere accurato al 100% ed è qui solo a scopo di stima."}
102103

103104
L.PARTYFRAME = {}
104-
L.PARTYFRAME["PartyInformation"] = { name = "Informazioni sul partito", text = "Informazioni sul partito"}
105-
L.PARTYFRAME["OverallRating"] = { name = "Complessivamente attuale", text = "Complessivamente attuale" }
106-
L.PARTYFRAME["PartyPointGain"] = { name = "Guadagno punti del partito", text = "Guadagno punti del partito"}
105+
L.PARTYFRAME["PartyInformation"] = { name = "Informazioni sul gruppo", text = "Informazioni sul gruppo"}
106+
L.PARTYFRAME["OverallRating"] = { name = "Punteggio complessivo attuale", text = "Punteggio complessivo attuale" }
107+
L.PARTYFRAME["PartyPointGain"] = { name = "Guadagno punti del gruppo", text = "Guadagno punti del gruppo"}
107108
L.PARTYFRAME["Level"] = { name = "Livello", text = "Livello" }
108109
L.PARTYFRAME["Weekly"] = { name = "settimanalmente", text = "settimanalmente"}
109-
L.PARTYFRAME["NoAddon"] = { name = "Nessun componente aggiuntivo rilevato", text = "non rilevata!"}
110-
L.PARTYFRAME["PlayerOffline"] = { name = "Giocatore non in linea", text = "Il giocatore è offline."}
111-
L.PARTYFRAME["TeamRatingGain"] = { name = "Potenziale di guadagno del partito", text = "Guadagno stimato del rating del partito"}
112-
L.PARTYFRAME["MemberPointsGain"] = { name = "Guadagna potenziale", text = "Guadagno di punti personali stimato per le chiavi disponibili al completamento +1."}
110+
L.PARTYFRAME["NoAddon"] = { name = "Nessun addon rilevato", text = "non rilevato!"}
111+
L.PARTYFRAME["PlayerOffline"] = { name = "Giocatore offline", text = "Il giocatore è offline."}
112+
L.PARTYFRAME["TeamRatingGain"] = { name = "Guadagno potenziale del gruppo", text = "Guadagno stimato di punteggio del gruppo"}
113+
L.PARTYFRAME["MemberPointsGain"] = { name = "Guadagno potenziale", text = "Guadagno di punti personali stimato per le chiavi disponibili al completamento +1."}
113114
L.PARTYFRAME["NoKey"] = { name = "Nessuna chiave", text = "Nessuna chiave"}
114-
L.PARTYFRAME["NoPartyInfo"] = { text = "Party member information unavailable in matchmaking groups. (Dungeon Finder, Raid Finder, etc.)" }
115+
L.PARTYFRAME["NoPartyInfo"] = { text = "Informazioni sul membro del gruppo non disponibili nei gruppi di matchmaking. (Ricarca Gruppi, Ricerca Incursioni, etc.)" }
115116

116117
L.PLAYERFRAME = {}
117118
L.PLAYERFRAME["KeyLevel"] = { name = "Livello chiave", text = "Livello chiave da calcolare."}
118-
L.PLAYERFRAME["Gain"] = { name = "Guadagno", text = "Potenziale guadagno di rating."}
119+
L.PLAYERFRAME["Gain"] = { name = "Guadagno", text = "Guadagno potenziale di punteggio."}
119120
L.PLAYERFRAME["New"] = { name = "Nuovo", text = "La tua valutazione dopo aver completato questa chiave a +1."}
120-
L.PLAYERFRAME["RatingCalculator"] = { name = "Calcolatore della valutazione", text = "Calcola i potenziali guadagni di rating."}
121+
L.PLAYERFRAME["RatingCalculator"] = { name = "Calcolatore della valutazione", text = "Calcola i potenziali guadagni di punteggio."}
121122
L.PLAYERFRAME["EnterKeyLevel"] = { name = "Livello chiave", text = "Inserisci un livello chiave per vedere"}
122-
L.PLAYERFRAME["YourBaseRating"] = { name = "Guadagno della valutazione base", text = "la previsione del guadagno della tua valutazione base."}
123+
L.PLAYERFRAME["YourBaseRating"] = { name = "Guadagno base di punteggio", text = "la previsione del guadagno base di punteggio."}
123124
L.PLAYERFRAME["Characters"] = "Characters"
124125

125126
L.CHARACTERINFO = {}
126127
L.CHARACTERINFO["NoKeyFound"] = { name = "Nessuna chiave trovata", text = "Nessuna chiave trovata"}
127-
L.CHARACTERINFO["KeyInVault"] = { name = "Digitare nel caveau", text = "Nel caveau"}
128+
L.CHARACTERINFO["KeyInVault"] = { name = "Chiave nella Gran Banca", text = "Nella Gran Banca"}
128129
L.CHARACTERINFO["AskMerchant"] = { name = "Mercante di chiavi", text = "Mercante di chiavi"}
129130

130131
L.TABPLAYER = "Giocatore"
131132
L.TABPARTY = "Gruppo"
132-
L.TABABOUT = "Attorno"
133+
L.TABABOUT = "Informazioni"
133134
L.TABCONFIG = "Configurazione"
134135

135136
L.CONFIGURATIONFRAME = {}
@@ -139,20 +140,20 @@ L.CONFIGURATIONFRAME["ShowMiniMapButton"] = { name = "Mostra pulsante minimappa"
139140
L.CONFIGURATIONFRAME["DiagnosticSettings"] = { name = "Impostazioni diagnostiche", text = "Impostazioni diagnostiche."}
140141
L.CONFIGURATIONFRAME["DisplayErrorMessages"] = { name = "Visualizza errori", text = "Visualizza messaggi di errore."}
141142
L.CONFIGURATIONFRAME["DisplayDebugMessages"] = { name = "Visualizza debug", text = "Visualizza i messaggi di debug."}
142-
L.CONFIGURATIONFRAME["DiagnosticsAdvanced"] = { name = "Diagnostica avanzata", text="Nota: questi sono solo a scopo diagnostico. Se abilitati, potrebbero inondare la tua casella di chat!"}
143-
L.CONFIGURATIONFRAME["CharacterSettings"] = { name="Character List Filters", text = "Alternate character list filter options." }
144-
L.CONFIGURATIONFRAME["FilterByServer"] = { name = "Current Server", text = "Only show current server." }
145-
L.CONFIGURATIONFRAME["FilterByNoRating"] = { name = "No Rating", text = "Only show characters with a rating." }
146-
L.CONFIGURATIONFRAME["FilterByNoKey"] = { name = "No Key", text = "Only show characters with a key." }
147-
L.CONFIGURATIONFRAME["Purge"] = { present = "Purge", past = "Purged" }
143+
L.CONFIGURATIONFRAME["DiagnosticsAdvanced"] = { name = "Diagnostica avanzata", text="Nota: questi dati sono solo a scopo diagnostico. Se abilitati, potrebbero inondare la tua finestra di chat!"}
144+
L.CONFIGURATIONFRAME["CharacterSettings"] = { name="Filtri Lista Personaggi", text = "Opzioni alternative per i filtri della lista personaggi." }
145+
L.CONFIGURATIONFRAME["FilterByServer"] = { name = "Server Attuale", text = "Mostra solo server attuale." }
146+
L.CONFIGURATIONFRAME["FilterByNoRating"] = { name = "Nessun punteggio", text = "Mostra solo personaggi con un punteggio." }
147+
L.CONFIGURATIONFRAME["FilterByNoKey"] = { name = "Nessuna chiave", text = "Mostra solo personaggi con una chiave." }
148+
L.CONFIGURATIONFRAME["Purge"] = { present = "Pulisci", past = "Pulito" }
148149

149150
L.ABOUTFRAME = {}
150-
L.ABOUTFRAME["AboutGeneral"] = { name = "Key Master Informazione", text = "Key Master Informazione"}
151+
L.ABOUTFRAME["AboutGeneral"] = { name = "Informazioni su Key Master", text = "Informazioni su Key Master"}
151152
L.ABOUTFRAME["AboutAuthors"] = { name = "Autori", text = "Autori"}
152153
L.ABOUTFRAME["AboutSpecialThanks"] = { name = "Ringraziamenti speciali", text = "Ringraziamenti speciali"}
153-
L.ABOUTFRAME["AboutContributors"] = { name = "Contributori", text = "Contributori"}
154-
L.ABOUTFRAME["Translators"] = { text = "Translators" }
155-
L.ABOUTFRAME["WhatsNew"] = { text = "Show What\'s New"}
154+
L.ABOUTFRAME["AboutContributors"] = { name = "Collaboratori", text = "Collaboratori"}
155+
L.ABOUTFRAME["Translators"] = { text = "Traduttori" }
156+
L.ABOUTFRAME["WhatsNew"] = { text = "Mostra cosa c'è di nuovo"}
156157

157158
L.SYSTEMMESSAGE = {}
158-
L.SYSTEMMESSAGE["NOTICE"] = { text = "Notice: Dragonflight Season 4 rating calculations are still being verified."}
159+
L.SYSTEMMESSAGE["NOTICE"] = { text = "Avviso: I calcoli della stagione 4 di Dragonflight sono ancora in fase di verifica."}

Core/Localization/Localization.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ if(langPref == "enUS") then
4343
elseif (langPref == "deDE") then
4444
-- Localization.deDE.lua
4545
KeyMasterLocals = KM_Localization_deDE
46-
--[[ elseif (langPref == "itIT") then
46+
elseif (langPref == "itIT") then
4747
-- Localization.itIT.lua
48-
KeyMasterLocals = KM_Localization_itIT ]]
48+
KeyMasterLocals = KM_Localization_itIT
4949
elseif (langPref == "ruRU") then
5050
-- Localization.ruRU.lua
5151
KeyMasterLocals = KM_Localization_ruRU

Core/Localization/Localization.ptBR.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "Mostrar", text = " - mostra/esconde a tela pri
9494
L.COMMANDLINE["Help"] = { name = "ajuda", text = " - exibe esse menu de ajuda."}
9595
L.COMMANDLINE["Errors"] = { name = "erros", text = " - ativa mensagens de erro."}
9696
L.COMMANDLINE["Debug"] = { name = "debug", text = " - ativa mensagens de debug."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Pontuação Mítico", text = "Essa é a pontuação atual de Mítica+ desse personagem." }

Core/Localization/Localization.ruRU.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "показать", text = " - показать
9494
L.COMMANDLINE["Help"] = { name = "помощь", text = " - показать меню помощи."}
9595
L.COMMANDLINE["Errors"] = { name = "ошибки", text = " - включить/отключить сообщения об ошибках."}
9696
L.COMMANDLINE["Debug"] = { name = "отладка", text = " - включить/отключить сообщения об отладке."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Рейтинг М+", text = "Текущий М+ рейтинг персонажа" }

Core/Localization/Localization.zhTW.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "show", text = " - 顯示/隱藏主視窗。"}
9494
L.COMMANDLINE["Help"] = { name = "help", text = " - 顯示幫助選單。"}
9595
L.COMMANDLINE["Errors"] = { name = "errors", text = " - 切換錯誤訊息。"}
9696
L.COMMANDLINE["Debug"] = { name = "debug", text = " - 切換偵錯訊息。"}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "傳奇評分", text = "此為角色當前的傳奇+評分。" }

Core/PendingLocalizations/Localization.esES.lua

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ L.COMMANDLINE["Show"] = { name = "mostrar", text = " - mostrar u ocultar la vent
9494
L.COMMANDLINE["Help"] = { name = "ayuda", text = " - muestra este menú de ayuda."}
9595
L.COMMANDLINE["Errors"] = { name = "errores", text = " - alternar mensajes de error."}
9696
L.COMMANDLINE["Debug"] = { name = "depurar", text = " - alternar mensajes de depuración."}
97+
L.COMMANDLINE["Version"] = { name = "version", text = " - shows the current build version." }
9798

9899
L.TOOLTIPS = {}
99100
L.TOOLTIPS["MythicRating"] = { name = "Calificación mítica", text = "Esta es la calificación Mythic Plus actual del personaje." }

0 commit comments

Comments
 (0)