MINOR permission name changes

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90332 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Tom Rix 2009-10-28 21:23:08 +00:00
parent 3aaea995e9
commit 2e4581fa6d
2 changed files with 5 additions and 5 deletions

View File

@ -154,7 +154,7 @@ class SiteConfig extends DataObject implements PermissionProvider {
function providePermissions() {
return array(
'EDIT_SITECONFIG' => 'Edit site config details, including top level page permissions'
'EDIT_SITECONFIG' => 'Manage site configuration'
);
}
}

View File

@ -2333,19 +2333,19 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
return array(
'SITETREE_GRANT_ACCESS' => _t(
'SiteTree.PERMISSION_GRANTACCESS_DESCRIPTION',
'Control which groups can access or edit certain pages'
'Manage access rights for content'
),
'SITETREE_VIEW_ALL' => _t(
'SiteTree.VIEW_ALL_DESCRIPTION',
'Can view any page on the site, regardless of the settings on the Access tab'
'View any page'
),
'SITETREE_EDIT_ALL' => _t(
'SiteTree.EDIT_ALL_DESCRIPTION',
'Can edit any page on the site, regardless of the settings on the Access tab'
'Edit any page'
),
'SITETREE_REORGANISE' => _t(
'SiteTree.REORGANISE_DESCRIPTION',
'Can reorganise the site tree'
'Change site structure'
),
);
}