mirror of https://github.com/abpframework/abp
#4528 Add GenerateEmbeddedFilesManifest to the module web project
parent
047f8907fa
commit
30611e0b94
@ -1,6 +1,7 @@
|
||||
{
|
||||
"culture": "en",
|
||||
"texts": {
|
||||
"ManageYourProfile": "Manage your profile"
|
||||
"ManageYourProfile": "Manage your profile",
|
||||
"SamplePageMessage": "A sample page for the MyProjectName module"
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"culture": "tr",
|
||||
"texts": {
|
||||
"ManageYourProfile": "Profil yönetimi"
|
||||
"ManageYourProfile": "Profil yönetimi",
|
||||
"SamplePageMessage": "MyProjectName modulünden örnek bir sayfa"
|
||||
}
|
||||
}
|
@ -1,6 +1,9 @@
|
||||
@page
|
||||
@using Microsoft.Extensions.Localization
|
||||
@using MyCompanyName.MyProjectName.Localization
|
||||
@model MyCompanyName.MyProjectName.Web.Pages.MyProjectName.IndexModel
|
||||
@inject IStringLocalizer<MyProjectNameResource> L
|
||||
@{
|
||||
}
|
||||
<h1>MyProjectName</h1>
|
||||
<p>A sample page for the MyProjectName module.</p>
|
||||
<p>@L["SamplePageMessage"]</p>
|
||||
|
Loading…
Reference in new issue