ant-design-blazor/components/transfer/TransferLocale.cs
ElDiddi 2cd069a6ac fix(module: transfer): fixed multiple issues #711 #645 (#712)
* fix(module: transfer): Fixed multiple issues

fix(module: transfer): Added localization support (LocaleProvider.CurrentLocale.Transfer).  Property name is 'Locale'. #645
fix(module: transfer): Fixed no data image.
fix(module: transfer): Header alignment
fix(module: transfer): Fixed header count suffix
fix(module: transfer): Fixed a bug in the checkbox state if there is 'no item' or no 'not deactivated' item in the selection list.
fix(module: transfer): Duplicate item filter bug fixed (#711)
feat(module: transfer): Added clear button to the filter input
feat(module: transfer): Filter option is now InvariantCultureIgnoreCase (please change it if there is a problem with chinese language)
style(module: transfer): removed unused usings, fixed some style issues
docs(module: transfer): Added Local Property description - Please take a look at the chinese version (Google translate)

* Update index.zh-CN.md

Co-authored-by: Lars Diederich <diederich@evodata.de>
Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-10-24 13:39:02 +08:00

17 lines
552 B
C#

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; }
}
}