diff --git a/code/Model/SiteTree.php b/code/Model/SiteTree.php index 5f7556d61d..74d583e60c 100755 --- a/code/Model/SiteTree.php +++ b/code/Model/SiteTree.php @@ -1599,7 +1599,7 @@ public function requireDefaultRecords() if (!SiteTree::get_by_link($defaultHomepage)) { $homepage = new Page(); $homepage->Title = _t(__CLASS__.'.DEFAULTHOMETITLE', 'Home'); - $homepage->Content = _t(__CLASS__.'.DEFAULTHOMECONTENT', '
Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.
You can now access the developer documentation, or begin the SilverStripe lessons.
'); + $homepage->Content = _t(__CLASS__.'.DEFAULTHOMECONTENT2', 'Welcome to Silverstripe! This is the default homepage. You can edit this page by opening the CMS.
For comprehensive information on Silverstripe CMS, see the developer documentation.
'); $homepage->URLSegment = $defaultHomepage; $homepage->Sort = 1; $homepage->write(); diff --git a/lang/en.yml b/lang/en.yml index 610afc91f6..cf415ee713 100644 --- a/lang/en.yml +++ b/lang/en.yml @@ -195,6 +195,7 @@ en: DEFAULTCONTACTCONTENT: 'You can fill this page out with your own content, or delete it and create your own pages.
' DEFAULTCONTACTTITLE: 'Contact Us' DEFAULTHOMECONTENT: 'Welcome to SilverStripe! This is the default homepage. You can edit this page by opening the CMS.
You can now access the developer documentation, or begin the SilverStripe lessons.
' + DEFAULTHOMECONTENT2: 'Welcome to Silverstripe! This is the default homepage. You can edit this page by opening the CMS.
For comprehensive information on Silverstripe CMS, see the developer documentation.
' DEFAULTHOMETITLE: Home DEPENDENT_NOTE: 'The following pages depend on this page. This includes virtual pages, redirector pages, and pages with content links.' DESCRIPTION: 'Generic content page'