1<?php 2/** 3 * English language file 4 */ 5 6$lang['locked'] = 'The site is currently locked.'; 7 8$lang['start_btn'] = 'Start'; 9$lang['start_desc'] = 'Runs the maintenance script. The site is automatically locked during the running.'; 10$lang['start_no_script'] = 'The specified maintenance script "%s" does not exist.'; 11$lang['start_fail'] = 'Unable to run the maintenance script "%s".'; 12$lang['start_success'] = 'The maintenance script is running now.'; 13$lang['start_already'] = 'There is already another process running.'; 14 15$lang['stop_btn'] = 'Stop'; 16$lang['stop_desc'] = 'Stops the maintenance script and unlocks the site.'; 17$lang['stop_fail'] = 'Unable to kill the current maintenance script.'; 18$lang['stop_success'] = 'Successfully killed the current maintenance script.'; 19$lang['stop_already'] = 'There is no maintenance script running.'; 20 21$lang['lock_btn'] = 'Lock'; 22$lang['lock_desc'] = 'Locks the site manually.'; 23$lang['lock_fail'] = 'Unable to lock the site.'; 24$lang['lock_success'] = 'Successfully locked the site.'; 25$lang['lock_already'] = 'The site is already locked.'; 26 27$lang['unlock_btn'] = 'Unlock'; 28$lang['unlock_desc'] = 'Unlocks the site manually.'; 29$lang['unlock_fail'] = 'Unable to unlock the site.'; 30$lang['unlock_success'] = 'Successfully unlocked the site.'; 31$lang['unlock_already'] = 'The site is already unlocked.'; 32