|
|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
|
using Shouldly;
|
|
|
|
|
using Volo.Abp.Localization;
|
|
|
|
|
using Volo.Abp.TenantManagement.Localization;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
@ -17,8 +19,23 @@ namespace Volo.Abp.TenantManagement
|
|
|
|
|
[Fact]
|
|
|
|
|
public void Test()
|
|
|
|
|
{
|
|
|
|
|
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
|
|
|
|
|
.ShouldBe("Tenant '{0}' will be deleted. Do you confirm that?");
|
|
|
|
|
using (CultureHelper.Use("en"))
|
|
|
|
|
{
|
|
|
|
|
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
|
|
|
|
|
.ShouldBe("Tenant '{0}' will be deleted. Do you confirm that?");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using (CultureHelper.Use("en-gb"))
|
|
|
|
|
{
|
|
|
|
|
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
|
|
|
|
|
.ShouldBe("Tenant '{0}' will be deleted. Is that OK?");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using (CultureHelper.Use("tr"))
|
|
|
|
|
{
|
|
|
|
|
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
|
|
|
|
|
.ShouldBe("'{0}' isimli müşteri silinecektir. Onaylıyor musunuz?");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|