76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
$lang = [
 | 
						|
	//Menu
 | 
						|
	'm_home' => 'Home',
 | 
						|
	'm_dashboard' => 'Dashboard',
 | 
						|
	'm_settings' => 'Setting',
 | 
						|
	'm_automatization' => 'Automatization',
 | 
						|
	'm_scenes' => 'Scenes',
 | 
						|
 | 
						|
	//Buttons
 | 
						|
	'b_year' => 'Year',
 | 
						|
	'b_month' => 'Month',
 | 
						|
	'b_week' => 'Week',
 | 
						|
	'b_day' => 'Day',
 | 
						|
	'b_hour' => 'Hour',
 | 
						|
	'b_next' => 'Next',
 | 
						|
	'b_create' => 'Create',
 | 
						|
	'b_edit' => 'Edit',
 | 
						|
	'b_remove' => 'Remove',
 | 
						|
	'b_approve' => 'Approve',
 | 
						|
	'b_disable' => 'Disable',
 | 
						|
	'b_save' => 'Save',
 | 
						|
 | 
						|
 | 
						|
	//labels
 | 
						|
	'l_choseDevice' => 'Chose device:',
 | 
						|
	'l_inHome' => 'When entering',
 | 
						|
	'l_outHome' => 'When exiting',
 | 
						|
	'l_sunSet' => 'Sun Set',
 | 
						|
	'l_sunRice' => 'Sun Rise',
 | 
						|
	'l_time' => 'Time',
 | 
						|
	'l_deviceValue' => 'Device Valalue',
 | 
						|
	'l_runAt' => 'Run at',
 | 
						|
	'l_resetAt' => 'Reset at',
 | 
						|
	'l_affectedDevices' => 'Affected devices',
 | 
						|
	'l_atDays' => 'At days',
 | 
						|
	'l_read' => 'Read',
 | 
						|
	'l_use' => 'Use',
 | 
						|
	'l_edit' => 'Edit',
 | 
						|
	'l_owner' => 'Owner',
 | 
						|
	'l_member' => 'Home Member',
 | 
						|
	'l_permission' => 'Permission',
 | 
						|
	'l_inMinutes' => 'in minutes',
 | 
						|
	'l_sleepTime' => 'Device sleep Time',
 | 
						|
 | 
						|
	//Title
 | 
						|
	't_createScene' => 'Create Scene',
 | 
						|
	't_editScene' => 'Edit scénu',
 | 
						|
 | 
						|
	't_createAutomation' => 'Create Automation',
 | 
						|
 | 
						|
	't_editDevice' => 'Edit Device',
 | 
						|
 | 
						|
	//constants
 | 
						|
	'humi' => 'Humidity',
 | 
						|
	'temp' => 'Temperature',
 | 
						|
	'light' => 'Light',
 | 
						|
	'battery' => 'Batteri',
 | 
						|
	'on/off' => 'Switch',
 | 
						|
 | 
						|
	//words
 | 
						|
	'w_title' => 'Name',
 | 
						|
	'w_icon' => 'Icon',
 | 
						|
	'w_no' => 'no',
 | 
						|
	'w_noOne' => 'noone',
 | 
						|
	'w_someOne' => 'Some',
 | 
						|
	'w_room' => 'Room',
 | 
						|
	'w_moduls' => 'Moduls',
 | 
						|
	'w_home' => 'Home',
 | 
						|
	'w_neni' => 'At',
 | 
						|
	'w_is' => 'is',
 | 
						|
 | 
						|
	//example
 | 
						|
	'' => '',
 | 
						|
];
 |