From a4aed4e46afd333b5c99881c522bb1e8f0ca7a58 Mon Sep 17 00:00:00 2001 From: kevin_fourie Date: Thu, 26 Jul 2007 10:13:37 +0000 Subject: [PATCH] Merged in from DEV trunk... --- i18n/knowledgeTree.pot | 2 +- plugins/ktcore/folder/BulkImport.php | 2 +- plugins/ktcore/folder/BulkUpload.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/i18n/knowledgeTree.pot b/i18n/knowledgeTree.pot index 2467283..c349190 100644 --- a/i18n/knowledgeTree.pot +++ b/i18n/knowledgeTree.pot @@ -135,7 +135,7 @@ msgstr "" #: plugins/ktcore/folder/BulkImport.php:63 #: plugins/ktcore/folder/BulkUpload.php:70 -msgid "<Please select a document type>" +msgid "- Please select a document type -" msgstr "" #: i18n/templates.c:947 diff --git a/plugins/ktcore/folder/BulkImport.php b/plugins/ktcore/folder/BulkImport.php index af5c024..18866e8 100644 --- a/plugins/ktcore/folder/BulkImport.php +++ b/plugins/ktcore/folder/BulkImport.php @@ -65,7 +65,7 @@ class KTBulkImportFolderAction extends KTFolderAction { $add_fields = array(); $add_fields[] = new KTStringWidget(_kt('Path'), _kt('The path containing the documents to be added to the document management system.'), 'path', "", $this->oPage, true); - $aVocab = array('' => _kt('<Please select a document type>')); + $aVocab = array('' => _kt('- Please select a document type -')); foreach (DocumentType::getListForUserAndFolder($this->oUser, $this->oFolder) as $oDocumentType) { if(!$oDocumentType->getDisabled()) { $aVocab[$oDocumentType->getId()] = $oDocumentType->getName(); diff --git a/plugins/ktcore/folder/BulkUpload.php b/plugins/ktcore/folder/BulkUpload.php index 501ac29..6173270 100644 --- a/plugins/ktcore/folder/BulkUpload.php +++ b/plugins/ktcore/folder/BulkUpload.php @@ -72,7 +72,7 @@ class KTBulkUploadFolderAction extends KTFolderAction { $add_fields = array(); $add_fields[] = new KTFileUploadWidget(_kt('Archive file'), _kt('The archive file containing the documents you wish to add to the document management system.'), 'file', "", $this->oPage, true); - $aVocab = array('' => _kt('<Please select a document type>')); + $aVocab = array('' => _kt('- Please select a document type -')); foreach (DocumentType::getListForUserAndFolder($this->oUser, $this->oFolder) as $oDocumentType) { if(!$oDocumentType->getDisabled()) { $aVocab[$oDocumentType->getId()] = $oDocumentType->getName(); -- libgit2 0.21.4