dtable-ui-component 4.4.0-beta1 → 4.4.0-beta2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/locals/en.js CHANGED
@@ -1,3 +1,4 @@
1
+ /* eslint-disable quotes */
1
2
  const en = {
2
3
  Add_an_option: 'Add an option',
3
4
  Find_an_option: 'Find a option',
@@ -25,36 +26,64 @@ const en = {
25
26
  Deleted_department: 'Deleted department',
26
27
  Add_filter: 'Add filter',
27
28
  Submit: 'Submit',
28
- No_filters_applied_to_this_view: 'No_filters_applied_to_this_view',
29
- No_filters: 'No_filters',
30
- Today: 'Today',
31
- Tomorrow: 'Tomorrow',
32
- Yesterday: 'Yesterday',
33
- One_week_ago: 'One week ago',
34
- One_week_from_now: 'One week from now',
35
- One_month_ago: 'One month ago',
36
- One_month_from_now: 'One month from now',
37
- Number_of_days_ago: 'Number of days ago',
38
- Number_of_days_from_now: 'Number of days from now',
39
- Exact_date: 'Exact date',
40
- Last_week: 'Last week',
41
- Last_month: 'Last month',
42
- Last_year: 'Last year',
43
- The_next_week: 'The next week',
44
- The_next_month: 'The next month',
45
- The_next_year: 'The next year',
46
- The_next_numbers_of_days: 'The next numbers of days',
47
- The_past_numbers_of_days: 'The past numbers of days',
48
- This_week: 'This week',
49
- This_month: 'This month',
50
- This_year: 'This year',
51
- Select_an_option: 'Select_an_option',
52
- Add_collaborator: 'Add_collaborator',
53
- Add_a_creator: 'Add_a_creator',
54
- Add_a_last_modifier: 'Add_a_last_modifier',
55
- Invalid_filter: 'Invalid_filter',
56
- Find_column: 'Find_column',
57
- No_results: 'No_results',
58
- 'Select_option(s)': 'Select option(s)'
29
+ No_filters: 'No filters',
30
+ Select_an_option: 'Select an option',
31
+ Add_collaborator: 'Add collaborator',
32
+ Add_a_creator: 'Add a creator',
33
+ Add_a_last_modifier: 'Add a last modifier',
34
+ Invalid_filter: 'Invalid filter',
35
+ Find_column: 'Find column',
36
+ No_results: 'No results',
37
+ 'Select_option(s)': 'Select option(s)',
38
+ "contains": "contains",
39
+ "does_not_contain": "does not contain",
40
+ "is": "is",
41
+ "is_not": "is not",
42
+ "equal": "\u003d",
43
+ "not_equal": "\u2260",
44
+ "less": "\u003C",
45
+ "greater": "\u003E",
46
+ "less_or_equal": "\u2264",
47
+ "greater_or_equal": "\u2265",
48
+ "is_empty": "is empty",
49
+ "is_not_empty": "is not empty",
50
+ "is_within": "is within",
51
+ "is_before": "is before",
52
+ "is_after": "is after",
53
+ "is_on_or_before": "is on or before",
54
+ "is_on_or_after": "is on or after",
55
+ "has_any_of": "has any of",
56
+ "has_all_of": "has all of",
57
+ "has_none_of": "has none of",
58
+ "is_exactly": "is exactly",
59
+ "is_current_user_ID": "is current user's ID",
60
+ "Current_date": "Current date",
61
+ "Specific_date": "Specific date",
62
+ "x_days_before_current_date": "x days before current date",
63
+ "x_days_after_current_date": "x days after current date",
64
+ "is_any_of": "is any of",
65
+ "is_none_of": "is none of",
66
+ "include_me": "include the current user",
67
+ "today": "today",
68
+ "tomorrow": "tomorrow",
69
+ "yesterday": "yesterday",
70
+ "one_week_ago": "one week ago",
71
+ "one_week_from_now": "one week from now",
72
+ "one_month_ago": "one month ago",
73
+ "one_month_from_now": "one month from now",
74
+ "number_of_days_ago": "number of days ago",
75
+ "number_of_days_from_now": "number of days from now",
76
+ "exact_date": "exact date",
77
+ "the_past_week": "last week",
78
+ "the_past_month": "last month",
79
+ "the_past_year": "last year",
80
+ "the_next_week": "the next week",
81
+ "the_next_month": "the next month",
82
+ "the_next_year": "the next year",
83
+ "the_next_numbers_of_days": "the next numbers of days",
84
+ "the_past_numbers_of_days": "the past numbers of days",
85
+ "this_week": "this week",
86
+ "this_month": "this month",
87
+ "this_year": "this year"
59
88
  };
60
89
  export default en;
@@ -1,3 +1,4 @@
1
+ /* eslint-disable quotes */
1
2
  const zh_CN = {
2
3
  Add_an_option: '添加一个选项',
3
4
  Find_an_option: '查找标签',
@@ -21,6 +22,67 @@ const zh_CN = {
21
22
  Current_user_department: "当前用户的部门",
22
23
  Current_user_department_and_sub: "当前用户的部门和子部门",
23
24
  Specific_departments: "具体部门",
24
- Deleted_department: "已经删除的部门"
25
+ Deleted_department: "已经删除的部门",
26
+ Add_filter: '添加过滤',
27
+ Submit: '提交',
28
+ No_filters: '没有过滤条件',
29
+ Select_an_option: '选择标签',
30
+ Add_collaborator: '添加协作人',
31
+ Add_a_creator: '增加创建者',
32
+ Add_a_last_modifier: '增加最后修改者',
33
+ Invalid_filter: '无效的过滤器',
34
+ Find_column: '查找列',
35
+ No_results: '没有结果',
36
+ 'Select_option(s)': '选择标签',
37
+ "contains": "包含",
38
+ "does_not_contain": "不包含",
39
+ "is": "是",
40
+ "is_not": "不是",
41
+ "equal": "=",
42
+ "not_equal": "≠",
43
+ "less": "<",
44
+ "greater": ">",
45
+ "less_or_equal": "≤",
46
+ "greater_or_equal": "≥",
47
+ "is_empty": "是空",
48
+ "is_not_empty": "不是空",
49
+ "is_within": "在某段时间内",
50
+ "is_before": "在某天之前",
51
+ "is_after": "在某天之后",
52
+ "is_on_or_before": "在某天或之前",
53
+ "is_on_or_after": "在某天或之后",
54
+ "has_any_of": "包含其中一个",
55
+ "has_all_of": "包含所有",
56
+ "has_none_of": "不包含",
57
+ "is_exactly": "精确筛选",
58
+ "is_current_user_ID": "是当前用户的 ID",
59
+ "Current_date": "当前日期",
60
+ "Specific_date": "指定日期",
61
+ "x_days_before_current_date": "当前日期的前 X 天",
62
+ "x_days_after_current_date": "当前日期的后 X 天",
63
+ "is_any_of": "是任意一个...",
64
+ "is_none_of": "不是任意一个...",
65
+ "include_me": "包括当前用户",
66
+ "today": "今天",
67
+ "tomorrow": "明天",
68
+ "yesterday": "昨天",
69
+ "one_week_ago": "一周前",
70
+ "one_week_from_now": "一周后",
71
+ "one_month_ago": "一个月前",
72
+ "one_month_from_now": "一个月后",
73
+ "number_of_days_ago": "特定天数前",
74
+ "number_of_days_from_now": "特定天数后",
75
+ "exact_date": "精确日期",
76
+ "the_past_week": "上个星期",
77
+ "the_past_month": "上个月",
78
+ "the_past_year": "去年",
79
+ "the_next_week": "下个星期",
80
+ "the_next_month": "下个月",
81
+ "the_next_year": "下一年",
82
+ "the_next_numbers_of_days": "今天之后的指定天数",
83
+ "the_past_numbers_of_days": "今天之前的指定天数",
84
+ "this_week": "这个星期",
85
+ "this_month": "这个月",
86
+ "this_year": "今年"
25
87
  };
26
88
  export default zh_CN;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dtable-ui-component",
3
- "version": "4.4.0-beta1",
3
+ "version": "4.4.0-beta2",
4
4
  "main": "./lib/index.js",
5
5
  "dependencies": {
6
6
  "@seafile/react-image-lightbox": "2.0.5",