Update of /cvsroot/easymod/easymod/install/em_files/language/lang_english
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29382/em_files/language/lang_english
Modified Files:
lang_easymod.php
Log Message:
- a semi decent error reporting system
- semi decent debug information for installer
- remove trailing white space on the ends of lines, haven't done every file
- some minor bug fixes
Index: lang_easymod.php
===================================================================
RCS file: /cvsroot/easymod/easymod/install/em_files/language/lang_english/lang_easymod.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** lang_easymod.php 9 Dec 2005 23:22:37 -0000 1.3
--- lang_easymod.php 24 Dec 2005 01:43:42 -0000 1.4
***************
*** 1,8 ****
<?php
! /**
*
* @package EasyMOD
* @version $Id$
! * @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License
*
--- 1,8 ----
<?php
! /**
*
* @package EasyMOD
* @version $Id$
! * @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License
*
***************
*** 31,34 ****
--- 31,54 ----
$lang['EM_To'] = 'To';
+ // Errors
+ $lang['EM_Err_warning'] = 'Warning';
+ $lang['EM_Err_warning_explain'] = 'EasyMOD has encountered a warning. Warnings are not critical and EasyMOD can continue to process if there is a warning.';
+ $lang['EM_Err_critical'] = 'Critical Error';
+ $lang['EM_Err_critical_explain'] = 'EasyMOD has encountered a critical error. EasyMOD can not continue to process until the critical error is fixed.';
+ $lang['EM_Err_copy'] = 'Error <strong>copying</strong> files. The file you are trying to copy doesn\'t exist.';
+ $lang['EM_Err_open'] = 'Error <strong>opening</strong> file. The file you are trying to open doesn\'t exist.';
+ $lang['EM_Err_find'] = 'Can not <strong>find</strong> the following code in <strong>%s</strong>.';
+ $lang['EM_Err_before_add'] = 'Error adding the following code <strong>before</strong> the find.';
+ $lang['EM_Err_after_add'] = 'Error adding the following code <strong>after</strong> the find.';
+ $lang['EM_Err_replace_with'] = 'Error <strong>replacing</strong> the find with the following code.';
+ $lang['EM_Err_increment'] = 'Error <strong>incrementing</strong> the code in the find with the following.';
+ $lang['EM_Err_inline_find'] = 'Can not <strong>find</strong> the following code within the previous find in <strong>%s</strong>.';
+ $lang['EM_Err_in_line_before_add'] = 'Can not add the following code <strong>before</strong> the code found within the in-line find previous to this action.';
+ $lang['EM_Err_in_line_after_add'] = 'Can not add the following code <strong>after</strong> the code found within the in-line find previous to this action.';
+ $lang['EM_Err_in_line_replace_with'] = 'Can not the <strong>replace</strong> code within the in-line find previous to this action with the following code.';
+ $lang['EM_Err_executing_sql'] = 'Error <strong>executing</strong> the following sql query.';
+ $lang['EM_Err_mkdir'] = 'Error making directory.';
+ $lang['EM_Err_move'] = 'Error moving file.';
+
// MOD Management
$lang['EM_Install_MODs'] = 'Install MODs';
|