-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocalization.lua
32 lines (29 loc) · 1.12 KB
/
localization.lua
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
local _, Private = ...
if Private.initialized then
local localization = LibStub:GetLibrary("ovale/ui/Localization")
local L = localization and localization.l or nil
do
-- backwards compatibiility for Ovale<=9.0.43
L = L or (localization and localization.L or nil)
end
L = L or {}
local locale = GetLocale()
--[[
-- Insert additional localization strings into the Ovale localization
-- table. These symbol-to-string translations are used in the scripts
-- with the L() conditions, e.g., L(dispel), etc., for displaying the
-- correct string for text parameters.
--]]
-- Default locale (enUS)
L.active_mitigation = [[Active mitigation]]
L.dispel = [[Dispels]]
--L.interrupt = [[Interrupts]]
L.mage_arcane_ap_burn = [[Arcane Power Burn phase]]
L.mage_arcane_mini_burn = [[Mini Burn phase]]
L.mage_arcane_conserve = [[Conserve phase]]
--L.not_in_melee_range = [[Not in melee range]]
L.opt_nerien_reprisal_intervene = [[Always suggest Intervene with Reprisal runeforge]]
L.opt_nerien_shield_block = [[Always suggest Shield Block]]
L.trinkets = [[Trinkets]]
L.opt_suggest_covenant_ability= [[Suggest Covenant abilities]]
end