From be9fff205ecbe0c31c58c3f1f7505f5253009c4c Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 15 Sep 2007 01:27:29 +0000 Subject: [PATCH] bfojcapell: lang folder, and some strings being translated to test i18n (merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41896 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/LeftAndMain.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/LeftAndMain.php b/code/LeftAndMain.php index cafaa9e4..c7cfb069 100644 --- a/code/LeftAndMain.php +++ b/code/LeftAndMain.php @@ -161,9 +161,9 @@ abstract class LeftAndMain extends Controller { // array[2]: The controller class for this menu, used to check permisssions. If blank, it's assumed that this is public, and always shown to // users who have the rights to access some other part of the admin area. $menuSrc = array( - "Site Content" => array("content", "admin/", "CMSMain"), - "Files & Images" => array("files", "admin/assets/", "AssetAdmin"), - "Newsletters" => array("newsletter", "admin/newsletter/", "NewsletterAdmin"), + _(__FILE__,'HELLO',"Site content",PR_HIGH,"Menu title") => array("content", "admin/", "CMSMain"), + _(__FILE__,'FILESIMAGES',"Files & Images",PR_HIGH) => array("files", "admin/assets/", "AssetAdmin"), + _("LeftAndMain",'NEWSLETTERS',"Newsletters") => array("newsletter", "admin/newsletter/", "NewsletterAdmin"), "Reports" => array("report", "admin/reports/", "ReportAdmin"), "Security" => array("security", "admin/security/", "SecurityAdmin"), "Comments" => array("comments", "admin/comments/", "CommentAdmin"),