-
ABP Framework version: v4.3.3
-
UI type: Angular
-
DB provider: EF Core
-
Tiered (MVC) or Identity Server Separated (Angular):no
Hi support,
I have 2 question:
-
I am authorized to everything, but I cannot see the buttons related to the actions. -
How can I translate the red area into Turkish? I could not find the localization key information.
Our login screen is the custom login page.
Thanks your answer.
6 Answer(s)
-
0
I am authorized to everything, but I cannot see the buttons related to the actions.
Can you confim your current user permissions?
Our login screen is the custom login page.
Please share your code of login page.
-
0
Hi,
About question 1:
For now, you can try:
Find
default-language-texts-entity-actions.ts
and replaceLanguageManagement.Languages.Edit
toLanguageManagement.LanguageTexts.Edit
-
0
Hi @maliming
using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Identity; using Microsoft.Extensions.Options; using Owl.reCAPTCHA; using Volo.Abp.Account.ExternalProviders; using Volo.Abp.Account.Public.Web; using Volo.Abp.Account.Public.Web.Pages.Account; using Volo.Abp.Account.Security.Recaptcha; using Volo.Abp.Security.Claims; namespace AbpView.Pages.Account { public class CustomLoginModel : LoginModel { public CustomLoginModel(IAuthenticationSchemeProvider schemeProvider, IOptions accountOptions, IAbpRecaptchaValidatorFactory recaptchaValidatorFactory, IAccountExternalProviderAppService accountExternalProviderAppService, ICurrentPrincipalAccessor currentPrincipalAccessor, IOptions identityOptions, IOptionsSnapshot reCaptchaOptions) : base(schemeProvider, accountOptions, recaptchaValidatorFactory, accountExternalProviderAppService, currentPrincipalAccessor,identityOptions,reCaptchaOptions) { } } }
@page @using Microsoft.AspNetCore.Mvc.Localization @using Volo.Abp.Account.Localization @using Volo.Abp.Account.Settings @using Volo.Abp.Settings @model AbpView.Pages.Account.CustomLoginModel @inject IHtmlLocalizer L @inject Volo.Abp.Settings.ISettingProvider SettingProvider @using Microsoft.Extensions.Configuration @inject IConfiguration Configuration
@L["Login"]
@if (await SettingProvider.IsTrueAsync(AccountSettingNames.IsSelfRegistrationEnabled)) { @L["AreYouANewUser"] @L["Register"] } @if (Model.EnableLocalLogin) {@foreach (var provider in Model.VisibleExternalProviders) { @provider.DisplayName }} @if (!Model.EnableLocalLogin && !Model.VisibleExternalProviders.Any()) {@L["InvalidLoginRequest"] @L["ThereAreNoLoginSchemesConfiguredForThisClient"]} -
0
hi
See https://support.abp.io/QA/Questions/1630#answer-9df23f97-dc74-a2b2-702c-39fdf9ec5d3b
AreYouANewUser
belongs open-source account module instead of account pro module.
https://github.com/abpframework/abp/search?q=AreYouANewUserYour tenant name
we forgot to translate this, I will do it in 4.4. -
0
abp/lepton-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton/Themes/Lepton/Layouts/Account/Default.cshtml
-
0
This question has been automatically marked as stale because it has not had recent activity.