[Easymod-cvs] easymod2/mods/easymod lang_easymod.php,1.6,1.7
Status: Beta
Brought to you by:
wgeric
From: Brendan K. <bk...@us...> - 2005-06-03 22:59:21
|
Update of /cvsroot/easymod/easymod2/mods/easymod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10447/mods/easymod Modified Files: lang_easymod.php Log Message: Working through the hardcoded langauge vars. Hope everythings ok ;) Index: lang_easymod.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/lang_easymod.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lang_easymod.php 8 May 2005 03:04:19 -0000 1.6 --- lang_easymod.php 3 Jun 2005 22:59:13 -0000 1.7 *************** *** 60,63 **** --- 60,66 ---- $lang['EM_pass_updated'] = '(EM password updated)' ; $lang['EM_pass_not_updated'] = '(EM password not updated)' ; + $lang['EM_supply_on_change'] = 'Only supply if you want to change it'; + $lang['EM_emv_description'] = 'If you need to reinstall EM, then you might need to change the version. You can do so here.'; + $lang['EM_easymod_version'] = 'EasyMOD Version'; // EasyMOD install *************** *** 99,102 **** --- 102,106 ---- $lang['EM_proc_failed'] = 'Installation Failed' ; $lang['EM_proc_failed_desc'] = 'EasyMOD encountered the following error(s). A general error could be ABC. A critical error means D and you should do XYZ.' ; + $lang['EM_text_depend_move'] = 'THIS TEXT WILL DEPEND ON MOVE METHOD'; // process + post process *************** *** 115,118 **** --- 119,150 ---- $lang['EM_Perform'] = 'Perform DB alterations' ; $lang['EM_complete_install'] = 'Complete Installation' ; + $lang['EM_proposed_alterations'] = 'Proposed Database Alterations for your %s Database'; + $lang['EM_sql_intro_explain'] = 'EasyMOD will now make changes to your database if you command it to. Any SQL with a check next to it will be performed by EM. If you are reinstalling a MOD, you probably <b>do not</b> want to run the SQL a second time, <b>so be careful!</b><br><br><b>Official Warning:</b> This is a DUMB process. Commands you check off will be executed but EM does NOT check to seeif these changes will negatively impact your database. You are STRONGLY advised to <b>backup your database</b> before makingany changes. Prior to executing, you are advised to examine each command thoroughly or ask for feedback from experienced MOD installers. Again, if you are reinstalling a MOD, multiple executions of the same SQL lines could adversely effect your database.'; + $lang['EM_sql_error'] = 'SQL ERROR'; + $lang['EM_not_attempted'] = 'Not Attempted'; + $lang['EM_success'] = 'Success'; + $lang['EM_skipped'] = 'Skipped'; + $lang['EM_processing_results'] = 'SQL Processing Results'; + $lang['EM_sql_attempted'] = 'The following SQL was attempted:'; + $lang['EM_all_lines_successfull'] = 'ALL LINES EXECUTED SUCCESSFULLY'; + $lang['EM_errors_detected'] = 'ERRORS DETECTED'; + $lang['EM_failed'] = 'FAILED'; + $lang['EM_line_results'] = 'The following is the result for each line of SQL executed.'; + $lang['EM_sql_error_explain'] = 'An error was encountered while processing the SQL commands. Further SQL processing has been halted. You may choose to complete the MOD installation anyway and perform the SQL commands manually yourself. However, at this point EM cannot guarantee the MOD will work correctly so you are best off seeking support from the Author before continuing further.'; + $lang['EM_sql_halted'] = 'SQL PROCESSING HALTED'; + $lang['EM_sql_process_error'] = 'SQL PROCESSING ERROR'; + $lang['EM_failed_line'] = 'The failed line was'; + $lang['EM_no_sql_preformed'] = 'No SQL alterations will be performed.</b> However, you may skip SQL processing, continue installing the MOD, and deal with the SQL manually'; + $lang['EM_following_error'] = 'The following error occured'; + $lang['EM_no_sql'] = 'No SQL to process. Click \'Complete Installation\' to proceed.'; + $lang['EM_notice'] = 'Notice'; + $lang['EM_urgent_warning'] = 'URGENT WARNING'; + $lang['EM_sql_drop_warning'] = 'SQL commands for dropping either a column or an entire table have been detected. Although these commands may be legitamate, you should double check that you want this. Dropping a table or column is irreversable. You are strongly urged to backup your database before proceeding even if the commands are legitamate!'; + $lang['EM_sql_msaccess_warning'] = 'You have a MS Access database. EM should perform most SQL properly for Access. However, when creating tables or adding columns there is no way to assign default values. You will have to do this manually in Access. Without default values, the MOD may not function as intended and the consequences could be severe. If you know how to automate this, be sure to contact us!'; + $lang['EM_experimental_explain'] = 'You have a %s database. Most likely EM isn\'t generating the SQL properly. The reason is simply because we don\'t know what it is supposed to look like. If you know what the SQL should look like, please let us know in <a href="%s" target="_sql">this topic</a>. Otherwise just expect that maybe this won\'t work so well ;-)'; + $lang['EM_database_alterations'] = 'Database Alterations'; + $lang['EM_tables_added'] = 'Tables Added'; + $lang['EM_tables_altered'] = 'Tables Altered'; + $lang['EM_rows_added'] = 'Rows Added'; // post process |