Commit eead063dceae6163829c36e8bd26702f051401da

Authored by bryndivey
1 parent 3d176676

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
browse.php
... ... @@ -436,8 +436,8 @@ class BrowseDispatcher extends KTStandardDispatcher {
436 436  
437 437 $oWF =& KTWidgetFactory::getSingleton();
438 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 441 'required' => true,
442 442 'name' => 'browse',
443 443 'folder_id' => $oFolder->getId(),
... ...
plugins/ktcore/admin/archivedDocuments.php
... ... @@ -96,8 +96,8 @@ class ArchivedDocumentsDispatcher extends KTAdminDispatcher {
96 96  
97 97 $oWF =& KTWidgetFactory::getSingleton();
98 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 101 'required' => true,
102 102 'name' => 'browse',
103 103 'folder_id' => $oFolder->getId(),
... ...
plugins/ktstandard/KTDocumentLinks.php
... ... @@ -141,8 +141,8 @@ class KTDocumentLinkAction extends KTDocumentAction {
141 141  
142 142 $oWF =& KTWidgetFactory::getSingleton();
143 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 146 'required' => true,
147 147 'name' => 'browse',
148 148 'folder_id' => $oFolder->getId(),
... ...
templates/ktcore/action/mass_move.smarty
... ... @@ -13,13 +13,7 @@
13 13 {if ($documents)}{$documents}{/if}
14 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 16 {$collection->render()}
22   -</div>
23 17  
24 18 <div class="form_actions">
25 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  
10 10 <form method="POST" action="{$smarty.server.PHP_SELF}">
11 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 12 <input type="hidden" name="fFolderId" value="{$folder->getId()}" />
16 13 {foreach from=$collection_breadcrumbs item=breadcrumb name=bc}
17 14 <a href="{$breadcrumb.url}">{$breadcrumb.name}</a>
... ...
templates/ktstandard/action/link.smarty
... ... @@ -6,16 +6,12 @@
6 6 </p>
7 7  
8 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 9 {$collection->render()}
13 10 <div class="form_actions">
14 11 <input type="hidden" name="action" value="type_select" />
15 12 <input type="hidden" name="fDocumentId" value="{$parent->getId()}" />
16 13 <input type="submit" name="submit[move]" value="{i18n}Link{/i18n}" />
17 14 </div>
18   -</fieldset>
19 15 </form>
20 16 {else}
21 17 <div class="ktInfo"><p>
... ...