forked from andresaraujo/timeago.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
he_messages.dart
73 lines (71 loc) · 1.95 KB
/
he_messages.dart
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
import 'package:timeago/src/messages/lookupmessages.dart';
/// Hebrew Messages
class HeMessages implements LookupMessages {
@override
String prefixAgo() => 'לפני';
@override
String prefixFromNow() => 'בעוד';
@override
String suffixAgo() => '';
@override
String suffixFromNow() => '';
@override
String lessThanOneMinute(int seconds) => 'כמה רגעים';
@override
String aboutAMinute(int minutes) => 'דקה';
@override
String minutes(int minutes) => '$minutes דקות';
@override
String aboutAnHour(int minutes) => 'כשעה';
@override
String hours(int hours) => '$hours שעות';
@override
String aDay(int hours) => 'יום';
@override
String days(int days) => '$days ימים';
@override
String aboutAMonth(int days) => 'כחודש';
@override
String months(int months) => '$months חודשים';
@override
String aboutAYear(int year) => 'כשנה';
@override
String years(int years) => '$years שנים';
@override
String wordSeparator() => ' ';
}
/// Hebrew short Messages
class HeShortMessages implements LookupMessages {
@override
String prefixAgo() => '';
@override
String prefixFromNow() => 'בעוד';
@override
String suffixAgo() => '';
@override
String suffixFromNow() => '';
@override
String lessThanOneMinute(int seconds) => 'כעת';
@override
String aboutAMinute(int minutes) => 'דקה';
@override
String minutes(int minutes) => '$minutes דקות';
@override
String aboutAnHour(int minutes) => 'כשעה';
@override
String hours(int hours) => '$hours שעות';
@override
String aDay(int hours) => 'יום';
@override
String days(int days) => '$days ימים';
@override
String aboutAMonth(int days) => 'כחודש';
@override
String months(int months) => '$months חודשים';
@override
String aboutAYear(int year) => 'כשנה';
@override
String years(int years) => '$years שנים';
@override
String wordSeparator() => ' ';
}