From a6d804b05da75fc172e4eb164f2ea19f8652039d Mon Sep 17 00:00:00 2001 From: Normann Lou Date: Thu, 14 May 2009 02:10:49 +0000 Subject: [PATCH] BUGFIX: typo by legacy: ViewersGroup -> ViewerGroups, EditorsGroup -> EditorGroups git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@76765 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/SiteTree.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/model/SiteTree.php b/core/model/SiteTree.php index 940ce181b..f7457a1ee 100644 --- a/core/model/SiteTree.php +++ b/core/model/SiteTree.php @@ -1338,8 +1338,8 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid $labels['ShowInMenus'] =_t('SiteTree.SHOWINMENUS', "Show in menus?"); $labels['ShowInSearch'] = _t('SiteTree.SHOWINSEARCH', "Show in search?"); $labels['ProvideComments'] = _t('SiteTree.ALLOWCOMMENTS', "Allow comments on this page?"); - $labels['ViewersGroup'] = _t('SiteTree.GROUP', "Group"); - $labels['EditorsGroup'] = _t('SiteTree.GROUP'); + $labels['ViewerGroups'] = _t('SiteTree.VIEWERGROUPS', "Viewer Groups"); + $labels['EditorGroups'] = _t('SiteTree.EDITORGROUPS', "Editor Groups"); $labels['URLSegment'] = _t('SiteTree.URLSegment', 'URL Segment', PR_MEDIUM, 'URL for this page'); $labels['Content'] = _t('SiteTree.Content', 'Content', PR_MEDIUM, 'Main HTML Content for a page'); $labels['HomepageForDomain'] = _t('SiteTree.HomepageForDomain', 'Hompage for this domain');