local L = {}
-- ---------------------------------------------------
-- SETTINGS ------------------------------------------
-- ---------------------------------------------------
L.Description                            = 'Displays on-screen notifications on different events during trials'

L.Settings_General_Header                        = 'General'
L.Settings_General_Bufffood_Reminder             = 'Bufffood Reminder'
L.Settings_General_Bufffood_Reminder_TT          = 'Reminds you, when you start a Trial without Buffood \nOR\n you\'re running a Trail and your bufffood runs out (see interval)'
L.Settings_General_Bufffood_Reminder_Interval    = 'Interval for Bufffood Reminder'
L.Settings_General_Bufffood_Reminder_Interval_TT = 'Here you can set up the interval of how often the RaidNotifier remembers you on your bufffood.\n\nEvery X seconds. \n\nBegins, when the bufffood maintains 10 minutes or less.'

L.Settings_Sanctum_Header                = 'Sanctum Ophidia'
L.Settings_Sanctum_Magicka_Detonation    = 'Magicka Detonation'
L.Settings_Sanctum_Magicka_Detonation_TT = 'Alerts when you got the debuff of the magicka detonation during the serpent fight.'
L.Settings_Sanctum_Poison                = 'Poison'
L.Settings_Sanctum_Poison_TT             = 'Alerts for the poison phase during the Serpent fight.'
L.Settings_Sanctum_Mantikora_Spear       = 'Mantikora Spear'
L.Settings_Sanctum_Mantikora_Spear_TT    = 'Alerts you when you will get the Mantikora Spear.'

L.Settings_Maelstrom_Header              = 'Veteran Maelstrom Arena'
L.Settings_Maelstrom_Stage7_Poison       = 'Stage 7: Poison'
L.Settings_Maelstrom_Stage7_Poison_TT    = 'Alerts you when you got poisoned in Stage 7 (Vault of Umbrage).'
L.Settings_Maelstrom_Stage9_Synergy      = 'Stage 9: Spectral Explosion (Synergy)'
L.Settings_Maelstrom_Stage9_Synergy_TT   = 'Alerts you when you got the Synergy in Stage 9 (Theater of Despair) after you picked ab 3 (golden) Ghosts.'

L.Settings_Debug_Header                  = 'Debug'
L.Settings_Debug                         = 'Turn debug on'
L.Settings_Debug_TT                      = 'Turns on debugging output in chatwindow'

-- ---------------------------------------------------
-- Alerts --------------------------------------------
-- ---------------------------------------------------
L.Alerts_Sanctum_Poison                 = '|c39942ePoison|r! Stack together!'
L.Alerts_Sanctum_Magicka_Detonation     = '|c234afaMagicka Detonation|r! Burn all your Magicka!'
L.Alerts_Sanctum_Mantikora_Spear        = 'Mantikora |ccde846Spear|r on you! Move out!'
L.Alerts_Sanctum_Mantikora_Spear_Player = 'Mantikora |ccde846Spear|r on <<!aC:1>>! Move out!'

L.Alerts_Maelstrom_Stage7_Poison    = '|c39942ePoisoned|r! Use one of the two areas to purge!'
L.Alerts_Maelstrom_Stage9_Synergy   = '|c23afe7Spectral Explosion|r ready! Use the synergy!'

L.Alerts_General_No_Bufffood        = 'You have taken no bufffood!'
L.Alerts_General_Bufffood_Minutes   = 'Your "<<1>>" bufffood runs out in |cbd0000<<2>>|r minutes!'

for k, v in pairs(L) do
    local string = "RAIDNOTIFIER_" .. string.upper(k)
    ZO_CreateStringId(string, v)
end