Fixing typos

Fixes #6724
This commit is contained in:
David Stone 2016-04-11 23:42:56 +01:00 committed by Sébastien Ros
parent 0e188054c9
commit 652981b835
4 changed files with 11 additions and 11 deletions

View File

@ -45,7 +45,7 @@ There are many ways you can [contribute to Orchard](http://orchardproject.net/co
* [Participate in our gitter.im chatroom](https://gitter.im/OrchardCMS/Orchard)
* [Participate in forum discussions](http://orchard.codeplex.com/discussions)
* [Submit a pull request](http://docs.orchardproject.net/Documentation/Contributing-patches)
* [Translate Orchard](http://orchardproject.net/localize)
* [Translate Orchard](http://orchardproject.net/localization)
* [Contribute modules and themes to our gallery](http://gallery.orchardproject.net/)
* [Send us feedback](mailto:ofeedbk@microsoft.com)

View File

@ -43,7 +43,7 @@
<div class="editor-field">
<label class="forpicker" for="@Html.FieldIdFor(m => m.DefaultValue)">@T("Default value")</label>
@Html.TextBoxFor(m => m.DefaultValue, new { @class = "text large tokenized ui-autocomplete-input" })
<span class="hint">@T("The default value for the field. It must be a number, and if not it will not shown. Make sure to set the Scale property if the value is not an integer. You can use tokens in this field. (optional)")</span>
<span class="hint">@T("The default value for the field. It must be a number, and if not it will not be shown. Make sure to set the Scale property if the value is not an integer. You can use tokens in this field. (optional)")</span>
@Html.ValidationMessageFor(m => m.DefaultValue)
</div>
</fieldset>
</fieldset>

View File

@ -29,7 +29,7 @@
</li>
}
</ul>
@Html.Hint(T("Select wether you want to import the selected recipe into the current site or if you want to do a full site reset first."))
@Html.Hint(T("Select whether you want to import the selected recipe into the current site or if you want to do a full site reset first."))
<div data-controllerid="@String.Format("{0}_{1}", Html.FieldIdFor(m => m.ResetSite), "true")" style="display: none;">
<div class="message message-Warning">@T("This will delete your database tables. Please consider creating a backup first.")</div>
<div>
@ -63,4 +63,4 @@
</fieldset>
stepIndex++;
}
}
}

View File

@ -5,7 +5,7 @@
@{
Style.Include("admin-taxonomy.css");
Script.Require("jQuery");
Script.Require("jQuery");
Script.Include("~/Themes/TheAdmin/scripts/admin.js").AtFoot();
Script.Include("admin-taxonomy-expando.js").AtFoot();
@ -15,12 +15,12 @@
<fieldset class="taxonomy-wrapper" data-name-prefix="@Html.FieldNameFor(m => m)" data-id-prefix="@Html.FieldIdFor(m => m)">
<legend @if(settings.Required) { <text>class="required"</text> }>@Model.DisplayName</legend>
<div class="expando">
@if (!String.IsNullOrWhiteSpace(Model.Settings.Hint)) {
<span class="hint">@Model.Settings.Hint</span>
}
<ul class="terms">
@foreach (var entry in Model.Terms) {
var ti = termIndex;
@ -41,14 +41,14 @@
termIndex++;
}
</ul>
@if (Model.TaxonomyId == 0) {
<p>@T("Your haven't specified a taxonomy for {0}", Model.DisplayName)</p>
<p>@T("You haven't specified a taxonomy for {0}", Model.DisplayName)</p>
}else if (!Model.Terms.Any() && AuthorizedFor(Orchard.Taxonomies.Permissions.CreateTerm)) {
<div class="no-terms">
@T("There are no terms defined for {0} yet.", Model.DisplayName)
<a href="@Url.Action("Index", "TermAdmin", new { taxonomyId = Model.TaxonomyId, area = "Orchard.Taxonomies" })">@T("Create some terms")</a>
</div>
</div>
}
</div>
@Html.HiddenFor(m => m.TaxonomyId)