Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8649/mods/easymod
Modified Files:
easymod_install.php lang_easymod.php
Log Message:
- Made a few improvements to the EasyMOD Installer Help.
Index: lang_easymod.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/lang_easymod.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** lang_easymod.php 12 Jun 2005 08:18:34 -0000 1.13
--- lang_easymod.php 15 Jun 2005 02:10:24 -0000 1.14
***************
*** 516,518 ****
--- 516,529 ----
$lang['EM_modio_move_ftpa'] = 'FTP ERROR: could not move file [%s] to [%s]' ;
+ // EasyMOD Installer Help
+ $lang['EM_installer_help'] = 'EasyMOD Installer Help' ;
+ $lang['help']['topic1'][] = '<b>Caption 1</b>' ;
+ $lang['help']['topic1'][] = 'A translatable help could be helpful' ;
+ $lang['help']['topic1'][] = 'When, in lang_easymod.php, a $lang[\'help\'][\'topic\'][] is encountered, the [] means the start of a new paragraph.' ;
+ $lang['help']['topic2'][] = '<b>Caption 2</b>' ;
+ $lang['help']['topic2'][] = 'I think it\'s pretty straightfoward...' ;
+ $lang['help']['topic3'][] = '<b>Caption 3</b>' ;
+ $lang['help']['topic3'][] = 'I also hope someone makes this more relevant' ;
+ $lang['help']['topic3'][] = 'And when you\'re doing this, don\'t forget to modify the templates, if appropriate!' ;
+
?>
\ No newline at end of file
Index: easymod_install.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** easymod_install.php 12 Jun 2005 08:18:24 -0000 1.16
--- easymod_install.php 15 Jun 2005 02:10:24 -0000 1.17
***************
*** 304,311 ****
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
! <td class="catHead" height="28" align="center"><span class="cattitle">EasyMOD Installer Help</span></td>
</tr>
<tr>
! <td class="row1" align="left" valign="top"><span class="postbody"><a name="topic1"></a><b>Ummm...</b> - Still need to write the help ;-)<br /></span></td>
</tr>
<tr>
--- 304,316 ----
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
! <td class="catHead" height="28" align="center"><span class="cattitle"><?=$lang['EM_installer_help'];?></span></td>
</tr>
<tr>
! <td class="row1" align="left" valign="top"><span class="postbody"><?
! while( list($name, $paragraphs) = @each($lang['help']) )
! {
! echo '<a name="' . $name . '" /><p>' . implode('<br />',$paragraphs) . "</p>\n";
! }
! ?></span></td>
</tr>
<tr>
|