shared/language.lua

-- | # For the most quality and unique FiveM resources: https://thug-studios.com
-- | # If you need help, join our Discord server: https://discord.gg/thugstudios

Config.Locale = {
    -- | # Section Headers ------------------------------------------------------------------------------------
    ['General_Options'] = 'GENERAL OPTIONS',
    ['Blip_Options'] = 'BLIP OPTIONS',
    ['Marker_Options'] = 'MARKER OPTIONS',
    ['Features'] = 'SAFEZONE FEATURES',

    -- | # Section Descriptions ------------------------------------------------------------------------------------
    ['Configure_Safezone_Settings'] = 'Set safezone basics.',
    ['Determine_Blip_Options'] = 'Configure blip appearance.',
    ['Determine_Marker_Settings'] = 'Customize marker visuals.',
    ['Configure_Safezone_Rules'] = 'Define safezone features.',

    -- | # Input & Option Labels ------------------------------------------------------------------------------------
    ['Safezone_Name'] = 'Safezone Name',
    ['Safezone_Coords'] = 'Safezone Coords',
    ['Show_Blip'] = 'Show Blip',
    ['Blip_Icon'] = 'Blip Icon',
    ['Blip_Color'] = 'Blip Color',
    ['Show_Marker'] = 'Show Marker',
    ['Marker_Color'] = 'Marker Color',

    -- | # Input Placeholders & Toggle States ------------------------------------------------------------------------------------
    ['Placeholder_Enter'] = 'ENTER',
    ['Toggle_On'] = 'ON',
    ['Toggle_Off'] = 'OFF',

    -- | # Button & Action Labels ------------------------------------------------------------------------------------
    ['Create'] = 'Create',
    ['Cancel'] = 'Cancel',
    ['Save'] = 'Save',
    ['Edit'] = 'EDIT',
    ['Search'] = 'Search...',

    -- | # Feature Names ------------------------------------------------------------------------------------
    ['Disable_Weapon_Drawing'] = 'Disable Weapon Drawing',
    ['Transparent_Players'] = 'Transparent Players',
    ['Disable_Fighting'] = 'Disable Fighting',
    ['Speed_Boost'] = 'Speed Boost',
    ['God_Mode'] = 'God Mode',
    ['Disable_Vehicle_Collisions'] = 'Disable Vehicle Collisions',
    ['Infinity_Stamina'] = 'Infinity Stamina',
    ['Disable_Player_Collisions'] = 'Disable Player Collisions',
    ['Disable_Falling'] = 'Disable Falling',
    ['Slow_Vehicles'] = 'Slow Vehicles',

    -- | # Feature Tooltips ------------------------------------------------------------------------------------
    ['Tooltip_Disable_Weapon_Drawing'] = 'Prevents players from drawing weapons inside the safezone.',
    ['Tooltip_Transparent_Players'] = 'Makes players semi-transparent so they can feel the safezone more noticeably.',
    ['Tooltip_Disable_Fighting'] = 'Prevents melee or weapon fighting inside the safezone.',
    ['Tooltip_Speed_Boost'] = 'Boosts players\' sprint speed for practicality inside the safezone.',
    ['Tooltip_God_Mode'] = 'Disables all damage types inside the safezone and makes players invincible.',
    ['Tooltip_Disable_Vehicle_Collisions'] = 'Disables vehicle collisions to keep the safezone away from chaos.',
    ['Tooltip_Infinity_Stamina'] = 'Makes stamina infinite for players inside the safezone.',
    ['Tooltip_Disable_Player_Collisions'] = 'Disables player collisions to maintain order inside the safezone.',
    ['Tooltip_Disable_Falling'] = 'Disables falling from heights inside the safezone.',
    ['Tooltip_Slow_Vehicles'] = 'Slows down vehicles to make the safezone more aesthetic.',

    -- | # Empty State Messages ------------------------------------------------------------------------------------
    ['No_Safezones_Found'] = 'No Safezones Found',
    ['Click_Create_Button'] = 'Click The %s Button Above To Add Your First Safezone',
    ['Highlight_Create'] = 'Create',
    ['Try_Different_Keywords'] = 'No Safezones Found For This Search',

    -- | # Coordinate Panel Text ------------------------------------------------------------------------------------
    ['Coordinates'] = 'COORDINATES',
    ['No_Coordinates'] = 'No Coordinates',
    ['Press_M_To_Add'] = 'Press %s To Add Your First Coordinate',
    ['Press_Backspace_To_Remove'] = 'Press %s To Remove The Last Coordinate',

    -- | # Keyboard Control Labels ------------------------------------------------------------------------------------
    ['Movement'] = 'Movement',
    ['Up_Down'] = 'Up / Down',
    ['Slow'] = 'Slow',
    ['Speed'] = 'Speed',
    ['Zone_Height'] = 'Zone Height',
    ['Add_Coordinate'] = 'Add Coordinate',
    ['Remove_Coordinate'] = 'Remove Coordinate',
    ['Complete'] = 'Complete',

    -- | # Dialog Messages ------------------------------------------------------------------------------------
    ['Delete_Safezone'] = 'Delete Safezone',
    ['Delete_Confirmation'] = 'Are you sure you want to delete %s? This action cannot be undone.',
    ['Save_Coordinates'] = 'Save Coordinates',
    ['Save_Coordinates_Confirmation'] = 'Are you sure you want to save these coordinates?',
    ['Exit_Coordinate_Creator'] = 'Exit Coordinate Creator',
    ['Exit_Coordinate_Creator_Confirmation'] = 'Are you sure you want to exit? All unsaved coordinates will be lost.',
    ['Confirm_Action'] = 'Confirm Action',
    ['Continue'] = 'Continue',

    -- | # Notifications & Error Messages ------------------------------------------------------------------------------------
    ['Notification_Title'] = 'Safezone Creator',
    ['Min_Coordinate_Error'] = 'You need at least 3 coordinates!',
    ['No_Permission'] = 'You do not have permission to use this!',
    ['Coordinate_Overlap_Warning'] = 'This point is inside an existing safezone!',
    ['Duplicate_Name_Error'] = 'A safezone with this name already exists!',
    ['Unknown_Location'] = 'Unknown Location',
}

Last updated