Try your search with a different keyword or use * as a wildcard.
@model ProductDetailsModel
@if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping || !string.IsNullOrWhiteSpace(Model.DeliveryDate))
{
@if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping)
{
@T("Products.FreeShipping")
}
@if (!string.IsNullOrWhiteSpace(Model.DeliveryDate))
{
@T("Products.DeliveryDate"):
@Model.DeliveryDate
}
}