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_hi.dart'; import 'app_localizations_id.dart'; import 'app_localizations_ja.dart'; import 'app_localizations_ko.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(context, AppLocalizations); } static const LocalizationsDelegate 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> localizationsDelegates = >[ delegate, GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate, GlobalWidgetsLocalizations.delegate, ]; /// A list of this localizations delegate's supported locales. static const List supportedLocales = [ Locale('en'), Locale('hi'), Locale('id'), Locale('ja'), Locale('ko'), Locale('zh'), Locale('zh', 'TW') ]; /// No description provided for @appTitle. /// /// In zh, this message translates to: /// **'iBit'** String get appTitle; /// No description provided for @home. /// /// In zh, this message translates to: /// **'首页'** String get home; /// No description provided for @market. /// /// In zh, this message translates to: /// **'行情'** String get market; /// No description provided for @futures. /// /// In zh, this message translates to: /// **'合约'** String get futures; /// No description provided for @bottomNavTrade. /// /// In zh, this message translates to: /// **'交易'** String get bottomNavTrade; /// No description provided for @copyTrading. /// /// In zh, this message translates to: /// **'跟单'** String get copyTrading; /// No description provided for @assets. /// /// In zh, this message translates to: /// **'资产'** String get assets; /// No description provided for @login. /// /// In zh, this message translates to: /// **'登录'** String get login; /// No description provided for @register. /// /// In zh, this message translates to: /// **'注册'** String get register; /// No description provided for @loading. /// /// In zh, this message translates to: /// **'加载中...'** String get loading; /// No description provided for @retry. /// /// In zh, this message translates to: /// **'重试'** String get retry; /// No description provided for @cancel. /// /// In zh, this message translates to: /// **'取消'** String get cancel; /// No description provided for @confirm. /// /// In zh, this message translates to: /// **'确认'** String get confirm; /// No description provided for @submit. /// /// In zh, this message translates to: /// **'提交'** String get submit; /// No description provided for @save. /// /// In zh, this message translates to: /// **'保存'** String get save; /// No description provided for @send. /// /// In zh, this message translates to: /// **'发送'** String get send; /// No description provided for @paste. /// /// In zh, this message translates to: /// **'粘贴'** String get paste; /// No description provided for @tips. /// /// In zh, this message translates to: /// **'提示'** String get tips; /// No description provided for @networkError. /// /// In zh, this message translates to: /// **'网络错误,请重试'** String get networkError; /// No description provided for @welcomeBack. /// /// In zh, this message translates to: /// **'欢迎回来'** String get welcomeBack; /// No description provided for @loginSubtitle. /// /// In zh, this message translates to: /// **'登录您的账户以继续'** String get loginSubtitle; /// No description provided for @email. /// /// In zh, this message translates to: /// **'邮箱'** String get email; /// No description provided for @emailHint. /// /// In zh, this message translates to: /// **'请输入邮箱'** String get emailHint; /// No description provided for @emailError. /// /// In zh, this message translates to: /// **'邮箱格式错误'** String get emailError; /// No description provided for @password. /// /// In zh, this message translates to: /// **'密码'** String get password; /// No description provided for @loginPasswordHint. /// /// In zh, this message translates to: /// **'请输入登录密码'** String get loginPasswordHint; /// No description provided for @forgotPassword. /// /// In zh, this message translates to: /// **'忘记密码?'** String get forgotPassword; /// No description provided for @noAccount. /// /// In zh, this message translates to: /// **'还没有账户?'** String get noAccount; /// No description provided for @registerNow. /// /// In zh, this message translates to: /// **'立即注册'** String get registerNow; /// No description provided for @welcomeJoin. /// /// In zh, this message translates to: /// **'欢迎加入 iBit'** String get welcomeJoin; /// No description provided for @emailRegister. /// /// In zh, this message translates to: /// **'邮箱注册'** String get emailRegister; /// No description provided for @loginPassword. /// /// In zh, this message translates to: /// **'登录密码'** String get loginPassword; /// No description provided for @errLoginCredentialWrong. /// /// In zh, this message translates to: /// **'用户名或密码错误'** String get errLoginCredentialWrong; /// No description provided for @errAccountAlreadyRegistered. /// /// In zh, this message translates to: /// **'该账号已注册,请直接登录'** String get errAccountAlreadyRegistered; /// No description provided for @stakingTitle. /// /// In zh, this message translates to: /// **'IDO 预售'** String get stakingTitle; /// No description provided for @stakingAmount. /// /// In zh, this message translates to: /// **'申购数量'** String get stakingAmount; /// No description provided for @stakingAmountHint. /// /// In zh, this message translates to: /// **'请输入{coin}数量'** String stakingAmountHint(Object coin); /// No description provided for @stakingEquivalentUsdt. /// /// In zh, this message translates to: /// **'对应价格(USDT):'** String get stakingEquivalentUsdt; /// No description provided for @stakingSubmit. /// /// In zh, this message translates to: /// **'立即申购'** String get stakingSubmit; /// No description provided for @stakingSubmitSuccess. /// /// In zh, this message translates to: /// **'申购成功'** String get stakingSubmitSuccess; /// No description provided for @stakingTransfer. /// /// In zh, this message translates to: /// **'划转'** String get stakingTransfer; /// No description provided for @stakingTransferTitle. /// /// In zh, this message translates to: /// **'质押辅助划转'** String get stakingTransferTitle; /// No description provided for @stakingDirectionFundingToSpot. /// /// In zh, this message translates to: /// **'资金->现货'** String get stakingDirectionFundingToSpot; /// No description provided for @stakingDirectionSpotToFunding. /// /// In zh, this message translates to: /// **'现货->资金'** String get stakingDirectionSpotToFunding; /// No description provided for @stakingMinAmountLabel. /// /// In zh, this message translates to: /// **'最小申购'** String get stakingMinAmountLabel; /// No description provided for @stakingMaxAmountLabel. /// /// In zh, this message translates to: /// **'最大申购'** String get stakingMaxAmountLabel; /// No description provided for @stakingLockDaysLabel. /// /// In zh, this message translates to: /// **'锁仓周期'** String get stakingLockDaysLabel; /// No description provided for @stakingReleaseTypeLabel. /// /// In zh, this message translates to: /// **'释放方式'** String get stakingReleaseTypeLabel; /// No description provided for @stakingReleaseOneTime. /// /// In zh, this message translates to: /// **'一次性释放'** String get stakingReleaseOneTime; /// No description provided for @stakingReleaseBatch. /// /// In zh, this message translates to: /// **'分批释放'** String get stakingReleaseBatch; /// No description provided for @stakingFundingAvailable. /// /// In zh, this message translates to: /// **'资金账户可用'** String get stakingFundingAvailable; /// No description provided for @stakingWalletAvailable. /// /// In zh, this message translates to: /// **'质押钱包可用'** String get stakingWalletAvailable; /// No description provided for @stakingNeedLogin. /// /// In zh, this message translates to: /// **'请先登录后操作'** String get stakingNeedLogin; /// No description provided for @stakingAmountMin. /// /// In zh, this message translates to: /// **'申购数量不能小于 {amount}'** String stakingAmountMin(Object amount); /// No description provided for @stakingAmountMax. /// /// In zh, this message translates to: /// **'申购数量不能大于 {amount}'** String stakingAmountMax(Object amount); /// No description provided for @financeIdoTitle. /// /// In zh, this message translates to: /// **'IDO 预售'** String get financeIdoTitle; /// No description provided for @financeIdoRuleLabel. /// /// In zh, this message translates to: /// **'规则:'** String get financeIdoRuleLabel; /// No description provided for @financeIdoRuleOnce. /// /// In zh, this message translates to: /// **'会员购买一定量平台自己的主链币,自动进入锁仓账户。锁仓{lock}个月,到期一次性释放。'** String financeIdoRuleOnce(Object lock); /// No description provided for @financeIdoRuleBatch. /// /// In zh, this message translates to: /// **'会员购买一定量平台自己的主链币,自动进入锁仓账户。锁仓{lock}个月,按{release}个月释放。'** String financeIdoRuleBatch(Object lock, Object release); /// No description provided for @financeJoinPresale. /// /// In zh, this message translates to: /// **'参与预售'** String get financeJoinPresale; /// No description provided for @financeSubscribeQty. /// /// In zh, this message translates to: /// **'认购数量'** String get financeSubscribeQty; /// No description provided for @financeAvailableIbit. /// /// In zh, this message translates to: /// **'可提现可用 iBit'** String get financeAvailableIbit; /// No description provided for @financeCorrespondingPrice. /// /// In zh, this message translates to: /// **'对应价格'** String get financeCorrespondingPrice; /// No description provided for @financeIbitUnitPriceLine. /// /// In zh, this message translates to: /// **'当前价格:{price} USDT'** String financeIbitUnitPriceLine(Object price); /// No description provided for @financeConfirmPresale. /// /// In zh, this message translates to: /// **'确认参与预售'** String get financeConfirmPresale; /// No description provided for @financeEstimatedUnlockLine. /// /// In zh, this message translates to: /// **'预计解锁日期:{date}'** String financeEstimatedUnlockLine(Object date); /// No description provided for @financeLoginToStake. /// /// In zh, this message translates to: /// **'登录后可参与 IDO 预售质押'** String get financeLoginToStake; /// No description provided for @financeStakeSuccess. /// /// In zh, this message translates to: /// **'质押成功'** String get financeStakeSuccess; /// No description provided for @financeAmountRequired. /// /// In zh, this message translates to: /// **'请输入质押数量'** String get financeAmountRequired; /// No description provided for @financeBelowMin. /// /// In zh, this message translates to: /// **'不得低于最小质押额 {min}'** String financeBelowMin(Object min); /// No description provided for @financeAboveMax. /// /// In zh, this message translates to: /// **'不得超过最大质押额 {max}'** String financeAboveMax(Object max); /// No description provided for @financeConfigNotFound. /// /// In zh, this message translates to: /// **'质押产品不存在或已下架'** String get financeConfigNotFound; /// No description provided for @goSpotTrade. /// /// In zh, this message translates to: /// **'去交易'** String get goSpotTrade; /// No description provided for @airdropTitle. /// /// In zh, this message translates to: /// **'空投领取'** String get airdropTitle; /// No description provided for @airdropClaimNow. /// /// In zh, this message translates to: /// **'一键领取'** String get airdropClaimNow; /// No description provided for @airdropNotEligible. /// /// In zh, this message translates to: /// **'当前不满足领取条件'** String get airdropNotEligible; /// No description provided for @airdropClaimSuccess. /// /// In zh, this message translates to: /// **'领取申请已提交'** String get airdropClaimSuccess; /// No description provided for @airdropRecords. /// /// In zh, this message translates to: /// **'空投记录'** String get airdropRecords; /// No description provided for @airdropClaimable. /// /// In zh, this message translates to: /// **'可领取数量'** String get airdropClaimable; /// No description provided for @airdropInviteRequirement. /// /// In zh, this message translates to: /// **'邀请进度 {current}/{required}'** String airdropInviteRequirement(Object current, Object required); /// No description provided for @airdropHasActiveStaking. /// /// In zh, this message translates to: /// **'存在活跃质押'** String get airdropHasActiveStaking; /// No description provided for @airdropHasPendingReward. /// /// In zh, this message translates to: /// **'存在待领取空投'** String get airdropHasPendingReward; /// No description provided for @airdropStatusPending. /// /// In zh, this message translates to: /// **'待领取'** String get airdropStatusPending; /// No description provided for @airdropStatusGranted. /// /// In zh, this message translates to: /// **'已发放'** String get airdropStatusGranted; /// No description provided for @airdropStatusReviewing. /// /// In zh, this message translates to: /// **'审核中'** String get airdropStatusReviewing; /// No description provided for @airdropStatusRejected. /// /// In zh, this message translates to: /// **'已拒绝'** String get airdropStatusRejected; /// No description provided for @pwdCharsRule. /// /// In zh, this message translates to: /// **'6-16个字符'** String get pwdCharsRule; /// No description provided for @pwdDigitRule. /// /// In zh, this message translates to: /// **'1个数字'** String get pwdDigitRule; /// No description provided for @pwdLetterRule. /// /// In zh, this message translates to: /// **'1个字母'** String get pwdLetterRule; /// No description provided for @inviteCode. /// /// In zh, this message translates to: /// **'邀请码'** String get inviteCode; /// No description provided for @inviteCodeHint. /// /// In zh, this message translates to: /// **'邀请码(选填)'** String get inviteCodeHint; /// No description provided for @inviteCodeTip. /// /// In zh, this message translates to: /// **'填写邀请码可获得额外奖励'** String get inviteCodeTip; /// No description provided for @agreePrefix. /// /// In zh, this message translates to: /// **'注册即同意'** String get agreePrefix; /// No description provided for @termsOfService. /// /// In zh, this message translates to: /// **'《服务条款》'** String get termsOfService; /// No description provided for @privacyPolicy. /// /// In zh, this message translates to: /// **'《隐私与政策声明》'** String get privacyPolicy; /// No description provided for @registerAccount. /// /// In zh, this message translates to: /// **'注册账号'** String get registerAccount; /// No description provided for @registerSuccess. /// /// In zh, this message translates to: /// **'注册成功,请登录'** String get registerSuccess; /// No description provided for @enterVerifyCode. /// /// In zh, this message translates to: /// **'输入验证码'** String get enterVerifyCode; /// No description provided for @emailCodeTab. /// /// In zh, this message translates to: /// **'邮箱验证码'** String get emailCodeTab; /// No description provided for @authenticatorTab. /// /// In zh, this message translates to: /// **'身份验证器'** String get authenticatorTab; /// No description provided for @emailCodeHint. /// /// In zh, this message translates to: /// **'收到的 6 位数验证码'** String get emailCodeHint; /// No description provided for @authenticatorHint. /// /// In zh, this message translates to: /// **'请打开您的身份验证器 App 并输入当前显示的 6 位数验证码'** String get authenticatorHint; /// No description provided for @resendCode. /// /// In zh, this message translates to: /// **'重新发送验证码'** String get resendCode; /// No description provided for @resendCountdown. /// /// In zh, this message translates to: /// **'{seconds} s 后可重新发送'** String resendCountdown(int seconds); /// No description provided for @switchEmailVerify. /// /// In zh, this message translates to: /// **'切换邮箱验证'** String get switchEmailVerify; /// No description provided for @forgotPasswordTitle. /// /// In zh, this message translates to: /// **'找回密码'** String get forgotPasswordTitle; /// No description provided for @enterRegisteredEmail. /// /// In zh, this message translates to: /// **'请输入注册邮箱'** String get enterRegisteredEmail; /// No description provided for @verificationCode. /// /// In zh, this message translates to: /// **'验证码'** String get verificationCode; /// No description provided for @verificationCodeHint. /// /// In zh, this message translates to: /// **'请输入验证码'** String get verificationCodeHint; /// No description provided for @sendCode. /// /// In zh, this message translates to: /// **'发送验证码'** String get sendCode; /// No description provided for @newPassword. /// /// In zh, this message translates to: /// **'新密码'** String get newPassword; /// No description provided for @newPasswordHint. /// /// In zh, this message translates to: /// **'请输入新密码'** String get newPasswordHint; /// No description provided for @confirmPassword. /// /// In zh, this message translates to: /// **'确认密码'** String get confirmPassword; /// No description provided for @confirmPasswordHint. /// /// In zh, this message translates to: /// **'请再次输入新密码'** String get confirmPasswordHint; /// No description provided for @passwordMismatch. /// /// In zh, this message translates to: /// **'两次输入的密码不一致'** String get passwordMismatch; /// No description provided for @confirmReset. /// /// In zh, this message translates to: /// **'确认重置'** String get confirmReset; /// No description provided for @resetSuccess. /// /// In zh, this message translates to: /// **'密码重置成功,请使用新密码登录'** String get resetSuccess; /// No description provided for @profile. /// /// In zh, this message translates to: /// **'个人中心'** String get profile; /// No description provided for @quickFunctions. /// /// In zh, this message translates to: /// **'常用功能'** String get quickFunctions; /// No description provided for @languageSwitch. /// /// In zh, this message translates to: /// **'语言切换'** String get languageSwitch; /// No description provided for @security. /// /// In zh, this message translates to: /// **'安全设置'** String get security; /// No description provided for @announcements. /// /// In zh, this message translates to: /// **'系统公告'** String get announcements; /// No description provided for @helpCenter. /// /// In zh, this message translates to: /// **'帮助中心'** String get helpCenter; /// No description provided for @themeColor. /// /// In zh, this message translates to: /// **'主题颜色'** String get themeColor; /// No description provided for @lightMode. /// /// In zh, this message translates to: /// **'日间模式'** String get lightMode; /// No description provided for @darkMode. /// /// In zh, this message translates to: /// **'夜间模式'** String get darkMode; /// No description provided for @systemMode. /// /// In zh, this message translates to: /// **'跟随系统'** String get systemMode; /// No description provided for @currency. /// /// In zh, this message translates to: /// **'计价货币'** String get currency; /// No description provided for @selectCurrency. /// /// In zh, this message translates to: /// **'选择计价货币'** String get selectCurrency; /// No description provided for @noCurrencyAvailable. /// /// In zh, this message translates to: /// **'暂无可用币种'** String get noCurrencyAvailable; /// No description provided for @serviceRoute. /// /// In zh, this message translates to: /// **'服务链路'** String get serviceRoute; /// No description provided for @currentVersion. /// /// In zh, this message translates to: /// **'当前版本'** String get currentVersion; /// No description provided for @clearCache. /// /// In zh, this message translates to: /// **'清除缓存'** String get clearCache; /// No description provided for @confirmClearCache. /// /// In zh, this message translates to: /// **'确认清空缓存吗?'** String get confirmClearCache; /// No description provided for @cacheCleared. /// /// In zh, this message translates to: /// **'缓存已清除'** String get cacheCleared; /// No description provided for @customerService. /// /// In zh, this message translates to: /// **'联系客服'** String get customerService; /// No description provided for @logoutTitle. /// /// In zh, this message translates to: /// **'退出登录'** String get logoutTitle; /// No description provided for @logoutConfirm. /// /// In zh, this message translates to: /// **'确定要退出当前账号吗?'** String get logoutConfirm; /// No description provided for @logoutButton. /// /// In zh, this message translates to: /// **'退出当前账号'** String get logoutButton; /// No description provided for @guestGreeting. /// /// In zh, this message translates to: /// **'你好,请先登录'** String get guestGreeting; /// No description provided for @loginRegister. /// /// In zh, this message translates to: /// **'登录 / 注册'** String get loginRegister; /// No description provided for @uidCopied. /// /// In zh, this message translates to: /// **'UID 已复制'** String get uidCopied; /// No description provided for @alreadyLatestVersion. /// /// In zh, this message translates to: /// **'当前已是最新版本'** String get alreadyLatestVersion; /// No description provided for @language. /// /// In zh, this message translates to: /// **'语言'** String get language; /// No description provided for @iUnderstand. /// /// In zh, this message translates to: /// **'我知道了'** String get iUnderstand; /// No description provided for @searchPair. /// /// In zh, this message translates to: /// **'搜索币对'** String get searchPair; /// No description provided for @totalAssetsValue. /// /// In zh, this message translates to: /// **'总资产估值'** String get totalAssetsValue; /// No description provided for @recharge. /// /// In zh, this message translates to: /// **'充值'** String get recharge; /// No description provided for @todayPnl. /// /// In zh, this message translates to: /// **'今日盈亏'** String get todayPnl; /// No description provided for @perpetualFutures. /// /// In zh, this message translates to: /// **'永续合约'** String get perpetualFutures; /// No description provided for @inviteFriends. /// /// In zh, this message translates to: /// **'邀请好友'** String get inviteFriends; /// No description provided for @broker. /// /// In zh, this message translates to: /// **'经纪商'** String get broker; /// No description provided for @notBroker. /// /// In zh, this message translates to: /// **'您还不是经纪商'** String get notBroker; /// No description provided for @hotTrading. /// /// In zh, this message translates to: /// **'热门交易'** String get hotTrading; /// No description provided for @gainers. /// /// In zh, this message translates to: /// **'涨幅榜'** String get gainers; /// No description provided for @losers. /// /// In zh, this message translates to: /// **'跌幅榜'** String get losers; /// No description provided for @coinNameLabel. /// /// In zh, this message translates to: /// **'名称'** String get coinNameLabel; /// No description provided for @latestPrice. /// /// In zh, this message translates to: /// **'最新价'** String get latestPrice; /// No description provided for @change24h. /// /// In zh, this message translates to: /// **'24h 涨跌幅'** String get change24h; /// No description provided for @turnover. /// /// In zh, this message translates to: /// **'成交额'** String get turnover; /// No description provided for @spot. /// /// In zh, this message translates to: /// **'现货'** String get spot; /// No description provided for @topTraders. /// /// In zh, this message translates to: /// **'顶级交易专家'** String get topTraders; /// No description provided for @twoWeekReturn. /// /// In zh, this message translates to: /// **'近2周收益率'** String get twoWeekReturn; /// No description provided for @twoWeekCopyIncome. /// /// In zh, this message translates to: /// **'近2周跟单收益'** String get twoWeekCopyIncome; /// No description provided for @searchMarket. /// /// In zh, this message translates to: /// **'搜索币种、币对、合约'** String get searchMarket; /// No description provided for @nameVolume. /// /// In zh, this message translates to: /// **'名称 / 成交额'** String get nameVolume; /// No description provided for @latestPriceFull. /// /// In zh, this message translates to: /// **'最新价格'** String get latestPriceFull; /// No description provided for @change24hFull. /// /// In zh, this message translates to: /// **'24h涨跌幅'** String get change24hFull; /// No description provided for @assetOverview. /// /// In zh, this message translates to: /// **'总览'** String get assetOverview; /// No description provided for @fund. /// /// In zh, this message translates to: /// **'可提现'** String get fund; /// No description provided for @assetValuation. /// /// In zh, this message translates to: /// **'资产估值'** String get assetValuation; /// No description provided for @withdraw. /// /// In zh, this message translates to: /// **'提币'** String get withdraw; /// No description provided for @transfer. /// /// In zh, this message translates to: /// **'划转'** String get transfer; /// No description provided for @goToTrade. /// /// In zh, this message translates to: /// **'去交易'** String get goToTrade; /// No description provided for @assetBalance. /// /// In zh, this message translates to: /// **'资产余额'** String get assetBalance; /// No description provided for @unavailableLabel. /// /// In zh, this message translates to: /// **'不可用'** String get unavailableLabel; /// No description provided for @fundHistory. /// /// In zh, this message translates to: /// **'资金记录'** String get fundHistory; /// No description provided for @account. /// /// In zh, this message translates to: /// **'账户'** String get account; /// No description provided for @user. /// /// In zh, this message translates to: /// **'用户'** String get user; /// No description provided for @futuresAccount. /// /// In zh, this message translates to: /// **'合约账户'** String get futuresAccount; /// No description provided for @copyAccount. /// /// In zh, this message translates to: /// **'跟单账户'** String get copyAccount; /// No description provided for @fundAccount. /// /// In zh, this message translates to: /// **'可提现账户'** String get fundAccount; /// No description provided for @exchangeAccount. /// /// In zh, this message translates to: /// **'币种钱包'** String get exchangeAccount; /// No description provided for @noRecord. /// /// In zh, this message translates to: /// **'暂无记录'** String get noRecord; /// No description provided for @depositCoin. /// /// In zh, this message translates to: /// **'充币'** String get depositCoin; /// No description provided for @withdrawCoin. /// /// In zh, this message translates to: /// **'提币'** String get withdrawCoin; /// No description provided for @depositRecord. /// /// In zh, this message translates to: /// **'充值记录'** String get depositRecord; /// No description provided for @walletBalance. /// /// In zh, this message translates to: /// **'钱包余额'** String get walletBalance; /// No description provided for @unrealizedPnl. /// /// In zh, this message translates to: /// **'未实现盈亏'** String get unrealizedPnl; /// No description provided for @positions. /// /// In zh, this message translates to: /// **'持仓'** String get positions; /// No description provided for @noPositions. /// /// In zh, this message translates to: /// **'暂无持仓'** String get noPositions; /// No description provided for @loadFailed. /// /// In zh, this message translates to: /// **'加载失败'** String get loadFailed; /// No description provided for @noData. /// /// In zh, this message translates to: /// **'暂无数据'** String get noData; /// No description provided for @noMore. /// /// In zh, this message translates to: /// **'没有更多了'** String get noMore; /// No description provided for @pullDownToLoadMore. /// /// In zh, this message translates to: /// **'下拉加载更多'** String get pullDownToLoadMore; /// No description provided for @allLoaded. /// /// In zh, this message translates to: /// **'已加载全部数据'** String get allLoaded; /// No description provided for @copied. /// /// In zh, this message translates to: /// **'已复制'** String get copied; /// No description provided for @all. /// /// In zh, this message translates to: /// **'全部'** String get all; /// No description provided for @search. /// /// In zh, this message translates to: /// **'搜索'** String get search; /// No description provided for @reset. /// /// In zh, this message translates to: /// **'重置'** String get reset; /// No description provided for @max. /// /// In zh, this message translates to: /// **'最大'** String get max; /// No description provided for @completed. /// /// In zh, this message translates to: /// **'已完成'** String get completed; /// No description provided for @skip. /// /// In zh, this message translates to: /// **'跳过'** String get skip; /// No description provided for @share. /// /// In zh, this message translates to: /// **'分享'** String get share; /// No description provided for @more. /// /// In zh, this message translates to: /// **'更多'** String get more; /// No description provided for @viewMore. /// /// In zh, this message translates to: /// **'查看更多 >>'** String get viewMore; /// No description provided for @fromLabel. /// /// In zh, this message translates to: /// **'从'** String get fromLabel; /// No description provided for @toLabel. /// /// In zh, this message translates to: /// **'到'** String get toLabel; /// No description provided for @coinLabel. /// /// In zh, this message translates to: /// **'币种'** String get coinLabel; /// No description provided for @typeLabel. /// /// In zh, this message translates to: /// **'类型'** String get typeLabel; /// No description provided for @timeLabel. /// /// In zh, this message translates to: /// **'时间'** String get timeLabel; /// No description provided for @amountLabel. /// /// In zh, this message translates to: /// **'数量'** String get amountLabel; /// No description provided for @statusLabel. /// /// In zh, this message translates to: /// **'状态'** String get statusLabel; /// No description provided for @gotIt. /// /// In zh, this message translates to: /// **'知道了'** String get gotIt; /// No description provided for @loginNow. /// /// In zh, this message translates to: /// **'立即登录'** String get loginNow; /// No description provided for @saveSuccess. /// /// In zh, this message translates to: /// **'保存成功'** String get saveSuccess; /// No description provided for @operationFailed. /// /// In zh, this message translates to: /// **'操作失败,请重试'** String get operationFailed; /// No description provided for @photo. /// /// In zh, this message translates to: /// **'拍照'** String get photo; /// No description provided for @chooseFromAlbum. /// /// In zh, this message translates to: /// **'从相册选择'** String get chooseFromAlbum; /// No description provided for @openPosition. /// /// In zh, this message translates to: /// **'开仓'** String get openPosition; /// No description provided for @closePosition. /// /// In zh, this message translates to: /// **'平仓'** String get closePosition; /// No description provided for @closePositionSuccess. /// /// In zh, this message translates to: /// **'平仓成功'** String get closePositionSuccess; /// No description provided for @perpetual. /// /// In zh, this message translates to: /// **'永续'** String get perpetual; /// No description provided for @long. /// /// In zh, this message translates to: /// **'多'** String get long; /// No description provided for @short. /// /// In zh, this message translates to: /// **'空'** String get short; /// No description provided for @openLong. /// /// In zh, this message translates to: /// **'开多'** String get openLong; /// No description provided for @openShort. /// /// In zh, this message translates to: /// **'开空'** String get openShort; /// No description provided for @crossMargin. /// /// In zh, this message translates to: /// **'全仓'** String get crossMargin; /// No description provided for @returnRate. /// /// In zh, this message translates to: /// **'收益率'** String get returnRate; /// No description provided for @avgOpenPrice. /// /// In zh, this message translates to: /// **'开仓均价'** String get avgOpenPrice; /// No description provided for @avgClosePrice. /// /// In zh, this message translates to: /// **'平仓均价'** String get avgClosePrice; /// No description provided for @marginRatio. /// /// In zh, this message translates to: /// **'保证金比率'** String get marginRatio; /// No description provided for @longBull. /// /// In zh, this message translates to: /// **'开多看涨'** String get longBull; /// No description provided for @shortBear. /// /// In zh, this message translates to: /// **'开空看跌'** String get shortBear; /// No description provided for @profitShare. /// /// In zh, this message translates to: /// **'分润比例'** String get profitShare; /// No description provided for @markPrice. /// /// In zh, this message translates to: /// **'标记价格'** String get markPrice; /// No description provided for @estimatedLiqPrice. /// /// In zh, this message translates to: /// **'预计强平价'** String get estimatedLiqPrice; /// No description provided for @realizedPnl. /// /// In zh, this message translates to: /// **'已实现盈亏'** String get realizedPnl; /// No description provided for @longHead. /// /// In zh, this message translates to: /// **'多头'** String get longHead; /// No description provided for @shortHead. /// /// In zh, this message translates to: /// **'空头'** String get shortHead; /// No description provided for @contractCopyTrading. /// /// In zh, this message translates to: /// **'合约跟单'** String get contractCopyTrading; /// No description provided for @followSettings. /// /// In zh, this message translates to: /// **'跟单设置'** String get followSettings; /// No description provided for @assetStrength. /// /// In zh, this message translates to: /// **'资金实力'** String get assetStrength; /// No description provided for @joinDays. /// /// In zh, this message translates to: /// **'入驻天数'** String get joinDays; /// No description provided for @followContract. /// /// In zh, this message translates to: /// **'跟单合约'** String get followContract; /// No description provided for @noFollowContract. /// /// In zh, this message translates to: /// **'暂无可跟合约'** String get noFollowContract; /// No description provided for @startFollowing. /// /// In zh, this message translates to: /// **'开始跟单'** String get startFollowing; /// No description provided for @noTraders. /// /// In zh, this message translates to: /// **'暂无交易员'** String get noTraders; /// No description provided for @currentFollowers. /// /// In zh, this message translates to: /// **'当前跟单人数'** String get currentFollowers; /// No description provided for @cumulativeFollowers. /// /// In zh, this message translates to: /// **'累计跟单人数'** String get cumulativeFollowers; /// No description provided for @cumulativeTradingDays. /// /// In zh, this message translates to: /// **'累计交易天数'** String get cumulativeTradingDays; /// No description provided for @thisSettlementIncome. /// /// In zh, this message translates to: /// **'本期结算收益'** String get thisSettlementIncome; /// No description provided for @cumulativeProfitShare. /// /// In zh, this message translates to: /// **'累计分润收益'** String get cumulativeProfitShare; /// No description provided for @applyNow. /// /// In zh, this message translates to: /// **'立即申请'** String get applyNow; /// No description provided for @regularCopy. /// /// In zh, this message translates to: /// **'普通带单'** String get regularCopy; /// No description provided for @losslessCopy. /// /// In zh, this message translates to: /// **'无损带单'** String get losslessCopy; /// No description provided for @myFavoriteTraders. /// /// In zh, this message translates to: /// **'我的收藏'** String get myFavoriteTraders; /// No description provided for @favoriteTradersFilterHint. /// /// In zh, this message translates to: /// **'我收藏的交易员'** String get favoriteTradersFilterHint; /// No description provided for @noFavoriteTraders. /// /// In zh, this message translates to: /// **'暂无收藏的交易员,去发现优质交易员吧'** String get noFavoriteTraders; /// No description provided for @addedToFavorites. /// /// In zh, this message translates to: /// **'已收藏'** String get addedToFavorites; /// No description provided for @comprehensiveSort. /// /// In zh, this message translates to: /// **'综合排序'** String get comprehensiveSort; /// No description provided for @searchNickname. /// /// In zh, this message translates to: /// **'搜索昵称'** String get searchNickname; /// No description provided for @full. /// /// In zh, this message translates to: /// **'满员'** String get full; /// No description provided for @unfollow. /// /// In zh, this message translates to: /// **'取消跟随'** String get unfollow; /// No description provided for @loginToViewAccount. /// /// In zh, this message translates to: /// **'登录后查看账户信息'** String get loginToViewAccount; /// No description provided for @copyAccountEquity. /// /// In zh, this message translates to: /// **'跟单账户权益'** String get copyAccountEquity; /// No description provided for @futuresAccountEquity. /// /// In zh, this message translates to: /// **'合约账户权益'** String get futuresAccountEquity; /// No description provided for @myTrading. /// /// In zh, this message translates to: /// **'我的带单'** String get myTrading; /// No description provided for @myFollowing. /// /// In zh, this message translates to: /// **'我的跟单'** String get myFollowing; /// No description provided for @noFollowing. /// /// In zh, this message translates to: /// **'暂无跟单'** String get noFollowing; /// No description provided for @traderDetail. /// /// In zh, this message translates to: /// **'交易员详情'** String get traderDetail; /// No description provided for @historyTrading. /// /// In zh, this message translates to: /// **'历史带单'** String get historyTrading; /// No description provided for @accountInfo. /// /// In zh, this message translates to: /// **'账户信息'** String get accountInfo; /// No description provided for @coreData. /// /// In zh, this message translates to: /// **'核心数据'** String get coreData; /// No description provided for @noTradeRecords. /// /// In zh, this message translates to: /// **'暂无带单记录'** String get noTradeRecords; /// No description provided for @tradingIncome. /// /// In zh, this message translates to: /// **'带单收益'** String get tradingIncome; /// No description provided for @myCopyIncome. /// /// In zh, this message translates to: /// **'我的跟单收益'** String get myCopyIncome; /// No description provided for @traderSettings. /// /// In zh, this message translates to: /// **'带单设置'** String get traderSettings; /// No description provided for @traderNickname. /// /// In zh, this message translates to: /// **'带单昵称'** String get traderNickname; /// No description provided for @enterNickname. /// /// In zh, this message translates to: /// **'请输入昵称'** String get enterNickname; /// No description provided for @personalBio. /// /// In zh, this message translates to: /// **'个人签名'** String get personalBio; /// No description provided for @tagsLabel. /// /// In zh, this message translates to: /// **'标签'** String get tagsLabel; /// No description provided for @tradeContract. /// /// In zh, this message translates to: /// **'带单合约'** String get tradeContract; /// No description provided for @applyCancelTrader. /// /// In zh, this message translates to: /// **'申请取消交易员资格'** String get applyCancelTrader; /// No description provided for @applySubmitted. /// /// In zh, this message translates to: /// **'申请已提交'** String get applySubmitted; /// No description provided for @traderApply. /// /// In zh, this message translates to: /// **'交易员申请'** String get traderApply; /// No description provided for @transferNow. /// /// In zh, this message translates to: /// **'去划转'** String get transferNow; /// No description provided for @noCurrentFollowTrader. /// /// In zh, this message translates to: /// **'当前没有跟随交易员'** String get noCurrentFollowTrader; /// No description provided for @applyReview. /// /// In zh, this message translates to: /// **'申请审核中'** String get applyReview; /// No description provided for @submitApply. /// /// In zh, this message translates to: /// **'提交申请'** String get submitApply; /// No description provided for @currentCopyTrading. /// /// In zh, this message translates to: /// **'当前跟单'** String get currentCopyTrading; /// No description provided for @myTraders. /// /// In zh, this message translates to: /// **'我的交易员'** String get myTraders; /// No description provided for @historyFollowing. /// /// In zh, this message translates to: /// **'历史跟单'** String get historyFollowing; /// No description provided for @traderAgreement. /// /// In zh, this message translates to: /// **'交易员协议'** String get traderAgreement; /// No description provided for @copyFollowers. /// /// In zh, this message translates to: /// **'跟单用户'** String get copyFollowers; /// No description provided for @currentTrades. /// /// In zh, this message translates to: /// **'当前带单'** String get currentTrades; /// No description provided for @noFollowers. /// /// In zh, this message translates to: /// **'暂无跟单用户'** String get noFollowers; /// No description provided for @lastPeriodProfit. /// /// In zh, this message translates to: /// **'上期分润收益'** String get lastPeriodProfit; /// No description provided for @copyUser. /// /// In zh, this message translates to: /// **'跟单员'** String get copyUser; /// No description provided for @remove. /// /// In zh, this message translates to: /// **'移除'** String get remove; /// No description provided for @removed. /// /// In zh, this message translates to: /// **'已移除'** String get removed; /// No description provided for @noCurrentTrades. /// /// In zh, this message translates to: /// **'暂无当前带单'** String get noCurrentTrades; /// No description provided for @noHistoryTrades. /// /// In zh, this message translates to: /// **'暂无历史带单'** String get noHistoryTrades; /// No description provided for @registerToEarn. /// /// In zh, this message translates to: /// **'注册赢取返佣奖励'** String get registerToEarn; /// No description provided for @contactService. /// /// In zh, this message translates to: /// **'联系客服'** String get contactService; /// No description provided for @fundRecord. /// /// In zh, this message translates to: /// **'资产流水'** String get fundRecord; /// No description provided for @startTime. /// /// In zh, this message translates to: /// **'开始时间'** String get startTime; /// No description provided for @endTime. /// /// In zh, this message translates to: /// **'结束时间'** String get endTime; /// No description provided for @timeRange. /// /// In zh, this message translates to: /// **'起止时间'** String get timeRange; /// No description provided for @selectDate. /// /// In zh, this message translates to: /// **'选择日期'** String get selectDate; /// No description provided for @selectCoin. /// /// In zh, this message translates to: /// **'选择币种'** String get selectCoin; /// No description provided for @selectType. /// /// In zh, this message translates to: /// **'选择类型'** String get selectType; /// No description provided for @transferAmount. /// /// In zh, this message translates to: /// **'划转数量'** String get transferAmount; /// No description provided for @enterTransferAmount. /// /// In zh, this message translates to: /// **'请输入划转数量'** String get enterTransferAmount; /// No description provided for @maxTransferable. /// /// In zh, this message translates to: /// **'最多可划转'** String get maxTransferable; /// No description provided for @transferSuccess. /// /// In zh, this message translates to: /// **'划转成功'** String get transferSuccess; /// No description provided for @selectTransferCoin. /// /// In zh, this message translates to: /// **'选择划转币种'** String get selectTransferCoin; /// No description provided for @onChainWithdraw. /// /// In zh, this message translates to: /// **'链上提币'** String get onChainWithdraw; /// No description provided for @internalTransfer. /// /// In zh, this message translates to: /// **'内部转账'** String get internalTransfer; /// No description provided for @withdrawNetwork. /// /// In zh, this message translates to: /// **'提币网络'** String get withdrawNetwork; /// No description provided for @withdrawNetworkTip. /// /// In zh, this message translates to: /// **'请确保您选择的提币网络,与您在充币平台使用的网络一致,否则资产可能会丢失。'** String get withdrawNetworkTip; /// No description provided for @withdrawAddress. /// /// In zh, this message translates to: /// **'提币地址'** String get withdrawAddress; /// No description provided for @enterWithdrawAddress. /// /// In zh, this message translates to: /// **'请输入提币地址'** String get enterWithdrawAddress; /// No description provided for @withdrawAmount. /// /// In zh, this message translates to: /// **'提币金额'** String get withdrawAmount; /// No description provided for @receivedAmount. /// /// In zh, this message translates to: /// **'到账数量'** String get receivedAmount; /// No description provided for @fee. /// /// In zh, this message translates to: /// **'手续费'** String get fee; /// No description provided for @withdrawSubmitted. /// /// In zh, this message translates to: /// **'提币申请已提交'** String get withdrawSubmitted; /// No description provided for @internalLabel. /// /// In zh, this message translates to: /// **'内部'** String get internalLabel; /// No description provided for @fundPassword. /// /// In zh, this message translates to: /// **'资金密码'** String get fundPassword; /// No description provided for @emailCode. /// /// In zh, this message translates to: /// **'邮箱验证码'** String get emailCode; /// No description provided for @googleCode. /// /// In zh, this message translates to: /// **'谷歌验证码'** String get googleCode; /// No description provided for @securityVerification. /// /// In zh, this message translates to: /// **'安全验证'** String get securityVerification; /// No description provided for @depositAddress. /// /// In zh, this message translates to: /// **'充值地址'** String get depositAddress; /// No description provided for @saveFailed. /// /// In zh, this message translates to: /// **'保存失败'** String get saveFailed; /// No description provided for @depositNetwork. /// /// In zh, this message translates to: /// **'充币网络'** String get depositNetwork; /// No description provided for @saveQrCode. /// /// In zh, this message translates to: /// **'保存二维码'** String get saveQrCode; /// No description provided for @addressCopied. /// /// In zh, this message translates to: /// **'地址已复制'** String get addressCopied; /// No description provided for @minDeposit. /// /// In zh, this message translates to: /// **'最小充值额'** String get minDeposit; /// No description provided for @depositArrival. /// /// In zh, this message translates to: /// **'充值到账'** String get depositArrival; /// No description provided for @depositDetail. /// /// In zh, this message translates to: /// **'充值详情'** String get depositDetail; /// No description provided for @depositCurrency. /// /// In zh, this message translates to: /// **'充值币种'** String get depositCurrency; /// No description provided for @txHash. /// /// In zh, this message translates to: /// **'交易哈希'** String get txHash; /// No description provided for @applyTime. /// /// In zh, this message translates to: /// **'申请时间'** String get applyTime; /// No description provided for @hashCopied. /// /// In zh, this message translates to: /// **'交易哈希已复制'** String get hashCopied; /// No description provided for @withdrawRecord. /// /// In zh, this message translates to: /// **'提币记录'** String get withdrawRecord; /// No description provided for @transferRecord. /// /// In zh, this message translates to: /// **'划转记录'** String get transferRecord; /// No description provided for @withdrawDetail. /// /// In zh, this message translates to: /// **'提现详情'** String get withdrawDetail; /// No description provided for @transferDetail. /// /// In zh, this message translates to: /// **'转账详情'** String get transferDetail; /// No description provided for @transferUser. /// /// In zh, this message translates to: /// **'转账用户'** String get transferUser; /// No description provided for @cancelWithdraw. /// /// In zh, this message translates to: /// **'取消提现'** String get cancelWithdraw; /// No description provided for @confirmCancelWithdraw. /// /// In zh, this message translates to: /// **'确定要取消此次提现吗?'** String get confirmCancelWithdraw; /// No description provided for @withdrawCancelled. /// /// In zh, this message translates to: /// **'提现已取消'** String get withdrawCancelled; /// No description provided for @withdrawProgress. /// /// In zh, this message translates to: /// **'提现进度'** String get withdrawProgress; /// No description provided for @withdrawApplication. /// /// In zh, this message translates to: /// **'提现申请'** String get withdrawApplication; /// No description provided for @waitingWithdraw. /// /// In zh, this message translates to: /// **'等待提现'** String get waitingWithdraw; /// No description provided for @withdrawFailed. /// /// In zh, this message translates to: /// **'提现失败'** String get withdrawFailed; /// No description provided for @withdrawSuccess. /// /// In zh, this message translates to: /// **'提现成功'** String get withdrawSuccess; /// No description provided for @withdrawStatusReviewing. /// /// In zh, this message translates to: /// **'审核中'** String get withdrawStatusReviewing; /// No description provided for @withdrawStatusReleasing. /// /// In zh, this message translates to: /// **'放币中'** String get withdrawStatusReleasing; /// No description provided for @withdrawStatusFailed. /// /// In zh, this message translates to: /// **'失败'** String get withdrawStatusFailed; /// No description provided for @withdrawStatusSuccess. /// /// In zh, this message translates to: /// **'成功'** String get withdrawStatusSuccess; /// No description provided for @withdrawStatusCancelled. /// /// In zh, this message translates to: /// **'已取消'** String get withdrawStatusCancelled; /// No description provided for @unknown. /// /// In zh, this message translates to: /// **'未知'** String get unknown; /// No description provided for @feeUsdt. /// /// In zh, this message translates to: /// **'手续费(U)'** String get feeUsdt; /// No description provided for @openCloseLabel. /// /// In zh, this message translates to: /// **'开平仓'** String get openCloseLabel; /// No description provided for @rebateId. /// /// In zh, this message translates to: /// **'返佣ID'** String get rebateId; /// No description provided for @copyBalance. /// /// In zh, this message translates to: /// **'跟单余额'** String get copyBalance; /// No description provided for @scannerFailed. /// /// In zh, this message translates to: /// **'打开扫描器失败'** String get scannerFailed; /// No description provided for @transferSuccess2. /// /// In zh, this message translates to: /// **'转账成功'** String get transferSuccess2; /// No description provided for @securitySettingsTitle. /// /// In zh, this message translates to: /// **'安全设置'** String get securitySettingsTitle; /// No description provided for @securityBannerTip. /// /// In zh, this message translates to: /// **'为了保证您的账户安全,建议完成以下认证'** String get securityBannerTip; /// No description provided for @authenticator. /// /// In zh, this message translates to: /// **'身份验证器'** String get authenticator; /// No description provided for @authenticatorDesc. /// /// In zh, this message translates to: /// **'使用身份验证器进行身份验证'** String get authenticatorDesc; /// No description provided for @certified. /// /// In zh, this message translates to: /// **'已认证'** String get certified; /// No description provided for @notCertified. /// /// In zh, this message translates to: /// **'未认证'** String get notCertified; /// No description provided for @emailAuth. /// /// In zh, this message translates to: /// **'邮箱认证'** String get emailAuth; /// No description provided for @emailAuthDesc. /// /// In zh, this message translates to: /// **'绑定邮箱以接收验证码'** String get emailAuthDesc; /// No description provided for @fundPasswordDesc. /// /// In zh, this message translates to: /// **'用于提现、内部转账等资金操作'** String get fundPasswordDesc; /// No description provided for @modifyAction. /// /// In zh, this message translates to: /// **'修改'** String get modifyAction; /// No description provided for @notSet. /// /// In zh, this message translates to: /// **'未设置'** String get notSet; /// No description provided for @alreadySet. /// /// In zh, this message translates to: /// **'已设置'** String get alreadySet; /// No description provided for @loginPasswordMenu. /// /// In zh, this message translates to: /// **'登录密码'** String get loginPasswordMenu; /// No description provided for @loginPasswordDesc. /// /// In zh, this message translates to: /// **'定期修改密码可提高账户安全性'** String get loginPasswordDesc; /// No description provided for @hintTitle. /// /// In zh, this message translates to: /// **'提示'** String get hintTitle; /// No description provided for @noHelpContent. /// /// In zh, this message translates to: /// **'暂无帮助内容'** String get noHelpContent; /// No description provided for @noAnnouncements. /// /// In zh, this message translates to: /// **'暂无公告'** String get noAnnouncements; /// No description provided for @bindSuccess. /// /// In zh, this message translates to: /// **'绑定成功'** String get bindSuccess; /// No description provided for @secretKeyCopied. /// /// In zh, this message translates to: /// **'秘钥已复制'** String get secretKeyCopied; /// No description provided for @setFundPassword. /// /// In zh, this message translates to: /// **'设置资金密码'** String get setFundPassword; /// No description provided for @changeFundPassword. /// /// In zh, this message translates to: /// **'修改资金密码'** String get changeFundPassword; /// No description provided for @confirmFundPassword. /// /// In zh, this message translates to: /// **'确认资金密码'** String get confirmFundPassword; /// No description provided for @enterFundPasswordHint. /// /// In zh, this message translates to: /// **'请设置资金密码'** String get enterFundPasswordHint; /// No description provided for @reenterFundPassword. /// /// In zh, this message translates to: /// **'请再次输入资金密码'** String get reenterFundPassword; /// No description provided for @confirmModify. /// /// In zh, this message translates to: /// **'确认修改'** String get confirmModify; /// No description provided for @confirmSet. /// /// In zh, this message translates to: /// **'确认设置'** String get confirmSet; /// No description provided for @changeLoginPassword. /// /// In zh, this message translates to: /// **'修改登录密码'** String get changeLoginPassword; /// No description provided for @currentPassword. /// /// In zh, this message translates to: /// **'当前密码'** String get currentPassword; /// No description provided for @enterCurrentPassword. /// /// In zh, this message translates to: /// **'请输入当前登录密码'** String get enterCurrentPassword; /// No description provided for @containsLetter. /// /// In zh, this message translates to: /// **'含字母'** String get containsLetter; /// No description provided for @containsDigit. /// /// In zh, this message translates to: /// **'含数字'** String get containsDigit; /// No description provided for @changeSuccess. /// /// In zh, this message translates to: /// **'修改成功'** String get changeSuccess; /// No description provided for @confirmNewPassword. /// /// In zh, this message translates to: /// **'确认新密码'** String get confirmNewPassword; /// No description provided for @reenterNewPassword. /// /// In zh, this message translates to: /// **'再次输入新密码'** String get reenterNewPassword; /// No description provided for @noLines. /// /// In zh, this message translates to: /// **'暂无可用线路'** String get noLines; /// No description provided for @protocolDetail. /// /// In zh, this message translates to: /// **'协议详情'** String get protocolDetail; /// No description provided for @noContent. /// /// In zh, this message translates to: /// **'暂无内容'** String get noContent; /// No description provided for @announcementDetail. /// /// In zh, this message translates to: /// **'公告详情'** String get announcementDetail; /// No description provided for @announcementNotFound. /// /// In zh, this message translates to: /// **'公告不存在'** String get announcementNotFound; /// No description provided for @helpDetail. /// /// In zh, this message translates to: /// **'帮助详情'** String get helpDetail; /// No description provided for @contentNotFound. /// /// In zh, this message translates to: /// **'内容不存在'** String get contentNotFound; /// No description provided for @contactServiceHint. /// /// In zh, this message translates to: /// **'如需重置修改请联系客服'** String get contactServiceHint; /// No description provided for @twoStepVerification. /// /// In zh, this message translates to: /// **'两步验证'** String get twoStepVerification; /// No description provided for @myInvitations. /// /// In zh, this message translates to: /// **'我的邀请'** String get myInvitations; /// No description provided for @teamDetail. /// /// In zh, this message translates to: /// **'团队明细'** String get teamDetail; /// No description provided for @invitationList. /// /// In zh, this message translates to: /// **'邀请列表'** String get invitationList; /// No description provided for @noInvitations. /// /// In zh, this message translates to: /// **'暂无邀请记录'** String get noInvitations; /// No description provided for @levelLabel. /// /// In zh, this message translates to: /// **'级别'** String get levelLabel; /// No description provided for @teamTotalAsset. /// /// In zh, this message translates to: /// **'团队持有总资产'** String get teamTotalAsset; /// No description provided for @withinWeek. /// /// In zh, this message translates to: /// **'一周内'** String get withinWeek; /// No description provided for @today. /// /// In zh, this message translates to: /// **'当日'** String get today; /// No description provided for @perpetualRebate. /// /// In zh, this message translates to: /// **'永续合约返佣比例'** String get perpetualRebate; /// No description provided for @copyRebate. /// /// In zh, this message translates to: /// **'跟单返佣比例'** String get copyRebate; /// No description provided for @commissionModify. /// /// In zh, this message translates to: /// **'佣金比例修改'** String get commissionModify; /// No description provided for @setSuccess. /// /// In zh, this message translates to: /// **'设置成功'** String get setSuccess; /// No description provided for @enterValidRate. /// /// In zh, this message translates to: /// **'请输入有效的永续比例'** String get enterValidRate; /// No description provided for @normalUser. /// /// In zh, this message translates to: /// **'普通'** String get normalUser; /// No description provided for @historicalPositions. /// /// In zh, this message translates to: /// **'历史持仓记录'** String get historicalPositions; /// No description provided for @historicalOrders. /// /// In zh, this message translates to: /// **'历史委托记录'** String get historicalOrders; /// No description provided for @openTime. /// /// In zh, this message translates to: /// **'开仓时间'** String get openTime; /// No description provided for @closeTime. /// /// In zh, this message translates to: /// **'完成时间'** String get closeTime; /// No description provided for @orderTime. /// /// In zh, this message translates to: /// **'委托时间'** String get orderTime; /// No description provided for @marketOrderType. /// /// In zh, this message translates to: /// **'市价'** String get marketOrderType; /// No description provided for @positionDetail. /// /// In zh, this message translates to: /// **'持仓详情'** String get positionDetail; /// No description provided for @direction. /// /// In zh, this message translates to: /// **'方向'** String get direction; /// No description provided for @orderType. /// /// In zh, this message translates to: /// **'委托类型'** String get orderType; /// No description provided for @leverage. /// /// In zh, this message translates to: /// **'杠杆倍数'** String get leverage; /// No description provided for @orderDetail. /// /// In zh, this message translates to: /// **'委托详情'** String get orderDetail; /// No description provided for @avgTradePrice. /// /// In zh, this message translates to: /// **'成交均价'** String get avgTradePrice; /// No description provided for @triggerCondition. /// /// In zh, this message translates to: /// **'触发条件'** String get triggerCondition; /// No description provided for @stopProfitLoss. /// /// In zh, this message translates to: /// **'止盈止损'** String get stopProfitLoss; /// No description provided for @createTime. /// /// In zh, this message translates to: /// **'创建时间'** String get createTime; /// No description provided for @tradeDetailLabel. /// /// In zh, this message translates to: /// **'交易明细'** String get tradeDetailLabel; /// No description provided for @tradePrice. /// /// In zh, this message translates to: /// **'成交价格'** String get tradePrice; /// No description provided for @tradeTime. /// /// In zh, this message translates to: /// **'成交时间'** String get tradeTime; /// No description provided for @cancelOrder. /// /// In zh, this message translates to: /// **'撤单'** String get cancelOrder; /// No description provided for @cancelOrderSuccess. /// /// In zh, this message translates to: /// **'撤单成功'** String get cancelOrderSuccess; /// No description provided for @orderSuccess. /// /// In zh, this message translates to: /// **'下单成功'** String get orderSuccess; /// No description provided for @errEnterVolume. /// /// In zh, this message translates to: /// **'请输入委托数量'** String get errEnterVolume; /// No description provided for @errEnterPrice. /// /// In zh, this message translates to: /// **'请输入委托价格'** String get errEnterPrice; /// No description provided for @errEnterTriggerPrice. /// /// In zh, this message translates to: /// **'请输入触发价格'** String get errEnterTriggerPrice; /// No description provided for @errContractNotReady. /// /// In zh, this message translates to: /// **'合约面值未就绪'** String get errContractNotReady; /// No description provided for @errPriceNotReady. /// /// In zh, this message translates to: /// **'价格未就绪,请稍后重试'** String get errPriceNotReady; /// No description provided for @errVolumeInsufficient. /// /// In zh, this message translates to: /// **'数量不足,请增加委托数量'** String get errVolumeInsufficient; /// No description provided for @errEnterClosePrice. /// /// In zh, this message translates to: /// **'请输入平仓价格'** String get errEnterClosePrice; /// No description provided for @errInvalidOrderId. /// /// In zh, this message translates to: /// **'无效订单 ID'** String get errInvalidOrderId; /// No description provided for @errNoLongPosition. /// /// In zh, this message translates to: /// **'无多仓可平'** String get errNoLongPosition; /// No description provided for @errNoShortPosition. /// /// In zh, this message translates to: /// **'无空仓可平'** String get errNoShortPosition; /// No description provided for @errNoOrdersToCancel. /// /// In zh, this message translates to: /// **'暂无委托单可撤'** String get errNoOrdersToCancel; /// No description provided for @errServiceUnavailable. /// /// In zh, this message translates to: /// **'服务暂时不可用,请稍后重试'** String get errServiceUnavailable; /// No description provided for @errTimeout. /// /// In zh, this message translates to: /// **'请求超时,请检查网络后重试'** String get errTimeout; /// No description provided for @errNetworkError. /// /// In zh, this message translates to: /// **'网络连接异常,请检查网络设置'** String get errNetworkError; /// No description provided for @errSelectNetwork. /// /// In zh, this message translates to: /// **'请选择提币网络'** String get errSelectNetwork; /// No description provided for @errEnterAddress. /// /// In zh, this message translates to: /// **'请输入提币地址'** String get errEnterAddress; /// No description provided for @errEnterAmount. /// /// In zh, this message translates to: /// **'请输入金额'** String get errEnterAmount; /// No description provided for @errEnterFundPassword. /// /// In zh, this message translates to: /// **'请输入资金密码'** String get errEnterFundPassword; /// No description provided for @errEnterVerifyCode. /// /// In zh, this message translates to: /// **'请输入验证码'** String get errEnterVerifyCode; /// No description provided for @errBindGoogleFirst. /// /// In zh, this message translates to: /// **'请先绑定Google验证'** String get errBindGoogleFirst; /// No description provided for @errEnterGoogleCode. /// /// In zh, this message translates to: /// **'请输入Google验证码'** String get errEnterGoogleCode; /// No description provided for @errAmountFormat. /// /// In zh, this message translates to: /// **'金额格式错误'** String get errAmountFormat; /// No description provided for @errMinWithdraw. /// /// In zh, this message translates to: /// **'最小提现额 {amount}'** String errMinWithdraw(String amount); /// No description provided for @errMinTransfer. /// /// In zh, this message translates to: /// **'最小转账额 {amount}'** String errMinTransfer(String amount); /// No description provided for @errExceedBalance. /// /// In zh, this message translates to: /// **'超出可用余额'** String get errExceedBalance; /// No description provided for @errEnterStartTime. /// /// In zh, this message translates to: /// **'请选择开始时间'** String get errEnterStartTime; /// No description provided for @errEnterEndTime. /// /// In zh, this message translates to: /// **'请选择结束时间'** String get errEnterEndTime; /// No description provided for @closeOrderSubmitted. /// /// In zh, this message translates to: /// **'平仓委托已提交'** String get closeOrderSubmitted; /// No description provided for @contractUnitSettings. /// /// In zh, this message translates to: /// **'合约单位设置'** String get contractUnitSettings; /// No description provided for @marginMode. /// /// In zh, this message translates to: /// **'保证金模式'** String get marginMode; /// No description provided for @adjustLeverage. /// /// In zh, this message translates to: /// **'调整杠杆'** String get adjustLeverage; /// No description provided for @openTab. /// /// In zh, this message translates to: /// **'开仓'** String get openTab; /// No description provided for @closeTab. /// /// In zh, this message translates to: /// **'平仓'** String get closeTab; /// No description provided for @limitOrder. /// /// In zh, this message translates to: /// **'限价单'** String get limitOrder; /// No description provided for @marketConditional. /// /// In zh, this message translates to: /// **'市价条件委托单'** String get marketConditional; /// No description provided for @limitConditional. /// /// In zh, this message translates to: /// **'限价条件委托单'** String get limitConditional; /// No description provided for @holdPosition. /// /// In zh, this message translates to: /// **'持有仓位'** String get holdPosition; /// No description provided for @currentOrders. /// /// In zh, this message translates to: /// **'当前委托'** String get currentOrders; /// No description provided for @hideOtherPairs. /// /// In zh, this message translates to: /// **'隐藏其他交易对'** String get hideOtherPairs; /// No description provided for @closeAll. /// /// In zh, this message translates to: /// **'一键平仓'** String get closeAll; /// No description provided for @closeAllWarning. /// /// In zh, this message translates to: /// **'您所有正在委托的订单将会被市价平仓'** String get closeAllWarning; /// No description provided for @closeAllSubmitted. /// /// In zh, this message translates to: /// **'一键平仓指令已提交'** String get closeAllSubmitted; /// No description provided for @cancelAll. /// /// In zh, this message translates to: /// **'全部撤单'** String get cancelAll; /// No description provided for @cancelAllSuccess. /// /// In zh, this message translates to: /// **'全部撤单成功'** String get cancelAllSuccess; /// No description provided for @noOrders. /// /// In zh, this message translates to: /// **'暂无委托'** String get noOrders; /// No description provided for @allOrdersLoaded. /// /// In zh, this message translates to: /// **'已加载全部'** String get allOrdersLoaded; /// No description provided for @takeProfit. /// /// In zh, this message translates to: /// **'止盈'** String get takeProfit; /// No description provided for @stopLoss. /// /// In zh, this message translates to: /// **'止损'** String get stopLoss; /// No description provided for @entryPrice. /// /// In zh, this message translates to: /// **'委托价格'** String get entryPrice; /// No description provided for @takeProfitPrice. /// /// In zh, this message translates to: /// **'止盈价'** String get takeProfitPrice; /// No description provided for @stopLossPrice. /// /// In zh, this message translates to: /// **'止损价'** String get stopLossPrice; /// No description provided for @expectedProfit. /// /// In zh, this message translates to: /// **'成交预估盈利'** String get expectedProfit; /// No description provided for @expectedLoss. /// /// In zh, this message translates to: /// **'成交预估亏损'** String get expectedLoss; /// No description provided for @tpslSuccess. /// /// In zh, this message translates to: /// **'止盈止损设置成功'** String get tpslSuccess; /// No description provided for @latestLabel. /// /// In zh, this message translates to: /// **'最新'** String get latestLabel; /// No description provided for @enterCloseAmount. /// /// In zh, this message translates to: /// **'请输入平仓数量'** String get enterCloseAmount; /// No description provided for @estimatedPnl. /// /// In zh, this message translates to: /// **'预计盈亏'** String get estimatedPnl; /// No description provided for @enterCloseAmountError. /// /// In zh, this message translates to: /// **'请输入平仓数量'** String get enterCloseAmountError; /// No description provided for @enterLimitPriceError. /// /// In zh, this message translates to: /// **'请输入限价价格'** String get enterLimitPriceError; /// No description provided for @availableMargin. /// /// In zh, this message translates to: /// **'可用保证金'** String get availableMargin; /// No description provided for @usedMargin. /// /// In zh, this message translates to: /// **'已用保证金'** String get usedMargin; /// No description provided for @sharePosition. /// /// In zh, this message translates to: /// **'我的合约仓位'** String get sharePosition; /// No description provided for @reversePosition. /// /// In zh, this message translates to: /// **'一键反手'** String get reversePosition; /// No description provided for @closePositionMarket. /// /// In zh, this message translates to: /// **'市价全平'** String get closePositionMarket; /// No description provided for @reverseSuccess. /// /// In zh, this message translates to: /// **'反手成功'** String get reverseSuccess; /// No description provided for @triggerPrice. /// /// In zh, this message translates to: /// **'触发价格'** String get triggerPrice; /// No description provided for @markLabel. /// /// In zh, this message translates to: /// **'标记'** String get markLabel; /// No description provided for @priceLabel. /// /// In zh, this message translates to: /// **'价格'** String get priceLabel; /// No description provided for @quantityLabel. /// /// In zh, this message translates to: /// **'数量'** String get quantityLabel; /// No description provided for @closeLong. /// /// In zh, this message translates to: /// **'平多'** String get closeLong; /// No description provided for @closeShort. /// /// In zh, this message translates to: /// **'平空'** String get closeShort; /// No description provided for @fundingRate. /// /// In zh, this message translates to: /// **'资金费率'** String get fundingRate; /// No description provided for @countdown. /// /// In zh, this message translates to: /// **'倒计时'** String get countdown; /// No description provided for @orderBook. /// /// In zh, this message translates to: /// **'订单簿'** String get orderBook; /// No description provided for @latestTrades. /// /// In zh, this message translates to: /// **'最新成交'** String get latestTrades; /// No description provided for @depthChart. /// /// In zh, this message translates to: /// **'深度图'** String get depthChart; /// No description provided for @buy. /// /// In zh, this message translates to: /// **'买入'** String get buy; /// No description provided for @sell. /// /// In zh, this message translates to: /// **'卖出'** String get sell; /// No description provided for @noDepthData. /// /// In zh, this message translates to: /// **'暂无深度数据'** String get noDepthData; /// No description provided for @noTradeData. /// /// In zh, this message translates to: /// **'暂无成交数据'** String get noTradeData; /// No description provided for @openLongBtn. /// /// In zh, this message translates to: /// **'开多'** String get openLongBtn; /// No description provided for @openShortBtn. /// /// In zh, this message translates to: /// **'开空'** String get openShortBtn; /// No description provided for @ranking. /// /// In zh, this message translates to: /// **'排名'** String get ranking; /// No description provided for @marketCap. /// /// In zh, this message translates to: /// **'市值'** String get marketCap; /// No description provided for @circulatingSupply. /// /// In zh, this message translates to: /// **'流通供应量'** String get circulatingSupply; /// No description provided for @issuePrice. /// /// In zh, this message translates to: /// **'发行价'** String get issuePrice; /// No description provided for @allTimeHigh. /// /// In zh, this message translates to: /// **'历史最高价'** String get allTimeHigh; /// No description provided for @keyData. /// /// In zh, this message translates to: /// **'关键数据'** String get keyData; /// No description provided for @selectPair. /// /// In zh, this message translates to: /// **'选择交易对'** String get selectPair; /// No description provided for @chartTab. /// /// In zh, this message translates to: /// **'行情'** String get chartTab; /// No description provided for @overviewTab. /// /// In zh, this message translates to: /// **'概览'** String get overviewTab; /// No description provided for @shareFailed. /// /// In zh, this message translates to: /// **'分享失败,请重试'** String get shareFailed; /// No description provided for @loadFailedRetry. /// /// In zh, this message translates to: /// **'加载失败,请重试'** String get loadFailedRetry; /// No description provided for @closeBull. /// /// In zh, this message translates to: /// **'平空看涨'** String get closeBull; /// No description provided for @closeBear. /// /// In zh, this message translates to: /// **'平多看跌'** String get closeBear; /// No description provided for @marketOrderLabel. /// /// In zh, this message translates to: /// **'市价委托'** String get marketOrderLabel; /// No description provided for @limitOrderLabel. /// /// In zh, this message translates to: /// **'限价委托'** String get limitOrderLabel; /// No description provided for @planOrderLabel. /// /// In zh, this message translates to: /// **'计划委托'** String get planOrderLabel; /// No description provided for @mergeOrderLabel. /// /// In zh, this message translates to: /// **'合并委托'** String get mergeOrderLabel; /// No description provided for @reverseOpen. /// /// In zh, this message translates to: /// **'反向开仓'** String get reverseOpen; /// No description provided for @liquidationLabel. /// /// In zh, this message translates to: /// **'爆仓'** String get liquidationLabel; /// No description provided for @adminForceClose. /// /// In zh, this message translates to: /// **'管理员强平'** String get adminForceClose; /// No description provided for @isolatedMargin. /// /// In zh, this message translates to: /// **'逐仓'** String get isolatedMargin; /// No description provided for @separatePos. /// /// In zh, this message translates to: /// **'分仓'** String get separatePos; /// No description provided for @orderPending. /// /// In zh, this message translates to: /// **'委托中'** String get orderPending; /// No description provided for @orderFilled. /// /// In zh, this message translates to: /// **'委托成功'** String get orderFilled; /// No description provided for @tradingSuccess. /// /// In zh, this message translates to: /// **'交易成功'** String get tradingSuccess; /// No description provided for @orderCancelledLabel. /// /// In zh, this message translates to: /// **'委托取消'** String get orderCancelledLabel; /// No description provided for @orderFailedLabel. /// /// In zh, this message translates to: /// **'委托失败'** String get orderFailedLabel; /// No description provided for @entrustTotal. /// /// In zh, this message translates to: /// **'委托总量'** String get entrustTotal; /// No description provided for @openAvgPrice. /// /// In zh, this message translates to: /// **'开仓均价'** String get openAvgPrice; /// No description provided for @closeAvgPrice. /// /// In zh, this message translates to: /// **'平仓均价'** String get closeAvgPrice; /// No description provided for @profitLabel. /// /// In zh, this message translates to: /// **'收益'** String get profitLabel; /// No description provided for @profitRateLabel. /// /// In zh, this message translates to: /// **'收益率'** String get profitRateLabel; /// No description provided for @filledVolume. /// /// In zh, this message translates to: /// **'已成交量'** String get filledVolume; /// No description provided for @orderPriceLabel. /// /// In zh, this message translates to: /// **'委托价格'** String get orderPriceLabel; /// No description provided for @crossIsolatedLabel. /// /// In zh, this message translates to: /// **'全仓/逐仓'** String get crossIsolatedLabel; /// No description provided for @takeProfitTriggerPrice. /// /// In zh, this message translates to: /// **'止盈触发价'** String get takeProfitTriggerPrice; /// No description provided for @stopLossTriggerPrice. /// /// In zh, this message translates to: /// **'止损触发价'** String get stopLossTriggerPrice; /// No description provided for @marginLabel. /// /// In zh, this message translates to: /// **'保证金'** String get marginLabel; /// No description provided for @entrustAmount. /// /// In zh, this message translates to: /// **'委托数量'** String get entrustAmount; /// No description provided for @longLabel. /// /// In zh, this message translates to: /// **'多'** String get longLabel; /// No description provided for @shortLabel. /// /// In zh, this message translates to: /// **'空'** String get shortLabel; /// No description provided for @positionSize. /// /// In zh, this message translates to: /// **'持仓数量'** String get positionSize; /// No description provided for @positionValue. /// /// In zh, this message translates to: /// **'持仓价值'** String get positionValue; /// No description provided for @fundPasswordFormatError. /// /// In zh, this message translates to: /// **'密码需7-20位,必须同时包含字母和数字'** String get fundPasswordFormatError; /// No description provided for @fundPasswordHint. /// /// In zh, this message translates to: /// **'7-20位,必须包含字母和数字'** String get fundPasswordHint; /// No description provided for @setFundPasswordHint. /// /// In zh, this message translates to: /// **'请设置资金密码'** String get setFundPasswordHint; /// No description provided for @confirmFundPasswordHint. /// /// In zh, this message translates to: /// **'请再次输入资金密码'** String get confirmFundPasswordHint; /// No description provided for @fundPasswordBannerTip. /// /// In zh, this message translates to: /// **'资金密码用于提现、内部转账等资金操作,请勿与登录密码相同。'** String get fundPasswordBannerTip; /// No description provided for @checkSpamMessage. /// /// In zh, this message translates to: /// **'如果未收到验证信息,请检查邮箱垃圾箱或手机拦截短信'** String get checkSpamMessage; /// No description provided for @currentPasswordHint. /// /// In zh, this message translates to: /// **'请输入当前登录密码'** String get currentPasswordHint; /// No description provided for @passwordLengthHint. /// /// In zh, this message translates to: /// **'6-16个字符'** String get passwordLengthHint; /// No description provided for @confirmNewPasswordHint. /// /// In zh, this message translates to: /// **'再次输入新密码'** String get confirmNewPasswordHint; /// No description provided for @passwordChanged. /// /// In zh, this message translates to: /// **'修改成功'** String get passwordChanged; /// No description provided for @googleAuthStep1. /// /// In zh, this message translates to: /// **'Step 1 下载验证器App'** String get googleAuthStep1; /// No description provided for @googleAuthDownloadHint. /// /// In zh, this message translates to: /// **'iOS用户登录App Store搜索\"Authenticator\"下载,安卓用户登录应用商店或使用手机浏览器搜索Authenticator'** String get googleAuthDownloadHint; /// No description provided for @recommendDownload. /// /// In zh, this message translates to: /// **'推荐下载安装:'** String get recommendDownload; /// No description provided for @alreadyDownloaded. /// /// In zh, this message translates to: /// **'我已经下载,进行下一步'** String get alreadyDownloaded; /// No description provided for @googleBindStep1Hint. /// /// In zh, this message translates to: /// **'安装完成后打开Google Authentication,iOS用户点击右上角(安卓用户点击右下角)[+]号。选择[手动输入密钥],在页面中填入您的账户名和下方密钥'** String get googleBindStep1Hint; /// No description provided for @keyCopied. /// /// In zh, this message translates to: /// **'密钥已复制'** String get keyCopied; /// No description provided for @googleBindStep2Hint. /// /// In zh, this message translates to: /// **'添加成功后,您将得到一个有一定时效的6位数验证码,请将该验证码填入下方输入框中(需要在验证码时效内完成)'** String get googleBindStep2Hint; /// No description provided for @googleCodeHint. /// /// In zh, this message translates to: /// **'请输入6位数谷歌验证码'** String get googleCodeHint; /// No description provided for @emailCodeInstruction. /// /// In zh, this message translates to: /// **'点击下方的发送验证码,然后在输入框中输入验证码'** String get emailCodeInstruction; /// No description provided for @emailCodeSentTo. /// /// In zh, this message translates to: /// **'{email} 收取验证码'** String emailCodeSentTo(Object email); /// No description provided for @enterCode. /// /// In zh, this message translates to: /// **'请输入验证码'** String get enterCode; /// No description provided for @systemAnnouncement. /// /// In zh, this message translates to: /// **'系统公告'** String get systemAnnouncement; /// No description provided for @noAnnouncement. /// /// In zh, this message translates to: /// **'暂无公告'** String get noAnnouncement; /// No description provided for @serviceRouteHint. /// /// In zh, this message translates to: /// **'* 选择延迟较低的线路可获得更流畅的交易体验。系统会自动检测各线路延迟情况。'** String get serviceRouteHint; /// No description provided for @noAvailableRoute. /// /// In zh, this message translates to: /// **'暂无可用线路'** String get noAvailableRoute; /// No description provided for @emailTab. /// /// In zh, this message translates to: /// **'邮箱'** String get emailTab; /// No description provided for @phoneTab. /// /// In zh, this message translates to: /// **'手机号'** String get phoneTab; /// No description provided for @passwordLoginTab. /// /// In zh, this message translates to: /// **'密码登录'** String get passwordLoginTab; /// No description provided for @codeLoginTab. /// /// In zh, this message translates to: /// **'验证码登录'** String get codeLoginTab; /// No description provided for @twoFactorVerification. /// /// In zh, this message translates to: /// **'两步验证'** String get twoFactorVerification; /// No description provided for @googleAuthCodeHint. /// /// In zh, this message translates to: /// **'请输入 Google Authenticator 中的 6 位动态验证码'** String get googleAuthCodeHint; /// No description provided for @cantUseGoogleAuth. /// /// In zh, this message translates to: /// **'无法使用谷歌验证器?'** String get cantUseGoogleAuth; /// No description provided for @newVersionFound. /// /// In zh, this message translates to: /// **'发现新版本'** String get newVersionFound; /// No description provided for @latestVersion. /// /// In zh, this message translates to: /// **'最新版本'** String get latestVersion; /// No description provided for @updateContent. /// /// In zh, this message translates to: /// **'更新内容:'** String get updateContent; /// No description provided for @forceUpdateTip. /// /// In zh, this message translates to: /// **'此版本为强制更新,请立即升级'** String get forceUpdateTip; /// No description provided for @remindLater. /// /// In zh, this message translates to: /// **'稍后再说'** String get remindLater; /// No description provided for @updateNow. /// /// In zh, this message translates to: /// **'立即更新'** String get updateNow; /// No description provided for @cannotOpenLink. /// /// In zh, this message translates to: /// **'无法打开下载链接,请复制链接到浏览器下载'** String get cannotOpenLink; /// No description provided for @updateInAppInstall. /// /// In zh, this message translates to: /// **'应用内安装'** String get updateInAppInstall; /// No description provided for @updateOpenInBrowser. /// /// In zh, this message translates to: /// **'浏览器打开'** String get updateOpenInBrowser; /// No description provided for @downloadingUpdate. /// /// In zh, this message translates to: /// **'正在下载更新…'** String get downloadingUpdate; /// No description provided for @upgradeDownloadOrInstallFailed. /// /// In zh, this message translates to: /// **'下载或安装失败,请稍后重试'** String get upgradeDownloadOrInstallFailed; /// No description provided for @installPermissionRequired. /// /// In zh, this message translates to: /// **'需要安装权限,请在设置中为本应用开启「允许安装未知应用」后重试'** String get installPermissionRequired; /// No description provided for @currentPrice. /// /// In zh, this message translates to: /// **'当前价格'** String get currentPrice; /// No description provided for @currentMarginLabel. /// /// In zh, this message translates to: /// **'当前保证金'** String get currentMarginLabel; /// No description provided for @positionId. /// /// In zh, this message translates to: /// **'仓位ID'** String get positionId; /// No description provided for @copyIdSuccess. /// /// In zh, this message translates to: /// **'复制仓位ID成功'** String get copyIdSuccess; /// No description provided for @high24h. /// /// In zh, this message translates to: /// **'24h最高价'** String get high24h; /// No description provided for @low24h. /// /// In zh, this message translates to: /// **'24h最低价'** String get low24h; /// No description provided for @noKlineData. /// /// In zh, this message translates to: /// **'暂无K线数据'** String get noKlineData; /// No description provided for @todayNewUsers. /// /// In zh, this message translates to: /// **'今日新增\n用户(人)'** String get todayNewUsers; /// No description provided for @todayTradingUsers. /// /// In zh, this message translates to: /// **'今日交易\n用户(人)'** String get todayTradingUsers; /// No description provided for @todayRebateLabel. /// /// In zh, this message translates to: /// **'今日返佣\n(USDT)'** String get todayRebateLabel; /// No description provided for @brokerLevel. /// /// In zh, this message translates to: /// **'经纪商'** String get brokerLevel; /// No description provided for @regularLevel. /// /// In zh, this message translates to: /// **'普通'** String get regularLevel; /// No description provided for @comingSoon. /// /// In zh, this message translates to: /// **'即将推出'** String get comingSoon; /// No description provided for @scanQrCode. /// /// In zh, this message translates to: /// **'扫描二维码'** String get scanQrCode; /// No description provided for @notAnAgent. /// /// In zh, this message translates to: /// **'您还不是经纪商'** String get notAnAgent; /// No description provided for @closePositionConfirm. /// /// In zh, this message translates to: /// **'是否平仓此单,平仓后将无法获得此订单的最终盈利'** String get closePositionConfirm; /// No description provided for @transferTip1. /// /// In zh, this message translates to: /// **'划转即时到账,无需等待确认。'** String get transferTip1; /// No description provided for @transferTip2. /// /// In zh, this message translates to: /// **'资金账户 ↔ 合约账户 / 跟单账户均支持划转。'** String get transferTip2; /// No description provided for @transferTip3. /// /// In zh, this message translates to: /// **'划转不收取手续费。'** String get transferTip3; /// No description provided for @accountTransferTitle. /// /// In zh, this message translates to: /// **'账户划转'** String get accountTransferTitle; /// No description provided for @transferFreeHint. /// /// In zh, this message translates to: /// **'划转免手续费,实时到账'** String get transferFreeHint; /// No description provided for @spotTradingAccount. /// /// In zh, this message translates to: /// **'现货交易账户'** String get spotTradingAccount; /// No description provided for @assetsLockedStakingAccount. /// /// In zh, this message translates to: /// **'锁仓账户'** String get assetsLockedStakingAccount; /// No description provided for @transferAvailableCoin. /// /// In zh, this message translates to: /// **'可用: {available} {coin}'** String transferAvailableCoin(Object available, Object coin); /// No description provided for @transferAmountCoin. /// /// In zh, this message translates to: /// **'数量 ({coin})'** String transferAmountCoin(Object coin); /// No description provided for @confirmTransfer. /// /// In zh, this message translates to: /// **'确认划转'** String get confirmTransfer; /// No description provided for @transferSameAccountError. /// /// In zh, this message translates to: /// **'转出与转入账户不能相同'** String get transferSameAccountError; /// No description provided for @pageLoadFailed. /// /// In zh, this message translates to: /// **'页面加载失败'** String get pageLoadFailed; /// No description provided for @networkErrorDesc. /// /// In zh, this message translates to: /// **'网络连接异常,请检查网络设置后重试'** String get networkErrorDesc; /// No description provided for @reload. /// /// In zh, this message translates to: /// **'重新加载'** String get reload; /// No description provided for @backHome. /// /// In zh, this message translates to: /// **'返回首页'** String get backHome; /// No description provided for @errorCodeLabel. /// /// In zh, this message translates to: /// **'错误代码:{code}'** String errorCodeLabel(Object code); /// No description provided for @depositNetworkConfirmations. /// /// In zh, this message translates to: /// **'3次网络确认'** String get depositNetworkConfirmations; /// No description provided for @depositMinAmountHint. /// /// In zh, this message translates to: /// **'充值金额最小{minAmount}USDT,小于最小金额的充值不会入账。'** String depositMinAmountHint(Object minAmount); /// No description provided for @depositNoOtherAssets. /// /// In zh, this message translates to: /// **'请勿向上面之充值任何非币种资产,否则资产无法找回。'** String get depositNoOtherAssets; /// No description provided for @depositConfirmHint. /// /// In zh, this message translates to: /// **'您充值到上述地址后,需要整合区块网络节点的确认,一般区块主网3次网络确认后到账。'** String get depositConfirmHint; /// No description provided for @depositAddressChangeHint. /// /// In zh, this message translates to: /// **'您的充值地址可能会改变,每次充值时请重新复制地址。'** String get depositAddressChangeHint; /// No description provided for @depositSecurityHint. /// /// In zh, this message translates to: /// **'请务必确认操作环境安全,防止信息被篡改或泄密。'** String get depositSecurityHint; /// No description provided for @cancelWithdrawHint. /// /// In zh, this message translates to: /// **'您可在3分钟内撤销提现'** String get cancelWithdrawHint; /// No description provided for @liqPrice. /// /// In zh, this message translates to: /// **'强平价格'** String get liqPrice; /// No description provided for @marginRatioLabel. /// /// In zh, this message translates to: /// **'保证金比率'** String get marginRatioLabel; /// No description provided for @withdrawMinAmountHint. /// /// In zh, this message translates to: /// **'最小提现额 {minAmount}'** String withdrawMinAmountHint(Object minAmount); /// No description provided for @fundAccountAvailable. /// /// In zh, this message translates to: /// **'资金账户可用'** String get fundAccountAvailable; /// No description provided for @recipientUidOrAccount. /// /// In zh, this message translates to: /// **'对方UID或账户'** String get recipientUidOrAccount; /// No description provided for @enterRecipientUid. /// /// In zh, this message translates to: /// **'请输入平台收款人UID'** String get enterRecipientUid; /// No description provided for @transferMinAmountHint. /// /// In zh, this message translates to: /// **'最小转账额 {minAmount}'** String transferMinAmountHint(Object minAmount); /// No description provided for @withdrawNotice1. /// /// In zh, this message translates to: /// **'平台官方在任何情况下都不会要求您向某一账户转账或索要验证码。'** String get withdrawNotice1; /// No description provided for @withdrawNotice2. /// /// In zh, this message translates to: /// **'请勿参与代买、洗钱、非法集资等违法行为,谨防网络诈骗。'** String get withdrawNotice2; /// No description provided for @categoryLabel. /// /// In zh, this message translates to: /// **'类别'** String get categoryLabel; /// No description provided for @yearSuffix. /// /// In zh, this message translates to: /// **'年'** String get yearSuffix; /// No description provided for @monthSuffix. /// /// In zh, this message translates to: /// **'月'** String get monthSuffix; /// No description provided for @daySuffix. /// /// In zh, this message translates to: /// **'日'** String get daySuffix; /// No description provided for @brokerWelcome. /// /// In zh, this message translates to: /// **'您好,经纪商'** String get brokerWelcome; /// No description provided for @brokerWelcomeNamed. /// /// In zh, this message translates to: /// **'您好,{name}'** String brokerWelcomeNamed(String name); /// No description provided for @brokerInviteTip. /// /// In zh, this message translates to: /// **'邀请用户注册并完成交易,即可获得返佣奖励。返佣实时结算,每日自动发放至您的账户。'** String get brokerInviteTip; /// No description provided for @inviteList. /// /// In zh, this message translates to: /// **'邀请列表'** String get inviteList; /// No description provided for @noInviteRecord. /// /// In zh, this message translates to: /// **'暂无邀请记录'** String get noInviteRecord; /// No description provided for @accountLabel. /// /// In zh, this message translates to: /// **'账户'** String get accountLabel; /// No description provided for @enterValidPerpRate. /// /// In zh, this message translates to: /// **'请输入有效的永续比例'** String get enterValidPerpRate; /// No description provided for @editCommissionRate. /// /// In zh, this message translates to: /// **'佣金比例修改'** String get editCommissionRate; /// No description provided for @perpRebateRate. /// /// In zh, this message translates to: /// **'永续合约返佣比例'** String get perpRebateRate; /// No description provided for @copyRebateRate. /// /// In zh, this message translates to: /// **'跟单返佣比例'** String get copyRebateRate; /// No description provided for @commissionRateWarning. /// /// In zh, this message translates to: /// **'请慎重设置,设置完成后,将不可以再次设置为比本次更低的返佣比例'** String get commissionRateWarning; /// No description provided for @withinOneWeek. /// /// In zh, this message translates to: /// **'一周内'** String get withinOneWeek; /// No description provided for @teamTotalAssets. /// /// In zh, this message translates to: /// **'团队持有总资产'** String get teamTotalAssets; /// No description provided for @savePoster. /// /// In zh, this message translates to: /// **'保存海报'** String get savePoster; /// No description provided for @copyInviteCode. /// /// In zh, this message translates to: /// **'复制邀请码'** String get copyInviteCode; /// No description provided for @copyLink. /// /// In zh, this message translates to: /// **'复制链接'** String get copyLink; /// No description provided for @inviteLink. /// /// In zh, this message translates to: /// **'邀请链接'** String get inviteLink; /// No description provided for @inviteShareText. /// /// In zh, this message translates to: /// **'邀请你一起来赚币'** String get inviteShareText; /// No description provided for @labelCopied. /// /// In zh, this message translates to: /// **'{label}已复制'** String labelCopied(Object label); /// No description provided for @selectTradingPair. /// /// In zh, this message translates to: /// **'选择交易对'** String get selectTradingPair; /// No description provided for @marketOverview. /// /// In zh, this message translates to: /// **'概览'** String get marketOverview; /// No description provided for @volume24hLabel. /// /// In zh, this message translates to: /// **'24h成交量({coin})'** String volume24hLabel(Object coin); /// No description provided for @turnover24hLabel. /// /// In zh, this message translates to: /// **'24h成交额(USDT)'** String get turnover24hLabel; /// No description provided for @amountLabel2. /// /// In zh, this message translates to: /// **'数量 ({coin})'** String amountLabel2(Object coin); /// No description provided for @timeLabel2. /// /// In zh, this message translates to: /// **'时间'** String get timeLabel2; /// No description provided for @athPrice. /// /// In zh, this message translates to: /// **'历史最高价'** String get athPrice; /// No description provided for @dataDisclaimer. /// /// In zh, this message translates to: /// **'信息来自第三方行情网站,数据仅供参考,不作为投资依据。'** String get dataDisclaimer; /// No description provided for @periodToday. /// /// In zh, this message translates to: /// **'今日'** String get periodToday; /// No description provided for @period7d. /// /// In zh, this message translates to: /// **'7天'** String get period7d; /// No description provided for @period30d. /// /// In zh, this message translates to: /// **'30天'** String get period30d; /// No description provided for @period90d. /// /// In zh, this message translates to: /// **'90天'** String get period90d; /// No description provided for @period180d. /// /// In zh, this message translates to: /// **'180天'** String get period180d; /// No description provided for @period1y. /// /// In zh, this message translates to: /// **'1年'** String get period1y; /// No description provided for @rank. /// /// In zh, this message translates to: /// **'排名'** String get rank; /// No description provided for @twoWeekWinRate. /// /// In zh, this message translates to: /// **'近14天胜率'** String get twoWeekWinRate; /// No description provided for @twoWeekRoi. /// /// In zh, this message translates to: /// **'近14天收益率'** String get twoWeekRoi; /// No description provided for @twoWeekTrend. /// /// In zh, this message translates to: /// **'近14天走势'** String get twoWeekTrend; /// No description provided for @contractAccountEquity. /// /// In zh, this message translates to: /// **'合约账户权益'** String get contractAccountEquity; /// No description provided for @canOpenLong. /// /// In zh, this message translates to: /// **'可开多'** String get canOpenLong; /// No description provided for @canOpenShort. /// /// In zh, this message translates to: /// **'可开空'** String get canOpenShort; /// No description provided for @availableCloseLong. /// /// In zh, this message translates to: /// **'可平多'** String get availableCloseLong; /// No description provided for @availableCloseShort. /// /// In zh, this message translates to: /// **'可平空'** String get availableCloseShort; /// No description provided for @leverageAdjustedTo. /// /// In zh, this message translates to: /// **'杠杆已调整为'** String get leverageAdjustedTo; /// No description provided for @valueLabel. /// /// In zh, this message translates to: /// **'价值'** String get valueLabel; /// No description provided for @lotsLabel. /// /// In zh, this message translates to: /// **'张'** String get lotsLabel; /// No description provided for @profitUsdtLabel. /// /// In zh, this message translates to: /// **'收益(USDT)'** String get profitUsdtLabel; /// No description provided for @markPriceLabel. /// /// In zh, this message translates to: /// **'标记价格 {price}'** String markPriceLabel(Object price); /// No description provided for @perpetualContract. /// /// In zh, this message translates to: /// **'永续合约'** String get perpetualContract; /// No description provided for @marketPrice. /// /// In zh, this message translates to: /// **'市价'** String get marketPrice; /// No description provided for @priceLabel2. /// /// In zh, this message translates to: /// **'价格'** String get priceLabel2; /// No description provided for @availableLabel. /// /// In zh, this message translates to: /// **'可用'** String get availableLabel; /// No description provided for @crossMarginDesc. /// /// In zh, this message translates to: /// **'您账户里所有余额均作为保证金使用。当资产净值不足以满足维持保证金需求时,强制平仓将被触发。此时,您将损失所有余额。'** String get crossMarginDesc; /// No description provided for @isolatedMarginDesc. /// /// In zh, this message translates to: /// **'每个仓位独立占用保证金,亏损超出仓位保证金自动平仓,风险可控'** String get isolatedMarginDesc; /// No description provided for @splitMargin. /// /// In zh, this message translates to: /// **'分仓'** String get splitMargin; /// No description provided for @splitMarginDesc. /// /// In zh, this message translates to: /// **'您的同方向同杠杆仓位将保持独立、不自动合并,每个开仓动作生成独立子仓位,分仓模式下与全仓模式共用合约账户余额作为保证金。'** String get splitMarginDesc; /// No description provided for @marginModeNote. /// /// In zh, this message translates to: /// **'※ 保证金模式调整仅对当前合约生效'** String get marginModeNote; /// No description provided for @switchMarginModeFailed. /// /// In zh, this message translates to: /// **'切换失败,请先平仓后再切换仓位模式'** String get switchMarginModeFailed; /// No description provided for @leverageAdjustedMsg. /// /// In zh, this message translates to: /// **'杠杆已调整为 {value}X'** String leverageAdjustedMsg(Object value); /// No description provided for @openLabel. /// /// In zh, this message translates to: /// **'开仓'** String get openLabel; /// No description provided for @closeLabel. /// /// In zh, this message translates to: /// **'平仓'** String get closeLabel; /// No description provided for @marketOrder. /// /// In zh, this message translates to: /// **'市价单'** String get marketOrder; /// No description provided for @conditionalMarketOrder. /// /// In zh, this message translates to: /// **'市价条件委托单'** String get conditionalMarketOrder; /// No description provided for @conditionalLimitOrder. /// /// In zh, this message translates to: /// **'限价条件委托单'** String get conditionalLimitOrder; /// No description provided for @takeProfitStopLoss. /// /// In zh, this message translates to: /// **'止盈止损'** String get takeProfitStopLoss; /// No description provided for @fundingRateCountdown. /// /// In zh, this message translates to: /// **'资金费率/倒计时'** String get fundingRateCountdown; /// No description provided for @priceUsdt. /// /// In zh, this message translates to: /// **'价格(USDT)'** String get priceUsdt; /// No description provided for @closeAllPositions. /// /// In zh, this message translates to: /// **'一键平仓'** String get closeAllPositions; /// No description provided for @closeAllConfirm. /// /// In zh, this message translates to: /// **'您所有正在委托的订单将会被市价平仓'** String get closeAllConfirm; /// No description provided for @closeAllSubMsg. /// /// In zh, this message translates to: /// **'如果存在平仓挂单(限价单或止盈止损单),将会在一键平仓前被撤销。'** String get closeAllSubMsg; /// No description provided for @cancelAllOrders. /// /// In zh, this message translates to: /// **'全部撤单'** String get cancelAllOrders; /// No description provided for @contractUnitSetting. /// /// In zh, this message translates to: /// **'合约单位设置'** String get contractUnitSetting; /// No description provided for @contractUnitCoin. /// /// In zh, this message translates to: /// **'{coin}-数量'** String contractUnitCoin(Object coin); /// No description provided for @contractUnitUsdt. /// /// In zh, this message translates to: /// **'USDT-价值'** String get contractUnitUsdt; /// No description provided for @contractUnitSheets. /// /// In zh, this message translates to: /// **'数量-张'** String get contractUnitSheets; /// No description provided for @contractUnitHintCoin. /// /// In zh, this message translates to: /// **'您输入的为订单的{coin}数量'** String contractUnitHintCoin(Object coin); /// No description provided for @contractUnitHintUsdt. /// /// In zh, this message translates to: /// **'您输入的为订单市场价值,修改杠杆会改变保证金数量'** String get contractUnitHintUsdt; /// No description provided for @contractUnitHintSheets. /// /// In zh, this message translates to: /// **'您输入的为订单张数'** String get contractUnitHintSheets; /// No description provided for @takeProfitStopLossBtn. /// /// In zh, this message translates to: /// **'止盈止损'** String get takeProfitStopLossBtn; /// No description provided for @reversePositionBtn. /// /// In zh, this message translates to: /// **'一键反手'** String get reversePositionBtn; /// No description provided for @closePositionBtn. /// /// In zh, this message translates to: /// **'平仓'** String get closePositionBtn; /// No description provided for @closeAllMarket. /// /// In zh, this message translates to: /// **'市价全平'** String get closeAllMarket; /// No description provided for @closeAllMarketConfirm. /// /// In zh, this message translates to: /// **'确认以市价全部平仓?'** String get closeAllMarketConfirm; /// No description provided for @closeAllMarketSubMsg. /// /// In zh, this message translates to: /// **'此操作不可撤销。'** String get closeAllMarketSubMsg; /// No description provided for @closeAllMarketSuccess. /// /// In zh, this message translates to: /// **'平仓成功'** String get closeAllMarketSuccess; /// No description provided for @reverseConfirm. /// /// In zh, this message translates to: /// **'将市价平{side}仓并以相同数量{openSide},确认操作?'** String reverseConfirm(Object side, Object openSide); /// No description provided for @marginBalance. /// /// In zh, this message translates to: /// **'保证金 {margin} USDT'** String marginBalance(Object margin); /// No description provided for @longAvailLabel. /// /// In zh, this message translates to: /// **'可平多 {amount} {coin}'** String longAvailLabel(Object amount, Object coin); /// No description provided for @shortAvailLabel. /// /// In zh, this message translates to: /// **'可平空 {amount} {coin}'** String shortAvailLabel(Object amount, Object coin); /// No description provided for @enterTriggerPrice. /// /// In zh, this message translates to: /// **'请先输入触发价格'** String get enterTriggerPrice; /// No description provided for @enterPrice. /// /// In zh, this message translates to: /// **'请先输入价格'** String get enterPrice; /// No description provided for @symbolPerpetual. /// /// In zh, this message translates to: /// **'{symbol} 永续'** String symbolPerpetual(Object symbol); /// No description provided for @cancelLabel. /// /// In zh, this message translates to: /// **'取消'** String get cancelLabel; /// No description provided for @rejectReasonLabel. /// /// In zh, this message translates to: /// **'拒绝原因'** String get rejectReasonLabel; /// No description provided for @confirmLabel. /// /// In zh, this message translates to: /// **'确定'** String get confirmLabel; /// No description provided for @positionsTab. /// /// In zh, this message translates to: /// **'持有仓位'** String get positionsTab; /// No description provided for @contractAccountUsdt. /// /// In zh, this message translates to: /// **'合约账户 (USDT)'** String get contractAccountUsdt; /// No description provided for @setTakeProfit. /// /// In zh, this message translates to: /// **'设置止盈'** String get setTakeProfit; /// No description provided for @setStopLoss. /// /// In zh, this message translates to: /// **'设置止损'** String get setStopLoss; /// No description provided for @tpTriggerPrice. /// /// In zh, this message translates to: /// **'止盈触发价'** String get tpTriggerPrice; /// No description provided for @slTriggerPrice. /// /// In zh, this message translates to: /// **'止损触发价'** String get slTriggerPrice; /// No description provided for @closeableSizeCoin. /// /// In zh, this message translates to: /// **'可平量({coin})'** String closeableSizeCoin(String coin); /// No description provided for @estProfit. /// /// In zh, this message translates to: /// **'成交预估盈利'** String get estProfit; /// No description provided for @estLoss. /// /// In zh, this message translates to: /// **'成交预估亏损'** String get estLoss; /// No description provided for @closePositionMsgLong. /// /// In zh, this message translates to: /// **'当委托价格小于标记价格时会以市价成交'** String get closePositionMsgLong; /// No description provided for @closePositionMsgShort. /// /// In zh, this message translates to: /// **'当委托价格大于标记价格时会以市价成交'** String get closePositionMsgShort; /// No description provided for @enterCloseVolume. /// /// In zh, this message translates to: /// **'请输入平仓数量'** String get enterCloseVolume; /// No description provided for @enterLimitPrice. /// /// In zh, this message translates to: /// **'请输入限价价格'** String get enterLimitPrice; /// No description provided for @estPnlLabel. /// /// In zh, this message translates to: /// **'预计盈亏'** String get estPnlLabel; /// No description provided for @longHeadLabel. /// /// In zh, this message translates to: /// **'多头'** String get longHeadLabel; /// No description provided for @shortHeadLabel. /// /// In zh, this message translates to: /// **'空头'** String get shortHeadLabel; /// No description provided for @orderSizeCoin. /// /// In zh, this message translates to: /// **'委托数量({coin})'** String orderSizeCoin(String coin); /// No description provided for @filledSizeCoin. /// /// In zh, this message translates to: /// **'成交数量({coin})'** String filledSizeCoin(String coin); /// No description provided for @limitLabel. /// /// In zh, this message translates to: /// **'限价'** String get limitLabel; /// No description provided for @marketHint. /// /// In zh, this message translates to: /// **'市价'** String get marketHint; /// No description provided for @pricePlaceholder. /// /// In zh, this message translates to: /// **'请输入价格'** String get pricePlaceholder; /// No description provided for @shareLabel. /// /// In zh, this message translates to: /// **'分享'** String get shareLabel; /// No description provided for @myFuturesPosition. /// /// In zh, this message translates to: /// **'我的合约仓位'** String get myFuturesPosition; /// No description provided for @inviteCodeLabel. /// /// In zh, this message translates to: /// **'邀请码:'** String get inviteCodeLabel; /// No description provided for @registerAndEarnRebate. /// /// In zh, this message translates to: /// **'注册赢取返佣奖励'** String get registerAndEarnRebate; /// No description provided for @loginToFollowExpert. /// /// In zh, this message translates to: /// **'登录即可跟随交易专家,开始合约跟单'** String get loginToFollowExpert; /// No description provided for @unfollowConfirmMsg. /// /// In zh, this message translates to: /// **'是否确认取消跟随此交易员?'** String get unfollowConfirmMsg; /// No description provided for @applyExpertBannerText. /// /// In zh, this message translates to: /// **'申请成为交易专家,开启带单'** String get applyExpertBannerText; /// No description provided for @klineDate. /// /// In zh, this message translates to: /// **'时间'** String get klineDate; /// No description provided for @klineOpen. /// /// In zh, this message translates to: /// **'开'** String get klineOpen; /// No description provided for @klineHigh. /// /// In zh, this message translates to: /// **'高'** String get klineHigh; /// No description provided for @klineLow. /// /// In zh, this message translates to: /// **'低'** String get klineLow; /// No description provided for @klineClose. /// /// In zh, this message translates to: /// **'收'** String get klineClose; /// No description provided for @klineChangeAmt. /// /// In zh, this message translates to: /// **'涨跌额'** String get klineChangeAmt; /// No description provided for @klineChange. /// /// In zh, this message translates to: /// **'涨跌幅'** String get klineChange; /// No description provided for @klineAmount. /// /// In zh, this message translates to: /// **'成交额'** String get klineAmount; /// No description provided for @klineVol. /// /// In zh, this message translates to: /// **'成交量'** String get klineVol; /// No description provided for @myTrades. /// /// In zh, this message translates to: /// **'我的带单'** String get myTrades; /// No description provided for @myCopyTrading. /// /// In zh, this message translates to: /// **'我的跟单'** String get myCopyTrading; /// No description provided for @followersTab. /// /// In zh, this message translates to: /// **'跟单用户'** String get followersTab; /// No description provided for @currentCopyOrders. /// /// In zh, this message translates to: /// **'当前带单'** String get currentCopyOrders; /// No description provided for @historyCopyOrders. /// /// In zh, this message translates to: /// **'历史带单'** String get historyCopyOrders; /// No description provided for @currentFollowingTab. /// /// In zh, this message translates to: /// **'当前跟单'** String get currentFollowingTab; /// No description provided for @myTradersTab. /// /// In zh, this message translates to: /// **'我的交易员'** String get myTradersTab; /// No description provided for @historyFollowingTab. /// /// In zh, this message translates to: /// **'历史跟单'** String get historyFollowingTab; /// No description provided for @noHistoryCopyOrders. /// /// In zh, this message translates to: /// **'暂无历史带单'** String get noHistoryCopyOrders; /// No description provided for @noCurrentCopyOrders. /// /// In zh, this message translates to: /// **'暂无当前带单'** String get noCurrentCopyOrders; /// No description provided for @noTradingRecords. /// /// In zh, this message translates to: /// **'暂无带单记录'** String get noTradingRecords; /// No description provided for @confirmRemoveFollower. /// /// In zh, this message translates to: /// **'确认移除?'** String get confirmRemoveFollower; /// No description provided for @removeFollowerMsg. /// /// In zh, this message translates to: /// **'移除后该跟单员将无法继续跟随您的带单,确认继续?'** String get removeFollowerMsg; /// No description provided for @removedSuccess. /// /// In zh, this message translates to: /// **'已移除'** String get removedSuccess; /// No description provided for @unrealizedPnlUsdt. /// /// In zh, this message translates to: /// **'未实现盈亏(USDT)'** String get unrealizedPnlUsdt; /// No description provided for @marginUsdt. /// /// In zh, this message translates to: /// **'保证金(USDT)'** String get marginUsdt; /// No description provided for @currentMarginUsdt. /// /// In zh, this message translates to: /// **'当前保证金(USDT)'** String get currentMarginUsdt; /// No description provided for @openAvgPriceUsdt. /// /// In zh, this message translates to: /// **'开仓均价(USDT)'** String get openAvgPriceUsdt; /// No description provided for @currentPriceUsdt. /// /// In zh, this message translates to: /// **'当前价格(USDT)'** String get currentPriceUsdt; /// No description provided for @liqPriceUsdt. /// /// In zh, this message translates to: /// **'强平价格(USDT)'** String get liqPriceUsdt; /// No description provided for @closeAvgPriceUsdt. /// /// In zh, this message translates to: /// **'平仓均价(USDT)'** String get closeAvgPriceUsdt; /// No description provided for @realizedPnlUsdt. /// /// In zh, this message translates to: /// **'已实现盈亏(USDT)'** String get realizedPnlUsdt; /// No description provided for @positionSizeWithCoin. /// /// In zh, this message translates to: /// **'持仓数量({coin})'** String positionSizeWithCoin(String coin); /// No description provided for @closeSizeWithCoin. /// /// In zh, this message translates to: /// **'平仓数量({coin})'** String closeSizeWithCoin(String coin); /// No description provided for @qtyWithCoin. /// /// In zh, this message translates to: /// **'数量({coin})'** String qtyWithCoin(String coin); /// No description provided for @openTimeWithValue. /// /// In zh, this message translates to: /// **'开仓时间 {time}'** String openTimeWithValue(String time); /// No description provided for @openTimeTwoSpaces. /// /// In zh, this message translates to: /// **'开仓时间 {time}'** String openTimeTwoSpaces(String time); /// No description provided for @positionIdCopied. /// /// In zh, this message translates to: /// **'仓位ID已复制'** String get positionIdCopied; /// No description provided for @copyPositionIdSuccess. /// /// In zh, this message translates to: /// **'复制仓位ID成功'** String get copyPositionIdSuccess; /// No description provided for @positionIdPrefix. /// /// In zh, this message translates to: /// **'仓位ID: '** String get positionIdPrefix; /// No description provided for @positionIdShort. /// /// In zh, this message translates to: /// **'仓位ID '** String get positionIdShort; /// No description provided for @myTradingProfit. /// /// In zh, this message translates to: /// **'我的带单收益'** String get myTradingProfit; /// No description provided for @myCopyTradingProfit. /// /// In zh, this message translates to: /// **'我的跟单收益'** String get myCopyTradingProfit; /// No description provided for @currentFollowersLabel. /// /// In zh, this message translates to: /// **'当前跟单人数'** String get currentFollowersLabel; /// No description provided for @settledDaysTitle. /// /// In zh, this message translates to: /// **'入驻天数'** String get settledDaysTitle; /// No description provided for @fundStrength. /// /// In zh, this message translates to: /// **'资金实力'** String get fundStrength; /// No description provided for @fundStrengthUsdt. /// /// In zh, this message translates to: /// **'资金实力(USDT)'** String get fundStrengthUsdt; /// No description provided for @cumCopyProfitUsdt. /// /// In zh, this message translates to: /// **'累计跟单盈利(USDT)'** String get cumCopyProfitUsdt; /// No description provided for @cumFollowProfitAmtUsdt. /// /// In zh, this message translates to: /// **'累计跟单盈利额(USDT)'** String get cumFollowProfitAmtUsdt; /// No description provided for @cumCopyRevenueUsdt. /// /// In zh, this message translates to: /// **'累计跟单收益(USDT)'** String get cumCopyRevenueUsdt; /// No description provided for @cumFollowerCount. /// /// In zh, this message translates to: /// **'累计跟单人数'** String get cumFollowerCount; /// No description provided for @cumTradingDays. /// /// In zh, this message translates to: /// **'累计交易天数'** String get cumTradingDays; /// No description provided for @accountEquityUsdt. /// /// In zh, this message translates to: /// **'账户权益(USDT)'** String get accountEquityUsdt; /// No description provided for @cumProfitShareUsdt. /// /// In zh, this message translates to: /// **'累计分润(USDT)'** String get cumProfitShareUsdt; /// No description provided for @lastProfitShare. /// /// In zh, this message translates to: /// **'上期分润收益'** String get lastProfitShare; /// No description provided for @followerFollowTime. /// /// In zh, this message translates to: /// **'跟随时间'** String get followerFollowTime; /// No description provided for @followersCountLabel. /// /// In zh, this message translates to: /// **'跟随人数 {count}'** String followersCountLabel(String count); /// No description provided for @followersMaxLabel. /// /// In zh, this message translates to: /// **'跟随人数 {count}/{max}'** String followersMaxLabel(String count, String max); /// No description provided for @availableAssetsUsdt. /// /// In zh, this message translates to: /// **'可用资产(USDT)'** String get availableAssetsUsdt; /// No description provided for @closePositionConfirmMsg. /// /// In zh, this message translates to: /// **'是否平仓此单,平仓后将无法获得此订单的最终盈利'** String get closePositionConfirmMsg; /// No description provided for @settledDaysLabelFmt. /// /// In zh, this message translates to: /// **'已入驻 {days}天'** String settledDaysLabelFmt(String days); /// No description provided for @currentFollowingLabelFmt. /// /// In zh, this message translates to: /// **'当前跟随 {following}/{max}'** String currentFollowingLabelFmt(String following, String max); /// No description provided for @tradingContracts. /// /// In zh, this message translates to: /// **'带单合约'** String get tradingContracts; /// No description provided for @accountInfoTitle. /// /// In zh, this message translates to: /// **'账户信息'** String get accountInfoTitle; /// No description provided for @coreDataTitle. /// /// In zh, this message translates to: /// **'核心数据'** String get coreDataTitle; /// No description provided for @yield14d. /// /// In zh, this message translates to: /// **'近14天收益率'** String get yield14d; /// No description provided for @profit14dUsdt. /// /// In zh, this message translates to: /// **'近14天收益(USDT)'** String get profit14dUsdt; /// No description provided for @winRate14d. /// /// In zh, this message translates to: /// **'近14天胜率'** String get winRate14d; /// No description provided for @profitShareRatio. /// /// In zh, this message translates to: /// **'分润比例'** String get profitShareRatio; /// No description provided for @fullCapacity. /// /// In zh, this message translates to: /// **'满员'** String get fullCapacity; /// No description provided for @followTrader. /// /// In zh, this message translates to: /// **'跟单'** String get followTrader; /// No description provided for @openLongBullish. /// /// In zh, this message translates to: /// **'开多看涨'** String get openLongBullish; /// No description provided for @openShortBearish. /// /// In zh, this message translates to: /// **'开空看跌'** String get openShortBearish; /// No description provided for @profitUsdt. /// /// In zh, this message translates to: /// **'收益(USDT)'** String get profitUsdt; /// No description provided for @operationFailedRetry. /// /// In zh, this message translates to: /// **'操作失败,请重试'** String get operationFailedRetry; /// No description provided for @copyTradingSuccess. /// /// In zh, this message translates to: /// **'跟单成功'** String get copyTradingSuccess; /// No description provided for @copyTradingSettings. /// /// In zh, this message translates to: /// **'跟单设置'** String get copyTradingSettings; /// No description provided for @noCopyContracts. /// /// In zh, this message translates to: /// **'暂无可跟合约'** String get noCopyContracts; /// No description provided for @startCopyTrading. /// /// In zh, this message translates to: /// **'开始跟单'** String get startCopyTrading; /// No description provided for @savedSuccess. /// /// In zh, this message translates to: /// **'保存成功'** String get savedSuccess; /// No description provided for @takePhoto. /// /// In zh, this message translates to: /// **'拍照'** String get takePhoto; /// No description provided for @confirmCancelTitle. /// /// In zh, this message translates to: /// **'确认取消'** String get confirmCancelTitle; /// No description provided for @confirmCancelTraderMsg. /// /// In zh, this message translates to: /// **'确定申请取消交易员资格吗?此操作不可撤销。'** String get confirmCancelTraderMsg; /// No description provided for @applicationSubmitted. /// /// In zh, this message translates to: /// **'申请已提交'** String get applicationSubmitted; /// No description provided for @avatarUpdated. /// /// In zh, this message translates to: /// **'头像更新成功'** String get avatarUpdated; /// No description provided for @tradingSettings. /// /// In zh, this message translates to: /// **'带单设置'** String get tradingSettings; /// No description provided for @tradingNickname. /// /// In zh, this message translates to: /// **'带单昵称'** String get tradingNickname; /// No description provided for @maxTagsHint. /// /// In zh, this message translates to: /// **'最多可以选{max}个({selected}/{max})'** String maxTagsHint(String max, String selected); /// No description provided for @saveLabel. /// /// In zh, this message translates to: /// **'保存'** String get saveLabel; /// No description provided for @cancelTraderQualify. /// /// In zh, this message translates to: /// **'申请取消交易员资格'** String get cancelTraderQualify; /// No description provided for @bioHint. /// /// In zh, this message translates to: /// **'用一句话介绍你的策略风格...'** String get bioHint; /// No description provided for @applicationPendingReview. /// /// In zh, this message translates to: /// **'申请已提交,请等待审核'** String get applicationPendingReview; /// No description provided for @traderApplyConditions. /// /// In zh, this message translates to: /// **'满足以下条件即可申请成为交易员!'** String get traderApplyConditions; /// No description provided for @contractAccountFundsReq. /// /// In zh, this message translates to: /// **'合约账户资金 ≥ 1000 USDT'** String get contractAccountFundsReq; /// No description provided for @goTransfer. /// /// In zh, this message translates to: /// **'去划转'** String get goTransfer; /// No description provided for @noFollowingTrader. /// /// In zh, this message translates to: /// **'当前没有跟随交易员'** String get noFollowingTrader; /// No description provided for @agreeToAgreement. /// /// In zh, this message translates to: /// **'我已阅读并同意 '** String get agreeToAgreement; /// No description provided for @traderAgreementLink. /// /// In zh, this message translates to: /// **'《交易员协议》'** String get traderAgreementLink; /// No description provided for @reviewingApplication. /// /// In zh, this message translates to: /// **'申请审核中'** String get reviewingApplication; /// No description provided for @submitApplication. /// /// In zh, this message translates to: /// **'提交申请'** String get submitApplication; /// No description provided for @contactSupport. /// /// In zh, this message translates to: /// **'联系客服'** String get contactSupport; /// No description provided for @copyTradingTitle. /// /// In zh, this message translates to: /// **'合约跟单'** String get copyTradingTitle; /// No description provided for @klinePeriod1m. /// /// In zh, this message translates to: /// **'1分'** String get klinePeriod1m; /// No description provided for @klinePeriod5m. /// /// In zh, this message translates to: /// **'5分'** String get klinePeriod5m; /// No description provided for @klinePeriod15m. /// /// In zh, this message translates to: /// **'15分'** String get klinePeriod15m; /// No description provided for @klinePeriod30m. /// /// In zh, this message translates to: /// **'30分'** String get klinePeriod30m; /// No description provided for @klinePeriod1h. /// /// In zh, this message translates to: /// **'1时'** String get klinePeriod1h; /// No description provided for @klinePeriod4h. /// /// In zh, this message translates to: /// **'4时'** String get klinePeriod4h; /// No description provided for @klinePeriod1d. /// /// In zh, this message translates to: /// **'日线'** String get klinePeriod1d; /// No description provided for @klinePeriod1w. /// /// In zh, this message translates to: /// **'周线'** String get klinePeriod1w; /// No description provided for @klinePeriod1mon. /// /// In zh, this message translates to: /// **'月线'** String get klinePeriod1mon; /// No description provided for @unfollowTraderConfirm. /// /// In zh, this message translates to: /// **'是否确认取消跟随此交易员?'** String get unfollowTraderConfirm; /// No description provided for @currentFollowOrders. /// /// In zh, this message translates to: /// **'当前跟单'** String get currentFollowOrders; /// No description provided for @historyFollowOrders. /// /// In zh, this message translates to: /// **'历史跟单'** String get historyFollowOrders; /// No description provided for @availableBalanceUsdt. /// /// In zh, this message translates to: /// **'可用资产(USDT)'** String get availableBalanceUsdt; /// No description provided for @networkConnectionError. /// /// In zh, this message translates to: /// **'网络连接异常,请检查网络设置后重试'** String get networkConnectionError; /// No description provided for @perpetualContracts. /// /// In zh, this message translates to: /// **'永续合约'** String get perpetualContracts; /// No description provided for @searchHint. /// /// In zh, this message translates to: /// **'搜索'** String get searchHint; /// No description provided for @nameAndVolume. /// /// In zh, this message translates to: /// **'名称 / 成交量'** String get nameAndVolume; /// No description provided for @latestPriceChange. /// /// In zh, this message translates to: /// **'最新价 / 24h涨跌'** String get latestPriceChange; /// No description provided for @volumeWithValue. /// /// In zh, this message translates to: /// **'成交量 {value} USDT'** String volumeWithValue(String value); /// No description provided for @volumeEmpty. /// /// In zh, this message translates to: /// **'成交量 --'** String get volumeEmpty; /// No description provided for @txType0. /// /// In zh, this message translates to: /// **'充值'** String get txType0; /// No description provided for @txType1. /// /// In zh, this message translates to: /// **'提现'** String get txType1; /// No description provided for @txType2. /// /// In zh, this message translates to: /// **'内部转账'** String get txType2; /// No description provided for @txType3. /// /// In zh, this message translates to: /// **'币币交易'** String get txType3; /// No description provided for @txType4. /// /// In zh, this message translates to: /// **'手续费'** String get txType4; /// No description provided for @txType5. /// /// In zh, this message translates to: /// **'糖果'** String get txType5; /// No description provided for @txType6. /// /// In zh, this message translates to: /// **'活动发放'** String get txType6; /// No description provided for @txType7. /// /// In zh, this message translates to: /// **'推广奖励'** String get txType7; /// No description provided for @txType8. /// /// In zh, this message translates to: /// **'分红'** String get txType8; /// No description provided for @txType9. /// /// In zh, this message translates to: /// **'返利'** String get txType9; /// No description provided for @txType10. /// /// In zh, this message translates to: /// **'后台充值'** String get txType10; /// No description provided for @txType11. /// /// In zh, this message translates to: /// **'后台扣除'** String get txType11; /// No description provided for @txType13. /// /// In zh, this message translates to: /// **'锁仓'** String get txType13; /// No description provided for @txType14. /// /// In zh, this message translates to: /// **'解锁'** String get txType14; /// No description provided for @txType15. /// /// In zh, this message translates to: /// **'抢购'** String get txType15; /// No description provided for @txType16. /// /// In zh, this message translates to: /// **'活动奖励'** String get txType16; /// No description provided for @txType17. /// /// In zh, this message translates to: /// **'活动扣除'** String get txType17; /// No description provided for @txType18. /// /// In zh, this message translates to: /// **'用户转账'** String get txType18; /// No description provided for @txType19. /// /// In zh, this message translates to: /// **'合约手续费'** String get txType19; /// No description provided for @txType20. /// /// In zh, this message translates to: /// **'合约盈利'** String get txType20; /// No description provided for @txType21. /// /// In zh, this message translates to: /// **'合约亏损'** String get txType21; /// No description provided for @txType22. /// /// In zh, this message translates to: /// **'期权失败'** String get txType22; /// No description provided for @txType23. /// /// In zh, this message translates to: /// **'期权手续费'** String get txType23; /// No description provided for @txType24. /// /// In zh, this message translates to: /// **'期权奖励'** String get txType24; /// No description provided for @txType25. /// /// In zh, this message translates to: /// **'合约返佣'** String get txType25; /// No description provided for @txType26. /// /// In zh, this message translates to: /// **'合约资金费率'** String get txType26; /// No description provided for @txType27. /// /// In zh, this message translates to: /// **'合约爆仓'** String get txType27; /// No description provided for @txType28. /// /// In zh, this message translates to: /// **'合约保证金转入'** String get txType28; /// No description provided for @txType29. /// /// In zh, this message translates to: /// **'合约保证金转出'** String get txType29; /// No description provided for @txType30. /// /// In zh, this message translates to: /// **'手动充值'** String get txType30; /// No description provided for @txType31. /// /// In zh, this message translates to: /// **'手动扣除'** String get txType31; /// No description provided for @txType32. /// /// In zh, this message translates to: /// **'等级奖励'** String get txType32; /// No description provided for @txType33. /// /// In zh, this message translates to: /// **'平台手续费分红'** String get txType33; /// No description provided for @txType34. /// /// In zh, this message translates to: /// **'币币手续费'** String get txType34; /// No description provided for @txType35. /// /// In zh, this message translates to: /// **'持仓盈利'** String get txType35; /// No description provided for @txType36. /// /// In zh, this message translates to: /// **'持仓亏损'** String get txType36; /// No description provided for @txType37. /// /// In zh, this message translates to: /// **'跟单手续费'** String get txType37; /// No description provided for @txType38. /// /// In zh, this message translates to: /// **'跟单盈利'** String get txType38; /// No description provided for @txType39. /// /// In zh, this message translates to: /// **'跟单亏损'** String get txType39; /// No description provided for @txType40. /// /// In zh, this message translates to: /// **'跟单分红'** String get txType40; /// No description provided for @txType41. /// /// In zh, this message translates to: /// **'跟单奖励'** String get txType41; /// No description provided for @txType42. /// /// In zh, this message translates to: /// **'跟单资金费率'** String get txType42; /// No description provided for @txType43. /// /// In zh, this message translates to: /// **'带单收益'** String get txType43; /// No description provided for @txType44. /// /// In zh, this message translates to: /// **'带单手续费'** String get txType44; /// No description provided for @txType45. /// /// In zh, this message translates to: /// **'带单爆仓'** String get txType45; /// No description provided for @txType46. /// /// In zh, this message translates to: /// **'带单资金费率'** String get txType46; /// No description provided for @tagShortTerm. /// /// In zh, this message translates to: /// **'超短'** String get tagShortTerm; /// No description provided for @tagMidLong. /// /// In zh, this message translates to: /// **'中长'** String get tagMidLong; /// No description provided for @tagConservative. /// /// In zh, this message translates to: /// **'稳健型'** String get tagConservative; /// No description provided for @tagAggressive. /// /// In zh, this message translates to: /// **'激进型'** String get tagAggressive; /// No description provided for @tagHighLeverage. /// /// In zh, this message translates to: /// **'高倍'** String get tagHighLeverage; /// No description provided for @tagLowLeverage. /// /// In zh, this message translates to: /// **'低倍'** String get tagLowLeverage; /// No description provided for @sessionExpiredTitle. /// /// In zh, this message translates to: /// **'登录已过期'** String get sessionExpiredTitle; /// No description provided for @sessionExpiredContent. /// /// In zh, this message translates to: /// **'当前登录状态已失效,请重新登录'** String get sessionExpiredContent; /// No description provided for @relogin. /// /// In zh, this message translates to: /// **'重新登录'** String get relogin; /// No description provided for @photoPermissionDenied. /// /// In zh, this message translates to: /// **'相册权限被拒绝,请在系统设置中开启'** String get photoPermissionDenied; /// No description provided for @iaTitle. /// /// In zh, this message translates to: /// **'邀请好友'** String get iaTitle; /// No description provided for @iaHeading. /// /// In zh, this message translates to: /// **'每邀请一位好友'** String get iaHeading; /// No description provided for @iaBadge. /// /// In zh, this message translates to: /// **'可获得体验金'** String get iaBadge; /// No description provided for @iaRewardHint. /// /// In zh, this message translates to: /// **'每邀请一位好友可获得体验金'** String get iaRewardHint; /// No description provided for @iaValidCount. /// /// In zh, this message translates to: /// **'有效邀请人数(人)'** String get iaValidCount; /// No description provided for @iaEarned. /// /// In zh, this message translates to: /// **'已获得体验金(USDT)'** String get iaEarned; /// No description provided for @iaHowTitle. /// /// In zh, this message translates to: /// **'玩法介绍'** String get iaHowTitle; /// No description provided for @iaStep1T. /// /// In zh, this message translates to: /// **'分享邀请链接'** String get iaStep1T; /// No description provided for @iaStep1D. /// /// In zh, this message translates to: /// **'分享您的专属链接给好友'** String get iaStep1D; /// No description provided for @iaStep2T. /// /// In zh, this message translates to: /// **'完成任务'** String get iaStep2T; /// No description provided for @iaStep2D. /// /// In zh, this message translates to: /// **'好友通过邀请链接注册,并完成自主合约交易'** String get iaStep2D; /// No description provided for @iaStep3T. /// /// In zh, this message translates to: /// **'发放奖励'** String get iaStep3T; /// No description provided for @iaStep3D. /// /// In zh, this message translates to: /// **'好友获得注册奖励,您获得邀请奖励'** String get iaStep3D; /// No description provided for @iaRulesTitle. /// /// In zh, this message translates to: /// **'活动规则'** String get iaRulesTitle; /// No description provided for @iaRule1. /// /// In zh, this message translates to: /// **'活动期间新注册用户,完成首笔充值后可获得{amount}U体验金的新用户福利。'** String iaRule1(String amount); /// No description provided for @iaRule2. /// /// In zh, this message translates to: /// **'您邀请的好友完成首次合约自主交易后您可以获的{amount}U的体验金奖励,奖励无上限,邀请越多奖励越多。'** String iaRule2(String amount); /// No description provided for @iaRule3. /// /// In zh, this message translates to: /// **'体验金发放后{days}日有效,到期自动回收,请获取奖励后及时使用。'** String iaRule3(String days); /// No description provided for @iaInviteNow. /// /// In zh, this message translates to: /// **'立即邀请好友'** String get iaInviteNow; /// No description provided for @photoPermissionTitle. /// /// In zh, this message translates to: /// **'需要相册权限'** String get photoPermissionTitle; /// No description provided for @photoPermissionContent. /// /// In zh, this message translates to: /// **'请在系统设置中开启相册权限,以保存图片'** String get photoPermissionContent; /// No description provided for @goToSettings. /// /// In zh, this message translates to: /// **'前往设置'** String get goToSettings; /// No description provided for @marketData. /// /// In zh, this message translates to: /// **'数据'** String get marketData; /// No description provided for @timePeriod. /// /// In zh, this message translates to: /// **'时间周期'** String get timePeriod; /// No description provided for @nextFundingCountdown. /// /// In zh, this message translates to: /// **'距离下次资金费率时间'** String get nextFundingCountdown; /// No description provided for @fundingRateHistory. /// /// In zh, this message translates to: /// **'资金费率历史'** String get fundingRateHistory; /// No description provided for @spotTab. /// /// In zh, this message translates to: /// **'现货'** String get spotTab; /// No description provided for @buyAction. /// /// In zh, this message translates to: /// **'买入'** String get buyAction; /// No description provided for @sellAction. /// /// In zh, this message translates to: /// **'卖出'** String get sellAction; /// No description provided for @buyCoin. /// /// In zh, this message translates to: /// **'买入{coin}'** String buyCoin(String coin); /// No description provided for @sellCoin. /// /// In zh, this message translates to: /// **'卖出{coin}'** String sellCoin(String coin); /// No description provided for @canBuy. /// /// In zh, this message translates to: /// **'可买入'** String get canBuy; /// No description provided for @canSell. /// /// In zh, this message translates to: /// **'可卖出'** String get canSell; /// No description provided for @marketBest. /// /// In zh, this message translates to: /// **'市场最优价'** String get marketBest; /// No description provided for @amountQuoteLabel. /// /// In zh, this message translates to: /// **'交易额'** String get amountQuoteLabel; /// No description provided for @spotConditionalNotSupported. /// /// In zh, this message translates to: /// **'市价条件委托暂不支持'** String get spotConditionalNotSupported; /// No description provided for @spotAvgPrice. /// /// In zh, this message translates to: /// **'成交均价'** String get spotAvgPrice; /// No description provided for @spotHistoryTitle. /// /// In zh, this message translates to: /// **'历史委托'** String get spotHistoryTitle; /// No description provided for @spotHistoryRecordsTitle. /// /// In zh, this message translates to: /// **'历史记录'** String get spotHistoryRecordsTitle; /// No description provided for @spotHistoryTradesTab. /// /// In zh, this message translates to: /// **'历史成交'** String get spotHistoryTradesTab; /// No description provided for @spotHistoryFilterSymbol. /// /// In zh, this message translates to: /// **'交易对'** String get spotHistoryFilterSymbol; /// No description provided for @spotHistoryFilterOrderKind. /// /// In zh, this message translates to: /// **'委托类型'** String get spotHistoryFilterOrderKind; /// No description provided for @spotHistoryFilterStatus. /// /// In zh, this message translates to: /// **'状态'** String get spotHistoryFilterStatus; /// No description provided for @spotHistoryFilterTime. /// /// In zh, this message translates to: /// **'时间'** String get spotHistoryFilterTime; /// No description provided for @spotFilterSymbolAllPairs. /// /// In zh, this message translates to: /// **'全部交易对'** String get spotFilterSymbolAllPairs; /// No description provided for @spotFilterEntrustAll. /// /// In zh, this message translates to: /// **'全部委托'** String get spotFilterEntrustAll; /// No description provided for @spotEntrustQuantity. /// /// In zh, this message translates to: /// **'委托数量'** String get spotEntrustQuantity; /// No description provided for @spotDealTime. /// /// In zh, this message translates to: /// **'成交时间'** String get spotDealTime; /// No description provided for @spotOrderStatusCompleted. /// /// In zh, this message translates to: /// **'完成成交'** String get spotOrderStatusCompleted; /// No description provided for @spotOrderStatusPartialFilled. /// /// In zh, this message translates to: /// **'部分成交'** String get spotOrderStatusPartialFilled; /// No description provided for @spotOrderStatusCancelled. /// /// In zh, this message translates to: /// **'已取消'** String get spotOrderStatusCancelled; /// No description provided for @spotOrderTypeMarketConditional. /// /// In zh, this message translates to: /// **'市价条件单'** String get spotOrderTypeMarketConditional; /// No description provided for @spotFilterKindAll. /// /// In zh, this message translates to: /// **'全部'** String get spotFilterKindAll; /// No description provided for @spotFilterKindLimit. /// /// In zh, this message translates to: /// **'限价单'** String get spotFilterKindLimit; /// No description provided for @spotFilterKindMarket. /// /// In zh, this message translates to: /// **'市价单'** String get spotFilterKindMarket; /// No description provided for @spotFilterKindConditional. /// /// In zh, this message translates to: /// **'市价条件单'** String get spotFilterKindConditional; /// No description provided for @spotFilterTimeAll. /// /// In zh, this message translates to: /// **'全部'** String get spotFilterTimeAll; /// No description provided for @spotFilterTime7d. /// /// In zh, this message translates to: /// **'近7天'** String get spotFilterTime7d; /// No description provided for @spotFilterTime30d. /// /// In zh, this message translates to: /// **'近30天'** String get spotFilterTime30d; /// No description provided for @spotFilterStatusAll. /// /// In zh, this message translates to: /// **'全部'** String get spotFilterStatusAll; /// No description provided for @currentOrdersTab. /// /// In zh, this message translates to: /// **'当前委托({count})'** String currentOrdersTab(int count); /// No description provided for @assetsTab. /// /// In zh, this message translates to: /// **'资产'** String get assetsTab; /// No description provided for @hideOtherSymbols. /// /// In zh, this message translates to: /// **'隐藏其他交易对'** String get hideOtherSymbols; /// No description provided for @cancelSuccess. /// /// In zh, this message translates to: /// **'撤销成功'** String get cancelSuccess; /// No description provided for @noOpenOrders. /// /// In zh, this message translates to: /// **'暂无委托'** String get noOpenOrders; /// No description provided for @noAssets. /// /// In zh, this message translates to: /// **'暂无资产'** String get noAssets; /// No description provided for @hideZeroBalanceAssets. /// /// In zh, this message translates to: /// **'隐藏0余额资产'** String get hideZeroBalanceAssets; /// No description provided for @loginPrompt. /// /// In zh, this message translates to: /// **'登录后查看'** String get loginPrompt; /// No description provided for @loginText. /// /// In zh, this message translates to: /// **'去登录'** String get loginText; /// No description provided for @allLabel. /// /// In zh, this message translates to: /// **'全部'** String get allLabel; /// No description provided for @noHistoryOrders. /// /// In zh, this message translates to: /// **'暂无历史委托'** String get noHistoryOrders; /// No description provided for @noMoreData. /// /// In zh, this message translates to: /// **'没有更多数据了'** String get noMoreData; /// No description provided for @historyEntrust. /// /// In zh, this message translates to: /// **'历史'** String get historyEntrust; /// No description provided for @tradedDealAmount. /// /// In zh, this message translates to: /// **'成交数量'** String get tradedDealAmount; /// No description provided for @frozenLabel. /// /// In zh, this message translates to: /// **'冻结'** String get frozenLabel; /// No description provided for @transferIn. /// /// In zh, this message translates to: /// **'划入现货'** String get transferIn; /// No description provided for @transferOut. /// /// In zh, this message translates to: /// **'划出现货'** String get transferOut; /// No description provided for @fundingAccount. /// /// In zh, this message translates to: /// **'资金账户'** String get fundingAccount; /// No description provided for @spotAccount. /// /// In zh, this message translates to: /// **'现货账户'** String get spotAccount; /// No description provided for @todayPnlLabel. /// /// In zh, this message translates to: /// **'今日盈亏'** String get todayPnlLabel; /// No description provided for @totalAssets. /// /// In zh, this message translates to: /// **'总资产'** String get totalAssets; /// No description provided for @transferAmountExceedsBalance. /// /// In zh, this message translates to: /// **'超过可用余额'** String get transferAmountExceedsBalance; /// No description provided for @accountRecords. /// /// In zh, this message translates to: /// **'资金流水'** String get accountRecords; /// No description provided for @spotAccountRecordFilterTrade. /// /// In zh, this message translates to: /// **'成交'** String get spotAccountRecordFilterTrade; /// No description provided for @spotAccountRecordTypeOrderFreeze. /// /// In zh, this message translates to: /// **'下单冻结'** String get spotAccountRecordTypeOrderFreeze; /// No description provided for @spotAccountRecordTypeOrderUnfreeze. /// /// In zh, this message translates to: /// **'撤单解冻'** String get spotAccountRecordTypeOrderUnfreeze; /// No description provided for @spotAccountRecordTradeBuy. /// /// In zh, this message translates to: /// **'成交(买入)'** String get spotAccountRecordTradeBuy; /// No description provided for @spotAccountRecordTradeSell. /// /// In zh, this message translates to: /// **'成交(卖出)'** String get spotAccountRecordTradeSell; /// No description provided for @customerServiceLeave. /// /// In zh, this message translates to: /// **'退出'** String get customerServiceLeave; /// No description provided for @walletConnectPairingDescription. /// /// In zh, this message translates to: /// **'链上充值'** String get walletConnectPairingDescription; /// No description provided for @txType47. /// /// In zh, this message translates to: /// **'体验金提现'** String get txType47; /// No description provided for @txType48. /// /// In zh, this message translates to: /// **'现货交易'** String get txType48; /// No description provided for @txType49. /// /// In zh, this message translates to: /// **'质押'** String get txType49; /// No description provided for @txType50. /// /// In zh, this message translates to: /// **'质押解冻释放'** String get txType50; /// No description provided for @txType51. /// /// In zh, this message translates to: /// **'空投奖励'** String get txType51; /// No description provided for @depositEnterAmount. /// /// In zh, this message translates to: /// **'请输入充值数量'** String get depositEnterAmount; /// No description provided for @depositAmountPositive. /// /// In zh, this message translates to: /// **'请输入大于 0 的数量'** String get depositAmountPositive; /// No description provided for @depositCreateOrder. /// /// In zh, this message translates to: /// **'生成充币订单'** String get depositCreateOrder; /// No description provided for @depositOrderCreated. /// /// In zh, this message translates to: /// **'订单已创建,请向下方地址转账或连接钱包支付'** String get depositOrderCreated; /// No description provided for @depositWalletConnectPay. /// /// In zh, this message translates to: /// **'连接钱包并支付'** String get depositWalletConnectPay; /// No description provided for @depositWalletConnectHint. /// /// In zh, this message translates to: /// **'可使用 WalletConnect 连接钱包,将按订单金额向收款地址发起链上转账(请确认网络与币种一致)。'** String get depositWalletConnectHint; /// No description provided for @depositWalletConnectNotConfigured. /// /// In zh, this message translates to: /// **'WalletConnect 未配置:请在构建参数中设置 WALLETCONNECT_PROJECT_ID,或使用手动转账。'** String get depositWalletConnectNotConfigured; /// No description provided for @depositTronHint. /// /// In zh, this message translates to: /// **'波场(TRC20)请使用 TronLink 等钱包向收款地址转账,随后在下方填写 TxID。'** String get depositTronHint; /// No description provided for @depositOrSubmitHash. /// /// In zh, this message translates to: /// **'或:转账完成后填写交易哈希'** String get depositOrSubmitHash; /// No description provided for @depositTxHashPlaceholder. /// /// In zh, this message translates to: /// **'粘贴链上交易 Hash/波场 TxID'** String get depositTxHashPlaceholder; /// No description provided for @depositSubmitHash. /// /// In zh, this message translates to: /// **'提交交易哈希'** String get depositSubmitHash; /// No description provided for @depositNewRecharge. /// /// In zh, this message translates to: /// **'新建充值'** String get depositNewRecharge; /// No description provided for @depositTabOnChain. /// /// In zh, this message translates to: /// **'链上充值'** String get depositTabOnChain; /// No description provided for @depositTabManual. /// /// In zh, this message translates to: /// **'手动充值'** String get depositTabManual; /// No description provided for @depositOrderInfo. /// /// In zh, this message translates to: /// **'订单信息'** String get depositOrderInfo; /// No description provided for @depositOrderNo. /// /// In zh, this message translates to: /// **'订单号'** String get depositOrderNo; /// No description provided for @depositOrderStatus. /// /// In zh, this message translates to: /// **'状态'** String get depositOrderStatus; /// No description provided for @depositReceivingAddress. /// /// In zh, this message translates to: /// **'收款地址'** String get depositReceivingAddress; /// No description provided for @depositPayToHint. /// /// In zh, this message translates to: /// **'请按订单金额向该地址转账,币种与网络须与订单一致'** String get depositPayToHint; /// No description provided for @depositContractAddress. /// /// In zh, this message translates to: /// **'合约地址'** String get depositContractAddress; /// No description provided for @depositOrderAmount. /// /// In zh, this message translates to: /// **'充值金额'** String get depositOrderAmount; /// No description provided for @depositSelectNetworkFirst. /// /// In zh, this message translates to: /// **'请先选择充值网络'** String get depositSelectNetworkFirst; /// No description provided for @depositMainnetProtocol. /// /// In zh, this message translates to: /// **'主网/协议'** String get depositMainnetProtocol; /// No description provided for @depositSubCoin. /// /// In zh, this message translates to: /// **'子币种'** String get depositSubCoin; /// No description provided for @depositRules. /// /// In zh, this message translates to: /// **'规则'** String get depositRules; /// No description provided for @depositRulesBody. /// /// In zh, this message translates to: /// **'选择币种与网络并输入金额后,点击「生成充币订单」将获得专属收款地址与订单号;使用钱包完成链上转账后,在此页提交 TxHash。'** String get depositRulesBody; /// No description provided for @depositCurrentCoin. /// /// In zh, this message translates to: /// **'当前:{coin}'** String depositCurrentCoin(String coin); /// No description provided for @depositQrReceive. /// /// In zh, this message translates to: /// **'二维码收款'** String get depositQrReceive; /// No description provided for @depositQrHint. /// /// In zh, this message translates to: /// **'可用钱包扫一扫,向上述地址转账(请勿修改地址与金额)'** String get depositQrHint; /// No description provided for @depositCopy. /// /// In zh, this message translates to: /// **'复制'** String get depositCopy; /// No description provided for @depositSubmitHashHint. /// /// In zh, this message translates to: /// **'转账完成后填写交易哈希/TxID'** String get depositSubmitHashHint; /// No description provided for @passwordLengthError. /// /// In zh, this message translates to: /// **'密码长度须为 6–16 位'** String get passwordLengthError; /// No description provided for @passwordSpaceError. /// /// In zh, this message translates to: /// **'密码不能包含空格'** String get passwordSpaceError; /// No description provided for @passwordLetterDigitError. /// /// In zh, this message translates to: /// **'须同时包含字母与数字'** String get passwordLetterDigitError; /// No description provided for @brokerApplyTitle. /// /// In zh, this message translates to: /// **'申请成为经纪商'** String get brokerApplyTitle; /// No description provided for @brokerApplyDesc. /// /// In zh, this message translates to: /// **'您还不是经纪商,系统将自动使用您的账户信息提交申请,审核通过后即可使用经纪商功能。'** String get brokerApplyDesc; /// No description provided for @brokerApplyRecords. /// /// In zh, this message translates to: /// **'经纪商申请记录'** String get brokerApplyRecords; /// No description provided for @applyPendingTitle. /// /// In zh, this message translates to: /// **'申请审核中'** String get applyPendingTitle; /// No description provided for @auditStatusPending. /// /// In zh, this message translates to: /// **'待审核'** String get auditStatusPending; /// No description provided for @auditStatusApproved. /// /// In zh, this message translates to: /// **'审核通过'** String get auditStatusApproved; /// No description provided for @auditStatusRejected. /// /// In zh, this message translates to: /// **'审核拒绝'** String get auditStatusRejected; /// No description provided for @applyPendingDesc. /// /// In zh, this message translates to: /// **'您的经纪商申请正在审批,请耐心等待或联系客服'** String get applyPendingDesc; /// No description provided for @alreadyBroker. /// /// In zh, this message translates to: /// **'您已经是经纪商'** String get alreadyBroker; /// No description provided for @rechargeStatus0. /// /// In zh, this message translates to: /// **'待支付'** String get rechargeStatus0; /// No description provided for @rechargeStatus1. /// /// In zh, this message translates to: /// **'待链上确认'** String get rechargeStatus1; /// No description provided for @rechargeStatus2. /// /// In zh, this message translates to: /// **'已完成'** String get rechargeStatus2; /// No description provided for @rechargeStatus3. /// /// In zh, this message translates to: /// **'已取消'** String get rechargeStatus3; /// No description provided for @rechargeStatus4. /// /// In zh, this message translates to: /// **'失败'** String get rechargeStatus4; } class _AppLocalizationsDelegate extends LocalizationsDelegate { const _AppLocalizationsDelegate(); @override Future load(Locale locale) { return SynchronousFuture(lookupAppLocalizations(locale)); } @override bool isSupported(Locale locale) => [ 'en', 'hi', 'id', 'ja', 'ko', 'zh' ].contains(locale.languageCode); @override bool shouldReload(_AppLocalizationsDelegate old) => false; } AppLocalizations lookupAppLocalizations(Locale locale) { // Lookup logic when language+country codes are specified. switch (locale.languageCode) { case 'zh': { switch (locale.countryCode) { case 'TW': return AppLocalizationsZhTw(); } break; } } // Lookup logic when only language code is specified. switch (locale.languageCode) { case 'en': return AppLocalizationsEn(); case 'hi': return AppLocalizationsHi(); case 'id': return AppLocalizationsId(); case 'ja': return AppLocalizationsJa(); case 'ko': return AppLocalizationsKo(); 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.'); }