2020-10-24 13:39:02 +08:00
|
|
|
|
namespace AntDesign
|
2020-09-07 22:46:50 +08:00
|
|
|
|
{
|
|
|
|
|
public class TransferLocale
|
|
|
|
|
{
|
|
|
|
|
public string NotFoundContent { get; set; }
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string SearchPlaceholder { get; set; } = "Search here";
|
|
|
|
|
public string ItemUnit { get; set; } = "item";
|
|
|
|
|
public string ItemsUnit { get; set; } = "items";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|