zh-CHT.xml 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <Localization language="Chinese (Traditional)" description="Chinese (Traditional)" cultureName="zh-CHT">
  3. <A_WebViewer>
  4. <DayFriday>週五</DayFriday>
  5. <DayMonday>週一</DayMonday>
  6. <DaySaturday>週六</DaySaturday>
  7. <DaySunday>周日</DaySunday>
  8. <DayThursday>週四</DayThursday>
  9. <DayTuesday>週二</DayTuesday>
  10. <DayWednesday>週三</DayWednesday>
  11. <FirstPage>首頁</FirstPage>
  12. <LastPage>末頁</LastPage>
  13. <Loading>載入...</Loading>
  14. <MonthApril>4月</MonthApril>
  15. <MonthAugust>8月</MonthAugust>
  16. <MonthDecember>12月</MonthDecember>
  17. <MonthFebruary>2月</MonthFebruary>
  18. <MonthJanuary>1月</MonthJanuary>
  19. <MonthJuly>7月</MonthJuly>
  20. <MonthJune>6月</MonthJune>
  21. <MonthMarch>3月</MonthMarch>
  22. <MonthMay>5月</MonthMay>
  23. <MonthNovember>11月</MonthNovember>
  24. <MonthOctober>10月</MonthOctober>
  25. <MonthSeptember>9月</MonthSeptember>
  26. <NextPage>後頁</NextPage>
  27. <OnePage>一頁</OnePage>
  28. <Page>頁</Page>
  29. <PageOf>of</PageOf>
  30. <PreviousPage>前頁</PreviousPage>
  31. <PrintReport>列印報表</PrintReport>
  32. <PrintToPdf>PDF</PrintToPdf>
  33. <PrintWithoutPreview>直接列印</PrintWithoutPreview>
  34. <PrintWithPreview>列印預覽</PrintWithPreview>
  35. <SaveReport>保存報表</SaveReport>
  36. <TodayDate>今天</TodayDate>
  37. <WholeReport>整個報表</WholeReport>
  38. </A_WebViewer>
  39. <Adapters>
  40. <AdapterBusinessObjects>從業務物件中獲取資料</AdapterBusinessObjects>
  41. <AdapterCsvFiles>從 CSV File 獲取資料</AdapterCsvFiles>
  42. <AdapterDataTables>從 DataSet, DataTables 獲取資料</AdapterDataTables>
  43. <AdapterDataViews>從 DataViews 獲取資料</AdapterDataViews>
  44. <AdapterDB2Connection> IBM DB2 Bӫ@ȡY</AdapterDB2Connection>
  45. <AdapterDBaseFiles>從資料庫檔獲取資料</AdapterDBaseFiles>
  46. <AdapterFirebirdConnection>從 Firebird 連接獲取資料</AdapterFirebirdConnection>
  47. <AdapterMySQLConnection>從 MySQL 連接獲取資料</AdapterMySQLConnection>
  48. <AdapterOdbcConnection>從 ODBC 連接獲取資料</AdapterOdbcConnection>
  49. <AdapterOleDbConnection>從 OLE DB 連接獲取資料</AdapterOleDbConnection>
  50. <AdapterOracleConnection>從 Oracle 連接獲取資料</AdapterOracleConnection>
  51. <AdapterPostgreSQLConnection>從 PostgreSQL 連接獲取資料</AdapterPostgreSQLConnection>
  52. <AdapterSqlCeConnection> SQL CE Bӫ@ȡY</AdapterSqlCeConnection>
  53. <AdapterSqlConnection>從 SQL 連接獲取資料</AdapterSqlConnection>
  54. <AdapterSQLiteConnection>從 SQLite 連接獲取資料</AdapterSQLiteConnection>
  55. <AdapterUniDirectConnection>Uni Direct資料庫連接</AdapterUniDirectConnection>
  56. <AdapterUserSources>從用戶源獲取資料</AdapterUserSources>
  57. <AdapterVirtualSource>從其他資料源獲取資料</AdapterVirtualSource>
  58. <AdapterVistaDBConnection>從 VistaDB 連接獲取資料</AdapterVistaDBConnection>
  59. </Adapters>
  60. <Buttons>
  61. <Add>添加</Add>
  62. <AddAllColumns>添加所有列</AddAllColumns>
  63. <Build>生成...</Build>
  64. <Cancel>取消(&amp;C)</Cancel>
  65. <Close>關閉</Close>
  66. <Delete>刪除</Delete>
  67. <Design>設計</Design>
  68. <Down>向下</Down>
  69. <Duplicate>重複</Duplicate>
  70. <Export>導出</Export>
  71. <Help>説明</Help>
  72. <MoveLeft>左移</MoveLeft>
  73. <MoveRight>右移</MoveRight>
  74. <Ok>確定(&amp;O)</Ok>
  75. <Open>打開</Open>
  76. <Print>列印</Print>
  77. <Remove>移除</Remove>
  78. <Rename>重命名</Rename>
  79. <RestoreDefaults>恢復預設值</RestoreDefaults>
  80. <Save>保存</Save>
  81. <Test>測試</Test>
  82. <Up>向上</Up>
  83. </Buttons>
  84. <Chart>
  85. <AddCondition>添加條件(&amp;A)</AddCondition>
  86. <AddConstantLine>Ӻ㶨</AddConstantLine>
  87. <AddFilter>添加過濾(&amp;A)</AddFilter>
  88. <AddSeries>添加(&amp;A)</AddSeries>
  89. <AddStrip>Ll</AddStrip>
  90. <Area>面積圖</Area>
  91. <Axes>座標</Axes>
  92. <AxisReverse>反轉</AxisReverse>
  93. <AxisX>X 軸</AxisX>
  94. <AxisY>Y 軸</AxisY>
  95. <ChartConditionsCollectionForm>條件</ChartConditionsCollectionForm>
  96. <ChartFiltersCollectionForm>過濾</ChartFiltersCollectionForm>
  97. <ChartType>圖表類型</ChartType>
  98. <CheckBoxAutoRotation>自動旋轉</CheckBoxAutoRotation>
  99. <ClusteredBar>簇狀條形圖
  100. </ClusteredBar>
  101. <ClusteredColumn>簇狀直條圖</ClusteredColumn>
  102. <ConstantLine>㶨</ConstantLine>
  103. <ConstantLinesEditorForm>㶨݋</ConstantLinesEditorForm>
  104. <DataColumns>數據列</DataColumns>
  105. <Doughnut>圓環圖</Doughnut>
  106. <FullStackedArea>全堆積面積圖</FullStackedArea>
  107. <FullStackedBar>全堆積條形圖</FullStackedBar>
  108. <FullStackedColumn>全堆積直條圖</FullStackedColumn>
  109. <FullStackedLine>全堆積折線圖</FullStackedLine>
  110. <FullStackedSpline>全堆積曲線圖</FullStackedSpline>
  111. <FullStackedSplineArea>全堆積曲線面積圖</FullStackedSplineArea>
  112. <Gantt>甘特圖</Gantt>
  113. <GridInterlaced>隔行</GridInterlaced>
  114. <GridLines>格線</GridLines>
  115. <LabelAlignment>對齊方式:</LabelAlignment>
  116. <LabelAlignmentHorizontal>水準:</LabelAlignmentHorizontal>
  117. <LabelAlignmentVertical>垂直:</LabelAlignmentVertical>
  118. <LabelAngle>角:</LabelAngle>
  119. <LabelArgumentDataColumn>資料列變數:</LabelArgumentDataColumn>
  120. <LabelAutoRotation>自動旋轉:</LabelAutoRotation>
  121. <LabelHorizontal>水準:</LabelHorizontal>
  122. <LabelMinorCount>Minor Count:</LabelMinorCount>
  123. <Labels>標籤</Labels>
  124. <LabelsCenter>居中</LabelsCenter>
  125. <LabelSeriesName>Series 名稱:</LabelSeriesName>
  126. <LabelsInside>之內</LabelsInside>
  127. <LabelsInsideBase>基點之內</LabelsInsideBase>
  128. <LabelsInsideEnd>頂點之內</LabelsInsideEnd>
  129. <LabelsNone>無</LabelsNone>
  130. <LabelsOutside>之外</LabelsOutside>
  131. <LabelsOutsideBase>基點之外</LabelsOutsideBase>
  132. <LabelsOutsideEnd>頂點之外</LabelsOutsideEnd>
  133. <LabelsTwoColumns>兩欄</LabelsTwoColumns>
  134. <LabelTextAfter>文本之後:</LabelTextAfter>
  135. <LabelTextBefore>文本之前:</LabelTextBefore>
  136. <LabelTitleAlignment>對齊方式:</LabelTitleAlignment>
  137. <LabelValueDataColumn>數據列值:</LabelValueDataColumn>
  138. <LabelValueType>值類型:</LabelValueType>
  139. <LabelVertical>垂直:</LabelVertical>
  140. <LabelVisible>可見:</LabelVisible>
  141. <Legend>圖例</Legend>
  142. <LegendSpacing>間距</LegendSpacing>
  143. <Line>折線圖</Line>
  144. <ListOfValues>列列表</ListOfValues>
  145. <Marker>標記</Marker>
  146. <MoveConstantLineDown>㶨</MoveConstantLineDown>
  147. <MoveConstantLineUp>ƺ㶨</MoveConstantLineUp>
  148. <MoveSeriesDown>下移序列</MoveSeriesDown>
  149. <MoveSeriesUp>上移序列</MoveSeriesUp>
  150. <MoveStripDown>Ll</MoveStripDown>
  151. <MoveStripUp>Ll</MoveStripUp>
  152. <NoConditions>無條件</NoConditions>
  153. <NoFilters>無過濾</NoFilters>
  154. <Pie>圓形圖</Pie>
  155. <RemoveCondition>移除條件(&amp;R)</RemoveCondition>
  156. <RemoveConstantLine>Ƴ㶨</RemoveConstantLine>
  157. <RemoveFilter>移除過濾(&amp;R)</RemoveFilter>
  158. <RemoveSeries>移除序列(&amp;R)</RemoveSeries>
  159. <RemoveStrip>ƳLl</RemoveStrip>
  160. <RunChartWizard>運行圖表 &amp;嚮導</RunChartWizard>
  161. <Scatter>向量圖</Scatter>
  162. <ScatterLine>向量直線</ScatterLine>
  163. <ScatterSpline>向量曲線</ScatterSpline>
  164. <Series>序列</Series>
  165. <SeriesColorsCollectionForm>序列顏色</SeriesColorsCollectionForm>
  166. <SeriesEditorForm>序列編輯器</SeriesEditorForm>
  167. <Serieses>序列</Serieses>
  168. <Spline>曲線圖</Spline>
  169. <SplineArea>曲線面積圖</SplineArea>
  170. <StackedArea>堆積面積圖</StackedArea>
  171. <StackedBar>堆積條形圖</StackedBar>
  172. <StackedColumn>堆積直條圖</StackedColumn>
  173. <StackedLine>堆積折線圖</StackedLine>
  174. <StackedSpline>堆積曲線圖</StackedSpline>
  175. <StackedSplineArea>堆積曲線面積圖</StackedSplineArea>
  176. <SteppedArea>階梯面積圖</SteppedArea>
  177. <SteppedLine>階梯折線圖</SteppedLine>
  178. <Strip>Ll</Strip>
  179. <StripsEditorForm>Ll݋</StripsEditorForm>
  180. <Style>樣式</Style>
  181. </Chart>
  182. <Components>
  183. <StiBarCode>條碼</StiBarCode>
  184. <StiChart>圖表</StiChart>
  185. <StiCheckBox>核取方塊</StiCheckBox>
  186. <StiChildBand>子級區</StiChildBand>
  187. <StiClone>克隆</StiClone>
  188. <StiColumnFooterBand>欄尾</StiColumnFooterBand>
  189. <StiColumnHeaderBand>欄首</StiColumnHeaderBand>
  190. <StiComponent>組件</StiComponent>
  191. <StiContainer>容器</StiContainer>
  192. <StiContourText>互動式輪廓文本</StiContourText>
  193. <StiCrossColumn>交叉-列</StiCrossColumn>
  194. <StiCrossColumnTotal>交叉-列合計</StiCrossColumnTotal>
  195. <StiCrossDataBand>交叉-資料區</StiCrossDataBand>
  196. <StiCrossFooterBand>交叉-頁腳</StiCrossFooterBand>
  197. <StiCrossGroupFooterBand>交叉-分組頁腳</StiCrossGroupFooterBand>
  198. <StiCrossGroupHeaderBand>交叉-分組頁眉</StiCrossGroupHeaderBand>
  199. <StiCrossHeaderBand>交叉-頁眉</StiCrossHeaderBand>
  200. <StiCrossRow>交叉-行</StiCrossRow>
  201. <StiCrossRowTotal>交叉-行合計</StiCrossRowTotal>
  202. <StiCrossSummary>交叉-合計</StiCrossSummary>
  203. <StiCrossSummaryHeader>交叉匯總頭</StiCrossSummaryHeader>
  204. <StiCrossTab>交叉-Tab</StiCrossTab>
  205. <StiDataBand>數據區</StiDataBand>
  206. <StiEmptyBand>空白區</StiEmptyBand>
  207. <StiFooterBand>頁腳</StiFooterBand>
  208. <StiGroupFooterBand>分組頁腳</StiGroupFooterBand>
  209. <StiGroupHeaderBand>分組頁眉</StiGroupHeaderBand>
  210. <StiHeaderBand>頁眉</StiHeaderBand>
  211. <StiHierarchicalBand>分級區</StiHierarchicalBand>
  212. <StiHorizontalLinePrimitive>橫線</StiHorizontalLinePrimitive>
  213. <StiImage>圖片</StiImage>
  214. <StiOverlayBand>覆蓋</StiOverlayBand>
  215. <StiPage>頁</StiPage>
  216. <StiPageFooterBand>頁腳</StiPageFooterBand>
  217. <StiPageHeaderBand>頁眉</StiPageHeaderBand>
  218. <StiPanel>面板</StiPanel>
  219. <StiRectanglePrimitive>矩形</StiRectanglePrimitive>
  220. <StiReport>報表</StiReport>
  221. <StiReportSummaryBand>報表合計區</StiReportSummaryBand>
  222. <StiReportTitleBand>報表標題區</StiReportTitleBand>
  223. <StiRichText>富文本</StiRichText>
  224. <StiRoundedRectanglePrimitive>圓角矩形</StiRoundedRectanglePrimitive>
  225. <StiShape>形狀</StiShape>
  226. <StiSubReport>子報表</StiSubReport>
  227. <StiSystemText>系統文本</StiSystemText>
  228. <StiTable />
  229. <StiText>文本</StiText>
  230. <StiTextInCells>單格文本</StiTextInCells>
  231. <StiVerticalLinePrimitive>豎線</StiVerticalLinePrimitive>
  232. <StiWinControl>Windows 控制項</StiWinControl>
  233. <StiZipCode>郵遞區號</StiZipCode>
  234. </Components>
  235. <Database>
  236. <Connection>連接</Connection>
  237. <DatabaseDB2>IBM DB2 B</DatabaseDB2>
  238. <DatabaseFirebird>Firebird 連接</DatabaseFirebird>
  239. <DatabaseMySQL>MySQL 連接</DatabaseMySQL>
  240. <DatabaseOdbc>ODBC 連接</DatabaseOdbc>
  241. <DatabaseOleDb>OLE DB 連接</DatabaseOleDb>
  242. <DatabaseOracle>Oracle 連接</DatabaseOracle>
  243. <DatabasePostgreSQL>PostgreSQL 連接</DatabasePostgreSQL>
  244. <DatabaseSql>SQL 連接</DatabaseSql>
  245. <DatabaseSqlCe>SQLServerCE B</DatabaseSqlCe>
  246. <DatabaseSQLite>SQLite連接</DatabaseSQLite>
  247. <DatabaseUniDirect>Uni直接連接</DatabaseUniDirect>
  248. <DatabaseVistaDB>VistaDB 連接</DatabaseVistaDB>
  249. <DatabaseXml>XML 數據</DatabaseXml>
  250. </Database>
  251. <Dialogs>
  252. <StiButtonControl>按鈕</StiButtonControl>
  253. <StiCheckBoxControl>核取方塊</StiCheckBoxControl>
  254. <StiCheckedListBoxControl>複選列表框</StiCheckedListBoxControl>
  255. <StiComboBoxControl>下拉清單</StiComboBoxControl>
  256. <StiDateTimePickerControl>日期時間</StiDateTimePickerControl>
  257. <StiForm>表單</StiForm>
  258. <StiGridControl>網格</StiGridControl>
  259. <StiGroupBoxControl>分組框</StiGroupBoxControl>
  260. <StiLabelControl>標籤</StiLabelControl>
  261. <StiListBoxControl>列表框</StiListBoxControl>
  262. <StiListViewControl>查看列表</StiListViewControl>
  263. <StiLookUpBoxControl>查找框</StiLookUpBoxControl>
  264. <StiNumericUpDownControl>數值</StiNumericUpDownControl>
  265. <StiPanelControl>面板</StiPanelControl>
  266. <StiPictureBoxControl>圖片框</StiPictureBoxControl>
  267. <StiRadioButtonControl>單選框</StiRadioButtonControl>
  268. <StiReportControl>報表控制項</StiReportControl>
  269. <StiRichTextBoxControl>Rich Text Box</StiRichTextBoxControl>
  270. <StiTextBoxControl>文件框</StiTextBoxControl>
  271. <StiTreeViewControl>樹視圖</StiTreeViewControl>
  272. </Dialogs>
  273. <Editor>
  274. <CantFind>找不到您所要查找的數據.</CantFind>
  275. <CollapseToDefinitions>折疊到定義(&amp;O)</CollapseToDefinitions>
  276. <Column>列: {0}</Column>
  277. <EntireScope>整個範圍(&amp;E)</EntireScope>
  278. <Find>查找(&amp;F)</Find>
  279. <FindNext>查找下一個(&amp;F)</FindNext>
  280. <FindWhat>查找內容:</FindWhat>
  281. <FromCursor>從游標</FromCursor>
  282. <GotoLine>跳到行(&amp;L)</GotoLine>
  283. <Line>行: {0}</Line>
  284. <LineNumber>行號:</LineNumber>
  285. <LineNumberIndex>行號 ({0} - {1})</LineNumberIndex>
  286. <MarkAll>全部標注(&amp;M)</MarkAll>
  287. <MatchCase>區分大小寫(&amp;M)</MatchCase>
  288. <MatchWholeWord>全字匹配(&amp;W)</MatchWholeWord>
  289. <Outlining>大綱視圖(&amp;L)</Outlining>
  290. <PromptOnReplace>替換時提示</PromptOnReplace>
  291. <Replace>替換(&amp;R)</Replace>
  292. <ReplaceAll>全部替換(&amp;A)</ReplaceAll>
  293. <ReplaceWith>替換為:</ReplaceWith>
  294. <Search>查找</Search>
  295. <SearchHiddenText>隱藏文本</SearchHiddenText>
  296. <SearchUp>向上查找(&amp;U)</SearchUp>
  297. <SelectionOnly>選定文本(&amp;O)</SelectionOnly>
  298. <ShowLineNumbers>顯示行號</ShowLineNumbers>
  299. <StopOutlining>停止大綱視圖(&amp;P)</StopOutlining>
  300. <titleFind>查找</titleFind>
  301. <titleGotoLine>跳到行</titleGotoLine>
  302. <titleReplace>替換</titleReplace>
  303. <ToggleAllOutlining>全部切換到大綱視圖(&amp;L)</ToggleAllOutlining>
  304. <ToggleOutliningExpansion>切換到大綱視圖擴展(&amp;T)</ToggleOutliningExpansion>
  305. <UseRegularExpressions>正則運算式(&amp;R)</UseRegularExpressions>
  306. </Editor>
  307. <Errors>
  308. <ComponentIsNotRelease>組件未釋放 "{0}".</ComponentIsNotRelease>
  309. <ContainerIsNotValidForComponent>元件 {1} 不能使用容器 {0}.</ContainerIsNotValidForComponent>
  310. <DataNotFound>數據未找到.</DataNotFound>
  311. <Error>出錯!</Error>
  312. <FieldRequire>欄位 "{0}" 需要填充.</FieldRequire>
  313. <FileNotFound>文件 "{0}" 未找到.</FileNotFound>
  314. <IdentifierIsNotValid>標識 '{0}' 不合法.</IdentifierIsNotValid>
  315. <ImpossibleFindDataSource>無法找到資料源.</ImpossibleFindDataSource>
  316. <NameExists>已經有名稱為 '{0}' 的物件存在. 物件名區分大小字且必須唯一.</NameExists>
  317. <NoServices>在 '{0}'找不到服務</NoServices>
  318. <NotAssign>資料源未定義.</NotAssign>
  319. <RelationsNotFound>找不到關係定義.</RelationsNotFound>
  320. <ServiceNotFound>找不到服務 '{0}'.</ServiceNotFound>
  321. </Errors>
  322. <Export>
  323. <AddPageBreaks>增加分頁符</AddPageBreaks>
  324. <AllowAddOrModifyTextAnnotations>允許添加或修改文本附注</AllowAddOrModifyTextAnnotations>
  325. <AllowCopyTextAndGraphics>允許複製文字和圖片</AllowCopyTextAndGraphics>
  326. <AllowModifyContents>允許修改內容</AllowModifyContents>
  327. <AllowPrintDocument>允許列印文檔</AllowPrintDocument>
  328. <Color>顏色</Color>
  329. <Compressed>壓縮</Compressed>
  330. <DigitalSignature>數字簽名</DigitalSignature>
  331. <DocumentSecurity>文檔安全</DocumentSecurity>
  332. <DotMatrixMode>點陣模式</DotMatrixMode>
  333. <EmbeddedFonts>嵌入字體</EmbeddedFonts>
  334. <Encoding>編碼:</Encoding>
  335. <ExportDataOnly>僅導出數據</ExportDataOnly>
  336. <ExportEachPageToSheet>導出每頁到工作表</ExportEachPageToSheet>
  337. <ExportingCalculatingCoordinates>正在計算座標</ExportingCalculatingCoordinates>
  338. <ExportingCreatingDocument>創建文檔</ExportingCreatingDocument>
  339. <ExportingFormatingObjects>正在格式化物件</ExportingFormatingObjects>
  340. <ExportingReport>正在導出報表</ExportingReport>
  341. <ExportMode>導出模式:</ExportMode>
  342. <ExportModeFrame>框架</ExportModeFrame>
  343. <ExportModeTable>表</ExportModeTable>
  344. <ExportObjectFormatting>導出格式化對象</ExportObjectFormatting>
  345. <ExportPageBreaks>퓷</ExportPageBreaks>
  346. <ExportRtfTextAsImage>將Rtf文字導出為圖片</ExportRtfTextAsImage>
  347. <ExportTypeBmpFile>BMP 圖...</ExportTypeBmpFile>
  348. <ExportTypeCalcFile>打開 Calc File 文檔...</ExportTypeCalcFile>
  349. <ExportTypeCsvFile>CSV 文件...</ExportTypeCsvFile>
  350. <ExportTypeDbfFile>DBF 文件...</ExportTypeDbfFile>
  351. <ExportTypeDifFile>資料交換格式(DIF)檔...</ExportTypeDifFile>
  352. <ExportTypeExcel2007File>Microsoft Excel 2007/2013 ļ...</ExportTypeExcel2007File>
  353. <ExportTypeExcelFile>Microsoft Excel 文件...</ExportTypeExcelFile>
  354. <ExportTypeExcelXmlFile>Microsoft Excel Xml 文件...</ExportTypeExcelXmlFile>
  355. <ExportTypeGifFile>GIF 圖片...</ExportTypeGifFile>
  356. <ExportTypeHtmlFile>HTML 文件...</ExportTypeHtmlFile>
  357. <ExportTypeJpegFile>JPEG 圖片...</ExportTypeJpegFile>
  358. <ExportTypeMetafile>Windows 圖元文件...</ExportTypeMetafile>
  359. <ExportTypeMhtFile>MHT Web Archive文件...</ExportTypeMhtFile>
  360. <ExportTypePcxFile>PCX 圖像...</ExportTypePcxFile>
  361. <ExportTypePdfFile>Adobe PDF 文件...</ExportTypePdfFile>
  362. <ExportTypePngFile>PNG 圖片...</ExportTypePngFile>
  363. <ExportTypeRtfFile>RTF 文件...</ExportTypeRtfFile>
  364. <ExportTypeSylkFile>符號連結(SYLK)檔...</ExportTypeSylkFile>
  365. <ExportTypeTiffFile>TIFF 圖片...</ExportTypeTiffFile>
  366. <ExportTypeTxtFile>Text 文件...</ExportTypeTxtFile>
  367. <ExportTypeWord2007File>Microsoft Word 2007/2013 ļ...</ExportTypeWord2007File>
  368. <ExportTypeWriterFile>打開 Writer File 文檔...</ExportTypeWriterFile>
  369. <ExportTypeXmlFile>XML 文件...</ExportTypeXmlFile>
  370. <ExportTypeXpsFile>Microsoft XPS ļ...</ExportTypeXpsFile>
  371. <GetCertificateFromCryptoUI>從 Crypto UI 獲取證書</GetCertificateFromCryptoUI>
  372. <ImageCompressionMethod>圖像壓縮方法:</ImageCompressionMethod>
  373. <ImageCutEdges>裁邊</ImageCutEdges>
  374. <ImageFormat>圖片格式:</ImageFormat>
  375. <ImageGrayscale>灰階</ImageGrayscale>
  376. <ImageMonochrome>單色</ImageMonochrome>
  377. <ImageQuality>圖像品質</ImageQuality>
  378. <ImageResolution>清晰度:</ImageResolution>
  379. <ImageType>圖片類型</ImageType>
  380. <labelEncryptionKeyLength>密鑰長度:</labelEncryptionKeyLength>
  381. <labelOwnerPassword>所有者密碼:</labelOwnerPassword>
  382. <labelSubjectNameString>主題命名字串:</labelSubjectNameString>
  383. <labelUserPassword>用戶密碼:</labelUserPassword>
  384. <MoreSettings>更多設置</MoreSettings>
  385. <MultipleFiles>Multiple ļ</MultipleFiles>
  386. <OpenAfterExport>導出後打開</OpenAfterExport>
  387. <Separator>分隔符號:</Separator>
  388. <Settings>設置</Settings>
  389. <SkipColumnHeaders>略過列頭</SkipColumnHeaders>
  390. <StandardPDFFonts>標準PDF字體</StandardPDFFonts>
  391. <title>導出設置</title>
  392. <TxtBorderType>邊框類型</TxtBorderType>
  393. <TxtBorderTypeDouble>Unicode-雙線</TxtBorderTypeDouble>
  394. <TxtBorderTypeSimple>單線</TxtBorderTypeSimple>
  395. <TxtBorderTypeSingle>Unicode-單線</TxtBorderTypeSingle>
  396. <TxtCutLongLines>截斷長行</TxtCutLongLines>
  397. <TxtDrawBorder>繪製邊框</TxtDrawBorder>
  398. <TxtKillSpaceGraphLines>消除空行</TxtKillSpaceGraphLines>
  399. <TxtKillSpaceLines>去除空行</TxtKillSpaceLines>
  400. <TxtPutFeedPageCode>放置頁碼</TxtPutFeedPageCode>
  401. <UseDefaultSystemEncoding>使用預設的系統編碼</UseDefaultSystemEncoding>
  402. <UseDigitalSignature>使用數位簽名</UseDigitalSignature>
  403. <UseOnePageHeaderAndFooter>用同一頁眉和頁腳</UseOnePageHeaderAndFooter>
  404. <UsePageHeadersAndFooters>使用頁眉頁尾</UsePageHeadersAndFooters>
  405. <UseUnicode>用 Unicode 編碼</UseUnicode>
  406. <X>X:</X>
  407. <Y>Y:</Y>
  408. <Zoom>縮放:</Zoom>
  409. </Export>
  410. <FileFilters>
  411. <AllImageFiles>全部圖片檔</AllImageFiles>
  412. <BitmapFiles>Bitmap 文件</BitmapFiles>
  413. <BmpFiles>BMP 圖片 (*.bmp)|*.bmp</BmpFiles>
  414. <CalcFiles>打開 Calc files (*.ods)|*.ods 文檔</CalcFiles>
  415. <CsvFiles>CSV 文件 (*.csv)|*.csv</CsvFiles>
  416. <DataSetXmlData>DataSet XML data (*.xml)|*.xml</DataSetXmlData>
  417. <DataSetXmlSchema>DataSet XML schema (*.xsd)|*.xsd</DataSetXmlSchema>
  418. <DbfFiles>DBF 文件 (*.dbf)|*.dbf</DbfFiles>
  419. <DictionaryFiles>Files字典 (*.dct)|*.dct</DictionaryFiles>
  420. <DifFiles>DIF文件(*.dif)|*.dif</DifFiles>
  421. <DllFiles>DLL 文件 (*.dll)|*.dll</DllFiles>
  422. <DocumentFiles>Files document (*.mdc)|*.mdc</DocumentFiles>
  423. <EmfFiles>Metafile (*.emf)|*.emf</EmfFiles>
  424. <Excel2007Files>Microsoft Excel 2007/2013 files (*.xlsx)|*.xlsx</Excel2007Files>
  425. <ExcelFiles>Microsoft Excel 文件 (*.xls)|*.xls</ExcelFiles>
  426. <ExcelXmlFiles>Microsoft Excel XML 文件 (*.xls)|*.xls</ExcelXmlFiles>
  427. <ExeFiles>EXE 文件 (*.exe)|*.exe</ExeFiles>
  428. <GifFiles>GIF 圖片 (*.gif)|*.gif</GifFiles>
  429. <HtmlFiles>HTML 文件 (*.html)|*.html</HtmlFiles>
  430. <InheritedLanguageFiles>{0} 繼承報表檔 (*.{1})|*.{2}</InheritedLanguageFiles>
  431. <JpegFiles>JPEG 圖片 (*.jpg;*.jpeg)|*.jpg;*.jpeg</JpegFiles>
  432. <LanguageFiles>{0} 文件 (*.{1})|*.{2}</LanguageFiles>
  433. <MetaFiles>元文件</MetaFiles>
  434. <MhtFiles>MHT Web Archive 文件 (*.mht)|*.mht</MhtFiles>
  435. <PackedDocumentFiles>Files packed document (*.mdz)|*.mdz</PackedDocumentFiles>
  436. <PackedReportFiles>Files packed report (*.mrz)|*.mrz</PackedReportFiles>
  437. <PageFiles>Files page (*.pg)|*.pg</PageFiles>
  438. <PcxFiles>PCX 圖像 (*.pcx)|*.pcx</PcxFiles>
  439. <PdfFiles>Adobe PDF files (*.pdf)|*.pdf</PdfFiles>
  440. <PngFiles>PNG 圖片 (*.png)|*.png</PngFiles>
  441. <ReportFiles>Files report (*.mrt)|*.mrt</ReportFiles>
  442. <RtfFiles>Rich Text (*.rtf)|*.rtf</RtfFiles>
  443. <StylesFiles>Files style (*.sts)|*.sts</StylesFiles>
  444. <SylkFiles>SYLK文件(*.slk)|*.slk</SylkFiles>
  445. <TiffFiles>TIFF 圖片 (*.tiff)|*.tiff</TiffFiles>
  446. <TxtFiles>Text (*.txt)|*.txt</TxtFiles>
  447. <Word2007Files>Microsoft Word 2007-2016 files (*.docx)|*.docx</Word2007Files>
  448. <WriterFiles>打開 Writer files (*.odt)|*.odt 文檔</WriterFiles>
  449. <XmlFiles>XML 文件 (*.xml)|*.xml</XmlFiles>
  450. <XpsFiles>Microsoft XPS files (*.xps)|*.xps</XpsFiles>
  451. </FileFilters>
  452. <Formats>
  453. <custom01>d</custom01>
  454. <custom02>D</custom02>
  455. <custom03>f</custom03>
  456. <custom04>F</custom04>
  457. <custom05>yy/MM/dd</custom05>
  458. <custom06>yyyy/MM/dd</custom06>
  459. <custom07>G</custom07>
  460. <custom08>$0.00</custom08>
  461. <custom09>$0</custom09>
  462. <custom10>c</custom10>
  463. <custom11>c1</custom11>
  464. <custom12>c2</custom12>
  465. <custom13>#.00</custom13>
  466. <custom14>#,#</custom14>
  467. <custom15>n</custom15>
  468. <custom16>n1</custom16>
  469. <custom17>n2</custom17>
  470. <custom18>(###) ### - ####</custom18>
  471. <date01>*d</date01>
  472. <date02>*D</date02>
  473. <date03>M.dd</date03>
  474. <date04>yy.M.dd</date04>
  475. <date05>yy.MM.dd</date05>
  476. <date06>MMM.dd</date06>
  477. <date07>yy.MMM.dd</date07>
  478. <date08>yyyy, MMMM</date08>
  479. <date09>*f</date09>
  480. <date10>*F</date10>
  481. <date11>MM.dd.yyyy</date11>
  482. <date12>dd/MM/yyyy</date12>
  483. <date13>*g</date13>
  484. <date14>*G</date14>
  485. <date15>*y</date15>
  486. <date16>*m</date16>
  487. <date17>s</date17>
  488. <date18>u</date18>
  489. <date19>*Q</date19>
  490. <date20>*YQ</date20>
  491. <date21>QI</date21>
  492. <date22>YQI</date22>
  493. <time01>t</time01>
  494. <time02>T</time02>
  495. <time03>HH:mm</time03>
  496. <time04>H:mm</time04>
  497. <time06>HH:mm:ss</time06>
  498. </Formats>
  499. <FormBand>
  500. <AddFilter>添加過濾(&amp;A)</AddFilter>
  501. <AddGroup>添加分組(&amp;A)</AddGroup>
  502. <AddResult>添加結果(&amp;A)</AddResult>
  503. <AddSort>添加排序(&amp;A)</AddSort>
  504. <And>和</And>
  505. <Ascending>昇冪</Ascending>
  506. <Descending>降冪</Descending>
  507. <NoFilters>不過濾</NoFilters>
  508. <NoSort>沒有排序</NoSort>
  509. <RemoveFilter>移除過濾(&amp;R)</RemoveFilter>
  510. <RemoveGroup>移除分組(&amp;R)</RemoveGroup>
  511. <RemoveResult>移除結果(&amp;R)</RemoveResult>
  512. <RemoveSort>移除排序(&amp;R)</RemoveSort>
  513. <SortBy>主排序</SortBy>
  514. <ThenBy>次排序</ThenBy>
  515. <title>數據設置</title>
  516. </FormBand>
  517. <FormColorBoxPopup>
  518. <Color>顏色</Color>
  519. <Custom>自定義</Custom>
  520. <Others>其他...</Others>
  521. <System>系統</System>
  522. <Web>Web</Web>
  523. </FormColorBoxPopup>
  524. <FormConditions>
  525. <AaBbCcYyZz>AaBbCcYyZz</AaBbCcYyZz>
  526. <AddCondition>添加條件(&amp;A)</AddCondition>
  527. <AddLevel>添加級別</AddLevel>
  528. <AssignExpression>分配運算式</AssignExpression>
  529. <ChangeFont>改變字體</ChangeFont>
  530. <ComponentIsEnabled>組件已啟動</ComponentIsEnabled>
  531. <NoConditions>無條件</NoConditions>
  532. <RemoveCondition>移除條件(&amp;R)</RemoveCondition>
  533. <SelectStyle>選擇樣式</SelectStyle>
  534. <title>條件</title>
  535. </FormConditions>
  536. <FormCrossTabDesigner>
  537. <Columns>列:</Columns>
  538. <DataSource>數據源:</DataSource>
  539. <Properties>屬性:</Properties>
  540. <Rows>行:</Rows>
  541. <Summary>統計:</Summary>
  542. <Swap>交換行列</Swap>
  543. <title>交叉報表設計</title>
  544. </FormCrossTabDesigner>
  545. <FormDatabaseEdit>
  546. <ConnectionString>連接字串:</ConnectionString>
  547. <DB2Edit>݋ IBM DB2 B</DB2Edit>
  548. <DB2New>½ IBM DB2 B</DB2New>
  549. <FirebirdEdit>編輯 Firebird 連接</FirebirdEdit>
  550. <FirebirdNew>新建 Firebird 連接</FirebirdNew>
  551. <InitialCatalog>初始化分類:</InitialCatalog>
  552. <MySQLEdit>編輯 MySQL 連接</MySQLEdit>
  553. <MySQLNew>新建 MySQL 連接</MySQLNew>
  554. <OdbcEdit>編輯 ODBC 連接</OdbcEdit>
  555. <OdbcNew>新建 ODBC 連接</OdbcNew>
  556. <OleDbEdit>編輯 OLE DB 連接</OleDbEdit>
  557. <OleDbNew>新建 OLE DB 連接</OleDbNew>
  558. <OracleEdit>編輯 Oracle 連接</OracleEdit>
  559. <OracleNew>新建 Oracle 連接</OracleNew>
  560. <PathData>路徑到 XML Data:</PathData>
  561. <PathSchema>路徑到 XSD Schema:</PathSchema>
  562. <PostgreSQLEdit>編輯 PostgreSQL 連接</PostgreSQLEdit>
  563. <PostgreSQLNew>新建 PostgreSQL 連接</PostgreSQLNew>
  564. <PromptUserNameAndPassword>提示用戶名和密碼</PromptUserNameAndPassword>
  565. <SqlCeEdit>݋ SQLServerCE B</SqlCeEdit>
  566. <SqlCeNew>½ SQLServerCE B</SqlCeNew>
  567. <SqlEdit>編輯 Sql 連接</SqlEdit>
  568. <SQLiteEdit>編輯 SQLite 連接</SQLiteEdit>
  569. <SQLiteNew>新建 SQLite 連接</SQLiteNew>
  570. <SqlNew>新建 SQL 連接</SqlNew>
  571. <UniDirectEdit>編輯Uni Direct連接</UniDirectEdit>
  572. <UniDirectNew>新建Uni Direct連接</UniDirectNew>
  573. <VistaDBEdit>編輯 VistaDB 連接</VistaDBEdit>
  574. <VistaDBNew>新建 VistaDB 連接</VistaDBNew>
  575. <XmlEdit>編輯 XML Data</XmlEdit>
  576. <XmlNew>新建 XML Data</XmlNew>
  577. </FormDatabaseEdit>
  578. <FormDesigner>
  579. <Code>代碼</Code>
  580. <ColumnsOne>一</ColumnsOne>
  581. <ColumnsThree>三</ColumnsThree>
  582. <ColumnsTwo>二</ColumnsTwo>
  583. <CompilingReport>編譯報表</CompilingReport>
  584. <DockingPanels>面板</DockingPanels>
  585. <HtmlPreview>HTML 預覽</HtmlPreview>
  586. <labelPleaseSelectTypeOfInterface>請選擇介面類別型</labelPleaseSelectTypeOfInterface>
  587. <LoadImage>載入圖片...</LoadImage>
  588. <LocalizePropertyGrid>本地化屬性</LocalizePropertyGrid>
  589. <MarginsNarrow>窄</MarginsNarrow>
  590. <MarginsNormal>正常</MarginsNormal>
  591. <MarginsWide>寬</MarginsWide>
  592. <OrderToolbars>重置工具欄</OrderToolbars>
  593. <Pages>頁面</Pages>
  594. <Preview>預覽</Preview>
  595. <PropertyChange>屬性改變 '{0}'</PropertyChange>
  596. <SetupToolbox>設計工具欄</SetupToolbox>
  597. <ShowDescription>顯示描述</ShowDescription>
  598. <title>設計器</title>
  599. </FormDesigner>
  600. <FormDictionaryDesigner>
  601. <Actions>動作</Actions>
  602. <AutoSort>自動排序</AutoSort>
  603. <CalcColumnEdit>編輯計算列</CalcColumnEdit>
  604. <CalcColumnNew>新建計算列</CalcColumnNew>
  605. <CategoryEdit>編輯分類</CategoryEdit>
  606. <CategoryNew>新建分類</CategoryNew>
  607. <ChildSource>子數據源:</ChildSource>
  608. <ColumnEdit>編輯列</ColumnEdit>
  609. <ColumnNew>新建列</ColumnNew>
  610. <DatabaseEdit>編輯資料庫</DatabaseEdit>
  611. <DatabaseNew>新建資料庫</DatabaseNew>
  612. <DataParameterEdit>編輯參數</DataParameterEdit>
  613. <DataParameterNew>新建參數</DataParameterNew>
  614. <DataSourceEdit>編輯資料源</DataSourceEdit>
  615. <DataSourceNew>新建數據源</DataSourceNew>
  616. <DataSourcesNew>新建數據源</DataSourcesNew>
  617. <Delete>刪除</Delete>
  618. <DesignTimeQueryText>設計時查詢文本</DesignTimeQueryText>
  619. <DictionaryMerge>合併字典...</DictionaryMerge>
  620. <DictionaryNew>新建字典...</DictionaryNew>
  621. <DictionaryOpen>打開字典...</DictionaryOpen>
  622. <DictionarySaveAs>保存字典為...</DictionarySaveAs>
  623. <EditQuery>編輯查詢</EditQuery>
  624. <ExecutedSQLStatementSuccessfully>SQL腳本執行成功</ExecutedSQLStatementSuccessfully>
  625. <GetColumnsFromAssembly>從集合獲取列</GetColumnsFromAssembly>
  626. <ImportRelations>導入關係</ImportRelations>
  627. <MarkUsedItems>標注已使用專案</MarkUsedItems>
  628. <NewItem>新項目</NewItem>
  629. <OpenAssembly>打開集合</OpenAssembly>
  630. <ParentSource>父資料庫:</ParentSource>
  631. <QueryText>查詢文本</QueryText>
  632. <RelationEdit>編輯關係</RelationEdit>
  633. <RelationNew>新建關係</RelationNew>
  634. <RetrieveColumns>獲取所有列</RetrieveColumns>
  635. <Run>運行</Run>
  636. <SortItems>排序項目</SortItems>
  637. <Synchronize>同步</Synchronize>
  638. <SynchronizeHint>同步資料源和字典內容</SynchronizeHint>
  639. <title>字典設計器</title>
  640. <VariableEdit>編輯變數</VariableEdit>
  641. <VariableNew>新建變數</VariableNew>
  642. <ViewData>查看數據</ViewData>
  643. <ViewQuery>查看查詢</ViewQuery>
  644. </FormDictionaryDesigner>
  645. <FormFormatEditor>
  646. <Boolean>布林型</Boolean>
  647. <BooleanDisplay>顯示:</BooleanDisplay>
  648. <BooleanValue>值:</BooleanValue>
  649. <Currency>貨幣</Currency>
  650. <CurrencySymbol>貨幣符號:</CurrencySymbol>
  651. <Custom>自定義</Custom>
  652. <Date>日期</Date>
  653. <DateTimeFormat>日期時間格式</DateTimeFormat>
  654. <DecimalDigits>數值:</DecimalDigits>
  655. <DecimalSeparator>數值分隔符號:</DecimalSeparator>
  656. <FormatMask>格式:</FormatMask>
  657. <Formats>格式:</Formats>
  658. <General>常規</General>
  659. <GroupSeparator>分組符:</GroupSeparator>
  660. <GroupSize>分組尺寸:</GroupSize>
  661. <nameFalse>假</nameFalse>
  662. <nameNo>否</nameNo>
  663. <nameOff>關</nameOff>
  664. <nameOn>開</nameOn>
  665. <nameTrue>真</nameTrue>
  666. <nameYes>是</nameYes>
  667. <NegativePattern>負數:</NegativePattern>
  668. <Number>數字</Number>
  669. <Percentage>百分數</Percentage>
  670. <PercentageSymbol>百分號:</PercentageSymbol>
  671. <PositivePattern>正數:</PositivePattern>
  672. <Properties>屬性</Properties>
  673. <Sample>示例</Sample>
  674. <SampleText>示例文本</SampleText>
  675. <TextFormat>文本格式</TextFormat>
  676. <Time>時間</Time>
  677. <title>格式</title>
  678. <UseGroupSeparator>使用分組符</UseGroupSeparator>
  679. <UseLocalSetting>使用本地設置</UseLocalSetting>
  680. </FormFormatEditor>
  681. <FormGlobalizationEditor>
  682. <AddCulture>添加 Culture(&amp;A)</AddCulture>
  683. <AutoLocalizeReportOnRun>運行時自動本地化報表</AutoLocalizeReportOnRun>
  684. <RemoveCulture>移除 Culture(&amp;R)</RemoveCulture>
  685. <title>全局編輯器</title>
  686. </FormGlobalizationEditor>
  687. <FormOptions>
  688. <AutoSave>自動保存</AutoSave>
  689. <AutoSaveReportToReportClass>自動保存報表到 C# 或 VB.NET 文件</AutoSaveReportToReportClass>
  690. <Default>默認</Default>
  691. <Drawing>圖紙</Drawing>
  692. <DrawMarkersWhenMoving>移動時繪製標注</DrawMarkersWhenMoving>
  693. <EditAfterInsert>插入後編輯</EditAfterInsert>
  694. <EnableAutoSaveMode>開啟自動保存模式</EnableAutoSaveMode>
  695. <FillBands>填充區</FillBands>
  696. <FillComponents>填充組件</FillComponents>
  697. <FillContainers>填充容器</FillContainers>
  698. <FillCrossBands>填充交叉區</FillCrossBands>
  699. <GenerateLocalizedName>ɱػQ</GenerateLocalizedName>
  700. <Grid>網格</Grid>
  701. <GridDots>點</GridDots>
  702. <GridLines>線</GridLines>
  703. <GridMode>網格模式</GridMode>
  704. <GridSize>網格大小</GridSize>
  705. <groupAutoSaveOptions>自動保存選項</groupAutoSaveOptions>
  706. <groupColorScheme>請選擇Gui配色方案</groupColorScheme>
  707. <groupGridDrawingOptions>網格繪製選項</groupGridDrawingOptions>
  708. <groupGridOptions>網格選項</groupGridOptions>
  709. <groupGridSize>網格大小</groupGridSize>
  710. <groupMainOptions>工作報表設計主要選項</groupMainOptions>
  711. <groupMarkersStyle>標誌樣式</groupMarkersStyle>
  712. <groupOptionsOfQuickInfo>快速資訊選項</groupOptionsOfQuickInfo>
  713. <groupPleaseSelectTypeOfGui>請選擇GUI類型</groupPleaseSelectTypeOfGui>
  714. <groupReportDisplayOptions>報表顯示選項</groupReportDisplayOptions>
  715. <labelColorScheme>配色方案:</labelColorScheme>
  716. <labelInfoAutoSave>改變報表自動保存參數</labelInfoAutoSave>
  717. <labelInfoDrawing>設置報表繪製參數</labelInfoDrawing>
  718. <labelInfoGrid>在所用的報表中如何顯示網格</labelInfoGrid>
  719. <labelInfoGui>在報表設計中選擇所使用的GUI模式</labelInfoGui>
  720. <labelInfoMain>設置報表設計基本參數</labelInfoMain>
  721. <labelInfoQuickInfo>元件提示資訊頁</labelInfoQuickInfo>
  722. <Main>主體</Main>
  723. <MarkersStyle>標注樣式</MarkersStyle>
  724. <MarkersStyleCorners>三角</MarkersStyleCorners>
  725. <MarkersStyleDashedRectangle>虛線矩形</MarkersStyleDashedRectangle>
  726. <MarkersStyleNone>無</MarkersStyleNone>
  727. <Minutes>{0} 分鐘</Minutes>
  728. <SaveReportEvery>保存全部報表</SaveReportEvery>
  729. <SelectUILanguage>選擇介面語言</SelectUILanguage>
  730. <ShowDimensionLines>@ʾߴ羀</ShowDimensionLines>
  731. <title>選項</title>
  732. <UseComponentColor>用元件顏色填充</UseComponentColor>
  733. <UseLastFormat>使用上次格式</UseLastFormat>
  734. </FormOptions>
  735. <FormPageSetup>
  736. <ApplyTo>應用於</ApplyTo>
  737. <Bottom>下:</Bottom>
  738. <Columns>欄</Columns>
  739. <groupColumns>頁面欄</groupColumns>
  740. <groupImage>浮水印圖像</groupImage>
  741. <groupMargins>頁邊距</groupMargins>
  742. <groupOrientation>紙張方向</groupOrientation>
  743. <groupPaper>紙張大小</groupPaper>
  744. <groupPaperSource>紙張來源</groupPaperSource>
  745. <groupText>浮水印文字</groupText>
  746. <Height>高:</Height>
  747. <labelAngle>角度:</labelAngle>
  748. <labelColumnGaps>列距:</labelColumnGaps>
  749. <labelColumnWidth>列寬:</labelColumnWidth>
  750. <labelImageAlignment>圖像對齊:</labelImageAlignment>
  751. <labelImageTransparency>圖像透明度:</labelImageTransparency>
  752. <labelInfoColumns>設置頁面欄數</labelInfoColumns>
  753. <labelInfoPaper>設置當前頁的大小和方向</labelInfoPaper>
  754. <labelInfoUnit>指定目前的儲存格的頁邊距</labelInfoUnit>
  755. <labelInfoWatermark>設置浮水印顯示參數</labelInfoWatermark>
  756. <labelMultipleFactor>多重因素:</labelMultipleFactor>
  757. <labelPaperSourceOfFirstPage>首頁紙張來源:</labelPaperSourceOfFirstPage>
  758. <labelPaperSourceOfOtherPages>其它頁紙張來源:</labelPaperSourceOfOtherPages>
  759. <labelSelectColor>選擇顏色:</labelSelectColor>
  760. <labelSelectFont>選擇字體:</labelSelectFont>
  761. <labelSelectImage>選擇圖像:</labelSelectImage>
  762. <labelText>文字:</labelText>
  763. <Left>左:</Left>
  764. <Margins>頁邊距</Margins>
  765. <NumberOfColumns>欄數:</NumberOfColumns>
  766. <Orientation>方向</Orientation>
  767. <PageOrientationLandscape>橫向</PageOrientationLandscape>
  768. <PageOrientationPortrait>縱向</PageOrientationPortrait>
  769. <Paper>紙張:</Paper>
  770. <RebuildReport>重新生成報表</RebuildReport>
  771. <Right>右:</Right>
  772. <ScaleContent>縮放內容</ScaleContent>
  773. <Size>尺寸:</Size>
  774. <title>頁面設置</title>
  775. <Top>上:</Top>
  776. <Width>寬:</Width>
  777. </FormPageSetup>
  778. <FormReportSetup>
  779. <groupDates>報表資料創建和最新資料變化</groupDates>
  780. <groupDescription>報表描述</groupDescription>
  781. <groupMainParameters>報表渲染影響參數</groupMainParameters>
  782. <groupNames>報表名稱, 報表別名, 報表作者</groupNames>
  783. <groupScript>報表指令碼語言</groupScript>
  784. <groupUnits>報表的大小和座標在指定單位內</groupUnits>
  785. <labelInfoDescription>顯示報表資訊</labelInfoDescription>
  786. <labelInfoMain>改變報表基本參數</labelInfoMain>
  787. <labelNumberOfPass>密碼數位:</labelNumberOfPass>
  788. <labelReportCacheMode>報告緩存模式:</labelReportCacheMode>
  789. <ReportChanged>修改時間:</ReportChanged>
  790. <ReportCreated>創建時間:</ReportCreated>
  791. <title>報表設置</title>
  792. </FormReportSetup>
  793. <FormRichTextEditor>
  794. <Bullets>專案符號</Bullets>
  795. <FontName>字體名稱</FontName>
  796. <FontSize>字體大小</FontSize>
  797. <Insert>插入運算式</Insert>
  798. <title>Rich Text 編輯器</title>
  799. </FormRichTextEditor>
  800. <FormStyleDesigner>
  801. <Add>添加樣式</Add>
  802. <Duplicate>複製樣式</Duplicate>
  803. <Open>打開樣式</Open>
  804. <Remove>移除樣式</Remove>
  805. <Save>保存樣式</Save>
  806. <Style>樣式</Style>
  807. <title>樣式設計器</title>
  808. </FormStyleDesigner>
  809. <FormSystemTextEditor>
  810. <Condition>條件</Condition>
  811. <LabelDataBand>數據綁定</LabelDataBand>
  812. <LabelDataColumn>數據列</LabelDataColumn>
  813. <LabelShowInsteadNullValues>顯示替代null值:</LabelShowInsteadNullValues>
  814. <LabelSummaryFunction>聚合函數</LabelSummaryFunction>
  815. <pageExpression>運算式</pageExpression>
  816. <pageSummary>合計</pageSummary>
  817. <pageSystemVariable>系統變數</pageSystemVariable>
  818. <RunningTotal>運行總計</RunningTotal>
  819. <SummaryRunning>運行時聚合</SummaryRunning>
  820. <SummaryRunningByColumn>列</SummaryRunningByColumn>
  821. <SummaryRunningByPage>頁</SummaryRunningByPage>
  822. <SummaryRunningByReport>報表</SummaryRunningByReport>
  823. </FormSystemTextEditor>
  824. <FormTitles>
  825. <ConditionEditorForm>條件</ConditionEditorForm>
  826. <ConnectionSelectForm>選擇連接類型</ConnectionSelectForm>
  827. <ContainerSelectForm>選擇容器</ContainerSelectForm>
  828. <DataAdapterServiceSelectForm>選擇資料類型</DataAdapterServiceSelectForm>
  829. <DataRelationSelectForm>選擇資料關係</DataRelationSelectForm>
  830. <DataSetName>輸入 DataSet 名稱</DataSetName>
  831. <DataSourceSelectForm>選擇資料源</DataSourceSelectForm>
  832. <DataSourcesNewForm>新建數據源</DataSourcesNewForm>
  833. <DataStoreViewerForm>資料存儲流覽器</DataStoreViewerForm>
  834. <EventEditorForm>事件編輯器</EventEditorForm>
  835. <ExpressionEditorForm>運算式編輯器</ExpressionEditorForm>
  836. <GroupConditionForm>分組條件</GroupConditionForm>
  837. <InteractionDrillDownPageSelectForm>選擇鑽取頁</InteractionDrillDownPageSelectForm>
  838. <MasterComponentSelectForm>選擇父級組件</MasterComponentSelectForm>
  839. <PageAddForm>添加頁面</PageAddForm>
  840. <PageSizeForm>頁面尺寸</PageSizeForm>
  841. <PagesManagerForm>頁面管理器</PagesManagerForm>
  842. <PromptForm>輸入登錄資訊到資料庫</PromptForm>
  843. <ServiceSelectForm>選擇服務</ServiceSelectForm>
  844. <SqlExpressionsForm>Sql 運算式</SqlExpressionsForm>
  845. <SubReportPageSelectForm>選擇子報表頁面</SubReportPageSelectForm>
  846. <TextEditorForm>文本編輯器</TextEditorForm>
  847. <ViewDataForm>查看數據</ViewDataForm>
  848. </FormTitles>
  849. <FormViewer>
  850. <Bookmarks>書簽</Bookmarks>
  851. <Close>關閉</Close>
  852. <CollapseAll>全部折疊</CollapseAll>
  853. <ContextMenu>右鍵菜單</ContextMenu>
  854. <DocumentFile>文檔 File...</DocumentFile>
  855. <Editor>編輯器</Editor>
  856. <ExpandAll>全部展開</ExpandAll>
  857. <Export>導出...</Export>
  858. <Find>查找</Find>
  859. <FirstPage>首頁</FirstPage>
  860. <FullScreen>全屏</FullScreen>
  861. <GoToPage>轉到頁</GoToPage>
  862. <HorScrollBar>水準捲軸</HorScrollBar>
  863. <JumpToPage>跳到頁</JumpToPage>
  864. <LabelPageN>頁:</LabelPageN>
  865. <LastPage>末頁</LastPage>
  866. <NextPage>下頁</NextPage>
  867. <Open>打開...</Open>
  868. <PageControl>頁面控制</PageControl>
  869. <PageDelete>刪除頁面</PageDelete>
  870. <PageDesign>編輯頁面...</PageDesign>
  871. <PageNew>新頁</PageNew>
  872. <PageNofM>{0} / {1}</PageNofM>
  873. <PageofM>/ {0}</PageofM>
  874. <PageSize>頁面大小...</PageSize>
  875. <PageViewModeContinuous>連續</PageViewModeContinuous>
  876. <PageViewModeMultiplePages>多頁</PageViewModeMultiplePages>
  877. <PageViewModeSinglePage>單頁</PageViewModeSinglePage>
  878. <PrevPage>上頁</PrevPage>
  879. <Print>列印...</Print>
  880. <qnPageDelete>您是否要刪除頁面?</qnPageDelete>
  881. <Save>保存...</Save>
  882. <SendEMail>發送郵件...</SendEMail>
  883. <StatusBar>狀態欄</StatusBar>
  884. <Thumbnails>縮略圖</Thumbnails>
  885. <title>預覽</title>
  886. <titlePageSettings>頁面設置</titlePageSettings>
  887. <Toolbar>工具欄</Toolbar>
  888. <VerScrollBar>垂直捲軸</VerScrollBar>
  889. <ViewMode>查看方式</ViewMode>
  890. <Zoom>縮放</Zoom>
  891. <ZoomMultiplePages>多頁</ZoomMultiplePages>
  892. <ZoomOnePage>整頁</ZoomOnePage>
  893. <ZoomPageWidth>頁寬</ZoomPageWidth>
  894. <ZoomTwoPages>雙頁</ZoomTwoPages>
  895. <ZoomXXPages>{0} X {1} 頁</ZoomXXPages>
  896. <ZoomXXPagesCancel>取消</ZoomXXPagesCancel>
  897. </FormViewer>
  898. <FormViewerFind>
  899. <Close>關閉</Close>
  900. <FindNext>查找下一個</FindNext>
  901. <FindWhat>查找內容:</FindWhat>
  902. </FormViewerFind>
  903. <Gui>
  904. <barname_cancel>取消</barname_cancel>
  905. <barname_caption>新工具列</barname_caption>
  906. <barname_msginvalidname>工具列名稱不能為空。</barname_msginvalidname>
  907. <barname_name>工具列名稱(&amp;T):</barname_name>
  908. <barname_ok>確定</barname_ok>
  909. <barrename_caption>更名工具列</barrename_caption>
  910. <barsys_autohide_tooltip>自動隱藏</barsys_autohide_tooltip>
  911. <barsys_close_tooltip>關閉</barsys_close_tooltip>
  912. <barsys_customize_tooltip>自訂</barsys_customize_tooltip>
  913. <colorpicker_morecolors>更多顏色(&amp;M)...</colorpicker_morecolors>
  914. <colorpicker_nofill>無填充(&amp;N)</colorpicker_nofill>
  915. <colorpicker_standardcolorslabel>標準顏色</colorpicker_standardcolorslabel>
  916. <colorpicker_themecolorslabel>主題顏色</colorpicker_themecolorslabel>
  917. <colorpickerdialog_bluelabel>藍(&amp;B):</colorpickerdialog_bluelabel>
  918. <colorpickerdialog_cancelbutton>取消</colorpickerdialog_cancelbutton>
  919. <colorpickerdialog_caption>顏色</colorpickerdialog_caption>
  920. <colorpickerdialog_colormodellabel>顏色模式:</colorpickerdialog_colormodellabel>
  921. <colorpickerdialog_currentcolorlabel>當前</colorpickerdialog_currentcolorlabel>
  922. <colorpickerdialog_customcolorslabel>顏色:</colorpickerdialog_customcolorslabel>
  923. <colorpickerdialog_greenlabel>綠(&amp;G):</colorpickerdialog_greenlabel>
  924. <colorpickerdialog_newcolorlabel>新建</colorpickerdialog_newcolorlabel>
  925. <colorpickerdialog_okbutton>確定</colorpickerdialog_okbutton>
  926. <colorpickerdialog_redlabel>紅(&amp;R):</colorpickerdialog_redlabel>
  927. <colorpickerdialog_rgblabel>RGB</colorpickerdialog_rgblabel>
  928. <colorpickerdialog_standardcolorslabel>顏色:</colorpickerdialog_standardcolorslabel>
  929. <colorpickerdialog_tabcustom>典型</colorpickerdialog_tabcustom>
  930. <colorpickerdialog_tabstandard>標準</colorpickerdialog_tabstandard>
  931. <cust_btn_close>關閉</cust_btn_close>
  932. <cust_btn_delete>刪除</cust_btn_delete>
  933. <cust_btn_keyboard>鍵盤(&amp;K)...</cust_btn_keyboard>
  934. <cust_btn_new>新建(&amp;N)...</cust_btn_new>
  935. <cust_btn_rename>更名(&amp;R)...</cust_btn_rename>
  936. <cust_btn_reset>重設(&amp;R)...</cust_btn_reset>
  937. <cust_btn_resetusage>重設我的用法資料(&amp;R)</cust_btn_resetusage>
  938. <cust_caption>自訂</cust_caption>
  939. <cust_cbo_fade>濃淡</cust_cbo_fade>
  940. <cust_cbo_none>(無)</cust_cbo_none>
  941. <cust_cbo_random>隨機</cust_cbo_random>
  942. <cust_cbo_slide>幻燈片</cust_cbo_slide>
  943. <cust_cbo_system>系統預設</cust_cbo_system>
  944. <cust_cbo_unfold>展開</cust_cbo_unfold>
  945. <cust_chk_delay>在短暫延遲後,展示完整功能表</cust_chk_delay>
  946. <cust_chk_fullmenus>永遠展示完整功能表</cust_chk_fullmenus>
  947. <cust_chk_showsk>在螢幕提示中展示快速鍵(&amp;S)</cust_chk_showsk>
  948. <cust_chk_showst>在工具列上展示螢幕提示(&amp;T)</cust_chk_showst>
  949. <cust_lbl_cats>種類(&amp;G):</cust_lbl_cats>
  950. <cust_lbl_cmds>指令(&amp;D):</cust_lbl_cmds>
  951. <cust_lbl_cmdsins>若要將指令加入工具列,請選擇其種類,然後將該指令從此方塊拖曳至工具列。</cust_lbl_cmdsins>
  952. <cust_lbl_menuan>功能表動畫:</cust_lbl_menuan>
  953. <cust_lbl_other>其他:</cust_lbl_other>
  954. <cust_lbl_pmt>個人化的功能表與工具列</cust_lbl_pmt>
  955. <cust_lbl_tlbs>工具列(&amp;A):</cust_lbl_tlbs>
  956. <cust_mnu_addremove>新增或移除按鈕(&amp;A)</cust_mnu_addremove>
  957. <cust_mnu_cust>自訂...</cust_mnu_cust>
  958. <cust_mnu_reset>重設工具列</cust_mnu_reset>
  959. <cust_mnu_tooltip>工具列選項</cust_mnu_tooltip>
  960. <cust_msg_delete>確定要刪除「&lt;barname&gt;」工具列嗎?</cust_msg_delete>
  961. <cust_pm_begingroup>開始群組</cust_pm_begingroup>
  962. <cust_pm_delete>刪除</cust_pm_delete>
  963. <cust_pm_name>名稱:</cust_pm_name>
  964. <cust_pm_reset>重設</cust_pm_reset>
  965. <cust_pm_stydef>預設型式</cust_pm_stydef>
  966. <cust_pm_styimagetext>影像與文字 (永遠)</cust_pm_styimagetext>
  967. <cust_pm_stytextonly>僅文字 (永遠)</cust_pm_stytextonly>
  968. <cust_tab_commands>指令</cust_tab_commands>
  969. <cust_tab_options>選項</cust_tab_options>
  970. <cust_tab_toolbars>工具列</cust_tab_toolbars>
  971. <mdisysmenu_close>關閉</mdisysmenu_close>
  972. <mdisysmenu_maximize>最大化</mdisysmenu_maximize>
  973. <mdisysmenu_minimize>最小化</mdisysmenu_minimize>
  974. <mdisysmenu_move>移動</mdisysmenu_move>
  975. <mdisysmenu_next>下一步</mdisysmenu_next>
  976. <mdisysmenu_restore>取回</mdisysmenu_restore>
  977. <mdisysmenu_size>尺寸</mdisysmenu_size>
  978. <mdisystt_close>關閉</mdisystt_close>
  979. <mdisystt_minimize>最小化</mdisystt_minimize>
  980. <mdisystt_restore>取回</mdisystt_restore>
  981. <navbar_navpaneoptions>導航面板選項(&amp;V)...</navbar_navpaneoptions>
  982. <navbar_showfewerbuttons>顯示較少按鈕(&amp;F)</navbar_showfewerbuttons>
  983. <navbar_showmorebuttons>顯示較多按鈕(&amp;M)</navbar_showmorebuttons>
  984. <navPaneCollapseTooltip>折疊導航面板</navPaneCollapseTooltip>
  985. <navPaneExpandTooltip>展開導航面板</navPaneExpandTooltip>
  986. <sys_custombar>自訂列</sys_custombar>
  987. <sys_morebuttons>更多按鈕</sys_morebuttons>
  988. </Gui>
  989. <MainMenu>
  990. <menuContextClone>克隆...</menuContextClone>
  991. <menuContextDesign>設計...</menuContextDesign>
  992. <menuContextTextFormat>文字格式...</menuContextTextFormat>
  993. <menuEdit>編輯(&amp;E)</menuEdit>
  994. <menuEditCalcColumnNew>新建計算列...</menuEditCalcColumnNew>
  995. <menuEditCantRedo>無法重做</menuEditCantRedo>
  996. <menuEditCantUndo>無法撤銷</menuEditCantUndo>
  997. <menuEditCategoryNew>新建分類...</menuEditCategoryNew>
  998. <menuEditClearContents>清除內容</menuEditClearContents>
  999. <menuEditColumnNew>新建列...</menuEditColumnNew>
  1000. <menuEditConnectionNew>新建連接...</menuEditConnectionNew>
  1001. <menuEditCopy>複製(&amp;C)</menuEditCopy>
  1002. <menuEditCut>剪切(&amp;U)</menuEditCut>
  1003. <menuEditDataParameterNew>新建參數...</menuEditDataParameterNew>
  1004. <menuEditDataSourceNew>新建數據源...</menuEditDataSourceNew>
  1005. <menuEditDataSourcesNew>新建數據源...</menuEditDataSourcesNew>
  1006. <menuEditDelete>刪除(&amp;D)</menuEditDelete>
  1007. <menuEditEdit>編輯</menuEditEdit>
  1008. <menuEditImportRelations>導入關係...</menuEditImportRelations>
  1009. <menuEditPaste>粘貼(&amp;P)</menuEditPaste>
  1010. <menuEditRedo>重做(&amp;R)</menuEditRedo>
  1011. <menuEditRedoText>重做(&amp;R){0}</menuEditRedoText>
  1012. <menuEditRelationNew>新建關係...</menuEditRelationNew>
  1013. <menuEditRemoveUnused>移除未使用的專案</menuEditRemoveUnused>
  1014. <menuEditSelectAll>全選(&amp;A)</menuEditSelectAll>
  1015. <menuEditSynchronize>同步</menuEditSynchronize>
  1016. <menuEditUndo>撤銷(&amp;U)</menuEditUndo>
  1017. <menuEditUndoText>撤銷(&amp;U) {0}</menuEditUndoText>
  1018. <menuEditVariableNew>新建變數...</menuEditVariableNew>
  1019. <menuEditViewData>查看數據...</menuEditViewData>
  1020. <menuFile>文件(&amp;F)</menuFile>
  1021. <menuFileClose>關閉(&amp;C)</menuFileClose>
  1022. <menuFileExit>退出(&amp;X)</menuFileExit>
  1023. <menuFileExportXMLSchema>導出為XML Schema...</menuFileExportXMLSchema>
  1024. <menuFileFormNew>新建表單</menuFileFormNew>
  1025. <menuFileImportXMLSchema>導入XML Schema...</menuFileImportXMLSchema>
  1026. <menuFileMerge>合併...</menuFileMerge>
  1027. <menuFileMergeXMLSchema>合併XML Schema...</menuFileMergeXMLSchema>
  1028. <menuFileNew>新建(&amp;N)</menuFileNew>
  1029. <menuFileOpen>打開(&amp;O)</menuFileOpen>
  1030. <menuFilePageDelete>刪除頁面</menuFilePageDelete>
  1031. <menuFilePageNew>新建頁面</menuFilePageNew>
  1032. <menuFilePageOpen>打開頁面...</menuFilePageOpen>
  1033. <menuFilePageSaveAs>保存頁面為...</menuFilePageSaveAs>
  1034. <menuFilePageSetup>頁面設置...</menuFilePageSetup>
  1035. <menuFileRecentDocuments>最近文檔</menuFileRecentDocuments>
  1036. <menuFileReportNew>新建報表(&amp;N)...</menuFileReportNew>
  1037. <menuFileReportOpen>打開報表(&amp;O)...</menuFileReportOpen>
  1038. <menuFileReportPreview>預覽報表(&amp;P)...</menuFileReportPreview>
  1039. <menuFileReportSave>保存報表(&amp;S)...</menuFileReportSave>
  1040. <menuFileSave>保存報表(&amp;S)...</menuFileSave>
  1041. <menuFileReportSaveAs>保存報表為(&amp;A)...</menuFileReportSaveAs>
  1042. <menuFileReportSetup>報表設置(&amp;S)...</menuFileReportSetup>
  1043. <menuFileReportWizardNew>新建報表嚮導...</menuFileReportWizardNew>
  1044. <menuFileSaveAs>另存為...</menuFileSaveAs>
  1045. <menuHelp>説明(&amp;H)</menuHelp>
  1046. <menuHelpAboutProgramm>關於(&amp;A)...</menuHelpAboutProgramm>
  1047. <menuHelpContents>內容(&amp;C)...</menuHelpContents>
  1048. <menuHelpFAQPage>FAQ</menuHelpFAQPage>
  1049. <menuHelpHowToRegister>如何註冊</menuHelpHowToRegister>
  1050. <menuHelpProductHomePage>產品主頁</menuHelpProductHomePage>
  1051. <menuHelpSupport>技術支援(&amp;S)</menuHelpSupport>
  1052. <menuTools>工具(&amp;T)</menuTools>
  1053. <menuToolsDataStore>資料存儲(&amp;S)...</menuToolsDataStore>
  1054. <menuToolsDictionary>字典(&amp;D)...</menuToolsDictionary>
  1055. <menuToolsOptions>選項(&amp;O)...</menuToolsOptions>
  1056. <menuToolsPagesManager>頁面管理(&amp;P)...</menuToolsPagesManager>
  1057. <menuToolsServicesConfigurator>服務設置(&amp;C)...</menuToolsServicesConfigurator>
  1058. <menuToolsStyleDesigner>樣式設計(&amp;D)...</menuToolsStyleDesigner>
  1059. <menuView>查看(&amp;V)</menuView>
  1060. <menuViewAlignToGrid>對齊到網格</menuViewAlignToGrid>
  1061. <menuViewNormal>普通(&amp;N)</menuViewNormal>
  1062. <menuViewPageBreakPreview>分頁預覽(&amp;B)</menuViewPageBreakPreview>
  1063. <menuViewQuickInfo>提示資訊</menuViewQuickInfo>
  1064. <menuViewQuickInfoNone>無</menuViewQuickInfoNone>
  1065. <menuViewQuickInfoOverlay>顯示於元件之上</menuViewQuickInfoOverlay>
  1066. <menuViewQuickInfoShowAliases>顯示別名</menuViewQuickInfoShowAliases>
  1067. <menuViewQuickInfoShowComponentsNames>顯示元件名稱</menuViewQuickInfoShowComponentsNames>
  1068. <menuViewQuickInfoShowContent>顯示內容</menuViewQuickInfoShowContent>
  1069. <menuViewQuickInfoShowEvents>顯示事件</menuViewQuickInfoShowEvents>
  1070. <menuViewQuickInfoShowFields>顯示欄位</menuViewQuickInfoShowFields>
  1071. <menuViewQuickInfoShowFieldsOnly>只顯示欄位</menuViewQuickInfoShowFieldsOnly>
  1072. <menuViewShowGrid>顯示網格</menuViewShowGrid>
  1073. <menuViewShowHeaders>顯示標題欄</menuViewShowHeaders>
  1074. <menuViewShowOrder>顯示次序</menuViewShowOrder>
  1075. <menuViewShowRulers>顯示尺規</menuViewShowRulers>
  1076. <menuViewToolbars>工具欄</menuViewToolbars>
  1077. <menuEditResourceNew>New Resource...</menuEditResourceNew>
  1078. </MainMenu>
  1079. <Panels>
  1080. <Dictionary>字典</Dictionary>
  1081. <Messages>消息</Messages>
  1082. <Properties>屬性</Properties>
  1083. <ReportTree>報表樹</ReportTree>
  1084. </Panels>
  1085. <PropertyCategory>
  1086. <AppearanceCategory>外觀</AppearanceCategory>
  1087. <ArgumentCategory>參數</ArgumentCategory>
  1088. <BarCodeAdditionalCategory>附加條碼</BarCodeAdditionalCategory>
  1089. <BarCodeCategory>條碼</BarCodeCategory>
  1090. <BehaviorCategory>行為</BehaviorCategory>
  1091. <ChartAdditionalCategory>附加圖表</ChartAdditionalCategory>
  1092. <ChartCategory>圖示</ChartCategory>
  1093. <CheckCategory>複選</CheckCategory>
  1094. <ColorsCategory>顏色</ColorsCategory>
  1095. <ColumnsCategory>分欄</ColumnsCategory>
  1096. <ControlCategory>控制項</ControlCategory>
  1097. <ControlsEventsCategory>控制項事件</ControlsEventsCategory>
  1098. <CrossTabCategory>交叉 Tab</CrossTabCategory>
  1099. <DataCategory>數據</DataCategory>
  1100. <DescriptionCategory>描述</DescriptionCategory>
  1101. <DesignCategory>設計</DesignCategory>
  1102. <DisplayCategory>顯示</DisplayCategory>
  1103. <ExportCategory>導出</ExportCategory>
  1104. <ExportEventsCategory>¼</ExportEventsCategory>
  1105. <HierarchicalCategory>分級</HierarchicalCategory>
  1106. <ImageAdditionalCategory>附加圖片</ImageAdditionalCategory>
  1107. <ImageCategory>圖片</ImageCategory>
  1108. <MainCategory>Main</MainCategory>
  1109. <MarkerCategory>標注</MarkerCategory>
  1110. <MiscCategory>其他</MiscCategory>
  1111. <MouseEventsCategory>滑鼠事件</MouseEventsCategory>
  1112. <NavigationCategory>導航</NavigationCategory>
  1113. <NavigationEventsCategory>導航事件</NavigationEventsCategory>
  1114. <OptionsCategory>選項</OptionsCategory>
  1115. <PageAdditionalCategory>附加頁面</PageAdditionalCategory>
  1116. <PageCategory>頁面</PageCategory>
  1117. <PageColumnBreakCategory>分頁</PageColumnBreakCategory>
  1118. <ParametersCategory>參數</ParametersCategory>
  1119. <PositionCategory>位置</PositionCategory>
  1120. <PrimitiveCategory>圖元</PrimitiveCategory>
  1121. <PrintEventsCategory>列印事件</PrintEventsCategory>
  1122. <RenderEventsCategory>渲染事件</RenderEventsCategory>
  1123. <ShapeCategory>形狀</ShapeCategory>
  1124. <SubReportCategory>子報表</SubReportCategory>
  1125. <TextAdditionalCategory>附加文本</TextAdditionalCategory>
  1126. <TextCategory>文本</TextCategory>
  1127. <TitleCategory>}</TitleCategory>
  1128. <ValueCategory>值</ValueCategory>
  1129. <ValueEndCategory>Value End</ValueEndCategory>
  1130. <ValueEventsCategory>值事件</ValueEventsCategory>
  1131. <WinControlCategory>Windows 控制項</WinControlCategory>
  1132. <ZipCodeCategory>郵碼</ZipCodeCategory>
  1133. </PropertyCategory>
  1134. <PropertyColor>
  1135. <AliceBlue>湖色</AliceBlue>
  1136. <AntiqueWhite>古典白色</AntiqueWhite>
  1137. <Aqua>淺綠色</Aqua>
  1138. <Aquamarine>海藍色</Aquamarine>
  1139. <Azure>天藍色</Azure>
  1140. <Beige>米色</Beige>
  1141. <Bisque>桔黃色</Bisque>
  1142. <Black>黑色</Black>
  1143. <BlanchedAlmond>白杏色</BlanchedAlmond>
  1144. <Blue>藍色</Blue>
  1145. <BlueViolet>藍紫色</BlueViolet>
  1146. <Brown>褐色</Brown>
  1147. <BurlyWood>實木色</BurlyWood>
  1148. <CadetBlue>刺檜藍色</CadetBlue>
  1149. <Chartreuse>亮黃綠色</Chartreuse>
  1150. <Chocolate>巧克力色</Chocolate>
  1151. <Coral>珊瑚色</Coral>
  1152. <CornflowerBlue>矢車菊色</CornflowerBlue>
  1153. <Cornsilk>穀絲色</Cornsilk>
  1154. <Crimson>深紅色</Crimson>
  1155. <Cyan>青色</Cyan>
  1156. <DarkBlue>深藍色</DarkBlue>
  1157. <DarkCyan>深青色</DarkCyan>
  1158. <DarkGoldenrod>深金杆色</DarkGoldenrod>
  1159. <DarkGray>深灰色</DarkGray>
  1160. <DarkGreen>深綠色</DarkGreen>
  1161. <DarkKhaki>深黃褐色</DarkKhaki>
  1162. <DarkMagenta>深洋紅色</DarkMagenta>
  1163. <DarkOliveGreen>深橄欖綠色</DarkOliveGreen>
  1164. <DarkOrange>深橙色</DarkOrange>
  1165. <DarkOrchid>深紫色</DarkOrchid>
  1166. <DarkRed>深紅色</DarkRed>
  1167. <DarkSalmon>深肉色</DarkSalmon>
  1168. <DarkSeaGreen>深海綠色</DarkSeaGreen>
  1169. <DarkSlateBlue>深暗灰藍色</DarkSlateBlue>
  1170. <DarkSlateGray>深暗藍灰色</DarkSlateGray>
  1171. <DarkTurquoise>深青綠色</DarkTurquoise>
  1172. <DarkViolet>深紫色</DarkViolet>
  1173. <DeepPink>深粉色</DeepPink>
  1174. <DeepSkyBlue>深天藍色</DeepSkyBlue>
  1175. <DimGray>暗灰色</DimGray>
  1176. <DodgerBlue>遮板藍色</DodgerBlue>
  1177. <Firebrick>磚色</Firebrick>
  1178. <FloralWhite>花白色</FloralWhite>
  1179. <ForestGreen>蔥綠色</ForestGreen>
  1180. <Fuchsia>紫紅色</Fuchsia>
  1181. <Gainsboro>庚斯博羅灰色</Gainsboro>
  1182. <GhostWhite>幽靈白色</GhostWhite>
  1183. <Gold>金黃色</Gold>
  1184. <Goldenrod>金杆黃色</Goldenrod>
  1185. <Gray>灰色</Gray>
  1186. <Green>綠色</Green>
  1187. <GreenYellow>綠黃色</GreenYellow>
  1188. <Honeydew>蜜汁色</Honeydew>
  1189. <HotPink>亮粉色</HotPink>
  1190. <IndianRed>印第安紅色</IndianRed>
  1191. <Indigo>靛青色</Indigo>
  1192. <Ivory>象牙色</Ivory>
  1193. <Khaki>黃褐色</Khaki>
  1194. <Lavender>淡紫色</Lavender>
  1195. <LavenderBlush>淺紫紅色</LavenderBlush>
  1196. <LawnGreen>草綠色</LawnGreen>
  1197. <LemonChiffon>檸檬紗色</LemonChiffon>
  1198. <LightBlue>淺藍色</LightBlue>
  1199. <LightCoral>淺珊瑚色</LightCoral>
  1200. <LightCyan>淺青色</LightCyan>
  1201. <LightGoldenrodYellow>淺金杆黃色</LightGoldenrodYellow>
  1202. <LightGray>淺灰色</LightGray>
  1203. <LightGreen>淺綠色</LightGreen>
  1204. <LightPink>淺粉色</LightPink>
  1205. <LightSalmon>淺肉色</LightSalmon>
  1206. <LightSeaGreen>淺海綠色</LightSeaGreen>
  1207. <LightSkyBlue>淺天藍色</LightSkyBlue>
  1208. <LightSlateGray>淺暗藍灰色</LightSlateGray>
  1209. <LightSteelBlue>淺鋼青色</LightSteelBlue>
  1210. <LightYellow>淺黃色</LightYellow>
  1211. <Lime>酸橙色</Lime>
  1212. <LimeGreen>橙綠色</LimeGreen>
  1213. <Linen>亞麻色</Linen>
  1214. <Magenta>洋紅色</Magenta>
  1215. <Maroon>栗色
  1216. </Maroon>
  1217. <MediumAquamarine>間綠色</MediumAquamarine>
  1218. <MediumBlue>間藍色</MediumBlue>
  1219. <MediumOrchid>間紫色</MediumOrchid>
  1220. <MediumPurple>間紫紅色
  1221. </MediumPurple>
  1222. <MediumSeaGreen>間海綠色</MediumSeaGreen>
  1223. <MediumSlateBlue>間暗藍色</MediumSlateBlue>
  1224. <MediumSpringGreen>間春綠色</MediumSpringGreen>
  1225. <MediumTurquoise>間綠寶石色</MediumTurquoise>
  1226. <MediumVioletRed>間紫羅蘭色</MediumVioletRed>
  1227. <MidnightBlue>中灰藍色</MidnightBlue>
  1228. <MintCream>薄荷色</MintCream>
  1229. <MistyRose>淺玫瑰色</MistyRose>
  1230. <Moccasin>鹿皮色</Moccasin>
  1231. <NavajoWhite>納瓦白</NavajoWhite>
  1232. <Navy>藏青色</Navy>
  1233. <OldLace>老花色</OldLace>
  1234. <Olive>橄欖色</Olive>
  1235. <OliveDrab>深綠褐色</OliveDrab>
  1236. <Orange>橙色</Orange>
  1237. <OrangeRed>橙紅色</OrangeRed>
  1238. <Orchid>淡紫色</Orchid>
  1239. <PaleGoldenrod>蒼麒麟色</PaleGoldenrod>
  1240. <PaleGreen>蒼綠色</PaleGreen>
  1241. <PaleTurquoise>蒼綠松色</PaleTurquoise>
  1242. <PaleVioletRed>蒼紫羅藍色</PaleVioletRed>
  1243. <PapayaWhip>番木色</PapayaWhip>
  1244. <PeachPuff>桃色</PeachPuff>
  1245. <Peru>秘魯色</Peru>
  1246. <Pink>粉紅色</Pink>
  1247. <Plum>楊李色</Plum>
  1248. <PowderBlue>粉藍色</PowderBlue>
  1249. <Purple>紫紅色</Purple>
  1250. <Red>紅色</Red>
  1251. <RosyBrown>褐玫瑰紅</RosyBrown>
  1252. <RoyalBlue>寶藍色</RoyalBlue>
  1253. <SaddleBrown>重褐色</SaddleBrown>
  1254. <Salmon>鮮肉色</Salmon>
  1255. <SandyBrown>沙褐色</SandyBrown>
  1256. <SeaGreen>海綠色</SeaGreen>
  1257. <SeaShell>海貝色</SeaShell>
  1258. <Sienna>赭色</Sienna>
  1259. <Silver>銀白色</Silver>
  1260. <SkyBlue>天藍色</SkyBlue>
  1261. <SlateBlue>石藍色</SlateBlue>
  1262. <SlateGray>灰石色</SlateGray>
  1263. <Snow>雪白色</Snow>
  1264. <SpringGreen>春綠色</SpringGreen>
  1265. <SteelBlue>鋼藍色</SteelBlue>
  1266. <Tan>茶色</Tan>
  1267. <Teal>水鴨色</Teal>
  1268. <Thistle>薊色</Thistle>
  1269. <Tomato>番茄色</Tomato>
  1270. <Transparent>透明色</Transparent>
  1271. <Turquoise>翠藍色</Turquoise>
  1272. <Violet>紫色</Violet>
  1273. <Wheat>淺黃色</Wheat>
  1274. <White>白色</White>
  1275. <WhiteSmoke>煙白色</WhiteSmoke>
  1276. <Yellow>黃色</Yellow>
  1277. <YellowGreen>黃綠色</YellowGreen>
  1278. </PropertyColor>
  1279. <PropertyEnum>
  1280. <boolFalse>假</boolFalse>
  1281. <boolTrue>真</boolTrue>
  1282. <BorderStyleFixed3D>Fixed 3D</BorderStyleFixed3D>
  1283. <BorderStyleFixedSingle>Fixed Single</BorderStyleFixedSingle>
  1284. <BorderStyleNone>無</BorderStyleNone>
  1285. <ChartAxesTicksAll>全部</ChartAxesTicksAll>
  1286. <ChartAxesTicksMajor>主要</ChartAxesTicksMajor>
  1287. <ChartAxesTicksNone>無</ChartAxesTicksNone>
  1288. <ChartGridLinesAll>全部</ChartGridLinesAll>
  1289. <ChartGridLinesMajor>主要</ChartGridLinesMajor>
  1290. <ChartGridLinesNone>無</ChartGridLinesNone>
  1291. <ComboBoxStyleDropDown>下拉</ComboBoxStyleDropDown>
  1292. <ComboBoxStyleDropDownList>下拉清單</ComboBoxStyleDropDownList>
  1293. <ComboBoxStyleSimple>簡單</ComboBoxStyleSimple>
  1294. <ContentAlignmentBottomCenter>底端居中</ContentAlignmentBottomCenter>
  1295. <ContentAlignmentBottomLeft>底端居左</ContentAlignmentBottomLeft>
  1296. <ContentAlignmentBottomRight>底端居右</ContentAlignmentBottomRight>
  1297. <ContentAlignmentMiddleCenter>中間居中</ContentAlignmentMiddleCenter>
  1298. <ContentAlignmentMiddleLeft>中間居左</ContentAlignmentMiddleLeft>
  1299. <ContentAlignmentMiddleRight>中間居右</ContentAlignmentMiddleRight>
  1300. <ContentAlignmentTopCenter>頂端居中</ContentAlignmentTopCenter>
  1301. <ContentAlignmentTopLeft>頂端居左</ContentAlignmentTopLeft>
  1302. <ContentAlignmentTopRight>頂端居右</ContentAlignmentTopRight>
  1303. <DataGridLineStyleNone>無</DataGridLineStyleNone>
  1304. <DataGridLineStyleSolid>實線</DataGridLineStyleSolid>
  1305. <DateTimePickerFormatCustom>自定義</DateTimePickerFormatCustom>
  1306. <DateTimePickerFormatLong>長</DateTimePickerFormatLong>
  1307. <DateTimePickerFormatShort>短</DateTimePickerFormatShort>
  1308. <DateTimePickerFormatTime>時間</DateTimePickerFormatTime>
  1309. <DialogResultAbort>中斷</DialogResultAbort>
  1310. <DialogResultCancel>取消</DialogResultCancel>
  1311. <DialogResultIgnore>忽略</DialogResultIgnore>
  1312. <DialogResultNo>否</DialogResultNo>
  1313. <DialogResultNone>無</DialogResultNone>
  1314. <DialogResultOK>是</DialogResultOK>
  1315. <DialogResultRetry>重試</DialogResultRetry>
  1316. <DialogResultYes>是</DialogResultYes>
  1317. <DockStyleBottom>按鈕</DockStyleBottom>
  1318. <DockStyleFill>填充</DockStyleFill>
  1319. <DockStyleLeft>左</DockStyleLeft>
  1320. <DockStyleNone>無</DockStyleNone>
  1321. <DockStyleRight>右</DockStyleRight>
  1322. <DockStyleTop>上</DockStyleTop>
  1323. <DuplexDefault>默認</DuplexDefault>
  1324. <DuplexHorizontal>水準</DuplexHorizontal>
  1325. <DuplexSimplex>單一</DuplexSimplex>
  1326. <DuplexVertical>垂直</DuplexVertical>
  1327. <FormStartPositionCenterParent>父表單居中</FormStartPositionCenterParent>
  1328. <FormStartPositionCenterScreen>螢幕居中</FormStartPositionCenterScreen>
  1329. <FormStartPositionManual>手動</FormStartPositionManual>
  1330. <FormStartPositionWindowsDefaultBounds>視窗默認範圍</FormStartPositionWindowsDefaultBounds>
  1331. <FormStartPositionWindowsDefaultLocation>窗口默認位置</FormStartPositionWindowsDefaultLocation>
  1332. <FormWindowStateMaximized>最大化</FormWindowStateMaximized>
  1333. <FormWindowStateMinimized>最小化</FormWindowStateMinimized>
  1334. <FormWindowStateNormal>正常</FormWindowStateNormal>
  1335. <HorizontalAlignmentCenter>居中</HorizontalAlignmentCenter>
  1336. <HorizontalAlignmentLeft>居左</HorizontalAlignmentLeft>
  1337. <HorizontalAlignmentRight>居右</HorizontalAlignmentRight>
  1338. <HotkeyPrefixHide>隱藏</HotkeyPrefixHide>
  1339. <HotkeyPrefixNone>無</HotkeyPrefixNone>
  1340. <HotkeyPrefixShow>顯示</HotkeyPrefixShow>
  1341. <LeftRightAlignmentLeft>居左</LeftRightAlignmentLeft>
  1342. <LeftRightAlignmentRight>居右</LeftRightAlignmentRight>
  1343. <PictureBoxSizeModeAutoSize>自動調整</PictureBoxSizeModeAutoSize>
  1344. <PictureBoxSizeModeCenterImage>圖片中間</PictureBoxSizeModeCenterImage>
  1345. <PictureBoxSizeModeNormal>正常</PictureBoxSizeModeNormal>
  1346. <PictureBoxSizeModeStretchImage>適應圖片</PictureBoxSizeModeStretchImage>
  1347. <RightToLeftInherit>繼承</RightToLeftInherit>
  1348. <RightToLeftNo>否</RightToLeftNo>
  1349. <RightToLeftYes>是</RightToLeftYes>
  1350. <SelectionModeMultiExtended>擴展複選</SelectionModeMultiExtended>
  1351. <SelectionModeMultiSimple>簡單複選</SelectionModeMultiSimple>
  1352. <SelectionModeNone>無</SelectionModeNone>
  1353. <SelectionModeOne>單選</SelectionModeOne>
  1354. <StiAngleAngle0>0度</StiAngleAngle0>
  1355. <StiAngleAngle180>180度</StiAngleAngle180>
  1356. <StiAngleAngle270>270度</StiAngleAngle270>
  1357. <StiAngleAngle45>45度</StiAngleAngle45>
  1358. <StiAngleAngle90>90度</StiAngleAngle90>
  1359. <StiArrowStyleLines>線</StiArrowStyleLines>
  1360. <StiArrowStyleNone>無</StiArrowStyleNone>
  1361. <StiArrowStyleTriangle>三角形</StiArrowStyleTriangle>
  1362. <StiBorderSidesAll>全部</StiBorderSidesAll>
  1363. <StiBorderSidesBottom>底部</StiBorderSidesBottom>
  1364. <StiBorderSidesLeft>左側</StiBorderSidesLeft>
  1365. <StiBorderSidesNone>無</StiBorderSidesNone>
  1366. <StiBorderSidesRight>右側</StiBorderSidesRight>
  1367. <StiBorderSidesTop>上部</StiBorderSidesTop>
  1368. <StiBorderStyleBump>隆起</StiBorderStyleBump>
  1369. <StiBorderStyleEtched>蝕化</StiBorderStyleEtched>
  1370. <StiBorderStyleFlat>平直</StiBorderStyleFlat>
  1371. <StiBorderStyleNone>無</StiBorderStyleNone>
  1372. <StiBorderStyleRaised>凸起</StiBorderStyleRaised>
  1373. <StiBorderStyleRaisedInner>內部凸起</StiBorderStyleRaisedInner>
  1374. <StiBorderStyleRaisedOuter>外部凸起</StiBorderStyleRaisedOuter>
  1375. <StiBorderStyleSunken>凹陷</StiBorderStyleSunken>
  1376. <StiBorderStyleSunkenInner>內部凹陷</StiBorderStyleSunkenInner>
  1377. <StiBorderStyleSunkenOuter>外部凹陷</StiBorderStyleSunkenOuter>
  1378. <StiBrushTypeGlare>眩光刷</StiBrushTypeGlare>
  1379. <StiBrushTypeGradient0>漸變刷, 角度 0</StiBrushTypeGradient0>
  1380. <StiBrushTypeGradient180>漸變刷, 180度</StiBrushTypeGradient180>
  1381. <StiBrushTypeGradient270>漸變刷, 270度</StiBrushTypeGradient270>
  1382. <StiBrushTypeGradient45>漸變刷, 45度</StiBrushTypeGradient45>
  1383. <StiBrushTypeGradient90>漸變刷, 90度</StiBrushTypeGradient90>
  1384. <StiBrushTypeSolid>實心刷</StiBrushTypeSolid>
  1385. <StiChartTitleDockBottom>ײ</StiChartTitleDockBottom>
  1386. <StiChartTitleDockLeft />
  1387. <StiChartTitleDockRight>Ҷ</StiChartTitleDockRight>
  1388. <StiChartTitleDockTop>픲</StiChartTitleDockTop>
  1389. <StiCheckStyleCheck>複選</StiCheckStyleCheck>
  1390. <StiCheckStyleCheckRectangle>Check Rectangle</StiCheckStyleCheckRectangle>
  1391. <StiCheckStyleCross>交叉</StiCheckStyleCross>
  1392. <StiCheckStyleCrossCircle>Cross Circle</StiCheckStyleCrossCircle>
  1393. <StiCheckStyleCrossRectangle>Cross Rectangle</StiCheckStyleCrossRectangle>
  1394. <StiCheckStyleDotCircle>Dot Circle</StiCheckStyleDotCircle>
  1395. <StiCheckStyleDotRectangle>Dot Rectangle</StiCheckStyleDotRectangle>
  1396. <StiCheckStyleNone>None</StiCheckStyleNone>
  1397. <StiCheckStyleNoneCircle>None Circle</StiCheckStyleNoneCircle>
  1398. <StiCheckStyleNoneRectangle>None Rectangle</StiCheckStyleNoneRectangle>
  1399. <StiCheckSumNo>否</StiCheckSumNo>
  1400. <StiCheckSumYes>是</StiCheckSumYes>
  1401. <StiCode11CheckSumAuto>自動</StiCode11CheckSumAuto>
  1402. <StiCode11CheckSumNone>無</StiCode11CheckSumNone>
  1403. <StiCode11CheckSumOneDigit>一位元數字</StiCode11CheckSumOneDigit>
  1404. <StiCode11CheckSumTwoDigits>兩位元數字</StiCode11CheckSumTwoDigits>
  1405. <StiColumnDirectionAcrossThenDown>交叉再向下</StiColumnDirectionAcrossThenDown>
  1406. <StiColumnDirectionDownThenAcross>向下再交叉</StiColumnDirectionDownThenAcross>
  1407. <StiCrossHorAlignmentCenter>居中</StiCrossHorAlignmentCenter>
  1408. <StiCrossHorAlignmentLeft>居左</StiCrossHorAlignmentLeft>
  1409. <StiCrossHorAlignmentNone>無</StiCrossHorAlignmentNone>
  1410. <StiCrossHorAlignmentRight>居右</StiCrossHorAlignmentRight>
  1411. <StiDockStyleBottom>底部</StiDockStyleBottom>
  1412. <StiDockStyleFill>填充</StiDockStyleFill>
  1413. <StiDockStyleLeft>左</StiDockStyleLeft>
  1414. <StiDockStyleNone>無</StiDockStyleNone>
  1415. <StiDockStyleRight>右</StiDockStyleRight>
  1416. <StiDockStyleTop>頂部</StiDockStyleTop>
  1417. <StiEmptySizeModeAlignFooterToBottom>頁腳底端對齊</StiEmptySizeModeAlignFooterToBottom>
  1418. <StiEmptySizeModeAlignFooterToTop>頁腳頂端對齊</StiEmptySizeModeAlignFooterToTop>
  1419. <StiEmptySizeModeDecreaseLastRow>減少末行</StiEmptySizeModeDecreaseLastRow>
  1420. <StiEmptySizeModeIncreaseLastRow>增加末行</StiEmptySizeModeIncreaseLastRow>
  1421. <StiEnumeratorTypeABC>Ӣĸ</StiEnumeratorTypeABC>
  1422. <StiEnumeratorTypeArabic />
  1423. <StiEnumeratorTypeNone>o</StiEnumeratorTypeNone>
  1424. <StiEnumeratorTypeRoman>_R</StiEnumeratorTypeRoman>
  1425. <StiFilterConditionBeginningWith>開始於</StiFilterConditionBeginningWith>
  1426. <StiFilterConditionBetween>在兩者之間</StiFilterConditionBetween>
  1427. <StiFilterConditionContaining>包含</StiFilterConditionContaining>
  1428. <StiFilterConditionEndingWith>結束於</StiFilterConditionEndingWith>
  1429. <StiFilterConditionEqualTo>等於</StiFilterConditionEqualTo>
  1430. <StiFilterConditionGreaterThan>大於</StiFilterConditionGreaterThan>
  1431. <StiFilterConditionGreaterThanOrEqualTo>大於或等於</StiFilterConditionGreaterThanOrEqualTo>
  1432. <StiFilterConditionLessThan>小於</StiFilterConditionLessThan>
  1433. <StiFilterConditionLessThanOrEqualTo>小於或等於</StiFilterConditionLessThanOrEqualTo>
  1434. <StiFilterConditionNotBetween>不在之間</StiFilterConditionNotBetween>
  1435. <StiFilterConditionNotContaining>未包含</StiFilterConditionNotContaining>
  1436. <StiFilterConditionNotEqualTo>不等於</StiFilterConditionNotEqualTo>
  1437. <StiFilterDataTypeBoolean>布林型</StiFilterDataTypeBoolean>
  1438. <StiFilterDataTypeDateTime>日期時間</StiFilterDataTypeDateTime>
  1439. <StiFilterDataTypeExpression>運算式</StiFilterDataTypeExpression>
  1440. <StiFilterDataTypeNumeric>數值型</StiFilterDataTypeNumeric>
  1441. <StiFilterDataTypeString>字元型</StiFilterDataTypeString>
  1442. <StiFilterItemArgument>參數</StiFilterItemArgument>
  1443. <StiFilterItemExpression>運算式</StiFilterItemExpression>
  1444. <StiFilterItemValue>值</StiFilterItemValue>
  1445. <StiFilterModeAnd>與</StiFilterModeAnd>
  1446. <StiFilterModeOr>或</StiFilterModeOr>
  1447. <StiFormStartModeOnEnd>在結束</StiFormStartModeOnEnd>
  1448. <StiFormStartModeOnPreview>在預覽</StiFormStartModeOnPreview>
  1449. <StiFormStartModeOnStart>在開始</StiFormStartModeOnStart>
  1450. <StiGroupSortDirectionAscending>昇冪</StiGroupSortDirectionAscending>
  1451. <StiGroupSortDirectionDescending>降冪</StiGroupSortDirectionDescending>
  1452. <StiGroupSortDirectionNone>無</StiGroupSortDirectionNone>
  1453. <StiHorAlignmentCenter>居中</StiHorAlignmentCenter>
  1454. <StiHorAlignmentLeft>居左</StiHorAlignmentLeft>
  1455. <StiHorAlignmentRight>居右</StiHorAlignmentRight>
  1456. <StiImageRotationFlipHorizontal>水準翻轉</StiImageRotationFlipHorizontal>
  1457. <StiImageRotationFlipVertical>垂直翻轉</StiImageRotationFlipVertical>
  1458. <StiImageRotationNone>無</StiImageRotationNone>
  1459. <StiImageRotationRotate180>旋轉 180°</StiImageRotationRotate180>
  1460. <StiImageRotationRotate90CCW>旋轉 90° CCW</StiImageRotationRotate90CCW>
  1461. <StiImageRotationRotate90CW>旋轉 90° CW</StiImageRotationRotate90CW>
  1462. <StiLabelsPlacementNone>無</StiLabelsPlacementNone>
  1463. <StiLabelsPlacementOneLine>單線</StiLabelsPlacementOneLine>
  1464. <StiLabelsPlacementTwoLines>雙線</StiLabelsPlacementTwoLines>
  1465. <StiLegendDirectionBottomToTop>從底部到頂端</StiLegendDirectionBottomToTop>
  1466. <StiLegendDirectionLeftToRight>由左到右</StiLegendDirectionLeftToRight>
  1467. <StiLegendDirectionRightToLeft>由右到左</StiLegendDirectionRightToLeft>
  1468. <StiLegendDirectionTopToBottom>從上至下</StiLegendDirectionTopToBottom>
  1469. <StiLegendHorAlignmentCenter>居中</StiLegendHorAlignmentCenter>
  1470. <StiLegendHorAlignmentLeft>居左</StiLegendHorAlignmentLeft>
  1471. <StiLegendHorAlignmentLeftOutside>左外側</StiLegendHorAlignmentLeftOutside>
  1472. <StiLegendHorAlignmentRight>居右</StiLegendHorAlignmentRight>
  1473. <StiLegendHorAlignmentRightOutside>右外側</StiLegendHorAlignmentRightOutside>
  1474. <StiLegendVertAlignmentBottom>底端</StiLegendVertAlignmentBottom>
  1475. <StiLegendVertAlignmentBottomOutside>底端外側</StiLegendVertAlignmentBottomOutside>
  1476. <StiLegendVertAlignmentCenter>居中</StiLegendVertAlignmentCenter>
  1477. <StiLegendVertAlignmentTop>居頂</StiLegendVertAlignmentTop>
  1478. <StiLegendVertAlignmentTopOutside>頂端外側</StiLegendVertAlignmentTopOutside>
  1479. <StiMarkerAlignmentLeft>居左</StiMarkerAlignmentLeft>
  1480. <StiMarkerAlignmentRight>居右</StiMarkerAlignmentRight>
  1481. <StiMarkerTypeCircle>圓</StiMarkerTypeCircle>
  1482. <StiMarkerTypeHexagon>六邊形</StiMarkerTypeHexagon>
  1483. <StiMarkerTypeRectangle>矩形</StiMarkerTypeRectangle>
  1484. <StiMarkerTypeStar5>五角星</StiMarkerTypeStar5>
  1485. <StiMarkerTypeStar6>六角星</StiMarkerTypeStar6>
  1486. <StiMarkerTypeStar7>七角星</StiMarkerTypeStar7>
  1487. <StiMarkerTypeTriangle>三角形</StiMarkerTypeTriangle>
  1488. <StiNumberOfPassDoublePass>pͨ</StiNumberOfPassDoublePass>
  1489. <StiNumberOfPassSinglePass>ͨ</StiNumberOfPassSinglePass>
  1490. <StiOrientationHorizontal>ˮ</StiOrientationHorizontal>
  1491. <StiOrientationVertical>ֱ</StiOrientationVertical>
  1492. <StiPageOrientationLandscape>橫向</StiPageOrientationLandscape>
  1493. <StiPageOrientationPortrait>縱向</StiPageOrientationPortrait>
  1494. <StiPenStyleDash>虛線</StiPenStyleDash>
  1495. <StiPenStyleDashDot>點畫線</StiPenStyleDashDot>
  1496. <StiPenStyleDashDotDot>雙點畫線</StiPenStyleDashDotDot>
  1497. <StiPenStyleDot>點線</StiPenStyleDot>
  1498. <StiPenStyleDouble>Double</StiPenStyleDouble>
  1499. <StiPenStyleNone>無</StiPenStyleNone>
  1500. <StiPenStyleSolid>實線</StiPenStyleSolid>
  1501. <StiPlesseyCheckSumNone>無</StiPlesseyCheckSumNone>
  1502. <StiPreviewModeDotMatrix>矩陣</StiPreviewModeDotMatrix>
  1503. <StiPreviewModeStandard>標準</StiPreviewModeStandard>
  1504. <StiPreviewModeStandardAndDotMatrix>標準和點陣</StiPreviewModeStandardAndDotMatrix>
  1505. <StiPrintOnEvenOddPagesTypeIgnore>忽略</StiPrintOnEvenOddPagesTypeIgnore>
  1506. <StiPrintOnEvenOddPagesTypePrintOnEvenPages>列印偶數頁</StiPrintOnEvenOddPagesTypePrintOnEvenPages>
  1507. <StiPrintOnEvenOddPagesTypePrintOnOddPages>列印奇數頁</StiPrintOnEvenOddPagesTypePrintOnOddPages>
  1508. <StiPrintOnTypeAllPages>全部頁</StiPrintOnTypeAllPages>
  1509. <StiPrintOnTypeExceptFirstAndLastPage>去除首頁和末頁</StiPrintOnTypeExceptFirstAndLastPage>
  1510. <StiPrintOnTypeExceptFirstPage>去除首頁</StiPrintOnTypeExceptFirstPage>
  1511. <StiPrintOnTypeExceptLastPage>去除末頁</StiPrintOnTypeExceptLastPage>
  1512. <StiPrintOnTypeOnlyFirstAndLastPage>僅首頁和末頁</StiPrintOnTypeOnlyFirstAndLastPage>
  1513. <StiPrintOnTypeOnlyFirstPage>僅首頁</StiPrintOnTypeOnlyFirstPage>
  1514. <StiPrintOnTypeOnlyLastPage>僅末頁</StiPrintOnTypeOnlyLastPage>
  1515. <StiProcessingDuplicatesTypeGlobalHide>全域隱藏</StiProcessingDuplicatesTypeGlobalHide>
  1516. <StiProcessingDuplicatesTypeGlobalMerge>全域合併</StiProcessingDuplicatesTypeGlobalMerge>
  1517. <StiProcessingDuplicatesTypeGlobalRemoveText>全域移除文字</StiProcessingDuplicatesTypeGlobalRemoveText>
  1518. <StiProcessingDuplicatesTypeHide>隱藏</StiProcessingDuplicatesTypeHide>
  1519. <StiProcessingDuplicatesTypeMerge>合併</StiProcessingDuplicatesTypeMerge>
  1520. <StiProcessingDuplicatesTypeNone>無</StiProcessingDuplicatesTypeNone>
  1521. <StiProcessingDuplicatesTypeRemoveText>移除文本</StiProcessingDuplicatesTypeRemoveText>
  1522. <StiReportCacheModeAuto>自動</StiReportCacheModeAuto>
  1523. <StiReportCacheModeOff>關閉</StiReportCacheModeOff>
  1524. <StiReportCacheModeOn>開啟</StiReportCacheModeOn>
  1525. <StiReportUnitTypeCentimeters>釐米</StiReportUnitTypeCentimeters>
  1526. <StiReportUnitTypeHundredthsOfInch>百分之一英寸</StiReportUnitTypeHundredthsOfInch>
  1527. <StiReportUnitTypeInches>英寸</StiReportUnitTypeInches>
  1528. <StiReportUnitTypeMillimeters>毫米</StiReportUnitTypeMillimeters>
  1529. <StiReportUnitTypePixels>圖元</StiReportUnitTypePixels>
  1530. <StiRestrictionsAll>ȫ</StiRestrictionsAll>
  1531. <StiRestrictionsAllowChange>S׃</StiRestrictionsAllowChange>
  1532. <StiRestrictionsAllowDelete>Sh</StiRestrictionsAllowDelete>
  1533. <StiRestrictionsAllowMove>SƄ</StiRestrictionsAllowMove>
  1534. <StiRestrictionsAllowResize>S׃С</StiRestrictionsAllowResize>
  1535. <StiRestrictionsAllowSelect>Sx</StiRestrictionsAllowSelect>
  1536. <StiRestrictionsNone>o</StiRestrictionsNone>
  1537. <StiSeriesLabelsValueTypeArgument>參數</StiSeriesLabelsValueTypeArgument>
  1538. <StiSeriesLabelsValueTypeArgumentValue>參數 - 值</StiSeriesLabelsValueTypeArgumentValue>
  1539. <StiSeriesLabelsValueTypeSeriesTitle>序列標題</StiSeriesLabelsValueTypeSeriesTitle>
  1540. <StiSeriesLabelsValueTypeSeriesTitleArgument>序列標題 - 參數</StiSeriesLabelsValueTypeSeriesTitleArgument>
  1541. <StiSeriesLabelsValueTypeSeriesTitleValue>序列標題 - 值</StiSeriesLabelsValueTypeSeriesTitleValue>
  1542. <StiSeriesLabelsValueTypeValue>值</StiSeriesLabelsValueTypeValue>
  1543. <StiSeriesLabelsValueTypeValueArgument>值 - 參數</StiSeriesLabelsValueTypeValueArgument>
  1544. <StiSeriesSortDirectionAscending>昇冪</StiSeriesSortDirectionAscending>
  1545. <StiSeriesSortDirectionDescending>降冪</StiSeriesSortDirectionDescending>
  1546. <StiSeriesSortTypeArgument>參數</StiSeriesSortTypeArgument>
  1547. <StiSeriesSortTypeNone>無</StiSeriesSortTypeNone>
  1548. <StiSeriesSortTypeValue>值</StiSeriesSortTypeValue>
  1549. <StiSeriesYAxisLeftYAxis>Y S</StiSeriesYAxisLeftYAxis>
  1550. <StiSeriesYAxisRightYAxis>Y SҶ</StiSeriesYAxisRightYAxis>
  1551. <StiShapeDirectionDown>向下</StiShapeDirectionDown>
  1552. <StiShapeDirectionLeft>向左</StiShapeDirectionLeft>
  1553. <StiShapeDirectionRight>向右</StiShapeDirectionRight>
  1554. <StiShapeDirectionUp>向上</StiShapeDirectionUp>
  1555. <StiShiftModeDecreasingSize>減少尺寸</StiShiftModeDecreasingSize>
  1556. <StiShiftModeIncreasingSize>增加尺寸</StiShiftModeIncreasingSize>
  1557. <StiShiftModeNone>無</StiShiftModeNone>
  1558. <StiShiftModeOnlyInWidthOfComponent>僅在組件寬度內</StiShiftModeOnlyInWidthOfComponent>
  1559. <StiShowSeriesLabelsFromChart>從圖表</StiShowSeriesLabelsFromChart>
  1560. <StiShowSeriesLabelsFromSeries>從系列</StiShowSeriesLabelsFromSeries>
  1561. <StiShowSeriesLabelsNone>無</StiShowSeriesLabelsNone>
  1562. <StiSortDirectionAsc>昇冪</StiSortDirectionAsc>
  1563. <StiSortDirectionDesc>降冪</StiSortDirectionDesc>
  1564. <StiSortDirectionNone>無</StiSortDirectionNone>
  1565. <StiSortTypeByDisplayValue>按顯示值</StiSortTypeByDisplayValue>
  1566. <StiSortTypeByValue>按值</StiSortTypeByValue>
  1567. <StiSummaryValuesAllValues>所有值</StiSummaryValuesAllValues>
  1568. <StiSummaryValuesSkipNulls>忽略無效值</StiSummaryValuesSkipNulls>
  1569. <StiSummaryValuesSkipZerosAndNulls>忽略零和無效值</StiSummaryValuesSkipZerosAndNulls>
  1570. <StiTextHorAlignmentCenter>居中</StiTextHorAlignmentCenter>
  1571. <StiTextHorAlignmentLeft>居左</StiTextHorAlignmentLeft>
  1572. <StiTextHorAlignmentRight>居右</StiTextHorAlignmentRight>
  1573. <StiTextHorAlignmentWidth>寬度</StiTextHorAlignmentWidth>
  1574. <StiTextPositionCenterBottom>ײ</StiTextPositionCenterBottom>
  1575. <StiTextPositionCenterTop>픲</StiTextPositionCenterTop>
  1576. <StiTextPositionLeftBottom>ײ</StiTextPositionLeftBottom>
  1577. <StiTextPositionLeftTop>픲</StiTextPositionLeftTop>
  1578. <StiTextPositionRightBottom />
  1579. <StiTextPositionRightTop>픲</StiTextPositionRightTop>
  1580. <StiTextQualityStandard>標準</StiTextQualityStandard>
  1581. <StiTextQualityTypographic>印刷品質</StiTextQualityTypographic>
  1582. <StiTextQualityWysiwyg>所見即所得</StiTextQualityWysiwyg>
  1583. <StiVertAlignmentBottom>底部</StiVertAlignmentBottom>
  1584. <StiVertAlignmentCenter>居中</StiVertAlignmentCenter>
  1585. <StiVertAlignmentTop>頂端</StiVertAlignmentTop>
  1586. <StiViewModeNormal>正常</StiViewModeNormal>
  1587. <StiViewModePageBreakPreview>跨頁預覽</StiViewModePageBreakPreview>
  1588. <StringAlignmentCenter>居中</StringAlignmentCenter>
  1589. <StringAlignmentFar>遠</StringAlignmentFar>
  1590. <StringAlignmentNear>近</StringAlignmentNear>
  1591. <StringTrimmingCharacter>字元</StringTrimmingCharacter>
  1592. <StringTrimmingEllipsisCharacter>省略字元</StringTrimmingEllipsisCharacter>
  1593. <StringTrimmingEllipsisPath>省略路徑</StringTrimmingEllipsisPath>
  1594. <StringTrimmingEllipsisWord>省略字</StringTrimmingEllipsisWord>
  1595. <StringTrimmingNone>無</StringTrimmingNone>
  1596. <StringTrimmingWord>字</StringTrimmingWord>
  1597. </PropertyEnum>
  1598. <PropertyEvents>
  1599. <AfterPrintEvent>列印後於</AfterPrintEvent>
  1600. <AfterSelectEvent>選擇後</AfterSelectEvent>
  1601. <BeforePrintEvent>列印前於</BeforePrintEvent>
  1602. <BeginRenderEvent>開始渲染</BeginRenderEvent>
  1603. <CheckedChangedEvent>選擇改變後</CheckedChangedEvent>
  1604. <ClickEvent>點擊</ClickEvent>
  1605. <ClosedFormEvent>表單關閉後</ClosedFormEvent>
  1606. <ClosingFormEvent>表單關閉時</ClosingFormEvent>
  1607. <ColumnBeginRenderEvent>列開始渲染</ColumnBeginRenderEvent>
  1608. <ColumnEndRenderEvent>列結束渲染</ColumnEndRenderEvent>
  1609. <DoubleClickEvent>雙擊</DoubleClickEvent>
  1610. <EndRenderEvent>結束渲染</EndRenderEvent>
  1611. <EnterEvent>鍵入</EnterEvent>
  1612. <ExportedEvent>導出後</ExportedEvent>
  1613. <ExportingEvent>導出時</ExportingEvent>
  1614. <GetArgumentEvent>獲取參數</GetArgumentEvent>
  1615. <GetBookmarkEvent>獲取書簽</GetBookmarkEvent>
  1616. <GetCrossValueEvent>獲取 Cross 值</GetCrossValueEvent>
  1617. <GetCutPieListEvent>獲取Cut Pie列表</GetCutPieListEvent>
  1618. <GetDisplayCrossValueEvent>獲取顯示 Cross 值</GetDisplayCrossValueEvent>
  1619. <GetDrillDownReportEvent>獲取鑽取報表</GetDrillDownReportEvent>
  1620. <GetExcelSheetEvent>得到 Excel Sheet</GetExcelSheetEvent>
  1621. <GetExcelValueEvent>獲取 Excel 值</GetExcelValueEvent>
  1622. <GetHyperlinkEvent>獲取超鏈結</GetHyperlinkEvent>
  1623. <GetImageDataEvent>獲取圖片資料</GetImageDataEvent>
  1624. <GetImageURLEvent>獲取圖片 URL</GetImageURLEvent>
  1625. <GetListOfArgumentsEvent>獲取參數列表</GetListOfArgumentsEvent>
  1626. <GetListOfValuesEvent>獲取參數值</GetListOfValuesEvent>
  1627. <GetTagEvent>獲取 Tag</GetTagEvent>
  1628. <GetTitleEvent>得到標題</GetTitleEvent>
  1629. <GetToolTipEvent>獲取快速提示</GetToolTipEvent>
  1630. <GetValueEvent>獲取值</GetValueEvent>
  1631. <LeaveEvent>離開</LeaveEvent>
  1632. <LoadFormEvent>載入表單</LoadFormEvent>
  1633. <MouseDownEvent>滑鼠下移</MouseDownEvent>
  1634. <MouseEnterEvent>滑鼠鍵入</MouseEnterEvent>
  1635. <MouseLeaveEvent>滑鼠離開</MouseLeaveEvent>
  1636. <MouseMoveEvent>滑鼠移動</MouseMoveEvent>
  1637. <MouseUpEvent>滑鼠上移</MouseUpEvent>
  1638. <NewAutoSeriesEvent>新的自動序列</NewAutoSeriesEvent>
  1639. <PositionChangedEvent>位置改變後</PositionChangedEvent>
  1640. <PrintedEvent>列印後</PrintedEvent>
  1641. <PrintingEvent>列印時</PrintingEvent>
  1642. <ProcessChartEvent>處理圖表</ProcessChartEvent>
  1643. <RenderingEvent>正在渲染</RenderingEvent>
  1644. <SelectedIndexChangedEvent>所選索引改變後</SelectedIndexChangedEvent>
  1645. <StateRestoreEvent>狀態還原</StateRestoreEvent>
  1646. <StateSaveEvent>狀態保存</StateSaveEvent>
  1647. <ValueChangedEvent>值改變後</ValueChangedEvent>
  1648. </PropertyEvents>
  1649. <PropertyHatchStyle>
  1650. <BackwardDiagonal>反向對角線</BackwardDiagonal>
  1651. <Cross>斜線</Cross>
  1652. <DarkDownwardDiagonal>粗反向對角線</DarkDownwardDiagonal>
  1653. <DarkHorizontal>粗橫線</DarkHorizontal>
  1654. <DarkUpwardDiagonal>粗向上對角線</DarkUpwardDiagonal>
  1655. <DarkVertical>粗豎線</DarkVertical>
  1656. <DashedDownwardDiagonal>虛向下對角線</DashedDownwardDiagonal>
  1657. <DashedHorizontal>虛橫線</DashedHorizontal>
  1658. <DashedUpwardDiagonal>虛向上對角線</DashedUpwardDiagonal>
  1659. <DashedVertical>虛豎線</DashedVertical>
  1660. <DiagonalBrick>對角磚塊</DiagonalBrick>
  1661. <DiagonalCross>對角交叉線</DiagonalCross>
  1662. <Divot>草痕</Divot>
  1663. <DottedDiamond>菱形虛框</DottedDiamond>
  1664. <DottedGrid>虛線網格</DottedGrid>
  1665. <ForwardDiagonal>正向對角線</ForwardDiagonal>
  1666. <Horizontal>橫線</Horizontal>
  1667. <HorizontalBrick>水準磚塊</HorizontalBrick>
  1668. <LargeCheckerBoard>大棋盤</LargeCheckerBoard>
  1669. <LargeConfetti>大碎花</LargeConfetti>
  1670. <LargeGrid>大網格</LargeGrid>
  1671. <LightDownwardDiagonal>細向下對角線</LightDownwardDiagonal>
  1672. <LightHorizontal>細橫線</LightHorizontal>
  1673. <LightUpwardDiagonal>細向上對角線</LightUpwardDiagonal>
  1674. <LightVertical>細豎線</LightVertical>
  1675. <NarrowHorizontal>窄橫線</NarrowHorizontal>
  1676. <NarrowVertical>窄豎線</NarrowVertical>
  1677. <OutlinedDiamond>菱形實框</OutlinedDiamond>
  1678. <Percent05>05%</Percent05>
  1679. <Percent10>10%</Percent10>
  1680. <Percent20>20%</Percent20>
  1681. <Percent25>25%</Percent25>
  1682. <Percent30>30%</Percent30>
  1683. <Percent40>40%</Percent40>
  1684. <Percent50>50%</Percent50>
  1685. <Percent60>60%</Percent60>
  1686. <Percent70>70%</Percent70>
  1687. <Percent75>75%</Percent75>
  1688. <Percent80>80%</Percent80>
  1689. <Percent90>90%</Percent90>
  1690. <Plaid>方格花紋</Plaid>
  1691. <Shingle>瓦格</Shingle>
  1692. <SmallCheckerBoard>小棋盤</SmallCheckerBoard>
  1693. <SmallConfetti>小碎花</SmallConfetti>
  1694. <SmallGrid>小網格</SmallGrid>
  1695. <SolidDiamond>實心菱形</SolidDiamond>
  1696. <Sphere>球形</Sphere>
  1697. <Trellis>方格</Trellis>
  1698. <Vertical>豎線</Vertical>
  1699. <Weave>編織線</Weave>
  1700. <WideDownwardDiagonal>寬向下對角線</WideDownwardDiagonal>
  1701. <WideUpwardDiagonal>寬向上對角線</WideUpwardDiagonal>
  1702. <ZigZag>鋸齒線</ZigZag>
  1703. </PropertyHatchStyle>
  1704. <PropertyMain>
  1705. <AcceptsReturn>接受返回</AcceptsReturn>
  1706. <AcceptsTab>接受Tab</AcceptsTab>
  1707. <Advanced>高級</Advanced>
  1708. <AggregateFunction>聚合函數</AggregateFunction>
  1709. <AggregateFunctions>聚合函數</AggregateFunctions>
  1710. <Alias>別名</Alias>
  1711. <Alignment>對齊</Alignment>
  1712. <AllowApplyStyle>允許套用樣式</AllowApplyStyle>
  1713. <AllowHtmlTags>允許Html標籤</AllowHtmlTags>
  1714. <AllowSorting>允許排序</AllowSorting>
  1715. <AllowUseBorder>允許使用邊界</AllowUseBorder>
  1716. <AllowUseBrush>允許使用格式刷</AllowUseBrush>
  1717. <AllowUseFont>允許使用字體</AllowUseFont>
  1718. <AllowUseHorAlignment>允許使用水準對齊</AllowUseHorAlignment>
  1719. <AllowUseImage>允許使用圖像</AllowUseImage>
  1720. <AllowUseTextBrush>允許使用文本刷</AllowUseTextBrush>
  1721. <AllowUseTextOptions>允許使用文本選項</AllowUseTextOptions>
  1722. <AllowUseVertAlignment>允許使用垂直對齊</AllowUseVertAlignment>
  1723. <AlternatingBackColor>交替背景色</AlternatingBackColor>
  1724. <Angle>角度</Angle>
  1725. <Antialiasing>混疊效應</Antialiasing>
  1726. <Area>區域</Area>
  1727. <Argument>參數</Argument>
  1728. <ArgumentDataColumn>參數列</ArgumentDataColumn>
  1729. <ArrowHeight>箭頭高度</ArrowHeight>
  1730. <ArrowStyle>箭頭樣式</ArrowStyle>
  1731. <ArrowWidth>箭頭寬度</ArrowWidth>
  1732. <AspectRatio>長寬比</AspectRatio>
  1733. <Author>作者</Author>
  1734. <Auto>自動</Auto>
  1735. <AutoLocalizeReportOnRun>\ЕrԄӱػ</AutoLocalizeReportOnRun>
  1736. <AutoRefresh>自動更新</AutoRefresh>
  1737. <AutoRotate>自動旋轉</AutoRotate>
  1738. <AutoScale>自動縮放</AutoScale>
  1739. <AutoSeriesColorDataColumn>自動序列資料列顏色</AutoSeriesColorDataColumn>
  1740. <AutoSeriesKeyDataColumn>自動序列資料列關鍵字</AutoSeriesKeyDataColumn>
  1741. <AutoSeriesTitleDataColumn>自動序列資料列標題</AutoSeriesTitleDataColumn>
  1742. <AutoWidth>自動寬度</AutoWidth>
  1743. <AxisValue>Sֵ</AxisValue>
  1744. <BackColor>背景色</BackColor>
  1745. <Background>背景</Background>
  1746. <BackgroundColor>背景顏色</BackgroundColor>
  1747. <BarCodeType>條碼類型</BarCodeType>
  1748. <Bold>粗體</Bold>
  1749. <Bookmark>書簽</Bookmark>
  1750. <Border>邊框</Border>
  1751. <BorderColor>邊框顏色</BorderColor>
  1752. <Borders>邊框</Borders>
  1753. <BorderStyle>邊框樣式</BorderStyle>
  1754. <Bottom>底端</Bottom>
  1755. <BottomSide>底部大小</BottomSide>
  1756. <BreakIfLessThan>小於時截斷</BreakIfLessThan>
  1757. <Brush>畫筆</Brush>
  1758. <BrushType>格式刷類型</BrushType>
  1759. <CacheAllData>緩存全部資料</CacheAllData>
  1760. <CalcInvisible>計算列不可見</CalcInvisible>
  1761. <CalculatedDataColumn>計算列</CalculatedDataColumn>
  1762. <CanBreak>跨頁</CanBreak>
  1763. <Cancel>取消</Cancel>
  1764. <CanGrow>自動伸展</CanGrow>
  1765. <CanShrink>自動收縮</CanShrink>
  1766. <Categories>分類</Categories>
  1767. <Category>分類</Category>
  1768. <CategoryConnections>B</CategoryConnections>
  1769. <CellHeight>單格高度</CellHeight>
  1770. <CellWidth>單格寬度</CellWidth>
  1771. <ChartType>圖表類型</ChartType>
  1772. <Checked>選中</Checked>
  1773. <CheckOnClick>點擊選擇</CheckOnClick>
  1774. <CheckStyle>選擇樣式</CheckStyle>
  1775. <CheckStyleForFalse>未選中樣式</CheckStyleForFalse>
  1776. <CheckStyleForTrue>選中樣式</CheckStyleForTrue>
  1777. <CheckSum>選擇 Sum</CheckSum>
  1778. <CheckSum1>選擇 Sum1</CheckSum1>
  1779. <CheckSum2>選擇 Sum2</CheckSum2>
  1780. <Child>子級</Child>
  1781. <ChildColumns>子欄</ChildColumns>
  1782. <ChildSource>子數據源</ChildSource>
  1783. <ClearFormat>清除格式</ClearFormat>
  1784. <CloneContainer>克隆容器</CloneContainer>
  1785. <Code>a</Code>
  1786. <Collapsed>折疊</Collapsed>
  1787. <CollapseGroupFooter>折疊分組底部</CollapseGroupFooter>
  1788. <CollapsingEnabled>可折疊</CollapsingEnabled>
  1789. <Collate>比較</Collate>
  1790. <Color>顏色</Color>
  1791. <ColorEach>顏色每</ColorEach>
  1792. <Column>欄</Column>
  1793. <ColumnDirection>方向</ColumnDirection>
  1794. <ColumnGaps>間距</ColumnGaps>
  1795. <ColumnHeadersVisible>標題可見</ColumnHeadersVisible>
  1796. <Columns>欄數</Columns>
  1797. <ColumnWidth>欄寬</ColumnWidth>
  1798. <CommandTimeout>命令超時</CommandTimeout>
  1799. <ComponentStyle>元件樣式</ComponentStyle>
  1800. <Condition>條件</Condition>
  1801. <ConditionOptions>條件選項</ConditionOptions>
  1802. <Conditions>條件</Conditions>
  1803. <ConnectOnStart>開始連接</ConnectOnStart>
  1804. <ConstantLines>㶨</ConstantLines>
  1805. <Container>容器</Container>
  1806. <ContinuousText>連續文本</ContinuousText>
  1807. <ContourColor>輪廓線顏色</ContourColor>
  1808. <Converting>正在轉換</Converting>
  1809. <ConvertNulls>無效轉換</ConvertNulls>
  1810. <Copies>拷貝</Copies>
  1811. <CountData>行數</CountData>
  1812. <Create>創建</Create>
  1813. <CreateFieldOnDoubleClick>雙擊創建欄位</CreateFieldOnDoubleClick>
  1814. <CreateLabel>創建標籤</CreateLabel>
  1815. <CustomFormat>自定義格式</CustomFormat>
  1816. <CutPieList>Cut Pie列表</CutPieList>
  1817. <Data>數據</Data>
  1818. <DataAdapter>資料適配器</DataAdapter>
  1819. <DataAdapters>資料適配器</DataAdapters>
  1820. <DataBindings>數據綁定</DataBindings>
  1821. <DataColumn>數據列</DataColumn>
  1822. <DataField>數據欄位</DataField>
  1823. <DataRelation>資料關係</DataRelation>
  1824. <DataSource>數據源</DataSource>
  1825. <DataSources>數據源</DataSources>
  1826. <DataTextField>資料欄位文本</DataTextField>
  1827. <DataType>資料類型</DataType>
  1828. <DateInfo>資料資訊</DateInfo>
  1829. <Default>默認</Default>
  1830. <DefaultNamespace>默認命名空間</DefaultNamespace>
  1831. <Description>描述</Description>
  1832. <DetectUrls>指向 Urls</DetectUrls>
  1833. <DialogResult>對話方塊結果</DialogResult>
  1834. <Diameter>直徑</Diameter>
  1835. <Direction>方向</Direction>
  1836. <DisplayValue>顯示值</DisplayValue>
  1837. <Distance>距離</Distance>
  1838. <DistanceBetweenTabs>跳位字元間距</DistanceBetweenTabs>
  1839. <Dock>停靠</Dock>
  1840. <DockStyle>停靠樣式</DockStyle>
  1841. <DrawBorder>繪製邊框</DrawBorder>
  1842. <DrawLine>繪製線</DrawLine>
  1843. <DrillDownEnabled>可鑽取</DrillDownEnabled>
  1844. <DrillDownPage>鑽取頁</DrillDownPage>
  1845. <DrillDownParameter1>鑽取參數1</DrillDownParameter1>
  1846. <DrillDownParameter2>鑽取參數2</DrillDownParameter2>
  1847. <DrillDownParameter3>鑽取參數3</DrillDownParameter3>
  1848. <DrillDownReport>鑽取報表</DrillDownReport>
  1849. <DropDownAlign>下拉對齊</DropDownAlign>
  1850. <DropDownStyle>下拉樣式</DropDownStyle>
  1851. <DropDownWidth>下拉寬度</DropDownWidth>
  1852. <DropShadow>下拉陰影</DropShadow>
  1853. <Duplex>全雙工</Duplex>
  1854. <Editable>可編輯</Editable>
  1855. <EmptyValue>ֵ</EmptyValue>
  1856. <Enabled>可用</Enabled>
  1857. <EnableLog>使用日誌</EnableLog>
  1858. <EncodingType>編碼類型</EncodingType>
  1859. <EndColor>結束顏色</EndColor>
  1860. <EnumeratorSeparator>Enumerator ָ̖</EnumeratorSeparator>
  1861. <EnumeratorType>Enumerator </EnumeratorType>
  1862. <EvenStyle>偶數行樣式</EvenStyle>
  1863. <ExcelSheet>Excel Sheet</ExcelSheet>
  1864. <ExcelValue>Excel值</ExcelValue>
  1865. <ExportAsImage>導出為圖像</ExportAsImage>
  1866. <Expression>運算式</Expression>
  1867. <FaqPage>FAQ</FaqPage>
  1868. <FieldIs>欄位是</FieldIs>
  1869. <File>文件</File>
  1870. <Filter>過濾</Filter>
  1871. <FilterOn>啟用過濾</FilterOn>
  1872. <Filters>過濾</Filters>
  1873. <FirstTabOffset>首個跳位字元偏移</FirstTabOffset>
  1874. <Flat>平滑</Flat>
  1875. <FlatMode>平滑模式</FlatMode>
  1876. <Focus>得到焦點</Focus>
  1877. <Font>字體</Font>
  1878. <FontBold>粗體</FontBold>
  1879. <FontItalic>斜體</FontItalic>
  1880. <FontName>字體名稱</FontName>
  1881. <FontSize>字體尺寸</FontSize>
  1882. <FontStrikeout>刪除線</FontStrikeout>
  1883. <FontSubscript>下標</FontSubscript>
  1884. <FontSuperscript>上標</FontSuperscript>
  1885. <FontUnderline>下劃線</FontUnderline>
  1886. <FontUnit>字體單位</FontUnit>
  1887. <ForeColor>前景色</ForeColor>
  1888. <Format>格式</Format>
  1889. <FullConvertExpression>完整轉換運算式</FullConvertExpression>
  1890. <Function>函數</Function>
  1891. <Functions>函數</Functions>
  1892. <GlobalizationStrings>全局字串</GlobalizationStrings>
  1893. <GlobalizedName>全局名稱</GlobalizedName>
  1894. <GridLineColor>格線顏色</GridLineColor>
  1895. <GridLinesHor>水準格線</GridLinesHor>
  1896. <GridLinesHorRight>ˮ</GridLinesHorRight>
  1897. <GridLineStyle>格線樣式</GridLineStyle>
  1898. <GridLinesVert>垂直格線</GridLinesVert>
  1899. <GrowToHeight>適應高度</GrowToHeight>
  1900. <HeaderBackColor>標題背景色</HeaderBackColor>
  1901. <HeaderFont>標題字體</HeaderFont>
  1902. <HeaderForeColor>標題前景色</HeaderForeColor>
  1903. <HeaderText>標題文本</HeaderText>
  1904. <Height>高度</Height>
  1905. <HideZeros>零不顯示</HideZeros>
  1906. <High>高</High>
  1907. <HighlightCondition>高亮條件</HighlightCondition>
  1908. <HorAlignment>水準位置</HorAlignment>
  1909. <HorSpacing>水準間距</HorSpacing>
  1910. <HotkeyPrefix>熱鍵首碼</HotkeyPrefix>
  1911. <HtmlTags>Html Tag</HtmlTags>
  1912. <Hyperlink>超鏈結</Hyperlink>
  1913. <Idents>頁面邊框</Idents>
  1914. <Image>圖片</Image>
  1915. <ImageAlign>圖像對齊</ImageAlign>
  1916. <ImageAlignment>對齊</ImageAlignment>
  1917. <ImageData>數據</ImageData>
  1918. <ImageMultipleFactor>縮放</ImageMultipleFactor>
  1919. <ImageRotation>圖像旋轉</ImageRotation>
  1920. <ImageStretch>拉伸</ImageStretch>
  1921. <ImageTiling>平鋪</ImageTiling>
  1922. <ImageTransparency>D</ImageTransparency>
  1923. <ImageURL>URL</ImageURL>
  1924. <ImportRelations>導入關係</ImportRelations>
  1925. <Increment>增量</Increment>
  1926. <Indent>縮進</Indent>
  1927. <Insert>插入</Insert>
  1928. <Interaction>互動</Interaction>
  1929. <InterlacedBrush>畫筆行距</InterlacedBrush>
  1930. <InterlacingHor>水準行距</InterlacingHor>
  1931. <InterlacingVert>垂直行距</InterlacingVert>
  1932. <Italic>斜體</Italic>
  1933. <Item>項目</Item>
  1934. <ItemHeight>專案高度</ItemHeight>
  1935. <Items>項目</Items>
  1936. <KeepChildTogether>保持子區一起</KeepChildTogether>
  1937. <KeepCrossTabTogether>保持跨表連接</KeepCrossTabTogether>
  1938. <KeepDetailsTogether>保持明細在一起</KeepDetailsTogether>
  1939. <KeepFooterTogether>保持頁腳一起</KeepFooterTogether>
  1940. <KeepGroupFooterTogether>保持分組尾在一起</KeepGroupFooterTogether>
  1941. <KeepGroupHeaderTogether>保持分組頭在一起</KeepGroupHeaderTogether>
  1942. <KeepGroupTogether>保持分組一起</KeepGroupTogether>
  1943. <KeepHeaderTogether>保持頁眉一起</KeepHeaderTogether>
  1944. <KeepReportSummaryTogether>保持報表合計在一起</KeepReportSummaryTogether>
  1945. <KeepSubReportTogether>保持子報表連接</KeepSubReportTogether>
  1946. <KeyDataColumn>數據列key</KeyDataColumn>
  1947. <LabelColor>標籤顏色</LabelColor>
  1948. <Labels>標籤</Labels>
  1949. <LabelsColor>標籤顏色</LabelsColor>
  1950. <LabelsOffset>Labels Offset</LabelsOffset>
  1951. <Language>語言</Language>
  1952. <LargeHeight>高度拉伸</LargeHeight>
  1953. <LargeHeightFactor>高度拉伸倍數</LargeHeightFactor>
  1954. <Left>左</Left>
  1955. <LeftSide>左邊</LeftSide>
  1956. <Legend>圖例</Legend>
  1957. <LegendValueType>圖例值類型</LegendValueType>
  1958. <Length>長度</Length>
  1959. <Lighting>加亮</Lighting>
  1960. <LineColor>線顏色</LineColor>
  1961. <LineLimit>線界限</LineLimit>
  1962. <LineMarker>標記線</LineMarker>
  1963. <LinesOfUnderline>下劃線</LinesOfUnderline>
  1964. <LineStyle>線樣式</LineStyle>
  1965. <LineWidth>線寬</LineWidth>
  1966. <Linked>鏈結</Linked>
  1967. <ListOfArguments>參數列表</ListOfArguments>
  1968. <ListOfValues>值列表</ListOfValues>
  1969. <Localizable>可定位</Localizable>
  1970. <Location>位置</Location>
  1971. <Locked>固定</Locked>
  1972. <Low>低</Low>
  1973. <Margins>頁邊距</Margins>
  1974. <Marker>標記</Marker>
  1975. <MarkerAlignment>對齊標注</MarkerAlignment>
  1976. <MarkerColor>標注顏色</MarkerColor>
  1977. <MarkerSize>標注尺寸</MarkerSize>
  1978. <MarkerType>標注類型</MarkerType>
  1979. <MarkerVisible>標注可見</MarkerVisible>
  1980. <MasterComponent>父級組件</MasterComponent>
  1981. <MasterKeyDataColumn>數據列主鍵</MasterKeyDataColumn>
  1982. <MatrixSize>矩陣大小</MatrixSize>
  1983. <MaxDate>最大日期</MaxDate>
  1984. <MaxDropDownItems>最大下拉項目</MaxDropDownItems>
  1985. <Maximum>最大值</Maximum>
  1986. <MaxLength>最大長度</MaxLength>
  1987. <MaxNumberOfLines>最大行號</MaxNumberOfLines>
  1988. <MaxSize>最大尺寸</MaxSize>
  1989. <MaxValue />
  1990. <MaxWidth>最大寬度</MaxWidth>
  1991. <MergeDuplicates>合併重複</MergeDuplicates>
  1992. <MergeHeaders>合併列頭</MergeHeaders>
  1993. <MinDate>最小日期</MinDate>
  1994. <Minimum>最小值</Minimum>
  1995. <MinimumFontSize>最小字體尺寸</MinimumFontSize>
  1996. <MinorColor>Minor 顏色</MinorColor>
  1997. <MinorCount>Minor 數量</MinorCount>
  1998. <MinorLength>Minor 長度</MinorLength>
  1999. <MinorStyle>Minor 樣式</MinorStyle>
  2000. <MinorVisible>Minor 可見</MinorVisible>
  2001. <MinRowsInColumn>欄內最少行數</MinRowsInColumn>
  2002. <MinSize>最小尺寸</MinSize>
  2003. <MinValue>Сֵ</MinValue>
  2004. <MinWidth>最小寬度</MinWidth>
  2005. <Module>模式</Module>
  2006. <Move>移動</Move>
  2007. <Multiline>多行</Multiline>
  2008. <MultipleFactor>放大倍數</MultipleFactor>
  2009. <Name>名稱</Name>
  2010. <NameInSource>Դ</NameInSource>
  2011. <NameParent>父級名稱</NameParent>
  2012. <Namespaces>命名空間</Namespaces>
  2013. <NewColumnAfter>在後插入新列</NewColumnAfter>
  2014. <NewColumnBefore>在前插入新列</NewColumnBefore>
  2015. <NewPageAfter>在後插入新頁</NewPageAfter>
  2016. <NewPageBefore>在前插入新面</NewPageBefore>
  2017. <NextPage>後頁</NextPage>
  2018. <NullText>無效文本</NullText>
  2019. <NumberOfColumns>欄數</NumberOfColumns>
  2020. <NumberOfCopies>}u</NumberOfCopies>
  2021. <NumberOfPass>ͨ</NumberOfPass>
  2022. <OddStyle>奇數行樣式</OddStyle>
  2023. <OnlyText>僅文本</OnlyText>
  2024. <Options>選項</Options>
  2025. <Orientation>定向</Orientation>
  2026. <PageHeight>頁高</PageHeight>
  2027. <PageNumbers>頁碼</PageNumbers>
  2028. <PageWidth>頁寬</PageWidth>
  2029. <Paper>紙張</Paper>
  2030. <PaperSize>С</PaperSize>
  2031. <PaperSourceFirstPage>首頁紙張</PaperSourceFirstPage>
  2032. <PaperSourceOfFirstPage>首頁紙張來源</PaperSourceOfFirstPage>
  2033. <PaperSourceOfOtherPages>其它頁紙張來源</PaperSourceOfOtherPages>
  2034. <PaperSourceOtherPages>其它頁紙張</PaperSourceOtherPages>
  2035. <Parameter>參數</Parameter>
  2036. <Parameters>參數</Parameters>
  2037. <ParentColumns>父級欄</ParentColumns>
  2038. <ParentSource>父級數據源</ParentSource>
  2039. <ParentValue>父類值</ParentValue>
  2040. <PasswordChar>密碼字元</PasswordChar>
  2041. <Placement>放置</Placement>
  2042. <PlaceOnToolbox>放置工具箱</PlaceOnToolbox>
  2043. <PointAtCenter>指向中心</PointAtCenter>
  2044. <Position>λ</Position>
  2045. <PreferredColumnWidth>首選列寬</PreferredColumnWidth>
  2046. <PreferredRowHeight>首選行高</PreferredRowHeight>
  2047. <PreventIntersection>防止重疊</PreventIntersection>
  2048. <PreviewMode>預覽模式</PreviewMode>
  2049. <PreviewSettings>預覽設置</PreviewSettings>
  2050. <Printable>可列印</Printable>
  2051. <PrintAtBottom>在底部列印</PrintAtBottom>
  2052. <PrinterName>印表機名稱</PrinterName>
  2053. <PrinterSettings>印表機設置</PrinterSettings>
  2054. <PrintHeadersFootersFromPreviousPage>從前頁列印頁眉和頁腳</PrintHeadersFootersFromPreviousPage>
  2055. <PrintIfDetailEmpty>明細為空時列印</PrintIfDetailEmpty>
  2056. <PrintIfEmpty>為空時列印</PrintIfEmpty>
  2057. <PrintOn>列印在</PrintOn>
  2058. <PrintOnAllPages>列印全部頁</PrintOnAllPages>
  2059. <PrintOnEvenOddPages>列印偶數奇數頁</PrintOnEvenOddPages>
  2060. <PrintOnPreviousPage>列印前頁</PrintOnPreviousPage>
  2061. <ProcessAtEnd>在結束時處理</ProcessAtEnd>
  2062. <ProcessingDuplicates>正在處理重複</ProcessingDuplicates>
  2063. <ProductHomePage>產品主頁</ProductHomePage>
  2064. <Range>範圍</Range>
  2065. <Ratio />
  2066. <ReadOnly>唯讀</ReadOnly>
  2067. <ReconnectOnEachRow>每行重新連接</ReconnectOnEachRow>
  2068. <ReferencedAssemblies>引用程式集</ReferencedAssemblies>
  2069. <Refresh>刷新</Refresh>
  2070. <Relation>關係</Relation>
  2071. <RelationName>關係名稱</RelationName>
  2072. <Relations>關係</Relations>
  2073. <RemoveUnusedDataBeforeStart>在開始前移除未使用資料</RemoveUnusedDataBeforeStart>
  2074. <RenderTo>渲染到</RenderTo>
  2075. <ReportAlias>報表別名</ReportAlias>
  2076. <ReportAuthor>報表作者</ReportAuthor>
  2077. <ReportCacheMode>報表緩存模式</ReportCacheMode>
  2078. <ReportDescription>報表描述</ReportDescription>
  2079. <ReportName>報表名稱</ReportName>
  2080. <ReportUnit>報表單位</ReportUnit>
  2081. <ResetDataSource>重設數據源</ResetDataSource>
  2082. <ResetPageNumber>重設頁碼</ResetPageNumber>
  2083. <Resize>調整大小</Resize>
  2084. <Restrictions />
  2085. <ReturnValue>返回值</ReturnValue>
  2086. <ReverseHor>水準翻轉</ReverseHor>
  2087. <ReverseVert>垂直翻轉</ReverseVert>
  2088. <Right>右</Right>
  2089. <RightSide>右邊</RightSide>
  2090. <RightToLeft>從右到左</RightToLeft>
  2091. <Round>環繞</Round>
  2092. <RowHeadersVisible>行標題可見</RowHeadersVisible>
  2093. <RowHeaderWidth>行標題寬度</RowHeaderWidth>
  2094. <Scale>縮放</Scale>
  2095. <ScaleHor>水準縮放</ScaleHor>
  2096. <ScriptLanguage>腳本語言</ScriptLanguage>
  2097. <SegmentPerHeight>縱向連頁</SegmentPerHeight>
  2098. <SegmentPerWidth>橫向連頁</SegmentPerWidth>
  2099. <SelectedIndex>選擇索引</SelectedIndex>
  2100. <SelectedItem>選擇項目</SelectedItem>
  2101. <SelectedValue>選擇值</SelectedValue>
  2102. <SelectionBackColor>選擇背景色</SelectionBackColor>
  2103. <SelectionForeColor>選擇前景色</SelectionForeColor>
  2104. <SelectionMode>選擇模式</SelectionMode>
  2105. <Series>序列</Series>
  2106. <SeriesLabels>序列標籤</SeriesLabels>
  2107. <Shadow>陰影</Shadow>
  2108. <ShadowBrush>陰影刷</ShadowBrush>
  2109. <ShadowColor>陰影顏色</ShadowColor>
  2110. <ShadowSize>陰影尺寸</ShadowSize>
  2111. <ShapeType>形狀類型</ShapeType>
  2112. <Shift>Shift</Shift>
  2113. <ShiftMode>Shift 模式</ShiftMode>
  2114. <ShowBehind>顯示於後面</ShowBehind>
  2115. <ShowDialog>顯示對話方塊</ShowDialog>
  2116. <ShowEdgeValues>顯示邊框值</ShowEdgeValues>
  2117. <ShowImageBehind>顯示圖片於後面</ShowImageBehind>
  2118. <ShowInLegend>顯示圖例</ShowInLegend>
  2119. <ShowInPercent>@ʾٷֱ</ShowInPercent>
  2120. <ShowLabels>顯示標籤</ShowLabels>
  2121. <ShowLabelText>顯示標籤文本</ShowLabelText>
  2122. <ShowMarker>顯示標注</ShowMarker>
  2123. <ShowOnZeroValues>顯示零值</ShowOnZeroValues>
  2124. <ShowSeriesLabels>顯示系列標籤</ShowSeriesLabels>
  2125. <ShowShadow>顯示陰影</ShowShadow>
  2126. <ShowTotal>顯示合計</ShowTotal>
  2127. <ShowUpDown>顯示升降</ShowUpDown>
  2128. <ShowValue>顯示值</ShowValue>
  2129. <ShowZeros>顯示零</ShowZeros>
  2130. <ShrinkFontToFit>壓縮</ShrinkFontToFit>
  2131. <ShrinkFontToFitMinimumSize>壓縮為最小尺寸</ShrinkFontToFitMinimumSize>
  2132. <Side>邊</Side>
  2133. <Sides>邊</Sides>
  2134. <Simple>簡單</Simple>
  2135. <Size>尺寸</Size>
  2136. <SizeMode>尺寸模式</SizeMode>
  2137. <SkipFirst>忽略第一個</SkipFirst>
  2138. <Smoothing>平滑</Smoothing>
  2139. <Sort>排序</Sort>
  2140. <SortBy>排序為</SortBy>
  2141. <SortDirection>排序方向</SortDirection>
  2142. <Sorted>已排序</Sorted>
  2143. <SortingColumn>列排序</SortingColumn>
  2144. <SortingEnabled>可排序</SortingEnabled>
  2145. <SortType>排序類型</SortType>
  2146. <Space>空格</Space>
  2147. <Spacing>g</Spacing>
  2148. <SqlCommand>SQL命令</SqlCommand>
  2149. <StartAngle>開始角度</StartAngle>
  2150. <StartColor>開始顏色</StartColor>
  2151. <StartFromZero>_ʼ</StartFromZero>
  2152. <StartMode>開始模式</StartMode>
  2153. <StartNewPage>開始新頁</StartNewPage>
  2154. <StartNewPageIfLessThan>開始新頁如果少於</StartNewPageIfLessThan>
  2155. <StartPosition>起始位置</StartPosition>
  2156. <Step>步驟</Step>
  2157. <Stop>停止</Stop>
  2158. <StopBeforePage>停止於頁面</StopBeforePage>
  2159. <StopBeforePrint>停止列印於</StopBeforePrint>
  2160. <Stretch>拉伸</Stretch>
  2161. <StretchToPrintArea>拉伸至列印區域</StretchToPrintArea>
  2162. <StripBrush>Llˢ</StripBrush>
  2163. <Strips>Ll</Strips>
  2164. <Style>樣式</Style>
  2165. <Styles>樣式</Styles>
  2166. <SubReportPage>子報表頁面</SubReportPage>
  2167. <Summary>聚合</Summary>
  2168. <SummaryValues>合計值</SummaryValues>
  2169. <SupplementCode>附加碼</SupplementCode>
  2170. <SupplementType>附加碼類型</SupplementType>
  2171. <SystemVariable>系統變數</SystemVariable>
  2172. <SystemVariables>系統變數</SystemVariables>
  2173. <Tag>標識</Tag>
  2174. <TagValue>標識值</TagValue>
  2175. <Tension>拉伸</Tension>
  2176. <Text>文本</Text>
  2177. <TextAfter>文本於後</TextAfter>
  2178. <TextAlign>對齊文本</TextAlign>
  2179. <TextBefore>文本於前</TextBefore>
  2180. <TextBrush>文本刷</TextBrush>
  2181. <TextColor>文本顏色</TextColor>
  2182. <TextFormat>文本格式</TextFormat>
  2183. <TextOnly>僅文本</TextOnly>
  2184. <TextOptions>文本選項</TextOptions>
  2185. <TextQuality>文本品質</TextQuality>
  2186. <Ticks>記號</Ticks>
  2187. <Title>標題</Title>
  2188. <TitleBeforeHeader>標題在頁眉前</TitleBeforeHeader>
  2189. <TitleColor>標題顏色</TitleColor>
  2190. <TitleFont>標題字體</TitleFont>
  2191. <TitleVisible>Ҋ</TitleVisible>
  2192. <Today>當天</Today>
  2193. <ToolTip>提示資訊</ToolTip>
  2194. <Top>頂端</Top>
  2195. <TopSide>頂部</TopSide>
  2196. <Total>總計</Total>
  2197. <Totals>總計</Totals>
  2198. <TransparentColor>透明色</TransparentColor>
  2199. <Trimming>截斷</Trimming>
  2200. <Type>類型</Type>
  2201. <TypeName>Q</TypeName>
  2202. <Types>類型</Types>
  2203. <Underline>下劃線</Underline>
  2204. <UndoLimit>撤銷限制</UndoLimit>
  2205. <Unit>單位</Unit>
  2206. <UnlimitedBreakable>不限制分頁</UnlimitedBreakable>
  2207. <UnlimitedHeight>不限制高度</UnlimitedHeight>
  2208. <UnlimitedWidth>不限制寬度</UnlimitedWidth>
  2209. <UseAliases>使用別名</UseAliases>
  2210. <UseParentStyles>使用父級樣式</UseParentStyles>
  2211. <UseRectangularSymbols>使用矩形符號</UseRectangularSymbols>
  2212. <UseSeriesColor>使用序列顏色</UseSeriesColor>
  2213. <UseStyleOfSummaryInColumnTotal>顯示列匯總</UseStyleOfSummaryInColumnTotal>
  2214. <UseStyleOfSummaryInRowTotal>顯示行匯總</UseStyleOfSummaryInRowTotal>
  2215. <Value>值</Value>
  2216. <ValueDataColumn>值數據列</ValueDataColumn>
  2217. <ValueType>值類型</ValueType>
  2218. <Variable>變數</Variable>
  2219. <Variables>變數</Variables>
  2220. <Version>版本</Version>
  2221. <VertAlignment>垂直位置</VertAlignment>
  2222. <VertSpacing>垂直間距</VertSpacing>
  2223. <ViewMode>查看模式</ViewMode>
  2224. <Visible>可見</Visible>
  2225. <Watermark>浮水印</Watermark>
  2226. <Width>寬度</Width>
  2227. <WindowState>視窗狀態</WindowState>
  2228. <WordWrap>自動換行</WordWrap>
  2229. <Wrap>換行</Wrap>
  2230. <WrapGap>行距</WrapGap>
  2231. <XAxis>X 座標</XAxis>
  2232. <XTopAxis>X 上座標</XTopAxis>
  2233. <YAxis>Y 座標</YAxis>
  2234. <YRightAxis>Y 右座標</YRightAxis>
  2235. <Zoom>縮放</Zoom>
  2236. </PropertyMain>
  2237. <PropertySystemColors>
  2238. <ActiveBorder>活動邊框</ActiveBorder>
  2239. <ActiveCaption>活動標題欄</ActiveCaption>
  2240. <ActiveCaptionText>活動標題欄文本</ActiveCaptionText>
  2241. <AppWorkspace>應用程式工作區</AppWorkspace>
  2242. <Control>按鈕表面</Control>
  2243. <ControlDark>按鈕亮陰影</ControlDark>
  2244. <ControlDarkDark>按鈕暗陰影</ControlDarkDark>
  2245. <ControlLight>按鈕陰影</ControlLight>
  2246. <ControlLightLight>按鈕突出顯示</ControlLightLight>
  2247. <ControlText>按鈕文本</ControlText>
  2248. <Desktop>桌面</Desktop>
  2249. <GrayText>無效文本</GrayText>
  2250. <Highlight>突出顯示</Highlight>
  2251. <HighlightText>突出顯示文本</HighlightText>
  2252. <HotTrack>熱跟蹤</HotTrack>
  2253. <InactiveBorder>非活動邊框</InactiveBorder>
  2254. <InactiveCaption>非活動標題欄</InactiveCaption>
  2255. <InactiveCaptionText>非活動標題欄文本</InactiveCaptionText>
  2256. <Info>工具提示</Info>
  2257. <InfoText>工具提示文本</InfoText>
  2258. <Menu>菜單條</Menu>
  2259. <MenuText>功能表文本</MenuText>
  2260. <ScrollBar>捲軸</ScrollBar>
  2261. <Window>窗口背景</Window>
  2262. <WindowFrame>窗口框架</WindowFrame>
  2263. <WindowText>視窗文本</WindowText>
  2264. </PropertySystemColors>
  2265. <QueryBuilder>
  2266. <AddObject>增加對象</AddObject>
  2267. <AddSubQuery>增加派生表</AddSubQuery>
  2268. <AllObjects>(所有物件)</AllObjects>
  2269. <BadFromObjectExpression>無效的 FROM 運算式!</BadFromObjectExpression>
  2270. <BadObjectName>無效對象名!</BadObjectName>
  2271. <BadSelectStatement>無效 SELECT 語句!</BadSelectStatement>
  2272. <CreateLinksFromForeignKeys>通過外鍵創建鏈結</CreateLinksFromForeignKeys>
  2273. <CriteriaAlias>別名</CriteriaAlias>
  2274. <CriteriaCriteria>過濾</CriteriaCriteria>
  2275. <CriteriaExpression>運算式</CriteriaExpression>
  2276. <CriteriaGroupBy>分組</CriteriaGroupBy>
  2277. <CriteriaOr>或...</CriteriaOr>
  2278. <CriteriaOutput>輸出</CriteriaOutput>
  2279. <CriteriaSortOrder>排序</CriteriaSortOrder>
  2280. <CriteriaSortType>排序方式</CriteriaSortType>
  2281. <Database>資料庫</Database>
  2282. <DataSourceProperties>資料源屬性</DataSourceProperties>
  2283. <DialectDontSupportDatabases>伺服器不支援從不同資料庫查詢物件.</DialectDontSupportDatabases>
  2284. <DialectDontSupportSchemas>伺服器不支援 schemas.</DialectDontSupportSchemas>
  2285. <DialectDontSupportUnions>伺服器不支持聯合查詢.</DialectDontSupportUnions>
  2286. <DialectDontSupportUnionsBrackets>伺服器不支援在聯合查詢中使用括弧.</DialectDontSupportUnionsBrackets>
  2287. <DialectDontSupportUnionsBracketsInSubQuery>伺服器不支援子查詢.</DialectDontSupportUnionsBracketsInSubQuery>
  2288. <DialectDontSupportUnionsInSubQueries>伺服器不支援在子查詢中使用 unions.</DialectDontSupportUnionsInSubQueries>
  2289. <Edit>編輯</Edit>
  2290. <EncloseWithBrackets>使用括弧</EncloseWithBrackets>
  2291. <Expressions>運算式</Expressions>
  2292. <InsertEmptyItem>插入空項</InsertEmptyItem>
  2293. <JoinExpression>Join 運算式</JoinExpression>
  2294. <LabelAlias>別名:</LabelAlias>
  2295. <LabelFilterObjectsBySchemaName>用 Schema 名過濾對象:</LabelFilterObjectsBySchemaName>
  2296. <LabelJoinExpression>Join 運算式n:</LabelJoinExpression>
  2297. <LabelLeftColumn>左邊列:</LabelLeftColumn>
  2298. <LabelLeftObject>左邊對象:</LabelLeftObject>
  2299. <LabelObject>對象:</LabelObject>
  2300. <LabelRightColumn>右邊列:</LabelRightColumn>
  2301. <LabelRightObject>右邊對象:</LabelRightObject>
  2302. <LinkProperties>鏈結屬性</LinkProperties>
  2303. <MetadataProviderCantExecSQL>所使用的元資料提供者不能執行SQL查詢.</MetadataProviderCantExecSQL>
  2304. <MetaProviderCantLoadMetadata>所使用的元資料提供者不能自動導入元資料.</MetaProviderCantLoadMetadata>
  2305. <MetaProviderCantLoadMetadataForDatabase>所使用的元資料提供者不能自動從資料庫導入元資料: {0}</MetaProviderCantLoadMetadataForDatabase>
  2306. <MoveDown>下移</MoveDown>
  2307. <MoveUp>上移</MoveUp>
  2308. <NewUnionSubQuery>新建 union 子查詢</NewUnionSubQuery>
  2309. <NoConnectionObject>無連接物件 (屬性 {0} 未分配).</NoConnectionObject>
  2310. <NoTransactionObject>無事務物件 (屬性 {0} 未分配).</NoTransactionObject>
  2311. <Objects>對象</Objects>
  2312. <ProcedureParameters>存儲過程參數</ProcedureParameters>
  2313. <Procedures>存儲過程</Procedures>
  2314. <qnSaveChanges>您是否確定保存查詢改變?</qnSaveChanges>
  2315. <Query>查詢</Query>
  2316. <QueryBuilder>查詢構造器</QueryBuilder>
  2317. <QueryParameters>查詢參數</QueryParameters>
  2318. <QueryProperties>查詢屬性</QueryProperties>
  2319. <Remove>移除</Remove>
  2320. <RemoveBrackets>移除括弧</RemoveBrackets>
  2321. <RunQueryBuilder>運行查詢構造器</RunQueryBuilder>
  2322. <SelectAllFromLeft>左邊所有資料</SelectAllFromLeft>
  2323. <SelectAllFromRight>右邊所有資料</SelectAllFromRight>
  2324. <SwitchToDerivedTable>切換到派生表</SwitchToDerivedTable>
  2325. <Tables>表</Tables>
  2326. <UnexpectedTokenAt>未知錯誤 "{0}" 在行 {1}, 列 {2}!</UnexpectedTokenAt>
  2327. <Unions>聯合查詢</Unions>
  2328. <UnionSubMenu>聯合查詢</UnionSubMenu>
  2329. <ViewQuery>視圖查詢</ViewQuery>
  2330. <Views>視圖</Views>
  2331. </QueryBuilder>
  2332. <Questions>
  2333. <qnDictionaryNew>您是否想要創建新的字典?</qnDictionaryNew>
  2334. <qnLanguageNew>您已經改變報表語言。這將導致新的報表代碼生成。 您是否確定要保存當前語言?</qnLanguageNew>
  2335. <qnPageDelete>您是否想要刪除頁面?</qnPageDelete>
  2336. <qnRemove>您是否想要移除?</qnRemove>
  2337. <qnRemoveService>您是否想要移除服務?</qnRemoveService>
  2338. <qnRemoveServiceCategory>您是否想要移除分類?</qnRemoveServiceCategory>
  2339. <qnRemoveUnused>您是否想要移除未使用的專案?</qnRemoveUnused>
  2340. <qnRestoreDefault>恢復默認?</qnRestoreDefault>
  2341. <qnSaveChanges>保存改變在{0}?</qnSaveChanges>
  2342. <qnSaveChangesToPreviewPage>您是否要保存頁面改變?</qnSaveChangesToPreviewPage>
  2343. <qnSynchronize>是否同步資料存儲和資料字典的內容?</qnSynchronize>
  2344. <qnSynchronizeServices>是否同步服務?</qnSynchronizeServices>
  2345. </Questions>
  2346. <Report>
  2347. <Bands>欄</Bands>
  2348. <Charts>圖表</Charts>
  2349. <CollapseAll>全部折疊</CollapseAll>
  2350. <CompilingReport>正在編譯報表</CompilingReport>
  2351. <Components>組件</Components>
  2352. <ConnectingToData>正在連接資料</ConnectingToData>
  2353. <CreatingReport>正在創建報表</CreatingReport>
  2354. <CrossBands>交叉欄</CrossBands>
  2355. <Dialogs>報表控制項</Dialogs>
  2356. <EditStyles>編輯樣式</EditStyles>
  2357. <EventsTab>事件表</EventsTab>
  2358. <ExpandAll>全部展開</ExpandAll>
  2359. <FilterAnd>並且</FilterAnd>
  2360. <FilterOr>或</FilterOr>
  2361. <FinishingReport>正在完成報表</FinishingReport>
  2362. <FirstPass>һͨ</FirstPass>
  2363. <GenerateNewCode>生成新代碼</GenerateNewCode>
  2364. <LabelAlias>別名:</LabelAlias>
  2365. <LabelAuthor>作者:</LabelAuthor>
  2366. <LabelBackground>背景:</LabelBackground>
  2367. <LabelCategory>分類:</LabelCategory>
  2368. <LabelCentimeters>釐米:</LabelCentimeters>
  2369. <LabelColor>顏色:</LabelColor>
  2370. <LabelCountData>行數:</LabelCountData>
  2371. <LabelDataBand>數據綁定:</LabelDataBand>
  2372. <LabelDataColumn>數據列:</LabelDataColumn>
  2373. <LabelDefaultValue>預設值:</LabelDefaultValue>
  2374. <LabelExpression>運算式:</LabelExpression>
  2375. <LabelFontName>字體名稱:</LabelFontName>
  2376. <LabelFunction>函數:</LabelFunction>
  2377. <LabelHundredthsOfInch>百分之一英寸:</LabelHundredthsOfInch>
  2378. <LabelInches>英寸:</LabelInches>
  2379. <LabelMillimeters>毫米:</LabelMillimeters>
  2380. <LabelName>名稱:</LabelName>
  2381. <LabelNameInSource>Դ:</LabelNameInSource>
  2382. <LabelPassword>密碼:</LabelPassword>
  2383. <LabelPixels>圖元:</LabelPixels>
  2384. <LabelSystemVariable>系統變數:</LabelSystemVariable>
  2385. <LabelTotals>合計</LabelTotals>
  2386. <LabelType>類型:</LabelType>
  2387. <LabelUserName>用戶:</LabelUserName>
  2388. <LabelValue>值:</LabelValue>
  2389. <LoadingReport>正在載入報表</LoadingReport>
  2390. <nameAssembly>程式集</nameAssembly>
  2391. <No>否</No>
  2392. <NotAssigned>未設置</NotAssigned>
  2393. <PageNofM>{0} / {1}頁</PageNofM>
  2394. <PreparingReport>正在準備報表</PreparingReport>
  2395. <PropertiesTab>屬性表</PropertiesTab>
  2396. <RangeAll>全部</RangeAll>
  2397. <RangeCurrentPage>當前頁</RangeCurrentPage>
  2398. <RangeInfo>輸入頁碼並且/或頁碼範圍用逗號分隔。例如: 1, 3, 5-12</RangeInfo>
  2399. <RangePage>頁面範圍</RangePage>
  2400. <RangePages>頁數:</RangePages>
  2401. <SavingReport>正在保存報表</SavingReport>
  2402. <SecondPass>ڶͨ</SecondPass>
  2403. <StiEmptyBrush>無</StiEmptyBrush>
  2404. <StiGlareBrush>中空</StiGlareBrush>
  2405. <StiGlassBrush>玻璃刷</StiGlassBrush>
  2406. <StiGradientBrush>漸變</StiGradientBrush>
  2407. <StiHatchBrush>斜線</StiHatchBrush>
  2408. <StiSolidBrush>實心</StiSolidBrush>
  2409. <StyleBad>壞</StyleBad>
  2410. <StyleGood>好</StyleGood>
  2411. <StyleNeutral>空檔</StyleNeutral>
  2412. <StyleNormal>正常</StyleNormal>
  2413. <StyleNote>注釋</StyleNote>
  2414. <StyleWarning>警告</StyleWarning>
  2415. </Report>
  2416. <Services>
  2417. <categoryContextTools>文本工具</categoryContextTools>
  2418. <categoryDesigner>設計</categoryDesigner>
  2419. <categoryDictionary>字典</categoryDictionary>
  2420. <categoryExport>導出</categoryExport>
  2421. <categoryLanguages>語言</categoryLanguages>
  2422. <categoryPanels>面板</categoryPanels>
  2423. <categoryRender>渲染</categoryRender>
  2424. <categoryShapes>形狀</categoryShapes>
  2425. <categorySL>保存/載入</categorySL>
  2426. <categorySystem>系統</categorySystem>
  2427. <categoryTextFormat>文本格式</categoryTextFormat>
  2428. </Services>
  2429. <Shapes>
  2430. <Arrow>箭頭</Arrow>
  2431. <DiagonalDownLine>反斜線</DiagonalDownLine>
  2432. <DiagonalUpLine>斜線</DiagonalUpLine>
  2433. <HorizontalLine>水平線</HorizontalLine>
  2434. <LeftAndRightLine>雙豎線</LeftAndRightLine>
  2435. <Oval>橢圓</Oval>
  2436. <Rectangle>矩形</Rectangle>
  2437. <RoundedRectangle>圓角矩形</RoundedRectangle>
  2438. <ServiceCategory>形狀</ServiceCategory>
  2439. <TopAndBottomLine>雙橫線</TopAndBottomLine>
  2440. <Triangle>三角形</Triangle>
  2441. <VerticalLine>垂直線</VerticalLine>
  2442. </Shapes>
  2443. <Toolbars>
  2444. <Align>R</Align>
  2445. <AlignBottom>底端對齊</AlignBottom>
  2446. <AlignCenter>居中對齊</AlignCenter>
  2447. <AlignLeft>左對齊</AlignLeft>
  2448. <AlignMiddle>中間對齊</AlignMiddle>
  2449. <AlignRight>右對齊</AlignRight>
  2450. <AlignToGrid>對齊到網格</AlignToGrid>
  2451. <AlignTop>頂端對齊</AlignTop>
  2452. <AlignWidth>寬度相同</AlignWidth>
  2453. <BringToFront>前置</BringToFront>
  2454. <CenterHorizontally>水準居中</CenterHorizontally>
  2455. <CenterVertically>垂直居中</CenterVertically>
  2456. <Conditions>條件</Conditions>
  2457. <FontGrow>增大字體</FontGrow>
  2458. <FontName>字體名稱</FontName>
  2459. <FontShrink>減小字體</FontShrink>
  2460. <FontSize>字體尺寸</FontSize>
  2461. <FontStyleBold>粗體</FontStyleBold>
  2462. <FontStyleItalic>斜體</FontStyleItalic>
  2463. <FontStyleUnderline>下劃線</FontStyleUnderline>
  2464. <Link>鏈結</Link>
  2465. <Lock>固定</Lock>
  2466. <MakeHorizontalSpacingEqual>水準間距相同</MakeHorizontalSpacingEqual>
  2467. <MakeSameHeight>與 {0} 高度相同</MakeSameHeight>
  2468. <MakeSameSize>與 {0} 大小相同</MakeSameSize>
  2469. <MakeSameWidth>與 {0} 寬度相同</MakeSameWidth>
  2470. <MakeVerticalSpacingEqual>垂直間距相同</MakeVerticalSpacingEqual>
  2471. <MoveBackward>後移</MoveBackward>
  2472. <MoveForward>前移</MoveForward>
  2473. <Order />
  2474. <SendToBack>後置</SendToBack>
  2475. <Size />
  2476. <StyleDesigner>樣式設計</StyleDesigner>
  2477. <Styles>樣式列表</Styles>
  2478. <TabHome>主頁</TabHome>
  2479. <TabLayout>層</TabLayout>
  2480. <TabPage>頁</TabPage>
  2481. <TabView>視圖</TabView>
  2482. <TextBrush>畫刷</TextBrush>
  2483. <ToolbarAlignment>對齊</ToolbarAlignment>
  2484. <ToolbarArrange>排列</ToolbarArrange>
  2485. <ToolbarBorders>邊框</ToolbarBorders>
  2486. <ToolbarClipboard>剪貼板</ToolbarClipboard>
  2487. <ToolbarDockStyle>停靠樣式</ToolbarDockStyle>
  2488. <ToolbarFont>字體</ToolbarFont>
  2489. <ToolbarFormatting>格式</ToolbarFormatting>
  2490. <ToolbarLayout>佈局</ToolbarLayout>
  2491. <ToolbarPageSetup>頁面設置</ToolbarPageSetup>
  2492. <ToolbarStandard>標準</ToolbarStandard>
  2493. <ToolbarStyle>樣式</ToolbarStyle>
  2494. <ToolbarTextFormat>文本格式</ToolbarTextFormat>
  2495. <ToolbarTools>工具</ToolbarTools>
  2496. <ToolbarViewOptions>視圖選項</ToolbarViewOptions>
  2497. <ToolbarWatermarkImage>浮水印圖像</ToolbarWatermarkImage>
  2498. <ToolbarWatermarkText>浮水印文本</ToolbarWatermarkText>
  2499. </Toolbars>
  2500. <Toolbox>
  2501. <Create>創建組件</Create>
  2502. <Hand>手形工具</Hand>
  2503. <Select>選擇工具</Select>
  2504. <Style>格式刷工具</Style>
  2505. <TextEditor>文本編輯器</TextEditor>
  2506. <title>工具箱</title>
  2507. </Toolbox>
  2508. <Wizards>
  2509. <BlankReport>空白報表</BlankReport>
  2510. <ButtonBack>&lt; 上一步(&amp;B)</ButtonBack>
  2511. <ButtonCancel>取消</ButtonCancel>
  2512. <ButtonFinish>完成(&amp;F)</ButtonFinish>
  2513. <ButtonNext>下一步(&amp;N) &gt;</ButtonNext>
  2514. <ColumnsOrder>列的順序</ColumnsOrder>
  2515. <Custom>自定義</Custom>
  2516. <DataRelation>關係</DataRelation>
  2517. <DataSource>數據源</DataSource>
  2518. <DataSources>數據源</DataSources>
  2519. <Filters>過濾</Filters>
  2520. <FromReportTemplate>從報表範本</FromReportTemplate>
  2521. <groupCreateNewReport>創建新報表</groupCreateNewReport>
  2522. <Groups>分組</Groups>
  2523. <groupTemplates>範本</groupTemplates>
  2524. <groupWizards>嚮導</groupWizards>
  2525. <infoColumnsOrder>按需要順序調整列。</infoColumnsOrder>
  2526. <infoDataSource>選擇一個資料源。</infoDataSource>
  2527. <infoDataSources>選擇現有的資料源.</infoDataSources>
  2528. <infoFilters>為您的報表過濾資料</infoFilters>
  2529. <infoGroups>按需要選擇列進行分組。</infoGroups>
  2530. <infoLabelSettings>進行標籤設置。</infoLabelSettings>
  2531. <infoLayout>指定報表佈局.</infoLayout>
  2532. <infoRelation>選擇一個現有的資料關係.</infoRelation>
  2533. <infoSelectColumns>按所要顯示的資訊選擇列。</infoSelectColumns>
  2534. <infoSort>設置數據排序。您可以選擇多列進行排序。</infoSort>
  2535. <infoTotals>為您的報表添加摘要資訊。</infoTotals>
  2536. <LabelDirection>說明:</LabelDirection>
  2537. <LabelHeight>高:</LabelHeight>
  2538. <LabelHorizontalGap>水準間距:</LabelHorizontalGap>
  2539. <LabelLabelType>標籤類型:</LabelLabelType>
  2540. <LabelLeftMargin>左邊距:</LabelLeftMargin>
  2541. <LabelNumberOfColumns>欄數:</LabelNumberOfColumns>
  2542. <LabelNumberOfRows>行數:</LabelNumberOfRows>
  2543. <LabelPageHeight>頁高:</LabelPageHeight>
  2544. <LabelPageWidth>頁寬:</LabelPageWidth>
  2545. <LabelReport>報表標籤</LabelReport>
  2546. <LabelSettings>標籤設置</LabelSettings>
  2547. <LabelSize>尺寸:</LabelSize>
  2548. <LabelTopMargin>上邊距:</LabelTopMargin>
  2549. <LabelVerticalGap>垂直間距:</LabelVerticalGap>
  2550. <LabelWidth>寬:</LabelWidth>
  2551. <Layout>佈局</Layout>
  2552. <MarkAll>全選(&amp;A)</MarkAll>
  2553. <MasterDetailReport>報表主要細節</MasterDetailReport>
  2554. <NoFunction>[無]</NoFunction>
  2555. <OpenExistingReport>打開已經存在的報表</OpenExistingReport>
  2556. <Preview>預覽</Preview>
  2557. <Reset>重置(&amp;R)</Reset>
  2558. <SelectColumns>選擇列</SelectColumns>
  2559. <Sort>排序</Sort>
  2560. <StandardReport>標準報表</StandardReport>
  2561. <title>新建報表</title>
  2562. <Totals>總計</Totals>
  2563. <UsingReportWizard>使用報表嚮導</UsingReportWizard>
  2564. </Wizards>
  2565. <Zoom>
  2566. <EmptyValue>ֵ</EmptyValue>
  2567. <MultiplePages>多頁</MultiplePages>
  2568. <OnePage>整頁</OnePage>
  2569. <PageHeight>頁高</PageHeight>
  2570. <PageWidth>頁寬</PageWidth>
  2571. <TwoPages>雙頁</TwoPages>
  2572. <ZoomTo100>原始大小</ZoomTo100>
  2573. </Zoom>
  2574. </Localization>