76 lines
		
	
	
		
			No EOL
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			No EOL
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| Locales = {}
 | |
| 
 | |
| Locales['en'] = {
 | |
|     WEB = {
 | |
|         ['error'] = 'ERROR',
 | |
|         ['success'] = 'SUCCESS',
 | |
|         ['store'] = 'STORE',
 | |
|         ['store_desc'] = 'A small shop where you can buy RC cars',
 | |
|         ['craft'] = 'CRAFT',
 | |
|         ['craft_desc'] = 'Great solutions to customize your RC Vehicles',
 | |
|         ['info'] = 'INFO',
 | |
|         ['vehicle'] = 'Vehicle',
 | |
|         ['item'] = 'Item',
 | |
|         ['speed'] = 'SPEED',
 | |
|         ['control'] = 'CONTROL',
 | |
|         ['brake'] = 'BRAKE',
 | |
|         ['review'] = 'REVIEW',
 | |
|         ['minutes'] = 'MIN',
 | |
|         ['req_res'] = 'REQUIRED ITEMS',
 | |
|         ['price'] = 'PRICE',
 | |
|         ['start'] = 'START',
 | |
|         ['made_in'] = 'Made in USA',
 | |
|         ['suspect_info'] = 'SUSPECT INFORMATION',
 | |
|         ['start_time'] = 'Start Time',
 | |
|         ['recording'] = 'RECORDING',
 | |
|         ['battery'] = 'Battery',
 | |
|         ['distance'] = 'Distance',
 | |
|         ['extensions'] = 'Extensions',
 | |
|         ['grade'] = 'GRADE',
 | |
|         ['current_date'] = 'CURRENT DATE AND TIME',
 | |
|         ['use'] = 'Use',
 | |
|         ['mouse_scroll'] = 'mouse scroll',
 | |
|         ['zoom'] = 'to Zoom in / out',
 | |
|         ['current_location'] = 'CURRENT LOCATION',
 | |
|         ['damage'] = 'Damage',
 | |
|     },
 | |
|     LUA = {
 | |
|         ['no_authorization'] = 'You are not allowed to use this item',
 | |
|         ['already_have_car'] = 'You already have a toy car out',
 | |
|         ['failed_to_load_model'] = 'Failed to load model: %s',
 | |
|         ['vehicle_too_away'] = 'Your vehicle is too far away. Signal is about to be cut...',
 | |
|         ['vehicle_signal_destroyed'] = 'Your vehicle signal has been cut off because it is too far away.',
 | |
|         ['open_store'] = 'Open Store',
 | |
|         ['open_craft'] = 'Open Craft',
 | |
|         ['open_charging_station'] = 'Open Charging Station',
 | |
|         ['no_access'] = 'You do not have enough permission to use this store!',
 | |
|         ['no_battery'] = 'The vehicle does not have enough battery to operate. Change or charge the battery.',
 | |
|         ['engine_broken'] = 'The vehicle engine is broken. You cannot use it without repairing.',
 | |
|         ['manage_vehicle'] = 'Manage Vehicle',
 | |
|         ['vehicle_not_charged'] = 'You do not have a charged vehicle.',
 | |
|         ['vehicle_charge_full'] = 'Your vehicle is fully charged.',
 | |
|         ['charging_station'] = 'Charging Station',
 | |
|         ['charge_vehicle_header'] = 'Charge Vehicle',
 | |
|         ['charge_vehicle_desc'] = 'Charge your vehicle.',
 | |
|         ['battery'] = 'Battery',
 | |
|         ['price'] = 'Price',
 | |
|         ['serie_number'] = 'Serie Number',
 | |
|         ['no_vehicle_found'] = 'No vehicle found.',
 | |
|         ['return_back'] = 'Return Back',
 | |
|         ['check_vehicle_header'] = 'Check Vehicle',
 | |
|         ['check_vehicle_desc'] = 'Check your vehicle.',
 | |
|         ['manage_rc_car'] = 'Manage RC Car',
 | |
|         ['pick_up_vehicle_header'] = 'Pick Up Vehicle',
 | |
|         ['pick_up_vehicle_desc'] = 'End the driving mode by picking up the vehicle.',
 | |
|         ['manage_vehicle_ext_header'] = 'Manage Vehicle Extensions',
 | |
|         ['manage_vehicle_ext_desc'] = 'Manage the plugins on the vehicle!',
 | |
|         ['no_extensions_found'] = 'No extensions found.',
 | |
|         ['add_extension'] = 'Add Extension',
 | |
|         ['remove_extension'] = 'Remove %s Extension',
 | |
|         ['yes'] = 'Yes',
 | |
|         ['no'] = 'No',
 | |
|         ['not_enough_money'] = 'You do not have enough money for this transaction.',
 | |
|         ['open_camera_header'] = 'Open Camera',
 | |
|         ['open_camera_desc'] = 'Open the camera to control the vehicle',
 | |
|     }
 | |
| } | 
