1 | export declare class TranslationKeys {
|
---|
2 | static readonly STARTS_WITH = "startsWith";
|
---|
3 | static readonly CONTAINS = "contains";
|
---|
4 | static readonly NOT_CONTAINS = "notContains";
|
---|
5 | static readonly ENDS_WITH = "endsWith";
|
---|
6 | static readonly EQUALS = "equals";
|
---|
7 | static readonly NOT_EQUALS = "notEquals";
|
---|
8 | static readonly NO_FILTER = "noFilter";
|
---|
9 | static readonly LT = "lt";
|
---|
10 | static readonly LTE = "lte";
|
---|
11 | static readonly GT = "gt";
|
---|
12 | static readonly GTE = "gte";
|
---|
13 | static readonly IS = "is";
|
---|
14 | static readonly IS_NOT = "isNot";
|
---|
15 | static readonly BEFORE = "before";
|
---|
16 | static readonly AFTER = "after";
|
---|
17 | static readonly CLEAR = "clear";
|
---|
18 | static readonly APPLY = "apply";
|
---|
19 | static readonly MATCH_ALL = "matchAll";
|
---|
20 | static readonly MATCH_ANY = "matchAny";
|
---|
21 | static readonly ADD_RULE = "addRule";
|
---|
22 | static readonly REMOVE_RULE = "removeRule";
|
---|
23 | static readonly ACCEPT = "accept";
|
---|
24 | static readonly REJECT = "reject";
|
---|
25 | static readonly CHOOSE = "choose";
|
---|
26 | static readonly UPLOAD = "upload";
|
---|
27 | static readonly CANCEL = "cancel";
|
---|
28 | static readonly DAY_NAMES = "dayNames";
|
---|
29 | static readonly DAY_NAMES_SHORT = "dayNamesShort";
|
---|
30 | static readonly DAY_NAMES_MIN = "dayNamesMin";
|
---|
31 | static readonly MONTH_NAMES = "monthNames";
|
---|
32 | static readonly MONTH_NAMES_SHORT = "monthNamesShort";
|
---|
33 | static readonly TODAY = "today";
|
---|
34 | static readonly WEEK_HEADER = "weekHeader";
|
---|
35 | static readonly WEAK = "weak";
|
---|
36 | static readonly MEDIUM = "medium";
|
---|
37 | static readonly STRONG = "strong";
|
---|
38 | static readonly PASSWORD_PROMPT = "passwordPrompt";
|
---|
39 | static readonly EMPTY_MESSAGE = "emptyMessage";
|
---|
40 | static readonly EMPTY_FILTER_MESSAGE = "emptyFilterMessage";
|
---|
41 | }
|
---|