forked from andresaraujo/timeago.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathta_messages.dart
37 lines (36 loc) · 1.22 KB
/
ta_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
import 'package:timeago/src/messages/lookupmessages.dart';
/// Tamil messages
class TaMessages 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() => ' ';
}