3650 lines
106 KiB
Dart
3650 lines
106 KiB
Dart
import 'dart:async';
|
||
|
||
import 'package:flutter/foundation.dart';
|
||
import 'package:flutter/widgets.dart';
|
||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||
import 'package:intl/intl.dart' as intl;
|
||
|
||
import 'app_localizations_en.dart';
|
||
import 'app_localizations_zh.dart';
|
||
|
||
// ignore_for_file: type=lint
|
||
|
||
/// Callers can lookup localized strings with an instance of AppLocalizations
|
||
/// returned by `AppLocalizations.of(context)`.
|
||
///
|
||
/// Applications need to include `AppLocalizations.delegate()` in their app's
|
||
/// `localizationDelegates` list, and the locales they support in the app's
|
||
/// `supportedLocales` list. For example:
|
||
///
|
||
/// ```dart
|
||
/// import 'l10n/app_localizations.dart';
|
||
///
|
||
/// return MaterialApp(
|
||
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
|
||
/// supportedLocales: AppLocalizations.supportedLocales,
|
||
/// home: MyApplicationHome(),
|
||
/// );
|
||
/// ```
|
||
///
|
||
/// ## Update pubspec.yaml
|
||
///
|
||
/// Please make sure to update your pubspec.yaml to include the following
|
||
/// packages:
|
||
///
|
||
/// ```yaml
|
||
/// dependencies:
|
||
/// # Internationalization support.
|
||
/// flutter_localizations:
|
||
/// sdk: flutter
|
||
/// intl: any # Use the pinned version from flutter_localizations
|
||
///
|
||
/// # Rest of dependencies
|
||
/// ```
|
||
///
|
||
/// ## iOS Applications
|
||
///
|
||
/// iOS applications define key application metadata, including supported
|
||
/// locales, in an Info.plist file that is built into the application bundle.
|
||
/// To configure the locales supported by your app, you’ll need to edit this
|
||
/// file.
|
||
///
|
||
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
|
||
/// Then, in the Project Navigator, open the Info.plist file under the Runner
|
||
/// project’s Runner folder.
|
||
///
|
||
/// Next, select the Information Property List item, select Add Item from the
|
||
/// Editor menu, then select Localizations from the pop-up menu.
|
||
///
|
||
/// Select and expand the newly-created Localizations item then, for each
|
||
/// locale your application supports, add a new item and select the locale
|
||
/// you wish to add from the pop-up menu in the Value field. This list should
|
||
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
|
||
/// property.
|
||
abstract class AppLocalizations {
|
||
AppLocalizations(String locale)
|
||
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
|
||
|
||
final String localeName;
|
||
|
||
static AppLocalizations of(BuildContext context) {
|
||
return Localizations.of<AppLocalizations>(context, AppLocalizations)!;
|
||
}
|
||
|
||
static const LocalizationsDelegate<AppLocalizations> delegate =
|
||
_AppLocalizationsDelegate();
|
||
|
||
/// A list of this localizations delegate along with the default localizations
|
||
/// delegates.
|
||
///
|
||
/// Returns a list of localizations delegates containing this delegate along with
|
||
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
|
||
/// and GlobalWidgetsLocalizations.delegate.
|
||
///
|
||
/// Additional delegates can be added by appending to this list in
|
||
/// MaterialApp. This list does not have to be used at all if a custom list
|
||
/// of delegates is preferred or required.
|
||
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
|
||
<LocalizationsDelegate<dynamic>>[
|
||
delegate,
|
||
GlobalMaterialLocalizations.delegate,
|
||
GlobalCupertinoLocalizations.delegate,
|
||
GlobalWidgetsLocalizations.delegate,
|
||
];
|
||
|
||
/// A list of this localizations delegate's supported locales.
|
||
static const List<Locale> supportedLocales = <Locale>[
|
||
Locale('en'),
|
||
Locale('zh'),
|
||
];
|
||
|
||
/// No description provided for @appTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'Linksy'**
|
||
String get appTitle;
|
||
|
||
/// No description provided for @commonConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认'**
|
||
String get commonConfirm;
|
||
|
||
/// No description provided for @commonCancel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'取消'**
|
||
String get commonCancel;
|
||
|
||
/// No description provided for @commonSave.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存'**
|
||
String get commonSave;
|
||
|
||
/// No description provided for @commonDone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'完成'**
|
||
String get commonDone;
|
||
|
||
/// No description provided for @commonRetry.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'重试'**
|
||
String get commonRetry;
|
||
|
||
/// No description provided for @commonRefreshing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'正在刷新'**
|
||
String get commonRefreshing;
|
||
|
||
/// No description provided for @commonLoading.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载中...'**
|
||
String get commonLoading;
|
||
|
||
/// No description provided for @commonEdit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑'**
|
||
String get commonEdit;
|
||
|
||
/// No description provided for @commonDelete.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除'**
|
||
String get commonDelete;
|
||
|
||
/// No description provided for @commonShare.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'分享'**
|
||
String get commonShare;
|
||
|
||
/// No description provided for @commonArchive.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'归档'**
|
||
String get commonArchive;
|
||
|
||
/// No description provided for @commonCopySuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已复制'**
|
||
String get commonCopySuccess;
|
||
|
||
/// No description provided for @commonLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载失败: {error}'**
|
||
String commonLoadFailed(Object error);
|
||
|
||
/// No description provided for @commonUnknown.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未知'**
|
||
String get commonUnknown;
|
||
|
||
/// No description provided for @commonNone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无'**
|
||
String get commonNone;
|
||
|
||
/// No description provided for @toastLabelSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'成功'**
|
||
String get toastLabelSuccess;
|
||
|
||
/// No description provided for @toastLabelWarning.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒'**
|
||
String get toastLabelWarning;
|
||
|
||
/// No description provided for @toastLabelError.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'错误'**
|
||
String get toastLabelError;
|
||
|
||
/// No description provided for @toastLabelInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提示'**
|
||
String get toastLabelInfo;
|
||
|
||
/// No description provided for @errorGenericSafe.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请求失败,请稍后重试'**
|
||
String get errorGenericSafe;
|
||
|
||
/// No description provided for @errorForbidden.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'没有权限执行此操作'**
|
||
String get errorForbidden;
|
||
|
||
/// No description provided for @errorNotFound.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请求的资源不存在'**
|
||
String get errorNotFound;
|
||
|
||
/// No description provided for @errorTooManyRequests.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请求过于频繁,请稍后再试'**
|
||
String get errorTooManyRequests;
|
||
|
||
/// No description provided for @errorServer.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'服务器错误,请稍后再试'**
|
||
String get errorServer;
|
||
|
||
/// No description provided for @errorAgentSseConnectionLimit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'连接过于频繁,请稍后重试'**
|
||
String get errorAgentSseConnectionLimit;
|
||
|
||
/// No description provided for @errorAgentAttachmentEmpty.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'附件内容为空'**
|
||
String get errorAgentAttachmentEmpty;
|
||
|
||
/// No description provided for @errorAgentAttachmentTooLarge.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'附件过大,请压缩后重试'**
|
||
String get errorAgentAttachmentTooLarge;
|
||
|
||
/// No description provided for @errorAgentAudioEmpty.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'音频内容为空'**
|
||
String get errorAgentAudioEmpty;
|
||
|
||
/// No description provided for @errorAgentAudioTooLarge.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'音频文件过大'**
|
||
String get errorAgentAudioTooLarge;
|
||
|
||
/// No description provided for @errorAgentAudioUnsupportedFormat.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'音频格式不支持'**
|
||
String get errorAgentAudioUnsupportedFormat;
|
||
|
||
/// No description provided for @errorAgentAsrUnavailable.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'语音服务暂不可用,请稍后重试'**
|
||
String get errorAgentAsrUnavailable;
|
||
|
||
/// No description provided for @errorAgentInvalidLastEventId.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'事件游标无效,请刷新后重试'**
|
||
String get errorAgentInvalidLastEventId;
|
||
|
||
/// No description provided for @errorAgentInvalidBinaryUrl.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'图片链接无效,请重新上传'**
|
||
String get errorAgentInvalidBinaryUrl;
|
||
|
||
/// No description provided for @errorRequestFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请求失败'**
|
||
String get errorRequestFailed;
|
||
|
||
/// No description provided for @errorNetwork.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'网络错误'**
|
||
String get errorNetwork;
|
||
|
||
/// No description provided for @errorReLogin.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请重新登录'**
|
||
String get errorReLogin;
|
||
|
||
/// No description provided for @errorNetworkTimeout.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'网络超时,请确认手机与服务端在同一网络后重试'**
|
||
String get errorNetworkTimeout;
|
||
|
||
/// No description provided for @errorNetworkUnavailable.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'无法连接服务器。请在 iPhone 设置中为本应用开启无线数据,并确认本地网络权限已开启。'**
|
||
String get errorNetworkUnavailable;
|
||
|
||
/// No description provided for @homeViewHistory.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'查看历史'**
|
||
String get homeViewHistory;
|
||
|
||
/// No description provided for @homeNoEarlierHistory.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'没有更早的历史记录了'**
|
||
String get homeNoEarlierHistory;
|
||
|
||
/// No description provided for @homeSheetTakePhoto.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'拍照'**
|
||
String get homeSheetTakePhoto;
|
||
|
||
/// No description provided for @homeSheetPhotoLibrary.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'相册'**
|
||
String get homeSheetPhotoLibrary;
|
||
|
||
/// No description provided for @homeDateLabelWithYear.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{year}年{month}月{day}日 {weekday}'**
|
||
String homeDateLabelWithYear(int year, int month, int day, Object weekday);
|
||
|
||
/// No description provided for @homeDateLabelNoYear.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{month}月{day}日 {weekday}'**
|
||
String homeDateLabelNoYear(int month, int day, Object weekday);
|
||
|
||
/// No description provided for @homeRecordingReleaseCancel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'松手取消'**
|
||
String get homeRecordingReleaseCancel;
|
||
|
||
/// No description provided for @homeRecordingReleaseSend.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'松手发送'**
|
||
String get homeRecordingReleaseSend;
|
||
|
||
/// No description provided for @homeRecordingHintReleaseCancel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'松开取消'**
|
||
String get homeRecordingHintReleaseCancel;
|
||
|
||
/// No description provided for @homeRecordingHintReleaseSend.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'松开发送,上滑取消'**
|
||
String get homeRecordingHintReleaseSend;
|
||
|
||
/// No description provided for @homeHoldToSpeakText.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'按住说话'**
|
||
String get homeHoldToSpeakText;
|
||
|
||
/// No description provided for @homeInputHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入消息...'**
|
||
String get homeInputHint;
|
||
|
||
/// No description provided for @homeTranscribing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'语音识别中...'**
|
||
String get homeTranscribing;
|
||
|
||
/// No description provided for @homeRecordingCanceled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已取消'**
|
||
String get homeRecordingCanceled;
|
||
|
||
/// No description provided for @homeToolPreparing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具准备中'**
|
||
String get homeToolPreparing;
|
||
|
||
/// No description provided for @homeToolExecuting.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'任务执行中'**
|
||
String get homeToolExecuting;
|
||
|
||
/// No description provided for @homeToolExecutionFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'执行失败'**
|
||
String get homeToolExecutionFailed;
|
||
|
||
/// No description provided for @homeToolCompleted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已完成'**
|
||
String get homeToolCompleted;
|
||
|
||
/// No description provided for @homeRecorderPluginUnavailable.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'录音组件未加载,请完全重启 App 后重试'**
|
||
String get homeRecorderPluginUnavailable;
|
||
|
||
/// No description provided for @homeRecorderPermissionDenied.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'录音权限未授权'**
|
||
String get homeRecorderPermissionDenied;
|
||
|
||
/// No description provided for @homeStopRequested.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已请求停止'**
|
||
String get homeStopRequested;
|
||
|
||
/// No description provided for @homeNoValidSpeech.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未识别到有效语音,请靠近麦克风并连续说话后重试'**
|
||
String get homeNoValidSpeech;
|
||
|
||
/// No description provided for @agentStageRouting.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'意图识别中'**
|
||
String get agentStageRouting;
|
||
|
||
/// No description provided for @agentStageRequesting.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'网络请求中'**
|
||
String get agentStageRequesting;
|
||
|
||
/// No description provided for @agentStageExecution.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'任务执行中'**
|
||
String get agentStageExecution;
|
||
|
||
/// No description provided for @agentStageMemory.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'记忆提取中'**
|
||
String get agentStageMemory;
|
||
|
||
/// No description provided for @agentStageProcessing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'任务处理中'**
|
||
String get agentStageProcessing;
|
||
|
||
/// No description provided for @agUiEventRunStarted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'运行开始'**
|
||
String get agUiEventRunStarted;
|
||
|
||
/// No description provided for @agUiEventRunFinished.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'运行完成'**
|
||
String get agUiEventRunFinished;
|
||
|
||
/// No description provided for @agUiEventRunError.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'运行失败'**
|
||
String get agUiEventRunError;
|
||
|
||
/// No description provided for @agUiEventStepStarted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'阶段开始'**
|
||
String get agUiEventStepStarted;
|
||
|
||
/// No description provided for @agUiEventStepFinished.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'阶段完成'**
|
||
String get agUiEventStepFinished;
|
||
|
||
/// No description provided for @agUiEventTextMessageEnd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'文本输出完成'**
|
||
String get agUiEventTextMessageEnd;
|
||
|
||
/// No description provided for @agUiEventToolCallStart.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具调用开始'**
|
||
String get agUiEventToolCallStart;
|
||
|
||
/// No description provided for @agUiEventToolCallArgs.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具参数更新'**
|
||
String get agUiEventToolCallArgs;
|
||
|
||
/// No description provided for @agUiEventToolCallEnd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具调用结束'**
|
||
String get agUiEventToolCallEnd;
|
||
|
||
/// No description provided for @agUiEventToolCallResult.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具结果返回'**
|
||
String get agUiEventToolCallResult;
|
||
|
||
/// No description provided for @agUiEventToolCallError.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具调用失败'**
|
||
String get agUiEventToolCallError;
|
||
|
||
/// No description provided for @agUiEventUnknown.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未知事件'**
|
||
String get agUiEventUnknown;
|
||
|
||
/// No description provided for @chatRunCanceled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'本次运行已取消'**
|
||
String get chatRunCanceled;
|
||
|
||
/// No description provided for @chatRunFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'本次运行已失败'**
|
||
String get chatRunFailed;
|
||
|
||
/// No description provided for @chatSseInterruptedRetry.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'连接中断,请重试'**
|
||
String get chatSseInterruptedRetry;
|
||
|
||
/// No description provided for @chatTimestampToday.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'今天'**
|
||
String get chatTimestampToday;
|
||
|
||
/// No description provided for @chatTimestampYesterday.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'昨天'**
|
||
String get chatTimestampYesterday;
|
||
|
||
/// No description provided for @chatTimestampMonthDay.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{month}月{day}日'**
|
||
String chatTimestampMonthDay(int month, int day);
|
||
|
||
/// No description provided for @homeUnreadMessages.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'有{count}条新消息'**
|
||
String homeUnreadMessages(int count);
|
||
|
||
/// No description provided for @calendarToday.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'今天'**
|
||
String get calendarToday;
|
||
|
||
/// No description provided for @calendarEventNoAccessOrMissing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程不存在或无权限'**
|
||
String get calendarEventNoAccessOrMissing;
|
||
|
||
/// No description provided for @calendarDayWeekMonthYearLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{year}年{month}月'**
|
||
String calendarDayWeekMonthYearLabel(int year, int month);
|
||
|
||
/// No description provided for @validatorPhoneRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入手机号'**
|
||
String get validatorPhoneRequired;
|
||
|
||
/// No description provided for @validatorPhoneInvalid86.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入有效的 +86 手机号'**
|
||
String get validatorPhoneInvalid86;
|
||
|
||
/// No description provided for @validatorPasswordRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入密码'**
|
||
String get validatorPasswordRequired;
|
||
|
||
/// No description provided for @validatorPasswordMin8.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'密码至少需要8位'**
|
||
String get validatorPasswordMin8;
|
||
|
||
/// No description provided for @validatorRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入{fieldName}'**
|
||
String validatorRequired(Object fieldName);
|
||
|
||
/// No description provided for @validatorNicknameRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入昵称'**
|
||
String get validatorNicknameRequired;
|
||
|
||
/// No description provided for @validatorNicknameMin2.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'昵称至少需要2个字符'**
|
||
String get validatorNicknameMin2;
|
||
|
||
/// No description provided for @authAgreementTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请先同意协议'**
|
||
String get authAgreementTitle;
|
||
|
||
/// No description provided for @authAgreementMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'在使用我们的服务之前,请先阅读并同意《用户协议》和《隐私政策》。\n\n只有您同意上述协议,我们才能为您提供服务。'**
|
||
String get authAgreementMessage;
|
||
|
||
/// No description provided for @authAgreementSemantics.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'同意用户协议与隐私政策'**
|
||
String get authAgreementSemantics;
|
||
|
||
/// No description provided for @authAgreementPrefix.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'我已同意'**
|
||
String get authAgreementPrefix;
|
||
|
||
/// No description provided for @authAgreementTerms.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'《用户协议》'**
|
||
String get authAgreementTerms;
|
||
|
||
/// No description provided for @authAgreementAnd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'与'**
|
||
String get authAgreementAnd;
|
||
|
||
/// No description provided for @authAgreementPrivacy.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'《隐私政策》'**
|
||
String get authAgreementPrivacy;
|
||
|
||
/// No description provided for @authPhoneHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入手机号'**
|
||
String get authPhoneHint;
|
||
|
||
/// No description provided for @authCodeHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入验证码'**
|
||
String get authCodeHint;
|
||
|
||
/// No description provided for @authSendCode.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送验证码'**
|
||
String get authSendCode;
|
||
|
||
/// No description provided for @authShowPassword.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'显示密码'**
|
||
String get authShowPassword;
|
||
|
||
/// No description provided for @authHidePassword.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'隐藏密码'**
|
||
String get authHidePassword;
|
||
|
||
/// No description provided for @authLoginFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'登录失败'**
|
||
String get authLoginFailed;
|
||
|
||
/// No description provided for @authCheckInput.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请检查输入'**
|
||
String get authCheckInput;
|
||
|
||
/// No description provided for @authLoginOrRegister.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'登录/注册'**
|
||
String get authLoginOrRegister;
|
||
|
||
/// No description provided for @authInvalidPhone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入有效手机号'**
|
||
String get authInvalidPhone;
|
||
|
||
/// No description provided for @authSendCodeFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'验证码发送失败'**
|
||
String get authSendCodeFailed;
|
||
|
||
/// No description provided for @inputUsernameRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入用户名'**
|
||
String get inputUsernameRequired;
|
||
|
||
/// No description provided for @inputUsernameMin.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名至少 3 个字符'**
|
||
String get inputUsernameMin;
|
||
|
||
/// No description provided for @inputUsernameMax.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名最多 30 个字符'**
|
||
String get inputUsernameMax;
|
||
|
||
/// No description provided for @inputPhoneRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入手机号'**
|
||
String get inputPhoneRequired;
|
||
|
||
/// No description provided for @inputPhoneInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'手机号格式不正确'**
|
||
String get inputPhoneInvalid;
|
||
|
||
/// No description provided for @inputPasswordRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入密码'**
|
||
String get inputPasswordRequired;
|
||
|
||
/// No description provided for @inputPasswordMin.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'密码至少 6 个字符'**
|
||
String get inputPasswordMin;
|
||
|
||
/// No description provided for @inputCodeRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入验证码'**
|
||
String get inputCodeRequired;
|
||
|
||
/// No description provided for @inputCodeInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'验证码必须是 6 位数字'**
|
||
String get inputCodeInvalid;
|
||
|
||
/// No description provided for @uiSchemaInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'无效 UI Schema'**
|
||
String get uiSchemaInvalid;
|
||
|
||
/// No description provided for @uiSchemaUnsupportedLayout.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'不支持的布局节点: {type}'**
|
||
String uiSchemaUnsupportedLayout(Object type);
|
||
|
||
/// No description provided for @uiSchemaUnknownNode.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未知节点: {type}'**
|
||
String uiSchemaUnknownNode(Object type);
|
||
|
||
/// No description provided for @uiSchemaActionFallback.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'操作'**
|
||
String get uiSchemaActionFallback;
|
||
|
||
/// No description provided for @uiSchemaStatusInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提示'**
|
||
String get uiSchemaStatusInfo;
|
||
|
||
/// No description provided for @uiSchemaStatusSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已完成'**
|
||
String get uiSchemaStatusSuccess;
|
||
|
||
/// No description provided for @uiSchemaStatusWarning.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒'**
|
||
String get uiSchemaStatusWarning;
|
||
|
||
/// No description provided for @uiSchemaStatusError.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'失败'**
|
||
String get uiSchemaStatusError;
|
||
|
||
/// No description provided for @uiSchemaStatusPending.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'进行中'**
|
||
String get uiSchemaStatusPending;
|
||
|
||
/// No description provided for @uiSchemaActionNotImplemented.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'该操作暂未接入'**
|
||
String get uiSchemaActionNotImplemented;
|
||
|
||
/// No description provided for @uiSchemaUrlInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'链接无效'**
|
||
String get uiSchemaUrlInvalid;
|
||
|
||
/// No description provided for @uiSchemaUrlOpenFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'无法打开链接'**
|
||
String get uiSchemaUrlOpenFailed;
|
||
|
||
/// No description provided for @uiSchemaNavigationInvalidParams.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'导航参数无效'**
|
||
String get uiSchemaNavigationInvalidParams;
|
||
|
||
/// No description provided for @uiSchemaNavigationInvalidPath.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'导航路径无效'**
|
||
String get uiSchemaNavigationInvalidPath;
|
||
|
||
/// No description provided for @notificationSnoozeMinutes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{minutes} 分钟'**
|
||
String notificationSnoozeMinutes(int minutes);
|
||
|
||
/// No description provided for @notificationSnoozeLater.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'稍后提醒'**
|
||
String get notificationSnoozeLater;
|
||
|
||
/// No description provided for @notificationChannelName.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程闹钟提醒'**
|
||
String get notificationChannelName;
|
||
|
||
/// No description provided for @notificationChannelDescription.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程到点闹钟式提醒通知'**
|
||
String get notificationChannelDescription;
|
||
|
||
/// No description provided for @notificationStartsNow.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程现在开始'**
|
||
String get notificationStartsNow;
|
||
|
||
/// No description provided for @notificationStartsInMinutes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程即将开始(提前{minutes}分钟)'**
|
||
String notificationStartsInMinutes(int minutes);
|
||
|
||
/// No description provided for @notificationLocation.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地点:{location}'**
|
||
String notificationLocation(Object location);
|
||
|
||
/// No description provided for @notificationNotes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'备注:{notes}'**
|
||
String notificationNotes(Object notes);
|
||
|
||
/// No description provided for @todoScreenTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'待办事项'**
|
||
String get todoScreenTitle;
|
||
|
||
/// No description provided for @todoDetailTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'待办详情'**
|
||
String get todoDetailTitle;
|
||
|
||
/// No description provided for @todoCreateTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新建待办'**
|
||
String get todoCreateTitle;
|
||
|
||
/// No description provided for @todoEditTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑待办'**
|
||
String get todoEditTitle;
|
||
|
||
/// No description provided for @todoMoveFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'移动失败'**
|
||
String get todoMoveFailed;
|
||
|
||
/// No description provided for @todoRefreshFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'刷新失败,请稍后重试'**
|
||
String get todoRefreshFailed;
|
||
|
||
/// No description provided for @todoCompleteFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'完成失败: {error}'**
|
||
String todoCompleteFailed(Object error);
|
||
|
||
/// No description provided for @todoNotFound.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'待办不存在'**
|
||
String get todoNotFound;
|
||
|
||
/// No description provided for @todoCalendarEventCards.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历事件卡片'**
|
||
String get todoCalendarEventCards;
|
||
|
||
/// No description provided for @todoPriorityQuadrant.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'所属象限'**
|
||
String get todoPriorityQuadrant;
|
||
|
||
/// No description provided for @todoLinkedCalendarEvents.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'关联日历事件'**
|
||
String get todoLinkedCalendarEvents;
|
||
|
||
/// No description provided for @todoStatus.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'状态'**
|
||
String get todoStatus;
|
||
|
||
/// No description provided for @todoStatusDone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已完成'**
|
||
String get todoStatusDone;
|
||
|
||
/// No description provided for @todoStatusInProgress.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'进行中'**
|
||
String get todoStatusInProgress;
|
||
|
||
/// No description provided for @todoQuadrantOrder.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'象限内顺序 #{order}'**
|
||
String todoQuadrantOrder(int order);
|
||
|
||
/// No description provided for @todoSplitToEvents.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已拆分为{count}个日历事件'**
|
||
String todoSplitToEvents(int count);
|
||
|
||
/// No description provided for @todoNoLinkedEvents.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未关联日历事件'**
|
||
String get todoNoLinkedEvents;
|
||
|
||
/// No description provided for @todoDeleteTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除待办'**
|
||
String get todoDeleteTitle;
|
||
|
||
/// No description provided for @todoDeleteMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确定要删除这个待办吗?'**
|
||
String get todoDeleteMessage;
|
||
|
||
/// No description provided for @todoDeleteConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认删除'**
|
||
String get todoDeleteConfirm;
|
||
|
||
/// No description provided for @todoDeleteFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除失败: {error}'**
|
||
String todoDeleteFailed(Object error);
|
||
|
||
/// No description provided for @todoQuadrantImportantUrgent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'重要紧急'**
|
||
String get todoQuadrantImportantUrgent;
|
||
|
||
/// No description provided for @todoQuadrantUrgentNotImportant.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'紧急不重要'**
|
||
String get todoQuadrantUrgentNotImportant;
|
||
|
||
/// No description provided for @todoQuadrantImportantNotUrgent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'重要不紧急'**
|
||
String get todoQuadrantImportantNotUrgent;
|
||
|
||
/// No description provided for @todoQuadrantNotUrgentNotImportant.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'不紧急不重要'**
|
||
String get todoQuadrantNotUrgentNotImportant;
|
||
|
||
/// No description provided for @todoNoItems.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无待办'**
|
||
String get todoNoItems;
|
||
|
||
/// No description provided for @todoItemCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count}项'**
|
||
String todoItemCount(int count);
|
||
|
||
/// No description provided for @todoInfoTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'待办信息'**
|
||
String get todoInfoTitle;
|
||
|
||
/// No description provided for @todoInfoDescCreate.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'创建后可在四象限中查看并继续调整优先级与关联事件。'**
|
||
String get todoInfoDescCreate;
|
||
|
||
/// No description provided for @todoInfoDescDone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'该待办已完成,你仍可调整内容并重新组织关联事件。'**
|
||
String get todoInfoDescDone;
|
||
|
||
/// No description provided for @todoInfoDescDefault.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'调整标题、优先级和关联事件,保持任务结构清晰。'**
|
||
String get todoInfoDescDefault;
|
||
|
||
/// No description provided for @todoFieldTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'标题'**
|
||
String get todoFieldTitle;
|
||
|
||
/// No description provided for @todoFieldTitleHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入待办标题'**
|
||
String get todoFieldTitleHint;
|
||
|
||
/// No description provided for @todoFieldDescriptionOptional.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'描述(可选)'**
|
||
String get todoFieldDescriptionOptional;
|
||
|
||
/// No description provided for @todoFieldDescriptionHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'补充细节或备注'**
|
||
String get todoFieldDescriptionHint;
|
||
|
||
/// No description provided for @todoPriority.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'优先级'**
|
||
String get todoPriority;
|
||
|
||
/// No description provided for @todoNoSelectableCalendarEvents.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无可关联的日历事件'**
|
||
String get todoNoSelectableCalendarEvents;
|
||
|
||
/// No description provided for @todoSaveInProgress.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存中...'**
|
||
String get todoSaveInProgress;
|
||
|
||
/// No description provided for @todoCreateButton.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'创建待办'**
|
||
String get todoCreateButton;
|
||
|
||
/// No description provided for @todoSaveChanges.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存修改'**
|
||
String get todoSaveChanges;
|
||
|
||
/// No description provided for @todoEnterTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入标题'**
|
||
String get todoEnterTitle;
|
||
|
||
/// No description provided for @todoSaveFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存失败: {error}'**
|
||
String todoSaveFailed(Object error);
|
||
|
||
/// No description provided for @contactsTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系人'**
|
||
String get contactsTitle;
|
||
|
||
/// No description provided for @contactsSearchHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入用户名或手机号'**
|
||
String get contactsSearchHint;
|
||
|
||
/// No description provided for @contactsSearchEmptyQuery.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入用户名或手机号'**
|
||
String get contactsSearchEmptyQuery;
|
||
|
||
/// No description provided for @contactsSearchFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'搜索失败,请稍后重试'**
|
||
String get contactsSearchFailed;
|
||
|
||
/// No description provided for @contactsSearchNoUser.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未找到该用户'**
|
||
String get contactsSearchNoUser;
|
||
|
||
/// No description provided for @contactsFriendRequestSent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'好友请求已发送'**
|
||
String get contactsFriendRequestSent;
|
||
|
||
/// No description provided for @contactsSendFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送失败,请稍后重试'**
|
||
String get contactsSendFailed;
|
||
|
||
/// No description provided for @contactsSectionNew.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新的联系人'**
|
||
String get contactsSectionNew;
|
||
|
||
/// No description provided for @contactsSectionAll.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'全部联系人'**
|
||
String get contactsSectionAll;
|
||
|
||
/// No description provided for @contactsStatusAlreadyFriend.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已是好友'**
|
||
String get contactsStatusAlreadyFriend;
|
||
|
||
/// No description provided for @contactsStatusSent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已发送'**
|
||
String get contactsStatusSent;
|
||
|
||
/// No description provided for @contactsAdd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加'**
|
||
String get contactsAdd;
|
||
|
||
/// No description provided for @contactsEmptyTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无联系人'**
|
||
String get contactsEmptyTitle;
|
||
|
||
/// No description provided for @contactsEmptyDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'搜索手机号添加好友开始聊天吧'**
|
||
String get contactsEmptyDesc;
|
||
|
||
/// No description provided for @contactsPendingConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'等待对方确认'**
|
||
String get contactsPendingConfirm;
|
||
|
||
/// No description provided for @contactsAddSheetTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加 {username}'**
|
||
String contactsAddSheetTitle(Object username);
|
||
|
||
/// No description provided for @contactsAddSheetDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送一条验证信息,方便对方确认你的身份'**
|
||
String get contactsAddSheetDesc;
|
||
|
||
/// No description provided for @contactsAddSheetMessageHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'你好,我是...'**
|
||
String get contactsAddSheetMessageHint;
|
||
|
||
/// No description provided for @contactsSend.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送'**
|
||
String get contactsSend;
|
||
|
||
/// No description provided for @contactEditTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑联系人'**
|
||
String get contactEditTitle;
|
||
|
||
/// No description provided for @contactAddTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加联系人'**
|
||
String get contactAddTitle;
|
||
|
||
/// No description provided for @contactNickname.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'昵称'**
|
||
String get contactNickname;
|
||
|
||
/// No description provided for @contactNicknameHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入昵称'**
|
||
String get contactNicknameHint;
|
||
|
||
/// No description provided for @contactPhone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'手机号'**
|
||
String get contactPhone;
|
||
|
||
/// No description provided for @contactPhoneHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'+86 请输入 11 位手机号'**
|
||
String get contactPhoneHint;
|
||
|
||
/// No description provided for @contactRemark.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'备注'**
|
||
String get contactRemark;
|
||
|
||
/// No description provided for @contactRemarkHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入备注'**
|
||
String get contactRemarkHint;
|
||
|
||
/// No description provided for @contactDelete.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除联系人'**
|
||
String get contactDelete;
|
||
|
||
/// No description provided for @contactFillRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请填写昵称和手机号'**
|
||
String get contactFillRequired;
|
||
|
||
/// No description provided for @contactDeleteConfirmTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除联系人'**
|
||
String get contactDeleteConfirmTitle;
|
||
|
||
/// No description provided for @contactDeleteConfirmMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确定要删除此联系人吗?'**
|
||
String get contactDeleteConfirmMessage;
|
||
|
||
/// No description provided for @contactDetailTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系人详情'**
|
||
String get contactDetailTitle;
|
||
|
||
/// No description provided for @contactDetailLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载联系人信息失败'**
|
||
String get contactDetailLoadFailed;
|
||
|
||
/// No description provided for @contactDetailNotFound.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系人不存在'**
|
||
String get contactDetailNotFound;
|
||
|
||
/// No description provided for @contactDetailUsername.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名'**
|
||
String get contactDetailUsername;
|
||
|
||
/// No description provided for @contactDetailPhone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'手机号'**
|
||
String get contactDetailPhone;
|
||
|
||
/// No description provided for @contactDetailBio.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'个人简介'**
|
||
String get contactDetailBio;
|
||
|
||
/// No description provided for @messagesLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'消息加载失败,请稍后重试'**
|
||
String get messagesLoadFailed;
|
||
|
||
/// No description provided for @messagesSenderLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送者信息加载失败,请下拉重试'**
|
||
String get messagesSenderLoadFailed;
|
||
|
||
/// No description provided for @messagesFriendRequestMissing.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'好友请求数据缺失'**
|
||
String get messagesFriendRequestMissing;
|
||
|
||
/// No description provided for @messagesAcceptedFriendRequest.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已接受好友请求'**
|
||
String get messagesAcceptedFriendRequest;
|
||
|
||
/// No description provided for @messagesRejectedFriendRequest.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已拒绝好友请求'**
|
||
String get messagesRejectedFriendRequest;
|
||
|
||
/// No description provided for @messagesActionFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'处理失败,请稍后重试'**
|
||
String get messagesActionFailed;
|
||
|
||
/// No description provided for @messagesTabUnread.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未读'**
|
||
String get messagesTabUnread;
|
||
|
||
/// No description provided for @messagesTabRead.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已读'**
|
||
String get messagesTabRead;
|
||
|
||
/// No description provided for @messagesEmptyUnreadTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无未读消息'**
|
||
String get messagesEmptyUnreadTitle;
|
||
|
||
/// No description provided for @messagesEmptyReadTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无已读消息'**
|
||
String get messagesEmptyReadTitle;
|
||
|
||
/// No description provided for @messagesEmptyUnreadDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'有新消息时会在这里显示'**
|
||
String get messagesEmptyUnreadDesc;
|
||
|
||
/// No description provided for @messagesEmptyReadDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'处理过的消息会显示在这里'**
|
||
String get messagesEmptyReadDesc;
|
||
|
||
/// No description provided for @messagesFriendRequestLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'好友请求信息加载失败'**
|
||
String get messagesFriendRequestLoadFailed;
|
||
|
||
/// No description provided for @messagesFriendRequestTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{username} 请求添加您为好友'**
|
||
String messagesFriendRequestTitle(Object username);
|
||
|
||
/// No description provided for @messagesCalendarInvite.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历邀请'**
|
||
String get messagesCalendarInvite;
|
||
|
||
/// No description provided for @messagesSystemMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'系统消息'**
|
||
String get messagesSystemMessage;
|
||
|
||
/// No description provided for @messagesTapToView.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'点击查看详情'**
|
||
String get messagesTapToView;
|
||
|
||
/// No description provided for @messagesInviteJoinCalendar.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请您加入日历'**
|
||
String get messagesInviteJoinCalendar;
|
||
|
||
/// No description provided for @messagesInviteAccepted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已接受日历邀请'**
|
||
String get messagesInviteAccepted;
|
||
|
||
/// No description provided for @messagesInviteRejected.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已拒绝日历邀请'**
|
||
String get messagesInviteRejected;
|
||
|
||
/// No description provided for @messagesCalendarUpdated.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'更新了日历事件'**
|
||
String get messagesCalendarUpdated;
|
||
|
||
/// No description provided for @messagesInviteStatusAccepted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已接受'**
|
||
String get messagesInviteStatusAccepted;
|
||
|
||
/// No description provided for @messagesInviteStatusRejected.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已拒绝'**
|
||
String get messagesInviteStatusRejected;
|
||
|
||
/// No description provided for @messagesInviteStatusHandled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已处理'**
|
||
String get messagesInviteStatusHandled;
|
||
|
||
/// No description provided for @messagesInviteDetailNotFound.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请不存在或已失效'**
|
||
String get messagesInviteDetailNotFound;
|
||
|
||
/// No description provided for @messagesInviteAcceptedToast.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已接受邀请'**
|
||
String get messagesInviteAcceptedToast;
|
||
|
||
/// No description provided for @messagesInviteRejectedToast.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已拒绝邀请'**
|
||
String get messagesInviteRejectedToast;
|
||
|
||
/// No description provided for @messagesInviteOperationFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'操作失败,请稍后重试'**
|
||
String get messagesInviteOperationFailed;
|
||
|
||
/// No description provided for @messagesInviteDetailTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历邀请详情'**
|
||
String get messagesInviteDetailTitle;
|
||
|
||
/// No description provided for @messagesInviteEvent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'事件:{title}'**
|
||
String messagesInviteEvent(Object title);
|
||
|
||
/// No description provided for @messagesInviteUnnamedEvent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未命名日程'**
|
||
String get messagesInviteUnnamedEvent;
|
||
|
||
/// No description provided for @messagesInviteSender.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请人:{name}'**
|
||
String messagesInviteSender(Object name);
|
||
|
||
/// No description provided for @messagesCalendarInviteActorLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请人'**
|
||
String get messagesCalendarInviteActorLabel;
|
||
|
||
/// No description provided for @messagesCalendarInviteTimeLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'时间'**
|
||
String get messagesCalendarInviteTimeLabel;
|
||
|
||
/// No description provided for @messagesCalendarInviteDescriptionLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'说明'**
|
||
String get messagesCalendarInviteDescriptionLabel;
|
||
|
||
/// No description provided for @messagesInviteUnknownUser.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未知用户'**
|
||
String get messagesInviteUnknownUser;
|
||
|
||
/// No description provided for @messagesInviteTime.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'消息时间:{time}'**
|
||
String messagesInviteTime(Object time);
|
||
|
||
/// No description provided for @messagesInviteStatus.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'状态:{status}'**
|
||
String messagesInviteStatus(Object status);
|
||
|
||
/// No description provided for @messagesInviteId.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请ID:{id}'**
|
||
String messagesInviteId(Object id);
|
||
|
||
/// No description provided for @messagesInviteTip.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'同意后将加入该日历事件,拒绝后该邀请会被标记为已处理'**
|
||
String get messagesInviteTip;
|
||
|
||
/// No description provided for @messagesInviteAlreadyHandled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'该邀请已处理,无需重复操作'**
|
||
String get messagesInviteAlreadyHandled;
|
||
|
||
/// No description provided for @messagesReject.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'拒绝'**
|
||
String get messagesReject;
|
||
|
||
/// No description provided for @messagesAccept.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'同意'**
|
||
String get messagesAccept;
|
||
|
||
/// No description provided for @messagesAcknowledge.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已知晓'**
|
||
String get messagesAcknowledge;
|
||
|
||
/// No description provided for @messagesProtocolInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'消息数据异常,请稍后重试'**
|
||
String get messagesProtocolInvalid;
|
||
|
||
/// No description provided for @messagesProtocolInvalidCardTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'消息数据异常'**
|
||
String get messagesProtocolInvalidCardTitle;
|
||
|
||
/// No description provided for @messagesProtocolInvalidCardDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'该消息缺少必要字段,无法按业务类型渲染'**
|
||
String get messagesProtocolInvalidCardDesc;
|
||
|
||
/// No description provided for @messagesUnknownActor.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未知用户'**
|
||
String get messagesUnknownActor;
|
||
|
||
/// No description provided for @messagesCalendarUpdatedBy.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{name} 更新了日历'**
|
||
String messagesCalendarUpdatedBy(Object name);
|
||
|
||
/// No description provided for @messagesCalendarDeletedBy.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{name} 删除了日历'**
|
||
String messagesCalendarDeletedBy(Object name);
|
||
|
||
/// No description provided for @messagesCalendarDeleted.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除了日历事件'**
|
||
String get messagesCalendarDeleted;
|
||
|
||
/// No description provided for @messagesCalendarCardDeletedWithTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{title} 已删除'**
|
||
String messagesCalendarCardDeletedWithTitle(Object title);
|
||
|
||
/// No description provided for @messagesStatusPending.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'待处理'**
|
||
String get messagesStatusPending;
|
||
|
||
/// No description provided for @settingsFeaturesTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周期计划'**
|
||
String get settingsFeaturesTitle;
|
||
|
||
/// No description provided for @settingsSectionDaily.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'每日'**
|
||
String get settingsSectionDaily;
|
||
|
||
/// No description provided for @settingsSectionWeekly.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'每周'**
|
||
String get settingsSectionWeekly;
|
||
|
||
/// No description provided for @settingsNoDailyPlans.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无每日计划'**
|
||
String get settingsNoDailyPlans;
|
||
|
||
/// No description provided for @settingsNoWeeklyPlans.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无每周计划'**
|
||
String get settingsNoWeeklyPlans;
|
||
|
||
/// No description provided for @settingsSystemJobReadonly.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'系统预置任务状态不可修改'**
|
||
String get settingsSystemJobReadonly;
|
||
|
||
/// No description provided for @settingsJobStatusEnabled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已启用'**
|
||
String get settingsJobStatusEnabled;
|
||
|
||
/// No description provided for @settingsJobStatusDisabled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未启用'**
|
||
String get settingsJobStatusDisabled;
|
||
|
||
/// No description provided for @settingsJobSourceSystem.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'系统预置'**
|
||
String get settingsJobSourceSystem;
|
||
|
||
/// No description provided for @settingsJobSourceCustom.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'自定义'**
|
||
String get settingsJobSourceCustom;
|
||
|
||
/// No description provided for @settingsCreateJob.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'创建任务'**
|
||
String get settingsCreateJob;
|
||
|
||
/// No description provided for @memoryTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'我的记忆'**
|
||
String get memoryTitle;
|
||
|
||
/// No description provided for @memoryLoadFailedRetry.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载失败,请重试'**
|
||
String get memoryLoadFailedRetry;
|
||
|
||
/// No description provided for @memorySmartTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'智能记忆'**
|
||
String get memorySmartTitle;
|
||
|
||
/// No description provided for @memorySmartDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'持续学习你的偏好和习惯'**
|
||
String get memorySmartDesc;
|
||
|
||
/// No description provided for @memoryReload.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'重新加载'**
|
||
String get memoryReload;
|
||
|
||
/// No description provided for @memorySectionUser.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户记忆'**
|
||
String get memorySectionUser;
|
||
|
||
/// No description provided for @memorySectionWork.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工作记忆'**
|
||
String get memorySectionWork;
|
||
|
||
/// No description provided for @memoryUserProfile.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'个人偏好'**
|
||
String get memoryUserProfile;
|
||
|
||
/// No description provided for @memoryWorkProfile.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工作画像'**
|
||
String get memoryWorkProfile;
|
||
|
||
/// No description provided for @memoryNoInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无信息'**
|
||
String get memoryNoInfo;
|
||
|
||
/// No description provided for @memoryStatContacts.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系人'**
|
||
String get memoryStatContacts;
|
||
|
||
/// No description provided for @memoryStatPlaces.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地点'**
|
||
String get memoryStatPlaces;
|
||
|
||
/// No description provided for @memoryStatInterests.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'兴趣'**
|
||
String get memoryStatInterests;
|
||
|
||
/// No description provided for @memoryStatSchedule.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程'**
|
||
String get memoryStatSchedule;
|
||
|
||
/// No description provided for @memoryStatExpertise.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'专长'**
|
||
String get memoryStatExpertise;
|
||
|
||
/// No description provided for @memoryStatTools.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具'**
|
||
String get memoryStatTools;
|
||
|
||
/// No description provided for @memoryStatProjects.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'项目'**
|
||
String get memoryStatProjects;
|
||
|
||
/// No description provided for @memoryStatTeam.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'团队'**
|
||
String get memoryStatTeam;
|
||
|
||
/// No description provided for @memorySummaryContactsCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 位联系人'**
|
||
String memorySummaryContactsCount(int count);
|
||
|
||
/// No description provided for @memorySummaryPlacesCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 个地点'**
|
||
String memorySummaryPlacesCount(int count);
|
||
|
||
/// No description provided for @memorySummaryInterestsCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 个兴趣'**
|
||
String memorySummaryInterestsCount(int count);
|
||
|
||
/// No description provided for @memorySummaryExpertiseCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 项专长'**
|
||
String memorySummaryExpertiseCount(int count);
|
||
|
||
/// No description provided for @memorySummaryProjectsCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 个项目'**
|
||
String memorySummaryProjectsCount(int count);
|
||
|
||
/// No description provided for @memorySummaryTeamMembersCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 位团队成员'**
|
||
String memorySummaryTeamMembersCount(int count);
|
||
|
||
/// No description provided for @toolCalendarRead.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'读取日程'**
|
||
String get toolCalendarRead;
|
||
|
||
/// No description provided for @toolCalendarWrite.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'写入日程'**
|
||
String get toolCalendarWrite;
|
||
|
||
/// No description provided for @toolCalendarShare.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'共享日程'**
|
||
String get toolCalendarShare;
|
||
|
||
/// No description provided for @toolUserLookup.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'查找联系人'**
|
||
String get toolUserLookup;
|
||
|
||
/// No description provided for @toolMemoryWrite.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'写入记忆'**
|
||
String get toolMemoryWrite;
|
||
|
||
/// No description provided for @toolMemoryForget.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'清理记忆'**
|
||
String get toolMemoryForget;
|
||
|
||
/// No description provided for @settingsTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'设置'**
|
||
String get settingsTitle;
|
||
|
||
/// No description provided for @settingsUnset.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未设置'**
|
||
String get settingsUnset;
|
||
|
||
/// No description provided for @settingsFreeBadge.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'免费'**
|
||
String get settingsFreeBadge;
|
||
|
||
/// No description provided for @settingsNoContacts.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无联系人'**
|
||
String get settingsNoContacts;
|
||
|
||
/// No description provided for @settingsContactsAddedOne.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已添加 1 位:{name}'**
|
||
String settingsContactsAddedOne(Object name);
|
||
|
||
/// No description provided for @settingsContactsAddedMany.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已添加 {count} 位联系人'**
|
||
String settingsContactsAddedMany(int count);
|
||
|
||
/// No description provided for @settingsNoEnabledPlans.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无启用计划'**
|
||
String get settingsNoEnabledPlans;
|
||
|
||
/// No description provided for @settingsEnabledPlanOne.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已启用:{title}'**
|
||
String settingsEnabledPlanOne(Object title);
|
||
|
||
/// No description provided for @settingsEnabledPlanMany.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已启用 {count} 个计划'**
|
||
String settingsEnabledPlanMany(int count);
|
||
|
||
/// No description provided for @settingsUpgradeProTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'升级到 Pro'**
|
||
String get settingsUpgradeProTitle;
|
||
|
||
/// No description provided for @settingsUpgradeProDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'解锁更多高级功能'**
|
||
String get settingsUpgradeProDesc;
|
||
|
||
/// No description provided for @settingsUpgradeButton.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'升级'**
|
||
String get settingsUpgradeButton;
|
||
|
||
/// No description provided for @settingsMenuNotifications.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒设置'**
|
||
String get settingsMenuNotifications;
|
||
|
||
/// No description provided for @settingsMenuCheckUpdates.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'检查更新'**
|
||
String get settingsMenuCheckUpdates;
|
||
|
||
/// No description provided for @settingsMenuClearCache.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'清理缓存'**
|
||
String get settingsMenuClearCache;
|
||
|
||
/// No description provided for @settingsLogoutTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'退出登录'**
|
||
String get settingsLogoutTitle;
|
||
|
||
/// No description provided for @settingsLogoutConfirmMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确定退出当前账户吗?'**
|
||
String get settingsLogoutConfirmMessage;
|
||
|
||
/// No description provided for @settingsLogoutConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认退出'**
|
||
String get settingsLogoutConfirm;
|
||
|
||
/// No description provided for @settingsLogoutFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'退出失败,请稍后重试'**
|
||
String get settingsLogoutFailed;
|
||
|
||
/// No description provided for @settingsLatestVersion.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'当前已是最新版本'**
|
||
String get settingsLatestVersion;
|
||
|
||
/// No description provided for @settingsUpdateRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'有新版本可用 ({version}),请立即更新'**
|
||
String settingsUpdateRequired(Object version);
|
||
|
||
/// No description provided for @settingsUpdateOptional.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发现新版本 ({version}),是否更新?'**
|
||
String settingsUpdateOptional(Object version);
|
||
|
||
/// No description provided for @settingsUpdateDialogTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'检查更新'**
|
||
String get settingsUpdateDialogTitle;
|
||
|
||
/// No description provided for @settingsUpdateAction.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'更新'**
|
||
String get settingsUpdateAction;
|
||
|
||
/// No description provided for @settingsDownloadLink.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'下载链接: {url}'**
|
||
String settingsDownloadLink(Object url);
|
||
|
||
/// No description provided for @settingsUpdateCheckFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'检查更新失败'**
|
||
String get settingsUpdateCheckFailed;
|
||
|
||
/// No description provided for @settingsClearCacheTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'清理本地缓存'**
|
||
String get settingsClearCacheTitle;
|
||
|
||
/// No description provided for @settingsClearCacheMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'将清理本地缓存并重新拉取最新数据,是否继续?'**
|
||
String get settingsClearCacheMessage;
|
||
|
||
/// No description provided for @settingsClearCacheAction.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认清理'**
|
||
String get settingsClearCacheAction;
|
||
|
||
/// No description provided for @settingsClearCacheSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'缓存已清理,正在重新拉取数据'**
|
||
String get settingsClearCacheSuccess;
|
||
|
||
/// No description provided for @settingsClearCacheFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'清理缓存失败,请稍后重试'**
|
||
String get settingsClearCacheFailed;
|
||
|
||
/// No description provided for @settingsJobDetailTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'任务详情'**
|
||
String get settingsJobDetailTitle;
|
||
|
||
/// No description provided for @settingsJobCreatePageTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新建周期计划'**
|
||
String get settingsJobCreatePageTitle;
|
||
|
||
/// No description provided for @settingsJobLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载失败'**
|
||
String get settingsJobLoadFailed;
|
||
|
||
/// No description provided for @settingsJobRetry.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'重试'**
|
||
String get settingsJobRetry;
|
||
|
||
/// No description provided for @settingsJobPlanConfig.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'计划配置'**
|
||
String get settingsJobPlanConfig;
|
||
|
||
/// No description provided for @settingsJobCycle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周期'**
|
||
String get settingsJobCycle;
|
||
|
||
/// No description provided for @settingsJobRunAt.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'执行时间'**
|
||
String get settingsJobRunAt;
|
||
|
||
/// No description provided for @settingsJobTimezone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'时区'**
|
||
String get settingsJobTimezone;
|
||
|
||
/// No description provided for @settingsJobStatusLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'状态'**
|
||
String get settingsJobStatusLabel;
|
||
|
||
/// No description provided for @settingsJobInputTemplate.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入模板'**
|
||
String get settingsJobInputTemplate;
|
||
|
||
/// No description provided for @settingsJobEnabledTools.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'启用工具'**
|
||
String get settingsJobEnabledTools;
|
||
|
||
/// No description provided for @settingsJobContextMode.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'上下文消息模式'**
|
||
String get settingsJobContextMode;
|
||
|
||
/// No description provided for @settingsJobContextSource.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'来源'**
|
||
String get settingsJobContextSource;
|
||
|
||
/// No description provided for @settingsJobWindowMode.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'窗口模式'**
|
||
String get settingsJobWindowMode;
|
||
|
||
/// No description provided for @settingsJobWindowCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'窗口数量'**
|
||
String get settingsJobWindowCount;
|
||
|
||
/// No description provided for @settingsJobWindowCountValue.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count}'**
|
||
String settingsJobWindowCountValue(int count);
|
||
|
||
/// No description provided for @settingsJobDeleteTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除周期计划'**
|
||
String get settingsJobDeleteTitle;
|
||
|
||
/// No description provided for @settingsJobDeleteMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除后将无法恢复,是否继续?'**
|
||
String get settingsJobDeleteMessage;
|
||
|
||
/// No description provided for @settingsJobDeleteConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认删除'**
|
||
String get settingsJobDeleteConfirm;
|
||
|
||
/// No description provided for @settingsJobDeleteSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除成功'**
|
||
String get settingsJobDeleteSuccess;
|
||
|
||
/// No description provided for @settingsJobBasicInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基本信息'**
|
||
String get settingsJobBasicInfo;
|
||
|
||
/// No description provided for @settingsJobName.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'任务名称'**
|
||
String get settingsJobName;
|
||
|
||
/// No description provided for @settingsJobNameHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入任务名称'**
|
||
String get settingsJobNameHint;
|
||
|
||
/// No description provided for @settingsJobTemplateHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'例如:请总结今天的记忆内容'**
|
||
String get settingsJobTemplateHint;
|
||
|
||
/// No description provided for @settingsJobExecutionRules.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'执行规则'**
|
||
String get settingsJobExecutionRules;
|
||
|
||
/// No description provided for @settingsJobToolSelection.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工具选择'**
|
||
String get settingsJobToolSelection;
|
||
|
||
/// No description provided for @settingsJobCounterValue.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{label}:{value}'**
|
||
String settingsJobCounterValue(Object label, int value);
|
||
|
||
/// No description provided for @settingsJobWeekdayMon.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周一'**
|
||
String get settingsJobWeekdayMon;
|
||
|
||
/// No description provided for @settingsJobWeekdayTue.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周二'**
|
||
String get settingsJobWeekdayTue;
|
||
|
||
/// No description provided for @settingsJobWeekdayWed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周三'**
|
||
String get settingsJobWeekdayWed;
|
||
|
||
/// No description provided for @settingsJobWeekdayThu.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周四'**
|
||
String get settingsJobWeekdayThu;
|
||
|
||
/// No description provided for @settingsJobWeekdayFri.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周五'**
|
||
String get settingsJobWeekdayFri;
|
||
|
||
/// No description provided for @settingsJobWeekdaySat.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周六'**
|
||
String get settingsJobWeekdaySat;
|
||
|
||
/// No description provided for @settingsJobWeekdaySun.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周日'**
|
||
String get settingsJobWeekdaySun;
|
||
|
||
/// No description provided for @settingsJobRunDays.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'执行日'**
|
||
String get settingsJobRunDays;
|
||
|
||
/// No description provided for @settingsJobNoToolsEnabled.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未启用工具'**
|
||
String get settingsJobNoToolsEnabled;
|
||
|
||
/// No description provided for @settingsJobPickCycle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择周期'**
|
||
String get settingsJobPickCycle;
|
||
|
||
/// No description provided for @settingsJobScheduleDaily.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'每日'**
|
||
String get settingsJobScheduleDaily;
|
||
|
||
/// No description provided for @settingsJobScheduleWeekly.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'每周'**
|
||
String get settingsJobScheduleWeekly;
|
||
|
||
/// No description provided for @settingsJobPickTimezone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择时区'**
|
||
String get settingsJobPickTimezone;
|
||
|
||
/// No description provided for @settingsJobPickContextSource.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择上下文来源'**
|
||
String get settingsJobPickContextSource;
|
||
|
||
/// No description provided for @settingsJobContextSourceLatestChat.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'最近聊天'**
|
||
String get settingsJobContextSourceLatestChat;
|
||
|
||
/// No description provided for @settingsJobPickWindowMode.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择窗口模式'**
|
||
String get settingsJobPickWindowMode;
|
||
|
||
/// No description provided for @settingsJobWindowModeByDay.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'按天数'**
|
||
String get settingsJobWindowModeByDay;
|
||
|
||
/// No description provided for @settingsJobWindowModeByNumber.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'按消息数'**
|
||
String get settingsJobWindowModeByNumber;
|
||
|
||
/// No description provided for @settingsJobFillRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请填写完整信息'**
|
||
String get settingsJobFillRequired;
|
||
|
||
/// No description provided for @settingsJobCreateSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'创建成功'**
|
||
String get settingsJobCreateSuccess;
|
||
|
||
/// No description provided for @settingsMemorySaveSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存成功'**
|
||
String get settingsMemorySaveSuccess;
|
||
|
||
/// No description provided for @settingsMemorySaveFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存失败'**
|
||
String get settingsMemorySaveFailed;
|
||
|
||
/// No description provided for @settingsMemoryInputHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入{label}'**
|
||
String settingsMemoryInputHint(Object label);
|
||
|
||
/// No description provided for @settingsMemoryInputContent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入内容'**
|
||
String get settingsMemoryInputContent;
|
||
|
||
/// No description provided for @settingsUserMemoryEditTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑个人偏好'**
|
||
String get settingsUserMemoryEditTitle;
|
||
|
||
/// No description provided for @settingsUserMemoryEmptyProfile.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无个人偏好信息'**
|
||
String get settingsUserMemoryEmptyProfile;
|
||
|
||
/// No description provided for @settingsUserMemorySectionBasic.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基本信息'**
|
||
String get settingsUserMemorySectionBasic;
|
||
|
||
/// No description provided for @settingsUserMemorySectionPreferences.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好设置'**
|
||
String get settingsUserMemorySectionPreferences;
|
||
|
||
/// No description provided for @settingsUserMemorySectionSchedule.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程偏好'**
|
||
String get settingsUserMemorySectionSchedule;
|
||
|
||
/// No description provided for @settingsUserMemorySectionContacts.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系人'**
|
||
String get settingsUserMemorySectionContacts;
|
||
|
||
/// No description provided for @settingsUserMemorySectionPlaces.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地点'**
|
||
String get settingsUserMemorySectionPlaces;
|
||
|
||
/// No description provided for @settingsUserMemorySectionInterests.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'兴趣'**
|
||
String get settingsUserMemorySectionInterests;
|
||
|
||
/// No description provided for @settingsUserMemorySectionAvoidTopics.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'回避话题'**
|
||
String get settingsUserMemorySectionAvoidTopics;
|
||
|
||
/// No description provided for @settingsUserMemorySectionCustomRules.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'自定义规则'**
|
||
String get settingsUserMemorySectionCustomRules;
|
||
|
||
/// No description provided for @settingsUserMemorySectionRoutines.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周期习惯'**
|
||
String get settingsUserMemorySectionRoutines;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldOccupation.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'职业'**
|
||
String get settingsUserMemoryFieldOccupation;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldTimezone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'时区'**
|
||
String get settingsUserMemoryFieldTimezone;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldPrimaryLanguage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'主要语言'**
|
||
String get settingsUserMemoryFieldPrimaryLanguage;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldCommunicationStyle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'沟通风格'**
|
||
String get settingsUserMemoryFieldCommunicationStyle;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldLocationPreference.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'位置偏好'**
|
||
String get settingsUserMemoryFieldLocationPreference;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldWorkLifestyle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工作生活方式'**
|
||
String get settingsUserMemoryFieldWorkLifestyle;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldLanguagePreference.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'语言偏好'**
|
||
String get settingsUserMemoryFieldLanguagePreference;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldNotificationPreference.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'通知偏好'**
|
||
String get settingsUserMemoryFieldNotificationPreference;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldMeetingBuffer.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'会议缓冲时间'**
|
||
String get settingsUserMemoryFieldMeetingBuffer;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldMaxMeetingsPerDay.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'每日最多会议'**
|
||
String get settingsUserMemoryFieldMaxMeetingsPerDay;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldPreferredMeetingDuration.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好会议时长'**
|
||
String get settingsUserMemoryFieldPreferredMeetingDuration;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldNotes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'备注'**
|
||
String get settingsUserMemoryFieldNotes;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldName.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'名称'**
|
||
String get settingsUserMemoryFieldName;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldRelationship.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'关系'**
|
||
String get settingsUserMemoryFieldRelationship;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldRole.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'角色'**
|
||
String get settingsUserMemoryFieldRole;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldContact.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'联系方式'**
|
||
String get settingsUserMemoryFieldContact;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldCategory.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'类别'**
|
||
String get settingsUserMemoryFieldCategory;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldPreference.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好'**
|
||
String get settingsUserMemoryFieldPreference;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldAddress.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地址'**
|
||
String get settingsUserMemoryFieldAddress;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldDescription.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'描述'**
|
||
String get settingsUserMemoryFieldDescription;
|
||
|
||
/// No description provided for @settingsUserMemoryFieldCadence.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周期'**
|
||
String get settingsUserMemoryFieldCadence;
|
||
|
||
/// No description provided for @settingsUserMemoryMinute.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'分钟'**
|
||
String get settingsUserMemoryMinute;
|
||
|
||
/// No description provided for @settingsUserMemoryMinutesValue.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{minutes} 分钟'**
|
||
String settingsUserMemoryMinutesValue(int minutes);
|
||
|
||
/// No description provided for @settingsUserMemoryEmptyContacts.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无联系人'**
|
||
String get settingsUserMemoryEmptyContacts;
|
||
|
||
/// No description provided for @settingsUserMemoryEmptyPlaces.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无地点'**
|
||
String get settingsUserMemoryEmptyPlaces;
|
||
|
||
/// No description provided for @settingsUserMemoryEmptyRoutines.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无周期习惯'**
|
||
String get settingsUserMemoryEmptyRoutines;
|
||
|
||
/// No description provided for @settingsUserMemoryAddContact.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加联系人'**
|
||
String get settingsUserMemoryAddContact;
|
||
|
||
/// No description provided for @settingsUserMemoryNewContact.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新联系人'**
|
||
String get settingsUserMemoryNewContact;
|
||
|
||
/// No description provided for @settingsUserMemoryAddPlace.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加地点'**
|
||
String get settingsUserMemoryAddPlace;
|
||
|
||
/// No description provided for @settingsUserMemoryNewPlace.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新地点'**
|
||
String get settingsUserMemoryNewPlace;
|
||
|
||
/// No description provided for @settingsUserMemoryAddRoutine.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加习惯'**
|
||
String get settingsUserMemoryAddRoutine;
|
||
|
||
/// No description provided for @settingsUserMemoryNewRoutine.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新习惯'**
|
||
String get settingsUserMemoryNewRoutine;
|
||
|
||
/// No description provided for @settingsWorkMemoryEditTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑工作画像'**
|
||
String get settingsWorkMemoryEditTitle;
|
||
|
||
/// No description provided for @settingsWorkMemoryEmptyProfile.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无工作信息'**
|
||
String get settingsWorkMemoryEmptyProfile;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionBasic.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基本信息'**
|
||
String get settingsWorkMemorySectionBasic;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionExpertise.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'专长'**
|
||
String get settingsWorkMemorySectionExpertise;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionPreferredTools.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好工具'**
|
||
String get settingsWorkMemorySectionPreferredTools;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionCurrentProjects.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'当前项目'**
|
||
String get settingsWorkMemorySectionCurrentProjects;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionTeamMembers.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'团队成员'**
|
||
String get settingsWorkMemorySectionTeamMembers;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionWorkHabits.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工作习惯'**
|
||
String get settingsWorkMemorySectionWorkHabits;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionTeamContext.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'团队背景'**
|
||
String get settingsWorkMemorySectionTeamContext;
|
||
|
||
/// No description provided for @settingsWorkMemorySectionWorkRules.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'工作规则'**
|
||
String get settingsWorkMemorySectionWorkRules;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldOccupation.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'职业'**
|
||
String get settingsWorkMemoryFieldOccupation;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldAvailableHours.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'可用时段'**
|
||
String get settingsWorkMemoryFieldAvailableHours;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldDeepWorkBlocks.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'深度工作时段'**
|
||
String get settingsWorkMemoryFieldDeepWorkBlocks;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldPreferredMeetingWindows.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好会议时段'**
|
||
String get settingsWorkMemoryFieldPreferredMeetingWindows;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldNoMeetingWindows.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'免打扰时段'**
|
||
String get settingsWorkMemoryFieldNoMeetingWindows;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldPreferredMeetingDuration.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'偏好会议时长'**
|
||
String get settingsWorkMemoryFieldPreferredMeetingDuration;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldNotificationChannel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'通知渠道'**
|
||
String get settingsWorkMemoryFieldNotificationChannel;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldNotes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'备注'**
|
||
String get settingsWorkMemoryFieldNotes;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldTeamContext.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'团队背景描述'**
|
||
String get settingsWorkMemoryFieldTeamContext;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldProjectName.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'项目名称'**
|
||
String get settingsWorkMemoryFieldProjectName;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldStatus.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'状态'**
|
||
String get settingsWorkMemoryFieldStatus;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldPriority.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'优先级'**
|
||
String get settingsWorkMemoryFieldPriority;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldDeadline.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'截止日期'**
|
||
String get settingsWorkMemoryFieldDeadline;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldCollaborators.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'协作人'**
|
||
String get settingsWorkMemoryFieldCollaborators;
|
||
|
||
/// No description provided for @settingsWorkMemoryFieldMilestones.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'关键里程碑'**
|
||
String get settingsWorkMemoryFieldMilestones;
|
||
|
||
/// No description provided for @settingsWorkMemoryMinute.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'分钟'**
|
||
String get settingsWorkMemoryMinute;
|
||
|
||
/// No description provided for @settingsWorkMemoryMilestoneCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 项'**
|
||
String settingsWorkMemoryMilestoneCount(int count);
|
||
|
||
/// No description provided for @settingsWorkMemoryEmptyProjects.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无项目'**
|
||
String get settingsWorkMemoryEmptyProjects;
|
||
|
||
/// No description provided for @settingsWorkMemoryEmptyTeamMembers.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'暂无团队成员'**
|
||
String get settingsWorkMemoryEmptyTeamMembers;
|
||
|
||
/// No description provided for @settingsWorkMemoryTimeWindowCount.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{count} 个时段'**
|
||
String settingsWorkMemoryTimeWindowCount(int count);
|
||
|
||
/// No description provided for @settingsWorkMemoryAddProject.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加项目'**
|
||
String get settingsWorkMemoryAddProject;
|
||
|
||
/// No description provided for @settingsWorkMemoryNewProject.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新项目'**
|
||
String get settingsWorkMemoryNewProject;
|
||
|
||
/// No description provided for @settingsWorkMemoryAddMember.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'添加成员'**
|
||
String get settingsWorkMemoryAddMember;
|
||
|
||
/// No description provided for @settingsWorkMemoryNewMember.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新成员'**
|
||
String get settingsWorkMemoryNewMember;
|
||
|
||
/// No description provided for @calendarDetailTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日程详情'**
|
||
String get calendarDetailTitle;
|
||
|
||
/// No description provided for @calendarDetailNotFoundTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'未找到该日程'**
|
||
String get calendarDetailNotFoundTitle;
|
||
|
||
/// No description provided for @calendarDetailNotFoundDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'可能已被删除,或你没有访问权限。'**
|
||
String get calendarDetailNotFoundDesc;
|
||
|
||
/// No description provided for @calendarDetailTimeArrangement.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'时间安排'**
|
||
String get calendarDetailTimeArrangement;
|
||
|
||
/// No description provided for @calendarDetailDateLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{year}年{month}月{day}日 {weekday}'**
|
||
String calendarDetailDateLabel(int year, int month, int day, Object weekday);
|
||
|
||
/// No description provided for @calendarDetailBasicInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基础信息'**
|
||
String get calendarDetailBasicInfo;
|
||
|
||
/// No description provided for @calendarDetailDate.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日期'**
|
||
String get calendarDetailDate;
|
||
|
||
/// No description provided for @calendarDetailReminder.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒'**
|
||
String get calendarDetailReminder;
|
||
|
||
/// No description provided for @calendarDetailColor.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'颜色'**
|
||
String get calendarDetailColor;
|
||
|
||
/// No description provided for @calendarDetailExtraInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'补充信息'**
|
||
String get calendarDetailExtraInfo;
|
||
|
||
/// No description provided for @calendarDetailLocation.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地点'**
|
||
String get calendarDetailLocation;
|
||
|
||
/// No description provided for @calendarDetailDescription.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'描述'**
|
||
String get calendarDetailDescription;
|
||
|
||
/// No description provided for @calendarDetailNotes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'备注'**
|
||
String get calendarDetailNotes;
|
||
|
||
/// No description provided for @calendarDetailReminderNone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'无'**
|
||
String get calendarDetailReminderNone;
|
||
|
||
/// No description provided for @calendarDetailReminderOnTime.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'准时提醒'**
|
||
String get calendarDetailReminderOnTime;
|
||
|
||
/// No description provided for @calendarDetailReminderBeforeMinutes.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'开始前{minutes}分钟'**
|
||
String calendarDetailReminderBeforeMinutes(int minutes);
|
||
|
||
/// No description provided for @calendarWeekdayMon.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周一'**
|
||
String get calendarWeekdayMon;
|
||
|
||
/// No description provided for @calendarWeekdayTue.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周二'**
|
||
String get calendarWeekdayTue;
|
||
|
||
/// No description provided for @calendarWeekdayWed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周三'**
|
||
String get calendarWeekdayWed;
|
||
|
||
/// No description provided for @calendarWeekdayThu.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周四'**
|
||
String get calendarWeekdayThu;
|
||
|
||
/// No description provided for @calendarWeekdayFri.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周五'**
|
||
String get calendarWeekdayFri;
|
||
|
||
/// No description provided for @calendarWeekdaySat.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周六'**
|
||
String get calendarWeekdaySat;
|
||
|
||
/// No description provided for @calendarWeekdaySun.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'周日'**
|
||
String get calendarWeekdaySun;
|
||
|
||
/// No description provided for @calendarDetailDeleteTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'删除日程'**
|
||
String get calendarDetailDeleteTitle;
|
||
|
||
/// No description provided for @calendarDetailDeleteMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确定要删除这个日程吗?'**
|
||
String get calendarDetailDeleteMessage;
|
||
|
||
/// No description provided for @calendarDetailDeleteConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认删除'**
|
||
String get calendarDetailDeleteConfirm;
|
||
|
||
/// No description provided for @calendarDetailArchiveTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'归档日程'**
|
||
String get calendarDetailArchiveTitle;
|
||
|
||
/// No description provided for @calendarDetailArchiveMessage.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'归档后此日程将标记为过期,确定要归档吗?'**
|
||
String get calendarDetailArchiveMessage;
|
||
|
||
/// No description provided for @calendarDetailArchiveConfirm.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'确认归档'**
|
||
String get calendarDetailArchiveConfirm;
|
||
|
||
/// No description provided for @calendarDetailArchiveFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'归档失败'**
|
||
String get calendarDetailArchiveFailed;
|
||
|
||
/// No description provided for @calendarDetailDateTimeShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{month}月{day}日 {weekday} {time}'**
|
||
String calendarDetailDateTimeShort(
|
||
int month,
|
||
int day,
|
||
Object weekday,
|
||
Object time,
|
||
);
|
||
|
||
/// No description provided for @calendarDetailRangeWithStartEnd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'开始: {start}\n结束: {end}'**
|
||
String calendarDetailRangeWithStartEnd(Object start, Object end);
|
||
|
||
/// No description provided for @calendarDetailStatusExpired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已过期'**
|
||
String get calendarDetailStatusExpired;
|
||
|
||
/// No description provided for @calendarCreateEditTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑日程'**
|
||
String get calendarCreateEditTitle;
|
||
|
||
/// No description provided for @calendarCreateNewTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'新建日程'**
|
||
String get calendarCreateNewTitle;
|
||
|
||
/// No description provided for @calendarCreateTabBasic.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基础'**
|
||
String get calendarCreateTabBasic;
|
||
|
||
/// No description provided for @calendarCreateTabAdvanced.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'进阶'**
|
||
String get calendarCreateTabAdvanced;
|
||
|
||
/// No description provided for @calendarCreateFieldTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'标题'**
|
||
String get calendarCreateFieldTitle;
|
||
|
||
/// No description provided for @calendarCreateFieldTitleHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入日程标题'**
|
||
String get calendarCreateFieldTitleHint;
|
||
|
||
/// No description provided for @calendarCreateFieldStart.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'开始'**
|
||
String get calendarCreateFieldStart;
|
||
|
||
/// No description provided for @calendarCreateFieldEnd.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'结束'**
|
||
String get calendarCreateFieldEnd;
|
||
|
||
/// No description provided for @calendarCreateFieldDescription.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'描述'**
|
||
String get calendarCreateFieldDescription;
|
||
|
||
/// No description provided for @calendarCreateFieldDescriptionHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入描述'**
|
||
String get calendarCreateFieldDescriptionHint;
|
||
|
||
/// No description provided for @calendarCreateFieldLocation.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'地点'**
|
||
String get calendarCreateFieldLocation;
|
||
|
||
/// No description provided for @calendarCreateFieldLocationHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入地点'**
|
||
String get calendarCreateFieldLocationHint;
|
||
|
||
/// No description provided for @calendarCreateFieldNotesHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入备注'**
|
||
String get calendarCreateFieldNotesHint;
|
||
|
||
/// No description provided for @calendarCreateOptionalField.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{label}(可选)'**
|
||
String calendarCreateOptionalField(Object label);
|
||
|
||
/// No description provided for @calendarCreateDateTimeLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{year}年{month}月{day}日 {hour}:{minute}'**
|
||
String calendarCreateDateTimeLabel(
|
||
int year,
|
||
int month,
|
||
int day,
|
||
Object hour,
|
||
Object minute,
|
||
);
|
||
|
||
/// No description provided for @calendarCreateReminderNone.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'无提醒'**
|
||
String get calendarCreateReminderNone;
|
||
|
||
/// No description provided for @calendarCreateReminderTime.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒时间'**
|
||
String get calendarCreateReminderTime;
|
||
|
||
/// No description provided for @calendarCreatePickReminderTime.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择提醒时间'**
|
||
String get calendarCreatePickReminderTime;
|
||
|
||
/// No description provided for @calendarCreateReminderPermissionFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'提醒创建失败,请检查通知权限'**
|
||
String get calendarCreateReminderPermissionFailed;
|
||
|
||
/// No description provided for @settingsEditProfileLoadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'加载用户信息失败'**
|
||
String get settingsEditProfileLoadFailed;
|
||
|
||
/// No description provided for @settingsEditProfileAvatarUploadSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'头像上传成功'**
|
||
String get settingsEditProfileAvatarUploadSuccess;
|
||
|
||
/// No description provided for @settingsEditProfileAvatarUploadFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'头像上传失败,请重试'**
|
||
String get settingsEditProfileAvatarUploadFailed;
|
||
|
||
/// No description provided for @settingsEditProfileUsernameRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名不能为空'**
|
||
String get settingsEditProfileUsernameRequired;
|
||
|
||
/// No description provided for @settingsEditProfileUsernameLengthInvalid.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名需要3-30个字符'**
|
||
String get settingsEditProfileUsernameLengthInvalid;
|
||
|
||
/// No description provided for @settingsEditProfileSaveSuccess.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存成功'**
|
||
String get settingsEditProfileSaveSuccess;
|
||
|
||
/// No description provided for @settingsEditProfileSaveFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存失败,请重试'**
|
||
String get settingsEditProfileSaveFailed;
|
||
|
||
/// No description provided for @settingsEditProfileTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑资料'**
|
||
String get settingsEditProfileTitle;
|
||
|
||
/// No description provided for @settingsEditProfileSaveChanges.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'保存修改'**
|
||
String get settingsEditProfileSaveChanges;
|
||
|
||
/// No description provided for @settingsEditProfileBasicInfo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'基础信息'**
|
||
String get settingsEditProfileBasicInfo;
|
||
|
||
/// No description provided for @settingsEditProfileUsername.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'用户名'**
|
||
String get settingsEditProfileUsername;
|
||
|
||
/// No description provided for @settingsEditProfileUsernameHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入用户名'**
|
||
String get settingsEditProfileUsernameHint;
|
||
|
||
/// No description provided for @settingsEditProfileBio.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'个人简介'**
|
||
String get settingsEditProfileBio;
|
||
|
||
/// No description provided for @settingsEditProfileBioContent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'简介内容'**
|
||
String get settingsEditProfileBioContent;
|
||
|
||
/// No description provided for @settingsEditProfileBioHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'介绍一下自己吧'**
|
||
String get settingsEditProfileBioHint;
|
||
|
||
/// No description provided for @calendarSharePhoneRequired.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'请输入手机号'**
|
||
String get calendarSharePhoneRequired;
|
||
|
||
/// No description provided for @calendarShareInviteSent.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请已发送'**
|
||
String get calendarShareInviteSent;
|
||
|
||
/// No description provided for @calendarShareInviteFailed.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送邀请失败'**
|
||
String get calendarShareInviteFailed;
|
||
|
||
/// No description provided for @calendarShareTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'分享日历'**
|
||
String get calendarShareTitle;
|
||
|
||
/// No description provided for @calendarSharePhoneLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'手机号'**
|
||
String get calendarSharePhoneLabel;
|
||
|
||
/// No description provided for @calendarSharePhoneHint.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'输入对方的 +86 手机号'**
|
||
String get calendarSharePhoneHint;
|
||
|
||
/// No description provided for @calendarSharePermissionTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'权限设置'**
|
||
String get calendarSharePermissionTitle;
|
||
|
||
/// No description provided for @calendarSharePermissionView.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'查看'**
|
||
String get calendarSharePermissionView;
|
||
|
||
/// No description provided for @calendarSharePermissionViewDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'可以查看此日历事件(必选)'**
|
||
String get calendarSharePermissionViewDesc;
|
||
|
||
/// No description provided for @calendarSharePermissionEdit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'编辑'**
|
||
String get calendarSharePermissionEdit;
|
||
|
||
/// No description provided for @calendarSharePermissionEditDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'可以编辑此日历事件'**
|
||
String get calendarSharePermissionEditDesc;
|
||
|
||
/// No description provided for @calendarSharePermissionInvite.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请'**
|
||
String get calendarSharePermissionInvite;
|
||
|
||
/// No description provided for @calendarSharePermissionInviteDesc.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'可以邀请其他人'**
|
||
String get calendarSharePermissionInviteDesc;
|
||
|
||
/// No description provided for @calendarShareSendInvite.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'发送邀请'**
|
||
String get calendarShareSendInvite;
|
||
|
||
/// No description provided for @calendarMonthHeader.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{month}月'**
|
||
String calendarMonthHeader(int month);
|
||
|
||
/// No description provided for @calendarMonthToday.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'今天'**
|
||
String get calendarMonthToday;
|
||
|
||
/// No description provided for @calendarMonthWeekdaySunShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日'**
|
||
String get calendarMonthWeekdaySunShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdayMonShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'一'**
|
||
String get calendarMonthWeekdayMonShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdayTueShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'二'**
|
||
String get calendarMonthWeekdayTueShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdayWedShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'三'**
|
||
String get calendarMonthWeekdayWedShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdayThuShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'四'**
|
||
String get calendarMonthWeekdayThuShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdayFriShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'五'**
|
||
String get calendarMonthWeekdayFriShort;
|
||
|
||
/// No description provided for @calendarMonthWeekdaySatShort.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'六'**
|
||
String get calendarMonthWeekdaySatShort;
|
||
|
||
/// No description provided for @calendarMonthYearLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{year}年'**
|
||
String calendarMonthYearLabel(int year);
|
||
|
||
/// No description provided for @calendarDateTimePickerDateLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日期'**
|
||
String get calendarDateTimePickerDateLabel;
|
||
|
||
/// No description provided for @calendarDateTimePickerYearUnit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'年'**
|
||
String get calendarDateTimePickerYearUnit;
|
||
|
||
/// No description provided for @calendarDateTimePickerMonthUnit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'月'**
|
||
String get calendarDateTimePickerMonthUnit;
|
||
|
||
/// No description provided for @calendarDateTimePickerDayUnit.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日'**
|
||
String get calendarDateTimePickerDayUnit;
|
||
|
||
/// No description provided for @calendarDateTimePickerTimeLabel.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'时间'**
|
||
String get calendarDateTimePickerTimeLabel;
|
||
|
||
/// No description provided for @calendarDateTimePickerTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'选择时间'**
|
||
String get calendarDateTimePickerTitle;
|
||
|
||
/// No description provided for @messagesCalendarCardInviteTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历邀请'**
|
||
String get messagesCalendarCardInviteTitle;
|
||
|
||
/// No description provided for @messagesCalendarCardInviteWithTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请你访问 \"{title}\"'**
|
||
String messagesCalendarCardInviteWithTitle(Object title);
|
||
|
||
/// No description provided for @messagesCalendarCardInviteWithoutTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'邀请你访问日历'**
|
||
String get messagesCalendarCardInviteWithoutTitle;
|
||
|
||
/// No description provided for @messagesCalendarCardUpdatedWithTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{title} 已更新'**
|
||
String messagesCalendarCardUpdatedWithTitle(Object title);
|
||
|
||
/// No description provided for @messagesCalendarCardUpdatedWithoutTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历事件已更新'**
|
||
String get messagesCalendarCardUpdatedWithoutTitle;
|
||
|
||
/// No description provided for @messagesCalendarCardTimeMinutesAgo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{minutes}分钟前'**
|
||
String messagesCalendarCardTimeMinutesAgo(int minutes);
|
||
|
||
/// No description provided for @messagesCalendarCardTimeHoursAgo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{hours}小时前'**
|
||
String messagesCalendarCardTimeHoursAgo(int hours);
|
||
|
||
/// No description provided for @messagesCalendarCardTimeDaysAgo.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{days}天前'**
|
||
String messagesCalendarCardTimeDaysAgo(int days);
|
||
|
||
/// No description provided for @messagesCalendarCardTimeDate.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'{month}月{day}日'**
|
||
String messagesCalendarCardTimeDate(int month, int day);
|
||
|
||
/// No description provided for @messagesCalendarCardDeletedWithoutTitle.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'日历事件已删除'**
|
||
String get messagesCalendarCardDeletedWithoutTitle;
|
||
|
||
/// No description provided for @calendarDetailSubscribers.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'已订阅 ({count}人)'**
|
||
String calendarDetailSubscribers(int count);
|
||
|
||
/// No description provided for @calendarOwnerBadge.
|
||
///
|
||
/// In zh, this message translates to:
|
||
/// **'所有者'**
|
||
String get calendarOwnerBadge;
|
||
}
|
||
|
||
class _AppLocalizationsDelegate
|
||
extends LocalizationsDelegate<AppLocalizations> {
|
||
const _AppLocalizationsDelegate();
|
||
|
||
@override
|
||
Future<AppLocalizations> load(Locale locale) {
|
||
return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
|
||
}
|
||
|
||
@override
|
||
bool isSupported(Locale locale) =>
|
||
<String>['en', 'zh'].contains(locale.languageCode);
|
||
|
||
@override
|
||
bool shouldReload(_AppLocalizationsDelegate old) => false;
|
||
}
|
||
|
||
AppLocalizations lookupAppLocalizations(Locale locale) {
|
||
// Lookup logic when only language code is specified.
|
||
switch (locale.languageCode) {
|
||
case 'en':
|
||
return AppLocalizationsEn();
|
||
case 'zh':
|
||
return AppLocalizationsZh();
|
||
}
|
||
|
||
throw FlutterError(
|
||
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
|
||
'an issue with the localizations generation tool. Please file an issue '
|
||
'on GitHub with a reproducible sample app and the gen-l10n configuration '
|
||
'that was used.',
|
||
);
|
||
}
|