2024-04-12 09:17:10 +00:00
|
|
|
|
package translator
|
|
|
|
|
|
|
|
|
|
type TrCode string
|
|
|
|
|
|
|
|
|
|
// 翻译对应的标志字符串ID
|
|
|
|
|
const (
|
|
|
|
|
// account_disabled
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您的账户已禁用,暂时无法操作"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
AccountDisabled TrCode = "account_disabled"
|
|
|
|
|
|
|
|
|
|
// account_disabled_not_login
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您的账户已禁用,暂时无法操作"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
AccountDisabledNotLogin TrCode = "account_disabled_not_login"
|
|
|
|
|
|
|
|
|
|
// account_not_registered
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "账户未注册,请注册后再操作"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
AccountNotRegistered TrCode = "account_not_registered"
|
|
|
|
|
|
|
|
|
|
// account_or_password_login_failed
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "账号或密码不正确,登录失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
AccountOrPasswordLoginFailed TrCode = "account_or_password_login_failed"
|
|
|
|
|
|
|
|
|
|
// all_day_transaction
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "全天交易"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
AllDayTransaction TrCode = "all_day_transaction"
|
|
|
|
|
|
|
|
|
|
// application_has_been_submitted
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "很抱歉,申请已提交交易所,无法取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
ApplicationHasBeenSubmitted TrCode = "application_has_been_submitted"
|
|
|
|
|
|
|
|
|
|
// apply_cannot_be_cancelled
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "该笔申请已封帐无法取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
ApplyCannotBeCancelled TrCode = "apply_cannot_be_cancelled"
|
|
|
|
|
|
|
|
|
|
// balance_return
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "(退回)"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceReturn TrCode = "balance_return"
|
|
|
|
|
|
|
|
|
|
// balance_role_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "股票买入"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole1 TrCode = "balance_role_1"
|
|
|
|
|
|
|
|
|
|
// balance_role_10
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "平台分成"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole10 TrCode = "balance_role_10"
|
|
|
|
|
|
|
|
|
|
// balance_role_11
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "出金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole11 TrCode = "balance_role_11"
|
|
|
|
|
|
|
|
|
|
// balance_role_12
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole12 TrCode = "balance_role_12"
|
|
|
|
|
|
|
|
|
|
// balance_role_13
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "基金申购金额"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole13 TrCode = "balance_role_13"
|
|
|
|
|
|
|
|
|
|
// balance_role_14
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "基金申购费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole14 TrCode = "balance_role_14"
|
|
|
|
|
|
|
|
|
|
// balance_role_15
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "基金管理费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole15 TrCode = "balance_role_15"
|
|
|
|
|
|
|
|
|
|
// balance_role_16
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "资金补扣"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole16 TrCode = "balance_role_16"
|
|
|
|
|
|
|
|
|
|
// balance_role_17
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "资金退还"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole17 TrCode = "balance_role_17"
|
|
|
|
|
|
|
|
|
|
// balance_role_18
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "基金结算获利"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole18 TrCode = "balance_role_18"
|
|
|
|
|
|
|
|
|
|
// balance_role_19
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "虚拟加金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole19 TrCode = "balance_role_19"
|
|
|
|
|
|
|
|
|
|
// balance_role_2
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "买入手续费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole2 TrCode = "balance_role_2"
|
|
|
|
|
|
|
|
|
|
// balance_role_20
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手动入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole20 TrCode = "balance_role_20"
|
|
|
|
|
|
|
|
|
|
// balance_role_21
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "转移资金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole21 TrCode = "balance_role_21"
|
|
|
|
|
|
|
|
|
|
// balance_role_22
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "推广佣金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole22 TrCode = "balance_role_22"
|
|
|
|
|
|
|
|
|
|
// balance_role_23
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "基金超额管理费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole23 TrCode = "balance_role_23"
|
|
|
|
|
|
|
|
|
|
// balance_role_24
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "货币转换"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole24 TrCode = "balance_role_24"
|
|
|
|
|
|
|
|
|
|
// balance_role_25
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "配资投资本金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole25 TrCode = "balance_role_25"
|
|
|
|
|
|
|
|
|
|
// balance_role_26
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "配资利息"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole26 TrCode = "balance_role_26"
|
|
|
|
|
|
|
|
|
|
// balance_role_28
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "赠金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole28 TrCode = "balance_role_28"
|
|
|
|
|
|
|
|
|
|
// balance_role_3
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "股票卖出"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole3 TrCode = "balance_role_3"
|
|
|
|
|
|
|
|
|
|
// balance_role_4
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "卖出手续费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole4 TrCode = "balance_role_4"
|
|
|
|
|
|
|
|
|
|
// balance_role_5
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "新股申购"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole5 TrCode = "balance_role_5"
|
|
|
|
|
|
|
|
|
|
// balance_role_6
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "新股融资利息"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole6 TrCode = "balance_role_6"
|
|
|
|
|
|
|
|
|
|
// balance_role_7
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "新股申购手续费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole7 TrCode = "balance_role_7"
|
|
|
|
|
|
|
|
|
|
// balance_role_8
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "新股中签手续费"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole8 TrCode = "balance_role_8"
|
|
|
|
|
|
|
|
|
|
// balance_role_9
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "国配意向金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BalanceRole9 TrCode = "balance_role_9"
|
|
|
|
|
|
|
|
|
|
// buy_success_content_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您的交易 "
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BuySuccessContent1 TrCode = "buy_success_content_1"
|
|
|
|
|
|
|
|
|
|
// buy_success_content_2
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 买入 "
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BuySuccessContent2 TrCode = "buy_success_content_2"
|
|
|
|
|
|
|
|
|
|
// buy_success_content_3
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 已成交"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BuySuccessContent3 TrCode = "buy_success_content_3"
|
|
|
|
|
|
|
|
|
|
// buy_success_title
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "买入交易已成交"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
BuySuccessTitle TrCode = "buy_success_title"
|
|
|
|
|
|
|
|
|
|
// category_not_exist
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "分类不存在"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CategoryNotExist TrCode = "category_not_exist"
|
|
|
|
|
|
|
|
|
|
// currency_exchange_status_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "待处理"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrencyExchangeStatus1 TrCode = "currency_exchange_status_1"
|
|
|
|
|
|
|
|
|
|
// currency_exchange_status_2
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "转换成功"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrencyExchangeStatus2 TrCode = "currency_exchange_status_2"
|
|
|
|
|
|
|
|
|
|
// currency_exchange_status_3
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "转换失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrencyExchangeStatus3 TrCode = "currency_exchange_status_3"
|
|
|
|
|
|
|
|
|
|
// currency_exchange_status_4
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "已取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrencyExchangeStatus4 TrCode = "currency_exchange_status_4"
|
|
|
|
|
|
|
|
|
|
// current_position_of_the_stock
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "股票当前持仓数量"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrentPositionOfTheStock TrCode = "current_position_of_the_stock"
|
|
|
|
|
|
|
|
|
|
// currently_only_supports_conversion_hkd
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "目前只支持转为港币 HKD $"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
CurrentlyOnlySupportsConversionHkd TrCode = "currently_only_supports_conversion_hkd"
|
|
|
|
|
|
|
|
|
|
// data_not_exist
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "数据不存在!"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
DataNotExist TrCode = "data_not_exist"
|
|
|
|
|
|
|
|
|
|
// data_not_exist_retry
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "数据不存在,请重试!"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
DataNotExistRetry TrCode = "data_not_exist_retry"
|
|
|
|
|
|
|
|
|
|
// day
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "日"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Day TrCode = "day"
|
|
|
|
|
|
|
|
|
|
// days_ago
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 天前"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
DaysAgo TrCode = "days_ago"
|
|
|
|
|
|
|
|
|
|
// default_trading_time_period
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "默认交易时间段"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
DefaultTradingTimePeriod TrCode = "default_trading_time_period"
|
|
|
|
|
|
|
|
|
|
// email_exchange_title
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "资金变动提示"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailExchangeTitle TrCode = "email_exchange_title"
|
|
|
|
|
|
|
|
|
|
// email_registered
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邮箱已注册"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailRegistered TrCode = "email_registered"
|
|
|
|
|
|
|
|
|
|
// email_registered_forget_password
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邮箱已注册,请直接登录,如您忘记登录密码,请找回登录密码"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailRegisteredForgetPassword TrCode = "email_registered_forget_password"
|
|
|
|
|
|
|
|
|
|
// email_verify_code
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邮箱验证码"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailVerifyCode TrCode = "email_verify_code"
|
|
|
|
|
|
|
|
|
|
// email_verify_code_wrong
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邮箱验证码不正确"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailVerifyCodeWrong TrCode = "email_verify_code_wrong"
|
|
|
|
|
|
|
|
|
|
// email_verify_code_wrong_login_fail
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邮箱验证码不正确,登录失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
EmailVerifyCodeWrongLoginFail TrCode = "email_verify_code_wrong_login_fail"
|
|
|
|
|
|
|
|
|
|
// financing_not_cancel
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "很抱歉,融资打新不允许取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FinancingNotCancel TrCode = "financing_not_cancel"
|
|
|
|
|
|
|
|
|
|
// format_account_is_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "账户余额不足,请先入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FormatAccountIsInsufficient TrCode = "format_account_is_insufficient"
|
|
|
|
|
|
|
|
|
|
// fund_has_been_delisted
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "很抱歉,基金已下架,暂时无法申购"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FundHasBeenDelisted TrCode = "fund_has_been_delisted"
|
|
|
|
|
|
|
|
|
|
// fund_order_status_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "已申购"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FundOrderStatus1 TrCode = "fund_order_status_1"
|
|
|
|
|
|
|
|
|
|
// fund_order_status_2
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "已取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FundOrderStatus2 TrCode = "fund_order_status_2"
|
|
|
|
|
|
|
|
|
|
// fund_order_status_3
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "已结算"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
FundOrderStatus3 TrCode = "fund_order_status_3"
|
|
|
|
|
|
|
|
|
|
// get_email_verify_code_first
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "请先获取邮箱验证码"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
GetEmailVerifyCodeFirst TrCode = "get_email_verify_code_first"
|
|
|
|
|
|
|
|
|
|
// get_phone_number_verify_code_first
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "请先获取手机验证码"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
GetPhoneNumberVerifyCodeFirst TrCode = "get_phone_number_verify_code_first"
|
|
|
|
|
|
|
|
|
|
// have_a_subscription_record
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您已有该新股的申购记录,不能重复申请"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HaveASubscriptionRecord TrCode = "have_a_subscription_record"
|
|
|
|
|
|
|
|
|
|
// have_an_entrustment_record
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您已有该新股的委托记录,不能重复委托"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HaveAnEntrustmentRecord TrCode = "have_an_entrustment_record"
|
|
|
|
|
|
|
|
|
|
// holding_amount_is_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: ",持有数量不足,无法卖出"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HoldingAmountIsInsufficient TrCode = "holding_amount_is_insufficient"
|
|
|
|
|
|
|
|
|
|
// hongkong_account_is_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "港股账户余额不足,请先入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HongkongAccountIsInsufficient TrCode = "hongkong_account_is_insufficient"
|
|
|
|
|
|
|
|
|
|
// hongkong_stock_account_not_be_less_than
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "融资申购要求港股账户余额不低于"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HongkongStockAccountNotBeLessThan TrCode = "hongkong_stock_account_not_be_less_than"
|
|
|
|
|
|
|
|
|
|
// hours_ago
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 小时前"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
HoursAgo TrCode = "hours_ago"
|
|
|
|
|
|
|
|
|
|
// in_transaction
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "交易中"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
InTransaction TrCode = "in_transaction"
|
|
|
|
|
|
|
|
|
|
// incorrect_amount_retry
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "金额错误,请重试"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IncorrectAmountRetry TrCode = "incorrect_amount_retry"
|
|
|
|
|
|
|
|
|
|
// incorrect_security_code_retry
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "证券代码错误,请重试"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IncorrectSecurityCodeRetry TrCode = "incorrect_security_code_retry"
|
|
|
|
|
|
|
|
|
|
// insufficient_account_balance
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "账户余额不足,转换失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
InsufficientAccountBalance TrCode = "insufficient_account_balance"
|
|
|
|
|
|
|
|
|
|
// invitation_code_not_exists
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "邀请码不存在或有误,请检查后重试"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
InvitationCodeNotExists TrCode = "invitation_code_not_exists"
|
|
|
|
|
|
|
|
|
|
// ipo_cash_commission
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "现金委托"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IpoCashCommission TrCode = "ipo_cash_commission"
|
|
|
|
|
|
|
|
|
|
// ipo_financing_10_times
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "融资10倍"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IpoFinancing10Times TrCode = "ipo_financing_10_times"
|
|
|
|
|
|
|
|
|
|
// ipo_financing_20_times
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "融资20倍"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IpoFinancing20Times TrCode = "ipo_financing_20_times"
|
|
|
|
|
|
|
|
|
|
// ipo_times
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 倍"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
IpoTimes TrCode = "ipo_times"
|
|
|
|
|
|
|
|
|
|
// market_closed_orders_cannot_be_placed
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "当前市场休市中,暂不能下单"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
MarketClosedOrdersCannotBePlaced TrCode = "market_closed_orders_cannot_be_placed"
|
|
|
|
|
|
|
|
|
|
// max
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "最大"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Max TrCode = "max"
|
|
|
|
|
|
|
|
|
|
// maximum_number_of_sells
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "允许卖出数量最多为"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
MaximumNumberOfSells TrCode = "maximum_number_of_sells"
|
|
|
|
|
|
|
|
|
|
// minimum_purchase_amount
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "申购金额最低"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
MinimumPurchaseAmount TrCode = "minimum_purchase_amount"
|
|
|
|
|
|
|
|
|
|
// minutes_ago
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 分钟前"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
MinutesAgo TrCode = "minutes_ago"
|
|
|
|
|
|
|
|
|
|
// month
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "月"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Month TrCode = "month"
|
|
|
|
|
|
|
|
|
|
// new_shares_do_not_exist
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "新股不存在"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
NewSharesDoNotExist TrCode = "new_shares_do_not_exist"
|
|
|
|
|
|
|
|
|
|
// non_default_trading_time_period
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "非默认交易时间段"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
NonDefaultTradingTimePeriod TrCode = "non_default_trading_time_period"
|
|
|
|
|
|
|
|
|
|
// non_grey_market_trading_time
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "当前为非暗盘交易时间,下单失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
NonGreyMarketTradingTime TrCode = "non_grey_market_trading_time"
|
|
|
|
|
|
|
|
|
|
// order_failed_odd_lot_trading
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,不支持碎股交易"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderFailedOddLotTrading TrCode = "order_failed_odd_lot_trading"
|
|
|
|
|
|
|
|
|
|
// order_failed_price_cannot_be_higher_than
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,价格不能高于"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderFailedPriceCannotBeHigherThan TrCode = "order_failed_price_cannot_be_higher_than"
|
|
|
|
|
|
|
|
|
|
// order_failed_price_cannot_be_lower_than
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,价格不能低于"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderFailedPriceCannotBeLowerThan TrCode = "order_failed_price_cannot_be_lower_than"
|
|
|
|
|
|
|
|
|
|
// order_failed_price_is_incorrect
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,价格不正确"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderFailedPriceIsIncorrect TrCode = "order_failed_price_is_incorrect"
|
|
|
|
|
|
|
|
|
|
// order_failed_retry
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,请重试"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderFailedRetry TrCode = "order_failed_retry"
|
|
|
|
|
|
|
|
|
|
// order_is_not_cancel
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "该订单当前不支持撤单"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderIsNotCancel TrCode = "order_is_not_cancel"
|
|
|
|
|
|
|
|
|
|
// order_needs_3_minutes_before
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "市价单需要下单3分钟后才能撤单"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
OrderNeeds3MinutesBefore TrCode = "order_needs_3_minutes_before"
|
|
|
|
|
|
|
|
|
|
// other
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "其他"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Other TrCode = "other"
|
|
|
|
|
|
|
|
|
|
// password_match_error
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "两次密码不一致"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PasswordMatchError TrCode = "password_match_error"
|
|
|
|
|
|
|
|
|
|
// password_match_error_origin
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "原始密码不一致"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PasswordMatchErrorOrigin TrCode = "password_match_error_origin"
|
|
|
|
|
|
|
|
|
|
// phone_number_country_incorrect
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手机所属国家不正确,请检查"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberCountryIncorrect TrCode = "phone_number_country_incorrect"
|
|
|
|
|
|
|
|
|
|
// phone_number_not_registered
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "账户未注册,请注册后再操作"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberNotRegistered TrCode = "phone_number_not_registered"
|
|
|
|
|
|
|
|
|
|
// phone_number_registered
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手机已注册"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberRegistered TrCode = "phone_number_registered"
|
|
|
|
|
|
|
|
|
|
// phone_number_registered_forget_password
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手机号已注册,请直接登录,如您忘记登录密码,请找回登录密码"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberRegisteredForgetPassword TrCode = "phone_number_registered_forget_password"
|
|
|
|
|
|
|
|
|
|
// phone_number_verify_code_wrong
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手机验证码不正确"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberVerifyCodeWrong TrCode = "phone_number_verify_code_wrong"
|
|
|
|
|
|
|
|
|
|
// phone_number_verify_code_wrong_login_fail
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "手机验证码不正确,登录失败"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PhoneNumberVerifyCodeWrongLoginFail TrCode = "phone_number_verify_code_wrong_login_fail"
|
|
|
|
|
|
|
|
|
|
// please_deposit_first
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: ",请先入金!"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PleaseDepositFirst TrCode = "please_deposit_first"
|
|
|
|
|
|
|
|
|
|
// pretrade_not_allow_market_order
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "盘前交易不支持市价单,请更换重试"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
PretradeNotAllowMarketOrder TrCode = "pretrade_not_allow_market_order"
|
|
|
|
|
|
|
|
|
|
// record_is_not_cancel
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "该记录当前已不允许取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
RecordIsNotCancel TrCode = "record_is_not_cancel"
|
|
|
|
|
|
|
|
|
|
// record_not_exist
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "记录不存在"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
RecordNotExist TrCode = "record_not_exist"
|
|
|
|
|
|
|
|
|
|
// rise
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "起"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Rise TrCode = "rise"
|
|
|
|
|
|
|
|
|
|
// sell_success_content_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您的交易 "
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SellSuccessContent1 TrCode = "sell_success_content_1"
|
|
|
|
|
|
|
|
|
|
// sell_success_content_2
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 卖出 "
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SellSuccessContent2 TrCode = "sell_success_content_2"
|
|
|
|
|
|
|
|
|
|
// sell_success_content_3
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: " 已成交"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SellSuccessContent3 TrCode = "sell_success_content_3"
|
|
|
|
|
|
|
|
|
|
// sell_success_title
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "卖出交易已成交"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SellSuccessTitle TrCode = "sell_success_title"
|
|
|
|
|
|
|
|
|
|
// sms_verify_code_content_1
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "你的短讯验证码为:"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SmsVerifyCodeContent1 TrCode = "sms_verify_code_content_1"
|
|
|
|
|
|
|
|
|
|
// state_not_cancel
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "当前状态不允许取消"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
StateNotCancel TrCode = "state_not_cancel"
|
|
|
|
|
|
|
|
|
|
// stock
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "股票"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Stock TrCode = "stock"
|
|
|
|
|
|
|
|
|
|
// stock_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "您当前未持仓该股票或持仓数量不足,无法卖出"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
StockInsufficient TrCode = "stock_insufficient"
|
|
|
|
|
|
|
|
|
|
// stocks_do_not_support_grey_market_trading
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "股票不支持暗盘交易"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
StocksDoNotSupportGreyMarketTrading TrCode = "stocks_do_not_support_grey_market_trading"
|
|
|
|
|
|
|
|
|
|
// subscription_deadline_has_passed
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "当前已超过认购截止时间!"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SubscriptionDeadlineHasPassed TrCode = "subscription_deadline_has_passed"
|
|
|
|
|
|
|
|
|
|
// subscription_failed_over_purchased
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "申购失败,购买超额。基金当前剩余申购额度为:"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
SubscriptionFailedOverPurchased TrCode = "subscription_failed_over_purchased"
|
|
|
|
|
|
|
|
|
|
// text_required
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "数据有误"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
TextRequired TrCode = "text_required"
|
|
|
|
|
|
|
|
|
|
// the_market_is_closed
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "休市中"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
TheMarketIsClosed TrCode = "the_market_is_closed"
|
|
|
|
|
|
|
|
|
|
// the_market_is_closed_on_weekends
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "周末休市中"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
TheMarketIsClosedOnWeekends TrCode = "the_market_is_closed_on_weekends"
|
|
|
|
|
|
|
|
|
|
// the_maximum_quantity_is_limited_to_10_digits
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "数量最大限制10位数以内"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
TheMaximumQuantityIsLimitedTo10Digits TrCode = "the_maximum_quantity_is_limited_to_10_digits"
|
|
|
|
|
|
|
|
|
|
// to_be_disclosed
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "待公布"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
ToBeDisclosed TrCode = "to_be_disclosed"
|
|
|
|
|
|
|
|
|
|
// us_account_is_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "美股账户余额不足,请先入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
UsAccountIsInsufficient TrCode = "us_account_is_insufficient"
|
|
|
|
|
|
|
|
|
|
// us_stock_account_not_be_less_than
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "融资申购要求美股账户余额不低于"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
UsStockAccountNotBeLessThan TrCode = "us_stock_account_not_be_less_than"
|
|
|
|
|
|
|
|
|
|
// usdt_account_is_insufficient
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "USDT账户余额不足,请先入金"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
UsdtAccountIsInsufficient TrCode = "usdt_account_is_insufficient"
|
|
|
|
|
|
|
|
|
|
// waiting_to_open
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "待开盘"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
WaitingToOpen TrCode = "waiting_to_open"
|
|
|
|
|
|
|
|
|
|
// week
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "周"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
Week TrCode = "week"
|
|
|
|
|
|
|
|
|
|
// withfunding_asset_total_must_large_than_order_total
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,操盘资金必须大于下单金额"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
WithfundingAssetTotalMustLargeThanOrderTotal TrCode = "withfunding_asset_total_must_large_than_order_total"
|
|
|
|
|
|
|
|
|
|
// withfunding_must_all_clear
|
2024-04-12 09:43:47 +00:00
|
|
|
|
// description: "下单失败,配资必须全仓卖出"
|
2024-04-12 09:17:10 +00:00
|
|
|
|
WithfundingMustAllClear TrCode = "withfunding_must_all_clear"
|
|
|
|
|
)
|