Config file

Config = {}

Config.CommandName = "noticonfig" -- Name of the command for the player to open the settings

--Translation
Config.Language = "EN" --EN/PT
Config.Align = "left" -- Default Alignment left/right

Config.Translation = {
    EN = {
        NotificationTitle = 'Notification',
        NotificationTest = 'Test Notification',
        NotificationSave = 'Change saved successfully',
        NUITitle = 'Settings',
        NUIDark = 'Dark Mode:',
        NUIBar = 'Time Bar:',
        NUIAlign = 'Alignment:',
        NUISound = 'Sound:',
        NUIRight = 'Right',
        NUILeft = 'Left',
        NUIVol = 'Volume'
    },
    PT = {
        NotificationTitle = 'Notificação',
        NotificationTest = 'Notificação de Teste',
        NotificationSave ='Alteração guardadas com sucesso',
        NUITitle = 'ConfiguraƧƵes',
        NUIDark = 'Modo Escuro:',
        NUIBar = 'Barra de Tempo:',
        NUIAlign = 'Alinhamento:',
        NUISound = 'Son de Alerta:',
        NUIRight = 'Direita',
        NUILeft = 'Esquerda',
        NUIVol = 'Volume'
    },
}

Last updated