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 up 3 (golden) Ghosts.'

L.Settings_MawLorkhaj_Header                 = 'Veteran Maw of Lorkhaj'
L.Settings_MawLorkhaj_Twin_Aspects           = 'Twin Aspects'
L.Settings_MawLorkhaj_Twin_Aspects_TT        = 'Alerts when you get the holy or shadow aspect at the False Moon Twins.\n\n   Full alerts you when you get an aspect, when you are starting to convert to an aspect and when the conversion is complete.\n   Normal alerts you when you get an aspect and when you are converting.\n   Minimal only alerts you when you are converting.'
L.Settings_MawLorkhaj_Twin_Aspects_Off       = 'Off'
L.Settings_MawLorkhaj_Twin_Aspects_Full      = 'Full'
L.Settings_MawLorkhaj_Twin_Aspects_Normal    = 'Normal'
L.Settings_MawLorkhaj_Twin_Aspects_Minimal   = 'Minimal'

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!'

L.Alerts_MawLorkhaj_Holy_Aspect      = 'You have the |cFEFF7FHoly|r Aspect!'
L.Alerts_MawLorkhaj_Shadow_Aspect    = 'You have the |c000055Shadow|r Aspect!'

L.Alerts_MawLorkhaj_Holy_Conversion     = 'Converting to the |cFEFF7FHoly|r Aspect!'
L.Alerts_MawLorkhaj_Shadow_Conversion   = 'Converting to the |c000055Shadow|r Aspect!'

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