['garage_created'] = {
title = 'Business',
text = 'You have created a garage',
time = 5000,
type = 'success'
},
['garage_purchased'] = {
title = 'Business',
text = 'You have purchased the garage',
time = 5000,
type = 'success'
},
['garage_already_owned'] = {
title = 'Business',
text = 'You already own this garage',
time = 5000,
type = 'error'
},
['inside_vehicle'] = {
title = 'Garage',
text = 'You can\'t access the garage inside a vehicle',
time = 5000,
type = 'error'
},
['vehicle_not_at_garage'] = {
title = 'Vehicle',
text = "Vehicle is not stored at this garage",
time = 5000,
type = 'error'
},
['vehicle_isnt_stored'] = {
title = 'Garage',
text = 'The vehicle needs to be stored in order to be taken out',
time = 5000,
type = 'info'
},
['vehicle_is_impounded'] = {
title = 'Garage',
text = 'This vehicle is currently impounded',
time = 5000,
type = 'info'
},
['vehicle_is_stolen'] = {
title = 'Garage',
text = 'This vehicle is currently stolen',
time = 5000,
type = 'info'
},
['vehicle_stored'] = {
title = 'Garage',
text = 'The vehicle has been successfully stored',
time = 5000,
type = 'success'
},
['vehicle_repaired'] = {
title = 'Garage',
text = 'The vehicle has been successfully repaired',
time = 5000,
type = 'success'
},
['not_the_owner'] = {
title = 'Garage',
text = 'You are not the owner of this vehicle',
time = 5000,
type = 'error'
},
['vehicle_locked'] = {
title = 'Vehicle',
text = 'Vehicle has been locked',
time = 5000,
type = 'error'
},
|