Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10241/mods/easymod
Modified Files:
easymod_install.php lang_easymod.php
Log Message:
- Fixed a few language errors
- Replaced a few <br>'s with <br />
Index: lang_easymod.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/lang_easymod.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** lang_easymod.php 11 Jun 2005 23:36:52 -0000 1.12
--- lang_easymod.php 12 Jun 2005 08:18:34 -0000 1.13
***************
*** 86,89 ****
--- 86,92 ----
$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.';
// Preview
Index: easymod_install.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** easymod_install.php 11 Jun 2005 23:31:32 -0000 1.15
--- easymod_install.php 12 Jun 2005 08:18:24 -0000 1.16
***************
*** 535,539 ****
////////////
////////////
! echo "<p>Write stuff about checking permissions and how to.</p>\n" ;
form_settings( $hidden, 3, '', true) ;
exit ;
--- 535,539 ----
////////////
////////////
! echo "<p>".$lang['EM_check_permissions']."</p>\n" ;
form_settings( $hidden, 3, '', true) ;
exit ;
***************
*** 569,573 ****
//////// hard coded lang
//////// also... what is the "3" in the error?? should be a defined constant
! echo "<p>Undefined write method.</p>\n" ;
form_settings( $hidden, 3, '', true) ;
exit ;
--- 569,573 ----
//////// hard coded lang
//////// also... what is the "3" in the error?? should be a defined constant
! echo "<p>".$lang['EM_undefined_write']."</p>\n" ;
form_settings( $hidden, 3, '', true) ;
exit ;
***************
*** 752,756 ****
{
/// hard coded lang
! display_error('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.') ;
}
}
--- 752,756 ----
{
/// hard coded lang
! display_error($lang['EM_lang_german']) ;
}
}
|