Commit de5a1a07420dacc342efa0e5aa2cc1c089ef30c4
1 parent
432d60e9
Fix descriptive text around document types
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4855 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
2 additions
and
2 deletions
plugins/ktcore/folder/BulkImport.php
| ... | ... | @@ -33,7 +33,7 @@ class KTBulkImportFolderAction extends KTFolderAction { |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | $fieldOptions = array("vocab" => $aVocab); |
| 36 | - $add_fields[] = new KTLookupWidget(_('Document Type'), 'FIXME', 'fDocumentTypeId', null, $this->oPage, true, "add-document-type", $fieldErrors, $fieldOptions); | |
| 36 | + $add_fields[] = new KTLookupWidget(_('Document Type'), _('Document Types, defined by the administrator, are used to categorise documents. Please select a Document Type from the list below.'), 'fDocumentTypeId', null, $this->oPage, true, "add-document-type", $fieldErrors, $fieldOptions); | |
| 37 | 37 | |
| 38 | 38 | $fieldsets = array(); |
| 39 | 39 | $fieldsetDisplayReg =& KTFieldsetDisplayRegistry::getSingleton(); | ... | ... |
plugins/ktcore/folder/BulkUpload.php
| ... | ... | @@ -47,7 +47,7 @@ class KTBulkUploadFolderAction extends KTFolderAction { |
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | $fieldOptions = array("vocab" => $aVocab); |
| 50 | - $add_fields[] = new KTLookupWidget(_('Document Type'), 'FIXME', 'fDocumentTypeId', null, $this->oPage, true, "add-document-type", $fieldErrors, $fieldOptions); | |
| 50 | + $add_fields[] = new KTLookupWidget(_('Document Type'), _('Document Types, defined by the administrator, are used to categorise documents. Please select a Document Type from the list below.'), 'fDocumentTypeId', null, $this->oPage, true, "add-document-type", $fieldErrors, $fieldOptions); | |
| 51 | 51 | |
| 52 | 52 | $fieldsets = array(); |
| 53 | 53 | $fieldsetDisplayReg =& KTFieldsetDisplayRegistry::getSingleton(); | ... | ... |