diff --git a/src/AbpDesk/Web_PlugIns/AbpDesk.MongoBlog.dll b/src/AbpDesk/Web_PlugIns/AbpDesk.MongoBlog.dll index 629eb6cda8..9b260304f6 100644 Binary files a/src/AbpDesk/Web_PlugIns/AbpDesk.MongoBlog.dll and b/src/AbpDesk/Web_PlugIns/AbpDesk.MongoBlog.dll differ diff --git a/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/en.json b/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/en.json index 647d3d4e1b..d9583007e9 100644 --- a/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/en.json +++ b/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/en.json @@ -1,6 +1,16 @@ { "culture": "en", "texts": { - "Users": "Users" + "Users": "Users", + "CreateUser": "Create user", + "Actions": "Actions", + "UserName": "User name", + "EmailAddress": "Email address", + "PhoneNumber": "Phone number", + "UserInformations": "User informations", + "Roles": "Roles", + "Close": "Close", + "Save": "Save", + "Password": "Password" } } \ No newline at end of file diff --git a/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/tr.json b/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/tr.json index 31b5bd18fa..e6d7964ca3 100644 --- a/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/tr.json +++ b/src/Volo.Abp.Identity.Web/Areas/Identity/Localization/Resource/tr.json @@ -1,6 +1,16 @@ { "culture": "tr", "texts": { - "Users": "Kullanıcılar" + "Users": "Kullanıcılar", + "CreateUser": "Kullanıcı oluştur", + "Actions": "İşlemler", + "UserName": "Kullanıcı adı", + "EmailAddress": "E-posta adresi", + "PhoneNumber": "Telefon numarası", + "UserInformations": "Kullanıcı bilgileri", + "Roles": "Roller", + "Close": "Kapat", + "Save": "Kaydet", + "Password": "Şifre" } } \ No newline at end of file diff --git a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml index a8de93047d..147f7fd546 100644 --- a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml +++ b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml @@ -20,7 +20,7 @@
@@ -28,10 +28,10 @@ - - - - + + + +
ActionsUsernameEmail AddressPhone Number@Localizer["Actions"]@Localizer["UserName"]@Localizer["EmailAddress"]@Localizer["PhoneNumber"]
diff --git a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/_Create.cshtml b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/_Create.cshtml index f48c141f13..b4fe2ac4d6 100644 --- a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/_Create.cshtml +++ b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/_Create.cshtml @@ -1,7 +1,9 @@ -@model Volo.Abp.Identity.Web.Areas.Identity.Controllers.CreateOrUpdateUserViewModel - +@using Microsoft.Extensions.Localization +@using Volo.Abp.Identity.Web.Areas.Identity.Localization.Resource +@model Volo.Abp.Identity.Web.Areas.Identity.Models.CreateOrUpdateUserViewModel +@inject IStringLocalizer Localizer