Add russian locale

Poorly... But it'll do for now
This commit is contained in:
2025-01-09 20:58:17 +01:00
parent 12e0c23ea9
commit abb8540c12
6 changed files with 132 additions and 9 deletions

View File

@@ -156,7 +156,7 @@ function shared.Spotter.Init()
local stinky = Heimdall_Data.config.stinkies[name] or false
SetMapToCurrentZone()
SetMapByID(GetCurrentMapAreaID())
local text = string.format("I see (%s) %s/%s %s of race %s (%s) with health %s/%s at %s [%s](%2.2f, %2.2f)",
local text = string.format(shared.L.en.spotterSpotted,
hostile and "Hostile" or "Friendly",
name,
class,
@@ -180,6 +180,31 @@ function shared.Spotter.Init()
message = text
}
table.insert(shared.messenger.queue, msg)
text = string.format(shared.L.ru.spotterSpotted,
hostile and "Hostile" or "Friendly",
name,
class,
stinky and string.format("(%s)", "!!!!") or "",
race,
faction,
FormatHP(hp),
FormatHP(maxHp),
location,
tostring(GetCurrentMapAreaID()),
x * 100, y * 100)
if Heimdall_Data.config.spotter.debug then
print(string.format("[%s] Sending notification: %s", ModuleName, text))
end
---@type Message
msg = {
channel = "CHANNEL",
data = Heimdall_Data.config.spotter.notifyChannel .. "ru",
message = text
}
table.insert(shared.messenger.queue, msg)
end
local frame = CreateFrame("Frame")