diff --git a/lib/WebGUI/Content/Setup.pm b/lib/WebGUI/Content/Setup.pm index 5772f2823..d8a909068 100644 --- a/lib/WebGUI/Content/Setup.pm +++ b/lib/WebGUI/Content/Setup.pm @@ -268,7 +268,7 @@ a:visited { color: '.$form->get("visitedLinkColor").'; }
-
©^D(%y); ^c;. All Rights Reserved.
+
©^D(%y); ^c;. ^International(All Rights Reserved);.
@@ -290,21 +290,21 @@ a:visited { color: '.$form->get("visitedLinkColor").'; } my $f = WebGUI::HTMLForm->new($session,action=>$session->url->gateway()); $f->hidden(name=>"step", value=>"7"); $f->hidden(name=>"styleTemplateId", value=>$style->getId); - $f->yesNo(name=>"contactUs",label=>"Contact Us"); - $f->yesNo(name=>"calendar",label=>"Calendar"); - $f->yesNo(name=>"wiki",label=>"Wiki"); - $f->yesNo(name=>"search",label=>"Search"); - $f->yesNo(name=>"aboutUs",label=>"About Us"); + $f->yesNo(name=>"contactUs",label=>$i18n->get('Contact Us')); + $f->yesNo(name=>"calendar",label=>$i18n->get("assetName", 'Asset_Calendar'); + $f->yesNo(name=>"wiki",label=>$i18n->get('assetName', 'Asset_WikiMaster')); + $f->yesNo(name=>"search",label=>$i18n->get("assetName", 'Asset_Search')); + $f->yesNo(name=>"aboutUs",label=>$i18n->get("About Us")); $f->HTMLArea(name=>"aboutUsContent", richEditId=>"PBrichedit000000000002", - value=>"Put your about us content here."); + value=>$i18n->get("Put your about us content here.")); if (isIn("WebGUI::Asset::Wobject::Collaboration", @{$session->config->get("assets")})) { - $f->yesNo(name=>"news",label=>"News"); - $f->yesNo(name=>"forums",label=>"Forums"); + $f->yesNo(name=>"news",label=>$i18n->get(357)); + $f->yesNo(name=>"forums",label=>$i18n->get("Forums")); $f->textarea(name=>"forumNames",subtext=>"One forum name per line", value=>"Support\nGeneral Discussion"); } $f->submit; - $legend = "Initial Pages"; + $legend = $i18n->get("Initial Pages"); $output .= $f->print; } elsif ($session->form->process("step") eq "7") { diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm index 9742dd19b..f99ab6fce 100644 --- a/lib/WebGUI/i18n/English/WebGUI.pm +++ b/lib/WebGUI/i18n/English/WebGUI.pm @@ -4003,6 +4003,42 @@ LongTruncOk=1

context => q{Title for the company information screen in the site starter.}, }, + 'All Rights Reserved' => { + message => q{All Rights Reserved}, + lastUpdated => 0, + context => q{Template label for automatically created Page layouts during Site Setup.}, + }, + + 'Contact Us' => { + message => q{All Rights Reserved}, + lastUpdated => 0, + context => q{Template label for automatically created Page layouts during Site Setup.}, + }, + + 'Initial Pages' => { + message => q{Initial Pages}, + lastUpdated => 0, + context => q{Header for the Site Setup screen}, + }, + + 'Forums' => { + message => q{Initial Pages}, + lastUpdated => 0, + context => q{Label for the Site Setup screen}, + }, + + 'About Us' => { + message => q{About Us}, + lastUpdated => 0, + context => q{Label for the Site Setup screen}, + }, + + 'Put your about us content here' => { + message => q{Put your about us content here}, + lastUpdated => 0, + context => q{Default content for the Site Setup screen}, + }, + }; 1;