forked from andresaraujo/timeago.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
th_messages.dart
73 lines (71 loc) · 2.19 KB
/
th_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';
/// Thai messages
class ThMessages 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() => ' ';
}
/// Thai short messages
class ThShortMessages implements LookupMessages {
@override
String prefixAgo() => '';
@override
String prefixFromNow() => '';
@override
String suffixAgo() => '';
@override
String suffixFromNow() => '';
@override
String lessThanOneMinute(int seconds) => 'เมื่อครู่';
@override
String aboutAMinute(int minutes) => '1 นาที';
@override
String minutes(int minutes) => '$minutes นาที';
@override
String aboutAnHour(int minutes) => '~1 ชม';
@override
String hours(int hours) => '$hours ชม';
@override
String aDay(int hours) => '~1 ว';
@override
String days(int days) => '$days ว';
@override
String aboutAMonth(int days) => '~1 ด';
@override
String months(int months) => '$months ด';
@override
String aboutAYear(int year) => '~1 ป';
@override
String years(int years) => '$years ป';
@override
String wordSeparator() => ' ';
}