mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
bd34858efd
* 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
36 lines
766 B
C#
36 lines
766 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TableLocale
|
|
{
|
|
public string FilterTitle { get; set; }
|
|
|
|
public string FilterConfirm { get; set; }
|
|
|
|
public string FilterReset { get; set; }
|
|
|
|
public string FilterEmptyText { get; set; }
|
|
|
|
public string SelectAll { get; set; }
|
|
|
|
public string SelectInvert { get; set; }
|
|
|
|
public string SelectionAll { get; set; }
|
|
|
|
public string SortTitle { get; set; }
|
|
|
|
public string Expand { get; set; }
|
|
|
|
public string Collapse { get; set; }
|
|
|
|
public string TriggerDesc { get; set; }
|
|
|
|
public string TriggerAsc { get; set; }
|
|
|
|
public string CancelSort { get; set; }
|
|
}
|
|
}
|