From 01a72af968b0c224d31cbfdd8c5b1feaacf37376 Mon Sep 17 00:00:00 2001 From: gumbarros Date: Thu, 12 Dec 2024 16:56:45 -0300 Subject: [PATCH] L10N --- src/Core/DataDictionary/Models/ElementBean.cs | 2 +- src/Web/Areas/DataDictionary/Views/Element/Add.cshtml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Core/DataDictionary/Models/ElementBean.cs b/src/Core/DataDictionary/Models/ElementBean.cs index a7893ce2a..140db3def 100644 --- a/src/Core/DataDictionary/Models/ElementBean.cs +++ b/src/Core/DataDictionary/Models/ElementBean.cs @@ -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")] diff --git a/src/Web/Areas/DataDictionary/Views/Element/Add.cshtml b/src/Web/Areas/DataDictionary/Views/Element/Add.cshtml index 7a56c0118..d2d57c6af 100644 --- a/src/Web/Areas/DataDictionary/Views/Element/Add.cshtml +++ b/src/Web/Areas/DataDictionary/Views/Element/Add.cshtml @@ -10,9 +10,9 @@ @{ var backUrl = Url.Action("Index", "Element")!; List 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"]) ]; } @@ -64,8 +64,8 @@
- - + +
}