Update of /cvsroot/easymod/easymod2/mods/easymod/language
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29836/mods/easymod/language
Modified Files:
lang_easymod_english.php
Log Message:
- Added some stuff to lang_easymod_english.php
- Removed a line that was no longer needed for -=ET=-'s modification.
Index: lang_easymod_english.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/language/lang_easymod_english.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** lang_easymod_english.php 20 Jun 2005 22:17:41 -0000 1.1
--- lang_easymod_english.php 21 Jun 2005 05:30:10 -0000 1.2
***************
*** 96,100 ****
$lang['EM_support_thread'] = 'Support' ;
$lang['EM_EMC'] = 'EMC' ;
- $lang['EM_lang_german'] = 'The file language/lang_german/lang_admin.php was not found. Do you have the German language pack installed? If not, then you should simply delete the language/lang_german directory and all the files inside of it. This problem is frequently caused by the popular Attachment MOD which can create a lang_german folder regardless of whether the language is present or not. If this is not the case, then visit our support forum for more help.';
$lang['EM_undefined_write'] = 'Undefined write method.';
$lang['EM_check_permissions'] = 'Write stuff about checking permissions and how to.';
--- 96,99 ----
***************
*** 180,183 ****
--- 179,200 ----
$lang['EM_rows_added'] = 'Rows Added';
+ // EasyMOD sql errors
+ $lang['EM_Unable_to_parse'] = '<b>FATAL ERROR</b>: Unable to parse SQL statement; ';
+ $lang['EM_malformed_type'] = 'malformed type length in field near';
+ $lang['EM_unmatched_NOT'] = 'unmatched NOT in field near';
+ $lang['EM_missing_DEFAULT'] = 'missing DEFAULT value in field near';
+ $lang['EM_not_enough'] = 'not enough parameters to parse column.';
+ $lang['EM_improper_key'] = 'improperly formated key';
+ $lang['EM_type_invalid'] = 'type %s invalid';
+ $lang['EM_length_invalid'] = 'length %s invalid';
+ $lang['EM_malformed_DROP'] = 'malformed DROP action';
+ $lang['EM_malformed_DROP2'] = 'malformed DROP statement, too many attributes.';
+ $lang['EM_postgresql_ABORTED'] = "ABORTED: [%d]<br /> Dropping a field in postgresql was not implemented. Contact Nuttzy if you know how to safely do this without having to drop the whole table.";
+ $lang['EM_malformed_sql'] = 'malformed SQL, no target defined';
+ $lang['EM_type_unknown'] = 'type \'%s\' unknown.';
+ $lang['EM_subaction_unknown'] = 'subaction \'%s\' unknown.';
+ $lang['EM_unknown_action'] = 'action \'%s\' unknown.';
+ $lang['EM_SQL_line'] = 'SQL Line:';
+
// post process
$lang['EM_pp_step3'] = 'Step 3 of 3' ;
|