Added some localization keys

pull/2902/head
AkinCam 5 years ago
parent b764b75726
commit a18b8201bf

@ -5,8 +5,9 @@
"OrganizationList": "Organization list",
"Volo.AbpIo.Commercial:010003": "You are not owner of this organization!",
"OrganizationNotFoundMessage": "No organization found!",
"DeveloperCount": "Developer count",
"QuestionCount": "Question count",
"DeveloperCount": "Allocated / total developers",
"QuestionCount": "Remaining / total questions",
"Unlimited": "Unlimited",
"Owners": "Owners",
"AddMember": "Add member",
"AddOwner": "Add owner",
@ -30,5 +31,5 @@
"SuccessfullyAddedToNewsletter": "Thanks you for subscribing to our newsletter!",
"ManageProfile": "Manage your profile",
"EmailNotValid": "Please enter a valid email address."
}
}
}

@ -32,7 +32,7 @@ namespace Volo.Abp.Users
public async Task<TUser> FindByIdAsync(Guid id, CancellationToken cancellationToken = default)
{
var localUser = await _userRepository.FindAsync(id, cancellationToken: cancellationToken);
var localUser = await _userRepository.FindAsync(id,cancellationToken: cancellationToken);
if (ExternalUserLookupServiceProvider == null)
{

Loading…
Cancel
Save