-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalization.lua
More file actions
46 lines (38 loc) · 1.51 KB
/
localization.lua
File metadata and controls
46 lines (38 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local AceLocale = LibStub("AceLocale-3.0")
local L = AceLocale:GetLocale("bReadyCheck", true)
local L = AceLocale:NewLocale("bReadyCheck", "enUS", true)
if L then
L["READY_CHECK"] = "Ready Check"
L["SECONDS"] = " (%s sec.)"
L["Enable"] = "Enable"
L["General Settings"] = "General"
L["EnableDesc"] = "Enable/disable bReadyCheck"
L["OnlyRL"] = "Only for raid leader"
L["OnlyRLDesc"] = "Show info only to raid leader or assistants"
L["FrameScale"] = "Scale"
L["MinFlaskExp"] = "Show expiring flasks"
L["MinFlaskExpDesc"] = "Set how many minutes before flask expiration to display a warning"
L["MinFlaskExpNo"] = "no"
L["MinFlaskExpMin"] = "min."
L["TimerTooltip"] = "Disappearance time after the ready check (in seconds)"
L["Fonts"] = "Font"
L["FontsDesc"] = "Select the text font"
L["SortByClass"] = "Sort by class"
L["SortByClassDesc"] = "Players will be sorted by class"
L["NeedGroupOrRaid"] = "You have to be in a party or raid"
L["FontSize"] = "Font size"
L["FontSettings"] = "Font"
L["BuffSettings"] = "Buffs"
L["ShowSourceName"] = "Display who applied the buff"
L["ShowSourceNameDesc"] = "Show the name of the buff's source in the tooltip"
L["FontOutline"] = "Outline"
L["FontOutlineDesc"] = "Choose outline style for the font"
L["FontShadow"] = "Font Shadow"
L["FontShadowDesc"] = "Enable shadow behind the font"
end
--[[
L = AceLocale:NewLocale("bReadyCheck", "ruRU")
if L then
L["READY_CHECK"] = "Проверка готовности"
end
]]