ant-design-blazor/components/transfer/TransferLocale.cs
James Yeung bd34858efd feat: support for globalization & localization (#578)
* feat: add locale

* feat: add locale interfaces

* fix: add locale interfaces for components

* fix: use local classes instead of interfaces

* feat: implement the locale provider

* feat: make some components to support localization

* fix: default language

* fix: test

* chore: remove the useless reference
2020-09-07 22:46:50 +08:00

21 lines
620 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign
{
public class TransferLocale
{
public string NotFoundContent { get; set; }
public string SearchPlaceholder { get; set; }
public string ItemUnit { get; set; }
public string ItemsUnit { get; set; }
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; }
}
}