BUGFIX Fixed menu titles entity references in CMSMain and AssetAdmin

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65104 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2008-11-02 22:45:05 +00:00
parent 2cdf57053f
commit e1d5fc9db6
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class AssetAdmin extends LeftAndMain {
);
public function getMenuTitle() {
return _t('LeftAndMain.ASSETS', 'Files & Images', PR_HIGH, 'Menu title');
return _t('LeftAndMain.FILESIMAGES', 'Files & Images', PR_HIGH, 'Menu title');
}
/**

View File

@ -103,7 +103,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
}
public function getMenuTitle() {
return _t('LeftAndMain.CMSMAIN', 'Site Content', PR_HIGH, 'Menu title');
return _t('LeftAndMain.SITECONTENT', 'Site Content', PR_HIGH, 'Menu title');
}
/**