diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/Controller/FamilyController.php | 3 | ||||
| -rw-r--r-- | app/Controller/FanchartController.php | 2 | ||||
| -rw-r--r-- | app/Module/ClippingsCartModule.php | 19 | ||||
| -rw-r--r-- | app/Module/NotesTabModule.php | 3 | ||||
| -rw-r--r-- | app/Module/SourcesTabModule.php | 3 |
5 files changed, 16 insertions, 14 deletions
diff --git a/app/Controller/FamilyController.php b/app/Controller/FamilyController.php index ae3ffcdf98..5f9504ea39 100644 --- a/app/Controller/FamilyController.php +++ b/app/Controller/FamilyController.php @@ -180,14 +180,12 @@ class FamilyController extends GedcomRecordController { echo I18N::translate('Note'); echo '</td><td class="optionbox">'; echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','NOTE');\">", I18N::translate('Add a new note'), '</a>'; - echo help_link('add_note'); echo '</td></tr>'; echo '<tr><td class="descriptionbox">'; echo I18N::translate('Shared note'); echo '</td><td class="optionbox">'; echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','SHARED_NOTE');\">", I18N::translate('Add a new shared note'), '</a>'; - echo help_link('add_shared_note'); echo '</td></tr>'; if ($WT_TREE->getPreference('MEDIA_UPLOAD') >= WT_USER_ACCESS_LEVEL) { @@ -205,7 +203,6 @@ class FamilyController extends GedcomRecordController { echo I18N::translate('Source'); echo '</td><td class="optionbox">'; echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','SOUR');\">", I18N::translate('Add a new source citation'), '</a>'; - echo help_link('add_source'); echo '</td></tr>'; } } diff --git a/app/Controller/FanchartController.php b/app/Controller/FanchartController.php index 56c89e18ba..4ef7da9f34 100644 --- a/app/Controller/FanchartController.php +++ b/app/Controller/FanchartController.php @@ -41,7 +41,7 @@ class FanchartController extends ChartController { // Extract the request parameters $this->fan_style = Filter::getInteger('fan_style', 2, 4, 3); - $this->fan_width = Filter::getInteger('fan_width', 50, 300, 100); + $this->fan_width = Filter::getInteger('fan_width', 50, 500, 100); $this->generations = Filter::getInteger('generations', 2, 9, $default_generations); if ($this->root && $this->root->canShowName()) { 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> diff --git a/app/Module/NotesTabModule.php b/app/Module/NotesTabModule.php index 5128cecf31..0860bb30fb 100644 --- a/app/Module/NotesTabModule.php +++ b/app/Module/NotesTabModule.php @@ -58,7 +58,6 @@ class NotesTabModule extends Module implements ModuleTabInterface { <td colspan="2" class="descriptionbox rela"> <input id="checkbox_note2" type="checkbox" <?php echo $WT_TREE->getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_note2').toggle();"> <label for="checkbox_note2"><?php echo I18N::translate('Show all notes'); ?></label> - <?php echo help_link('show_fact_sources'); ?> </td> </tr> <?php @@ -86,7 +85,6 @@ class NotesTabModule extends Module implements ModuleTabInterface { <a href="#" onclick="add_new_record('<?php echo $controller->record->getXref(); ?>','NOTE'); return false;"> <?php echo I18N::translate('Add a new note'); ?> </a> - <?php echo help_link('add_note'); ?> </td> </tr> <tr> @@ -97,7 +95,6 @@ class NotesTabModule extends Module implements ModuleTabInterface { <a href="#" onclick="add_new_record('<?php echo $controller->record->getXref(); ?>','SHARED_NOTE'); return false;"> <?php echo I18N::translate('Add a new shared note'); ?> </a> - <?php echo help_link('add_shared_note'); ?> </td> </tr> <?php diff --git a/app/Module/SourcesTabModule.php b/app/Module/SourcesTabModule.php index 7d8ff57751..b12fac059f 100644 --- a/app/Module/SourcesTabModule.php +++ b/app/Module/SourcesTabModule.php @@ -57,7 +57,7 @@ class SourcesTabModule extends Module implements ModuleTabInterface { <tr> <td colspan="2" class="descriptionbox rela"> <input id="checkbox_sour2" type="checkbox" <?php echo $WT_TREE->getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_sour2').toggle();"> - <label for="checkbox_sour2"><?php echo I18N::translate('Show all sources'), help_link('show_fact_sources'); ?></label> + <label for="checkbox_sour2"><?php echo I18N::translate('Show all sources'); ?></label> </td> </tr> <?php @@ -83,7 +83,6 @@ class SourcesTabModule extends Module implements ModuleTabInterface { <a href="#" onclick="add_new_record('<?php echo $controller->record->getXref(); ?>','SOUR'); return false;"> <?php echo I18N::translate('Add a new source citation'); ?> </a> - <?php echo help_link('add_source'); ?> </td> </tr> <?php |
