-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstrings.json
More file actions
196 lines (196 loc) · 6.19 KB
/
strings.json
File metadata and controls
196 lines (196 loc) · 6.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"config": {
"abort": {
"already_configured": "Device is already configured"
},
"error": {
"unknown": "Unexpected error"
},
"step": {
"user": {
"title": "Task Tracker",
"description": "Create task.",
"data": {
"name": "Name",
"task_interval_value": "Task Interval",
"task_interval_type": "Task Interval Unit"
},
"data_description": {
"task_interval_value": "Time after which the task becomes due again.",
"task_interval_type": "The unit of time for the task interval."
}
}
}
},
"options": {
"abort": {
"already_configured": "Device is already configured"
},
"error": {
"unknown": "Unexpected error"
},
"step": {
"init": {
"title": "Task Tracker",
"description": "Configure task.",
"data": {
"task_interval_value": "Task Interval",
"task_interval_type": "Task Interval Unit",
"task_interval_override": "Task Interval Override",
"notification_interval": "Notification Interval (days)",
"todo_lists": "Todo-Lists",
"due_soon_days": "Due soon (days)",
"due_soon_override": "Due soon Override (days)",
"tags": "Tags",
"icon": "Icon",
"active": "Active",
"active_override": "Active Override"
},
"data_description": {
"task_interval_value": "Time after which the task becomes due again.",
"task_interval_type": "The unit of time for the task interval.",
"task_interval_override": "Select an input_number (value in days) to override the Task Interval.",
"notification_interval": "The time in days after which notifications are sent again.",
"todo_lists": "Todo-Lists, to which this task will be added.",
"due_soon_days": "The number of days before the task is due to show it as due soon.",
"due_soon_override": "Select an input_number (value in days) to override the Due soon threshold.",
"tags": "Tags to categorize the task, separated by commas.",
"icon": "Icon to represent the task.",
"active": "Enable or disable the task.",
"active_override": "Select an input_boolean to override the Active setting."
}
}
}
},
"selector": {
"task_interval": {
"options": {
"day": "Day",
"week": "Week",
"month": "Month",
"year": "Year"
}
}
},
"entity": {
"sensor": {
"status": {
"state": {
"done": "Done",
"due": "Due",
"due_soon": "Due soon",
"overdue": "Overdue",
"inactive": "Inactive"
}
}
},
"button": {
"mark_as_done": {
"name": "Mark as done"
}
},
"ui": {
"status": {
"name": "Status"
},
"done": {
"name": "Done"
},
"due": {
"name": "Due"
},
"due_soon": {
"name": "Due soon"
},
"overdue": {
"name": "Overdue"
},
"inactive": {
"name": "Inactive"
},
"interval": {
"name": "Interval"
},
"day_singular": {
"name": "Day"
},
"week_singular": {
"name": "Week"
},
"month_singular": {
"name": "Month"
},
"year_singular": {
"name": "Year"
},
"day_plural": {
"name": "Days"
},
"week_plural": {
"name": "Weeks"
},
"month_plural": {
"name": "Months"
},
"year_plural": {
"name": "Years"
},
"last_done": {
"name": "Last done"
},
"due_date": {
"name": "Due date"
},
"due_in":{
"name": "Due in"
},
"overdue_by":{
"name": "Overdue by"
},
"mark_as_done": {
"name": "Mark as done"
},
"all": {
"name": "All"
},
"no_tasks_found": {
"name": "No tasks found."
},
"sort_by": {
"name": "Sort by"
},
"sort_name": {
"name": "Name"
},
"sort_due_date": {
"name": "Due date"
}
}
},
"services": {
"mark_as_done": {
"name": "Mark as done",
"description": "Sets the last done date of the task to today.",
"fields": {
"entity_id": {
"name": "Entity ID",
"description": "The ID of the task to be marked as done."
}
}
},
"set_last_done_date": {
"name": "Set last done date",
"description": "Sets the last done date of the task to a specific date.",
"fields": {
"entity_id": {
"name": "Entity ID",
"description": "The ID of the task to be updated."
},
"date": {
"name": "Date",
"description": "The new last done date."
}
}
}
}
}