Try your search with a different keyword or use * as a wildcard.
@model ProductDetailsModel.AddToCartModel
@using Nop.Core.Domain.Orders
@if (!Model.DisableWishlistButton)
{
var addToWishlistText = "";
if (Model.UpdatedShoppingCartItemId > 0 && Model.UpdateShoppingCartItemType.HasValue && Model.UpdateShoppingCartItemType.Value == ShoppingCartType.Wishlist)
{
addToWishlistText = T("Products.Wishlist.AddToWishlist.Update").Text;
}
else
{
addToWishlistText = T("Products.Wishlist.AddToWishlist").Text;
}
}