zh-CHS.xml 266 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872
  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <Localization language="Chinese (Simplified)" description="Chinese (Simplified)" cultureName="zh-CHS">
  3. <A_WebViewer>
  4. <AbbreviatedDayFriday>星期五</AbbreviatedDayFriday>
  5. <AbbreviatedDayMonday>星期一</AbbreviatedDayMonday>
  6. <AbbreviatedDaySaturday>星期六</AbbreviatedDaySaturday>
  7. <AbbreviatedDaySunday>星期天</AbbreviatedDaySunday>
  8. <AbbreviatedDayThursday>星期四</AbbreviatedDayThursday>
  9. <AbbreviatedDayTuesday>星期二</AbbreviatedDayTuesday>
  10. <AbbreviatedDayWednesday>星期三</AbbreviatedDayWednesday>
  11. <Attachment>附件:</Attachment>
  12. <ButtonNext>下一步</ButtonNext>
  13. <ButtonPrev>前一步</ButtonPrev>
  14. <ButtonSend>发送</ButtonSend>
  15. <CategoryAlreadyExists>该名称类别已存在!</CategoryAlreadyExists>
  16. <DayFriday>周五</DayFriday>
  17. <DayMonday>周一</DayMonday>
  18. <DaySaturday>周六</DaySaturday>
  19. <DaySunday>周日</DaySunday>
  20. <DayThursday>周四</DayThursday>
  21. <DayTuesday>周二</DayTuesday>
  22. <DayWednesday>周三</DayWednesday>
  23. <Email>Email:</Email>
  24. <EmailOptions>邮件选项</EmailOptions>
  25. <FirstPage>首页</FirstPage>
  26. <Hours>小时</Hours>
  27. <LabelFrom>来自:</LabelFrom>
  28. <LabelSelectExportFormat>选择报表的保存格式:</LabelSelectExportFormat>
  29. <LabelTo>到:</LabelTo>
  30. <LastPage>末页</LastPage>
  31. <Loading>加载...</Loading>
  32. <Message>消息:</Message>
  33. <Minutes>分钟</Minutes>
  34. <MonthApril>4月</MonthApril>
  35. <MonthAugust>8月</MonthAugust>
  36. <MonthDecember>12月</MonthDecember>
  37. <MonthFebruary>2月</MonthFebruary>
  38. <MonthJanuary>1月</MonthJanuary>
  39. <MonthJuly>7月</MonthJuly>
  40. <MonthJune>6月</MonthJune>
  41. <MonthMarch>3月</MonthMarch>
  42. <MonthMay>5月</MonthMay>
  43. <MonthNovember>11月</MonthNovember>
  44. <MonthOctober>10月</MonthOctober>
  45. <MonthSeptember>9月</MonthSeptember>
  46. <NextPage>后页</NextPage>
  47. <OnePage>一页</OnePage>
  48. <Page>页</Page>
  49. <PageOf>of</PageOf>
  50. <PreviousPage>前页</PreviousPage>
  51. <PrintContinue>点击继续打印</PrintContinue>
  52. <PrintReport>打印报表</PrintReport>
  53. <PrintToPdf>PDF</PrintToPdf>
  54. <PrintToXps>打印到XPS</PrintToXps>
  55. <PrintWithoutPreview>直接打印</PrintWithoutPreview>
  56. <PrintWithPreview>打印预览</PrintWithPreview>
  57. <SaveReport>保存报表</SaveReport>
  58. <Subject>主题:</Subject>
  59. <TabItemContacts>联系方式</TabItemContacts>
  60. <TextComputer>电脑</TextComputer>
  61. <TextItemsRoot>根目录</TextItemsRoot>
  62. <TodayDate>今天</TodayDate>
  63. <WholeReport>整个报表</WholeReport>
  64. </A_WebViewer>
  65. <Adapters>
  66. <AdapterBusinessObjects>从业务对象中获取数据</AdapterBusinessObjects>
  67. <AdapterConnection>数据来源 {0}</AdapterConnection>
  68. <AdapterCrossTabDataSource>数据来自交叉表</AdapterCrossTabDataSource>
  69. <AdapterCsvFiles>从 CSV File 获取数据</AdapterCsvFiles>
  70. <AdapterDataTables>从 DataSet, DataTables 获取数据</AdapterDataTables>
  71. <AdapterDataViews>从 DataViews 获取数据</AdapterDataViews>
  72. <AdapterDB2Connection>从 IBM DB2 连接获取数据</AdapterDB2Connection>
  73. <AdapterDBaseFiles>从数据库文件获取数据</AdapterDBaseFiles>
  74. <AdapterFirebirdConnection>从 Firebird 连接获取数据</AdapterFirebirdConnection>
  75. <AdapterInformixConnection>数据来自Informix连接 </AdapterInformixConnection>
  76. <AdapterMySQLConnection>从 MySQL 连接获取数据</AdapterMySQLConnection>
  77. <AdapterOdbcConnection>从 ODBC 连接获取数据</AdapterOdbcConnection>
  78. <AdapterOleDbConnection>从 OLEDB 连接获取数据</AdapterOleDbConnection>
  79. <AdapterOracleConnection>从 Oracle 连接获取数据</AdapterOracleConnection>
  80. <AdapterOracleODPConnection>数据来自Oracle ODP.NET连接</AdapterOracleODPConnection>
  81. <AdapterPostgreSQLConnection>从 PostgreSQL 连接获取数据</AdapterPostgreSQLConnection>
  82. <AdapterSqlCeConnection>从 SQLCe 连接获取数据</AdapterSqlCeConnection>
  83. <AdapterSqlConnection>从 SQL 连接获取数据</AdapterSqlConnection>
  84. <AdapterSQLiteConnection>从 SQLite 连接获取数据</AdapterSQLiteConnection>
  85. <AdapterTeradataConnection>数据来自Teradata连接</AdapterTeradataConnection>
  86. <AdapterUniDirectConnection>Uni Direct数据库连接</AdapterUniDirectConnection>
  87. <AdapterUserSources>从用户源获取数据</AdapterUserSources>
  88. <AdapterVirtualSource>从其他数据源获取数据</AdapterVirtualSource>
  89. <AdapterVistaDBConnection>从 VistaDB 连接获取数据</AdapterVistaDBConnection>
  90. </Adapters>
  91. <BarCode>
  92. <Post>提交</Post>
  93. <TwoDimensional>二维的</TwoDimensional>
  94. </BarCode>
  95. <Buttons>
  96. <Add>添加</Add>
  97. <AddAllColumns>添加所有列</AddAllColumns>
  98. <Attach>连接</Attach>
  99. <Build>生成...</Build>
  100. <Buttons>按键</Buttons>
  101. <Cancel>取消(&amp;C)</Cancel>
  102. <Check>校验</Check>
  103. <Close>关闭</Close>
  104. <Delete>删除</Delete>
  105. <Design>设计</Design>
  106. <Down>向下</Down>
  107. <Duplicate>重复</Duplicate>
  108. <Export>导出</Export>
  109. <ForceDelete>强制删除</ForceDelete>
  110. <Help>帮助</Help>
  111. <Install>安装</Install>
  112. <LessOptions>减少选项</LessOptions>
  113. <LoadDataSet>加载数据集(*.data)</LoadDataSet>
  114. <More>更多</More>
  115. <MoreApps>更多应用</MoreApps>
  116. <MoreOptions>更多选项</MoreOptions>
  117. <MoveLeft>左移</MoveLeft>
  118. <MoveRight>右移</MoveRight>
  119. <MoveToResource>移至资源</MoveToResource>
  120. <No>否</No>
  121. <Ok>确定(&amp;O)</Ok>
  122. <Open>打开</Open>
  123. <Print>打印</Print>
  124. <Publish>发布</Publish>
  125. <QuickPrint>快速打印</QuickPrint>
  126. <Remove>移除</Remove>
  127. <RemoveAll>全部移除</RemoveAll>
  128. <Rename>重命名</Rename>
  129. <RestoreDefaults>恢复默认值</RestoreDefaults>
  130. <Reverse>倒转</Reverse>
  131. <Save>保存</Save>
  132. <SaveCopy>备份</SaveCopy>
  133. <SetAll>显示所有</SetAll>
  134. <ShowLess>显示减少</ShowLess>
  135. <ShowMore>显示增加</ShowMore>
  136. <ShowSpecific>显示 '{0}'</ShowSpecific>
  137. <Submit>提交</Submit>
  138. <Test>测试</Test>
  139. <Up>向上</Up>
  140. <Upgrade>升级</Upgrade>
  141. <UpgradeNow>现在升级</UpgradeNow>
  142. <Upload>上传</Upload>
  143. <Waiting>等待</Waiting>
  144. <Yes>是</Yes>
  145. </Buttons>
  146. <Chart>
  147. <AddCondition>添加条件(&amp;A)</AddCondition>
  148. <AddConstantLine>添加恒定线</AddConstantLine>
  149. <AddFilter>添加过滤(&amp;A)</AddFilter>
  150. <AddSeries>添加(&amp;A)</AddSeries>
  151. <AddStrip>添加长条</AddStrip>
  152. <AddTrendLine>添加趋势线</AddTrendLine>
  153. <Area>面积图</Area>
  154. <Axes>坐标</Axes>
  155. <AxisReverse>反转</AxisReverse>
  156. <AxisX>X 轴</AxisX>
  157. <AxisY>Y 轴</AxisY>
  158. <BoxAndWhisker>箱线</BoxAndWhisker>
  159. <Bubble>气泡图</Bubble>
  160. <Candlestick>烛台图</Candlestick>
  161. <ChartConditionsCollectionForm>条件</ChartConditionsCollectionForm>
  162. <ChartEditorForm>图表编辑器</ChartEditorForm>
  163. <ChartFiltersCollectionForm>过滤</ChartFiltersCollectionForm>
  164. <ChartType>图表类型</ChartType>
  165. <CheckBoxAutoRotation>自动旋转</CheckBoxAutoRotation>
  166. <ClusteredBar>簇状条形图
  167. </ClusteredBar>
  168. <ClusteredColumn>簇状柱形图</ClusteredColumn>
  169. <Common>通用类</Common>
  170. <ConstantLine>恒定线</ConstantLine>
  171. <ConstantLinesEditorForm>恒定线编辑器</ConstantLinesEditorForm>
  172. <DataColumns>数据列</DataColumns>
  173. <Doughnut>圆环图</Doughnut>
  174. <Financial>金融类</Financial>
  175. <FullStackedArea>全堆积面积图</FullStackedArea>
  176. <FullStackedBar>全堆积条形图</FullStackedBar>
  177. <FullStackedColumn>全堆积柱形图</FullStackedColumn>
  178. <FullStackedLine>全堆积折线图</FullStackedLine>
  179. <FullStackedSpline>全堆积曲线图</FullStackedSpline>
  180. <FullStackedSplineArea>全堆积曲线面积图</FullStackedSplineArea>
  181. <Funnel>漏斗图</Funnel>
  182. <FunnelWeightedSlices>漏斗加权切片</FunnelWeightedSlices>
  183. <Gantt>甘特图</Gantt>
  184. <GridInterlaced>隔行</GridInterlaced>
  185. <GridLines>网格线</GridLines>
  186. <Histogram>柱状图</Histogram>
  187. <LabelAlignment>对齐方式:</LabelAlignment>
  188. <LabelAlignmentHorizontal>水平:</LabelAlignmentHorizontal>
  189. <LabelAlignmentVertical>垂直:</LabelAlignmentVertical>
  190. <LabelAngle>角:</LabelAngle>
  191. <LabelArgumentDataColumn>数据列变量:</LabelArgumentDataColumn>
  192. <LabelAutoRotation>自动旋转:</LabelAutoRotation>
  193. <LabelCloseValueDataColumn>收盘值数据列:</LabelCloseValueDataColumn>
  194. <LabelEndValueDataColumn>成交值数据列:</LabelEndValueDataColumn>
  195. <LabelHighValueDataColumn>高点值数据列:</LabelHighValueDataColumn>
  196. <LabelHorizontal>水平:</LabelHorizontal>
  197. <LabelLowValueDataColumn>低点值数据列:</LabelLowValueDataColumn>
  198. <LabelMinorCount>Minor Count:</LabelMinorCount>
  199. <LabelOpenValueDataColumn>开盘值数据列:</LabelOpenValueDataColumn>
  200. <Labels>标签</Labels>
  201. <LabelsCenter>居中</LabelsCenter>
  202. <LabelSeriesName>Series 名称:</LabelSeriesName>
  203. <LabelsInside>之内</LabelsInside>
  204. <LabelsInsideBase>基点之内</LabelsInsideBase>
  205. <LabelsInsideEnd>顶点之内</LabelsInsideEnd>
  206. <LabelsNone>无</LabelsNone>
  207. <LabelsOutside>之外</LabelsOutside>
  208. <LabelsOutsideBase>基点之外</LabelsOutsideBase>
  209. <LabelsOutsideEnd>顶点之外</LabelsOutsideEnd>
  210. <LabelsStyleCategory>类别</LabelsStyleCategory>
  211. <LabelsStyleCategoryPercentOfTotal>类别 - 总额百分比</LabelsStyleCategoryPercentOfTotal>
  212. <LabelsStyleCategoryValue>类别 - 值</LabelsStyleCategoryValue>
  213. <LabelsStylePercentOfTotal>总额百分比</LabelsStylePercentOfTotal>
  214. <LabelsStyleValue>值</LabelsStyleValue>
  215. <LabelsTwoColumns>两栏</LabelsTwoColumns>
  216. <LabelTextAfter>文本之后:</LabelTextAfter>
  217. <LabelTextBefore>文本之前:</LabelTextBefore>
  218. <LabelTitleAlignment>对齐方式:</LabelTitleAlignment>
  219. <LabelValueDataColumn>数据列值:</LabelValueDataColumn>
  220. <LabelValueType>值类型:</LabelValueType>
  221. <LabelVertical>垂直:</LabelVertical>
  222. <LabelVisible>可见:</LabelVisible>
  223. <Legend>图例</Legend>
  224. <LegendSpacing>间距</LegendSpacing>
  225. <Line>折线图</Line>
  226. <ListOfValues>列列表</ListOfValues>
  227. <Marker>标记</Marker>
  228. <MoveConstantLineDown>下移恒定线</MoveConstantLineDown>
  229. <MoveConstantLineUp>上移恒定线</MoveConstantLineUp>
  230. <MoveSeriesDown>下移序列</MoveSeriesDown>
  231. <MoveSeriesUp>上移序列</MoveSeriesUp>
  232. <MoveStripDown>下移长条</MoveStripDown>
  233. <MoveStripUp>上移长条</MoveStripUp>
  234. <NoConditions>无条件</NoConditions>
  235. <NoFilters>无过滤</NoFilters>
  236. <Pareto>Pareto</Pareto>
  237. <Pictorial>图示</Pictorial>
  238. <Pie>饼图</Pie>
  239. <Radar>雷达图</Radar>
  240. <RadarArea>雷达面积图</RadarArea>
  241. <RadarColumn>雷达条形图</RadarColumn>
  242. <RadarLine>雷达线形图</RadarLine>
  243. <RadarPoint>雷达点状图</RadarPoint>
  244. <Range>范围图</Range>
  245. <RangeBar>范围柱状图</RangeBar>
  246. <RemoveCondition>移除条件(&amp;R)</RemoveCondition>
  247. <RemoveConstantLine>移除恒定线</RemoveConstantLine>
  248. <RemoveFilter>移除过滤(&amp;R)</RemoveFilter>
  249. <RemoveSeries>移除序列(&amp;R)</RemoveSeries>
  250. <RemoveStrip>移除长条</RemoveStrip>
  251. <RunChartWizard>运行图表 &amp;向导</RunChartWizard>
  252. <Scatter>矢量图</Scatter>
  253. <ScatterLine>矢量直线</ScatterLine>
  254. <ScatterSpline>矢量曲线</ScatterSpline>
  255. <Series>序列</Series>
  256. <SeriesColorsCollectionForm>序列颜色</SeriesColorsCollectionForm>
  257. <SeriesEditorForm>序列编辑器</SeriesEditorForm>
  258. <Serieses>序列</Serieses>
  259. <SparklinesArea>区域</SparklinesArea>
  260. <SparklinesColumn>列</SparklinesColumn>
  261. <SparklinesLine>行</SparklinesLine>
  262. <SparklinesWinLoss>赢 / 输</SparklinesWinLoss>
  263. <Spline>曲线图</Spline>
  264. <SplineArea>曲线面积图</SplineArea>
  265. <SplineRange>平滑曲边范围图</SplineRange>
  266. <StackedArea>堆积面积图</StackedArea>
  267. <StackedBar>堆积条形图</StackedBar>
  268. <StackedColumn>堆积柱形图</StackedColumn>
  269. <StackedLine>堆积折线图</StackedLine>
  270. <StackedSpline>堆积曲线图</StackedSpline>
  271. <StackedSplineArea>堆积曲线面积图</StackedSplineArea>
  272. <SteppedArea>阶梯面积图</SteppedArea>
  273. <SteppedLine>阶梯折线图</SteppedLine>
  274. <SteppedRange>阶梯范围图</SteppedRange>
  275. <Stock>股票图</Stock>
  276. <Strip>长条</Strip>
  277. <StripsEditorForm>长条编辑表单</StripsEditorForm>
  278. <Style>样式</Style>
  279. <Sunburst>射线图</Sunburst>
  280. <Treemap>树状图</Treemap>
  281. <TrendLinesEditorForm>趋势线编辑器</TrendLinesEditorForm>
  282. <Waterfall>瀑布图</Waterfall>
  283. </Chart>
  284. <CharterMapEditor>
  285. <Characters>字符</Characters>
  286. </CharterMapEditor>
  287. <ChartRibbon>
  288. <Axes>轴</Axes>
  289. <AxesArrowStyle>箭头样式</AxesArrowStyle>
  290. <AxesArrowStyleLines>直线</AxesArrowStyleLines>
  291. <AxesArrowStyleNone>无</AxesArrowStyleNone>
  292. <AxesArrowStyleTriangle>三角形</AxesArrowStyleTriangle>
  293. <AxesLabel>标签位置</AxesLabel>
  294. <AxesLabelsNone>无</AxesLabelsNone>
  295. <AxesLabelsOneLine>单线</AxesLabelsOneLine>
  296. <AxesLabelsTwoLines>双线</AxesLabelsTwoLines>
  297. <AxesReverseHorizontal>水平反转</AxesReverseHorizontal>
  298. <AxesReverseVertical>垂直反转</AxesReverseVertical>
  299. <AxesTicks>刻度</AxesTicks>
  300. <AxesTicksMajor>主刻度</AxesTicksMajor>
  301. <AxesTicksMinor>次刻度</AxesTicksMinor>
  302. <AxesTicksNone>无</AxesTicksNone>
  303. <AxesVisible>可见</AxesVisible>
  304. <AxesXAxis>X轴</AxesXAxis>
  305. <AxesXTopAxis>上X轴</AxesXTopAxis>
  306. <AxesYAxis>Y 轴</AxesYAxis>
  307. <AxesYRightAxis>右Y轴</AxesYRightAxis>
  308. <CenterLabels>中心</CenterLabels>
  309. <ChangeType>更改类型</ChangeType>
  310. <GridLines>网格线</GridLines>
  311. <GridLinesHorizontal>水平网格线</GridLinesHorizontal>
  312. <GridLinesVertical>垂直网格线</GridLinesVertical>
  313. <HorAlCenter>&lt;b&gt;中心叠加图例&lt;/b&gt;&lt;br&gt;在图表中心显示图例&lt;/br&gt;&lt;br&gt;不改变尺寸&lt;/br&gt;</HorAlCenter>
  314. <HorAlLeft>&lt;b&gt;左侧叠加图例&lt;/b&gt;&lt;br&gt;在图表左侧显示图例;&lt;/br&gt;&lt;br&gt;不改变尺寸;&lt;/br&gt;</HorAlLeft>
  315. <HorAlLeftOutside>&lt;b&gt;左侧显示图例&lt;/b&gt;&lt;br&gt;显示图例并左对齐&lt;/br&gt;</HorAlLeftOutside>
  316. <HorAlRight>&lt;b&gt;右侧叠加图层图例&lt;/b&gt;&lt;br&gt;在图表右侧显示图例&lt;/br&gt;&lt;br&gt;图表左侧显示图例&lt;/br&gt;</HorAlRight>
  317. <HorAlRightOutside>&lt;b&gt;右侧显示图例&lt;/b&gt;&lt;br&gt;显示图例并右对齐&lt;/br&gt;</HorAlRightOutside>
  318. <HorizontalMajor>&lt;b&gt;主要的&lt;/b&gt;&lt;br&gt;为主单位显示水平网格线&lt;/br&gt;</HorizontalMajor>
  319. <HorizontalMajorMinor>&lt;b&gt;主要&amp;&amp;次要网格线&lt;/b&gt;&lt;br&gt;为主单位和次单位显示水平网格线&lt;/br&gt;</HorizontalMajorMinor>
  320. <HorizontalMinor>&lt;b&gt;次要&lt;/b&gt;&lt;br&gt;为次要单位显示水平网格线&lt;/br&gt;</HorizontalMinor>
  321. <HorizontalNone>&lt;b&gt;无&lt;/b&gt;&lt;br&gt;不显示水平网格线&lt;/br&gt;</HorizontalNone>
  322. <InsideBaseLabels>内侧面</InsideBaseLabels>
  323. <InsideEndLabels>内侧端</InsideEndLabels>
  324. <Labels>系列标签</Labels>
  325. <Legend>图例</Legend>
  326. <LegendHorizontalAlignment>水平对齐</LegendHorizontalAlignment>
  327. <LegendMarker>标记</LegendMarker>
  328. <LegendMarkerAlignmentLeft>左对齐</LegendMarkerAlignmentLeft>
  329. <LegendMarkerAlignmentRight>右对齐</LegendMarkerAlignmentRight>
  330. <LegendMarkerVisible>可见</LegendMarkerVisible>
  331. <LegendVerticalAlignment>垂直对齐</LegendVerticalAlignment>
  332. <LegendVisible>可见</LegendVisible>
  333. <NoneLabels>无</NoneLabels>
  334. <OutsideBaseLabels>外侧面</OutsideBaseLabels>
  335. <OutsideEndLabels>外侧端</OutsideEndLabels>
  336. <OutsideLabels>外侧</OutsideLabels>
  337. <ribbonBarAxis>轴</ribbonBarAxis>
  338. <ribbonBarChartStyles>图表样式</ribbonBarChartStyles>
  339. <ribbonBarChartType>图表类型</ribbonBarChartType>
  340. <ribbonBarLabels>标签</ribbonBarLabels>
  341. <ribbonBarLegend>图例</ribbonBarLegend>
  342. <Style>更改样式</Style>
  343. <TwoColumnsPieLabels>两列</TwoColumnsPieLabels>
  344. <VertAlBottom>&lt;b&gt;底部叠加图例&lt;/b&gt;&lt;br&gt;在图表底部显示图例&lt;/br&gt;&lt;br&gt;不改变尺寸&lt;/br&gt;</VertAlBottom>
  345. <VertAlBottomOutside>&lt;b&gt;底部显示图例&lt;/b&gt;&lt;br&gt;显示图例并底边对齐&lt;/br&gt;</VertAlBottomOutside>
  346. <VertAlCenter>&lt;b&gt;中心叠加图例&lt;/b&gt;&lt;br&gt;图表中心显示图例&lt;/br&gt;&lt;br&gt;不改变尺寸&lt;/br&gt;</VertAlCenter>
  347. <VertAlTop>&lt;b&gt;顶部叠加图例&lt;/b&gt;&lt;br&gt;在图表顶部显示图例&lt;/br&gt;&lt;br&gt;without resizing&lt;/br&gt;</VertAlTop>
  348. <VertAlTopOutside>&lt;b&gt;顶部显示图例&lt;/b&gt;&lt;br&gt;显示图例并顶部对齐&lt;/br&gt;</VertAlTopOutside>
  349. <VerticalMajor>&lt;b&gt;主要&lt;/b&gt;&lt;br&gt;为主单位显示垂直网格线&lt;/br&gt;</VerticalMajor>
  350. <VerticalMajorMinor>&lt;b&gt;主 &amp;&amp; 次网格线&lt;/b&gt;&lt;br&gt;为主次单为显示垂直网格线&lt;/br&gt;</VerticalMajorMinor>
  351. <VerticalMinor>&lt;b&gt;Min次要&lt;/b&gt;&lt;br&gt;为次单位显示垂直网格线&lt;/br&gt;</VerticalMinor>
  352. <VerticalNone>&lt;b&gt;无&lt;/b&gt;&lt;br&gt;不显示垂直网格线&lt;/br&gt;</VerticalNone>
  353. </ChartRibbon>
  354. <Cloud>
  355. <AcceptTermsAndPrivacyPolicy>我已阅读并接受 {0} 和 {1}</AcceptTermsAndPrivacyPolicy>
  356. <Account>账户</Account>
  357. <AccountSettings>帐户设置</AccountSettings>
  358. <AddAPlace>增加一个位置</AddAPlace>
  359. <AreYouSureYouWantDeleteReport>您确定要从磁盘中删除"{0}" 报告吗?</AreYouSureYouWantDeleteReport>
  360. <Authorize>授权</Authorize>
  361. <AuthorizeWithLicenseKey>许可证密钥授权</AuthorizeWithLicenseKey>
  362. <ButtonChangePassword>更改密码</ButtonChangePassword>
  363. <ButtonDeleteAll>全部删除</ButtonDeleteAll>
  364. <ButtonDesign>设计报表</ButtonDesign>
  365. <ButtonLater>请稍后</ButtonLater>
  366. <ButtonLogInWith>登录 {0}</ButtonLogInWith>
  367. <ButtonLogout>注销</ButtonLogout>
  368. <ButtonPublish>发布</ButtonPublish>
  369. <ButtonPurchase>购买</ButtonPurchase>
  370. <ButtonRecover>恢复</ButtonRecover>
  371. <ButtonRenew>更新</ButtonRenew>
  372. <ButtonResendEmail>重发邮件</ButtonResendEmail>
  373. <ButtonResetPassword>重置密码</ButtonResetPassword>
  374. <ButtonRun>运行</ButtonRun>
  375. <ButtonShare>分享</ButtonShare>
  376. <ButtonSignUp>注册</ButtonSignUp>
  377. <ButtonSignUpWith>注册{0}</ButtonSignUpWith>
  378. <ButtonSkip>跳过</ButtonSkip>
  379. <ButtonView>视图</ButtonView>
  380. <ButtonWhereUsed>用于何处?</ButtonWhereUsed>
  381. <Cancel>取消</Cancel>
  382. <CheckBoxMoveToRecycleBin>移至回收站</CheckBoxMoveToRecycleBin>
  383. <CheckBoxRememberMe>记住账号</CheckBoxRememberMe>
  384. <CheckForUpdate>检查更新</CheckForUpdate>
  385. <Cloud>云端</Cloud>
  386. <Collection>集合</Collection>
  387. <Create>创建</Create>
  388. <CreateError>创建报表时出错!</CreateError>
  389. <CreateNewCollection>创建新集合</CreateNewCollection>
  390. <CreatingReport>创建报表...</CreatingReport>
  391. <DashboardWindowTitleNew>新仪表盘</DashboardWindowTitleNew>
  392. <DeleteFile>删除文档</DeleteFile>
  393. <DoNotAskMe>不再询问</DoNotAskMe>
  394. <ExecutionError>执行错误</ExecutionError>
  395. <ExpiredDate>日期已失效</ExpiredDate>
  396. <FileStorageWindowTitleEdit>编辑文件存储</FileStorageWindowTitleEdit>
  397. <FileStorageWindowTitleNew>新文件存储</FileStorageWindowTitleNew>
  398. <FolderWindowTitleEdit>编辑文件夹</FolderWindowTitleEdit>
  399. <FolderWindowTitleNew>新文件夹</FolderWindowTitleNew>
  400. <ForExample>例如</ForExample>
  401. <GroupBoxAttachedItems>附加项目</GroupBoxAttachedItems>
  402. <HyperlinkAgreeToTerms>注册即表示您同意条款</HyperlinkAgreeToTerms>
  403. <HyperlinkAlreadyHaveAccount>已有账户</HyperlinkAlreadyHaveAccount>
  404. <HyperlinkForgotPassword>忘记密码</HyperlinkForgotPassword>
  405. <HyperlinkHavePassword>有密码</HyperlinkHavePassword>
  406. <HyperlinkRegisterAccount>注册免费账户</HyperlinkRegisterAccount>
  407. <InstallSamples>示例安装</InstallSamples>
  408. <LabelAddCloudFolder>连接您的Stimulsoft云文件夹与报表,仪表盘</LabelAddCloudFolder>
  409. <LabelAddFolder>添加含报表和仪表盘的本地文件夹</LabelAddFolder>
  410. <labelCollectionName>集合名称:</labelCollectionName>
  411. <LabelCreated>创建:</LabelCreated>
  412. <LabelCreateFolder>创建一个可以放置其他项目的新类别</LabelCreateFolder>
  413. <LabelCreateNewDashboard>创建新仪表盘</LabelCreateNewDashboard>
  414. <LabelCreateReportTemplate>创建报告模板</LabelCreateReportTemplate>
  415. <LabelCurrentPassword>当前密码:</LabelCurrentPassword>
  416. <LabelDataFile>数据文件:</LabelDataFile>
  417. <LabelDataUrl>数据网址:</LabelDataUrl>
  418. <LabelEndDate>结束日期:</LabelEndDate>
  419. <labelFileName>文档名称:</labelFileName>
  420. <LabelForeground>前景:</LabelForeground>
  421. <LabelFromReport>来自报告</LabelFromReport>
  422. <LabelFromReportCode>来自报告 (define in code)</LabelFromReportCode>
  423. <LabelLastLogin>最后一次登录:</LabelLastLogin>
  424. <LabelLastTime>最后一次:</LabelLastTime>
  425. <LabelModified>修改:</LabelModified>
  426. <LabelNewPassword>新密码:</LabelNewPassword>
  427. <LabelNextTime>下一次:</LabelNextTime>
  428. <labelPassword>密码:</labelPassword>
  429. <LabelPermission>许可:</LabelPermission>
  430. <LabelPicture>图片:</LabelPicture>
  431. <LabelRenderedReport>已渲染的报表</LabelRenderedReport>
  432. <LabelResponseAsFile>响应为文件</LabelResponseAsFile>
  433. <LabelResultType>结果类型:</LabelResultType>
  434. <LabelSeparateReport>单独的报表(和脚本)文件</LabelSeparateReport>
  435. <LabelShowReport>显示报告:</LabelShowReport>
  436. <labelUserName>用户名:</labelUserName>
  437. <License>许可证</License>
  438. <LicenseInformation>许可证信息</LicenseInformation>
  439. <LicenseKey>许可证密钥</LicenseKey>
  440. <Login>登陆</Login>
  441. <MyTeam>我的团队</MyTeam>
  442. <NofM>{0}: {2} 的 {1}</NofM>
  443. <Open>打开</Open>
  444. <OpenFile>打开文档</OpenFile>
  445. <OperationCreate>创建 '{0}'</OperationCreate>
  446. <OperationDelete>从服务器上删除 '{0}' </OperationDelete>
  447. <OperationDownload>从服务器下载</OperationDownload>
  448. <OperationGetList>从服务器获得文档列表</OperationGetList>
  449. <OperationLogin>登陆服务器</OperationLogin>
  450. <OperationRename>重命名 '{0}' 到 '{1}'</OperationRename>
  451. <OperationUpload>上传 '{0}' 到服务器</OperationUpload>
  452. <page>页面</page>
  453. <Platforms>平台</Platforms>
  454. <Port>端口</Port>
  455. <PrivacyPolicy>隐私</PrivacyPolicy>
  456. <Products>产品</Products>
  457. <Proxy>代理</Proxy>
  458. <PublishMessage>要发布此报告,您应将其提交至我们的服务器publish.stimulsoft.com</PublishMessage>
  459. <questionOpenThisFile>你确定要打开 '{0}'项吗 ?</questionOpenThisFile>
  460. <questionOverrideItem>你真的想要覆盖 '{0}' 项吗?</questionOverrideItem>
  461. <questionRemoveItem>你确定要移除 '{0}'项吗 ?</questionRemoveItem>
  462. <RefreshList>刷新列表</RefreshList>
  463. <ReportDocumentFormatNotRecognized>“{ 0 }”项目的格式不能被识别为被渲染的报表格式!</ReportDocumentFormatNotRecognized>
  464. <ReportTemplateFormatNotRecognized>“{ 0 }”项目的格式不能被识别为报告模板格式!</ReportTemplateFormatNotRecognized>
  465. <RequestChangesWhenSavingToCloud>保存到云端时请求更改</RequestChangesWhenSavingToCloud>
  466. <RibbonButtonAddRole>增加角色</RibbonButtonAddRole>
  467. <RibbonButtonAddUser>增加用户</RibbonButtonAddUser>
  468. <RibbonButtonAddWorkspace>增加工作区</RibbonButtonAddWorkspace>
  469. <RibbonButtonFolder>文件夹</RibbonButtonFolder>
  470. <RibbonTabUsers>用户</RibbonTabUsers>
  471. <Root>根</Root>
  472. <RootFolder>根文件夹</RootFolder>
  473. <Save>保存</Save>
  474. <SaveAccountSettings>保存帐户设置</SaveAccountSettings>
  475. <SaveAsType>保存类型</SaveAsType>
  476. <SaveFile>保存文档</SaveFile>
  477. <SavingToStimulsoftCloudPleaseWait>正在将该报告保存至 Stimulsoft 云端,请耐心等待!</SavingToStimulsoftCloudPleaseWait>
  478. <SearchForOnlineTemplates>搜索在线模板</SearchForOnlineTemplates>
  479. <ShareWindowTitleNew>分享</ShareWindowTitleNew>
  480. <ShowAllFiles>显示所有文档</ShowAllFiles>
  481. <ShowNotificationMessages>显示通知信息</ShowNotificationMessages>
  482. <Subscriptions>技术服务</Subscriptions>
  483. <TabItemEmbedCode>嵌入代码</TabItemEmbedCode>
  484. <TabItemQRCode>二维码</TabItemQRCode>
  485. <TabItemShare>分享链接</TabItemShare>
  486. <Team>团队</Team>
  487. <TermsOfUse>条款</TermsOfUse>
  488. <TextActivated>激活</TextActivated>
  489. <TextActivationDate>激活日期</TextActivationDate>
  490. <TextDelete>删除</TextDelete>
  491. <TextDeletingItems>删除项目...</TextDeletingItems>
  492. <TextDescriptionChanges>请键入更改说明:</TextDescriptionChanges>
  493. <TextFirstName>名字</TextFirstName>
  494. <TextFromTo>从 {0} 到{1} (Total - {2})</TextFromTo>
  495. <TextItemsWorkspace>工作区</TextItemsWorkspace>
  496. <TextLastName>姓</TextLastName>
  497. <TextModify>修改</TextModify>
  498. <TextNoFavoriteFiles>无收藏文件夹</TextNoFavoriteFiles>
  499. <TextNoFiles>无文件夹</TextNoFiles>
  500. <TextNoNotifications>没有通知</TextNoNotifications>
  501. <TextNoRecentFiles>无最近文件夹</TextNoRecentFiles>
  502. <TextOwner>所有者</TextOwner>
  503. <TextProfile>简况</TextProfile>
  504. <TextReports>报表</TextReports>
  505. <TextRestoringItems>恢复项目...</TextRestoringItems>
  506. <TextRole>角色</TextRole>
  507. <TextRun>运行</TextRun>
  508. <TextUser>用户</TextUser>
  509. <TextUserName>用户名 (Email)</TextUserName>
  510. <TimeHoursAgoFive>五小时前, {0:t}</TimeHoursAgoFive>
  511. <TimeHoursAgoFour>四小时前, {0:t}</TimeHoursAgoFour>
  512. <TimeHoursAgoOne>一小时前, {0:t}</TimeHoursAgoOne>
  513. <TimeHoursAgoThree>三小时前, {0:t}</TimeHoursAgoThree>
  514. <TimeHoursAgoTwo>两小时前, {0:t}</TimeHoursAgoTwo>
  515. <TimeMinutesAgoFive>五分钟前, {0:t}</TimeMinutesAgoFive>
  516. <TimeMinutesAgoFour>四分钟前, {0:t}</TimeMinutesAgoFour>
  517. <TimeMinutesAgoLessOne>不到一分钟前</TimeMinutesAgoLessOne>
  518. <TimeMinutesAgoN>{0} 分钟前, {1:t}</TimeMinutesAgoN>
  519. <TimeMinutesAgoOne>一分钟前o, {0:t}</TimeMinutesAgoOne>
  520. <TimeMinutesAgoThree>三分钟前, {0:t}</TimeMinutesAgoThree>
  521. <TimeMinutesAgoTwo>两分钟前, {0:t}</TimeMinutesAgoTwo>
  522. <TimeToday>今天, {0:t}</TimeToday>
  523. <TimeYesterday>昨天, {0:t}</TimeYesterday>
  524. <ToolTipAddRole>在工作区创建新角色.</ToolTipAddRole>
  525. <ToolTipAddUser>在所选角色中创建新用户.</ToolTipAddUser>
  526. <ToolTipAspNet>将所选报表发送到ASP.NET应用程序.</ToolTipAspNet>
  527. <ToolTipAspNetMvc>将所选报表发送到ASP.NET MVC应用程序.</ToolTipAspNetMvc>
  528. <ToolTipAttach>将项目附加到所选报表.</ToolTipAttach>
  529. <ToolTipCreate>新建项目.</ToolTipCreate>
  530. <ToolTipDelete>删除所选项目.</ToolTipDelete>
  531. <ToolTipDeleted>显示已删除的项目</ToolTipDeleted>
  532. <ToolTipDownload>下载所选项目.</ToolTipDownload>
  533. <ToolTipEdit>编辑所选项目.</ToolTipEdit>
  534. <ToolTipGridMode>列表显示</ToolTipGridMode>
  535. <ToolTipInfo>查看详情</ToolTipInfo>
  536. <ToolTipJs>将所选报表发布为HTML页面</ToolTipJs>
  537. <ToolTipPublish>准备即将部署在应用程序中的所选报表.</ToolTipPublish>
  538. <ToolTipRecover>恢复所选项目.</ToolTipRecover>
  539. <ToolTipRunWithoutPreview>无需预览渲染所选报表</ToolTipRunWithoutPreview>
  540. <ToolTipShare>分享所选文件.</ToolTipShare>
  541. <ToolTipSort>给选项排序</ToolTipSort>
  542. <ToolTipThumbnailMode>缩略图视图</ToolTipThumbnailMode>
  543. <ToolTipViewFile>显示所选文件.</ToolTipViewFile>
  544. <ToolTipViewReport>在查看器中显示所选报表.</ToolTipViewReport>
  545. <WeDidntFindAnything>我们在这里找不到任何要展示的东西.</WeDidntFindAnything>
  546. <WindowDescriptionDelete>您确定要删除所选项目吗?</WindowDescriptionDelete>
  547. <WindowDescriptionRecover>所选项目将从回收站中恢复.</WindowDescriptionRecover>
  548. <WindowTitleDelete>删除项目</WindowTitleDelete>
  549. <WindowTitleForgotPassword>忘记密码</WindowTitleForgotPassword>
  550. <WindowTitleLogin>登录</WindowTitleLogin>
  551. <WindowTitleRecover>恢复项目</WindowTitleRecover>
  552. <WindowTitleRoleEdit>编辑角色</WindowTitleRoleEdit>
  553. <WindowTitleRoleNew>新建角色</WindowTitleRoleNew>
  554. <WindowTitleSignUp>注册</WindowTitleSignUp>
  555. <WindowTitleUserEdit>编辑用户</WindowTitleUserEdit>
  556. <WindowTitleUserNew>新建用户</WindowTitleUserNew>
  557. <WindowTitleWorkspaceEdit>编辑工作区</WindowTitleWorkspaceEdit>
  558. <WindowTitleWorkspaceNew>新建工作区</WindowTitleWorkspaceNew>
  559. <WizardBlankReportDescription>新建空白报表</WizardBlankReportDescription>
  560. <WizardExcelDescription>使用Excel数据新建报表.</WizardExcelDescription>
  561. <WizardJsonDescription>使用JSON数据新建报表.</WizardJsonDescription>
  562. <WizardPrivateShare>禁止访问</WizardPrivateShare>
  563. <WizardPrivateShareDescription>对项目的外部访问受到限制.</WizardPrivateShareDescription>
  564. <WizardPublicShare>公共访问</WizardPublicShare>
  565. <WizardPublicShareDescription>任何未授权用户的外部访问.</WizardPublicShareDescription>
  566. <WizardRegisteredShare>授权访问</WizardRegisteredShare>
  567. <WizardRegisteredShareDescription>仅对任何工作区的注册用户进行外部访问.</WizardRegisteredShareDescription>
  568. <WizardXmlDescription>使用XML数据创建报表.</WizardXmlDescription>
  569. </Cloud>
  570. <Components>
  571. <StiBarCode>条形码</StiBarCode>
  572. <StiChart>图表</StiChart>
  573. <StiCheckBox>复选框</StiCheckBox>
  574. <StiChildBand>子级区</StiChildBand>
  575. <StiClone>克隆</StiClone>
  576. <StiColumnFooterBand>栏尾</StiColumnFooterBand>
  577. <StiColumnHeaderBand>栏首</StiColumnHeaderBand>
  578. <StiComboBox>组合框</StiComboBox>
  579. <StiComponent>组件</StiComponent>
  580. <StiContainer>容器</StiContainer>
  581. <StiContourText>交互式轮廓文本</StiContourText>
  582. <StiCrossColumn>交叉-列</StiCrossColumn>
  583. <StiCrossColumnTotal>交叉-列合计</StiCrossColumnTotal>
  584. <StiCrossDataBand>交叉-数据区</StiCrossDataBand>
  585. <StiCrossFooterBand>交叉-页脚</StiCrossFooterBand>
  586. <StiCrossGroupFooterBand>交叉-分组页脚</StiCrossGroupFooterBand>
  587. <StiCrossGroupHeaderBand>交叉-分组页眉</StiCrossGroupHeaderBand>
  588. <StiCrossHeaderBand>交叉-页眉</StiCrossHeaderBand>
  589. <StiCrossRow>交叉-行</StiCrossRow>
  590. <StiCrossRowTotal>交叉-行合计</StiCrossRowTotal>
  591. <StiCrossSummary>交叉-合计</StiCrossSummary>
  592. <StiCrossSummaryHeader>交叉汇总头</StiCrossSummaryHeader>
  593. <StiCrossTab>交叉-Tab</StiCrossTab>
  594. <StiCrossTitle>交叉标题</StiCrossTitle>
  595. <StiDashboard>仪表盘</StiDashboard>
  596. <StiDataBand>数据区</StiDataBand>
  597. <StiDatePicker>日期选择器</StiDatePicker>
  598. <StiEmptyBand>空白区</StiEmptyBand>
  599. <StiFooterBand>页脚</StiFooterBand>
  600. <StiGauge>仪表</StiGauge>
  601. <StiGroupFooterBand>分组页脚</StiGroupFooterBand>
  602. <StiGroupHeaderBand>分组页眉</StiGroupHeaderBand>
  603. <StiHeaderBand>页眉</StiHeaderBand>
  604. <StiHierarchicalBand>分级区</StiHierarchicalBand>
  605. <StiHorizontalLinePrimitive>横线</StiHorizontalLinePrimitive>
  606. <StiImage>图片</StiImage>
  607. <StiIndicator>指示符</StiIndicator>
  608. <StiListBox>列表框</StiListBox>
  609. <StiMap>地图</StiMap>
  610. <StiOnlineMap>在线地图</StiOnlineMap>
  611. <StiOverlayBand>覆盖</StiOverlayBand>
  612. <StiPage>页</StiPage>
  613. <StiPageFooterBand>页脚</StiPageFooterBand>
  614. <StiPageHeaderBand>页眉</StiPageHeaderBand>
  615. <StiPanel>面板</StiPanel>
  616. <StiPivotColumn>关键列</StiPivotColumn>
  617. <StiPivotRow>关键行</StiPivotRow>
  618. <StiPivotSummary>关键总结</StiPivotSummary>
  619. <StiPivotTable>关键表格</StiPivotTable>
  620. <StiProgress>进程</StiProgress>
  621. <StiRectanglePrimitive>矩形</StiRectanglePrimitive>
  622. <StiRegionMap>区域地图</StiRegionMap>
  623. <StiReport>报表</StiReport>
  624. <StiReportSummaryBand>报表合计区</StiReportSummaryBand>
  625. <StiReportTitleBand>报表标题区</StiReportTitleBand>
  626. <StiRichText>富文本</StiRichText>
  627. <StiRoundedRectanglePrimitive>圆角矩形</StiRoundedRectanglePrimitive>
  628. <StiShape>形状</StiShape>
  629. <StiSparkline> 火花谱线</StiSparkline>
  630. <StiSubReport>子报表</StiSubReport>
  631. <StiSystemText>系统文本</StiSystemText>
  632. <StiTable>表格</StiTable>
  633. <StiTableOfContents> 目录 </StiTableOfContents>
  634. <StiText>文本</StiText>
  635. <StiTextInCells>单元格文本</StiTextInCells>
  636. <StiTreeView>树视图</StiTreeView>
  637. <StiTreeViewBox>树视图框</StiTreeViewBox>
  638. <StiVerticalLinePrimitive>竖线</StiVerticalLinePrimitive>
  639. <StiWinControl>Windows 控件</StiWinControl>
  640. <StiZipCode>邮政编码</StiZipCode>
  641. </Components>
  642. <Dashboard>
  643. <AddRange>添加范围</AddRange>
  644. <AfterGroupingData>分组数据后应用</AfterGroupingData>
  645. <AllowUserDrillDown>允许用户下行查看</AllowUserDrillDown>
  646. <AllowUserFiltering>允许用户筛选</AllowUserFiltering>
  647. <AllowUserSorting>允许用户排序</AllowUserSorting>
  648. <Blank>(空白)</Blank>
  649. <Blanks>(Blanks)</Blanks>
  650. <BooleanFilters>布尔过滤器</BooleanFilters>
  651. <CannotLoadDashboard>无法使用仪表盘加载报表.</CannotLoadDashboard>
  652. <ChangeChartType>更改图表类型</ChangeChartType>
  653. <ChangeMapType>更改地图类型</ChangeMapType>
  654. <ClearAllFormatting>清除所有格式</ClearAllFormatting>
  655. <ClearFilterFrom>从 '{0}'清除过滤器</ClearFilterFrom>
  656. <ColorScale>色标</ColorScale>
  657. <ColumnInteractions>纵列交互</ColumnInteractions>
  658. <CustomFilter>自定义 &amp;过滤器...</CustomFilter>
  659. <DashboardsNotSupportedIntheWPFDesigner>WPF设计器不支持仪表板.</DashboardsNotSupportedIntheWPFDesigner>
  660. <DataBars>数据条</DataBars>
  661. <DataFilterGrouping>此操作仅用于对不同的列进行分组.</DataFilterGrouping>
  662. <DataNotDefined>数据未定义</DataNotDefined>
  663. <DateFilters>日期过滤器</DateFilters>
  664. <Dimension>维</Dimension>
  665. <Dimensions>维</Dimensions>
  666. <DragDropData>拖动 &amp; 丢弃数据</DragDropData>
  667. <DragDropDataFromDictionary>拖&amp;从字典中删除数据</DragDropDataFromDictionary>
  668. <DrillDown>下行</DrillDown>
  669. <DrillDownFiltered>向下过滤</DrillDownFiltered>
  670. <DrillDownSelected>下行选择</DrillDownSelected>
  671. <DrillUp>上行</DrillUp>
  672. <DuplicateField>重复字段</DuplicateField>
  673. <EditExpression>编辑表达式</EditExpression>
  674. <EditField>编辑字段</EditField>
  675. <EmptyDashboardFooter>拖 &amp; 从工具箱中删除组件或从字典中删除数据</EmptyDashboardFooter>
  676. <EmptyDashboardHeader>仪表盘为空</EmptyDashboardHeader>
  677. <FieldInteractions>字段交互</FieldInteractions>
  678. <FieldTypeRestrictionHint>只能使用 '{0}' 类型字段!</FieldTypeRestrictionHint>
  679. <FirstLastPoints>第一/最后一点</FirstLastPoints>
  680. <FirstRowIndex>第一行索引</FirstRowIndex>
  681. <FullRowSelect>全行选择</FullRowSelect>
  682. <HighLowPoints>高 / 低点</HighLowPoints>
  683. <ImageNotSpecified>未指定图像</ImageNotSpecified>
  684. <Indicator>指示器</Indicator>
  685. <InitialValue>初始值</InitialValue>
  686. <LimitRows>跳过和限制行</LimitRows>
  687. <Measure>测量</Measure>
  688. <Measures>测量</Measures>
  689. <NewDimension>新尺寸</NewDimension>
  690. <NewField>新领域</NewField>
  691. <NewMeasure>新测量</NewMeasure>
  692. <NoRanges>没有范围</NoRanges>
  693. <NoResult>没有结果</NoResult>
  694. <NSelected>{0} 选择</NSelected>
  695. <Nulls>(Nulls)</Nulls>
  696. <NumberFilters>数字过滤器</NumberFilters>
  697. <ParentElement>父元素</ParentElement>
  698. <RangeMode>范围模式</RangeMode>
  699. <RangeType>范围类型</RangeType>
  700. <RemoveActions>R&amp;删除动作</RemoveActions>
  701. <RemoveAllFields>删除所有字段</RemoveAllFields>
  702. <RemoveField>删除字段</RemoveField>
  703. <RemoveMobileSurface>Remove Mobile Surface</RemoveMobileSurface>
  704. <ReplaceValues>替换值</ReplaceValues>
  705. <ReportSnapshot>报告快照</ReportSnapshot>
  706. <RowsCount>行数</RowsCount>
  707. <RunFieldsEditor>运行字段编辑器</RunFieldsEditor>
  708. <RunFieldsEditorInfo>运行字段编辑器来更改每个表纵列的交互。</RunFieldsEditorInfo>
  709. <SelectAll>(Select &amp;All)</SelectAll>
  710. <ShowAllValue>显示 (All)值</ShowAllValue>
  711. <ShowAsPercentages>显示为百分比</ShowAsPercentages>
  712. <ShowBlanks>显示空白 </ShowBlanks>
  713. <SkipFirstRows>跳过第一行</SkipFirstRows>
  714. <SortAZ>从A到Z排序</SortAZ>
  715. <SortLargestToSmallest>从最大到最小排序</SortLargestToSmallest>
  716. <SortNewestToOldest>从最新到最旧排序</SortNewestToOldest>
  717. <SortOldestToNewest>从最旧到最新排序</SortOldestToNewest>
  718. <SortSmallestToLargest>从最小到最大排序</SortSmallestToLargest>
  719. <SortZA>从Z到A排序</SortZA>
  720. <Sparklines>走势图</Sparklines>
  721. <StringFilters>字符串筛选器</StringFilters>
  722. <TransformationHint>单击表标题去应用排序,过滤或更改数据。此转换仅适用于此数据项目。</TransformationHint>
  723. <Trend>趋向</Trend>
  724. <ViewEditCompilationNotice>您不能编辑 “Report.CalculationMode” 属性设置为 “Compilation” 的报表。请将该属性设置为“Interpretation”</ViewEditCompilationNotice>
  725. <ViewModeDesktop>桌面端</ViewModeDesktop>
  726. <ViewModeMobile>移动端</ViewModeMobile>
  727. </Dashboard>
  728. <Database>
  729. <Connection>连接</Connection>
  730. <Database>{0}连接</Database>
  731. <DatabaseDB2>IBM DB2 连接</DatabaseDB2>
  732. <DatabaseFirebird>Firebird 连接</DatabaseFirebird>
  733. <DatabaseInformix>Informix连接</DatabaseInformix>
  734. <DatabaseJson>JSON数据</DatabaseJson>
  735. <DatabaseMySQL>MySQL 连接</DatabaseMySQL>
  736. <DatabaseOdbc>ODBC 连接</DatabaseOdbc>
  737. <DatabaseOleDb>OLE DB 连接</DatabaseOleDb>
  738. <DatabaseOracle>Oracle 连接</DatabaseOracle>
  739. <DatabaseOracleODP>Oracle ODP.NET连接</DatabaseOracleODP>
  740. <DatabasePostgreSQL>PostgreSQL 连接</DatabasePostgreSQL>
  741. <DatabaseSql>SQL 连接</DatabaseSql>
  742. <DatabaseSqlCe>SQLServerCE 连接</DatabaseSqlCe>
  743. <DatabaseSQLite>SQLite连接</DatabaseSQLite>
  744. <DatabaseTeradata>Teradata连接</DatabaseTeradata>
  745. <DatabaseUniDirect>Uni直接连接</DatabaseUniDirect>
  746. <DatabaseVistaDB>VistaDB 连接</DatabaseVistaDB>
  747. <DatabaseXml>Xml 数据</DatabaseXml>
  748. </Database>
  749. <DatePickerRanges>
  750. <CurrentMonth>本月</CurrentMonth>
  751. <CurrentQuarter>本季度</CurrentQuarter>
  752. <CurrentWeek>本周</CurrentWeek>
  753. <CurrentYear>本年</CurrentYear>
  754. <FirstQuarter>第一季度</FirstQuarter>
  755. <FourthQuarter>第四季度</FourthQuarter>
  756. <Index>指数</Index>
  757. <Last14Days>最近14天</Last14Days>
  758. <Last30Days>最近30天</Last30Days>
  759. <Last7Days>最近7天</Last7Days>
  760. <MonthToDate>本月至今</MonthToDate>
  761. <NextMonth>下月</NextMonth>
  762. <NextQuarter>下季度</NextQuarter>
  763. <NextWeek>下周</NextWeek>
  764. <NextYear>下年</NextYear>
  765. <PreviousMonth>上月</PreviousMonth>
  766. <PreviousQuarter>上季度</PreviousQuarter>
  767. <PreviousWeek>上周</PreviousWeek>
  768. <PreviousYear>上年</PreviousYear>
  769. <Quarter>季度</Quarter>
  770. <QuarterToDate>本季度至今</QuarterToDate>
  771. <SecondQuarter>第二季度</SecondQuarter>
  772. <ThirdQuarter>第三季度</ThirdQuarter>
  773. <Today>今日</Today>
  774. <Tomorrow>明日</Tomorrow>
  775. <WeekToDate>本周至今</WeekToDate>
  776. <Year>年</Year>
  777. <YearToDate>本年至今</YearToDate>
  778. <Yesterday>昨天</Yesterday>
  779. </DatePickerRanges>
  780. <DesignerFx>
  781. <AlreadyExists>'{0}' 已存在.</AlreadyExists>
  782. <CanNotLoadThisReportTemplate>无法加载此报表模板.</CanNotLoadThisReportTemplate>
  783. <CloseDataSourceEditor>你想要关闭数据源编辑器吗?</CloseDataSourceEditor>
  784. <CloseEditor>你想关闭编辑器吗?</CloseEditor>
  785. <CompilingReport>编译报表</CompilingReport>
  786. <Connecting>连接到服务器</Connecting>
  787. <ConnectionError>连接错误</ConnectionError>
  788. <ConnectionSuccessfull>连接成功</ConnectionSuccessfull>
  789. <Continue>继续</Continue>
  790. <DecryptionError>解密错误: 密码错误或文件被损.</DecryptionError>
  791. <EmailSuccessfullySent>邮件已成功发送.</EmailSuccessfullySent>
  792. <ErrorAtSaving>保存错误</ErrorAtSaving>
  793. <ErrorCode>保存错误. 错误代码: {0}</ErrorCode>
  794. <ErrorServer>保存错误. 服务器无反应.</ErrorServer>
  795. <ExportingReport>导出报表</ExportingReport>
  796. <LoadingCode>加载代码</LoadingCode>
  797. <LoadingConfiguration>加载配置</LoadingConfiguration>
  798. <LoadingData>加载数据</LoadingData>
  799. <LoadingDocument>加载文档</LoadingDocument>
  800. <LoadingImages>加载图像</LoadingImages>
  801. <LoadingLanguage>加载语言</LoadingLanguage>
  802. <LoadingReport>加载报表</LoadingReport>
  803. <PreviewAs>如 {0}所示</PreviewAs>
  804. <RenderingReport>渲染报表</RenderingReport>
  805. <ReportSuccessfullySaved>报表成功保存.</ReportSuccessfullySaved>
  806. <RetrieveError>检索列错误</RetrieveError>
  807. <RetrievingColumns>检索列</RetrievingColumns>
  808. <SavingConfiguration>保存配置</SavingConfiguration>
  809. <SavingReport>保存报表</SavingReport>
  810. <TestConnection>测试连接</TestConnection>
  811. <TextNotFound>无法找到指定文本. 文本: {0}</TextNotFound>
  812. </DesignerFx>
  813. <Desktop>
  814. <Beginner>初学者</Beginner>
  815. <ButtonAddCloud>新增云文件夹</ButtonAddCloud>
  816. <ButtonAddFolder>新增文件夹</ButtonAddFolder>
  817. <ButtonCreateDashboard>创建仪表盘</ButtonCreateDashboard>
  818. <ButtonCreateReport>创建报表</ButtonCreateReport>
  819. <ChooseYourSkillLevel>选择你的技能等级</ChooseYourSkillLevel>
  820. <Creator>报表创建者</Creator>
  821. <Developer>开发者</Developer>
  822. <DoYouWantToInstallReports>是否安装报表和仪表盘模板?</DoYouWantToInstallReports>
  823. <InstallSamplesDesc>安装示例项目。它将帮助您学习使用本软件的基础知识。</InstallSamplesDesc>
  824. <PleaseAnswerWhoAreYou>请问您是?</PleaseAnswerWhoAreYou>
  825. <SkillLevel>技能等级</SkillLevel>
  826. <WhoAreYou>您是谁?</WhoAreYou>
  827. <WhoAreYouBeginnerDescription>非常适合初次设计报表者</WhoAreYouBeginnerDescription>
  828. <WhoAreYouCreatorDescription>非常适合报表创建者,设计所需功能一应俱全</WhoAreYouCreatorDescription>
  829. <WhoAreYouDeveloperDescription>非常适合创建应用程序,包括报表设计和嵌入组件的完整功能</WhoAreYouDeveloperDescription>
  830. </Desktop>
  831. <Dialogs>
  832. <StiButtonControl>按钮</StiButtonControl>
  833. <StiCheckBoxControl>复选框</StiCheckBoxControl>
  834. <StiCheckedListBoxControl>复选列表框</StiCheckedListBoxControl>
  835. <StiComboBoxControl>下拉框</StiComboBoxControl>
  836. <StiDateTimePickerControl>日期时间</StiDateTimePickerControl>
  837. <StiForm>窗体</StiForm>
  838. <StiGridControl>网格</StiGridControl>
  839. <StiGroupBoxControl>分组框</StiGroupBoxControl>
  840. <StiLabelControl>标签</StiLabelControl>
  841. <StiListBoxControl>列表框</StiListBoxControl>
  842. <StiListViewControl>查看列表</StiListViewControl>
  843. <StiLookUpBoxControl>查找框</StiLookUpBoxControl>
  844. <StiNumericUpDownControl>数值</StiNumericUpDownControl>
  845. <StiPanelControl>面板</StiPanelControl>
  846. <StiPictureBoxControl>图片框</StiPictureBoxControl>
  847. <StiRadioButtonControl>单选框</StiRadioButtonControl>
  848. <StiReportControl>报表控件</StiReportControl>
  849. <StiRichTextBoxControl>Rich Text Box</StiRichTextBoxControl>
  850. <StiTextBoxControl>文件框</StiTextBoxControl>
  851. <StiTreeViewControl>树视图</StiTreeViewControl>
  852. </Dialogs>
  853. <Editor>
  854. <CantFind>找不到您所要查找的数据.</CantFind>
  855. <CollapseToDefinitions>折叠到定义(&amp;O)</CollapseToDefinitions>
  856. <Column>列: {0}</Column>
  857. <EntireScope>整个范围(&amp;E)</EntireScope>
  858. <Find>查找(&amp;F)</Find>
  859. <FindNext>查找下一个(&amp;F)</FindNext>
  860. <FindWhat>查找内容:</FindWhat>
  861. <FromCursor>从光标</FromCursor>
  862. <GotoLine>跳到行(&amp;L)</GotoLine>
  863. <InsertLink>插入链接</InsertLink>
  864. <InsertSymbol>插入符号</InsertSymbol>
  865. <Line>行: {0}</Line>
  866. <LineNumber>行号:</LineNumber>
  867. <LineNumberIndex>行号 ({0} - {1})</LineNumberIndex>
  868. <MarkAll>全部标注(&amp;M)</MarkAll>
  869. <MatchCase>区分大小写(&amp;M)</MatchCase>
  870. <MatchWholeWord>全字匹配(&amp;W)</MatchWholeWord>
  871. <Outlining>大纲视图(&amp;L)</Outlining>
  872. <PromptOnReplace>替换时提示</PromptOnReplace>
  873. <Replace>替换(&amp;R)</Replace>
  874. <ReplaceAll>全部替换(&amp;A)</ReplaceAll>
  875. <ReplaceWith>替换为:</ReplaceWith>
  876. <Search>查找</Search>
  877. <SearchHiddenText>隐藏文本</SearchHiddenText>
  878. <SearchUp>向上查找(&amp;U)</SearchUp>
  879. <SelectionOnly>选定文本(&amp;O)</SelectionOnly>
  880. <ShowAutoGeneratedCode>显示自动生成代码</ShowAutoGeneratedCode>
  881. <ShowLineNumbers>显示行号</ShowLineNumbers>
  882. <StopOutlining>停止大纲视图(&amp;P)</StopOutlining>
  883. <titleFind>查找</titleFind>
  884. <titleGotoLine>跳到行</titleGotoLine>
  885. <titleReplace>替换</titleReplace>
  886. <ToggleAllOutlining>全部切换到大纲视图(&amp;L)</ToggleAllOutlining>
  887. <ToggleOutliningExpansion>切换到大纲视图扩展(&amp;T)</ToggleOutliningExpansion>
  888. <TypeToSearch>输入搜索</TypeToSearch>
  889. <UseRegularExpressions>正则表达式(&amp;R)</UseRegularExpressions>
  890. </Editor>
  891. <Errors>
  892. <ComponentIsNotRelease>组件未释放 "{0}".</ComponentIsNotRelease>
  893. <ContainerIsNotValidForComponent>组件 {1} 不能使用容器 {0}.</ContainerIsNotValidForComponent>
  894. <DataNotFound>数据未找到.</DataNotFound>
  895. <DataNotLoaded>无数据加载</DataNotLoaded>
  896. <Error>出错!</Error>
  897. <ErrorsList>错误列表</ErrorsList>
  898. <FieldRequire>字段 "{0}" 需要填充.</FieldRequire>
  899. <FileNotFound>文件 "{0}" 未找到.</FileNotFound>
  900. <IdentifierIsNotValid>标识 '{0}' 不合法.</IdentifierIsNotValid>
  901. <ImpossibleFindDataSource>无法找到数据源.</ImpossibleFindDataSource>
  902. <NameExists>已经有名称为 '{0}' 的对象存在. 对象名区分大小字且必须唯一.</NameExists>
  903. <NoServices>在 '{0}'找不到服务</NoServices>
  904. <NotAssign>数据源未定义.</NotAssign>
  905. <NotCorrectFormat>输入的字符串格式不正确.</NotCorrectFormat>
  906. <OneTableOfContentsAllowed>一个报表中只能同时使用一个“目录”组件 !</OneTableOfContentsAllowed>
  907. <PrimaryColumnAction>无法将此操作应用于 '{0}'的主列.</PrimaryColumnAction>
  908. <RelationsNotFound>找不到关系定义.</RelationsNotFound>
  909. <ReportCannotBeSaveDueToErrors>由于错误,报表无法保存!</ReportCannotBeSaveDueToErrors>
  910. <ServiceNotFound>找不到服务 '{0}'.</ServiceNotFound>
  911. </Errors>
  912. <ExceptionProvider>
  913. <Assemblies>组合</Assemblies>
  914. <Exception>异常</Exception>
  915. <ExceptionReport>异常报告</ExceptionReport>
  916. <Framework>框架</Framework>
  917. <General>常规</General>
  918. <Message>消息</Message>
  919. <Number>编号</Number>
  920. <PleaseEnterDetailedInformation>请输入导致此异常事件的详细信息.</PleaseEnterDetailedInformation>
  921. <SaveToFile>保存到文件</SaveToFile>
  922. <SendErrorFailed>无法传递出错消息.</SendErrorFailed>
  923. <SendErrorSuccess>出错消息传递成功.</SendErrorSuccess>
  924. <Source>信息来源</Source>
  925. <StackTrace>堆栈跟踪</StackTrace>
  926. </ExceptionProvider>
  927. <Export>
  928. <AddPageBreaks>增加分页符</AddPageBreaks>
  929. <AllBands>所有带区</AllBands>
  930. <AllowAddOrModifyTextAnnotations>允许添加或修改文本附注</AllowAddOrModifyTextAnnotations>
  931. <AllowCopyTextAndGraphics>允许复制文字和图片</AllowCopyTextAndGraphics>
  932. <AllowEditable>允许编辑:</AllowEditable>
  933. <AllowModifyContents>允许修改内容</AllowModifyContents>
  934. <AllowPrintDocument>允许打印文档</AllowPrintDocument>
  935. <Auto>自动的</Auto>
  936. <BandsFilter>带区过滤器:</BandsFilter>
  937. <CancelExport>取消输出</CancelExport>
  938. <Color>颜色</Color>
  939. <Compressed>压缩</Compressed>
  940. <CompressToArchive>压缩存档</CompressToArchive>
  941. <ContinuousPages>连续页码</ContinuousPages>
  942. <DataAndHeaders>数据和标题</DataAndHeaders>
  943. <DataAndHeadersFooters>数据和页眉/页脚</DataAndHeadersFooters>
  944. <DataOnly>纯数据</DataOnly>
  945. <DigitalSignature>数字签名</DigitalSignature>
  946. <DigitalSignatureCertificateNotSelected>认证未被选择</DigitalSignatureCertificateNotSelected>
  947. <DigitalSignatureError>数字签名步骤错误</DigitalSignatureError>
  948. <DocumentSecurity>文档安全</DocumentSecurity>
  949. <DotMatrixMode>点阵模式</DotMatrixMode>
  950. <EmbeddedFonts>嵌入字体</EmbeddedFonts>
  951. <EmbeddedImageData>嵌入式图像数据</EmbeddedImageData>
  952. <Encoding>编码:</Encoding>
  953. <EncryptionError>加密步骤错误</EncryptionError>
  954. <EscapeCodes>转义代码</EscapeCodes>
  955. <Exactly>精确地</Exactly>
  956. <ExceptEditableFields>除可编辑字段外</ExceptEditableFields>
  957. <ExportDataOnly>仅导出数据</ExportDataOnly>
  958. <ExportEachPageToSheet>导出每页到工作表</ExportEachPageToSheet>
  959. <Exporting>输出</Exporting>
  960. <ExportingCalculatingCoordinates>正在计算坐标</ExportingCalculatingCoordinates>
  961. <ExportingCreatingDocument>创建文档</ExportingCreatingDocument>
  962. <ExportingFormatingObjects>正在格式化对象</ExportingFormatingObjects>
  963. <ExportingReport>正在导出报表</ExportingReport>
  964. <ExportMode>导出模式:</ExportMode>
  965. <ExportModeFrame>框架</ExportModeFrame>
  966. <ExportModeTable>表</ExportModeTable>
  967. <ExportObjectFormatting>导出格式化对象</ExportObjectFormatting>
  968. <ExportPageBreaks>导出分页符</ExportPageBreaks>
  969. <ExportRtfTextAsImage>将RTF文字导出为图片</ExportRtfTextAsImage>
  970. <ExportTypeBmpFile>BMP 图...</ExportTypeBmpFile>
  971. <ExportTypeCalcFile>打开 Calc File 文档...</ExportTypeCalcFile>
  972. <ExportTypeCsvFile>CSV 文件...</ExportTypeCsvFile>
  973. <ExportTypeDataFile>数据文件...</ExportTypeDataFile>
  974. <ExportTypeDbfFile>DBF 文件...</ExportTypeDbfFile>
  975. <ExportTypeDifFile>数据交换格式(DIF)文件...</ExportTypeDifFile>
  976. <ExportTypeExcel2007File>Microsoft Excel 2007/2013 文件...</ExportTypeExcel2007File>
  977. <ExportTypeExcelFile>Microsoft Excel 文件...</ExportTypeExcelFile>
  978. <ExportTypeExcelXmlFile>Microsoft Excel Xml 文件...</ExportTypeExcelXmlFile>
  979. <ExportTypeGifFile>GIF 图片...</ExportTypeGifFile>
  980. <ExportTypeHtml5File>HTML5 文件...</ExportTypeHtml5File>
  981. <ExportTypeHtmlFile>HTML 文件...</ExportTypeHtmlFile>
  982. <ExportTypeImageFile>图像文件...</ExportTypeImageFile>
  983. <ExportTypeJpegFile>JPEG 图片...</ExportTypeJpegFile>
  984. <ExportTypeJsonFile>JSON文件...</ExportTypeJsonFile>
  985. <ExportTypeMetafile>Windows 图元文件...</ExportTypeMetafile>
  986. <ExportTypeMhtFile>MHT Web Archive文件...</ExportTypeMhtFile>
  987. <ExportTypePcxFile>PCX 图像...</ExportTypePcxFile>
  988. <ExportTypePdfFile>Adobe PDF 文件...</ExportTypePdfFile>
  989. <ExportTypePngFile>PNG 图片...</ExportTypePngFile>
  990. <ExportTypePpt2007File>Microsoft PowerPoint文件...</ExportTypePpt2007File>
  991. <ExportTypeRtfFile>RTF 文件...</ExportTypeRtfFile>
  992. <ExportTypeSvgFile>可伸缩矢量图形(SVG)文件...</ExportTypeSvgFile>
  993. <ExportTypeSvgzFile>压缩的 SVG (SVGZ) 文件...</ExportTypeSvgzFile>
  994. <ExportTypeSylkFile>符号链接(SYLK)文件...</ExportTypeSylkFile>
  995. <ExportTypeTiffFile>TIFF 图片...</ExportTypeTiffFile>
  996. <ExportTypeTxtFile>Text 文件...</ExportTypeTxtFile>
  997. <ExportTypeWord2007File>Microsoft Word 2007/2013 文件...</ExportTypeWord2007File>
  998. <ExportTypeWriterFile>打开 Writer File 文档...</ExportTypeWriterFile>
  999. <ExportTypeXmlFile>XML 文件...</ExportTypeXmlFile>
  1000. <ExportTypeXpsFile>Microsoft XPS 文件...</ExportTypeXpsFile>
  1001. <GetCertificateFromCryptoUI>从 Crypto UI 获取证书</GetCertificateFromCryptoUI>
  1002. <ImageCompressionMethod>图像压缩方法:</ImageCompressionMethod>
  1003. <ImageCutEdges>裁边</ImageCutEdges>
  1004. <ImageFormat>图片格式:</ImageFormat>
  1005. <ImageGrayscale>灰阶</ImageGrayscale>
  1006. <ImageMonochrome>单色</ImageMonochrome>
  1007. <ImageQuality>图像质量</ImageQuality>
  1008. <ImageResolution>清晰度:</ImageResolution>
  1009. <ImageResolutionMode>图像分辨率模式:</ImageResolutionMode>
  1010. <ImageType>图片类型</ImageType>
  1011. <labelEncryptionKeyLength>密钥长度:</labelEncryptionKeyLength>
  1012. <labelOwnerPassword>所有者密码:</labelOwnerPassword>
  1013. <labelSubjectNameString>主题命名字符串:</labelSubjectNameString>
  1014. <labelUserPassword>用户密码:</labelUserPassword>
  1015. <MonochromeDitheringType>单色抖动式:</MonochromeDitheringType>
  1016. <MoreSettings>更多设置</MoreSettings>
  1017. <MultipleFiles>Multiple 文件</MultipleFiles>
  1018. <NoMoreThan>不超过</NoMoreThan>
  1019. <OpenAfterExport>导出后打开</OpenAfterExport>
  1020. <PdfACompliance>PDF/A规格</PdfACompliance>
  1021. <PrintingReport>打印报告</PrintingReport>
  1022. <RemoveEmptySpaceAtBottom>移除页面底部的空白空间</RemoveEmptySpaceAtBottom>
  1023. <RestrictEditing>编辑限制:</RestrictEditing>
  1024. <Scale>缩放:</Scale>
  1025. <Separator>分隔符:</Separator>
  1026. <Settings>设置</Settings>
  1027. <SkipColumnHeaders>略过列头</SkipColumnHeaders>
  1028. <StandardPDFFonts>标准PDF字体</StandardPDFFonts>
  1029. <TiffCompressionScheme>TIFF压缩方案 :</TiffCompressionScheme>
  1030. <title>导出设置</title>
  1031. <TxtBorderType>边框类型</TxtBorderType>
  1032. <TxtBorderTypeDouble>Unicode-双线</TxtBorderTypeDouble>
  1033. <TxtBorderTypeSimple>单线</TxtBorderTypeSimple>
  1034. <TxtBorderTypeSingle>Unicode-单线</TxtBorderTypeSingle>
  1035. <TxtCutLongLines>截断长行</TxtCutLongLines>
  1036. <TxtDrawBorder>绘制边框</TxtDrawBorder>
  1037. <TxtKillSpaceGraphLines>消除空行</TxtKillSpaceGraphLines>
  1038. <TxtKillSpaceLines>去除空行</TxtKillSpaceLines>
  1039. <TxtPutFeedPageCode>放置页码</TxtPutFeedPageCode>
  1040. <Type>打印:</Type>
  1041. <UseDefaultSystemEncoding>使用默认的系统编码</UseDefaultSystemEncoding>
  1042. <UseDigitalSignature>使用数字签名</UseDigitalSignature>
  1043. <UseEscapeCodes>使用转义代码</UseEscapeCodes>
  1044. <UseOnePageHeaderAndFooter>用同一页眉和页脚</UseOnePageHeaderAndFooter>
  1045. <UsePageHeadersAndFooters>使用页眉页尾</UsePageHeadersAndFooters>
  1046. <UseUnicode>用 Unicode 编码</UseUnicode>
  1047. <X>X:</X>
  1048. <Y>Y:</Y>
  1049. <Zoom>缩放:</Zoom>
  1050. </Export>
  1051. <FileFilters>
  1052. <AllFiles>所有文件</AllFiles>
  1053. <AllImageFiles>全部图片文件</AllImageFiles>
  1054. <BitmapFiles>Bitmap 文件</BitmapFiles>
  1055. <BmpFiles>BMP 图片 (*.bmp)|*.bmp</BmpFiles>
  1056. <CalcFiles>打开 Calc files (*.ods)|*.ods 文档</CalcFiles>
  1057. <CsvFiles>CSV 文件 (*.csv)|*.csv</CsvFiles>
  1058. <DashboardTemplates>仪表盘模板 (*.sbi)|*.sbi</DashboardTemplates>
  1059. <DataSetXmlData>DataSet XML data (*.xml)|*.xml</DataSetXmlData>
  1060. <DataSetXmlSchema>DataSet XML schema (*.xsd)|*.xsd</DataSetXmlSchema>
  1061. <DbfFiles>DBF 文件 (*.dbf)|*.dbf</DbfFiles>
  1062. <DictionaryFiles>Files字典 (*.dct)|*.dct</DictionaryFiles>
  1063. <DifFiles>DIF文件(*.dif)|*.dif</DifFiles>
  1064. <DllFiles>DLL 文件 (*.dll)|*.dll</DllFiles>
  1065. <DocumentFiles>Files document (*.mdc)|*.mdc</DocumentFiles>
  1066. <EmfFiles>Metafile (*.emf)|*.emf</EmfFiles>
  1067. <EncryptedDocumentFiles>加密报表文件 (*.mdx)|*.mdx</EncryptedDocumentFiles>
  1068. <EncryptedReportFiles>加密报表模板 (*.mrx)|*.mrx</EncryptedReportFiles>
  1069. <Excel2007Files>Microsoft Excel 2007/2013 files (*.xlsx)|*.xlsx</Excel2007Files>
  1070. <ExcelAllFiles>微软电子表格文件 (*.xlsx;*.xls)|*.xlsx;*.xls</ExcelAllFiles>
  1071. <ExcelFiles>Microsoft Excel 文件 (*.xls)|*.xls</ExcelFiles>
  1072. <ExcelXmlFiles>Microsoft Excel XML 文件 (*.xls)|*.xls</ExcelXmlFiles>
  1073. <ExeFiles>EXE 文件 (*.exe)|*.exe</ExeFiles>
  1074. <GifFiles>GIF 图片 (*.gif)|*.gif</GifFiles>
  1075. <HtmlFiles>HTML 文件 (*.html)|*.html</HtmlFiles>
  1076. <InheritedLanguageFiles>{0} 继承报表文件 (*.{1})|*.{2}</InheritedLanguageFiles>
  1077. <JpegFiles>JPEG 图片 (*.jpg;*.jpeg)|*.jpg;*.jpeg</JpegFiles>
  1078. <JsonDocumentFiles>JSON报表文件 (*.mdc)|*.mdc</JsonDocumentFiles>
  1079. <JsonFiles>JSON文件 (*.json)|*.json</JsonFiles>
  1080. <JsonReportFiles>JSON报表模板 (*.mrt)|*.mrt</JsonReportFiles>
  1081. <LanguageFiles>{0} 文件 (*.{1})|*.{2}</LanguageFiles>
  1082. <LanguageForSilverlightFiles>{0} Silverligh报表类 (*.{1})|*.{2}</LanguageForSilverlightFiles>
  1083. <MetaFiles>元文件</MetaFiles>
  1084. <MhtFiles>MHT Web Archive 文件 (*.mht)|*.mht</MhtFiles>
  1085. <PackedDocumentFiles>Files packed document (*.mdz)|*.mdz</PackedDocumentFiles>
  1086. <PackedReportFiles>Files packed report (*.mrz)|*.mrz</PackedReportFiles>
  1087. <PageFiles>Files page (*.pg)|*.pg</PageFiles>
  1088. <PcxFiles>PCX 图像 (*.pcx)|*.pcx</PcxFiles>
  1089. <PdfFiles>Adobe PDF files (*.pdf)|*.pdf</PdfFiles>
  1090. <PngFiles>PNG 图片 (*.png)|*.png</PngFiles>
  1091. <Ppt2007Files>Microsoft PowerPoint 2007/2013文件 (*.pptx)|*.pptx</Ppt2007Files>
  1092. <ReportEmbededDataFiles>报告嵌入数据的模板(*.mrt)|*.mrt</ReportEmbededDataFiles>
  1093. <ReportFiles>Files report (*.mrt)|*.mrt</ReportFiles>
  1094. <RtfFiles>Rich Text (*.rtf)|*.rtf</RtfFiles>
  1095. <StandaloneReportFiles>独立报表(*.exe)|*.exe</StandaloneReportFiles>
  1096. <StylesFiles>Files style (*.sts)|*.sts</StylesFiles>
  1097. <SvgFiles>SVG 图像(*.svg)|*.svg</SvgFiles>
  1098. <SvgzFiles>压缩的SVG图像(*.svgz)|*.svgz</SvgzFiles>
  1099. <SylkFiles>SYLK文件(*.slk)|*.slk</SylkFiles>
  1100. <TiffFiles>TIFF 图片 (*.tiff)|*.tiff</TiffFiles>
  1101. <TxtFiles>Text (*.txt)|*.txt</TxtFiles>
  1102. <Word2007Files>Microsoft Word 2007-2016 files (*.docx)|*.docx</Word2007Files>
  1103. <WordFiles>微软文字处理软件97-2003文件 (*.doc)|*.doc</WordFiles>
  1104. <WriterFiles>打开 Writer files (*.odt)|*.odt 文档</WriterFiles>
  1105. <XmlFiles>XML 文件 (*.xml)|*.xml</XmlFiles>
  1106. <XpsFiles>Microsoft XPS files (*.xps)|*.xps</XpsFiles>
  1107. <ZipArchives>ZIP档案 (*.zip)|*.zip</ZipArchives>
  1108. </FileFilters>
  1109. <Formats>
  1110. <custom01>d</custom01>
  1111. <custom02>D</custom02>
  1112. <custom03>f</custom03>
  1113. <custom04>F</custom04>
  1114. <custom05>yy/MM/dd</custom05>
  1115. <custom06>yyyy/MM/dd</custom06>
  1116. <custom07>G</custom07>
  1117. <custom08>$0.00</custom08>
  1118. <custom09>$0</custom09>
  1119. <custom10>c</custom10>
  1120. <custom11>c1</custom11>
  1121. <custom12>c2</custom12>
  1122. <custom13>#.00</custom13>
  1123. <custom14>#,#</custom14>
  1124. <custom15>n</custom15>
  1125. <custom16>n1</custom16>
  1126. <custom17>n2</custom17>
  1127. <custom18>(###) ### - ####</custom18>
  1128. <date01>*d</date01>
  1129. <date02>*D</date02>
  1130. <date03>M.dd</date03>
  1131. <date04>yy.M.dd</date04>
  1132. <date05>yy.MM.dd</date05>
  1133. <date06>MMM.dd</date06>
  1134. <date07>yy.MMM.dd</date07>
  1135. <date08>yyyy, MMMM</date08>
  1136. <date09>*f</date09>
  1137. <date10>*F</date10>
  1138. <date11>MM.dd.yyyy</date11>
  1139. <date12>dd/MM/yyyy</date12>
  1140. <date13>*g</date13>
  1141. <date14>*G</date14>
  1142. <date15>*y</date15>
  1143. <date16>*m</date16>
  1144. <date17>s</date17>
  1145. <date18>u</date18>
  1146. <date19>*Q</date19>
  1147. <date20>*YQ</date20>
  1148. <date21>QI</date21>
  1149. <date22>YQI</date22>
  1150. <time01>t</time01>
  1151. <time02>T</time02>
  1152. <time03>HH:mm</time03>
  1153. <time04>H:mm</time04>
  1154. <time06>HH:mm:ss</time06>
  1155. </Formats>
  1156. <FormBand>
  1157. <AddFilter>添加过滤(&amp;A)</AddFilter>
  1158. <AddGroup>添加分组(&amp;A)</AddGroup>
  1159. <AddResult>添加结果(&amp;A)</AddResult>
  1160. <AddSort>添加排序(&amp;A)</AddSort>
  1161. <And>和</And>
  1162. <Ascending>升序</Ascending>
  1163. <Descending>降序</Descending>
  1164. <NoFilters>不过滤</NoFilters>
  1165. <NoSort>没有排序</NoSort>
  1166. <RemoveFilter>移除过滤(&amp;R)</RemoveFilter>
  1167. <RemoveGroup>移除分组(&amp;R)</RemoveGroup>
  1168. <RemoveResult>移除结果(&amp;R)</RemoveResult>
  1169. <RemoveSort>移除排序(&amp;R)</RemoveSort>
  1170. <SortBy>主排序</SortBy>
  1171. <ThenBy>次排序</ThenBy>
  1172. <title>数据设置</title>
  1173. </FormBand>
  1174. <FormColorBoxPopup>
  1175. <Color>颜色</Color>
  1176. <Custom>自定义</Custom>
  1177. <NoColor>没有颜色</NoColor>
  1178. <Others>其它...</Others>
  1179. <System>系统</System>
  1180. <Web>Web</Web>
  1181. </FormColorBoxPopup>
  1182. <FormConditions>
  1183. <AaBbCcYyZz>AaBbCcYyZz</AaBbCcYyZz>
  1184. <AddCondition>添加条件(&amp;A)</AddCondition>
  1185. <AddLevel>添加级别</AddLevel>
  1186. <AssignExpression>分配表达式</AssignExpression>
  1187. <BreakIfTrue>如果属实就中断</BreakIfTrue>
  1188. <BreakIfTrueToolTip>如果满足当前条件,则中断条件处理</BreakIfTrueToolTip>
  1189. <ChangeFont>改变字体</ChangeFont>
  1190. <ComponentIsEnabled>组件已激活</ComponentIsEnabled>
  1191. <NoConditions>无条件</NoConditions>
  1192. <RemoveCondition>移除条件(&amp;R)</RemoveCondition>
  1193. <SelectStyle>选择样式</SelectStyle>
  1194. <title>条件</title>
  1195. </FormConditions>
  1196. <FormCrossTabDesigner>
  1197. <Columns>列:</Columns>
  1198. <DataSource>数据源:</DataSource>
  1199. <Properties>属性:</Properties>
  1200. <Rows>行:</Rows>
  1201. <Summary>统计:</Summary>
  1202. <Swap>交换行列</Swap>
  1203. <title>交叉报表设计</title>
  1204. </FormCrossTabDesigner>
  1205. <FormDatabaseEdit>
  1206. <AccessToken>访问令牌</AccessToken>
  1207. <AuthorizationCode>授权码模式</AuthorizationCode>
  1208. <ClientId>用户ID</ClientId>
  1209. <ClientSecret>用户隐私</ClientSecret>
  1210. <ConnectionString>连接字符串:</ConnectionString>
  1211. <DashboardConnections>仪表盘连接</DashboardConnections>
  1212. <DatabaseSecret>数据库秘钥</DatabaseSecret>
  1213. <DB2Edit>编辑 IBM DB2 连接</DB2Edit>
  1214. <DB2New>新建 IBM DB2 连接</DB2New>
  1215. <EditConnection>编辑 {0} 连接</EditConnection>
  1216. <Favorites>偏好</Favorites>
  1217. <FirebirdEdit>编辑 Firebird 连接</FirebirdEdit>
  1218. <FirebirdNew>新建 Firebird 连接</FirebirdNew>
  1219. <FirstRowIsHeader>第一行为标题</FirstRowIsHeader>
  1220. <GetAuthorizationCode>获取授权码</GetAuthorizationCode>
  1221. <GetTokens>获取令牌</GetTokens>
  1222. <GisEdit>编辑GIS数据 </GisEdit>
  1223. <GisNew>新GIS数据 a</GisNew>
  1224. <ImportData>导入数据</ImportData>
  1225. <InformixEdit>编辑Informix连接</InformixEdit>
  1226. <InformixNew>新建Informix连接</InformixNew>
  1227. <InitialCatalog>初始化分类:</InitialCatalog>
  1228. <JsonEdit>编辑JSON数据</JsonEdit>
  1229. <JsonNew>更新JSON数据</JsonNew>
  1230. <MySQLEdit>编辑 MySQL 连接</MySQLEdit>
  1231. <MySQLNew>新建 MySQL 连接</MySQLNew>
  1232. <NewConnection>新建{0}连接</NewConnection>
  1233. <OdbcEdit>编辑 ODBC 连接</OdbcEdit>
  1234. <OdbcNew>新建 ODBX 连接</OdbcNew>
  1235. <OleDbEdit>编辑 OLE DB 连接</OleDbEdit>
  1236. <OleDbNew>新建 OLE DB 连接</OleDbNew>
  1237. <OracleEdit>编辑 Oracle 连接</OracleEdit>
  1238. <OracleNew>新建 Oracle 连接</OracleNew>
  1239. <OracleODPEdit>编辑Oracle ODP.NET连接</OracleODPEdit>
  1240. <OracleODPNew>新建Oracle ODP.NET连接</OracleODPNew>
  1241. <PathData>路径到 XML Data:</PathData>
  1242. <PathGisData>Gis数据路径:</PathGisData>
  1243. <PathJsonData>JSON数据的路径:</PathJsonData>
  1244. <PathSchema>路径到 XSD Schema:</PathSchema>
  1245. <PathToData>数据路径:</PathToData>
  1246. <Pin>固定</Pin>
  1247. <PostgreSQLEdit>编辑 PostgreSQL 连接</PostgreSQLEdit>
  1248. <PostgreSQLNew>新建 PostgreSQL 连接</PostgreSQLNew>
  1249. <PromptUserNameAndPassword>提示用户名和密码</PromptUserNameAndPassword>
  1250. <RecentConnections>近期</RecentConnections>
  1251. <RedirectUrl>重定向URL</RedirectUrl>
  1252. <RefreshAccessToken>刷新访问令牌</RefreshAccessToken>
  1253. <RefreshToken>刷新令牌</RefreshToken>
  1254. <RelationDirection>关系方向:</RelationDirection>
  1255. <ReportConnections>报表连接</ReportConnections>
  1256. <SelectData>选择数据</SelectData>
  1257. <SpreadsheetId>电子表格ID</SpreadsheetId>
  1258. <SqlCeEdit>编辑 SQLServerCE 连接</SqlCeEdit>
  1259. <SqlCeNew>新建 SQLServerCE 连接</SqlCeNew>
  1260. <SqlEdit>编辑 SQL 连接</SqlEdit>
  1261. <SQLiteEdit>编辑 SQLite 连接</SQLiteEdit>
  1262. <SQLiteNew>新建 SQLite 连接</SQLiteNew>
  1263. <SqlNew>新建 Sql 连接</SqlNew>
  1264. <TeradataEdit>编辑Teradata连接</TeradataEdit>
  1265. <TeradataNew>新建Teradata连接</TeradataNew>
  1266. <Token>临时令牌</Token>
  1267. <UniDirectEdit>编辑Uni Direct连接</UniDirectEdit>
  1268. <UniDirectNew>新建Uni Direct连接</UniDirectNew>
  1269. <Unpin>取消固定</Unpin>
  1270. <UseBearerAuthentication>使用不记名身份认证</UseBearerAuthentication>
  1271. <UseOwnClientID>使用自己的“客户ID”和“客户秘钥”</UseOwnClientID>
  1272. <UseToken>使用令牌</UseToken>
  1273. <VistaDBEdit>编辑 VistaDB 连接</VistaDBEdit>
  1274. <VistaDBNew>新建 VistaDB 连接</VistaDBNew>
  1275. <XmlEdit>编辑 XML Data</XmlEdit>
  1276. <XmlNew>新建 XML Data</XmlNew>
  1277. <XmlType>XML类型:</XmlType>
  1278. </FormDatabaseEdit>
  1279. <FormDesigner>
  1280. <Code>代码</Code>
  1281. <ColumnsOne>一</ColumnsOne>
  1282. <ColumnsThree>三</ColumnsThree>
  1283. <ColumnsTwo>二</ColumnsTwo>
  1284. <CompilingReport>编译报表</CompilingReport>
  1285. <DockingPanels>面板</DockingPanels>
  1286. <HtmlPreview>HTML 预览</HtmlPreview>
  1287. <JsPreview>JS预览</JsPreview>
  1288. <labelPleaseSelectTypeOfInterface>请选择接口类型</labelPleaseSelectTypeOfInterface>
  1289. <LoadImage>加载图片...</LoadImage>
  1290. <LocalizePropertyGrid>本地化属性</LocalizePropertyGrid>
  1291. <MarginsNarrow>窄</MarginsNarrow>
  1292. <MarginsNormal>正常</MarginsNormal>
  1293. <MarginsWide>宽</MarginsWide>
  1294. <OrderToolbars>重置工具栏</OrderToolbars>
  1295. <Others>其它</Others>
  1296. <Pages>页面</Pages>
  1297. <Preview>预览</Preview>
  1298. <PropertyChange>属性改变 '{0}'</PropertyChange>
  1299. <RTPreview>WinRT预览</RTPreview>
  1300. <SetupToolbox>设计工具栏</SetupToolbox>
  1301. <ShowDescription>显示描述</ShowDescription>
  1302. <SLPreview>Silverlight预览</SLPreview>
  1303. <title>设计器</title>
  1304. <WebPreview>Web预览</WebPreview>
  1305. </FormDesigner>
  1306. <FormDictionaryDesigner>
  1307. <Actions>动作</Actions>
  1308. <AutoSort>自动排序</AutoSort>
  1309. <BusinessObjectEdit>编辑Business Object</BusinessObjectEdit>
  1310. <CalcColumnEdit>编辑计算列</CalcColumnEdit>
  1311. <CalcColumnNew>新建计算列</CalcColumnNew>
  1312. <CategoryEdit>编辑分类</CategoryEdit>
  1313. <CategoryNew>新建分类</CategoryNew>
  1314. <Child>儿童</Child>
  1315. <ChildOfBusinessObject>Business Object的子项</ChildOfBusinessObject>
  1316. <ChildSource>子数据源:</ChildSource>
  1317. <ClickHere>单击此处</ClickHere>
  1318. <ColumnEdit>编辑列</ColumnEdit>
  1319. <ColumnNew>新建列</ColumnNew>
  1320. <CreateNewDataSource>创建新数据源</CreateNewDataSource>
  1321. <CreateNewReport>创建新报表</CreateNewReport>
  1322. <CsvSeparatorComma>停顿</CsvSeparatorComma>
  1323. <CsvSeparatorOther>其他</CsvSeparatorOther>
  1324. <CsvSeparatorSemicolon>分号</CsvSeparatorSemicolon>
  1325. <CsvSeparatorSpace>空格</CsvSeparatorSpace>
  1326. <CsvSeparatorSystem>系统</CsvSeparatorSystem>
  1327. <CsvSeparatorTab>Tab</CsvSeparatorTab>
  1328. <DatabaseEdit>编辑数据库</DatabaseEdit>
  1329. <DatabaseNew>新建数据库</DatabaseNew>
  1330. <DataParameterEdit>编辑参数</DataParameterEdit>
  1331. <DataParameterNew>新建参数</DataParameterNew>
  1332. <DataSetToBusinessObjects>Business Object的数据集</DataSetToBusinessObjects>
  1333. <DataSourceEdit>编辑数据源</DataSourceEdit>
  1334. <DataSourceNew>新建数据源</DataSourceNew>
  1335. <DataSourcesNew>新建数据源</DataSourcesNew>
  1336. <DataTransformationEdit>编辑数据转换</DataTransformationEdit>
  1337. <DataTransformationNew>更新数据转换</DataTransformationNew>
  1338. <Delete>删除</Delete>
  1339. <DesignTimeQueryText>设计时查询文本</DesignTimeQueryText>
  1340. <DictionaryMerge>合并字典...</DictionaryMerge>
  1341. <DictionaryNew>新建字典...</DictionaryNew>
  1342. <DictionaryOpen>打开字典...</DictionaryOpen>
  1343. <DictionarySaveAs>保存字典为...</DictionarySaveAs>
  1344. <DragNewDataSource>直接将您的数据拖动至此面板</DragNewDataSource>
  1345. <DragNewReport>直接将您的报表拖动至此面板</DragNewReport>
  1346. <EditQuery>编辑查询</EditQuery>
  1347. <ExecutedSQLStatementSuccessfully>SQL脚本执行成功</ExecutedSQLStatementSuccessfully>
  1348. <ExpressionNew>新表达式</ExpressionNew>
  1349. <GetColumnsFromAssembly>从集合获取列</GetColumnsFromAssembly>
  1350. <ImportRelations>导入关系</ImportRelations>
  1351. <LabelSeparator>分隔符:</LabelSeparator>
  1352. <MarkUsedItems>标注已使用项目</MarkUsedItems>
  1353. <NewBusinessObject>新建Business Object</NewBusinessObject>
  1354. <NewItem>新项目</NewItem>
  1355. <OpenAssembly>打开集合</OpenAssembly>
  1356. <Parent>父母</Parent>
  1357. <ParentSource>父数据库:</ParentSource>
  1358. <Queries>查询</Queries>
  1359. <QueryNew>新建查询</QueryNew>
  1360. <QueryText>查询文本</QueryText>
  1361. <QueryTimeout>查询超时</QueryTimeout>
  1362. <RelationEdit>编辑关系</RelationEdit>
  1363. <RelationNew>新建关系</RelationNew>
  1364. <ResourceEdit>编辑资源</ResourceEdit>
  1365. <ResourceNew>更新资源</ResourceNew>
  1366. <RetrieveColumns>获取所有列</RetrieveColumns>
  1367. <RetrieveColumnsAllowRun>允许存储过程运行</RetrieveColumnsAllowRun>
  1368. <RetrieveColumnsAndParameters>检索列和参数</RetrieveColumnsAndParameters>
  1369. <RetrieveParameters>检索参数</RetrieveParameters>
  1370. <RetrievingDatabaseInformation>检索数据库信息...</RetrievingDatabaseInformation>
  1371. <Run>运行</Run>
  1372. <SelectTypeOfBusinessObject>选择Business Object类型</SelectTypeOfBusinessObject>
  1373. <SkipSchemaWizard>跳过模式向导</SkipSchemaWizard>
  1374. <SortItems>排序项目</SortItems>
  1375. <Synchronize>同步</Synchronize>
  1376. <SynchronizeHint>同步数据源和字典内容</SynchronizeHint>
  1377. <TextDropDataFileHere>将数据文件拖至此处</TextDropDataFileHere>
  1378. <TextDropFileHere>将文件拖至此处</TextDropFileHere>
  1379. <TextDropImageHere>将图像文件拖至此处</TextDropImageHere>
  1380. <title>字典设计器</title>
  1381. <ValueNew>新值</ValueNew>
  1382. <VariableEdit>编辑变量</VariableEdit>
  1383. <VariableNew>新建变量</VariableNew>
  1384. <ViewData>查看数据</ViewData>
  1385. <ViewQuery>查看查询</ViewQuery>
  1386. </FormDictionaryDesigner>
  1387. <FormFormatEditor>
  1388. <Boolean>布尔型</Boolean>
  1389. <BooleanDisplay>显示:</BooleanDisplay>
  1390. <BooleanValue>值:</BooleanValue>
  1391. <Currency>货币</Currency>
  1392. <CurrencySymbol>货币符号:</CurrencySymbol>
  1393. <Custom>自定义</Custom>
  1394. <Date>日期</Date>
  1395. <DateTimeFormat>日期时间格式</DateTimeFormat>
  1396. <DecimalDigits>数值:</DecimalDigits>
  1397. <DecimalSeparator>数值分隔符:</DecimalSeparator>
  1398. <FormatMask>格式:</FormatMask>
  1399. <Formats>格式:</Formats>
  1400. <General>常规</General>
  1401. <GroupSeparator>分组符:</GroupSeparator>
  1402. <GroupSize>分组尺寸:</GroupSize>
  1403. <nameFalse>假</nameFalse>
  1404. <nameNo>否</nameNo>
  1405. <nameOff>关</nameOff>
  1406. <nameOn>开</nameOn>
  1407. <nameTrue>真</nameTrue>
  1408. <nameYes>是</nameYes>
  1409. <NegativeInRed>负数为红色</NegativeInRed>
  1410. <NegativePattern>负数:</NegativePattern>
  1411. <Number>数字</Number>
  1412. <Percentage>百分数</Percentage>
  1413. <PercentageSymbol>百分号:</PercentageSymbol>
  1414. <PositivePattern>正数:</PositivePattern>
  1415. <Properties>属性</Properties>
  1416. <Sample>示例</Sample>
  1417. <SampleText>示例文本</SampleText>
  1418. <TextFormat>文本格式</TextFormat>
  1419. <Time>时间</Time>
  1420. <title>格式</title>
  1421. <UseAbbreviation>使用缩写词</UseAbbreviation>
  1422. <UseGroupSeparator>使用分组符</UseGroupSeparator>
  1423. <UseLocalSetting>使用本地设置</UseLocalSetting>
  1424. </FormFormatEditor>
  1425. <FormGlobalizationEditor>
  1426. <AddCulture>添加 Culture(&amp;A)</AddCulture>
  1427. <AutoLocalizeReportOnRun>运行时自动本地化报表</AutoLocalizeReportOnRun>
  1428. <CreateNewCulture>创建新文化</CreateNewCulture>
  1429. <GetCulture>从报表中获取区域性设置</GetCulture>
  1430. <qnGetCulture>你确定要从报告中获得区域性设置并且覆盖当前的区域性设置吗?</qnGetCulture>
  1431. <qnSetCulture>你确定要把区域性设置设定到报表组件里吗?</qnSetCulture>
  1432. <RemoveCulture>移除 Culture(&amp;R)</RemoveCulture>
  1433. <SetCulture>将区域性设置设定到报告</SetCulture>
  1434. <title>全局编辑器</title>
  1435. </FormGlobalizationEditor>
  1436. <FormInteraction>
  1437. <HyperlinkExternalDocuments>超链接至外部文档</HyperlinkExternalDocuments>
  1438. <HyperlinkUsingInteractionBookmark>超链接使用书签</HyperlinkUsingInteractionBookmark>
  1439. <HyperlinkUsingInteractionTag>超链接使用标签</HyperlinkUsingInteractionTag>
  1440. </FormInteraction>
  1441. <FormOptions>
  1442. <AutoSave>自动保存</AutoSave>
  1443. <AutoSaveReportToReportClass>自动保存报表到 C# 或 VB.NET 文件</AutoSaveReportToReportClass>
  1444. <BlankDashboard>空白仪表盘</BlankDashboard>
  1445. <BlankReport>空白报表</BlankReport>
  1446. <Default>默认</Default>
  1447. <Drawing>图纸</Drawing>
  1448. <DrawMarkersWhenMoving>移动时绘制标注</DrawMarkersWhenMoving>
  1449. <EditAfterInsert>插入后编辑</EditAfterInsert>
  1450. <EnableAutoSaveMode>开启自动保存模式</EnableAutoSaveMode>
  1451. <FillBands>填充区</FillBands>
  1452. <FillComponents>填充组件</FillComponents>
  1453. <FillContainers>填充容器</FillContainers>
  1454. <FillCrossBands>填充交叉区</FillCrossBands>
  1455. <GenerateLocalizedName>生成本地化名称</GenerateLocalizedName>
  1456. <Grid>网格</Grid>
  1457. <GridDots>点</GridDots>
  1458. <GridLines>线</GridLines>
  1459. <GridMode>网格模式</GridMode>
  1460. <GridSize>网格大小</GridSize>
  1461. <groupAutoSaveOptions>自动保存选项</groupAutoSaveOptions>
  1462. <groupColorScheme>请选择Gui配色方案</groupColorScheme>
  1463. <groupGridDrawingOptions>网格绘制选项</groupGridDrawingOptions>
  1464. <groupGridOptions>网格选项</groupGridOptions>
  1465. <groupGridSize>网格大小</groupGridSize>
  1466. <groupMainOptions>工作报表设计主要选项</groupMainOptions>
  1467. <groupMarkersStyle>标志样式</groupMarkersStyle>
  1468. <groupOptionsOfQuickInfo>快速信息选项</groupOptionsOfQuickInfo>
  1469. <groupPleaseSelectTypeOfGui>请选择GUI类型</groupPleaseSelectTypeOfGui>
  1470. <groupReportDisplayOptions>报表显示选项</groupReportDisplayOptions>
  1471. <labelColorScheme>配色方案:</labelColorScheme>
  1472. <labelInfoAutoSave>改变报表自动保存参数</labelInfoAutoSave>
  1473. <labelInfoDrawing>设置报表绘制参数</labelInfoDrawing>
  1474. <labelInfoGrid>在所用的报表中如何显示网格</labelInfoGrid>
  1475. <labelInfoGui>在报表设计中选择所使用的GUI模式</labelInfoGui>
  1476. <labelInfoMain>设置报表设计基本参数</labelInfoMain>
  1477. <labelInfoQuickInfo>组件提示信息页</labelInfoQuickInfo>
  1478. <Main>主体</Main>
  1479. <MarkersStyle>标注样式</MarkersStyle>
  1480. <MarkersStyleCorners>三角</MarkersStyleCorners>
  1481. <MarkersStyleDashedRectangle>虚线矩形</MarkersStyleDashedRectangle>
  1482. <MarkersStyleNone>无</MarkersStyleNone>
  1483. <MessageLeftRightNotValid>左值和右值无效.</MessageLeftRightNotValid>
  1484. <MessageTopBottomNotValid>顶部和底部的价值无效.</MessageTopBottomNotValid>
  1485. <Minutes>{0} 分钟</Minutes>
  1486. <SaveReportEvery>保存全部报表</SaveReportEvery>
  1487. <ScaleMode>缩放模式</ScaleMode>
  1488. <SelectUILanguage>选择界面语言</SelectUILanguage>
  1489. <ShowDialogForms>显示对话框窗口</ShowDialogForms>
  1490. <ShowDimensionLines>显示尺寸线</ShowDimensionLines>
  1491. <ShowOldGaugeEditor>显示旧测量编辑器</ShowOldGaugeEditor>
  1492. <StartScreen>启动屏幕</StartScreen>
  1493. <title>选项</title>
  1494. <UseComponentColor>用组件颜色填充</UseComponentColor>
  1495. <UseLastFormat>使用上次格式</UseLastFormat>
  1496. <Welcome>欢迎</Welcome>
  1497. </FormOptions>
  1498. <FormPageSetup>
  1499. <ApplyTo>应用于</ApplyTo>
  1500. <Bottom>下:</Bottom>
  1501. <Columns>栏</Columns>
  1502. <groupColumns>页面栏</groupColumns>
  1503. <groupImage>水印图像</groupImage>
  1504. <groupMargins>页边距</groupMargins>
  1505. <groupOrientation>纸张方向</groupOrientation>
  1506. <groupPaper>纸张大小</groupPaper>
  1507. <groupPaperSource>纸张来源</groupPaperSource>
  1508. <groupText>水印文字</groupText>
  1509. <Height>高:</Height>
  1510. <labelAngle>角度:</labelAngle>
  1511. <labelColumnGaps>列距:</labelColumnGaps>
  1512. <labelColumnWidth>列宽:</labelColumnWidth>
  1513. <labelImageAlignment>图像对齐:</labelImageAlignment>
  1514. <labelImageTransparency>图像透明度:</labelImageTransparency>
  1515. <labelInfoColumns>设置页面栏数</labelInfoColumns>
  1516. <labelInfoPaper>设置当前页的大小和方向</labelInfoPaper>
  1517. <labelInfoUnit>指定当前单元格的页边距</labelInfoUnit>
  1518. <labelInfoWatermark>设置水印显示参数</labelInfoWatermark>
  1519. <labelMultipleFactor>多重因素:</labelMultipleFactor>
  1520. <labelPaperSourceOfFirstPage>首页纸张来源:</labelPaperSourceOfFirstPage>
  1521. <labelPaperSourceOfOtherPages>其它页纸张来源:</labelPaperSourceOfOtherPages>
  1522. <labelSelectBrush>选择笔刷:</labelSelectBrush>
  1523. <labelSelectColor>选择颜色:</labelSelectColor>
  1524. <labelSelectFont>选择字体:</labelSelectFont>
  1525. <labelSelectImage>选择图像:</labelSelectImage>
  1526. <labelText>文字:</labelText>
  1527. <Left>左:</Left>
  1528. <Margins>页边距</Margins>
  1529. <NumberOfColumns>栏数:</NumberOfColumns>
  1530. <Orientation>方向</Orientation>
  1531. <PageOrientationLandscape>横向</PageOrientationLandscape>
  1532. <PageOrientationPortrait>纵向</PageOrientationPortrait>
  1533. <Paper>纸张:</Paper>
  1534. <RebuildReport>重新生成报表</RebuildReport>
  1535. <Right>右:</Right>
  1536. <ScaleContent>缩放内容</ScaleContent>
  1537. <Size>尺寸:</Size>
  1538. <title>页面设置</title>
  1539. <Top>上:</Top>
  1540. <Width>宽:</Width>
  1541. </FormPageSetup>
  1542. <FormReportSetup>
  1543. <groupDates>报表数据创建和最新数据变化</groupDates>
  1544. <groupDescription>报表描述</groupDescription>
  1545. <groupMainParameters>报表渲染影响参数</groupMainParameters>
  1546. <groupNames>报表名称, 报表别名, 报表作者</groupNames>
  1547. <groupScript>报表脚本语言</groupScript>
  1548. <groupUnits>报表的大小和坐标在指定单位内</groupUnits>
  1549. <labelInfoDescription>显示报表信息</labelInfoDescription>
  1550. <labelInfoMain>改变报表基本参数</labelInfoMain>
  1551. <labelNumberOfPass>密码数字:</labelNumberOfPass>
  1552. <labelReportCacheMode>报告缓存模式:</labelReportCacheMode>
  1553. <ReportChanged>修改时间:</ReportChanged>
  1554. <ReportCreated>创建时间:</ReportCreated>
  1555. <title>报表设置</title>
  1556. </FormReportSetup>
  1557. <FormRichTextEditor>
  1558. <Bullets>项目符号</Bullets>
  1559. <FontName>字体名称</FontName>
  1560. <FontSize>字体大小</FontSize>
  1561. <Insert>插入表达式</Insert>
  1562. <title>Rich Text 编辑器</title>
  1563. </FormRichTextEditor>
  1564. <FormStyleDesigner>
  1565. <Add>添加样式</Add>
  1566. <AddCollectionName>添加集合名称</AddCollectionName>
  1567. <ApplyStyleCollectionToReportComponents>应用样式集合到报告组件</ApplyStyleCollectionToReportComponents>
  1568. <ApplyStyles>应用样式</ApplyStyles>
  1569. <ColorCollectionEditor>集合编辑器涂色</ColorCollectionEditor>
  1570. <CreateNewComponentStyle>创建新组建样式</CreateNewComponentStyle>
  1571. <CreateStyleCollection>创建样式集</CreateStyleCollection>
  1572. <CreateStyleOnBase>基于其他样式创建样式</CreateStyleOnBase>
  1573. <Duplicate>复制样式</Duplicate>
  1574. <EditColors>编辑颜色 </EditColors>
  1575. <FromStyle>来自风格</FromStyle>
  1576. <GetStyle>从所选组件中获得样式</GetStyle>
  1577. <MoreStyles>更多样式</MoreStyles>
  1578. <NotSpecified>未指定</NotSpecified>
  1579. <Open>打开样式</Open>
  1580. <Predefined>预定义</Predefined>
  1581. <qnApplyStyleCollection>你要把样式集应用到报表组件里吗?</qnApplyStyleCollection>
  1582. <Remove>移除样式</Remove>
  1583. <RemoveExistingStyles>移除已有样式</RemoveExistingStyles>
  1584. <Save>保存样式</Save>
  1585. <Style>样式</Style>
  1586. <StyleCollectionsNotFound>没有找到样式集!</StyleCollectionsNotFound>
  1587. <title>样式设计器</title>
  1588. </FormStyleDesigner>
  1589. <FormSystemTextEditor>
  1590. <Condition>条件</Condition>
  1591. <LabelDataBand>数据绑定</LabelDataBand>
  1592. <LabelDataColumn>数据列</LabelDataColumn>
  1593. <LabelShowInsteadNullValues>显示替代null值:</LabelShowInsteadNullValues>
  1594. <LabelSummaryFunction>聚合函数</LabelSummaryFunction>
  1595. <pageExpression>表达式</pageExpression>
  1596. <pageSummary>合计</pageSummary>
  1597. <pageSystemVariable>系统变量</pageSystemVariable>
  1598. <RunningTotal>运行总计</RunningTotal>
  1599. <SummaryRunning>运行时聚合</SummaryRunning>
  1600. <SummaryRunningByColumn>列</SummaryRunningByColumn>
  1601. <SummaryRunningByPage>页</SummaryRunningByPage>
  1602. <SummaryRunningByReport>报表</SummaryRunningByReport>
  1603. </FormSystemTextEditor>
  1604. <FormTitles>
  1605. <ChartWizardForm>图表向导</ChartWizardForm>
  1606. <ConditionEditorForm>条件</ConditionEditorForm>
  1607. <ConnectionSelectForm>选择连接类型</ConnectionSelectForm>
  1608. <ContainerSelectForm>选择容器</ContainerSelectForm>
  1609. <DataAdapterServiceSelectForm>选择数据类型</DataAdapterServiceSelectForm>
  1610. <DataRelationSelectForm>选择数据关系</DataRelationSelectForm>
  1611. <DataSetName>输入 DataSet 名称</DataSetName>
  1612. <DataSourceSelectForm>选择数据源</DataSourceSelectForm>
  1613. <DataSourcesNewForm>新建数据源</DataSourcesNewForm>
  1614. <DataStoreViewerForm>数据存储浏览器</DataStoreViewerForm>
  1615. <DesignerApplication>报表设计器</DesignerApplication>
  1616. <EventEditorForm>事件编辑器</EventEditorForm>
  1617. <ExpressionEditorForm>表达式编辑器</ExpressionEditorForm>
  1618. <GroupConditionForm>分组条件</GroupConditionForm>
  1619. <InteractionDrillDownPageSelectForm>选择钻取页</InteractionDrillDownPageSelectForm>
  1620. <MasterComponentSelectForm>选择父级组件</MasterComponentSelectForm>
  1621. <PageAddForm>添加页面</PageAddForm>
  1622. <PageSizeForm>页面尺寸</PageSizeForm>
  1623. <PagesManagerForm>页面管理器</PagesManagerForm>
  1624. <PromptForm>输入登录信息到数据库</PromptForm>
  1625. <ReportWizard>报表向导</ReportWizard>
  1626. <ServiceSelectForm>选择服务</ServiceSelectForm>
  1627. <SqlExpressionsForm>SQL 表达式</SqlExpressionsForm>
  1628. <SubReportPageSelectForm>选择子报表页面</SubReportPageSelectForm>
  1629. <TextEditorForm>文本编辑器</TextEditorForm>
  1630. <ViewDataForm>查看数据</ViewDataForm>
  1631. <ViewerApplication>报表查看器</ViewerApplication>
  1632. </FormTitles>
  1633. <FormViewer>
  1634. <Bookmarks>书签</Bookmarks>
  1635. <Close>关闭</Close>
  1636. <CollapseAll>全部折叠</CollapseAll>
  1637. <CompressedDocumentFile>压缩文档文件</CompressedDocumentFile>
  1638. <ContextMenu>右键菜单</ContextMenu>
  1639. <DocumentFile>文档 File...</DocumentFile>
  1640. <Editor>编辑器</Editor>
  1641. <EncryptedDocumentFile>加密文档文件</EncryptedDocumentFile>
  1642. <ExpandAll>全部展开</ExpandAll>
  1643. <Export>导出...</Export>
  1644. <Find>查找</Find>
  1645. <FirstPage>首页</FirstPage>
  1646. <FullScreen>全屏</FullScreen>
  1647. <GoToPage>转到页</GoToPage>
  1648. <HorScrollBar>水平滚动条</HorScrollBar>
  1649. <JumpToPage>跳到页</JumpToPage>
  1650. <LabelPageN>页:</LabelPageN>
  1651. <LastPage>末页</LastPage>
  1652. <NextPage>下页</NextPage>
  1653. <Open>打开...</Open>
  1654. <PageControl>页面控制</PageControl>
  1655. <PageDelete>删除页面</PageDelete>
  1656. <PageDesign>编辑页面...</PageDesign>
  1657. <PageNew>新页</PageNew>
  1658. <PageNofM>{0} / {1}</PageNofM>
  1659. <PageofM>/ {0}</PageofM>
  1660. <PageSize>页面大小...</PageSize>
  1661. <PageViewModeContinuous>连续</PageViewModeContinuous>
  1662. <PageViewModeMultiplePages>多页</PageViewModeMultiplePages>
  1663. <PageViewModeSinglePage>单页</PageViewModeSinglePage>
  1664. <Parameters>参数</Parameters>
  1665. <PrevPage>上页</PrevPage>
  1666. <Print>打印...</Print>
  1667. <qnPageDelete>您是否要删除页面?</qnPageDelete>
  1668. <Save>保存...</Save>
  1669. <SendEMail>发送邮件...</SendEMail>
  1670. <StatusBar>状态栏</StatusBar>
  1671. <Thumbnails>缩略图</Thumbnails>
  1672. <title>预览</title>
  1673. <titlePageSettings>页面设置</titlePageSettings>
  1674. <Toolbar>工具栏</Toolbar>
  1675. <VerScrollBar>垂直滚动条</VerScrollBar>
  1676. <ViewMode>查看方式</ViewMode>
  1677. <Zoom>缩放</Zoom>
  1678. <ZoomMultiplePages>多页</ZoomMultiplePages>
  1679. <ZoomOnePage>整页</ZoomOnePage>
  1680. <ZoomPageWidth>页宽</ZoomPageWidth>
  1681. <ZoomTwoPages>双页</ZoomTwoPages>
  1682. <ZoomXXPages>{0} X {1} 页</ZoomXXPages>
  1683. <ZoomXXPagesCancel>取消</ZoomXXPagesCancel>
  1684. </FormViewer>
  1685. <FormViewerFind>
  1686. <Close>关闭</Close>
  1687. <FindNext>查找下一个</FindNext>
  1688. <FindPrevious>搜索前一个</FindPrevious>
  1689. <FindWhat>查找内容:</FindWhat>
  1690. </FormViewerFind>
  1691. <Gauge>
  1692. <AddNewItem>新增项目</AddNewItem>
  1693. <BarRangeList>条范围列表</BarRangeList>
  1694. <GaugeEditorForm>测量编辑器</GaugeEditorForm>
  1695. <Kind>类</Kind>
  1696. <LinearBar>线性条</LinearBar>
  1697. <LinearMarker>线性标志</LinearMarker>
  1698. <LinearRange>线性范围</LinearRange>
  1699. <LinearRangeList>线性范围列表</LinearRangeList>
  1700. <LinearScale>线性标尺</LinearScale>
  1701. <LinearTickLabelCustom>线性刻度标签自定义</LinearTickLabelCustom>
  1702. <LinearTickLabelMajor>线性刻度主要标签</LinearTickLabelMajor>
  1703. <LinearTickLabelMinor>线性刻度次要标签</LinearTickLabelMinor>
  1704. <LinearTickMarkCustom>线性刻度标志自定义</LinearTickMarkCustom>
  1705. <LinearTickMarkMajor>线性刻度主要标志</LinearTickMarkMajor>
  1706. <LinearTickMarkMinor>线性刻度次要标志</LinearTickMarkMinor>
  1707. <Needle>指针</Needle>
  1708. <RadialBar>径向条</RadialBar>
  1709. <RadialMarker>径向标记</RadialMarker>
  1710. <RadialRange>径向范围</RadialRange>
  1711. <RadialRangeList>径向范围列表</RadialRangeList>
  1712. <RadialScale>径向缩放</RadialScale>
  1713. <RadialTickLabelCustom>径向刻度标签自定义</RadialTickLabelCustom>
  1714. <RadialTickLabelMajor>径向刻度主要标签</RadialTickLabelMajor>
  1715. <RadialTickLabelMinor>径向刻度次要标签</RadialTickLabelMinor>
  1716. <RadialTickMarkCustom>径向刻度标志自定义</RadialTickMarkCustom>
  1717. <RadialTickMarkMajor>径向刻度主要标志</RadialTickMarkMajor>
  1718. <RadialTickMarkMinor>径向刻度次要标志</RadialTickMarkMinor>
  1719. <StateIndicator>状态指示器</StateIndicator>
  1720. <StateIndicatorFilter>状态指示筛选</StateIndicatorFilter>
  1721. <TickCustomValue>刻度自定义值</TickCustomValue>
  1722. </Gauge>
  1723. <Gui>
  1724. <barname_cancel>取消</barname_cancel>
  1725. <barname_caption>新建工具栏</barname_caption>
  1726. <barname_msginvalidname>工具栏名称不能为空。</barname_msginvalidname>
  1727. <barname_name>工具栏名称(&amp;T):</barname_name>
  1728. <barname_ok>确定</barname_ok>
  1729. <barrename_caption>重命名工具栏</barrename_caption>
  1730. <barsys_autohide_tooltip>自动隐藏</barsys_autohide_tooltip>
  1731. <barsys_close_tooltip>关闭</barsys_close_tooltip>
  1732. <barsys_customize_tooltip>自定义</barsys_customize_tooltip>
  1733. <colorpicker_morecolors>更多颜色(&amp;M)...</colorpicker_morecolors>
  1734. <colorpicker_nofill>无填充(&amp;N)</colorpicker_nofill>
  1735. <colorpicker_standardcolorslabel>标准颜色</colorpicker_standardcolorslabel>
  1736. <colorpicker_themecolorslabel>主题颜色</colorpicker_themecolorslabel>
  1737. <colorpickerdialog_alphalabel />
  1738. <colorpickerdialog_bluelabel>蓝(&amp;B):</colorpickerdialog_bluelabel>
  1739. <colorpickerdialog_cancelbutton>取消</colorpickerdialog_cancelbutton>
  1740. <colorpickerdialog_caption>颜色</colorpickerdialog_caption>
  1741. <colorpickerdialog_colormodellabel>颜色模式:</colorpickerdialog_colormodellabel>
  1742. <colorpickerdialog_currentcolorlabel>当前</colorpickerdialog_currentcolorlabel>
  1743. <colorpickerdialog_customcolorslabel>颜色:</colorpickerdialog_customcolorslabel>
  1744. <colorpickerdialog_greenlabel>绿(&amp;G):</colorpickerdialog_greenlabel>
  1745. <colorpickerdialog_newcolorlabel>新建</colorpickerdialog_newcolorlabel>
  1746. <colorpickerdialog_okbutton>确定</colorpickerdialog_okbutton>
  1747. <colorpickerdialog_redlabel>红(&amp;R):</colorpickerdialog_redlabel>
  1748. <colorpickerdialog_rgblabel>RGB</colorpickerdialog_rgblabel>
  1749. <colorpickerdialog_standardcolorslabel>颜色:</colorpickerdialog_standardcolorslabel>
  1750. <colorpickerdialog_tabcustom>典型</colorpickerdialog_tabcustom>
  1751. <colorpickerdialog_tabstandard>标准</colorpickerdialog_tabstandard>
  1752. <cust_btn_close>关闭</cust_btn_close>
  1753. <cust_btn_delete>删除</cust_btn_delete>
  1754. <cust_btn_keyboard>键盘(&amp;K)...</cust_btn_keyboard>
  1755. <cust_btn_new>新建(&amp;N)...</cust_btn_new>
  1756. <cust_btn_rename>重命名(&amp;R)...</cust_btn_rename>
  1757. <cust_btn_reset>重置(&amp;R)...</cust_btn_reset>
  1758. <cust_btn_resetusage>重置我的使用情况数据(&amp;R)</cust_btn_resetusage>
  1759. <cust_caption>自定义</cust_caption>
  1760. <cust_cbo_fade>褪色度</cust_cbo_fade>
  1761. <cust_cbo_none>(无)</cust_cbo_none>
  1762. <cust_cbo_random>随机</cust_cbo_random>
  1763. <cust_cbo_slide>幻灯片</cust_cbo_slide>
  1764. <cust_cbo_system>系统默认设置</cust_cbo_system>
  1765. <cust_cbo_unfold>展开</cust_cbo_unfold>
  1766. <cust_chk_delay>在短暂延迟后显示所有菜单</cust_chk_delay>
  1767. <cust_chk_fullmenus>始终显示所有菜单</cust_chk_fullmenus>
  1768. <cust_chk_showsk>在屏幕提示中显示快捷键(&amp;S)</cust_chk_showsk>
  1769. <cust_chk_showst>在工具栏上显示屏幕提示(&amp;T)</cust_chk_showst>
  1770. <cust_lbl_cats>类别(&amp;G):</cust_lbl_cats>
  1771. <cust_lbl_cmds>命令(&amp;D):</cust_lbl_cmds>
  1772. <cust_lbl_cmdsins>要向工具栏添加命令,请选择类别,并将命令从此框中拖放到某个工具栏上。</cust_lbl_cmdsins>
  1773. <cust_lbl_menuan>菜单动画:</cust_lbl_menuan>
  1774. <cust_lbl_other>其他:</cust_lbl_other>
  1775. <cust_lbl_pmt>个性化菜单和工具栏</cust_lbl_pmt>
  1776. <cust_lbl_tlbs>工具栏(&amp;A):</cust_lbl_tlbs>
  1777. <cust_mnu_addremove>添加或删除按钮(&amp;A)</cust_mnu_addremove>
  1778. <cust_mnu_cust>自定义...</cust_mnu_cust>
  1779. <cust_mnu_reset>重置工具栏</cust_mnu_reset>
  1780. <cust_mnu_tooltip>工具栏选项</cust_mnu_tooltip>
  1781. <cust_msg_delete>是否确实要删除 &lt;barname&gt; 工具栏?</cust_msg_delete>
  1782. <cust_pm_begingroup>开始编组</cust_pm_begingroup>
  1783. <cust_pm_delete>删除</cust_pm_delete>
  1784. <cust_pm_name>名称:</cust_pm_name>
  1785. <cust_pm_reset>重置</cust_pm_reset>
  1786. <cust_pm_stydef>默认样式</cust_pm_stydef>
  1787. <cust_pm_styimagetext>图像和文字 (始终)</cust_pm_styimagetext>
  1788. <cust_pm_stytextonly>仅文字 (始终)</cust_pm_stytextonly>
  1789. <cust_tab_commands>命令</cust_tab_commands>
  1790. <cust_tab_options>选项</cust_tab_options>
  1791. <cust_tab_toolbars>工具栏</cust_tab_toolbars>
  1792. <mdisysmenu_close>关闭</mdisysmenu_close>
  1793. <mdisysmenu_maximize>最大化</mdisysmenu_maximize>
  1794. <mdisysmenu_minimize>最小化</mdisysmenu_minimize>
  1795. <mdisysmenu_move>移动</mdisysmenu_move>
  1796. <mdisysmenu_next>下一个</mdisysmenu_next>
  1797. <mdisysmenu_restore>恢复</mdisysmenu_restore>
  1798. <mdisysmenu_size>大小</mdisysmenu_size>
  1799. <mdisystt_close>关闭</mdisystt_close>
  1800. <mdisystt_minimize>最小化</mdisystt_minimize>
  1801. <mdisystt_restore>恢复</mdisystt_restore>
  1802. <monthcalendar_clearbutton>清除</monthcalendar_clearbutton>
  1803. <monthcalendar_todaybutton>今天</monthcalendar_todaybutton>
  1804. <navbar_navpaneoptions>导航面板选项(&amp;V)...</navbar_navpaneoptions>
  1805. <navbar_showfewerbuttons>显示较少按钮(&amp;F)</navbar_showfewerbuttons>
  1806. <navbar_showmorebuttons>显示较多按钮(&amp;M)</navbar_showmorebuttons>
  1807. <navPaneCollapseTooltip>折叠导航面板</navPaneCollapseTooltip>
  1808. <navPaneExpandTooltip>展开导航面板</navPaneExpandTooltip>
  1809. <sys_custombar>自定义列</sys_custombar>
  1810. <sys_morebuttons>其他按钮</sys_morebuttons>
  1811. </Gui>
  1812. <HelpComponents>
  1813. <StiBarCode>该组件允许在报表中显示条形码.条形码数据以字符串的形式发送给对象.字符串可包含任意字符,但只允许被选定的图表可以显示符号.</StiBarCode>
  1814. <StiChart>该组件允许在报表中显示图表.提供了不同类型的图表,,例如条形图, 折线图, 饼图, 圆环图, 线形表,面积图, 甘特图, 散点图等. </StiChart>
  1815. <StiChartElement>该元素允许图表显示在仪表盘中。不同类型的图表均可使用。</StiChartElement>
  1816. <StiCheckBox>该组件用于在报告中显示复选框.它可以显示两种模式:“启用”或“禁用”.</StiCheckBox>
  1817. <StiChildBand>子级区用于把两个带区输出到一个数据行.</StiChildBand>
  1818. <StiClone>该组件用于克隆报表的一部分到报表的所需部分.克隆只适用于面板的内容.</StiClone>
  1819. <StiColumnFooterBand>该组件用于在数据区上输出栏尾.栏尾在每个栏尾只能输出一次.放置在该组件上的所有组件也会在每个栏位下输出.</StiColumnFooterBand>
  1820. <StiColumnHeaderBand>该组件用于在数据区上输出栏首.栏尾在每个栏首只能输出一次.放置在该组件上的所有组件也会在每个栏位下输出.</StiColumnHeaderBand>
  1821. <StiComboBoxElement>表示直接在控件中键入值或从现有选项列表中进行选择的组合框。</StiComboBoxElement>
  1822. <StiContainer>该组件是可放置其他组件的矩形区域.当容器移动时,放置在其中的其他组件也会跟着移动. 容器可放置在带区和页面上.</StiContainer>
  1823. <StiCrossDataBand>该带区是连接到数据源的.在数据源中有多少行它就会输出多少次.交叉区从左往右输出.</StiCrossDataBand>
  1824. <StiCrossFooterBand>该带区用于输出一个交叉数据区的页脚.该带区在数据区的所有行后输出一次.交叉区从左往右输出.</StiCrossFooterBand>
  1825. <StiCrossGroupFooterBand>该带区用于输出一个分组的页脚.它放置在交叉数据区的后面.每个交叉页脚都属于指定的交叉页眉.交叉区从左往右输出.</StiCrossGroupFooterBand>
  1826. <StiCrossGroupHeaderBand>在使用交叉数据时,该带区是渲染分组报表的基础之一.没有改带区是不可能创建分组的.该组件分组的显示信息放置在分组页眉上.该信息可以是分组名,日期,分组条件等.该带区在每个分组的开始输出.交叉区从左往右输出.</StiCrossGroupHeaderBand>
  1827. <StiCrossHeaderBand>该带区用于输出页眉.它用于与交叉区建立关系.交叉区从左往右输出.</StiCrossHeaderBand>
  1828. <StiCrossTab>交叉表组件跟表格一样用于表示结构化数据.</StiCrossTab>
  1829. <StiDataBand>数据区要连接到数据源,数据源有多少笔数据,它就输出多少次.</StiDataBand>
  1830. <StiDatePickerElement>该元素用于选择日期和时间。</StiDatePickerElement>
  1831. <StiEmptyBand>该带区用于填充页面底部的空白区.其填充报表每页的空白区.</StiEmptyBand>
  1832. <StiFilterCategory>用于选择和筛选值的一种元素。</StiFilterCategory>
  1833. <StiFooterBand>该带区用于输出数据区的总计.它放置在数据区的下面且在每次数据区的所有行输出后输出一次.</StiFooterBand>
  1834. <StiGauge>组件允许您在预定义的范围内显示值。它可以有不同的图形表示。</StiGauge>
  1835. <StiGaugeElement>元素允许您在预定义的范围内显示值。它可以有不同的图形表示。</StiGaugeElement>
  1836. <StiGroupFooterBand>分组页脚区用于输出分组页脚.该带区放置在数据区的后面.并且该数据区是与分组页眉绑定的.每个分组属于特定的分组页眉.在没有分组页眉时分组页脚将不会输出.</StiGroupFooterBand>
  1837. <StiGroupHeaderBand>该带区是渲染分组报表的基础之一.该组件的分组的显示信息放置在分组页眉上.该信息可以是分组名,日期,分组条件等.该带区在每个分组的开始输出.</StiGroupHeaderBand>
  1838. <StiHeaderBand>该带区用于输出页眉.它与数据区一起使用.</StiHeaderBand>
  1839. <StiHierarchicalBand>该带区要连接到数据源,数据源有多少笔数据,它就输出多少次.数据以树状结构输出.</StiHierarchicalBand>
  1840. <StiHorizontalLinePrimitive>该组件用于输出横线.</StiHorizontalLinePrimitive>
  1841. <StiImage>该组件用于输出图片.它支持下面的图片格式,像BMP, JPG, JPEG, GIF, TIFF, PNG, ICO, WMF, EMF.</StiImage>
  1842. <StiImageElement>该元素用于输出图像,它支持以下图形格式,如BMP, JPG, JPEG, GIF, TIFF, PNG, ICO, WMF, EMF.</StiImageElement>
  1843. <StiIndicatorElement>元素显示输入数据之间的值差。</StiIndicatorElement>
  1844. <StiListBoxElement>元素允许从列表中选择项。</StiListBoxElement>
  1845. <StiMap>该组件用于显示地理目标数据。</StiMap>
  1846. <StiMapCategory>用于处理地图和数据的一组元素。</StiMapCategory>
  1847. <StiMapElement>该元素用于显示地理目标数据。</StiMapElement>
  1848. <StiOnlineMapElement>该元素用于在在线地图上显示地理标记。</StiOnlineMapElement>
  1849. <StiOverlayBand>该带区用于在页面上输出水印.</StiOverlayBand>
  1850. <StiPageFooterBand>该带区用于在每页底端输出信息,像页码,日期及其他附加信息.</StiPageFooterBand>
  1851. <StiPageHeaderBand>该带区用于输出页眉如页码,日期及其他附加信息.它在每页的顶部输出.</StiPageHeaderBand>
  1852. <StiPanel>它是一个矩形区域,其他组件如带区都可放置在其中.当移动面板时,其上面的组件也会跟着移动.面板可放置在带区和页面上.</StiPanel>
  1853. <StiPanelElement>矩形区域可以包含其他元素。当面板被移动时,其中的元素也被移动。</StiPanelElement>
  1854. <StiPivotTableElement>数据透视表元素用于将结构化数据表示为表。</StiPivotTableElement>
  1855. <StiProgressElement>元素显示输入数据的比率。它可以用不同的方式呈现-饼状图,环状图和条形图。</StiProgressElement>
  1856. <StiRectanglePrimitive>该组件用于输出矩形.</StiRectanglePrimitive>
  1857. <StiRegionMapElement>该元素用于显示地理目标数据。</StiRegionMapElement>
  1858. <StiReportSummaryBand>该带区用于输出整个报表的总计.它在报表的结尾输出一次.</StiReportSummaryBand>
  1859. <StiReportTitleBand>该带区用于输出报表的标题.在报表的开始输出.</StiReportTitleBand>
  1860. <StiRichText>该组件用于输出和编辑RTF文本.它也支持加载和保存RTF格式的文件.</StiRichText>
  1861. <StiRoundedRectanglePrimitive>该组件用于输出圆角矩形.</StiRoundedRectanglePrimitive>
  1862. <StiShape>该组件用于插入现成的形状,如箭头,斜线,反斜线,水平线,双竖线,椭圆,矩形,圆角矩形,双横线,三角形,垂直线.</StiShape>
  1863. <StiShapeElement>该元素用于插入现成的形状,如箭头、对角线向下、对角线向上、水平线、左右线、椭圆、矩形,圆角矩形,上下线,三角形,垂直线。</StiShapeElement>
  1864. <StiSubReport>该组件用于在报表的不同位置输出附加数据.</StiSubReport>
  1865. <StiTable>该组件为有组织的使用垂直列和水平行模型的数据元素的集合.</StiTable>
  1866. <StiTableElement>该元素是一组使用垂直列和水平行模型组织的数据元素。</StiTableElement>
  1867. <StiText>该组件是输出数据作为文本的基本对象.</StiText>
  1868. <StiTextElement>该元素是将数据输出为文本的基本对象。</StiTextElement>
  1869. <StiTextInCells>该组件用于在单元格中输出文本.它经常用于创建表格.</StiTextInCells>
  1870. <StiTreeViewBoxElement>元素用于以树的形式在下拉列表中选择值。</StiTreeViewBoxElement>
  1871. <StiTreeViewElement>表示以树的形式显示分层数据的元素。</StiTreeViewElement>
  1872. <StiVerticalLinePrimitive>该组件用于输出竖线.</StiVerticalLinePrimitive>
  1873. <StiWinControl>该组件允许显示.NET Framework中的可见对象.</StiWinControl>
  1874. <StiZipCode>该组件用于输出邮政编码.</StiZipCode>
  1875. </HelpComponents>
  1876. <HelpDesigner>
  1877. <ActiveRelation>设置绑定两个表的优先关系。该关系用于数据转换和仪表盘。每个数据源中只能有一个活跃的关系。</ActiveRelation>
  1878. <Align>改变选中组件的位置.</Align>
  1879. <AlignBottom>组件内容底部对齐.</AlignBottom>
  1880. <AlignCenter>组件内容中间对齐.</AlignCenter>
  1881. <AlignComponentBottom>允许沿着选中组件底端缘水平对齐对象.</AlignComponentBottom>
  1882. <AlignComponentCenter>允许沿着选中组件中间边缘垂直对齐对象.</AlignComponentCenter>
  1883. <AlignComponentLeft>允许沿着选中组件左边缘垂直对齐对象.</AlignComponentLeft>
  1884. <AlignComponentMiddle>允许沿着选中组件中间边缘水平对齐对象.</AlignComponentMiddle>
  1885. <AlignComponentRight>允许沿着选中组件右边缘垂直对齐对象.</AlignComponentRight>
  1886. <AlignComponentTop>允许沿着选中组件顶端边缘水平对齐对象.</AlignComponentTop>
  1887. <AlignLeft>组件内容左对齐.</AlignLeft>
  1888. <AlignMiddle>通过组件的上下边界使内容居中对齐.</AlignMiddle>
  1889. <AlignRight>组件内容右对齐.</AlignRight>
  1890. <AlignToGrid>所选组件网格点对齐.</AlignToGrid>
  1891. <AlignTop>组件内容顶端对齐.</AlignTop>
  1892. <AlignWidth>调整组件内容.</AlignWidth>
  1893. <Angle>旋转组件内容.</Angle>
  1894. <AngleWatermark>水印文本旋转角度.</AngleWatermark>
  1895. <Background>更改所选组件背景.</Background>
  1896. <biConditions>选中组件条件控制列表.</biConditions>
  1897. <BorderColor>选择所选组件的边框颜色.</BorderColor>
  1898. <BorderSidesAll>开启所选组件的所有边框.</BorderSidesAll>
  1899. <BorderSidesBottom>开启所选组件的下边边框.</BorderSidesBottom>
  1900. <BorderSidesLeft>开启所选组件的左边边框.</BorderSidesLeft>
  1901. <BorderSidesNone>切断所选组件的所有边框.</BorderSidesNone>
  1902. <BorderSidesRight>开启所选组件的右边边框.</BorderSidesRight>
  1903. <BorderSidesTop>开启所选组件的上边边框.</BorderSidesTop>
  1904. <BorderStyle>选择所选边框的边框样式.</BorderStyle>
  1905. <BringToFront>将所选组件移到前面.</BringToFront>
  1906. <CenterHorizontally>允许对应组件放置的容器边缘使组件水平对齐.</CenterHorizontally>
  1907. <CenterVertically>允许对应组件放置的容器边缘使组件垂直对齐.</CenterVertically>
  1908. <Close>关闭报表设计器.</Close>
  1909. <Columns>将页面分为多栏.</Columns>
  1910. <ComponentSize>更改所选组件的尺寸.</ComponentSize>
  1911. <CopyStyle>复本样式</CopyStyle>
  1912. <CopyToClipboard>复制到剪贴板</CopyToClipboard>
  1913. <CurrencySymbol>选择货币符号.</CurrencySymbol>
  1914. <DashboardNew>创建新仪表盘。</DashboardNew>
  1915. <DataStore>显示已注册在报表里的数据.</DataStore>
  1916. <DateTimeFormat>选择所选组件的日期和时间样式.</DateTimeFormat>
  1917. <DockingPanels>面板设置.</DockingPanels>
  1918. <DockStyleBottom>将所选组件停靠到底部.</DockStyleBottom>
  1919. <DockStyleFill>将所选组件停靠到各边.</DockStyleFill>
  1920. <DockStyleLeft>将所选组件停靠到左边.</DockStyleLeft>
  1921. <DockStyleNone>所选组件解除停靠.</DockStyleNone>
  1922. <DockStyleRight>将所选组件停靠到右边.</DockStyleRight>
  1923. <DockStyleTop>将所选组件停靠到上边.</DockStyleTop>
  1924. <FontGrow>扩大文本尺寸.</FontGrow>
  1925. <FontName>文本字体.</FontName>
  1926. <FontNameWatermark>水印文本字体.</FontNameWatermark>
  1927. <FontShrink>减小文本尺寸.</FontShrink>
  1928. <FontSize>字体尺寸.</FontSize>
  1929. <FontSizeWatermark>更改字体尺寸.</FontSizeWatermark>
  1930. <FontStyleBold>文本加粗.</FontStyleBold>
  1931. <FontStyleBoldWatermark>水印文本加粗.</FontStyleBoldWatermark>
  1932. <FontStyleItalic>文本倾斜.</FontStyleItalic>
  1933. <FontStyleItalicWatermark>水印文本倾斜.</FontStyleItalicWatermark>
  1934. <FontStyleUnderline>文本加下划线.</FontStyleUnderline>
  1935. <FontStyleUnderlineWatermark>水印文本加下划线.</FontStyleUnderlineWatermark>
  1936. <FormatBoolean>这种格式是用来格式化布尔类型的值.</FormatBoolean>
  1937. <FormatCurrency>显示为货币格式值.它允许显示带有默认货币符号的值.</FormatCurrency>
  1938. <FormatCustom>该类型用于根据定制要求显示数值.该类型是掩码格式下允许的数据格式.</FormatCustom>
  1939. <FormatDate>显示日期格式的数值.日期格式基于区域的日期设置.</FormatDate>
  1940. <FormatGeneral>显示无指定格式的数值.</FormatGeneral>
  1941. <FormatNumber>用于数字的常规显示.</FormatNumber>
  1942. <FormatPercentage>显示百分数格式的数值.数字被100整除后转换为百分数.</FormatPercentage>
  1943. <FormatTime>显示时间格式的数值.时间格式基于区域的时间设置.</FormatTime>
  1944. <FormNew>创建一个新的对话框窗体.</FormNew>
  1945. <GridMode>用线或点显示网格.</GridMode>
  1946. <ImageAlignment>将水印图像放到页面上.</ImageAlignment>
  1947. <ImageTransparency>改变水印图像的透明度.</ImageTransparency>
  1948. <Interaction>控制选定组件的交互</Interaction>
  1949. <LineSpacing>选择文本之间或段落之间的间距。</LineSpacing>
  1950. <Link>把组件链接到当前的容器.</Link>
  1951. <LoadImage>从文件加载水印图像.</LoadImage>
  1952. <Lock>锁定组件. 组件不能移动和变更尺寸.</Lock>
  1953. <MainMenu>单击此处查看报表的可操作项, 包括打开、关闭、预览.</MainMenu>
  1954. <MakeHorizontalSpacingEqual>允许你在所选组件中设置相等水平间距.</MakeHorizontalSpacingEqual>
  1955. <MakeVerticalSpacingEqual>允许你在所选组件中设置相等垂直间距.</MakeVerticalSpacingEqual>
  1956. <Margins>选择当前页面的边缘.</Margins>
  1957. <menuCheckIssues>查看全篇报表,找出错误、警告并更改修正.</menuCheckIssues>
  1958. <menuDesignerOptions>设置报表设计器选项.</menuDesignerOptions>
  1959. <menuEditClearContents>清除内容.</menuEditClearContents>
  1960. <menuEditCopy>复制所选组件并把它放到剪贴板上.</menuEditCopy>
  1961. <menuEditCut>剪切报表的所选组件并把它放到剪贴板上.</menuEditCut>
  1962. <menuEditDelete>删除所选组件.</menuEditDelete>
  1963. <menuEditPaste>粘贴剪贴板的内容到报表里.</menuEditPaste>
  1964. <menuFAQPage>转到网页页面询问常见问题.</menuFAQPage>
  1965. <menuGlobalizationStrings>调用当前的全球化字符串编辑报告.</menuGlobalizationStrings>
  1966. <menuHelpAboutProgramm>获得关于报表生成器和.NET框架版本的信息.</menuHelpAboutProgramm>
  1967. <menuHomePage>转到产品的主页.</menuHomePage>
  1968. <menuPageOptions>设置当前页面的基本参数. 使用属性面板可以变更所有页面选项.</menuPageOptions>
  1969. <menuPagesManager>运行页面管理器. 包括移动、删除和创建新页面.</menuPagesManager>
  1970. <menuPreviewSettings>调用当前报表的预览设置编辑. 设置只能在查看当前报表时应用.</menuPreviewSettings>
  1971. <menuPrint>在打印前选择打印机,打印数量和其他选项.</menuPrint>
  1972. <menuPrintPreview>打印前预览报表.</menuPrintPreview>
  1973. <menuPrintQuick>直接用默认打印机打印报表,不显示打印对话框.</menuPrintQuick>
  1974. <menuReportOptions>设置报表的基本选项.所有选项均可通过属性面板变更.</menuReportOptions>
  1975. <menuStyleDesigner>调用当前报表的样式设计器.</menuStyleDesigner>
  1976. <menuSupport>在支持页面咨询问题.</menuSupport>
  1977. <menuViewAlignToGrid>组件网格对齐.</menuViewAlignToGrid>
  1978. <menuViewNormal>页面的标准视图.</menuViewNormal>
  1979. <menuViewPageBreakPreview>带有部分边框的页面显示模式.</menuViewPageBreakPreview>
  1980. <menuViewQuickInfo>显示组件的快捷信息:组件名称,替换入口,内容,时间等</menuViewQuickInfo>
  1981. <menuViewShowGrid>打开网格线直到使报表对象对齐.</menuViewShowGrid>
  1982. <menuViewShowHeaders>显示带区页眉.</menuViewShowHeaders>
  1983. <menuViewShowOrder>在页面显示组件顺序.</menuViewShowOrder>
  1984. <menuViewShowRulers>查看标尺,它用于在页面上测量和整理对象.</menuViewShowRulers>
  1985. <MoveBackward>按页面上放置组件的顺序将组件移至更高一级.</MoveBackward>
  1986. <MoveForward>按页面上放置组件的顺序将组件移至更低一级..</MoveForward>
  1987. <Orientation>使页面在纵向和横向间切换.</Orientation>
  1988. <PageDelete>删除报表的当前页面.</PageDelete>
  1989. <PageNew>创建一个新页面.</PageNew>
  1990. <PageSetup>显示页面设置对话窗.</PageSetup>
  1991. <PageSize>选择当前报表页面的纸张大小.</PageSize>
  1992. <PagesManager>运行页面管理器.</PagesManager>
  1993. <PressF1>按F1查询更多资料</PressF1>
  1994. <Redo>重做报表里前面取消的变更.</Redo>
  1995. <ReportNew>创建一个新报表.</ReportNew>
  1996. <ReportOpen>在设计器里打开报表.</ReportOpen>
  1997. <ReportPreview>在查看器预览编辑了的报告.</ReportPreview>
  1998. <ReportSave>保存当前编辑的报表.</ReportSave>
  1999. <SelectAll>在当前页面全选组件 .</SelectAll>
  2000. <SelectUILanguage>选择用户界面语言.</SelectUILanguage>
  2001. <SendToBack>将所选组件移至相对于其他组件的后面.</SendToBack>
  2002. <ServicesConfigurator>运行服务配置器.</ServicesConfigurator>
  2003. <Shadow>显示组件阴影.</Shadow>
  2004. <ShowBehind>在组件后显示水印文本.</ShowBehind>
  2005. <ShowImageBehind>把水印图像放到页面所有组件后.</ShowImageBehind>
  2006. <ShowToolbox>显示工具箱.</ShowToolbox>
  2007. <StimulsoftHelp>帮助 Stimulsoft</StimulsoftHelp>
  2008. <StyleDesigner>运行样式设计器.</StyleDesigner>
  2009. <TellMeMore>阐述更多</TellMeMore>
  2010. <Text>水印文本.</Text>
  2011. <TextBrush>更改文本颜色.</TextBrush>
  2012. <TextBrushWatermark>更改水印文本的颜色.</TextBrushWatermark>
  2013. <TextColor>更改文本颜色.</TextColor>
  2014. <TextFormat>选择值格式.</TextFormat>
  2015. <ToolbarStyle>将所选样式应用到所有选择组件.</ToolbarStyle>
  2016. <Undo>取消报告的最新变更.</Undo>
  2017. <WordWrap>组件文本自动换行.</WordWrap>
  2018. <Zoom>指定报表的缩放比例.</Zoom>
  2019. </HelpDesigner>
  2020. <HelpDialogs>
  2021. <StiButtonControl>代表按钮控件.</StiButtonControl>
  2022. <StiCheckBoxControl>代表标志控件.</StiCheckBoxControl>
  2023. <StiCheckedListBoxControl>显示列表对象,在每个元素的左边有一个选择标志.</StiCheckedListBoxControl>
  2024. <StiComboBoxControl>代表组合框,它要么用于直接把值键入控件,要么从现有的选项列表中选择.</StiComboBoxControl>
  2025. <StiDateTimePickerControl>代表允许选择日期和时间的控件. 同时它也允许你以指定的格式输出日期和时间.</StiDateTimePickerControl>
  2026. <StiGridControl>代表包括列与行的网格控件.</StiGridControl>
  2027. <StiGroupBoxControl>代表为界面内容创建的由边框和标题栏组成的容器控件.</StiGroupBoxControl>
  2028. <StiLabelControl>标签控件是在表格上呈现文本的一个用户界面控件. 它通常是没有互动性的静态控件.</StiLabelControl>
  2029. <StiListBoxControl>包含元素选择列表.</StiListBoxControl>
  2030. <StiListViewControl>代表显示数据元素列表的列表视图控件.</StiListViewControl>
  2031. <StiLookUpBoxControl>包含可选择的元素列表.</StiLookUpBoxControl>
  2032. <StiNumericUpDownControl>代表显示数值的控件.</StiNumericUpDownControl>
  2033. <StiPanelControl>面板元素用于放置和排列对象.</StiPanelControl>
  2034. <StiPictureBoxControl>代表显示图像的控件.</StiPictureBoxControl>
  2035. <StiRadioButtonControl>代表单选按钮控件,只允许用户在预定义选择项中选择一个. </StiRadioButtonControl>
  2036. <StiRichTextBoxControl>代表编辑量扩大的富文本控件.</StiRichTextBoxControl>
  2037. <StiTextBoxControl>代表用于显示或编辑文本的文本控件.</StiTextBoxControl>
  2038. <StiTreeViewControl>代表用于将分级式数据显示为树的组件.</StiTreeViewControl>
  2039. </HelpDialogs>
  2040. <HelpViewer>
  2041. <AddPageBreaks>报表页面的可视化分隔符.</AddPageBreaks>
  2042. <AllowAddOrModifyTextAnnotations>限制访问文档中的注释.</AllowAddOrModifyTextAnnotations>
  2043. <AllowCopyTextAndGraphics>限制访问复制信息.</AllowCopyTextAndGraphics>
  2044. <AllowEditable>允许改变组件的可编辑属性的启用性.</AllowEditable>
  2045. <AllowModifyContents>限制对文本编辑访问.</AllowModifyContents>
  2046. <AllowPrintDocument>限制打印操作的访问.</AllowPrintDocument>
  2047. <Bookmarks>显示书签面板,用于快速导航直接跳到书签的位置.</Bookmarks>
  2048. <BorderType>组件边框类型:简单——画边框的组件与字符+,-; 单个字符-用单个方框绘制字符画边框, 双字符-用双方框绘制字符画边框.</BorderType>
  2049. <Close>关闭报表预览.</Close>
  2050. <CloseDotMatrix>关闭点矩阵查看器.</CloseDotMatrix>
  2051. <Compressed>压缩备好的文档. 建议通常包括文件压缩.</Compressed>
  2052. <CompressToArchive>打包所有文件和文件夹压缩存档.</CompressToArchive>
  2053. <ContinuousPages>报表页的放置模式为一个垂直条带.</ContinuousPages>
  2054. <CurrentPage>处理当前页面. 如果选择此选项,所选报表页面将随之处理.</CurrentPage>
  2055. <CutEdges>修正报告页面的边框.</CutEdges>
  2056. <CutLongLines>通过组件边框修正文本行.</CutLongLines>
  2057. <DigitalSignature>文件的数字签名.</DigitalSignature>
  2058. <DitheringType>抖动类型:无-没有抖动,有序, FloydSt. - 带有抖动.</DitheringType>
  2059. <DotMatrixMode>此模式允许您看到如果使用点阵打印机打印报表时的样子.</DotMatrixMode>
  2060. <DrawBorder>用图形字符绘制组件边框.</DrawBorder>
  2061. <Edit>编辑组件.</Edit>
  2062. <EmbeddedFonts>将字体文件嵌入到PDF文件里.</EmbeddedFonts>
  2063. <EmbeddedImageData>将图像直接嵌入到HTML文件里.</EmbeddedImageData>
  2064. <Encoding>导出后报表文本的编码.</Encoding>
  2065. <EncodingData>创建文件时使用的编码.</EncodingData>
  2066. <EncryptionKeyLength>密码键的长度. 密码越长,文件越难被解密,因此,文档安全性级别也更高.</EncryptionKeyLength>
  2067. <ExportDataOnly>只导出数据带区(表格控件,分级带区).</ExportDataOnly>
  2068. <ExportEachPageToSheet>每页报表页分别导出到分开的Excel工作表.</ExportEachPageToSheet>
  2069. <ExportMode>导出时运用筛选条件. 仅数据- 只有数据带区(表格控件,分级带区)将会导出. 数据和页眉/页脚 - 数据带去(表格控件,分级带区)和它们的页眉/页脚将会导出. 所有带区-报表的所有带区都会导出.</ExportMode>
  2070. <ExportModeHtml> HTML 页面标记的方式.</ExportModeHtml>
  2071. <ExportModeRtf>导出后报告数据的呈现. 表格 - 报告看起来像一个表格,其中每个报告组件是一个表格单元. 框架-每个控件就像一个单一的框架,而他们彼此之间也没有任何关系.</ExportModeRtf>
  2072. <ExportObjectFormatting>从数据带应用格式设置导出数据(表格控件,层次带).</ExportObjectFormatting>
  2073. <ExportPageBreaks>在 Excel工作表上显示报告页面的边框.</ExportPageBreaks>
  2074. <ExportRtfTextAsImage>将RTF 文件转换成图像. 如果选项可用,那么当导出时, RichText分解成更简单的原语支持PDF格式. 带有复杂格式的RichText (带有图像,表格) 可能会出现转换错误. 这种情况建议启用这个选项.</ExportRtfTextAsImage>
  2075. <Find>在报告里找到文本.</Find>
  2076. <FullScreen>全屏阅读.</FullScreen>
  2077. <GetCertificateFromCryptoUI>使用系统密码库界面.</GetCertificateFromCryptoUI>
  2078. <ImageCompressionMethod>压缩方法: JPEG - th可能会引起质量损失, Flate – 无质量损失,简单、有序, FloydSt. - 图像单色输出.</ImageCompressionMethod>
  2079. <ImageFormat>完成文件里的图像格式.</ImageFormat>
  2080. <ImageQuality>允许选择文件图像质量和尺寸的比率. 质量越高,完成文件的尺寸越大.</ImageQuality>
  2081. <ImageQualityPdf>此选项只适用于JPEG 压缩, 允许选择文件图像质量和尺寸的比率.质量越高,完成文件的尺寸越大.</ImageQualityPdf>
  2082. <ImageResolution>象素每英寸数. 象素数越高,图像质量越好。 完成文件的尺寸会大很多.</ImageResolution>
  2083. <ImageType>图像的配色方案 : 颜色 - 导出后的图片会与查看器的图片完全匹配; 灰色 – 导出后的图像呈灰度; 单色 - 图像将完全为黑白色.同时,其应该有三种模式None, Ordered, FloydSt.</ImageType>
  2084. <KillSpaceLines>移除文档中的空白行/列.</KillSpaceLines>
  2085. <MultipleFiles>每个报表页面可以是一个分离的文件.</MultipleFiles>
  2086. <Open>在预览窗口上打开以前保存的报表.</Open>
  2087. <OpenAfterExport>通过文件类型的程序设置在导出后自动打开创建的文件.</OpenAfterExport>
  2088. <OwnerPassword>文件存取操作的密码.</OwnerPassword>
  2089. <PageAll>处理所有报表页.</PageAll>
  2090. <PageDelete>删除所选报表页.</PageDelete>
  2091. <PageDesign>编辑报表设计器里的所选页面.</PageDesign>
  2092. <PageFirst>转到报表的第一页.</PageFirst>
  2093. <PageGoTo>转到指定的报表页.</PageGoTo>
  2094. <PageLast>转到报表的最后一页.</PageLast>
  2095. <PageNew>添加新页面到报表.</PageNew>
  2096. <PageNext>转到下一报表页.</PageNext>
  2097. <PagePrevious>转到上一报表页.</PagePrevious>
  2098. <PageSize>更改报表的页面参数.</PageSize>
  2099. <Parameters>显示参数面板,在报表渲染时使用.</Parameters>
  2100. <PdfACompliance>支持长期存档和储存电子文档的标准.</PdfACompliance>
  2101. <Print>打印报表.</Print>
  2102. <PutFeedPageCode>用指定字符在最终文档里插入页面.</PutFeedPageCode>
  2103. <RangePages>处理页面数目. 你可以指定单一页面,页面列表(用逗号隔开), 或者指定范围,可通过设置范围的起始页和结束页,用 "-" 隔开。 例如: 1,3,5-12.</RangePages>
  2104. <RemoveEmptySpaceAtBottom>最小化页面底部的空白空间.</RemoveEmptySpaceAtBottom>
  2105. <Resources>显示资源面板</Resources>
  2106. <RestrictEditing>限制Word文档的变化.</RestrictEditing>
  2107. <Save>保存报表以便进一步使用.</Save>
  2108. <ScaleHtml>导出后报表页面和项的尺寸.</ScaleHtml>
  2109. <ScaleImage>导出后报表的尺寸. 尺寸越小,每英寸的像素数越大,反之亦然.</ScaleImage>
  2110. <SendEMail>通过邮件发送报表.</SendEMail>
  2111. <Separator>CSV 文件中数据的分隔符.</Separator>
  2112. <SkipColumnHeaders>启用/禁用列标题.</SkipColumnHeaders>
  2113. <StandardPdfFonts>14 标准Adobe字体. 如果此项可用,那么在PDF文件中只能使用标准的14个字体.所有报表的字体都会转换为他们.</StandardPdfFonts>
  2114. <SubjectNameString>凭证识别符.这个识别符是凭证拥有者的名字或者是名字的一部分.</SubjectNameString>
  2115. <Thumbnails>显示缩略图,它可以用于快速导航找到你想要跳转的报表部分.</Thumbnails>
  2116. <TiffCompressionScheme>TIFF文件的压缩方案.</TiffCompressionScheme>
  2117. <ToolEditor>该工具允许在报表视图器中直接对文本组件内容进行编辑.</ToolEditor>
  2118. <TypeExport>报表将转换到的文件.</TypeExport>
  2119. <UseDefaultSystemEncoding>使用默认的系统编码.</UseDefaultSystemEncoding>
  2120. <UseOnePageHeaderAndFooter>只使用首个页眉和最后一个的页脚. 移除剩下的页眉和页脚.</UseOnePageHeaderAndFooter>
  2121. <UsePageHeadersAndFooters>导出页面页眉和页脚作为MS Word文档的页眉和页脚.</UsePageHeadersAndFooters>
  2122. <UserPassword>打开文件所需的密码.</UserPassword>
  2123. <UseUnicode>编码字符扩展支持. 它影响PDF文件里的内部字符编码, 并提高从PDF文件中复制文本的能力.</UseUnicode>
  2124. <ViewModeContinuous>连续显示所有报表页.</ViewModeContinuous>
  2125. <ViewModeMultiplePages>缩放报表以便在窗口中显示更多的页面.</ViewModeMultiplePages>
  2126. <ViewModeSinglePage>在预览窗口显示一个单一页面.</ViewModeSinglePage>
  2127. <ZoomMultiplePages>缩放报表使得所选页面适应窗口大小.</ZoomMultiplePages>
  2128. <ZoomOnePage>缩放报表以便在窗口中显示整个页面.</ZoomOnePage>
  2129. <ZoomPageWidth>缩放报表以便报表的宽度与窗口的宽度相适应.</ZoomPageWidth>
  2130. <ZoomTwoPages>缩放报表以便在窗口中显示双页.</ZoomTwoPages>
  2131. <ZoomTxt>报表尺寸: X - 改变水平尺寸, Y - 改变垂直尺寸.</ZoomTxt>
  2132. </HelpViewer>
  2133. <Interface>
  2134. <Mouse>鼠标</Mouse>
  2135. <MouseDescription>优化鼠标使用</MouseDescription>
  2136. <Touch>触摸</Touch>
  2137. <TouchDescription>优化触摸使用</TouchDescription>
  2138. </Interface>
  2139. <MainMenu>
  2140. <menuCheckIssues>检查问题</menuCheckIssues>
  2141. <menuContextClone>克隆...</menuContextClone>
  2142. <menuContextDesign>设计...</menuContextDesign>
  2143. <menuContextTextFormat>文字格式...</menuContextTextFormat>
  2144. <menuConvertToCheckBox>转换到复选框</menuConvertToCheckBox>
  2145. <menuConvertToImage>转换到图像</menuConvertToImage>
  2146. <MenuConvertToRichText>转换到富文本</MenuConvertToRichText>
  2147. <menuConvertToText>转换到文本</menuConvertToText>
  2148. <menuDeleteColumn>删除列</menuDeleteColumn>
  2149. <menuDeleteRow>删除行</menuDeleteRow>
  2150. <menuEdit>编辑(&amp;E)</menuEdit>
  2151. <menuEditBusinessObjectFromDataSetNew>来自数据组的新Business Object...</menuEditBusinessObjectFromDataSetNew>
  2152. <menuEditBusinessObjectNew>新建Business Object...</menuEditBusinessObjectNew>
  2153. <menuEditCalcColumnNew>新建计算列...</menuEditCalcColumnNew>
  2154. <menuEditCantRedo>无法重做</menuEditCantRedo>
  2155. <menuEditCantUndo>无法撤销</menuEditCantUndo>
  2156. <menuEditCategoryNew>新建分类...</menuEditCategoryNew>
  2157. <menuEditClearContents>清除内容</menuEditClearContents>
  2158. <menuEditColumnNew>新建列...</menuEditColumnNew>
  2159. <menuEditConnectionNew>新建连接...</menuEditConnectionNew>
  2160. <menuEditCopy>复制(&amp;C)</menuEditCopy>
  2161. <menuEditCut>剪切(&amp;U)</menuEditCut>
  2162. <menuEditDataParameterNew>新建参数...</menuEditDataParameterNew>
  2163. <menuEditDataSourceNew>新建数据源...</menuEditDataSourceNew>
  2164. <menuEditDataSourcesNew>新建数据源...</menuEditDataSourcesNew>
  2165. <menuEditDataTransformationNew>更新数据转换...</menuEditDataTransformationNew>
  2166. <menuEditDelete>删除(&amp;D)</menuEditDelete>
  2167. <menuEditEdit>编辑</menuEditEdit>
  2168. <menuEditImportRelations>导入关系...</menuEditImportRelations>
  2169. <menuEditPaste>粘贴(&amp;P)</menuEditPaste>
  2170. <menuEditRedo>重做(&amp;R)</menuEditRedo>
  2171. <menuEditRedoText>重做(&amp;R){0}</menuEditRedoText>
  2172. <menuEditRelationNew>新建关系...</menuEditRelationNew>
  2173. <menuEditRemoveUnused>移除未使用的项目</menuEditRemoveUnused>
  2174. <menuEditResourceNew>New Resource...</menuEditResourceNew>
  2175. <menuEditSelectAll>全选(&amp;A)</menuEditSelectAll>
  2176. <menuEditSynchronize>同步</menuEditSynchronize>
  2177. <menuEditUndo>撤销(&amp;U)</menuEditUndo>
  2178. <menuEditUndoText>撤销(&amp;U) {0}</menuEditUndoText>
  2179. <menuEditVariableNew>新建变量...</menuEditVariableNew>
  2180. <menuEditViewData>查看数据...</menuEditViewData>
  2181. <menuEmbedAllDataToResources>嵌入所有数据至资源</menuEmbedAllDataToResources>
  2182. <menuFile>文件(&amp;F)</menuFile>
  2183. <menuFileClose>关闭(&amp;C)</menuFileClose>
  2184. <menuFileDashboardDelete>删除仪表盘</menuFileDashboardDelete>
  2185. <menuFileDashboardNew>更新仪表盘</menuFileDashboardNew>
  2186. <menuFileDashboardOpen>&amp;打开仪表盘...</menuFileDashboardOpen>
  2187. <menuFileDashboardSaveAs>保存仪表盘 &amp;为...</menuFileDashboardSaveAs>
  2188. <menuFileExit>退出(&amp;X)</menuFileExit>
  2189. <menuFileExportXMLSchema>导出为XML Schema...</menuFileExportXMLSchema>
  2190. <menuFileFormNew>新建窗体</menuFileFormNew>
  2191. <menuFileImportXMLSchema>导入XML Schema...</menuFileImportXMLSchema>
  2192. <menuFileMerge>合并...</menuFileMerge>
  2193. <menuFileMergeXMLSchema>合并XML Schema...</menuFileMergeXMLSchema>
  2194. <menuFileNew>新建(&amp;N)</menuFileNew>
  2195. <menuFileOpen>打开(&amp;O)</menuFileOpen>
  2196. <menuFilePageDelete>删除页面</menuFilePageDelete>
  2197. <menuFilePageNew>新建页面</menuFilePageNew>
  2198. <menuFilePageOpen>打开页面...</menuFilePageOpen>
  2199. <menuFilePageSaveAs>保存页面为...</menuFilePageSaveAs>
  2200. <menuFilePageSetup>页面设置...</menuFilePageSetup>
  2201. <menuFileRecentDocuments>最近文档</menuFileRecentDocuments>
  2202. <menuFileRecentLocations>最近的位置</menuFileRecentLocations>
  2203. <menuFileReportNew>新建报表(&amp;N)...</menuFileReportNew>
  2204. <menuFileReportOpen>打开报表(&amp;O)...</menuFileReportOpen>
  2205. <menuFileReportOpenFromGoogleDocs>打开Google Docs 报表...</menuFileReportOpenFromGoogleDocs>
  2206. <menuFileReportPreview>预览报表(&amp;P)...</menuFileReportPreview>
  2207. <menuFileReportSave>保存报表(&amp;S)...</menuFileReportSave>
  2208. <menuFileReportSaveAs>保存报表为(&amp;A)...</menuFileReportSaveAs>
  2209. <menuFileReportSaveAsToGoogleDocs>保存报表到Google Docs...</menuFileReportSaveAsToGoogleDocs>
  2210. <menuFileReportSetup>报表设置(&amp;S)...</menuFileReportSetup>
  2211. <menuFileReportWizardNew>新建报表向导...</menuFileReportWizardNew>
  2212. <menuFileSave>保存报表(&amp;S)...</menuFileSave>
  2213. <menuFileSaveAs>另存为...</menuFileSaveAs>
  2214. <menuHelp>帮助(&amp;H)</menuHelp>
  2215. <menuHelpAboutProgramm>关于(&amp;A)...</menuHelpAboutProgramm>
  2216. <menuHelpContents>内容(&amp;C)...</menuHelpContents>
  2217. <menuHelpDemos>演示</menuHelpDemos>
  2218. <menuHelpDocumentation>文档</menuHelpDocumentation>
  2219. <menuHelpFAQPage>FAQ</menuHelpFAQPage>
  2220. <menuHelpForum>论坛</menuHelpForum>
  2221. <menuHelpHowToRegister>如何注册</menuHelpHowToRegister>
  2222. <menuHelpProductHomePage>产品主页</menuHelpProductHomePage>
  2223. <menuHelpSamples>示例</menuHelpSamples>
  2224. <menuHelpSupport>技术支持(&amp;S)</menuHelpSupport>
  2225. <menuHelpTrainingCourses>培训课程</menuHelpTrainingCourses>
  2226. <menuHelpVideos>视频</menuHelpVideos>
  2227. <menuInsertColumnToLeft>左侧插入列</menuInsertColumnToLeft>
  2228. <menuInsertColumnToRight>右侧插入列</menuInsertColumnToRight>
  2229. <menuInsertRowAbove>上方插入行</menuInsertRowAbove>
  2230. <menuInsertRowBelow>下方插入行</menuInsertRowBelow>
  2231. <menuJoinCells>连接单元格</menuJoinCells>
  2232. <menuMakeThisRelationActive>激活该关系</menuMakeThisRelationActive>
  2233. <menuSelectColumn>选择列</menuSelectColumn>
  2234. <menuSelectRow>选择行</menuSelectRow>
  2235. <menuTable>表格</menuTable>
  2236. <menuTools>工具(&amp;T)</menuTools>
  2237. <menuToolsDataStore>数据存储(&amp;S)...</menuToolsDataStore>
  2238. <menuToolsDictionary>字典(&amp;D)...</menuToolsDictionary>
  2239. <menuToolsOptions>选项(&amp;O)...</menuToolsOptions>
  2240. <menuToolsPagesManager>页面管理(&amp;P)...</menuToolsPagesManager>
  2241. <menuToolsServicesConfigurator>服务设置(&amp;C)...</menuToolsServicesConfigurator>
  2242. <menuToolsStyleDesigner>样式设计(&amp;D)...</menuToolsStyleDesigner>
  2243. <menuView>查看(&amp;V)</menuView>
  2244. <menuViewAlignToGrid>对齐到网格</menuViewAlignToGrid>
  2245. <menuViewNormal>普通(&amp;N)</menuViewNormal>
  2246. <menuViewOptions>选项</menuViewOptions>
  2247. <menuViewPageBreakPreview>分页预览(&amp;B)</menuViewPageBreakPreview>
  2248. <menuViewQuickInfo>提示信息</menuViewQuickInfo>
  2249. <menuViewQuickInfoNone>无</menuViewQuickInfoNone>
  2250. <menuViewQuickInfoOverlay>显示于组件之上</menuViewQuickInfoOverlay>
  2251. <menuViewQuickInfoShowAliases>显示别名</menuViewQuickInfoShowAliases>
  2252. <menuViewQuickInfoShowComponentsNames>显示组件名称</menuViewQuickInfoShowComponentsNames>
  2253. <menuViewQuickInfoShowContent>显示内容</menuViewQuickInfoShowContent>
  2254. <menuViewQuickInfoShowEvents>显示事件</menuViewQuickInfoShowEvents>
  2255. <menuViewQuickInfoShowFields>显示字段</menuViewQuickInfoShowFields>
  2256. <menuViewQuickInfoShowFieldsOnly>只显示字段</menuViewQuickInfoShowFieldsOnly>
  2257. <menuViewShowGrid>显示网格</menuViewShowGrid>
  2258. <menuViewShowHeaders>显示标题栏</menuViewShowHeaders>
  2259. <menuViewShowInsertTab>显示 '插入' 选项卡</menuViewShowInsertTab>
  2260. <menuViewShowOrder>显示次序</menuViewShowOrder>
  2261. <menuViewShowRulers>显示标尺</menuViewShowRulers>
  2262. <menuViewShowToolbox>显示工具箱</menuViewShowToolbox>
  2263. <menuViewToolbars>工具栏</menuViewToolbars>
  2264. </MainMenu>
  2265. <Map>
  2266. <LinkDataForm>链接数据</LinkDataForm>
  2267. <MapEditorForm>地图编辑器</MapEditorForm>
  2268. </Map>
  2269. <Messages>
  2270. <ChangeRequestTimeout>SQL查询的请求超时超过报表设计器的请求超时。将设计器组件的请求超时设置为不小于超过{0}秒。</ChangeRequestTimeout>
  2271. <DoNotShowAgain>不再显示</DoNotShowAgain>
  2272. <MessageTimeOutExpired>命令超时已过期!</MessageTimeOutExpired>
  2273. <RenderingWillOccurInTheInterpretationMode>查看共享报告时,以解释模式呈现!</RenderingWillOccurInTheInterpretationMode>
  2274. <ResourceCannotBeDeleted>资源 "{0}" 在报表中使用,无法删除!</ResourceCannotBeDeleted>
  2275. <ShareURLOfTheItemHasBeenUpdated>该项目的共享URL已更新!</ShareURLOfTheItemHasBeenUpdated>
  2276. <ShareYourReportYouShouldSave>为分享您的报表,请您将其保存到Stimulsoft云端!</ShareYourReportYouShouldSave>
  2277. <TextRegistrationSuccessfully>
  2278. 注册成功完成!
  2279. 电子邮件已发送至"{0}".
  2280. 该邮件包含一个确认注册的链接。请您按照邮件中的链接进行操作,完成注册。
  2281. </TextRegistrationSuccessfully>
  2282. <ThisFieldIsNotSpecified>未指定该字段!</ThisFieldIsNotSpecified>
  2283. <ThisFunctionEmbedsAllReportDataToTheReport>此功能将嵌入所有报表数据至报表资源中,并使您的报表独立。小心!您的所有数据设置将被更改,且不可复原。请先备份您的报表。{0}您确定吗?</ThisFunctionEmbedsAllReportDataToTheReport>
  2284. <YouNeedToLoginFirstToStartUsingTheSoftware>您需要先登录才能开始使用本软件。如果您退出登录,应用程序将关闭。</YouNeedToLoginFirstToStartUsingTheSoftware>
  2285. </Messages>
  2286. <Notices>
  2287. <AccessDenied>拒绝访问!</AccessDenied>
  2288. <AccountLocked>您的账户已被锁定。为解除锁定,请将您的请求发送至sales@stimulsoft.com!</AccountLocked>
  2289. <ActivationExpiriedBeforeFirstRelease>您订阅的报表编辑软件比我们的第一个版本早过期。服务器已发布!</ActivationExpiriedBeforeFirstRelease>
  2290. <ActivationLicenseIsNotCorrect>许可证文件不正确!请联系我们的销售部门sales@stimulsoft.com!</ActivationLicenseIsNotCorrect>
  2291. <ActivationLockedAccount>您的账户已被锁定。请联系我们的销售部门sales@stimulsoft.com!</ActivationLockedAccount>
  2292. <ActivationLockedAccountExt>您的帐户已锁定</ActivationLockedAccountExt>
  2293. <ActivationMaxActivationsReached>您已达到最大激活次数。请联系我们的销售部门sales@stimulsoft.com!</ActivationMaxActivationsReached>
  2294. <ActivationMaxComputersReached>您的机器注册数量已经达到最上限</ActivationMaxComputersReached>
  2295. <ActivationServerIsNotAvailableNow>报表编辑软件服务器现在不可用!请稍后再试!.</ActivationServerIsNotAvailableNow>
  2296. <ActivationServerVersionNotAllowed>您无法激活此版本的Stimulsoft Reports.服务器,因为您订阅的程序已过期!请登录您的账户,检查可以安装和激活的版本。</ActivationServerVersionNotAllowed>
  2297. <ActivationSomeTroublesOccurred>激活期间出错。请稍后再试。</ActivationSomeTroublesOccurred>
  2298. <ActivationTrialExpired>请您购买以继续使用Stimulsoft Designer</ActivationTrialExpired>
  2299. <ActivationUserNameOrPasswordIsWrong>您的用户名(电子邮件)或密码错误!</ActivationUserNameOrPasswordIsWrong>
  2300. <ActivationWrongAccountType>您的账户类型不允许激活服务器!</ActivationWrongAccountType>
  2301. <Alert>警告</Alert>
  2302. <AuthAccountCantBeUsedNow>该账户现在不能使用!</AuthAccountCantBeUsedNow>
  2303. <AuthAccountIsNotActivated>账户尚未激活! 请按照注册时发送到电子邮件的说明进行操作。</AuthAccountIsNotActivated>
  2304. <AuthCantChangeRoleBecauseLastAdministratorUser>无法更改用户角色,因为这是此工作区中的最后一个管理员用户!</AuthCantChangeRoleBecauseLastAdministratorUser>
  2305. <AuthCantChangeRoleBecauseLastSupervisorUser>无法更改用户角色,因为这是此服务器上的最后一个主管用户!</AuthCantChangeRoleBecauseLastSupervisorUser>
  2306. <AuthCantChangeSystemRole>无法更改系统角色!</AuthCantChangeSystemRole>
  2307. <AuthCantDeleteHimselfUser>用户不能删除自己!</AuthCantDeleteHimselfUser>
  2308. <AuthCantDeleteLastAdministratorUser>无法删除该用户,因为这是此工作区的最后一个管理员用户!</AuthCantDeleteLastAdministratorUser>
  2309. <AuthCantDeleteLastSupervisorUser>无法删除用户,因为这是此服务器上的最后一个主管用户!</AuthCantDeleteLastSupervisorUser>
  2310. <AuthCantDeleteSystemRole>无法删除该角色,因为它是系统角色!</AuthCantDeleteSystemRole>
  2311. <AuthCantDisableUserBecauseLastAdministratorUser>无法禁用用户,因为这是此工作区的最后一个管理员用户!</AuthCantDisableUserBecauseLastAdministratorUser>
  2312. <AuthCantDisableUserBecauseLastSupervisorUser>无法禁用用户,因为这是此服务器上的最后一个主管用户!</AuthCantDisableUserBecauseLastSupervisorUser>
  2313. <AuthFirstNameIsNotSpecified>未指定名字!</AuthFirstNameIsNotSpecified>
  2314. <AuthLastNameIsNotSpecified>未指定姓氏!</AuthLastNameIsNotSpecified>
  2315. <AuthOAuthIdNotSpecified>未指定OAuth标识!</AuthOAuthIdNotSpecified>
  2316. <AuthPasswordIsNotCorrect>密码错误!</AuthPasswordIsNotCorrect>
  2317. <AuthPasswordIsNotSpecified>未指定密码!</AuthPasswordIsNotSpecified>
  2318. <AuthPasswordIsTooShort>密码太短 (最小长度为6个字符)!</AuthPasswordIsTooShort>
  2319. <AuthRoleCantBeDeletedBecauseUsedByUsers>无法删除该角色,其他用户正在使用.</AuthRoleCantBeDeletedBecauseUsedByUsers>
  2320. <AuthRoleNameAlreadyExists>具有指定名称 "{0}"的用户已存在!</AuthRoleNameAlreadyExists>
  2321. <AuthRoleNameIsSystemRole>具有指定名称"{0}"的角色是系统角色!</AuthRoleNameIsSystemRole>
  2322. <AuthSendMessageWithInstructions>带有进一步说明的消息已发送到"{0}"!</AuthSendMessageWithInstructions>
  2323. <AuthTokenIsNotCorrect>Token 不正确!</AuthTokenIsNotCorrect>
  2324. <AuthUserHasLoggedOut>您已注销!</AuthUserHasLoggedOut>
  2325. <AuthUserNameAlreadyExists>用户名(电子邮件)已存在!</AuthUserNameAlreadyExists>
  2326. <AuthUserNameEmailIsBlocked>无法使用此电子邮件地址!</AuthUserNameEmailIsBlocked>
  2327. <AuthUserNameIsNotSpecified>未指定用户名(电子邮件)!</AuthUserNameIsNotSpecified>
  2328. <AuthUserNameNotAssociatedWithYourAccount>用户名(电子邮件){0}与您的{1}帐户无法关联!</AuthUserNameNotAssociatedWithYourAccount>
  2329. <AuthUserNameOrPasswordIsNotCorrect>用户名(电子邮件)或密码错误!</AuthUserNameOrPasswordIsNotCorrect>
  2330. <AuthUserNameShouldLookLikeAnEmailAddress>用户名应类似于电子邮件地址!</AuthUserNameShouldLookLikeAnEmailAddress>
  2331. <AuthWorkspaceNameAlreadyInUse>工作区名称已存在!</AuthWorkspaceNameAlreadyInUse>
  2332. <CommandTimeOut>处理命令的等待时间已过!</CommandTimeOut>
  2333. <Congratulations>祝贺您!</Congratulations>
  2334. <EndDateShouldBeGreaterThanCurrentDate>结束日期应大于当前日期!</EndDateShouldBeGreaterThanCurrentDate>
  2335. <EndDateShouldBeGreaterThanStartDate>结束日期应大于开始日期!</EndDateShouldBeGreaterThanStartDate>
  2336. <ExecutionError>执行错误</ExecutionError>
  2337. <IsIdentical>"{0}" 和 "{1}" 是相同的."</IsIdentical>
  2338. <IsNotAuthorized>无法访问"{0}"!</IsNotAuthorized>
  2339. <IsNotCorrect>"{0}" 错误!</IsNotCorrect>
  2340. <IsNotDeleted>"{0}"未删除!</IsNotDeleted>
  2341. <IsNotEqual>"{0}" 不相等!</IsNotEqual>
  2342. <IsNotFound>未找到"{0}" !</IsNotFound>
  2343. <IsNotRecognized>"{0}"无法识别!</IsNotRecognized>
  2344. <IsNotSpecified>"{0}"未指定!</IsNotSpecified>
  2345. <IsRequiredFile>您应该至少添加一个文件!</IsRequiredFile>
  2346. <ItemCantBeAttachedToItself>项目本身不能附加!</ItemCantBeAttachedToItself>
  2347. <ItemCantBeDeletedBecauseItemIsAttachedToOtherItems>无法删除元素"{0}" ,因为他们被附加到其他元素上!</ItemCantBeDeletedBecauseItemIsAttachedToOtherItems>
  2348. <ItemCantBeMovedToSpecifiedPlace>无法将项目移动至指定位置!</ItemCantBeMovedToSpecifiedPlace>
  2349. <ItemDoesNotSupport>该项不支持"{0}"!</ItemDoesNotSupport>
  2350. <KeyAndToKeyAreEqual>Key键和ToKey键是相等的!</KeyAndToKeyAreEqual>
  2351. <MaximumComputers>机器上限</MaximumComputers>
  2352. <MessageMaximumFileSizeExceeded>注意! 您试图添加的文件大小超过了允许的最大量,是否仍要添加此文件(报表处理可能会显著减慢)?</MessageMaximumFileSizeExceeded>
  2353. <NewDesignerAvailable>Stimulsoft Designer {0}可用</NewDesignerAvailable>
  2354. <NewProduct>新产品已添加到您的订阅中!</NewProduct>
  2355. <NewVersionsAvailable>新版本可用!</NewVersionsAvailable>
  2356. <NotificationFailed>结果失败!</NotificationFailed>
  2357. <NotificationFailedAddFollowingFiles>无法添加以下文件。超过了{0}MB的大小</NotificationFailedAddFollowingFiles>
  2358. <NotificationFilesUploadingComplete>文件上传成功.</NotificationFilesUploadingComplete>
  2359. <NotificationFileUploading>文件"{0}"正在上传.</NotificationFileUploading>
  2360. <NotificationItemDelete>项目正在删除.</NotificationItemDelete>
  2361. <NotificationItemDeleteComplete>已成功删除项目.</NotificationItemDeleteComplete>
  2362. <NotificationItemRestore>正在恢复项目.</NotificationItemRestore>
  2363. <NotificationItemRestoreComplete>已成功恢复项目.</NotificationItemRestoreComplete>
  2364. <NotificationItemTransfer>项目正在转移.</NotificationItemTransfer>
  2365. <NotificationItemTransferComplete>已成功转移项目.</NotificationItemTransferComplete>
  2366. <NotificationItemWaitingProcessing>项目正在等待处理.</NotificationItemWaitingProcessing>
  2367. <NotificationMailing>发送</NotificationMailing>
  2368. <NotificationMailingComplete>邮件"{0}" 已完成.</NotificationMailingComplete>
  2369. <NotificationMailingWaitingProcessing>邮件"{0}"正在等待处理.</NotificationMailingWaitingProcessing>
  2370. <NotificationOperationAborted>操作已终止!</NotificationOperationAborted>
  2371. <NotificationRecycleBinCleaning>回收站正在清理.</NotificationRecycleBinCleaning>
  2372. <NotificationRecycleBinCleaningComplete>回收站已成功清理.</NotificationRecycleBinCleaningComplete>
  2373. <NotificationRecycleBinWaitingProcessing>回收站清理正在等待处理.</NotificationRecycleBinWaitingProcessing>
  2374. <NotificationReportExporting>报表"{0}" 正在导出</NotificationReportExporting>
  2375. <NotificationReportExportingComplete>报表"{0}"已成功导出.</NotificationReportExportingComplete>
  2376. <NotificationReportRendering>正在打开报表"{0}"。</NotificationReportRendering>
  2377. <NotificationReportRenderingComplete>报表 "{0}" 已呈现.</NotificationReportRenderingComplete>
  2378. <NotificationReportWaitingProcessing>报表 "{0}"正在等待处理.</NotificationReportWaitingProcessing>
  2379. <NotificationSchedulerRunning>调度程序 "{0}" 正在运行.</NotificationSchedulerRunning>
  2380. <NotificationSchedulerRunningComplete>调度程序 "{0}" 完成运行.</NotificationSchedulerRunningComplete>
  2381. <NotificationSchedulerWaitingProcessing>调度程序 "{0}" 正在等待处理.</NotificationSchedulerWaitingProcessing>
  2382. <NotificationTitleFilesUploading>上传文件</NotificationTitleFilesUploading>
  2383. <NotificationTitleItemRefreshing>正在刷新"{0}"项目</NotificationTitleItemRefreshing>
  2384. <NotificationTitleItemTransferring>正在转移"{0}"项目</NotificationTitleItemTransferring>
  2385. <NotificationTitleMailing>正在邮寄"{0}"</NotificationTitleMailing>
  2386. <NotificationTitleReportExporting>正在导出"{0}"报告</NotificationTitleReportExporting>
  2387. <NotificationTitleReportRendering>正在打开"{0}"报告</NotificationTitleReportRendering>
  2388. <NotificationTitleSchedulerRunning>调度程序"{0}"正在运行</NotificationTitleSchedulerRunning>
  2389. <NotificationTransferring>"{0}"正在转移到"{1}".</NotificationTransferring>
  2390. <NotificationTransferringComplete>"{0}" 成功转移到"{1}".</NotificationTransferringComplete>
  2391. <NotificationValueIsNotCorrect>此值对类型{0}不正确</NotificationValueIsNotCorrect>
  2392. <OutOfRange>超出范围("{0}")!</OutOfRange>
  2393. <ParsingCommandException>处理指定的可拓展标记语言命令中的异常: {0}</ParsingCommandException>
  2394. <PleaseLogin>请在生成报表前使用您的Stimusoft账户登录或注册一个新账户。</PleaseLogin>
  2395. <QuotaMaximumComputingCyclesCountExceeded>超出最大计算周期数。</QuotaMaximumComputingCyclesCountExceeded>
  2396. <QuotaMaximumDataRowsCountExceeded>超出数据源中的最大数据行。</QuotaMaximumDataRowsCountExceeded>
  2397. <QuotaMaximumFileSizeExceeded>超出最大文件大小。</QuotaMaximumFileSizeExceeded>
  2398. <QuotaMaximumItemsCountExceeded>超出最大项目数。</QuotaMaximumItemsCountExceeded>
  2399. <QuotaMaximumRefreshCountExceeded>超过最大刷新次数</QuotaMaximumRefreshCountExceeded>
  2400. <QuotaMaximumReportPagesCountExceeded>超出最大报表页数。</QuotaMaximumReportPagesCountExceeded>
  2401. <QuotaMaximumResourcesCountExceeded>超出最大资源数。</QuotaMaximumResourcesCountExceeded>
  2402. <QuotaMaximumResourceSizeExceeded>超过最大资源大小</QuotaMaximumResourceSizeExceeded>
  2403. <QuotaMaximumUsersCountExceeded>超出最大用户数。</QuotaMaximumUsersCountExceeded>
  2404. <QuotaMaximumWorkspacesCountExceeded>超出最大工作区数。</QuotaMaximumWorkspacesCountExceeded>
  2405. <SchedulerCantRunItSelf>调度程序无法自行运行!</SchedulerCantRunItSelf>
  2406. <SessionTimeOut>会话超时</SessionTimeOut>
  2407. <SnapshotAlreadyProcessed>报表快照已处理完毕!</SnapshotAlreadyProcessed>
  2408. <SpecifiedItemIsNot>"{0}"不是指定项!</SpecifiedItemIsNot>
  2409. <SubscriptionExpired>您的订阅已过期!</SubscriptionExpired>
  2410. <SubscriptionExpiredDate>您的订阅将于{0}过期</SubscriptionExpiredDate>
  2411. <SubscriptionExpiredExt>您的订阅已过期,更新您的订阅以获得最新版本</SubscriptionExpiredExt>
  2412. <SubscriptionsOut10>订阅还有10天到期!</SubscriptionsOut10>
  2413. <SubscriptionsOut20>订阅将在20天后到期!</SubscriptionsOut20>
  2414. <SuccessfullyRenewed>您的订阅已成功更新!</SuccessfullyRenewed>
  2415. <TrialToLicense>感谢您选择了Stimulsoft!</TrialToLicense>
  2416. <VersionCopyFromItem>从项目"{0}"中复制。</VersionCopyFromItem>
  2417. <VersionCreatedFromFile>从文件"{0}"中创建。</VersionCreatedFromFile>
  2418. <VersionCreatedFromItem>从项目"{0}"中创建。</VersionCreatedFromItem>
  2419. <VersionLoadedFromFile>从文件"{0}"中加载。</VersionLoadedFromFile>
  2420. <VersionNewItemCreation>新项目创建。</VersionNewItemCreation>
  2421. <Warning>警告</Warning>
  2422. <WindowClosePreventWhileUploading>部分文件正在上传,现在关闭页面会丢失。您确定要关闭页面吗?</WindowClosePreventWhileUploading>
  2423. <WithSpecifiedKeyIsNotFound>找不到具有指定键的"{0}"!</WithSpecifiedKeyIsNotFound>
  2424. <WouldYouLikeToUpdateNow>您想现在更新吗?</WouldYouLikeToUpdateNow>
  2425. <YourTimeSessionHasExpired>您的时间会话已过期!</YourTimeSessionHasExpired>
  2426. <YourTrialHasExpired>您的试用期已过</YourTrialHasExpired>
  2427. <YourTrialWillExpire>您的试用将在{0}天内过期</YourTrialWillExpire>
  2428. <YouUsingTrialVersion>您正在使用试用版!</YouUsingTrialVersion>
  2429. </Notices>
  2430. <NuGet>
  2431. <AlreadyDownloaded>已下载</AlreadyDownloaded>
  2432. <AssemblyLoadedSuccessfully>程序集已成功加载。</AssemblyLoadedSuccessfully>
  2433. <AssemblyNotFound>不能找到程序集{0}来使用{1}连接!</AssemblyNotFound>
  2434. <Author>作者</Author>
  2435. <Dependencies>依赖关系:</Dependencies>
  2436. <Download>下载</Download>
  2437. <DownloadAll>全部下载</DownloadAll>
  2438. <DownloadAndInstall>下载并安装</DownloadAndInstall>
  2439. <DownloadDataAdapter>下载数据适配器</DownloadDataAdapter>
  2440. <Downloads>下载:</Downloads>
  2441. <IAccept>我接受</IAccept>
  2442. <IDecline>我拒绝</IDecline>
  2443. <LicenceFormDesc>以下软件包要求您在安装前接受其许可条款。</LicenceFormDesc>
  2444. <LicenceFormDesc1>单击“我接受”即表示您同意上述软件包的许可条款。如果您不同意许可条款,请点击“我拒绝”。</LicenceFormDesc1>
  2445. <LicenceFormTitle>接受许可证</LicenceFormTitle>
  2446. <License>许可证:</License>
  2447. <ProjectUrl>项目网址:</ProjectUrl>
  2448. <ReportAbuse>报表滥用:</ReportAbuse>
  2449. <RetrievingInformation>正在检索信息...</RetrievingInformation>
  2450. <Tags>标签:</Tags>
  2451. <Title>NuGet的数据适配器</Title>
  2452. <ViewLicense>查看许可证</ViewLicense>
  2453. </NuGet>
  2454. <Panels>
  2455. <Dictionary>字典</Dictionary>
  2456. <Messages>消息</Messages>
  2457. <Properties>属性</Properties>
  2458. <ReportTree>报表树</ReportTree>
  2459. </Panels>
  2460. <Password>
  2461. <gbPassword>文件加密</gbPassword>
  2462. <lbPasswordLoad>输入密码打开文件</lbPasswordLoad>
  2463. <lbPasswordSave>密码:</lbPasswordSave>
  2464. <PasswordNotEntered>密码无法登陆</PasswordNotEntered>
  2465. <StiLoadPasswordForm>文档加密</StiLoadPasswordForm>
  2466. <StiSavePasswordForm>密码</StiSavePasswordForm>
  2467. </Password>
  2468. <Permissions>
  2469. <AdminAPI>应用程序编程接口</AdminAPI>
  2470. <AdminBackgroundTasks>后台任务</AdminBackgroundTasks>
  2471. <AdminPermissions>权限</AdminPermissions>
  2472. <AdminRecycleBin>回收站</AdminRecycleBin>
  2473. <AdminShare>分享</AdminShare>
  2474. <AdminTransfers>转移</AdminTransfers>
  2475. <ItemCalendars>日历</ItemCalendars>
  2476. <ItemCloudStorages>云储存</ItemCloudStorages>
  2477. <ItemContactLists>联系人列表</ItemContactLists>
  2478. <ItemDashboards>仪表盘</ItemDashboards>
  2479. <ItemDataSources>数据源</ItemDataSources>
  2480. <ItemFiles>文件</ItemFiles>
  2481. <ItemFolders>文件夹</ItemFolders>
  2482. <ItemReportSnapshots>报表快照</ItemReportSnapshots>
  2483. <ItemReportTemplates>报表模板</ItemReportTemplates>
  2484. <ItemSchedulers>调度程序</ItemSchedulers>
  2485. <ReportDesignerBusinessObjects>业务对象</ReportDesignerBusinessObjects>
  2486. <ReportDesignerDataColumns>数据列</ReportDesignerDataColumns>
  2487. <ReportDesignerDataConnections>数据连接</ReportDesignerDataConnections>
  2488. <ReportDesignerDataRelations>数据关系</ReportDesignerDataRelations>
  2489. <ReportDesignerDataSources>数据源</ReportDesignerDataSources>
  2490. <ReportDesignerDictionaryActions>字典操作</ReportDesignerDictionaryActions>
  2491. <ReportDesignerRestrictions>限制</ReportDesignerRestrictions>
  2492. <ReportDesignerVariables>变量</ReportDesignerVariables>
  2493. <SystemBackupRestore>备份&amp; 恢复</SystemBackupRestore>
  2494. <SystemEmailTemplates>邮件模板</SystemEmailTemplates>
  2495. <SystemLicensing>许可</SystemLicensing>
  2496. <SystemMonitoring>监控</SystemMonitoring>
  2497. <SystemUpdate>更新</SystemUpdate>
  2498. <SystemWorkspaces>工作区</SystemWorkspaces>
  2499. <TextAdministration>管理</TextAdministration>
  2500. <TextItems>项目</TextItems>
  2501. <TextReportDesigner>报表设计器</TextReportDesigner>
  2502. <TextSystem>系统</TextSystem>
  2503. <TextUsers>用户</TextUsers>
  2504. <UserHimself>自己</UserHimself>
  2505. <UserRoles>角色</UserRoles>
  2506. <Users>用户</Users>
  2507. <UserWorkspace>工作区</UserWorkspace>
  2508. </Permissions>
  2509. <PlacementComponent>
  2510. <MoveLeftFreeSpace>将控件移动到空白区域的左边,将控件高度增加到空白空间高度.</MoveLeftFreeSpace>
  2511. <MoveRightFreeSpace>将控件移动到空白空间的右边,将控件高度增加到空白空间高度.</MoveRightFreeSpace>
  2512. </PlacementComponent>
  2513. <PropertyCategory>
  2514. <AppearanceCategory>外观</AppearanceCategory>
  2515. <AreaCategory>区域</AreaCategory>
  2516. <ArgumentCategory>参数</ArgumentCategory>
  2517. <AxisCategory>轴线</AxisCategory>
  2518. <BarCodeAdditionalCategory>附加条形码</BarCodeAdditionalCategory>
  2519. <BarCodeCategory>条形码</BarCodeCategory>
  2520. <BehaviorCategory>行为</BehaviorCategory>
  2521. <CapNeedle>帽针</CapNeedle>
  2522. <CellCategory>单元格</CellCategory>
  2523. <ChartAdditionalCategory>附加图表</ChartAdditionalCategory>
  2524. <ChartCategory>图标</ChartCategory>
  2525. <ChartMap>Map地图</ChartMap>
  2526. <CheckCategory>复选</CheckCategory>
  2527. <ColorsCategory>颜色</ColorsCategory>
  2528. <ColumnsCategory>分栏</ColumnsCategory>
  2529. <ComboBoxCategory>组合框</ComboBoxCategory>
  2530. <CommonCategory>共同</CommonCategory>
  2531. <ControlCategory>控件</ControlCategory>
  2532. <ControlsEventsCategory>控件事件</ControlsEventsCategory>
  2533. <CrossTabCategory>交叉 Tab</CrossTabCategory>
  2534. <DashboardCategory>仪表盘</DashboardCategory>
  2535. <DataCategory>数据</DataCategory>
  2536. <DataCells>数据单元</DataCells>
  2537. <DatePickerCategory>日期选择器</DatePickerCategory>
  2538. <DescriptionCategory>描述</DescriptionCategory>
  2539. <DesignCategory>设计</DesignCategory>
  2540. <DisplayCategory>显示</DisplayCategory>
  2541. <EngineCategory>工具</EngineCategory>
  2542. <ExportCategory>导出</ExportCategory>
  2543. <ExportEventsCategory>导出事件</ExportEventsCategory>
  2544. <FooterTableCategory>页脚表</FooterTableCategory>
  2545. <GaugeCategory>量规</GaugeCategory>
  2546. <GlobalizationCategory>全球化</GlobalizationCategory>
  2547. <GridLinesCategory>网格线</GridLinesCategory>
  2548. <HeaderTableCategory>标题表</HeaderTableCategory>
  2549. <HierarchicalCategory>分级</HierarchicalCategory>
  2550. <ImageAdditionalCategory>附加图片</ImageAdditionalCategory>
  2551. <ImageCategory>图片</ImageCategory>
  2552. <IndicatorCategory>指示符</IndicatorCategory>
  2553. <InterlacingCategory>交错</InterlacingCategory>
  2554. <LabelsCategory>标签</LabelsCategory>
  2555. <LegendCategory>图例</LegendCategory>
  2556. <ListBoxCategory>列表框</ListBoxCategory>
  2557. <MainCategory>Main</MainCategory>
  2558. <MarkerCategory>标注</MarkerCategory>
  2559. <MiscCategory>其他</MiscCategory>
  2560. <MouseEventsCategory>鼠标事件</MouseEventsCategory>
  2561. <NavigationCategory>导航</NavigationCategory>
  2562. <NavigationEventsCategory>导航事件</NavigationEventsCategory>
  2563. <Needle>指针</Needle>
  2564. <OnlineMapCategory>在线地图</OnlineMapCategory>
  2565. <OptionsCategory>选项</OptionsCategory>
  2566. <PageAdditionalCategory>附加页面</PageAdditionalCategory>
  2567. <PageCategory>页面</PageCategory>
  2568. <PageColumnBreakCategory>分页</PageColumnBreakCategory>
  2569. <ParametersCategory>参数</ParametersCategory>
  2570. <PivotTableCategory>数据透视表</PivotTableCategory>
  2571. <PositionCategory>位置</PositionCategory>
  2572. <PrimitiveCategory>图元</PrimitiveCategory>
  2573. <PrintEventsCategory>打印事件</PrintEventsCategory>
  2574. <ProgressCategory>进程</ProgressCategory>
  2575. <RegionMapCategory>区域地图</RegionMapCategory>
  2576. <RenderEventsCategory>渲染事件</RenderEventsCategory>
  2577. <SeriesCategory>系列</SeriesCategory>
  2578. <SeriesLabelsCategory>系列标签</SeriesLabelsCategory>
  2579. <ShapeCategory>形状</ShapeCategory>
  2580. <Size>尺寸</Size>
  2581. <SubReportCategory>子报表</SubReportCategory>
  2582. <TableCategory>表</TableCategory>
  2583. <TableOfContents>目录</TableOfContents>
  2584. <TextAdditionalCategory>附加文本</TextAdditionalCategory>
  2585. <TextCategory>文本</TextCategory>
  2586. <TitleCategory>标题</TitleCategory>
  2587. <TreeViewBoxCategory>树视图框</TreeViewBoxCategory>
  2588. <TreeViewCategory>树视图</TreeViewCategory>
  2589. <TrendLineCategory>趋势线</TrendLineCategory>
  2590. <ValueCategory>值</ValueCategory>
  2591. <ValueCloseCategory>收盘值</ValueCloseCategory>
  2592. <ValueEndCategory>Value End</ValueEndCategory>
  2593. <ValueEventsCategory>值事件</ValueEventsCategory>
  2594. <ValueHighCategory>最高值</ValueHighCategory>
  2595. <ValueLowCategory>最低值</ValueLowCategory>
  2596. <ValueOpenCategory>开盘值</ValueOpenCategory>
  2597. <ViewCategory>视图</ViewCategory>
  2598. <WeightCategory>加权</WeightCategory>
  2599. <WinControlCategory>Windows 控件</WinControlCategory>
  2600. <ZipCodeCategory>邮码</ZipCodeCategory>
  2601. </PropertyCategory>
  2602. <PropertyColor>
  2603. <AliceBlue>湖色</AliceBlue>
  2604. <AntiqueWhite>古典白色</AntiqueWhite>
  2605. <Aqua>浅绿色</Aqua>
  2606. <Aquamarine>海蓝色</Aquamarine>
  2607. <Azure>天蓝色</Azure>
  2608. <Beige>米色</Beige>
  2609. <Bisque>桔黄色</Bisque>
  2610. <Black>黑色</Black>
  2611. <BlanchedAlmond>白杏色</BlanchedAlmond>
  2612. <Blue>蓝色</Blue>
  2613. <BlueViolet>蓝紫色</BlueViolet>
  2614. <Brown>褐色</Brown>
  2615. <BurlyWood>实木色</BurlyWood>
  2616. <CadetBlue>刺桧蓝色</CadetBlue>
  2617. <Carmine>紫红色</Carmine>
  2618. <Chartreuse>亮黄绿色</Chartreuse>
  2619. <Chocolate>巧克力色</Chocolate>
  2620. <Coral>珊瑚色</Coral>
  2621. <CornflowerBlue>矢车菊色</CornflowerBlue>
  2622. <Cornsilk>谷丝色</Cornsilk>
  2623. <Crimson>深红色</Crimson>
  2624. <Cyan>青色</Cyan>
  2625. <DarkBlue>深蓝色</DarkBlue>
  2626. <DarkCyan>深青色</DarkCyan>
  2627. <DarkGoldenrod>深金杆色</DarkGoldenrod>
  2628. <DarkGray>深灰色</DarkGray>
  2629. <DarkGreen>深绿色</DarkGreen>
  2630. <DarkKhaki>深黄褐色</DarkKhaki>
  2631. <DarkMagenta>深洋红色</DarkMagenta>
  2632. <DarkOliveGreen>深橄榄绿色</DarkOliveGreen>
  2633. <DarkOrange>深橙色</DarkOrange>
  2634. <DarkOrchid>深紫色</DarkOrchid>
  2635. <DarkRed>深红色</DarkRed>
  2636. <DarkSalmon>深肉色</DarkSalmon>
  2637. <DarkSeaGreen>深海绿色</DarkSeaGreen>
  2638. <DarkSlateBlue>深暗灰蓝色</DarkSlateBlue>
  2639. <DarkSlateGray>深暗蓝灰色</DarkSlateGray>
  2640. <DarkTurquoise>深青绿色</DarkTurquoise>
  2641. <DarkViolet>深紫色</DarkViolet>
  2642. <DeepPink>深粉色</DeepPink>
  2643. <DeepSkyBlue>深天蓝色</DeepSkyBlue>
  2644. <DimGray>暗灰色</DimGray>
  2645. <DodgerBlue>遮板蓝色</DodgerBlue>
  2646. <Firebrick>砖色</Firebrick>
  2647. <FloralWhite>花白色</FloralWhite>
  2648. <ForestGreen>葱绿色</ForestGreen>
  2649. <Fuchsia>紫红色</Fuchsia>
  2650. <Gainsboro>庚斯博罗灰色</Gainsboro>
  2651. <GhostWhite>幽灵白色</GhostWhite>
  2652. <Gold>金黄色</Gold>
  2653. <Goldenrod>金杆黄色</Goldenrod>
  2654. <Gray>灰色</Gray>
  2655. <Green>绿色</Green>
  2656. <GreenYellow>绿黄色</GreenYellow>
  2657. <Honeydew>蜜汁色</Honeydew>
  2658. <HotPink>亮粉色</HotPink>
  2659. <IndianRed>印第安红色</IndianRed>
  2660. <Indigo>靛青色</Indigo>
  2661. <Ivory>象牙色</Ivory>
  2662. <Khaki>黄褐色</Khaki>
  2663. <Lavender>淡紫色</Lavender>
  2664. <LavenderBlush>浅紫红色</LavenderBlush>
  2665. <LawnGreen>草绿色</LawnGreen>
  2666. <LemonChiffon>柠檬纱色</LemonChiffon>
  2667. <LightBlue>浅蓝色</LightBlue>
  2668. <LightCoral>浅珊瑚色</LightCoral>
  2669. <LightCyan>浅青色</LightCyan>
  2670. <LightGoldenrodYellow>浅金杆黄色</LightGoldenrodYellow>
  2671. <LightGray>浅灰色</LightGray>
  2672. <LightGreen>浅绿色</LightGreen>
  2673. <LightPink>浅粉色</LightPink>
  2674. <LightSalmon>浅肉色</LightSalmon>
  2675. <LightSeaGreen>浅海绿色</LightSeaGreen>
  2676. <LightSkyBlue>浅天蓝色</LightSkyBlue>
  2677. <LightSlateGray>浅暗蓝灰色</LightSlateGray>
  2678. <LightSteelBlue>浅钢青色</LightSteelBlue>
  2679. <LightYellow>浅黄色</LightYellow>
  2680. <Lime>酸橙色</Lime>
  2681. <LimeGreen>橙绿色</LimeGreen>
  2682. <Linen>亚麻色</Linen>
  2683. <Magenta>洋红色</Magenta>
  2684. <Maroon>栗色
  2685. </Maroon>
  2686. <MediumAquamarine>间绿色</MediumAquamarine>
  2687. <MediumBlue>间蓝色</MediumBlue>
  2688. <MediumOrchid>间紫色</MediumOrchid>
  2689. <MediumPurple>间紫红色
  2690. </MediumPurple>
  2691. <MediumSeaGreen>间海绿色</MediumSeaGreen>
  2692. <MediumSlateBlue>间暗蓝色</MediumSlateBlue>
  2693. <MediumSpringGreen>间春绿色</MediumSpringGreen>
  2694. <MediumTurquoise>间绿宝石色</MediumTurquoise>
  2695. <MediumVioletRed>间紫罗兰色</MediumVioletRed>
  2696. <MidnightBlue>中灰蓝色</MidnightBlue>
  2697. <MintCream>薄荷色</MintCream>
  2698. <MistyRose>浅玫瑰色</MistyRose>
  2699. <Moccasin>鹿皮色</Moccasin>
  2700. <NavajoWhite>纳瓦白</NavajoWhite>
  2701. <Navy>藏青色</Navy>
  2702. <OldLace>老花色</OldLace>
  2703. <Olive>橄榄色</Olive>
  2704. <OliveDrab>深绿褐色</OliveDrab>
  2705. <Orange>橙色</Orange>
  2706. <OrangeRed>橙红色</OrangeRed>
  2707. <Orchid>淡紫色</Orchid>
  2708. <PaleGoldenrod>苍麒麟色</PaleGoldenrod>
  2709. <PaleGreen>苍绿色</PaleGreen>
  2710. <PaleTurquoise>苍绿松色</PaleTurquoise>
  2711. <PaleVioletRed>苍紫罗蓝色</PaleVioletRed>
  2712. <PapayaWhip>番木色</PapayaWhip>
  2713. <PeachPuff>桃色</PeachPuff>
  2714. <Peru>秘鲁色</Peru>
  2715. <Pink>粉红色</Pink>
  2716. <Plum>杨李色</Plum>
  2717. <PowderBlue>粉蓝色</PowderBlue>
  2718. <Purple>紫红色</Purple>
  2719. <Red>红色</Red>
  2720. <RosyBrown>褐玫瑰红</RosyBrown>
  2721. <RoyalBlue>宝蓝色</RoyalBlue>
  2722. <SaddleBrown>重褐色</SaddleBrown>
  2723. <Salmon>鲜肉色</Salmon>
  2724. <SandyBrown>沙褐色</SandyBrown>
  2725. <SeaGreen>海绿色</SeaGreen>
  2726. <SeaShell>海贝色</SeaShell>
  2727. <Sienna>赭色</Sienna>
  2728. <Silver>银白色</Silver>
  2729. <SkyBlue>天蓝色</SkyBlue>
  2730. <SlateBlue>石蓝色</SlateBlue>
  2731. <SlateGray>灰石色</SlateGray>
  2732. <Snow>雪白色</Snow>
  2733. <SpringGreen>春绿色</SpringGreen>
  2734. <SteelBlue>钢蓝色</SteelBlue>
  2735. <Tan>茶色</Tan>
  2736. <Teal>水鸭色</Teal>
  2737. <Thistle>蓟色</Thistle>
  2738. <Tomato>番茄色</Tomato>
  2739. <Transparent>透明色</Transparent>
  2740. <Turquoise>翠蓝色</Turquoise>
  2741. <VeryDarkGray>深灰色</VeryDarkGray>
  2742. <Violet>紫色</Violet>
  2743. <Wheat>浅黄色</Wheat>
  2744. <White>白色</White>
  2745. <WhiteSmoke>烟白色</WhiteSmoke>
  2746. <Yellow>黄色</Yellow>
  2747. <YellowGreen>黄绿色</YellowGreen>
  2748. </PropertyColor>
  2749. <PropertyEnum>
  2750. <boolFalse>假</boolFalse>
  2751. <boolTrue>真</boolTrue>
  2752. <BorderStyleFixed3D>Fixed 3D</BorderStyleFixed3D>
  2753. <BorderStyleFixedSingle>Fixed Single</BorderStyleFixedSingle>
  2754. <BorderStyleNone>无</BorderStyleNone>
  2755. <ChartAxesTicksAll>全部</ChartAxesTicksAll>
  2756. <ChartAxesTicksMajor>主要</ChartAxesTicksMajor>
  2757. <ChartAxesTicksNone>无</ChartAxesTicksNone>
  2758. <ChartGridLinesAll>全部</ChartGridLinesAll>
  2759. <ChartGridLinesMajor>主要</ChartGridLinesMajor>
  2760. <ChartGridLinesNone>无</ChartGridLinesNone>
  2761. <ComboBoxStyleDropDown>下拉</ComboBoxStyleDropDown>
  2762. <ComboBoxStyleDropDownList>下拉列表</ComboBoxStyleDropDownList>
  2763. <ComboBoxStyleSimple>简单</ComboBoxStyleSimple>
  2764. <ContentAlignmentBottomCenter>底端居中</ContentAlignmentBottomCenter>
  2765. <ContentAlignmentBottomLeft>底端居左</ContentAlignmentBottomLeft>
  2766. <ContentAlignmentBottomRight>底端居右</ContentAlignmentBottomRight>
  2767. <ContentAlignmentMiddleCenter>中间居中</ContentAlignmentMiddleCenter>
  2768. <ContentAlignmentMiddleLeft>中间居左</ContentAlignmentMiddleLeft>
  2769. <ContentAlignmentMiddleRight>中间居右</ContentAlignmentMiddleRight>
  2770. <ContentAlignmentTopCenter>顶端居中</ContentAlignmentTopCenter>
  2771. <ContentAlignmentTopLeft>顶端居左</ContentAlignmentTopLeft>
  2772. <ContentAlignmentTopRight>顶端居右</ContentAlignmentTopRight>
  2773. <DataGridLineStyleNone>无</DataGridLineStyleNone>
  2774. <DataGridLineStyleSolid>实线</DataGridLineStyleSolid>
  2775. <DateTimePickerFormatCustom>自定义</DateTimePickerFormatCustom>
  2776. <DateTimePickerFormatLong>长</DateTimePickerFormatLong>
  2777. <DateTimePickerFormatShort>短</DateTimePickerFormatShort>
  2778. <DateTimePickerFormatTime>时间</DateTimePickerFormatTime>
  2779. <DialogResultAbort>中断</DialogResultAbort>
  2780. <DialogResultCancel>取消</DialogResultCancel>
  2781. <DialogResultIgnore>忽略</DialogResultIgnore>
  2782. <DialogResultNo>否</DialogResultNo>
  2783. <DialogResultNone>无</DialogResultNone>
  2784. <DialogResultOK>是</DialogResultOK>
  2785. <DialogResultRetry>重试</DialogResultRetry>
  2786. <DialogResultYes>是</DialogResultYes>
  2787. <DockStyleBottom>按钮</DockStyleBottom>
  2788. <DockStyleFill>填充</DockStyleFill>
  2789. <DockStyleLeft>左</DockStyleLeft>
  2790. <DockStyleNone>无</DockStyleNone>
  2791. <DockStyleRight>右</DockStyleRight>
  2792. <DockStyleTop>上</DockStyleTop>
  2793. <DuplexDefault>默认</DuplexDefault>
  2794. <DuplexHorizontal>水平</DuplexHorizontal>
  2795. <DuplexSimplex>单一</DuplexSimplex>
  2796. <DuplexVertical>垂直</DuplexVertical>
  2797. <FormStartPositionCenterParent>父窗体居中</FormStartPositionCenterParent>
  2798. <FormStartPositionCenterScreen>屏幕居中</FormStartPositionCenterScreen>
  2799. <FormStartPositionManual>手动</FormStartPositionManual>
  2800. <FormStartPositionWindowsDefaultBounds>窗口默认范围</FormStartPositionWindowsDefaultBounds>
  2801. <FormStartPositionWindowsDefaultLocation>窗口默认位置</FormStartPositionWindowsDefaultLocation>
  2802. <FormWindowStateMaximized>最大化</FormWindowStateMaximized>
  2803. <FormWindowStateMinimized>最小化</FormWindowStateMinimized>
  2804. <FormWindowStateNormal>正常</FormWindowStateNormal>
  2805. <HorizontalAlignmentCenter>居中</HorizontalAlignmentCenter>
  2806. <HorizontalAlignmentLeft>居左</HorizontalAlignmentLeft>
  2807. <HorizontalAlignmentRight>居右</HorizontalAlignmentRight>
  2808. <HotkeyPrefixHide>隐藏</HotkeyPrefixHide>
  2809. <HotkeyPrefixNone>无</HotkeyPrefixNone>
  2810. <HotkeyPrefixShow>显示</HotkeyPrefixShow>
  2811. <LeftRightAlignmentLeft>居左</LeftRightAlignmentLeft>
  2812. <LeftRightAlignmentRight>居右</LeftRightAlignmentRight>
  2813. <PictureBoxSizeModeAutoSize>自动调整</PictureBoxSizeModeAutoSize>
  2814. <PictureBoxSizeModeCenterImage>图片中间</PictureBoxSizeModeCenterImage>
  2815. <PictureBoxSizeModeNormal>正常</PictureBoxSizeModeNormal>
  2816. <PictureBoxSizeModeStretchImage>适应图片</PictureBoxSizeModeStretchImage>
  2817. <RelationDirectionChildToParent>儿童与家长</RelationDirectionChildToParent>
  2818. <RelationDirectionParentToChild>家长与儿童</RelationDirectionParentToChild>
  2819. <RightToLeftInherit>继承</RightToLeftInherit>
  2820. <RightToLeftNo>否</RightToLeftNo>
  2821. <RightToLeftYes>是</RightToLeftYes>
  2822. <SelectionModeMultiExtended>扩展复选</SelectionModeMultiExtended>
  2823. <SelectionModeMultiSimple>简单复选</SelectionModeMultiSimple>
  2824. <SelectionModeNone>无</SelectionModeNone>
  2825. <SelectionModeOne>单选</SelectionModeOne>
  2826. <StiAnchorModeBottom>底部</StiAnchorModeBottom>
  2827. <StiAnchorModeLeft>左边</StiAnchorModeLeft>
  2828. <StiAnchorModeRight>右边</StiAnchorModeRight>
  2829. <StiAnchorModeTop>顶端</StiAnchorModeTop>
  2830. <StiAngleAngle0>0度</StiAngleAngle0>
  2831. <StiAngleAngle180>180度</StiAngleAngle180>
  2832. <StiAngleAngle270>270度</StiAngleAngle270>
  2833. <StiAngleAngle45>45度</StiAngleAngle45>
  2834. <StiAngleAngle90>90度</StiAngleAngle90>
  2835. <StiArrowStyleArc>弧</StiArrowStyleArc>
  2836. <StiArrowStyleArcAndCircle>圆弧</StiArrowStyleArcAndCircle>
  2837. <StiArrowStyleCircle>圆</StiArrowStyleCircle>
  2838. <StiArrowStyleLines>线</StiArrowStyleLines>
  2839. <StiArrowStyleNone>无</StiArrowStyleNone>
  2840. <StiArrowStyleTriangle>三角形</StiArrowStyleTriangle>
  2841. <StiBorderSidesAll>全部</StiBorderSidesAll>
  2842. <StiBorderSidesBottom>底部</StiBorderSidesBottom>
  2843. <StiBorderSidesLeft>左侧</StiBorderSidesLeft>
  2844. <StiBorderSidesNone>无</StiBorderSidesNone>
  2845. <StiBorderSidesRight>右侧</StiBorderSidesRight>
  2846. <StiBorderSidesTop>上部</StiBorderSidesTop>
  2847. <StiBorderStyleBump>隆起</StiBorderStyleBump>
  2848. <StiBorderStyleEtched>蚀化</StiBorderStyleEtched>
  2849. <StiBorderStyleFlat>平直</StiBorderStyleFlat>
  2850. <StiBorderStyleNone>无</StiBorderStyleNone>
  2851. <StiBorderStyleRaised>凸起</StiBorderStyleRaised>
  2852. <StiBorderStyleRaisedInner>内部凸起</StiBorderStyleRaisedInner>
  2853. <StiBorderStyleRaisedOuter>外部凸起</StiBorderStyleRaisedOuter>
  2854. <StiBorderStyleSunken>凹陷</StiBorderStyleSunken>
  2855. <StiBorderStyleSunkenInner>内部凹陷</StiBorderStyleSunkenInner>
  2856. <StiBorderStyleSunkenOuter>外部凹陷</StiBorderStyleSunkenOuter>
  2857. <StiBrushTypeGlare>眩光刷</StiBrushTypeGlare>
  2858. <StiBrushTypeGradient0>渐变刷, 角度 0</StiBrushTypeGradient0>
  2859. <StiBrushTypeGradient180>渐变刷, 180度</StiBrushTypeGradient180>
  2860. <StiBrushTypeGradient270>渐变刷, 270度</StiBrushTypeGradient270>
  2861. <StiBrushTypeGradient45>渐变刷, 45度</StiBrushTypeGradient45>
  2862. <StiBrushTypeGradient90>渐变刷, 90度</StiBrushTypeGradient90>
  2863. <StiBrushTypeSolid>实心刷</StiBrushTypeSolid>
  2864. <StiCalculationModeCompilation>编译</StiCalculationModeCompilation>
  2865. <StiCalculationModeInterpretation>说明</StiCalculationModeInterpretation>
  2866. <StiCapStyleArrow>箭头</StiCapStyleArrow>
  2867. <StiCapStyleDiamond>菱形</StiCapStyleDiamond>
  2868. <StiCapStyleNone>无</StiCapStyleNone>
  2869. <StiCapStyleOpen>打开</StiCapStyleOpen>
  2870. <StiCapStyleOval>椭圆</StiCapStyleOval>
  2871. <StiCapStyleSquare>正方形</StiCapStyleSquare>
  2872. <StiCapStyleStealth>隐形</StiCapStyleStealth>
  2873. <StiChartLabelsStyleCategory>类别</StiChartLabelsStyleCategory>
  2874. <StiChartLabelsStyleCategoryPercentOfTotal>类别 - 总额百分比</StiChartLabelsStyleCategoryPercentOfTotal>
  2875. <StiChartLabelsStyleCategoryValue>类别 - 值</StiChartLabelsStyleCategoryValue>
  2876. <StiChartLabelsStylePercentOfTotal>总额百分比</StiChartLabelsStylePercentOfTotal>
  2877. <StiChartLabelsStyleValue>值</StiChartLabelsStyleValue>
  2878. <StiChartTitleDockBottom>底部</StiChartTitleDockBottom>
  2879. <StiChartTitleDockLeft>左端</StiChartTitleDockLeft>
  2880. <StiChartTitleDockRight>右端</StiChartTitleDockRight>
  2881. <StiChartTitleDockTop>顶部</StiChartTitleDockTop>
  2882. <StiChartTrendLineTypeExponential>指数</StiChartTrendLineTypeExponential>
  2883. <StiChartTrendLineTypeLinear>线型</StiChartTrendLineTypeLinear>
  2884. <StiChartTrendLineTypeLogarithmic>对数</StiChartTrendLineTypeLogarithmic>
  2885. <StiChartTrendLineTypeNone>无</StiChartTrendLineTypeNone>
  2886. <StiCheckStyleCheck>复选</StiCheckStyleCheck>
  2887. <StiCheckStyleCheckRectangle>Check Rectangle</StiCheckStyleCheckRectangle>
  2888. <StiCheckStyleCross>交叉</StiCheckStyleCross>
  2889. <StiCheckStyleCrossCircle>Cross Circle</StiCheckStyleCrossCircle>
  2890. <StiCheckStyleCrossRectangle>Cross Rectangle</StiCheckStyleCrossRectangle>
  2891. <StiCheckStyleDotCircle>Dot Circle</StiCheckStyleDotCircle>
  2892. <StiCheckStyleDotRectangle>Dot Rectangle</StiCheckStyleDotRectangle>
  2893. <StiCheckStyleNone>None</StiCheckStyleNone>
  2894. <StiCheckStyleNoneCircle>None Circle</StiCheckStyleNoneCircle>
  2895. <StiCheckStyleNoneRectangle>None Rectangle</StiCheckStyleNoneRectangle>
  2896. <StiCheckSumNo>否</StiCheckSumNo>
  2897. <StiCheckSumYes>是</StiCheckSumYes>
  2898. <StiCode11CheckSumAuto>自动</StiCode11CheckSumAuto>
  2899. <StiCode11CheckSumNone>无</StiCode11CheckSumNone>
  2900. <StiCode11CheckSumOneDigit>一位数字</StiCode11CheckSumOneDigit>
  2901. <StiCode11CheckSumTwoDigits>两位数字</StiCode11CheckSumTwoDigits>
  2902. <StiColorScaleTypeColor2>2-颜色刻度</StiColorScaleTypeColor2>
  2903. <StiColorScaleTypeColor3>3-颜色刻度</StiColorScaleTypeColor3>
  2904. <StiColumnDirectionAcrossThenDown>交叉再向下</StiColumnDirectionAcrossThenDown>
  2905. <StiColumnDirectionDownThenAcross>向下再交叉</StiColumnDirectionDownThenAcross>
  2906. <StiCrossHorAlignmentCenter>居中</StiCrossHorAlignmentCenter>
  2907. <StiCrossHorAlignmentLeft>居左</StiCrossHorAlignmentLeft>
  2908. <StiCrossHorAlignmentNone>无</StiCrossHorAlignmentNone>
  2909. <StiCrossHorAlignmentRight>居右</StiCrossHorAlignmentRight>
  2910. <StiDateSelectionModeAutoRange>自动范围</StiDateSelectionModeAutoRange>
  2911. <StiDateSelectionModeRange>范围</StiDateSelectionModeRange>
  2912. <StiDateSelectionModeSingle>单独</StiDateSelectionModeSingle>
  2913. <StiDateTimeTypeDate>日期</StiDateTimeTypeDate>
  2914. <StiDateTimeTypeDateAndTime>时间和日期</StiDateTimeTypeDateAndTime>
  2915. <StiDateTimeTypeTime>时间</StiDateTimeTypeTime>
  2916. <StiDesignerScaleModeAutomaticScaling>自动缩放</StiDesignerScaleModeAutomaticScaling>
  2917. <StiDesignerScaleModeScaling100>100%缩放</StiDesignerScaleModeScaling100>
  2918. <StiDesignerSpecificationAuto>自动决定</StiDesignerSpecificationAuto>
  2919. <StiDesignerSpecificationBeginner>我是初学者</StiDesignerSpecificationBeginner>
  2920. <StiDesignerSpecificationBICreator>我是BI创建者</StiDesignerSpecificationBICreator>
  2921. <StiDesignerSpecificationDeveloper>我是开发者</StiDesignerSpecificationDeveloper>
  2922. <StiDisplayNameTypeFull>完整</StiDisplayNameTypeFull>
  2923. <StiDisplayNameTypeNone>无</StiDisplayNameTypeNone>
  2924. <StiDisplayNameTypeShort>简短</StiDisplayNameTypeShort>
  2925. <StiDockStyleBottom>底部</StiDockStyleBottom>
  2926. <StiDockStyleFill>填充</StiDockStyleFill>
  2927. <StiDockStyleLeft>左</StiDockStyleLeft>
  2928. <StiDockStyleNone>无</StiDockStyleNone>
  2929. <StiDockStyleRight>右</StiDockStyleRight>
  2930. <StiDockStyleTop>顶部</StiDockStyleTop>
  2931. <StiDrillDownModeMultiPage>多页</StiDrillDownModeMultiPage>
  2932. <StiDrillDownModeSinglePage>单页</StiDrillDownModeSinglePage>
  2933. <StiEanSupplementTypeFiveDigit>五位</StiEanSupplementTypeFiveDigit>
  2934. <StiEanSupplementTypeNone>无</StiEanSupplementTypeNone>
  2935. <StiEanSupplementTypeTwoDigit>两位</StiEanSupplementTypeTwoDigit>
  2936. <StiEmptyCellsAsConnectPointsWithLine>连接点线</StiEmptyCellsAsConnectPointsWithLine>
  2937. <StiEmptyCellsAsGap>差距</StiEmptyCellsAsGap>
  2938. <StiEmptyCellsAsZero>零</StiEmptyCellsAsZero>
  2939. <StiEmptySizeModeAlignFooterToBottom>页脚底端对齐</StiEmptySizeModeAlignFooterToBottom>
  2940. <StiEmptySizeModeAlignFooterToTop>页脚顶端对齐</StiEmptySizeModeAlignFooterToTop>
  2941. <StiEmptySizeModeDecreaseLastRow>减少末行</StiEmptySizeModeDecreaseLastRow>
  2942. <StiEmptySizeModeIncreaseLastRow>增加末行</StiEmptySizeModeIncreaseLastRow>
  2943. <StiEnumeratorTypeABC>英文字母</StiEnumeratorTypeABC>
  2944. <StiEnumeratorTypeArabic>阿拉伯数字</StiEnumeratorTypeArabic>
  2945. <StiEnumeratorTypeNone>无</StiEnumeratorTypeNone>
  2946. <StiEnumeratorTypeRoman>罗马数字</StiEnumeratorTypeRoman>
  2947. <StiExtendedStyleBoolFalse>错误</StiExtendedStyleBoolFalse>
  2948. <StiExtendedStyleBoolFromStyle>选择风格</StiExtendedStyleBoolFromStyle>
  2949. <StiExtendedStyleBoolTrue>正确</StiExtendedStyleBoolTrue>
  2950. <StiFilterConditionBeginningWith>开始于</StiFilterConditionBeginningWith>
  2951. <StiFilterConditionBetween>在两者之间</StiFilterConditionBetween>
  2952. <StiFilterConditionContaining>包含</StiFilterConditionContaining>
  2953. <StiFilterConditionEndingWith>结束于</StiFilterConditionEndingWith>
  2954. <StiFilterConditionEqualTo>等于</StiFilterConditionEqualTo>
  2955. <StiFilterConditionGreaterThan>大于</StiFilterConditionGreaterThan>
  2956. <StiFilterConditionGreaterThanOrEqualTo>大于或等于</StiFilterConditionGreaterThanOrEqualTo>
  2957. <StiFilterConditionIsBlank>为空白</StiFilterConditionIsBlank>
  2958. <StiFilterConditionIsNotBlank>不为空白</StiFilterConditionIsNotBlank>
  2959. <StiFilterConditionIsNotNull>不为空</StiFilterConditionIsNotNull>
  2960. <StiFilterConditionIsNull>空</StiFilterConditionIsNull>
  2961. <StiFilterConditionLessThan>小于</StiFilterConditionLessThan>
  2962. <StiFilterConditionLessThanOrEqualTo>小于或等于</StiFilterConditionLessThanOrEqualTo>
  2963. <StiFilterConditionNotBetween>不在之间</StiFilterConditionNotBetween>
  2964. <StiFilterConditionNotContaining>未包含</StiFilterConditionNotContaining>
  2965. <StiFilterConditionNotEqualTo>不等于</StiFilterConditionNotEqualTo>
  2966. <StiFilterDataTypeBoolean>布尔型</StiFilterDataTypeBoolean>
  2967. <StiFilterDataTypeDateTime>日期时间</StiFilterDataTypeDateTime>
  2968. <StiFilterDataTypeExpression>表达式</StiFilterDataTypeExpression>
  2969. <StiFilterDataTypeNumeric>数值型</StiFilterDataTypeNumeric>
  2970. <StiFilterDataTypeString>字符型</StiFilterDataTypeString>
  2971. <StiFilterEngineReportEngine>报表引擎</StiFilterEngineReportEngine>
  2972. <StiFilterEngineSQLQuery>SQL查询</StiFilterEngineSQLQuery>
  2973. <StiFilterItemArgument>参数</StiFilterItemArgument>
  2974. <StiFilterItemExpression>表达式</StiFilterItemExpression>
  2975. <StiFilterItemValue>值</StiFilterItemValue>
  2976. <StiFilterItemValueClose>收盘值</StiFilterItemValueClose>
  2977. <StiFilterItemValueEnd>交易值</StiFilterItemValueEnd>
  2978. <StiFilterItemValueHigh>最高值</StiFilterItemValueHigh>
  2979. <StiFilterItemValueLow>最低值</StiFilterItemValueLow>
  2980. <StiFilterItemValueOpen>开盘值</StiFilterItemValueOpen>
  2981. <StiFilterModeAnd>与</StiFilterModeAnd>
  2982. <StiFilterModeOr>或</StiFilterModeOr>
  2983. <StiFontIconGroupAccessibilityIcons>可及性</StiFontIconGroupAccessibilityIcons>
  2984. <StiFontIconGroupBrandIcons>品牌</StiFontIconGroupBrandIcons>
  2985. <StiFontIconGroupDirectionalIcons>方向性</StiFontIconGroupDirectionalIcons>
  2986. <StiFontIconGroupGenderIcons>性别</StiFontIconGroupGenderIcons>
  2987. <StiFontIconGroupMedicalIcons>医学</StiFontIconGroupMedicalIcons>
  2988. <StiFontIconGroupPaymentIcons>支付</StiFontIconGroupPaymentIcons>
  2989. <StiFontIconGroupSpinnerIcons>微调</StiFontIconGroupSpinnerIcons>
  2990. <StiFontIconGroupTransportationIcons>运输</StiFontIconGroupTransportationIcons>
  2991. <StiFontIconGroupVideoPlayerIcons>视频</StiFontIconGroupVideoPlayerIcons>
  2992. <StiFontIconGroupWebApplicationIcons>应用</StiFontIconGroupWebApplicationIcons>
  2993. <StiFontSizeModeAuto>自动</StiFontSizeModeAuto>
  2994. <StiFontSizeModeTarget>目标</StiFontSizeModeTarget>
  2995. <StiFontSizeModeValue>值</StiFontSizeModeValue>
  2996. <StiFormStartModeOnEnd>在结束</StiFormStartModeOnEnd>
  2997. <StiFormStartModeOnPreview>在预览</StiFormStartModeOnPreview>
  2998. <StiFormStartModeOnStart>在开始</StiFormStartModeOnStart>
  2999. <StiGaugeCalculationModeAuto>自动</StiGaugeCalculationModeAuto>
  3000. <StiGaugeCalculationModeCustom>自定义</StiGaugeCalculationModeCustom>
  3001. <StiGaugeRangeModePercentage>百分比</StiGaugeRangeModePercentage>
  3002. <StiGaugeRangeModeValue>值</StiGaugeRangeModeValue>
  3003. <StiGaugeRangeTypeColor>颜色</StiGaugeRangeTypeColor>
  3004. <StiGaugeRangeTypeNone>无</StiGaugeRangeTypeNone>
  3005. <StiGaugeTypeBullet>子弹图</StiGaugeTypeBullet>
  3006. <StiGaugeTypeFullCircular>整圆</StiGaugeTypeFullCircular>
  3007. <StiGaugeTypeHalfCircular>半圆</StiGaugeTypeHalfCircular>
  3008. <StiGaugeTypeHorizontalLinear>水平线</StiGaugeTypeHorizontalLinear>
  3009. <StiGaugeTypeLinear>线性</StiGaugeTypeLinear>
  3010. <StiGroupSortDirectionAscending>升序</StiGroupSortDirectionAscending>
  3011. <StiGroupSortDirectionDescending>降序</StiGroupSortDirectionDescending>
  3012. <StiGroupSortDirectionNone>无</StiGroupSortDirectionNone>
  3013. <StiHorAlignmentCenter>居中</StiHorAlignmentCenter>
  3014. <StiHorAlignmentLeft>居左</StiHorAlignmentLeft>
  3015. <StiHorAlignmentRight>居右</StiHorAlignmentRight>
  3016. <StiIconAlignmentBottom>底部</StiIconAlignmentBottom>
  3017. <StiIconAlignmentLeft>左边</StiIconAlignmentLeft>
  3018. <StiIconAlignmentNone>无</StiIconAlignmentNone>
  3019. <StiIconAlignmentRight>右边</StiIconAlignmentRight>
  3020. <StiIconAlignmentTop>顶端</StiIconAlignmentTop>
  3021. <StiImageProcessingDuplicatesTypeGlobalHide>全部隐藏</StiImageProcessingDuplicatesTypeGlobalHide>
  3022. <StiImageProcessingDuplicatesTypeGlobalMerge>全部合并</StiImageProcessingDuplicatesTypeGlobalMerge>
  3023. <StiImageProcessingDuplicatesTypeGlobalRemoveImage>全部移动图像</StiImageProcessingDuplicatesTypeGlobalRemoveImage>
  3024. <StiImageProcessingDuplicatesTypeHide>隐藏</StiImageProcessingDuplicatesTypeHide>
  3025. <StiImageProcessingDuplicatesTypeMerge>合并</StiImageProcessingDuplicatesTypeMerge>
  3026. <StiImageProcessingDuplicatesTypeNone>无</StiImageProcessingDuplicatesTypeNone>
  3027. <StiImageProcessingDuplicatesTypeRemoveImage>移动图像</StiImageProcessingDuplicatesTypeRemoveImage>
  3028. <StiImageRotationFlipHorizontal>水平翻转</StiImageRotationFlipHorizontal>
  3029. <StiImageRotationFlipVertical>垂直翻转</StiImageRotationFlipVertical>
  3030. <StiImageRotationNone>无</StiImageRotationNone>
  3031. <StiImageRotationRotate180>旋转 180°</StiImageRotationRotate180>
  3032. <StiImageRotationRotate90CCW>旋转 90° CCW</StiImageRotationRotate90CCW>
  3033. <StiImageRotationRotate90CW>旋转 90° CW</StiImageRotationRotate90CW>
  3034. <StiInteractionOnClick>无</StiInteractionOnClick>
  3035. <StiInteractionOnClickApplyFilter>应用过滤器</StiInteractionOnClickApplyFilter>
  3036. <StiInteractionOnClickDrillDown>下行</StiInteractionOnClickDrillDown>
  3037. <StiInteractionOnClickOpenHyperlink>打开超链接</StiInteractionOnClickOpenHyperlink>
  3038. <StiInteractionOnClickShowDashboard>显示仪表盘</StiInteractionOnClickShowDashboard>
  3039. <StiInteractionOnHoverNone>无</StiInteractionOnHoverNone>
  3040. <StiInteractionOnHoverShowHyperlink>显示超链接</StiInteractionOnHoverShowHyperlink>
  3041. <StiInteractionOnHoverShowToolTip>显示工具提示</StiInteractionOnHoverShowToolTip>
  3042. <StiInteractionOpenHyperlinkDestinationCurrentTab>当前标签</StiInteractionOpenHyperlinkDestinationCurrentTab>
  3043. <StiInteractionOpenHyperlinkDestinationNewTab>新标签</StiInteractionOpenHyperlinkDestinationNewTab>
  3044. <StiItemSelectionModeMulti>多种</StiItemSelectionModeMulti>
  3045. <StiItemSelectionModeOne>一种</StiItemSelectionModeOne>
  3046. <StiKeepDetailsKeepDetailsTogether>明细始终一起</StiKeepDetailsKeepDetailsTogether>
  3047. <StiKeepDetailsKeepFirstDetailTogether>第一条明细始终一起</StiKeepDetailsKeepFirstDetailTogether>
  3048. <StiKeepDetailsKeepFirstRowTogether>第一行始终一起</StiKeepDetailsKeepFirstRowTogether>
  3049. <StiKeepDetailsNone>无</StiKeepDetailsNone>
  3050. <StiLabelsPlacementAutoRotation>自动旋转</StiLabelsPlacementAutoRotation>
  3051. <StiLabelsPlacementNone>无</StiLabelsPlacementNone>
  3052. <StiLabelsPlacementOneLine>单线</StiLabelsPlacementOneLine>
  3053. <StiLabelsPlacementTwoLines>双线</StiLabelsPlacementTwoLines>
  3054. <StiLegendDirectionBottomToTop>从底部到顶端</StiLegendDirectionBottomToTop>
  3055. <StiLegendDirectionLeftToRight>由左到右</StiLegendDirectionLeftToRight>
  3056. <StiLegendDirectionRightToLeft>由右到左</StiLegendDirectionRightToLeft>
  3057. <StiLegendDirectionTopToBottom>从上至下</StiLegendDirectionTopToBottom>
  3058. <StiLegendHorAlignmentCenter>居中</StiLegendHorAlignmentCenter>
  3059. <StiLegendHorAlignmentLeft>居左</StiLegendHorAlignmentLeft>
  3060. <StiLegendHorAlignmentLeftOutside>左外侧</StiLegendHorAlignmentLeftOutside>
  3061. <StiLegendHorAlignmentRight>居右</StiLegendHorAlignmentRight>
  3062. <StiLegendHorAlignmentRightOutside>右外侧</StiLegendHorAlignmentRightOutside>
  3063. <StiLegendVertAlignmentBottom>底端</StiLegendVertAlignmentBottom>
  3064. <StiLegendVertAlignmentBottomOutside>底端外侧</StiLegendVertAlignmentBottomOutside>
  3065. <StiLegendVertAlignmentCenter>居中</StiLegendVertAlignmentCenter>
  3066. <StiLegendVertAlignmentTop>居顶</StiLegendVertAlignmentTop>
  3067. <StiLegendVertAlignmentTopOutside>顶端外侧</StiLegendVertAlignmentTopOutside>
  3068. <StiMapModeChoropleth>专题地图</StiMapModeChoropleth>
  3069. <StiMapModeOnline>在线</StiMapModeOnline>
  3070. <StiMapTypeGroup>组</StiMapTypeGroup>
  3071. <StiMapTypeHeatmap>热图</StiMapTypeHeatmap>
  3072. <StiMapTypeHeatmapWithGroup>群热图</StiMapTypeHeatmapWithGroup>
  3073. <StiMapTypeIndividual>个体</StiMapTypeIndividual>
  3074. <StiMapTypeNone>无</StiMapTypeNone>
  3075. <StiMapTypePoints>点</StiMapTypePoints>
  3076. <StiMarkerAlignmentCenter>居中</StiMarkerAlignmentCenter>
  3077. <StiMarkerAlignmentLeft>居左</StiMarkerAlignmentLeft>
  3078. <StiMarkerAlignmentRight>居右</StiMarkerAlignmentRight>
  3079. <StiMarkerTypeCircle>圆</StiMarkerTypeCircle>
  3080. <StiMarkerTypeHalfCircle>半圆</StiMarkerTypeHalfCircle>
  3081. <StiMarkerTypeHexagon>六边形</StiMarkerTypeHexagon>
  3082. <StiMarkerTypeRectangle>矩形</StiMarkerTypeRectangle>
  3083. <StiMarkerTypeStar5>五角星</StiMarkerTypeStar5>
  3084. <StiMarkerTypeStar6>六角星</StiMarkerTypeStar6>
  3085. <StiMarkerTypeStar7>七角星</StiMarkerTypeStar7>
  3086. <StiMarkerTypeStar8>Star 8</StiMarkerTypeStar8>
  3087. <StiMarkerTypeTriangle>三角形</StiMarkerTypeTriangle>
  3088. <StiNestedFactorHigh>高</StiNestedFactorHigh>
  3089. <StiNestedFactorLow>低</StiNestedFactorLow>
  3090. <StiNestedFactorNormal>常规</StiNestedFactorNormal>
  3091. <StiNumberOfPassDoublePass>双通道</StiNumberOfPassDoublePass>
  3092. <StiNumberOfPassSinglePass>单通道</StiNumberOfPassSinglePass>
  3093. <StiOnlineMapHeatmapColorGradientTypeBlackAquaWhite>黑白</StiOnlineMapHeatmapColorGradientTypeBlackAquaWhite>
  3094. <StiOnlineMapHeatmapColorGradientTypeBlueRed>蓝红</StiOnlineMapHeatmapColorGradientTypeBlueRed>
  3095. <StiOnlineMapHeatmapColorGradientTypeColorSpectrum>色谱</StiOnlineMapHeatmapColorGradientTypeColorSpectrum>
  3096. <StiOnlineMapHeatmapColorGradientTypeDeepSea>深蓝</StiOnlineMapHeatmapColorGradientTypeDeepSea>
  3097. <StiOnlineMapHeatmapColorGradientTypeHeatedMetal>金属</StiOnlineMapHeatmapColorGradientTypeHeatedMetal>
  3098. <StiOnlineMapHeatmapColorGradientTypeIncandescent>白炽</StiOnlineMapHeatmapColorGradientTypeIncandescent>
  3099. <StiOnlineMapHeatmapColorGradientTypeSteppedColors>层进颜色</StiOnlineMapHeatmapColorGradientTypeSteppedColors>
  3100. <StiOnlineMapHeatmapColorGradientTypeSunrise>日出</StiOnlineMapHeatmapColorGradientTypeSunrise>
  3101. <StiOnlineMapHeatmapColorGradientTypeVisibleSpectrum>可见光谱</StiOnlineMapHeatmapColorGradientTypeVisibleSpectrum>
  3102. <StiOnlineMapLocationTypeAdminDivision1>管理分配1</StiOnlineMapLocationTypeAdminDivision1>
  3103. <StiOnlineMapLocationTypeAdminDivision2>管理分配2</StiOnlineMapLocationTypeAdminDivision2>
  3104. <StiOnlineMapLocationTypeAuto>自动</StiOnlineMapLocationTypeAuto>
  3105. <StiOnlineMapLocationTypeCountryRegion>国家范围</StiOnlineMapLocationTypeCountryRegion>
  3106. <StiOnlineMapLocationTypeNeighborhood>邻居</StiOnlineMapLocationTypeNeighborhood>
  3107. <StiOnlineMapLocationTypePopulatedPlace>居住地</StiOnlineMapLocationTypePopulatedPlace>
  3108. <StiOnlineMapLocationTypePostcode1>邮编1</StiOnlineMapLocationTypePostcode1>
  3109. <StiOnlineMapLocationTypePostcode2>邮编2</StiOnlineMapLocationTypePostcode2>
  3110. <StiOnlineMapLocationTypePostcode3>邮编3</StiOnlineMapLocationTypePostcode3>
  3111. <StiOnlineMapLocationTypePostcode4>邮编4</StiOnlineMapLocationTypePostcode4>
  3112. <StiOrientationHorizontal>水平</StiOrientationHorizontal>
  3113. <StiOrientationHorizontalRight>水平靠右</StiOrientationHorizontalRight>
  3114. <StiOrientationVertical>垂直</StiOrientationVertical>
  3115. <StiPageOrientationLandscape>横向</StiPageOrientationLandscape>
  3116. <StiPageOrientationPortrait>纵向</StiPageOrientationPortrait>
  3117. <StiPenStyleDash>虚线</StiPenStyleDash>
  3118. <StiPenStyleDashDot>点画线</StiPenStyleDashDot>
  3119. <StiPenStyleDashDotDot>双点画线</StiPenStyleDashDotDot>
  3120. <StiPenStyleDot>点线</StiPenStyleDot>
  3121. <StiPenStyleDouble>Double</StiPenStyleDouble>
  3122. <StiPenStyleNone>无</StiPenStyleNone>
  3123. <StiPenStyleSolid>实线</StiPenStyleSolid>
  3124. <StiPlesseyCheckSumModulo10>Modulo10</StiPlesseyCheckSumModulo10>
  3125. <StiPlesseyCheckSumModulo11>Modulo11</StiPlesseyCheckSumModulo11>
  3126. <StiPlesseyCheckSumNone>无</StiPlesseyCheckSumNone>
  3127. <StiPreviewModeDotMatrix>矩阵</StiPreviewModeDotMatrix>
  3128. <StiPreviewModeStandard>标准</StiPreviewModeStandard>
  3129. <StiPreviewModeStandardAndDotMatrix>标准和点阵</StiPreviewModeStandardAndDotMatrix>
  3130. <StiPrintOnEvenOddPagesTypeIgnore>忽略</StiPrintOnEvenOddPagesTypeIgnore>
  3131. <StiPrintOnEvenOddPagesTypePrintOnEvenPages>打印偶数页</StiPrintOnEvenOddPagesTypePrintOnEvenPages>
  3132. <StiPrintOnEvenOddPagesTypePrintOnOddPages>打印奇数页</StiPrintOnEvenOddPagesTypePrintOnOddPages>
  3133. <StiPrintOnTypeAllPages>全部页</StiPrintOnTypeAllPages>
  3134. <StiPrintOnTypeExceptFirstAndLastPage>去除首页和末页</StiPrintOnTypeExceptFirstAndLastPage>
  3135. <StiPrintOnTypeExceptFirstPage>去除首页</StiPrintOnTypeExceptFirstPage>
  3136. <StiPrintOnTypeExceptLastPage>去除末页</StiPrintOnTypeExceptLastPage>
  3137. <StiPrintOnTypeOnlyFirstAndLastPage>仅首页和末页</StiPrintOnTypeOnlyFirstAndLastPage>
  3138. <StiPrintOnTypeOnlyFirstPage>仅首页</StiPrintOnTypeOnlyFirstPage>
  3139. <StiPrintOnTypeOnlyLastPage>仅末页</StiPrintOnTypeOnlyLastPage>
  3140. <StiProcessAtEndOfPage>页面结束</StiProcessAtEndOfPage>
  3141. <StiProcessAtEndOfReport>报表结束</StiProcessAtEndOfReport>
  3142. <StiProcessAtNone>无</StiProcessAtNone>
  3143. <StiProcessingDuplicatesTypeBasedOnTagHide>根据标记隐藏</StiProcessingDuplicatesTypeBasedOnTagHide>
  3144. <StiProcessingDuplicatesTypeBasedOnTagMerge>根据标记合并</StiProcessingDuplicatesTypeBasedOnTagMerge>
  3145. <StiProcessingDuplicatesTypeBasedOnTagRemoveText>根据标记移动文本</StiProcessingDuplicatesTypeBasedOnTagRemoveText>
  3146. <StiProcessingDuplicatesTypeBasedOnValueAndTagHide>根据值和标记隐藏</StiProcessingDuplicatesTypeBasedOnValueAndTagHide>
  3147. <StiProcessingDuplicatesTypeBasedOnValueAndTagMerge>根据值和标记合并</StiProcessingDuplicatesTypeBasedOnValueAndTagMerge>
  3148. <StiProcessingDuplicatesTypeBasedOnValueRemoveText>根据值移动</StiProcessingDuplicatesTypeBasedOnValueRemoveText>
  3149. <StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagHide>根据值和标记全部隐藏</StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagHide>
  3150. <StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagMerge>根据值和标记全部合并</StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagMerge>
  3151. <StiProcessingDuplicatesTypeGlobalBasedOnValueRemoveText>根据值全部移动</StiProcessingDuplicatesTypeGlobalBasedOnValueRemoveText>
  3152. <StiProcessingDuplicatesTypeGlobalHide>全局隐藏</StiProcessingDuplicatesTypeGlobalHide>
  3153. <StiProcessingDuplicatesTypeGlobalMerge>全局合并</StiProcessingDuplicatesTypeGlobalMerge>
  3154. <StiProcessingDuplicatesTypeGlobalRemoveText>全局移除文字</StiProcessingDuplicatesTypeGlobalRemoveText>
  3155. <StiProcessingDuplicatesTypeHide>隐藏</StiProcessingDuplicatesTypeHide>
  3156. <StiProcessingDuplicatesTypeMerge>合并</StiProcessingDuplicatesTypeMerge>
  3157. <StiProcessingDuplicatesTypeNone>无</StiProcessingDuplicatesTypeNone>
  3158. <StiProcessingDuplicatesTypeRemoveText>移除文本</StiProcessingDuplicatesTypeRemoveText>
  3159. <StiProgressElementModeCircle>圆圈</StiProgressElementModeCircle>
  3160. <StiProgressElementModeDataBars>数据条</StiProgressElementModeDataBars>
  3161. <StiProgressElementModePie>饼状图</StiProgressElementModePie>
  3162. <StiRadarStyleXFCircle>圆</StiRadarStyleXFCircle>
  3163. <StiRadarStyleXFPolygon>多边形</StiRadarStyleXFPolygon>
  3164. <StiReportCacheModeAuto>自动</StiReportCacheModeAuto>
  3165. <StiReportCacheModeOff>关闭</StiReportCacheModeOff>
  3166. <StiReportCacheModeOn>开启</StiReportCacheModeOn>
  3167. <StiReportUnitTypeCentimeters>厘米</StiReportUnitTypeCentimeters>
  3168. <StiReportUnitTypeHundredthsOfInch>百分之一英寸</StiReportUnitTypeHundredthsOfInch>
  3169. <StiReportUnitTypeInches>英寸</StiReportUnitTypeInches>
  3170. <StiReportUnitTypeMillimeters>毫米</StiReportUnitTypeMillimeters>
  3171. <StiReportUnitTypePixels>像素</StiReportUnitTypePixels>
  3172. <StiRestrictionsAll>全部</StiRestrictionsAll>
  3173. <StiRestrictionsAllowChange>允许改变</StiRestrictionsAllowChange>
  3174. <StiRestrictionsAllowDelete>允许删除</StiRestrictionsAllowDelete>
  3175. <StiRestrictionsAllowMove>允许移动</StiRestrictionsAllowMove>
  3176. <StiRestrictionsAllowResize>允许改变大小</StiRestrictionsAllowResize>
  3177. <StiRestrictionsAllowSelect>允许选择</StiRestrictionsAllowSelect>
  3178. <StiRestrictionsNone>无</StiRestrictionsNone>
  3179. <StiSelectionModeFirst>第一</StiSelectionModeFirst>
  3180. <StiSelectionModeFromVariable>来自变量</StiSelectionModeFromVariable>
  3181. <StiSelectionModeNothing>无</StiSelectionModeNothing>
  3182. <StiSeriesLabelsValueTypeArgument>参数</StiSeriesLabelsValueTypeArgument>
  3183. <StiSeriesLabelsValueTypeArgumentValue>参数 - 值</StiSeriesLabelsValueTypeArgumentValue>
  3184. <StiSeriesLabelsValueTypeSeriesTitle>序列标题</StiSeriesLabelsValueTypeSeriesTitle>
  3185. <StiSeriesLabelsValueTypeSeriesTitleArgument>序列标题 - 参数</StiSeriesLabelsValueTypeSeriesTitleArgument>
  3186. <StiSeriesLabelsValueTypeSeriesTitleValue>序列标题 - 值</StiSeriesLabelsValueTypeSeriesTitleValue>
  3187. <StiSeriesLabelsValueTypeTag>标记</StiSeriesLabelsValueTypeTag>
  3188. <StiSeriesLabelsValueTypeValue>值</StiSeriesLabelsValueTypeValue>
  3189. <StiSeriesLabelsValueTypeValueArgument>值 - 参数</StiSeriesLabelsValueTypeValueArgument>
  3190. <StiSeriesLabelsValueTypeWeight>加权</StiSeriesLabelsValueTypeWeight>
  3191. <StiSeriesSortDirectionAscending>升序</StiSeriesSortDirectionAscending>
  3192. <StiSeriesSortDirectionDescending>降序</StiSeriesSortDirectionDescending>
  3193. <StiSeriesSortTypeArgument>参数</StiSeriesSortTypeArgument>
  3194. <StiSeriesSortTypeNone>无</StiSeriesSortTypeNone>
  3195. <StiSeriesSortTypeValue>值</StiSeriesSortTypeValue>
  3196. <StiSeriesXAxisBottomXAxis>底部X轴</StiSeriesXAxisBottomXAxis>
  3197. <StiSeriesXAxisTopXAxis>顶部X轴</StiSeriesXAxisTopXAxis>
  3198. <StiSeriesYAxisLeftYAxis>Y 轴左端</StiSeriesYAxisLeftYAxis>
  3199. <StiSeriesYAxisRightYAxis>Y 轴右端</StiSeriesYAxisRightYAxis>
  3200. <StiShapeDirectionDown>向下</StiShapeDirectionDown>
  3201. <StiShapeDirectionLeft>向左</StiShapeDirectionLeft>
  3202. <StiShapeDirectionRight>向右</StiShapeDirectionRight>
  3203. <StiShapeDirectionUp>向上</StiShapeDirectionUp>
  3204. <StiShiftModeDecreasingSize>减少尺寸</StiShiftModeDecreasingSize>
  3205. <StiShiftModeIncreasingSize>增加尺寸</StiShiftModeIncreasingSize>
  3206. <StiShiftModeNone>无</StiShiftModeNone>
  3207. <StiShiftModeOnlyInWidthOfComponent>仅在组件宽度内</StiShiftModeOnlyInWidthOfComponent>
  3208. <StiShowSeriesLabelsFromChart>从图表</StiShowSeriesLabelsFromChart>
  3209. <StiShowSeriesLabelsFromSeries>从系列</StiShowSeriesLabelsFromSeries>
  3210. <StiShowSeriesLabelsNone>无</StiShowSeriesLabelsNone>
  3211. <StiShowXAxisBoth>全部</StiShowXAxisBoth>
  3212. <StiShowXAxisBottom>底部</StiShowXAxisBottom>
  3213. <StiShowXAxisCenter>中间</StiShowXAxisCenter>
  3214. <StiShowYAxisBoth>全部</StiShowYAxisBoth>
  3215. <StiShowYAxisCenter>中间</StiShowYAxisCenter>
  3216. <StiShowYAxisLeft>左</StiShowYAxisLeft>
  3217. <StiSizeModeAutoSize>自动调整尺寸</StiSizeModeAutoSize>
  3218. <StiSizeModeFit>适配</StiSizeModeFit>
  3219. <StiSortDirectionAsc>升序</StiSortDirectionAsc>
  3220. <StiSortDirectionDesc>降序</StiSortDirectionDesc>
  3221. <StiSortDirectionNone>无</StiSortDirectionNone>
  3222. <StiSortTypeByDisplayValue>按显示值</StiSortTypeByDisplayValue>
  3223. <StiSortTypeByValue>按值</StiSortTypeByValue>
  3224. <StiSqlSourceTypeStoredProcedure>存储过程</StiSqlSourceTypeStoredProcedure>
  3225. <StiSqlSourceTypeTable>表</StiSqlSourceTypeTable>
  3226. <StiStyleComponentTypeChart>图表</StiStyleComponentTypeChart>
  3227. <StiStyleComponentTypeCheckBox>复选框</StiStyleComponentTypeCheckBox>
  3228. <StiStyleComponentTypeCrossTab>交叉表</StiStyleComponentTypeCrossTab>
  3229. <StiStyleComponentTypeImage>图像</StiStyleComponentTypeImage>
  3230. <StiStyleComponentTypePrimitive>基元</StiStyleComponentTypePrimitive>
  3231. <StiStyleComponentTypeText>文本</StiStyleComponentTypeText>
  3232. <StiStyleConditionTypeComponentName>组件名</StiStyleConditionTypeComponentName>
  3233. <StiStyleConditionTypeComponentType>组件类型</StiStyleConditionTypeComponentType>
  3234. <StiStyleConditionTypeLocation>位置</StiStyleConditionTypeLocation>
  3235. <StiStyleConditionTypePlacement>布局</StiStyleConditionTypePlacement>
  3236. <StiSummaryValuesAllValues>所有值</StiSummaryValuesAllValues>
  3237. <StiSummaryValuesSkipNulls>忽略无效值</StiSummaryValuesSkipNulls>
  3238. <StiSummaryValuesSkipZerosAndNulls>忽略零和无效值</StiSummaryValuesSkipZerosAndNulls>
  3239. <StiTablceCellTypeCheckBox>复选框</StiTablceCellTypeCheckBox>
  3240. <StiTablceCellTypeImage>图像</StiTablceCellTypeImage>
  3241. <StiTablceCellTypeRichText>富文本</StiTablceCellTypeRichText>
  3242. <StiTablceCellTypeText>文本</StiTablceCellTypeText>
  3243. <StiTableAutoWidthNone>无</StiTableAutoWidthNone>
  3244. <StiTableAutoWidthPage>页面</StiTableAutoWidthPage>
  3245. <StiTableAutoWidthTable>表</StiTableAutoWidthTable>
  3246. <StiTableAutoWidthTypeFullTable>整张表</StiTableAutoWidthTypeFullTable>
  3247. <StiTableAutoWidthTypeLastColumns>最后一列</StiTableAutoWidthTypeLastColumns>
  3248. <StiTableAutoWidthTypeNone>无</StiTableAutoWidthTypeNone>
  3249. <StiTargetModePercentage>百分比</StiTargetModePercentage>
  3250. <StiTargetModeVariation>变化</StiTargetModeVariation>
  3251. <StiTextHorAlignmentCenter>居中</StiTextHorAlignmentCenter>
  3252. <StiTextHorAlignmentLeft>居左</StiTextHorAlignmentLeft>
  3253. <StiTextHorAlignmentRight>居右</StiTextHorAlignmentRight>
  3254. <StiTextHorAlignmentWidth>宽度</StiTextHorAlignmentWidth>
  3255. <StiTextPositionCenterBottom>底部居中</StiTextPositionCenterBottom>
  3256. <StiTextPositionCenterTop>顶部居中</StiTextPositionCenterTop>
  3257. <StiTextPositionLeftBottom>底部居左</StiTextPositionLeftBottom>
  3258. <StiTextPositionLeftTop>顶部居左</StiTextPositionLeftTop>
  3259. <StiTextPositionRightBottom>底部居右</StiTextPositionRightBottom>
  3260. <StiTextPositionRightTop>顶部居右</StiTextPositionRightTop>
  3261. <StiTextQualityStandard>标准</StiTextQualityStandard>
  3262. <StiTextQualityTypographic>印刷质量</StiTextQualityTypographic>
  3263. <StiTextQualityWysiwyg>所见即所得</StiTextQualityWysiwyg>
  3264. <StiTitlePositionInside>里面</StiTitlePositionInside>
  3265. <StiTitlePositionOutside>外面</StiTitlePositionOutside>
  3266. <StiTypeModeList>列表</StiTypeModeList>
  3267. <StiTypeModeNullableValue>空值</StiTypeModeNullableValue>
  3268. <StiTypeModeRange>范围</StiTypeModeRange>
  3269. <StiTypeModeValue>值</StiTypeModeValue>
  3270. <StiVertAlignmentBottom>底部</StiVertAlignmentBottom>
  3271. <StiVertAlignmentCenter>居中</StiVertAlignmentCenter>
  3272. <StiVertAlignmentTop>顶端</StiVertAlignmentTop>
  3273. <StiViewModeNormal>正常</StiViewModeNormal>
  3274. <StiViewModePageBreakPreview>跨页预览</StiViewModePageBreakPreview>
  3275. <StiXmlTypeAdoNetXml>ADO.NET XML</StiXmlTypeAdoNetXml>
  3276. <StiXmlTypeXml>XML</StiXmlTypeXml>
  3277. <StringAlignmentCenter>居中</StringAlignmentCenter>
  3278. <StringAlignmentFar>远</StringAlignmentFar>
  3279. <StringAlignmentNear>近</StringAlignmentNear>
  3280. <StringTrimmingCharacter>字符</StringTrimmingCharacter>
  3281. <StringTrimmingEllipsisCharacter>省略字符</StringTrimmingEllipsisCharacter>
  3282. <StringTrimmingEllipsisPath>省略路径</StringTrimmingEllipsisPath>
  3283. <StringTrimmingEllipsisWord>省略字</StringTrimmingEllipsisWord>
  3284. <StringTrimmingNone>无</StringTrimmingNone>
  3285. <StringTrimmingWord>字</StringTrimmingWord>
  3286. </PropertyEnum>
  3287. <PropertyEvents>
  3288. <AfterPrintEvent>打印后于</AfterPrintEvent>
  3289. <AfterSelectEvent>选择后</AfterSelectEvent>
  3290. <BeforePrintEvent>打印前于</BeforePrintEvent>
  3291. <BeginRenderEvent>开始渲染</BeginRenderEvent>
  3292. <CheckedChangedEvent>选择改变后</CheckedChangedEvent>
  3293. <ClickEvent>点击</ClickEvent>
  3294. <ClosedFormEvent>窗体关闭后</ClosedFormEvent>
  3295. <ClosingFormEvent>窗体关闭时</ClosingFormEvent>
  3296. <ColumnBeginRenderEvent>列开始渲染</ColumnBeginRenderEvent>
  3297. <ColumnEndRenderEvent>列结束渲染</ColumnEndRenderEvent>
  3298. <ConnectedEvent>ConnectedEvent</ConnectedEvent>
  3299. <ConnectingEvent>ConnectingEvent</ConnectingEvent>
  3300. <DisconnectedEvent>Disconnected</DisconnectedEvent>
  3301. <DisconnectingEvent>Disconnecting</DisconnectingEvent>
  3302. <DoubleClickEvent>双击</DoubleClickEvent>
  3303. <EndRenderEvent>结束渲染</EndRenderEvent>
  3304. <EnterEvent>键入</EnterEvent>
  3305. <ExportedEvent>导出后</ExportedEvent>
  3306. <ExportingEvent>导出时</ExportingEvent>
  3307. <GetArgumentEvent>获取参数</GetArgumentEvent>
  3308. <GetBookmarkEvent>获取书签</GetBookmarkEvent>
  3309. <GetCollapsedEvent>获取折叠</GetCollapsedEvent>
  3310. <GetCrossValueEvent>获取 Cross 值</GetCrossValueEvent>
  3311. <GetCutPieListEvent>获取Cut Pie列表</GetCutPieListEvent>
  3312. <GetDataUrlEvent>获取DataUrl</GetDataUrlEvent>
  3313. <GetDisplayCrossValueEvent>获取显示 Cross 值</GetDisplayCrossValueEvent>
  3314. <GetDrillDownReportEvent>获取钻取报表</GetDrillDownReportEvent>
  3315. <GetExcelSheetEvent>得到 Excel Sheet</GetExcelSheetEvent>
  3316. <GetExcelValueEvent>获取 Excel 值</GetExcelValueEvent>
  3317. <GetHyperlinkEvent>获取超链接</GetHyperlinkEvent>
  3318. <GetImageDataEvent>获取图片数据</GetImageDataEvent>
  3319. <GetImageURLEvent>获取图片 URL</GetImageURLEvent>
  3320. <GetListOfArgumentsEvent>获取参数列表</GetListOfArgumentsEvent>
  3321. <GetListOfHyperlinksEvent>获取超链接列表</GetListOfHyperlinksEvent>
  3322. <GetListOfTagsEvent>获取标记列表</GetListOfTagsEvent>
  3323. <GetListOfToolTipsEvent>获取工具栏列表</GetListOfToolTipsEvent>
  3324. <GetListOfValuesEndEvent>获取末端值列表</GetListOfValuesEndEvent>
  3325. <GetListOfValuesEvent>获取参数值</GetListOfValuesEvent>
  3326. <GetListOfWeights>获取加权列表</GetListOfWeights>
  3327. <GetListOfWeightsEvent>获取加权列表</GetListOfWeightsEvent>
  3328. <GetSummaryExpressionEvent>获取统计表达式</GetSummaryExpressionEvent>
  3329. <GetTagEvent>获取 Tag</GetTagEvent>
  3330. <GetTitleEvent>得到标题</GetTitleEvent>
  3331. <GetToolTipEvent>获取快速提示</GetToolTipEvent>
  3332. <GetValueEndEvent>获取末端值</GetValueEndEvent>
  3333. <GetValueEvent>获取值</GetValueEvent>
  3334. <GetWeightEvent>获取加权值</GetWeightEvent>
  3335. <LeaveEvent>离开</LeaveEvent>
  3336. <LoadFormEvent>加载窗体</LoadFormEvent>
  3337. <MouseDownEvent>鼠标下移</MouseDownEvent>
  3338. <MouseEnterEvent>鼠标键入</MouseEnterEvent>
  3339. <MouseLeaveEvent>鼠标离开</MouseLeaveEvent>
  3340. <MouseMoveEvent>鼠标移动</MouseMoveEvent>
  3341. <MouseUpEvent>鼠标上移</MouseUpEvent>
  3342. <NewAutoSeriesEvent>新的自动序列</NewAutoSeriesEvent>
  3343. <PositionChangedEvent>位置改变后</PositionChangedEvent>
  3344. <PrintedEvent>打印后</PrintedEvent>
  3345. <PrintingEvent>打印时</PrintingEvent>
  3346. <ProcessCellEvent>处理单元格</ProcessCellEvent>
  3347. <ProcessChartEvent>处理图表</ProcessChartEvent>
  3348. <RenderingEvent>正在渲染</RenderingEvent>
  3349. <ReportCacheProcessingEvent>报告缓存处理</ReportCacheProcessingEvent>
  3350. <SelectedIndexChangedEvent>所选索引改变后</SelectedIndexChangedEvent>
  3351. <StateRestoreEvent>状态还原</StateRestoreEvent>
  3352. <StateSaveEvent>状态保存</StateSaveEvent>
  3353. <ValueChangedEvent>值改变后</ValueChangedEvent>
  3354. </PropertyEvents>
  3355. <PropertyHatchStyle>
  3356. <BackwardDiagonal>反向对角线</BackwardDiagonal>
  3357. <Cross>斜线</Cross>
  3358. <DarkDownwardDiagonal>粗反向对角线</DarkDownwardDiagonal>
  3359. <DarkHorizontal>粗横线</DarkHorizontal>
  3360. <DarkUpwardDiagonal>粗向上对角线</DarkUpwardDiagonal>
  3361. <DarkVertical>粗竖线</DarkVertical>
  3362. <DashedDownwardDiagonal>虚向下对角线</DashedDownwardDiagonal>
  3363. <DashedHorizontal>虚横线</DashedHorizontal>
  3364. <DashedUpwardDiagonal>虚向上对角线</DashedUpwardDiagonal>
  3365. <DashedVertical>虚竖线</DashedVertical>
  3366. <DiagonalBrick>对角砖块</DiagonalBrick>
  3367. <DiagonalCross>对角交叉线</DiagonalCross>
  3368. <Divot>草痕</Divot>
  3369. <DottedDiamond>菱形虚框</DottedDiamond>
  3370. <DottedGrid>虚线网格</DottedGrid>
  3371. <ForwardDiagonal>正向对角线</ForwardDiagonal>
  3372. <Horizontal>横线</Horizontal>
  3373. <HorizontalBrick>水平砖块</HorizontalBrick>
  3374. <LargeCheckerBoard>大棋盘</LargeCheckerBoard>
  3375. <LargeConfetti>大碎花</LargeConfetti>
  3376. <LargeGrid>大网格</LargeGrid>
  3377. <LightDownwardDiagonal>细向下对角线</LightDownwardDiagonal>
  3378. <LightHorizontal>细横线</LightHorizontal>
  3379. <LightUpwardDiagonal>细向上对角线</LightUpwardDiagonal>
  3380. <LightVertical>细竖线</LightVertical>
  3381. <NarrowHorizontal>窄横线</NarrowHorizontal>
  3382. <NarrowVertical>窄竖线</NarrowVertical>
  3383. <OutlinedDiamond>菱形实框</OutlinedDiamond>
  3384. <Percent05>05%</Percent05>
  3385. <Percent10>10%</Percent10>
  3386. <Percent20>20%</Percent20>
  3387. <Percent25>25%</Percent25>
  3388. <Percent30>30%</Percent30>
  3389. <Percent40>40%</Percent40>
  3390. <Percent50>50%</Percent50>
  3391. <Percent60>60%</Percent60>
  3392. <Percent70>70%</Percent70>
  3393. <Percent75>75%</Percent75>
  3394. <Percent80>80%</Percent80>
  3395. <Percent90>90%</Percent90>
  3396. <Plaid>方格花纹</Plaid>
  3397. <Shingle>瓦格</Shingle>
  3398. <SmallCheckerBoard>小棋盘</SmallCheckerBoard>
  3399. <SmallConfetti>小碎花</SmallConfetti>
  3400. <SmallGrid>小网格</SmallGrid>
  3401. <SolidDiamond>实心菱形</SolidDiamond>
  3402. <Sphere>球形</Sphere>
  3403. <Trellis>方格</Trellis>
  3404. <Vertical>竖线</Vertical>
  3405. <Wave>波</Wave>
  3406. <Weave>编织线</Weave>
  3407. <WideDownwardDiagonal>宽向下对角线</WideDownwardDiagonal>
  3408. <WideUpwardDiagonal>宽向上对角线</WideUpwardDiagonal>
  3409. <ZigZag>锯齿线</ZigZag>
  3410. </PropertyHatchStyle>
  3411. <PropertyMain>
  3412. <AcceptsReturn>接受返回</AcceptsReturn>
  3413. <AcceptsTab>接受Tab</AcceptsTab>
  3414. <Actual>实际</Actual>
  3415. <AddClearZone>添加空白区</AddClearZone>
  3416. <Advanced>高级</Advanced>
  3417. <AggregateFunction>聚合函数</AggregateFunction>
  3418. <AggregateFunctions>聚合函数</AggregateFunctions>
  3419. <Alias>别名</Alias>
  3420. <Alignment>对齐</Alignment>
  3421. <AllowApplyBorderColor>允许应用边框颜色</AllowApplyBorderColor>
  3422. <AllowApplyBrush>允许应用画刷</AllowApplyBrush>
  3423. <AllowApplyBrushNegative>允许应用负数画刷</AllowApplyBrushNegative>
  3424. <AllowApplyColorNegative>允许应用负数颜色</AllowApplyColorNegative>
  3425. <AllowApplyLineColor>允许应用线条颜色</AllowApplyLineColor>
  3426. <AllowApplyStyle>允许套用样式</AllowApplyStyle>
  3427. <AllowExpressions>允许表达式</AllowExpressions>
  3428. <AllowHtmlTags>允许Html标签</AllowHtmlTags>
  3429. <AllowSeries>允许系列</AllowSeries>
  3430. <AllowSeriesElements>允许系列元素</AllowSeriesElements>
  3431. <AllowSorting>允许排序</AllowSorting>
  3432. <AllowUseBackColor>允许使用背景颜色</AllowUseBackColor>
  3433. <AllowUseBorder>允许使用边界</AllowUseBorder>
  3434. <AllowUseBorderFormatting>允许使用边框格式</AllowUseBorderFormatting>
  3435. <AllowUseBorderSides>允许使用边框面</AllowUseBorderSides>
  3436. <AllowUseBorderSidesFromLocation>允许从位置使用边框面</AllowUseBorderSidesFromLocation>
  3437. <AllowUseBrush>允许使用格式刷</AllowUseBrush>
  3438. <AllowUseFont>允许使用字体</AllowUseFont>
  3439. <AllowUseForeColor>允许使用前景色</AllowUseForeColor>
  3440. <AllowUseHorAlignment>允许使用水平对齐</AllowUseHorAlignment>
  3441. <AllowUseImage>允许使用图像</AllowUseImage>
  3442. <AllowUseNegativeTextBrush>允许使用负文本画笔</AllowUseNegativeTextBrush>
  3443. <AllowUserValues>允许用户值</AllowUserValues>
  3444. <AllowUseTextBrush>允许使用文本刷</AllowUseTextBrush>
  3445. <AllowUseTextFormat>允许使用文本格式</AllowUseTextFormat>
  3446. <AllowUseTextOptions>允许使用文本选项</AllowUseTextOptions>
  3447. <AllowUseVertAlignment>允许使用垂直对齐</AllowUseVertAlignment>
  3448. <AllowUsingAsSqlParameter>允许作为结构化查询语言参数使用</AllowUsingAsSqlParameter>
  3449. <AlternatingBackColor>交替背景色</AlternatingBackColor>
  3450. <AlternatingCellBackColor>交替单元格背景色</AlternatingCellBackColor>
  3451. <AlternatingCellForeColor>交替单元格前景色</AlternatingCellForeColor>
  3452. <AlternatingDataColor>交替数据颜色</AlternatingDataColor>
  3453. <AlternatingDataForeground>交替数据前景</AlternatingDataForeground>
  3454. <Always>一贯</Always>
  3455. <Anchor>锚点</Anchor>
  3456. <Angle>角度</Angle>
  3457. <Antialiasing>混叠效应</Antialiasing>
  3458. <Area>区域</Area>
  3459. <Argument>参数</Argument>
  3460. <ArgumentDataColumn>参数列</ArgumentDataColumn>
  3461. <ArgumentFormat>参数格式</ArgumentFormat>
  3462. <Arguments>参数</Arguments>
  3463. <ArrowHeight>箭头高度</ArrowHeight>
  3464. <ArrowStyle>箭头样式</ArrowStyle>
  3465. <ArrowWidth>箭头宽度</ArrowWidth>
  3466. <AspectRatio>长宽比</AspectRatio>
  3467. <Author>作者</Author>
  3468. <Auto>自动</Auto>
  3469. <AutoCalculateCenterPoint>自动计算中心点</AutoCalculateCenterPoint>
  3470. <AutoDataColumns>自动数据列</AutoDataColumns>
  3471. <AutoDataRows>自动数据行</AutoDataRows>
  3472. <AutoLocalizeReportOnRun>运行时自动本地化报表</AutoLocalizeReportOnRun>
  3473. <AutoRefresh>自动更新</AutoRefresh>
  3474. <AutoRotate>自动旋转</AutoRotate>
  3475. <AutoScale>自动缩放</AutoScale>
  3476. <AutoSeriesColorDataColumn>自动序列数据列颜色</AutoSeriesColorDataColumn>
  3477. <AutoSeriesKeyDataColumn>自动序列数据列关键字</AutoSeriesKeyDataColumn>
  3478. <AutoSeriesTitleDataColumn>自动序列数据列标题</AutoSeriesTitleDataColumn>
  3479. <AutoWidth>自动宽度</AutoWidth>
  3480. <AutoWidthType>自动宽度类型</AutoWidthType>
  3481. <AvailableInTheViewer>在查看器中可用</AvailableInTheViewer>
  3482. <AxisLabelsColor>轴标签颜色</AxisLabelsColor>
  3483. <AxisLineColor>轴线颜色</AxisLineColor>
  3484. <AxisTitleColor>轴标题颜色</AxisTitleColor>
  3485. <AxisValue>轴值</AxisValue>
  3486. <BackColor>背景色</BackColor>
  3487. <Background>背景</Background>
  3488. <BackgroundColor>背景颜色</BackgroundColor>
  3489. <BandColor>条纹颜色</BandColor>
  3490. <BarCodeType>条形码类型</BarCodeType>
  3491. <BasicStyleColor>基本类型颜色</BasicStyleColor>
  3492. <Blend>混合</Blend>
  3493. <Bold>粗体</Bold>
  3494. <Bookmark>书签</Bookmark>
  3495. <Border>边框</Border>
  3496. <BorderBrush>边界刷</BorderBrush>
  3497. <BorderColor>边框颜色</BorderColor>
  3498. <BorderColorNegative>负值边框颜色</BorderColorNegative>
  3499. <Borders>边框</Borders>
  3500. <BorderSize>边框尺寸</BorderSize>
  3501. <BorderStyle>边框样式</BorderStyle>
  3502. <BorderWidth>边框宽度</BorderWidth>
  3503. <Bottom>底端</Bottom>
  3504. <BottomSide>底部大小</BottomSide>
  3505. <BreakIfLessThan>小于时截断</BreakIfLessThan>
  3506. <Brush>画笔</Brush>
  3507. <BrushNegative>负数刷</BrushNegative>
  3508. <BrushType>格式刷类型</BrushType>
  3509. <BubbleBackColor>气泡背景颜色</BubbleBackColor>
  3510. <BubbleBorderColor>气泡边框颜色</BubbleBorderColor>
  3511. <BusinessObject>Business Object</BusinessObject>
  3512. <CacheAllData>缓存全部数据</CacheAllData>
  3513. <CacheTotals>缓存总计</CacheTotals>
  3514. <CalcInvisible>计算列不可见</CalcInvisible>
  3515. <CalculatedDataColumn>计算列</CalculatedDataColumn>
  3516. <CalculationMode>计算模式</CalculationMode>
  3517. <CanBreak>跨页</CanBreak>
  3518. <Cancel>取消</Cancel>
  3519. <CanGrow>自动伸展</CanGrow>
  3520. <CanShrink>自动收缩</CanShrink>
  3521. <Categories>分类</Categories>
  3522. <Category>分类</Category>
  3523. <CategoryConnections>连接</CategoryConnections>
  3524. <CellBackColor>单元格背景色</CellBackColor>
  3525. <CellDockStyle>单元停靠样式</CellDockStyle>
  3526. <CellForeColor>单元格前景色</CellForeColor>
  3527. <CellHeight>单元格高度</CellHeight>
  3528. <CellType>单元类型</CellType>
  3529. <CellWidth>单元格宽度</CellWidth>
  3530. <Center>中心</Center>
  3531. <CenterPoint>中心点</CenterPoint>
  3532. <ChartAreaBorderColor>图表区边框颜色</ChartAreaBorderColor>
  3533. <ChartAreaBrush>图表区刷</ChartAreaBrush>
  3534. <ChartAreaShowShadow>图表区显示为阴影</ChartAreaShowShadow>
  3535. <ChartType>图表类型</ChartType>
  3536. <Checked>选中</Checked>
  3537. <CheckOnClick>点击选择</CheckOnClick>
  3538. <CheckStyle>选择样式</CheckStyle>
  3539. <CheckStyleForFalse>未选中样式</CheckStyleForFalse>
  3540. <CheckStyleForTrue>选中样式</CheckStyleForTrue>
  3541. <Checksum>Checksum</Checksum>
  3542. <CheckSum>选择 Sum</CheckSum>
  3543. <CheckSum1>选择 Sum1</CheckSum1>
  3544. <CheckSum2>选择 Sum2</CheckSum2>
  3545. <Child>子级</Child>
  3546. <ChildColumns>子栏</ChildColumns>
  3547. <ChildSource>子数据源</ChildSource>
  3548. <ClearFormat>清除格式</ClearFormat>
  3549. <CloneContainer>克隆容器</CloneContainer>
  3550. <CloseValues>关闭值</CloseValues>
  3551. <Code>代码</Code>
  3552. <CodePage>代码页</CodePage>
  3553. <Collapsed>折叠</Collapsed>
  3554. <CollapseGroupFooter>折叠分组底部</CollapseGroupFooter>
  3555. <CollapsingEnabled>可折叠</CollapsingEnabled>
  3556. <Collate>比较</Collate>
  3557. <CollectionName>集合名称</CollectionName>
  3558. <Color>颜色</Color>
  3559. <ColorDataColumn>数据列涂色</ColorDataColumn>
  3560. <ColorEach>颜色每</ColorEach>
  3561. <ColorMeter>颜色</ColorMeter>
  3562. <Colors>颜色</Colors>
  3563. <ColorScaleCondition>色度条件</ColorScaleCondition>
  3564. <ColorScaleType>色度类型</ColorScaleType>
  3565. <Column>栏</Column>
  3566. <ColumnCount>列个数</ColumnCount>
  3567. <ColumnDirection>方向</ColumnDirection>
  3568. <ColumnGaps>间距</ColumnGaps>
  3569. <ColumnHeaderBackColor>列标头背景色</ColumnHeaderBackColor>
  3570. <ColumnHeaderForeColor>列标头前景色</ColumnHeaderForeColor>
  3571. <ColumnHeadersVisible>标题可见</ColumnHeadersVisible>
  3572. <Columns>栏数</Columns>
  3573. <ColumnWidth>栏宽</ColumnWidth>
  3574. <CommandTimeout>命令超时</CommandTimeout>
  3575. <CompanyPrefix>公司前缀</CompanyPrefix>
  3576. <ComponentStyle>组件样式</ComponentStyle>
  3577. <Condition>条件</Condition>
  3578. <ConditionOptions>条件选项</ConditionOptions>
  3579. <Conditions>条件</Conditions>
  3580. <ConnectionString>连接字符串</ConnectionString>
  3581. <ConnectOnStart>开始连接</ConnectOnStart>
  3582. <ConstantLines>恒定线</ConstantLines>
  3583. <Container>容器</Container>
  3584. <ContinuousText>连续文本</ContinuousText>
  3585. <ContourColor>轮廓线颜色</ContourColor>
  3586. <Converting>正在转换</Converting>
  3587. <ConvertNulls>无效转换</ConvertNulls>
  3588. <Copies>拷贝</Copies>
  3589. <Count>计数</Count>
  3590. <CountData>行数</CountData>
  3591. <Create>创建</Create>
  3592. <CreateFieldOnDoubleClick>双击创建字段</CreateFieldOnDoubleClick>
  3593. <CreateLabel>创建标签</CreateLabel>
  3594. <CrossFiltering>交叉过滤</CrossFiltering>
  3595. <Culture>区域</Culture>
  3596. <CustomFonts>自定义字体</CustomFonts>
  3597. <CustomFormat>自定义格式</CustomFormat>
  3598. <CutPieList>Cut Pie列表</CutPieList>
  3599. <Data>数据</Data>
  3600. <DataAdapter>数据适配器</DataAdapter>
  3601. <DataAdapters>数据适配器</DataAdapters>
  3602. <DataBarCondition>数据条条件</DataBarCondition>
  3603. <DataBindings>数据绑定</DataBindings>
  3604. <DataColor>数据涂色</DataColor>
  3605. <DataColumn>数据列</DataColumn>
  3606. <DataColumns>数据列</DataColumns>
  3607. <DataField>数据字段</DataField>
  3608. <DataForeground>数据前景</DataForeground>
  3609. <DataRelation>数据关系</DataRelation>
  3610. <DataRows>数据行</DataRows>
  3611. <DataSource>数据源</DataSource>
  3612. <DataSources>数据源</DataSources>
  3613. <DataTextField>数据字段文本</DataTextField>
  3614. <DataTransformation>数据转换</DataTransformation>
  3615. <DataType>数据类型</DataType>
  3616. <DataUrl>数据网址</DataUrl>
  3617. <DateInfo>数据信息</DateInfo>
  3618. <DateTimeStep>日期时间间隔</DateTimeStep>
  3619. <Default>默认</Default>
  3620. <DefaultColor>默认颜色</DefaultColor>
  3621. <DefaultHeightCell>默认单元高度</DefaultHeightCell>
  3622. <DefaultNamespace>默认命名空间</DefaultNamespace>
  3623. <DependentColumn>依赖列</DependentColumn>
  3624. <DependentValue>依赖值</DependentValue>
  3625. <Description>描述</Description>
  3626. <Destination>终点</Destination>
  3627. <DetectUrls>指向 Urls</DetectUrls>
  3628. <DeviceWidth>设备宽度</DeviceWidth>
  3629. <DialogResult>对话框结果</DialogResult>
  3630. <Diameter>直径</Diameter>
  3631. <Direction>方向</Direction>
  3632. <Disabled>残缺</Disabled>
  3633. <DisplayNameType>显示名称类型</DisplayNameType>
  3634. <DisplayValue>显示值</DisplayValue>
  3635. <Distance>距离</Distance>
  3636. <DistanceBetweenTabs>制表符间距</DistanceBetweenTabs>
  3637. <Dock>停靠</Dock>
  3638. <DockableTable>可停靠的表格</DockableTable>
  3639. <DockStyle>停靠样式</DockStyle>
  3640. <DrawBorder>绘制边框</DrawBorder>
  3641. <DrawHatch>绘制影线</DrawHatch>
  3642. <DrawLine>绘制线</DrawLine>
  3643. <DrillDown>钻取</DrillDown>
  3644. <DrillDownEnabled>可钻取</DrillDownEnabled>
  3645. <DrillDownMode>钻取模式</DrillDownMode>
  3646. <DrillDownPage>钻取页</DrillDownPage>
  3647. <DrillDownParameter1>钻取参数1</DrillDownParameter1>
  3648. <DrillDownParameter2>钻取参数2</DrillDownParameter2>
  3649. <DrillDownParameter3>钻取参数3</DrillDownParameter3>
  3650. <DrillDownParameter4>钻取参数4</DrillDownParameter4>
  3651. <DrillDownParameter5>钻取参数5</DrillDownParameter5>
  3652. <DrillDownParameters>钻取参数</DrillDownParameters>
  3653. <DrillDownReport>钻取报表</DrillDownReport>
  3654. <DropDownAlign>下拉对齐</DropDownAlign>
  3655. <DropDownStyle>下拉样式</DropDownStyle>
  3656. <DropDownWidth>下拉宽度</DropDownWidth>
  3657. <DropShadow>下拉阴影</DropShadow>
  3658. <Duplex>全双工</Duplex>
  3659. <Editable>可编辑</Editable>
  3660. <Effects>效果</Effects>
  3661. <EmptyBorderBrush>清空边框刷</EmptyBorderBrush>
  3662. <EmptyBorderWidth>清空边框宽度</EmptyBorderWidth>
  3663. <EmptyBrush>清空画刷</EmptyBrush>
  3664. <EmptyValue>空值</EmptyValue>
  3665. <Enabled>可用</Enabled>
  3666. <EnableLog>使用日志</EnableLog>
  3667. <EncodingMode>编码模式</EncodingMode>
  3668. <EncodingType>编码类型</EncodingType>
  3669. <EndCap>结束端</EndCap>
  3670. <EndColor>结束颜色</EndColor>
  3671. <EndValue>结束值</EndValue>
  3672. <EndValues>结束值</EndValues>
  3673. <EndWidth>结束宽度</EndWidth>
  3674. <EngineVersion>引擎版本</EngineVersion>
  3675. <EnumeratorSeparator>Enumerator 分隔符</EnumeratorSeparator>
  3676. <EnumeratorType>Enumerator 类型</EnumeratorType>
  3677. <ErrorCorrectionLevel>误差修正级别</ErrorCorrectionLevel>
  3678. <ErrorsCorrectionLevel>误差修正级别</ErrorsCorrectionLevel>
  3679. <EvenStyle>偶数行样式</EvenStyle>
  3680. <ExcelSheet>Excel Sheet</ExcelSheet>
  3681. <ExcelValue>Excel值</ExcelValue>
  3682. <Exponential>指数</Exponential>
  3683. <ExportAsImage>导出为图像</ExportAsImage>
  3684. <Expression>表达式</Expression>
  3685. <ExtensionDigit>扩展数字</ExtensionDigit>
  3686. <FaqPage>FAQ</FaqPage>
  3687. <Field>领域</Field>
  3688. <FieldIs>字段是</FieldIs>
  3689. <File>文件</File>
  3690. <Fill>填充</Fill>
  3691. <FillColor>颜色填充</FillColor>
  3692. <Filter>过滤</Filter>
  3693. <FilterElements>过滤元素</FilterElements>
  3694. <FilterEngine>过滤引擎</FilterEngine>
  3695. <FilterMode>过滤模式</FilterMode>
  3696. <FilterOn>启用过滤</FilterOn>
  3697. <Filters>过滤</Filters>
  3698. <FirstTabOffset>首个制表符偏移</FirstTabOffset>
  3699. <FixedWidth>固定宽度</FixedWidth>
  3700. <Flat>平滑</Flat>
  3701. <FlatMode>平滑模式</FlatMode>
  3702. <Focus>得到焦点</Focus>
  3703. <Font>字体</Font>
  3704. <FontBold>粗体</FontBold>
  3705. <FontItalic>斜体</FontItalic>
  3706. <FontName>字体名称</FontName>
  3707. <FontSize>字体尺寸</FontSize>
  3708. <FontSizeMode>字体大小模式</FontSizeMode>
  3709. <FontStrikeout>删除线</FontStrikeout>
  3710. <FontSubscript>下标</FontSubscript>
  3711. <FontSuperscript>上标</FontSuperscript>
  3712. <FontUnderline>下划线</FontUnderline>
  3713. <FontUnit>字体单位</FontUnit>
  3714. <FooterCanBreak>页脚可以中断</FooterCanBreak>
  3715. <FooterCanGrow>页脚可以放大</FooterCanGrow>
  3716. <FooterCanShrink>页脚可以收缩</FooterCanShrink>
  3717. <FooterColor>页脚颜色</FooterColor>
  3718. <FooterFont>页脚字体</FooterFont>
  3719. <FooterForeColor>页脚前色</FooterForeColor>
  3720. <FooterForeground>页脚前景</FooterForeground>
  3721. <FooterPrintAtBottom>底部打印页脚</FooterPrintAtBottom>
  3722. <FooterPrintIfEmpty>空白处打印页脚</FooterPrintIfEmpty>
  3723. <FooterPrintOn>页脚打印</FooterPrintOn>
  3724. <FooterPrintOnAllPages>所有页面打印页脚</FooterPrintOnAllPages>
  3725. <FooterPrintOnEvenOddPages>奇偶页打印页脚</FooterPrintOnEvenOddPages>
  3726. <FooterRowsCount>页脚行数</FooterRowsCount>
  3727. <Footers>页脚</Footers>
  3728. <ForeColor>前景色</ForeColor>
  3729. <Format>格式</Format>
  3730. <From>来自</From>
  3731. <FrozenColumns>冻结列</FrozenColumns>
  3732. <FullConvertExpression>完整转换表达式</FullConvertExpression>
  3733. <Function>函数</Function>
  3734. <Functions>函数</Functions>
  3735. <GlobalizationStrings>全局字符串</GlobalizationStrings>
  3736. <GlobalizedName>全局名称</GlobalizedName>
  3737. <GlyphColor>字形颜色</GlyphColor>
  3738. <GridColor>网格颜色</GridColor>
  3739. <GridLineColor>网格线颜色</GridLineColor>
  3740. <GridLinesHor>水平网格线</GridLinesHor>
  3741. <GridLinesHorColor>网格线水平颜色</GridLinesHorColor>
  3742. <GridLinesHorRight>网格线水平向右</GridLinesHorRight>
  3743. <GridLineStyle>网格线样式</GridLineStyle>
  3744. <GridLinesVert>垂直网格线</GridLinesVert>
  3745. <GridLinesVertColor>网格线垂直颜色</GridLinesVertColor>
  3746. <GridOutline>网格大纲</GridOutline>
  3747. <Group>组</Group>
  3748. <GroupDataColumn>组数据列</GroupDataColumn>
  3749. <GroupMeter>组</GroupMeter>
  3750. <GrowToHeight>适应高度</GrowToHeight>
  3751. <HeaderBackColor>标题背景色</HeaderBackColor>
  3752. <HeaderCanBreak>页眉可以中断</HeaderCanBreak>
  3753. <HeaderCanGrow>页眉可以放大</HeaderCanGrow>
  3754. <HeaderCanShrink>页眉可以缩小</HeaderCanShrink>
  3755. <HeaderColor>标题颜色</HeaderColor>
  3756. <HeaderFont>标题字体</HeaderFont>
  3757. <HeaderForeColor>标题前景色</HeaderForeColor>
  3758. <HeaderForeground>标题前景</HeaderForeground>
  3759. <HeaderPrintAtBottom>底部打印页眉</HeaderPrintAtBottom>
  3760. <HeaderPrintIfEmpty>空白处打印页眉</HeaderPrintIfEmpty>
  3761. <HeaderPrintOn>页眉打印</HeaderPrintOn>
  3762. <HeaderPrintOnAllPages>所有页面打印页眉</HeaderPrintOnAllPages>
  3763. <HeaderPrintOnEvenOddPages>奇偶页打印页眉</HeaderPrintOnEvenOddPages>
  3764. <HeaderRowsCount>页眉行数</HeaderRowsCount>
  3765. <Headers>页眉</Headers>
  3766. <HeaderText>标题文本</HeaderText>
  3767. <Heading>标题</Heading>
  3768. <HeatmapColors>热图颜色</HeatmapColors>
  3769. <Height>高度</Height>
  3770. <HideSeriesWithEmptyTitle>空标题的隐藏系列</HideSeriesWithEmptyTitle>
  3771. <HideZeros>零不显示</HideZeros>
  3772. <High>高</High>
  3773. <HighlightCondition>高亮条件</HighlightCondition>
  3774. <HighValues>高值</HighValues>
  3775. <HorAlignment>水平位置</HorAlignment>
  3776. <HorSpacing>水平间距</HorSpacing>
  3777. <HotBackColor>热门背景色</HotBackColor>
  3778. <HotColumnHeaderBackColor>热门列标题背景色</HotColumnHeaderBackColor>
  3779. <HotForeColor>热门前景色</HotForeColor>
  3780. <HotGlyphColor>热门字形色</HotGlyphColor>
  3781. <HotHeaderColor>热门标题颜色</HotHeaderColor>
  3782. <HotkeyPrefix>热键前缀</HotkeyPrefix>
  3783. <HotRowHeaderBackColor>热门行标题背景色</HotRowHeaderBackColor>
  3784. <HotSelectedBackColor>热门选定背景色</HotSelectedBackColor>
  3785. <HotSelectedForeColor>热门选定前景色</HotSelectedForeColor>
  3786. <HotSelectedGlyphColor>热门选定字形色</HotSelectedGlyphColor>
  3787. <HtmlTags>Html Tag</HtmlTags>
  3788. <Hyperlink>超链接</Hyperlink>
  3789. <HyperlinkDataColumn>超链接数据列</HyperlinkDataColumn>
  3790. <Icon>图标</Icon>
  3791. <IconAlignment>图标对齐</IconAlignment>
  3792. <IconColor>图标颜色</IconColor>
  3793. <IconSet>图标集</IconSet>
  3794. <IconSetCondition>图标集条件</IconSetCondition>
  3795. <Idents>页面边框</Idents>
  3796. <Image>图片</Image>
  3797. <ImageAlign>图像对齐</ImageAlign>
  3798. <ImageAlignment>对齐</ImageAlignment>
  3799. <ImageData>数据</ImageData>
  3800. <ImageHorAlignment>图像水平对齐</ImageHorAlignment>
  3801. <ImageMultipleFactor>缩放</ImageMultipleFactor>
  3802. <ImageRotation>图像旋转</ImageRotation>
  3803. <ImageStretch>拉伸</ImageStretch>
  3804. <ImageTiling>平铺</ImageTiling>
  3805. <ImageTransparency>图像透明度</ImageTransparency>
  3806. <ImageURL>URL</ImageURL>
  3807. <ImageVertAlignment>图像垂直对齐</ImageVertAlignment>
  3808. <ImportRelations>导入关系</ImportRelations>
  3809. <Increment>增量</Increment>
  3810. <Indent>缩进</Indent>
  3811. <IndividualColor>个人颜色</IndividualColor>
  3812. <InitBy>初始化通过</InitBy>
  3813. <InitialSelection>初始选择</InitialSelection>
  3814. <InitialSelectionSource>最初选择来源</InitialSelectionSource>
  3815. <Insert>插入</Insert>
  3816. <Interaction>互动</Interaction>
  3817. <InterlacedBrush>画笔行距</InterlacedBrush>
  3818. <InterlacingHor>水平行距</InterlacingHor>
  3819. <InterlacingHorBrush>隔行水平刷</InterlacingHorBrush>
  3820. <InterlacingVert>垂直行距</InterlacingVert>
  3821. <InterlacingVertBrush>隔行垂直刷</InterlacingVertBrush>
  3822. <Interpolation>插值</Interpolation>
  3823. <IsReversed>反向</IsReversed>
  3824. <Italic>斜体</Italic>
  3825. <Item>项目</Item>
  3826. <ItemHeight>项目高度</ItemHeight>
  3827. <Items>项目</Items>
  3828. <KeepChildTogether>保持子区一起</KeepChildTogether>
  3829. <KeepCrossTabTogether>保持跨表连接</KeepCrossTabTogether>
  3830. <KeepDetails>保持细节</KeepDetails>
  3831. <KeepDetailsTogether>保持明细在一起</KeepDetailsTogether>
  3832. <KeepFooterTogether>保持页脚一起</KeepFooterTogether>
  3833. <KeepGroupFooterTogether>保持分组尾在一起</KeepGroupFooterTogether>
  3834. <KeepGroupHeaderTogether>保持分组头在一起</KeepGroupHeaderTogether>
  3835. <KeepGroupTogether>保持分组一起</KeepGroupTogether>
  3836. <KeepHeaderTogether>保持页眉一起</KeepHeaderTogether>
  3837. <KeepMergedCellsTogether>将合并单元格保持在一起</KeepMergedCellsTogether>
  3838. <KeepReportSummaryTogether>保持报表合计在一起</KeepReportSummaryTogether>
  3839. <KeepSubReportTogether>保持子报表连接</KeepSubReportTogether>
  3840. <Key>键值</Key>
  3841. <KeyDataColumn>数据列key</KeyDataColumn>
  3842. <KeyMeter>键</KeyMeter>
  3843. <KeyMeters>键</KeyMeters>
  3844. <Keys>密钥</Keys>
  3845. <Label>标签</Label>
  3846. <LabelColor>标签颜色</LabelColor>
  3847. <LabelForeground>前景加标签</LabelForeground>
  3848. <LabelRotationMode>旋转模式加标签</LabelRotationMode>
  3849. <Labels>标签</Labels>
  3850. <LabelsColor>标签颜色</LabelsColor>
  3851. <LabelShadowForeground>前景加标签阴影</LabelShadowForeground>
  3852. <LabelsOffset>Labels Offset</LabelsOffset>
  3853. <Language>语言</Language>
  3854. <LargeHeight>高度拉伸</LargeHeight>
  3855. <LargeHeightFactor>高度拉伸倍数</LargeHeightFactor>
  3856. <Latitude>纬度</Latitude>
  3857. <Layout>布局</Layout>
  3858. <Left>左</Left>
  3859. <LeftSide>左边</LeftSide>
  3860. <Legend>图例</Legend>
  3861. <LegendBorderColor>图例边框颜色</LegendBorderColor>
  3862. <LegendBrush>图例画刷</LegendBrush>
  3863. <LegendLabelsColor>图例标签颜色</LegendLabelsColor>
  3864. <LegendTitleColor>图例标题颜色</LegendTitleColor>
  3865. <LegendValueType>图例值类型</LegendValueType>
  3866. <Length>长度</Length>
  3867. <LengthUnderLabels>标签下的长度</LengthUnderLabels>
  3868. <Lighting>加亮</Lighting>
  3869. <LimitRows>限制行</LimitRows>
  3870. <Linear>线性</Linear>
  3871. <LinearBarBorderBrush>线形条边框刷</LinearBarBorderBrush>
  3872. <LinearBarBrush>线形条刷</LinearBarBrush>
  3873. <LinearBarEmptyBorderBrush>线形条空白边框刷 </LinearBarEmptyBorderBrush>
  3874. <LinearBarEmptyBrush>线形条空白刷</LinearBarEmptyBrush>
  3875. <LineColor>线颜色</LineColor>
  3876. <LineColorNegative>负值线条颜色</LineColorNegative>
  3877. <LineLimit>线界限</LineLimit>
  3878. <LineMarker>标记线</LineMarker>
  3879. <LinesOfUnderline>下划线</LinesOfUnderline>
  3880. <LineSpacing>行间距</LineSpacing>
  3881. <LineStyle>线样式</LineStyle>
  3882. <LineWidth>线宽</LineWidth>
  3883. <Linked>链接</Linked>
  3884. <ListOfArguments>参数列表</ListOfArguments>
  3885. <ListOfHyperlinks>超链接列表</ListOfHyperlinks>
  3886. <ListOfTags>标记列表</ListOfTags>
  3887. <ListOfToolTips>工具栏列表</ListOfToolTips>
  3888. <ListOfValues>值列表</ListOfValues>
  3889. <ListOfValuesClose>收盘值列表</ListOfValuesClose>
  3890. <ListOfValuesEnd>成交值列表</ListOfValuesEnd>
  3891. <ListOfValuesHigh>最高值列表</ListOfValuesHigh>
  3892. <ListOfValuesLow>最低值列表</ListOfValuesLow>
  3893. <ListOfValuesOpen>开盘值列表</ListOfValuesOpen>
  3894. <ListOfWeights>加权列表</ListOfWeights>
  3895. <Localizable>可定位</Localizable>
  3896. <Location>位置</Location>
  3897. <Locked>固定</Locked>
  3898. <Logarithmic>对数的</Logarithmic>
  3899. <LogarithmicScale>对数刻度</LogarithmicScale>
  3900. <Longitude>经度</Longitude>
  3901. <Low>低</Low>
  3902. <LowValues>低值</LowValues>
  3903. <MajorInterval>主区间</MajorInterval>
  3904. <MapID>地图ID</MapID>
  3905. <Maps>地图</Maps>
  3906. <MapStyle>地图风格</MapStyle>
  3907. <MapType>地图类型</MapType>
  3908. <Margin>边缘</Margin>
  3909. <Margins>页边距</Margins>
  3910. <Marker>标记</Marker>
  3911. <MarkerAlignment>对齐标注</MarkerAlignment>
  3912. <MarkerAngle>标记角</MarkerAngle>
  3913. <MarkerBorder>书签边框</MarkerBorder>
  3914. <MarkerBrush>标记刷</MarkerBrush>
  3915. <MarkerColor>标注颜色</MarkerColor>
  3916. <MarkerSize>标注尺寸</MarkerSize>
  3917. <MarkerType>标注类型</MarkerType>
  3918. <MarkerVisible>标注可见</MarkerVisible>
  3919. <MasterComponent>父级组件</MasterComponent>
  3920. <MasterKeyDataColumn>数据列主键</MasterKeyDataColumn>
  3921. <MatrixSize>矩阵大小</MatrixSize>
  3922. <MaxDate>最大日期</MaxDate>
  3923. <MaxDropDownItems>最大下拉项目</MaxDropDownItems>
  3924. <MaxHeight>最大高度</MaxHeight>
  3925. <Maximum>最大值</Maximum>
  3926. <MaximumValue>最大值</MaximumValue>
  3927. <MaxLength>最大长度</MaxLength>
  3928. <MaxNumberOfLines>最大行号</MaxNumberOfLines>
  3929. <MaxSize>最大尺寸</MaxSize>
  3930. <MaxValue>最大值</MaxValue>
  3931. <MaxWidth>最大宽度</MaxWidth>
  3932. <MergeDuplicates>合并重复</MergeDuplicates>
  3933. <MergeHeaders>合并列头</MergeHeaders>
  3934. <Mid>中间</Mid>
  3935. <MinDate>最小日期</MinDate>
  3936. <MinHeight>最小高度</MinHeight>
  3937. <Minimum>最小值</Minimum>
  3938. <MinimumFontSize>最小字体尺寸</MinimumFontSize>
  3939. <MinimumValue>最低值</MinimumValue>
  3940. <MinorColor>Minor 颜色</MinorColor>
  3941. <MinorCount>Minor 数量</MinorCount>
  3942. <MinorInterval>次要间隔</MinorInterval>
  3943. <MinorLength>Minor 长度</MinorLength>
  3944. <MinorStyle>Minor 样式</MinorStyle>
  3945. <MinorVisible>Minor 可见</MinorVisible>
  3946. <MinRowsInColumn>栏内最少行数</MinRowsInColumn>
  3947. <MinSize>最小尺寸</MinSize>
  3948. <MinValue>最小值</MinValue>
  3949. <MinWidth>最小宽度</MinWidth>
  3950. <MirrorMargins>镜像边缘</MirrorMargins>
  3951. <Mode>模式</Mode>
  3952. <Module>模式</Module>
  3953. <Move>移动</Move>
  3954. <Multiline>多行</Multiline>
  3955. <MultipleFactor>放大倍数</MultipleFactor>
  3956. <Name>名称</Name>
  3957. <NameDataColumn>名称数据列</NameDataColumn>
  3958. <NameInSource>命名源</NameInSource>
  3959. <NameMeter>名称</NameMeter>
  3960. <NameParent>父级名称</NameParent>
  3961. <Namespaces>命名空间</Namespaces>
  3962. <NeedleBorderBrush>针形边框刷</NeedleBorderBrush>
  3963. <NeedleBorderWidth>针形边框宽度</NeedleBorderWidth>
  3964. <NeedleBrush>针形刷</NeedleBrush>
  3965. <NeedleCapBorderBrush>针帽刷</NeedleCapBorderBrush>
  3966. <NeedleCapBrush>针帽刷</NeedleCapBrush>
  3967. <Negative>负</Negative>
  3968. <NegativeColor>负色</NegativeColor>
  3969. <NegativeSeriesColors>负值系列颜色</NegativeSeriesColors>
  3970. <NegativeTextBrush>负值文本画刷</NegativeTextBrush>
  3971. <NestedLevel>嵌套层级</NestedLevel>
  3972. <NewColumnAfter>在后插入新列</NewColumnAfter>
  3973. <NewColumnBefore>在前插入新列</NewColumnBefore>
  3974. <NewPageAfter>在后插入新页</NewPageAfter>
  3975. <NewPageBefore>在前插入新面</NewPageBefore>
  3976. <NextPage>后页</NextPage>
  3977. <NoElements>无元素</NoElements>
  3978. <NoIcon>无图标</NoIcon>
  3979. <NullText>无效文本</NullText>
  3980. <NumberOfColumns>栏数</NumberOfColumns>
  3981. <NumberOfCopies>复制数</NumberOfCopies>
  3982. <NumberOfPass>通道数</NumberOfPass>
  3983. <NumberOfValues>值数量</NumberOfValues>
  3984. <OddStyle>奇数行样式</OddStyle>
  3985. <Offset>偏移</Offset>
  3986. <OffsetAngle>偏移角度</OffsetAngle>
  3987. <OnClick>点击</OnClick>
  3988. <OnDataManipulation>数据处理中</OnDataManipulation>
  3989. <OnHover>停留</OnHover>
  3990. <OnlyText>仅文本</OnlyText>
  3991. <OpenValues>打开值</OpenValues>
  3992. <Operation>操作</Operation>
  3993. <Options>选项</Options>
  3994. <Orientation>定向</Orientation>
  3995. <OthersText>其他文本</OthersText>
  3996. <Padding>填充</Padding>
  3997. <PageHeight>页高</PageHeight>
  3998. <PageNumbers>页码</PageNumbers>
  3999. <PageWidth>页宽</PageWidth>
  4000. <Paper>纸张</Paper>
  4001. <PaperSize>页面大小</PaperSize>
  4002. <PaperSourceFirstPage>首页纸张</PaperSourceFirstPage>
  4003. <PaperSourceOfFirstPage>首页纸张来源</PaperSourceOfFirstPage>
  4004. <PaperSourceOfOtherPages>其它页纸张来源</PaperSourceOfOtherPages>
  4005. <PaperSourceOtherPages>其它页纸张</PaperSourceOtherPages>
  4006. <Parameter>参数</Parameter>
  4007. <Parameters>参数</Parameters>
  4008. <ParametersDateFormat>参数日期格式</ParametersDateFormat>
  4009. <ParametersOrientation>方向参数</ParametersOrientation>
  4010. <ParentColumns>父级栏</ParentColumns>
  4011. <ParentSource>父级数据源</ParentSource>
  4012. <ParentValue>父类值</ParentValue>
  4013. <ParetoSeriesColors>帕累托颜色系列</ParetoSeriesColors>
  4014. <PasswordChar>密码字符</PasswordChar>
  4015. <Path>路径</Path>
  4016. <PathData>路径数据</PathData>
  4017. <PathSchema>路径图示</PathSchema>
  4018. <Pattern>模式</Pattern>
  4019. <Placement>放置</Placement>
  4020. <PlaceOnToolbox>放置工具箱</PlaceOnToolbox>
  4021. <PointAtCenter>指向中心</PointAtCenter>
  4022. <Position>位置</Position>
  4023. <Positive>正</Positive>
  4024. <PositiveColor>正色</PositiveColor>
  4025. <PreferredColumnWidth>首选列宽</PreferredColumnWidth>
  4026. <PreferredRowHeight>首选行高</PreferredRowHeight>
  4027. <PreventIntersection>防止重叠</PreventIntersection>
  4028. <PreviewMode>预览模式</PreviewMode>
  4029. <PreviewSettings>预览设置</PreviewSettings>
  4030. <Printable>可打印</Printable>
  4031. <PrintAtBottom>在底部打印</PrintAtBottom>
  4032. <PrinterName>打印机名称</PrinterName>
  4033. <PrinterSettings>打印机设置</PrinterSettings>
  4034. <PrintHeadersFootersFromPreviousPage>从前页打印页眉和页脚</PrintHeadersFootersFromPreviousPage>
  4035. <PrintIfDetailEmpty>明细为空时打印</PrintIfDetailEmpty>
  4036. <PrintIfEmpty>为空时打印</PrintIfEmpty>
  4037. <PrintIfParentDisabled>父级禁用时打印</PrintIfParentDisabled>
  4038. <PrintOn>打印在</PrintOn>
  4039. <PrintOnAllPages>打印全部页</PrintOnAllPages>
  4040. <PrintOnEvenOddPages>打印偶数奇数页</PrintOnEvenOddPages>
  4041. <PrintOnPreviousPage>打印前页</PrintOnPreviousPage>
  4042. <PrintTitleOnAllPages>在所有页面打印标题</PrintTitleOnAllPages>
  4043. <PrintVerticalBars>打印垂直条</PrintVerticalBars>
  4044. <ProcessAt>过程</ProcessAt>
  4045. <ProcessAtEnd>在结束时处理</ProcessAtEnd>
  4046. <ProcessingDuplicates>正在处理重复</ProcessingDuplicates>
  4047. <ProcessTilde>工艺波浪</ProcessTilde>
  4048. <ProductHomePage>产品主页</ProductHomePage>
  4049. <RadarStyle>雷达样式</RadarStyle>
  4050. <RadialBarBorderBrush>径向栏边框刷</RadialBarBorderBrush>
  4051. <RadialBarBrush>径向栏画刷</RadialBarBrush>
  4052. <RadialBarEmptyBorderBrush>径向栏空白边框刷</RadialBarEmptyBorderBrush>
  4053. <RadialBarEmptyBrush>径向栏空白刷</RadialBarEmptyBrush>
  4054. <Radius>半径</Radius>
  4055. <RadiusMode>半径模式</RadiusMode>
  4056. <Range>范围</Range>
  4057. <RangeColorMode>范围内颜色模式</RangeColorMode>
  4058. <RangeFrom>来自</RangeFrom>
  4059. <RangeMode>范围模式</RangeMode>
  4060. <RangeScrollEnabled>范围滚动启用</RangeScrollEnabled>
  4061. <RangeTo>到</RangeTo>
  4062. <RangeType>范围类型</RangeType>
  4063. <Ratio>比率</Ratio>
  4064. <RatioY>Y比例</RatioY>
  4065. <ReadOnly>只读</ReadOnly>
  4066. <RecentFonts>最近使用的字体</RecentFonts>
  4067. <ReconnectOnEachRow>每行重新连接</ReconnectOnEachRow>
  4068. <ReferencedAssemblies>引用程序集</ReferencedAssemblies>
  4069. <Refresh>刷新</Refresh>
  4070. <RefreshTime>刷新时间</RefreshTime>
  4071. <Regular>常规</Regular>
  4072. <Relation>关系</Relation>
  4073. <RelationName>关系名称</RelationName>
  4074. <Relations>关系</Relations>
  4075. <RelativeHeight>相对高度</RelativeHeight>
  4076. <RelativeWidth>相对宽度</RelativeWidth>
  4077. <RemoveUnusedDataBeforeStart>在开始前移除未使用数据</RemoveUnusedDataBeforeStart>
  4078. <RenderTo>渲染到</RenderTo>
  4079. <ReportAlias>报表别名</ReportAlias>
  4080. <ReportAuthor>报表作者</ReportAuthor>
  4081. <ReportCacheMode>报表缓存模式</ReportCacheMode>
  4082. <ReportDescription>报表描述</ReportDescription>
  4083. <ReportIcon>报告图标</ReportIcon>
  4084. <ReportImage>报表图像</ReportImage>
  4085. <ReportName>报表名称</ReportName>
  4086. <ReportUnit>报表单位</ReportUnit>
  4087. <RequestFromUser>要求用户输入</RequestFromUser>
  4088. <RequestParameters>参数要求</RequestParameters>
  4089. <ResetDataSource>重设数据源</ResetDataSource>
  4090. <ResetPageNumber>重设页码</ResetPageNumber>
  4091. <Resize>调整大小</Resize>
  4092. <Resource>资源</Resource>
  4093. <Resources>资源</Resources>
  4094. <Restrictions>限制</Restrictions>
  4095. <RetrieveOnlyUsedData>仅检索已用数据</RetrieveOnlyUsedData>
  4096. <ReturnValue>返回值</ReturnValue>
  4097. <ReverseHor>水平翻转</ReverseHor>
  4098. <ReverseVert>垂直翻转</ReverseVert>
  4099. <Right>右</Right>
  4100. <RightSide>右边</RightSide>
  4101. <RightToLeft>从右到左</RightToLeft>
  4102. <Rotation>旋转</Rotation>
  4103. <RotationLabels>旋转标签</RotationLabels>
  4104. <RotationMode>旋转模式</RotationMode>
  4105. <Round>环绕</Round>
  4106. <RoundValues>圆值</RoundValues>
  4107. <RowCount>行数</RowCount>
  4108. <RowHeaderBackColor>行标背景色</RowHeaderBackColor>
  4109. <RowHeaderForeColor>行标前景色</RowHeaderForeColor>
  4110. <RowHeadersVisible>行标题可见</RowHeadersVisible>
  4111. <RowHeaderWidth>行标题宽度</RowHeaderWidth>
  4112. <Rows>行</Rows>
  4113. <Scale>缩放</Scale>
  4114. <ScaleHor>水平缩放</ScaleHor>
  4115. <ScriptLanguage>脚本语言</ScriptLanguage>
  4116. <SegmentPerHeight>纵向连页</SegmentPerHeight>
  4117. <SegmentPerWidth>横向连页</SegmentPerWidth>
  4118. <SelectedBackColor>选定背景色</SelectedBackColor>
  4119. <SelectedCellBackColor>选定单元格背景色</SelectedCellBackColor>
  4120. <SelectedCellForeColor>选定单元格前景色</SelectedCellForeColor>
  4121. <SelectedDataColor>选定数据颜色</SelectedDataColor>
  4122. <SelectedDataForeground>选定数据前景</SelectedDataForeground>
  4123. <SelectedForeColor>选定前景色</SelectedForeColor>
  4124. <SelectedGlyphColor>选定字形色</SelectedGlyphColor>
  4125. <SelectedIndex>选择索引</SelectedIndex>
  4126. <SelectedItem>选择项目</SelectedItem>
  4127. <SelectedKey>所选键</SelectedKey>
  4128. <SelectedValue>选择值</SelectedValue>
  4129. <Selection>选择</Selection>
  4130. <SelectionBackColor>选择背景色</SelectionBackColor>
  4131. <SelectionEnabled>选择启用</SelectionEnabled>
  4132. <SelectionForeColor>选择前景色</SelectionForeColor>
  4133. <SelectionMode>选择模式</SelectionMode>
  4134. <SeparatorColor>分隔符颜色</SeparatorColor>
  4135. <SerialNumber>序列号</SerialNumber>
  4136. <Series>序列</Series>
  4137. <SeriesColors>颜色系列</SeriesColors>
  4138. <SeriesLabels>序列标签</SeriesLabels>
  4139. <SeriesLabelsBorderColor>标签边框颜色系列</SeriesLabelsBorderColor>
  4140. <SeriesLabelsBrush>标签画刷系列</SeriesLabelsBrush>
  4141. <SeriesLabelsColor>标签颜色系列</SeriesLabelsColor>
  4142. <SeriesLabelsLineColor>标签线颜色</SeriesLabelsLineColor>
  4143. <SeriesLighting>系列高亮</SeriesLighting>
  4144. <SeriesShowBorder>系列展示边框</SeriesShowBorder>
  4145. <SeriesShowShadow>阴影展示系列</SeriesShowShadow>
  4146. <SeriesTitle>标题系列</SeriesTitle>
  4147. <Shadow>阴影</Shadow>
  4148. <ShadowBrush>阴影刷</ShadowBrush>
  4149. <ShadowColor>阴影颜色</ShadowColor>
  4150. <ShadowSize>阴影尺寸</ShadowSize>
  4151. <ShapeType>形状类型</ShapeType>
  4152. <Shift>Shift</Shift>
  4153. <ShiftMode>Shift 模式</ShiftMode>
  4154. <ShortName>简称</ShortName>
  4155. <ShortValue>简值</ShortValue>
  4156. <ShowAllValue>显示所有值</ShowAllValue>
  4157. <ShowBehind>显示于后面</ShowBehind>
  4158. <ShowBubble>显示气泡</ShowBubble>
  4159. <ShowDialog>显示对话框</ShowDialog>
  4160. <ShowEdgeValues>显示边框值</ShowEdgeValues>
  4161. <ShowImageBehind>显示图片于后面</ShowImageBehind>
  4162. <ShowInLegend>显示图例</ShowInLegend>
  4163. <ShowInnerPoints>显示内部点</ShowInnerPoints>
  4164. <ShowInPercent>显示为百分比</ShowInPercent>
  4165. <ShowLabels>显示标签</ShowLabels>
  4166. <ShowLabelText>显示标签文本</ShowLabelText>
  4167. <ShowLegend>显示图例</ShowLegend>
  4168. <ShowMarker>显示标注</ShowMarker>
  4169. <ShowMeanMarkers>显示平均标记</ShowMeanMarkers>
  4170. <ShowNulls>显示空值</ShowNulls>
  4171. <ShowOnZeroValues>显示零值</ShowOnZeroValues>
  4172. <ShowOthers>显示其他</ShowOthers>
  4173. <ShowPercents>显示百分比</ShowPercents>
  4174. <ShowQuietZoneIndicator>显示空白区指示符</ShowQuietZoneIndicator>
  4175. <ShowQuietZones>显示空白区</ShowQuietZones>
  4176. <ShowScrollBar>显示滚动条</ShowScrollBar>
  4177. <ShowSelectAll>显示全选</ShowSelectAll>
  4178. <ShowSeriesLabels>显示系列标签</ShowSeriesLabels>
  4179. <ShowShadow>显示阴影</ShowShadow>
  4180. <ShowTotal>显示合计</ShowTotal>
  4181. <ShowUpDown>显示升降</ShowUpDown>
  4182. <ShowValue>显示值</ShowValue>
  4183. <ShowXAxis>显示横坐标</ShowXAxis>
  4184. <ShowYAxis>显示纵坐标</ShowYAxis>
  4185. <ShowZeros>显示零</ShowZeros>
  4186. <ShrinkFontToFit>压缩</ShrinkFontToFit>
  4187. <ShrinkFontToFitMinimumSize>压缩为最小尺寸</ShrinkFontToFitMinimumSize>
  4188. <Side>边</Side>
  4189. <Sides>边</Sides>
  4190. <Simple>简单</Simple>
  4191. <Size>尺寸</Size>
  4192. <SizeMode>尺寸模式</SizeMode>
  4193. <Skin>皮肤</Skin>
  4194. <SkipFirst>忽略第一个</SkipFirst>
  4195. <SkipIndices>跳过索引</SkipIndices>
  4196. <SkipIndicesObj>跳过索引</SkipIndicesObj>
  4197. <SkipMajorValues>跳过主要值</SkipMajorValues>
  4198. <SkipValues>跳过值</SkipValues>
  4199. <SkipValuesObj>跳过值</SkipValuesObj>
  4200. <Smoothing>平滑</Smoothing>
  4201. <Sort>排序</Sort>
  4202. <SortBy>排序为</SortBy>
  4203. <SortDirection>排序方向</SortDirection>
  4204. <Sorted>已排序</Sorted>
  4205. <SortingColumn>列排序</SortingColumn>
  4206. <SortingEnabled>可排序</SortingEnabled>
  4207. <SortType>排序类型</SortType>
  4208. <Space>空格</Space>
  4209. <SpaceRatio>空间比</SpaceRatio>
  4210. <Spacing>间隔</Spacing>
  4211. <SqlCommand>Sql命令</SqlCommand>
  4212. <StartAngle>开始角度</StartAngle>
  4213. <StartCap>起始端</StartCap>
  4214. <StartColor>开始颜色</StartColor>
  4215. <StartFromZero>从零开始</StartFromZero>
  4216. <StartMode>开始模式</StartMode>
  4217. <StartNewPage>开始新页</StartNewPage>
  4218. <StartNewPageIfLessThan>开始新页如果少于</StartNewPageIfLessThan>
  4219. <StartPosition>起始位置</StartPosition>
  4220. <StartValue>起始值</StartValue>
  4221. <StartWidth>起始宽度</StartWidth>
  4222. <Step>步骤</Step>
  4223. <Stop>停止</Stop>
  4224. <StopBeforePage>停止于页面</StopBeforePage>
  4225. <StopBeforePrint>停止打印于</StopBeforePrint>
  4226. <StoreImagesInResources>将图像存储在资源</StoreImagesInResources>
  4227. <Stretch>拉伸</Stretch>
  4228. <StretchToPrintArea>拉伸至打印区域</StretchToPrintArea>
  4229. <Strikeout>删除线</Strikeout>
  4230. <StripBrush>长条刷</StripBrush>
  4231. <Strips>长条</Strips>
  4232. <Stroke>笔画</Stroke>
  4233. <StructuredAppendPosition>结构化附加位置</StructuredAppendPosition>
  4234. <StructuredAppendTotal>结构化附加所有</StructuredAppendTotal>
  4235. <Style>样式</Style>
  4236. <StyleColors>样式颜色</StyleColors>
  4237. <Styles>样式</Styles>
  4238. <SubReportPage>子报表页面</SubReportPage>
  4239. <Summaries>总结</Summaries>
  4240. <Summary>聚合</Summary>
  4241. <SummaryExpression>统计表达式</SummaryExpression>
  4242. <SummarySortDirection>统计排序方向</SummarySortDirection>
  4243. <SummaryType>统计类型</SummaryType>
  4244. <SummaryValues>合计值</SummaryValues>
  4245. <SupplementCode>附加码</SupplementCode>
  4246. <SupplementType>附加码类型</SupplementType>
  4247. <SweepAngle>扫略角度</SweepAngle>
  4248. <SystemFonts>系统字体</SystemFonts>
  4249. <SystemVariable>系统变量</SystemVariable>
  4250. <SystemVariables>系统变量</SystemVariables>
  4251. <Table>表</Table>
  4252. <Tag>标识</Tag>
  4253. <TagDataColumn>标签数据列</TagDataColumn>
  4254. <TagValue>标识值</TagValue>
  4255. <Target>目标</Target>
  4256. <TargetIcon>目标图标</TargetIcon>
  4257. <TargetMode>靶模型</TargetMode>
  4258. <Tension>拉伸</Tension>
  4259. <Text>文本</Text>
  4260. <TextAfter>文本于后</TextAfter>
  4261. <TextAlign>对齐文本</TextAlign>
  4262. <TextAlignment>文本对齐</TextAlignment>
  4263. <TextBefore>文本于前</TextBefore>
  4264. <TextBrush>文本刷</TextBrush>
  4265. <TextColor>文本颜色</TextColor>
  4266. <TextFormat>文本格式</TextFormat>
  4267. <TextOnly>仅文本</TextOnly>
  4268. <TextOptions>文本选项</TextOptions>
  4269. <TextQuality>文本质量</TextQuality>
  4270. <TickLabelMajorFont>刻度标签主要字体</TickLabelMajorFont>
  4271. <TickLabelMajorTextBrush>刻度标签主要文本刷</TickLabelMajorTextBrush>
  4272. <TickLabelMinorFont>刻度标签次要字体</TickLabelMinorFont>
  4273. <TickLabelMinorTextBrush>刻度标签次要文本刷</TickLabelMinorTextBrush>
  4274. <TickMarkMajorBorder>刻度线主要边框</TickMarkMajorBorder>
  4275. <TickMarkMajorBorderWidth>刻度线主要边框宽度</TickMarkMajorBorderWidth>
  4276. <TickMarkMajorBrush>刻度线主要画刷</TickMarkMajorBrush>
  4277. <TickMarkMinorBorder>刻度线次要边框</TickMarkMinorBorder>
  4278. <TickMarkMinorBorderWidth>刻度线次要边框宽度</TickMarkMinorBorderWidth>
  4279. <TickMarkMinorBrush>刻度线次要画刷</TickMarkMinorBrush>
  4280. <Ticks>记号</Ticks>
  4281. <Title>标题</Title>
  4282. <TitleBeforeHeader>标题在页眉前</TitleBeforeHeader>
  4283. <TitleColor>标题颜色</TitleColor>
  4284. <TitleDirection>题目方向</TitleDirection>
  4285. <TitleFont>标题字体</TitleFont>
  4286. <TitleVisible>可见</TitleVisible>
  4287. <To>到</To>
  4288. <Today>当天</Today>
  4289. <ToolTip>提示信息</ToolTip>
  4290. <ToolTipDataColumn>工具提示数据列</ToolTipDataColumn>
  4291. <Top>顶端</Top>
  4292. <Topmost>顶端的</Topmost>
  4293. <TopmostLine>顶端线</TopmostLine>
  4294. <TopN>Top N</TopN>
  4295. <TopSide>顶部</TopSide>
  4296. <Total>总计</Total>
  4297. <TotalLabel>标签</TotalLabel>
  4298. <Totals>总计</Totals>
  4299. <TrackColor>轨迹颜色</TrackColor>
  4300. <TransparentColor>透明色</TransparentColor>
  4301. <TrendLine>趋势线</TrendLine>
  4302. <TrendLineColor>趋线颜色</TrendLineColor>
  4303. <TrendLines>趋势线</TrendLines>
  4304. <TrendLineShowShadow>趋线显示阴影</TrendLineShowShadow>
  4305. <TrimExcessData>清理多余数据</TrimExcessData>
  4306. <Trimming>截断</Trimming>
  4307. <Type>类型</Type>
  4308. <TypeName>类型名称</TypeName>
  4309. <Types>类型</Types>
  4310. <Underline>下划线</Underline>
  4311. <UndoLimit>撤销限制</UndoLimit>
  4312. <Unit>单位</Unit>
  4313. <UnlimitedBreakable>不限制分页</UnlimitedBreakable>
  4314. <UnlimitedHeight>不限制高度</UnlimitedHeight>
  4315. <UnlimitedWidth>不限制宽度</UnlimitedWidth>
  4316. <UpperMarks>上标记</UpperMarks>
  4317. <UseAliases>使用别名</UseAliases>
  4318. <UseExternalReport>使用外部报表</UseExternalReport>
  4319. <UseParentStyles>使用父级样式</UseParentStyles>
  4320. <UseRangeColor>使用范围颜色</UseRangeColor>
  4321. <UseRectangularSymbols>使用矩形符号</UseRectangularSymbols>
  4322. <UseSeriesColor>使用序列颜色</UseSeriesColor>
  4323. <UseStyleOfSummaryInColumnTotal>显示列汇总</UseStyleOfSummaryInColumnTotal>
  4324. <UseStyleOfSummaryInRowTotal>显示行汇总</UseStyleOfSummaryInRowTotal>
  4325. <UseValuesFromTheSpecifiedRange>使用指定范围内的值</UseValuesFromTheSpecifiedRange>
  4326. <Value>值</Value>
  4327. <ValueClose>收盘值</ValueClose>
  4328. <ValueDataColumn>值数据列</ValueDataColumn>
  4329. <ValueDataColumnClose>收盘值数据列</ValueDataColumnClose>
  4330. <ValueDataColumnEnd>成交值数据列</ValueDataColumnEnd>
  4331. <ValueDataColumnHigh>最高值数据列</ValueDataColumnHigh>
  4332. <ValueDataColumnLow>最低值数据列</ValueDataColumnLow>
  4333. <ValueDataColumnOpen>开盘值数据列值</ValueDataColumnOpen>
  4334. <ValueEnd>成交值</ValueEnd>
  4335. <ValueFormat>值的格式</ValueFormat>
  4336. <ValueHigh>最高值</ValueHigh>
  4337. <ValueLow>最低值</ValueLow>
  4338. <ValueMeter>值</ValueMeter>
  4339. <ValueOpen>开盘值</ValueOpen>
  4340. <Values>值</Values>
  4341. <ValueType>值类型</ValueType>
  4342. <ValueTypeSeparator>值类型分隔符</ValueTypeSeparator>
  4343. <Variable>变量</Variable>
  4344. <Variables>变量</Variables>
  4345. <Variation>变化</Variation>
  4346. <Version>版本</Version>
  4347. <VertAlignment>垂直位置</VertAlignment>
  4348. <VertSpacing>垂直间距</VertSpacing>
  4349. <ViewMode>查看模式</ViewMode>
  4350. <Visible>可见</Visible>
  4351. <Watermark>水印</Watermark>
  4352. <Weight>加权</Weight>
  4353. <WeightDataColumn>加权数据列</WeightDataColumn>
  4354. <Weights>权重</Weights>
  4355. <Width>宽度</Width>
  4356. <WindowState>窗口状态</WindowState>
  4357. <WordWrap>自动换行</WordWrap>
  4358. <Wrap>换行</Wrap>
  4359. <WrapGap>行距</WrapGap>
  4360. <XAxis>X 坐标</XAxis>
  4361. <XTopAxis>X 上坐标</XTopAxis>
  4362. <YAxis>Y 坐标</YAxis>
  4363. <YRightAxis>Y 右坐标</YRightAxis>
  4364. <Zoom>缩放</Zoom>
  4365. </PropertyMain>
  4366. <PropertySystemColors>
  4367. <ActiveBorder>活动边框</ActiveBorder>
  4368. <ActiveCaption>活动标题栏</ActiveCaption>
  4369. <ActiveCaptionText>活动标题栏文本</ActiveCaptionText>
  4370. <AppWorkspace>应用程序工作区</AppWorkspace>
  4371. <Control>按钮表面</Control>
  4372. <ControlDark>按钮亮阴影</ControlDark>
  4373. <ControlDarkDark>按钮暗阴影</ControlDarkDark>
  4374. <ControlLight>按钮阴影</ControlLight>
  4375. <ControlLightLight>按钮突出显示</ControlLightLight>
  4376. <ControlText>按钮文本</ControlText>
  4377. <Desktop>桌面</Desktop>
  4378. <GrayText>无效文本</GrayText>
  4379. <Highlight>突出显示</Highlight>
  4380. <HighlightText>突出显示文本</HighlightText>
  4381. <HotTrack>热跟踪</HotTrack>
  4382. <InactiveBorder>非活动边框</InactiveBorder>
  4383. <InactiveCaption>非活动标题栏</InactiveCaption>
  4384. <InactiveCaptionText>非活动标题栏文本</InactiveCaptionText>
  4385. <Info>工具提示</Info>
  4386. <InfoText>工具提示文本</InfoText>
  4387. <Menu>菜单条</Menu>
  4388. <MenuText>菜单文本</MenuText>
  4389. <ScrollBar>滚动条</ScrollBar>
  4390. <Window>窗口背景</Window>
  4391. <WindowFrame>窗口框架</WindowFrame>
  4392. <WindowText>窗口文本</WindowText>
  4393. </PropertySystemColors>
  4394. <QueryBuilder>
  4395. <AddObject>增加对象</AddObject>
  4396. <AddSubQuery>增加派生表</AddSubQuery>
  4397. <AllObjects>(所有对象)</AllObjects>
  4398. <BadFromObjectExpression>无效的 FROM 表达式!</BadFromObjectExpression>
  4399. <BadObjectName>无效对象名!</BadObjectName>
  4400. <BadSelectStatement>无效 SELECT 语句!</BadSelectStatement>
  4401. <Collections>集合</Collections>
  4402. <CreateLinksFromForeignKeys>通过外键创建链接</CreateLinksFromForeignKeys>
  4403. <CriteriaAlias>别名</CriteriaAlias>
  4404. <CriteriaCriteria>过滤</CriteriaCriteria>
  4405. <CriteriaExpression>表达式</CriteriaExpression>
  4406. <CriteriaGroupBy>分组</CriteriaGroupBy>
  4407. <CriteriaOr>或...</CriteriaOr>
  4408. <CriteriaOutput>输出</CriteriaOutput>
  4409. <CriteriaSortOrder>排序</CriteriaSortOrder>
  4410. <CriteriaSortType>排序方式</CriteriaSortType>
  4411. <Database>数据库</Database>
  4412. <DataSourceProperties>数据源属性</DataSourceProperties>
  4413. <DialectDontSupportDatabases>服务器不支持从不同数据库查询对象.</DialectDontSupportDatabases>
  4414. <DialectDontSupportSchemas>服务器不支持 schemas.</DialectDontSupportSchemas>
  4415. <DialectDontSupportUnions>服务器不支持联合查询.</DialectDontSupportUnions>
  4416. <DialectDontSupportUnionsBrackets>服务器不支持在联合查询中使用括号.</DialectDontSupportUnionsBrackets>
  4417. <DialectDontSupportUnionsBracketsInSubQuery>服务器不支持子查询.</DialectDontSupportUnionsBracketsInSubQuery>
  4418. <DialectDontSupportUnionsInSubQueries>服务器不支持在子查询中使用 unions.</DialectDontSupportUnionsInSubQueries>
  4419. <Edit>编辑</Edit>
  4420. <EncloseWithBrackets>使用括号</EncloseWithBrackets>
  4421. <Expressions>表达式</Expressions>
  4422. <InsertEmptyItem>插入空项</InsertEmptyItem>
  4423. <JoinExpression>Join 表达式</JoinExpression>
  4424. <LabelAlias>别名:</LabelAlias>
  4425. <LabelFilterObjectsBySchemaName>用 Schema 名过滤对象:</LabelFilterObjectsBySchemaName>
  4426. <LabelJoinExpression>Join 表达式n:</LabelJoinExpression>
  4427. <LabelLeftColumn>左边列:</LabelLeftColumn>
  4428. <LabelLeftObject>左边对象:</LabelLeftObject>
  4429. <LabelObject>对象:</LabelObject>
  4430. <LabelRightColumn>右边列:</LabelRightColumn>
  4431. <LabelRightObject>右边对象:</LabelRightObject>
  4432. <LinkProperties>链接属性</LinkProperties>
  4433. <MetadataProviderCantExecSQL>所使用的元数据提供者不能执行SQL查询.</MetadataProviderCantExecSQL>
  4434. <MetaProviderCantLoadMetadata>所使用的元数据提供者不能自动导入元数据.</MetaProviderCantLoadMetadata>
  4435. <MetaProviderCantLoadMetadataForDatabase>所使用的元数据提供者不能自动从数据库导入元数据: {0}</MetaProviderCantLoadMetadataForDatabase>
  4436. <MoveDown>下移</MoveDown>
  4437. <MoveUp>上移</MoveUp>
  4438. <NewUnionSubQuery>新建 union 子查询</NewUnionSubQuery>
  4439. <NoConnectionObject>无连接对象 (属性 {0} 未分配).</NoConnectionObject>
  4440. <NoTransactionObject>无事务对象 (属性 {0} 未分配).</NoTransactionObject>
  4441. <Objects>对象</Objects>
  4442. <ProcedureParameters>存储过程参数</ProcedureParameters>
  4443. <Procedures>存储过程</Procedures>
  4444. <qnSaveChanges>您是否确定保存查询改变?</qnSaveChanges>
  4445. <Query>查询</Query>
  4446. <QueryBuilder>查询构造器</QueryBuilder>
  4447. <QueryParameters>查询参数</QueryParameters>
  4448. <QueryProperties>查询属性</QueryProperties>
  4449. <Remove>移除</Remove>
  4450. <RemoveBrackets>移除括号</RemoveBrackets>
  4451. <RunQueryBuilder>运行查询构造器</RunQueryBuilder>
  4452. <SelectAllFromLeft>左边所有数据</SelectAllFromLeft>
  4453. <SelectAllFromRight>右边所有数据</SelectAllFromRight>
  4454. <SwitchToDerivedTable>切换到派生表</SwitchToDerivedTable>
  4455. <Tables>表</Tables>
  4456. <UnexpectedTokenAt>未知错误 "{0}" 在行 {1}, 列 {2}!</UnexpectedTokenAt>
  4457. <Unions>联合查询</Unions>
  4458. <UnionSubMenu>联合查询</UnionSubMenu>
  4459. <ViewQuery>视图查询</ViewQuery>
  4460. <Views>视图</Views>
  4461. </QueryBuilder>
  4462. <Questions>
  4463. <qnConfiguration>请为属性面板选择配置的类型. 所选配置的类型依赖于课件属性的个数和它们对报表开发人员的复杂性.您可以通过属性面板的上下文菜单更改配置类型.</qnConfiguration>
  4464. <qnDictionaryNew>您是否想要创建新的字典?</qnDictionaryNew>
  4465. <qnLanguageNew>您已经改变报表语言。这将导致新的报表代码生成。 您是否确定要保存当前语言?</qnLanguageNew>
  4466. <qnPageDelete>您是否想要删除页面?</qnPageDelete>
  4467. <qnRemove>您是否想要移除?</qnRemove>
  4468. <qnRemoveService>您是否想要移除服务?</qnRemoveService>
  4469. <qnRemoveServiceCategory>您是否想要移除分类?</qnRemoveServiceCategory>
  4470. <qnRemoveUnused>您是否想要移除未使用的项目?</qnRemoveUnused>
  4471. <qnReplace>是否要替换现有项{0}?</qnReplace>
  4472. <qnRestoreDefault>恢复默认?</qnRestoreDefault>
  4473. <qnSaveChanges>保存改变在{0}?</qnSaveChanges>
  4474. <qnSaveChangesToPreviewPage>您是否要保存页面改变?</qnSaveChangesToPreviewPage>
  4475. <qnSynchronize>是否同步数据存储和数据字典的内容?</qnSynchronize>
  4476. <qnSynchronizeServices>是否同步服务?</qnSynchronizeServices>
  4477. </Questions>
  4478. <Report>
  4479. <ActiveRelation>激活关系</ActiveRelation>
  4480. <Address>地址</Address>
  4481. <Alphabetical>按字母顺序</Alphabetical>
  4482. <Bands>栏</Bands>
  4483. <Basic>基本</Basic>
  4484. <BasicConfiguration>对象属性的最小数字, 是渲染基本报告类型所需要的.</BasicConfiguration>
  4485. <BusinessObjects>Business Objects</BusinessObjects>
  4486. <Categorized>分类</Categorized>
  4487. <Charts>图表</Charts>
  4488. <Checking>检查...</Checking>
  4489. <ClickForMoreDetails>单击获得详细资料</ClickForMoreDetails>
  4490. <CollapseAll>全部折叠</CollapseAll>
  4491. <Collection>集合</Collection>
  4492. <CompilingReport>正在编译报表</CompilingReport>
  4493. <Complete>完成</Complete>
  4494. <Components>组件</Components>
  4495. <ConnectingToData>正在连接数据</ConnectingToData>
  4496. <CopyOf>复制</CopyOf>
  4497. <CreateNewReportPageForm>创建一个新报表,添加页面,添加窗体</CreateNewReportPageForm>
  4498. <CreatingReport>正在创建报表</CreatingReport>
  4499. <CrossBands>交叉栏</CrossBands>
  4500. <Dialogs>报表控件</Dialogs>
  4501. <EditStyles>编辑样式</EditStyles>
  4502. <Enhancements>增强</Enhancements>
  4503. <Errors>错误</Errors>
  4504. <EventsTab>事件表</EventsTab>
  4505. <ExpandAll>全部展开</ExpandAll>
  4506. <FilterAnd>并且</FilterAnd>
  4507. <FilterOr>或</FilterOr>
  4508. <FinishingReport>正在完成报表</FinishingReport>
  4509. <FirstPass>第一通道</FirstPass>
  4510. <FixedBugs>修复错误</FixedBugs>
  4511. <Gallery>图库</Gallery>
  4512. <GenerateNewCode>生成新代码</GenerateNewCode>
  4513. <History>历史记录</History>
  4514. <Infographics>信息图</Infographics>
  4515. <InfoMessage>{0} - {1} 查找.</InfoMessage>
  4516. <InformationMessages>信息类消息</InformationMessages>
  4517. <LabelAlias>别名:</LabelAlias>
  4518. <LabelAuthor>作者:</LabelAuthor>
  4519. <LabelBackground>背景:</LabelBackground>
  4520. <LabelCategory>分类:</LabelCategory>
  4521. <LabelCentimeters>厘米:</LabelCentimeters>
  4522. <LabelCollectionName>集合名称:</LabelCollectionName>
  4523. <LabelColor>颜色:</LabelColor>
  4524. <LabelCountData>行数:</LabelCountData>
  4525. <LabelDataBand>数据绑定:</LabelDataBand>
  4526. <LabelDataColumn>数据列:</LabelDataColumn>
  4527. <LabelDefaultValue>默认值:</LabelDefaultValue>
  4528. <LabelExpression>表达式:</LabelExpression>
  4529. <LabelFactorLevel>嵌套系数:</LabelFactorLevel>
  4530. <LabelFontName>字体名称:</LabelFontName>
  4531. <LabelFunction>函数:</LabelFunction>
  4532. <LabelHundredthsOfInch>百分之一英寸:</LabelHundredthsOfInch>
  4533. <LabelInches>英寸:</LabelInches>
  4534. <LabelMillimeters>毫米:</LabelMillimeters>
  4535. <LabelName>名称:</LabelName>
  4536. <LabelNameInSource>命名源:</LabelNameInSource>
  4537. <LabelNestedLevel>嵌套等级:</LabelNestedLevel>
  4538. <LabelPassword>密码:</LabelPassword>
  4539. <LabelPixels>像素:</LabelPixels>
  4540. <LabelQueryTimeout>查询超时:</LabelQueryTimeout>
  4541. <LabelSystemVariable>系统变量:</LabelSystemVariable>
  4542. <LabelTableOfContentsHint>请检查一下目录中应该包含的组件。一个组件等于一个标题级别.</LabelTableOfContentsHint>
  4543. <LabelTotals>合计</LabelTotals>
  4544. <LabelType>类型:</LabelType>
  4545. <LabelUserName>用户:</LabelUserName>
  4546. <LabelValue>值:</LabelValue>
  4547. <LoadingReport>正在加载报表</LoadingReport>
  4548. <nameAssembly>程序集</nameAssembly>
  4549. <NewFeatures>新功能</NewFeatures>
  4550. <No>否</No>
  4551. <NoFixes>没有修复或更新的版本!</NoFixes>
  4552. <NoIssues>没有问题</NoIssues>
  4553. <NoNewVersions>没有可用的新版本!</NoNewVersions>
  4554. <NotAssigned>未设置</NotAssigned>
  4555. <Null>空值</Null>
  4556. <Office2010Back>返回</Office2010Back>
  4557. <PageNofM>{0} / {1}页</PageNofM>
  4558. <PreparingReport>正在准备报表</PreparingReport>
  4559. <Professional>专业</Professional>
  4560. <ProfessionalConfiguration>所有对象属性.</ProfessionalConfiguration>
  4561. <PropertiesTab>属性表</PropertiesTab>
  4562. <RangeAll>全部</RangeAll>
  4563. <RangeCurrentPage>当前页</RangeCurrentPage>
  4564. <RangeInfo>输入页码并且/或页码范围用逗号分隔。例如: 1, 3, 5-12</RangeInfo>
  4565. <RangePage>页面范围</RangePage>
  4566. <RangePages>页数:</RangePages>
  4567. <ReportChecker>报告检查器</ReportChecker>
  4568. <ReportRenderingMessages>报表渲染信息</ReportRenderingMessages>
  4569. <RestartDesigner>您需要重新启动报表设计器</RestartDesigner>
  4570. <SaveReportPagesOrFormsFromReport>保存报表、页面或窗体</SaveReportPagesOrFormsFromReport>
  4571. <SavingReport>正在保存报表</SavingReport>
  4572. <SecondPass>第二通道</SecondPass>
  4573. <Shapes>形状</Shapes>
  4574. <Standard>标准</Standard>
  4575. <StandardConfiguration>主要的对象属性,除了很少使用的</StandardConfiguration>
  4576. <StiEmptyBrush>无</StiEmptyBrush>
  4577. <StiGlareBrush>中空</StiGlareBrush>
  4578. <StiGlassBrush>玻璃刷</StiGlassBrush>
  4579. <StiGradientBrush>渐变</StiGradientBrush>
  4580. <StiHatchBrush>斜线</StiHatchBrush>
  4581. <StiSolidBrush>实心</StiSolidBrush>
  4582. <StyleBad>坏</StyleBad>
  4583. <StyleGood>好</StyleGood>
  4584. <StyleNeutral>空档</StyleNeutral>
  4585. <StyleNormal>正常</StyleNormal>
  4586. <StyleNote>注释</StyleNote>
  4587. <StyleWarning>警告</StyleWarning>
  4588. <Warnings>警告</Warnings>
  4589. <WhatsNewInVersion>{0}中的新功能</WhatsNewInVersion>
  4590. <When>当{0} {1}</When>
  4591. <WhenAnd>当 {0} {1} 及</WhenAnd>
  4592. <WhenValueIs>当值是</WhenValueIs>
  4593. </Report>
  4594. <ReportInfo>
  4595. <CheckIssuesAdditionalDescription>检查报表中的错误并找出其中的不准确之处。</CheckIssuesAdditionalDescription>
  4596. <EncryptWithPassword>使用密码加密</EncryptWithPassword>
  4597. <EncryptWithPasswordAdditionalDescription>设置密码,以防止未经授权使用报表。</EncryptWithPasswordAdditionalDescription>
  4598. <EncryptWithPasswordDescription>保护报表</EncryptWithPasswordDescription>
  4599. <Info>信息</Info>
  4600. <ReportOptions>报表选项</ReportOptions>
  4601. <ReportOptionsAdditionalDescription>设置报表中的基本信息和参数。</ReportOptionsAdditionalDescription>
  4602. </ReportInfo>
  4603. <ReportOpen>
  4604. <Browse>浏览</Browse>
  4605. <Import>输入</Import>
  4606. </ReportOpen>
  4607. <Services>
  4608. <categoryContextTools>文本工具</categoryContextTools>
  4609. <categoryDesigner>设计</categoryDesigner>
  4610. <categoryDictionary>字典</categoryDictionary>
  4611. <categoryExport>导出</categoryExport>
  4612. <categoryLanguages>语言</categoryLanguages>
  4613. <categoryPanels>面板</categoryPanels>
  4614. <categoryRender>渲染</categoryRender>
  4615. <categoryShapes>形状</categoryShapes>
  4616. <categorySL>保存/加载</categorySL>
  4617. <categorySystem>系统</categorySystem>
  4618. <categoryTextFormat>文本格式</categoryTextFormat>
  4619. </Services>
  4620. <Shapes>
  4621. <Arrow>箭头</Arrow>
  4622. <BasicShapes>基本图形</BasicShapes>
  4623. <BentArrow>弯曲箭头</BentArrow>
  4624. <BlockArrows>Block Arrows</BlockArrows>
  4625. <Chevron>Chevron</Chevron>
  4626. <ComplexArrow>复杂箭头</ComplexArrow>
  4627. <DiagonalDownLine>反斜线</DiagonalDownLine>
  4628. <DiagonalUpLine>斜线</DiagonalUpLine>
  4629. <Division>分割</Division>
  4630. <Equal>等于</Equal>
  4631. <EquationShapes>Equation Shapes</EquationShapes>
  4632. <Flowchart>流程图</Flowchart>
  4633. <FlowchartCard>流程图:卡片</FlowchartCard>
  4634. <FlowchartCollate>流程图:整理</FlowchartCollate>
  4635. <FlowchartDecision>流程图:决策</FlowchartDecision>
  4636. <FlowchartManualInput>流程图:手工输入</FlowchartManualInput>
  4637. <FlowchartOffPageConnector>流程图: 端口连接</FlowchartOffPageConnector>
  4638. <FlowchartPreparation>流程图:准备</FlowchartPreparation>
  4639. <FlowchartSort>流程图:分类</FlowchartSort>
  4640. <Frame>框架</Frame>
  4641. <HorizontalLine>水平线</HorizontalLine>
  4642. <InsertShapes>插入形状</InsertShapes>
  4643. <LeftAndRightLine>双竖线</LeftAndRightLine>
  4644. <Lines>线</Lines>
  4645. <Minus>负号</Minus>
  4646. <Multiply>乘</Multiply>
  4647. <Octagon>八角形</Octagon>
  4648. <Oval>椭圆</Oval>
  4649. <Parallelogram>平行四边形</Parallelogram>
  4650. <Plus>加</Plus>
  4651. <Rectangle>矩形</Rectangle>
  4652. <Rectangles>矩形</Rectangles>
  4653. <RegularPentagon>规则的:五角形</RegularPentagon>
  4654. <RoundedRectangle>圆角矩形</RoundedRectangle>
  4655. <ServiceCategory>形状</ServiceCategory>
  4656. <ShapeStyles>形状样式</ShapeStyles>
  4657. <SnipDiagonalSideCornerRectangle>矩形剪斜一边角落</SnipDiagonalSideCornerRectangle>
  4658. <SnipSameSideCornerRectangle>矩形剪斜用边角落</SnipSameSideCornerRectangle>
  4659. <TopAndBottomLine>双横线</TopAndBottomLine>
  4660. <Trapezoid>梯形</Trapezoid>
  4661. <Triangle>三角形</Triangle>
  4662. <VerticalLine>垂直线</VerticalLine>
  4663. </Shapes>
  4664. <SystemVariables>
  4665. <Column>返回当前的列号(从1开始).</Column>
  4666. <GroupLine>返回当前的组行号(从1开始).</GroupLine>
  4667. <IsFirstPage> 如果目前报表的首页已打印,则返回true.</IsFirstPage>
  4668. <IsFirstPageThrough>如果目前报表的首页已打印,则返回true. 当计算IsFirstPageThrough, 所有 ResetPageNumber 属性 都忽视,数目从报表开头开始. 为了变量的正确计算,需要执行两次处理.</IsFirstPageThrough>
  4669. <IsLastPage>如果目前报表的尾页已打印,则返回true. 为了变量的正确计算,需要执行两次处理.</IsLastPage>
  4670. <IsLastPageThrough>如果目前报表的尾页已打印,则返回true. 当计算IsFirstPageThrough, 所有 ResetPageNumber 属性 被忽视,数目从报表开头开始. 为了变量的正确计算,需要执行两次处理.</IsLastPageThrough>
  4671. <Line>返回当前行号(从1开始).</Line>
  4672. <LineABC>返回当前行号的字母模拟.</LineABC>
  4673. <LineRoman>用罗马数字返回当前行号.</LineRoman>
  4674. <LineThrough>返回当前行号(从1开始). 当计算数字, 所有分组都忽略,从打印开头开始计数.</LineThrough>
  4675. <PageCopyNumber>返回当前页面副本的数目 (从1开始).</PageCopyNumber>
  4676. <PageNofM>返回一个本地化的字符串, 显示 "页面 N of M", N 是当前页面数, M 是报表的页面总计.</PageNofM>
  4677. <PageNofMThrough>返回一个本地化的字符串, 显示 "页面 N of M", N 是当前页面数, M 是报表的页面总计. 返回当前页面数,(从1开始).</PageNofMThrough>
  4678. <PageNumber>返回当前页面数,(从1开始).</PageNumber>
  4679. <PageNumberThrough>返回当前页面数,(从1开始). 当计算IsFirstPageThrough, 所有 ResetPageNumber属性被忽视,将从报表开头开始重新计算.</PageNumberThrough>
  4680. <ReportAlias>返回报表别名. 你可以在报表的ReportAlias属性帮助下改变报表别名.</ReportAlias>
  4681. <ReportAuthor>返回报表作者. 你可以在报表的ReportAuthor属性帮助下改变报表作者.</ReportAuthor>
  4682. <ReportChanged>更改报表时的日期.</ReportChanged>
  4683. <ReportCreated>创建报表时的日期.</ReportCreated>
  4684. <ReportDescription>返回报表说明. 你可以在报表的ReportDescription属性帮助下改变ReportName.</ReportDescription>
  4685. <ReportName>返回报表名. 你可以在报表的ReportName属性帮助下更改报表名称.</ReportName>
  4686. <Time>返回当前时间.</Time>
  4687. <Today>返回当前日期.</Today>
  4688. <TotalPageCount>返回报表的页面数.</TotalPageCount>
  4689. <TotalPageCountThrough>返回报表的页面数. 当计算TotalPageCountThrough时, 所有的ResetPageNumber属性都被忽视,将从报表开头开始重新计算.</TotalPageCountThrough>
  4690. </SystemVariables>
  4691. <TableRibbon>
  4692. <BuiltIn>内置</BuiltIn>
  4693. <Delete>删除</Delete>
  4694. <DeleteColumns>删除列</DeleteColumns>
  4695. <DeleteRows>删除行</DeleteRows>
  4696. <DeleteTable>删除表格</DeleteTable>
  4697. <DistributeColumns>分布列</DistributeColumns>
  4698. <DistributeRows>分布行</DistributeRows>
  4699. <InsertAbove>上面插入</InsertAbove>
  4700. <InsertBelow>下面插入</InsertBelow>
  4701. <InsertLeft>左边插入</InsertLeft>
  4702. <InsertRight>右边插入</InsertRight>
  4703. <PlainTables>平板表格</PlainTables>
  4704. <ribbonBarRowsColumns>行和列</ribbonBarRowsColumns>
  4705. <ribbonBarTable>表格</ribbonBarTable>
  4706. <ribbonBarTableStyles>表格样式</ribbonBarTableStyles>
  4707. <Select>选择</Select>
  4708. <SelectColumn>选择列</SelectColumn>
  4709. <SelectRow>选择行</SelectRow>
  4710. <SelectTable>选择表格</SelectTable>
  4711. </TableRibbon>
  4712. <Toolbars>
  4713. <Align>对齐</Align>
  4714. <AlignBottom>底端对齐</AlignBottom>
  4715. <AlignCenter>居中对齐</AlignCenter>
  4716. <AlignLeft>左对齐</AlignLeft>
  4717. <AlignMiddle>中间对齐</AlignMiddle>
  4718. <AlignRight>右对齐</AlignRight>
  4719. <AlignToGrid>对齐到网格</AlignToGrid>
  4720. <AlignTop>顶端对齐</AlignTop>
  4721. <AlignWidth>宽度相同</AlignWidth>
  4722. <BringToFront>前置</BringToFront>
  4723. <CenterHorizontally>水平居中</CenterHorizontally>
  4724. <CenterVertically>垂直居中</CenterVertically>
  4725. <Conditions>条件</Conditions>
  4726. <FontGrow>增大字体</FontGrow>
  4727. <FontName>字体名称</FontName>
  4728. <FontShrink>减小字体</FontShrink>
  4729. <FontSize>字体尺寸</FontSize>
  4730. <FontStyleBold>粗体</FontStyleBold>
  4731. <FontStyleItalic>斜体</FontStyleItalic>
  4732. <FontStyleUnderline>下划线</FontStyleUnderline>
  4733. <Link>链接</Link>
  4734. <Lock>固定</Lock>
  4735. <MakeHorizontalSpacingEqual>水平间距相同</MakeHorizontalSpacingEqual>
  4736. <MakeSameHeight>与 {0} 高度相同</MakeSameHeight>
  4737. <MakeSameSize>与 {0} 大小相同</MakeSameSize>
  4738. <MakeSameWidth>与 {0} 宽度相同</MakeSameWidth>
  4739. <MakeVerticalSpacingEqual>垂直间距相同</MakeVerticalSpacingEqual>
  4740. <MoveBackward>后移</MoveBackward>
  4741. <MoveForward>前移</MoveForward>
  4742. <Order>排序</Order>
  4743. <SendToBack>后置</SendToBack>
  4744. <Size>尺寸</Size>
  4745. <StyleDesigner>样式设计</StyleDesigner>
  4746. <Styles>样式列表</Styles>
  4747. <TabHome>主页</TabHome>
  4748. <TabLayout>层</TabLayout>
  4749. <TabPage>页</TabPage>
  4750. <TabView>视图</TabView>
  4751. <TextBrush>画刷</TextBrush>
  4752. <ToolbarAlignment>对齐</ToolbarAlignment>
  4753. <ToolbarArrange>排列</ToolbarArrange>
  4754. <ToolbarBorders>边框</ToolbarBorders>
  4755. <ToolbarClipboard>剪贴板</ToolbarClipboard>
  4756. <ToolbarDockStyle>停靠样式</ToolbarDockStyle>
  4757. <ToolbarFont>字体</ToolbarFont>
  4758. <ToolbarFormatting>格式</ToolbarFormatting>
  4759. <ToolbarLayout>布局</ToolbarLayout>
  4760. <ToolbarPageSetup>页面设置</ToolbarPageSetup>
  4761. <ToolbarStandard>标准</ToolbarStandard>
  4762. <ToolbarStyle>样式</ToolbarStyle>
  4763. <ToolbarTextFormat>文本格式</ToolbarTextFormat>
  4764. <ToolbarTools>工具</ToolbarTools>
  4765. <ToolbarViewOptions>视图选项</ToolbarViewOptions>
  4766. <ToolbarWatermarkImage>水印图像</ToolbarWatermarkImage>
  4767. <ToolbarWatermarkText>水印文本</ToolbarWatermarkText>
  4768. </Toolbars>
  4769. <Toolbox>
  4770. <Create>创建组件</Create>
  4771. <Hand>手形工具</Hand>
  4772. <Select>选择工具</Select>
  4773. <Style>格式刷工具</Style>
  4774. <TextEditor>文本编辑器</TextEditor>
  4775. <title>工具箱</title>
  4776. </Toolbox>
  4777. <WelcomeScreen>
  4778. <AllDownloadsWillCanceled>确定要关闭此窗口吗?所有下载将被取消</AllDownloadsWillCanceled>
  4779. <Description>我们已为您挑选了我们认为最适合快速入门的报表。</Description>
  4780. <GetStarted>开始</GetStarted>
  4781. <GetStartedWithDashboards>开始使用控制面板</GetStartedWithDashboards>
  4782. <GetStartedWithReports>开始使用报表</GetStartedWithReports>
  4783. <MoreReports>更多报表</MoreReports>
  4784. <ShowNextTime>下次展示 '{0}' </ShowNextTime>
  4785. <Title>欢迎使用Stimulsoft演示版</Title>
  4786. </WelcomeScreen>
  4787. <Wizards>
  4788. <BlankDashboard>空白仪表盘</BlankDashboard>
  4789. <BlankReport>空白报表</BlankReport>
  4790. <ButtonBack>&lt; 上一步(&amp;B)</ButtonBack>
  4791. <ButtonCancel>取消</ButtonCancel>
  4792. <ButtonFinish>完成(&amp;F)</ButtonFinish>
  4793. <ButtonNext>下一步(&amp;N) &gt;</ButtonNext>
  4794. <ColumnsOrder>列的顺序</ColumnsOrder>
  4795. <Company>公司</Company>
  4796. <Custom>自定义</Custom>
  4797. <DataRelation>关系</DataRelation>
  4798. <DataSource>数据源</DataSource>
  4799. <DataSources>数据源</DataSources>
  4800. <DefaultThemes>默认主题</DefaultThemes>
  4801. <Filters>过滤</Filters>
  4802. <FromReportTemplate>从报表模板</FromReportTemplate>
  4803. <GetData>检索数据</GetData>
  4804. <groupCreateNewDashboard>新建仪表盘</groupCreateNewDashboard>
  4805. <groupCreateNewPageOrForm>创建新页面或窗体</groupCreateNewPageOrForm>
  4806. <groupCreateNewReport>创建新报表</groupCreateNewReport>
  4807. <Groups>分组</Groups>
  4808. <groupTemplates>模板</groupTemplates>
  4809. <groupWizards>向导</groupWizards>
  4810. <infoColumnsOrder>按需要顺序调整列。</infoColumnsOrder>
  4811. <infoCompanyInfo>输入您的公司信息。</infoCompanyInfo>
  4812. <infoDataSource>选择一个数据源。</infoDataSource>
  4813. <infoDataSources>选择现有的数据源.</infoDataSources>
  4814. <infoFilters>为您的报表过滤数据</infoFilters>
  4815. <infoGroups>按需要选择列进行分组。</infoGroups>
  4816. <infoLabelSettings>进行标签设置。</infoLabelSettings>
  4817. <infoLanguages>选择报表文化。</infoLanguages>
  4818. <infoLayout>指定报表布局.</infoLayout>
  4819. <infoRelation>选择一个现有的数据关系.</infoRelation>
  4820. <infoSelectColumns>按所要显示的信息选择列。</infoSelectColumns>
  4821. <infoSelectTemplate>根据需要选择合适的模板。</infoSelectTemplate>
  4822. <infoSort>设置数据排序。您可以选择多列进行排序。</infoSort>
  4823. <infoThemes>选择报表主题.</infoThemes>
  4824. <infoTotals>为您的报表添加摘要信息。</infoTotals>
  4825. <LabelDirection>说明:</LabelDirection>
  4826. <LabelHeight>高:</LabelHeight>
  4827. <LabelHorizontalGap>水平间距:</LabelHorizontalGap>
  4828. <LabelLabelType>标签类型:</LabelLabelType>
  4829. <LabelLeftMargin>左边距:</LabelLeftMargin>
  4830. <LabelNumberOfColumns>栏数:</LabelNumberOfColumns>
  4831. <LabelNumberOfRows>行数:</LabelNumberOfRows>
  4832. <LabelPageHeight>页高:</LabelPageHeight>
  4833. <LabelPageWidth>页宽:</LabelPageWidth>
  4834. <LabelReport>报表标签</LabelReport>
  4835. <LabelSettings>标签设置</LabelSettings>
  4836. <LabelSize>尺寸:</LabelSize>
  4837. <LabelTopMargin>上边距:</LabelTopMargin>
  4838. <LabelVerticalGap>垂直间距:</LabelVerticalGap>
  4839. <LabelWidth>宽:</LabelWidth>
  4840. <Layout>布局</Layout>
  4841. <Mapping>制图</Mapping>
  4842. <MarkAll>全选(&amp;A)</MarkAll>
  4843. <MasterDetailReport>报表主要细节</MasterDetailReport>
  4844. <NoFunction>[无]</NoFunction>
  4845. <OpenExistingReport>打开已经存在的报表</OpenExistingReport>
  4846. <OpenFrom>从{0}中打开</OpenFrom>
  4847. <Preview>预览</Preview>
  4848. <Reset>重置(&amp;R)</Reset>
  4849. <Results>结果</Results>
  4850. <RunWizard>运行向导</RunWizard>
  4851. <SelectColumns>选择列</SelectColumns>
  4852. <SelectTemplate>模板</SelectTemplate>
  4853. <Sort>排序</Sort>
  4854. <StandardReport>标准报表</StandardReport>
  4855. <Themes>主题</Themes>
  4856. <title>新建报表</title>
  4857. <Totals>总计</Totals>
  4858. <UseDemoData>使用演示数据</UseDemoData>
  4859. <UsingReportWizard>使用报表向导</UsingReportWizard>
  4860. <YouHaveNotOpenedAnyReportRecently>您最近没有打开任何报表。要浏览报告,请先单击“打开现有文件”。</YouHaveNotOpenedAnyReportRecently>
  4861. </Wizards>
  4862. <Zoom>
  4863. <EmptyValue>空值</EmptyValue>
  4864. <MultiplePages>多页</MultiplePages>
  4865. <OnePage>整页</OnePage>
  4866. <PageHeight>页高</PageHeight>
  4867. <PageWidth>页宽</PageWidth>
  4868. <TwoPages>双页</TwoPages>
  4869. <ZoomTo100>原始大小</ZoomTo100>
  4870. </Zoom>
  4871. </Localization>