Skip to content

Commit

Permalink
Fix Layer translations (#17210)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek authored Dec 10, 2024
1 parent 26ef234 commit d21acb2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</div>

<div class="@Orchard.GetWrapperClasses()" asp-validation-class-for="LayerMetadata.Layer">
<label asp-for="LayerMetadata.Layer" class="@Orchard.GetLabelClasses()">@T["The layer the widget should be associated with."]</label>
<label asp-for="LayerMetadata.Layer" class="@Orchard.GetLabelClasses()">@T["The layer"]</label>
<div class="@Orchard.GetEndClasses()">
<select asp-for="LayerMetadata.Layer" class="form-select">
<option value="">@T["Select a layer"]</option>
Expand All @@ -30,6 +30,7 @@
}
</select>
<span asp-validation-for="LayerMetadata.Layer" class="text-danger"></span>
<span class="hint">@T["The layer controls the visibility of this widget."]</span>
</div>
</div>

Expand Down

0 comments on commit d21acb2

Please sign in to comment.