Files
food_health_flutter/lib/l10n/app_localizations_zh.dart
2025-09-23 11:47:29 +08:00

65 lines
1.4 KiB
Dart

// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for Chinese (`zh`).
class AppLocalizationsZh extends AppLocalizations {
AppLocalizationsZh([String locale = 'zh']) : super(locale);
@override
String get welcome_title => '成分一目了然';
@override
String get welcome_desc => '自动识别食物成分,营养与风险一手掌握';
@override
String get welcome_button_text => '开始使用';
@override
String get login_title => '欢迎来到FoodCura';
@override
String get login_email_hint => '请输入邮箱';
@override
String get login_password_hint => '请输入密码';
@override
String get login_button => '登录';
@override
String get login_tip_start => '注册或登录即表示您了解并同意';
@override
String get login_privacy => '隐私协议';
@override
String get login_terms => '服务条款';
@override
String get login_and => '';
@override
String get login_other_login => '其他登录方式';
@override
String get login_error_text => '登录失败';
@override
String get code_title => '输入验证码';
@override
String get code_tip => '验证码已发送至';
@override
String get code_send_code => '重新发送';
@override
String get code_success => '发送成功';
@override
String get code_error => '验证失败';
}