[Easymod-cvs] easymod2/mods/easymod easymod_install.php,1.14,1.15 lang_easymod.php,1.10,1.11
Status: Beta
Brought to you by:
wgeric
From: Eric F. <wg...@us...> - 2005-06-11 23:31:43
|
Update of /cvsroot/easymod/easymod2/mods/easymod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19046/mods/easymod Modified Files: easymod_install.php lang_easymod.php Log Message: - Fixed some language bugs - Added a details page to the history that I wrote a long time ago Index: lang_easymod.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/lang_easymod.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lang_easymod.php 11 Jun 2005 23:05:53 -0000 1.10 --- lang_easymod.php 11 Jun 2005 23:31:32 -0000 1.11 *************** *** 41,44 **** --- 41,57 ---- $lang['EM_installed_desc'] = 'All of these MODs have been installed at one time or another on your board. In later versions you will be able to get more details or uninstall the MODs from here.' ; $lang['EM_install_date'] = 'Installed' ; + $lang['EM_details'] = 'Details'; + $lang['EM_No_mod_selected'] = 'No MOD selected. Please go back and select one.'; + $lang['EM_tables_added'] = 'Tables Added'; + $lang['EM_tables_altered'] = 'Tables Altered'; + $lang['EM_rows_added'] = 'Rows Added'; + $lang['EM_db_alt'] = 'Database Alterations'; + $lang['EM_del_files'] = 'Delete MOD Files'; + $lang['EN_del_record'] = 'Delete MOD Record'; + $lang['EM_install_new_lang'] = 'Install MOD on new languages'; + $lang['EM_install_new_themes'] = 'Install MOD on new themes'; + $lang['EM_restore_backups'] = 'Restore Backups'; + $lang['EM_uninstall'] = 'Uninstall MOD'; + $lang['Comming_soon'] = 'Comming Soon!'; // settings *************** *** 182,185 **** --- 195,200 ---- $lang['EM_see_file_access'] = 'Let\'s see what you have for file access. You do not need everything to read \'ok\'.'; $lang['EN_reinstall_version'] = 'If you are trying to reinstall this version, change the EM version number from the Admin Control Panel under EasyMOD Settings. Or you could also use the EM Version Changer (by GPHemsley) <a href="http://gphemsley.music-hq.net/phpBB/EasyMOD/">here</a>.'; + $lang['EM_simple_mode'] = 'Simple Mode'; + $lang['EM_advanced_mode'] = 'Advanced Mode'; // translate this and I'll hardcode the message into easymod_install.php *************** *** 252,256 **** $lang['EM_step1_simple_header'] = '<strong>Step 1 (gathering settings):</strong> Welcome to the EasyMOD installer. EasyMOD will try to guide you every step of the way. First, we need to know a little about your server.'; $lang['EM_step1_ftp_header'] = '<strong>Step 1 (gathering settings):</strong> You have specified that you have FTP access. Enter your FTP information below.'; ! $lang['EM_step1_password_header'] = '<strong>Step 1 (gathering settings):</strong> EasyMOD takes security very seriously. A password will further restict who has access. If you are using FTP, then a password is required so that your FTP information can safely be crypted into the database.' $lang['EM_server_style'] = 'Server Style'; $lang['EM_about_server'] = 'About your server'; --- 267,271 ---- $lang['EM_step1_simple_header'] = '<strong>Step 1 (gathering settings):</strong> Welcome to the EasyMOD installer. EasyMOD will try to guide you every step of the way. First, we need to know a little about your server.'; $lang['EM_step1_ftp_header'] = '<strong>Step 1 (gathering settings):</strong> You have specified that you have FTP access. Enter your FTP information below.'; ! $lang['EM_step1_password_header'] = '<strong>Step 1 (gathering settings):</strong> EasyMOD takes security very seriously. A password will further restict who has access. If you are using FTP, then a password is required so that your FTP information can safely be crypted into the database.'; $lang['EM_server_style'] = 'Server Style'; $lang['EM_about_server'] = 'About your server'; Index: easymod_install.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** easymod_install.php 11 Jun 2005 23:05:53 -0000 1.14 --- easymod_install.php 11 Jun 2005 23:31:32 -0000 1.15 *************** *** 919,922 **** --- 919,923 ---- $command_file->afile[] = 'copy includes/mod_header.tpl ../../../' . $files[$i]['path'] . 'mod_header.tpl' ; $command_file->afile[] = 'copy includes/mod_history.tpl ../../../' . $files[$i]['path'] . 'mod_history.tpl' ; + $command_file->afile[] = 'copy includes/mod_history_details.tpl ../../../' . $files[$i]['path'] . 'mod_history_details.tpl'; $command_file->afile[] = 'copy includes/mod_install.tpl ../../../' . $files[$i]['path'] . 'mod_install.tpl' ; $command_file->afile[] = 'copy includes/mod_login.tpl ../../../' . $files[$i]['path'] . 'mod_login.tpl' ; |