diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-03-05 07:49:58 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-03-05 07:49:58 +0000 |
| commit | 6fd6cde88b0af0681ba223a45cebb0e30f27a280 (patch) | |
| tree | c77b3e914f7a8c0fb0efcf2140d76a258fdf5571 /app/Module/ClippingsCartModule.php | |
| parent | 8c6876aefd0407cf6f2dbb26b33a2e89c1a80cb4 (diff) | |
| download | webtrees-6fd6cde88b0af0681ba223a45cebb0e30f27a280.tar.gz webtrees-6fd6cde88b0af0681ba223a45cebb0e30f27a280.tar.bz2 webtrees-6fd6cde88b0af0681ba223a45cebb0e30f27a280.zip | |
Move help text inline (or remove it)
Diffstat (limited to 'app/Module/ClippingsCartModule.php')
| -rw-r--r-- | app/Module/ClippingsCartModule.php | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/app/Module/ClippingsCartModule.php b/app/Module/ClippingsCartModule.php index 0a917b6f65..cde06851df 100644 --- a/app/Module/ClippingsCartModule.php +++ b/app/Module/ClippingsCartModule.php @@ -175,10 +175,19 @@ class ClippingsCartModule extends Module implements ModuleMenuInterface, ModuleS <input type="hidden" name="pid" value="<?php echo $pid; ?>"> <table> <tr><td colspan="2" class="topbottombar"><h2><?php echo I18N::translate('Download'); ?></h2></td></tr> - <tr><td class="descriptionbox width50 wrap"><?php echo I18N::translate('Zip file(s)'), help_link('zip'); ?></td> - <td class="optionbox"><input type="checkbox" name="Zip" value="yes"></td></tr> - - <tr><td class="descriptionbox width50 wrap"><?php echo I18N::translate('Include media (automatically zips files)'), help_link('include_media'); ?></td> + <tr> + <td class="descriptionbox width50 wrap"> + <?php echo I18N::translate('To reduce the size of the download, you can compress the data into a .ZIP file. You will need to uncompress the .ZIP file before you can use it.'); ?> + </td> + <td class="optionbox wrap"> + <input type="checkbox" name="Zip" value="yes"> + <?php echo I18N::translate('Zip file(s)'); ?> + </td> + </tr> + <tr> + <td class="descriptionbox width50 wrap"> + <?php echo I18N::translate('Include media (automatically zips files)'), help_link('include_media'); ?> + </td> <td class="optionbox"><input type="checkbox" name="IncludeMedia" value="yes"></td></tr> <?php if (WT_USER_GEDCOM_ADMIN) { ?> @@ -562,7 +571,7 @@ class ClippingsCartModule extends Module implements ModuleMenuInterface, ModuleS <input type="hidden" name="action" value="download"> <table> <tr><td colspan="2" class="topbottombar"><h2>'. I18N::translate('Download') . '</h2></td></tr> - <tr><td class="descriptionbox width50 wrap">'. I18N::translate('Zip file(s)') . help_link('zip') . '</td> + <tr><td class="descriptionbox width50 wrap">'. I18N::translate('Zip file(s)') . '</td> <td class="optionbox"><input type="checkbox" name="Zip" value="yes" checked></td></tr> <tr><td class="descriptionbox width50 wrap">'. I18N::translate('Include media (automatically zips files)') . help_link('include_media') . '</td> |
