67 lines
		
	
	
		
			No EOL
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			No EOL
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local Translations = {
 | 
						|
    afk = {
 | 
						|
        will_kick = 'You are AFK and will be kicked in ',
 | 
						|
        time_seconds = ' seconds!',
 | 
						|
        time_minutes = ' minute(s)!',
 | 
						|
        kick_message = 'You were kicked for being AFK'
 | 
						|
    },
 | 
						|
    wash = {
 | 
						|
        in_progress = "Vehicle is being washed...",
 | 
						|
        wash_vehicle = "[E] Wash Vehicle",
 | 
						|
        wash_vehicle_target = "Wash Vehicle",
 | 
						|
        dirty = "The vehicle isn't dirty",
 | 
						|
        cancel = "Washing canceled..."
 | 
						|
    },
 | 
						|
    consumables = {
 | 
						|
        eat_progress = "Eating...",
 | 
						|
        drink_progress = "Drinking...",
 | 
						|
        liqour_progress = "Drinking liquor...",
 | 
						|
        coke_progress = "Quick sniff...",
 | 
						|
        crack_progress = "Smoking crack...",
 | 
						|
        ecstasy_progress = "Pops Pills",
 | 
						|
        healing_progress = "Healing",
 | 
						|
        meth_progress = "Smoking Ass Meth",
 | 
						|
        joint_progress = "Lighting joint...",
 | 
						|
        use_parachute_progress = "Putting on parachute...",
 | 
						|
        pack_parachute_progress = "Packing parachute...",
 | 
						|
        no_parachute = "You dont have a parachute!",
 | 
						|
        armor_full = "You already have enough armor on!",
 | 
						|
        armor_empty = "You're not wearing a vest...",
 | 
						|
        armor_progress = "Putting on the body armour...",
 | 
						|
        heavy_armor_progress = "Putting on body armour...",
 | 
						|
        remove_armor_progress = "Removing the body armour...",
 | 
						|
        canceled = "Canceled..."
 | 
						|
    },
 | 
						|
    cruise = {
 | 
						|
        unavailable = "Cruise control unavailable",
 | 
						|
        activated = "Cruise control activated",
 | 
						|
        deactivated = "Cruise control deactivated"
 | 
						|
    },
 | 
						|
    editor = {
 | 
						|
        started = "Started Recording!",
 | 
						|
        save = "Saved Recording!",
 | 
						|
        delete = "Deleted Recording!",
 | 
						|
        editor = "Later aligator!"
 | 
						|
    },
 | 
						|
    firework = {
 | 
						|
        place_progress = "Placing firework...",
 | 
						|
        canceled = "Canceled...",
 | 
						|
        time_left = "Firework launch in ~r~"
 | 
						|
    },
 | 
						|
    seatbelt = {
 | 
						|
        use_harness_progress = "Attaching Race Harness",
 | 
						|
        remove_harness_progress = "Removing Race Harness",
 | 
						|
        no_car = "You're not in a car."
 | 
						|
    },
 | 
						|
    teleport = {
 | 
						|
        teleport_default = 'Use Elevator'
 | 
						|
    },
 | 
						|
    pushcar = {
 | 
						|
        stop_push = "[E] Stop Pushing"
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
Lang = Lang or Locale:new({
 | 
						|
    phrases = Translations,
 | 
						|
    warnOnMissing = true
 | 
						|
}) |