mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
17 lines
590 B
C#
17 lines
590 B
C#
namespace AntDesign
|
|
{
|
|
public class TransferLocale
|
|
{
|
|
public string NotFoundContent { get; set; }
|
|
public string SearchPlaceholder { get; set; } = "Search here";
|
|
public string ItemUnit { get; set; } = "item";
|
|
public string ItemsUnit { get; set; } = "items";
|
|
public string Remove { get; set; }
|
|
public string SelectCurrent { get; set; }
|
|
public string RemoveCurrent { get; set; }
|
|
public string SelectAll { get; set; }
|
|
public string RemoveAll { get; set; }
|
|
public string SelectInvert { get; set; }
|
|
}
|
|
}
|