app_localizations.dart 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822
  1. import 'dart:async';
  2. import 'package:flutter/foundation.dart';
  3. import 'package:flutter/widgets.dart';
  4. import 'package:flutter_localizations/flutter_localizations.dart';
  5. import 'package:intl/intl.dart' as intl;
  6. import 'app_localizations_en.dart';
  7. import 'app_localizations_hi.dart';
  8. import 'app_localizations_id.dart';
  9. import 'app_localizations_ja.dart';
  10. import 'app_localizations_ko.dart';
  11. import 'app_localizations_zh.dart';
  12. // ignore_for_file: type=lint
  13. /// Callers can lookup localized strings with an instance of AppLocalizations
  14. /// returned by `AppLocalizations.of(context)`.
  15. ///
  16. /// Applications need to include `AppLocalizations.delegate()` in their app's
  17. /// `localizationDelegates` list, and the locales they support in the app's
  18. /// `supportedLocales` list. For example:
  19. ///
  20. /// ```dart
  21. /// import 'l10n/app_localizations.dart';
  22. ///
  23. /// return MaterialApp(
  24. /// localizationsDelegates: AppLocalizations.localizationsDelegates,
  25. /// supportedLocales: AppLocalizations.supportedLocales,
  26. /// home: MyApplicationHome(),
  27. /// );
  28. /// ```
  29. ///
  30. /// ## Update pubspec.yaml
  31. ///
  32. /// Please make sure to update your pubspec.yaml to include the following
  33. /// packages:
  34. ///
  35. /// ```yaml
  36. /// dependencies:
  37. /// # Internationalization support.
  38. /// flutter_localizations:
  39. /// sdk: flutter
  40. /// intl: any # Use the pinned version from flutter_localizations
  41. ///
  42. /// # Rest of dependencies
  43. /// ```
  44. ///
  45. /// ## iOS Applications
  46. ///
  47. /// iOS applications define key application metadata, including supported
  48. /// locales, in an Info.plist file that is built into the application bundle.
  49. /// To configure the locales supported by your app, you’ll need to edit this
  50. /// file.
  51. ///
  52. /// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
  53. /// Then, in the Project Navigator, open the Info.plist file under the Runner
  54. /// project’s Runner folder.
  55. ///
  56. /// Next, select the Information Property List item, select Add Item from the
  57. /// Editor menu, then select Localizations from the pop-up menu.
  58. ///
  59. /// Select and expand the newly-created Localizations item then, for each
  60. /// locale your application supports, add a new item and select the locale
  61. /// you wish to add from the pop-up menu in the Value field. This list should
  62. /// be consistent with the languages listed in the AppLocalizations.supportedLocales
  63. /// property.
  64. abstract class AppLocalizations {
  65. AppLocalizations(String locale)
  66. : localeName = intl.Intl.canonicalizedLocale(locale.toString());
  67. final String localeName;
  68. static AppLocalizations? of(BuildContext context) {
  69. return Localizations.of<AppLocalizations>(context, AppLocalizations);
  70. }
  71. static const LocalizationsDelegate<AppLocalizations> delegate =
  72. _AppLocalizationsDelegate();
  73. /// A list of this localizations delegate along with the default localizations
  74. /// delegates.
  75. ///
  76. /// Returns a list of localizations delegates containing this delegate along with
  77. /// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
  78. /// and GlobalWidgetsLocalizations.delegate.
  79. ///
  80. /// Additional delegates can be added by appending to this list in
  81. /// MaterialApp. This list does not have to be used at all if a custom list
  82. /// of delegates is preferred or required.
  83. static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
  84. <LocalizationsDelegate<dynamic>>[
  85. delegate,
  86. GlobalMaterialLocalizations.delegate,
  87. GlobalCupertinoLocalizations.delegate,
  88. GlobalWidgetsLocalizations.delegate,
  89. ];
  90. /// A list of this localizations delegate's supported locales.
  91. static const List<Locale> supportedLocales = <Locale>[
  92. Locale('en'),
  93. Locale('hi'),
  94. Locale('id'),
  95. Locale('ja'),
  96. Locale('ko'),
  97. Locale('zh'),
  98. Locale('zh', 'TW')
  99. ];
  100. /// No description provided for @appTitle.
  101. ///
  102. /// In zh, this message translates to:
  103. /// **'iBit'**
  104. String get appTitle;
  105. /// No description provided for @home.
  106. ///
  107. /// In zh, this message translates to:
  108. /// **'首页'**
  109. String get home;
  110. /// No description provided for @market.
  111. ///
  112. /// In zh, this message translates to:
  113. /// **'行情'**
  114. String get market;
  115. /// No description provided for @futures.
  116. ///
  117. /// In zh, this message translates to:
  118. /// **'合约'**
  119. String get futures;
  120. /// No description provided for @bottomNavTrade.
  121. ///
  122. /// In zh, this message translates to:
  123. /// **'交易'**
  124. String get bottomNavTrade;
  125. /// No description provided for @copyTrading.
  126. ///
  127. /// In zh, this message translates to:
  128. /// **'跟单'**
  129. String get copyTrading;
  130. /// No description provided for @assets.
  131. ///
  132. /// In zh, this message translates to:
  133. /// **'资产'**
  134. String get assets;
  135. /// No description provided for @login.
  136. ///
  137. /// In zh, this message translates to:
  138. /// **'登录'**
  139. String get login;
  140. /// No description provided for @register.
  141. ///
  142. /// In zh, this message translates to:
  143. /// **'注册'**
  144. String get register;
  145. /// No description provided for @loading.
  146. ///
  147. /// In zh, this message translates to:
  148. /// **'加载中...'**
  149. String get loading;
  150. /// No description provided for @retry.
  151. ///
  152. /// In zh, this message translates to:
  153. /// **'重试'**
  154. String get retry;
  155. /// No description provided for @cancel.
  156. ///
  157. /// In zh, this message translates to:
  158. /// **'取消'**
  159. String get cancel;
  160. /// No description provided for @confirm.
  161. ///
  162. /// In zh, this message translates to:
  163. /// **'确认'**
  164. String get confirm;
  165. /// No description provided for @submit.
  166. ///
  167. /// In zh, this message translates to:
  168. /// **'提交'**
  169. String get submit;
  170. /// No description provided for @save.
  171. ///
  172. /// In zh, this message translates to:
  173. /// **'保存'**
  174. String get save;
  175. /// No description provided for @send.
  176. ///
  177. /// In zh, this message translates to:
  178. /// **'发送'**
  179. String get send;
  180. /// No description provided for @paste.
  181. ///
  182. /// In zh, this message translates to:
  183. /// **'粘贴'**
  184. String get paste;
  185. /// No description provided for @tips.
  186. ///
  187. /// In zh, this message translates to:
  188. /// **'提示'**
  189. String get tips;
  190. /// No description provided for @networkError.
  191. ///
  192. /// In zh, this message translates to:
  193. /// **'网络错误,请重试'**
  194. String get networkError;
  195. /// No description provided for @welcomeBack.
  196. ///
  197. /// In zh, this message translates to:
  198. /// **'欢迎回来'**
  199. String get welcomeBack;
  200. /// No description provided for @loginSubtitle.
  201. ///
  202. /// In zh, this message translates to:
  203. /// **'登录您的账户以继续'**
  204. String get loginSubtitle;
  205. /// No description provided for @email.
  206. ///
  207. /// In zh, this message translates to:
  208. /// **'邮箱'**
  209. String get email;
  210. /// No description provided for @emailHint.
  211. ///
  212. /// In zh, this message translates to:
  213. /// **'请输入邮箱'**
  214. String get emailHint;
  215. /// No description provided for @emailError.
  216. ///
  217. /// In zh, this message translates to:
  218. /// **'邮箱格式错误'**
  219. String get emailError;
  220. /// No description provided for @password.
  221. ///
  222. /// In zh, this message translates to:
  223. /// **'密码'**
  224. String get password;
  225. /// No description provided for @loginPasswordHint.
  226. ///
  227. /// In zh, this message translates to:
  228. /// **'请输入登录密码'**
  229. String get loginPasswordHint;
  230. /// No description provided for @forgotPassword.
  231. ///
  232. /// In zh, this message translates to:
  233. /// **'忘记密码?'**
  234. String get forgotPassword;
  235. /// No description provided for @noAccount.
  236. ///
  237. /// In zh, this message translates to:
  238. /// **'还没有账户?'**
  239. String get noAccount;
  240. /// No description provided for @registerNow.
  241. ///
  242. /// In zh, this message translates to:
  243. /// **'立即注册'**
  244. String get registerNow;
  245. /// No description provided for @welcomeJoin.
  246. ///
  247. /// In zh, this message translates to:
  248. /// **'欢迎加入 iBit'**
  249. String get welcomeJoin;
  250. /// No description provided for @emailRegister.
  251. ///
  252. /// In zh, this message translates to:
  253. /// **'邮箱注册'**
  254. String get emailRegister;
  255. /// No description provided for @loginPassword.
  256. ///
  257. /// In zh, this message translates to:
  258. /// **'登录密码'**
  259. String get loginPassword;
  260. /// No description provided for @errLoginCredentialWrong.
  261. ///
  262. /// In zh, this message translates to:
  263. /// **'用户名或密码错误'**
  264. String get errLoginCredentialWrong;
  265. /// No description provided for @errAccountAlreadyRegistered.
  266. ///
  267. /// In zh, this message translates to:
  268. /// **'该账号已注册,请直接登录'**
  269. String get errAccountAlreadyRegistered;
  270. /// No description provided for @stakingTitle.
  271. ///
  272. /// In zh, this message translates to:
  273. /// **'IDO 预售'**
  274. String get stakingTitle;
  275. /// No description provided for @stakingAmount.
  276. ///
  277. /// In zh, this message translates to:
  278. /// **'申购数量'**
  279. String get stakingAmount;
  280. /// No description provided for @stakingAmountHint.
  281. ///
  282. /// In zh, this message translates to:
  283. /// **'请输入{coin}数量'**
  284. String stakingAmountHint(Object coin);
  285. /// No description provided for @stakingEquivalentUsdt.
  286. ///
  287. /// In zh, this message translates to:
  288. /// **'对应价格(USDT):'**
  289. String get stakingEquivalentUsdt;
  290. /// No description provided for @stakingSubmit.
  291. ///
  292. /// In zh, this message translates to:
  293. /// **'立即申购'**
  294. String get stakingSubmit;
  295. /// No description provided for @stakingSubmitSuccess.
  296. ///
  297. /// In zh, this message translates to:
  298. /// **'申购成功'**
  299. String get stakingSubmitSuccess;
  300. /// No description provided for @stakingTransfer.
  301. ///
  302. /// In zh, this message translates to:
  303. /// **'划转'**
  304. String get stakingTransfer;
  305. /// No description provided for @stakingTransferTitle.
  306. ///
  307. /// In zh, this message translates to:
  308. /// **'质押辅助划转'**
  309. String get stakingTransferTitle;
  310. /// No description provided for @stakingDirectionFundingToSpot.
  311. ///
  312. /// In zh, this message translates to:
  313. /// **'资金->现货'**
  314. String get stakingDirectionFundingToSpot;
  315. /// No description provided for @stakingDirectionSpotToFunding.
  316. ///
  317. /// In zh, this message translates to:
  318. /// **'现货->资金'**
  319. String get stakingDirectionSpotToFunding;
  320. /// No description provided for @stakingMinAmountLabel.
  321. ///
  322. /// In zh, this message translates to:
  323. /// **'最小申购'**
  324. String get stakingMinAmountLabel;
  325. /// No description provided for @stakingMaxAmountLabel.
  326. ///
  327. /// In zh, this message translates to:
  328. /// **'最大申购'**
  329. String get stakingMaxAmountLabel;
  330. /// No description provided for @stakingLockDaysLabel.
  331. ///
  332. /// In zh, this message translates to:
  333. /// **'锁仓周期'**
  334. String get stakingLockDaysLabel;
  335. /// No description provided for @stakingReleaseTypeLabel.
  336. ///
  337. /// In zh, this message translates to:
  338. /// **'释放方式'**
  339. String get stakingReleaseTypeLabel;
  340. /// No description provided for @stakingReleaseOneTime.
  341. ///
  342. /// In zh, this message translates to:
  343. /// **'一次性释放'**
  344. String get stakingReleaseOneTime;
  345. /// No description provided for @stakingReleaseBatch.
  346. ///
  347. /// In zh, this message translates to:
  348. /// **'分批释放'**
  349. String get stakingReleaseBatch;
  350. /// No description provided for @stakingFundingAvailable.
  351. ///
  352. /// In zh, this message translates to:
  353. /// **'资金账户可用'**
  354. String get stakingFundingAvailable;
  355. /// No description provided for @stakingWalletAvailable.
  356. ///
  357. /// In zh, this message translates to:
  358. /// **'质押钱包可用'**
  359. String get stakingWalletAvailable;
  360. /// No description provided for @stakingNeedLogin.
  361. ///
  362. /// In zh, this message translates to:
  363. /// **'请先登录后操作'**
  364. String get stakingNeedLogin;
  365. /// No description provided for @stakingAmountMin.
  366. ///
  367. /// In zh, this message translates to:
  368. /// **'申购数量不能小于 {amount}'**
  369. String stakingAmountMin(Object amount);
  370. /// No description provided for @stakingAmountMax.
  371. ///
  372. /// In zh, this message translates to:
  373. /// **'申购数量不能大于 {amount}'**
  374. String stakingAmountMax(Object amount);
  375. /// No description provided for @financeIdoTitle.
  376. ///
  377. /// In zh, this message translates to:
  378. /// **'IDO 预售'**
  379. String get financeIdoTitle;
  380. /// No description provided for @financeIdoRuleLabel.
  381. ///
  382. /// In zh, this message translates to:
  383. /// **'规则:'**
  384. String get financeIdoRuleLabel;
  385. /// No description provided for @financeIdoRuleOnce.
  386. ///
  387. /// In zh, this message translates to:
  388. /// **'会员购买一定量平台自己的主链币,自动进入锁仓账户。锁仓{lock}个月,到期一次性释放。'**
  389. String financeIdoRuleOnce(Object lock);
  390. /// No description provided for @financeIdoRuleBatch.
  391. ///
  392. /// In zh, this message translates to:
  393. /// **'会员购买一定量平台自己的主链币,自动进入锁仓账户。锁仓{lock}个月,按{release}个月释放。'**
  394. String financeIdoRuleBatch(Object lock, Object release);
  395. /// No description provided for @financeJoinPresale.
  396. ///
  397. /// In zh, this message translates to:
  398. /// **'参与预售'**
  399. String get financeJoinPresale;
  400. /// No description provided for @financeSubscribeQty.
  401. ///
  402. /// In zh, this message translates to:
  403. /// **'认购数量'**
  404. String get financeSubscribeQty;
  405. /// No description provided for @financeAvailableIbit.
  406. ///
  407. /// In zh, this message translates to:
  408. /// **'可提现可用 iBit'**
  409. String get financeAvailableIbit;
  410. /// No description provided for @financeCorrespondingPrice.
  411. ///
  412. /// In zh, this message translates to:
  413. /// **'对应价格'**
  414. String get financeCorrespondingPrice;
  415. /// No description provided for @financeIbitUnitPriceLine.
  416. ///
  417. /// In zh, this message translates to:
  418. /// **'当前价格:{price} USDT'**
  419. String financeIbitUnitPriceLine(Object price);
  420. /// No description provided for @financeConfirmPresale.
  421. ///
  422. /// In zh, this message translates to:
  423. /// **'确认参与预售'**
  424. String get financeConfirmPresale;
  425. /// No description provided for @financeEstimatedUnlockLine.
  426. ///
  427. /// In zh, this message translates to:
  428. /// **'预计解锁日期:{date}'**
  429. String financeEstimatedUnlockLine(Object date);
  430. /// No description provided for @financeLoginToStake.
  431. ///
  432. /// In zh, this message translates to:
  433. /// **'登录后可参与 IDO 预售质押'**
  434. String get financeLoginToStake;
  435. /// No description provided for @financeStakeSuccess.
  436. ///
  437. /// In zh, this message translates to:
  438. /// **'质押成功'**
  439. String get financeStakeSuccess;
  440. /// No description provided for @financeAmountRequired.
  441. ///
  442. /// In zh, this message translates to:
  443. /// **'请输入质押数量'**
  444. String get financeAmountRequired;
  445. /// No description provided for @financeBelowMin.
  446. ///
  447. /// In zh, this message translates to:
  448. /// **'不得低于最小质押额 {min}'**
  449. String financeBelowMin(Object min);
  450. /// No description provided for @financeAboveMax.
  451. ///
  452. /// In zh, this message translates to:
  453. /// **'不得超过最大质押额 {max}'**
  454. String financeAboveMax(Object max);
  455. /// No description provided for @financeConfigNotFound.
  456. ///
  457. /// In zh, this message translates to:
  458. /// **'质押产品不存在或已下架'**
  459. String get financeConfigNotFound;
  460. /// No description provided for @goSpotTrade.
  461. ///
  462. /// In zh, this message translates to:
  463. /// **'去交易'**
  464. String get goSpotTrade;
  465. /// No description provided for @airdropTitle.
  466. ///
  467. /// In zh, this message translates to:
  468. /// **'空投领取'**
  469. String get airdropTitle;
  470. /// No description provided for @airdropClaimNow.
  471. ///
  472. /// In zh, this message translates to:
  473. /// **'一键领取'**
  474. String get airdropClaimNow;
  475. /// No description provided for @airdropNotEligible.
  476. ///
  477. /// In zh, this message translates to:
  478. /// **'当前不满足领取条件'**
  479. String get airdropNotEligible;
  480. /// No description provided for @airdropClaimSuccess.
  481. ///
  482. /// In zh, this message translates to:
  483. /// **'领取申请已提交'**
  484. String get airdropClaimSuccess;
  485. /// No description provided for @airdropRecords.
  486. ///
  487. /// In zh, this message translates to:
  488. /// **'空投记录'**
  489. String get airdropRecords;
  490. /// No description provided for @airdropClaimable.
  491. ///
  492. /// In zh, this message translates to:
  493. /// **'可领取数量'**
  494. String get airdropClaimable;
  495. /// No description provided for @airdropInviteRequirement.
  496. ///
  497. /// In zh, this message translates to:
  498. /// **'邀请进度 {current}/{required}'**
  499. String airdropInviteRequirement(Object current, Object required);
  500. /// No description provided for @airdropHasActiveStaking.
  501. ///
  502. /// In zh, this message translates to:
  503. /// **'存在活跃质押'**
  504. String get airdropHasActiveStaking;
  505. /// No description provided for @airdropHasPendingReward.
  506. ///
  507. /// In zh, this message translates to:
  508. /// **'存在待领取空投'**
  509. String get airdropHasPendingReward;
  510. /// No description provided for @airdropStatusPending.
  511. ///
  512. /// In zh, this message translates to:
  513. /// **'待领取'**
  514. String get airdropStatusPending;
  515. /// No description provided for @airdropStatusGranted.
  516. ///
  517. /// In zh, this message translates to:
  518. /// **'已发放'**
  519. String get airdropStatusGranted;
  520. /// No description provided for @airdropStatusReviewing.
  521. ///
  522. /// In zh, this message translates to:
  523. /// **'审核中'**
  524. String get airdropStatusReviewing;
  525. /// No description provided for @airdropStatusRejected.
  526. ///
  527. /// In zh, this message translates to:
  528. /// **'已拒绝'**
  529. String get airdropStatusRejected;
  530. /// No description provided for @pwdCharsRule.
  531. ///
  532. /// In zh, this message translates to:
  533. /// **'6-16个字符'**
  534. String get pwdCharsRule;
  535. /// No description provided for @pwdDigitRule.
  536. ///
  537. /// In zh, this message translates to:
  538. /// **'1个数字'**
  539. String get pwdDigitRule;
  540. /// No description provided for @pwdLetterRule.
  541. ///
  542. /// In zh, this message translates to:
  543. /// **'1个字母'**
  544. String get pwdLetterRule;
  545. /// No description provided for @inviteCode.
  546. ///
  547. /// In zh, this message translates to:
  548. /// **'邀请码'**
  549. String get inviteCode;
  550. /// No description provided for @inviteCodeHint.
  551. ///
  552. /// In zh, this message translates to:
  553. /// **'邀请码(选填)'**
  554. String get inviteCodeHint;
  555. /// No description provided for @inviteCodeTip.
  556. ///
  557. /// In zh, this message translates to:
  558. /// **'填写邀请码可获得额外奖励'**
  559. String get inviteCodeTip;
  560. /// No description provided for @agreePrefix.
  561. ///
  562. /// In zh, this message translates to:
  563. /// **'注册即同意'**
  564. String get agreePrefix;
  565. /// No description provided for @termsOfService.
  566. ///
  567. /// In zh, this message translates to:
  568. /// **'《服务条款》'**
  569. String get termsOfService;
  570. /// No description provided for @privacyPolicy.
  571. ///
  572. /// In zh, this message translates to:
  573. /// **'《隐私与政策声明》'**
  574. String get privacyPolicy;
  575. /// No description provided for @registerAccount.
  576. ///
  577. /// In zh, this message translates to:
  578. /// **'注册账号'**
  579. String get registerAccount;
  580. /// No description provided for @registerSuccess.
  581. ///
  582. /// In zh, this message translates to:
  583. /// **'注册成功,请登录'**
  584. String get registerSuccess;
  585. /// No description provided for @enterVerifyCode.
  586. ///
  587. /// In zh, this message translates to:
  588. /// **'输入验证码'**
  589. String get enterVerifyCode;
  590. /// No description provided for @emailCodeTab.
  591. ///
  592. /// In zh, this message translates to:
  593. /// **'邮箱验证码'**
  594. String get emailCodeTab;
  595. /// No description provided for @authenticatorTab.
  596. ///
  597. /// In zh, this message translates to:
  598. /// **'身份验证器'**
  599. String get authenticatorTab;
  600. /// No description provided for @emailCodeHint.
  601. ///
  602. /// In zh, this message translates to:
  603. /// **'收到的 6 位数验证码'**
  604. String get emailCodeHint;
  605. /// No description provided for @authenticatorHint.
  606. ///
  607. /// In zh, this message translates to:
  608. /// **'请打开您的身份验证器 App 并输入当前显示的 6 位数验证码'**
  609. String get authenticatorHint;
  610. /// No description provided for @resendCode.
  611. ///
  612. /// In zh, this message translates to:
  613. /// **'重新发送验证码'**
  614. String get resendCode;
  615. /// No description provided for @resendCountdown.
  616. ///
  617. /// In zh, this message translates to:
  618. /// **'{seconds} s 后可重新发送'**
  619. String resendCountdown(int seconds);
  620. /// No description provided for @switchEmailVerify.
  621. ///
  622. /// In zh, this message translates to:
  623. /// **'切换邮箱验证'**
  624. String get switchEmailVerify;
  625. /// No description provided for @forgotPasswordTitle.
  626. ///
  627. /// In zh, this message translates to:
  628. /// **'找回密码'**
  629. String get forgotPasswordTitle;
  630. /// No description provided for @enterRegisteredEmail.
  631. ///
  632. /// In zh, this message translates to:
  633. /// **'请输入注册邮箱'**
  634. String get enterRegisteredEmail;
  635. /// No description provided for @verificationCode.
  636. ///
  637. /// In zh, this message translates to:
  638. /// **'验证码'**
  639. String get verificationCode;
  640. /// No description provided for @verificationCodeHint.
  641. ///
  642. /// In zh, this message translates to:
  643. /// **'请输入验证码'**
  644. String get verificationCodeHint;
  645. /// No description provided for @sendCode.
  646. ///
  647. /// In zh, this message translates to:
  648. /// **'发送验证码'**
  649. String get sendCode;
  650. /// No description provided for @newPassword.
  651. ///
  652. /// In zh, this message translates to:
  653. /// **'新密码'**
  654. String get newPassword;
  655. /// No description provided for @newPasswordHint.
  656. ///
  657. /// In zh, this message translates to:
  658. /// **'请输入新密码'**
  659. String get newPasswordHint;
  660. /// No description provided for @confirmPassword.
  661. ///
  662. /// In zh, this message translates to:
  663. /// **'确认密码'**
  664. String get confirmPassword;
  665. /// No description provided for @confirmPasswordHint.
  666. ///
  667. /// In zh, this message translates to:
  668. /// **'请再次输入新密码'**
  669. String get confirmPasswordHint;
  670. /// No description provided for @passwordMismatch.
  671. ///
  672. /// In zh, this message translates to:
  673. /// **'两次输入的密码不一致'**
  674. String get passwordMismatch;
  675. /// No description provided for @confirmReset.
  676. ///
  677. /// In zh, this message translates to:
  678. /// **'确认重置'**
  679. String get confirmReset;
  680. /// No description provided for @resetSuccess.
  681. ///
  682. /// In zh, this message translates to:
  683. /// **'密码重置成功,请使用新密码登录'**
  684. String get resetSuccess;
  685. /// No description provided for @profile.
  686. ///
  687. /// In zh, this message translates to:
  688. /// **'个人中心'**
  689. String get profile;
  690. /// No description provided for @quickFunctions.
  691. ///
  692. /// In zh, this message translates to:
  693. /// **'常用功能'**
  694. String get quickFunctions;
  695. /// No description provided for @languageSwitch.
  696. ///
  697. /// In zh, this message translates to:
  698. /// **'语言切换'**
  699. String get languageSwitch;
  700. /// No description provided for @security.
  701. ///
  702. /// In zh, this message translates to:
  703. /// **'安全设置'**
  704. String get security;
  705. /// No description provided for @announcements.
  706. ///
  707. /// In zh, this message translates to:
  708. /// **'系统公告'**
  709. String get announcements;
  710. /// No description provided for @helpCenter.
  711. ///
  712. /// In zh, this message translates to:
  713. /// **'帮助中心'**
  714. String get helpCenter;
  715. /// No description provided for @themeColor.
  716. ///
  717. /// In zh, this message translates to:
  718. /// **'主题颜色'**
  719. String get themeColor;
  720. /// No description provided for @lightMode.
  721. ///
  722. /// In zh, this message translates to:
  723. /// **'日间模式'**
  724. String get lightMode;
  725. /// No description provided for @darkMode.
  726. ///
  727. /// In zh, this message translates to:
  728. /// **'夜间模式'**
  729. String get darkMode;
  730. /// No description provided for @systemMode.
  731. ///
  732. /// In zh, this message translates to:
  733. /// **'跟随系统'**
  734. String get systemMode;
  735. /// No description provided for @currency.
  736. ///
  737. /// In zh, this message translates to:
  738. /// **'计价货币'**
  739. String get currency;
  740. /// No description provided for @selectCurrency.
  741. ///
  742. /// In zh, this message translates to:
  743. /// **'选择计价货币'**
  744. String get selectCurrency;
  745. /// No description provided for @noCurrencyAvailable.
  746. ///
  747. /// In zh, this message translates to:
  748. /// **'暂无可用币种'**
  749. String get noCurrencyAvailable;
  750. /// No description provided for @serviceRoute.
  751. ///
  752. /// In zh, this message translates to:
  753. /// **'服务链路'**
  754. String get serviceRoute;
  755. /// No description provided for @currentVersion.
  756. ///
  757. /// In zh, this message translates to:
  758. /// **'当前版本'**
  759. String get currentVersion;
  760. /// No description provided for @clearCache.
  761. ///
  762. /// In zh, this message translates to:
  763. /// **'清除缓存'**
  764. String get clearCache;
  765. /// No description provided for @confirmClearCache.
  766. ///
  767. /// In zh, this message translates to:
  768. /// **'确认清空缓存吗?'**
  769. String get confirmClearCache;
  770. /// No description provided for @cacheCleared.
  771. ///
  772. /// In zh, this message translates to:
  773. /// **'缓存已清除'**
  774. String get cacheCleared;
  775. /// No description provided for @customerService.
  776. ///
  777. /// In zh, this message translates to:
  778. /// **'联系客服'**
  779. String get customerService;
  780. /// No description provided for @logoutTitle.
  781. ///
  782. /// In zh, this message translates to:
  783. /// **'退出登录'**
  784. String get logoutTitle;
  785. /// No description provided for @logoutConfirm.
  786. ///
  787. /// In zh, this message translates to:
  788. /// **'确定要退出当前账号吗?'**
  789. String get logoutConfirm;
  790. /// No description provided for @logoutButton.
  791. ///
  792. /// In zh, this message translates to:
  793. /// **'退出当前账号'**
  794. String get logoutButton;
  795. /// No description provided for @guestGreeting.
  796. ///
  797. /// In zh, this message translates to:
  798. /// **'你好,请先登录'**
  799. String get guestGreeting;
  800. /// No description provided for @loginRegister.
  801. ///
  802. /// In zh, this message translates to:
  803. /// **'登录 / 注册'**
  804. String get loginRegister;
  805. /// No description provided for @uidCopied.
  806. ///
  807. /// In zh, this message translates to:
  808. /// **'UID 已复制'**
  809. String get uidCopied;
  810. /// No description provided for @alreadyLatestVersion.
  811. ///
  812. /// In zh, this message translates to:
  813. /// **'当前已是最新版本'**
  814. String get alreadyLatestVersion;
  815. /// No description provided for @language.
  816. ///
  817. /// In zh, this message translates to:
  818. /// **'语言'**
  819. String get language;
  820. /// No description provided for @iUnderstand.
  821. ///
  822. /// In zh, this message translates to:
  823. /// **'我知道了'**
  824. String get iUnderstand;
  825. /// No description provided for @searchPair.
  826. ///
  827. /// In zh, this message translates to:
  828. /// **'搜索币对'**
  829. String get searchPair;
  830. /// No description provided for @totalAssetsValue.
  831. ///
  832. /// In zh, this message translates to:
  833. /// **'总资产估值'**
  834. String get totalAssetsValue;
  835. /// No description provided for @recharge.
  836. ///
  837. /// In zh, this message translates to:
  838. /// **'充值'**
  839. String get recharge;
  840. /// No description provided for @todayPnl.
  841. ///
  842. /// In zh, this message translates to:
  843. /// **'今日盈亏'**
  844. String get todayPnl;
  845. /// No description provided for @perpetualFutures.
  846. ///
  847. /// In zh, this message translates to:
  848. /// **'永续合约'**
  849. String get perpetualFutures;
  850. /// No description provided for @inviteFriends.
  851. ///
  852. /// In zh, this message translates to:
  853. /// **'邀请好友'**
  854. String get inviteFriends;
  855. /// No description provided for @broker.
  856. ///
  857. /// In zh, this message translates to:
  858. /// **'经纪商'**
  859. String get broker;
  860. /// No description provided for @notBroker.
  861. ///
  862. /// In zh, this message translates to:
  863. /// **'您还不是经纪商'**
  864. String get notBroker;
  865. /// No description provided for @hotTrading.
  866. ///
  867. /// In zh, this message translates to:
  868. /// **'热门交易'**
  869. String get hotTrading;
  870. /// No description provided for @gainers.
  871. ///
  872. /// In zh, this message translates to:
  873. /// **'涨幅榜'**
  874. String get gainers;
  875. /// No description provided for @losers.
  876. ///
  877. /// In zh, this message translates to:
  878. /// **'跌幅榜'**
  879. String get losers;
  880. /// No description provided for @coinNameLabel.
  881. ///
  882. /// In zh, this message translates to:
  883. /// **'名称'**
  884. String get coinNameLabel;
  885. /// No description provided for @latestPrice.
  886. ///
  887. /// In zh, this message translates to:
  888. /// **'最新价'**
  889. String get latestPrice;
  890. /// No description provided for @change24h.
  891. ///
  892. /// In zh, this message translates to:
  893. /// **'24h 涨跌幅'**
  894. String get change24h;
  895. /// No description provided for @turnover.
  896. ///
  897. /// In zh, this message translates to:
  898. /// **'成交额'**
  899. String get turnover;
  900. /// No description provided for @spot.
  901. ///
  902. /// In zh, this message translates to:
  903. /// **'现货'**
  904. String get spot;
  905. /// No description provided for @topTraders.
  906. ///
  907. /// In zh, this message translates to:
  908. /// **'顶级交易专家'**
  909. String get topTraders;
  910. /// No description provided for @twoWeekReturn.
  911. ///
  912. /// In zh, this message translates to:
  913. /// **'近2周收益率'**
  914. String get twoWeekReturn;
  915. /// No description provided for @twoWeekCopyIncome.
  916. ///
  917. /// In zh, this message translates to:
  918. /// **'近2周跟单收益'**
  919. String get twoWeekCopyIncome;
  920. /// No description provided for @searchMarket.
  921. ///
  922. /// In zh, this message translates to:
  923. /// **'搜索币种、币对、合约'**
  924. String get searchMarket;
  925. /// No description provided for @nameVolume.
  926. ///
  927. /// In zh, this message translates to:
  928. /// **'名称 / 成交额'**
  929. String get nameVolume;
  930. /// No description provided for @latestPriceFull.
  931. ///
  932. /// In zh, this message translates to:
  933. /// **'最新价格'**
  934. String get latestPriceFull;
  935. /// No description provided for @change24hFull.
  936. ///
  937. /// In zh, this message translates to:
  938. /// **'24h涨跌幅'**
  939. String get change24hFull;
  940. /// No description provided for @assetOverview.
  941. ///
  942. /// In zh, this message translates to:
  943. /// **'总览'**
  944. String get assetOverview;
  945. /// No description provided for @fund.
  946. ///
  947. /// In zh, this message translates to:
  948. /// **'可提现'**
  949. String get fund;
  950. /// No description provided for @assetValuation.
  951. ///
  952. /// In zh, this message translates to:
  953. /// **'资产估值'**
  954. String get assetValuation;
  955. /// No description provided for @withdraw.
  956. ///
  957. /// In zh, this message translates to:
  958. /// **'提币'**
  959. String get withdraw;
  960. /// No description provided for @transfer.
  961. ///
  962. /// In zh, this message translates to:
  963. /// **'划转'**
  964. String get transfer;
  965. /// No description provided for @goToTrade.
  966. ///
  967. /// In zh, this message translates to:
  968. /// **'去交易'**
  969. String get goToTrade;
  970. /// No description provided for @assetBalance.
  971. ///
  972. /// In zh, this message translates to:
  973. /// **'资产余额'**
  974. String get assetBalance;
  975. /// No description provided for @unavailableLabel.
  976. ///
  977. /// In zh, this message translates to:
  978. /// **'不可用'**
  979. String get unavailableLabel;
  980. /// No description provided for @fundHistory.
  981. ///
  982. /// In zh, this message translates to:
  983. /// **'资金记录'**
  984. String get fundHistory;
  985. /// No description provided for @account.
  986. ///
  987. /// In zh, this message translates to:
  988. /// **'账户'**
  989. String get account;
  990. /// No description provided for @user.
  991. ///
  992. /// In zh, this message translates to:
  993. /// **'用户'**
  994. String get user;
  995. /// No description provided for @futuresAccount.
  996. ///
  997. /// In zh, this message translates to:
  998. /// **'合约账户'**
  999. String get futuresAccount;
  1000. /// No description provided for @copyAccount.
  1001. ///
  1002. /// In zh, this message translates to:
  1003. /// **'跟单账户'**
  1004. String get copyAccount;
  1005. /// No description provided for @fundAccount.
  1006. ///
  1007. /// In zh, this message translates to:
  1008. /// **'可提现账户'**
  1009. String get fundAccount;
  1010. /// No description provided for @exchangeAccount.
  1011. ///
  1012. /// In zh, this message translates to:
  1013. /// **'币种钱包'**
  1014. String get exchangeAccount;
  1015. /// No description provided for @noRecord.
  1016. ///
  1017. /// In zh, this message translates to:
  1018. /// **'暂无记录'**
  1019. String get noRecord;
  1020. /// No description provided for @depositCoin.
  1021. ///
  1022. /// In zh, this message translates to:
  1023. /// **'充币'**
  1024. String get depositCoin;
  1025. /// No description provided for @withdrawCoin.
  1026. ///
  1027. /// In zh, this message translates to:
  1028. /// **'提币'**
  1029. String get withdrawCoin;
  1030. /// No description provided for @depositRecord.
  1031. ///
  1032. /// In zh, this message translates to:
  1033. /// **'充值记录'**
  1034. String get depositRecord;
  1035. /// No description provided for @walletBalance.
  1036. ///
  1037. /// In zh, this message translates to:
  1038. /// **'钱包余额'**
  1039. String get walletBalance;
  1040. /// No description provided for @unrealizedPnl.
  1041. ///
  1042. /// In zh, this message translates to:
  1043. /// **'未实现盈亏'**
  1044. String get unrealizedPnl;
  1045. /// No description provided for @positions.
  1046. ///
  1047. /// In zh, this message translates to:
  1048. /// **'持仓'**
  1049. String get positions;
  1050. /// No description provided for @noPositions.
  1051. ///
  1052. /// In zh, this message translates to:
  1053. /// **'暂无持仓'**
  1054. String get noPositions;
  1055. /// No description provided for @loadFailed.
  1056. ///
  1057. /// In zh, this message translates to:
  1058. /// **'加载失败'**
  1059. String get loadFailed;
  1060. /// No description provided for @noData.
  1061. ///
  1062. /// In zh, this message translates to:
  1063. /// **'暂无数据'**
  1064. String get noData;
  1065. /// No description provided for @noMore.
  1066. ///
  1067. /// In zh, this message translates to:
  1068. /// **'没有更多了'**
  1069. String get noMore;
  1070. /// No description provided for @pullDownToLoadMore.
  1071. ///
  1072. /// In zh, this message translates to:
  1073. /// **'下拉加载更多'**
  1074. String get pullDownToLoadMore;
  1075. /// No description provided for @allLoaded.
  1076. ///
  1077. /// In zh, this message translates to:
  1078. /// **'已加载全部数据'**
  1079. String get allLoaded;
  1080. /// No description provided for @copied.
  1081. ///
  1082. /// In zh, this message translates to:
  1083. /// **'已复制'**
  1084. String get copied;
  1085. /// No description provided for @all.
  1086. ///
  1087. /// In zh, this message translates to:
  1088. /// **'全部'**
  1089. String get all;
  1090. /// No description provided for @search.
  1091. ///
  1092. /// In zh, this message translates to:
  1093. /// **'搜索'**
  1094. String get search;
  1095. /// No description provided for @reset.
  1096. ///
  1097. /// In zh, this message translates to:
  1098. /// **'重置'**
  1099. String get reset;
  1100. /// No description provided for @max.
  1101. ///
  1102. /// In zh, this message translates to:
  1103. /// **'最大'**
  1104. String get max;
  1105. /// No description provided for @completed.
  1106. ///
  1107. /// In zh, this message translates to:
  1108. /// **'已完成'**
  1109. String get completed;
  1110. /// No description provided for @skip.
  1111. ///
  1112. /// In zh, this message translates to:
  1113. /// **'跳过'**
  1114. String get skip;
  1115. /// No description provided for @share.
  1116. ///
  1117. /// In zh, this message translates to:
  1118. /// **'分享'**
  1119. String get share;
  1120. /// No description provided for @more.
  1121. ///
  1122. /// In zh, this message translates to:
  1123. /// **'更多'**
  1124. String get more;
  1125. /// No description provided for @viewMore.
  1126. ///
  1127. /// In zh, this message translates to:
  1128. /// **'查看更多 >>'**
  1129. String get viewMore;
  1130. /// No description provided for @fromLabel.
  1131. ///
  1132. /// In zh, this message translates to:
  1133. /// **'从'**
  1134. String get fromLabel;
  1135. /// No description provided for @toLabel.
  1136. ///
  1137. /// In zh, this message translates to:
  1138. /// **'到'**
  1139. String get toLabel;
  1140. /// No description provided for @coinLabel.
  1141. ///
  1142. /// In zh, this message translates to:
  1143. /// **'币种'**
  1144. String get coinLabel;
  1145. /// No description provided for @typeLabel.
  1146. ///
  1147. /// In zh, this message translates to:
  1148. /// **'类型'**
  1149. String get typeLabel;
  1150. /// No description provided for @timeLabel.
  1151. ///
  1152. /// In zh, this message translates to:
  1153. /// **'时间'**
  1154. String get timeLabel;
  1155. /// No description provided for @amountLabel.
  1156. ///
  1157. /// In zh, this message translates to:
  1158. /// **'数量'**
  1159. String get amountLabel;
  1160. /// No description provided for @statusLabel.
  1161. ///
  1162. /// In zh, this message translates to:
  1163. /// **'状态'**
  1164. String get statusLabel;
  1165. /// No description provided for @gotIt.
  1166. ///
  1167. /// In zh, this message translates to:
  1168. /// **'知道了'**
  1169. String get gotIt;
  1170. /// No description provided for @loginNow.
  1171. ///
  1172. /// In zh, this message translates to:
  1173. /// **'立即登录'**
  1174. String get loginNow;
  1175. /// No description provided for @saveSuccess.
  1176. ///
  1177. /// In zh, this message translates to:
  1178. /// **'保存成功'**
  1179. String get saveSuccess;
  1180. /// No description provided for @operationFailed.
  1181. ///
  1182. /// In zh, this message translates to:
  1183. /// **'操作失败,请重试'**
  1184. String get operationFailed;
  1185. /// No description provided for @photo.
  1186. ///
  1187. /// In zh, this message translates to:
  1188. /// **'拍照'**
  1189. String get photo;
  1190. /// No description provided for @chooseFromAlbum.
  1191. ///
  1192. /// In zh, this message translates to:
  1193. /// **'从相册选择'**
  1194. String get chooseFromAlbum;
  1195. /// No description provided for @openPosition.
  1196. ///
  1197. /// In zh, this message translates to:
  1198. /// **'开仓'**
  1199. String get openPosition;
  1200. /// No description provided for @closePosition.
  1201. ///
  1202. /// In zh, this message translates to:
  1203. /// **'平仓'**
  1204. String get closePosition;
  1205. /// No description provided for @closePositionSuccess.
  1206. ///
  1207. /// In zh, this message translates to:
  1208. /// **'平仓成功'**
  1209. String get closePositionSuccess;
  1210. /// No description provided for @perpetual.
  1211. ///
  1212. /// In zh, this message translates to:
  1213. /// **'永续'**
  1214. String get perpetual;
  1215. /// No description provided for @long.
  1216. ///
  1217. /// In zh, this message translates to:
  1218. /// **'多'**
  1219. String get long;
  1220. /// No description provided for @short.
  1221. ///
  1222. /// In zh, this message translates to:
  1223. /// **'空'**
  1224. String get short;
  1225. /// No description provided for @openLong.
  1226. ///
  1227. /// In zh, this message translates to:
  1228. /// **'开多'**
  1229. String get openLong;
  1230. /// No description provided for @openShort.
  1231. ///
  1232. /// In zh, this message translates to:
  1233. /// **'开空'**
  1234. String get openShort;
  1235. /// No description provided for @crossMargin.
  1236. ///
  1237. /// In zh, this message translates to:
  1238. /// **'全仓'**
  1239. String get crossMargin;
  1240. /// No description provided for @returnRate.
  1241. ///
  1242. /// In zh, this message translates to:
  1243. /// **'收益率'**
  1244. String get returnRate;
  1245. /// No description provided for @avgOpenPrice.
  1246. ///
  1247. /// In zh, this message translates to:
  1248. /// **'开仓均价'**
  1249. String get avgOpenPrice;
  1250. /// No description provided for @avgClosePrice.
  1251. ///
  1252. /// In zh, this message translates to:
  1253. /// **'平仓均价'**
  1254. String get avgClosePrice;
  1255. /// No description provided for @marginRatio.
  1256. ///
  1257. /// In zh, this message translates to:
  1258. /// **'保证金比率'**
  1259. String get marginRatio;
  1260. /// No description provided for @longBull.
  1261. ///
  1262. /// In zh, this message translates to:
  1263. /// **'开多看涨'**
  1264. String get longBull;
  1265. /// No description provided for @shortBear.
  1266. ///
  1267. /// In zh, this message translates to:
  1268. /// **'开空看跌'**
  1269. String get shortBear;
  1270. /// No description provided for @profitShare.
  1271. ///
  1272. /// In zh, this message translates to:
  1273. /// **'分润比例'**
  1274. String get profitShare;
  1275. /// No description provided for @markPrice.
  1276. ///
  1277. /// In zh, this message translates to:
  1278. /// **'标记价格'**
  1279. String get markPrice;
  1280. /// No description provided for @estimatedLiqPrice.
  1281. ///
  1282. /// In zh, this message translates to:
  1283. /// **'预计强平价'**
  1284. String get estimatedLiqPrice;
  1285. /// No description provided for @realizedPnl.
  1286. ///
  1287. /// In zh, this message translates to:
  1288. /// **'已实现盈亏'**
  1289. String get realizedPnl;
  1290. /// No description provided for @longHead.
  1291. ///
  1292. /// In zh, this message translates to:
  1293. /// **'多头'**
  1294. String get longHead;
  1295. /// No description provided for @shortHead.
  1296. ///
  1297. /// In zh, this message translates to:
  1298. /// **'空头'**
  1299. String get shortHead;
  1300. /// No description provided for @contractCopyTrading.
  1301. ///
  1302. /// In zh, this message translates to:
  1303. /// **'合约跟单'**
  1304. String get contractCopyTrading;
  1305. /// No description provided for @followSettings.
  1306. ///
  1307. /// In zh, this message translates to:
  1308. /// **'跟单设置'**
  1309. String get followSettings;
  1310. /// No description provided for @assetStrength.
  1311. ///
  1312. /// In zh, this message translates to:
  1313. /// **'资金实力'**
  1314. String get assetStrength;
  1315. /// No description provided for @joinDays.
  1316. ///
  1317. /// In zh, this message translates to:
  1318. /// **'入驻天数'**
  1319. String get joinDays;
  1320. /// No description provided for @followContract.
  1321. ///
  1322. /// In zh, this message translates to:
  1323. /// **'跟单合约'**
  1324. String get followContract;
  1325. /// No description provided for @noFollowContract.
  1326. ///
  1327. /// In zh, this message translates to:
  1328. /// **'暂无可跟合约'**
  1329. String get noFollowContract;
  1330. /// No description provided for @startFollowing.
  1331. ///
  1332. /// In zh, this message translates to:
  1333. /// **'开始跟单'**
  1334. String get startFollowing;
  1335. /// No description provided for @noTraders.
  1336. ///
  1337. /// In zh, this message translates to:
  1338. /// **'暂无交易员'**
  1339. String get noTraders;
  1340. /// No description provided for @currentFollowers.
  1341. ///
  1342. /// In zh, this message translates to:
  1343. /// **'当前跟单人数'**
  1344. String get currentFollowers;
  1345. /// No description provided for @cumulativeFollowers.
  1346. ///
  1347. /// In zh, this message translates to:
  1348. /// **'累计跟单人数'**
  1349. String get cumulativeFollowers;
  1350. /// No description provided for @cumulativeTradingDays.
  1351. ///
  1352. /// In zh, this message translates to:
  1353. /// **'累计交易天数'**
  1354. String get cumulativeTradingDays;
  1355. /// No description provided for @thisSettlementIncome.
  1356. ///
  1357. /// In zh, this message translates to:
  1358. /// **'本期结算收益'**
  1359. String get thisSettlementIncome;
  1360. /// No description provided for @cumulativeProfitShare.
  1361. ///
  1362. /// In zh, this message translates to:
  1363. /// **'累计分润收益'**
  1364. String get cumulativeProfitShare;
  1365. /// No description provided for @applyNow.
  1366. ///
  1367. /// In zh, this message translates to:
  1368. /// **'立即申请'**
  1369. String get applyNow;
  1370. /// No description provided for @regularCopy.
  1371. ///
  1372. /// In zh, this message translates to:
  1373. /// **'普通带单'**
  1374. String get regularCopy;
  1375. /// No description provided for @losslessCopy.
  1376. ///
  1377. /// In zh, this message translates to:
  1378. /// **'无损带单'**
  1379. String get losslessCopy;
  1380. /// No description provided for @myFavoriteTraders.
  1381. ///
  1382. /// In zh, this message translates to:
  1383. /// **'我的收藏'**
  1384. String get myFavoriteTraders;
  1385. /// No description provided for @favoriteTradersFilterHint.
  1386. ///
  1387. /// In zh, this message translates to:
  1388. /// **'我收藏的交易员'**
  1389. String get favoriteTradersFilterHint;
  1390. /// No description provided for @noFavoriteTraders.
  1391. ///
  1392. /// In zh, this message translates to:
  1393. /// **'暂无收藏的交易员,去发现优质交易员吧'**
  1394. String get noFavoriteTraders;
  1395. /// No description provided for @addedToFavorites.
  1396. ///
  1397. /// In zh, this message translates to:
  1398. /// **'已收藏'**
  1399. String get addedToFavorites;
  1400. /// No description provided for @comprehensiveSort.
  1401. ///
  1402. /// In zh, this message translates to:
  1403. /// **'综合排序'**
  1404. String get comprehensiveSort;
  1405. /// No description provided for @searchNickname.
  1406. ///
  1407. /// In zh, this message translates to:
  1408. /// **'搜索昵称'**
  1409. String get searchNickname;
  1410. /// No description provided for @full.
  1411. ///
  1412. /// In zh, this message translates to:
  1413. /// **'满员'**
  1414. String get full;
  1415. /// No description provided for @unfollow.
  1416. ///
  1417. /// In zh, this message translates to:
  1418. /// **'取消跟随'**
  1419. String get unfollow;
  1420. /// No description provided for @loginToViewAccount.
  1421. ///
  1422. /// In zh, this message translates to:
  1423. /// **'登录后查看账户信息'**
  1424. String get loginToViewAccount;
  1425. /// No description provided for @copyAccountEquity.
  1426. ///
  1427. /// In zh, this message translates to:
  1428. /// **'跟单账户权益'**
  1429. String get copyAccountEquity;
  1430. /// No description provided for @futuresAccountEquity.
  1431. ///
  1432. /// In zh, this message translates to:
  1433. /// **'合约账户权益'**
  1434. String get futuresAccountEquity;
  1435. /// No description provided for @myTrading.
  1436. ///
  1437. /// In zh, this message translates to:
  1438. /// **'我的带单'**
  1439. String get myTrading;
  1440. /// No description provided for @myFollowing.
  1441. ///
  1442. /// In zh, this message translates to:
  1443. /// **'我的跟单'**
  1444. String get myFollowing;
  1445. /// No description provided for @noFollowing.
  1446. ///
  1447. /// In zh, this message translates to:
  1448. /// **'暂无跟单'**
  1449. String get noFollowing;
  1450. /// No description provided for @traderDetail.
  1451. ///
  1452. /// In zh, this message translates to:
  1453. /// **'交易员详情'**
  1454. String get traderDetail;
  1455. /// No description provided for @historyTrading.
  1456. ///
  1457. /// In zh, this message translates to:
  1458. /// **'历史带单'**
  1459. String get historyTrading;
  1460. /// No description provided for @accountInfo.
  1461. ///
  1462. /// In zh, this message translates to:
  1463. /// **'账户信息'**
  1464. String get accountInfo;
  1465. /// No description provided for @coreData.
  1466. ///
  1467. /// In zh, this message translates to:
  1468. /// **'核心数据'**
  1469. String get coreData;
  1470. /// No description provided for @noTradeRecords.
  1471. ///
  1472. /// In zh, this message translates to:
  1473. /// **'暂无带单记录'**
  1474. String get noTradeRecords;
  1475. /// No description provided for @tradingIncome.
  1476. ///
  1477. /// In zh, this message translates to:
  1478. /// **'带单收益'**
  1479. String get tradingIncome;
  1480. /// No description provided for @myCopyIncome.
  1481. ///
  1482. /// In zh, this message translates to:
  1483. /// **'我的跟单收益'**
  1484. String get myCopyIncome;
  1485. /// No description provided for @traderSettings.
  1486. ///
  1487. /// In zh, this message translates to:
  1488. /// **'带单设置'**
  1489. String get traderSettings;
  1490. /// No description provided for @traderNickname.
  1491. ///
  1492. /// In zh, this message translates to:
  1493. /// **'带单昵称'**
  1494. String get traderNickname;
  1495. /// No description provided for @enterNickname.
  1496. ///
  1497. /// In zh, this message translates to:
  1498. /// **'请输入昵称'**
  1499. String get enterNickname;
  1500. /// No description provided for @personalBio.
  1501. ///
  1502. /// In zh, this message translates to:
  1503. /// **'个人签名'**
  1504. String get personalBio;
  1505. /// No description provided for @tagsLabel.
  1506. ///
  1507. /// In zh, this message translates to:
  1508. /// **'标签'**
  1509. String get tagsLabel;
  1510. /// No description provided for @tradeContract.
  1511. ///
  1512. /// In zh, this message translates to:
  1513. /// **'带单合约'**
  1514. String get tradeContract;
  1515. /// No description provided for @applyCancelTrader.
  1516. ///
  1517. /// In zh, this message translates to:
  1518. /// **'申请取消交易员资格'**
  1519. String get applyCancelTrader;
  1520. /// No description provided for @applySubmitted.
  1521. ///
  1522. /// In zh, this message translates to:
  1523. /// **'申请已提交'**
  1524. String get applySubmitted;
  1525. /// No description provided for @traderApply.
  1526. ///
  1527. /// In zh, this message translates to:
  1528. /// **'交易员申请'**
  1529. String get traderApply;
  1530. /// No description provided for @transferNow.
  1531. ///
  1532. /// In zh, this message translates to:
  1533. /// **'去划转'**
  1534. String get transferNow;
  1535. /// No description provided for @noCurrentFollowTrader.
  1536. ///
  1537. /// In zh, this message translates to:
  1538. /// **'当前没有跟随交易员'**
  1539. String get noCurrentFollowTrader;
  1540. /// No description provided for @applyReview.
  1541. ///
  1542. /// In zh, this message translates to:
  1543. /// **'申请审核中'**
  1544. String get applyReview;
  1545. /// No description provided for @submitApply.
  1546. ///
  1547. /// In zh, this message translates to:
  1548. /// **'提交申请'**
  1549. String get submitApply;
  1550. /// No description provided for @currentCopyTrading.
  1551. ///
  1552. /// In zh, this message translates to:
  1553. /// **'当前跟单'**
  1554. String get currentCopyTrading;
  1555. /// No description provided for @myTraders.
  1556. ///
  1557. /// In zh, this message translates to:
  1558. /// **'我的交易员'**
  1559. String get myTraders;
  1560. /// No description provided for @historyFollowing.
  1561. ///
  1562. /// In zh, this message translates to:
  1563. /// **'历史跟单'**
  1564. String get historyFollowing;
  1565. /// No description provided for @traderAgreement.
  1566. ///
  1567. /// In zh, this message translates to:
  1568. /// **'交易员协议'**
  1569. String get traderAgreement;
  1570. /// No description provided for @copyFollowers.
  1571. ///
  1572. /// In zh, this message translates to:
  1573. /// **'跟单用户'**
  1574. String get copyFollowers;
  1575. /// No description provided for @currentTrades.
  1576. ///
  1577. /// In zh, this message translates to:
  1578. /// **'当前带单'**
  1579. String get currentTrades;
  1580. /// No description provided for @noFollowers.
  1581. ///
  1582. /// In zh, this message translates to:
  1583. /// **'暂无跟单用户'**
  1584. String get noFollowers;
  1585. /// No description provided for @lastPeriodProfit.
  1586. ///
  1587. /// In zh, this message translates to:
  1588. /// **'上期分润收益'**
  1589. String get lastPeriodProfit;
  1590. /// No description provided for @copyUser.
  1591. ///
  1592. /// In zh, this message translates to:
  1593. /// **'跟单员'**
  1594. String get copyUser;
  1595. /// No description provided for @remove.
  1596. ///
  1597. /// In zh, this message translates to:
  1598. /// **'移除'**
  1599. String get remove;
  1600. /// No description provided for @removed.
  1601. ///
  1602. /// In zh, this message translates to:
  1603. /// **'已移除'**
  1604. String get removed;
  1605. /// No description provided for @noCurrentTrades.
  1606. ///
  1607. /// In zh, this message translates to:
  1608. /// **'暂无当前带单'**
  1609. String get noCurrentTrades;
  1610. /// No description provided for @noHistoryTrades.
  1611. ///
  1612. /// In zh, this message translates to:
  1613. /// **'暂无历史带单'**
  1614. String get noHistoryTrades;
  1615. /// No description provided for @registerToEarn.
  1616. ///
  1617. /// In zh, this message translates to:
  1618. /// **'注册赢取返佣奖励'**
  1619. String get registerToEarn;
  1620. /// No description provided for @contactService.
  1621. ///
  1622. /// In zh, this message translates to:
  1623. /// **'联系客服'**
  1624. String get contactService;
  1625. /// No description provided for @fundRecord.
  1626. ///
  1627. /// In zh, this message translates to:
  1628. /// **'资产流水'**
  1629. String get fundRecord;
  1630. /// No description provided for @startTime.
  1631. ///
  1632. /// In zh, this message translates to:
  1633. /// **'开始时间'**
  1634. String get startTime;
  1635. /// No description provided for @endTime.
  1636. ///
  1637. /// In zh, this message translates to:
  1638. /// **'结束时间'**
  1639. String get endTime;
  1640. /// No description provided for @timeRange.
  1641. ///
  1642. /// In zh, this message translates to:
  1643. /// **'起止时间'**
  1644. String get timeRange;
  1645. /// No description provided for @selectDate.
  1646. ///
  1647. /// In zh, this message translates to:
  1648. /// **'选择日期'**
  1649. String get selectDate;
  1650. /// No description provided for @selectCoin.
  1651. ///
  1652. /// In zh, this message translates to:
  1653. /// **'选择币种'**
  1654. String get selectCoin;
  1655. /// No description provided for @selectType.
  1656. ///
  1657. /// In zh, this message translates to:
  1658. /// **'选择类型'**
  1659. String get selectType;
  1660. /// No description provided for @transferAmount.
  1661. ///
  1662. /// In zh, this message translates to:
  1663. /// **'划转数量'**
  1664. String get transferAmount;
  1665. /// No description provided for @enterTransferAmount.
  1666. ///
  1667. /// In zh, this message translates to:
  1668. /// **'请输入划转数量'**
  1669. String get enterTransferAmount;
  1670. /// No description provided for @maxTransferable.
  1671. ///
  1672. /// In zh, this message translates to:
  1673. /// **'最多可划转'**
  1674. String get maxTransferable;
  1675. /// No description provided for @transferSuccess.
  1676. ///
  1677. /// In zh, this message translates to:
  1678. /// **'划转成功'**
  1679. String get transferSuccess;
  1680. /// No description provided for @selectTransferCoin.
  1681. ///
  1682. /// In zh, this message translates to:
  1683. /// **'选择划转币种'**
  1684. String get selectTransferCoin;
  1685. /// No description provided for @onChainWithdraw.
  1686. ///
  1687. /// In zh, this message translates to:
  1688. /// **'链上提币'**
  1689. String get onChainWithdraw;
  1690. /// No description provided for @internalTransfer.
  1691. ///
  1692. /// In zh, this message translates to:
  1693. /// **'内部转账'**
  1694. String get internalTransfer;
  1695. /// No description provided for @withdrawNetwork.
  1696. ///
  1697. /// In zh, this message translates to:
  1698. /// **'提币网络'**
  1699. String get withdrawNetwork;
  1700. /// No description provided for @withdrawNetworkTip.
  1701. ///
  1702. /// In zh, this message translates to:
  1703. /// **'请确保您选择的提币网络,与您在充币平台使用的网络一致,否则资产可能会丢失。'**
  1704. String get withdrawNetworkTip;
  1705. /// No description provided for @withdrawAddress.
  1706. ///
  1707. /// In zh, this message translates to:
  1708. /// **'提币地址'**
  1709. String get withdrawAddress;
  1710. /// No description provided for @enterWithdrawAddress.
  1711. ///
  1712. /// In zh, this message translates to:
  1713. /// **'请输入提币地址'**
  1714. String get enterWithdrawAddress;
  1715. /// No description provided for @withdrawAmount.
  1716. ///
  1717. /// In zh, this message translates to:
  1718. /// **'提币金额'**
  1719. String get withdrawAmount;
  1720. /// No description provided for @receivedAmount.
  1721. ///
  1722. /// In zh, this message translates to:
  1723. /// **'到账数量'**
  1724. String get receivedAmount;
  1725. /// No description provided for @fee.
  1726. ///
  1727. /// In zh, this message translates to:
  1728. /// **'手续费'**
  1729. String get fee;
  1730. /// No description provided for @withdrawSubmitted.
  1731. ///
  1732. /// In zh, this message translates to:
  1733. /// **'提币申请已提交'**
  1734. String get withdrawSubmitted;
  1735. /// No description provided for @internalLabel.
  1736. ///
  1737. /// In zh, this message translates to:
  1738. /// **'内部'**
  1739. String get internalLabel;
  1740. /// No description provided for @fundPassword.
  1741. ///
  1742. /// In zh, this message translates to:
  1743. /// **'资金密码'**
  1744. String get fundPassword;
  1745. /// No description provided for @emailCode.
  1746. ///
  1747. /// In zh, this message translates to:
  1748. /// **'邮箱验证码'**
  1749. String get emailCode;
  1750. /// No description provided for @googleCode.
  1751. ///
  1752. /// In zh, this message translates to:
  1753. /// **'谷歌验证码'**
  1754. String get googleCode;
  1755. /// No description provided for @securityVerification.
  1756. ///
  1757. /// In zh, this message translates to:
  1758. /// **'安全验证'**
  1759. String get securityVerification;
  1760. /// No description provided for @depositAddress.
  1761. ///
  1762. /// In zh, this message translates to:
  1763. /// **'充值地址'**
  1764. String get depositAddress;
  1765. /// No description provided for @saveFailed.
  1766. ///
  1767. /// In zh, this message translates to:
  1768. /// **'保存失败'**
  1769. String get saveFailed;
  1770. /// No description provided for @depositNetwork.
  1771. ///
  1772. /// In zh, this message translates to:
  1773. /// **'充币网络'**
  1774. String get depositNetwork;
  1775. /// No description provided for @saveQrCode.
  1776. ///
  1777. /// In zh, this message translates to:
  1778. /// **'保存二维码'**
  1779. String get saveQrCode;
  1780. /// No description provided for @addressCopied.
  1781. ///
  1782. /// In zh, this message translates to:
  1783. /// **'地址已复制'**
  1784. String get addressCopied;
  1785. /// No description provided for @minDeposit.
  1786. ///
  1787. /// In zh, this message translates to:
  1788. /// **'最小充值额'**
  1789. String get minDeposit;
  1790. /// No description provided for @depositArrival.
  1791. ///
  1792. /// In zh, this message translates to:
  1793. /// **'充值到账'**
  1794. String get depositArrival;
  1795. /// No description provided for @depositDetail.
  1796. ///
  1797. /// In zh, this message translates to:
  1798. /// **'充值详情'**
  1799. String get depositDetail;
  1800. /// No description provided for @depositCurrency.
  1801. ///
  1802. /// In zh, this message translates to:
  1803. /// **'充值币种'**
  1804. String get depositCurrency;
  1805. /// No description provided for @txHash.
  1806. ///
  1807. /// In zh, this message translates to:
  1808. /// **'交易哈希'**
  1809. String get txHash;
  1810. /// No description provided for @applyTime.
  1811. ///
  1812. /// In zh, this message translates to:
  1813. /// **'申请时间'**
  1814. String get applyTime;
  1815. /// No description provided for @hashCopied.
  1816. ///
  1817. /// In zh, this message translates to:
  1818. /// **'交易哈希已复制'**
  1819. String get hashCopied;
  1820. /// No description provided for @withdrawRecord.
  1821. ///
  1822. /// In zh, this message translates to:
  1823. /// **'提币记录'**
  1824. String get withdrawRecord;
  1825. /// No description provided for @transferRecord.
  1826. ///
  1827. /// In zh, this message translates to:
  1828. /// **'划转记录'**
  1829. String get transferRecord;
  1830. /// No description provided for @withdrawDetail.
  1831. ///
  1832. /// In zh, this message translates to:
  1833. /// **'提现详情'**
  1834. String get withdrawDetail;
  1835. /// No description provided for @transferDetail.
  1836. ///
  1837. /// In zh, this message translates to:
  1838. /// **'转账详情'**
  1839. String get transferDetail;
  1840. /// No description provided for @transferUser.
  1841. ///
  1842. /// In zh, this message translates to:
  1843. /// **'转账用户'**
  1844. String get transferUser;
  1845. /// No description provided for @cancelWithdraw.
  1846. ///
  1847. /// In zh, this message translates to:
  1848. /// **'取消提现'**
  1849. String get cancelWithdraw;
  1850. /// No description provided for @confirmCancelWithdraw.
  1851. ///
  1852. /// In zh, this message translates to:
  1853. /// **'确定要取消此次提现吗?'**
  1854. String get confirmCancelWithdraw;
  1855. /// No description provided for @withdrawCancelled.
  1856. ///
  1857. /// In zh, this message translates to:
  1858. /// **'提现已取消'**
  1859. String get withdrawCancelled;
  1860. /// No description provided for @withdrawProgress.
  1861. ///
  1862. /// In zh, this message translates to:
  1863. /// **'提现进度'**
  1864. String get withdrawProgress;
  1865. /// No description provided for @withdrawApplication.
  1866. ///
  1867. /// In zh, this message translates to:
  1868. /// **'提现申请'**
  1869. String get withdrawApplication;
  1870. /// No description provided for @waitingWithdraw.
  1871. ///
  1872. /// In zh, this message translates to:
  1873. /// **'等待提现'**
  1874. String get waitingWithdraw;
  1875. /// No description provided for @withdrawFailed.
  1876. ///
  1877. /// In zh, this message translates to:
  1878. /// **'提现失败'**
  1879. String get withdrawFailed;
  1880. /// No description provided for @withdrawSuccess.
  1881. ///
  1882. /// In zh, this message translates to:
  1883. /// **'提现成功'**
  1884. String get withdrawSuccess;
  1885. /// No description provided for @withdrawStatusReviewing.
  1886. ///
  1887. /// In zh, this message translates to:
  1888. /// **'审核中'**
  1889. String get withdrawStatusReviewing;
  1890. /// No description provided for @withdrawStatusReleasing.
  1891. ///
  1892. /// In zh, this message translates to:
  1893. /// **'放币中'**
  1894. String get withdrawStatusReleasing;
  1895. /// No description provided for @withdrawStatusFailed.
  1896. ///
  1897. /// In zh, this message translates to:
  1898. /// **'失败'**
  1899. String get withdrawStatusFailed;
  1900. /// No description provided for @withdrawStatusSuccess.
  1901. ///
  1902. /// In zh, this message translates to:
  1903. /// **'成功'**
  1904. String get withdrawStatusSuccess;
  1905. /// No description provided for @withdrawStatusCancelled.
  1906. ///
  1907. /// In zh, this message translates to:
  1908. /// **'已取消'**
  1909. String get withdrawStatusCancelled;
  1910. /// No description provided for @unknown.
  1911. ///
  1912. /// In zh, this message translates to:
  1913. /// **'未知'**
  1914. String get unknown;
  1915. /// No description provided for @feeUsdt.
  1916. ///
  1917. /// In zh, this message translates to:
  1918. /// **'手续费(U)'**
  1919. String get feeUsdt;
  1920. /// No description provided for @openCloseLabel.
  1921. ///
  1922. /// In zh, this message translates to:
  1923. /// **'开平仓'**
  1924. String get openCloseLabel;
  1925. /// No description provided for @rebateId.
  1926. ///
  1927. /// In zh, this message translates to:
  1928. /// **'返佣ID'**
  1929. String get rebateId;
  1930. /// No description provided for @copyBalance.
  1931. ///
  1932. /// In zh, this message translates to:
  1933. /// **'跟单余额'**
  1934. String get copyBalance;
  1935. /// No description provided for @scannerFailed.
  1936. ///
  1937. /// In zh, this message translates to:
  1938. /// **'打开扫描器失败'**
  1939. String get scannerFailed;
  1940. /// No description provided for @transferSuccess2.
  1941. ///
  1942. /// In zh, this message translates to:
  1943. /// **'转账成功'**
  1944. String get transferSuccess2;
  1945. /// No description provided for @securitySettingsTitle.
  1946. ///
  1947. /// In zh, this message translates to:
  1948. /// **'安全设置'**
  1949. String get securitySettingsTitle;
  1950. /// No description provided for @securityBannerTip.
  1951. ///
  1952. /// In zh, this message translates to:
  1953. /// **'为了保证您的账户安全,建议完成以下认证'**
  1954. String get securityBannerTip;
  1955. /// No description provided for @authenticator.
  1956. ///
  1957. /// In zh, this message translates to:
  1958. /// **'身份验证器'**
  1959. String get authenticator;
  1960. /// No description provided for @authenticatorDesc.
  1961. ///
  1962. /// In zh, this message translates to:
  1963. /// **'使用身份验证器进行身份验证'**
  1964. String get authenticatorDesc;
  1965. /// No description provided for @certified.
  1966. ///
  1967. /// In zh, this message translates to:
  1968. /// **'已认证'**
  1969. String get certified;
  1970. /// No description provided for @notCertified.
  1971. ///
  1972. /// In zh, this message translates to:
  1973. /// **'未认证'**
  1974. String get notCertified;
  1975. /// No description provided for @emailAuth.
  1976. ///
  1977. /// In zh, this message translates to:
  1978. /// **'邮箱认证'**
  1979. String get emailAuth;
  1980. /// No description provided for @emailAuthDesc.
  1981. ///
  1982. /// In zh, this message translates to:
  1983. /// **'绑定邮箱以接收验证码'**
  1984. String get emailAuthDesc;
  1985. /// No description provided for @fundPasswordDesc.
  1986. ///
  1987. /// In zh, this message translates to:
  1988. /// **'用于提现、内部转账等资金操作'**
  1989. String get fundPasswordDesc;
  1990. /// No description provided for @modifyAction.
  1991. ///
  1992. /// In zh, this message translates to:
  1993. /// **'修改'**
  1994. String get modifyAction;
  1995. /// No description provided for @notSet.
  1996. ///
  1997. /// In zh, this message translates to:
  1998. /// **'未设置'**
  1999. String get notSet;
  2000. /// No description provided for @alreadySet.
  2001. ///
  2002. /// In zh, this message translates to:
  2003. /// **'已设置'**
  2004. String get alreadySet;
  2005. /// No description provided for @loginPasswordMenu.
  2006. ///
  2007. /// In zh, this message translates to:
  2008. /// **'登录密码'**
  2009. String get loginPasswordMenu;
  2010. /// No description provided for @loginPasswordDesc.
  2011. ///
  2012. /// In zh, this message translates to:
  2013. /// **'定期修改密码可提高账户安全性'**
  2014. String get loginPasswordDesc;
  2015. /// No description provided for @hintTitle.
  2016. ///
  2017. /// In zh, this message translates to:
  2018. /// **'提示'**
  2019. String get hintTitle;
  2020. /// No description provided for @noHelpContent.
  2021. ///
  2022. /// In zh, this message translates to:
  2023. /// **'暂无帮助内容'**
  2024. String get noHelpContent;
  2025. /// No description provided for @noAnnouncements.
  2026. ///
  2027. /// In zh, this message translates to:
  2028. /// **'暂无公告'**
  2029. String get noAnnouncements;
  2030. /// No description provided for @bindSuccess.
  2031. ///
  2032. /// In zh, this message translates to:
  2033. /// **'绑定成功'**
  2034. String get bindSuccess;
  2035. /// No description provided for @secretKeyCopied.
  2036. ///
  2037. /// In zh, this message translates to:
  2038. /// **'秘钥已复制'**
  2039. String get secretKeyCopied;
  2040. /// No description provided for @setFundPassword.
  2041. ///
  2042. /// In zh, this message translates to:
  2043. /// **'设置资金密码'**
  2044. String get setFundPassword;
  2045. /// No description provided for @changeFundPassword.
  2046. ///
  2047. /// In zh, this message translates to:
  2048. /// **'修改资金密码'**
  2049. String get changeFundPassword;
  2050. /// No description provided for @confirmFundPassword.
  2051. ///
  2052. /// In zh, this message translates to:
  2053. /// **'确认资金密码'**
  2054. String get confirmFundPassword;
  2055. /// No description provided for @enterFundPasswordHint.
  2056. ///
  2057. /// In zh, this message translates to:
  2058. /// **'请设置资金密码'**
  2059. String get enterFundPasswordHint;
  2060. /// No description provided for @reenterFundPassword.
  2061. ///
  2062. /// In zh, this message translates to:
  2063. /// **'请再次输入资金密码'**
  2064. String get reenterFundPassword;
  2065. /// No description provided for @confirmModify.
  2066. ///
  2067. /// In zh, this message translates to:
  2068. /// **'确认修改'**
  2069. String get confirmModify;
  2070. /// No description provided for @confirmSet.
  2071. ///
  2072. /// In zh, this message translates to:
  2073. /// **'确认设置'**
  2074. String get confirmSet;
  2075. /// No description provided for @changeLoginPassword.
  2076. ///
  2077. /// In zh, this message translates to:
  2078. /// **'修改登录密码'**
  2079. String get changeLoginPassword;
  2080. /// No description provided for @currentPassword.
  2081. ///
  2082. /// In zh, this message translates to:
  2083. /// **'当前密码'**
  2084. String get currentPassword;
  2085. /// No description provided for @enterCurrentPassword.
  2086. ///
  2087. /// In zh, this message translates to:
  2088. /// **'请输入当前登录密码'**
  2089. String get enterCurrentPassword;
  2090. /// No description provided for @containsLetter.
  2091. ///
  2092. /// In zh, this message translates to:
  2093. /// **'含字母'**
  2094. String get containsLetter;
  2095. /// No description provided for @containsDigit.
  2096. ///
  2097. /// In zh, this message translates to:
  2098. /// **'含数字'**
  2099. String get containsDigit;
  2100. /// No description provided for @changeSuccess.
  2101. ///
  2102. /// In zh, this message translates to:
  2103. /// **'修改成功'**
  2104. String get changeSuccess;
  2105. /// No description provided for @confirmNewPassword.
  2106. ///
  2107. /// In zh, this message translates to:
  2108. /// **'确认新密码'**
  2109. String get confirmNewPassword;
  2110. /// No description provided for @reenterNewPassword.
  2111. ///
  2112. /// In zh, this message translates to:
  2113. /// **'再次输入新密码'**
  2114. String get reenterNewPassword;
  2115. /// No description provided for @noLines.
  2116. ///
  2117. /// In zh, this message translates to:
  2118. /// **'暂无可用线路'**
  2119. String get noLines;
  2120. /// No description provided for @protocolDetail.
  2121. ///
  2122. /// In zh, this message translates to:
  2123. /// **'协议详情'**
  2124. String get protocolDetail;
  2125. /// No description provided for @noContent.
  2126. ///
  2127. /// In zh, this message translates to:
  2128. /// **'暂无内容'**
  2129. String get noContent;
  2130. /// No description provided for @announcementDetail.
  2131. ///
  2132. /// In zh, this message translates to:
  2133. /// **'公告详情'**
  2134. String get announcementDetail;
  2135. /// No description provided for @announcementNotFound.
  2136. ///
  2137. /// In zh, this message translates to:
  2138. /// **'公告不存在'**
  2139. String get announcementNotFound;
  2140. /// No description provided for @helpDetail.
  2141. ///
  2142. /// In zh, this message translates to:
  2143. /// **'帮助详情'**
  2144. String get helpDetail;
  2145. /// No description provided for @contentNotFound.
  2146. ///
  2147. /// In zh, this message translates to:
  2148. /// **'内容不存在'**
  2149. String get contentNotFound;
  2150. /// No description provided for @contactServiceHint.
  2151. ///
  2152. /// In zh, this message translates to:
  2153. /// **'如需重置修改请联系客服'**
  2154. String get contactServiceHint;
  2155. /// No description provided for @twoStepVerification.
  2156. ///
  2157. /// In zh, this message translates to:
  2158. /// **'两步验证'**
  2159. String get twoStepVerification;
  2160. /// No description provided for @myInvitations.
  2161. ///
  2162. /// In zh, this message translates to:
  2163. /// **'我的邀请'**
  2164. String get myInvitations;
  2165. /// No description provided for @teamDetail.
  2166. ///
  2167. /// In zh, this message translates to:
  2168. /// **'团队明细'**
  2169. String get teamDetail;
  2170. /// No description provided for @invitationList.
  2171. ///
  2172. /// In zh, this message translates to:
  2173. /// **'邀请列表'**
  2174. String get invitationList;
  2175. /// No description provided for @noInvitations.
  2176. ///
  2177. /// In zh, this message translates to:
  2178. /// **'暂无邀请记录'**
  2179. String get noInvitations;
  2180. /// No description provided for @levelLabel.
  2181. ///
  2182. /// In zh, this message translates to:
  2183. /// **'级别'**
  2184. String get levelLabel;
  2185. /// No description provided for @teamTotalAsset.
  2186. ///
  2187. /// In zh, this message translates to:
  2188. /// **'团队持有总资产'**
  2189. String get teamTotalAsset;
  2190. /// No description provided for @withinWeek.
  2191. ///
  2192. /// In zh, this message translates to:
  2193. /// **'一周内'**
  2194. String get withinWeek;
  2195. /// No description provided for @today.
  2196. ///
  2197. /// In zh, this message translates to:
  2198. /// **'当日'**
  2199. String get today;
  2200. /// No description provided for @perpetualRebate.
  2201. ///
  2202. /// In zh, this message translates to:
  2203. /// **'永续合约返佣比例'**
  2204. String get perpetualRebate;
  2205. /// No description provided for @copyRebate.
  2206. ///
  2207. /// In zh, this message translates to:
  2208. /// **'跟单返佣比例'**
  2209. String get copyRebate;
  2210. /// No description provided for @commissionModify.
  2211. ///
  2212. /// In zh, this message translates to:
  2213. /// **'佣金比例修改'**
  2214. String get commissionModify;
  2215. /// No description provided for @setSuccess.
  2216. ///
  2217. /// In zh, this message translates to:
  2218. /// **'设置成功'**
  2219. String get setSuccess;
  2220. /// No description provided for @enterValidRate.
  2221. ///
  2222. /// In zh, this message translates to:
  2223. /// **'请输入有效的永续比例'**
  2224. String get enterValidRate;
  2225. /// No description provided for @normalUser.
  2226. ///
  2227. /// In zh, this message translates to:
  2228. /// **'普通'**
  2229. String get normalUser;
  2230. /// No description provided for @historicalPositions.
  2231. ///
  2232. /// In zh, this message translates to:
  2233. /// **'历史持仓记录'**
  2234. String get historicalPositions;
  2235. /// No description provided for @historicalOrders.
  2236. ///
  2237. /// In zh, this message translates to:
  2238. /// **'历史委托记录'**
  2239. String get historicalOrders;
  2240. /// No description provided for @openTime.
  2241. ///
  2242. /// In zh, this message translates to:
  2243. /// **'开仓时间'**
  2244. String get openTime;
  2245. /// No description provided for @closeTime.
  2246. ///
  2247. /// In zh, this message translates to:
  2248. /// **'完成时间'**
  2249. String get closeTime;
  2250. /// No description provided for @orderTime.
  2251. ///
  2252. /// In zh, this message translates to:
  2253. /// **'委托时间'**
  2254. String get orderTime;
  2255. /// No description provided for @marketOrderType.
  2256. ///
  2257. /// In zh, this message translates to:
  2258. /// **'市价'**
  2259. String get marketOrderType;
  2260. /// No description provided for @positionDetail.
  2261. ///
  2262. /// In zh, this message translates to:
  2263. /// **'持仓详情'**
  2264. String get positionDetail;
  2265. /// No description provided for @direction.
  2266. ///
  2267. /// In zh, this message translates to:
  2268. /// **'方向'**
  2269. String get direction;
  2270. /// No description provided for @orderType.
  2271. ///
  2272. /// In zh, this message translates to:
  2273. /// **'委托类型'**
  2274. String get orderType;
  2275. /// No description provided for @leverage.
  2276. ///
  2277. /// In zh, this message translates to:
  2278. /// **'杠杆倍数'**
  2279. String get leverage;
  2280. /// No description provided for @orderDetail.
  2281. ///
  2282. /// In zh, this message translates to:
  2283. /// **'委托详情'**
  2284. String get orderDetail;
  2285. /// No description provided for @avgTradePrice.
  2286. ///
  2287. /// In zh, this message translates to:
  2288. /// **'成交均价'**
  2289. String get avgTradePrice;
  2290. /// No description provided for @triggerCondition.
  2291. ///
  2292. /// In zh, this message translates to:
  2293. /// **'触发条件'**
  2294. String get triggerCondition;
  2295. /// No description provided for @stopProfitLoss.
  2296. ///
  2297. /// In zh, this message translates to:
  2298. /// **'止盈止损'**
  2299. String get stopProfitLoss;
  2300. /// No description provided for @createTime.
  2301. ///
  2302. /// In zh, this message translates to:
  2303. /// **'创建时间'**
  2304. String get createTime;
  2305. /// No description provided for @tradeDetailLabel.
  2306. ///
  2307. /// In zh, this message translates to:
  2308. /// **'交易明细'**
  2309. String get tradeDetailLabel;
  2310. /// No description provided for @tradePrice.
  2311. ///
  2312. /// In zh, this message translates to:
  2313. /// **'成交价格'**
  2314. String get tradePrice;
  2315. /// No description provided for @tradeTime.
  2316. ///
  2317. /// In zh, this message translates to:
  2318. /// **'成交时间'**
  2319. String get tradeTime;
  2320. /// No description provided for @cancelOrder.
  2321. ///
  2322. /// In zh, this message translates to:
  2323. /// **'撤单'**
  2324. String get cancelOrder;
  2325. /// No description provided for @cancelOrderSuccess.
  2326. ///
  2327. /// In zh, this message translates to:
  2328. /// **'撤单成功'**
  2329. String get cancelOrderSuccess;
  2330. /// No description provided for @orderSuccess.
  2331. ///
  2332. /// In zh, this message translates to:
  2333. /// **'下单成功'**
  2334. String get orderSuccess;
  2335. /// No description provided for @errEnterVolume.
  2336. ///
  2337. /// In zh, this message translates to:
  2338. /// **'请输入委托数量'**
  2339. String get errEnterVolume;
  2340. /// No description provided for @errEnterPrice.
  2341. ///
  2342. /// In zh, this message translates to:
  2343. /// **'请输入委托价格'**
  2344. String get errEnterPrice;
  2345. /// No description provided for @errEnterTriggerPrice.
  2346. ///
  2347. /// In zh, this message translates to:
  2348. /// **'请输入触发价格'**
  2349. String get errEnterTriggerPrice;
  2350. /// No description provided for @errContractNotReady.
  2351. ///
  2352. /// In zh, this message translates to:
  2353. /// **'合约面值未就绪'**
  2354. String get errContractNotReady;
  2355. /// No description provided for @errPriceNotReady.
  2356. ///
  2357. /// In zh, this message translates to:
  2358. /// **'价格未就绪,请稍后重试'**
  2359. String get errPriceNotReady;
  2360. /// No description provided for @errVolumeInsufficient.
  2361. ///
  2362. /// In zh, this message translates to:
  2363. /// **'数量不足,请增加委托数量'**
  2364. String get errVolumeInsufficient;
  2365. /// No description provided for @errEnterClosePrice.
  2366. ///
  2367. /// In zh, this message translates to:
  2368. /// **'请输入平仓价格'**
  2369. String get errEnterClosePrice;
  2370. /// No description provided for @errInvalidOrderId.
  2371. ///
  2372. /// In zh, this message translates to:
  2373. /// **'无效订单 ID'**
  2374. String get errInvalidOrderId;
  2375. /// No description provided for @errNoLongPosition.
  2376. ///
  2377. /// In zh, this message translates to:
  2378. /// **'无多仓可平'**
  2379. String get errNoLongPosition;
  2380. /// No description provided for @errNoShortPosition.
  2381. ///
  2382. /// In zh, this message translates to:
  2383. /// **'无空仓可平'**
  2384. String get errNoShortPosition;
  2385. /// No description provided for @errNoOrdersToCancel.
  2386. ///
  2387. /// In zh, this message translates to:
  2388. /// **'暂无委托单可撤'**
  2389. String get errNoOrdersToCancel;
  2390. /// No description provided for @errServiceUnavailable.
  2391. ///
  2392. /// In zh, this message translates to:
  2393. /// **'服务暂时不可用,请稍后重试'**
  2394. String get errServiceUnavailable;
  2395. /// No description provided for @errTimeout.
  2396. ///
  2397. /// In zh, this message translates to:
  2398. /// **'请求超时,请检查网络后重试'**
  2399. String get errTimeout;
  2400. /// No description provided for @errNetworkError.
  2401. ///
  2402. /// In zh, this message translates to:
  2403. /// **'网络连接异常,请检查网络设置'**
  2404. String get errNetworkError;
  2405. /// No description provided for @errSelectNetwork.
  2406. ///
  2407. /// In zh, this message translates to:
  2408. /// **'请选择提币网络'**
  2409. String get errSelectNetwork;
  2410. /// No description provided for @errEnterAddress.
  2411. ///
  2412. /// In zh, this message translates to:
  2413. /// **'请输入提币地址'**
  2414. String get errEnterAddress;
  2415. /// No description provided for @errEnterAmount.
  2416. ///
  2417. /// In zh, this message translates to:
  2418. /// **'请输入金额'**
  2419. String get errEnterAmount;
  2420. /// No description provided for @errEnterFundPassword.
  2421. ///
  2422. /// In zh, this message translates to:
  2423. /// **'请输入资金密码'**
  2424. String get errEnterFundPassword;
  2425. /// No description provided for @errEnterVerifyCode.
  2426. ///
  2427. /// In zh, this message translates to:
  2428. /// **'请输入验证码'**
  2429. String get errEnterVerifyCode;
  2430. /// No description provided for @errBindGoogleFirst.
  2431. ///
  2432. /// In zh, this message translates to:
  2433. /// **'请先绑定Google验证'**
  2434. String get errBindGoogleFirst;
  2435. /// No description provided for @errEnterGoogleCode.
  2436. ///
  2437. /// In zh, this message translates to:
  2438. /// **'请输入Google验证码'**
  2439. String get errEnterGoogleCode;
  2440. /// No description provided for @errAmountFormat.
  2441. ///
  2442. /// In zh, this message translates to:
  2443. /// **'金额格式错误'**
  2444. String get errAmountFormat;
  2445. /// No description provided for @errMinWithdraw.
  2446. ///
  2447. /// In zh, this message translates to:
  2448. /// **'最小提现额 {amount}'**
  2449. String errMinWithdraw(String amount);
  2450. /// No description provided for @errMinTransfer.
  2451. ///
  2452. /// In zh, this message translates to:
  2453. /// **'最小转账额 {amount}'**
  2454. String errMinTransfer(String amount);
  2455. /// No description provided for @errExceedBalance.
  2456. ///
  2457. /// In zh, this message translates to:
  2458. /// **'超出可用余额'**
  2459. String get errExceedBalance;
  2460. /// No description provided for @errEnterStartTime.
  2461. ///
  2462. /// In zh, this message translates to:
  2463. /// **'请选择开始时间'**
  2464. String get errEnterStartTime;
  2465. /// No description provided for @errEnterEndTime.
  2466. ///
  2467. /// In zh, this message translates to:
  2468. /// **'请选择结束时间'**
  2469. String get errEnterEndTime;
  2470. /// No description provided for @closeOrderSubmitted.
  2471. ///
  2472. /// In zh, this message translates to:
  2473. /// **'平仓委托已提交'**
  2474. String get closeOrderSubmitted;
  2475. /// No description provided for @contractUnitSettings.
  2476. ///
  2477. /// In zh, this message translates to:
  2478. /// **'合约单位设置'**
  2479. String get contractUnitSettings;
  2480. /// No description provided for @marginMode.
  2481. ///
  2482. /// In zh, this message translates to:
  2483. /// **'保证金模式'**
  2484. String get marginMode;
  2485. /// No description provided for @adjustLeverage.
  2486. ///
  2487. /// In zh, this message translates to:
  2488. /// **'调整杠杆'**
  2489. String get adjustLeverage;
  2490. /// No description provided for @openTab.
  2491. ///
  2492. /// In zh, this message translates to:
  2493. /// **'开仓'**
  2494. String get openTab;
  2495. /// No description provided for @closeTab.
  2496. ///
  2497. /// In zh, this message translates to:
  2498. /// **'平仓'**
  2499. String get closeTab;
  2500. /// No description provided for @limitOrder.
  2501. ///
  2502. /// In zh, this message translates to:
  2503. /// **'限价单'**
  2504. String get limitOrder;
  2505. /// No description provided for @marketConditional.
  2506. ///
  2507. /// In zh, this message translates to:
  2508. /// **'市价条件委托单'**
  2509. String get marketConditional;
  2510. /// No description provided for @limitConditional.
  2511. ///
  2512. /// In zh, this message translates to:
  2513. /// **'限价条件委托单'**
  2514. String get limitConditional;
  2515. /// No description provided for @holdPosition.
  2516. ///
  2517. /// In zh, this message translates to:
  2518. /// **'持有仓位'**
  2519. String get holdPosition;
  2520. /// No description provided for @currentOrders.
  2521. ///
  2522. /// In zh, this message translates to:
  2523. /// **'当前委托'**
  2524. String get currentOrders;
  2525. /// No description provided for @hideOtherPairs.
  2526. ///
  2527. /// In zh, this message translates to:
  2528. /// **'隐藏其他交易对'**
  2529. String get hideOtherPairs;
  2530. /// No description provided for @closeAll.
  2531. ///
  2532. /// In zh, this message translates to:
  2533. /// **'一键平仓'**
  2534. String get closeAll;
  2535. /// No description provided for @closeAllWarning.
  2536. ///
  2537. /// In zh, this message translates to:
  2538. /// **'您所有正在委托的订单将会被市价平仓'**
  2539. String get closeAllWarning;
  2540. /// No description provided for @closeAllSubmitted.
  2541. ///
  2542. /// In zh, this message translates to:
  2543. /// **'一键平仓指令已提交'**
  2544. String get closeAllSubmitted;
  2545. /// No description provided for @cancelAll.
  2546. ///
  2547. /// In zh, this message translates to:
  2548. /// **'全部撤单'**
  2549. String get cancelAll;
  2550. /// No description provided for @cancelAllSuccess.
  2551. ///
  2552. /// In zh, this message translates to:
  2553. /// **'全部撤单成功'**
  2554. String get cancelAllSuccess;
  2555. /// No description provided for @noOrders.
  2556. ///
  2557. /// In zh, this message translates to:
  2558. /// **'暂无委托'**
  2559. String get noOrders;
  2560. /// No description provided for @allOrdersLoaded.
  2561. ///
  2562. /// In zh, this message translates to:
  2563. /// **'已加载全部'**
  2564. String get allOrdersLoaded;
  2565. /// No description provided for @takeProfit.
  2566. ///
  2567. /// In zh, this message translates to:
  2568. /// **'止盈'**
  2569. String get takeProfit;
  2570. /// No description provided for @stopLoss.
  2571. ///
  2572. /// In zh, this message translates to:
  2573. /// **'止损'**
  2574. String get stopLoss;
  2575. /// No description provided for @entryPrice.
  2576. ///
  2577. /// In zh, this message translates to:
  2578. /// **'委托价格'**
  2579. String get entryPrice;
  2580. /// No description provided for @takeProfitPrice.
  2581. ///
  2582. /// In zh, this message translates to:
  2583. /// **'止盈价'**
  2584. String get takeProfitPrice;
  2585. /// No description provided for @stopLossPrice.
  2586. ///
  2587. /// In zh, this message translates to:
  2588. /// **'止损价'**
  2589. String get stopLossPrice;
  2590. /// No description provided for @expectedProfit.
  2591. ///
  2592. /// In zh, this message translates to:
  2593. /// **'成交预估盈利'**
  2594. String get expectedProfit;
  2595. /// No description provided for @expectedLoss.
  2596. ///
  2597. /// In zh, this message translates to:
  2598. /// **'成交预估亏损'**
  2599. String get expectedLoss;
  2600. /// No description provided for @tpslSuccess.
  2601. ///
  2602. /// In zh, this message translates to:
  2603. /// **'止盈止损设置成功'**
  2604. String get tpslSuccess;
  2605. /// No description provided for @latestLabel.
  2606. ///
  2607. /// In zh, this message translates to:
  2608. /// **'最新'**
  2609. String get latestLabel;
  2610. /// No description provided for @enterCloseAmount.
  2611. ///
  2612. /// In zh, this message translates to:
  2613. /// **'请输入平仓数量'**
  2614. String get enterCloseAmount;
  2615. /// No description provided for @estimatedPnl.
  2616. ///
  2617. /// In zh, this message translates to:
  2618. /// **'预计盈亏'**
  2619. String get estimatedPnl;
  2620. /// No description provided for @enterCloseAmountError.
  2621. ///
  2622. /// In zh, this message translates to:
  2623. /// **'请输入平仓数量'**
  2624. String get enterCloseAmountError;
  2625. /// No description provided for @enterLimitPriceError.
  2626. ///
  2627. /// In zh, this message translates to:
  2628. /// **'请输入限价价格'**
  2629. String get enterLimitPriceError;
  2630. /// No description provided for @availableMargin.
  2631. ///
  2632. /// In zh, this message translates to:
  2633. /// **'可用保证金'**
  2634. String get availableMargin;
  2635. /// No description provided for @usedMargin.
  2636. ///
  2637. /// In zh, this message translates to:
  2638. /// **'已用保证金'**
  2639. String get usedMargin;
  2640. /// No description provided for @sharePosition.
  2641. ///
  2642. /// In zh, this message translates to:
  2643. /// **'我的合约仓位'**
  2644. String get sharePosition;
  2645. /// No description provided for @reversePosition.
  2646. ///
  2647. /// In zh, this message translates to:
  2648. /// **'一键反手'**
  2649. String get reversePosition;
  2650. /// No description provided for @closePositionMarket.
  2651. ///
  2652. /// In zh, this message translates to:
  2653. /// **'市价全平'**
  2654. String get closePositionMarket;
  2655. /// No description provided for @reverseSuccess.
  2656. ///
  2657. /// In zh, this message translates to:
  2658. /// **'反手成功'**
  2659. String get reverseSuccess;
  2660. /// No description provided for @triggerPrice.
  2661. ///
  2662. /// In zh, this message translates to:
  2663. /// **'触发价格'**
  2664. String get triggerPrice;
  2665. /// No description provided for @markLabel.
  2666. ///
  2667. /// In zh, this message translates to:
  2668. /// **'标记'**
  2669. String get markLabel;
  2670. /// No description provided for @priceLabel.
  2671. ///
  2672. /// In zh, this message translates to:
  2673. /// **'价格'**
  2674. String get priceLabel;
  2675. /// No description provided for @quantityLabel.
  2676. ///
  2677. /// In zh, this message translates to:
  2678. /// **'数量'**
  2679. String get quantityLabel;
  2680. /// No description provided for @closeLong.
  2681. ///
  2682. /// In zh, this message translates to:
  2683. /// **'平多'**
  2684. String get closeLong;
  2685. /// No description provided for @closeShort.
  2686. ///
  2687. /// In zh, this message translates to:
  2688. /// **'平空'**
  2689. String get closeShort;
  2690. /// No description provided for @fundingRate.
  2691. ///
  2692. /// In zh, this message translates to:
  2693. /// **'资金费率'**
  2694. String get fundingRate;
  2695. /// No description provided for @countdown.
  2696. ///
  2697. /// In zh, this message translates to:
  2698. /// **'倒计时'**
  2699. String get countdown;
  2700. /// No description provided for @orderBook.
  2701. ///
  2702. /// In zh, this message translates to:
  2703. /// **'订单簿'**
  2704. String get orderBook;
  2705. /// No description provided for @latestTrades.
  2706. ///
  2707. /// In zh, this message translates to:
  2708. /// **'最新成交'**
  2709. String get latestTrades;
  2710. /// No description provided for @depthChart.
  2711. ///
  2712. /// In zh, this message translates to:
  2713. /// **'深度图'**
  2714. String get depthChart;
  2715. /// No description provided for @buy.
  2716. ///
  2717. /// In zh, this message translates to:
  2718. /// **'买入'**
  2719. String get buy;
  2720. /// No description provided for @sell.
  2721. ///
  2722. /// In zh, this message translates to:
  2723. /// **'卖出'**
  2724. String get sell;
  2725. /// No description provided for @noDepthData.
  2726. ///
  2727. /// In zh, this message translates to:
  2728. /// **'暂无深度数据'**
  2729. String get noDepthData;
  2730. /// No description provided for @noTradeData.
  2731. ///
  2732. /// In zh, this message translates to:
  2733. /// **'暂无成交数据'**
  2734. String get noTradeData;
  2735. /// No description provided for @openLongBtn.
  2736. ///
  2737. /// In zh, this message translates to:
  2738. /// **'开多'**
  2739. String get openLongBtn;
  2740. /// No description provided for @openShortBtn.
  2741. ///
  2742. /// In zh, this message translates to:
  2743. /// **'开空'**
  2744. String get openShortBtn;
  2745. /// No description provided for @ranking.
  2746. ///
  2747. /// In zh, this message translates to:
  2748. /// **'排名'**
  2749. String get ranking;
  2750. /// No description provided for @marketCap.
  2751. ///
  2752. /// In zh, this message translates to:
  2753. /// **'市值'**
  2754. String get marketCap;
  2755. /// No description provided for @circulatingSupply.
  2756. ///
  2757. /// In zh, this message translates to:
  2758. /// **'流通供应量'**
  2759. String get circulatingSupply;
  2760. /// No description provided for @issuePrice.
  2761. ///
  2762. /// In zh, this message translates to:
  2763. /// **'发行价'**
  2764. String get issuePrice;
  2765. /// No description provided for @allTimeHigh.
  2766. ///
  2767. /// In zh, this message translates to:
  2768. /// **'历史最高价'**
  2769. String get allTimeHigh;
  2770. /// No description provided for @keyData.
  2771. ///
  2772. /// In zh, this message translates to:
  2773. /// **'关键数据'**
  2774. String get keyData;
  2775. /// No description provided for @selectPair.
  2776. ///
  2777. /// In zh, this message translates to:
  2778. /// **'选择交易对'**
  2779. String get selectPair;
  2780. /// No description provided for @chartTab.
  2781. ///
  2782. /// In zh, this message translates to:
  2783. /// **'行情'**
  2784. String get chartTab;
  2785. /// No description provided for @overviewTab.
  2786. ///
  2787. /// In zh, this message translates to:
  2788. /// **'概览'**
  2789. String get overviewTab;
  2790. /// No description provided for @shareFailed.
  2791. ///
  2792. /// In zh, this message translates to:
  2793. /// **'分享失败,请重试'**
  2794. String get shareFailed;
  2795. /// No description provided for @loadFailedRetry.
  2796. ///
  2797. /// In zh, this message translates to:
  2798. /// **'加载失败,请重试'**
  2799. String get loadFailedRetry;
  2800. /// No description provided for @closeBull.
  2801. ///
  2802. /// In zh, this message translates to:
  2803. /// **'平空看涨'**
  2804. String get closeBull;
  2805. /// No description provided for @closeBear.
  2806. ///
  2807. /// In zh, this message translates to:
  2808. /// **'平多看跌'**
  2809. String get closeBear;
  2810. /// No description provided for @marketOrderLabel.
  2811. ///
  2812. /// In zh, this message translates to:
  2813. /// **'市价委托'**
  2814. String get marketOrderLabel;
  2815. /// No description provided for @limitOrderLabel.
  2816. ///
  2817. /// In zh, this message translates to:
  2818. /// **'限价委托'**
  2819. String get limitOrderLabel;
  2820. /// No description provided for @planOrderLabel.
  2821. ///
  2822. /// In zh, this message translates to:
  2823. /// **'计划委托'**
  2824. String get planOrderLabel;
  2825. /// No description provided for @mergeOrderLabel.
  2826. ///
  2827. /// In zh, this message translates to:
  2828. /// **'合并委托'**
  2829. String get mergeOrderLabel;
  2830. /// No description provided for @reverseOpen.
  2831. ///
  2832. /// In zh, this message translates to:
  2833. /// **'反向开仓'**
  2834. String get reverseOpen;
  2835. /// No description provided for @liquidationLabel.
  2836. ///
  2837. /// In zh, this message translates to:
  2838. /// **'爆仓'**
  2839. String get liquidationLabel;
  2840. /// No description provided for @adminForceClose.
  2841. ///
  2842. /// In zh, this message translates to:
  2843. /// **'管理员强平'**
  2844. String get adminForceClose;
  2845. /// No description provided for @isolatedMargin.
  2846. ///
  2847. /// In zh, this message translates to:
  2848. /// **'逐仓'**
  2849. String get isolatedMargin;
  2850. /// No description provided for @separatePos.
  2851. ///
  2852. /// In zh, this message translates to:
  2853. /// **'分仓'**
  2854. String get separatePos;
  2855. /// No description provided for @orderPending.
  2856. ///
  2857. /// In zh, this message translates to:
  2858. /// **'委托中'**
  2859. String get orderPending;
  2860. /// No description provided for @orderFilled.
  2861. ///
  2862. /// In zh, this message translates to:
  2863. /// **'委托成功'**
  2864. String get orderFilled;
  2865. /// No description provided for @tradingSuccess.
  2866. ///
  2867. /// In zh, this message translates to:
  2868. /// **'交易成功'**
  2869. String get tradingSuccess;
  2870. /// No description provided for @orderCancelledLabel.
  2871. ///
  2872. /// In zh, this message translates to:
  2873. /// **'委托取消'**
  2874. String get orderCancelledLabel;
  2875. /// No description provided for @orderFailedLabel.
  2876. ///
  2877. /// In zh, this message translates to:
  2878. /// **'委托失败'**
  2879. String get orderFailedLabel;
  2880. /// No description provided for @entrustTotal.
  2881. ///
  2882. /// In zh, this message translates to:
  2883. /// **'委托总量'**
  2884. String get entrustTotal;
  2885. /// No description provided for @openAvgPrice.
  2886. ///
  2887. /// In zh, this message translates to:
  2888. /// **'开仓均价'**
  2889. String get openAvgPrice;
  2890. /// No description provided for @closeAvgPrice.
  2891. ///
  2892. /// In zh, this message translates to:
  2893. /// **'平仓均价'**
  2894. String get closeAvgPrice;
  2895. /// No description provided for @profitLabel.
  2896. ///
  2897. /// In zh, this message translates to:
  2898. /// **'收益'**
  2899. String get profitLabel;
  2900. /// No description provided for @profitRateLabel.
  2901. ///
  2902. /// In zh, this message translates to:
  2903. /// **'收益率'**
  2904. String get profitRateLabel;
  2905. /// No description provided for @filledVolume.
  2906. ///
  2907. /// In zh, this message translates to:
  2908. /// **'已成交量'**
  2909. String get filledVolume;
  2910. /// No description provided for @orderPriceLabel.
  2911. ///
  2912. /// In zh, this message translates to:
  2913. /// **'委托价格'**
  2914. String get orderPriceLabel;
  2915. /// No description provided for @crossIsolatedLabel.
  2916. ///
  2917. /// In zh, this message translates to:
  2918. /// **'全仓/逐仓'**
  2919. String get crossIsolatedLabel;
  2920. /// No description provided for @takeProfitTriggerPrice.
  2921. ///
  2922. /// In zh, this message translates to:
  2923. /// **'止盈触发价'**
  2924. String get takeProfitTriggerPrice;
  2925. /// No description provided for @stopLossTriggerPrice.
  2926. ///
  2927. /// In zh, this message translates to:
  2928. /// **'止损触发价'**
  2929. String get stopLossTriggerPrice;
  2930. /// No description provided for @marginLabel.
  2931. ///
  2932. /// In zh, this message translates to:
  2933. /// **'保证金'**
  2934. String get marginLabel;
  2935. /// No description provided for @entrustAmount.
  2936. ///
  2937. /// In zh, this message translates to:
  2938. /// **'委托数量'**
  2939. String get entrustAmount;
  2940. /// No description provided for @longLabel.
  2941. ///
  2942. /// In zh, this message translates to:
  2943. /// **'多'**
  2944. String get longLabel;
  2945. /// No description provided for @shortLabel.
  2946. ///
  2947. /// In zh, this message translates to:
  2948. /// **'空'**
  2949. String get shortLabel;
  2950. /// No description provided for @positionSize.
  2951. ///
  2952. /// In zh, this message translates to:
  2953. /// **'持仓数量'**
  2954. String get positionSize;
  2955. /// No description provided for @positionValue.
  2956. ///
  2957. /// In zh, this message translates to:
  2958. /// **'持仓价值'**
  2959. String get positionValue;
  2960. /// No description provided for @fundPasswordFormatError.
  2961. ///
  2962. /// In zh, this message translates to:
  2963. /// **'密码需7-20位,必须同时包含字母和数字'**
  2964. String get fundPasswordFormatError;
  2965. /// No description provided for @fundPasswordHint.
  2966. ///
  2967. /// In zh, this message translates to:
  2968. /// **'7-20位,必须包含字母和数字'**
  2969. String get fundPasswordHint;
  2970. /// No description provided for @setFundPasswordHint.
  2971. ///
  2972. /// In zh, this message translates to:
  2973. /// **'请设置资金密码'**
  2974. String get setFundPasswordHint;
  2975. /// No description provided for @confirmFundPasswordHint.
  2976. ///
  2977. /// In zh, this message translates to:
  2978. /// **'请再次输入资金密码'**
  2979. String get confirmFundPasswordHint;
  2980. /// No description provided for @fundPasswordBannerTip.
  2981. ///
  2982. /// In zh, this message translates to:
  2983. /// **'资金密码用于提现、内部转账等资金操作,请勿与登录密码相同。'**
  2984. String get fundPasswordBannerTip;
  2985. /// No description provided for @checkSpamMessage.
  2986. ///
  2987. /// In zh, this message translates to:
  2988. /// **'如果未收到验证信息,请检查邮箱垃圾箱或手机拦截短信'**
  2989. String get checkSpamMessage;
  2990. /// No description provided for @currentPasswordHint.
  2991. ///
  2992. /// In zh, this message translates to:
  2993. /// **'请输入当前登录密码'**
  2994. String get currentPasswordHint;
  2995. /// No description provided for @passwordLengthHint.
  2996. ///
  2997. /// In zh, this message translates to:
  2998. /// **'6-16个字符'**
  2999. String get passwordLengthHint;
  3000. /// No description provided for @confirmNewPasswordHint.
  3001. ///
  3002. /// In zh, this message translates to:
  3003. /// **'再次输入新密码'**
  3004. String get confirmNewPasswordHint;
  3005. /// No description provided for @passwordChanged.
  3006. ///
  3007. /// In zh, this message translates to:
  3008. /// **'修改成功'**
  3009. String get passwordChanged;
  3010. /// No description provided for @googleAuthStep1.
  3011. ///
  3012. /// In zh, this message translates to:
  3013. /// **'Step 1 下载验证器App'**
  3014. String get googleAuthStep1;
  3015. /// No description provided for @googleAuthDownloadHint.
  3016. ///
  3017. /// In zh, this message translates to:
  3018. /// **'iOS用户登录App Store搜索\"Authenticator\"下载,安卓用户登录应用商店或使用手机浏览器搜索Authenticator'**
  3019. String get googleAuthDownloadHint;
  3020. /// No description provided for @recommendDownload.
  3021. ///
  3022. /// In zh, this message translates to:
  3023. /// **'推荐下载安装:'**
  3024. String get recommendDownload;
  3025. /// No description provided for @alreadyDownloaded.
  3026. ///
  3027. /// In zh, this message translates to:
  3028. /// **'我已经下载,进行下一步'**
  3029. String get alreadyDownloaded;
  3030. /// No description provided for @googleBindStep1Hint.
  3031. ///
  3032. /// In zh, this message translates to:
  3033. /// **'安装完成后打开Google Authentication,iOS用户点击右上角(安卓用户点击右下角)[+]号。选择[手动输入密钥],在页面中填入您的账户名和下方密钥'**
  3034. String get googleBindStep1Hint;
  3035. /// No description provided for @keyCopied.
  3036. ///
  3037. /// In zh, this message translates to:
  3038. /// **'密钥已复制'**
  3039. String get keyCopied;
  3040. /// No description provided for @googleBindStep2Hint.
  3041. ///
  3042. /// In zh, this message translates to:
  3043. /// **'添加成功后,您将得到一个有一定时效的6位数验证码,请将该验证码填入下方输入框中(需要在验证码时效内完成)'**
  3044. String get googleBindStep2Hint;
  3045. /// No description provided for @googleCodeHint.
  3046. ///
  3047. /// In zh, this message translates to:
  3048. /// **'请输入6位数谷歌验证码'**
  3049. String get googleCodeHint;
  3050. /// No description provided for @emailCodeInstruction.
  3051. ///
  3052. /// In zh, this message translates to:
  3053. /// **'点击下方的发送验证码,然后在输入框中输入验证码'**
  3054. String get emailCodeInstruction;
  3055. /// No description provided for @emailCodeSentTo.
  3056. ///
  3057. /// In zh, this message translates to:
  3058. /// **'{email} 收取验证码'**
  3059. String emailCodeSentTo(Object email);
  3060. /// No description provided for @enterCode.
  3061. ///
  3062. /// In zh, this message translates to:
  3063. /// **'请输入验证码'**
  3064. String get enterCode;
  3065. /// No description provided for @systemAnnouncement.
  3066. ///
  3067. /// In zh, this message translates to:
  3068. /// **'系统公告'**
  3069. String get systemAnnouncement;
  3070. /// No description provided for @noAnnouncement.
  3071. ///
  3072. /// In zh, this message translates to:
  3073. /// **'暂无公告'**
  3074. String get noAnnouncement;
  3075. /// No description provided for @serviceRouteHint.
  3076. ///
  3077. /// In zh, this message translates to:
  3078. /// **'* 选择延迟较低的线路可获得更流畅的交易体验。系统会自动检测各线路延迟情况。'**
  3079. String get serviceRouteHint;
  3080. /// No description provided for @noAvailableRoute.
  3081. ///
  3082. /// In zh, this message translates to:
  3083. /// **'暂无可用线路'**
  3084. String get noAvailableRoute;
  3085. /// No description provided for @emailTab.
  3086. ///
  3087. /// In zh, this message translates to:
  3088. /// **'邮箱'**
  3089. String get emailTab;
  3090. /// No description provided for @phoneTab.
  3091. ///
  3092. /// In zh, this message translates to:
  3093. /// **'手机号'**
  3094. String get phoneTab;
  3095. /// No description provided for @passwordLoginTab.
  3096. ///
  3097. /// In zh, this message translates to:
  3098. /// **'密码登录'**
  3099. String get passwordLoginTab;
  3100. /// No description provided for @codeLoginTab.
  3101. ///
  3102. /// In zh, this message translates to:
  3103. /// **'验证码登录'**
  3104. String get codeLoginTab;
  3105. /// No description provided for @twoFactorVerification.
  3106. ///
  3107. /// In zh, this message translates to:
  3108. /// **'两步验证'**
  3109. String get twoFactorVerification;
  3110. /// No description provided for @googleAuthCodeHint.
  3111. ///
  3112. /// In zh, this message translates to:
  3113. /// **'请输入 Google Authenticator 中的 6 位动态验证码'**
  3114. String get googleAuthCodeHint;
  3115. /// No description provided for @cantUseGoogleAuth.
  3116. ///
  3117. /// In zh, this message translates to:
  3118. /// **'无法使用谷歌验证器?'**
  3119. String get cantUseGoogleAuth;
  3120. /// No description provided for @newVersionFound.
  3121. ///
  3122. /// In zh, this message translates to:
  3123. /// **'发现新版本'**
  3124. String get newVersionFound;
  3125. /// No description provided for @latestVersion.
  3126. ///
  3127. /// In zh, this message translates to:
  3128. /// **'最新版本'**
  3129. String get latestVersion;
  3130. /// No description provided for @updateContent.
  3131. ///
  3132. /// In zh, this message translates to:
  3133. /// **'更新内容:'**
  3134. String get updateContent;
  3135. /// No description provided for @forceUpdateTip.
  3136. ///
  3137. /// In zh, this message translates to:
  3138. /// **'此版本为强制更新,请立即升级'**
  3139. String get forceUpdateTip;
  3140. /// No description provided for @remindLater.
  3141. ///
  3142. /// In zh, this message translates to:
  3143. /// **'稍后再说'**
  3144. String get remindLater;
  3145. /// No description provided for @updateNow.
  3146. ///
  3147. /// In zh, this message translates to:
  3148. /// **'立即更新'**
  3149. String get updateNow;
  3150. /// No description provided for @cannotOpenLink.
  3151. ///
  3152. /// In zh, this message translates to:
  3153. /// **'无法打开下载链接,请复制链接到浏览器下载'**
  3154. String get cannotOpenLink;
  3155. /// No description provided for @updateInAppInstall.
  3156. ///
  3157. /// In zh, this message translates to:
  3158. /// **'应用内安装'**
  3159. String get updateInAppInstall;
  3160. /// No description provided for @updateOpenInBrowser.
  3161. ///
  3162. /// In zh, this message translates to:
  3163. /// **'浏览器打开'**
  3164. String get updateOpenInBrowser;
  3165. /// No description provided for @downloadingUpdate.
  3166. ///
  3167. /// In zh, this message translates to:
  3168. /// **'正在下载更新…'**
  3169. String get downloadingUpdate;
  3170. /// No description provided for @upgradeDownloadOrInstallFailed.
  3171. ///
  3172. /// In zh, this message translates to:
  3173. /// **'下载或安装失败,请稍后重试'**
  3174. String get upgradeDownloadOrInstallFailed;
  3175. /// No description provided for @installPermissionRequired.
  3176. ///
  3177. /// In zh, this message translates to:
  3178. /// **'需要安装权限,请在设置中为本应用开启「允许安装未知应用」后重试'**
  3179. String get installPermissionRequired;
  3180. /// No description provided for @currentPrice.
  3181. ///
  3182. /// In zh, this message translates to:
  3183. /// **'当前价格'**
  3184. String get currentPrice;
  3185. /// No description provided for @currentMarginLabel.
  3186. ///
  3187. /// In zh, this message translates to:
  3188. /// **'当前保证金'**
  3189. String get currentMarginLabel;
  3190. /// No description provided for @positionId.
  3191. ///
  3192. /// In zh, this message translates to:
  3193. /// **'仓位ID'**
  3194. String get positionId;
  3195. /// No description provided for @copyIdSuccess.
  3196. ///
  3197. /// In zh, this message translates to:
  3198. /// **'复制仓位ID成功'**
  3199. String get copyIdSuccess;
  3200. /// No description provided for @high24h.
  3201. ///
  3202. /// In zh, this message translates to:
  3203. /// **'24h最高价'**
  3204. String get high24h;
  3205. /// No description provided for @low24h.
  3206. ///
  3207. /// In zh, this message translates to:
  3208. /// **'24h最低价'**
  3209. String get low24h;
  3210. /// No description provided for @noKlineData.
  3211. ///
  3212. /// In zh, this message translates to:
  3213. /// **'暂无K线数据'**
  3214. String get noKlineData;
  3215. /// No description provided for @todayNewUsers.
  3216. ///
  3217. /// In zh, this message translates to:
  3218. /// **'今日新增\n用户(人)'**
  3219. String get todayNewUsers;
  3220. /// No description provided for @todayTradingUsers.
  3221. ///
  3222. /// In zh, this message translates to:
  3223. /// **'今日交易\n用户(人)'**
  3224. String get todayTradingUsers;
  3225. /// No description provided for @todayRebateLabel.
  3226. ///
  3227. /// In zh, this message translates to:
  3228. /// **'今日返佣\n(USDT)'**
  3229. String get todayRebateLabel;
  3230. /// No description provided for @brokerLevel.
  3231. ///
  3232. /// In zh, this message translates to:
  3233. /// **'经纪商'**
  3234. String get brokerLevel;
  3235. /// No description provided for @regularLevel.
  3236. ///
  3237. /// In zh, this message translates to:
  3238. /// **'普通'**
  3239. String get regularLevel;
  3240. /// No description provided for @comingSoon.
  3241. ///
  3242. /// In zh, this message translates to:
  3243. /// **'即将推出'**
  3244. String get comingSoon;
  3245. /// No description provided for @scanQrCode.
  3246. ///
  3247. /// In zh, this message translates to:
  3248. /// **'扫描二维码'**
  3249. String get scanQrCode;
  3250. /// No description provided for @notAnAgent.
  3251. ///
  3252. /// In zh, this message translates to:
  3253. /// **'您还不是经纪商'**
  3254. String get notAnAgent;
  3255. /// No description provided for @closePositionConfirm.
  3256. ///
  3257. /// In zh, this message translates to:
  3258. /// **'是否平仓此单,平仓后将无法获得此订单的最终盈利'**
  3259. String get closePositionConfirm;
  3260. /// No description provided for @transferTip1.
  3261. ///
  3262. /// In zh, this message translates to:
  3263. /// **'划转即时到账,无需等待确认。'**
  3264. String get transferTip1;
  3265. /// No description provided for @transferTip2.
  3266. ///
  3267. /// In zh, this message translates to:
  3268. /// **'资金账户 ↔ 合约账户 / 跟单账户均支持划转。'**
  3269. String get transferTip2;
  3270. /// No description provided for @transferTip3.
  3271. ///
  3272. /// In zh, this message translates to:
  3273. /// **'划转不收取手续费。'**
  3274. String get transferTip3;
  3275. /// No description provided for @accountTransferTitle.
  3276. ///
  3277. /// In zh, this message translates to:
  3278. /// **'账户划转'**
  3279. String get accountTransferTitle;
  3280. /// No description provided for @transferFreeHint.
  3281. ///
  3282. /// In zh, this message translates to:
  3283. /// **'划转免手续费,实时到账'**
  3284. String get transferFreeHint;
  3285. /// No description provided for @spotTradingAccount.
  3286. ///
  3287. /// In zh, this message translates to:
  3288. /// **'现货交易账户'**
  3289. String get spotTradingAccount;
  3290. /// No description provided for @assetsLockedStakingAccount.
  3291. ///
  3292. /// In zh, this message translates to:
  3293. /// **'锁仓账户'**
  3294. String get assetsLockedStakingAccount;
  3295. /// No description provided for @transferAvailableCoin.
  3296. ///
  3297. /// In zh, this message translates to:
  3298. /// **'可用: {available} {coin}'**
  3299. String transferAvailableCoin(Object available, Object coin);
  3300. /// No description provided for @transferAmountCoin.
  3301. ///
  3302. /// In zh, this message translates to:
  3303. /// **'数量 ({coin})'**
  3304. String transferAmountCoin(Object coin);
  3305. /// No description provided for @confirmTransfer.
  3306. ///
  3307. /// In zh, this message translates to:
  3308. /// **'确认划转'**
  3309. String get confirmTransfer;
  3310. /// No description provided for @transferSameAccountError.
  3311. ///
  3312. /// In zh, this message translates to:
  3313. /// **'转出与转入账户不能相同'**
  3314. String get transferSameAccountError;
  3315. /// No description provided for @pageLoadFailed.
  3316. ///
  3317. /// In zh, this message translates to:
  3318. /// **'页面加载失败'**
  3319. String get pageLoadFailed;
  3320. /// No description provided for @networkErrorDesc.
  3321. ///
  3322. /// In zh, this message translates to:
  3323. /// **'网络连接异常,请检查网络设置后重试'**
  3324. String get networkErrorDesc;
  3325. /// No description provided for @reload.
  3326. ///
  3327. /// In zh, this message translates to:
  3328. /// **'重新加载'**
  3329. String get reload;
  3330. /// No description provided for @backHome.
  3331. ///
  3332. /// In zh, this message translates to:
  3333. /// **'返回首页'**
  3334. String get backHome;
  3335. /// No description provided for @errorCodeLabel.
  3336. ///
  3337. /// In zh, this message translates to:
  3338. /// **'错误代码:{code}'**
  3339. String errorCodeLabel(Object code);
  3340. /// No description provided for @depositNetworkConfirmations.
  3341. ///
  3342. /// In zh, this message translates to:
  3343. /// **'3次网络确认'**
  3344. String get depositNetworkConfirmations;
  3345. /// No description provided for @depositMinAmountHint.
  3346. ///
  3347. /// In zh, this message translates to:
  3348. /// **'充值金额最小{minAmount}USDT,小于最小金额的充值不会入账。'**
  3349. String depositMinAmountHint(Object minAmount);
  3350. /// No description provided for @depositNoOtherAssets.
  3351. ///
  3352. /// In zh, this message translates to:
  3353. /// **'请勿向上面之充值任何非币种资产,否则资产无法找回。'**
  3354. String get depositNoOtherAssets;
  3355. /// No description provided for @depositConfirmHint.
  3356. ///
  3357. /// In zh, this message translates to:
  3358. /// **'您充值到上述地址后,需要整合区块网络节点的确认,一般区块主网3次网络确认后到账。'**
  3359. String get depositConfirmHint;
  3360. /// No description provided for @depositAddressChangeHint.
  3361. ///
  3362. /// In zh, this message translates to:
  3363. /// **'您的充值地址可能会改变,每次充值时请重新复制地址。'**
  3364. String get depositAddressChangeHint;
  3365. /// No description provided for @depositSecurityHint.
  3366. ///
  3367. /// In zh, this message translates to:
  3368. /// **'请务必确认操作环境安全,防止信息被篡改或泄密。'**
  3369. String get depositSecurityHint;
  3370. /// No description provided for @cancelWithdrawHint.
  3371. ///
  3372. /// In zh, this message translates to:
  3373. /// **'您可在3分钟内撤销提现'**
  3374. String get cancelWithdrawHint;
  3375. /// No description provided for @liqPrice.
  3376. ///
  3377. /// In zh, this message translates to:
  3378. /// **'强平价格'**
  3379. String get liqPrice;
  3380. /// No description provided for @marginRatioLabel.
  3381. ///
  3382. /// In zh, this message translates to:
  3383. /// **'保证金比率'**
  3384. String get marginRatioLabel;
  3385. /// No description provided for @withdrawMinAmountHint.
  3386. ///
  3387. /// In zh, this message translates to:
  3388. /// **'最小提现额 {minAmount}'**
  3389. String withdrawMinAmountHint(Object minAmount);
  3390. /// No description provided for @fundAccountAvailable.
  3391. ///
  3392. /// In zh, this message translates to:
  3393. /// **'资金账户可用'**
  3394. String get fundAccountAvailable;
  3395. /// No description provided for @recipientUidOrAccount.
  3396. ///
  3397. /// In zh, this message translates to:
  3398. /// **'对方UID或账户'**
  3399. String get recipientUidOrAccount;
  3400. /// No description provided for @enterRecipientUid.
  3401. ///
  3402. /// In zh, this message translates to:
  3403. /// **'请输入平台收款人UID'**
  3404. String get enterRecipientUid;
  3405. /// No description provided for @transferMinAmountHint.
  3406. ///
  3407. /// In zh, this message translates to:
  3408. /// **'最小转账额 {minAmount}'**
  3409. String transferMinAmountHint(Object minAmount);
  3410. /// No description provided for @withdrawNotice1.
  3411. ///
  3412. /// In zh, this message translates to:
  3413. /// **'平台官方在任何情况下都不会要求您向某一账户转账或索要验证码。'**
  3414. String get withdrawNotice1;
  3415. /// No description provided for @withdrawNotice2.
  3416. ///
  3417. /// In zh, this message translates to:
  3418. /// **'请勿参与代买、洗钱、非法集资等违法行为,谨防网络诈骗。'**
  3419. String get withdrawNotice2;
  3420. /// No description provided for @categoryLabel.
  3421. ///
  3422. /// In zh, this message translates to:
  3423. /// **'类别'**
  3424. String get categoryLabel;
  3425. /// No description provided for @yearSuffix.
  3426. ///
  3427. /// In zh, this message translates to:
  3428. /// **'年'**
  3429. String get yearSuffix;
  3430. /// No description provided for @monthSuffix.
  3431. ///
  3432. /// In zh, this message translates to:
  3433. /// **'月'**
  3434. String get monthSuffix;
  3435. /// No description provided for @daySuffix.
  3436. ///
  3437. /// In zh, this message translates to:
  3438. /// **'日'**
  3439. String get daySuffix;
  3440. /// No description provided for @brokerWelcome.
  3441. ///
  3442. /// In zh, this message translates to:
  3443. /// **'您好,经纪商'**
  3444. String get brokerWelcome;
  3445. /// No description provided for @brokerWelcomeNamed.
  3446. ///
  3447. /// In zh, this message translates to:
  3448. /// **'您好,{name}'**
  3449. String brokerWelcomeNamed(String name);
  3450. /// No description provided for @brokerInviteTip.
  3451. ///
  3452. /// In zh, this message translates to:
  3453. /// **'邀请用户注册并完成交易,即可获得返佣奖励。返佣实时结算,每日自动发放至您的账户。'**
  3454. String get brokerInviteTip;
  3455. /// No description provided for @inviteList.
  3456. ///
  3457. /// In zh, this message translates to:
  3458. /// **'邀请列表'**
  3459. String get inviteList;
  3460. /// No description provided for @noInviteRecord.
  3461. ///
  3462. /// In zh, this message translates to:
  3463. /// **'暂无邀请记录'**
  3464. String get noInviteRecord;
  3465. /// No description provided for @accountLabel.
  3466. ///
  3467. /// In zh, this message translates to:
  3468. /// **'账户'**
  3469. String get accountLabel;
  3470. /// No description provided for @enterValidPerpRate.
  3471. ///
  3472. /// In zh, this message translates to:
  3473. /// **'请输入有效的永续比例'**
  3474. String get enterValidPerpRate;
  3475. /// No description provided for @editCommissionRate.
  3476. ///
  3477. /// In zh, this message translates to:
  3478. /// **'佣金比例修改'**
  3479. String get editCommissionRate;
  3480. /// No description provided for @perpRebateRate.
  3481. ///
  3482. /// In zh, this message translates to:
  3483. /// **'永续合约返佣比例'**
  3484. String get perpRebateRate;
  3485. /// No description provided for @copyRebateRate.
  3486. ///
  3487. /// In zh, this message translates to:
  3488. /// **'跟单返佣比例'**
  3489. String get copyRebateRate;
  3490. /// No description provided for @commissionRateWarning.
  3491. ///
  3492. /// In zh, this message translates to:
  3493. /// **'请慎重设置,设置完成后,将不可以再次设置为比本次更低的返佣比例'**
  3494. String get commissionRateWarning;
  3495. /// No description provided for @withinOneWeek.
  3496. ///
  3497. /// In zh, this message translates to:
  3498. /// **'一周内'**
  3499. String get withinOneWeek;
  3500. /// No description provided for @teamTotalAssets.
  3501. ///
  3502. /// In zh, this message translates to:
  3503. /// **'团队持有总资产'**
  3504. String get teamTotalAssets;
  3505. /// No description provided for @savePoster.
  3506. ///
  3507. /// In zh, this message translates to:
  3508. /// **'保存海报'**
  3509. String get savePoster;
  3510. /// No description provided for @copyInviteCode.
  3511. ///
  3512. /// In zh, this message translates to:
  3513. /// **'复制邀请码'**
  3514. String get copyInviteCode;
  3515. /// No description provided for @copyLink.
  3516. ///
  3517. /// In zh, this message translates to:
  3518. /// **'复制链接'**
  3519. String get copyLink;
  3520. /// No description provided for @inviteLink.
  3521. ///
  3522. /// In zh, this message translates to:
  3523. /// **'邀请链接'**
  3524. String get inviteLink;
  3525. /// No description provided for @inviteShareText.
  3526. ///
  3527. /// In zh, this message translates to:
  3528. /// **'邀请你一起来赚币'**
  3529. String get inviteShareText;
  3530. /// No description provided for @labelCopied.
  3531. ///
  3532. /// In zh, this message translates to:
  3533. /// **'{label}已复制'**
  3534. String labelCopied(Object label);
  3535. /// No description provided for @selectTradingPair.
  3536. ///
  3537. /// In zh, this message translates to:
  3538. /// **'选择交易对'**
  3539. String get selectTradingPair;
  3540. /// No description provided for @marketOverview.
  3541. ///
  3542. /// In zh, this message translates to:
  3543. /// **'概览'**
  3544. String get marketOverview;
  3545. /// No description provided for @volume24hLabel.
  3546. ///
  3547. /// In zh, this message translates to:
  3548. /// **'24h成交量({coin})'**
  3549. String volume24hLabel(Object coin);
  3550. /// No description provided for @turnover24hLabel.
  3551. ///
  3552. /// In zh, this message translates to:
  3553. /// **'24h成交额(USDT)'**
  3554. String get turnover24hLabel;
  3555. /// No description provided for @amountLabel2.
  3556. ///
  3557. /// In zh, this message translates to:
  3558. /// **'数量 ({coin})'**
  3559. String amountLabel2(Object coin);
  3560. /// No description provided for @timeLabel2.
  3561. ///
  3562. /// In zh, this message translates to:
  3563. /// **'时间'**
  3564. String get timeLabel2;
  3565. /// No description provided for @athPrice.
  3566. ///
  3567. /// In zh, this message translates to:
  3568. /// **'历史最高价'**
  3569. String get athPrice;
  3570. /// No description provided for @dataDisclaimer.
  3571. ///
  3572. /// In zh, this message translates to:
  3573. /// **'信息来自第三方行情网站,数据仅供参考,不作为投资依据。'**
  3574. String get dataDisclaimer;
  3575. /// No description provided for @periodToday.
  3576. ///
  3577. /// In zh, this message translates to:
  3578. /// **'今日'**
  3579. String get periodToday;
  3580. /// No description provided for @period7d.
  3581. ///
  3582. /// In zh, this message translates to:
  3583. /// **'7天'**
  3584. String get period7d;
  3585. /// No description provided for @period30d.
  3586. ///
  3587. /// In zh, this message translates to:
  3588. /// **'30天'**
  3589. String get period30d;
  3590. /// No description provided for @period90d.
  3591. ///
  3592. /// In zh, this message translates to:
  3593. /// **'90天'**
  3594. String get period90d;
  3595. /// No description provided for @period180d.
  3596. ///
  3597. /// In zh, this message translates to:
  3598. /// **'180天'**
  3599. String get period180d;
  3600. /// No description provided for @period1y.
  3601. ///
  3602. /// In zh, this message translates to:
  3603. /// **'1年'**
  3604. String get period1y;
  3605. /// No description provided for @rank.
  3606. ///
  3607. /// In zh, this message translates to:
  3608. /// **'排名'**
  3609. String get rank;
  3610. /// No description provided for @twoWeekWinRate.
  3611. ///
  3612. /// In zh, this message translates to:
  3613. /// **'近14天胜率'**
  3614. String get twoWeekWinRate;
  3615. /// No description provided for @twoWeekRoi.
  3616. ///
  3617. /// In zh, this message translates to:
  3618. /// **'近14天收益率'**
  3619. String get twoWeekRoi;
  3620. /// No description provided for @twoWeekTrend.
  3621. ///
  3622. /// In zh, this message translates to:
  3623. /// **'近14天走势'**
  3624. String get twoWeekTrend;
  3625. /// No description provided for @contractAccountEquity.
  3626. ///
  3627. /// In zh, this message translates to:
  3628. /// **'合约账户权益'**
  3629. String get contractAccountEquity;
  3630. /// No description provided for @canOpenLong.
  3631. ///
  3632. /// In zh, this message translates to:
  3633. /// **'可开多'**
  3634. String get canOpenLong;
  3635. /// No description provided for @canOpenShort.
  3636. ///
  3637. /// In zh, this message translates to:
  3638. /// **'可开空'**
  3639. String get canOpenShort;
  3640. /// No description provided for @availableCloseLong.
  3641. ///
  3642. /// In zh, this message translates to:
  3643. /// **'可平多'**
  3644. String get availableCloseLong;
  3645. /// No description provided for @availableCloseShort.
  3646. ///
  3647. /// In zh, this message translates to:
  3648. /// **'可平空'**
  3649. String get availableCloseShort;
  3650. /// No description provided for @leverageAdjustedTo.
  3651. ///
  3652. /// In zh, this message translates to:
  3653. /// **'杠杆已调整为'**
  3654. String get leverageAdjustedTo;
  3655. /// No description provided for @valueLabel.
  3656. ///
  3657. /// In zh, this message translates to:
  3658. /// **'价值'**
  3659. String get valueLabel;
  3660. /// No description provided for @lotsLabel.
  3661. ///
  3662. /// In zh, this message translates to:
  3663. /// **'张'**
  3664. String get lotsLabel;
  3665. /// No description provided for @profitUsdtLabel.
  3666. ///
  3667. /// In zh, this message translates to:
  3668. /// **'收益(USDT)'**
  3669. String get profitUsdtLabel;
  3670. /// No description provided for @markPriceLabel.
  3671. ///
  3672. /// In zh, this message translates to:
  3673. /// **'标记价格 {price}'**
  3674. String markPriceLabel(Object price);
  3675. /// No description provided for @perpetualContract.
  3676. ///
  3677. /// In zh, this message translates to:
  3678. /// **'永续合约'**
  3679. String get perpetualContract;
  3680. /// No description provided for @marketPrice.
  3681. ///
  3682. /// In zh, this message translates to:
  3683. /// **'市价'**
  3684. String get marketPrice;
  3685. /// No description provided for @priceLabel2.
  3686. ///
  3687. /// In zh, this message translates to:
  3688. /// **'价格'**
  3689. String get priceLabel2;
  3690. /// No description provided for @availableLabel.
  3691. ///
  3692. /// In zh, this message translates to:
  3693. /// **'可用'**
  3694. String get availableLabel;
  3695. /// No description provided for @crossMarginDesc.
  3696. ///
  3697. /// In zh, this message translates to:
  3698. /// **'您账户里所有余额均作为保证金使用。当资产净值不足以满足维持保证金需求时,强制平仓将被触发。此时,您将损失所有余额。'**
  3699. String get crossMarginDesc;
  3700. /// No description provided for @isolatedMarginDesc.
  3701. ///
  3702. /// In zh, this message translates to:
  3703. /// **'每个仓位独立占用保证金,亏损超出仓位保证金自动平仓,风险可控'**
  3704. String get isolatedMarginDesc;
  3705. /// No description provided for @splitMargin.
  3706. ///
  3707. /// In zh, this message translates to:
  3708. /// **'分仓'**
  3709. String get splitMargin;
  3710. /// No description provided for @splitMarginDesc.
  3711. ///
  3712. /// In zh, this message translates to:
  3713. /// **'您的同方向同杠杆仓位将保持独立、不自动合并,每个开仓动作生成独立子仓位,分仓模式下与全仓模式共用合约账户余额作为保证金。'**
  3714. String get splitMarginDesc;
  3715. /// No description provided for @marginModeNote.
  3716. ///
  3717. /// In zh, this message translates to:
  3718. /// **'※ 保证金模式调整仅对当前合约生效'**
  3719. String get marginModeNote;
  3720. /// No description provided for @switchMarginModeFailed.
  3721. ///
  3722. /// In zh, this message translates to:
  3723. /// **'切换失败,请先平仓后再切换仓位模式'**
  3724. String get switchMarginModeFailed;
  3725. /// No description provided for @leverageAdjustedMsg.
  3726. ///
  3727. /// In zh, this message translates to:
  3728. /// **'杠杆已调整为 {value}X'**
  3729. String leverageAdjustedMsg(Object value);
  3730. /// No description provided for @openLabel.
  3731. ///
  3732. /// In zh, this message translates to:
  3733. /// **'开仓'**
  3734. String get openLabel;
  3735. /// No description provided for @closeLabel.
  3736. ///
  3737. /// In zh, this message translates to:
  3738. /// **'平仓'**
  3739. String get closeLabel;
  3740. /// No description provided for @marketOrder.
  3741. ///
  3742. /// In zh, this message translates to:
  3743. /// **'市价单'**
  3744. String get marketOrder;
  3745. /// No description provided for @conditionalMarketOrder.
  3746. ///
  3747. /// In zh, this message translates to:
  3748. /// **'市价条件委托单'**
  3749. String get conditionalMarketOrder;
  3750. /// No description provided for @conditionalLimitOrder.
  3751. ///
  3752. /// In zh, this message translates to:
  3753. /// **'限价条件委托单'**
  3754. String get conditionalLimitOrder;
  3755. /// No description provided for @takeProfitStopLoss.
  3756. ///
  3757. /// In zh, this message translates to:
  3758. /// **'止盈止损'**
  3759. String get takeProfitStopLoss;
  3760. /// No description provided for @fundingRateCountdown.
  3761. ///
  3762. /// In zh, this message translates to:
  3763. /// **'资金费率/倒计时'**
  3764. String get fundingRateCountdown;
  3765. /// No description provided for @priceUsdt.
  3766. ///
  3767. /// In zh, this message translates to:
  3768. /// **'价格(USDT)'**
  3769. String get priceUsdt;
  3770. /// No description provided for @closeAllPositions.
  3771. ///
  3772. /// In zh, this message translates to:
  3773. /// **'一键平仓'**
  3774. String get closeAllPositions;
  3775. /// No description provided for @closeAllConfirm.
  3776. ///
  3777. /// In zh, this message translates to:
  3778. /// **'您所有正在委托的订单将会被市价平仓'**
  3779. String get closeAllConfirm;
  3780. /// No description provided for @closeAllSubMsg.
  3781. ///
  3782. /// In zh, this message translates to:
  3783. /// **'如果存在平仓挂单(限价单或止盈止损单),将会在一键平仓前被撤销。'**
  3784. String get closeAllSubMsg;
  3785. /// No description provided for @cancelAllOrders.
  3786. ///
  3787. /// In zh, this message translates to:
  3788. /// **'全部撤单'**
  3789. String get cancelAllOrders;
  3790. /// No description provided for @contractUnitSetting.
  3791. ///
  3792. /// In zh, this message translates to:
  3793. /// **'合约单位设置'**
  3794. String get contractUnitSetting;
  3795. /// No description provided for @contractUnitCoin.
  3796. ///
  3797. /// In zh, this message translates to:
  3798. /// **'{coin}-数量'**
  3799. String contractUnitCoin(Object coin);
  3800. /// No description provided for @contractUnitUsdt.
  3801. ///
  3802. /// In zh, this message translates to:
  3803. /// **'USDT-价值'**
  3804. String get contractUnitUsdt;
  3805. /// No description provided for @contractUnitSheets.
  3806. ///
  3807. /// In zh, this message translates to:
  3808. /// **'数量-张'**
  3809. String get contractUnitSheets;
  3810. /// No description provided for @contractUnitHintCoin.
  3811. ///
  3812. /// In zh, this message translates to:
  3813. /// **'您输入的为订单的{coin}数量'**
  3814. String contractUnitHintCoin(Object coin);
  3815. /// No description provided for @contractUnitHintUsdt.
  3816. ///
  3817. /// In zh, this message translates to:
  3818. /// **'您输入的为订单市场价值,修改杠杆会改变保证金数量'**
  3819. String get contractUnitHintUsdt;
  3820. /// No description provided for @contractUnitHintSheets.
  3821. ///
  3822. /// In zh, this message translates to:
  3823. /// **'您输入的为订单张数'**
  3824. String get contractUnitHintSheets;
  3825. /// No description provided for @takeProfitStopLossBtn.
  3826. ///
  3827. /// In zh, this message translates to:
  3828. /// **'止盈止损'**
  3829. String get takeProfitStopLossBtn;
  3830. /// No description provided for @reversePositionBtn.
  3831. ///
  3832. /// In zh, this message translates to:
  3833. /// **'一键反手'**
  3834. String get reversePositionBtn;
  3835. /// No description provided for @closePositionBtn.
  3836. ///
  3837. /// In zh, this message translates to:
  3838. /// **'平仓'**
  3839. String get closePositionBtn;
  3840. /// No description provided for @closeAllMarket.
  3841. ///
  3842. /// In zh, this message translates to:
  3843. /// **'市价全平'**
  3844. String get closeAllMarket;
  3845. /// No description provided for @closeAllMarketConfirm.
  3846. ///
  3847. /// In zh, this message translates to:
  3848. /// **'确认以市价全部平仓?'**
  3849. String get closeAllMarketConfirm;
  3850. /// No description provided for @closeAllMarketSubMsg.
  3851. ///
  3852. /// In zh, this message translates to:
  3853. /// **'此操作不可撤销。'**
  3854. String get closeAllMarketSubMsg;
  3855. /// No description provided for @closeAllMarketSuccess.
  3856. ///
  3857. /// In zh, this message translates to:
  3858. /// **'平仓成功'**
  3859. String get closeAllMarketSuccess;
  3860. /// No description provided for @reverseConfirm.
  3861. ///
  3862. /// In zh, this message translates to:
  3863. /// **'将市价平{side}仓并以相同数量{openSide},确认操作?'**
  3864. String reverseConfirm(Object side, Object openSide);
  3865. /// No description provided for @marginBalance.
  3866. ///
  3867. /// In zh, this message translates to:
  3868. /// **'保证金 {margin} USDT'**
  3869. String marginBalance(Object margin);
  3870. /// No description provided for @longAvailLabel.
  3871. ///
  3872. /// In zh, this message translates to:
  3873. /// **'可平多 {amount} {coin}'**
  3874. String longAvailLabel(Object amount, Object coin);
  3875. /// No description provided for @shortAvailLabel.
  3876. ///
  3877. /// In zh, this message translates to:
  3878. /// **'可平空 {amount} {coin}'**
  3879. String shortAvailLabel(Object amount, Object coin);
  3880. /// No description provided for @enterTriggerPrice.
  3881. ///
  3882. /// In zh, this message translates to:
  3883. /// **'请先输入触发价格'**
  3884. String get enterTriggerPrice;
  3885. /// No description provided for @enterPrice.
  3886. ///
  3887. /// In zh, this message translates to:
  3888. /// **'请先输入价格'**
  3889. String get enterPrice;
  3890. /// No description provided for @symbolPerpetual.
  3891. ///
  3892. /// In zh, this message translates to:
  3893. /// **'{symbol} 永续'**
  3894. String symbolPerpetual(Object symbol);
  3895. /// No description provided for @cancelLabel.
  3896. ///
  3897. /// In zh, this message translates to:
  3898. /// **'取消'**
  3899. String get cancelLabel;
  3900. /// No description provided for @rejectReasonLabel.
  3901. ///
  3902. /// In zh, this message translates to:
  3903. /// **'拒绝原因'**
  3904. String get rejectReasonLabel;
  3905. /// No description provided for @confirmLabel.
  3906. ///
  3907. /// In zh, this message translates to:
  3908. /// **'确定'**
  3909. String get confirmLabel;
  3910. /// No description provided for @positionsTab.
  3911. ///
  3912. /// In zh, this message translates to:
  3913. /// **'持有仓位'**
  3914. String get positionsTab;
  3915. /// No description provided for @contractAccountUsdt.
  3916. ///
  3917. /// In zh, this message translates to:
  3918. /// **'合约账户 (USDT)'**
  3919. String get contractAccountUsdt;
  3920. /// No description provided for @setTakeProfit.
  3921. ///
  3922. /// In zh, this message translates to:
  3923. /// **'设置止盈'**
  3924. String get setTakeProfit;
  3925. /// No description provided for @setStopLoss.
  3926. ///
  3927. /// In zh, this message translates to:
  3928. /// **'设置止损'**
  3929. String get setStopLoss;
  3930. /// No description provided for @tpTriggerPrice.
  3931. ///
  3932. /// In zh, this message translates to:
  3933. /// **'止盈触发价'**
  3934. String get tpTriggerPrice;
  3935. /// No description provided for @slTriggerPrice.
  3936. ///
  3937. /// In zh, this message translates to:
  3938. /// **'止损触发价'**
  3939. String get slTriggerPrice;
  3940. /// No description provided for @closeableSizeCoin.
  3941. ///
  3942. /// In zh, this message translates to:
  3943. /// **'可平量({coin})'**
  3944. String closeableSizeCoin(String coin);
  3945. /// No description provided for @estProfit.
  3946. ///
  3947. /// In zh, this message translates to:
  3948. /// **'成交预估盈利'**
  3949. String get estProfit;
  3950. /// No description provided for @estLoss.
  3951. ///
  3952. /// In zh, this message translates to:
  3953. /// **'成交预估亏损'**
  3954. String get estLoss;
  3955. /// No description provided for @closePositionMsgLong.
  3956. ///
  3957. /// In zh, this message translates to:
  3958. /// **'当委托价格小于标记价格时会以市价成交'**
  3959. String get closePositionMsgLong;
  3960. /// No description provided for @closePositionMsgShort.
  3961. ///
  3962. /// In zh, this message translates to:
  3963. /// **'当委托价格大于标记价格时会以市价成交'**
  3964. String get closePositionMsgShort;
  3965. /// No description provided for @enterCloseVolume.
  3966. ///
  3967. /// In zh, this message translates to:
  3968. /// **'请输入平仓数量'**
  3969. String get enterCloseVolume;
  3970. /// No description provided for @enterLimitPrice.
  3971. ///
  3972. /// In zh, this message translates to:
  3973. /// **'请输入限价价格'**
  3974. String get enterLimitPrice;
  3975. /// No description provided for @estPnlLabel.
  3976. ///
  3977. /// In zh, this message translates to:
  3978. /// **'预计盈亏'**
  3979. String get estPnlLabel;
  3980. /// No description provided for @longHeadLabel.
  3981. ///
  3982. /// In zh, this message translates to:
  3983. /// **'多头'**
  3984. String get longHeadLabel;
  3985. /// No description provided for @shortHeadLabel.
  3986. ///
  3987. /// In zh, this message translates to:
  3988. /// **'空头'**
  3989. String get shortHeadLabel;
  3990. /// No description provided for @orderSizeCoin.
  3991. ///
  3992. /// In zh, this message translates to:
  3993. /// **'委托数量({coin})'**
  3994. String orderSizeCoin(String coin);
  3995. /// No description provided for @filledSizeCoin.
  3996. ///
  3997. /// In zh, this message translates to:
  3998. /// **'成交数量({coin})'**
  3999. String filledSizeCoin(String coin);
  4000. /// No description provided for @limitLabel.
  4001. ///
  4002. /// In zh, this message translates to:
  4003. /// **'限价'**
  4004. String get limitLabel;
  4005. /// No description provided for @marketHint.
  4006. ///
  4007. /// In zh, this message translates to:
  4008. /// **'市价'**
  4009. String get marketHint;
  4010. /// No description provided for @pricePlaceholder.
  4011. ///
  4012. /// In zh, this message translates to:
  4013. /// **'请输入价格'**
  4014. String get pricePlaceholder;
  4015. /// No description provided for @shareLabel.
  4016. ///
  4017. /// In zh, this message translates to:
  4018. /// **'分享'**
  4019. String get shareLabel;
  4020. /// No description provided for @myFuturesPosition.
  4021. ///
  4022. /// In zh, this message translates to:
  4023. /// **'我的合约仓位'**
  4024. String get myFuturesPosition;
  4025. /// No description provided for @inviteCodeLabel.
  4026. ///
  4027. /// In zh, this message translates to:
  4028. /// **'邀请码:'**
  4029. String get inviteCodeLabel;
  4030. /// No description provided for @registerAndEarnRebate.
  4031. ///
  4032. /// In zh, this message translates to:
  4033. /// **'注册赢取返佣奖励'**
  4034. String get registerAndEarnRebate;
  4035. /// No description provided for @loginToFollowExpert.
  4036. ///
  4037. /// In zh, this message translates to:
  4038. /// **'登录即可跟随交易专家,开始合约跟单'**
  4039. String get loginToFollowExpert;
  4040. /// No description provided for @unfollowConfirmMsg.
  4041. ///
  4042. /// In zh, this message translates to:
  4043. /// **'是否确认取消跟随此交易员?'**
  4044. String get unfollowConfirmMsg;
  4045. /// No description provided for @applyExpertBannerText.
  4046. ///
  4047. /// In zh, this message translates to:
  4048. /// **'申请成为交易专家,开启带单'**
  4049. String get applyExpertBannerText;
  4050. /// No description provided for @klineDate.
  4051. ///
  4052. /// In zh, this message translates to:
  4053. /// **'时间'**
  4054. String get klineDate;
  4055. /// No description provided for @klineOpen.
  4056. ///
  4057. /// In zh, this message translates to:
  4058. /// **'开'**
  4059. String get klineOpen;
  4060. /// No description provided for @klineHigh.
  4061. ///
  4062. /// In zh, this message translates to:
  4063. /// **'高'**
  4064. String get klineHigh;
  4065. /// No description provided for @klineLow.
  4066. ///
  4067. /// In zh, this message translates to:
  4068. /// **'低'**
  4069. String get klineLow;
  4070. /// No description provided for @klineClose.
  4071. ///
  4072. /// In zh, this message translates to:
  4073. /// **'收'**
  4074. String get klineClose;
  4075. /// No description provided for @klineChangeAmt.
  4076. ///
  4077. /// In zh, this message translates to:
  4078. /// **'涨跌额'**
  4079. String get klineChangeAmt;
  4080. /// No description provided for @klineChange.
  4081. ///
  4082. /// In zh, this message translates to:
  4083. /// **'涨跌幅'**
  4084. String get klineChange;
  4085. /// No description provided for @klineAmount.
  4086. ///
  4087. /// In zh, this message translates to:
  4088. /// **'成交额'**
  4089. String get klineAmount;
  4090. /// No description provided for @klineVol.
  4091. ///
  4092. /// In zh, this message translates to:
  4093. /// **'成交量'**
  4094. String get klineVol;
  4095. /// No description provided for @myTrades.
  4096. ///
  4097. /// In zh, this message translates to:
  4098. /// **'我的带单'**
  4099. String get myTrades;
  4100. /// No description provided for @myCopyTrading.
  4101. ///
  4102. /// In zh, this message translates to:
  4103. /// **'我的跟单'**
  4104. String get myCopyTrading;
  4105. /// No description provided for @followersTab.
  4106. ///
  4107. /// In zh, this message translates to:
  4108. /// **'跟单用户'**
  4109. String get followersTab;
  4110. /// No description provided for @currentCopyOrders.
  4111. ///
  4112. /// In zh, this message translates to:
  4113. /// **'当前带单'**
  4114. String get currentCopyOrders;
  4115. /// No description provided for @historyCopyOrders.
  4116. ///
  4117. /// In zh, this message translates to:
  4118. /// **'历史带单'**
  4119. String get historyCopyOrders;
  4120. /// No description provided for @currentFollowingTab.
  4121. ///
  4122. /// In zh, this message translates to:
  4123. /// **'当前跟单'**
  4124. String get currentFollowingTab;
  4125. /// No description provided for @myTradersTab.
  4126. ///
  4127. /// In zh, this message translates to:
  4128. /// **'我的交易员'**
  4129. String get myTradersTab;
  4130. /// No description provided for @historyFollowingTab.
  4131. ///
  4132. /// In zh, this message translates to:
  4133. /// **'历史跟单'**
  4134. String get historyFollowingTab;
  4135. /// No description provided for @noHistoryCopyOrders.
  4136. ///
  4137. /// In zh, this message translates to:
  4138. /// **'暂无历史带单'**
  4139. String get noHistoryCopyOrders;
  4140. /// No description provided for @noCurrentCopyOrders.
  4141. ///
  4142. /// In zh, this message translates to:
  4143. /// **'暂无当前带单'**
  4144. String get noCurrentCopyOrders;
  4145. /// No description provided for @noTradingRecords.
  4146. ///
  4147. /// In zh, this message translates to:
  4148. /// **'暂无带单记录'**
  4149. String get noTradingRecords;
  4150. /// No description provided for @confirmRemoveFollower.
  4151. ///
  4152. /// In zh, this message translates to:
  4153. /// **'确认移除?'**
  4154. String get confirmRemoveFollower;
  4155. /// No description provided for @removeFollowerMsg.
  4156. ///
  4157. /// In zh, this message translates to:
  4158. /// **'移除后该跟单员将无法继续跟随您的带单,确认继续?'**
  4159. String get removeFollowerMsg;
  4160. /// No description provided for @removedSuccess.
  4161. ///
  4162. /// In zh, this message translates to:
  4163. /// **'已移除'**
  4164. String get removedSuccess;
  4165. /// No description provided for @unrealizedPnlUsdt.
  4166. ///
  4167. /// In zh, this message translates to:
  4168. /// **'未实现盈亏(USDT)'**
  4169. String get unrealizedPnlUsdt;
  4170. /// No description provided for @marginUsdt.
  4171. ///
  4172. /// In zh, this message translates to:
  4173. /// **'保证金(USDT)'**
  4174. String get marginUsdt;
  4175. /// No description provided for @currentMarginUsdt.
  4176. ///
  4177. /// In zh, this message translates to:
  4178. /// **'当前保证金(USDT)'**
  4179. String get currentMarginUsdt;
  4180. /// No description provided for @openAvgPriceUsdt.
  4181. ///
  4182. /// In zh, this message translates to:
  4183. /// **'开仓均价(USDT)'**
  4184. String get openAvgPriceUsdt;
  4185. /// No description provided for @currentPriceUsdt.
  4186. ///
  4187. /// In zh, this message translates to:
  4188. /// **'当前价格(USDT)'**
  4189. String get currentPriceUsdt;
  4190. /// No description provided for @liqPriceUsdt.
  4191. ///
  4192. /// In zh, this message translates to:
  4193. /// **'强平价格(USDT)'**
  4194. String get liqPriceUsdt;
  4195. /// No description provided for @closeAvgPriceUsdt.
  4196. ///
  4197. /// In zh, this message translates to:
  4198. /// **'平仓均价(USDT)'**
  4199. String get closeAvgPriceUsdt;
  4200. /// No description provided for @realizedPnlUsdt.
  4201. ///
  4202. /// In zh, this message translates to:
  4203. /// **'已实现盈亏(USDT)'**
  4204. String get realizedPnlUsdt;
  4205. /// No description provided for @positionSizeWithCoin.
  4206. ///
  4207. /// In zh, this message translates to:
  4208. /// **'持仓数量({coin})'**
  4209. String positionSizeWithCoin(String coin);
  4210. /// No description provided for @closeSizeWithCoin.
  4211. ///
  4212. /// In zh, this message translates to:
  4213. /// **'平仓数量({coin})'**
  4214. String closeSizeWithCoin(String coin);
  4215. /// No description provided for @qtyWithCoin.
  4216. ///
  4217. /// In zh, this message translates to:
  4218. /// **'数量({coin})'**
  4219. String qtyWithCoin(String coin);
  4220. /// No description provided for @openTimeWithValue.
  4221. ///
  4222. /// In zh, this message translates to:
  4223. /// **'开仓时间 {time}'**
  4224. String openTimeWithValue(String time);
  4225. /// No description provided for @openTimeTwoSpaces.
  4226. ///
  4227. /// In zh, this message translates to:
  4228. /// **'开仓时间 {time}'**
  4229. String openTimeTwoSpaces(String time);
  4230. /// No description provided for @positionIdCopied.
  4231. ///
  4232. /// In zh, this message translates to:
  4233. /// **'仓位ID已复制'**
  4234. String get positionIdCopied;
  4235. /// No description provided for @copyPositionIdSuccess.
  4236. ///
  4237. /// In zh, this message translates to:
  4238. /// **'复制仓位ID成功'**
  4239. String get copyPositionIdSuccess;
  4240. /// No description provided for @positionIdPrefix.
  4241. ///
  4242. /// In zh, this message translates to:
  4243. /// **'仓位ID: '**
  4244. String get positionIdPrefix;
  4245. /// No description provided for @positionIdShort.
  4246. ///
  4247. /// In zh, this message translates to:
  4248. /// **'仓位ID '**
  4249. String get positionIdShort;
  4250. /// No description provided for @myTradingProfit.
  4251. ///
  4252. /// In zh, this message translates to:
  4253. /// **'我的带单收益'**
  4254. String get myTradingProfit;
  4255. /// No description provided for @myCopyTradingProfit.
  4256. ///
  4257. /// In zh, this message translates to:
  4258. /// **'我的跟单收益'**
  4259. String get myCopyTradingProfit;
  4260. /// No description provided for @currentFollowersLabel.
  4261. ///
  4262. /// In zh, this message translates to:
  4263. /// **'当前跟单人数'**
  4264. String get currentFollowersLabel;
  4265. /// No description provided for @settledDaysTitle.
  4266. ///
  4267. /// In zh, this message translates to:
  4268. /// **'入驻天数'**
  4269. String get settledDaysTitle;
  4270. /// No description provided for @fundStrength.
  4271. ///
  4272. /// In zh, this message translates to:
  4273. /// **'资金实力'**
  4274. String get fundStrength;
  4275. /// No description provided for @fundStrengthUsdt.
  4276. ///
  4277. /// In zh, this message translates to:
  4278. /// **'资金实力(USDT)'**
  4279. String get fundStrengthUsdt;
  4280. /// No description provided for @cumCopyProfitUsdt.
  4281. ///
  4282. /// In zh, this message translates to:
  4283. /// **'累计跟单盈利(USDT)'**
  4284. String get cumCopyProfitUsdt;
  4285. /// No description provided for @cumFollowProfitAmtUsdt.
  4286. ///
  4287. /// In zh, this message translates to:
  4288. /// **'累计跟单盈利额(USDT)'**
  4289. String get cumFollowProfitAmtUsdt;
  4290. /// No description provided for @cumCopyRevenueUsdt.
  4291. ///
  4292. /// In zh, this message translates to:
  4293. /// **'累计跟单收益(USDT)'**
  4294. String get cumCopyRevenueUsdt;
  4295. /// No description provided for @cumFollowerCount.
  4296. ///
  4297. /// In zh, this message translates to:
  4298. /// **'累计跟单人数'**
  4299. String get cumFollowerCount;
  4300. /// No description provided for @cumTradingDays.
  4301. ///
  4302. /// In zh, this message translates to:
  4303. /// **'累计交易天数'**
  4304. String get cumTradingDays;
  4305. /// No description provided for @accountEquityUsdt.
  4306. ///
  4307. /// In zh, this message translates to:
  4308. /// **'账户权益(USDT)'**
  4309. String get accountEquityUsdt;
  4310. /// No description provided for @cumProfitShareUsdt.
  4311. ///
  4312. /// In zh, this message translates to:
  4313. /// **'累计分润(USDT)'**
  4314. String get cumProfitShareUsdt;
  4315. /// No description provided for @lastProfitShare.
  4316. ///
  4317. /// In zh, this message translates to:
  4318. /// **'上期分润收益'**
  4319. String get lastProfitShare;
  4320. /// No description provided for @followerFollowTime.
  4321. ///
  4322. /// In zh, this message translates to:
  4323. /// **'跟随时间'**
  4324. String get followerFollowTime;
  4325. /// No description provided for @followersCountLabel.
  4326. ///
  4327. /// In zh, this message translates to:
  4328. /// **'跟随人数 {count}'**
  4329. String followersCountLabel(String count);
  4330. /// No description provided for @followersMaxLabel.
  4331. ///
  4332. /// In zh, this message translates to:
  4333. /// **'跟随人数 {count}/{max}'**
  4334. String followersMaxLabel(String count, String max);
  4335. /// No description provided for @availableAssetsUsdt.
  4336. ///
  4337. /// In zh, this message translates to:
  4338. /// **'可用资产(USDT)'**
  4339. String get availableAssetsUsdt;
  4340. /// No description provided for @closePositionConfirmMsg.
  4341. ///
  4342. /// In zh, this message translates to:
  4343. /// **'是否平仓此单,平仓后将无法获得此订单的最终盈利'**
  4344. String get closePositionConfirmMsg;
  4345. /// No description provided for @settledDaysLabelFmt.
  4346. ///
  4347. /// In zh, this message translates to:
  4348. /// **'已入驻 {days}天'**
  4349. String settledDaysLabelFmt(String days);
  4350. /// No description provided for @currentFollowingLabelFmt.
  4351. ///
  4352. /// In zh, this message translates to:
  4353. /// **'当前跟随 {following}/{max}'**
  4354. String currentFollowingLabelFmt(String following, String max);
  4355. /// No description provided for @tradingContracts.
  4356. ///
  4357. /// In zh, this message translates to:
  4358. /// **'带单合约'**
  4359. String get tradingContracts;
  4360. /// No description provided for @accountInfoTitle.
  4361. ///
  4362. /// In zh, this message translates to:
  4363. /// **'账户信息'**
  4364. String get accountInfoTitle;
  4365. /// No description provided for @coreDataTitle.
  4366. ///
  4367. /// In zh, this message translates to:
  4368. /// **'核心数据'**
  4369. String get coreDataTitle;
  4370. /// No description provided for @yield14d.
  4371. ///
  4372. /// In zh, this message translates to:
  4373. /// **'近14天收益率'**
  4374. String get yield14d;
  4375. /// No description provided for @profit14dUsdt.
  4376. ///
  4377. /// In zh, this message translates to:
  4378. /// **'近14天收益(USDT)'**
  4379. String get profit14dUsdt;
  4380. /// No description provided for @winRate14d.
  4381. ///
  4382. /// In zh, this message translates to:
  4383. /// **'近14天胜率'**
  4384. String get winRate14d;
  4385. /// No description provided for @profitShareRatio.
  4386. ///
  4387. /// In zh, this message translates to:
  4388. /// **'分润比例'**
  4389. String get profitShareRatio;
  4390. /// No description provided for @fullCapacity.
  4391. ///
  4392. /// In zh, this message translates to:
  4393. /// **'满员'**
  4394. String get fullCapacity;
  4395. /// No description provided for @followTrader.
  4396. ///
  4397. /// In zh, this message translates to:
  4398. /// **'跟单'**
  4399. String get followTrader;
  4400. /// No description provided for @openLongBullish.
  4401. ///
  4402. /// In zh, this message translates to:
  4403. /// **'开多看涨'**
  4404. String get openLongBullish;
  4405. /// No description provided for @openShortBearish.
  4406. ///
  4407. /// In zh, this message translates to:
  4408. /// **'开空看跌'**
  4409. String get openShortBearish;
  4410. /// No description provided for @profitUsdt.
  4411. ///
  4412. /// In zh, this message translates to:
  4413. /// **'收益(USDT)'**
  4414. String get profitUsdt;
  4415. /// No description provided for @operationFailedRetry.
  4416. ///
  4417. /// In zh, this message translates to:
  4418. /// **'操作失败,请重试'**
  4419. String get operationFailedRetry;
  4420. /// No description provided for @copyTradingSuccess.
  4421. ///
  4422. /// In zh, this message translates to:
  4423. /// **'跟单成功'**
  4424. String get copyTradingSuccess;
  4425. /// No description provided for @copyTradingSettings.
  4426. ///
  4427. /// In zh, this message translates to:
  4428. /// **'跟单设置'**
  4429. String get copyTradingSettings;
  4430. /// No description provided for @noCopyContracts.
  4431. ///
  4432. /// In zh, this message translates to:
  4433. /// **'暂无可跟合约'**
  4434. String get noCopyContracts;
  4435. /// No description provided for @startCopyTrading.
  4436. ///
  4437. /// In zh, this message translates to:
  4438. /// **'开始跟单'**
  4439. String get startCopyTrading;
  4440. /// No description provided for @savedSuccess.
  4441. ///
  4442. /// In zh, this message translates to:
  4443. /// **'保存成功'**
  4444. String get savedSuccess;
  4445. /// No description provided for @takePhoto.
  4446. ///
  4447. /// In zh, this message translates to:
  4448. /// **'拍照'**
  4449. String get takePhoto;
  4450. /// No description provided for @confirmCancelTitle.
  4451. ///
  4452. /// In zh, this message translates to:
  4453. /// **'确认取消'**
  4454. String get confirmCancelTitle;
  4455. /// No description provided for @confirmCancelTraderMsg.
  4456. ///
  4457. /// In zh, this message translates to:
  4458. /// **'确定申请取消交易员资格吗?此操作不可撤销。'**
  4459. String get confirmCancelTraderMsg;
  4460. /// No description provided for @applicationSubmitted.
  4461. ///
  4462. /// In zh, this message translates to:
  4463. /// **'申请已提交'**
  4464. String get applicationSubmitted;
  4465. /// No description provided for @avatarUpdated.
  4466. ///
  4467. /// In zh, this message translates to:
  4468. /// **'头像更新成功'**
  4469. String get avatarUpdated;
  4470. /// No description provided for @tradingSettings.
  4471. ///
  4472. /// In zh, this message translates to:
  4473. /// **'带单设置'**
  4474. String get tradingSettings;
  4475. /// No description provided for @tradingNickname.
  4476. ///
  4477. /// In zh, this message translates to:
  4478. /// **'带单昵称'**
  4479. String get tradingNickname;
  4480. /// No description provided for @maxTagsHint.
  4481. ///
  4482. /// In zh, this message translates to:
  4483. /// **'最多可以选{max}个({selected}/{max})'**
  4484. String maxTagsHint(String max, String selected);
  4485. /// No description provided for @saveLabel.
  4486. ///
  4487. /// In zh, this message translates to:
  4488. /// **'保存'**
  4489. String get saveLabel;
  4490. /// No description provided for @cancelTraderQualify.
  4491. ///
  4492. /// In zh, this message translates to:
  4493. /// **'申请取消交易员资格'**
  4494. String get cancelTraderQualify;
  4495. /// No description provided for @bioHint.
  4496. ///
  4497. /// In zh, this message translates to:
  4498. /// **'用一句话介绍你的策略风格...'**
  4499. String get bioHint;
  4500. /// No description provided for @applicationPendingReview.
  4501. ///
  4502. /// In zh, this message translates to:
  4503. /// **'申请已提交,请等待审核'**
  4504. String get applicationPendingReview;
  4505. /// No description provided for @traderApplyConditions.
  4506. ///
  4507. /// In zh, this message translates to:
  4508. /// **'满足以下条件即可申请成为交易员!'**
  4509. String get traderApplyConditions;
  4510. /// No description provided for @contractAccountFundsReq.
  4511. ///
  4512. /// In zh, this message translates to:
  4513. /// **'合约账户资金 ≥ 1000 USDT'**
  4514. String get contractAccountFundsReq;
  4515. /// No description provided for @goTransfer.
  4516. ///
  4517. /// In zh, this message translates to:
  4518. /// **'去划转'**
  4519. String get goTransfer;
  4520. /// No description provided for @noFollowingTrader.
  4521. ///
  4522. /// In zh, this message translates to:
  4523. /// **'当前没有跟随交易员'**
  4524. String get noFollowingTrader;
  4525. /// No description provided for @agreeToAgreement.
  4526. ///
  4527. /// In zh, this message translates to:
  4528. /// **'我已阅读并同意 '**
  4529. String get agreeToAgreement;
  4530. /// No description provided for @traderAgreementLink.
  4531. ///
  4532. /// In zh, this message translates to:
  4533. /// **'《交易员协议》'**
  4534. String get traderAgreementLink;
  4535. /// No description provided for @reviewingApplication.
  4536. ///
  4537. /// In zh, this message translates to:
  4538. /// **'申请审核中'**
  4539. String get reviewingApplication;
  4540. /// No description provided for @submitApplication.
  4541. ///
  4542. /// In zh, this message translates to:
  4543. /// **'提交申请'**
  4544. String get submitApplication;
  4545. /// No description provided for @contactSupport.
  4546. ///
  4547. /// In zh, this message translates to:
  4548. /// **'联系客服'**
  4549. String get contactSupport;
  4550. /// No description provided for @copyTradingTitle.
  4551. ///
  4552. /// In zh, this message translates to:
  4553. /// **'合约跟单'**
  4554. String get copyTradingTitle;
  4555. /// No description provided for @klinePeriod1m.
  4556. ///
  4557. /// In zh, this message translates to:
  4558. /// **'1分'**
  4559. String get klinePeriod1m;
  4560. /// No description provided for @klinePeriod5m.
  4561. ///
  4562. /// In zh, this message translates to:
  4563. /// **'5分'**
  4564. String get klinePeriod5m;
  4565. /// No description provided for @klinePeriod15m.
  4566. ///
  4567. /// In zh, this message translates to:
  4568. /// **'15分'**
  4569. String get klinePeriod15m;
  4570. /// No description provided for @klinePeriod30m.
  4571. ///
  4572. /// In zh, this message translates to:
  4573. /// **'30分'**
  4574. String get klinePeriod30m;
  4575. /// No description provided for @klinePeriod1h.
  4576. ///
  4577. /// In zh, this message translates to:
  4578. /// **'1时'**
  4579. String get klinePeriod1h;
  4580. /// No description provided for @klinePeriod4h.
  4581. ///
  4582. /// In zh, this message translates to:
  4583. /// **'4时'**
  4584. String get klinePeriod4h;
  4585. /// No description provided for @klinePeriod1d.
  4586. ///
  4587. /// In zh, this message translates to:
  4588. /// **'日线'**
  4589. String get klinePeriod1d;
  4590. /// No description provided for @klinePeriod1w.
  4591. ///
  4592. /// In zh, this message translates to:
  4593. /// **'周线'**
  4594. String get klinePeriod1w;
  4595. /// No description provided for @klinePeriod1mon.
  4596. ///
  4597. /// In zh, this message translates to:
  4598. /// **'月线'**
  4599. String get klinePeriod1mon;
  4600. /// No description provided for @unfollowTraderConfirm.
  4601. ///
  4602. /// In zh, this message translates to:
  4603. /// **'是否确认取消跟随此交易员?'**
  4604. String get unfollowTraderConfirm;
  4605. /// No description provided for @currentFollowOrders.
  4606. ///
  4607. /// In zh, this message translates to:
  4608. /// **'当前跟单'**
  4609. String get currentFollowOrders;
  4610. /// No description provided for @historyFollowOrders.
  4611. ///
  4612. /// In zh, this message translates to:
  4613. /// **'历史跟单'**
  4614. String get historyFollowOrders;
  4615. /// No description provided for @availableBalanceUsdt.
  4616. ///
  4617. /// In zh, this message translates to:
  4618. /// **'可用资产(USDT)'**
  4619. String get availableBalanceUsdt;
  4620. /// No description provided for @networkConnectionError.
  4621. ///
  4622. /// In zh, this message translates to:
  4623. /// **'网络连接异常,请检查网络设置后重试'**
  4624. String get networkConnectionError;
  4625. /// No description provided for @perpetualContracts.
  4626. ///
  4627. /// In zh, this message translates to:
  4628. /// **'永续合约'**
  4629. String get perpetualContracts;
  4630. /// No description provided for @searchHint.
  4631. ///
  4632. /// In zh, this message translates to:
  4633. /// **'搜索'**
  4634. String get searchHint;
  4635. /// No description provided for @nameAndVolume.
  4636. ///
  4637. /// In zh, this message translates to:
  4638. /// **'名称 / 成交量'**
  4639. String get nameAndVolume;
  4640. /// No description provided for @latestPriceChange.
  4641. ///
  4642. /// In zh, this message translates to:
  4643. /// **'最新价 / 24h涨跌'**
  4644. String get latestPriceChange;
  4645. /// No description provided for @volumeWithValue.
  4646. ///
  4647. /// In zh, this message translates to:
  4648. /// **'成交量 {value} USDT'**
  4649. String volumeWithValue(String value);
  4650. /// No description provided for @volumeEmpty.
  4651. ///
  4652. /// In zh, this message translates to:
  4653. /// **'成交量 --'**
  4654. String get volumeEmpty;
  4655. /// No description provided for @txType0.
  4656. ///
  4657. /// In zh, this message translates to:
  4658. /// **'充值'**
  4659. String get txType0;
  4660. /// No description provided for @txType1.
  4661. ///
  4662. /// In zh, this message translates to:
  4663. /// **'提现'**
  4664. String get txType1;
  4665. /// No description provided for @txType2.
  4666. ///
  4667. /// In zh, this message translates to:
  4668. /// **'内部转账'**
  4669. String get txType2;
  4670. /// No description provided for @txType3.
  4671. ///
  4672. /// In zh, this message translates to:
  4673. /// **'币币交易'**
  4674. String get txType3;
  4675. /// No description provided for @txType4.
  4676. ///
  4677. /// In zh, this message translates to:
  4678. /// **'手续费'**
  4679. String get txType4;
  4680. /// No description provided for @txType5.
  4681. ///
  4682. /// In zh, this message translates to:
  4683. /// **'糖果'**
  4684. String get txType5;
  4685. /// No description provided for @txType6.
  4686. ///
  4687. /// In zh, this message translates to:
  4688. /// **'活动发放'**
  4689. String get txType6;
  4690. /// No description provided for @txType7.
  4691. ///
  4692. /// In zh, this message translates to:
  4693. /// **'推广奖励'**
  4694. String get txType7;
  4695. /// No description provided for @txType8.
  4696. ///
  4697. /// In zh, this message translates to:
  4698. /// **'分红'**
  4699. String get txType8;
  4700. /// No description provided for @txType9.
  4701. ///
  4702. /// In zh, this message translates to:
  4703. /// **'返利'**
  4704. String get txType9;
  4705. /// No description provided for @txType10.
  4706. ///
  4707. /// In zh, this message translates to:
  4708. /// **'后台充值'**
  4709. String get txType10;
  4710. /// No description provided for @txType11.
  4711. ///
  4712. /// In zh, this message translates to:
  4713. /// **'后台扣除'**
  4714. String get txType11;
  4715. /// No description provided for @txType13.
  4716. ///
  4717. /// In zh, this message translates to:
  4718. /// **'锁仓'**
  4719. String get txType13;
  4720. /// No description provided for @txType14.
  4721. ///
  4722. /// In zh, this message translates to:
  4723. /// **'解锁'**
  4724. String get txType14;
  4725. /// No description provided for @txType15.
  4726. ///
  4727. /// In zh, this message translates to:
  4728. /// **'抢购'**
  4729. String get txType15;
  4730. /// No description provided for @txType16.
  4731. ///
  4732. /// In zh, this message translates to:
  4733. /// **'活动奖励'**
  4734. String get txType16;
  4735. /// No description provided for @txType17.
  4736. ///
  4737. /// In zh, this message translates to:
  4738. /// **'活动扣除'**
  4739. String get txType17;
  4740. /// No description provided for @txType18.
  4741. ///
  4742. /// In zh, this message translates to:
  4743. /// **'用户转账'**
  4744. String get txType18;
  4745. /// No description provided for @txType19.
  4746. ///
  4747. /// In zh, this message translates to:
  4748. /// **'合约手续费'**
  4749. String get txType19;
  4750. /// No description provided for @txType20.
  4751. ///
  4752. /// In zh, this message translates to:
  4753. /// **'合约盈利'**
  4754. String get txType20;
  4755. /// No description provided for @txType21.
  4756. ///
  4757. /// In zh, this message translates to:
  4758. /// **'合约亏损'**
  4759. String get txType21;
  4760. /// No description provided for @txType22.
  4761. ///
  4762. /// In zh, this message translates to:
  4763. /// **'期权失败'**
  4764. String get txType22;
  4765. /// No description provided for @txType23.
  4766. ///
  4767. /// In zh, this message translates to:
  4768. /// **'期权手续费'**
  4769. String get txType23;
  4770. /// No description provided for @txType24.
  4771. ///
  4772. /// In zh, this message translates to:
  4773. /// **'期权奖励'**
  4774. String get txType24;
  4775. /// No description provided for @txType25.
  4776. ///
  4777. /// In zh, this message translates to:
  4778. /// **'合约返佣'**
  4779. String get txType25;
  4780. /// No description provided for @txType26.
  4781. ///
  4782. /// In zh, this message translates to:
  4783. /// **'合约资金费率'**
  4784. String get txType26;
  4785. /// No description provided for @txType27.
  4786. ///
  4787. /// In zh, this message translates to:
  4788. /// **'合约爆仓'**
  4789. String get txType27;
  4790. /// No description provided for @txType28.
  4791. ///
  4792. /// In zh, this message translates to:
  4793. /// **'合约保证金转入'**
  4794. String get txType28;
  4795. /// No description provided for @txType29.
  4796. ///
  4797. /// In zh, this message translates to:
  4798. /// **'合约保证金转出'**
  4799. String get txType29;
  4800. /// No description provided for @txType30.
  4801. ///
  4802. /// In zh, this message translates to:
  4803. /// **'手动充值'**
  4804. String get txType30;
  4805. /// No description provided for @txType31.
  4806. ///
  4807. /// In zh, this message translates to:
  4808. /// **'手动扣除'**
  4809. String get txType31;
  4810. /// No description provided for @txType32.
  4811. ///
  4812. /// In zh, this message translates to:
  4813. /// **'等级奖励'**
  4814. String get txType32;
  4815. /// No description provided for @txType33.
  4816. ///
  4817. /// In zh, this message translates to:
  4818. /// **'平台手续费分红'**
  4819. String get txType33;
  4820. /// No description provided for @txType34.
  4821. ///
  4822. /// In zh, this message translates to:
  4823. /// **'币币手续费'**
  4824. String get txType34;
  4825. /// No description provided for @txType35.
  4826. ///
  4827. /// In zh, this message translates to:
  4828. /// **'持仓盈利'**
  4829. String get txType35;
  4830. /// No description provided for @txType36.
  4831. ///
  4832. /// In zh, this message translates to:
  4833. /// **'持仓亏损'**
  4834. String get txType36;
  4835. /// No description provided for @txType37.
  4836. ///
  4837. /// In zh, this message translates to:
  4838. /// **'跟单手续费'**
  4839. String get txType37;
  4840. /// No description provided for @txType38.
  4841. ///
  4842. /// In zh, this message translates to:
  4843. /// **'跟单盈利'**
  4844. String get txType38;
  4845. /// No description provided for @txType39.
  4846. ///
  4847. /// In zh, this message translates to:
  4848. /// **'跟单亏损'**
  4849. String get txType39;
  4850. /// No description provided for @txType40.
  4851. ///
  4852. /// In zh, this message translates to:
  4853. /// **'跟单分红'**
  4854. String get txType40;
  4855. /// No description provided for @txType41.
  4856. ///
  4857. /// In zh, this message translates to:
  4858. /// **'跟单奖励'**
  4859. String get txType41;
  4860. /// No description provided for @txType42.
  4861. ///
  4862. /// In zh, this message translates to:
  4863. /// **'跟单资金费率'**
  4864. String get txType42;
  4865. /// No description provided for @txType43.
  4866. ///
  4867. /// In zh, this message translates to:
  4868. /// **'带单收益'**
  4869. String get txType43;
  4870. /// No description provided for @txType44.
  4871. ///
  4872. /// In zh, this message translates to:
  4873. /// **'带单手续费'**
  4874. String get txType44;
  4875. /// No description provided for @txType45.
  4876. ///
  4877. /// In zh, this message translates to:
  4878. /// **'带单爆仓'**
  4879. String get txType45;
  4880. /// No description provided for @txType46.
  4881. ///
  4882. /// In zh, this message translates to:
  4883. /// **'带单资金费率'**
  4884. String get txType46;
  4885. /// No description provided for @tagShortTerm.
  4886. ///
  4887. /// In zh, this message translates to:
  4888. /// **'超短'**
  4889. String get tagShortTerm;
  4890. /// No description provided for @tagMidLong.
  4891. ///
  4892. /// In zh, this message translates to:
  4893. /// **'中长'**
  4894. String get tagMidLong;
  4895. /// No description provided for @tagConservative.
  4896. ///
  4897. /// In zh, this message translates to:
  4898. /// **'稳健型'**
  4899. String get tagConservative;
  4900. /// No description provided for @tagAggressive.
  4901. ///
  4902. /// In zh, this message translates to:
  4903. /// **'激进型'**
  4904. String get tagAggressive;
  4905. /// No description provided for @tagHighLeverage.
  4906. ///
  4907. /// In zh, this message translates to:
  4908. /// **'高倍'**
  4909. String get tagHighLeverage;
  4910. /// No description provided for @tagLowLeverage.
  4911. ///
  4912. /// In zh, this message translates to:
  4913. /// **'低倍'**
  4914. String get tagLowLeverage;
  4915. /// No description provided for @sessionExpiredTitle.
  4916. ///
  4917. /// In zh, this message translates to:
  4918. /// **'登录已过期'**
  4919. String get sessionExpiredTitle;
  4920. /// No description provided for @sessionExpiredContent.
  4921. ///
  4922. /// In zh, this message translates to:
  4923. /// **'当前登录状态已失效,请重新登录'**
  4924. String get sessionExpiredContent;
  4925. /// No description provided for @relogin.
  4926. ///
  4927. /// In zh, this message translates to:
  4928. /// **'重新登录'**
  4929. String get relogin;
  4930. /// No description provided for @photoPermissionDenied.
  4931. ///
  4932. /// In zh, this message translates to:
  4933. /// **'相册权限被拒绝,请在系统设置中开启'**
  4934. String get photoPermissionDenied;
  4935. /// No description provided for @iaTitle.
  4936. ///
  4937. /// In zh, this message translates to:
  4938. /// **'邀请好友'**
  4939. String get iaTitle;
  4940. /// No description provided for @iaHeading.
  4941. ///
  4942. /// In zh, this message translates to:
  4943. /// **'每邀请一位好友'**
  4944. String get iaHeading;
  4945. /// No description provided for @iaBadge.
  4946. ///
  4947. /// In zh, this message translates to:
  4948. /// **'可获得体验金'**
  4949. String get iaBadge;
  4950. /// No description provided for @iaRewardHint.
  4951. ///
  4952. /// In zh, this message translates to:
  4953. /// **'每邀请一位好友可获得体验金'**
  4954. String get iaRewardHint;
  4955. /// No description provided for @iaValidCount.
  4956. ///
  4957. /// In zh, this message translates to:
  4958. /// **'有效邀请人数(人)'**
  4959. String get iaValidCount;
  4960. /// No description provided for @iaEarned.
  4961. ///
  4962. /// In zh, this message translates to:
  4963. /// **'已获得体验金(USDT)'**
  4964. String get iaEarned;
  4965. /// No description provided for @iaHowTitle.
  4966. ///
  4967. /// In zh, this message translates to:
  4968. /// **'玩法介绍'**
  4969. String get iaHowTitle;
  4970. /// No description provided for @iaStep1T.
  4971. ///
  4972. /// In zh, this message translates to:
  4973. /// **'分享邀请链接'**
  4974. String get iaStep1T;
  4975. /// No description provided for @iaStep1D.
  4976. ///
  4977. /// In zh, this message translates to:
  4978. /// **'分享您的专属链接给好友'**
  4979. String get iaStep1D;
  4980. /// No description provided for @iaStep2T.
  4981. ///
  4982. /// In zh, this message translates to:
  4983. /// **'完成任务'**
  4984. String get iaStep2T;
  4985. /// No description provided for @iaStep2D.
  4986. ///
  4987. /// In zh, this message translates to:
  4988. /// **'好友通过邀请链接注册,并完成自主合约交易'**
  4989. String get iaStep2D;
  4990. /// No description provided for @iaStep3T.
  4991. ///
  4992. /// In zh, this message translates to:
  4993. /// **'发放奖励'**
  4994. String get iaStep3T;
  4995. /// No description provided for @iaStep3D.
  4996. ///
  4997. /// In zh, this message translates to:
  4998. /// **'好友获得注册奖励,您获得邀请奖励'**
  4999. String get iaStep3D;
  5000. /// No description provided for @iaRulesTitle.
  5001. ///
  5002. /// In zh, this message translates to:
  5003. /// **'活动规则'**
  5004. String get iaRulesTitle;
  5005. /// No description provided for @iaRule1.
  5006. ///
  5007. /// In zh, this message translates to:
  5008. /// **'活动期间新注册用户,完成首笔充值后可获得{amount}U体验金的新用户福利。'**
  5009. String iaRule1(String amount);
  5010. /// No description provided for @iaRule2.
  5011. ///
  5012. /// In zh, this message translates to:
  5013. /// **'您邀请的好友完成首次合约自主交易后您可以获的{amount}U的体验金奖励,奖励无上限,邀请越多奖励越多。'**
  5014. String iaRule2(String amount);
  5015. /// No description provided for @iaRule3.
  5016. ///
  5017. /// In zh, this message translates to:
  5018. /// **'体验金发放后{days}日有效,到期自动回收,请获取奖励后及时使用。'**
  5019. String iaRule3(String days);
  5020. /// No description provided for @iaInviteNow.
  5021. ///
  5022. /// In zh, this message translates to:
  5023. /// **'立即邀请好友'**
  5024. String get iaInviteNow;
  5025. /// No description provided for @photoPermissionTitle.
  5026. ///
  5027. /// In zh, this message translates to:
  5028. /// **'需要相册权限'**
  5029. String get photoPermissionTitle;
  5030. /// No description provided for @photoPermissionContent.
  5031. ///
  5032. /// In zh, this message translates to:
  5033. /// **'请在系统设置中开启相册权限,以保存图片'**
  5034. String get photoPermissionContent;
  5035. /// No description provided for @goToSettings.
  5036. ///
  5037. /// In zh, this message translates to:
  5038. /// **'前往设置'**
  5039. String get goToSettings;
  5040. /// No description provided for @marketData.
  5041. ///
  5042. /// In zh, this message translates to:
  5043. /// **'数据'**
  5044. String get marketData;
  5045. /// No description provided for @timePeriod.
  5046. ///
  5047. /// In zh, this message translates to:
  5048. /// **'时间周期'**
  5049. String get timePeriod;
  5050. /// No description provided for @nextFundingCountdown.
  5051. ///
  5052. /// In zh, this message translates to:
  5053. /// **'距离下次资金费率时间'**
  5054. String get nextFundingCountdown;
  5055. /// No description provided for @fundingRateHistory.
  5056. ///
  5057. /// In zh, this message translates to:
  5058. /// **'资金费率历史'**
  5059. String get fundingRateHistory;
  5060. /// No description provided for @spotTab.
  5061. ///
  5062. /// In zh, this message translates to:
  5063. /// **'现货'**
  5064. String get spotTab;
  5065. /// No description provided for @buyAction.
  5066. ///
  5067. /// In zh, this message translates to:
  5068. /// **'买入'**
  5069. String get buyAction;
  5070. /// No description provided for @sellAction.
  5071. ///
  5072. /// In zh, this message translates to:
  5073. /// **'卖出'**
  5074. String get sellAction;
  5075. /// No description provided for @buyCoin.
  5076. ///
  5077. /// In zh, this message translates to:
  5078. /// **'买入{coin}'**
  5079. String buyCoin(String coin);
  5080. /// No description provided for @sellCoin.
  5081. ///
  5082. /// In zh, this message translates to:
  5083. /// **'卖出{coin}'**
  5084. String sellCoin(String coin);
  5085. /// No description provided for @canBuy.
  5086. ///
  5087. /// In zh, this message translates to:
  5088. /// **'可买入'**
  5089. String get canBuy;
  5090. /// No description provided for @canSell.
  5091. ///
  5092. /// In zh, this message translates to:
  5093. /// **'可卖出'**
  5094. String get canSell;
  5095. /// No description provided for @marketBest.
  5096. ///
  5097. /// In zh, this message translates to:
  5098. /// **'市场最优价'**
  5099. String get marketBest;
  5100. /// No description provided for @amountQuoteLabel.
  5101. ///
  5102. /// In zh, this message translates to:
  5103. /// **'交易额'**
  5104. String get amountQuoteLabel;
  5105. /// No description provided for @spotConditionalNotSupported.
  5106. ///
  5107. /// In zh, this message translates to:
  5108. /// **'市价条件委托暂不支持'**
  5109. String get spotConditionalNotSupported;
  5110. /// No description provided for @spotAvgPrice.
  5111. ///
  5112. /// In zh, this message translates to:
  5113. /// **'成交均价'**
  5114. String get spotAvgPrice;
  5115. /// No description provided for @spotHistoryTitle.
  5116. ///
  5117. /// In zh, this message translates to:
  5118. /// **'历史委托'**
  5119. String get spotHistoryTitle;
  5120. /// No description provided for @spotHistoryRecordsTitle.
  5121. ///
  5122. /// In zh, this message translates to:
  5123. /// **'历史记录'**
  5124. String get spotHistoryRecordsTitle;
  5125. /// No description provided for @spotHistoryTradesTab.
  5126. ///
  5127. /// In zh, this message translates to:
  5128. /// **'历史成交'**
  5129. String get spotHistoryTradesTab;
  5130. /// No description provided for @spotHistoryFilterSymbol.
  5131. ///
  5132. /// In zh, this message translates to:
  5133. /// **'交易对'**
  5134. String get spotHistoryFilterSymbol;
  5135. /// No description provided for @spotHistoryFilterOrderKind.
  5136. ///
  5137. /// In zh, this message translates to:
  5138. /// **'委托类型'**
  5139. String get spotHistoryFilterOrderKind;
  5140. /// No description provided for @spotHistoryFilterStatus.
  5141. ///
  5142. /// In zh, this message translates to:
  5143. /// **'状态'**
  5144. String get spotHistoryFilterStatus;
  5145. /// No description provided for @spotHistoryFilterTime.
  5146. ///
  5147. /// In zh, this message translates to:
  5148. /// **'时间'**
  5149. String get spotHistoryFilterTime;
  5150. /// No description provided for @spotFilterSymbolAllPairs.
  5151. ///
  5152. /// In zh, this message translates to:
  5153. /// **'全部交易对'**
  5154. String get spotFilterSymbolAllPairs;
  5155. /// No description provided for @spotFilterEntrustAll.
  5156. ///
  5157. /// In zh, this message translates to:
  5158. /// **'全部委托'**
  5159. String get spotFilterEntrustAll;
  5160. /// No description provided for @spotEntrustQuantity.
  5161. ///
  5162. /// In zh, this message translates to:
  5163. /// **'委托数量'**
  5164. String get spotEntrustQuantity;
  5165. /// No description provided for @spotDealTime.
  5166. ///
  5167. /// In zh, this message translates to:
  5168. /// **'成交时间'**
  5169. String get spotDealTime;
  5170. /// No description provided for @spotOrderStatusCompleted.
  5171. ///
  5172. /// In zh, this message translates to:
  5173. /// **'完成成交'**
  5174. String get spotOrderStatusCompleted;
  5175. /// No description provided for @spotOrderStatusPartialFilled.
  5176. ///
  5177. /// In zh, this message translates to:
  5178. /// **'部分成交'**
  5179. String get spotOrderStatusPartialFilled;
  5180. /// No description provided for @spotOrderStatusCancelled.
  5181. ///
  5182. /// In zh, this message translates to:
  5183. /// **'已取消'**
  5184. String get spotOrderStatusCancelled;
  5185. /// No description provided for @spotOrderTypeMarketConditional.
  5186. ///
  5187. /// In zh, this message translates to:
  5188. /// **'市价条件单'**
  5189. String get spotOrderTypeMarketConditional;
  5190. /// No description provided for @spotFilterKindAll.
  5191. ///
  5192. /// In zh, this message translates to:
  5193. /// **'全部'**
  5194. String get spotFilterKindAll;
  5195. /// No description provided for @spotFilterKindLimit.
  5196. ///
  5197. /// In zh, this message translates to:
  5198. /// **'限价单'**
  5199. String get spotFilterKindLimit;
  5200. /// No description provided for @spotFilterKindMarket.
  5201. ///
  5202. /// In zh, this message translates to:
  5203. /// **'市价单'**
  5204. String get spotFilterKindMarket;
  5205. /// No description provided for @spotFilterKindConditional.
  5206. ///
  5207. /// In zh, this message translates to:
  5208. /// **'市价条件单'**
  5209. String get spotFilterKindConditional;
  5210. /// No description provided for @spotFilterTimeAll.
  5211. ///
  5212. /// In zh, this message translates to:
  5213. /// **'全部'**
  5214. String get spotFilterTimeAll;
  5215. /// No description provided for @spotFilterTime7d.
  5216. ///
  5217. /// In zh, this message translates to:
  5218. /// **'近7天'**
  5219. String get spotFilterTime7d;
  5220. /// No description provided for @spotFilterTime30d.
  5221. ///
  5222. /// In zh, this message translates to:
  5223. /// **'近30天'**
  5224. String get spotFilterTime30d;
  5225. /// No description provided for @spotFilterStatusAll.
  5226. ///
  5227. /// In zh, this message translates to:
  5228. /// **'全部'**
  5229. String get spotFilterStatusAll;
  5230. /// No description provided for @currentOrdersTab.
  5231. ///
  5232. /// In zh, this message translates to:
  5233. /// **'当前委托({count})'**
  5234. String currentOrdersTab(int count);
  5235. /// No description provided for @assetsTab.
  5236. ///
  5237. /// In zh, this message translates to:
  5238. /// **'资产'**
  5239. String get assetsTab;
  5240. /// No description provided for @hideOtherSymbols.
  5241. ///
  5242. /// In zh, this message translates to:
  5243. /// **'隐藏其他交易对'**
  5244. String get hideOtherSymbols;
  5245. /// No description provided for @cancelSuccess.
  5246. ///
  5247. /// In zh, this message translates to:
  5248. /// **'撤销成功'**
  5249. String get cancelSuccess;
  5250. /// No description provided for @noOpenOrders.
  5251. ///
  5252. /// In zh, this message translates to:
  5253. /// **'暂无委托'**
  5254. String get noOpenOrders;
  5255. /// No description provided for @noAssets.
  5256. ///
  5257. /// In zh, this message translates to:
  5258. /// **'暂无资产'**
  5259. String get noAssets;
  5260. /// No description provided for @hideZeroBalanceAssets.
  5261. ///
  5262. /// In zh, this message translates to:
  5263. /// **'隐藏0余额资产'**
  5264. String get hideZeroBalanceAssets;
  5265. /// No description provided for @loginPrompt.
  5266. ///
  5267. /// In zh, this message translates to:
  5268. /// **'登录后查看'**
  5269. String get loginPrompt;
  5270. /// No description provided for @loginText.
  5271. ///
  5272. /// In zh, this message translates to:
  5273. /// **'去登录'**
  5274. String get loginText;
  5275. /// No description provided for @allLabel.
  5276. ///
  5277. /// In zh, this message translates to:
  5278. /// **'全部'**
  5279. String get allLabel;
  5280. /// No description provided for @noHistoryOrders.
  5281. ///
  5282. /// In zh, this message translates to:
  5283. /// **'暂无历史委托'**
  5284. String get noHistoryOrders;
  5285. /// No description provided for @noMoreData.
  5286. ///
  5287. /// In zh, this message translates to:
  5288. /// **'没有更多数据了'**
  5289. String get noMoreData;
  5290. /// No description provided for @historyEntrust.
  5291. ///
  5292. /// In zh, this message translates to:
  5293. /// **'历史'**
  5294. String get historyEntrust;
  5295. /// No description provided for @tradedDealAmount.
  5296. ///
  5297. /// In zh, this message translates to:
  5298. /// **'成交数量'**
  5299. String get tradedDealAmount;
  5300. /// No description provided for @frozenLabel.
  5301. ///
  5302. /// In zh, this message translates to:
  5303. /// **'冻结'**
  5304. String get frozenLabel;
  5305. /// No description provided for @transferIn.
  5306. ///
  5307. /// In zh, this message translates to:
  5308. /// **'划入现货'**
  5309. String get transferIn;
  5310. /// No description provided for @transferOut.
  5311. ///
  5312. /// In zh, this message translates to:
  5313. /// **'划出现货'**
  5314. String get transferOut;
  5315. /// No description provided for @fundingAccount.
  5316. ///
  5317. /// In zh, this message translates to:
  5318. /// **'资金账户'**
  5319. String get fundingAccount;
  5320. /// No description provided for @spotAccount.
  5321. ///
  5322. /// In zh, this message translates to:
  5323. /// **'现货账户'**
  5324. String get spotAccount;
  5325. /// No description provided for @todayPnlLabel.
  5326. ///
  5327. /// In zh, this message translates to:
  5328. /// **'今日盈亏'**
  5329. String get todayPnlLabel;
  5330. /// No description provided for @totalAssets.
  5331. ///
  5332. /// In zh, this message translates to:
  5333. /// **'总资产'**
  5334. String get totalAssets;
  5335. /// No description provided for @transferAmountExceedsBalance.
  5336. ///
  5337. /// In zh, this message translates to:
  5338. /// **'超过可用余额'**
  5339. String get transferAmountExceedsBalance;
  5340. /// No description provided for @accountRecords.
  5341. ///
  5342. /// In zh, this message translates to:
  5343. /// **'资金流水'**
  5344. String get accountRecords;
  5345. /// No description provided for @spotAccountRecordFilterTrade.
  5346. ///
  5347. /// In zh, this message translates to:
  5348. /// **'成交'**
  5349. String get spotAccountRecordFilterTrade;
  5350. /// No description provided for @spotAccountRecordTypeOrderFreeze.
  5351. ///
  5352. /// In zh, this message translates to:
  5353. /// **'下单冻结'**
  5354. String get spotAccountRecordTypeOrderFreeze;
  5355. /// No description provided for @spotAccountRecordTypeOrderUnfreeze.
  5356. ///
  5357. /// In zh, this message translates to:
  5358. /// **'撤单解冻'**
  5359. String get spotAccountRecordTypeOrderUnfreeze;
  5360. /// No description provided for @spotAccountRecordTradeBuy.
  5361. ///
  5362. /// In zh, this message translates to:
  5363. /// **'成交(买入)'**
  5364. String get spotAccountRecordTradeBuy;
  5365. /// No description provided for @spotAccountRecordTradeSell.
  5366. ///
  5367. /// In zh, this message translates to:
  5368. /// **'成交(卖出)'**
  5369. String get spotAccountRecordTradeSell;
  5370. /// No description provided for @customerServiceLeave.
  5371. ///
  5372. /// In zh, this message translates to:
  5373. /// **'退出'**
  5374. String get customerServiceLeave;
  5375. /// No description provided for @walletConnectPairingDescription.
  5376. ///
  5377. /// In zh, this message translates to:
  5378. /// **'链上充值'**
  5379. String get walletConnectPairingDescription;
  5380. /// No description provided for @txType47.
  5381. ///
  5382. /// In zh, this message translates to:
  5383. /// **'体验金提现'**
  5384. String get txType47;
  5385. /// No description provided for @txType48.
  5386. ///
  5387. /// In zh, this message translates to:
  5388. /// **'现货交易'**
  5389. String get txType48;
  5390. /// No description provided for @txType49.
  5391. ///
  5392. /// In zh, this message translates to:
  5393. /// **'质押'**
  5394. String get txType49;
  5395. /// No description provided for @txType50.
  5396. ///
  5397. /// In zh, this message translates to:
  5398. /// **'质押解冻释放'**
  5399. String get txType50;
  5400. /// No description provided for @txType51.
  5401. ///
  5402. /// In zh, this message translates to:
  5403. /// **'空投奖励'**
  5404. String get txType51;
  5405. /// No description provided for @depositEnterAmount.
  5406. ///
  5407. /// In zh, this message translates to:
  5408. /// **'请输入充值数量'**
  5409. String get depositEnterAmount;
  5410. /// No description provided for @depositAmountPositive.
  5411. ///
  5412. /// In zh, this message translates to:
  5413. /// **'请输入大于 0 的数量'**
  5414. String get depositAmountPositive;
  5415. /// No description provided for @depositCreateOrder.
  5416. ///
  5417. /// In zh, this message translates to:
  5418. /// **'生成充币订单'**
  5419. String get depositCreateOrder;
  5420. /// No description provided for @depositOrderCreated.
  5421. ///
  5422. /// In zh, this message translates to:
  5423. /// **'订单已创建,请向下方地址转账或连接钱包支付'**
  5424. String get depositOrderCreated;
  5425. /// No description provided for @depositWalletConnectPay.
  5426. ///
  5427. /// In zh, this message translates to:
  5428. /// **'连接钱包并支付'**
  5429. String get depositWalletConnectPay;
  5430. /// No description provided for @depositWalletConnectHint.
  5431. ///
  5432. /// In zh, this message translates to:
  5433. /// **'可使用 WalletConnect 连接钱包,将按订单金额向收款地址发起链上转账(请确认网络与币种一致)。'**
  5434. String get depositWalletConnectHint;
  5435. /// No description provided for @depositWalletConnectNotConfigured.
  5436. ///
  5437. /// In zh, this message translates to:
  5438. /// **'WalletConnect 未配置:请在构建参数中设置 WALLETCONNECT_PROJECT_ID,或使用手动转账。'**
  5439. String get depositWalletConnectNotConfigured;
  5440. /// No description provided for @depositTronHint.
  5441. ///
  5442. /// In zh, this message translates to:
  5443. /// **'波场(TRC20)请使用 TronLink 等钱包向收款地址转账,随后在下方填写 TxID。'**
  5444. String get depositTronHint;
  5445. /// No description provided for @depositOrSubmitHash.
  5446. ///
  5447. /// In zh, this message translates to:
  5448. /// **'或:转账完成后填写交易哈希'**
  5449. String get depositOrSubmitHash;
  5450. /// No description provided for @depositTxHashPlaceholder.
  5451. ///
  5452. /// In zh, this message translates to:
  5453. /// **'粘贴链上交易 Hash/波场 TxID'**
  5454. String get depositTxHashPlaceholder;
  5455. /// No description provided for @depositSubmitHash.
  5456. ///
  5457. /// In zh, this message translates to:
  5458. /// **'提交交易哈希'**
  5459. String get depositSubmitHash;
  5460. /// No description provided for @depositNewRecharge.
  5461. ///
  5462. /// In zh, this message translates to:
  5463. /// **'新建充值'**
  5464. String get depositNewRecharge;
  5465. /// No description provided for @depositTabOnChain.
  5466. ///
  5467. /// In zh, this message translates to:
  5468. /// **'链上充值'**
  5469. String get depositTabOnChain;
  5470. /// No description provided for @depositTabManual.
  5471. ///
  5472. /// In zh, this message translates to:
  5473. /// **'手动充值'**
  5474. String get depositTabManual;
  5475. /// No description provided for @depositOrderInfo.
  5476. ///
  5477. /// In zh, this message translates to:
  5478. /// **'订单信息'**
  5479. String get depositOrderInfo;
  5480. /// No description provided for @depositOrderNo.
  5481. ///
  5482. /// In zh, this message translates to:
  5483. /// **'订单号'**
  5484. String get depositOrderNo;
  5485. /// No description provided for @depositOrderStatus.
  5486. ///
  5487. /// In zh, this message translates to:
  5488. /// **'状态'**
  5489. String get depositOrderStatus;
  5490. /// No description provided for @depositReceivingAddress.
  5491. ///
  5492. /// In zh, this message translates to:
  5493. /// **'收款地址'**
  5494. String get depositReceivingAddress;
  5495. /// No description provided for @depositPayToHint.
  5496. ///
  5497. /// In zh, this message translates to:
  5498. /// **'请按订单金额向该地址转账,币种与网络须与订单一致'**
  5499. String get depositPayToHint;
  5500. /// No description provided for @depositContractAddress.
  5501. ///
  5502. /// In zh, this message translates to:
  5503. /// **'合约地址'**
  5504. String get depositContractAddress;
  5505. /// No description provided for @depositOrderAmount.
  5506. ///
  5507. /// In zh, this message translates to:
  5508. /// **'充值金额'**
  5509. String get depositOrderAmount;
  5510. /// No description provided for @depositSelectNetworkFirst.
  5511. ///
  5512. /// In zh, this message translates to:
  5513. /// **'请先选择充值网络'**
  5514. String get depositSelectNetworkFirst;
  5515. /// No description provided for @depositMainnetProtocol.
  5516. ///
  5517. /// In zh, this message translates to:
  5518. /// **'主网/协议'**
  5519. String get depositMainnetProtocol;
  5520. /// No description provided for @depositSubCoin.
  5521. ///
  5522. /// In zh, this message translates to:
  5523. /// **'子币种'**
  5524. String get depositSubCoin;
  5525. /// No description provided for @depositRules.
  5526. ///
  5527. /// In zh, this message translates to:
  5528. /// **'规则'**
  5529. String get depositRules;
  5530. /// No description provided for @depositRulesBody.
  5531. ///
  5532. /// In zh, this message translates to:
  5533. /// **'选择币种与网络并输入金额后,点击「生成充币订单」将获得专属收款地址与订单号;使用钱包完成链上转账后,在此页提交 TxHash。'**
  5534. String get depositRulesBody;
  5535. /// No description provided for @depositCurrentCoin.
  5536. ///
  5537. /// In zh, this message translates to:
  5538. /// **'当前:{coin}'**
  5539. String depositCurrentCoin(String coin);
  5540. /// No description provided for @depositQrReceive.
  5541. ///
  5542. /// In zh, this message translates to:
  5543. /// **'二维码收款'**
  5544. String get depositQrReceive;
  5545. /// No description provided for @depositQrHint.
  5546. ///
  5547. /// In zh, this message translates to:
  5548. /// **'可用钱包扫一扫,向上述地址转账(请勿修改地址与金额)'**
  5549. String get depositQrHint;
  5550. /// No description provided for @depositCopy.
  5551. ///
  5552. /// In zh, this message translates to:
  5553. /// **'复制'**
  5554. String get depositCopy;
  5555. /// No description provided for @depositSubmitHashHint.
  5556. ///
  5557. /// In zh, this message translates to:
  5558. /// **'转账完成后填写交易哈希/TxID'**
  5559. String get depositSubmitHashHint;
  5560. /// No description provided for @passwordLengthError.
  5561. ///
  5562. /// In zh, this message translates to:
  5563. /// **'密码长度须为 6–16 位'**
  5564. String get passwordLengthError;
  5565. /// No description provided for @passwordSpaceError.
  5566. ///
  5567. /// In zh, this message translates to:
  5568. /// **'密码不能包含空格'**
  5569. String get passwordSpaceError;
  5570. /// No description provided for @passwordLetterDigitError.
  5571. ///
  5572. /// In zh, this message translates to:
  5573. /// **'须同时包含字母与数字'**
  5574. String get passwordLetterDigitError;
  5575. /// No description provided for @brokerApplyTitle.
  5576. ///
  5577. /// In zh, this message translates to:
  5578. /// **'申请成为经纪商'**
  5579. String get brokerApplyTitle;
  5580. /// No description provided for @brokerApplyDesc.
  5581. ///
  5582. /// In zh, this message translates to:
  5583. /// **'您还不是经纪商,系统将自动使用您的账户信息提交申请,审核通过后即可使用经纪商功能。'**
  5584. String get brokerApplyDesc;
  5585. /// No description provided for @brokerApplyRecords.
  5586. ///
  5587. /// In zh, this message translates to:
  5588. /// **'经纪商申请记录'**
  5589. String get brokerApplyRecords;
  5590. /// No description provided for @applyPendingTitle.
  5591. ///
  5592. /// In zh, this message translates to:
  5593. /// **'申请审核中'**
  5594. String get applyPendingTitle;
  5595. /// No description provided for @auditStatusPending.
  5596. ///
  5597. /// In zh, this message translates to:
  5598. /// **'待审核'**
  5599. String get auditStatusPending;
  5600. /// No description provided for @auditStatusApproved.
  5601. ///
  5602. /// In zh, this message translates to:
  5603. /// **'审核通过'**
  5604. String get auditStatusApproved;
  5605. /// No description provided for @auditStatusRejected.
  5606. ///
  5607. /// In zh, this message translates to:
  5608. /// **'审核拒绝'**
  5609. String get auditStatusRejected;
  5610. /// No description provided for @applyPendingDesc.
  5611. ///
  5612. /// In zh, this message translates to:
  5613. /// **'您的经纪商申请正在审批,请耐心等待或联系客服'**
  5614. String get applyPendingDesc;
  5615. /// No description provided for @alreadyBroker.
  5616. ///
  5617. /// In zh, this message translates to:
  5618. /// **'您已经是经纪商'**
  5619. String get alreadyBroker;
  5620. /// No description provided for @rechargeStatus0.
  5621. ///
  5622. /// In zh, this message translates to:
  5623. /// **'待支付'**
  5624. String get rechargeStatus0;
  5625. /// No description provided for @rechargeStatus1.
  5626. ///
  5627. /// In zh, this message translates to:
  5628. /// **'待链上确认'**
  5629. String get rechargeStatus1;
  5630. /// No description provided for @rechargeStatus2.
  5631. ///
  5632. /// In zh, this message translates to:
  5633. /// **'已完成'**
  5634. String get rechargeStatus2;
  5635. /// No description provided for @rechargeStatus3.
  5636. ///
  5637. /// In zh, this message translates to:
  5638. /// **'已取消'**
  5639. String get rechargeStatus3;
  5640. /// No description provided for @rechargeStatus4.
  5641. ///
  5642. /// In zh, this message translates to:
  5643. /// **'失败'**
  5644. String get rechargeStatus4;
  5645. }
  5646. class _AppLocalizationsDelegate
  5647. extends LocalizationsDelegate<AppLocalizations> {
  5648. const _AppLocalizationsDelegate();
  5649. @override
  5650. Future<AppLocalizations> load(Locale locale) {
  5651. return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
  5652. }
  5653. @override
  5654. bool isSupported(Locale locale) => <String>[
  5655. 'en',
  5656. 'hi',
  5657. 'id',
  5658. 'ja',
  5659. 'ko',
  5660. 'zh'
  5661. ].contains(locale.languageCode);
  5662. @override
  5663. bool shouldReload(_AppLocalizationsDelegate old) => false;
  5664. }
  5665. AppLocalizations lookupAppLocalizations(Locale locale) {
  5666. // Lookup logic when language+country codes are specified.
  5667. switch (locale.languageCode) {
  5668. case 'zh':
  5669. {
  5670. switch (locale.countryCode) {
  5671. case 'TW':
  5672. return AppLocalizationsZhTw();
  5673. }
  5674. break;
  5675. }
  5676. }
  5677. // Lookup logic when only language code is specified.
  5678. switch (locale.languageCode) {
  5679. case 'en':
  5680. return AppLocalizationsEn();
  5681. case 'hi':
  5682. return AppLocalizationsHi();
  5683. case 'id':
  5684. return AppLocalizationsId();
  5685. case 'ja':
  5686. return AppLocalizationsJa();
  5687. case 'ko':
  5688. return AppLocalizationsKo();
  5689. case 'zh':
  5690. return AppLocalizationsZh();
  5691. }
  5692. throw FlutterError(
  5693. 'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
  5694. 'an issue with the localizations generation tool. Please file an issue '
  5695. 'on GitHub with a reproducible sample app and the gen-l10n configuration '
  5696. 'that was used.');
  5697. }