en-US.json 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576
  1. {
  2. "app": {
  3. "name": "MTP Management System",
  4. "left1": "Welcome To",
  5. "left2": "MTP Background Management System"
  6. },
  7. "account": {
  8. "fundacct": {
  9. "accountId": "TaAccountID",
  10. "isMain": "Account Type",
  11. "taAccountType": "Internal/External",
  12. "relatedName": "RelatedUser",
  13. "parentAccountId": "Parent Account",
  14. "tradeStatus": "TradeStatus",
  15. "currency": "Currency",
  16. "accountName": "User Owner",
  17. "bankinout": {
  18. "title": "Deposit/Withdrawal",
  19. "accountId": "TaAccountID",
  20. "enableAmount": "Withdrawable Amount",
  21. "inOutAmount": "Deposit/Withdrawal",
  22. "inAmount": "Deposit",
  23. "outAmount": "Withdrawal",
  24. "amount": "Amount",
  25. "cusbankid": "Custodian Bank",
  26. "accpwd": "Fund Password",
  27. "accounttype": "Account Type",
  28. "cardtype": "ID Type",
  29. "cardno": "ID Number",
  30. "bankname": "Bank Name",
  31. "bankaccountno": "Bank Account Number",
  32. "bankaccountname": "Bank Account Name",
  33. "mobilephone": "Mobile Number",
  34. "remark": "Remark"
  35. },
  36. "bankstatement": {
  37. "accountId": "TaAccountID",
  38. "operateType": "Operation Type",
  39. "relationOrderId": "Related Order ID",
  40. "marketName": "Market",
  41. "goodsName": "Product",
  42. "amount": "Amount",
  43. "balance": "Opening Balance",
  44. "currentBalance": "Closing Balance",
  45. "createTime": "Accounting Time",
  46. "amountAdjustTypeName": "Fund Adjustment Type",
  47. "logType": "Transaction Type"
  48. },
  49. "details": {
  50. "title": "Details",
  51. "accountId": "Fund Account:",
  52. "accountName": "Organization:",
  53. "isMain": "Is Parent Account:",
  54. "currency": "Currency:",
  55. "taAccountType": "Internal/External:",
  56. "changeFlag": "Change Flag:",
  57. "tradeStatus": "Trading Status:",
  58. "currentBalance": "Closing Balance:",
  59. "payCharge": "Platform Service Fee:",
  60. "otherPay": "Payment:",
  61. "otherFreezeMargin": "Delivery Margin:",
  62. "freezeMargin": "Frozen Margin:",
  63. "usedMargin": "Used Margin:",
  64. "freezeCharge": "Frozen Trading Fee:",
  65. "outAmountFreeze": "Withdrawal Freeze:",
  66. "outThreshold": "Withdrawal Threshold:",
  67. "cusBankName": "Bank Business Number",
  68. "bankName": "Bank Name",
  69. "bankAccountName": "Bank Account Name",
  70. "bankAccountNo": "Bank Account Number",
  71. "signStatus": "Contract Status"
  72. },
  73. "password": {
  74. "title": "Modify Fund Password",
  75. "accountId": "Fund Account ID",
  76. "oldPwd": "Old Password",
  77. "newPwd": "New Password",
  78. "confirmPassword": "Confirm New Password",
  79. "tips1": "Does not comply with password rules",
  80. "tips2": "New password and confirmation don't match"
  81. },
  82. "sign": {
  83. "accountId": "Fund Account:",
  84. "accountId1": "Fund Account",
  85. "accountName": "Customer Name",
  86. "cusBankName": "Custodian Bank",
  87. "bankAccountNo": "Corporate Account",
  88. "bankChildAccount": "Bank Sub-Account",
  89. "bankAccountName": "Bank Account Name",
  90. "bankName": "Bank Name",
  91. "cardType": "ID Type",
  92. "cardNo": "ID Number",
  93. "currency": "Currency",
  94. "signStatus": "Contract Status",
  95. "cancel": {
  96. "title": "Cancel Contract/Unbind",
  97. "broker": "Cancel Contract",
  98. "unbind": "Unbind",
  99. "person": "Personal",
  100. "companny": "Corporate",
  101. "accounttype": "Account Type:",
  102. "certtype": "ID Type:",
  103. "cusbankid": "Custodian Bank:",
  104. "certid": "ID Number:",
  105. "exbankname": "Bank Name:",
  106. "bankaccountno": "Bank Account Number:",
  107. "bankaccountno1": "Corporate Account:",
  108. "bankaccountname": "Bank Account Owner:",
  109. "mobilephone": "Mobile Number:",
  110. "tips1": "Confirm to initiate unbinding?",
  111. "tips2": "Confirm to initiate contract cancellation?"
  112. },
  113. "edit": {
  114. "title": "Edit",
  115. "userinfotype": "Account Type",
  116. "cardtypeid": "ID Type",
  117. "cusbankid": "Custodian Bank",
  118. "certid": "ID Number",
  119. "exbankname": "Bank Name",
  120. "bankaccountno": "Bank Account Number",
  121. "bankaccountno1": "Corporate Account",
  122. "bankaccountname": "Bank Account Owner",
  123. "mobilephone": "Mobile Number"
  124. }
  125. }
  126. },
  127. "tradingacct": {
  128. "loginid": "Log in account",
  129. "loginstatus": "Account status",
  130. "modifytime": "Modification time",
  131. "modifiername": "Modifier",
  132. "close": {
  133. "message": "Confirm to deactivate the account?"
  134. },
  135. "details": {
  136. "title": "Details",
  137. "loginid": "Log in account",
  138. "loginstatus": "Log in account status",
  139. "accountIdS": "Authorized capital account",
  140. "modifytime": "Modification time"
  141. },
  142. "edit": {
  143. "title": "Modify",
  144. "title1": "Add",
  145. "accountids": "Authorized capital account",
  146. "confirmPassword": "Confirm password",
  147. "password": "Login password",
  148. "loginid": "Log in account",
  149. "tips1": "Please select the authorized capital account",
  150. "tips2": "Does not conform to the password rule",
  151. "tips3": "The new password and the confirmed password are inconsistent",
  152. "tips4": "The modification was successful",
  153. "tips5": "Modification failed:",
  154. "tips6": "The addition was successful",
  155. "tips7": "Addition failed:"
  156. },
  157. "lock": {
  158. "message1": "Confirm to unlock this account?",
  159. "message2": "Confirm to lock this account?",
  160. "tips1": "The unlocking was successful",
  161. "tips2": "The locking was successful",
  162. "tips3": "Unlocking failed:",
  163. "tips4": "Locking failed:"
  164. },
  165. "password": {
  166. "message": "Confirm to reset the password?",
  167. "tips1": "The reset was successful",
  168. "tips2": "Reset failed:"
  169. },
  170. "recover": {
  171. "message": "Confirm to restore this login account?",
  172. "tips1": "The restoration was successful",
  173. "tips2": "Restoration failed:"
  174. }
  175. }
  176. },
  177. "admin": {
  178. "role": {
  179. "rolename": "Role Name",
  180. "modifiername": "Creator",
  181. "modifytime": "Creation Time",
  182. "rolestatus": "Status",
  183. "edit": {
  184. "title": "Edit",
  185. "rolename": "Role Name",
  186. "sensitivefields": "Sensitive Terms Permission",
  187. "mobilephone": "Customer Mobile Number",
  188. "cardtypeid": "Customer ID Number",
  189. "email": "Customer Email",
  190. "menuids": "Management Permissions"
  191. },
  192. "delete": {
  193. "tips1": "Confirm delete this role?"
  194. }
  195. },
  196. "user": {
  197. "ID": "ID",
  198. "logincode": "Login Account",
  199. "username": "Username",
  200. "areaName": "Organization",
  201. "roleName": "Role",
  202. "managerstatus": "Account Status",
  203. "modifytime": "Creation Time",
  204. "status": "Status",
  205. "loginCode": "Account",
  206. "edit": {
  207. "title": "Edit",
  208. "logincode": "Login Account",
  209. "password": "Default Password",
  210. "username": "Username",
  211. "roleId": "Role",
  212. "remark": "Remark"
  213. },
  214. "status1": {
  215. "tips1": "Confirm password reset?",
  216. "tips2": "Confirm account deactivation?",
  217. "tips3": "Confirm account activation?",
  218. "tips4": "Confirm account unlock?",
  219. "tips5": "Error occurred, please contact administrator."
  220. }
  221. }
  222. },
  223. "auth": {
  224. "login": {
  225. "title": "Account Login",
  226. "accountCode": "Username/Account/Mobile",
  227. "password": "Please enter your login password",
  228. "verifyCode": "Please enter verification code",
  229. "loading": "Logging in"
  230. }
  231. },
  232. "bank": {
  233. "cus_config": {},
  234. "sys_config": {}
  235. },
  236. "base": {
  237. "sys_params": {}
  238. },
  239. "error": {
  240. "tips": "Page not found"
  241. },
  242. "common": {
  243. "orderindex": "Serial Number",
  244. "pleaseenter": "Please Enter",
  245. "pleaseenterkeywords": "Please enter the keyword",
  246. "pleasechoiceorenter": "Please select or enter",
  247. "pleasechoice": "Please Select",
  248. "operate": "Operation",
  249. "current": "Current",
  250. "history": "History",
  251. "baseinfo": "Basic Information",
  252. "extendinfo": "Extended Information",
  253. "pleasechoicedate": "Please Select Date",
  254. "alert": "Alert",
  255. "annex": "Attachment",
  256. "annex1": "Attachment 1",
  257. "annex2": "Attachment 2",
  258. "closeall": "Collapse All",
  259. "expandall": "Expand All",
  260. "start": "Start",
  261. "end": "End",
  262. "require": "Required",
  263. "startdate": "Start Date",
  264. "enddate": "End Date",
  265. "tips1": "Submission successful",
  266. "tips2": "Submission failed:",
  267. "tips3": "Saved successfully",
  268. "tips4": "Save failed:",
  269. "tips5": "Deleted successfully",
  270. "tips6": "Deletion failed:",
  271. "tips7": "Submission successful",
  272. "tips8": "Submission failed:",
  273. "tips9": "Withdrawn successfully",
  274. "tips10": "Withdrawal failed:",
  275. "tips11": "Cancelled successfully",
  276. "tips12": "Cancellation failed:",
  277. "tips13": "Restored successfully",
  278. "tips14": "Restoration failed:",
  279. "tips15": "Withdrawn successfully",
  280. "tips16": "Withdrawal failed:",
  281. "tips17": "Operation successful",
  282. "tips18": "Operation failed:",
  283. "tips19": "Reset successful",
  284. "tips20": "Reset failed:",
  285. "tips21": "Please select correct image type",
  286. "tips22": "Confirmation failed:"
  287. },
  288. "operation": {
  289. "login": "Login",
  290. "search": "Search",
  291. "reset": "Reset",
  292. "cancel": "Cancel",
  293. "submit": "Submit",
  294. "submitaduit": "Submit for Review",
  295. "upload": "Upload",
  296. "aduit": "Review",
  297. "save": "Save",
  298. "batchconfirm": "Batch Confirm",
  299. "confirm": "Confirm",
  300. "export": "Export",
  301. "close": "Close",
  302. "add": "Add",
  303. "add1": "Add",
  304. "refuse": "Review Rejected",
  305. "agree": "Review Approved",
  306. "modifypwd": "Change password"
  307. },
  308. "investor": {
  309. "custom": {
  310. "accountcfg": {
  311. "baseinfo": "Basic information",
  312. "traderule": "Transaction rules",
  313. "tradefee": "Transaction service fee",
  314. "name": "Dealer account personalized settings",
  315. "tradefeename": "Expense item",
  316. "exchangevalue": "Platform",
  317. "dvalue": "Member",
  318. "gvalue": "Group",
  319. "cvalue": "Personalization",
  320. "rulename": "Extension item",
  321. "paramvalue": "Platform",
  322. "userName": "Dealer",
  323. "accountName": "Capital account",
  324. "goodsName": "Commodity",
  325. "customerType": "Margin category",
  326. "add": {
  327. "title": "Edit",
  328. "subtitle1": "Basic information settings",
  329. "userid": "Dealer",
  330. "accountid": "Capital account",
  331. "marketid": "Market",
  332. "goodsid": "Commodity",
  333. "paramid": "Margin category",
  334. "rulename": "Extension item",
  335. "paramvalue": "Platform",
  336. "dvalue": "Member",
  337. "gvalue": "Group",
  338. "cvalue": "Personalization",
  339. "tradefeename": "Expense item",
  340. "exchangevalue": "Platform",
  341. "feealgorithm": "Fee algorithm",
  342. "memberminvalue": "Minimum value",
  343. "fee": "Service fee",
  344. "membermaxvalue": "Maximum value",
  345. "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
  346. },
  347. "delete": {
  348. "tips": "Are you sure you want to delete the personalized configuration of this commodity?"
  349. },
  350. "edit": {
  351. "title": "Edit",
  352. "subtitle1": "Basic information settings",
  353. "userid": "Dealer",
  354. "accountid": "Capital account",
  355. "goodsid": "Commodity",
  356. "paramid": "Margin category",
  357. "rulename": "Extension item",
  358. "paramvalue": "Platform",
  359. "dvalue": "Member",
  360. "gvalue": "Group",
  361. "cvalue": "Personalization",
  362. "tradefeename": "Expense item",
  363. "exchangevalue": "Platform",
  364. "feealgorithm": "Fee algorithm",
  365. "memberminvalue": "Minimum value",
  366. "fee": "Service fee",
  367. "membermaxvalue": "Maximum value",
  368. "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
  369. }
  370. },
  371. "group": {
  372. "areausername": "Member Name",
  373. "groupname": "Group Name",
  374. "customertype": "Risk Customer Category",
  375. "createtime": "Creation Time",
  376. "delete": {
  377. "tips": "Confirm delete this group?"
  378. },
  379. "edit": {
  380. "title": "Edit",
  381. "subtitle1": "Group Information",
  382. "subtitle2": "Risk Rate Information",
  383. "areauserid": "Broker Member",
  384. "groupname": "Name",
  385. "customertype": "Risk Rate Type",
  386. "riskcontrolmode": "Risk Control Mode:",
  387. "customertype1": "Customer Category:",
  388. "riskratiocalcmode": "Risk Ratio Calculation:",
  389. "notemarginriskratio": "Margin Risk Rate Alert:",
  390. "addmarginriskratio": "Additional Margin Risk Rate:",
  391. "cutriskratio": "Forced Liquidation Risk Rate:",
  392. "cutbackriskratio": "Recovery Liquidation Risk Rate:",
  393. "notesaferatio": "Safety Level Alert:",
  394. "addsaferatio": "Additional Safety Level:",
  395. "recoversaferatio": "Normal Safety Level Recovery:",
  396. "cutsaferatio": "Forced Liquidation Safety Level:",
  397. "isdefault": "Is Default:",
  398. "markets": "Liquidation Market Order:",
  399. "tips1": "Code or name fuzzy match",
  400. "riskcontrolmode1": "Trader",
  401. "riskcontrolmode2": "Market Maker",
  402. "riskratiocalcmode1": "Used/Net Value",
  403. "riskratiocalcmode2": "Net Value/Used"
  404. },
  405. "user": {
  406. "groupname": "Group Name:",
  407. "userid": "Trader Code",
  408. "accountname": "Trader Name",
  409. "createtime": "Creation Time",
  410. "mobilephone": "Mobile Number",
  411. "cardnum": "ID Number",
  412. "edit": {
  413. "title": "Edit",
  414. "accountname": "Alternative Traders",
  415. "userid": "Selected Traders"
  416. },
  417. "delete": {
  418. "tips": "Confirm to",
  419. "tips1": "remove from group?"
  420. }
  421. }
  422. },
  423. "riskcfg": {
  424. "memberusername": "Member",
  425. "userid": "Trader Code",
  426. "username": "Trader Name",
  427. "accountid": "Fund Account",
  428. "customertype": "Risk Rate Type (Customer Category)",
  429. "delete": {
  430. "tips": "Confirm delete this configuration?"
  431. },
  432. "details": {
  433. "title": "Edit",
  434. "subtitle1": "Basic Information Settings",
  435. "subtitle2": "Risk Rate Information",
  436. "username": "Trader:",
  437. "accountid": "Fund Account:",
  438. "customertype": "Risk Rate Type:",
  439. "riskcontrolmode": "Risk Control Mode:",
  440. "customertype1": "Customer Category:",
  441. "riskratiocalcmode": "Risk Ratio Calculation:",
  442. "notemarginriskratio": "Margin Risk Rate Alert:",
  443. "addmarginriskratio": "Additional Margin Risk Rate:",
  444. "cutriskratio": "Forced Liquidation Risk Rate:",
  445. "cutbackriskratio": "Recovery Liquidation Risk Rate:",
  446. "notesaferatio": "Safety Level Alert:",
  447. "addsaferatio": "Additional Safety Level:",
  448. "recoversaferatio": "Normal Safety Level Recovery:",
  449. "cutsaferatio": "Forced Liquidation Safety Level:",
  450. "isdefault": "Is Default:",
  451. "markets": "Liquidation Market Order:",
  452. "riskcontrolmode1": "Trader",
  453. "riskcontrolmode2": "Market Maker",
  454. "riskratiocalcmode1": "Used/Net Value",
  455. "riskratiocalcmode2": "Net Value/Used"
  456. },
  457. "edit": {
  458. "title": "Edit",
  459. "subtitle1": "Basic Information Settings",
  460. "subtitle2": "Risk Rate Information",
  461. "userid": "Trader",
  462. "accountid": "Fund Account",
  463. "customertype": "Risk Rate Type",
  464. "riskcontrolmode": "Risk Control Mode:",
  465. "customertype1": "Customer Category:",
  466. "riskratiocalcmode": "Risk Ratio Calculation:",
  467. "notemarginriskratio": "Margin Risk Rate Alert:",
  468. "addmarginriskratio": "Additional Margin Risk Rate:",
  469. "cutriskratio": "Forced Liquidation Risk Rate:",
  470. "cutbackriskratio": "Recovery Liquidation Risk Rate:",
  471. "notesaferatio": "Safety Level Alert:",
  472. "addsaferatio": "Additional Safety Level:",
  473. "recoversaferatio": "Normal Safety Level Recovery:",
  474. "cutsaferatio": "Forced Liquidation Safety Level:",
  475. "isdefault": "Is Default:",
  476. "markets": "The order of forced liquidation in the market:",
  477. "tips1": "Code or name fuzzy match",
  478. "riskcontrolmode1": "Trader",
  479. "riskcontrolmode2": "Market Maker",
  480. "riskratiocalcmode1": "Used/Net Value",
  481. "riskratiocalcmode2": "Net Value/Used"
  482. }
  483. },
  484. "tradecfg": {
  485. "subtitle": "Trading Rules",
  486. "subtitle1": "Trading Service Fee",
  487. "usergroupid": "Group",
  488. "marketid": "Market",
  489. "goodsid": "Product",
  490. "usergroupid1": "Group:",
  491. "marketid1": "Market:",
  492. "goodsid1": "Product:",
  493. "paramid": "Margin Category:",
  494. "marketmarginvaluedisplay": "Collection Method:",
  495. "rulename": "Extension Item",
  496. "paramvalue": "Product Setting Value",
  497. "dvalue": "Member Setting Value",
  498. "cvalue": "Personalization",
  499. "tradefeename": "Fee Item",
  500. "feealgorithm": "Fee Algorithm",
  501. "exchangevalue": "Product Setting Value",
  502. "delete": {
  503. "tips": "Confirm delete this product personalization configuration?"
  504. },
  505. "edit": {
  506. "title": "Edit",
  507. "subtitle1": "Basic Information Settings",
  508. "usergroupid": "Group",
  509. "marketid": "Market",
  510. "goodsid": "Product",
  511. "paramid": "Margin Category",
  512. "tradefeename": "Fee Item",
  513. "feealgorithm": "Fee Algorithm",
  514. "feealgorithm1": "Ratio",
  515. "feealgorithm2": "Fixed Value",
  516. "exchangevalue": "Product Setting Value",
  517. "dvalue": "Member Setting Value",
  518. "memberminvalue": "Minimum Value",
  519. "fee": "Service Fee",
  520. "membermaxvalue": "Maximum Value",
  521. "rulename": "Extension Item",
  522. "paramvalue": "Product Setting Value",
  523. "cvalue": "Personalization"
  524. }
  525. }
  526. },
  527. "manage": {
  528. "cancelapply": {
  529. "accountname": "Dealer",
  530. "userid": "Dealer name",
  531. "applystatus": "Application status",
  532. "applytime": "Application time",
  533. "handlestatus": "Processing status",
  534. "handlestatus1": "Dealer status",
  535. "auditlogincode": "Reviewer",
  536. "audittime": "Review time",
  537. "details": {
  538. "title": "Details",
  539. "userid": "User account",
  540. "applytime": "Application time",
  541. "handlestatus": "Review status",
  542. "auditusername": "Reviewer",
  543. "audittime": "Review time",
  544. "auditremark": "Review remarks",
  545. "imageurl": "Confirm the half-body photo"
  546. }
  547. },
  548. "modification": {
  549. "userid": "Trader Code",
  550. "accountnamedisplay": "Trader",
  551. "memberusername": "Member",
  552. "parentname": "Organization",
  553. "parentname1": "Member\\Organization",
  554. "modifystatus": "Modification Status",
  555. "audittime": "Last Update Time",
  556. "accountname": "Account",
  557. "aduit": {
  558. "operate": {
  559. "title": "Review",
  560. "auditflag": "Review Status",
  561. "auditflag1": "Approve",
  562. "auditflag2": "Reject",
  563. "msg": "Rejection Reason",
  564. "tips1": "Please enter rejection reason"
  565. }
  566. }
  567. },
  568. "swapprotocol": {},
  569. "transfer": {
  570. "transfertype": "Transfer type",
  571. "outmemberusername": "The member to which the transfer out belongs",
  572. "outparentusername": "The institution to which the transfer out belongs",
  573. "outinvestorname": "Transfer out dealer",
  574. "outinvestor": "Transfer out dealer",
  575. "inmemberusername": "The member to which the transfer in belongs",
  576. "inuseridname": "The institution to which the transfer in belongs",
  577. "transferstatus": "Transfer status",
  578. "createtime": "Application time",
  579. "outmemberuserid": "Transferor",
  580. "inuserid": "Transferee"
  581. },
  582. "user": {
  583. "accountName": "Trader Name",
  584. "loginId": "Login Account",
  585. "accountId": "Fund Account Number",
  586. "memberUserName": "Member",
  587. "memberUserId": "Member\\Organization",
  588. "parentName": "Organization",
  589. "refereeName": "Referrer",
  590. "isAuth": "Verified Identity",
  591. "accountStatus": "Status",
  592. "modifyStatus": "Modification Status",
  593. "createTime": "Account Opening Time",
  594. "modifyTime": "Last Update Time",
  595. "auditTime": "Review Time",
  596. "cancelTime": "Account Closing Time",
  597. "account": {
  598. "title": "'s Fund Account",
  599. "accountid": "Fund Account",
  600. "taaccounttype": "Internal/External",
  601. "relateduserid": "Related Account",
  602. "tradestatus": "Trading Status",
  603. "currencyid": "Currency",
  604. "cur_risk_rate": "Risk Rate (%)",
  605. "tips1": "Please enter fund account ID",
  606. "details": {
  607. "title": "Details",
  608. "accountid": "Account Number:",
  609. "accountname": "Trader:",
  610. "ismain": "Is Parent Account:",
  611. "parentaccountid": "Parent Account:",
  612. "relateduserid": "Related User:",
  613. "changeflag": "Change Flag:",
  614. "tradestatus": "Trading Status:",
  615. "currentbalance": "Closing Balance:",
  616. "freezemargin": "Frozen Margin:",
  617. "usedmargin": "Used Margin:",
  618. "freezecharge": "Frozen Service Fee:",
  619. "outamountfreeze": "Withdrawal Freeze:",
  620. "outthreshold": "Withdrawal Threshold:"
  621. },
  622. "edit": {
  623. "title": "Edit",
  624. "accountid": "Fund Account",
  625. "tradestatus": "Trading Status",
  626. "taaccounttype": "Internal/External",
  627. "currencyid": "Currency",
  628. "outthreshold": "Withdrawal Threshold"
  629. }
  630. },
  631. "cancel": {
  632. "tips": "Confirm withdrawal of changes?"
  633. },
  634. "config": {
  635. "title": "Member/Trader:",
  636. "subtitle": "Margin",
  637. "subtitle1": "Trading Rules",
  638. "subtitle2": "Trading Fees",
  639. "marginalgorithm": "Margin Calculation Method:",
  640. "marginalgorithm1": "Ratio (‱)",
  641. "marginalgorithm2": "Fixed Value",
  642. "deposit": "Deposit:",
  643. "marketmarginvalue": "Market Margin:",
  644. "reckonmarginvalue": "Settlement Margin Value:",
  645. "lockmarginvalue": "Lock Position Margin",
  646. "rulename": "Extension Item",
  647. "paramvalue": "Value",
  648. "feename": "Fee Item",
  649. "feealgorithm": "Fee Algorithm",
  650. "feealgorithm1": "Fee Algorithm",
  651. "feealgorithm2": "Fee Algorithm",
  652. "exchangevalue": "Platform Setting Value",
  653. "memberdefaultvalue": "Member Setting Value",
  654. "goodsId": "GoodsID",
  655. "accountid": "Fund Account",
  656. "tips1": "Please enter product ID"
  657. },
  658. "delete": {
  659. "tips": "Confirm cancellation of this trader?"
  660. },
  661. "details": {
  662. "title": "Details",
  663. "subtitle1": "Personal Information",
  664. "subtitle2": "Corporate Information",
  665. "userId": "Trader Code:",
  666. "accountName": "Trader Name:",
  667. "memberUserName": "Member:",
  668. "parentUserName": "Organization:",
  669. "openMode": "Account Opening Method:",
  670. "createTime": "Account Opening Time:",
  671. "createName1": "Account Creator",
  672. "createName2": "Applicant",
  673. "accountStatus": "Organization Status:",
  674. "modifyStatus": "Modification Status:",
  675. "isAuth": "Verified:",
  676. "modifyTime": "Modification Time:",
  677. "modifyName": "Modifier:",
  678. "auditTime": "Review Time:",
  679. "auditAccountName": "Reviewer:",
  680. "modifyRemark": "Change Review Remarks:",
  681. "cardTypeId": "ID Type:",
  682. "cardNum": "ID Number:",
  683. "company": "Company:",
  684. "sex": "Gender:",
  685. "mobile": "Mobile Number:",
  686. "telPhone": "Contact Phone:",
  687. "address": "Mailing Address:",
  688. "postalCode": "Postal Code:",
  689. "wechat": "WeChat:",
  690. "email": "Email:",
  691. "cardFrontPhotoUrl": "ID Front Photo:",
  692. "cardBackPhotoUrl": "ID Back Photo:",
  693. "remark": "Remarks:",
  694. "needInvoice": "Need Invoice:",
  695. "customerName": "Company Name:",
  696. "bizNature": "Company Nature:",
  697. "legalPersonName": "Legal Representative:",
  698. "contactName": "Contact Person:",
  699. "cardFrontPhotoUrl1": "Business License:",
  700. "legalCardFrontPhotoUrl": "Legal Rep. ID Front:",
  701. "legalCardBackPhotoUrl": "Legal Rep. ID Back:",
  702. "otherUrl": "Legal Authorization:"
  703. },
  704. "edit": {
  705. "title": "Edit",
  706. "userId": "Trader Code",
  707. "accountName": "Trader Name",
  708. "memberUserName": "Member",
  709. "parentuserid": "Organization",
  710. "refereeUserName": "Referrer",
  711. "isAuth": "Verified",
  712. "cardTypeId": "ID Type",
  713. "person": "Personal",
  714. "company1": "Corporate",
  715. "profile": "Information",
  716. "cardNum": "ID Number",
  717. "customerName": "Company Name",
  718. "bizNature": "Company Nature",
  719. "legalPersonName": "Legal Representative",
  720. "contactName": "Contact Person",
  721. "sex": "Gender",
  722. "company": "Company",
  723. "mobile": "Mobile Number",
  724. "telPhone": "Contact Phone",
  725. "region": "Region",
  726. "address": "Address",
  727. "postalCode": "Postal Code",
  728. "email": "Email",
  729. "wechat": "WeChat",
  730. "cardFrontPhotoUrl": "ID Front Photo",
  731. "cardBackPhotoUrl": "ID Back Photo",
  732. "cardFrontPhotoUrl1": "Business License",
  733. "halfBodyPhotoUrl": "ID in Hand Photo",
  734. "legalCardFrontPhotoUrl": "Legal Rep. ID Front",
  735. "legalCardBackPhotoUrl": "Legal Rep. ID Back",
  736. "otherUrl": "Legal Authorization",
  737. "remark": "Remarks",
  738. "tips1": "Please enter trader name",
  739. "tips2": "Code or name fuzzy match"
  740. },
  741. "export": {
  742. "tips": "Confirm export table data?"
  743. },
  744. "login": {
  745. "loginid": "Login Account",
  746. "loginstatus": "Account Status",
  747. "modifytime": "Modification Time",
  748. "modifiername": "Modifier",
  749. "delete": {
  750. "tips": "Confirm account deactivation?",
  751. "tips1": "Successfully deactivated",
  752. "tips2": "Deactivation failed:"
  753. },
  754. "details": {
  755. "title": "Details",
  756. "loginid": "Login Account:",
  757. "authid": "Mobile Number:"
  758. },
  759. "lock": {
  760. "tips1": "Confirm unlock this account?",
  761. "tips2": "Confirm lock this account?",
  762. "tips3": "Successfully locked",
  763. "tips4": "Successfully unlocked",
  764. "tips5": "Lock failed:",
  765. "tips6": "Unlock failed:"
  766. },
  767. "log": {
  768. "title": "Login Records",
  769. "loginflowno": "Login Record Number",
  770. "operatetime": "Login Time",
  771. "loginip": "Login IP",
  772. "clienttype": "Client Type",
  773. "softversion": "Software Version",
  774. "loginretcode": "Login Result",
  775. "funcode": "Login/Logout",
  776. "operatetype": "Operation Type"
  777. },
  778. "password": {
  779. "tips": "Confirm password reset?"
  780. },
  781. "recover": {
  782. "tips": "Confirm account recovery?"
  783. }
  784. },
  785. "recover": {
  786. "tips": "Confirm recovery of this trader?",
  787. "tips1": "The account status of the related login account will be recovered separately."
  788. }
  789. }
  790. },
  791. "user": {
  792. "initreview": {
  793. "userName": "User Name",
  794. "memberUserName": "Member",
  795. "areaName": "Organization",
  796. "openMode": "Account Opening Method",
  797. "userState": "Account Status",
  798. "createTime": "Application Time",
  799. "areaCode": "Member\\Organization"
  800. },
  801. "open": {
  802. "userName": "User Name",
  803. "memberUserName": "Member",
  804. "areaName": "Organization",
  805. "openMode": "Account Opening Method",
  806. "userState": "Account Status",
  807. "createTime": "Application Time",
  808. "areaCode": "Member\\Organization",
  809. "cancel": {
  810. "tips": "Confirm withdrawal of account opening review?"
  811. },
  812. "delete": {
  813. "tips": "Confirm deletion of this account opening information?"
  814. },
  815. "details": {
  816. "title": "Details",
  817. "username": "User Name",
  818. "username1": "Company Name:",
  819. "userinfotype": "Information Type:",
  820. "cardtype": "ID Type:",
  821. "cardnum": "ID Number:",
  822. "pathname": "Address:",
  823. "legalpersonname": "Legal Representative:",
  824. "contactname": "Contact Person:",
  825. "sex": "Gender:",
  826. "mobilephone": "Mobile Number:",
  827. "postalcode": "Postal Code:",
  828. "wechat": "WeChat:",
  829. "telphone": "Contact Phone:",
  830. "email": "Email:",
  831. "company": "Company:",
  832. "memberusername": "Member:",
  833. "areaname": "Organization:",
  834. "brokername": "Broker:",
  835. "referralname": "Referrer:",
  836. "cardfrontphotourl": "ID Front Photo:",
  837. "cardfrontphotourl1": "Business License:",
  838. "cardbackphotourl": "ID Back Photo:",
  839. "halfbodyphotourl": "ID in Hand Photo:",
  840. "legalcardfrontphotourl": "ID Front Photo:",
  841. "legalcardbackphotourl": "ID Back Photo:",
  842. "otherurl": "Legal Authorization:",
  843. "userstate": "Status:",
  844. "remark": "Remarks:",
  845. "bankname": "Bank Name:",
  846. "bankaccount": "Bank Account:",
  847. "bankcardfrontphotourl": "Bank Card Front:",
  848. "aduit": "Approved",
  849. "unaduit": "Rejected",
  850. "tips1": "Confirm submission for review?",
  851. "tips2": "Review successful",
  852. "tips3": "Review failed:"
  853. },
  854. "edit": {
  855. "title": "Edit",
  856. "memberareaid": "Member",
  857. "areaid": "Organization",
  858. "brokerid": "Broker",
  859. "referral": "Referrer",
  860. "userinfotype": "Information Type",
  861. "username": "User Name",
  862. "sex": "Gender",
  863. "username1": "Company Name",
  864. "legalpersonname": "Legal Representative",
  865. "cardtype": "ID Type",
  866. "cardnum": "ID Number",
  867. "cardfrontphotourl": "ID Front Photo",
  868. "cardbackphotourl": "ID Back Photo",
  869. "cardfrontphotourl1": "Business License",
  870. "legalcardfrontphotourl": "Legal Rep. ID Front",
  871. "legalcardbackphotourl": "Legal Rep. ID Back",
  872. "otherurl": "Legal Authorization",
  873. "region": "Region",
  874. "cardaddress": "Address",
  875. "contactname": "Contact Person",
  876. "telphone": "Contact Phone",
  877. "mobilephone": "Mobile Number",
  878. "postalcode": "Postal Code",
  879. "company": "Company",
  880. "wechat": "WeChat",
  881. "email": "Email",
  882. "remark": "Remarks",
  883. "tips1": "Code or name fuzzy match",
  884. "tips2": "1. Please upload image in format: JPG,JPEG,GIF,PNG,BMP, size not exceeding 102400KB",
  885. "tips3": "2. ID information must be clearly visible, photos must be without hat, content must be authentic and valid, no modifications allowed.",
  886. "tips4": "Please upload ID front photo",
  887. "tips5": "Please upload business license",
  888. "tips6": "Please upload ID back photo",
  889. "tips7": "Please select region",
  890. "tips8": "Please upload legal representative ID front",
  891. "tips9": "Please upload legal representative ID back"
  892. }
  893. },
  894. "review": {
  895. "userName": "Username",
  896. "memberUserName": "Member",
  897. "areaName": "Organization",
  898. "openMode": "Account Opening Method",
  899. "userState": "Account Status",
  900. "createTime": "Application Time",
  901. "areaCode": "Member\\Organization"
  902. }
  903. }
  904. },
  905. "marketrun": {
  906. "exception": {},
  907. "market": {},
  908. "monitor": {
  909. "account": {
  910. "puserid": "Organization",
  911. "risk": "Monitor Current Risk Rate >",
  912. "orderbytype": "Risk Rate",
  913. "searchtype": "Query Type",
  914. "searchtype1": "Trader",
  915. "searchtype2": "Unlimited",
  916. "searchtype3": "Self-operated Member",
  917. "accountid": "Account",
  918. "accountname": "Account Name",
  919. "memberusername": "Member",
  920. "parentusername": "Organization",
  921. "freezemargin": "Current Frozen Funds",
  922. "usedmargin": "Current Used Margin",
  923. "netbalance": "Current Net Value",
  924. "balance": "Current Risk Net Value",
  925. "availmargin": "Available Funds",
  926. "totalfrozen": "Total Frozen",
  927. "totalfloatpl": "Floating Profit/Loss",
  928. "credit": "Credit Funds",
  929. "curriskrate": "Current Risk Rate(%)",
  930. "currisklv": "Current Risk Level",
  931. "totalfloatpl1": "Floating Profit/Loss",
  932. "currisksaferate": "Current Safety Level(%)",
  933. "currisksafelv": "Current Safety Level",
  934. "start": "Start Monitoring",
  935. "stop": "Stop Monitoring",
  936. "tips1": "(Default risk rate >50%; Refresh every 10 seconds, next refresh:",
  937. "tips2": "Code or name fuzzy match"
  938. },
  939. "liquidation": {
  940. "countDown": "Refresh every 10 seconds, next refresh:",
  941. "start": "Start Monitoring",
  942. "stop": "Stop Monitoring",
  943. "accountid": "Forced Liquidation Account",
  944. "goodsname": "Product",
  945. "buyorsell": "Trading Direction",
  946. "cuttime": "Liquidation Time",
  947. "cuttradeqty": "Liquidated Quantity",
  948. "cutorderid": "Related Order ID"
  949. },
  950. "marketer": {
  951. "orderbytype": "Risk rate",
  952. "risk": "Monitor the current risk rate >",
  953. "start": "Start monitoring",
  954. "stop": "Stop monitoring",
  955. "tips1": "(Default risk rate > 50%; refresh every 10 seconds, next refresh:",
  956. "accountid": "Account",
  957. "tradestatus": "Account status",
  958. "accountname": "Member name",
  959. "freezemargin": "Current frozen funds",
  960. "usedmargin": "Current margin occupied",
  961. "balance": "Current net value",
  962. "availmargin": "Available funds",
  963. "totalfrozen": "Total frozen amount",
  964. "totalfloatpl": "Floating profit and loss",
  965. "curriskrate": "Current risk rate (%)",
  966. "currisklv": "Current risk level",
  967. "positionsumm": {
  968. "title": "Account position holding summary monitoring",
  969. "accountid1": "Capital account:",
  970. "accountid": "Capital account/account number/name",
  971. "parentname": "Affiliation",
  972. "goodsname": "Commodity",
  973. "buy_hold_qty": "Position holding quantity (buy)",
  974. "buy_hold_value": "Position holding amount (buy)",
  975. "buy_avg_price": "Average position holding price (buy)",
  976. "buy_float_pl": "Position holding profit and loss (buy)",
  977. "sell_hold_qty": "Position holding quantity (sell)",
  978. "sell_hold_value": "Position holding amount (sell)",
  979. "sell_avg_price": "Average position holding price (sell)",
  980. "sell_float_pl": "Position holding profit and loss (sell)",
  981. "total_float_pl": "Position holding profit and loss (total)",
  982. "quote_price_last": "Latest price",
  983. "details": {
  984. "title": "Position holding order query",
  985. "accountid1": "Capital account:",
  986. "tradeid": "Transaction order number",
  987. "tradedate": "Trading day",
  988. "accountNameId": "Account",
  989. "marketname": "Market",
  990. "goodsCodeName": "Commodity",
  991. "buyorsell": "Direction",
  992. "holderqty": "Position holding quantity",
  993. "holderprice": "Position holding price",
  994. "holderamount": "Position holding amount",
  995. "tradetime": "Transaction time"
  996. }
  997. }
  998. },
  999. "positionsumm": {},
  1000. "user": {
  1001. "loginid": "Login Account",
  1002. "username": "Account Name",
  1003. "loginip": "IP",
  1004. "loginport": "Port",
  1005. "logintime": "Login Time",
  1006. "clienttype": "Client Type",
  1007. "softversion": "Software Version",
  1008. "areaname": "Organization",
  1009. "membername": "Member",
  1010. "alloffline": {
  1011. "tips": "Force all users offline?"
  1012. },
  1013. "offline": {
  1014. "tips1": "Do you want to force user",
  1015. "tips2": "offline?"
  1016. }
  1017. }
  1018. }
  1019. },
  1020. "member": {
  1021. "institution": {
  1022. "broker": {
  1023. "memberuserid": "Organization Code",
  1024. "accountname": "Organization Name",
  1025. "accountid": "Fund Account",
  1026. "accountstatus": "Organization Status",
  1027. "operation": "Operator",
  1028. "rolemodifytime": "Role Creation Time",
  1029. "details": {
  1030. "title": "Details",
  1031. "subtitle": "Basic information",
  1032. "subtitle1": "Commodity query permission",
  1033. "accountname": "Name",
  1034. "userName": "Administrator",
  1035. "reckonaccountid": "Capital account"
  1036. }
  1037. },
  1038. "goodscfg": {
  1039. "membername": "Member Organization",
  1040. "roledisplay": "Organization Role",
  1041. "goodsdisplay": "Product",
  1042. "nodisplay": "Not Display",
  1043. "cannotbuy": "Cannot Place Buy Orders",
  1044. "cannotsell": "Cannot Place Sell Orders",
  1045. "userid": "Economic Member",
  1046. "marketid": "Market",
  1047. "goodsid": "Product",
  1048. "tips1": "Please select economic member",
  1049. "tips2": "Enter code or name"
  1050. },
  1051. "industry": {
  1052. "memberuserid": "Organization Code",
  1053. "accountname": "Organization Name",
  1054. "accountid": "Fund Account",
  1055. "accountstatus": "Organization Status",
  1056. "operation": "Operator",
  1057. "rolemodifytime": "Role Creation Time",
  1058. "details": {
  1059. "title": "Details",
  1060. "subtitle": "Basic information",
  1061. "subtitle2": "Commodity query permission",
  1062. "accountname": "Name",
  1063. "userName": "Administrator",
  1064. "reckonaccountid": "Capital account"
  1065. }
  1066. },
  1067. "marketer": {
  1068. "memberuserid": "Organization Code",
  1069. "accountname": "Organization Name",
  1070. "accountid": "Fund Account",
  1071. "accountstatus": "Organization Status",
  1072. "operation": "Operator",
  1073. "rolemodifytime": "Role Creation Time",
  1074. "details": {
  1075. "title": "Details",
  1076. "subtitle": "Basic information",
  1077. "subtitle2": "Commodity query permission",
  1078. "accountname": "Name",
  1079. "userName": "Administrator",
  1080. "reckonaccountid": "Capital account"
  1081. }
  1082. },
  1083. "marketing": {
  1084. "memberuserid": "Organization Code",
  1085. "accountname": "Organization Name",
  1086. "accountid": "Fund Account",
  1087. "accountstatus": "Organization Status",
  1088. "operation": "Operator",
  1089. "rolemodifytime": "Role Creation Time",
  1090. "details": {
  1091. "title": "Details",
  1092. "subtitle": "Basic information",
  1093. "subtitle2": "Commodity query permission",
  1094. "accountname": "Name",
  1095. "userName": "Administrator",
  1096. "reckonaccountid": "Capital account"
  1097. }
  1098. },
  1099. "open": {
  1100. "username": "Username",
  1101. "openmode": "Account Opening Method",
  1102. "userstate": "Account Status",
  1103. "createtime": "Application Time",
  1104. "username1": "Username",
  1105. "cancel": {
  1106. "tips": "Confirm withdrawal of account opening review?"
  1107. },
  1108. "delete": {
  1109. "tips": "Confirm deletion of this organization's account opening information?"
  1110. },
  1111. "details": {
  1112. "title": "Details",
  1113. "title1": "Review Rejected",
  1114. "title2": "Review Approved",
  1115. "subtitle1": "Personal Information",
  1116. "subtitle2": "Corporate Information",
  1117. "username": "Organization Name:",
  1118. "userinfotype": "Owner Type:",
  1119. "usertype": "Organization Type:",
  1120. "referral": "Referrer:",
  1121. "userstate": "Account Status:",
  1122. "createtime": "Creation Time:",
  1123. "customername": "Name:",
  1124. "company": "Company:",
  1125. "cardtype": "ID Type:",
  1126. "cardnum": "ID Number:",
  1127. "cardfrontphotourl": "ID Front Photo:",
  1128. "cardbackphotourl": "ID Back Photo:",
  1129. "sex": "Gender:",
  1130. "mobilephone": "Mobile Number:",
  1131. "telphone": "Contact Phone:",
  1132. "address": "Address:",
  1133. "postalcode": "Postal Code:",
  1134. "email": "Email:",
  1135. "remark": "Remarks:",
  1136. "biznature": "Company Nature:",
  1137. "legalpersonname": "Legal Representative:",
  1138. "legalcardfrontphotourl": "Legal Rep. ID Front:",
  1139. "legalcardbackphotourl": "Legal Rep. ID Back:",
  1140. "contactname": "Contact Person:",
  1141. "attachment1": "Attachment 1:",
  1142. "attachment2": "Attachment 2:",
  1143. "reason": "Rejection Reason",
  1144. "areacode": "Organization Code",
  1145. "smlogincode": "Admin Login Account",
  1146. "loginname": "Admin Name",
  1147. "smpassword": "Default Login Password",
  1148. "tips1": "Four-digit Number",
  1149. "tips2": "Input must contain letters and be at least 3 characters"
  1150. },
  1151. "edit": {
  1152. "title": "Edit",
  1153. "username": "Organization Name",
  1154. "userinfotype": "Owner Type",
  1155. "referral": "Referrer",
  1156. "customername": "Name",
  1157. "person": "Personal",
  1158. "companny": "Corporate",
  1159. "profile": "Information",
  1160. "company": "Company",
  1161. "biznature": "Company Nature",
  1162. "cardtype": "ID Type",
  1163. "cardnum": "ID Number",
  1164. "cardfrontphotourl": "ID Front Photo",
  1165. "cardbackphotourl": "ID Back Photo",
  1166. "legalpersonname": "Legal Representative",
  1167. "legalcardfrontphotourl": "Legal Rep. ID Front",
  1168. "legalcardbackphotourl": "Legal Rep. ID Back",
  1169. "contactname": "Contact Person",
  1170. "sex": "Gender",
  1171. "mobilephone": "Mobile Number",
  1172. "telphone": "Contact Phone",
  1173. "provinceid": "Region",
  1174. "cardaddress": "Address",
  1175. "postalcode": "Postal Code",
  1176. "email": "Email",
  1177. "remark": "Remarks"
  1178. }
  1179. },
  1180. "operation": {
  1181. "memberuserid": "Organization Code",
  1182. "accountname": "Organization Name",
  1183. "accountid": "Fund Account",
  1184. "accountstatus": "Organization Status",
  1185. "operation": "Operator",
  1186. "rolemodifytime": "Role Creation Time",
  1187. "details": {
  1188. "title": "Details",
  1189. "subtitle": "Basic information",
  1190. "subtitle2": "Commodity query permission",
  1191. "accountname": "Name",
  1192. "userName": "Administrator",
  1193. "reckonaccountid": "Capital account"
  1194. }
  1195. },
  1196. "riskcfg": {
  1197. "memberuserid": "Member",
  1198. "userid": "Member Code",
  1199. "username": "Member Name",
  1200. "accountid": "Fund Account",
  1201. "customertype": "Risk Rate Type (Customer Category)",
  1202. "tips1": "Please select member",
  1203. "tips2": "Enter code or name",
  1204. "details": {
  1205. "title": "Edit",
  1206. "subtitle": "Basic information settings",
  1207. "subtitle1": "Risk rate information",
  1208. "username": "Dealer:",
  1209. "accountid": "Capital account:",
  1210. "customertype": "Risk rate type:",
  1211. "riskcontrolmode": "Risk control mode:",
  1212. "riskcontrolmode1": "Dealer",
  1213. "riskcontrolmode2": "Market maker member",
  1214. "customertype1": "Customer category:",
  1215. "riskratiocalcmode": "Risk rate calculation method:",
  1216. "riskratiocalcmode1": "Occupied/net value",
  1217. "riskratiocalcmode2": "Value/occupied",
  1218. "notemarginriskratio": "Prompt margin risk rate:",
  1219. "addmarginriskratio": "Margin call risk rate:",
  1220. "cutriskratio": "Forced liquidation risk rate:",
  1221. "cutbackriskratio": "Forced liquidation recovery risk rate:",
  1222. "notesaferatio": "Prompt safety level:",
  1223. "addsaferatio": "Margin call safety level:",
  1224. "recoversaferatio": "Restore normal safety level:",
  1225. "cutsaferatio": "Forced liquidation safety level:",
  1226. "isdefault": "Is it the default?",
  1227. "markets": "The order of forced liquidation in the market:"
  1228. },
  1229. "edit": {
  1230. "title": "Edit",
  1231. "userid": "Member",
  1232. "riskcontrolmode": "Risk control mode:",
  1233. "riskcontrolmode1": "Dealer",
  1234. "riskcontrolmode2": "Market maker member",
  1235. "customertype1": "Customer category:",
  1236. "riskratiocalcmode": "Risk rate calculation method:",
  1237. "riskratiocalcmode1": "Occupied/net value",
  1238. "riskratiocalcmode2": "Value/occupied",
  1239. "notemarginriskratio": "Prompt margin risk rate:",
  1240. "addmarginriskratio": "Margin call risk rate:",
  1241. "cutriskratio": "Forced liquidation risk rate:",
  1242. "cutbackriskratio": "Forced liquidation recovery risk rate:",
  1243. "notesaferatio": "Prompt safety level:",
  1244. "addsaferatio": "Margin call safety level:",
  1245. "recoversaferatio": "Restore normal safety level:",
  1246. "cutsaferatio": "Forced liquidation safety level:",
  1247. "isdefault": "Is it the default?",
  1248. "markets": "The order of forced liquidation in the market:"
  1249. }
  1250. },
  1251. "role": {
  1252. "autoid": "ID",
  1253. "rolename": "Role Name",
  1254. "modifiername": "Creator",
  1255. "modifytime": "Creation Time",
  1256. "rolestatus": "Status"
  1257. },
  1258. "self": {
  1259. "memberuserid": "Organization Code",
  1260. "accountname": "Organization Name",
  1261. "accountid": "Fund Account",
  1262. "accountstatus": "Organization Status",
  1263. "operation": "Operator",
  1264. "rolemodifytime": "Role Creation Time",
  1265. "details": {
  1266. "title": "Details",
  1267. "subtitle": "Basic information",
  1268. "market": "Market",
  1269. "accountname": "Name",
  1270. "userName": "Administrator",
  1271. "reckonaccountid": "Capital account"
  1272. }
  1273. },
  1274. "tradecfg": {
  1275. "subtitle": "Basic information",
  1276. "traderule": "Transaction rules",
  1277. "tradefee": "Transaction service fee",
  1278. "name1": "Self-operated member account personalized settings",
  1279. "name2": "Market maker member account personalized settings",
  1280. "userName": "Self-operated",
  1281. "userName1": "Market maker",
  1282. "userName2": "Member",
  1283. "accountName": "Capital account",
  1284. "goodsName": "Commodity",
  1285. "customerType": "Margin category",
  1286. "rulename": "Extension item",
  1287. "paramvalue": "Platform",
  1288. "cvalue": "Personalization",
  1289. "tradefeename": "Expense item",
  1290. "exchangevalue": "Platform",
  1291. "add": {
  1292. "subtitle": "Personalized settings",
  1293. "userid1": "Self-operated member",
  1294. "userid2": "Market maker member",
  1295. "accountid": "Capital account",
  1296. "marketid": "Market",
  1297. "goodsid": "Commodity",
  1298. "paramid": "Margin category",
  1299. "rulename": "Extension item",
  1300. "paramvalue": "Platform",
  1301. "cvalue": "Personalization",
  1302. "tradefeename": "Expense item",
  1303. "exchangevalue": "Platform",
  1304. "feealgorithm": "Fee algorithm",
  1305. "fee": "Service fee",
  1306. "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
  1307. },
  1308. "edit": {
  1309. "title": "Edit",
  1310. "tradetype1": "Self-operated member",
  1311. "tradetype2": "Market maker member",
  1312. "accountid": "Capital account",
  1313. "goodsid": "Commodity",
  1314. "rulename": "Extension item",
  1315. "paramvalue": "Platform",
  1316. "cvalue": "Personalization",
  1317. "tradefeename": "Expense item",
  1318. "exchangevalue": "Platform",
  1319. "feealgorithm": "Fee algorithm",
  1320. "fee": "Service fee",
  1321. "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
  1322. }
  1323. },
  1324. "user": {
  1325. "enddate": "End Time",
  1326. "startdate": "Start Time",
  1327. "roles": "Role",
  1328. "starttime": "Creation Time",
  1329. "markets": "Market Permissions",
  1330. "userid": "Organization Code",
  1331. "accountname": "Organization Name",
  1332. "accountstatus": "Organization Status",
  1333. "createtime": "Creation Time",
  1334. "modifytime": "Last Update Time",
  1335. "roleIds": "Organization Role",
  1336. "userName": "Operator",
  1337. "account": {
  1338. "accountname": "The capital account of",
  1339. "accountId": "Capital account",
  1340. "isMain": "Account type",
  1341. "taAccountType": "Internal/external",
  1342. "relatedName": "Associated account",
  1343. "parentAccountId": "The parent account to which it belongs",
  1344. "tradeStatus": "Transaction status",
  1345. "currency": "Currency",
  1346. "curRiskRate": "Risk rate (%)",
  1347. "edit": {
  1348. "title": "Modify",
  1349. "accountId": "Capital account",
  1350. "tradestatus": "Transaction status",
  1351. "taAccountType": "Internal/external",
  1352. "currency": "Currency",
  1353. "outthreshold": "Withdrawal threshold"
  1354. },
  1355. "password": {
  1356. "message": "Confirm to reset the password?",
  1357. "tips1": "The reset was successful",
  1358. "tips2": "Reset failed:"
  1359. },
  1360. "signstatement": {
  1361. "title": "Signing and解约transaction record",
  1362. "accountid": "Capital account:",
  1363. "accountcode": "Capital account",
  1364. "cusbankid": "Custodian bank number",
  1365. "signtype": "Signing (解约) type",
  1366. "dealstatus": "Processing status",
  1367. "createtime": "Time",
  1368. "bankaccountno": "Bank card number",
  1369. "currency": "Currency",
  1370. "querytype": "Query type"
  1371. }
  1372. },
  1373. "close": {
  1374. "message": "Confirm to cancel this institution?"
  1375. },
  1376. "details": {
  1377. "title": "Details",
  1378. "subtitle1": "Basic information",
  1379. "subtitle2": "Administrator and account information",
  1380. "subtitle3": "Bank card information",
  1381. "subtitle4": "Attachment",
  1382. "userid": "Institution code",
  1383. "userinfotype": "Owner type",
  1384. "refereeusername": "Referrer",
  1385. "accountname": "Institution name",
  1386. "usertype": "Institution type",
  1387. "accountstatus": "Institution status",
  1388. "reckonaccountid": "Capital account",
  1389. "createtime": "Creation time",
  1390. "customername": "Name",
  1391. "company": "Company",
  1392. "biznature": "Enterprise nature",
  1393. "cardtypeid": "Certificate type",
  1394. "cardnum": "Certificate number",
  1395. "cardfrontphotourl": "Front of the certificate photo",
  1396. "cardbackphotourl": "Back of the certificate photo",
  1397. "legalpersonname": "Legal person's name",
  1398. "legalcardfrontphotourl": "Front of the legal person's ID card",
  1399. "legalcardbackphotourl": "Back of the legal person's ID card",
  1400. "contactname": "Contact person",
  1401. "sex": "Gender",
  1402. "mobile": "Mobile phone number",
  1403. "telphone": "Contact phone number",
  1404. "address": "Address",
  1405. "postalcode": "Postal code",
  1406. "email": "Email",
  1407. "qq": "QQ",
  1408. "wechat": "WeChat",
  1409. "remark": "Remarks",
  1410. "logincode": "Administrator login account",
  1411. "username": "Administrator name",
  1412. "managerstatus": "Account status",
  1413. "bankname": "Bank name",
  1414. "bankaccount": "Bank account",
  1415. "bankcardfrontphotourl": "Front of the bank card",
  1416. "attachment1": "Attachment 1",
  1417. "attachment2": "Attachment 2"
  1418. },
  1419. "edit": {
  1420. "subtitle": "Basic information",
  1421. "subtitle1": "Administrator and account information",
  1422. "userid": "Institution code",
  1423. "userinfotype": "Owner type",
  1424. "username": "Institution name",
  1425. "usertype": "Institution type",
  1426. "refereeuserid": "Referrer",
  1427. "person": "Individual",
  1428. "enterprise": "Enterprise",
  1429. "legend": "Information",
  1430. "customername": "Name",
  1431. "biznature": "Enterprise nature",
  1432. "cardtypeid": "Certificate type",
  1433. "cardnum": "Certificate number",
  1434. "cardfrontphotourl": "Front of the certificate photo",
  1435. "cardbackphotourl": "Back of the certificate photo",
  1436. "legalpersonname": "Legal person's name",
  1437. "legalcardfrontphotourl": "Front of the legal person's ID card",
  1438. "legalcardbackphotourl": "Back of the legal person's ID card",
  1439. "contactname": "Contact person",
  1440. "sex": "Gender",
  1441. "mobile": "Mobile phone number",
  1442. "telphone": "Contact phone number",
  1443. "provinceid": "Region",
  1444. "address": "Address",
  1445. "postalcode": "Postal code",
  1446. "email": "Email",
  1447. "remark": "Remarks",
  1448. "username1": "Administrator name",
  1449. "userinfotype1": "Capital account",
  1450. "attachment": "Attachment",
  1451. "attachment1": "Attachment 1",
  1452. "attachment2": "Attachment 2"
  1453. },
  1454. "login": {
  1455. "accountname": "And sub-institution administrator accounts",
  1456. "allstart": "Enable all",
  1457. "allstop": "Deactivate all",
  1458. "areauserid": "Institution code to which it belongs",
  1459. "logincode": "Login account",
  1460. "managerstatus": "Account status",
  1461. "modifytime": "Update time",
  1462. "password": {
  1463. "message": "Confirm to reset the password?",
  1464. "tips1": "The reset was successful",
  1465. "tips2": "Reset failed:"
  1466. },
  1467. "status": {
  1468. "message1": "Confirm to deactivate the administrator login account?",
  1469. "message2": "Confirm to activate the administrator login account?"
  1470. },
  1471. "statuses": {
  1472. "message1": "Confirm to activate all administrator login accounts?",
  1473. "message2": "Confirm to deactivate all administrator login accounts?"
  1474. }
  1475. },
  1476. "recover": {
  1477. "message": "Confirm to restore this institution?",
  1478. "tips1": "The restoration was successful",
  1479. "tips2": "Restoration failed:"
  1480. },
  1481. "terminal": {
  1482. "accountname": "Self-operated member login account",
  1483. "userid": "Institution code to which it belongs",
  1484. "loginid": "Login account",
  1485. "loginstatus": "Account status",
  1486. "modifytime": "Update time",
  1487. "password": {
  1488. "message": "Confirm to reset the password?"
  1489. },
  1490. "status": {
  1491. "message1": "Confirm to lock this account?",
  1492. "message2": "Confirm to unlock this account?"
  1493. }
  1494. }
  1495. },
  1496. "warehouse": {
  1497. "memberuserid": "Organization Code",
  1498. "accountname": "Organization Name",
  1499. "accountid": "Fund Account",
  1500. "accountstatus": "Organization Status",
  1501. "operation": "Operator",
  1502. "rolemodifytime": "Role Creation Time",
  1503. "details": {
  1504. "title": "Details",
  1505. "subtitle": "Basic information",
  1506. "subtitle2": "Warehouse",
  1507. "accountname": "Name",
  1508. "userName": "Administrator",
  1509. "reckonaccountid": "Capital account"
  1510. }
  1511. }
  1512. },
  1513. "subinstitution": {
  1514. "addition": {
  1515. "userid": "Institution code",
  1516. "accountname": "Institution name",
  1517. "parentname": "Institution to which it belongs",
  1518. "memberusername": "Member to which it belongs",
  1519. "accountstatus": "Institution status",
  1520. "usertype": "Institution type",
  1521. "userinfotype": "Owner type",
  1522. "userName": "Operator",
  1523. "modifytime": "Last update time",
  1524. "subarealevel": "Type"
  1525. },
  1526. "manage": {
  1527. "userid": "Organization Code:",
  1528. "accountname": "Organization Name:",
  1529. "accountstatus": "Organization Status:",
  1530. "userinfotype": "Owner Type:",
  1531. "contactname": "Contact Person:",
  1532. "pathname": "Address:",
  1533. "userid1": "Organization Code",
  1534. "accountname1": "Organization Name",
  1535. "accountstatus1": "Organization Status",
  1536. "usertype": "Organization Type",
  1537. "userinfotype1": "Owner Type",
  1538. "userName": "Operator",
  1539. "modifytime": "Last Update Time",
  1540. "cancel": {
  1541. "tips": "Confirm withdrawal of changes?"
  1542. },
  1543. "delete": {
  1544. "tips": "Confirm cancellation of this organization?"
  1545. },
  1546. "details": {
  1547. "title": "Details",
  1548. "subtitle1": "Personal Information",
  1549. "subtitle2": "Corporate Information",
  1550. "subtitle3": "Bank Card Information",
  1551. "subtitle4": "Administrator & Account Information",
  1552. "userId": "Organization Code:",
  1553. "accountName": "Organization Name:",
  1554. "usertype": "Organization Type:",
  1555. "accountStatus": "Organization Status:",
  1556. "auditAccountName": "Reviewer:",
  1557. "auditremark": "Review Remarks:",
  1558. "customerName": "Name:",
  1559. "company": "Company:",
  1560. "cardTypeId": "ID Type:",
  1561. "cardNum": "ID Number:",
  1562. "contactName": "Contact Person:",
  1563. "sex": "Gender:",
  1564. "cardFrontPhotoUrl": "ID Front Photo:",
  1565. "cardBackPhotoUrl": "ID Back Photo:",
  1566. "halfBodyPhotoUrl": "ID in Hand Photo:",
  1567. "bizNature": "Company Nature:",
  1568. "cardFrontPhotoUrl1": "Business License:",
  1569. "legalPersonName": "Legal Representative:",
  1570. "legalCardFrontPhotoUrl": "ID Front Photo:",
  1571. "legalCardBackPhotoUrl": "ID Back Photo:",
  1572. "mobile": "Mobile Number:",
  1573. "telPhone": "Contact Phone:",
  1574. "address": "Address:",
  1575. "postalCode": "Postal Code:",
  1576. "email": "Email:",
  1577. "remark": "Remarks:",
  1578. "bankName": "Bank Name:",
  1579. "bankAccount": "Bank Account:",
  1580. "bankCardFrontPhotoUrl": "Bank Card Front:",
  1581. "attachment1": "Attachment 1:",
  1582. "attachment2": "Attachment 2:",
  1583. "logincode": "Admin Login Account:",
  1584. "username": "Admin Name:",
  1585. "userstatus": "Account Status:"
  1586. },
  1587. "edit": {
  1588. "title": "Edit",
  1589. "subtitle": "Administrator & Account Information",
  1590. "referral": "Parent Organization",
  1591. "userinfotype": "Owner Type",
  1592. "userid": "Organization Code",
  1593. "accountname": "Organization Name",
  1594. "refereeuserid": "Referrer",
  1595. "person": "Personal",
  1596. "companny": "Corporate",
  1597. "profile": "Information",
  1598. "customername": "Name",
  1599. "company": "Company",
  1600. "biznature": "Company Nature",
  1601. "cardtypeid": "ID Type",
  1602. "cardnum": "ID Number",
  1603. "cardfrontphotourl": "ID Front Photo",
  1604. "cardbackphotourl": "ID Back Photo",
  1605. "legalpersonname": "Legal Representative",
  1606. "legalcardfrontphotourl": "Legal Rep. ID Front",
  1607. "legalcardbackphotourl": "Legal Rep. ID Back",
  1608. "contactname": "Contact Person",
  1609. "sex": "Gender",
  1610. "mobile": "Mobile Number",
  1611. "telphone": "Contact Phone",
  1612. "provinceid": "Region",
  1613. "address": "Address",
  1614. "postalcode": "Postal Code",
  1615. "email": "Email",
  1616. "remark": "Remarks",
  1617. "logincode": "Admin Login Account",
  1618. "username": "Admin Name",
  1619. "smpassword": "Default Login Password",
  1620. "tips1": "Code or name fuzzy match"
  1621. },
  1622. "recover": {
  1623. "tips": "Confirm restoration of this organization? Default admin account will also be restored."
  1624. }
  1625. },
  1626. "modification": {
  1627. "userid": "Institution code",
  1628. "accountname": "Institution name",
  1629. "memberusername": "Member to which it belongs",
  1630. "parentname": "Institution to which it belongs",
  1631. "modifystatus": "Change status",
  1632. "modifytime": "Last update time",
  1633. "subarealevel": "Type"
  1634. },
  1635. "transfer": {
  1636. "outparentusername": "Transfer out institution",
  1637. "outlevel": "Transfer out institution type",
  1638. "inuseridname": "Transfer in institution",
  1639. "inlevel": "Transfer in institution type",
  1640. "transfermode": "Transfer method",
  1641. "transferstatus": "Transfer status",
  1642. "createtime": "Application time",
  1643. "cancel": {
  1644. "message": "Confirm to cancel the transfer application?"
  1645. },
  1646. "edit": {
  1647. "legend": "Transfer out",
  1648. "diversionoutlevel": "Transfer out type",
  1649. "outparentuserid": "Transfer out first-level sub-institution",
  1650. "outparentuserid1": "Transfer out second-level sub-institution",
  1651. "cardtypeid": "Certificate type",
  1652. "cardnum": "Certificate number",
  1653. "legend1": "Transfer in",
  1654. "transfermode": "Transfer in method",
  1655. "diversioninlevel": "Transfer in type",
  1656. "inuserid": "Transfer in brokerage member",
  1657. "inuserid1": "Transfer in first-level sub-institution",
  1658. "tips1": "*The transfer of sub-institutions and their subordinate dealers will be processed during the system settlement."
  1659. },
  1660. "run": {
  1661. "message": "Confirm to execute the transfer?",
  1662. "tips1": "The transfer was successful",
  1663. "tips2": "Transfer failed:"
  1664. }
  1665. },
  1666. "user": {
  1667. "userid": "Institution code",
  1668. "accountname": "Institution name",
  1669. "parentname": "Institution to which it belongs",
  1670. "memberusername": "Member to which it belongs",
  1671. "accountstatus": "Institution status",
  1672. "usertype": "Institution type",
  1673. "userinfotype": "Owner type",
  1674. "userName": "Operator",
  1675. "modifytime": "Last update time",
  1676. "username1": "Organization",
  1677. "markets": "Market permission",
  1678. "edit": {
  1679. "title": "Edit",
  1680. "subtitle": "Administrator & Account Information",
  1681. "referral": "Parent Organization",
  1682. "username": "Organization Code",
  1683. "userinfotype": "Owner Type",
  1684. "username1": "Organization Name",
  1685. "customername": "Name",
  1686. "company": "Company",
  1687. "person": "Personal",
  1688. "company1": "Corporate",
  1689. "profile": "Information",
  1690. "biznature": "Company Nature",
  1691. "cardtype": "ID Type",
  1692. "cardnum": "ID Number",
  1693. "cardfrontphotourl": "ID Front Photo",
  1694. "cardbackphotourl": "ID Back Photo",
  1695. "legalpersonname": "Legal Representative",
  1696. "legalcardfrontphotourl": "Legal Rep. ID Front",
  1697. "legalcardbackphotourl": "Legal Rep. ID Back",
  1698. "contactname": "Contact Person",
  1699. "sex": "Gender",
  1700. "mobilephone": "Mobile Number",
  1701. "telphone": "Contact Phone",
  1702. "provinceid": "Region",
  1703. "cardaddress": "Address",
  1704. "postalcode": "Postal Code",
  1705. "email": "Email",
  1706. "remark": "Remarks",
  1707. "username2": "Administrator Login Account",
  1708. "username3": "Administrator Name",
  1709. "smpassword": "Default Login Password"
  1710. }
  1711. }
  1712. }
  1713. },
  1714. "notice": {
  1715. "manage": {
  1716. "title": "Title",
  1717. "msgtype": "Message type",
  1718. "sendtype": "Release type",
  1719. "sentstatus": "Push status",
  1720. "scheduletime": "Effective time",
  1721. "endtime": "End time",
  1722. "recipient": "Recipient",
  1723. "content": "Message content",
  1724. "userid": "Receiving dealer",
  1725. "isforcedisplay": "Is it mandatory to pop up?"
  1726. }
  1727. },
  1728. "performance": {
  1729. "buy": {},
  1730. "plan": {},
  1731. "sell": {}
  1732. },
  1733. "profitshare": {
  1734. "institution": {
  1735. "config": {
  1736. "subareagroupname": "Group",
  1737. "dividetype": "Distribution Algorithm",
  1738. "dividemode": "Distribution Method",
  1739. "dividevalue": "Distribution Value",
  1740. "username": "Creator",
  1741. "createtime": "Creation Time",
  1742. "edit": {
  1743. "title": "Edit",
  1744. "feeName": "Distribution Fee Type",
  1745. "marketName": "Market",
  1746. "subareagroupid": "Group",
  1747. "dividetype": "Distribution Algorithm",
  1748. "dividemode": "Distribution Method",
  1749. "dividevalue": "Distribution Value",
  1750. "tips1": "Please Select Group",
  1751. "tips2": "Please Select Distribution Algorithm",
  1752. "tips3": "Please Select Distribution Method",
  1753. "tips4": "Please Enter Distribution Value"
  1754. },
  1755. "delete": {
  1756. "tips": "Confirm Delete This Configuration?"
  1757. }
  1758. },
  1759. "group": {
  1760. "subareagroupname": "Name",
  1761. "subareagrouptype": "Group Type",
  1762. "remark": "Remarks",
  1763. "username": "Creator",
  1764. "createtime": "Creation Time",
  1765. "edit": {
  1766. "title": "Edit",
  1767. "subareagrouptype": "Group Type",
  1768. "subareagroupname": "Name",
  1769. "remark": "Remarks"
  1770. },
  1771. "delete": {
  1772. "tips": "Confirm Delete Group?"
  1773. },
  1774. "member": {
  1775. "subareagroupname": "Group:",
  1776. "accountname": "Sub-Organization",
  1777. "tips1": "Added Successfully",
  1778. "tips2": "Add Failed:",
  1779. "tips3": "Please Select Organization",
  1780. "tips4": "Confirm Delete Group Sub-Organization?"
  1781. }
  1782. }
  1783. },
  1784. "platform": {
  1785. "group": {}
  1786. }
  1787. },
  1788. "query": {
  1789. "internal": {
  1790. "accountsumm": {
  1791. "marketid": "Market",
  1792. "summode": "Summary Mode",
  1793. "summode1": "Summarize by Account",
  1794. "summode2": "Summarize by Account+Date",
  1795. "date": "Date",
  1796. "goodsId": "GoodsID",
  1797. "accountid": "Trader",
  1798. "excludeaccountidsstr": "Exclude Fund Account",
  1799. "tradeDate": "Trading Day",
  1800. "userfullname": "Account",
  1801. "goodsfullname": "Product Code/Name",
  1802. "membername": "Member",
  1803. "parentname": "Organization",
  1804. "tradeqtysum": "Total Trading Volume",
  1805. "tradeamountsum": "Total Trading Amount",
  1806. "closeplsum": "Total Transfer Profit/Loss",
  1807. "chargesum": "Total Service Fee",
  1808. "tips1": "Please Enter Product ID",
  1809. "tips2": "Enter Trader ID",
  1810. "tips3": "Please Enter Complete Fund Accounts, Separate Multiple With Commas"
  1811. },
  1812. "deliveryorder": {
  1813. "date": "Date",
  1814. "startdate": "Start time",
  1815. "enddate": "End time",
  1816. "wrstandardid": "Spot commodity",
  1817. "ishis": "Historical query",
  1818. "deliveryticket": "Declaration transaction record",
  1819. "deliveryorderid": "Declaration order number",
  1820. "accountidname": "Declarant",
  1821. "xgoodsname": "Main commodity",
  1822. "xdeliveryqty": "Number of lots of the main commodity",
  1823. "deliverygoodsname": "Spot commodity",
  1824. "deliveryqty": "Spot quantity",
  1825. "deliveryorderstatus": "Status",
  1826. "ordertime": "Declaration time",
  1827. "details": {
  1828. "title": "Detailed information of delivery consignment (click selection type)",
  1829. "subtitle1": "Declaration information",
  1830. "subtitle2": "Warehouse receipt information",
  1831. "subtitle3": "Transaction contract",
  1832. "subtitle4": "Auxiliary contract 1",
  1833. "subtitle5": "Auxiliary contract 2",
  1834. "deliveryticket": "Declaration transaction record number:",
  1835. "deliveryorderid": "Consignment order number:",
  1836. "tradedate": "Trading day:",
  1837. "accountid": "Declarant (account):",
  1838. "matchaccountid": "Counterparty (account):",
  1839. "deliveryorderstatus": "Delivery status:",
  1840. "ordertime": "Declaration time:",
  1841. "auditname": "Reviewer:",
  1842. "audittime": "Review time:",
  1843. "auditremark": "Remarks:",
  1844. "retcode": "Error information:",
  1845. "wrstandardcode": "Spot commodity:",
  1846. "deliveryqty": "Spot quantity:",
  1847. "xgoodsname": "Transaction contract:",
  1848. "xdeliveryprice": "Delivery price:",
  1849. "xdeliveryqty": "Number of lots of the contract:",
  1850. "ppricemode": "Price method:",
  1851. "pgoodsname": "Auxiliary contract 1:",
  1852. "pdeliveryprice": "Delivery price:",
  1853. "pdeliveryqty": "Number of lots of the contract:",
  1854. "p2pricemode": "Price method:",
  1855. "p2goodsname": "Auxiliary contract 2:",
  1856. "p2deliveryprice": "Delivery price:",
  1857. "p2deliveryqty": "Number of lots of the contract:"
  1858. }
  1859. },
  1860. "deliverytrade": {
  1861. "startDate": "Start time",
  1862. "endDate": "End time",
  1863. "date": "Date",
  1864. "deliveryid": "Delivery order number",
  1865. "tradedate": "Trading day",
  1866. "buyorsell": "Direction",
  1867. "accountid": "Buyer",
  1868. "matchaccountid": "Seller",
  1869. "deliverygoodsname": "Spot commodity",
  1870. "deliveryqty": "Spot quantity",
  1871. "deliveryprice": "Delivery unit price",
  1872. "deliveryamount": "Total amount of the goods payment",
  1873. "deliverypricemove": "Total amount of premium and discount",
  1874. "deliverycharge": "Delivery service fee",
  1875. "deliveryorderid": "Consignment order number",
  1876. "wrstandardid": "Spot commodity",
  1877. "xgoodsid": "Main commodity",
  1878. "accountid1": "Capital account",
  1879. "ishis": "Delivery data type",
  1880. "tips1": "Please enter the commodity ID",
  1881. "tips2": "Please enter the capital account ID",
  1882. "details": {
  1883. "title": "Details",
  1884. "subtitle1": "Delivery order information",
  1885. "subtitle2": "Warehouse receipt information",
  1886. "subtitle3": "Transaction contract",
  1887. "subtitle4": "Auxiliary contract 1",
  1888. "subtitle5": "Auxiliary contract 2",
  1889. "deliveryid": "Delivery order number:",
  1890. "tradedate": "Trading day:",
  1891. "buyorsell": "Direction:",
  1892. "accountid": "Buyer (account):",
  1893. "matchaccountid": "Seller (account):",
  1894. "deliverytotalamount": "Total delivery amount:",
  1895. "deliveryprice": "Delivery unit price:",
  1896. "deliverycharge": "Delivery service fee:",
  1897. "deliverypricemove": "Total amount of premium and discount:",
  1898. "remaintotalamount": "Remaining total amount:",
  1899. "deliverystatus": "Status:",
  1900. "deliverytime": "Transaction time:",
  1901. "feealgorithm": "Service fee collection method:",
  1902. "memberchargevalue": "Member service fee setting value:",
  1903. "exchchargevalue": "Platform service fee setting value:",
  1904. "deliveryorderid": "Declaration order number:",
  1905. "wrstandardcode": "Spot commodity:",
  1906. "deliveryqty": "Declared quantity:",
  1907. "deliveryrtradeqty": "Transaction quantity:",
  1908. "xgoodsname": "Transaction contract:",
  1909. "xdeliveryprice": "Delivery unit price:",
  1910. "xdeliverycloseqty": "Number of lots of the order:",
  1911. "ppricemode": "Price method:",
  1912. "pgoodsname": "Auxiliary contract 1:",
  1913. "pdeliveryprice": "Delivery price:",
  1914. "pdeliverycloseqty": "Number of lots of the order:",
  1915. "p2pricemode": "Price method:",
  1916. "p2goodsname": "Auxiliary contract 2:",
  1917. "p2deliveryprice": "Delivery price:",
  1918. "p2deliverycloseqty": "Number of lots of the order:"
  1919. }
  1920. },
  1921. "goodssumm": {
  1922. "marketid": "Market",
  1923. "date": "Date",
  1924. "summode": "Summary Mode",
  1925. "summode1": "Summarize by Goods",
  1926. "summode2": "Summarize by Godos+Date",
  1927. "goodsId": "GoodsID",
  1928. "excludeaccountidsstr": "Exclude Fund Account",
  1929. "tradeDate": "Trading Day",
  1930. "goodsfullname": "Product Code/Name",
  1931. "tradeqtysum": "Total Trading Volume",
  1932. "tradeamountsum": "Total Trading Amount",
  1933. "closeplsum": "Total Transfer Profit/Loss",
  1934. "chargesum": "Total Service Fee",
  1935. "tips1": "Please Enter Complete Fund Accounts, Separate Multiple With Commas"
  1936. },
  1937. "institutionsumm": {
  1938. "marketid": "Market",
  1939. "date": "Date",
  1940. "goodsId": "GoodsID",
  1941. "parentuserid": "Organization",
  1942. "userid": "Account ID",
  1943. "accountname": "Account Name",
  1944. "goodscode": "Product Code",
  1945. "goodsname": "Product Name",
  1946. "tradeqtysum": "Total Trading Volume",
  1947. "tradeamountsum": "Total Trading Amount",
  1948. "closeplsum": "Total Transfer Profit/Loss",
  1949. "chargesum": "Total Service Fee"
  1950. },
  1951. "liquidation": {
  1952. "orderId": "Consignment order number",
  1953. "accountNameId": "Account",
  1954. "goodsCodeName": "Commodity code/name",
  1955. "buyOrSell": "Direction",
  1956. "orderPrice": "Forced liquidation consignment price",
  1957. "orderQty": "Forced liquidation quantity",
  1958. "orderAccount": "Forced liquidation amount",
  1959. "orderTime": "Forced liquidation time",
  1960. "marketId": "Market",
  1961. "goodsId": "Commodity",
  1962. "accountId": "Account",
  1963. "tips1": "Please enter the commodity ID"
  1964. },
  1965. "offlinedelivery": {
  1966. "deliveryorderid": "Delivery order number",
  1967. "username": "Applicant",
  1968. "goodsdisplay": "Delivery commodity",
  1969. "buyorselldisplay": "Direction",
  1970. "deliveryqty": "Applied delivery quantity",
  1971. "sucdeliveryqty": "Actual delivery quantity",
  1972. "deliveryprice": "Delivery price",
  1973. "deliveryamount": "Delivery goods payment",
  1974. "matchname": "Counterparty",
  1975. "reqtime": "Application time",
  1976. "orderstatusdisplay": "Delivery status",
  1977. "deliveryorderstatus": "Document status",
  1978. "deliverygoodsname": "Delivery commodity",
  1979. "accountname": "Account",
  1980. "startdate": "Application date",
  1981. "buyorsell": "Direction",
  1982. "cancel": {
  1983. "title": "Details",
  1984. "submit": "Delivery failed",
  1985. "deliveryorderid": "Delivery order number:",
  1986. "username": "Applicant:",
  1987. "goodsdisplay": "Delivery commodity:",
  1988. "buyorsell": "Direction:",
  1989. "deliveryqty": "Delivery quantity:",
  1990. "deliveryprice": "Delivery price:",
  1991. "deliveryamount": "Delivery goods payment:",
  1992. "matchname": "Counterparty:",
  1993. "deliveryinfo": "Delivery information:",
  1994. "reqtime": "Application time:",
  1995. "orderstatusdisplay": "Delivery status:",
  1996. "auditremark": "Remarks:",
  1997. "tips": "Please enter the remarks"
  1998. },
  1999. "confirm": {
  2000. "title": "Details",
  2001. "submit": "Confirm delivery",
  2002. "deliveryorderid": "Delivery order number:",
  2003. "username": "Applicant:",
  2004. "goodsdisplay": "Delivery commodity:",
  2005. "buyorsell": "Direction:",
  2006. "deliveryqty": "Delivery quantity:",
  2007. "deliveryprice": "Delivery price:",
  2008. "deliveryamount": "Delivery goods payment:",
  2009. "matchname": "Counterparty:",
  2010. "deliveryinfo": "Delivery information:",
  2011. "reqtime": "Application time:",
  2012. "orderstatusdisplay": "Delivery status:"
  2013. },
  2014. "details": {
  2015. "title": "Details",
  2016. "deliveryorderid": "Delivery order number:",
  2017. "username": "Applicant:",
  2018. "goodsdisplay": "Delivery commodity:",
  2019. "buyorsell": "Direction:",
  2020. "deliveryqty": "Applied delivery quantity:",
  2021. "sucdeliveryqty": "Actual delivery quantity:",
  2022. "cancledeliveryqty": "Canceled delivery quantity:",
  2023. "deliveryprice": "Delivery price:",
  2024. "deliveryamount": "Delivery goods payment:",
  2025. "matchname": "Counterparty:",
  2026. "deliveryinfo": "Delivery information:",
  2027. "reqtime": "Application time:",
  2028. "orderstatusdisplay": "Delivery status:",
  2029. "remark": "Remarks:",
  2030. "deliverycharge": "Delivery handling fee:",
  2031. "closetime": "Completion time:"
  2032. },
  2033. "pay": {
  2034. "message": "Confirm that the delivery service provider pays the goods payment to the seller?"
  2035. }
  2036. },
  2037. "order": {
  2038. "marketid": "Market",
  2039. "isHis": "Query Type",
  2040. "date": "Date",
  2041. "buildType": "Document Type",
  2042. "orderStatus": "Status",
  2043. "orderId": "Order Number",
  2044. "goodsId": "Product",
  2045. "accountName": "Account",
  2046. "excludeAccountIdsStr": "Exclude Fund Account",
  2047. "accountNameId": "Account",
  2048. "goodsCodeName": "Product Code/Name",
  2049. "buyOrSell": "Direction",
  2050. "orderPrice": "Order Price",
  2051. "orderQty": "Order Quantity",
  2052. "tradeQty": "Trading Quantity",
  2053. "orderTime": "Order Time",
  2054. "tradeDate": "Trading Day",
  2055. "tips1": "Please Enter Complete Fund Accounts, Separate Multiple With Commas",
  2056. "tips2": "Please Enter Product ID",
  2057. "tips3": "Enter Account ID",
  2058. "details": {
  2059. "title": "Details",
  2060. "subtitle1": "Order Information",
  2061. "subtitle2": "Fee-Related Configuration and Collection Value",
  2062. "tradelist1": "Transaction List (History)",
  2063. "tradelist2": "Transaction List (Today)",
  2064. "orderid": "Order Number:",
  2065. "accountname": "Order Account:",
  2066. "parentusername": "Organization:",
  2067. "memberaccountname": "Member:",
  2068. "marketname": "Market:",
  2069. "goodsname": "Product:",
  2070. "listingselecttype": "Listing Type:",
  2071. "delistingtype": "Delisting Type:",
  2072. "buildtype": "Order Type:",
  2073. "buyorsell": "Direction:",
  2074. "orderprice": "Order Price:",
  2075. "optiontype": "Option Type:",
  2076. "orderprice1": "Exercise Price:",
  2077. "premium": "Order Deposit:",
  2078. "orderqty": "Order Quantity:",
  2079. "openqty": "Open Position Quantity:",
  2080. "closeqty": "Close Position Quantity:",
  2081. "cancelqty": "Cancel Order Quantity:",
  2082. "pricemode": "Price Method:",
  2083. "validtype": "Validity Type:",
  2084. "validtime": "Validity Period:",
  2085. "operatetype": "Operation Type:",
  2086. "orderstatus": "Order Status:",
  2087. "ordertime": "Order Time:",
  2088. "clientticket": "Client Serial Number",
  2089. "cancelorderid": "Cancellation Order Number:",
  2090. "preorderid": "Associated Pending Order Number:",
  2091. "relatedid": "Associated Order Number:",
  2092. "retcode": "Error Code:",
  2093. "refgoodsid": "Reference Product:",
  2094. "swapdays": "Swap Days:",
  2095. "marginvalue": "Margin Setting Value:",
  2096. "openexchagechargevalue": "Open Position Exchange Fee Setting Value:",
  2097. "openmemberchargevalue": "Open Position Member Fee Setting Value:",
  2098. "closeexchagechargevalue": "Close Position Exchange Fee Setting Value:",
  2099. "closememberchargevalue": "Close Position Member Fee Setting Value:",
  2100. "freezemargin": "Frozen Margin",
  2101. "freezecharge": "Frozen Service Fee",
  2102. "openfreezecharge": "Open Position Frozen Service Fee",
  2103. "closefreezecharge": "Close Position Unfrozen Service Fee",
  2104. "unfreezemargin": "Unfrozen Margin",
  2105. "unfreezecharge": "Unfrozen Service Fee",
  2106. "openunfreezecharge": "Open Position Unfrozen Service Fee",
  2107. "closeunfreezecharge": "Close Position Unfrozen Service Fee",
  2108. "tradeid": "Transaction Number",
  2109. "matchaccountid": "Counterparty Account",
  2110. "tradeqty": "Transaction Quantity",
  2111. "tradeprice": "Transaction Price",
  2112. "tradeamount": "Transaction Amount",
  2113. "tradeprice1": "Exercise Price",
  2114. "chargevalue": "Service Fee",
  2115. "tradetime": "Transaction Time"
  2116. },
  2117. "export": {
  2118. "tips": "Confirm Export Table Data?"
  2119. }
  2120. },
  2121. "position": {
  2122. "marketid": "Market",
  2123. "buyOrSell": "Direction",
  2124. "isHis": "Document Type",
  2125. "date": "Date",
  2126. "tradeId": "Transaction Number",
  2127. "goodsId": "Product",
  2128. "loginId": "Login Account",
  2129. "accountId": "Account",
  2130. "parentAreaId": "Organization",
  2131. "validHolderQty": "Valid Position",
  2132. "tradeid": "Transaction Number",
  2133. "tradedate": "Trading Day",
  2134. "accountNameId": "Account",
  2135. "goodsCodeName": "Product Code/Name",
  2136. "buyorsell": "Direction",
  2137. "openqty": "Established Quantity",
  2138. "openprice": "Established Price",
  2139. "tradeamount": "Established Amount",
  2140. "holderqty": "Position Quantity",
  2141. "holderprice": "Position Price",
  2142. "holderamount": "Position Amount",
  2143. "actuallYplS": "Floating Profit/Loss",
  2144. "holderdays": "T+N",
  2145. "tradetime": "Transaction Time",
  2146. "usertype": "Account Type",
  2147. "memberusername": "Member",
  2148. "parentusername": "Superior",
  2149. "marketname": "Market",
  2150. "tips1": "Please Enter Product ID",
  2151. "tips2": "Enter Account or Name",
  2152. "tips3": "Please Enter Organization ID",
  2153. "details": {
  2154. "tradeid": "Transaction Number:",
  2155. "tradedate": "Trading Day:",
  2156. "accountid": "Account:",
  2157. "parentusername": "Organization:",
  2158. "memberusername": "Member:",
  2159. "marketname": "Market:",
  2160. "goodsname": "Product:",
  2161. "optiontype": "Option Type:",
  2162. "buyorsell": "Direction:",
  2163. "holderdays": "T+N:",
  2164. "tradetime": "Transaction Time:",
  2165. "openprice": "Opening Price:",
  2166. "holderprice": "Position Price:",
  2167. "openprice1": "Exercise Price:",
  2168. "premium": "Order Deposit:",
  2169. "openqty": "Opening Quantity:",
  2170. "holderqty": "Position Quantity:",
  2171. "expiretype": "Exercise Date Type:",
  2172. "expirecycle": "Exercise Period:",
  2173. "expiredate": "Exercise Date:",
  2174. "refgoodsid": "Reference Product:",
  2175. "swapdays": "Swap Days:",
  2176. "title": "Details"
  2177. },
  2178. "export": {
  2179. "tips": "Confirm Export Table Data?"
  2180. }
  2181. },
  2182. "positionsumm": {
  2183. "marketid": "Market",
  2184. "goodsId": "GoodsID",
  2185. "accname": "User",
  2186. "areauserid": "Organization",
  2187. "loginid": "Login Account",
  2188. "goodsCodeName": "Product Code/Name",
  2189. "accountidname": "Account",
  2190. "loginids": "Login Account",
  2191. "buycurpositionqty": "Total Buy Position Quantity",
  2192. "buycurholderamount": "Total Buy Position Amount",
  2193. "buycuravgprice": "Average Buy Position Price",
  2194. "buyFloatPL": "Position Profit/Loss (Buy)",
  2195. "sellcurpositionqty": "Total Sell Position Quantity",
  2196. "sellcurholderamount": "Total Sell Position Amount",
  2197. "sellcuravgprice": "Average Sell Position Price",
  2198. "sellFloatPL": "Position Profit/Loss (Sell)",
  2199. "qty": "Net Position Volume",
  2200. "buyorsell": "Net Position Direction",
  2201. "floatPL": "Position Profit/Loss (Total)",
  2202. "tips1": "Please Enter Product ID",
  2203. "tips2": "Account or Name Fuzzy Matching",
  2204. "tips3": "Please Enter Organization ID",
  2205. "export": {
  2206. "tips": "Confirm Export Table Data?"
  2207. }
  2208. },
  2209. "trade": {
  2210. "marketid": "Market",
  2211. "isHis": "Query Type",
  2212. "date": "Date",
  2213. "buyOrSell": "Direction",
  2214. "buildType": "Type",
  2215. "tradeTypes": "Transaction Category",
  2216. "tradeTypes1": "Trading Transaction",
  2217. "tradeTypes2": "Settlement Transaction",
  2218. "tradeTypes3": "Risk Control Forced Liquidation",
  2219. "tradeTypes4": "Agreement Transaction",
  2220. "tradeTypes5": "Position Transfer",
  2221. "tradeTypes6": "System Forced Liquidation",
  2222. "tradeTypes7": "Other Transaction",
  2223. "feeSearchType": "Service Fee",
  2224. "feeSearchType1": "Equal to 0",
  2225. "feeSearchType2": "Not Equal to 0",
  2226. "tradeId": "Transaction Number",
  2227. "goodsId": "Product",
  2228. "accountId": "Account",
  2229. "areaUserName": "Organization",
  2230. "tradeid": "Transaction Number",
  2231. "loginid": "Login Account",
  2232. "accountid": "Fund Account",
  2233. "currentname": "Account",
  2234. "membername": "Member",
  2235. "goodsCodeName": "Product Code/Name",
  2236. "buyorsell": "Direction",
  2237. "buildtype": "Type",
  2238. "tradetype": "Transaction Category",
  2239. "tradeprice": "Transaction Price",
  2240. "tradeqty": "Transaction Quantity",
  2241. "tradeamount": "Transaction Amount",
  2242. "chargevalue": "Service Fee",
  2243. "closepl": "Transfer Profit/Loss",
  2244. "tradetime": "Transaction Time",
  2245. "tips1": "Please Enter Product ID",
  2246. "tips2": "Please Enter Account ID",
  2247. "tips3": "Please Enter Code or Name",
  2248. "details": {
  2249. "title": "Details",
  2250. "subtitle1": "Transaction Information",
  2251. "subtitle2": "Fee-Related Configuration and Collection Value",
  2252. "subtitle3": "Close Position Details",
  2253. "tradeid": "Transaction Number:",
  2254. "tradedate": "Transaction Date:",
  2255. "accountid": "Account:",
  2256. "orderid": "Order Number:",
  2257. "parentusername": "Organization:",
  2258. "membername": "Member:",
  2259. "marketname": "Market:",
  2260. "goodsname": "Product:",
  2261. "buildtype": "Transaction Type:",
  2262. "buyorsell": "Direction:",
  2263. "tradeprice": "Transaction Price:",
  2264. "optiontype": "Type:",
  2265. "isconfirmexercise": "Confirmed Exercise:",
  2266. "tradeprice1": "Transaction Price:",
  2267. "premium": "Order Deposit:",
  2268. "tradeqty": "Transaction Quantity:",
  2269. "tradeamount": "Transaction Amount:",
  2270. "closepl": "Close Position Profit/Loss:",
  2271. "actuallypl": "Actual Profit/Loss:",
  2272. "tradetype": "Transaction Category:",
  2273. "tradetime": "Transaction Time:",
  2274. "matchaccountname": "Counterparty Account:",
  2275. "refgoodsid": "Reference Product:",
  2276. "swapdays": "Swap Days:",
  2277. "opencharge": "Opening Fee:",
  2278. "openexchagechargevalue": "Open Position Exchange Fee Setting Value:",
  2279. "openmemberchargevalue": "Open Position Member Fee Setting Value:",
  2280. "closeqty": "Close Position Quantity:",
  2281. "openqty": "Open Position Quantity:",
  2282. "closecharge": "Close Position Fee:",
  2283. "openfeealgorithm": "Opening Fee Collection Method:",
  2284. "closefeealgorithm": "Close Position Fee Collection Method:",
  2285. "closeexchagechargevalue": "Close Position Member Fee Setting Value:",
  2286. "closememberchargevalue": "Close Position Member Fee Setting Value:",
  2287. "opentradeid": "Associated Opening Transaction Number",
  2288. "buyorsell1": "Direction",
  2289. "openprice": "Opening Price",
  2290. "holderprice": "Position Price",
  2291. "closeprice": "Close Position Price",
  2292. "closetime": "Close Position Time"
  2293. },
  2294. "export": {
  2295. "tips": "Confirm Export Table Data?"
  2296. }
  2297. },
  2298. "tradesumm": {
  2299. "tradeDate": "Trading day",
  2300. "loginid": "Login account",
  2301. "currentname": "User name",
  2302. "parentusername": "Institution to which it belongs",
  2303. "goodscode": "Commodity code",
  2304. "goodsname": "Commodity name",
  2305. "buyorselldisplay": "Direction",
  2306. "tradeqty": "Transaction quantity",
  2307. "tradepriceavg": "Transaction price",
  2308. "tradeamount": "Transaction amount",
  2309. "totalcharge": "Handling fee",
  2310. "cycletime": "Date",
  2311. "goodsid": "Commodity",
  2312. "tips1": "Please enter the commodity ID",
  2313. "tradetypes": "Transaction category",
  2314. "tradetypes1": "Transaction transaction",
  2315. "tradetypes2": "Delivery transaction",
  2316. "tradetypes3": "Risk control forced liquidation",
  2317. "tradetypes4": "Agreement transaction",
  2318. "tradetypes5": "Position transfer",
  2319. "tradetypes6": "System forced liquidation",
  2320. "tradetypes7": "Other transactions"
  2321. }
  2322. },
  2323. "order": {
  2324. "close": {
  2325. "date": "Date",
  2326. "startdate": "Start Date",
  2327. "enddate": "End Date",
  2328. "isHis": "Query Type",
  2329. "goodsid": "Product",
  2330. "buyorsell": "Direction",
  2331. "tradeid": "Order Number",
  2332. "areauserid": "Organization",
  2333. "tradetype": "Termination Type",
  2334. "account": "Customer",
  2335. "opentradeid": "Order Number",
  2336. "loginid": "Login Account",
  2337. "currentname": "User",
  2338. "goodsfullname": "Product/Code",
  2339. "buyorselldisplay": "Order Direction",
  2340. "opennum": "Order Quantity",
  2341. "openprice": "Order Price",
  2342. "closenum": "Termination Quantity",
  2343. "closeprice": "Termination Price",
  2344. "closepl": "Termination Profit/Loss",
  2345. "repayeddeposit": "Released Occupied Funds",
  2346. "tradetypedisplay": "Termination Type",
  2347. "tradetime": "Order Time",
  2348. "closetime": "Termination Time",
  2349. "closeid": "Termination Number"
  2350. },
  2351. "delivery": {
  2352. "deliveryorderid": "Settlement Number",
  2353. "username": "Applicant",
  2354. "goodsdisplay": "Settlement Product",
  2355. "buyorselldisplay": "Direction",
  2356. "deliveryqty": "Applied Settlement Quantity",
  2357. "sucdeliveryqty": "Actual Settlement Quantity",
  2358. "deliveryprice": "Settlement Price",
  2359. "deliveryamount": "Settlement Payment",
  2360. "matchname": "Counterparty",
  2361. "reqtime": "Application Time",
  2362. "orderstatusdisplay": "Settlement Status",
  2363. "deliveryorderstatus": "Document Status",
  2364. "deliverygoodsname": "Settlement Product",
  2365. "accountname": "Account",
  2366. "startdate": "Application Date",
  2367. "buyorsell": "Direction",
  2368. "cancel": {
  2369. "title": "Details",
  2370. "confirm": "Settlement Failed",
  2371. "deliveryorderid": "Settlement Number:",
  2372. "username": "Applicant:",
  2373. "goodsdisplay": "Settlement Product:",
  2374. "buyorsell": "Direction:",
  2375. "deliveryqty": "Settlement Quantity:",
  2376. "deliveryprice": "Settlement Price:",
  2377. "deliveryamount": "Settlement Payment:",
  2378. "matchname": "Counterparty:",
  2379. "deliveryinfo": "Settlement Information:",
  2380. "reqtime": "Application Time:",
  2381. "orderstatusdisplay": "Settlement Status:",
  2382. "auditremark": "Remarks:",
  2383. "tips1": "Please Enter Remarks"
  2384. },
  2385. "confirm": {
  2386. "title": "Details",
  2387. "confirm": "Confirm Settlement",
  2388. "deliveryorderid": "Settlement Number:",
  2389. "username": "Applicant:",
  2390. "goodsdisplay": "Settlement Product:",
  2391. "buyorsell": "Direction:",
  2392. "deliveryqty": "Settlement Quantity:",
  2393. "deliveryprice": "Settlement Price:",
  2394. "deliveryamount": "Settlement Payment:",
  2395. "matchname": "Counterparty:",
  2396. "deliveryinfo": "Settlement Information:",
  2397. "reqtime": "Application Time:",
  2398. "orderstatusdisplay": "Settlement Status:"
  2399. },
  2400. "details": {
  2401. "title": "Details",
  2402. "deliveryorderid": "Settlement Number:",
  2403. "username": "Applicant:",
  2404. "goodsdisplay": "Settlement Product:",
  2405. "buyorselldisplay": "Direction:",
  2406. "deliveryqty": "Applied Settlement Quantity:",
  2407. "sucdeliveryqty": "Actual Settlement Quantity:",
  2408. "cancledeliveryqty": "Cancelled Settlement Quantity:",
  2409. "deliveryprice": "Settlement Price:",
  2410. "deliveryamount": "Settlement Payment:",
  2411. "matchname": "Counterparty:",
  2412. "deliveryinfo": "Settlement Information:",
  2413. "reqtime": "Application Time:",
  2414. "orderstatusdisplay": "Settlement Status:",
  2415. "remark": "Remarks:",
  2416. "deliverycharge": "Settlement Fee:",
  2417. "closetime": "Completion Time:"
  2418. },
  2419. "pay": {
  2420. "title": "Prompt",
  2421. "tips1": "Confirm that the settlement service provider will pay the seller?"
  2422. }
  2423. },
  2424. "list": {
  2425. "tradeid": "Order Number",
  2426. "accountname": "Customer",
  2427. "membername": "Organization",
  2428. "goodscode": "Product/Code",
  2429. "buyorsell": "Direction",
  2430. "holderprice": "Order Price",
  2431. "opennum": "Original Quantity",
  2432. "holdernum": "Order Quantity",
  2433. "freezenum": "Frozen Quantity",
  2434. "depositratedisplay": "Risk Rate",
  2435. "holderamount": "Order Amount",
  2436. "payeddeposit": "Occupied Funds",
  2437. "tradetimestr": "Order Time",
  2438. "goodsid": "Product",
  2439. "parantareaid": "Organization",
  2440. "validholderqty": "Valid Position",
  2441. "tips1": "Please Enter Product ID",
  2442. "tips2": "Please Enter Organization ID"
  2443. },
  2444. "monitor": {
  2445. "tips1": "% (Default>50%; Next Refresh:",
  2446. "start": "Start Monitoring",
  2447. "stop": "Stop Monitoring",
  2448. "buyBackCount": "Total Buy Quantity",
  2449. "sellCount": "Total Sell Quantity:",
  2450. "netcurpositionqty": "Net Total Quantity:",
  2451. "avgholderprice": "Average Order Price:",
  2452. "totalfloatpl": "Total Floating Balance:",
  2453. "userfullname": "Customer",
  2454. "goodsfullname": "Product/Code",
  2455. "buyorselldisplay": "Direction",
  2456. "tradetimestr": "Order Time",
  2457. "holderprice": "Order Price",
  2458. "lastprice": "Current Price",
  2459. "depositratedisplay": "Risk Rate",
  2460. "floatpl": "Floating Profit/Loss",
  2461. "holdernum": "Order Quantity",
  2462. "freezenum": "Frozen Quantity",
  2463. "holderamount": "Order Amount",
  2464. "payeddeposit": "Occupied Funds",
  2465. "tradeid": "Order Number",
  2466. "risk": "Monitor Current Risk Rate",
  2467. "goodsfullname1": "Product",
  2468. "buyorsell": "Direction",
  2469. "parentusername": "Organization"
  2470. },
  2471. "report": {
  2472. "startDate": "Start Date",
  2473. "enddate": "End Date",
  2474. "reckondate": "Date",
  2475. "tradeid": "Order Number",
  2476. "userfullname": "Customer",
  2477. "areafullname": "Member",
  2478. "goodsfullname": "Product/Code",
  2479. "buyorselldisplay": "Direction",
  2480. "holderprice": "Order Price",
  2481. "opennum": "Original Quantity",
  2482. "tradeamount": "Original Amount",
  2483. "holdernum": "Order Quantity",
  2484. "holderamount": "Order Amount",
  2485. "payeddeposit": "Occupied Funds",
  2486. "freezenum": "Frozen Quantity",
  2487. "deliverynum": "Settlement Quantity",
  2488. "closepl": "Termination Profit/Loss",
  2489. "floatpl": "Floating Profit/Loss",
  2490. "depositratedisplay": "Risk Rate",
  2491. "operatorcode": "Operator",
  2492. "date": "Date",
  2493. "goodsid": "Product",
  2494. "currentUserId": "Trader",
  2495. "areauserid": "Member"
  2496. },
  2497. "terminate": {
  2498. "date": "Date",
  2499. "startDate": "Start Date",
  2500. "endDate": "End Date",
  2501. "opentradeid": "Order Number",
  2502. "userfullname": "Customer",
  2503. "memberfullname": "Member",
  2504. "goodsfullname": "Product/Code",
  2505. "holderbuyorsell": "Order Direction",
  2506. "openprice": "Order Price",
  2507. "opennum": "Order Quantity",
  2508. "opentime": "Order Time",
  2509. "closeprice": "Termination Price",
  2510. "closenum": "Termination Quantity",
  2511. "closepl": "Termination Profit/Loss",
  2512. "depositrate": "Risk Rate",
  2513. "closetime": "Termination Time",
  2514. "ishis": "Query Type",
  2515. "goodsid": "Product",
  2516. "accountname": "User"
  2517. }
  2518. },
  2519. "other": {
  2520. "bank_inout": {
  2521. "date": "Trading Day",
  2522. "accountcode": "Fund Account",
  2523. "accountname": "User/Organization",
  2524. "usertype": "Account Type",
  2525. "parentaccountname": "Parent Organization",
  2526. "cusbankname": "Custodian Bank",
  2527. "tradedate": "Trading Day",
  2528. "amount": "Amount",
  2529. "charge": "Deposit/Withdrawal Service Fee",
  2530. "currency": "Currency",
  2531. "executetype": "Type",
  2532. "applystatus": "Status",
  2533. "updatetime": "Update Time",
  2534. "loginid": "Login Account",
  2535. "accountname1": "Trader",
  2536. "tips1": "Enter Trader ID",
  2537. "details": {
  2538. "title": "Details",
  2539. "subtitle1": "Deposit/Withdrawal Request Information",
  2540. "flag1": "Review Rejected",
  2541. "flag2": "Review Approved",
  2542. "flag3": "Secondary Review Rejected",
  2543. "flag4": "Secondary Review Approved",
  2544. "accountcode": "Fund Account:",
  2545. "balance": "Previous Day Total Assets:",
  2546. "usedmargin": "Current Trading Margin:",
  2547. "cusbankname": "Custodian Bank:",
  2548. "bankaccountno": "Bank Card Number:",
  2549. "bankid": "Bank Branch:",
  2550. "branchbankname": "Bank Branch Name:",
  2551. "bankaccountname": "Bank Card Account Name:",
  2552. "tradedate": "Trading Day:",
  2553. "executetype": "Application Type:",
  2554. "amount": "Amount:",
  2555. "charge": "Deposit/Withdrawal Service Fee:",
  2556. "currency": "Currency:",
  2557. "extoperateid": "Account Service Serial Number:",
  2558. "exchticket": "Bank Service Serial Number:",
  2559. "bankticket": "Bank Transaction Number:",
  2560. "extoperateid1": "Trading Service Serial Number:",
  2561. "curdebt": "Debt:",
  2562. "updatetime": "Update Time:",
  2563. "applyremark": "Remarks:",
  2564. "applystatus": "Status:",
  2565. "remark2": "Rejection/Failure Reason:",
  2566. "username": "Reviewer:",
  2567. "audittime": "Review Time:",
  2568. "checkerrorflag": "Reconciliation Error Flag:",
  2569. "sex": "Gender:",
  2570. "legal_name": "Legal Representative Name:",
  2571. "legal_cert_type": "Legal Representative ID Type:",
  2572. "legal_cert_code": "Legal Representative ID Number:",
  2573. "agent_name": "Agent Name:",
  2574. "agent_cert_type": "Agent ID Type:",
  2575. "agent_cert_code": "Agent ID Number:",
  2576. "member_code": "Member Code:",
  2577. "legal_contact": "Legal Representative Contact Number:",
  2578. "agent_contact": "Agent Contact Number:",
  2579. "bank_branch_name": "Bank Card Branch Name:",
  2580. "attachment": "Attachment:",
  2581. "certificate_photo_url": "View:"
  2582. }
  2583. },
  2584. "bank_statement": {
  2585. "logType": "Query Type",
  2586. "operatetype": "Business Type",
  2587. "date": "Date",
  2588. "accountName": "Account",
  2589. "accountId": "Fund Account",
  2590. "memberName": "Parent Organization",
  2591. "amount": "Amount",
  2592. "businessCodeName": "Business Type",
  2593. "operateType": "Operation Time",
  2594. "marketName": "Market",
  2595. "relationOrderId": "Related Order Number",
  2596. "tips1": "Enter Fund Account ID",
  2597. "export": {
  2598. "tips": "Confirm export table data?"
  2599. }
  2600. },
  2601. "config": {},
  2602. "esign": {
  2603. "userfullname": "User",
  2604. "loginid": "Login Account",
  2605. "esigntype": "Agreement Type",
  2606. "templatetype": "Template Type",
  2607. "templatename": "Agreement Name",
  2608. "recordstatus": "Signing Status",
  2609. "updatetimestr": "Update Time",
  2610. "userid": "User ID",
  2611. "tips1": "Please enter user ID",
  2612. "tips2": "Please select signing status"
  2613. },
  2614. "institution_bank": {
  2615. "accountid": "Fund Account Number",
  2616. "accountcodename": "Organization Name",
  2617. "balance": "Opening Balance",
  2618. "currentbalance": "Closing Balance",
  2619. "inamount": "Today's Deposit",
  2620. "outamount": "Today's Withdrawal",
  2621. "closepl": "Transfer Profit/Loss",
  2622. "floatpl": "Floating Profit/Loss",
  2623. "freezecharge": "Frozen Service Fee",
  2624. "paycharge": "Service Fee",
  2625. "otherpay": "Other Expenses",
  2626. "otherincome": "Other Income",
  2627. "freezemargin": "Frozen Margin",
  2628. "usedmargin": "Used Margin",
  2629. "otherfreezemargin": "Other Frozen Assets",
  2630. "outamountfreeze": "Withdrawal Freeze",
  2631. "avaiablemoney": "Available Funds",
  2632. "avaiableoutmoney": "Withdrawable Funds",
  2633. "floatnetvalue": "Current Net Value",
  2634. "cur_risk_rate": "Risk Rate",
  2635. "memberid": "Member",
  2636. "accountstatus": "Organization Status",
  2637. "sortfield": "Sort",
  2638. "sorttype1": "Descending",
  2639. "sorttype2": "Ascending",
  2640. "nolimit": "No Limit"
  2641. },
  2642. "investor_bank": {
  2643. "accountid": "Fund Account Number",
  2644. "accountcodename": "Organization Name",
  2645. "balance": "Opening Balance",
  2646. "currentbalance": "Closing Balance",
  2647. "inamount": "Today's Deposit",
  2648. "outamount": "Today's Withdrawal",
  2649. "closepl": "Transfer Profit/Loss",
  2650. "floatpl": "Floating Profit/Loss",
  2651. "freezecharge": "Frozen Service Fee",
  2652. "paycharge": "Service Fee",
  2653. "otherpay": "Other Expenses",
  2654. "otherincome": "Other Income",
  2655. "freezemargin": "Frozen Margin",
  2656. "usedmargin": "Used Margin",
  2657. "otherfreezemargin": "Other Frozen Assets",
  2658. "outamountfreeze": "Withdrawal Freeze",
  2659. "avaiablemoney": "Available Funds",
  2660. "avaiableoutmoney": "Withdrawable Funds",
  2661. "floatnetvalue": "Current Net Value",
  2662. "cur_risk_rate": "Risk Rate",
  2663. "accountcode": "Trader",
  2664. "memberid": "Member",
  2665. "sortfield": "Sort",
  2666. "sorttype1": "Descending",
  2667. "sorttype2": "Ascending",
  2668. "loginid": "Login Account",
  2669. "parentarea": "Parent Organization",
  2670. "nolimit": "No Limit"
  2671. }
  2672. },
  2673. "warehouse_receipt": {
  2674. "wrsumm": {
  2675. "isHis": "Query Type",
  2676. "date": "Date",
  2677. "wrsids": "Warehouse Standards",
  2678. "wareids": "Warehouse",
  2679. "wrstandardname": "Spot Goods",
  2680. "warehousename": "Warehouse",
  2681. "totalqty": "Total Quantity",
  2682. "avaliableqty": "Normal",
  2683. "freezeqty": "Frozen",
  2684. "increaseqty": "Today's Increase",
  2685. "decreaseqty": "Today's Decrease",
  2686. "enumdicname": "Unit",
  2687. "details": {
  2688. "wrstandardname": "Spot Goods:",
  2689. "warehousename": "Warehouse:",
  2690. "enumdicname": "Unit:",
  2691. "selectedUsers": "Please Select Holder",
  2692. "accountname": "Holder",
  2693. "accountid": "Fund Account Number",
  2694. "ladingbillid": "Warehouse Receipt Number",
  2695. "qty": "Quantity",
  2696. "freezerqty": "Frozen",
  2697. "wrfactortypename": "Spot Goods Item Value"
  2698. }
  2699. }
  2700. },
  2701. "warehouse_receipt_order": {
  2702. "order": {
  2703. "marketid": "Market",
  2704. "accountid": "Fund Account",
  2705. "wrtradeorderid": "Order Number",
  2706. "tradeid": "Order Number",
  2707. "userid": "Member or Trader",
  2708. "marketname": "Market",
  2709. "wrtradetype": "Order Type",
  2710. "wrtradetype1": "Type",
  2711. "buyorsell": "Direction",
  2712. "wrstandard": "Code/Name",
  2713. "wrfactortypename": "Properties",
  2714. "orderqtyname": "Order Quantity",
  2715. "tradeqtyname": "Transaction Quantity",
  2716. "wrtradeorderstatus": "Status",
  2717. "validtime": "Valid Time",
  2718. "ordertime": "Order Time",
  2719. "tradedate": "Trading Day",
  2720. "tips1": "Please Select Market",
  2721. "details": {
  2722. "title": "Details",
  2723. "subtitle1": "Price Information",
  2724. "tradedate": "Trading Day:",
  2725. "wrtradeorderid": "Order Number:",
  2726. "userName": "Username:",
  2727. "accountid": "Fund Account Number:",
  2728. "wrtradetype": "Document Type:",
  2729. "buyorsell": "Direction:",
  2730. "isspecified": "Specified Counterparty:",
  2731. "wrstandardname": "Spot Goods:",
  2732. "wrFactorTypeName": "Warehouse Receipt:",
  2733. "marketName": "Market:",
  2734. "orderqty": "Order Quantity:",
  2735. "tradeqty": "Transaction Quantity:",
  2736. "wrtradeorderstatus": "Status:",
  2737. "ordertime": "Order Time:",
  2738. "attachment1": "Attachment 1:",
  2739. "attachment2": "Attachment 2:",
  2740. "remark": "Remarks:",
  2741. "goodsUnitName": "Price Settings:",
  2742. "canbargain": "Negotiable:",
  2743. "wrpricetype": "Pricing Method:",
  2744. "fixedprice": "Fixed Price:",
  2745. "pricedisplaymode": "Display Mode:",
  2746. "pricemove": "Premium/Discount:",
  2747. "pricefactor": "Price Coefficient:",
  2748. "goodscode": "Product",
  2749. "pricefactor1": "Product Price Coefficient",
  2750. "weightratio": "Product Weight Coefficient",
  2751. "pricemove1": "Premium/Discount"
  2752. }
  2753. },
  2754. "trade": {
  2755. "marketid": "Market",
  2756. "accountid": "Fund Account",
  2757. "wrtradeorderid": "Transaction Number",
  2758. "userid": "Member or Trader",
  2759. "marketname": "Market",
  2760. "wrtradetype": "Order Type",
  2761. "wrtradetype1": "Type",
  2762. "buyorsell": "Direction",
  2763. "wrstandard": "Code/Name",
  2764. "wrfactortypename": "Properties",
  2765. "orderqtyname": "Quantity",
  2766. "realtradeqtyname": "Actual Quantity",
  2767. "tradeprice": "Transaction Price",
  2768. "realtradeamount": "Actual Amount",
  2769. "performanceplanid": "Performance Number",
  2770. "handlestatus": "Performance Status",
  2771. "tradeid": "Transaction Number",
  2772. "tradetime": "Transaction Time",
  2773. "tradedate": "Trading Day",
  2774. "tips1": "Please Select Market"
  2775. }
  2776. }
  2777. },
  2778. "report": {
  2779. "account": {
  2780. "cycletype": "Report Type",
  2781. "cycletime": "Date",
  2782. "quarter": "Quarter",
  2783. "accountid": "Fund Account",
  2784. "relatedname": "Account:",
  2785. "accountid1": "Fund Account:",
  2786. "invloginids": "Login Account:",
  2787. "tips1": "Please Enter Fund Account",
  2788. "bank": {
  2789. "balance": "Opening Balance",
  2790. "currentbalance": "Closing Balance",
  2791. "inamount": "Period Deposit",
  2792. "outamount": "Period Withdrawal",
  2793. "otherincome": "Other Income",
  2794. "otherpay": "Other Expenses",
  2795. "closepl": "Close Position Profit/Loss",
  2796. "reckonpl": "Settlement Profit/Loss",
  2797. "usedmargin": "Used Margin",
  2798. "freezemargin": "Frozen Margin",
  2799. "otherfreezemargin": "Other Frozen Assets",
  2800. "paycharge": "Total Service Fee Expense",
  2801. "tradecharge": "Trading Fee",
  2802. "deliverycharge": "Settlement Fee"
  2803. },
  2804. "performance": {
  2805. "amount": "Total Performance Amount",
  2806. "buypaidamount": "Frozen/Deducted Amount",
  2807. "sellreceivedamount": "Received Amount",
  2808. "buytodayamount": "Deduction/Freeze Amount",
  2809. "selltodayamount": "Collection Amount"
  2810. },
  2811. "position": {
  2812. "goodscode": "Code",
  2813. "goodsname": "Product",
  2814. "buypositionqty": "Initial Buy Position Quantity",
  2815. "buyholderamount": "Initial Total Buy Position Amount",
  2816. "buycurpositionqty": "Current Total Buy Position Quantity",
  2817. "buycurholderamount": "Current Total Buy Position Amount",
  2818. "sellpositionqty": "Initial Sell Position Quantity",
  2819. "sellholderamount": "Initial Total Sell Position Amount",
  2820. "sellcurpositionqty": "Current Sell Position Quantity",
  2821. "sellcurholderamount": "Current Total Sell Position Amount"
  2822. },
  2823. "trade": {
  2824. "goodscode": "Code",
  2825. "goodsname": "Product",
  2826. "marketname": "Market",
  2827. "tradeqty": "Trading Volume",
  2828. "openqty": "Open Position Quantity",
  2829. "closeqty": "Close Position Quantity",
  2830. "tradeamount": "Transaction Amount",
  2831. "closepl": "Close Position Profit/Loss",
  2832. "opencharge": "Open Position Fee",
  2833. "closecharge": "Close Position Fee"
  2834. },
  2835. "wrorder": {
  2836. "deliverygoodsname": "Spot Goods Type",
  2837. "wrstandardname": "Spot Goods",
  2838. "startqty": "Initial Quantity",
  2839. "totalqty": "Final Quantity",
  2840. "usedqty": "Available Quantity",
  2841. "freezeqty": "Frozen Quantity",
  2842. "increaseqty": "Purchase Quantity",
  2843. "decreaseqty": "Sales Quantity"
  2844. }
  2845. },
  2846. "bank": {
  2847. "tradedate": "Trading Day",
  2848. "cusbankname": "Settlement Bank",
  2849. "balance": "Previous Day Balance",
  2850. "totalinamout": "Total Deposit Amount",
  2851. "inamoutcout": "Total Deposit Count",
  2852. "totalincharge": "Deposit Service Fee",
  2853. "totaloutamount": "Total Withdrawal Amount",
  2854. "outamountcout": "Total Withdrawal Count",
  2855. "totaloutcharge": "Withdrawal Service Fee",
  2856. "currentbalance": "Today's Balance",
  2857. "totalpl": "Profit/Loss",
  2858. "totalcharge": "Total Platform Service Fee",
  2859. "date": "Date",
  2860. "startdate": "Start Date",
  2861. "enddate": "End Date",
  2862. "tips1": "Name/Code Fuzzy Match"
  2863. },
  2864. "broker": {
  2865. "cycletype": "Report Type",
  2866. "reckondate": "Date",
  2867. "quarter": "Quarter",
  2868. "accountid": "Parent Organization",
  2869. "isson": "Include Sub-organizations",
  2870. "cycleTime": "Date",
  2871. "accountName": "Broker Member",
  2872. "investorTotalNum": "Number of Dealer Accounts",
  2873. "investorTrialNum": "Accounts Pending Initial Review",
  2874. "investorRetrialNum": "Accounts Pending Re-review",
  2875. "investorAmount": "Ending Balance",
  2876. "investorusedmargin": "Used Margin",
  2877. "investorClosePl": "Transfer Profit/Loss",
  2878. "investorReckonPl": "Settlement Profit/Loss",
  2879. "investorBuyDeliveryAmount": "Settlement Amount",
  2880. "investorBuyTradeQty": "Buy Transaction Quantity",
  2881. "investorSellTradeQty": "Sell Transaction Quantity",
  2882. "investorBuyHoldQty": "Buy Position Quantity",
  2883. "investorSellHoldQty": "Sell Position Quantity"
  2884. },
  2885. "fee": {
  2886. "tradedate": "Trading Date",
  2887. "areaname": "Name",
  2888. "areatype": "Role",
  2889. "bankname": "Settlement Bank",
  2890. "totalcount": "Total Transactions",
  2891. "totalfee": "Total Fee",
  2892. "cusbankname": "Settlement Bank",
  2893. "date": "Date",
  2894. "startdate": "Start Date",
  2895. "enddate": "End Date",
  2896. "tips1": "Name/number fuzzy matching"
  2897. },
  2898. "goods": {
  2899. "marketname": "Market",
  2900. "goodsname": "Product/Code",
  2901. "totalorderqty": "Total Order Quantity",
  2902. "tradeqty": "Total Trading Volume",
  2903. "totalholdqty": "Total Position Quantity",
  2904. "tradelot": "Total Transaction Count",
  2905. "tradeamount": "Total Transaction Amount",
  2906. "totalcharge": "Total Fee",
  2907. "totalinterest": "Total Rollover Fee",
  2908. "orderaccountcount": "Number of Order Accounts",
  2909. "tradeaccountcount": "Number of Trading Accounts",
  2910. "holdaccountcount": "Number of Position Accounts",
  2911. "markettradeqty": "Market Trading Proportion",
  2912. "cycletype": "Report Type",
  2913. "reckondate": "Date",
  2914. "quarter": "Quarter",
  2915. "sum": "Summary"
  2916. },
  2917. "institution": {
  2918. "reckondate": "Date",
  2919. "accountid": "Fund Account",
  2920. "accountname": "Account",
  2921. "balance": "Opening Balance",
  2922. "currentbalance": "Ending Balance",
  2923. "inamount": "Deposit Amount",
  2924. "outamount": "Withdrawal Amount",
  2925. "closepl": "Transfer Profit/Loss",
  2926. "floatpl": "Floating Profit/Loss",
  2927. "reckonpl": "Settlement Profit/Loss",
  2928. "paycharge": "Fee",
  2929. "interestCharge": "Rollover Fee",
  2930. "otherincome": "Profit Sharing Income",
  2931. "usedmargin": "Used Funds",
  2932. "freezemargin": "Frozen Funds",
  2933. "outamountfreeze": "Withdrawal Freeze",
  2934. "avaiablemoney": "Available Funds",
  2935. "avaiableoutmoney": "Withdrawable Funds",
  2936. "floatnetvalues": "Current Net Value",
  2937. "cycletype": "Report Type",
  2938. "quarter": "Starting Quarter",
  2939. "quarterend": "Ending Quarter",
  2940. "accountstatus": "Organization Status",
  2941. "roles": "Organization Role",
  2942. "tips1": "Query >= count value"
  2943. },
  2944. "investor": {
  2945. "cycletype": "Report Type",
  2946. "reckondate": "Date",
  2947. "quarter": "Quarter",
  2948. "accountid": "Dealer",
  2949. "memberid": "Parent Member",
  2950. "subareaid": "Parent Sub-organization",
  2951. "brokerid": "Parent Broker",
  2952. "inamount": "Deposit Amount",
  2953. "outamount": "Withdrawal Amount",
  2954. "loginids": "Login Account",
  2955. "accountid1": "Fund Account",
  2956. "accountname": "Account Name",
  2957. "memberaccountname": "Parent Member",
  2958. "balance": "Opening Balance",
  2959. "currentbalance": "Ending Balance",
  2960. "closepl": "Transfer Profit/Loss",
  2961. "floatpl": "Floating Profit/Loss",
  2962. "reckonpl": "Settlement Profit/Loss",
  2963. "paycharge": "Fee",
  2964. "interestCharge": "Rollover Fee",
  2965. "usedmargin": "Used Funds",
  2966. "freezemargin": "Frozen Funds",
  2967. "otherfreezemargin": "Other Frozen Funds",
  2968. "outamountfreeze": "Withdrawal Freeze",
  2969. "avaiablemoney": "Available Funds",
  2970. "avaiableoutmoney": "Withdrawable Funds",
  2971. "riskrate": "Risk Rate",
  2972. "tips1": "Query for data greater than or equal to this value",
  2973. "tips2": "Please enter dealer ID",
  2974. "tips3": "Please enter member ID",
  2975. "tips4": "Please enter the sub-organization ID",
  2976. "tips5": "Please enter broker ID"
  2977. },
  2978. "profitshare": {
  2979. "cycletype": "Report Type",
  2980. "tradedate": "Date",
  2981. "quarter": "Quarter",
  2982. "isson": "Include Sub-organizations",
  2983. "areatype": "Role",
  2984. "areaaccountid": "Settlement Fund Account",
  2985. "goodsname": "Product/Market",
  2986. "searchtype": "Fee Type",
  2987. "totalcount": "Total Transactions",
  2988. "totalfee": "Total Fee",
  2989. "divideamount": "Profit Sharing Amount"
  2990. },
  2991. "recalculate": {
  2992. "date": "Date",
  2993. "startDate": "Trading Date",
  2994. "startdate": "Start Date",
  2995. "enddate": "End Date",
  2996. "tips1": "Report Recalculation",
  2997. "tips2": "*Select the trading day, and the weekly, monthly, quarterly and annual report data of the current trading day will be recalculated!",
  2998. "tips3": "*Wait 10 to 20 minutes to check!",
  2999. "tips4": "Recalculate"
  3000. },
  3001. "trade": {
  3002. "cycletype": "Report Type",
  3003. "cycletime": "Date",
  3004. "quarter": "Quarter",
  3005. "userid": "Recommended Account",
  3006. "goodsname": "Product Code/Name",
  3007. "marketname": "Market",
  3008. "tradeqty": "Trading Volume",
  3009. "openqty": "Opening Quantity",
  3010. "closeqty": "Transfer Quantity",
  3011. "tradeamount": "Transaction Amount",
  3012. "opencharge": "Opening Fee",
  3013. "closecharge": "Transfer Fee",
  3014. "tips1": "Please Enter Account ID"
  3015. }
  3016. },
  3017. "settlement": {
  3018. "holdtransfer": {},
  3019. "profitsharepay": {
  3020. "date": "Date",
  3021. "tradedate": "Trading Date",
  3022. "totalcount": "Total Transactions",
  3023. "divideamount": "Total Profit Sharing Amount",
  3024. "totalpay": "Total Paid",
  3025. "details": {
  3026. "tradedate": "Trading Date:",
  3027. "shareorgname": "Profit Sharing Organization",
  3028. "areatype": "Profit Sharing Organization Role",
  3029. "totalcount": "Total Transactions",
  3030. "totalfee": "Total Fee",
  3031. "divideamount": "Total Profit Sharing Amount",
  3032. "status": "Status",
  3033. "paystatus": "Payment Status",
  3034. "tips1": "Please select profit sharing payments to confirm",
  3035. "tips2": "Batch confirm?",
  3036. "details": {
  3037. "title": "Details",
  3038. "tradedate": "Trading Date:",
  3039. "areaid": "Profit Sharing Organization:",
  3040. "areatype": "Profit Sharing Organization Role:",
  3041. "totalcount": "Total Transactions:",
  3042. "totalfee": "Total Fee:",
  3043. "divideamount": "Total Profit Sharing Amount:",
  3044. "paystatus": "Status:",
  3045. "payerid": "Payer:",
  3046. "paytime": "Payment Time:",
  3047. "remark": "Description:"
  3048. }
  3049. }
  3050. }
  3051. },
  3052. "system": {
  3053. "client_log": {},
  3054. "exrate": {},
  3055. "ip_blacklist": {},
  3056. "login_failed": {
  3057. "loginaccount": "Login Account",
  3058. "operatetime": "Login Time",
  3059. "lienttype": "Client Type",
  3060. "loginip": "Login IP",
  3061. "description": "Failure Reason",
  3062. "tips1": "Login User:",
  3063. "tips2": "Please enter your account number or user name"
  3064. },
  3065. "menu": {
  3066. "title": "Menu",
  3067. "resourceCode": "Code",
  3068. "url": "Path",
  3069. "icon": "Icon",
  3070. "edit": {
  3071. "title": "Edit",
  3072. "authType": "Permission Type",
  3073. "resourceCode": "Permission Code",
  3074. "resourceTitle": "Permission Title",
  3075. "resourceLevel": "Level",
  3076. "invalidTitle": "[Invalid Title]",
  3077. "parentitle": "Top-level Menu",
  3078. "icon": "Icon",
  3079. "url": "URL",
  3080. "component": "Component Path",
  3081. "remark": "Remark",
  3082. "sort": "Sort",
  3083. "show": "Show",
  3084. "buttontype": "Button Style",
  3085. "default": "Default",
  3086. "primary": "Primary",
  3087. "success": "Success",
  3088. "info": "Info",
  3089. "warning": "Warning",
  3090. "danger": "Danger",
  3091. "exist": "Exists",
  3092. "code": "Code"
  3093. },
  3094. "delete": {
  3095. "tips": "Do you want to delete this menu?"
  3096. }
  3097. },
  3098. "operation_log": {
  3099. "resourcecode": "Operation Module Code",
  3100. "resourcename": "Operation Module Name",
  3101. "logincode": "Login Account",
  3102. "username": "Operator",
  3103. "areaname": "Parent Organization",
  3104. "content": "Operation Content",
  3105. "operatetime": "Operation Time",
  3106. "tips1": "Please enter username for fuzzy search",
  3107. "tips2": "Please enter operation content for fuzzy search",
  3108. "tips3": "Operation Content:",
  3109. "tips4": "Operator:"
  3110. },
  3111. "service_log": {},
  3112. "setting": {},
  3113. "user_blacklist": {}
  3114. },
  3115. "routes": {
  3116. "base": "Basic Data Management",
  3117. "base_sysparams": "System Parameters Management",
  3118. "base_sysparams_modify": "Modify",
  3119. "base_dictionary": "Data dictionary management",
  3120. "base_dictionary_update": "Update cache",
  3121. "base_dictionary_add": "Add",
  3122. "base_dictionary_modify": "Modify",
  3123. "base_dictionary_delete": "Delete",
  3124. "base_region": "Region management",
  3125. "base_region_add": "Add",
  3126. "base_region_modify": "Modify",
  3127. "base_region_delete": "Delete",
  3128. "base_acctopencfg": "Online account opening configuration",
  3129. "base_errorcode": "Error code management",
  3130. "base_errorcode_modify": "Modify",
  3131. "base_banner": "Terminal image management",
  3132. "base_banner_add": "Add",
  3133. "base_banner_details": "Details",
  3134. "base_banner_modify": "Modify",
  3135. "base_marketsection": "Market sector settings",
  3136. "base_marketsection_add": "Add",
  3137. "base_marketsection_details": "Details",
  3138. "base_marketsection_modify": "Modify",
  3139. "base_marketsection_delete": "Delete",
  3140. "system": "System Operation Management",
  3141. "system_setting": "System Settings",
  3142. "system_servicelog": "System Service Operation Log",
  3143. "system_operationlog": "Administrator Operation Log",
  3144. "system_loginfailed": "Login Exception Query",
  3145. "system_clientlog": "Terminal Login Log",
  3146. "system_userblacklist": "Account Blacklist Management",
  3147. "system_ipblacklist": "IP Blacklist Management",
  3148. "system_exrate": "System Exchange Rate Management",
  3149. "marketrun": "Market Operation Management",
  3150. "marketrun_market": "Market Monitoring",
  3151. "marketrun_exception": "Error Management",
  3152. "marketrun_monitor": "Monitoring Management",
  3153. "marketrun_monitor_liquidation": "Liquidation Monitoring",
  3154. "marketrun_monitor_account": "Account Risk Monitoring",
  3155. "marketrun_monitor_marketer": "Market Maker Risk Monitoring",
  3156. "marketrun_monitor_marketer_positionsumm": "Position Summary",
  3157. "marketrun_monitor_positionsumm": "Position Summary Monitoring",
  3158. "marketrun_monitor_user": "Online User Query",
  3159. "marketrun_monitor_user_alloffline": "Force All Users Offline",
  3160. "marketrun_monitor_user_offline": "Offline",
  3161. "market": "Trading market management",
  3162. "market_contract": "Contract market management",
  3163. "market_contract_runtime": "Operation period management",
  3164. "market_contract_services": "Transaction service settings",
  3165. "market_contract_riskrate": "Risk rate type settings",
  3166. "market_contract_runstep": "Delivery period management",
  3167. "market_contract_template": "Delivery performance template",
  3168. "market_contract_calendar": "Holiday management",
  3169. "market_warehouse": "Warehouse receipt market management",
  3170. "market_warehouse_template": "Spot performance template",
  3171. "market_warehouse_runtime": "Operation period management",
  3172. "market_warehouse_services": "Transaction service settings",
  3173. "market_warehouse_calendar": "Holiday management",
  3174. "market_goods": "Commodity management",
  3175. "market_goods_group": "Commodity group settings",
  3176. "market_goods_settings": "Commodity settings",
  3177. "market_goods_addition": "New commodity review",
  3178. "market_goods_modification": "Commodity change review",
  3179. "market_goods_suspension": "Commodity suspension management",
  3180. "market_goods_delisting": "Commodity delisting management",
  3181. "market_goods_liquidation": "Commodity forced liquidation settings",
  3182. "market_quote": "Market quotation settings",
  3183. "market_quote_dst": "Daylight saving time group management",
  3184. "market_quote_source": "Market quotation source group management",
  3185. "market_quote_runstep": "Group period management",
  3186. "market_quote_external": "External platform management",
  3187. "market_maker": "Market making management",
  3188. "market_maker_quoter": "Quotation provider management",
  3189. "market_maker_level": "Second-level counterparty management",
  3190. "market_maker_manual": "Manual quotation",
  3191. "capacity": "Capacity pre-sale management",
  3192. "capacity_forward": "Forward order management",
  3193. "capacity_forward_orderapply": "Order application",
  3194. "capacity_forward_orderinitreview": "Order preliminary review",
  3195. "capacity_forward_orderrereview": "Order final review",
  3196. "capacity_forward_cancelapply": "Cancellation application",
  3197. "capacity_forward_cancelinitreview": "Cancellation preliminary review",
  3198. "capacity_forward_cancelrereview": "Cancellation final review",
  3199. "capacity_forward_list": "Order query",
  3200. "capacity_presale": "Pre-sale management",
  3201. "capacity_presale_apply": "Pre-sale application",
  3202. "capacity_presale_initreview": "Pre-sale preliminary review",
  3203. "capacity_presale_rereview": "Pre-sale final review",
  3204. "capacity_presale_list": "Pre-sale query",
  3205. "capacity_presale_result": "Pre-sale result",
  3206. "capacity_presale_position": "Earnest money position holding",
  3207. "member": "Member Organization Management",
  3208. "member_institution": "Organization Management",
  3209. "member_institution_role": "System Role Management",
  3210. "member_institution_role_details": "Details",
  3211. "member_institution_role_users": "Users",
  3212. "member_institution_open": "Organization Account Application",
  3213. "member_institution_open_add": "Add",
  3214. "member_institution_open_modify": "Modify",
  3215. "member_institution_open_cancel": "Cancel",
  3216. "member_institution_open_audit": "Audit",
  3217. "member_institution_open_delete": "Delete",
  3218. "member_institution_user": "Organization Profile Management",
  3219. "member_institution_user_details": "Details",
  3220. "member_institution_user_modify": "Modify",
  3221. "member_institution_user_close": "Deactivate",
  3222. "member_institution_user_recover": "Recover",
  3223. "member_institution_user_account": "Fund Account",
  3224. "member_institution_user_login": "Login Account",
  3225. "member_institution_user_terminal": "Terminal Account",
  3226. "member_institution_user_pay": "Payment Information",
  3227. "member_institution_operation": "Operations Organization Management",
  3228. "member_institution_operation_add": "Add",
  3229. "member_institution_operation_details": "Details",
  3230. "member_institution_operation_modify": "Modify",
  3231. "member_institution_operation_delete": "Delete",
  3232. "member_institution_marketing": "Marketing Center Management",
  3233. "member_institution_marketing_add": "Add",
  3234. "member_institution_marketing_details": "Details",
  3235. "member_institution_marketing_modify": "Modify",
  3236. "member_institution_marketing_broker": "Broker Member",
  3237. "member_institution_warehouse": "Warehouse Organization Management",
  3238. "member_institution_warehouse_add": "Add",
  3239. "member_institution_warehouse_details": "Details",
  3240. "member_institution_warehouse_modify": "Modify",
  3241. "member_institution_self": "Proprietary Member Management",
  3242. "member_institution_self_add": "Add",
  3243. "member_institution_self_details": "Details",
  3244. "member_institution_self_modify": "Modify",
  3245. "member_institution_self_delete": "Delete",
  3246. "member_institution_broker": "Broker Member Management",
  3247. "member_institution_broker_add": "Add",
  3248. "member_institution_broker_details": "Details",
  3249. "member_institution_broker_modify": "Modify",
  3250. "member_institution_broker_subinstitution": "Sub-organization",
  3251. "member_institution_broker_delete": "Delete",
  3252. "member_institution_marketer": "Market Maker Management",
  3253. "member_institution_marketer_add": "Add",
  3254. "member_institution_marketer_details": "Details",
  3255. "member_institution_marketer_modify": "Modify",
  3256. "member_institution_marketer_delete": "Delete",
  3257. "member_institution_industry": "Industry Member Management",
  3258. "member_institution_industry_add": "Add",
  3259. "member_institution_industry_details": "Details",
  3260. "member_institution_industry_delete": "Delete",
  3261. "member_institution_tradecfg": "Account Personalization Settings",
  3262. "member_institution_tradecfg_add": "Add",
  3263. "member_institution_tradecfg_modify": "Modify",
  3264. "member_institution_tradecfg_delete": "Delete",
  3265. "member_institution_riskcfg": "Risk Control Personalization Settings",
  3266. "member_institution_riskcfg_add": "Add",
  3267. "member_institution_riskcfg_details": "Details",
  3268. "member_institution_riskcfg_modify": "Modify",
  3269. "member_institution_riskcfg_delete": "Delete",
  3270. "member_institution_goodscfg": "Product Limitation Settings",
  3271. "member_institution_goodscfg_modify": "Modify",
  3272. "member_institution_goodscfg_add": "Add",
  3273. "member_institution_goodscfg_delete": "Delete",
  3274. "member_subinstitution": "Sub-organization Management",
  3275. "member_subinstitution_manage": "Sub-organization Management",
  3276. "member_subinstitution_manage_add": "Add",
  3277. "member_subinstitution_manage_details": "Details",
  3278. "member_subinstitution_manage_modify": "Modify",
  3279. "member_subinstitution_manage_cancel": "Recall",
  3280. "member_subinstitution_manage_close": "Deactivate",
  3281. "member_subinstitution_manage_recover": "Recover",
  3282. "member_subinstitution_user": "Member Sub-organization Management",
  3283. "member_subinstitution_user_add": "Add",
  3284. "member_subinstitution_user_details": "Details",
  3285. "member_subinstitution_user_modify": "Modify",
  3286. "member_subinstitution_user_cancel": "Recall",
  3287. "member_subinstitution_user_account": "Fund Account",
  3288. "member_subinstitution_user_login": "Login Account",
  3289. "member_subinstitution_user_close": "Deactivate",
  3290. "member_subinstitution_user_recover": "Recover",
  3291. "member_subinstitution_addition": "New Sub-organization Audit",
  3292. "member_subinstitution_addition_audit": "Audit",
  3293. "member_subinstitution_modification": "Sub-organization Change Audit",
  3294. "member_subinstitution_modification_audit": "Audit",
  3295. "member_subinstitution_transfer": "Sub-organization Transfer",
  3296. "member_subinstitution_transfer_add": "Add",
  3297. "member_subinstitution_transfer_run": "Execute Transfer",
  3298. "member_subinstitution_transfer_cancel": "Cancel",
  3299. "warehouse": "Warehousing warehouse receipt management",
  3300. "warehouse_category": "Warehouse receipt variety settings",
  3301. "warehouse_category_delivery": "Delivery warehouse management",
  3302. "warehouse_category_spot": "Spot variety settings",
  3303. "warehouse_in": "Warehouse receipt warehousing management",
  3304. "warehouse_in_list": "Warehousing registration management",
  3305. "warehouse_in_rereview": "Warehousing registration final review",
  3306. "warehouse_in_express": "Warehousing logistics management",
  3307. "warehouse_out": "Warehouse receipt out-of-warehouse management",
  3308. "warehouse_out_list": "Out-of-warehouse cancellation management",
  3309. "warehouse_out_rereview": "Out-of-warehouse cancellation final review",
  3310. "warehouse_out_express": "Out-of-warehouse logistics management",
  3311. "admin": "Administrator Management",
  3312. "admin_role": "Administrator Role Management",
  3313. "admin_role_add": "Add",
  3314. "admin_role_modify": "Modify",
  3315. "admin_role_delete": "Delete",
  3316. "admin_user": "Administrator Management",
  3317. "admin_user_modify": "Modify",
  3318. "admin_user_reset": "Reset Password",
  3319. "admin_user_disable": "Disable",
  3320. "admin_user_enable": "Enable",
  3321. "admin_user_unlock": "Unlock",
  3322. "admin_user_add": "Add",
  3323. "investor": "Dealer Management",
  3324. "investor_user": "Account Opening Management",
  3325. "investor_user_open": "Dealer Account Opening",
  3326. "investor_user_open_details": "Details",
  3327. "investor_user_open_add": "Add",
  3328. "investor_user_open_modify": "Modify",
  3329. "investor_user_open_cancel": "Cancel",
  3330. "investor_user_open_delete": "Delete",
  3331. "investor_user_initreview": "Initial Account Review",
  3332. "investor_user_initreview_batch": "Batch Review",
  3333. "investor_user_initreview_audit": "Audit",
  3334. "investor_user_rereview": "Account Re-review",
  3335. "investor_user_rereview_batch": "Batch Review",
  3336. "investor_user_rereview_audit": "Audit",
  3337. "investor_manage": "Dealer Management",
  3338. "investor_manage_user": "Dealer Management",
  3339. "investor_manage_user_export": "Export",
  3340. "investor_manage_user_modify": "Modify",
  3341. "investor_manage_user_details": "Details",
  3342. "investor_manage_user_cancel": "Recall",
  3343. "investor_manage_user_config": "Personalization",
  3344. "investor_manage_user_account": "Fund Account",
  3345. "investor_manage_user_login": "Login Account",
  3346. "investor_manage_user_close": "Deactivate",
  3347. "investor_manage_user_recover": "Recover",
  3348. "investor_manage_modification": "Dealer Change Audit",
  3349. "investor_manage_modification_audit": "Audit",
  3350. "investor_manage_transfer": "Batch Dealer Transfer",
  3351. "investor_manage_transfer_add": "Add",
  3352. "investor_manage_transfer_cancel": "Cancel",
  3353. "investor_manage_swapprotocol": "Swap Agreement Management",
  3354. "investor_manage_swapprotocol_details": "Details",
  3355. "investor_manage_swapprotocol_audit": "Audit",
  3356. "investor_manage_cancelapply": "Dealer Account Closure Audit",
  3357. "investor_manage_cancelapply_audit": "Audit",
  3358. "investor_custom": "Personalization Management",
  3359. "investor_custom_group": "Dealer Group Management",
  3360. "investor_custom_group_add": "Add",
  3361. "investor_custom_group_user": "Grouped Dealers",
  3362. "investor_custom_group_modify": "Modify",
  3363. "investor_custom_group_delete": "Delete",
  3364. "investor_custom_tradecfg": "Dealer Personalization",
  3365. "investor_custom_tradecfg_add": "Add",
  3366. "investor_custom_tradecfg_modify": "Modify",
  3367. "investor_custom_tradecfg_delete": "Delete",
  3368. "investor_custom_accountcfg": "Fund Account Personalization",
  3369. "investor_custom_accountcfg_add": "Add",
  3370. "investor_custom_accountcfg_modify": "Modify",
  3371. "investor_custom_accountcfg_delete": "Delete",
  3372. "investor_custom_riskcfg": "Risk Control Personalization",
  3373. "investor_custom_riskcfg_add": "Add",
  3374. "investor_custom_riskcfg_details": "Details",
  3375. "investor_custom_riskcfg_modify": "Modify",
  3376. "investor_custom_riskcfg_delete": "Delete",
  3377. "query": "Query Management",
  3378. "query_order": "Order Management",
  3379. "query_order_monitor": "Order Monitoring",
  3380. "query_order_list": "Order Query",
  3381. "query_order_list_export": "Export",
  3382. "query_order_list_details": "Details",
  3383. "query_order_close": "Termination Order Query",
  3384. "query_order_close_export": "Export",
  3385. "query_order_terminate": "Forced Termination Order",
  3386. "query_order_terminate_export": "Export",
  3387. "query_order_delivery": "Settlement Order Management",
  3388. "query_order_delivery_export": "Export",
  3389. "query_order_delivery_details": "Details",
  3390. "query_order_delivery_confirm": "Confirm",
  3391. "query_order_delivery_cancel": "Failed",
  3392. "query_order_delivery_pay": "Pay",
  3393. "query_order_report": "Daily Order Report",
  3394. "query_order_report_export": "Export",
  3395. "query_internal": "Internal Order Query",
  3396. "query_internal_order": "Entrust Order Query",
  3397. "query_internal_order_export": "Export",
  3398. "query_internal_order_details": "Details",
  3399. "query_internal_trade": "Transaction Order Query",
  3400. "query_internal_trade_export": "Export",
  3401. "query_internal_trade_details": "Details",
  3402. "query_internal_accountsumm": "Account Transaction Summary",
  3403. "query_internal_accountsumm_expor": "Export",
  3404. "query_internal_tradesumm": "Transaction Summary Query",
  3405. "query_internal_tradesumm_export": "Export",
  3406. "query_internal_institutionsumm": "Organization Transaction Summary",
  3407. "query_internal_institutionsumm_export": "Export",
  3408. "query_internal_goodssumm": "Product Transaction Summary",
  3409. "query_internal_goodssumm_export": "Export",
  3410. "query_internal_position": "Position Order Query",
  3411. "query_internal_position_details": "Details",
  3412. "query_internal_position_export": "Export",
  3413. "query_internal_positionsumm": "Position Summary Query",
  3414. "query_internal_positionsumm_export": "Export",
  3415. "query_internal_liquidation": "Liquidation Record Query",
  3416. "query_internal_liquidation_export": "Export",
  3417. "query_internal_liquidation_details": "Details",
  3418. "query_internal_deliveryorder": "Settlement Entrust Query",
  3419. "query_internal_deliveryorder_export": "Export",
  3420. "query_internal_deliveryorder_details": "Details",
  3421. "query_internal_deliverytrade": "Settlement Transaction Query",
  3422. "query_internal_deliverytrade_export": "Export",
  3423. "query_internal_deliverytrade_details": "Details",
  3424. "query_internal_offlinedelivery": "Offline Settlement Order Query",
  3425. "query_internal_offlinedelivery_export": "Export",
  3426. "query_internal_offlinedelivery_details": "Details",
  3427. "query_internal_offlinedelivery_confirm": "Confirm",
  3428. "query_internal_offlinedelivery_cancel": "Failed",
  3429. "query_internal_offlinedelivery_pay": "Pay",
  3430. "query_wrorder": "Warehouse Receipt Order Query",
  3431. "query_wrorder_order": "Entrust Order Query",
  3432. "query_wrorder_order_details": "Details",
  3433. "query_wrorder_order_export": "Export",
  3434. "query_wrorder_trade": "Transaction Order Query",
  3435. "query_wrorder_trade_export": "Export",
  3436. "query_wrorder_trade_details": "Details",
  3437. "query_wr": "Warehouse Receipt Query",
  3438. "query_wr_wrsumm": "Warehouse Receipt Summary Query",
  3439. "query_wr_wrsumm_details": "Details",
  3440. "query_other": "Other Queries",
  3441. "query_other_bankstatement_export": "Export",
  3442. "query_other_investorbank": "Dealer Fund Query",
  3443. "query_other_investorbank_export": "Export",
  3444. "query_other_investorbank_position": "Position Summary",
  3445. "query_other_institutionbank": "Organization Fund Query",
  3446. "query_other_institutionbank_export": "Export",
  3447. "query_other_institutionbank_position": "Position Summary",
  3448. "query_other_bankinout": "Deposit/Withdrawal Query",
  3449. "query_other_bankinout_details": "Details",
  3450. "query_other_config": "Personalized Query",
  3451. "query_other_esign": "Electronic Agreement Management",
  3452. "query_other_bankstatement": "Fund Flow Query",
  3453. "account": "Account Management",
  3454. "account_fundacct": "Fund Account Management",
  3455. "account_fundacct_details": "Details",
  3456. "account_fundacct_password": "Modify Password",
  3457. "account_fundacct_sign": "Sign Agreement",
  3458. "account_fundacct_bankinout": "Deposit/Withdrawal",
  3459. "account_fundacct_bankstatement": "Fund Flow",
  3460. "account_tradingacct": "Trading Account Management",
  3461. "account_tradingacct_add": "Add",
  3462. "account_tradingacct_details": "Details",
  3463. "account_tradingacct_modify": "Modify",
  3464. "account_tradingacct_password": "Reset Password",
  3465. "account_tradingacct_lock": "Lock",
  3466. "account_tradingacct_unlock": "Unlock",
  3467. "account_tradingacct_close": "Deactivate",
  3468. "account_tradingacct_recover": "Recover",
  3469. "performance": "Performance Management",
  3470. "performance_buy": "My Buy Performance",
  3471. "performance_buy_details": "Details",
  3472. "performance_sell": "My Sell Performance",
  3473. "performance_sell_details": "Details",
  3474. "performance_sell_confirm": "Confirm",
  3475. "performance_sell_breach": "Breach",
  3476. "performance_sell_delay": "Delay",
  3477. "performance_sell_modify": "Modify",
  3478. "performance_plan": "Performance Plan Management",
  3479. "performance_plan_export": "Export",
  3480. "performance_delayapply": "Extension application review",
  3481. "performance_delayapply_details": "Details",
  3482. "performance_breachapply": "Default application review",
  3483. "performance_breachapply_details": "Details",
  3484. "performance_breach": "Default handling",
  3485. "performance_breach_export": "Export",
  3486. "profitshare": "Profit Sharing Management",
  3487. "profitshare_platform": "Platform Profit Sharing",
  3488. "profitshare_platform_group": "Profit Sharing Group Management",
  3489. "profitshare_platform_group_add": "Add",
  3490. "profitshare_platform_group_modify": "Modify",
  3491. "profitshare_platform_group_user": "Member list",
  3492. "profitshare_platform_group_delete": "Delete",
  3493. "profitshare_platform_tree": "Profit sharing tree management",
  3494. "profitshare_platform_tree_add": "Add",
  3495. "profitshare_platform_tree_modify": "Modify",
  3496. "profitshare_platform_tree_user": "Node configuration",
  3497. "profitshare_platform_tree_delete": "Delete",
  3498. "profitshare_platform_config": "System profit sharing configuration",
  3499. "profitshare_platform_config_add": "Add",
  3500. "profitshare_platform_config_modify": "Modify",
  3501. "profitshare_platform_config_details": "Details",
  3502. "profitshare_platform_config_delete": "Delete",
  3503. "profitshare_institution": "Organization Profit Sharing Configuration",
  3504. "profitshare_institution_group": "Sub-organization Group Management",
  3505. "profitshare_institution_group_add": "Add",
  3506. "profitshare_institution_group_modify": "Modify",
  3507. "profitshare_institution_group_member": "Members",
  3508. "profitshare_institution_group_delete": "Delete",
  3509. "profitshare_institution_config": "Sub-organization Profit Sharing Configuration",
  3510. "profitshare_institution_config_add": "Add",
  3511. "profitshare_institution_config_modify": "Modify",
  3512. "profitshare_institution_config_delete": "Delete",
  3513. "settlement": "Settlement Management",
  3514. "settlement_holdtransfer": "Agreement Transfer",
  3515. "settlement_holdtransfer_add": "Add",
  3516. "settlement_positiontransfer": "Position transfer",
  3517. "settlement_profitsharepay": "Profit Sharing Payment Confirmation",
  3518. "settlement_profitsharepay_export": "Export",
  3519. "settlement_profitsharepay_details": "Details",
  3520. "settlement_rereview": "Profit sharing final review",
  3521. "settlement_banktransfer": "Fund transfer",
  3522. "settlement_refund": "Return ticket management",
  3523. "settlement_price": "Settlement price query",
  3524. "report": "Report Query",
  3525. "report_profitshare": "Profit Sharing Report",
  3526. "report_goods": "Product Transaction Report",
  3527. "report_account": "Fund Account Report",
  3528. "report_account_bank": "Fund Information",
  3529. "report_account_position": "Position Summary Table",
  3530. "report_account_wrorder": "Warehouse Receipt Summary Table",
  3531. "report_account_trade": "Transaction Summary Table",
  3532. "report_account_performance": "Performance Summary Table",
  3533. "report_trade": "Recommended Transaction Report",
  3534. "report_broker": "Broker Member Report",
  3535. "report_institution": "Organization Fund Report",
  3536. "report_investor": "Dealer Fund Report",
  3537. "report_bank": "Bank Fund Report",
  3538. "report_fee": "Service Fee Profit Sharing Report",
  3539. "report_recalculate": "Report Recalculation",
  3540. "bank": "Banking Business",
  3541. "bank_sysconfig": "Bank System Configuration",
  3542. "bank_cusconfig": "Custodian Bank Configuration",
  3543. "bank_signlist": "Sign and unsign query",
  3544. "bank_signmanage": "Sign and unsign management",
  3545. "bank_forcedsign": "Forced signing and unsign",
  3546. "bank_account": "Bank account query",
  3547. "bank_inoutlist": "Deposit and withdrawal query",
  3548. "bank_inoutaudit": "Deposit and withdrawal review",
  3549. "bank_outreview": "Withdrawal final review",
  3550. "bank_withdrawalfee": "Handling fee withdrawal",
  3551. "notice": "Notices & Announcements",
  3552. "notice_manage": "Announcement & Notice Management",
  3553. "notice_manage_add": "Release",
  3554. "notice_manage_details": "Details",
  3555. "notice_manage_delete": "Delete",
  3556. "notice_manage_force": "Force to pop up",
  3557. "notice_sms": "SMS query",
  3558. "notice_newscolumn": "Information column",
  3559. "notice_newscolumn_add": "Add",
  3560. "notice_newscolumn_details": "Details",
  3561. "notice_newscolumn_modify": "Modify",
  3562. "notice_newscolumn_delete": "Delete",
  3563. "notice_newssource": "Information source",
  3564. "notice_newssource_add": "Add",
  3565. "notice_newssource_details": "Details",
  3566. "notice_newssource_modify": "Modify",
  3567. "notice_newssource_delete": "Delete",
  3568. "notice_news": "Information management",
  3569. "notice_news_add": "Add",
  3570. "notice_news_details": "Details",
  3571. "notice_news_modify": "Modify",
  3572. "notice_news_show": "Show",
  3573. "notice_news_hide": "Do not show",
  3574. "notice_news_delete": "Delete"
  3575. }
  3576. }