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

Lang = {

    -- | # Notifications ------------------------------------------------------------

    Notify = {
        Missing_Items = 'Missing required items!',
        Already_Pouring = 'You are already making lean!',
        No_Cup = 'You need an empty cup!',
        Syrup_Empty = 'This syrup bottle is empty!',
        Drink_Added = 'Drink added!',
        Syrup_Added = 'Syrup added - Lean is ready!',
        Lean_Received = 'You received your lean!',
        Cancelled = 'Cancelled, items refunded.',
        Inventory_Full = 'Inventory full, items refunded.',
        Syrup_Uses_Left = '%s has %d uses remaining.',
        Drink_Uses_Left = '%s has %d uses remaining.',
        Already_Drinking = 'You are already drinking!',
        Cup_Empty = 'Your cup is empty!',
        No_Player_Nearby = 'No player nearby!',
        Cup_Passed = 'Cup passed!',
        Cup_Received = 'You received a cup of lean!',
        Cup_Placed = 'Cup placed on the ground.',
        Cup_Picked_Up = 'Picked up lean cup!',
        Cup_Pocketed = 'Cup pocketed.',
        Placement_Cancelled = 'Placement cancelled.',
        Cannot_Pass_In_Vehicle = 'You can\'t pass while in a vehicle!',
        Player_Busy = 'That player is busy!',
        Overdose = 'You overdosed!',
        Blackout = 'You come to... you don\'t feel like yourself.',
    },

    -- | # UI Text ------------------------------------------------------------------

    UI = {
        Hold_To_Pour = 'POUR (HOLD)',
        Cancel_Text = 'CANCEL',
        Menu_Section = 'Select your mixer',
        Menu_Not_Available = 'Not in inventory',
        Pickup_Label = 'Pick up Lean',
        Sip_Label = 'Sip',
        Place_Label = 'Place',
        Pocket_Label = 'Pocket',
        Pocket_Pickup_Label = 'Pick up Cup',
        Pass_Label = 'Pass',
        Confirm_Label = 'Confirm',
    },

    -- | # Labels -------------------------------------------------------------------

    Drink_Labels = {
        drink_lime_soda = 'Lime Soda',
        drink_cherry_soda = 'Cherry Soda',
        drink_berry_punch = 'Berry Punch Soda',
        drink_pineapple_soda = 'Pineapple Soda',
        drink_grape_soda = 'Grape Soda',
    },

    Drink_Descriptions = {
        drink_lime_soda = 'Citrus-flavored carbonated drink.',
        drink_cherry_soda = 'Sweet cherry carbonated drink.',
        drink_berry_punch = 'Mixed berry carbonated punch.',
        drink_pineapple_soda = 'Tropical pineapple carbonated drink.',
        drink_grape_soda = 'Classic grape carbonated drink.',
    },

    Syrup_Labels = {
        syrup_codeine = 'Promethazine w/ Codeine',
        syrup_tussionex = 'Tussionex',
        syrup_robitussin = 'Robitussin AC',
        syrup_actavis = 'Actavis',
        syrup_hitech = 'Hi-Tech',
    },
}

Last updated