en-US.json 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. {
  2. "app": {
  3. "name": "Muchinfo",
  4. "slogan": "Digital Trading Platform\r\nModern Integrated Services",
  5. "close": "Close",
  6. "pervious": "Previous",
  7. "next": "Next"
  8. },
  9. "home": {
  10. "product": "Product",
  11. "pricing": "Pricing",
  12. "pickup": "Reservation",
  13. "delivery": "Delivery"
  14. },
  15. "common": {
  16. "uploading": "uploading...",
  17. "loaderror": "upload error",
  18. "loadtips": "To use this function normally, album permission is required. Do you need to go to the Settings page to enable the permission?",
  19. "pulling-text": "Pull down to refresh...",
  20. "loosing-text": "Release to load...",
  21. "loading-text": "Loading..",
  22. "success-text": "Loading successful",
  23. "nodatas": "No Datas",
  24. "baseinfo": "Basic information",
  25. "more": "More",
  26. "details": "Details",
  27. "placeholder": "Please enter",
  28. "loadingfailed": "Loading failed",
  29. "required": "Required",
  30. "optional": "Optional",
  31. "logout": "Log out",
  32. "save": "Save",
  33. "tips": "Notification",
  34. "submitsuccess": "Submit Successful",
  35. "submitsuccess1": "Submission successful, please check the result later.",
  36. "pleaseenter": "Please enter",
  37. "ikonw": "I understand",
  38. "operate": "Operate",
  39. "exit": "Exit",
  40. "tryagain": "Retry",
  41. "loading": "Loading...",
  42. "submiting": "Submitting...",
  43. "nomore": "No more items.",
  44. "loadMore": "Load More",
  45. "orderindex": "No.",
  46. "startdate": "Start date",
  47. "enddate": "End date",
  48. "choice": "Please select",
  49. "choice1": "Please enter a keyword.",
  50. "choice2": "Select",
  51. "choice3": "Please select a region.",
  52. "yes": "Yes",
  53. "no": "No",
  54. "submitfailure": "Submission failed:",
  55. "requestfailure": "Request failed, click to reload.",
  56. "tips1": "Would you like to list it immediately?",
  57. "tips2": "Listing successful.",
  58. "tips3": "Listing failed:",
  59. "tips4": "Order cancellation successful.",
  60. "tips5": "Partial order cancellation failed",
  61. "tips6": "Partial settlement failed:",
  62. "tips7": "Direct debit agreement for deposit not completed.",
  63. "tips8": "Verification code sending failed:",
  64. "tips9": "Real-name authentication submission request failed:",
  65. "tips10": "Real-name authentication submission request successful.",
  66. "tips11": "Sending failed.",
  67. "tips12": "Not signed",
  68. "tips13": "Contract information successfully updated.",
  69. "tips14": "Contract submission successful, please wait patiently for the review.",
  70. "tips15": "Confirmation successful.",
  71. "tips16": "Confirmation failed:",
  72. "tips17": "Operation timed out",
  73. "tips18": "Login expired, please log in again.",
  74. "tips19": "Request timed out, please try again later.",
  75. "tips20": "An error occurred, please try again later.",
  76. "tips21": "Network or server error.",
  77. "tips22": "Request failed, please try again later.",
  78. "tips23": "Request failed:",
  79. "tips24": "Login expired:",
  80. "tips25": "Album permission not granted.",
  81. "tips26": "Upload successful",
  82. "tips27": "Upload failed",
  83. "tips28": "Uploading…",
  84. "tips29": "The image size cannot exceed 5MB.",
  85. "tips30": "Storage space/photo permission instructions.",
  86. "tips31": "Used to read and write album and file content in scenarios such as adding, creating, uploading, publishing, sharing, downloading, searching, and recognizing images and videos.",
  87. "tips32": "Found a new version, do you want to update?",
  88. "tips33": "Download completed, do you want to install now?",
  89. "all": "All",
  90. "calendar": "Date selection",
  91. "download": "Download",
  92. "update": "Update",
  93. "install": "Install",
  94. "hidden": "Hidden",
  95. "downloading": "Downloading"
  96. },
  97. "tabbar": {
  98. "home": "Homepage",
  99. "mine": "Me",
  100. "pricing": "Pricing",
  101. "trade": "Trade",
  102. "wallet": "Wallet",
  103. "contract": "Contract",
  104. "spot": "Spots"
  105. },
  106. "routes": {
  107. "news": "Market news",
  108. "notice": "Announcement",
  109. "capital": "Fund information",
  110. "sign": "Signing account",
  111. "profile": "Personal information",
  112. "setting": "Settings",
  113. "about": "About Us",
  114. "modifypwd": "Change password",
  115. "usercancel": "Account deletion"
  116. },
  117. "operation": {
  118. "add": "Add",
  119. "all": "Full withdrawal",
  120. "buynow": "Buy Now",
  121. "submit": "Submit",
  122. "edit": "Edit",
  123. "confirm": "Confirm",
  124. "delete": "Delete",
  125. "save": "Save",
  126. "order": "Order",
  127. "cancel": "Cancel",
  128. "cancel1": "Quick cancel",
  129. "cancel2": "Revoke",
  130. "transfer": "Transfer",
  131. "delivery": "Delivery",
  132. "listing": "Listing",
  133. "listing1": "Seeking to purchase",
  134. "delisting": "Delisting",
  135. "pickup": "Pick Up",
  136. "details": "Details",
  137. "deposit": "Make up the deposit",
  138. "deposit2": "Additional deposit",
  139. "close": "Close",
  140. "close1": "Close",
  141. "default": "Breach of contract",
  142. "default1": "Set as default",
  143. "default2": "Apply for breach of contract",
  144. "modify": "Edit",
  145. "modify2": "Edit information",
  146. "manual": "Manual confirmatio",
  147. "extension": "Extension application",
  148. "execution": "Execute immediately",
  149. "payment": "Payment",
  150. "search": "Search",
  151. "reset": "Reset",
  152. "disagree": "Disagree",
  153. "next": "Next",
  154. "upload": "Upload",
  155. "chart": "Chart",
  156. "restore": "Restore to default",
  157. "savesetting": "Save Settings",
  158. "back": "Back",
  159. "Withholding": "Direct debit agreement application",
  160. "closeall": "Collapse all",
  161. "openall": "Expand all",
  162. "modifyavatar": "Change profile picture",
  163. "agree": "Agree",
  164. "giveup": "Abandon",
  165. "One-click": "One-click unsubscribe"
  166. },
  167. "chart": {
  168. "time": "Intraday",
  169. "minutes": "Minutes",
  170. "dayline": "Daily line",
  171. "weekline": "Weekly line",
  172. "monthline": "Monthly line",
  173. "yearline": "Yearly line",
  174. "oneminutes": "1m",
  175. "fiveminutes": "5m",
  176. "thirtyminutes": "30m",
  177. "onehour": "1h",
  178. "fourhour": "4h",
  179. "timestrade": "Intraday trading",
  180. "refprice": "Reference price",
  181. "Open": "Open:",
  182. "High": "High:",
  183. "Low": "Low:",
  184. "Close": "Close:",
  185. "Vol": "Volume:",
  186. "Amount": "Amount:",
  187. "Increase": "Range:",
  188. "Price": "Price:"
  189. },
  190. "account": {
  191. "title": "Fund information",
  192. "account": "Fund account",
  193. "accountid": "Fund account number",
  194. "userId": "User ID:",
  195. "loginId": "Login ID:",
  196. "connected": "Connected",
  197. "unconnected": "Not connected",
  198. "quoteservice": "Market data service:",
  199. "balance": "Balance",
  200. "balance2": "Beginning balance",
  201. "currentbalance": "Ending balance",
  202. "freezeMargin": "Freeze margin",
  203. "freezeMargin2": "FreezeMargin Funds",
  204. "availableFunds": "Available",
  205. "availableFunds2": "Available funds",
  206. "netWorth": "NetWorth",
  207. "usedMargin": "Occupied",
  208. "usedMargin2": "Used funds",
  209. "profitLoss": "Profit Loss",
  210. "inamount": "Today Cash In",
  211. "outamount": "Today Cash Out",
  212. "closepl": "Today Close Pl",
  213. "paycharge": "Pay Charge",
  214. "tradestatus": "Trade Status",
  215. "riskRate": "Risk rate",
  216. "riskRate1": "Risk rate:",
  217. "cutRate": "Liquidation rate:",
  218. "tips1": "Risk rate = (Occupied / Net value) * 100%",
  219. "tips2": "Liquidation rate = (Risk rate / Liquidation risk rate) * 100%",
  220. "formula": "Formula",
  221. "freeze": "FreezeMargin"
  222. },
  223. "quote": {
  224. "title": "Reference market data",
  225. "goodsname": "Product/Code",
  226. "goodsname1": "Name",
  227. "goodscode": "Code",
  228. "refgoodsname": "Underlying contract",
  229. "averageprice": "Average price",
  230. "spec": "Specification",
  231. "last": "Latest price",
  232. "rise": "Rise and fall",
  233. "change": "Range",
  234. "opened": "Opened",
  235. "presettle": "Presettle",
  236. "lowest": "Lowest",
  237. "highest": "Highest",
  238. "amplitude": "Amplitude",
  239. "limitup": "Upper limit",
  240. "limitdown": "Lower limit",
  241. "bidvolume": "Bid Volume",
  242. "askvolume": "Ask Volume",
  243. "buyusername": "Buyer",
  244. "sellusername": "Seller",
  245. "bid": "BidPrice",
  246. "ask": "SellPrice",
  247. "sellprice": "SellPrice",
  248. "time": "Time",
  249. "vol": "Current volume",
  250. "holdvolume": "Hold Volume",
  251. "totalvolume": "Transaction volume",
  252. "totalturnover": "Transaction amount",
  253. "buyhall": "Buy Hall",
  254. "sellhall": "Sell Hall",
  255. "buysellhall": "Trading hall",
  256. "listinghall": "Listing Hall",
  257. "enableQty": "Estimated tradable volume",
  258. "deposit": "Deposit",
  259. "avaiableMoney": "Available funds",
  260. "orderbuy": "O-Buy",
  261. "transferbuy": "T-Buy",
  262. "ordersell": "O-Sell",
  263. "transfersell": "T-Sell",
  264. "buy": "Buy",
  265. "sell": "Sell",
  266. "bidlisting": "Bid orders",
  267. "asklisting": "Ask orders",
  268. "bid1": "Bid1",
  269. "bid2": "Bid2",
  270. "bid3": "Bid3",
  271. "bid4": "Bid4",
  272. "bid5": "Bid5",
  273. "ask1": "Ask1",
  274. "ask2": "Ask2",
  275. "ask3": "Ask3",
  276. "ask4": "Ask4",
  277. "ask5": "Ask5",
  278. "marketstatus": "Market status:",
  279. "unopening": "Market not open",
  280. "score": "Score",
  281. "ballot": {
  282. "title": "Subscription",
  283. "refprice": "Proposed price",
  284. "attachmenturl": "Image",
  285. "sellname": "Seller:",
  286. "starttime": "Start:",
  287. "endtime": "End:",
  288. "starttime1": "Start time",
  289. "endtime1": "End time",
  290. "historypresale": "Pre-sale history",
  291. "presalewin": "Pre-sale draw win",
  292. "issueprice": "Issue price",
  293. "goodsdetail": "Product details",
  294. "winningthelottery": "Lottery win",
  295. "totalqty": "Total amount:",
  296. "earnest": "Pre-sale deposit",
  297. "transferdepositratio": "Transfer deposit",
  298. "subscribe": "I want to subscribe",
  299. "orderQty": "Subscription amount",
  300. "maxbuyqty": "Maximum subscription amount",
  301. "deposit": "Pre-sale deposit",
  302. "avaiablefunds": "Avaiable Funds",
  303. "presalestatus": "Pre-sale status",
  304. "ordercannotbegreaterthan": "Order quantity cannot exceed",
  305. "pleaseenterthesubscriptionquantity": "Please enter subscription amount"
  306. },
  307. "goods": {
  308. "title": "Delisting",
  309. "title1": "Order trading",
  310. "orderprice": "Price",
  311. "orderqty": "Quantity",
  312. "goods": "Goods",
  313. "username": "Listing party",
  314. "nodeal": "Cannot trade with oneself",
  315. "buyorsell": "Direction",
  316. "pleaseenterorderprice": "Please enter the price",
  317. "pleaseenterorderqty": "Please enter the quantity",
  318. "tips1": "Are you sure you want to submit?",
  319. "tips2": "*If there are matching opposite orders at the same price, the system will automatically cancel them.",
  320. "tips3": "*Submission successful.",
  321. "tips4": "Please enter the delisting amount",
  322. "delistingqty": "Delisting amount",
  323. "delistingbuyorsell": "Delisting direction",
  324. "remainqty": "RemainingQty",
  325. "listingprice": "Listing price",
  326. "taaccount": "TaAccount"
  327. },
  328. "presale": {
  329. "title": "Product details",
  330. "attachmenturl": "Image",
  331. "bulk": "Bulk auction",
  332. "earnest": "Pre-sale deposit",
  333. "transferdeposit": "Transfer deposit",
  334. "totalqty": "Total amount:",
  335. "buy": "I want to bid",
  336. "startprice": "Starting price",
  337. "presalehistory": "Pre-sale History",
  338. "starttime": "Start:",
  339. "endtime": "End:",
  340. "starttime1": "Start time",
  341. "endtime1": "End time",
  342. "presalebidding": "Pre-sale auction",
  343. "bidfor": "Bid",
  344. "presalestatus": "Pre-sale status",
  345. "SubscriptionPrice": "Subscription price",
  346. "avaiableMoney": "Available funds",
  347. "SubscriptionQty": "Subscription amount",
  348. "ended": "Completed",
  349. "tips1": "Please enter the quantity",
  350. "tips2": "Please enter the price"
  351. },
  352. "swap": {
  353. "title": "Listing",
  354. "floatprice": "Floating price",
  355. "fixprice": "Fixed price",
  356. "tips1": "Please first sign the relevant contract through the ‘Me' - 'Agreement Signing' function menu!",
  357. "tips2": "Real-name authentication not completed. Please complete the real-name authentication. If you have already submitted it, please be patient and wait for approval!",
  358. "tips3": "The contract has been submitted for signing request. Please be patient and wait for approval!",
  359. "sign": "Sign",
  360. "unreviewed": "Pending review",
  361. "username": "Listing party",
  362. "orderqty": "Quantity",
  363. "orderprice": "Price",
  364. "marketmaxsub": "Spread range",
  365. "orderqty1": "Listed amount",
  366. "orderqty2": "Delisting amount",
  367. "orderprice1": "Listing price",
  368. "estimateprice": "Estimated price",
  369. "referenceprice": "Reference price",
  370. "orderamount": "Listing amount",
  371. "estimateamount": "Estimated amount",
  372. "permargin": "PerMargin",
  373. "avaiablemoney": "Available funds",
  374. "pricemove": "Type of price",
  375. "currentaccount": "CurrentTaAccount",
  376. "goodsname": "Product/Code",
  377. "buyorsell": "Listing direction",
  378. "marketprice": "Market price",
  379. "limitprice": "Limit price",
  380. "enableqty": "Available delisting amount",
  381. "sellprice": "SellPrice",
  382. "buyprice": "BuyPrice",
  383. "tips4": "Cannot trade with oneself",
  384. "tips5": "Listing submission successful.",
  385. "tips6": "Please enter the price",
  386. "tips7": "Please enter the listing price",
  387. "tips8": "Please enter the listing amount",
  388. "tips9": "Please enter the basis",
  389. "tips10": "Please enter the listing basis",
  390. "tips11": "Please enter the delisting price",
  391. "tips12": "Please enter the delisting amount",
  392. "tips13": "Submission successful.",
  393. "tips14": "Do you want to delist immediately?"
  394. },
  395. "pricing": {
  396. "title": "Trading",
  397. "title1": "Listing & Pricing",
  398. "title2": "Full-Purchase",
  399. "title3": "Score-Trading",
  400. "address": "Address",
  401. "ordercancel": "Order is cancellable",
  402. "position": "Position Summary",
  403. "holdlb": "Position details",
  404. "goods": "Goods",
  405. "buyorsell": "BuyOrSell",
  406. "pricemode": "Method",
  407. "orderqty": "Quantity",
  408. "marketmaxsub": "Spread range",
  409. "marketmaxsub1": "Basis",
  410. "price": "Price",
  411. "enableQty": "Estimated tradable volume",
  412. "deposit": "Deposit",
  413. "avaiableMoney": "Available funds",
  414. "orderdetails": "Order details",
  415. "tips1": "Please enter the quantity",
  416. "tips2": "Please enter the price",
  417. "tips3": "Please enter the spread range"
  418. },
  419. "spot": {
  420. "title": "Listing Details",
  421. "attachmenturl": "Image",
  422. "orderprice": "Price",
  423. "operate": "Operate",
  424. "username": "Listing party",
  425. "orderqty": "Quantity",
  426. "wantbuy": "I want to buy",
  427. "wantsell": "I want to sell",
  428. "buylisting": "Buy Listing",
  429. "sellisting": "Sell Listing",
  430. "listingqty": "Listing amount",
  431. "paymentamount": "Payment amount",
  432. "avaiableMoney": "Available funds",
  433. "enableqty": "EnableQty",
  434. "listingprice": "ListingPrice",
  435. "tips1": "Please select a performance template",
  436. "tips2": "Please enter the price",
  437. "tips3": "Please select a spot warehouse receipt",
  438. "tips4": "Please enter the quantity",
  439. "tips5": "Insufficient available quantity",
  440. "tips6": "Listing submission successful.",
  441. "tips7": "Insufficient remaining quantity",
  442. "subtitle": "Place spot order",
  443. "subtitle1": "Spot warehouse receipt",
  444. "orderqty2": "Delisting amount",
  445. "remainqty": "Remaining quantity",
  446. "performancetemplate": "Performance template",
  447. "wrstandardname": "Goods",
  448. "warehousename": "Warehouse:",
  449. "warehousename1": "Warehouse",
  450. "enableqty1": "Available:",
  451. "wrstandard": "Goods",
  452. "deliverygoods": "Category",
  453. "deliverygoodsname": "Type",
  454. "wrgoodsname": "Goods",
  455. "sellprice": "SellPrice",
  456. "sellqty": "Sell volume",
  457. "buyprice": "BuyPrice",
  458. "buyqty": "Buy volume",
  459. "tons": "Ton",
  460. "yuan": "Thai Baht",
  461. "tips8": "Delisting submission successful.",
  462. "tips9": "Please select",
  463. "tips10": "Please select a category",
  464. "tips11": "Please select a product",
  465. "tips12": "Please select a warehouse",
  466. "tips13": "Element of commodities",
  467. "tips14": "Please select a performance method"
  468. },
  469. "transfer": {
  470. "title1": "Transfer Details",
  471. "qty": "Quantity",
  472. "price": "Price",
  473. "sellname": "Issuing party",
  474. "presaleprice": "Order Price",
  475. "lastprice": "Latest Price",
  476. "transferdepositratio": "Transfer deposit ratio",
  477. "limitup": "Upper limit price",
  478. "limitdown": "Lower limit price",
  479. "presaleprice1": "Order Price",
  480. "presaleprice2": "Proposed Price",
  481. "username": "Listing party",
  482. "orderqty": "Quantity",
  483. "orderprice": "Price",
  484. "spread": "Spread price",
  485. "deposit": "Deposit",
  486. "buyorderqty": "Buy volume",
  487. "transferprice": "Transfer price",
  488. "orderqty1": "OrderQty",
  489. "tips1": "Please enter the price",
  490. "tips2": "Please enter the quantity",
  491. "tips3": "Submission successful"
  492. }
  493. },
  494. "order": {
  495. "title": "My orders",
  496. "plTotal": "Profit and loss:",
  497. "feeTotal": "Fee Total:",
  498. "qtyTotal": "Quantity:",
  499. "deliverytime": "DeliveryTime",
  500. "goodsorder": {
  501. "title": "Order request form",
  502. "title2": "Historical order requests",
  503. "subtitle": "Order request information",
  504. "goodsname": "Product code/name",
  505. "goodsname1": "Product name",
  506. "goodscode": "Order contract",
  507. "buyorsell": "BuyOrSell",
  508. "buildtype": "Type",
  509. "buyorsellbuildtype": "Direction/Type",
  510. "orderqty": "OrderQty",
  511. "orderprice": "Order Price",
  512. "tradeqty": "Transaction volume",
  513. "orderstatus": "Order status",
  514. "ordertime": "Order time",
  515. "orderdate": "Order date",
  516. "orderid": "Order ID",
  517. "freezemargin": "Frozen Margin",
  518. "tips1": "Do you want to cancel this order?",
  519. "tips2": "Cancellation successful",
  520. "tips3": "Do you want to cancel this settlement order?",
  521. "clear": {
  522. "title": "Quick cancel",
  523. "goodsId": "Ordered product",
  524. "buyOrSell": "Order direction",
  525. "price": "Cancellation price",
  526. "tips1": "Please select the ordered product",
  527. "tips2": "Please enter the cancellation price"
  528. }
  529. },
  530. "goodstrade": {
  531. "title": "Order transaction receipt",
  532. "title2": "Historical order transactions",
  533. "subtitle": "Order transaction information",
  534. "goodsname": "Product code/name",
  535. "goodsname1": "Product name",
  536. "goodscode": "Order contract",
  537. "buyorsell": "Direction",
  538. "buildtype": "Type",
  539. "buildtypebuyorsell": "Type/Direction",
  540. "tradeqty": "Transaction volume",
  541. "tradeprice": "Transaction price",
  542. "charge": "Service charge",
  543. "closepl": "Closing profit and loss",
  544. "tradetime": "Transaction time",
  545. "tradedate": "Transaction date",
  546. "tradeid": "Transaction number",
  547. "initFeeValue": "交易手续费"
  548. },
  549. "listingorder": {
  550. "title": "Listing order",
  551. "title2": "Historical listing orders",
  552. "subtitle": "Listing order information",
  553. "goodsname": "Product code/name",
  554. "warehousename": "Warehouse",
  555. "wrpricetype": "Listing method",
  556. "deliverygoodsname": "Type",
  557. "wrstandardname": "Product name",
  558. "wrtradetype": "Type",
  559. "buyorsell": "Direction",
  560. "fixedprice": "Listing price",
  561. "fixedprice1": "Price/Basis",
  562. "wrtypename": "Futures contract",
  563. "orderqty": "OrderQty",
  564. "tradeqty": "Transaction volume",
  565. "cancelqty": "Cancellation volume",
  566. "ordertime": "Order time",
  567. "orderdate": "Order date",
  568. "orderprice": "Order Price",
  569. "wrtradeorderstatus": "Order status",
  570. "wrtradeorderid": "Order ID",
  571. "tips1": "Are you sure you want to cancel?",
  572. "tips2": "Cancellation successful"
  573. },
  574. "listingtrade": {
  575. "title": "Listing transaction receipt",
  576. "title2": "Historical listing transactions",
  577. "subtitle": "Listing transaction information",
  578. "goodsname": "Product code/name",
  579. "deliverygoodsname": "Type",
  580. "wrstandardname": "Product name",
  581. "chargevalue": "Service charge",
  582. "warehousename": "Warehouse",
  583. "wrtradetype": "Type",
  584. "buyorsell": "Direction",
  585. "tradeprice": "Transaction price",
  586. "tradeqty": "Transaction volume",
  587. "tradeamount": "Transaction amount",
  588. "tradetime": "Transaction time",
  589. "tradedate": "Transaction date",
  590. "matchusername": "Counterparty",
  591. "wrtradedetailid": "Transaction number"
  592. },
  593. "presale": {
  594. "title": "Pre-sale subscription",
  595. "subtitle": "Pre-sale subscription information",
  596. "subtitle1": "Historical pre-sale subscriptions",
  597. "goodsname": "Product code/name",
  598. "orderqty": "Subscription Amount",
  599. "orderprice": "Subscription Price",
  600. "orderamount": "Subscription amount",
  601. "presaledepositalgorithm": "Deposit method",
  602. "presaledepositvalue": "Deposit ratio",
  603. "freezemargin": "Pre-sale deposit",
  604. "sellname": "Issuing party",
  605. "starttime": "Start date",
  606. "endtime": "End date",
  607. "orderstatus": "Order status",
  608. "ordertime": "Order time",
  609. "orderdate": "Order time",
  610. "tradeprice": "Proposed Price",
  611. "tradeqty": "OrderQty",
  612. "orderid": "Order ID"
  613. },
  614. "transferorder": {
  615. "title": "Transfer order",
  616. "subtitle": "Transfer order information",
  617. "subtitle1": "Historical transfer orders",
  618. "goodsname": "Product code/name",
  619. "buyorsell": "Direction",
  620. "orderqty": "OrderQty",
  621. "orderprice": "Requested Price",
  622. "presaleprice": "Order Price",
  623. "tradeqty": "Transaction volume",
  624. "orderstatus": "Order Status",
  625. "ordertime": "Order Time",
  626. "orderid": "Order ID",
  627. "tips1": "Do you want to cancel this order?",
  628. "tips2": "Cancellation successful"
  629. },
  630. "transfertrade": {
  631. "title": "Transfer transaction receipt",
  632. "subtitle": "Transfer transaction information",
  633. "subtitle1": "Historical transfer transactions",
  634. "goodsname": "Product code/name",
  635. "buyorsell": "Direction",
  636. "tradeqty": "Transfer volume",
  637. "tradeprice": "Transfer price",
  638. "presaleprice": "Order Price",
  639. "closepl": "Profit and loss",
  640. "accountname": "Counterparty",
  641. "tradetime": "Transaction time",
  642. "tradedate": "Transaction date",
  643. "orderid": "Transaction number"
  644. },
  645. "swaporder": {
  646. "title": "Swap order",
  647. "subtitle": "Order information",
  648. "subtitle1": "Historical swap order",
  649. "subtitle2": "Swap order details",
  650. "goodsname": "Product code/name",
  651. "buyorsell": "Direction",
  652. "orderqty": "OrderQty",
  653. "orderprice": "Order Price",
  654. "tradeqty": "Transaction volume",
  655. "orderstatus": "Order status",
  656. "ordertime": "Order time",
  657. "orderdate": "Order date",
  658. "orderid": "Order ID",
  659. "tips1": "Are you sure you want to cancel?",
  660. "tips2": "Cancellation successful"
  661. },
  662. "swaptrade": {
  663. "title": "Swap transaction",
  664. "subtitle": "Transaction information",
  665. "subtitle1": "Historical transactions",
  666. "subtitle2": "Transaction details",
  667. "goodsname": "Product code/name",
  668. "buyorsell": "Direction",
  669. "buildtype": "Type",
  670. "tradeqty": "Transaction volume",
  671. "tradeprice": "Transaction price",
  672. "tradeamount": "Transaction amount",
  673. "charge": "Service charge",
  674. "closepl": "Settlement profit and loss",
  675. "matchaccountid": "Trade counterparty",
  676. "tradetime": "Transaction time",
  677. "tradedate": "Transaction date",
  678. "tradeid": "Transaction number"
  679. },
  680. "pricingorder": {
  681. "title": "Price fixing order",
  682. "subtitle": "Quoted pricing order information",
  683. "subtitle1": "Details",
  684. "goodsname": "Product code/name",
  685. "ordertime": "Order time",
  686. "orderdate": "Order date",
  687. "buyorsell": "BuyOrSell",
  688. "orderqty": "OrderQty",
  689. "orderprice": "Order Price",
  690. "orderstatus": "Order status",
  691. "tradeqty": "Transaction amount",
  692. "orderid": "Order ID",
  693. "tips1": "Are you sure you want to cancel?",
  694. "tips2": "Cancellation successful"
  695. },
  696. "pricingtrade": {
  697. "title": "Price fixing execution",
  698. "subtitle": "Quoted pricing transaction information",
  699. "subtitle1": "Details",
  700. "goodsname": "Product code/name",
  701. "buyorsell": "BuyOrSell",
  702. "tradetime": "Transaction time",
  703. "tradedate": "Transaction date",
  704. "matchaccountid": "Counterparty",
  705. "buildtype": "Type",
  706. "tradeprice": "Transaction price",
  707. "tradeamount": "Transaction amount",
  708. "charge": "Charge",
  709. "tradeqty": "Transaction volume",
  710. "tradeid": "Transaction number",
  711. "closepl": "ClosePl"
  712. }
  713. },
  714. "position": {
  715. "title": "My positions",
  716. "holddetail": "Details",
  717. "goods": {
  718. "title": "Order positions",
  719. "subtitle": "Position Info",
  720. "subtitle2": "Settlement information",
  721. "subtitle3": "Transfer Info",
  722. "agreeunit": "Product Specifications",
  723. "pricemove": "Price Adjustment",
  724. "expressfees": "Freight",
  725. "otherfees": "Other Fees",
  726. "preamounts": "Pre-payment",
  727. "totalfees": "Total Fees",
  728. "deposit1": "Total Additional Payment",
  729. "fees1": "Pick-up Service Fee",
  730. "fees2": "Delivery Service Fee",
  731. "goodsname": "Product code/name",
  732. "buyorsell": "Direction",
  733. "curholderamount": "CurHolderAmount",
  734. "holderamount": "HolderAmount",
  735. "holderqty": "HolderQty",
  736. "curpositionqty": "CurPositionQty",
  737. "averageprice": "AveragePrice",
  738. "frozenqty": "FrozenQty",
  739. "enableqty": "EnableQty",
  740. "mindeliverylot": "MinDeliveryLot",
  741. "orderid": "OrderID",
  742. "closepl": "ClosePl",
  743. "last": "Current price",
  744. "orderqty": "TransferQty",
  745. "deposit": "Make-UpAmount",
  746. "fees": "Pick-UpFees",
  747. "matchname": "Settlement counterparty",
  748. "deliverylot": "SettlementLot",
  749. "deliveryqty": "SettlementQty",
  750. "freezeqty": "FreezeQty",
  751. "address": "Delivery address",
  752. "transferprice": "Price",
  753. "qty": "Qty",
  754. "tradetime": "TradeTime",
  755. "marketValue": "Market value",
  756. "holderprice": "HolderPrice",
  757. "deliveryinfo": "Settlement information",
  758. "tips1": "Enter transfer price",
  759. "tips2": "Enter transfer quantity",
  760. "tips3": "Confirm the transfer?",
  761. "tips4": "Successful transfer",
  762. "tips5": "Are you sure you want to settle?",
  763. "tips6": "Settlement successful",
  764. "tips7": "Please enter the settlement quantity",
  765. "tips8": "Cannot be less than the minimum settlement quantity",
  766. "tips9": "Please enter the delivery address",
  767. "tips10": "Please enter the settlement information",
  768. "holddetail": {
  769. "title": "Order details",
  770. "marketname": "Market",
  771. "tradeid": "Transaction number",
  772. "tradetime": "TradeTime",
  773. "buyorsell": "Type",
  774. "enableqty": "EnableQty",
  775. "holderqty": "HolderQty",
  776. "freezeqty": "FreezeQty",
  777. "holderprice": "Position price",
  778. "holderamount": "HolderAmount",
  779. "usedMargin": "UsedMargin",
  780. "profitLoss": "ProfitLoss",
  781. "riskRate": "Risk rate"
  782. }
  783. },
  784. "spot": {
  785. "title": "Spot position",
  786. "subtitle": "Spot position information",
  787. "subtitle2": "Listing information",
  788. "subtitle3": "Listing",
  789. "subtitle4": "Pickup",
  790. "goodsname": "Product code/name",
  791. "PerformanceTemplate": "Performance method",
  792. "warehousename": "Warehouse",
  793. "qty": "InventoryQty",
  794. "freezerqty": "FrozenQty",
  795. "enableqty": "EnableQty",
  796. "orderqty": "Listing volume",
  797. "fixedprice": "Listing price",
  798. "performancetemplate": "Performance Template",
  799. "orderqty2": "PickupQty",
  800. "appointmentmodel": "Pickup method",
  801. "contactname": "Contact person",
  802. "contactnum": "Contact information",
  803. "district": "Delivery area",
  804. "address": "Delivery address",
  805. "remark": "Invoice information",
  806. "createtime": "Transfer time",
  807. "pledgeqty": "PledgedQty",
  808. "wrstandardname": "Product name",
  809. "deliverygoodsname": "Type",
  810. "wrholdeno": "Warehouse receipt number",
  811. "tips1": "Please select a performance template",
  812. "tips2": "Please enter the price",
  813. "tips3": "Please enter the quantity",
  814. "tips4": "Insufficient available quantity",
  815. "tips5": "Listing successful",
  816. "tips6": "Submission successful",
  817. "tips7": "Please enter the invoice information",
  818. "tips8": "Please enter the delivery address",
  819. "tips9": "Please select a delivery area",
  820. "tips10": "Please enter contact information",
  821. "tips11": "Please enter the contact person",
  822. "tips12": "Please enter the pickup quantity",
  823. "receipttype": "Invoice type:",
  824. "username": "Invoice title:",
  825. "taxpayerid": "Tax identification number:",
  826. "receiptbank": "Bank of account:",
  827. "receiptaccount": "Bank account number:",
  828. "address1": "Business address:",
  829. "contactinfo": "Business phone number:",
  830. "email": "Email:"
  831. },
  832. "presale": {
  833. "title": "Pre-sale positions",
  834. "title1": "Pre-sale position details",
  835. "subtitle": "Pre-sale position information",
  836. "goodsname": "Product code/name",
  837. "sellname": "Issuing party",
  838. "starttime": "Start date",
  839. "endtime": "End date",
  840. "starttime1": "Start time",
  841. "endtime1": "End time",
  842. "tradeqty": "Subscription amount",
  843. "openprice": "Proposed price",
  844. "tradeamount": "Total payment",
  845. "transferdepositratio": "Transfer deposit ratio",
  846. "transferdeposit": "Transfer deposit",
  847. "depositremain": "Unpaid deposit",
  848. "paystatus": "Unpaid status",
  849. "tradeid": "Transaction number",
  850. "tips": "Do you want to make up the transfer deposit?"
  851. },
  852. "transfer": {
  853. "title": "Transfer positions",
  854. "title1": "Transfer position details",
  855. "subtitle": "Transfer position information",
  856. "goodsname": "Product code/name",
  857. "buyorsell": "Position direction",
  858. "goodsdisplay": "Product details",
  859. "buycurholderamount": "Position amount",
  860. "buycurpositionqty": "PositionQty",
  861. "curpositionqty": "PositionQty",
  862. "buyfrozenqty": "FrozenQty",
  863. "frozenqty": "FrozenQty",
  864. "enableqty": "EnableQty",
  865. "sellname": "Issuing party",
  866. "presaleprice": "Order Price",
  867. "closepl": "Reference profit and loss",
  868. "averageprice": "Average position Price",
  869. "holderqty": "PositionQty",
  870. "holderprice": "Position Price",
  871. "tradeamount": "Total payment",
  872. "transferdepositratio": "Transfer deposit ratio",
  873. "transferdeposit": "Transfer deposit",
  874. "depositremain": "Unpaid deposit",
  875. "unpaymentremain": "Unpaid payment",
  876. "paystatus": "Payment status",
  877. "lasttradedate": "Last trading day",
  878. "deposit": "Paid deposit",
  879. "remainamount": "Remaining amount",
  880. "presaleprice1": "Proposed Price",
  881. "limitup": "Upper limit Price",
  882. "limitdown": "Lower limit Price",
  883. "transferprice": "Transfer Price",
  884. "transferqty": "TransferQty",
  885. "giveupqty": "AbandonQty",
  886. "tips1": "Do you want to add the unpaid transfer deposit?",
  887. "tips2": "Submission successful",
  888. "tips3": "Please enter the price",
  889. "tips4": "Please enter the quantity"
  890. },
  891. "swap": {
  892. "title": "Swap positions",
  893. "goodsname": "Product/Code",
  894. "buyorsell": "Direction",
  895. "averageprice": "Average order price",
  896. "curpositionqty": "Holding amount",
  897. "curholderamount": "Order amount",
  898. "frozenqty": "FrozenQty",
  899. "lastprice": "Reference Price",
  900. "enableqty": "EnableQty",
  901. "closepl": "Reference profit and loss",
  902. "expiredate": "Expiration date",
  903. "tips1": "Are you sure you want to close the position?",
  904. "tips12": "Request successful"
  905. },
  906. "pricing": {
  907. "title": "Price fixing positions",
  908. "goodsname": "Product code/name",
  909. "buyorsell": "BuyOrSell",
  910. "lastprice": "Current Price",
  911. "curpositionqty": "Holding amount",
  912. "averageprice": "AveragePrice",
  913. "averageprice1": "OrderPrice",
  914. "frozenqty": "FrozenQty",
  915. "curholderamount": "CurHolderAmount",
  916. "enableqty": "EnableQty",
  917. "closepl": "ClosePl",
  918. "tips1": "Do you want to cancel all orders?"
  919. }
  920. },
  921. "delivery": {
  922. "title": "Delivery pickup",
  923. "title1": "Full-payment Pickup",
  924. "title2": "Deposit Pickup",
  925. "title3": "Deposit Delivery",
  926. "title4": "Returns & Exchanges",
  927. "online": {
  928. "title": "Select settlement order",
  929. "title2": "Historical selected settlement orders",
  930. "subtitle": "Selected settlement order information",
  931. "wrtypename": "Product name",
  932. "wrtypename1": "Holder/Product/Warehouse",
  933. "pricemove": "Premium/Discount",
  934. "username": "Holder",
  935. "needqty": "Required contract amount",
  936. "enableQty": "DeliverableQty",
  937. "choicewarehousename": "Select warehouse receipt",
  938. "qty": "Quantity",
  939. "deliveryqty": "SettlementQty",
  940. "xdeliveryprice": "Order Price",
  941. "deliverypricemove": "Premium/Discount",
  942. "deliveryamount": "Total payment",
  943. "xgoodsremainamount": "Remaining payment",
  944. "deliverytotalamount": "Total amount",
  945. "remaintotalamount": "Remaining amount",
  946. "warehousename": "Warehouse",
  947. "matchusername": "Sender",
  948. "deliverytime": "Application time",
  949. "xgoodscode": "Settlement contract",
  950. "deliveryid": "Settlement order numbe",
  951. "orderedqty": "SelectedQty"
  952. },
  953. "offline": {
  954. "title": "Offline settlement order",
  955. "subtitle": "Offline settlement order information",
  956. "goodsname": "Product code/name",
  957. "goodsnamedisplay": "Order contract",
  958. "buyorselldisplay": "Settlement direction",
  959. "deliveryqty": "DeliveryQty",
  960. "deliveryprice": "DeliveryPrice",
  961. "deliveryamount": "DeliveryAmount",
  962. "matchusername": "Settlement counterparty",
  963. "deliveryinfo": "DeliveryInfo",
  964. "reqtime": "Application time",
  965. "applydate": "Application date",
  966. "orderstatusdisplay": "Document status",
  967. "deliveryorderid": "Settlement order number",
  968. "tradeid": "Transaction number"
  969. },
  970. "spot": {
  971. "title": "Spot pickup order",
  972. "subtitle": "Pickup information",
  973. "goodsname": "Product code/name",
  974. "deliverygoodsname": "Type",
  975. "wrstandardname": "Goods",
  976. "warehousename": "Warehouse",
  977. "qty": "PickupQty",
  978. "appointmentmodeldisplay": "Pickup method",
  979. "contactname": "Contact person",
  980. "contactnum": "Contact information",
  981. "address": "Delivery address",
  982. "appointmentremark": "Invoice information",
  983. "applytime": "Application time",
  984. "date": "Date",
  985. "applystatus": "Pickup status",
  986. "expressnum": "Logistics Information",
  987. "applyid": "Pickup number"
  988. }
  989. },
  990. "inout": {
  991. "title": "Transaction position",
  992. "title1": "My transfers in",
  993. "title2": "My transfers out",
  994. "in": {
  995. "goodsdisplay": "Goods",
  996. "outusername": "Transferor",
  997. "qty": "Transfer volume",
  998. "transferprice": "Transfer price",
  999. "freezedays": "Frozen day",
  1000. "goodscurprice": "Product price",
  1001. "incharge": "Service charge",
  1002. "transferapplystatus": "Status",
  1003. "applytime": "Application time",
  1004. "verificationpwd": "Password verification",
  1005. "sure": "Confirm",
  1006. "tips1": "Please enter your login password",
  1007. "tips2": "I have read and agree",
  1008. "tips3": "Position Transfer Agreement",
  1009. "tips4": "Confirmation successful",
  1010. "tips5": "Password verification failed",
  1011. "tips6": "Please agree to the Position Transfer Agreement",
  1012. "tips7": "Please enter your password"
  1013. },
  1014. "out": {
  1015. "goodsdisplay": "Goods",
  1016. "inusername": "Transferee",
  1017. "qty": "Transfer volume",
  1018. "transferprice": "Transfer price",
  1019. "freezedays": "Frozen day",
  1020. "goodscurprice": "Product price",
  1021. "transferapplystatus": "Status",
  1022. "applytime": "Application time",
  1023. "outcharge": "Service charge"
  1024. },
  1025. "agreement": {
  1026. "title": "Transfer agreement"
  1027. },
  1028. "add": {
  1029. "title": "Add",
  1030. "subtitle": "Select customer",
  1031. "inusername": "Transfer in customer",
  1032. "choice": "Please select",
  1033. "goodsid": "Transfer product",
  1034. "enableqty": "EnableQty",
  1035. "orderqty": "Transfer volume",
  1036. "orderprice": "Transfer price",
  1037. "freezedays": "Frozen day",
  1038. "tips1": "I have read and agree",
  1039. "tips2": "“Position transfer agreement”",
  1040. "tips3": "Please enter customer number or phone number",
  1041. "tips4": "Please select the transfer product",
  1042. "tips5": "Please enter the transfer price",
  1043. "tips6": "Please enter the transfer volume",
  1044. "tips7": "Please enter the frozen days",
  1045. "tips8": "Submission successful, please check the results later",
  1046. "tips9": "Please agree to the Position Transfer Agreement"
  1047. }
  1048. },
  1049. "transfer": {
  1050. "title": "Position transfer",
  1051. "in": {
  1052. "title": "My Transfer In",
  1053. "outusername": "Transferor",
  1054. "qty": "Transfer volume",
  1055. "transferprice": "Transfer price",
  1056. "freezedays": "Frozen day",
  1057. "goodscurprice": "Product price",
  1058. "incharge": "Service charge"
  1059. },
  1060. "out": {
  1061. "title": "My transfers out",
  1062. "inusername": "Transferee",
  1063. "qty": "Transfer volume",
  1064. "transferprice": "Transfer price",
  1065. "freezedays": "Frozen day",
  1066. "goodscurprice": "Product price",
  1067. "outcharge": "Service charge"
  1068. }
  1069. },
  1070. "performance": {
  1071. "title": "Performance information",
  1072. "title2": "Buy historical performance information",
  1073. "title3": "Sell historical performance information",
  1074. "subtitle": "Execution information",
  1075. "subtitle1": "Modify contact information",
  1076. "plan": "Performance plan",
  1077. "stepslist": "Step list",
  1078. "buy": "Buy performance",
  1079. "sell": "Sell performance",
  1080. "deliverygoodsname": "Type",
  1081. "performancetype": "Type",
  1082. "wrstandardname": "Goods",
  1083. "wrstandardname1": "Performance product",
  1084. "warehousename": "Warehouse",
  1085. "accountname": "Counterparty",
  1086. "qty": "Quantity",
  1087. "amount": "Performance amount",
  1088. "buyusername": "Buyer",
  1089. "sellusername": "Seller",
  1090. "sellerInfo": "Seller contact information",
  1091. "buyerInfo": "Buyer contact information",
  1092. "paymenttype": "Payment method",
  1093. "buypaidamount": "Buyer has paid",
  1094. "sellreceivedamount": "Seller has received",
  1095. "sellerfreezeamount": "Seller frozen",
  1096. "sellerfreezeamountremain": "Seller frozen remaining",
  1097. "buyerfreezeamount": "Buyer frozen",
  1098. "buyerfreezeamountremain": "Buyer frozen remaining",
  1099. "performancestatus": "Performance status",
  1100. "overshortamount": "Excess or short amount",
  1101. "curstepname": "Current step",
  1102. "starttime": "Start time",
  1103. "starttime1": "Start time",
  1104. "relatedorderid": "Associated order number",
  1105. "performanceplanid": "Performance order number",
  1106. "applyremark": "Remarks",
  1107. "attachment": "Attachments",
  1108. "contract": "Contact information",
  1109. "receive": "Delivery address",
  1110. "receipt": "Invoice information",
  1111. "more": "More",
  1112. "performancedate": "Date",
  1113. "performanceqty": "PerformanceQty",
  1114. "breach": "Breach of contract",
  1115. "modify": "Modify",
  1116. "detail": "Details",
  1117. "breachapply": "Breach application",
  1118. "remark": "Remarks",
  1119. "pleaseinputremark": "Please enter remarks",
  1120. "applybreach": "Apply for breach",
  1121. "pleaseuploadtheattachment": "Please upload attachments",
  1122. "areyousureyouwanttoSubmitadefaultapplication?": "Are you sure you want to submit the breach application?",
  1123. "thedefaultapplicationissuccessful": "Breach application successful",
  1124. "performancedetail": "Performance details",
  1125. "pleaseenterthedelaydays": "Please enter the extension days",
  1126. "delaydays": "Extension days",
  1127. "days": "Days",
  1128. "executinfo": "Execution information",
  1129. "applydelay": "Extension application",
  1130. "applyexecute": "Execute immediately",
  1131. "receiptinfo": "Invoice information",
  1132. "address": "Delivery address",
  1133. "pleaseentertheaddress": "Please enter the delivery address",
  1134. "pleaseenterthecontractinfo": "Please enter the delivery address",
  1135. "buyuserinfo": "Buyer information",
  1136. "selluserinfo": "Seller information",
  1137. "modifyinfo": "Modify information",
  1138. "buyhisperformanceinfo": "Buy historical performance information",
  1139. "sellhisperformanceinfo": "Sell historical performance information",
  1140. "receipttype": "Invoice type:",
  1141. "username": "Invoice title:",
  1142. "taxpayerid": "Tax identification number:",
  1143. "receiptbank": "Bank of account:",
  1144. "receiptaccount": "Bank account number:",
  1145. "address1": "Business address:",
  1146. "contactinfo": "Business phone number:",
  1147. "email": "Email:",
  1148. "address2": "Address:",
  1149. "phonenum": "Phone number:",
  1150. "receivername": "Name:",
  1151. "remain": "Remaining",
  1152. "tips1": "Are you sure you want to submit the information modification request?",
  1153. "tips2": "Information modification request successful",
  1154. "tips3": "Please enter the delivery address information",
  1155. "tips4": "Please enter the invoice information",
  1156. "tips5": "Please enter contact information",
  1157. "tips6": "Do you want to manually execute the steps?",
  1158. "tips7": "Please enter the extension days",
  1159. "tips8": "Please enter remarks",
  1160. "tips9": "Are you sure you want to submit the extension application?",
  1161. "tips10": "Extension application successful",
  1162. "tips11": "Immediate execution application successful",
  1163. "steps": {
  1164. "steptypename": "Name",
  1165. "stepdays": "Days",
  1166. "remaindays": "Remaining days",
  1167. "stepvalue": "Step value (%)",
  1168. "stepamount": "Amount",
  1169. "realamount": "Completed amount",
  1170. "isauto": "Is it automatic?",
  1171. "steplanchtype": "Launch type",
  1172. "starttime": "Start date",
  1173. "endtime": "End date",
  1174. "stepstatus": "Step status",
  1175. "remark": "Step remarks"
  1176. }
  1177. },
  1178. "settlement": {
  1179. "title": "Settlement sheet"
  1180. },
  1181. "score": {
  1182. "scoretypename": "Points Type",
  1183. "remainscore": "Remaining Points",
  1184. "validtype": "Validity Type",
  1185. "expiredate": "Expiry Date",
  1186. "createdtime": "Creation Time",
  1187. "detailid": "Detail Order No.",
  1188. "curscore": "Ending Points",
  1189. "todaydecrease": "Today's Decrease",
  1190. "todayincrease": "Today's Increase",
  1191. "freezescore": "Frozen Points",
  1192. "oriscore": "Opening Points"
  1193. },
  1194. "rules": {
  1195. "zcxy": "User registration agreement",
  1196. "yszc": "About privacy",
  1197. "ryszc": "Privacy policy",
  1198. "fwrx": "Customer service hotline",
  1199. "zrxy": "Transfer agreement"
  1200. },
  1201. "mine": {
  1202. "title": "Me",
  1203. "normal": "Normal",
  1204. "balance": "Balance",
  1205. "netWorth": "Net value",
  1206. "freezeMargin": "Freeze margin",
  1207. "usedMargin": "Occupied",
  1208. "availableFunds": "Available",
  1209. "riskRate": "Risk rate",
  1210. "cashin": "Cash In",
  1211. "cashout": "Cash Out",
  1212. "callAteFee": "CallAteFee",
  1213. "myposition": "My Positions",
  1214. "myorder": "My Orders",
  1215. "delivery": "Pick Up",
  1216. "performance": "Performance information",
  1217. "fundsinfo": "Funds Infos",
  1218. "authentication": "Real-name authentication",
  1219. "banksign": "Bank Management",
  1220. "personalinformation": "Personal information",
  1221. "settings": "Settings",
  1222. "system": "System",
  1223. "account": "Account",
  1224. "aboutus": "About Us",
  1225. "protocol": "Market entry agreement",
  1226. "positiontransfer": "Position transfer",
  1227. "profile": {
  1228. "title": "Personal information",
  1229. "invoiceinfo": "Invoice information",
  1230. "addressinfo": "Delivery address",
  1231. "wechat": "WeChat",
  1232. "email": "Email",
  1233. "tips1": "Please enter your WeChat ID"
  1234. },
  1235. "address": {
  1236. "title": "Delivery address management",
  1237. "add": "Add new address",
  1238. "default": "Default",
  1239. "detail": "Detailed address",
  1240. "phoneNum": "Contact number",
  1241. "receiverName": "Recipient",
  1242. "region": "Delivery area",
  1243. "address": "Delivery address",
  1244. "isdefault": "Set as default?",
  1245. "modifyaddressinfo": "Modify delivery address",
  1246. "addaddressinfo": "Add new delivery address",
  1247. "tips1": "Please enter the recipient's name",
  1248. "tips2": "Please enter the contact number",
  1249. "tips3": "Please select the delivery area",
  1250. "tips4": "Please enter the detailed address",
  1251. "tips5": "Do you want to delete this delivery address?",
  1252. "tips6": "Do you want to set this address as default?"
  1253. },
  1254. "invoice": {
  1255. "title": "Invoice information",
  1256. "title1": "Modify invoice information",
  1257. "title2": "Add new invoice information",
  1258. "personal": "Individual",
  1259. "company": "Company",
  1260. "default": "Default",
  1261. "receipttype": "Invoice type",
  1262. "UserName": "Invoice title",
  1263. "TaxpayerID": "Tax ID",
  1264. "ReceiptBank": "Bank of account",
  1265. "ReceiptAccount": "Bank account number",
  1266. "Address": "Company address",
  1267. "ContactInfo": "Company phone number",
  1268. "Email": "Email",
  1269. "tips1": "Please enter the invoice title",
  1270. "tips2": "Please enter the taxpayer identification number",
  1271. "tips3": "Do you want to delete this invoice?",
  1272. "addinvoice": "Add new invoice"
  1273. },
  1274. "setting": {
  1275. "title": "Quick settings",
  1276. "tradesettings": "Order settings",
  1277. "tipssetting": "Notification settings",
  1278. "others": "Other settings",
  1279. "language": "Language settings",
  1280. "chinese": "简体中文",
  1281. "english": "English",
  1282. "enth": "ภาษาไทย",
  1283. "orderBuyOrSell": "OrderBuyOrSell",
  1284. "orderQtyIsEmpty": "Clear quantity after placing order",
  1285. "priceFocusType": "Order price type",
  1286. "showOrderEnableQty": "Show estimated tradable volume",
  1287. "orderFocusType": "Default focus after placing order",
  1288. "showOrderDialog": "Order confirmation prompt",
  1289. "showOrderCancelDialog": "Cancellation confirmation prompt",
  1290. "showOrderFailMessage": "Order failure message",
  1291. "showOrderSuccessMessage": "Order success message",
  1292. "price": "Price",
  1293. "qty": "Quantity",
  1294. "last": "Current price",
  1295. "counterparty": "Counterparty price",
  1296. "realtimelast": "Real-time current price",
  1297. "realtimecounterparty": "Real-time counterparty price",
  1298. "tips": "Do you want to restore to default settings?"
  1299. }
  1300. },
  1301. "banksign": {
  1302. "title": "Bank Management",
  1303. "accountname": "Name",
  1304. "accountname1": "Bank card account name",
  1305. "OpenBankAccId": "Bank of account",
  1306. "cardtype": "Document type",
  1307. "cardno": "Document number",
  1308. "cusbankname": "Custodian bank",
  1309. "bankaccountno1": "Contract bank account number",
  1310. "currency": "Currency",
  1311. "bankname": "Contract bank",
  1312. "banktype": "Bank-Type",
  1313. "bankname1": "Bank name",
  1314. "bankno": "Bank card number",
  1315. "bankaccountname": "Name",
  1316. "mobilephone": "Phone number",
  1317. "branchbankname": "Branch name",
  1318. "remark": "Remarks",
  1319. "signstatus": "Status",
  1320. "signagain": "Re-sign",
  1321. "signagreement": "Agreement signing",
  1322. "cancel": "Cancel",
  1323. "modify": "Modify",
  1324. "bankchannel": "Channel",
  1325. "addbanksign": "Add Bank Sign",
  1326. "modifybanksign": "Modify Bank Sign",
  1327. "Pleaseselectyourbank": "Please select the bank of account",
  1328. "Pleaseenteryourmobilephonenumber": "Please enter the phone number",
  1329. "Pleaseenterbankaccountname": "Please enter the bank card account name",
  1330. "Pleaseenterbankaccountno": "Please enter the bank card account number",
  1331. "Pleaseenterbankno": "Please enter the bank card number",
  1332. "youhavenotaddedasignedaccount": "You have not added a signed account",
  1333. "fundstype": "Fund type",
  1334. "pleasechoicefundstype": "Please select the fund type",
  1335. "time": "Time",
  1336. "operatetype": "Operation type",
  1337. "amount": "Amount",
  1338. "bankaccountno": "Bank card number",
  1339. "verificationcode": "Get verification code",
  1340. "sendagain": "Resend",
  1341. "sendfailure": "Sending failed",
  1342. "Pleaseenterbranchbankname": "Please enter the branch name of the bank of account",
  1343. "Pleaseenterbranchbankno": "Please enter the branch code of the bank of account",
  1344. "submitsuccess1": "Submission of contract information modification successful.",
  1345. "submitsuccess2": "Submission successful, please check the results later.",
  1346. "tips1": "Add the signing account infos first!",
  1347. "tips2": "Go Bank Sign",
  1348. "tips3": "Please complete real-name authentication before proceeding with this operation!",
  1349. "tips4": "Go to authenticate",
  1350. "tips5": "Do you want to log out of the current account?",
  1351. "tips6": "Phone number exceeds 20 digits",
  1352. "tips7": "Not Bank Sign",
  1353. "tips8": "Real name authentication is under review, temporarily can not be signed request operation!",
  1354. "tips9": "Send a letter to the settlement center to modify the information before modifying, otherwise it will affect the deposit and withdrawal of funds.",
  1355. "tips10": "Please go to the mobile app to sign the agreement!",
  1356. "tips11": "Please select bank information!",
  1357. "tips12": "Are you sure you want to terminate the contract?",
  1358. "tips13": "The termination was successfully submitted, confirm the result later",
  1359. "tips14": "Select bank",
  1360. "tips15": "Please enter the bank name",
  1361. "tips16": "Select bank channel",
  1362. "search": {
  1363. "title": "Search branch",
  1364. "Pleaseenterbranchbankname": "Please enter the branch name",
  1365. "choicebranchbank": "Select branch",
  1366. "nodatas": "No Datas",
  1367. "searching": "Searching..."
  1368. },
  1369. "capital": {
  1370. "title": "Funds",
  1371. "title2": "FundsInfo",
  1372. "title3": "Fund flow",
  1373. "title4": "Settlement sheet",
  1374. "accountid": "Fund account number",
  1375. "createtime": "Time",
  1376. "operatetypename": "Operation type",
  1377. "amount": "Amount",
  1378. "totalcharge": "Total Charge:",
  1379. "totalprofit": "Total Profit:",
  1380. "hisamountlogs": "Historical fund flow"
  1381. },
  1382. "wallet": {
  1383. "title": "Cash In Out",
  1384. "applys": "Application records",
  1385. "cashin": "Cash In",
  1386. "cashout": "Cash Out",
  1387. "deposit": {
  1388. "subtitle": "CashIn Platform",
  1389. "subtitle1": "CashIn Time",
  1390. "inamount": "InAmount",
  1391. "pleaseenterinamount": "Enter in-amount",
  1392. "credit": "Receipt",
  1393. "time": "Payment time: trading day ",
  1394. "notice": "Holidays to the notice, announcement shall prevail, non-trading days don't operate!",
  1395. "platformdepositbankname": "PlatformDepositBankName",
  1396. "platformdepositaccountno": "PlatformDepositAccountNo",
  1397. "platformdepositaccount": "PlatformDepositAccount",
  1398. "platformdepositsub-branch": "PlatformDepositSub-Branch",
  1399. "goldisnotwithinthetimeframe": "Gold is not within the time frame",
  1400. "failedtogetservertime": "Failed to get server time",
  1401. "paste": "Copied, go paste it~",
  1402. "pastefailure": "Copy failed",
  1403. "submitsuccess": "If the application is successful, please confirm the result on the application record screen",
  1404. "submitfailure": "Submission failed:",
  1405. "tips2": "Please upload transfer receipt",
  1406. "tips1": "Is golden on bank account transfer?"
  1407. },
  1408. "withdraw": {
  1409. "subtitle": "CashOut Time",
  1410. "outamount": "OutAmount",
  1411. "bankname": "Bank of account",
  1412. "bankaccountno": "Bank card number",
  1413. "bankaccountname": "Name",
  1414. "pleaseenteroutamount": "Enter out-amount",
  1415. "time": "Payment time: trading day ",
  1416. "notice": "Holidays to the notice, announcement shall prevail, non-trading days don't operate!",
  1417. "theamountavailableis0": "The amount available is 0",
  1418. "exceedingthepayableamount": "Exceeding the payable amount",
  1419. "goldisnotwithinthetimeframe": "Gold is not within the time frame",
  1420. "failedtogetservertime": "Failed to get server time",
  1421. "submitsuccess": "Submission successful, please do not submit again, and check the results later",
  1422. "submitfailure": "Submission failed:",
  1423. "tips2": "Please upload transfer receipt",
  1424. "availableoutmoney": "Available ",
  1425. "remark": "Remarks"
  1426. },
  1427. "inoutapply": {
  1428. "title": "Application List",
  1429. "charge": "Charge",
  1430. "executetype": "Type",
  1431. "extoperateid": "Flow number",
  1432. "updatetime": "Time",
  1433. "remark2": "Remarks",
  1434. "applystatus": "Status",
  1435. "bankaccountno": "Card number",
  1436. "bankname": "Bank of account",
  1437. "accountcode": "Fund account numb",
  1438. "accountname": "Name",
  1439. "amount": "Amount",
  1440. "pay": "Pay",
  1441. "tips": "Failed to open",
  1442. "title1": "Scan the code to pay",
  1443. "wechat": "Please use wechat to scan the code for payment",
  1444. "alipay": "Please use Alipay to scan the code for payment"
  1445. }
  1446. },
  1447. "reciver": {
  1448. "title": "Choice",
  1449. "name": "UserName:",
  1450. "phone_number": "PhoneNo:",
  1451. "cert_no": "CardNo:",
  1452. "bank_name": "BankName:",
  1453. "bank_account": "BankCardNo:",
  1454. "channel_code": "BankCHannel:"
  1455. }
  1456. },
  1457. "user": {
  1458. "login": {
  1459. "username": "Username",
  1460. "username1": "Username/Account/Phone number",
  1461. "password": "Password",
  1462. "login": "Log in",
  1463. "forgetpassword": "Forgot password?",
  1464. "rulesyszc": "Privacy Policy",
  1465. "register": "User registration",
  1466. "ruleszcxy": "User registration agreement",
  1467. "rulesyhkhfxgzs": "User account opening risk notification",
  1468. "checked": "I have read and agree",
  1469. "Pleaseenterausername": "Please enter your username",
  1470. "Pleaseenterthepassword": "Please enter your password",
  1471. "startfailure": "Initialization failed",
  1472. "loading": "Loading...",
  1473. "tips1": "For the security of your account, please change your password!",
  1474. "logining": "Logging in...",
  1475. "logining1": "Logging in",
  1476. "logintype1": "Mobile-Login",
  1477. "logintype2": "Account-Login",
  1478. "tips2": "Please agree to the terms of use first",
  1479. "tips3": "Login failed:",
  1480. "tips4": "Logout notification",
  1481. "tips5": "Account has been logged out",
  1482. "tips6": "Language changes require re-login to take effect!",
  1483. "tips7": "Dear user: Hello, please complete the full payment for the pre-order before 04:00 on Saturday for shipment, otherwise, the platform will cancel the pre-order as per the agreement."
  1484. },
  1485. "register": {
  1486. "title": "User registration",
  1487. "title1": "Scan to register",
  1488. "area": "Region option",
  1489. "mobile": "Phone number",
  1490. "vcode": "SMS verification code",
  1491. "sendagain": "Resend",
  1492. "getsmscode": "Get verification code",
  1493. "freeregister": "Free registration",
  1494. "logipwd": "Login password",
  1495. "confirmpwd": "Confirm password",
  1496. "registercode": "Registration code",
  1497. "checked": "I have read and agree",
  1498. "ruleszcxy": "User registration agreement",
  1499. "rulesfxgzs": "Risk notification letter",
  1500. "registersuccess": "Registration successful!",
  1501. "tips1": "Please enter your phone number",
  1502. "tips2": "Please enter your login password",
  1503. "tips3": "Please enter your confirm password",
  1504. "tips4": "Login password and confirm password do not match",
  1505. "tips5": "Please enter the SMS verification code",
  1506. "tips6": "Please enter the registration code",
  1507. "tips7": "Sending failed",
  1508. "tips8": "Your account has been successfully registered.",
  1509. "tips9": "Registering...",
  1510. "tips10": "Please agree to the registration terms first",
  1511. "tips11": "Your registration application has been submitted!"
  1512. },
  1513. "password": {
  1514. "title": "Change password",
  1515. "title1": "Change login password",
  1516. "newpwd": "New password",
  1517. "confirmpwd": "Confirm password",
  1518. "oldpwd": "Original password",
  1519. "tips1": "Please enter the original password",
  1520. "tips2": "Please enter the new password",
  1521. "tips3": "Please re-enter the new password",
  1522. "tips4": "Password entries do not match!",
  1523. "tips5": "Password changed successfully, please log in again."
  1524. },
  1525. "forget": {
  1526. "title": "Reset login password",
  1527. "area": "Region option",
  1528. "mobile": "Phone number",
  1529. "vcode": "SMS verification code",
  1530. "sendagain": "Resend",
  1531. "getsmscode": "Get verification code",
  1532. "newpwd": "New password",
  1533. "confirmpwd": "Confirm password",
  1534. "resetpwd": "Reset password",
  1535. "tips1": "Please enter your phone number",
  1536. "tips2": "Please enter the SMS verification code",
  1537. "tips3": "Please enter the new password",
  1538. "tips4": "Please enter the confirm password",
  1539. "tips5": "Password must be a combination of at least two types of characters and at least 6 characters long",
  1540. "tips6": "New password and confirm password do not match",
  1541. "tips7": "Sending failed",
  1542. "tips8": "Password reset successfully, please log in again."
  1543. },
  1544. "cancel": {
  1545. "title": "Account deletion",
  1546. "confirmcancellation": "Confirm cancellation",
  1547. "submitmessage": "After the account is canceled, it cannot be used in the system again. If there is a balance in the account, manual review is required for cancellation. Are you sure you want to cancel the account?",
  1548. "tips_1": "To ensure the security of your account, the following conditions must be met when submitting a cancellation request:",
  1549. "tips_2": "1. The account property has been settled",
  1550. "tips_3": "No assets, debts, or unsettled funds and commodities.",
  1551. "tips_4": "2. The account must be in a safe state",
  1552. "tips_5": "The account must be in normal use and without risk of theft.",
  1553. "tips_6": "3. The account must have no disputes",
  1554. "tips_7": "\"Submission successful, please wait for review."
  1555. },
  1556. "authentication": {
  1557. "title": "Real-name authentication",
  1558. "subtitle": "Authentication Infos",
  1559. "customername": "Name",
  1560. "cardtype": "Document type",
  1561. "cardnum": "Document number",
  1562. "cardfrontphoto": "Front photo of the document",
  1563. "cardfrontphoto1": "Business License",
  1564. "cardbackphoto": "Back photo of the document",
  1565. "halfbodyphoto": "Photo holding the document",
  1566. "modifyremark": "Review remarks",
  1567. "authstatus": "Real-name status",
  1568. "submit": "Submit real-name authentication",
  1569. "pleaseentertheusername": "Please enter user name",
  1570. "pleaseenterthecardnum": "Please enter document number",
  1571. "pleaseuploadthecardbackphoto": "Please upload the back photo of the document",
  1572. "pleaseuploadthecardfrontphoto": "Please upload the front photo of the document",
  1573. "pleaseselectthecardtype": "Please select document type",
  1574. "openfailure": "Account opening failed, your age does not meet the requirements for opening an account",
  1575. "opensuccess": "Real-name authentication submission request successful",
  1576. "example": "Example"
  1577. },
  1578. "avater": {
  1579. "title": "Profile picture",
  1580. "cardbackphotourl": "User profile picture",
  1581. "tips": "Please select the correct image type",
  1582. "tips1": "Please upload a profile picture"
  1583. }
  1584. },
  1585. "report": {
  1586. "title": "Dealer Statement",
  1587. "accountid": "Account number",
  1588. "customername": "Name",
  1589. "currency": "Currency",
  1590. "tradedate": "Settlement date",
  1591. "tradedetail": "Transaction details",
  1592. "inamount": "Bank deposit",
  1593. "outamount": "Bank withdrawal",
  1594. "closepl": "ClosePl",
  1595. "reckonpl": "ReckonPl",
  1596. "paycharge": "Trade service fee",
  1597. "oriusedmargin": "Occupied funds",
  1598. "orioutamountfreeze": "Frozen funds",
  1599. "avaiableoutmoney": "Available funds for withdrawal",
  1600. "ordersumary": "Order summary",
  1601. "inoutamountdetail": "Deposit and withdrawal details",
  1602. "fundsinfo": "Fund information",
  1603. "accountinfo": "Account information",
  1604. "reckondate": "Settlement date",
  1605. "reportdetail": "Report details",
  1606. "balance": "Beginning balance",
  1607. "currentbalance": "Ending balance",
  1608. "avaiablemoney": "Available funds",
  1609. "day": "Daily report",
  1610. "month": "Monthly report",
  1611. "trade": {
  1612. "goodsdisplay": "Goods",
  1613. "buyorselldisplay": "BuyOrSell",
  1614. "tradeqty": "Quantity",
  1615. "tradeprice": "Price",
  1616. "tradeamount": "Transaction amount",
  1617. "charge": "Service charge",
  1618. "tradetime": "Time"
  1619. },
  1620. "position": {
  1621. "goodsdisplay": "Goods",
  1622. "buyorselldisplay": "BuyOrSell",
  1623. "curpositionqty": "Holding amount",
  1624. "frozenqty": "FrozenQty",
  1625. "curholderamount": "Order amount",
  1626. "avagepricedisplay": "Average price"
  1627. },
  1628. "bank": {
  1629. "updatetime": "Time",
  1630. "executetypedisplay": "Fund type",
  1631. "amount": "Amount",
  1632. "applystatusdisplay": "Status"
  1633. }
  1634. },
  1635. "notices": {
  1636. "title": "Notification announcement",
  1637. "title1": "System announcement",
  1638. "notice": "Notice",
  1639. "announcement": "Announcement",
  1640. "details": "Announcement details"
  1641. },
  1642. "news": {
  1643. "source": "Source:",
  1644. "numbers": "Views:",
  1645. "hotnews": "Popular news",
  1646. "author": "Author:"
  1647. },
  1648. "slider": {
  1649. "testTip": "Validating...",
  1650. "tipTxt": "Swipe right to verify",
  1651. "successTip": "Verification successful",
  1652. "failTip": "Verification failed, please try again"
  1653. },
  1654. "pcroute": {
  1655. "bottom": {
  1656. "title": "Bottom document menu",
  1657. "bottom_goods": "Product order",
  1658. "bottom_goods_position": "Position",
  1659. "bottom_goods_position_transfer": "Transfer",
  1660. "bottom_goods_position_delivery16": "Delivery",
  1661. "bottom_goods_position_delivery50": "Delivery",
  1662. "bottom_goods_detail": "Position details",
  1663. "bottom_goods_order": "Order",
  1664. "bottom_goods_trade": "Transaction",
  1665. "bottom_goods_delivery": "Delivery",
  1666. "bottom_presell": "Pre-sale transfer",
  1667. "bottom_presell_presellposition": "Pre-sale subscription",
  1668. "bottom_presell_transferposition": "Transfer positions",
  1669. "bottom_presell_transferorder": "Transfer order",
  1670. "bottom_presell_transfertrader": "Transfer transaction",
  1671. "bottom_presell_onlinedelivery": "Select settlement",
  1672. "bottom_spot": "Spot warehouse receipt",
  1673. "bottom_spot_position": "Spot details",
  1674. "bottom_spot_order": "Pending order",
  1675. "bottom_spot_trade": "Transaction",
  1676. "bottom_spot_pickup": "Pickup",
  1677. "bottom_pricing": "Pricing & Listing",
  1678. "bottom_pricing_position": "Position",
  1679. "bottom_pricing_detail": "Position details",
  1680. "bottom_pricing_detail2": "Order details",
  1681. "bottom_pricing_order": "Order",
  1682. "bottom_pricing_trade": "Transaction",
  1683. "bottom_pricing_delivery": "Delivery",
  1684. "bottom_swap": "Swap market",
  1685. "bottom_swap_position": "Position",
  1686. "bottom_swap_order": "Order",
  1687. "bottom_swap_trade": "Transaction",
  1688. "bottom_performance": "Performance information",
  1689. "bottom_performance_buy": "Buy performance",
  1690. "bottom_performance_sell": "Sell performance",
  1691. "bottom_inout": "Position transfer",
  1692. "bottom_inout_in": "My Transfer In",
  1693. "bottom_inout_out": "My transfers out",
  1694. "bottom_capital": "Fund information",
  1695. "bottom_capital_summary": "Fund summary",
  1696. "bottom_capital_statement": "Fund flow",
  1697. "bottom_capital_inoutapply": "Deposit and withdrawal details",
  1698. "bottom_points": "Points Information",
  1699. "bottom_minepoints": "My Points",
  1700. "bottom_pointsdetail": "Points Details"
  1701. },
  1702. "market": {
  1703. "title": "Market",
  1704. "market_trade": "Market Trade"
  1705. },
  1706. "query": {
  1707. "title": "Search",
  1708. "query_order": "Order records",
  1709. "query_order_goods": "Product contract",
  1710. "query_order_goods_list": "Current records",
  1711. "query_order_goods_history": "Historical records",
  1712. "query_order_presell": "Pre-sale transfer",
  1713. "query_order_presell__list": "Current subscriptions",
  1714. "query_order_presell_history": "Historical subscriptions",
  1715. "query_order_presell_transferlist": "Current transfers",
  1716. "query_order_presell_transferhistory": "Historical transfers",
  1717. "query_order_spot": "Spot warehouse receipt",
  1718. "query_order_spot_list": "Current records",
  1719. "query_order_spot_history": "Historical records",
  1720. "query_order_pricing": "Pricing & Listing",
  1721. "query_order_pricing_list": "Current records",
  1722. "query_order_pricing_history": "Historical records",
  1723. "query_order_swap": "Swap market",
  1724. "query_order_swap_list": "Current records",
  1725. "query_order_swap_history": "Historical records",
  1726. "query_trade": "Transaction records",
  1727. "query_trade_goods": "Product contract",
  1728. "query_trade_goods_list": "Current records",
  1729. "query_trade_goods_history": "Historical records",
  1730. "query_trade_presell": "Pre-sale transfer",
  1731. "query_trade_presell_list": "Current records",
  1732. "query_trade_presell_history": "Historical records",
  1733. "query_trade_spot": "Spot warehouse receipt",
  1734. "query_trade_spot_list": "Current records",
  1735. "query_trade_spot_history": "Historical records",
  1736. "query_trade_pricing": "Pricing & Listing",
  1737. "query_trade_pricing_list": "Current records",
  1738. "query_trade_pricing_history": "Historical records",
  1739. "query_trade_swap": "Swap market",
  1740. "query_trade_swap_list": "Current records",
  1741. "query_trade_swap_history": "Historical records",
  1742. "query_capital": "Fund flow",
  1743. "query_capital_list": "Current records",
  1744. "query_capital_history": "Historical records",
  1745. "query_presell": "Select settlement",
  1746. "query_presell_onlinedelivery": "Select settlement",
  1747. "query_performance": "Performance query",
  1748. "query_performance_buy": "Buy performance",
  1749. "query_performance_buy_running": "In progress",
  1750. "query_performance_buy_all": "All",
  1751. "query_performance_sell": "Sell performance",
  1752. "query_performance_sell_running": "In progress",
  1753. "query_performance_sell_all": "All",
  1754. "query_inoutapply": "Deposit and withdrawal application records",
  1755. "query_inoutapply_list": "Current records",
  1756. "query_inoutapply_history": "Historical records"
  1757. },
  1758. "account": {
  1759. "title": "Account management",
  1760. "account_sign": "Contract account management",
  1761. "account_holdsign": "Deposit direct debit agreement",
  1762. "account_holddeposit": "Deposit direct debit application",
  1763. "account_address": "Delivery address management",
  1764. "account_receipt": "Invoice information management"
  1765. }
  1766. },
  1767. "regex": {
  1768. "password": "Password must contain at least two of the following: letters, numbers, special characters, and must be at least 6 characters long.",
  1769. "phone": "Invalid phone number",
  1770. "email": "Invalid email address",
  1771. "en": "Only English letters are allowed (no spaces)",
  1772. "enname": "Only letters, numbers, and underscores are allowed",
  1773. "cardno": "Invalid ID card number",
  1774. "bankcardno": "Invalid bank card number"
  1775. },
  1776. "tss": {
  1777. "title": "Orders",
  1778. "tips1": "Please enter your search term",
  1779. "subtitle1": "FullPayment",
  1780. "subtitle2": "PrePayment",
  1781. "benefits": "Privilege",
  1782. "malls": "About TCE",
  1783. "logistics": "Logistics",
  1784. "aftersale": "AfterSale",
  1785. "sellprice": "SellPrice",
  1786. "buyprice": "BuyPrice",
  1787. "preamount": "PreAmount",
  1788. "ordertype": "OrderType",
  1789. "agreeunit": "GoodsSpec",
  1790. "orderqty": "Buy In Bulk",
  1791. "fullpayment": "FullPayment",
  1792. "prepayment": "PrePayment",
  1793. "buyback": "BuyBack",
  1794. "total": "ToTal",
  1795. "orderQty": "GoodsQty",
  1796. "orderAmount": "OrderAmount",
  1797. "serivcefee": "OrderService fee",
  1798. "totalAmount": "TotalAmount",
  1799. "payAmount": "PayAmount",
  1800. "price": "Price",
  1801. "qty": "Qty",
  1802. "pricemove": "Inspection fee",
  1803. "expressfees": "Tax",
  1804. "spec": "Spec",
  1805. "czzn": "User Manual",
  1806. "tpslforceflag": "SP unsubscribe",
  1807. "tpspforceflag": "SL unsubscribe",
  1808. "stopLossSpread": "Unit price"
  1809. },
  1810. "enum": {
  1811. "auth": {
  1812. "Uncertified": "Uncertified",
  1813. "Certified": "Certified",
  1814. "Submitted": "Under Review",
  1815. "Rejected": "Rejected"
  1816. },
  1817. "BuyOrSell": {
  1818. "Buy": "Pick up materials",
  1819. "Sell": "Hand over materials"
  1820. }
  1821. },
  1822. "digital": {
  1823. "wallet-deposit": "Recharge",
  1824. "wallet-withdraw": "Withdraw",
  1825. "wallet-transfer": "Transfer",
  1826. "spot-goods-detail": "Transaction",
  1827. "setting": "Settings",
  1828. "search": "Search",
  1829. "goodscode": "Code/Name",
  1830. "last": "Latest",
  1831. "updown": "UpDown",
  1832. "price": "Bid/Ask",
  1833. "lowest": "Highest/Lowest",
  1834. "position": "Position",
  1835. "order": "Order",
  1836. "account": "Account",
  1837. "trade": "Trade",
  1838. "activation": "Activation",
  1839. "funds": "Fund-Logs",
  1840. "transfer-in": "Transfer-In",
  1841. "transfer-out": "Transfer-Out",
  1842. "currencydecimalplace": "EquityAccounts",
  1843. "balance": "Balance",
  1844. "optimal": "OptimalPrice",
  1845. "openAmount": "OpenAmount",
  1846. "maxBalance": "AvaiableMoney",
  1847. "maxBuyQty": "MaxBuyQty",
  1848. "buyEstimatedFee": "EstimatedFee",
  1849. "pricemode": "PriceMode",
  1850. "orderprice": "OrderPrice",
  1851. "marketprice": "MarketPrice",
  1852. "limitprice": "LimitPrice",
  1853. "sell": "Sell",
  1854. "buy": "Buy",
  1855. "marketclose": "Market-Close",
  1856. "history": "History",
  1857. "tips": "Market closing will liquidate the position by market order.",
  1858. "tradeid": "OrderID",
  1859. "spsl": "TP-SL",
  1860. "sp": "TP",
  1861. "sl": "SL",
  1862. "quoteprice": "QuotePrice",
  1863. "contractdetails": "Contract Details",
  1864. "available": "Avaiable",
  1865. "tips1": "Please select the currency",
  1866. "tips2" : "Please enter the quantity",
  1867. "transfer1": "Contracts To Spots",
  1868. "transfer2": "Spots To Contracts",
  1869. "network": "Network",
  1870. "tips3": "Please select the network",
  1871. "tips4": "Please select the currency",
  1872. "tips5": "Please enter the address",
  1873. "tips6": "Please enter the qty",
  1874. "tips7": "Withdraw Success",
  1875. "newaddress": "Create a new address",
  1876. "tips8": "Select a deposit network",
  1877. "depositnetwork": "Deposit Network",
  1878. "depositaddres": "Deposit Address",
  1879. "tips9": "Are you sure to create a new address?",
  1880. "tips10": "Create Success",
  1881. "tips11": "*Only ",
  1882. "tips12": "save the address",
  1883. "close": "Close By Single Orders",
  1884. "pricemode1": "PriceMode",
  1885. "close2": "Close By Sum Orders",
  1886. "tips13": "Are you sure to submit?",
  1887. "tips14": "Please enter the stop-loss price",
  1888. "tips15": "The price is not within the valid range",
  1889. "tips16": "Please enter the take-profit price",
  1890. "tpprice": "TP-Price",
  1891. "slprice": "SL-Price"
  1892. }
  1893. }