-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtext_delegate.dart
More file actions
55 lines (35 loc) · 964 Bytes
/
Copy pathtext_delegate.dart
File metadata and controls
55 lines (35 loc) · 964 Bytes
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
class RRuleTextDelegate {
String get locale => 'en';
String get repeat => 'Repeat';
String get day => 'Day';
String get byDayInMonth => 'Repeat on';
String get byNthDayInMonth => 'Repeat on the';
String get every => 'Every';
String get of => 'of';
String get months => 'Month(s)';
String get weeks => 'Week(s)';
String get days => 'Day(s)';
String get date => 'Date';
String get on => 'On';
String get instances => 'instance(s)';
String get end => 'End';
String get neverEnds => 'Never ends';
String get endsAfter => 'Ends after';
String get endsOnDate => 'Ends on date';
String get timeOfDay => 'Time of day';
String get excludeDate => 'Exclude date';
List<String> get daysInMonth => [
'1st',
'2nd',
'3rd',
'4rd',
'Last',
];
List<String> get periods => [
'Yearly',
'Monthly',
'Weekly',
'Daily',
'Never',
];
}