Skip to content

Commit

Permalink
L10N
Browse files Browse the repository at this point in the history
  • Loading branch information
gumbarros committed Dec 12, 2024
1 parent 6546b9b commit 01a72af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Core/DataDictionary/Models/ElementBean.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace JJMasterData.Core.DataDictionary.Models;

public sealed class ElementBean
{
[Display(Name = "Table Or View Name", Prompt = "Table Or View Name")]
[Display(Name = "Table or View Name", Prompt = "Table or View Name")]
public string Name { get; init; } = null!;

[Display(Name = "Import Fields")]
Expand Down
10 changes: 5 additions & 5 deletions src/Web/Areas/DataDictionary/Views/Element/Add.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
@{
var backUrl = Url.Action("Index", "Element")!;
List<BreadcrumbItem> breadcrumbs = [
new BreadcrumbItem(MasterDataLogo.GetHtmlBuilder(), backUrl),
new BreadcrumbItem(StringLocalizer["Data Dictionary"], backUrl),
new BreadcrumbItem(StringLocalizer["Add Element"])
new(MasterDataLogo.GetHtmlBuilder(), backUrl),
new(StringLocalizer["Data Dictionary"], backUrl),
new(StringLocalizer["Add Element"])
];
}

Expand Down Expand Up @@ -64,8 +64,8 @@

<div class="row">
<div class="col-sm-6">
<link-button icon="SolidXmark" text="Cancel" type="@LinkButtonType.Button" on-client-click="location.href='@backUrl'"/>
<link-button icon="Plus" text="Add" type="LinkButtonType.Submit" color="Primary"/>
<link-button icon="SolidXmark" text="@StringLocalizer["Cancel"]" type="@LinkButtonType.Button" on-client-click="location.href='@backUrl'"/>
<link-button icon="Plus" text="@StringLocalizer["Add"]" type="LinkButtonType.Submit" color="Primary"/>
</div>
</div>
}
Expand Down

0 comments on commit 01a72af

Please sign in to comment.