Commit a1af6d64774fc8c5b903677eeedfc710f9ca9df7
1 parent
652491e9
Fixed text on existing collection widgets
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5912 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
6 changed files
with
6 additions
and
19 deletions
browse.php
| @@ -436,8 +436,8 @@ class BrowseDispatcher extends KTStandardDispatcher { | @@ -436,8 +436,8 @@ class BrowseDispatcher extends KTStandardDispatcher { | ||
| 436 | 436 | ||
| 437 | $oWF =& KTWidgetFactory::getSingleton(); | 437 | $oWF =& KTWidgetFactory::getSingleton(); |
| 438 | $oWidget = $oWF->get('ktcore.widgets.collection', | 438 | $oWidget = $oWF->get('ktcore.widgets.collection', |
| 439 | - array('label' => _kt('Browse'), | ||
| 440 | - 'description' => _kt('Select something'), | 439 | + array('label' => _kt('Target Folder'), |
| 440 | + 'description' => _kt('Use the folder collection and path below to browse to the folder you wish to move the documents into.'), | ||
| 441 | 'required' => true, | 441 | 'required' => true, |
| 442 | 'name' => 'browse', | 442 | 'name' => 'browse', |
| 443 | 'folder_id' => $oFolder->getId(), | 443 | 'folder_id' => $oFolder->getId(), |
plugins/ktcore/admin/archivedDocuments.php
| @@ -96,8 +96,8 @@ class ArchivedDocumentsDispatcher extends KTAdminDispatcher { | @@ -96,8 +96,8 @@ class ArchivedDocumentsDispatcher extends KTAdminDispatcher { | ||
| 96 | 96 | ||
| 97 | $oWF =& KTWidgetFactory::getSingleton(); | 97 | $oWF =& KTWidgetFactory::getSingleton(); |
| 98 | $oWidget = $oWF->get('ktcore.widgets.collection', | 98 | $oWidget = $oWF->get('ktcore.widgets.collection', |
| 99 | - array('label' => _kt('Browse'), | ||
| 100 | - 'description' => _kt('Select something'), | 99 | + array('label' => _kt('Target Documents'), |
| 100 | + 'description' => _kt('Use the folder collection and path below to browse to the folder containing the documents you wish to restore.'), | ||
| 101 | 'required' => true, | 101 | 'required' => true, |
| 102 | 'name' => 'browse', | 102 | 'name' => 'browse', |
| 103 | 'folder_id' => $oFolder->getId(), | 103 | 'folder_id' => $oFolder->getId(), |
plugins/ktstandard/KTDocumentLinks.php
| @@ -141,8 +141,8 @@ class KTDocumentLinkAction extends KTDocumentAction { | @@ -141,8 +141,8 @@ class KTDocumentLinkAction extends KTDocumentAction { | ||
| 141 | 141 | ||
| 142 | $oWF =& KTWidgetFactory::getSingleton(); | 142 | $oWF =& KTWidgetFactory::getSingleton(); |
| 143 | $oWidget = $oWF->get('ktcore.widgets.collection', | 143 | $oWidget = $oWF->get('ktcore.widgets.collection', |
| 144 | - array('label' => _kt('Browse'), | ||
| 145 | - 'description' => _kt('Select something'), | 144 | + array('label' => _kt('Target Document'), |
| 145 | + 'description' => _kt('Use the folder collection and path below to browse to the document you wish to link to.'), | ||
| 146 | 'required' => true, | 146 | 'required' => true, |
| 147 | 'name' => 'browse', | 147 | 'name' => 'browse', |
| 148 | 'folder_id' => $oFolder->getId(), | 148 | 'folder_id' => $oFolder->getId(), |
templates/ktcore/action/mass_move.smarty
| @@ -13,13 +13,7 @@ | @@ -13,13 +13,7 @@ | ||
| 13 | {if ($documents)}{$documents}{/if} | 13 | {if ($documents)}{$documents}{/if} |
| 14 | </div> | 14 | </div> |
| 15 | 15 | ||
| 16 | -<div class="field "> | ||
| 17 | -<label for="fFolderId">{i18n}Target folder{/i18n}</label> | ||
| 18 | -<p class="descriptiveText">{i18n}Use the folder collection and path below to | ||
| 19 | -browse to the folder you wish to move the documents into.{/i18n}</p> | ||
| 20 | - | ||
| 21 | {$collection->render()} | 16 | {$collection->render()} |
| 22 | -</div> | ||
| 23 | 17 | ||
| 24 | <div class="form_actions"> | 18 | <div class="form_actions"> |
| 25 | <input type="submit" name="submit[move]" value="{i18n}Move{/i18n}" /> | 19 | <input type="submit" name="submit[move]" value="{i18n}Move{/i18n}" /> |
templates/ktcore/document/admin/archivebrowse.smarty
| @@ -9,9 +9,6 @@ notification to you.{/i18n} | @@ -9,9 +9,6 @@ notification to you.{/i18n} | ||
| 9 | 9 | ||
| 10 | <form method="POST" action="{$smarty.server.PHP_SELF}"> | 10 | <form method="POST" action="{$smarty.server.PHP_SELF}"> |
| 11 | <input type="hidden" name="action" value="confirm_restore" /> | 11 | <input type="hidden" name="action" value="confirm_restore" /> |
| 12 | -<p class="descriptiveText">{i18n}Use the folder collection and path below to | ||
| 13 | -browse to the folder containing the documents you wish to restore.{/i18n}</p> | ||
| 14 | - | ||
| 15 | <input type="hidden" name="fFolderId" value="{$folder->getId()}" /> | 12 | <input type="hidden" name="fFolderId" value="{$folder->getId()}" /> |
| 16 | {foreach from=$collection_breadcrumbs item=breadcrumb name=bc} | 13 | {foreach from=$collection_breadcrumbs item=breadcrumb name=bc} |
| 17 | <a href="{$breadcrumb.url}">{$breadcrumb.name}</a> | 14 | <a href="{$breadcrumb.url}">{$breadcrumb.name}</a> |
templates/ktstandard/action/link.smarty
| @@ -6,16 +6,12 @@ | @@ -6,16 +6,12 @@ | ||
| 6 | </p> | 6 | </p> |
| 7 | 7 | ||
| 8 | <form method="POST" action="{$smarty.server.PHP_SELF}"> | 8 | <form method="POST" action="{$smarty.server.PHP_SELF}"> |
| 9 | -<p class="descriptiveText">{i18n}Use the folder collection and path below to | ||
| 10 | -browse to the document you wish to link to.{/i18n}</p> | ||
| 11 | - | ||
| 12 | {$collection->render()} | 9 | {$collection->render()} |
| 13 | <div class="form_actions"> | 10 | <div class="form_actions"> |
| 14 | <input type="hidden" name="action" value="type_select" /> | 11 | <input type="hidden" name="action" value="type_select" /> |
| 15 | <input type="hidden" name="fDocumentId" value="{$parent->getId()}" /> | 12 | <input type="hidden" name="fDocumentId" value="{$parent->getId()}" /> |
| 16 | <input type="submit" name="submit[move]" value="{i18n}Link{/i18n}" /> | 13 | <input type="submit" name="submit[move]" value="{i18n}Link{/i18n}" /> |
| 17 | </div> | 14 | </div> |
| 18 | -</fieldset> | ||
| 19 | </form> | 15 | </form> |
| 20 | {else} | 16 | {else} |
| 21 | <div class="ktInfo"><p> | 17 | <div class="ktInfo"><p> |