// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Text; namespace AntDesign { /// /// Confirm dialog locale /// public class ConfirmLocale { /// /// OK button text /// public string OkText { get; set; } = "OK"; /// /// Cancel button text /// public string CancelText { get; set; } = "Cancel"; /// /// Yes button text /// public string YesText { get; set; } = "Yes"; /// /// No button text /// public string NoText { get; set; } = "No"; /// /// Retry button text /// public string RetryText { get; set; } = "Retry"; /// /// Abort button text /// public string AbortText { get; set; } = "Abort"; /// /// Ignore button text /// public string IgnoreText { get; set; } = "Ignore"; } }