firset commit

This commit is contained in:
GYJ
2024-11-22 16:48:12 +08:00
commit 8d57c7f406
105 changed files with 3615 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
import 'package:timeago/timeago.dart';
/// Chinese-China messages
class ZhCnMessages 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() => '';
}