diff --git a/browse.php b/browse.php index 4563678..209b7be 100755 --- a/browse.php +++ b/browse.php @@ -149,7 +149,7 @@ class BrowseDispatcher extends KTStandardDispatcher { $this->resultURL = KTUtil::addQueryString($_SERVER['PHP_SELF'], sprintf("fFolderId=%d", $oFolder->getId())); // and the portlets - $portlet = new KTActionPortlet(sprintf(_kt('Info about this folder'))); + $portlet = new KTActionPortlet(sprintf(_kt('About this folder'))); $aActions = KTFolderActionUtil::getFolderInfoActionsForFolder($this->oFolder, $this->oUser); $portlet->setActions($aActions,$this->sName); $this->oPage->addPortlet($portlet); diff --git a/plugins/ktcore/KTPortlets.php b/plugins/ktcore/KTPortlets.php index 46cf0b3..8e57973 100644 --- a/plugins/ktcore/KTPortlets.php +++ b/plugins/ktcore/KTPortlets.php @@ -71,7 +71,7 @@ class KTBrowseModePortlet extends KTPortlet { function KTBrowseModePortlet($sTitle = null) { // match empty, false. if ($sTitle == null) { - $sTitle = _kt('Browse Documents By'); + $sTitle = _kt('Browse documents by...'); } parent::KTPortlet($sTitle); }