| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576 |
- {
- "app": {
- "name": "MTP Management System",
- "left1": "Welcome To",
- "left2": "MTP Background Management System"
- },
- "account": {
- "fundacct": {
- "accountId": "TaAccountID",
- "isMain": "Account Type",
- "taAccountType": "Internal/External",
- "relatedName": "RelatedUser",
- "parentAccountId": "Parent Account",
- "tradeStatus": "TradeStatus",
- "currency": "Currency",
- "accountName": "User Owner",
- "bankinout": {
- "title": "Deposit/Withdrawal",
- "accountId": "TaAccountID",
- "enableAmount": "Withdrawable Amount",
- "inOutAmount": "Deposit/Withdrawal",
- "inAmount": "Deposit",
- "outAmount": "Withdrawal",
- "amount": "Amount",
- "cusbankid": "Custodian Bank",
- "accpwd": "Fund Password",
- "accounttype": "Account Type",
- "cardtype": "ID Type",
- "cardno": "ID Number",
- "bankname": "Bank Name",
- "bankaccountno": "Bank Account Number",
- "bankaccountname": "Bank Account Name",
- "mobilephone": "Mobile Number",
- "remark": "Remark"
- },
- "bankstatement": {
- "accountId": "TaAccountID",
- "operateType": "Operation Type",
- "relationOrderId": "Related Order ID",
- "marketName": "Market",
- "goodsName": "Product",
- "amount": "Amount",
- "balance": "Opening Balance",
- "currentBalance": "Closing Balance",
- "createTime": "Accounting Time",
- "amountAdjustTypeName": "Fund Adjustment Type",
- "logType": "Transaction Type"
- },
- "details": {
- "title": "Details",
- "accountId": "Fund Account:",
- "accountName": "Organization:",
- "isMain": "Is Parent Account:",
- "currency": "Currency:",
- "taAccountType": "Internal/External:",
- "changeFlag": "Change Flag:",
- "tradeStatus": "Trading Status:",
- "currentBalance": "Closing Balance:",
- "payCharge": "Platform Service Fee:",
- "otherPay": "Payment:",
- "otherFreezeMargin": "Delivery Margin:",
- "freezeMargin": "Frozen Margin:",
- "usedMargin": "Used Margin:",
- "freezeCharge": "Frozen Trading Fee:",
- "outAmountFreeze": "Withdrawal Freeze:",
- "outThreshold": "Withdrawal Threshold:",
- "cusBankName": "Bank Business Number",
- "bankName": "Bank Name",
- "bankAccountName": "Bank Account Name",
- "bankAccountNo": "Bank Account Number",
- "signStatus": "Contract Status"
- },
- "password": {
- "title": "Modify Fund Password",
- "accountId": "Fund Account ID",
- "oldPwd": "Old Password",
- "newPwd": "New Password",
- "confirmPassword": "Confirm New Password",
- "tips1": "Does not comply with password rules",
- "tips2": "New password and confirmation don't match"
- },
- "sign": {
- "accountId": "Fund Account:",
- "accountId1": "Fund Account",
- "accountName": "Customer Name",
- "cusBankName": "Custodian Bank",
- "bankAccountNo": "Corporate Account",
- "bankChildAccount": "Bank Sub-Account",
- "bankAccountName": "Bank Account Name",
- "bankName": "Bank Name",
- "cardType": "ID Type",
- "cardNo": "ID Number",
- "currency": "Currency",
- "signStatus": "Contract Status",
- "cancel": {
- "title": "Cancel Contract/Unbind",
- "broker": "Cancel Contract",
- "unbind": "Unbind",
- "person": "Personal",
- "companny": "Corporate",
- "accounttype": "Account Type:",
- "certtype": "ID Type:",
- "cusbankid": "Custodian Bank:",
- "certid": "ID Number:",
- "exbankname": "Bank Name:",
- "bankaccountno": "Bank Account Number:",
- "bankaccountno1": "Corporate Account:",
- "bankaccountname": "Bank Account Owner:",
- "mobilephone": "Mobile Number:",
- "tips1": "Confirm to initiate unbinding?",
- "tips2": "Confirm to initiate contract cancellation?"
- },
- "edit": {
- "title": "Edit",
- "userinfotype": "Account Type",
- "cardtypeid": "ID Type",
- "cusbankid": "Custodian Bank",
- "certid": "ID Number",
- "exbankname": "Bank Name",
- "bankaccountno": "Bank Account Number",
- "bankaccountno1": "Corporate Account",
- "bankaccountname": "Bank Account Owner",
- "mobilephone": "Mobile Number"
- }
- }
- },
- "tradingacct": {
- "loginid": "Log in account",
- "loginstatus": "Account status",
- "modifytime": "Modification time",
- "modifiername": "Modifier",
- "close": {
- "message": "Confirm to deactivate the account?"
- },
- "details": {
- "title": "Details",
- "loginid": "Log in account",
- "loginstatus": "Log in account status",
- "accountIdS": "Authorized capital account",
- "modifytime": "Modification time"
- },
- "edit": {
- "title": "Modify",
- "title1": "Add",
- "accountids": "Authorized capital account",
- "confirmPassword": "Confirm password",
- "password": "Login password",
- "loginid": "Log in account",
- "tips1": "Please select the authorized capital account",
- "tips2": "Does not conform to the password rule",
- "tips3": "The new password and the confirmed password are inconsistent",
- "tips4": "The modification was successful",
- "tips5": "Modification failed:",
- "tips6": "The addition was successful",
- "tips7": "Addition failed:"
- },
- "lock": {
- "message1": "Confirm to unlock this account?",
- "message2": "Confirm to lock this account?",
- "tips1": "The unlocking was successful",
- "tips2": "The locking was successful",
- "tips3": "Unlocking failed:",
- "tips4": "Locking failed:"
- },
- "password": {
- "message": "Confirm to reset the password?",
- "tips1": "The reset was successful",
- "tips2": "Reset failed:"
- },
- "recover": {
- "message": "Confirm to restore this login account?",
- "tips1": "The restoration was successful",
- "tips2": "Restoration failed:"
- }
- }
- },
- "admin": {
- "role": {
- "rolename": "Role Name",
- "modifiername": "Creator",
- "modifytime": "Creation Time",
- "rolestatus": "Status",
- "edit": {
- "title": "Edit",
- "rolename": "Role Name",
- "sensitivefields": "Sensitive Terms Permission",
- "mobilephone": "Customer Mobile Number",
- "cardtypeid": "Customer ID Number",
- "email": "Customer Email",
- "menuids": "Management Permissions"
- },
- "delete": {
- "tips1": "Confirm delete this role?"
- }
- },
- "user": {
- "ID": "ID",
- "logincode": "Login Account",
- "username": "Username",
- "areaName": "Organization",
- "roleName": "Role",
- "managerstatus": "Account Status",
- "modifytime": "Creation Time",
- "status": "Status",
- "loginCode": "Account",
- "edit": {
- "title": "Edit",
- "logincode": "Login Account",
- "password": "Default Password",
- "username": "Username",
- "roleId": "Role",
- "remark": "Remark"
- },
- "status1": {
- "tips1": "Confirm password reset?",
- "tips2": "Confirm account deactivation?",
- "tips3": "Confirm account activation?",
- "tips4": "Confirm account unlock?",
- "tips5": "Error occurred, please contact administrator."
- }
- }
- },
- "auth": {
- "login": {
- "title": "Account Login",
- "accountCode": "Username/Account/Mobile",
- "password": "Please enter your login password",
- "verifyCode": "Please enter verification code",
- "loading": "Logging in"
- }
- },
- "bank": {
- "cus_config": {},
- "sys_config": {}
- },
- "base": {
- "sys_params": {}
- },
- "error": {
- "tips": "Page not found"
- },
- "common": {
- "orderindex": "Serial Number",
- "pleaseenter": "Please Enter",
- "pleaseenterkeywords": "Please enter the keyword",
- "pleasechoiceorenter": "Please select or enter",
- "pleasechoice": "Please Select",
- "operate": "Operation",
- "current": "Current",
- "history": "History",
- "baseinfo": "Basic Information",
- "extendinfo": "Extended Information",
- "pleasechoicedate": "Please Select Date",
- "alert": "Alert",
- "annex": "Attachment",
- "annex1": "Attachment 1",
- "annex2": "Attachment 2",
- "closeall": "Collapse All",
- "expandall": "Expand All",
- "start": "Start",
- "end": "End",
- "require": "Required",
- "startdate": "Start Date",
- "enddate": "End Date",
- "tips1": "Submission successful",
- "tips2": "Submission failed:",
- "tips3": "Saved successfully",
- "tips4": "Save failed:",
- "tips5": "Deleted successfully",
- "tips6": "Deletion failed:",
- "tips7": "Submission successful",
- "tips8": "Submission failed:",
- "tips9": "Withdrawn successfully",
- "tips10": "Withdrawal failed:",
- "tips11": "Cancelled successfully",
- "tips12": "Cancellation failed:",
- "tips13": "Restored successfully",
- "tips14": "Restoration failed:",
- "tips15": "Withdrawn successfully",
- "tips16": "Withdrawal failed:",
- "tips17": "Operation successful",
- "tips18": "Operation failed:",
- "tips19": "Reset successful",
- "tips20": "Reset failed:",
- "tips21": "Please select correct image type",
- "tips22": "Confirmation failed:"
- },
- "operation": {
- "login": "Login",
- "search": "Search",
- "reset": "Reset",
- "cancel": "Cancel",
- "submit": "Submit",
- "submitaduit": "Submit for Review",
- "upload": "Upload",
- "aduit": "Review",
- "save": "Save",
- "batchconfirm": "Batch Confirm",
- "confirm": "Confirm",
- "export": "Export",
- "close": "Close",
- "add": "Add",
- "add1": "Add",
- "refuse": "Review Rejected",
- "agree": "Review Approved",
- "modifypwd": "Change password"
- },
- "investor": {
- "custom": {
- "accountcfg": {
- "baseinfo": "Basic information",
- "traderule": "Transaction rules",
- "tradefee": "Transaction service fee",
- "name": "Dealer account personalized settings",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "dvalue": "Member",
- "gvalue": "Group",
- "cvalue": "Personalization",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "userName": "Dealer",
- "accountName": "Capital account",
- "goodsName": "Commodity",
- "customerType": "Margin category",
- "add": {
- "title": "Edit",
- "subtitle1": "Basic information settings",
- "userid": "Dealer",
- "accountid": "Capital account",
- "marketid": "Market",
- "goodsid": "Commodity",
- "paramid": "Margin category",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "dvalue": "Member",
- "gvalue": "Group",
- "cvalue": "Personalization",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "feealgorithm": "Fee algorithm",
- "memberminvalue": "Minimum value",
- "fee": "Service fee",
- "membermaxvalue": "Maximum value",
- "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
- },
- "delete": {
- "tips": "Are you sure you want to delete the personalized configuration of this commodity?"
- },
- "edit": {
- "title": "Edit",
- "subtitle1": "Basic information settings",
- "userid": "Dealer",
- "accountid": "Capital account",
- "goodsid": "Commodity",
- "paramid": "Margin category",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "dvalue": "Member",
- "gvalue": "Group",
- "cvalue": "Personalization",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "feealgorithm": "Fee algorithm",
- "memberminvalue": "Minimum value",
- "fee": "Service fee",
- "membermaxvalue": "Maximum value",
- "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
- }
- },
- "group": {
- "areausername": "Member Name",
- "groupname": "Group Name",
- "customertype": "Risk Customer Category",
- "createtime": "Creation Time",
- "delete": {
- "tips": "Confirm delete this group?"
- },
- "edit": {
- "title": "Edit",
- "subtitle1": "Group Information",
- "subtitle2": "Risk Rate Information",
- "areauserid": "Broker Member",
- "groupname": "Name",
- "customertype": "Risk Rate Type",
- "riskcontrolmode": "Risk Control Mode:",
- "customertype1": "Customer Category:",
- "riskratiocalcmode": "Risk Ratio Calculation:",
- "notemarginriskratio": "Margin Risk Rate Alert:",
- "addmarginriskratio": "Additional Margin Risk Rate:",
- "cutriskratio": "Forced Liquidation Risk Rate:",
- "cutbackriskratio": "Recovery Liquidation Risk Rate:",
- "notesaferatio": "Safety Level Alert:",
- "addsaferatio": "Additional Safety Level:",
- "recoversaferatio": "Normal Safety Level Recovery:",
- "cutsaferatio": "Forced Liquidation Safety Level:",
- "isdefault": "Is Default:",
- "markets": "Liquidation Market Order:",
- "tips1": "Code or name fuzzy match",
- "riskcontrolmode1": "Trader",
- "riskcontrolmode2": "Market Maker",
- "riskratiocalcmode1": "Used/Net Value",
- "riskratiocalcmode2": "Net Value/Used"
- },
- "user": {
- "groupname": "Group Name:",
- "userid": "Trader Code",
- "accountname": "Trader Name",
- "createtime": "Creation Time",
- "mobilephone": "Mobile Number",
- "cardnum": "ID Number",
- "edit": {
- "title": "Edit",
- "accountname": "Alternative Traders",
- "userid": "Selected Traders"
- },
- "delete": {
- "tips": "Confirm to",
- "tips1": "remove from group?"
- }
- }
- },
- "riskcfg": {
- "memberusername": "Member",
- "userid": "Trader Code",
- "username": "Trader Name",
- "accountid": "Fund Account",
- "customertype": "Risk Rate Type (Customer Category)",
- "delete": {
- "tips": "Confirm delete this configuration?"
- },
- "details": {
- "title": "Edit",
- "subtitle1": "Basic Information Settings",
- "subtitle2": "Risk Rate Information",
- "username": "Trader:",
- "accountid": "Fund Account:",
- "customertype": "Risk Rate Type:",
- "riskcontrolmode": "Risk Control Mode:",
- "customertype1": "Customer Category:",
- "riskratiocalcmode": "Risk Ratio Calculation:",
- "notemarginriskratio": "Margin Risk Rate Alert:",
- "addmarginriskratio": "Additional Margin Risk Rate:",
- "cutriskratio": "Forced Liquidation Risk Rate:",
- "cutbackriskratio": "Recovery Liquidation Risk Rate:",
- "notesaferatio": "Safety Level Alert:",
- "addsaferatio": "Additional Safety Level:",
- "recoversaferatio": "Normal Safety Level Recovery:",
- "cutsaferatio": "Forced Liquidation Safety Level:",
- "isdefault": "Is Default:",
- "markets": "Liquidation Market Order:",
- "riskcontrolmode1": "Trader",
- "riskcontrolmode2": "Market Maker",
- "riskratiocalcmode1": "Used/Net Value",
- "riskratiocalcmode2": "Net Value/Used"
- },
- "edit": {
- "title": "Edit",
- "subtitle1": "Basic Information Settings",
- "subtitle2": "Risk Rate Information",
- "userid": "Trader",
- "accountid": "Fund Account",
- "customertype": "Risk Rate Type",
- "riskcontrolmode": "Risk Control Mode:",
- "customertype1": "Customer Category:",
- "riskratiocalcmode": "Risk Ratio Calculation:",
- "notemarginriskratio": "Margin Risk Rate Alert:",
- "addmarginriskratio": "Additional Margin Risk Rate:",
- "cutriskratio": "Forced Liquidation Risk Rate:",
- "cutbackriskratio": "Recovery Liquidation Risk Rate:",
- "notesaferatio": "Safety Level Alert:",
- "addsaferatio": "Additional Safety Level:",
- "recoversaferatio": "Normal Safety Level Recovery:",
- "cutsaferatio": "Forced Liquidation Safety Level:",
- "isdefault": "Is Default:",
- "markets": "The order of forced liquidation in the market:",
- "tips1": "Code or name fuzzy match",
- "riskcontrolmode1": "Trader",
- "riskcontrolmode2": "Market Maker",
- "riskratiocalcmode1": "Used/Net Value",
- "riskratiocalcmode2": "Net Value/Used"
- }
- },
- "tradecfg": {
- "subtitle": "Trading Rules",
- "subtitle1": "Trading Service Fee",
- "usergroupid": "Group",
- "marketid": "Market",
- "goodsid": "Product",
- "usergroupid1": "Group:",
- "marketid1": "Market:",
- "goodsid1": "Product:",
- "paramid": "Margin Category:",
- "marketmarginvaluedisplay": "Collection Method:",
- "rulename": "Extension Item",
- "paramvalue": "Product Setting Value",
- "dvalue": "Member Setting Value",
- "cvalue": "Personalization",
- "tradefeename": "Fee Item",
- "feealgorithm": "Fee Algorithm",
- "exchangevalue": "Product Setting Value",
- "delete": {
- "tips": "Confirm delete this product personalization configuration?"
- },
- "edit": {
- "title": "Edit",
- "subtitle1": "Basic Information Settings",
- "usergroupid": "Group",
- "marketid": "Market",
- "goodsid": "Product",
- "paramid": "Margin Category",
- "tradefeename": "Fee Item",
- "feealgorithm": "Fee Algorithm",
- "feealgorithm1": "Ratio",
- "feealgorithm2": "Fixed Value",
- "exchangevalue": "Product Setting Value",
- "dvalue": "Member Setting Value",
- "memberminvalue": "Minimum Value",
- "fee": "Service Fee",
- "membermaxvalue": "Maximum Value",
- "rulename": "Extension Item",
- "paramvalue": "Product Setting Value",
- "cvalue": "Personalization"
- }
- }
- },
- "manage": {
- "cancelapply": {
- "accountname": "Dealer",
- "userid": "Dealer name",
- "applystatus": "Application status",
- "applytime": "Application time",
- "handlestatus": "Processing status",
- "handlestatus1": "Dealer status",
- "auditlogincode": "Reviewer",
- "audittime": "Review time",
- "details": {
- "title": "Details",
- "userid": "User account",
- "applytime": "Application time",
- "handlestatus": "Review status",
- "auditusername": "Reviewer",
- "audittime": "Review time",
- "auditremark": "Review remarks",
- "imageurl": "Confirm the half-body photo"
- }
- },
- "modification": {
- "userid": "Trader Code",
- "accountnamedisplay": "Trader",
- "memberusername": "Member",
- "parentname": "Organization",
- "parentname1": "Member\\Organization",
- "modifystatus": "Modification Status",
- "audittime": "Last Update Time",
- "accountname": "Account",
- "aduit": {
- "operate": {
- "title": "Review",
- "auditflag": "Review Status",
- "auditflag1": "Approve",
- "auditflag2": "Reject",
- "msg": "Rejection Reason",
- "tips1": "Please enter rejection reason"
- }
- }
- },
- "swapprotocol": {},
- "transfer": {
- "transfertype": "Transfer type",
- "outmemberusername": "The member to which the transfer out belongs",
- "outparentusername": "The institution to which the transfer out belongs",
- "outinvestorname": "Transfer out dealer",
- "outinvestor": "Transfer out dealer",
- "inmemberusername": "The member to which the transfer in belongs",
- "inuseridname": "The institution to which the transfer in belongs",
- "transferstatus": "Transfer status",
- "createtime": "Application time",
- "outmemberuserid": "Transferor",
- "inuserid": "Transferee"
- },
- "user": {
- "accountName": "Trader Name",
- "loginId": "Login Account",
- "accountId": "Fund Account Number",
- "memberUserName": "Member",
- "memberUserId": "Member\\Organization",
- "parentName": "Organization",
- "refereeName": "Referrer",
- "isAuth": "Verified Identity",
- "accountStatus": "Status",
- "modifyStatus": "Modification Status",
- "createTime": "Account Opening Time",
- "modifyTime": "Last Update Time",
- "auditTime": "Review Time",
- "cancelTime": "Account Closing Time",
- "account": {
- "title": "'s Fund Account",
- "accountid": "Fund Account",
- "taaccounttype": "Internal/External",
- "relateduserid": "Related Account",
- "tradestatus": "Trading Status",
- "currencyid": "Currency",
- "cur_risk_rate": "Risk Rate (%)",
- "tips1": "Please enter fund account ID",
- "details": {
- "title": "Details",
- "accountid": "Account Number:",
- "accountname": "Trader:",
- "ismain": "Is Parent Account:",
- "parentaccountid": "Parent Account:",
- "relateduserid": "Related User:",
- "changeflag": "Change Flag:",
- "tradestatus": "Trading Status:",
- "currentbalance": "Closing Balance:",
- "freezemargin": "Frozen Margin:",
- "usedmargin": "Used Margin:",
- "freezecharge": "Frozen Service Fee:",
- "outamountfreeze": "Withdrawal Freeze:",
- "outthreshold": "Withdrawal Threshold:"
- },
- "edit": {
- "title": "Edit",
- "accountid": "Fund Account",
- "tradestatus": "Trading Status",
- "taaccounttype": "Internal/External",
- "currencyid": "Currency",
- "outthreshold": "Withdrawal Threshold"
- }
- },
- "cancel": {
- "tips": "Confirm withdrawal of changes?"
- },
- "config": {
- "title": "Member/Trader:",
- "subtitle": "Margin",
- "subtitle1": "Trading Rules",
- "subtitle2": "Trading Fees",
- "marginalgorithm": "Margin Calculation Method:",
- "marginalgorithm1": "Ratio (‱)",
- "marginalgorithm2": "Fixed Value",
- "deposit": "Deposit:",
- "marketmarginvalue": "Market Margin:",
- "reckonmarginvalue": "Settlement Margin Value:",
- "lockmarginvalue": "Lock Position Margin",
- "rulename": "Extension Item",
- "paramvalue": "Value",
- "feename": "Fee Item",
- "feealgorithm": "Fee Algorithm",
- "feealgorithm1": "Fee Algorithm",
- "feealgorithm2": "Fee Algorithm",
- "exchangevalue": "Platform Setting Value",
- "memberdefaultvalue": "Member Setting Value",
- "goodsId": "GoodsID",
- "accountid": "Fund Account",
- "tips1": "Please enter product ID"
- },
- "delete": {
- "tips": "Confirm cancellation of this trader?"
- },
- "details": {
- "title": "Details",
- "subtitle1": "Personal Information",
- "subtitle2": "Corporate Information",
- "userId": "Trader Code:",
- "accountName": "Trader Name:",
- "memberUserName": "Member:",
- "parentUserName": "Organization:",
- "openMode": "Account Opening Method:",
- "createTime": "Account Opening Time:",
- "createName1": "Account Creator",
- "createName2": "Applicant",
- "accountStatus": "Organization Status:",
- "modifyStatus": "Modification Status:",
- "isAuth": "Verified:",
- "modifyTime": "Modification Time:",
- "modifyName": "Modifier:",
- "auditTime": "Review Time:",
- "auditAccountName": "Reviewer:",
- "modifyRemark": "Change Review Remarks:",
- "cardTypeId": "ID Type:",
- "cardNum": "ID Number:",
- "company": "Company:",
- "sex": "Gender:",
- "mobile": "Mobile Number:",
- "telPhone": "Contact Phone:",
- "address": "Mailing Address:",
- "postalCode": "Postal Code:",
- "wechat": "WeChat:",
- "email": "Email:",
- "cardFrontPhotoUrl": "ID Front Photo:",
- "cardBackPhotoUrl": "ID Back Photo:",
- "remark": "Remarks:",
- "needInvoice": "Need Invoice:",
- "customerName": "Company Name:",
- "bizNature": "Company Nature:",
- "legalPersonName": "Legal Representative:",
- "contactName": "Contact Person:",
- "cardFrontPhotoUrl1": "Business License:",
- "legalCardFrontPhotoUrl": "Legal Rep. ID Front:",
- "legalCardBackPhotoUrl": "Legal Rep. ID Back:",
- "otherUrl": "Legal Authorization:"
- },
- "edit": {
- "title": "Edit",
- "userId": "Trader Code",
- "accountName": "Trader Name",
- "memberUserName": "Member",
- "parentuserid": "Organization",
- "refereeUserName": "Referrer",
- "isAuth": "Verified",
- "cardTypeId": "ID Type",
- "person": "Personal",
- "company1": "Corporate",
- "profile": "Information",
- "cardNum": "ID Number",
- "customerName": "Company Name",
- "bizNature": "Company Nature",
- "legalPersonName": "Legal Representative",
- "contactName": "Contact Person",
- "sex": "Gender",
- "company": "Company",
- "mobile": "Mobile Number",
- "telPhone": "Contact Phone",
- "region": "Region",
- "address": "Address",
- "postalCode": "Postal Code",
- "email": "Email",
- "wechat": "WeChat",
- "cardFrontPhotoUrl": "ID Front Photo",
- "cardBackPhotoUrl": "ID Back Photo",
- "cardFrontPhotoUrl1": "Business License",
- "halfBodyPhotoUrl": "ID in Hand Photo",
- "legalCardFrontPhotoUrl": "Legal Rep. ID Front",
- "legalCardBackPhotoUrl": "Legal Rep. ID Back",
- "otherUrl": "Legal Authorization",
- "remark": "Remarks",
- "tips1": "Please enter trader name",
- "tips2": "Code or name fuzzy match"
- },
- "export": {
- "tips": "Confirm export table data?"
- },
- "login": {
- "loginid": "Login Account",
- "loginstatus": "Account Status",
- "modifytime": "Modification Time",
- "modifiername": "Modifier",
- "delete": {
- "tips": "Confirm account deactivation?",
- "tips1": "Successfully deactivated",
- "tips2": "Deactivation failed:"
- },
- "details": {
- "title": "Details",
- "loginid": "Login Account:",
- "authid": "Mobile Number:"
- },
- "lock": {
- "tips1": "Confirm unlock this account?",
- "tips2": "Confirm lock this account?",
- "tips3": "Successfully locked",
- "tips4": "Successfully unlocked",
- "tips5": "Lock failed:",
- "tips6": "Unlock failed:"
- },
- "log": {
- "title": "Login Records",
- "loginflowno": "Login Record Number",
- "operatetime": "Login Time",
- "loginip": "Login IP",
- "clienttype": "Client Type",
- "softversion": "Software Version",
- "loginretcode": "Login Result",
- "funcode": "Login/Logout",
- "operatetype": "Operation Type"
- },
- "password": {
- "tips": "Confirm password reset?"
- },
- "recover": {
- "tips": "Confirm account recovery?"
- }
- },
- "recover": {
- "tips": "Confirm recovery of this trader?",
- "tips1": "The account status of the related login account will be recovered separately."
- }
- }
- },
- "user": {
- "initreview": {
- "userName": "User Name",
- "memberUserName": "Member",
- "areaName": "Organization",
- "openMode": "Account Opening Method",
- "userState": "Account Status",
- "createTime": "Application Time",
- "areaCode": "Member\\Organization"
- },
- "open": {
- "userName": "User Name",
- "memberUserName": "Member",
- "areaName": "Organization",
- "openMode": "Account Opening Method",
- "userState": "Account Status",
- "createTime": "Application Time",
- "areaCode": "Member\\Organization",
- "cancel": {
- "tips": "Confirm withdrawal of account opening review?"
- },
- "delete": {
- "tips": "Confirm deletion of this account opening information?"
- },
- "details": {
- "title": "Details",
- "username": "User Name",
- "username1": "Company Name:",
- "userinfotype": "Information Type:",
- "cardtype": "ID Type:",
- "cardnum": "ID Number:",
- "pathname": "Address:",
- "legalpersonname": "Legal Representative:",
- "contactname": "Contact Person:",
- "sex": "Gender:",
- "mobilephone": "Mobile Number:",
- "postalcode": "Postal Code:",
- "wechat": "WeChat:",
- "telphone": "Contact Phone:",
- "email": "Email:",
- "company": "Company:",
- "memberusername": "Member:",
- "areaname": "Organization:",
- "brokername": "Broker:",
- "referralname": "Referrer:",
- "cardfrontphotourl": "ID Front Photo:",
- "cardfrontphotourl1": "Business License:",
- "cardbackphotourl": "ID Back Photo:",
- "halfbodyphotourl": "ID in Hand Photo:",
- "legalcardfrontphotourl": "ID Front Photo:",
- "legalcardbackphotourl": "ID Back Photo:",
- "otherurl": "Legal Authorization:",
- "userstate": "Status:",
- "remark": "Remarks:",
- "bankname": "Bank Name:",
- "bankaccount": "Bank Account:",
- "bankcardfrontphotourl": "Bank Card Front:",
- "aduit": "Approved",
- "unaduit": "Rejected",
- "tips1": "Confirm submission for review?",
- "tips2": "Review successful",
- "tips3": "Review failed:"
- },
- "edit": {
- "title": "Edit",
- "memberareaid": "Member",
- "areaid": "Organization",
- "brokerid": "Broker",
- "referral": "Referrer",
- "userinfotype": "Information Type",
- "username": "User Name",
- "sex": "Gender",
- "username1": "Company Name",
- "legalpersonname": "Legal Representative",
- "cardtype": "ID Type",
- "cardnum": "ID Number",
- "cardfrontphotourl": "ID Front Photo",
- "cardbackphotourl": "ID Back Photo",
- "cardfrontphotourl1": "Business License",
- "legalcardfrontphotourl": "Legal Rep. ID Front",
- "legalcardbackphotourl": "Legal Rep. ID Back",
- "otherurl": "Legal Authorization",
- "region": "Region",
- "cardaddress": "Address",
- "contactname": "Contact Person",
- "telphone": "Contact Phone",
- "mobilephone": "Mobile Number",
- "postalcode": "Postal Code",
- "company": "Company",
- "wechat": "WeChat",
- "email": "Email",
- "remark": "Remarks",
- "tips1": "Code or name fuzzy match",
- "tips2": "1. Please upload image in format: JPG,JPEG,GIF,PNG,BMP, size not exceeding 102400KB",
- "tips3": "2. ID information must be clearly visible, photos must be without hat, content must be authentic and valid, no modifications allowed.",
- "tips4": "Please upload ID front photo",
- "tips5": "Please upload business license",
- "tips6": "Please upload ID back photo",
- "tips7": "Please select region",
- "tips8": "Please upload legal representative ID front",
- "tips9": "Please upload legal representative ID back"
- }
- },
- "review": {
- "userName": "Username",
- "memberUserName": "Member",
- "areaName": "Organization",
- "openMode": "Account Opening Method",
- "userState": "Account Status",
- "createTime": "Application Time",
- "areaCode": "Member\\Organization"
- }
- }
- },
- "marketrun": {
- "exception": {},
- "market": {},
- "monitor": {
- "account": {
- "puserid": "Organization",
- "risk": "Monitor Current Risk Rate >",
- "orderbytype": "Risk Rate",
- "searchtype": "Query Type",
- "searchtype1": "Trader",
- "searchtype2": "Unlimited",
- "searchtype3": "Self-operated Member",
- "accountid": "Account",
- "accountname": "Account Name",
- "memberusername": "Member",
- "parentusername": "Organization",
- "freezemargin": "Current Frozen Funds",
- "usedmargin": "Current Used Margin",
- "netbalance": "Current Net Value",
- "balance": "Current Risk Net Value",
- "availmargin": "Available Funds",
- "totalfrozen": "Total Frozen",
- "totalfloatpl": "Floating Profit/Loss",
- "credit": "Credit Funds",
- "curriskrate": "Current Risk Rate(%)",
- "currisklv": "Current Risk Level",
- "totalfloatpl1": "Floating Profit/Loss",
- "currisksaferate": "Current Safety Level(%)",
- "currisksafelv": "Current Safety Level",
- "start": "Start Monitoring",
- "stop": "Stop Monitoring",
- "tips1": "(Default risk rate >50%; Refresh every 10 seconds, next refresh:",
- "tips2": "Code or name fuzzy match"
- },
- "liquidation": {
- "countDown": "Refresh every 10 seconds, next refresh:",
- "start": "Start Monitoring",
- "stop": "Stop Monitoring",
- "accountid": "Forced Liquidation Account",
- "goodsname": "Product",
- "buyorsell": "Trading Direction",
- "cuttime": "Liquidation Time",
- "cuttradeqty": "Liquidated Quantity",
- "cutorderid": "Related Order ID"
- },
- "marketer": {
- "orderbytype": "Risk rate",
- "risk": "Monitor the current risk rate >",
- "start": "Start monitoring",
- "stop": "Stop monitoring",
- "tips1": "(Default risk rate > 50%; refresh every 10 seconds, next refresh:",
- "accountid": "Account",
- "tradestatus": "Account status",
- "accountname": "Member name",
- "freezemargin": "Current frozen funds",
- "usedmargin": "Current margin occupied",
- "balance": "Current net value",
- "availmargin": "Available funds",
- "totalfrozen": "Total frozen amount",
- "totalfloatpl": "Floating profit and loss",
- "curriskrate": "Current risk rate (%)",
- "currisklv": "Current risk level",
- "positionsumm": {
- "title": "Account position holding summary monitoring",
- "accountid1": "Capital account:",
- "accountid": "Capital account/account number/name",
- "parentname": "Affiliation",
- "goodsname": "Commodity",
- "buy_hold_qty": "Position holding quantity (buy)",
- "buy_hold_value": "Position holding amount (buy)",
- "buy_avg_price": "Average position holding price (buy)",
- "buy_float_pl": "Position holding profit and loss (buy)",
- "sell_hold_qty": "Position holding quantity (sell)",
- "sell_hold_value": "Position holding amount (sell)",
- "sell_avg_price": "Average position holding price (sell)",
- "sell_float_pl": "Position holding profit and loss (sell)",
- "total_float_pl": "Position holding profit and loss (total)",
- "quote_price_last": "Latest price",
- "details": {
- "title": "Position holding order query",
- "accountid1": "Capital account:",
- "tradeid": "Transaction order number",
- "tradedate": "Trading day",
- "accountNameId": "Account",
- "marketname": "Market",
- "goodsCodeName": "Commodity",
- "buyorsell": "Direction",
- "holderqty": "Position holding quantity",
- "holderprice": "Position holding price",
- "holderamount": "Position holding amount",
- "tradetime": "Transaction time"
- }
- }
- },
- "positionsumm": {},
- "user": {
- "loginid": "Login Account",
- "username": "Account Name",
- "loginip": "IP",
- "loginport": "Port",
- "logintime": "Login Time",
- "clienttype": "Client Type",
- "softversion": "Software Version",
- "areaname": "Organization",
- "membername": "Member",
- "alloffline": {
- "tips": "Force all users offline?"
- },
- "offline": {
- "tips1": "Do you want to force user",
- "tips2": "offline?"
- }
- }
- }
- },
- "member": {
- "institution": {
- "broker": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle1": "Commodity query permission",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "goodscfg": {
- "membername": "Member Organization",
- "roledisplay": "Organization Role",
- "goodsdisplay": "Product",
- "nodisplay": "Not Display",
- "cannotbuy": "Cannot Place Buy Orders",
- "cannotsell": "Cannot Place Sell Orders",
- "userid": "Economic Member",
- "marketid": "Market",
- "goodsid": "Product",
- "tips1": "Please select economic member",
- "tips2": "Enter code or name"
- },
- "industry": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle2": "Commodity query permission",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "marketer": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle2": "Commodity query permission",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "marketing": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle2": "Commodity query permission",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "open": {
- "username": "Username",
- "openmode": "Account Opening Method",
- "userstate": "Account Status",
- "createtime": "Application Time",
- "username1": "Username",
- "cancel": {
- "tips": "Confirm withdrawal of account opening review?"
- },
- "delete": {
- "tips": "Confirm deletion of this organization's account opening information?"
- },
- "details": {
- "title": "Details",
- "title1": "Review Rejected",
- "title2": "Review Approved",
- "subtitle1": "Personal Information",
- "subtitle2": "Corporate Information",
- "username": "Organization Name:",
- "userinfotype": "Owner Type:",
- "usertype": "Organization Type:",
- "referral": "Referrer:",
- "userstate": "Account Status:",
- "createtime": "Creation Time:",
- "customername": "Name:",
- "company": "Company:",
- "cardtype": "ID Type:",
- "cardnum": "ID Number:",
- "cardfrontphotourl": "ID Front Photo:",
- "cardbackphotourl": "ID Back Photo:",
- "sex": "Gender:",
- "mobilephone": "Mobile Number:",
- "telphone": "Contact Phone:",
- "address": "Address:",
- "postalcode": "Postal Code:",
- "email": "Email:",
- "remark": "Remarks:",
- "biznature": "Company Nature:",
- "legalpersonname": "Legal Representative:",
- "legalcardfrontphotourl": "Legal Rep. ID Front:",
- "legalcardbackphotourl": "Legal Rep. ID Back:",
- "contactname": "Contact Person:",
- "attachment1": "Attachment 1:",
- "attachment2": "Attachment 2:",
- "reason": "Rejection Reason",
- "areacode": "Organization Code",
- "smlogincode": "Admin Login Account",
- "loginname": "Admin Name",
- "smpassword": "Default Login Password",
- "tips1": "Four-digit Number",
- "tips2": "Input must contain letters and be at least 3 characters"
- },
- "edit": {
- "title": "Edit",
- "username": "Organization Name",
- "userinfotype": "Owner Type",
- "referral": "Referrer",
- "customername": "Name",
- "person": "Personal",
- "companny": "Corporate",
- "profile": "Information",
- "company": "Company",
- "biznature": "Company Nature",
- "cardtype": "ID Type",
- "cardnum": "ID Number",
- "cardfrontphotourl": "ID Front Photo",
- "cardbackphotourl": "ID Back Photo",
- "legalpersonname": "Legal Representative",
- "legalcardfrontphotourl": "Legal Rep. ID Front",
- "legalcardbackphotourl": "Legal Rep. ID Back",
- "contactname": "Contact Person",
- "sex": "Gender",
- "mobilephone": "Mobile Number",
- "telphone": "Contact Phone",
- "provinceid": "Region",
- "cardaddress": "Address",
- "postalcode": "Postal Code",
- "email": "Email",
- "remark": "Remarks"
- }
- },
- "operation": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle2": "Commodity query permission",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "riskcfg": {
- "memberuserid": "Member",
- "userid": "Member Code",
- "username": "Member Name",
- "accountid": "Fund Account",
- "customertype": "Risk Rate Type (Customer Category)",
- "tips1": "Please select member",
- "tips2": "Enter code or name",
- "details": {
- "title": "Edit",
- "subtitle": "Basic information settings",
- "subtitle1": "Risk rate information",
- "username": "Dealer:",
- "accountid": "Capital account:",
- "customertype": "Risk rate type:",
- "riskcontrolmode": "Risk control mode:",
- "riskcontrolmode1": "Dealer",
- "riskcontrolmode2": "Market maker member",
- "customertype1": "Customer category:",
- "riskratiocalcmode": "Risk rate calculation method:",
- "riskratiocalcmode1": "Occupied/net value",
- "riskratiocalcmode2": "Value/occupied",
- "notemarginriskratio": "Prompt margin risk rate:",
- "addmarginriskratio": "Margin call risk rate:",
- "cutriskratio": "Forced liquidation risk rate:",
- "cutbackriskratio": "Forced liquidation recovery risk rate:",
- "notesaferatio": "Prompt safety level:",
- "addsaferatio": "Margin call safety level:",
- "recoversaferatio": "Restore normal safety level:",
- "cutsaferatio": "Forced liquidation safety level:",
- "isdefault": "Is it the default?",
- "markets": "The order of forced liquidation in the market:"
- },
- "edit": {
- "title": "Edit",
- "userid": "Member",
- "riskcontrolmode": "Risk control mode:",
- "riskcontrolmode1": "Dealer",
- "riskcontrolmode2": "Market maker member",
- "customertype1": "Customer category:",
- "riskratiocalcmode": "Risk rate calculation method:",
- "riskratiocalcmode1": "Occupied/net value",
- "riskratiocalcmode2": "Value/occupied",
- "notemarginriskratio": "Prompt margin risk rate:",
- "addmarginriskratio": "Margin call risk rate:",
- "cutriskratio": "Forced liquidation risk rate:",
- "cutbackriskratio": "Forced liquidation recovery risk rate:",
- "notesaferatio": "Prompt safety level:",
- "addsaferatio": "Margin call safety level:",
- "recoversaferatio": "Restore normal safety level:",
- "cutsaferatio": "Forced liquidation safety level:",
- "isdefault": "Is it the default?",
- "markets": "The order of forced liquidation in the market:"
- }
- },
- "role": {
- "autoid": "ID",
- "rolename": "Role Name",
- "modifiername": "Creator",
- "modifytime": "Creation Time",
- "rolestatus": "Status"
- },
- "self": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "market": "Market",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- },
- "tradecfg": {
- "subtitle": "Basic information",
- "traderule": "Transaction rules",
- "tradefee": "Transaction service fee",
- "name1": "Self-operated member account personalized settings",
- "name2": "Market maker member account personalized settings",
- "userName": "Self-operated",
- "userName1": "Market maker",
- "userName2": "Member",
- "accountName": "Capital account",
- "goodsName": "Commodity",
- "customerType": "Margin category",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "cvalue": "Personalization",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "add": {
- "subtitle": "Personalized settings",
- "userid1": "Self-operated member",
- "userid2": "Market maker member",
- "accountid": "Capital account",
- "marketid": "Market",
- "goodsid": "Commodity",
- "paramid": "Margin category",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "cvalue": "Personalization",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "feealgorithm": "Fee algorithm",
- "fee": "Service fee",
- "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
- },
- "edit": {
- "title": "Edit",
- "tradetype1": "Self-operated member",
- "tradetype2": "Market maker member",
- "accountid": "Capital account",
- "goodsid": "Commodity",
- "rulename": "Extension item",
- "paramvalue": "Platform",
- "cvalue": "Personalization",
- "tradefeename": "Expense item",
- "exchangevalue": "Platform",
- "feealgorithm": "Fee algorithm",
- "fee": "Service fee",
- "tips1": "Neither the margin category, transaction rules, nor the transaction service fee has been set"
- }
- },
- "user": {
- "enddate": "End Time",
- "startdate": "Start Time",
- "roles": "Role",
- "starttime": "Creation Time",
- "markets": "Market Permissions",
- "userid": "Organization Code",
- "accountname": "Organization Name",
- "accountstatus": "Organization Status",
- "createtime": "Creation Time",
- "modifytime": "Last Update Time",
- "roleIds": "Organization Role",
- "userName": "Operator",
- "account": {
- "accountname": "The capital account of",
- "accountId": "Capital account",
- "isMain": "Account type",
- "taAccountType": "Internal/external",
- "relatedName": "Associated account",
- "parentAccountId": "The parent account to which it belongs",
- "tradeStatus": "Transaction status",
- "currency": "Currency",
- "curRiskRate": "Risk rate (%)",
- "edit": {
- "title": "Modify",
- "accountId": "Capital account",
- "tradestatus": "Transaction status",
- "taAccountType": "Internal/external",
- "currency": "Currency",
- "outthreshold": "Withdrawal threshold"
- },
- "password": {
- "message": "Confirm to reset the password?",
- "tips1": "The reset was successful",
- "tips2": "Reset failed:"
- },
- "signstatement": {
- "title": "Signing and解约transaction record",
- "accountid": "Capital account:",
- "accountcode": "Capital account",
- "cusbankid": "Custodian bank number",
- "signtype": "Signing (解约) type",
- "dealstatus": "Processing status",
- "createtime": "Time",
- "bankaccountno": "Bank card number",
- "currency": "Currency",
- "querytype": "Query type"
- }
- },
- "close": {
- "message": "Confirm to cancel this institution?"
- },
- "details": {
- "title": "Details",
- "subtitle1": "Basic information",
- "subtitle2": "Administrator and account information",
- "subtitle3": "Bank card information",
- "subtitle4": "Attachment",
- "userid": "Institution code",
- "userinfotype": "Owner type",
- "refereeusername": "Referrer",
- "accountname": "Institution name",
- "usertype": "Institution type",
- "accountstatus": "Institution status",
- "reckonaccountid": "Capital account",
- "createtime": "Creation time",
- "customername": "Name",
- "company": "Company",
- "biznature": "Enterprise nature",
- "cardtypeid": "Certificate type",
- "cardnum": "Certificate number",
- "cardfrontphotourl": "Front of the certificate photo",
- "cardbackphotourl": "Back of the certificate photo",
- "legalpersonname": "Legal person's name",
- "legalcardfrontphotourl": "Front of the legal person's ID card",
- "legalcardbackphotourl": "Back of the legal person's ID card",
- "contactname": "Contact person",
- "sex": "Gender",
- "mobile": "Mobile phone number",
- "telphone": "Contact phone number",
- "address": "Address",
- "postalcode": "Postal code",
- "email": "Email",
- "qq": "QQ",
- "wechat": "WeChat",
- "remark": "Remarks",
- "logincode": "Administrator login account",
- "username": "Administrator name",
- "managerstatus": "Account status",
- "bankname": "Bank name",
- "bankaccount": "Bank account",
- "bankcardfrontphotourl": "Front of the bank card",
- "attachment1": "Attachment 1",
- "attachment2": "Attachment 2"
- },
- "edit": {
- "subtitle": "Basic information",
- "subtitle1": "Administrator and account information",
- "userid": "Institution code",
- "userinfotype": "Owner type",
- "username": "Institution name",
- "usertype": "Institution type",
- "refereeuserid": "Referrer",
- "person": "Individual",
- "enterprise": "Enterprise",
- "legend": "Information",
- "customername": "Name",
- "biznature": "Enterprise nature",
- "cardtypeid": "Certificate type",
- "cardnum": "Certificate number",
- "cardfrontphotourl": "Front of the certificate photo",
- "cardbackphotourl": "Back of the certificate photo",
- "legalpersonname": "Legal person's name",
- "legalcardfrontphotourl": "Front of the legal person's ID card",
- "legalcardbackphotourl": "Back of the legal person's ID card",
- "contactname": "Contact person",
- "sex": "Gender",
- "mobile": "Mobile phone number",
- "telphone": "Contact phone number",
- "provinceid": "Region",
- "address": "Address",
- "postalcode": "Postal code",
- "email": "Email",
- "remark": "Remarks",
- "username1": "Administrator name",
- "userinfotype1": "Capital account",
- "attachment": "Attachment",
- "attachment1": "Attachment 1",
- "attachment2": "Attachment 2"
- },
- "login": {
- "accountname": "And sub-institution administrator accounts",
- "allstart": "Enable all",
- "allstop": "Deactivate all",
- "areauserid": "Institution code to which it belongs",
- "logincode": "Login account",
- "managerstatus": "Account status",
- "modifytime": "Update time",
- "password": {
- "message": "Confirm to reset the password?",
- "tips1": "The reset was successful",
- "tips2": "Reset failed:"
- },
- "status": {
- "message1": "Confirm to deactivate the administrator login account?",
- "message2": "Confirm to activate the administrator login account?"
- },
- "statuses": {
- "message1": "Confirm to activate all administrator login accounts?",
- "message2": "Confirm to deactivate all administrator login accounts?"
- }
- },
- "recover": {
- "message": "Confirm to restore this institution?",
- "tips1": "The restoration was successful",
- "tips2": "Restoration failed:"
- },
- "terminal": {
- "accountname": "Self-operated member login account",
- "userid": "Institution code to which it belongs",
- "loginid": "Login account",
- "loginstatus": "Account status",
- "modifytime": "Update time",
- "password": {
- "message": "Confirm to reset the password?"
- },
- "status": {
- "message1": "Confirm to lock this account?",
- "message2": "Confirm to unlock this account?"
- }
- }
- },
- "warehouse": {
- "memberuserid": "Organization Code",
- "accountname": "Organization Name",
- "accountid": "Fund Account",
- "accountstatus": "Organization Status",
- "operation": "Operator",
- "rolemodifytime": "Role Creation Time",
- "details": {
- "title": "Details",
- "subtitle": "Basic information",
- "subtitle2": "Warehouse",
- "accountname": "Name",
- "userName": "Administrator",
- "reckonaccountid": "Capital account"
- }
- }
- },
- "subinstitution": {
- "addition": {
- "userid": "Institution code",
- "accountname": "Institution name",
- "parentname": "Institution to which it belongs",
- "memberusername": "Member to which it belongs",
- "accountstatus": "Institution status",
- "usertype": "Institution type",
- "userinfotype": "Owner type",
- "userName": "Operator",
- "modifytime": "Last update time",
- "subarealevel": "Type"
- },
- "manage": {
- "userid": "Organization Code:",
- "accountname": "Organization Name:",
- "accountstatus": "Organization Status:",
- "userinfotype": "Owner Type:",
- "contactname": "Contact Person:",
- "pathname": "Address:",
- "userid1": "Organization Code",
- "accountname1": "Organization Name",
- "accountstatus1": "Organization Status",
- "usertype": "Organization Type",
- "userinfotype1": "Owner Type",
- "userName": "Operator",
- "modifytime": "Last Update Time",
- "cancel": {
- "tips": "Confirm withdrawal of changes?"
- },
- "delete": {
- "tips": "Confirm cancellation of this organization?"
- },
- "details": {
- "title": "Details",
- "subtitle1": "Personal Information",
- "subtitle2": "Corporate Information",
- "subtitle3": "Bank Card Information",
- "subtitle4": "Administrator & Account Information",
- "userId": "Organization Code:",
- "accountName": "Organization Name:",
- "usertype": "Organization Type:",
- "accountStatus": "Organization Status:",
- "auditAccountName": "Reviewer:",
- "auditremark": "Review Remarks:",
- "customerName": "Name:",
- "company": "Company:",
- "cardTypeId": "ID Type:",
- "cardNum": "ID Number:",
- "contactName": "Contact Person:",
- "sex": "Gender:",
- "cardFrontPhotoUrl": "ID Front Photo:",
- "cardBackPhotoUrl": "ID Back Photo:",
- "halfBodyPhotoUrl": "ID in Hand Photo:",
- "bizNature": "Company Nature:",
- "cardFrontPhotoUrl1": "Business License:",
- "legalPersonName": "Legal Representative:",
- "legalCardFrontPhotoUrl": "ID Front Photo:",
- "legalCardBackPhotoUrl": "ID Back Photo:",
- "mobile": "Mobile Number:",
- "telPhone": "Contact Phone:",
- "address": "Address:",
- "postalCode": "Postal Code:",
- "email": "Email:",
- "remark": "Remarks:",
- "bankName": "Bank Name:",
- "bankAccount": "Bank Account:",
- "bankCardFrontPhotoUrl": "Bank Card Front:",
- "attachment1": "Attachment 1:",
- "attachment2": "Attachment 2:",
- "logincode": "Admin Login Account:",
- "username": "Admin Name:",
- "userstatus": "Account Status:"
- },
- "edit": {
- "title": "Edit",
- "subtitle": "Administrator & Account Information",
- "referral": "Parent Organization",
- "userinfotype": "Owner Type",
- "userid": "Organization Code",
- "accountname": "Organization Name",
- "refereeuserid": "Referrer",
- "person": "Personal",
- "companny": "Corporate",
- "profile": "Information",
- "customername": "Name",
- "company": "Company",
- "biznature": "Company Nature",
- "cardtypeid": "ID Type",
- "cardnum": "ID Number",
- "cardfrontphotourl": "ID Front Photo",
- "cardbackphotourl": "ID Back Photo",
- "legalpersonname": "Legal Representative",
- "legalcardfrontphotourl": "Legal Rep. ID Front",
- "legalcardbackphotourl": "Legal Rep. ID Back",
- "contactname": "Contact Person",
- "sex": "Gender",
- "mobile": "Mobile Number",
- "telphone": "Contact Phone",
- "provinceid": "Region",
- "address": "Address",
- "postalcode": "Postal Code",
- "email": "Email",
- "remark": "Remarks",
- "logincode": "Admin Login Account",
- "username": "Admin Name",
- "smpassword": "Default Login Password",
- "tips1": "Code or name fuzzy match"
- },
- "recover": {
- "tips": "Confirm restoration of this organization? Default admin account will also be restored."
- }
- },
- "modification": {
- "userid": "Institution code",
- "accountname": "Institution name",
- "memberusername": "Member to which it belongs",
- "parentname": "Institution to which it belongs",
- "modifystatus": "Change status",
- "modifytime": "Last update time",
- "subarealevel": "Type"
- },
- "transfer": {
- "outparentusername": "Transfer out institution",
- "outlevel": "Transfer out institution type",
- "inuseridname": "Transfer in institution",
- "inlevel": "Transfer in institution type",
- "transfermode": "Transfer method",
- "transferstatus": "Transfer status",
- "createtime": "Application time",
- "cancel": {
- "message": "Confirm to cancel the transfer application?"
- },
- "edit": {
- "legend": "Transfer out",
- "diversionoutlevel": "Transfer out type",
- "outparentuserid": "Transfer out first-level sub-institution",
- "outparentuserid1": "Transfer out second-level sub-institution",
- "cardtypeid": "Certificate type",
- "cardnum": "Certificate number",
- "legend1": "Transfer in",
- "transfermode": "Transfer in method",
- "diversioninlevel": "Transfer in type",
- "inuserid": "Transfer in brokerage member",
- "inuserid1": "Transfer in first-level sub-institution",
- "tips1": "*The transfer of sub-institutions and their subordinate dealers will be processed during the system settlement."
- },
- "run": {
- "message": "Confirm to execute the transfer?",
- "tips1": "The transfer was successful",
- "tips2": "Transfer failed:"
- }
- },
- "user": {
- "userid": "Institution code",
- "accountname": "Institution name",
- "parentname": "Institution to which it belongs",
- "memberusername": "Member to which it belongs",
- "accountstatus": "Institution status",
- "usertype": "Institution type",
- "userinfotype": "Owner type",
- "userName": "Operator",
- "modifytime": "Last update time",
- "username1": "Organization",
- "markets": "Market permission",
- "edit": {
- "title": "Edit",
- "subtitle": "Administrator & Account Information",
- "referral": "Parent Organization",
- "username": "Organization Code",
- "userinfotype": "Owner Type",
- "username1": "Organization Name",
- "customername": "Name",
- "company": "Company",
- "person": "Personal",
- "company1": "Corporate",
- "profile": "Information",
- "biznature": "Company Nature",
- "cardtype": "ID Type",
- "cardnum": "ID Number",
- "cardfrontphotourl": "ID Front Photo",
- "cardbackphotourl": "ID Back Photo",
- "legalpersonname": "Legal Representative",
- "legalcardfrontphotourl": "Legal Rep. ID Front",
- "legalcardbackphotourl": "Legal Rep. ID Back",
- "contactname": "Contact Person",
- "sex": "Gender",
- "mobilephone": "Mobile Number",
- "telphone": "Contact Phone",
- "provinceid": "Region",
- "cardaddress": "Address",
- "postalcode": "Postal Code",
- "email": "Email",
- "remark": "Remarks",
- "username2": "Administrator Login Account",
- "username3": "Administrator Name",
- "smpassword": "Default Login Password"
- }
- }
- }
- },
- "notice": {
- "manage": {
- "title": "Title",
- "msgtype": "Message type",
- "sendtype": "Release type",
- "sentstatus": "Push status",
- "scheduletime": "Effective time",
- "endtime": "End time",
- "recipient": "Recipient",
- "content": "Message content",
- "userid": "Receiving dealer",
- "isforcedisplay": "Is it mandatory to pop up?"
- }
- },
- "performance": {
- "buy": {},
- "plan": {},
- "sell": {}
- },
- "profitshare": {
- "institution": {
- "config": {
- "subareagroupname": "Group",
- "dividetype": "Distribution Algorithm",
- "dividemode": "Distribution Method",
- "dividevalue": "Distribution Value",
- "username": "Creator",
- "createtime": "Creation Time",
- "edit": {
- "title": "Edit",
- "feeName": "Distribution Fee Type",
- "marketName": "Market",
- "subareagroupid": "Group",
- "dividetype": "Distribution Algorithm",
- "dividemode": "Distribution Method",
- "dividevalue": "Distribution Value",
- "tips1": "Please Select Group",
- "tips2": "Please Select Distribution Algorithm",
- "tips3": "Please Select Distribution Method",
- "tips4": "Please Enter Distribution Value"
- },
- "delete": {
- "tips": "Confirm Delete This Configuration?"
- }
- },
- "group": {
- "subareagroupname": "Name",
- "subareagrouptype": "Group Type",
- "remark": "Remarks",
- "username": "Creator",
- "createtime": "Creation Time",
- "edit": {
- "title": "Edit",
- "subareagrouptype": "Group Type",
- "subareagroupname": "Name",
- "remark": "Remarks"
- },
- "delete": {
- "tips": "Confirm Delete Group?"
- },
- "member": {
- "subareagroupname": "Group:",
- "accountname": "Sub-Organization",
- "tips1": "Added Successfully",
- "tips2": "Add Failed:",
- "tips3": "Please Select Organization",
- "tips4": "Confirm Delete Group Sub-Organization?"
- }
- }
- },
- "platform": {
- "group": {}
- }
- },
- "query": {
- "internal": {
- "accountsumm": {
- "marketid": "Market",
- "summode": "Summary Mode",
- "summode1": "Summarize by Account",
- "summode2": "Summarize by Account+Date",
- "date": "Date",
- "goodsId": "GoodsID",
- "accountid": "Trader",
- "excludeaccountidsstr": "Exclude Fund Account",
- "tradeDate": "Trading Day",
- "userfullname": "Account",
- "goodsfullname": "Product Code/Name",
- "membername": "Member",
- "parentname": "Organization",
- "tradeqtysum": "Total Trading Volume",
- "tradeamountsum": "Total Trading Amount",
- "closeplsum": "Total Transfer Profit/Loss",
- "chargesum": "Total Service Fee",
- "tips1": "Please Enter Product ID",
- "tips2": "Enter Trader ID",
- "tips3": "Please Enter Complete Fund Accounts, Separate Multiple With Commas"
- },
- "deliveryorder": {
- "date": "Date",
- "startdate": "Start time",
- "enddate": "End time",
- "wrstandardid": "Spot commodity",
- "ishis": "Historical query",
- "deliveryticket": "Declaration transaction record",
- "deliveryorderid": "Declaration order number",
- "accountidname": "Declarant",
- "xgoodsname": "Main commodity",
- "xdeliveryqty": "Number of lots of the main commodity",
- "deliverygoodsname": "Spot commodity",
- "deliveryqty": "Spot quantity",
- "deliveryorderstatus": "Status",
- "ordertime": "Declaration time",
- "details": {
- "title": "Detailed information of delivery consignment (click selection type)",
- "subtitle1": "Declaration information",
- "subtitle2": "Warehouse receipt information",
- "subtitle3": "Transaction contract",
- "subtitle4": "Auxiliary contract 1",
- "subtitle5": "Auxiliary contract 2",
- "deliveryticket": "Declaration transaction record number:",
- "deliveryorderid": "Consignment order number:",
- "tradedate": "Trading day:",
- "accountid": "Declarant (account):",
- "matchaccountid": "Counterparty (account):",
- "deliveryorderstatus": "Delivery status:",
- "ordertime": "Declaration time:",
- "auditname": "Reviewer:",
- "audittime": "Review time:",
- "auditremark": "Remarks:",
- "retcode": "Error information:",
- "wrstandardcode": "Spot commodity:",
- "deliveryqty": "Spot quantity:",
- "xgoodsname": "Transaction contract:",
- "xdeliveryprice": "Delivery price:",
- "xdeliveryqty": "Number of lots of the contract:",
- "ppricemode": "Price method:",
- "pgoodsname": "Auxiliary contract 1:",
- "pdeliveryprice": "Delivery price:",
- "pdeliveryqty": "Number of lots of the contract:",
- "p2pricemode": "Price method:",
- "p2goodsname": "Auxiliary contract 2:",
- "p2deliveryprice": "Delivery price:",
- "p2deliveryqty": "Number of lots of the contract:"
- }
- },
- "deliverytrade": {
- "startDate": "Start time",
- "endDate": "End time",
- "date": "Date",
- "deliveryid": "Delivery order number",
- "tradedate": "Trading day",
- "buyorsell": "Direction",
- "accountid": "Buyer",
- "matchaccountid": "Seller",
- "deliverygoodsname": "Spot commodity",
- "deliveryqty": "Spot quantity",
- "deliveryprice": "Delivery unit price",
- "deliveryamount": "Total amount of the goods payment",
- "deliverypricemove": "Total amount of premium and discount",
- "deliverycharge": "Delivery service fee",
- "deliveryorderid": "Consignment order number",
- "wrstandardid": "Spot commodity",
- "xgoodsid": "Main commodity",
- "accountid1": "Capital account",
- "ishis": "Delivery data type",
- "tips1": "Please enter the commodity ID",
- "tips2": "Please enter the capital account ID",
- "details": {
- "title": "Details",
- "subtitle1": "Delivery order information",
- "subtitle2": "Warehouse receipt information",
- "subtitle3": "Transaction contract",
- "subtitle4": "Auxiliary contract 1",
- "subtitle5": "Auxiliary contract 2",
- "deliveryid": "Delivery order number:",
- "tradedate": "Trading day:",
- "buyorsell": "Direction:",
- "accountid": "Buyer (account):",
- "matchaccountid": "Seller (account):",
- "deliverytotalamount": "Total delivery amount:",
- "deliveryprice": "Delivery unit price:",
- "deliverycharge": "Delivery service fee:",
- "deliverypricemove": "Total amount of premium and discount:",
- "remaintotalamount": "Remaining total amount:",
- "deliverystatus": "Status:",
- "deliverytime": "Transaction time:",
- "feealgorithm": "Service fee collection method:",
- "memberchargevalue": "Member service fee setting value:",
- "exchchargevalue": "Platform service fee setting value:",
- "deliveryorderid": "Declaration order number:",
- "wrstandardcode": "Spot commodity:",
- "deliveryqty": "Declared quantity:",
- "deliveryrtradeqty": "Transaction quantity:",
- "xgoodsname": "Transaction contract:",
- "xdeliveryprice": "Delivery unit price:",
- "xdeliverycloseqty": "Number of lots of the order:",
- "ppricemode": "Price method:",
- "pgoodsname": "Auxiliary contract 1:",
- "pdeliveryprice": "Delivery price:",
- "pdeliverycloseqty": "Number of lots of the order:",
- "p2pricemode": "Price method:",
- "p2goodsname": "Auxiliary contract 2:",
- "p2deliveryprice": "Delivery price:",
- "p2deliverycloseqty": "Number of lots of the order:"
- }
- },
- "goodssumm": {
- "marketid": "Market",
- "date": "Date",
- "summode": "Summary Mode",
- "summode1": "Summarize by Goods",
- "summode2": "Summarize by Godos+Date",
- "goodsId": "GoodsID",
- "excludeaccountidsstr": "Exclude Fund Account",
- "tradeDate": "Trading Day",
- "goodsfullname": "Product Code/Name",
- "tradeqtysum": "Total Trading Volume",
- "tradeamountsum": "Total Trading Amount",
- "closeplsum": "Total Transfer Profit/Loss",
- "chargesum": "Total Service Fee",
- "tips1": "Please Enter Complete Fund Accounts, Separate Multiple With Commas"
- },
- "institutionsumm": {
- "marketid": "Market",
- "date": "Date",
- "goodsId": "GoodsID",
- "parentuserid": "Organization",
- "userid": "Account ID",
- "accountname": "Account Name",
- "goodscode": "Product Code",
- "goodsname": "Product Name",
- "tradeqtysum": "Total Trading Volume",
- "tradeamountsum": "Total Trading Amount",
- "closeplsum": "Total Transfer Profit/Loss",
- "chargesum": "Total Service Fee"
- },
- "liquidation": {
- "orderId": "Consignment order number",
- "accountNameId": "Account",
- "goodsCodeName": "Commodity code/name",
- "buyOrSell": "Direction",
- "orderPrice": "Forced liquidation consignment price",
- "orderQty": "Forced liquidation quantity",
- "orderAccount": "Forced liquidation amount",
- "orderTime": "Forced liquidation time",
- "marketId": "Market",
- "goodsId": "Commodity",
- "accountId": "Account",
- "tips1": "Please enter the commodity ID"
- },
- "offlinedelivery": {
- "deliveryorderid": "Delivery order number",
- "username": "Applicant",
- "goodsdisplay": "Delivery commodity",
- "buyorselldisplay": "Direction",
- "deliveryqty": "Applied delivery quantity",
- "sucdeliveryqty": "Actual delivery quantity",
- "deliveryprice": "Delivery price",
- "deliveryamount": "Delivery goods payment",
- "matchname": "Counterparty",
- "reqtime": "Application time",
- "orderstatusdisplay": "Delivery status",
- "deliveryorderstatus": "Document status",
- "deliverygoodsname": "Delivery commodity",
- "accountname": "Account",
- "startdate": "Application date",
- "buyorsell": "Direction",
- "cancel": {
- "title": "Details",
- "submit": "Delivery failed",
- "deliveryorderid": "Delivery order number:",
- "username": "Applicant:",
- "goodsdisplay": "Delivery commodity:",
- "buyorsell": "Direction:",
- "deliveryqty": "Delivery quantity:",
- "deliveryprice": "Delivery price:",
- "deliveryamount": "Delivery goods payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Delivery information:",
- "reqtime": "Application time:",
- "orderstatusdisplay": "Delivery status:",
- "auditremark": "Remarks:",
- "tips": "Please enter the remarks"
- },
- "confirm": {
- "title": "Details",
- "submit": "Confirm delivery",
- "deliveryorderid": "Delivery order number:",
- "username": "Applicant:",
- "goodsdisplay": "Delivery commodity:",
- "buyorsell": "Direction:",
- "deliveryqty": "Delivery quantity:",
- "deliveryprice": "Delivery price:",
- "deliveryamount": "Delivery goods payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Delivery information:",
- "reqtime": "Application time:",
- "orderstatusdisplay": "Delivery status:"
- },
- "details": {
- "title": "Details",
- "deliveryorderid": "Delivery order number:",
- "username": "Applicant:",
- "goodsdisplay": "Delivery commodity:",
- "buyorsell": "Direction:",
- "deliveryqty": "Applied delivery quantity:",
- "sucdeliveryqty": "Actual delivery quantity:",
- "cancledeliveryqty": "Canceled delivery quantity:",
- "deliveryprice": "Delivery price:",
- "deliveryamount": "Delivery goods payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Delivery information:",
- "reqtime": "Application time:",
- "orderstatusdisplay": "Delivery status:",
- "remark": "Remarks:",
- "deliverycharge": "Delivery handling fee:",
- "closetime": "Completion time:"
- },
- "pay": {
- "message": "Confirm that the delivery service provider pays the goods payment to the seller?"
- }
- },
- "order": {
- "marketid": "Market",
- "isHis": "Query Type",
- "date": "Date",
- "buildType": "Document Type",
- "orderStatus": "Status",
- "orderId": "Order Number",
- "goodsId": "Product",
- "accountName": "Account",
- "excludeAccountIdsStr": "Exclude Fund Account",
- "accountNameId": "Account",
- "goodsCodeName": "Product Code/Name",
- "buyOrSell": "Direction",
- "orderPrice": "Order Price",
- "orderQty": "Order Quantity",
- "tradeQty": "Trading Quantity",
- "orderTime": "Order Time",
- "tradeDate": "Trading Day",
- "tips1": "Please Enter Complete Fund Accounts, Separate Multiple With Commas",
- "tips2": "Please Enter Product ID",
- "tips3": "Enter Account ID",
- "details": {
- "title": "Details",
- "subtitle1": "Order Information",
- "subtitle2": "Fee-Related Configuration and Collection Value",
- "tradelist1": "Transaction List (History)",
- "tradelist2": "Transaction List (Today)",
- "orderid": "Order Number:",
- "accountname": "Order Account:",
- "parentusername": "Organization:",
- "memberaccountname": "Member:",
- "marketname": "Market:",
- "goodsname": "Product:",
- "listingselecttype": "Listing Type:",
- "delistingtype": "Delisting Type:",
- "buildtype": "Order Type:",
- "buyorsell": "Direction:",
- "orderprice": "Order Price:",
- "optiontype": "Option Type:",
- "orderprice1": "Exercise Price:",
- "premium": "Order Deposit:",
- "orderqty": "Order Quantity:",
- "openqty": "Open Position Quantity:",
- "closeqty": "Close Position Quantity:",
- "cancelqty": "Cancel Order Quantity:",
- "pricemode": "Price Method:",
- "validtype": "Validity Type:",
- "validtime": "Validity Period:",
- "operatetype": "Operation Type:",
- "orderstatus": "Order Status:",
- "ordertime": "Order Time:",
- "clientticket": "Client Serial Number",
- "cancelorderid": "Cancellation Order Number:",
- "preorderid": "Associated Pending Order Number:",
- "relatedid": "Associated Order Number:",
- "retcode": "Error Code:",
- "refgoodsid": "Reference Product:",
- "swapdays": "Swap Days:",
- "marginvalue": "Margin Setting Value:",
- "openexchagechargevalue": "Open Position Exchange Fee Setting Value:",
- "openmemberchargevalue": "Open Position Member Fee Setting Value:",
- "closeexchagechargevalue": "Close Position Exchange Fee Setting Value:",
- "closememberchargevalue": "Close Position Member Fee Setting Value:",
- "freezemargin": "Frozen Margin",
- "freezecharge": "Frozen Service Fee",
- "openfreezecharge": "Open Position Frozen Service Fee",
- "closefreezecharge": "Close Position Unfrozen Service Fee",
- "unfreezemargin": "Unfrozen Margin",
- "unfreezecharge": "Unfrozen Service Fee",
- "openunfreezecharge": "Open Position Unfrozen Service Fee",
- "closeunfreezecharge": "Close Position Unfrozen Service Fee",
- "tradeid": "Transaction Number",
- "matchaccountid": "Counterparty Account",
- "tradeqty": "Transaction Quantity",
- "tradeprice": "Transaction Price",
- "tradeamount": "Transaction Amount",
- "tradeprice1": "Exercise Price",
- "chargevalue": "Service Fee",
- "tradetime": "Transaction Time"
- },
- "export": {
- "tips": "Confirm Export Table Data?"
- }
- },
- "position": {
- "marketid": "Market",
- "buyOrSell": "Direction",
- "isHis": "Document Type",
- "date": "Date",
- "tradeId": "Transaction Number",
- "goodsId": "Product",
- "loginId": "Login Account",
- "accountId": "Account",
- "parentAreaId": "Organization",
- "validHolderQty": "Valid Position",
- "tradeid": "Transaction Number",
- "tradedate": "Trading Day",
- "accountNameId": "Account",
- "goodsCodeName": "Product Code/Name",
- "buyorsell": "Direction",
- "openqty": "Established Quantity",
- "openprice": "Established Price",
- "tradeamount": "Established Amount",
- "holderqty": "Position Quantity",
- "holderprice": "Position Price",
- "holderamount": "Position Amount",
- "actuallYplS": "Floating Profit/Loss",
- "holderdays": "T+N",
- "tradetime": "Transaction Time",
- "usertype": "Account Type",
- "memberusername": "Member",
- "parentusername": "Superior",
- "marketname": "Market",
- "tips1": "Please Enter Product ID",
- "tips2": "Enter Account or Name",
- "tips3": "Please Enter Organization ID",
- "details": {
- "tradeid": "Transaction Number:",
- "tradedate": "Trading Day:",
- "accountid": "Account:",
- "parentusername": "Organization:",
- "memberusername": "Member:",
- "marketname": "Market:",
- "goodsname": "Product:",
- "optiontype": "Option Type:",
- "buyorsell": "Direction:",
- "holderdays": "T+N:",
- "tradetime": "Transaction Time:",
- "openprice": "Opening Price:",
- "holderprice": "Position Price:",
- "openprice1": "Exercise Price:",
- "premium": "Order Deposit:",
- "openqty": "Opening Quantity:",
- "holderqty": "Position Quantity:",
- "expiretype": "Exercise Date Type:",
- "expirecycle": "Exercise Period:",
- "expiredate": "Exercise Date:",
- "refgoodsid": "Reference Product:",
- "swapdays": "Swap Days:",
- "title": "Details"
- },
- "export": {
- "tips": "Confirm Export Table Data?"
- }
- },
- "positionsumm": {
- "marketid": "Market",
- "goodsId": "GoodsID",
- "accname": "User",
- "areauserid": "Organization",
- "loginid": "Login Account",
- "goodsCodeName": "Product Code/Name",
- "accountidname": "Account",
- "loginids": "Login Account",
- "buycurpositionqty": "Total Buy Position Quantity",
- "buycurholderamount": "Total Buy Position Amount",
- "buycuravgprice": "Average Buy Position Price",
- "buyFloatPL": "Position Profit/Loss (Buy)",
- "sellcurpositionqty": "Total Sell Position Quantity",
- "sellcurholderamount": "Total Sell Position Amount",
- "sellcuravgprice": "Average Sell Position Price",
- "sellFloatPL": "Position Profit/Loss (Sell)",
- "qty": "Net Position Volume",
- "buyorsell": "Net Position Direction",
- "floatPL": "Position Profit/Loss (Total)",
- "tips1": "Please Enter Product ID",
- "tips2": "Account or Name Fuzzy Matching",
- "tips3": "Please Enter Organization ID",
- "export": {
- "tips": "Confirm Export Table Data?"
- }
- },
- "trade": {
- "marketid": "Market",
- "isHis": "Query Type",
- "date": "Date",
- "buyOrSell": "Direction",
- "buildType": "Type",
- "tradeTypes": "Transaction Category",
- "tradeTypes1": "Trading Transaction",
- "tradeTypes2": "Settlement Transaction",
- "tradeTypes3": "Risk Control Forced Liquidation",
- "tradeTypes4": "Agreement Transaction",
- "tradeTypes5": "Position Transfer",
- "tradeTypes6": "System Forced Liquidation",
- "tradeTypes7": "Other Transaction",
- "feeSearchType": "Service Fee",
- "feeSearchType1": "Equal to 0",
- "feeSearchType2": "Not Equal to 0",
- "tradeId": "Transaction Number",
- "goodsId": "Product",
- "accountId": "Account",
- "areaUserName": "Organization",
- "tradeid": "Transaction Number",
- "loginid": "Login Account",
- "accountid": "Fund Account",
- "currentname": "Account",
- "membername": "Member",
- "goodsCodeName": "Product Code/Name",
- "buyorsell": "Direction",
- "buildtype": "Type",
- "tradetype": "Transaction Category",
- "tradeprice": "Transaction Price",
- "tradeqty": "Transaction Quantity",
- "tradeamount": "Transaction Amount",
- "chargevalue": "Service Fee",
- "closepl": "Transfer Profit/Loss",
- "tradetime": "Transaction Time",
- "tips1": "Please Enter Product ID",
- "tips2": "Please Enter Account ID",
- "tips3": "Please Enter Code or Name",
- "details": {
- "title": "Details",
- "subtitle1": "Transaction Information",
- "subtitle2": "Fee-Related Configuration and Collection Value",
- "subtitle3": "Close Position Details",
- "tradeid": "Transaction Number:",
- "tradedate": "Transaction Date:",
- "accountid": "Account:",
- "orderid": "Order Number:",
- "parentusername": "Organization:",
- "membername": "Member:",
- "marketname": "Market:",
- "goodsname": "Product:",
- "buildtype": "Transaction Type:",
- "buyorsell": "Direction:",
- "tradeprice": "Transaction Price:",
- "optiontype": "Type:",
- "isconfirmexercise": "Confirmed Exercise:",
- "tradeprice1": "Transaction Price:",
- "premium": "Order Deposit:",
- "tradeqty": "Transaction Quantity:",
- "tradeamount": "Transaction Amount:",
- "closepl": "Close Position Profit/Loss:",
- "actuallypl": "Actual Profit/Loss:",
- "tradetype": "Transaction Category:",
- "tradetime": "Transaction Time:",
- "matchaccountname": "Counterparty Account:",
- "refgoodsid": "Reference Product:",
- "swapdays": "Swap Days:",
- "opencharge": "Opening Fee:",
- "openexchagechargevalue": "Open Position Exchange Fee Setting Value:",
- "openmemberchargevalue": "Open Position Member Fee Setting Value:",
- "closeqty": "Close Position Quantity:",
- "openqty": "Open Position Quantity:",
- "closecharge": "Close Position Fee:",
- "openfeealgorithm": "Opening Fee Collection Method:",
- "closefeealgorithm": "Close Position Fee Collection Method:",
- "closeexchagechargevalue": "Close Position Member Fee Setting Value:",
- "closememberchargevalue": "Close Position Member Fee Setting Value:",
- "opentradeid": "Associated Opening Transaction Number",
- "buyorsell1": "Direction",
- "openprice": "Opening Price",
- "holderprice": "Position Price",
- "closeprice": "Close Position Price",
- "closetime": "Close Position Time"
- },
- "export": {
- "tips": "Confirm Export Table Data?"
- }
- },
- "tradesumm": {
- "tradeDate": "Trading day",
- "loginid": "Login account",
- "currentname": "User name",
- "parentusername": "Institution to which it belongs",
- "goodscode": "Commodity code",
- "goodsname": "Commodity name",
- "buyorselldisplay": "Direction",
- "tradeqty": "Transaction quantity",
- "tradepriceavg": "Transaction price",
- "tradeamount": "Transaction amount",
- "totalcharge": "Handling fee",
- "cycletime": "Date",
- "goodsid": "Commodity",
- "tips1": "Please enter the commodity ID",
- "tradetypes": "Transaction category",
- "tradetypes1": "Transaction transaction",
- "tradetypes2": "Delivery transaction",
- "tradetypes3": "Risk control forced liquidation",
- "tradetypes4": "Agreement transaction",
- "tradetypes5": "Position transfer",
- "tradetypes6": "System forced liquidation",
- "tradetypes7": "Other transactions"
- }
- },
- "order": {
- "close": {
- "date": "Date",
- "startdate": "Start Date",
- "enddate": "End Date",
- "isHis": "Query Type",
- "goodsid": "Product",
- "buyorsell": "Direction",
- "tradeid": "Order Number",
- "areauserid": "Organization",
- "tradetype": "Termination Type",
- "account": "Customer",
- "opentradeid": "Order Number",
- "loginid": "Login Account",
- "currentname": "User",
- "goodsfullname": "Product/Code",
- "buyorselldisplay": "Order Direction",
- "opennum": "Order Quantity",
- "openprice": "Order Price",
- "closenum": "Termination Quantity",
- "closeprice": "Termination Price",
- "closepl": "Termination Profit/Loss",
- "repayeddeposit": "Released Occupied Funds",
- "tradetypedisplay": "Termination Type",
- "tradetime": "Order Time",
- "closetime": "Termination Time",
- "closeid": "Termination Number"
- },
- "delivery": {
- "deliveryorderid": "Settlement Number",
- "username": "Applicant",
- "goodsdisplay": "Settlement Product",
- "buyorselldisplay": "Direction",
- "deliveryqty": "Applied Settlement Quantity",
- "sucdeliveryqty": "Actual Settlement Quantity",
- "deliveryprice": "Settlement Price",
- "deliveryamount": "Settlement Payment",
- "matchname": "Counterparty",
- "reqtime": "Application Time",
- "orderstatusdisplay": "Settlement Status",
- "deliveryorderstatus": "Document Status",
- "deliverygoodsname": "Settlement Product",
- "accountname": "Account",
- "startdate": "Application Date",
- "buyorsell": "Direction",
- "cancel": {
- "title": "Details",
- "confirm": "Settlement Failed",
- "deliveryorderid": "Settlement Number:",
- "username": "Applicant:",
- "goodsdisplay": "Settlement Product:",
- "buyorsell": "Direction:",
- "deliveryqty": "Settlement Quantity:",
- "deliveryprice": "Settlement Price:",
- "deliveryamount": "Settlement Payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Settlement Information:",
- "reqtime": "Application Time:",
- "orderstatusdisplay": "Settlement Status:",
- "auditremark": "Remarks:",
- "tips1": "Please Enter Remarks"
- },
- "confirm": {
- "title": "Details",
- "confirm": "Confirm Settlement",
- "deliveryorderid": "Settlement Number:",
- "username": "Applicant:",
- "goodsdisplay": "Settlement Product:",
- "buyorsell": "Direction:",
- "deliveryqty": "Settlement Quantity:",
- "deliveryprice": "Settlement Price:",
- "deliveryamount": "Settlement Payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Settlement Information:",
- "reqtime": "Application Time:",
- "orderstatusdisplay": "Settlement Status:"
- },
- "details": {
- "title": "Details",
- "deliveryorderid": "Settlement Number:",
- "username": "Applicant:",
- "goodsdisplay": "Settlement Product:",
- "buyorselldisplay": "Direction:",
- "deliveryqty": "Applied Settlement Quantity:",
- "sucdeliveryqty": "Actual Settlement Quantity:",
- "cancledeliveryqty": "Cancelled Settlement Quantity:",
- "deliveryprice": "Settlement Price:",
- "deliveryamount": "Settlement Payment:",
- "matchname": "Counterparty:",
- "deliveryinfo": "Settlement Information:",
- "reqtime": "Application Time:",
- "orderstatusdisplay": "Settlement Status:",
- "remark": "Remarks:",
- "deliverycharge": "Settlement Fee:",
- "closetime": "Completion Time:"
- },
- "pay": {
- "title": "Prompt",
- "tips1": "Confirm that the settlement service provider will pay the seller?"
- }
- },
- "list": {
- "tradeid": "Order Number",
- "accountname": "Customer",
- "membername": "Organization",
- "goodscode": "Product/Code",
- "buyorsell": "Direction",
- "holderprice": "Order Price",
- "opennum": "Original Quantity",
- "holdernum": "Order Quantity",
- "freezenum": "Frozen Quantity",
- "depositratedisplay": "Risk Rate",
- "holderamount": "Order Amount",
- "payeddeposit": "Occupied Funds",
- "tradetimestr": "Order Time",
- "goodsid": "Product",
- "parantareaid": "Organization",
- "validholderqty": "Valid Position",
- "tips1": "Please Enter Product ID",
- "tips2": "Please Enter Organization ID"
- },
- "monitor": {
- "tips1": "% (Default>50%; Next Refresh:",
- "start": "Start Monitoring",
- "stop": "Stop Monitoring",
- "buyBackCount": "Total Buy Quantity",
- "sellCount": "Total Sell Quantity:",
- "netcurpositionqty": "Net Total Quantity:",
- "avgholderprice": "Average Order Price:",
- "totalfloatpl": "Total Floating Balance:",
- "userfullname": "Customer",
- "goodsfullname": "Product/Code",
- "buyorselldisplay": "Direction",
- "tradetimestr": "Order Time",
- "holderprice": "Order Price",
- "lastprice": "Current Price",
- "depositratedisplay": "Risk Rate",
- "floatpl": "Floating Profit/Loss",
- "holdernum": "Order Quantity",
- "freezenum": "Frozen Quantity",
- "holderamount": "Order Amount",
- "payeddeposit": "Occupied Funds",
- "tradeid": "Order Number",
- "risk": "Monitor Current Risk Rate",
- "goodsfullname1": "Product",
- "buyorsell": "Direction",
- "parentusername": "Organization"
- },
- "report": {
- "startDate": "Start Date",
- "enddate": "End Date",
- "reckondate": "Date",
- "tradeid": "Order Number",
- "userfullname": "Customer",
- "areafullname": "Member",
- "goodsfullname": "Product/Code",
- "buyorselldisplay": "Direction",
- "holderprice": "Order Price",
- "opennum": "Original Quantity",
- "tradeamount": "Original Amount",
- "holdernum": "Order Quantity",
- "holderamount": "Order Amount",
- "payeddeposit": "Occupied Funds",
- "freezenum": "Frozen Quantity",
- "deliverynum": "Settlement Quantity",
- "closepl": "Termination Profit/Loss",
- "floatpl": "Floating Profit/Loss",
- "depositratedisplay": "Risk Rate",
- "operatorcode": "Operator",
- "date": "Date",
- "goodsid": "Product",
- "currentUserId": "Trader",
- "areauserid": "Member"
- },
- "terminate": {
- "date": "Date",
- "startDate": "Start Date",
- "endDate": "End Date",
- "opentradeid": "Order Number",
- "userfullname": "Customer",
- "memberfullname": "Member",
- "goodsfullname": "Product/Code",
- "holderbuyorsell": "Order Direction",
- "openprice": "Order Price",
- "opennum": "Order Quantity",
- "opentime": "Order Time",
- "closeprice": "Termination Price",
- "closenum": "Termination Quantity",
- "closepl": "Termination Profit/Loss",
- "depositrate": "Risk Rate",
- "closetime": "Termination Time",
- "ishis": "Query Type",
- "goodsid": "Product",
- "accountname": "User"
- }
- },
- "other": {
- "bank_inout": {
- "date": "Trading Day",
- "accountcode": "Fund Account",
- "accountname": "User/Organization",
- "usertype": "Account Type",
- "parentaccountname": "Parent Organization",
- "cusbankname": "Custodian Bank",
- "tradedate": "Trading Day",
- "amount": "Amount",
- "charge": "Deposit/Withdrawal Service Fee",
- "currency": "Currency",
- "executetype": "Type",
- "applystatus": "Status",
- "updatetime": "Update Time",
- "loginid": "Login Account",
- "accountname1": "Trader",
- "tips1": "Enter Trader ID",
- "details": {
- "title": "Details",
- "subtitle1": "Deposit/Withdrawal Request Information",
- "flag1": "Review Rejected",
- "flag2": "Review Approved",
- "flag3": "Secondary Review Rejected",
- "flag4": "Secondary Review Approved",
- "accountcode": "Fund Account:",
- "balance": "Previous Day Total Assets:",
- "usedmargin": "Current Trading Margin:",
- "cusbankname": "Custodian Bank:",
- "bankaccountno": "Bank Card Number:",
- "bankid": "Bank Branch:",
- "branchbankname": "Bank Branch Name:",
- "bankaccountname": "Bank Card Account Name:",
- "tradedate": "Trading Day:",
- "executetype": "Application Type:",
- "amount": "Amount:",
- "charge": "Deposit/Withdrawal Service Fee:",
- "currency": "Currency:",
- "extoperateid": "Account Service Serial Number:",
- "exchticket": "Bank Service Serial Number:",
- "bankticket": "Bank Transaction Number:",
- "extoperateid1": "Trading Service Serial Number:",
- "curdebt": "Debt:",
- "updatetime": "Update Time:",
- "applyremark": "Remarks:",
- "applystatus": "Status:",
- "remark2": "Rejection/Failure Reason:",
- "username": "Reviewer:",
- "audittime": "Review Time:",
- "checkerrorflag": "Reconciliation Error Flag:",
- "sex": "Gender:",
- "legal_name": "Legal Representative Name:",
- "legal_cert_type": "Legal Representative ID Type:",
- "legal_cert_code": "Legal Representative ID Number:",
- "agent_name": "Agent Name:",
- "agent_cert_type": "Agent ID Type:",
- "agent_cert_code": "Agent ID Number:",
- "member_code": "Member Code:",
- "legal_contact": "Legal Representative Contact Number:",
- "agent_contact": "Agent Contact Number:",
- "bank_branch_name": "Bank Card Branch Name:",
- "attachment": "Attachment:",
- "certificate_photo_url": "View:"
- }
- },
- "bank_statement": {
- "logType": "Query Type",
- "operatetype": "Business Type",
- "date": "Date",
- "accountName": "Account",
- "accountId": "Fund Account",
- "memberName": "Parent Organization",
- "amount": "Amount",
- "businessCodeName": "Business Type",
- "operateType": "Operation Time",
- "marketName": "Market",
- "relationOrderId": "Related Order Number",
- "tips1": "Enter Fund Account ID",
- "export": {
- "tips": "Confirm export table data?"
- }
- },
- "config": {},
- "esign": {
- "userfullname": "User",
- "loginid": "Login Account",
- "esigntype": "Agreement Type",
- "templatetype": "Template Type",
- "templatename": "Agreement Name",
- "recordstatus": "Signing Status",
- "updatetimestr": "Update Time",
- "userid": "User ID",
- "tips1": "Please enter user ID",
- "tips2": "Please select signing status"
- },
- "institution_bank": {
- "accountid": "Fund Account Number",
- "accountcodename": "Organization Name",
- "balance": "Opening Balance",
- "currentbalance": "Closing Balance",
- "inamount": "Today's Deposit",
- "outamount": "Today's Withdrawal",
- "closepl": "Transfer Profit/Loss",
- "floatpl": "Floating Profit/Loss",
- "freezecharge": "Frozen Service Fee",
- "paycharge": "Service Fee",
- "otherpay": "Other Expenses",
- "otherincome": "Other Income",
- "freezemargin": "Frozen Margin",
- "usedmargin": "Used Margin",
- "otherfreezemargin": "Other Frozen Assets",
- "outamountfreeze": "Withdrawal Freeze",
- "avaiablemoney": "Available Funds",
- "avaiableoutmoney": "Withdrawable Funds",
- "floatnetvalue": "Current Net Value",
- "cur_risk_rate": "Risk Rate",
- "memberid": "Member",
- "accountstatus": "Organization Status",
- "sortfield": "Sort",
- "sorttype1": "Descending",
- "sorttype2": "Ascending",
- "nolimit": "No Limit"
- },
- "investor_bank": {
- "accountid": "Fund Account Number",
- "accountcodename": "Organization Name",
- "balance": "Opening Balance",
- "currentbalance": "Closing Balance",
- "inamount": "Today's Deposit",
- "outamount": "Today's Withdrawal",
- "closepl": "Transfer Profit/Loss",
- "floatpl": "Floating Profit/Loss",
- "freezecharge": "Frozen Service Fee",
- "paycharge": "Service Fee",
- "otherpay": "Other Expenses",
- "otherincome": "Other Income",
- "freezemargin": "Frozen Margin",
- "usedmargin": "Used Margin",
- "otherfreezemargin": "Other Frozen Assets",
- "outamountfreeze": "Withdrawal Freeze",
- "avaiablemoney": "Available Funds",
- "avaiableoutmoney": "Withdrawable Funds",
- "floatnetvalue": "Current Net Value",
- "cur_risk_rate": "Risk Rate",
- "accountcode": "Trader",
- "memberid": "Member",
- "sortfield": "Sort",
- "sorttype1": "Descending",
- "sorttype2": "Ascending",
- "loginid": "Login Account",
- "parentarea": "Parent Organization",
- "nolimit": "No Limit"
- }
- },
- "warehouse_receipt": {
- "wrsumm": {
- "isHis": "Query Type",
- "date": "Date",
- "wrsids": "Warehouse Standards",
- "wareids": "Warehouse",
- "wrstandardname": "Spot Goods",
- "warehousename": "Warehouse",
- "totalqty": "Total Quantity",
- "avaliableqty": "Normal",
- "freezeqty": "Frozen",
- "increaseqty": "Today's Increase",
- "decreaseqty": "Today's Decrease",
- "enumdicname": "Unit",
- "details": {
- "wrstandardname": "Spot Goods:",
- "warehousename": "Warehouse:",
- "enumdicname": "Unit:",
- "selectedUsers": "Please Select Holder",
- "accountname": "Holder",
- "accountid": "Fund Account Number",
- "ladingbillid": "Warehouse Receipt Number",
- "qty": "Quantity",
- "freezerqty": "Frozen",
- "wrfactortypename": "Spot Goods Item Value"
- }
- }
- },
- "warehouse_receipt_order": {
- "order": {
- "marketid": "Market",
- "accountid": "Fund Account",
- "wrtradeorderid": "Order Number",
- "tradeid": "Order Number",
- "userid": "Member or Trader",
- "marketname": "Market",
- "wrtradetype": "Order Type",
- "wrtradetype1": "Type",
- "buyorsell": "Direction",
- "wrstandard": "Code/Name",
- "wrfactortypename": "Properties",
- "orderqtyname": "Order Quantity",
- "tradeqtyname": "Transaction Quantity",
- "wrtradeorderstatus": "Status",
- "validtime": "Valid Time",
- "ordertime": "Order Time",
- "tradedate": "Trading Day",
- "tips1": "Please Select Market",
- "details": {
- "title": "Details",
- "subtitle1": "Price Information",
- "tradedate": "Trading Day:",
- "wrtradeorderid": "Order Number:",
- "userName": "Username:",
- "accountid": "Fund Account Number:",
- "wrtradetype": "Document Type:",
- "buyorsell": "Direction:",
- "isspecified": "Specified Counterparty:",
- "wrstandardname": "Spot Goods:",
- "wrFactorTypeName": "Warehouse Receipt:",
- "marketName": "Market:",
- "orderqty": "Order Quantity:",
- "tradeqty": "Transaction Quantity:",
- "wrtradeorderstatus": "Status:",
- "ordertime": "Order Time:",
- "attachment1": "Attachment 1:",
- "attachment2": "Attachment 2:",
- "remark": "Remarks:",
- "goodsUnitName": "Price Settings:",
- "canbargain": "Negotiable:",
- "wrpricetype": "Pricing Method:",
- "fixedprice": "Fixed Price:",
- "pricedisplaymode": "Display Mode:",
- "pricemove": "Premium/Discount:",
- "pricefactor": "Price Coefficient:",
- "goodscode": "Product",
- "pricefactor1": "Product Price Coefficient",
- "weightratio": "Product Weight Coefficient",
- "pricemove1": "Premium/Discount"
- }
- },
- "trade": {
- "marketid": "Market",
- "accountid": "Fund Account",
- "wrtradeorderid": "Transaction Number",
- "userid": "Member or Trader",
- "marketname": "Market",
- "wrtradetype": "Order Type",
- "wrtradetype1": "Type",
- "buyorsell": "Direction",
- "wrstandard": "Code/Name",
- "wrfactortypename": "Properties",
- "orderqtyname": "Quantity",
- "realtradeqtyname": "Actual Quantity",
- "tradeprice": "Transaction Price",
- "realtradeamount": "Actual Amount",
- "performanceplanid": "Performance Number",
- "handlestatus": "Performance Status",
- "tradeid": "Transaction Number",
- "tradetime": "Transaction Time",
- "tradedate": "Trading Day",
- "tips1": "Please Select Market"
- }
- }
- },
- "report": {
- "account": {
- "cycletype": "Report Type",
- "cycletime": "Date",
- "quarter": "Quarter",
- "accountid": "Fund Account",
- "relatedname": "Account:",
- "accountid1": "Fund Account:",
- "invloginids": "Login Account:",
- "tips1": "Please Enter Fund Account",
- "bank": {
- "balance": "Opening Balance",
- "currentbalance": "Closing Balance",
- "inamount": "Period Deposit",
- "outamount": "Period Withdrawal",
- "otherincome": "Other Income",
- "otherpay": "Other Expenses",
- "closepl": "Close Position Profit/Loss",
- "reckonpl": "Settlement Profit/Loss",
- "usedmargin": "Used Margin",
- "freezemargin": "Frozen Margin",
- "otherfreezemargin": "Other Frozen Assets",
- "paycharge": "Total Service Fee Expense",
- "tradecharge": "Trading Fee",
- "deliverycharge": "Settlement Fee"
- },
- "performance": {
- "amount": "Total Performance Amount",
- "buypaidamount": "Frozen/Deducted Amount",
- "sellreceivedamount": "Received Amount",
- "buytodayamount": "Deduction/Freeze Amount",
- "selltodayamount": "Collection Amount"
- },
- "position": {
- "goodscode": "Code",
- "goodsname": "Product",
- "buypositionqty": "Initial Buy Position Quantity",
- "buyholderamount": "Initial Total Buy Position Amount",
- "buycurpositionqty": "Current Total Buy Position Quantity",
- "buycurholderamount": "Current Total Buy Position Amount",
- "sellpositionqty": "Initial Sell Position Quantity",
- "sellholderamount": "Initial Total Sell Position Amount",
- "sellcurpositionqty": "Current Sell Position Quantity",
- "sellcurholderamount": "Current Total Sell Position Amount"
- },
- "trade": {
- "goodscode": "Code",
- "goodsname": "Product",
- "marketname": "Market",
- "tradeqty": "Trading Volume",
- "openqty": "Open Position Quantity",
- "closeqty": "Close Position Quantity",
- "tradeamount": "Transaction Amount",
- "closepl": "Close Position Profit/Loss",
- "opencharge": "Open Position Fee",
- "closecharge": "Close Position Fee"
- },
- "wrorder": {
- "deliverygoodsname": "Spot Goods Type",
- "wrstandardname": "Spot Goods",
- "startqty": "Initial Quantity",
- "totalqty": "Final Quantity",
- "usedqty": "Available Quantity",
- "freezeqty": "Frozen Quantity",
- "increaseqty": "Purchase Quantity",
- "decreaseqty": "Sales Quantity"
- }
- },
- "bank": {
- "tradedate": "Trading Day",
- "cusbankname": "Settlement Bank",
- "balance": "Previous Day Balance",
- "totalinamout": "Total Deposit Amount",
- "inamoutcout": "Total Deposit Count",
- "totalincharge": "Deposit Service Fee",
- "totaloutamount": "Total Withdrawal Amount",
- "outamountcout": "Total Withdrawal Count",
- "totaloutcharge": "Withdrawal Service Fee",
- "currentbalance": "Today's Balance",
- "totalpl": "Profit/Loss",
- "totalcharge": "Total Platform Service Fee",
- "date": "Date",
- "startdate": "Start Date",
- "enddate": "End Date",
- "tips1": "Name/Code Fuzzy Match"
- },
- "broker": {
- "cycletype": "Report Type",
- "reckondate": "Date",
- "quarter": "Quarter",
- "accountid": "Parent Organization",
- "isson": "Include Sub-organizations",
- "cycleTime": "Date",
- "accountName": "Broker Member",
- "investorTotalNum": "Number of Dealer Accounts",
- "investorTrialNum": "Accounts Pending Initial Review",
- "investorRetrialNum": "Accounts Pending Re-review",
- "investorAmount": "Ending Balance",
- "investorusedmargin": "Used Margin",
- "investorClosePl": "Transfer Profit/Loss",
- "investorReckonPl": "Settlement Profit/Loss",
- "investorBuyDeliveryAmount": "Settlement Amount",
- "investorBuyTradeQty": "Buy Transaction Quantity",
- "investorSellTradeQty": "Sell Transaction Quantity",
- "investorBuyHoldQty": "Buy Position Quantity",
- "investorSellHoldQty": "Sell Position Quantity"
- },
- "fee": {
- "tradedate": "Trading Date",
- "areaname": "Name",
- "areatype": "Role",
- "bankname": "Settlement Bank",
- "totalcount": "Total Transactions",
- "totalfee": "Total Fee",
- "cusbankname": "Settlement Bank",
- "date": "Date",
- "startdate": "Start Date",
- "enddate": "End Date",
- "tips1": "Name/number fuzzy matching"
- },
- "goods": {
- "marketname": "Market",
- "goodsname": "Product/Code",
- "totalorderqty": "Total Order Quantity",
- "tradeqty": "Total Trading Volume",
- "totalholdqty": "Total Position Quantity",
- "tradelot": "Total Transaction Count",
- "tradeamount": "Total Transaction Amount",
- "totalcharge": "Total Fee",
- "totalinterest": "Total Rollover Fee",
- "orderaccountcount": "Number of Order Accounts",
- "tradeaccountcount": "Number of Trading Accounts",
- "holdaccountcount": "Number of Position Accounts",
- "markettradeqty": "Market Trading Proportion",
- "cycletype": "Report Type",
- "reckondate": "Date",
- "quarter": "Quarter",
- "sum": "Summary"
- },
- "institution": {
- "reckondate": "Date",
- "accountid": "Fund Account",
- "accountname": "Account",
- "balance": "Opening Balance",
- "currentbalance": "Ending Balance",
- "inamount": "Deposit Amount",
- "outamount": "Withdrawal Amount",
- "closepl": "Transfer Profit/Loss",
- "floatpl": "Floating Profit/Loss",
- "reckonpl": "Settlement Profit/Loss",
- "paycharge": "Fee",
- "interestCharge": "Rollover Fee",
- "otherincome": "Profit Sharing Income",
- "usedmargin": "Used Funds",
- "freezemargin": "Frozen Funds",
- "outamountfreeze": "Withdrawal Freeze",
- "avaiablemoney": "Available Funds",
- "avaiableoutmoney": "Withdrawable Funds",
- "floatnetvalues": "Current Net Value",
- "cycletype": "Report Type",
- "quarter": "Starting Quarter",
- "quarterend": "Ending Quarter",
- "accountstatus": "Organization Status",
- "roles": "Organization Role",
- "tips1": "Query >= count value"
- },
- "investor": {
- "cycletype": "Report Type",
- "reckondate": "Date",
- "quarter": "Quarter",
- "accountid": "Dealer",
- "memberid": "Parent Member",
- "subareaid": "Parent Sub-organization",
- "brokerid": "Parent Broker",
- "inamount": "Deposit Amount",
- "outamount": "Withdrawal Amount",
- "loginids": "Login Account",
- "accountid1": "Fund Account",
- "accountname": "Account Name",
- "memberaccountname": "Parent Member",
- "balance": "Opening Balance",
- "currentbalance": "Ending Balance",
- "closepl": "Transfer Profit/Loss",
- "floatpl": "Floating Profit/Loss",
- "reckonpl": "Settlement Profit/Loss",
- "paycharge": "Fee",
- "interestCharge": "Rollover Fee",
- "usedmargin": "Used Funds",
- "freezemargin": "Frozen Funds",
- "otherfreezemargin": "Other Frozen Funds",
- "outamountfreeze": "Withdrawal Freeze",
- "avaiablemoney": "Available Funds",
- "avaiableoutmoney": "Withdrawable Funds",
- "riskrate": "Risk Rate",
- "tips1": "Query for data greater than or equal to this value",
- "tips2": "Please enter dealer ID",
- "tips3": "Please enter member ID",
- "tips4": "Please enter the sub-organization ID",
- "tips5": "Please enter broker ID"
- },
- "profitshare": {
- "cycletype": "Report Type",
- "tradedate": "Date",
- "quarter": "Quarter",
- "isson": "Include Sub-organizations",
- "areatype": "Role",
- "areaaccountid": "Settlement Fund Account",
- "goodsname": "Product/Market",
- "searchtype": "Fee Type",
- "totalcount": "Total Transactions",
- "totalfee": "Total Fee",
- "divideamount": "Profit Sharing Amount"
- },
- "recalculate": {
- "date": "Date",
- "startDate": "Trading Date",
- "startdate": "Start Date",
- "enddate": "End Date",
- "tips1": "Report Recalculation",
- "tips2": "*Select the trading day, and the weekly, monthly, quarterly and annual report data of the current trading day will be recalculated!",
- "tips3": "*Wait 10 to 20 minutes to check!",
- "tips4": "Recalculate"
- },
- "trade": {
- "cycletype": "Report Type",
- "cycletime": "Date",
- "quarter": "Quarter",
- "userid": "Recommended Account",
- "goodsname": "Product Code/Name",
- "marketname": "Market",
- "tradeqty": "Trading Volume",
- "openqty": "Opening Quantity",
- "closeqty": "Transfer Quantity",
- "tradeamount": "Transaction Amount",
- "opencharge": "Opening Fee",
- "closecharge": "Transfer Fee",
- "tips1": "Please Enter Account ID"
- }
- },
- "settlement": {
- "holdtransfer": {},
- "profitsharepay": {
- "date": "Date",
- "tradedate": "Trading Date",
- "totalcount": "Total Transactions",
- "divideamount": "Total Profit Sharing Amount",
- "totalpay": "Total Paid",
- "details": {
- "tradedate": "Trading Date:",
- "shareorgname": "Profit Sharing Organization",
- "areatype": "Profit Sharing Organization Role",
- "totalcount": "Total Transactions",
- "totalfee": "Total Fee",
- "divideamount": "Total Profit Sharing Amount",
- "status": "Status",
- "paystatus": "Payment Status",
- "tips1": "Please select profit sharing payments to confirm",
- "tips2": "Batch confirm?",
- "details": {
- "title": "Details",
- "tradedate": "Trading Date:",
- "areaid": "Profit Sharing Organization:",
- "areatype": "Profit Sharing Organization Role:",
- "totalcount": "Total Transactions:",
- "totalfee": "Total Fee:",
- "divideamount": "Total Profit Sharing Amount:",
- "paystatus": "Status:",
- "payerid": "Payer:",
- "paytime": "Payment Time:",
- "remark": "Description:"
- }
- }
- }
- },
- "system": {
- "client_log": {},
- "exrate": {},
- "ip_blacklist": {},
- "login_failed": {
- "loginaccount": "Login Account",
- "operatetime": "Login Time",
- "lienttype": "Client Type",
- "loginip": "Login IP",
- "description": "Failure Reason",
- "tips1": "Login User:",
- "tips2": "Please enter your account number or user name"
- },
- "menu": {
- "title": "Menu",
- "resourceCode": "Code",
- "url": "Path",
- "icon": "Icon",
- "edit": {
- "title": "Edit",
- "authType": "Permission Type",
- "resourceCode": "Permission Code",
- "resourceTitle": "Permission Title",
- "resourceLevel": "Level",
- "invalidTitle": "[Invalid Title]",
- "parentitle": "Top-level Menu",
- "icon": "Icon",
- "url": "URL",
- "component": "Component Path",
- "remark": "Remark",
- "sort": "Sort",
- "show": "Show",
- "buttontype": "Button Style",
- "default": "Default",
- "primary": "Primary",
- "success": "Success",
- "info": "Info",
- "warning": "Warning",
- "danger": "Danger",
- "exist": "Exists",
- "code": "Code"
- },
- "delete": {
- "tips": "Do you want to delete this menu?"
- }
- },
- "operation_log": {
- "resourcecode": "Operation Module Code",
- "resourcename": "Operation Module Name",
- "logincode": "Login Account",
- "username": "Operator",
- "areaname": "Parent Organization",
- "content": "Operation Content",
- "operatetime": "Operation Time",
- "tips1": "Please enter username for fuzzy search",
- "tips2": "Please enter operation content for fuzzy search",
- "tips3": "Operation Content:",
- "tips4": "Operator:"
- },
- "service_log": {},
- "setting": {},
- "user_blacklist": {}
- },
- "routes": {
- "base": "Basic Data Management",
- "base_sysparams": "System Parameters Management",
- "base_sysparams_modify": "Modify",
- "base_dictionary": "Data dictionary management",
- "base_dictionary_update": "Update cache",
- "base_dictionary_add": "Add",
- "base_dictionary_modify": "Modify",
- "base_dictionary_delete": "Delete",
- "base_region": "Region management",
- "base_region_add": "Add",
- "base_region_modify": "Modify",
- "base_region_delete": "Delete",
- "base_acctopencfg": "Online account opening configuration",
- "base_errorcode": "Error code management",
- "base_errorcode_modify": "Modify",
- "base_banner": "Terminal image management",
- "base_banner_add": "Add",
- "base_banner_details": "Details",
- "base_banner_modify": "Modify",
- "base_marketsection": "Market sector settings",
- "base_marketsection_add": "Add",
- "base_marketsection_details": "Details",
- "base_marketsection_modify": "Modify",
- "base_marketsection_delete": "Delete",
- "system": "System Operation Management",
- "system_setting": "System Settings",
- "system_servicelog": "System Service Operation Log",
- "system_operationlog": "Administrator Operation Log",
- "system_loginfailed": "Login Exception Query",
- "system_clientlog": "Terminal Login Log",
- "system_userblacklist": "Account Blacklist Management",
- "system_ipblacklist": "IP Blacklist Management",
- "system_exrate": "System Exchange Rate Management",
- "marketrun": "Market Operation Management",
- "marketrun_market": "Market Monitoring",
- "marketrun_exception": "Error Management",
- "marketrun_monitor": "Monitoring Management",
- "marketrun_monitor_liquidation": "Liquidation Monitoring",
- "marketrun_monitor_account": "Account Risk Monitoring",
- "marketrun_monitor_marketer": "Market Maker Risk Monitoring",
- "marketrun_monitor_marketer_positionsumm": "Position Summary",
- "marketrun_monitor_positionsumm": "Position Summary Monitoring",
- "marketrun_monitor_user": "Online User Query",
- "marketrun_monitor_user_alloffline": "Force All Users Offline",
- "marketrun_monitor_user_offline": "Offline",
- "market": "Trading market management",
- "market_contract": "Contract market management",
- "market_contract_runtime": "Operation period management",
- "market_contract_services": "Transaction service settings",
- "market_contract_riskrate": "Risk rate type settings",
- "market_contract_runstep": "Delivery period management",
- "market_contract_template": "Delivery performance template",
- "market_contract_calendar": "Holiday management",
- "market_warehouse": "Warehouse receipt market management",
- "market_warehouse_template": "Spot performance template",
- "market_warehouse_runtime": "Operation period management",
- "market_warehouse_services": "Transaction service settings",
- "market_warehouse_calendar": "Holiday management",
- "market_goods": "Commodity management",
- "market_goods_group": "Commodity group settings",
- "market_goods_settings": "Commodity settings",
- "market_goods_addition": "New commodity review",
- "market_goods_modification": "Commodity change review",
- "market_goods_suspension": "Commodity suspension management",
- "market_goods_delisting": "Commodity delisting management",
- "market_goods_liquidation": "Commodity forced liquidation settings",
- "market_quote": "Market quotation settings",
- "market_quote_dst": "Daylight saving time group management",
- "market_quote_source": "Market quotation source group management",
- "market_quote_runstep": "Group period management",
- "market_quote_external": "External platform management",
- "market_maker": "Market making management",
- "market_maker_quoter": "Quotation provider management",
- "market_maker_level": "Second-level counterparty management",
- "market_maker_manual": "Manual quotation",
- "capacity": "Capacity pre-sale management",
- "capacity_forward": "Forward order management",
- "capacity_forward_orderapply": "Order application",
- "capacity_forward_orderinitreview": "Order preliminary review",
- "capacity_forward_orderrereview": "Order final review",
- "capacity_forward_cancelapply": "Cancellation application",
- "capacity_forward_cancelinitreview": "Cancellation preliminary review",
- "capacity_forward_cancelrereview": "Cancellation final review",
- "capacity_forward_list": "Order query",
- "capacity_presale": "Pre-sale management",
- "capacity_presale_apply": "Pre-sale application",
- "capacity_presale_initreview": "Pre-sale preliminary review",
- "capacity_presale_rereview": "Pre-sale final review",
- "capacity_presale_list": "Pre-sale query",
- "capacity_presale_result": "Pre-sale result",
- "capacity_presale_position": "Earnest money position holding",
- "member": "Member Organization Management",
- "member_institution": "Organization Management",
- "member_institution_role": "System Role Management",
- "member_institution_role_details": "Details",
- "member_institution_role_users": "Users",
- "member_institution_open": "Organization Account Application",
- "member_institution_open_add": "Add",
- "member_institution_open_modify": "Modify",
- "member_institution_open_cancel": "Cancel",
- "member_institution_open_audit": "Audit",
- "member_institution_open_delete": "Delete",
- "member_institution_user": "Organization Profile Management",
- "member_institution_user_details": "Details",
- "member_institution_user_modify": "Modify",
- "member_institution_user_close": "Deactivate",
- "member_institution_user_recover": "Recover",
- "member_institution_user_account": "Fund Account",
- "member_institution_user_login": "Login Account",
- "member_institution_user_terminal": "Terminal Account",
- "member_institution_user_pay": "Payment Information",
- "member_institution_operation": "Operations Organization Management",
- "member_institution_operation_add": "Add",
- "member_institution_operation_details": "Details",
- "member_institution_operation_modify": "Modify",
- "member_institution_operation_delete": "Delete",
- "member_institution_marketing": "Marketing Center Management",
- "member_institution_marketing_add": "Add",
- "member_institution_marketing_details": "Details",
- "member_institution_marketing_modify": "Modify",
- "member_institution_marketing_broker": "Broker Member",
- "member_institution_warehouse": "Warehouse Organization Management",
- "member_institution_warehouse_add": "Add",
- "member_institution_warehouse_details": "Details",
- "member_institution_warehouse_modify": "Modify",
- "member_institution_self": "Proprietary Member Management",
- "member_institution_self_add": "Add",
- "member_institution_self_details": "Details",
- "member_institution_self_modify": "Modify",
- "member_institution_self_delete": "Delete",
- "member_institution_broker": "Broker Member Management",
- "member_institution_broker_add": "Add",
- "member_institution_broker_details": "Details",
- "member_institution_broker_modify": "Modify",
- "member_institution_broker_subinstitution": "Sub-organization",
- "member_institution_broker_delete": "Delete",
- "member_institution_marketer": "Market Maker Management",
- "member_institution_marketer_add": "Add",
- "member_institution_marketer_details": "Details",
- "member_institution_marketer_modify": "Modify",
- "member_institution_marketer_delete": "Delete",
- "member_institution_industry": "Industry Member Management",
- "member_institution_industry_add": "Add",
- "member_institution_industry_details": "Details",
- "member_institution_industry_delete": "Delete",
- "member_institution_tradecfg": "Account Personalization Settings",
- "member_institution_tradecfg_add": "Add",
- "member_institution_tradecfg_modify": "Modify",
- "member_institution_tradecfg_delete": "Delete",
- "member_institution_riskcfg": "Risk Control Personalization Settings",
- "member_institution_riskcfg_add": "Add",
- "member_institution_riskcfg_details": "Details",
- "member_institution_riskcfg_modify": "Modify",
- "member_institution_riskcfg_delete": "Delete",
- "member_institution_goodscfg": "Product Limitation Settings",
- "member_institution_goodscfg_modify": "Modify",
- "member_institution_goodscfg_add": "Add",
- "member_institution_goodscfg_delete": "Delete",
- "member_subinstitution": "Sub-organization Management",
- "member_subinstitution_manage": "Sub-organization Management",
- "member_subinstitution_manage_add": "Add",
- "member_subinstitution_manage_details": "Details",
- "member_subinstitution_manage_modify": "Modify",
- "member_subinstitution_manage_cancel": "Recall",
- "member_subinstitution_manage_close": "Deactivate",
- "member_subinstitution_manage_recover": "Recover",
- "member_subinstitution_user": "Member Sub-organization Management",
- "member_subinstitution_user_add": "Add",
- "member_subinstitution_user_details": "Details",
- "member_subinstitution_user_modify": "Modify",
- "member_subinstitution_user_cancel": "Recall",
- "member_subinstitution_user_account": "Fund Account",
- "member_subinstitution_user_login": "Login Account",
- "member_subinstitution_user_close": "Deactivate",
- "member_subinstitution_user_recover": "Recover",
- "member_subinstitution_addition": "New Sub-organization Audit",
- "member_subinstitution_addition_audit": "Audit",
- "member_subinstitution_modification": "Sub-organization Change Audit",
- "member_subinstitution_modification_audit": "Audit",
- "member_subinstitution_transfer": "Sub-organization Transfer",
- "member_subinstitution_transfer_add": "Add",
- "member_subinstitution_transfer_run": "Execute Transfer",
- "member_subinstitution_transfer_cancel": "Cancel",
- "warehouse": "Warehousing warehouse receipt management",
- "warehouse_category": "Warehouse receipt variety settings",
- "warehouse_category_delivery": "Delivery warehouse management",
- "warehouse_category_spot": "Spot variety settings",
- "warehouse_in": "Warehouse receipt warehousing management",
- "warehouse_in_list": "Warehousing registration management",
- "warehouse_in_rereview": "Warehousing registration final review",
- "warehouse_in_express": "Warehousing logistics management",
- "warehouse_out": "Warehouse receipt out-of-warehouse management",
- "warehouse_out_list": "Out-of-warehouse cancellation management",
- "warehouse_out_rereview": "Out-of-warehouse cancellation final review",
- "warehouse_out_express": "Out-of-warehouse logistics management",
- "admin": "Administrator Management",
- "admin_role": "Administrator Role Management",
- "admin_role_add": "Add",
- "admin_role_modify": "Modify",
- "admin_role_delete": "Delete",
- "admin_user": "Administrator Management",
- "admin_user_modify": "Modify",
- "admin_user_reset": "Reset Password",
- "admin_user_disable": "Disable",
- "admin_user_enable": "Enable",
- "admin_user_unlock": "Unlock",
- "admin_user_add": "Add",
- "investor": "Dealer Management",
- "investor_user": "Account Opening Management",
- "investor_user_open": "Dealer Account Opening",
- "investor_user_open_details": "Details",
- "investor_user_open_add": "Add",
- "investor_user_open_modify": "Modify",
- "investor_user_open_cancel": "Cancel",
- "investor_user_open_delete": "Delete",
- "investor_user_initreview": "Initial Account Review",
- "investor_user_initreview_batch": "Batch Review",
- "investor_user_initreview_audit": "Audit",
- "investor_user_rereview": "Account Re-review",
- "investor_user_rereview_batch": "Batch Review",
- "investor_user_rereview_audit": "Audit",
- "investor_manage": "Dealer Management",
- "investor_manage_user": "Dealer Management",
- "investor_manage_user_export": "Export",
- "investor_manage_user_modify": "Modify",
- "investor_manage_user_details": "Details",
- "investor_manage_user_cancel": "Recall",
- "investor_manage_user_config": "Personalization",
- "investor_manage_user_account": "Fund Account",
- "investor_manage_user_login": "Login Account",
- "investor_manage_user_close": "Deactivate",
- "investor_manage_user_recover": "Recover",
- "investor_manage_modification": "Dealer Change Audit",
- "investor_manage_modification_audit": "Audit",
- "investor_manage_transfer": "Batch Dealer Transfer",
- "investor_manage_transfer_add": "Add",
- "investor_manage_transfer_cancel": "Cancel",
- "investor_manage_swapprotocol": "Swap Agreement Management",
- "investor_manage_swapprotocol_details": "Details",
- "investor_manage_swapprotocol_audit": "Audit",
- "investor_manage_cancelapply": "Dealer Account Closure Audit",
- "investor_manage_cancelapply_audit": "Audit",
- "investor_custom": "Personalization Management",
- "investor_custom_group": "Dealer Group Management",
- "investor_custom_group_add": "Add",
- "investor_custom_group_user": "Grouped Dealers",
- "investor_custom_group_modify": "Modify",
- "investor_custom_group_delete": "Delete",
- "investor_custom_tradecfg": "Dealer Personalization",
- "investor_custom_tradecfg_add": "Add",
- "investor_custom_tradecfg_modify": "Modify",
- "investor_custom_tradecfg_delete": "Delete",
- "investor_custom_accountcfg": "Fund Account Personalization",
- "investor_custom_accountcfg_add": "Add",
- "investor_custom_accountcfg_modify": "Modify",
- "investor_custom_accountcfg_delete": "Delete",
- "investor_custom_riskcfg": "Risk Control Personalization",
- "investor_custom_riskcfg_add": "Add",
- "investor_custom_riskcfg_details": "Details",
- "investor_custom_riskcfg_modify": "Modify",
- "investor_custom_riskcfg_delete": "Delete",
- "query": "Query Management",
- "query_order": "Order Management",
- "query_order_monitor": "Order Monitoring",
- "query_order_list": "Order Query",
- "query_order_list_export": "Export",
- "query_order_list_details": "Details",
- "query_order_close": "Termination Order Query",
- "query_order_close_export": "Export",
- "query_order_terminate": "Forced Termination Order",
- "query_order_terminate_export": "Export",
- "query_order_delivery": "Settlement Order Management",
- "query_order_delivery_export": "Export",
- "query_order_delivery_details": "Details",
- "query_order_delivery_confirm": "Confirm",
- "query_order_delivery_cancel": "Failed",
- "query_order_delivery_pay": "Pay",
- "query_order_report": "Daily Order Report",
- "query_order_report_export": "Export",
- "query_internal": "Internal Order Query",
- "query_internal_order": "Entrust Order Query",
- "query_internal_order_export": "Export",
- "query_internal_order_details": "Details",
- "query_internal_trade": "Transaction Order Query",
- "query_internal_trade_export": "Export",
- "query_internal_trade_details": "Details",
- "query_internal_accountsumm": "Account Transaction Summary",
- "query_internal_accountsumm_expor": "Export",
- "query_internal_tradesumm": "Transaction Summary Query",
- "query_internal_tradesumm_export": "Export",
- "query_internal_institutionsumm": "Organization Transaction Summary",
- "query_internal_institutionsumm_export": "Export",
- "query_internal_goodssumm": "Product Transaction Summary",
- "query_internal_goodssumm_export": "Export",
- "query_internal_position": "Position Order Query",
- "query_internal_position_details": "Details",
- "query_internal_position_export": "Export",
- "query_internal_positionsumm": "Position Summary Query",
- "query_internal_positionsumm_export": "Export",
- "query_internal_liquidation": "Liquidation Record Query",
- "query_internal_liquidation_export": "Export",
- "query_internal_liquidation_details": "Details",
- "query_internal_deliveryorder": "Settlement Entrust Query",
- "query_internal_deliveryorder_export": "Export",
- "query_internal_deliveryorder_details": "Details",
- "query_internal_deliverytrade": "Settlement Transaction Query",
- "query_internal_deliverytrade_export": "Export",
- "query_internal_deliverytrade_details": "Details",
- "query_internal_offlinedelivery": "Offline Settlement Order Query",
- "query_internal_offlinedelivery_export": "Export",
- "query_internal_offlinedelivery_details": "Details",
- "query_internal_offlinedelivery_confirm": "Confirm",
- "query_internal_offlinedelivery_cancel": "Failed",
- "query_internal_offlinedelivery_pay": "Pay",
- "query_wrorder": "Warehouse Receipt Order Query",
- "query_wrorder_order": "Entrust Order Query",
- "query_wrorder_order_details": "Details",
- "query_wrorder_order_export": "Export",
- "query_wrorder_trade": "Transaction Order Query",
- "query_wrorder_trade_export": "Export",
- "query_wrorder_trade_details": "Details",
- "query_wr": "Warehouse Receipt Query",
- "query_wr_wrsumm": "Warehouse Receipt Summary Query",
- "query_wr_wrsumm_details": "Details",
- "query_other": "Other Queries",
- "query_other_bankstatement_export": "Export",
- "query_other_investorbank": "Dealer Fund Query",
- "query_other_investorbank_export": "Export",
- "query_other_investorbank_position": "Position Summary",
- "query_other_institutionbank": "Organization Fund Query",
- "query_other_institutionbank_export": "Export",
- "query_other_institutionbank_position": "Position Summary",
- "query_other_bankinout": "Deposit/Withdrawal Query",
- "query_other_bankinout_details": "Details",
- "query_other_config": "Personalized Query",
- "query_other_esign": "Electronic Agreement Management",
- "query_other_bankstatement": "Fund Flow Query",
- "account": "Account Management",
- "account_fundacct": "Fund Account Management",
- "account_fundacct_details": "Details",
- "account_fundacct_password": "Modify Password",
- "account_fundacct_sign": "Sign Agreement",
- "account_fundacct_bankinout": "Deposit/Withdrawal",
- "account_fundacct_bankstatement": "Fund Flow",
- "account_tradingacct": "Trading Account Management",
- "account_tradingacct_add": "Add",
- "account_tradingacct_details": "Details",
- "account_tradingacct_modify": "Modify",
- "account_tradingacct_password": "Reset Password",
- "account_tradingacct_lock": "Lock",
- "account_tradingacct_unlock": "Unlock",
- "account_tradingacct_close": "Deactivate",
- "account_tradingacct_recover": "Recover",
- "performance": "Performance Management",
- "performance_buy": "My Buy Performance",
- "performance_buy_details": "Details",
- "performance_sell": "My Sell Performance",
- "performance_sell_details": "Details",
- "performance_sell_confirm": "Confirm",
- "performance_sell_breach": "Breach",
- "performance_sell_delay": "Delay",
- "performance_sell_modify": "Modify",
- "performance_plan": "Performance Plan Management",
- "performance_plan_export": "Export",
- "performance_delayapply": "Extension application review",
- "performance_delayapply_details": "Details",
- "performance_breachapply": "Default application review",
- "performance_breachapply_details": "Details",
- "performance_breach": "Default handling",
- "performance_breach_export": "Export",
- "profitshare": "Profit Sharing Management",
- "profitshare_platform": "Platform Profit Sharing",
- "profitshare_platform_group": "Profit Sharing Group Management",
- "profitshare_platform_group_add": "Add",
- "profitshare_platform_group_modify": "Modify",
- "profitshare_platform_group_user": "Member list",
- "profitshare_platform_group_delete": "Delete",
- "profitshare_platform_tree": "Profit sharing tree management",
- "profitshare_platform_tree_add": "Add",
- "profitshare_platform_tree_modify": "Modify",
- "profitshare_platform_tree_user": "Node configuration",
- "profitshare_platform_tree_delete": "Delete",
- "profitshare_platform_config": "System profit sharing configuration",
- "profitshare_platform_config_add": "Add",
- "profitshare_platform_config_modify": "Modify",
- "profitshare_platform_config_details": "Details",
- "profitshare_platform_config_delete": "Delete",
- "profitshare_institution": "Organization Profit Sharing Configuration",
- "profitshare_institution_group": "Sub-organization Group Management",
- "profitshare_institution_group_add": "Add",
- "profitshare_institution_group_modify": "Modify",
- "profitshare_institution_group_member": "Members",
- "profitshare_institution_group_delete": "Delete",
- "profitshare_institution_config": "Sub-organization Profit Sharing Configuration",
- "profitshare_institution_config_add": "Add",
- "profitshare_institution_config_modify": "Modify",
- "profitshare_institution_config_delete": "Delete",
- "settlement": "Settlement Management",
- "settlement_holdtransfer": "Agreement Transfer",
- "settlement_holdtransfer_add": "Add",
- "settlement_positiontransfer": "Position transfer",
- "settlement_profitsharepay": "Profit Sharing Payment Confirmation",
- "settlement_profitsharepay_export": "Export",
- "settlement_profitsharepay_details": "Details",
- "settlement_rereview": "Profit sharing final review",
- "settlement_banktransfer": "Fund transfer",
- "settlement_refund": "Return ticket management",
- "settlement_price": "Settlement price query",
- "report": "Report Query",
- "report_profitshare": "Profit Sharing Report",
- "report_goods": "Product Transaction Report",
- "report_account": "Fund Account Report",
- "report_account_bank": "Fund Information",
- "report_account_position": "Position Summary Table",
- "report_account_wrorder": "Warehouse Receipt Summary Table",
- "report_account_trade": "Transaction Summary Table",
- "report_account_performance": "Performance Summary Table",
- "report_trade": "Recommended Transaction Report",
- "report_broker": "Broker Member Report",
- "report_institution": "Organization Fund Report",
- "report_investor": "Dealer Fund Report",
- "report_bank": "Bank Fund Report",
- "report_fee": "Service Fee Profit Sharing Report",
- "report_recalculate": "Report Recalculation",
- "bank": "Banking Business",
- "bank_sysconfig": "Bank System Configuration",
- "bank_cusconfig": "Custodian Bank Configuration",
- "bank_signlist": "Sign and unsign query",
- "bank_signmanage": "Sign and unsign management",
- "bank_forcedsign": "Forced signing and unsign",
- "bank_account": "Bank account query",
- "bank_inoutlist": "Deposit and withdrawal query",
- "bank_inoutaudit": "Deposit and withdrawal review",
- "bank_outreview": "Withdrawal final review",
- "bank_withdrawalfee": "Handling fee withdrawal",
- "notice": "Notices & Announcements",
- "notice_manage": "Announcement & Notice Management",
- "notice_manage_add": "Release",
- "notice_manage_details": "Details",
- "notice_manage_delete": "Delete",
- "notice_manage_force": "Force to pop up",
- "notice_sms": "SMS query",
- "notice_newscolumn": "Information column",
- "notice_newscolumn_add": "Add",
- "notice_newscolumn_details": "Details",
- "notice_newscolumn_modify": "Modify",
- "notice_newscolumn_delete": "Delete",
- "notice_newssource": "Information source",
- "notice_newssource_add": "Add",
- "notice_newssource_details": "Details",
- "notice_newssource_modify": "Modify",
- "notice_newssource_delete": "Delete",
- "notice_news": "Information management",
- "notice_news_add": "Add",
- "notice_news_details": "Details",
- "notice_news_modify": "Modify",
- "notice_news_show": "Show",
- "notice_news_hide": "Do not show",
- "notice_news_delete": "Delete"
- }
- }
|