Making the rest of the copy on the admin dashboard localizable.

work item: 17724

--HG--
branch : 1.x
This commit is contained in:
Nathan Heskew
2011-05-09 11:01:15 -07:00
parent b059bdfa6e
commit d3f31eb116

View File

@@ -1,32 +1,36 @@
@model dynamic
@{ Layout.Title = T("Welcome to Orchard").ToString(); }
<section class="dashboard group">
<div class="help-item">
<h2 class="start">Get up and running.</h2>
<p>Start by exploring the menu on the left and familiarize yourself with Orchard.
As for the basics, we suggest @Html.ActionLink(T("changing the theme").ToString(), "Index", "Admin", new { area = "Orchard.Themes" }, null), @Html.ActionLink(T("adding some pages").ToString(), "Create", "Admin", new { area = "Contents", id = "Page" }, null), @Html.ActionLink(T("setup up a blog").ToString(), "Create", "BlogAdmin", new { area = "Orchard.Blogs" }, null),
and @Html.ActionLink(T("configuring basic settings").ToString(), "Index", "Admin", new { area = "Settings", groupInfoId = "Index" }, null).</p>
<h2 class="start">@T("Get up and running")</h2>
<p>@T(@"Start by exploring the menu on the left and familiarize yourself with Orchard. As for the basics, we suggest <a href=""{0}"">changing the theme</a>, <a href=""{1}"">adding some pages</a>, <a href=""{2}"">setup up a blog</a>, and <a href=""{3}"">configuring basic settings</a>.",
Url.Action("Index", "Admin", new { area = "Orchard.Themes" }),
Url.Action("Create", "Admin", new { area = "Contents", id = "Page" }),
Url.Action("Create", "BlogAdmin", new { area = "Orchard.Blogs" }),
Url.Action("Index", "Admin", new { area = "Settings", groupInfoId = "Index" }))</p>
</div>
<div class="help-item">
<h2 class="gallery">Get more goodies.</h2>
<p>Change the way your site works and looks with @Html.ActionLink(T("themes").ToString(), "Themes", "Gallery", new { area = "Orchard.Packaging" }, null) and @Html.ActionLink(T("modules").ToString(), "Modules", "Gallery", new { area = "Orchard.Packaging" }, null). Theres plenty to choose from in the <a href="http://orchardproject.net/gallery" target="_blank">Orchard Gallery</a>. Were always adding things, so be sure to check back often to see whats new.</p>
<h2 class="gallery">@T("Get more goodies")</h2>
<p>@T(@"Change the way your site works and looks with <a href=""{0}"">themes</a> and <a href=""{1}"">modules</a>. Theres plenty to choose from in the <a href=""http://orchardproject.net/gallery"">Orchard Gallery</a>. Were always adding things, so be sure to check back often to see whats new.",
Url.Action("Themes", "Gallery", new { area = "Orchard.Packaging" }),
Url.Action("Modules", "Gallery", new { area = "Orchard.Packaging" }))
</p>
</div>
<div class="help-item">
<h2 class="docs">Read the Docs.</h2>
<p>Are you ready to go deeper and become an Orchard expert? Take a look at the <a href="http://orchardproject.net/docs/" target="_blank">Orchard Documentation Wiki</a> to learn about how everything connects together and what makes Orchard tick.</p>
<h2 class="docs">@T("Read the Docs")</h2>
<p>@T(@"Are you ready to go deeper and become an Orchard expert? Take a look at the <a href=""http://orchardproject.net/docs/"">Orchard Documentation Wiki</a> to learn about how everything connects together and what makes Orchard tick.")</p>
</div>
<div class="help-item">
<h2 class="friends">Make friends.</h2>
<p>Find friends that share your interest of Orchard. There are a couple ways that you can <a href="http://orchardproject.net/discussions" target="_blank">discuss and get connected</a> to the project including mailing lists, forums and IRC.</p>
<h2 class="friends">@T("Make friends")</h2>
<p>@T(@"Find friends that share your interest of Orchard. There are a couple ways that you can <a href=""http://orchardproject.net/discussions"">discuss and get connected</a> to the project including mailing lists, forums and IRC.")</p>
</div>
<div class="help-item">
<h2 class="contribute">Contribute back.</h2>
<p>Help grow Orchard. We encourage contributions of all sorts, including code submissions, documentation, translations, feature recommendations, and more.Here are some ways to <a href="http://orchardproject.net/contribution" target="_blank">give back to the project</a>.</p>
<h2 class="contribute">@T("Contribute back")</h2>
<p>@T(@"Help grow Orchard. We encourage contributions of all sorts, including code submissions, documentation, translations, feature recommendations, and more.Here are some ways to <a href=""http://orchardproject.net/contribution"">give back to the project</a>.")</p>
</div>
<div class="help-item">
<h2 class="advisory">@T("Stay up to date.")</h2>
<h2 class="advisory">@T("Stay up to date")</h2>
<iframe id="advisory" src="http://www.orchardproject.net/advisory" frameborder="0" height="100%" width="100%" scrolling="no">
<p>@T("Your browser does not support iframes. You can't see advisory messages.")</p>
</iframe>